down with assert, up with osi_Assert
[openafs.git] / src / afsd / afsd.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11   *         Information Technology Center
12   *         October 1987
13   *
14   * Description:
15   *     The Andrew File System startup process.  It is responsible for
16   * reading and parsing the various configuration files, starting up
17   * the kernel processes required by AFS and feeding the configuration
18   * information to the kernel.
19   *
20   * Recognized flags are:
21   *     -blocks     The number of blocks available in the workstation cache.
22   *     -files      The target number of files in the workstation cache (Default:
23   *                 1000).
24   *     -rootvol            The name of the root volume to use.
25   *     -stat       The number of stat cache entries.
26   *     -hosts      List of servers to check for volume location info FOR THE
27   *                 HOME CELL.
28   *     -memcache   Use an in-memory cache rather than disk.
29   *     -cachedir    The base directory for the workstation cache.
30   *     -mountdir   The directory on which the AFS is to be mounted.
31   *     -confdir    The configuration directory .
32   *     -nosettime  Don't keep checking the time to avoid drift (default).
33   *     -settime    Keep checking the time to avoid drift.
34   *     -rxmaxmtu   Set the max mtu to help with VPN issues.
35   *     -verbose     Be chatty.
36   *     -disable-dynamic-vcaches     Disable the use of -stat value as the starting size of
37   *                          the size of the vcache/stat cache pool,
38   *                          but increase that pool dynamically as needed.
39   *     -debug     Print out additional debugging info.
40   *     -kerndev    [OBSOLETE] The kernel device for AFS.
41   *     -dontfork   [OBSOLETE] Don't fork off as a new process.
42   *     -daemons   The number of background daemons to start (Default: 2).
43   *     -rmtsys    Also fires up an afs remote sys call (e.g. pioctl, setpag)
44   *                support daemon
45   *     -chunksize [n]   2^n is the chunksize to be used.  0 is default.
46   *     -dcache    The number of data cache entries.
47   *     -biods     Number of bkg I/O daemons (AIX3.1 only)
48   *     -prealloc  Number of preallocated "small" memory blocks
49   *     -logfile   [OBSOLETE] Place where to put the logfile (default in
50   *                <cache>/etc/AFSLog.
51   *     -waitclose make close calls always synchronous (slows em down, tho)
52   *     -files_per_subdir [n]   number of files per cache subdir. (def=2048)
53   *     -shutdown  Shutdown afs daemons
54   *---------------------------------------------------------------------------*/
55
56 #include <afsconfig.h>
57 #include <afs/param.h>
58
59 #ifdef IGNORE_SOME_GCC_WARNINGS
60 # pragma GCC diagnostic warning "-Wdeprecated-declarations"
61 #endif
62
63 #define VFS 1
64
65 #include <afs/stds.h>
66
67 #include <afs/cmd.h>
68
69 #include "afsd.h"
70
71 #include <afs/afs_assert.h>
72 #include <afs/afsutil.h>
73 #include <stdlib.h>
74 #include <stdio.h>
75 #include <signal.h>
76 #include <string.h>
77 #include <stdlib.h>
78 #include <time.h>
79 #include <sys/types.h>
80 #include <sys/stat.h>
81 #include <sys/file.h>
82 #include <errno.h>
83 #include <sys/time.h>
84 #include <sys/wait.h>
85
86 /* darwin dirent.h doesn't give us the prototypes we want if KERNEL is
87  * defined */
88 #if defined(UKERNEL) && defined(AFS_USR_DARWIN_ENV)
89 # undef KERNEL
90 # include <dirent.h>
91 # define KERNEL
92 #else
93 # include <dirent.h>
94 #endif
95
96
97 #ifdef HAVE_SYS_PARAM_H
98 #include <sys/param.h>
99 #endif
100
101 #ifdef HAVE_SYS_FS_TYPES_H
102 #include <sys/fs_types.h>
103 #endif
104
105 #if defined(HAVE_SYS_MOUNT_H) && !defined(AFS_ARM_DARWIN_ENV)
106 #include <sys/mount.h>
107 #endif
108
109 #ifdef HAVE_SYS_FCNTL_H
110 #include <sys/fcntl.h>
111 #endif
112
113 #ifdef HAVE_SYS_MNTTAB_H
114 #include <sys/mnttab.h>
115 #endif
116
117 #ifdef HAVE_SYS_MNTENT_H
118 #include <sys/mntent.h>
119 #endif
120
121 #ifdef HAVE_MNTENT_H
122 #include <mntent.h>
123 #endif
124
125 #ifdef HAVE_SYS_VFS_H
126 #include <sys/vfs.h>
127 #endif
128
129 #ifdef HAVE_SYS_FSTYP_H
130 #include <sys/fstyp.h>
131 #endif
132
133 #ifdef HAVE_UNISTD_H
134 #include <unistd.h>
135 #endif
136
137 #ifdef HAVE_FCNTL_H
138 #include <fcntl.h>
139 #endif
140
141 #include <netinet/in.h>
142 #include <afs/afs_args.h>
143 #include <afs/cellconfig.h>
144 #include <ctype.h>
145 #include <afs/afssyscalls.h>
146 #include <afs/afsutil.h>
147 #include <afs/sys_prototypes.h>
148
149 #ifdef AFS_SGI61_ENV
150 #include <unistd.h>
151 #include <libelf.h>
152 #include <dwarf.h>
153 #include <libdwarf.h>
154 void set_staticaddrs(void);
155 #endif /* AFS_SGI61_ENV */
156 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
157 #include <sym.h>
158 #include <symconst.h>
159 #endif
160 #ifdef AFS_SGI65_ENV
161 #include <sched.h>
162 #endif
163
164 #ifdef AFS_DARWIN_ENV
165 #ifdef AFS_DARWIN80_ENV
166 #include <sys/ioctl.h>
167 #include <sys/xattr.h>
168 #endif
169 #include <CoreFoundation/CoreFoundation.h>
170
171 #include <SystemConfiguration/SystemConfiguration.h>
172 #include <SystemConfiguration/SCDynamicStore.h>
173
174 #ifndef AFS_ARM_DARWIN_ENV
175 #include <IOKit/pwr_mgt/IOPMLib.h>
176 #include <IOKit/IOMessage.h>
177
178 static io_connect_t root_port;
179 static IONotificationPortRef notify;
180 static io_object_t iterator;
181 #endif
182
183 static CFRunLoopSourceRef source;
184
185 static int event_pid;
186
187 #endif /* AFS_DARWIN_ENV */
188
189 #if AFS_HAVE_STATVFS || defined(HAVE_SYS_STATVFS_H)
190 #include <sys/statvfs.h>
191 #else
192 #if defined(AFS_SUN_ENV)
193 #include <sys/vfs.h>
194 #else
195 #ifdef HAVE_SYS_STATFS_H
196 #include <sys/statfs.h>
197 #endif
198 #endif
199 #endif
200
201 #undef  VIRTUE
202 #undef  VICE
203
204
205 #define CACHEINFOFILE   "cacheinfo"
206 #define DCACHEFILE      "CacheItems"
207 #define VOLINFOFILE     "VolumeItems"
208 #define CELLINFOFILE    "CellItems"
209
210 #define MAXIPADDRS 1024
211
212 char LclCellName[64];
213
214 #define MAX_CACHE_LOOPS 4
215
216
217 /*
218  * Internet address (old style... should be updated).  This was pulled out of the old 4.2
219  * version of <netinet/in.h>, since it's still useful.
220  */
221 struct in_addr_42 {
222     union {
223         struct {
224             u_char s_b1, s_b2, s_b3, s_b4;
225         } S_un_b;
226         struct {
227             u_short s_w1, s_w2;
228         } S_un_w;
229         afs_uint32 S_addr;
230     } S_un;
231 #define s_host  S_un.S_un_b.s_b2        /* host on imp */
232 #define s_net   S_un.S_un_b.s_b1        /* network */
233 #define s_imp   S_un.S_un_w.s_w2        /* imp */
234 #define s_impno S_un.S_un_b.s_b4        /* imp # */
235 #define s_lh    S_un.S_un_b.s_b3        /* logical host */
236 };
237
238 #define mPrintIPAddr(ipaddr)  printf("[%d.%d.%d.%d] ",          \
239       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b1,      \
240       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b2,      \
241       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b3,      \
242       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b4)
243
244 /*
245  * Global configuration variables.
246  */
247 static afs_int32 enable_rxbind = 0;
248 static afs_int32 afs_shutdown = 0;
249 static afs_int32 cacheBlocks;           /*Num blocks in the cache */
250 static afs_int32 cacheFiles;            /*Optimal # of files in workstation cache */
251 static afs_int32 rwpct = 0;
252 static afs_int32 ropct = 0;
253 static afs_int32 cacheStatEntries;      /*Number of stat cache entries */
254 static char cacheBaseDir[1024]; /*Where the workstation AFS cache lives */
255 static char confDir[1024];              /*Where the workstation AFS configuration lives */
256 static char fullpn_DCacheFile[1024];    /*Full pathname of DCACHEFILE */
257 static char fullpn_VolInfoFile[1024];   /*Full pathname of VOLINFOFILE */
258 static char fullpn_CellInfoFile[1024];  /*Full pathanem of CELLINFOFILE */
259 static char fullpn_CacheInfo[1024];     /*Full pathname of CACHEINFO */
260 static char fullpn_VFile[1024]; /*Full pathname of data cache files */
261 static char *vFilePtr;                  /*Ptr to the number part of above pathname */
262 static int sawCacheMountDir = 0;        /* from cmd line */
263 static int sawCacheBaseDir = 0;
264 static int sawCacheBlocks = 0;
265 static int sawDCacheSize = 0;
266 #ifdef AFS_AIX32_ENV
267 static int sawBiod = 0;
268 #endif
269 static int sawCacheStatEntries = 0;
270 char afsd_cacheMountDir[1024];  /*Mount directory for AFS */
271 static char rootVolume[64] = "root.afs";        /*AFS root volume name */
272 static afs_int32 cacheSetTime = 0;      /*Keep checking time to avoid drift? */
273 #ifdef AFS_XBSD_ENV
274 static int createAndTrunc = O_RDWR | O_CREAT | O_TRUNC; /*Create & truncate on open */
275 #else
276 static int createAndTrunc = O_CREAT | O_TRUNC;  /*Create & truncate on open */
277 #endif
278 static int ownerRWmode = 0600;          /*Read/write OK by owner */
279 static int filesSet = 0;        /*True if number of files explicitly set */
280 static int nFilesPerDir = 2048; /* # files per cache dir */
281 #if defined(AFS_CACHE_BYPASS)
282 #define AFSD_NDAEMONS 4
283 #else
284 #define AFSD_NDAEMONS 2
285 #endif
286 static int nDaemons = AFSD_NDAEMONS;    /* Number of background daemons */
287 static int chunkSize = 0;       /* 2^chunkSize bytes per chunk */
288 static int dCacheSize;          /* # of dcache entries */
289 static int vCacheSize = 200;    /* # of volume cache entries */
290 static int rootVolSet = 0;      /*True if root volume name explicitly set */
291 int addrNum;                    /*Cell server address index being printed */
292 static int cacheFlags = 0;      /*Flags to cache manager */
293 #ifdef AFS_AIX32_ENV
294 static int nBiods = 5;          /* AIX3.1 only */
295 #endif
296 static int preallocs = 400;     /* Def # of allocated memory blocks */
297 static int enable_peer_stats = 0;       /* enable rx stats */
298 static int enable_process_stats = 0;    /* enable rx stats */
299 static int enable_afsdb = 0;    /* enable AFSDB support */
300 static int enable_dynroot = 0;  /* enable dynroot support */
301 static int enable_fakestat = 0; /* enable fakestat support */
302 static int enable_backuptree = 0;       /* enable backup tree support */
303 static int enable_nomount = 0;  /* do not mount */
304 static int enable_splitcache = 0;
305 static int afsd_dynamic_vcaches = 0;    /* Enable dynamic-vcache support */
306 int afsd_verbose = 0;           /*Are we being chatty? */
307 int afsd_debug = 0;             /*Are we printing debugging info? */
308 static int afsd_CloseSynch = 0; /*Are closes synchronous or not? */
309 static int rxmaxmtu = 0;       /* Are we forcing a limit on the mtu? */
310
311 #ifdef AFS_SGI62_ENV
312 #define AFSD_INO_T ino64_t
313 #else
314 #define AFSD_INO_T afs_uint32
315 #endif
316 struct afsd_file_list {
317     int fileNum;
318     struct afsd_file_list *next;
319 };
320 struct afsd_file_list **cache_dir_filelist = NULL;
321 int *cache_dir_list = NULL;     /* Array of cache subdirs */
322 int *dir_for_V = NULL;          /* Array: dir of each cache file.
323                                  * -1: file does not exist
324                                  * -2: file exists in top-level
325                                  * >=0: file exists in Dxxx
326                                  */
327 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
328 AFSD_INO_T *inode_for_V;        /* Array of inodes for desired
329                                  * cache files */
330 #endif
331 int missing_DCacheFile = 1;     /*Is the DCACHEFILE missing? */
332 int missing_VolInfoFile = 1;    /*Is the VOLINFOFILE missing? */
333 int missing_CellInfoFile = 1;   /*Is the CELLINFOFILE missing? */
334 int afsd_rmtsys = 0;            /* Default: don't support rmtsys */
335 struct afs_cacheParams cparams; /* params passed to cache manager */
336
337 int PartSizeOverflow(char *path, int cs);
338
339 #if defined(AFS_SUN510_ENV) && defined(RXK_LISTENER_ENV)
340 static void fork_rx_syscall_wait();
341 #endif
342 #if defined(AFS_SUN510_ENV) || defined(RXK_LISTENER_ENV)
343 static void fork_rx_syscall();
344 #endif
345 static void fork_syscall();
346
347 #if defined(AFS_DARWIN_ENV) && !defined(AFS_ARM_DARWIN_ENV)
348 static void
349 afsd_sleep_callback(void * refCon, io_service_t service,
350                     natural_t messageType, void * messageArgument )
351 {
352     switch (messageType) {
353     case kIOMessageCanSystemSleep:
354         /* Idle sleep is about to kick in; can
355            prevent sleep by calling IOCancelPowerChange, otherwise
356            if we don't ack in 30s the system sleeps anyway */
357
358         /* allow it */
359         IOAllowPowerChange(root_port, (long)messageArgument);
360         break;
361
362     case kIOMessageSystemWillSleep:
363         /* The system WILL go to sleep. Ack or suffer delay */
364
365         IOAllowPowerChange(root_port, (long)messageArgument);
366         break;
367
368     case kIOMessageSystemWillRestart:
369         /* The system WILL restart. Ack or suffer delay */
370
371         IOAllowPowerChange(root_port, (long)messageArgument);
372         break;
373
374     case kIOMessageSystemWillPowerOn:
375     case kIOMessageSystemHasPoweredOn:
376         /* coming back from sleep */
377
378         IOAllowPowerChange(root_port, (long)messageArgument);
379         break;
380
381     default:
382         IOAllowPowerChange(root_port, (long)messageArgument);
383         break;
384     }
385 }
386
387 static void
388 afsd_update_addresses(CFRunLoopTimerRef timer, void *info)
389 {
390     /* parse multihomed address files */
391     afs_uint32 addrbuf[MAXIPADDRS], maskbuf[MAXIPADDRS],
392         mtubuf[MAXIPADDRS];
393     char reason[1024];
394     afs_int32 code;
395
396     code =
397         parseNetFiles(addrbuf, maskbuf, mtubuf, MAXIPADDRS, reason,
398                       AFSDIR_CLIENT_NETINFO_FILEPATH,
399                       AFSDIR_CLIENT_NETRESTRICT_FILEPATH);
400
401     if (code > 0) {
402         /* Note we're refreshing */
403         code = code | 0x40000000;
404         afsd_call_syscall(AFSOP_ADVISEADDR, code, addrbuf, maskbuf, mtubuf);
405     } else
406         printf("ADVISEADDR: Error in specifying interface addresses:%s\n",
407                reason);
408
409     /* Since it's likely this means our DNS server changed, reinit now */
410     if (enable_afsdb)
411         res_init();
412 }
413
414 /* This function is called when the system's ip addresses may have changed. */
415 static void
416 afsd_ipaddr_callback (SCDynamicStoreRef store, CFArrayRef changed_keys, void *info)
417 {
418       CFRunLoopTimerRef timer;
419
420       timer = CFRunLoopTimerCreate (NULL, CFAbsoluteTimeGetCurrent () + 1.0,
421                                     0.0, 0, 0, afsd_update_addresses, NULL);
422       CFRunLoopAddTimer (CFRunLoopGetCurrent (), timer,
423                          kCFRunLoopDefaultMode);
424       CFRelease (timer);
425 }
426
427 static void
428 afsd_event_cleanup(int signo) {
429
430     CFRunLoopRemoveSource(CFRunLoopGetCurrent(), source, kCFRunLoopDefaultMode);
431     CFRelease (source);
432 #ifndef AFS_ARM_DARWIN_ENV
433     IODeregisterForSystemPower(&iterator);
434     IOServiceClose(root_port);
435     IONotificationPortDestroy(notify);
436 #endif
437     exit(0);
438 }
439
440 /* Adapted from "Living in a Dynamic TCP/IP Environment" technote. */
441 static void
442 afsd_install_events(void)
443 {
444     SCDynamicStoreContext ctx = {0};
445     SCDynamicStoreRef store;
446
447 #ifndef AFS_ARM_DARWIN_ENV
448     root_port = IORegisterForSystemPower(0,&notify,afsd_sleep_callback,&iterator);
449
450     if (root_port) {
451         CFRunLoopAddSource(CFRunLoopGetCurrent(),
452                            IONotificationPortGetRunLoopSource(notify),
453                            kCFRunLoopDefaultMode);
454     }
455
456
457     store = SCDynamicStoreCreate (NULL,
458                                   CFSTR ("AddIPAddressListChangeCallbackSCF"),
459                                   afsd_ipaddr_callback, &ctx);
460
461     if (store) {
462         const void *keys[1];
463
464         /* Request IPV4 address change notification */
465         keys[0] = (SCDynamicStoreKeyCreateNetworkServiceEntity
466                    (NULL, kSCDynamicStoreDomainState,
467                     kSCCompAnyRegex, kSCEntNetIPv4));
468
469 #if 0
470         /* This should tell us when the hostname(s) change. do we care? */
471         keys[N] = SCDynamicStoreKeyCreateHostNames (NULL);
472 #endif
473
474         if (keys[0] != NULL) {
475             CFArrayRef pattern_array;
476
477             pattern_array = CFArrayCreate (NULL, keys, 1,
478                                            &kCFTypeArrayCallBacks);
479
480             if (pattern_array != NULL)
481             {
482                 SCDynamicStoreSetNotificationKeys (store, NULL, pattern_array);
483                 source = SCDynamicStoreCreateRunLoopSource (NULL, store, 0);
484
485                 CFRelease (pattern_array);
486             }
487
488             if (keys[0] != NULL)
489                 CFRelease (keys[0]);
490         }
491
492         CFRelease (store);
493     }
494 #endif
495
496     if (source != NULL) {
497         CFRunLoopAddSource (CFRunLoopGetCurrent(),
498                             source, kCFRunLoopDefaultMode);
499     }
500
501     signal(SIGTERM, afsd_event_cleanup);
502
503     CFRunLoopRun();
504 }
505 #endif
506
507 /* ParseArgs is now obsolete, being handled by cmd */
508
509 /*------------------------------------------------------------------------------
510   * ParseCacheInfoFile
511   *
512   * Description:
513   *     Open the file containing the description of the workstation's AFS cache
514   *     and pull out its contents.  The format of this file is as follows:
515   *
516   *         cacheMountDir:cacheBaseDir:cacheBlocks
517   *
518   * Arguments:
519   *     None.
520   *
521   * Returns:
522   *     0 if everything went well,
523   *     1 otherwise.
524   *
525   * Environment:
526   *     Nothing interesting.
527   *
528   *  Side Effects:
529   *     Sets globals.
530   *---------------------------------------------------------------------------*/
531
532 int
533 ParseCacheInfoFile(void)
534 {
535     static char rn[] = "ParseCacheInfoFile";    /*This routine's name */
536     FILE *cachefd;              /*Descriptor for cache info file */
537     int parseResult;            /*Result of our fscanf() */
538     afs_int32 tCacheBlocks;
539     char tCacheBaseDir[1024], *tbd, tCacheMountDir[1024], *tmd;
540
541     if (afsd_debug)
542         printf("%s: Opening cache info file '%s'...\n", rn, fullpn_CacheInfo);
543
544     cachefd = fopen(fullpn_CacheInfo, "r");
545     if (!cachefd) {
546         printf("%s: Can't read cache info file '%s'\n", rn, fullpn_CacheInfo);
547         return (1);
548     }
549
550     /*
551      * Parse the contents of the cache info file.  All chars up to the first
552      * colon are the AFS mount directory, all chars to the next colon are the
553      * full path name of the workstation cache directory and all remaining chars
554      * represent the number of blocks in the cache.
555      */
556     tCacheMountDir[0] = tCacheBaseDir[0] = '\0';
557     parseResult =
558         fscanf(cachefd, "%1024[^:]:%1024[^:]:%d", tCacheMountDir,
559                tCacheBaseDir, &tCacheBlocks);
560
561     /*
562      * Regardless of how the parse went, we close the cache info file.
563      */
564     fclose(cachefd);
565
566     if (parseResult == EOF || parseResult < 3) {
567         printf("%s: Format error in cache info file!\n", rn);
568         if (parseResult == EOF)
569             printf("\tEOF encountered before any field parsed.\n");
570         else
571             printf("\t%d out of 3 fields successfully parsed.\n",
572                    parseResult);
573
574         return (1);
575     }
576
577     for (tmd = tCacheMountDir; *tmd == '\n' || *tmd == ' ' || *tmd == '\t';
578          tmd++);
579     for (tbd = tCacheBaseDir; *tbd == '\n' || *tbd == ' ' || *tbd == '\t';
580          tbd++);
581     /* now copy in the fields not explicitly overridden by cmd args */
582     if (!sawCacheMountDir)
583         strcpy(afsd_cacheMountDir, tmd);
584     if (!sawCacheBaseDir)
585         strcpy(cacheBaseDir, tbd);
586     if (!sawCacheBlocks)
587         cacheBlocks = tCacheBlocks;
588
589     if (afsd_debug) {
590         printf("%s: Cache info file successfully parsed:\n", rn);
591         printf
592             ("\tcacheMountDir: '%s'\n\tcacheBaseDir: '%s'\n\tcacheBlocks: %d\n",
593              tmd, tbd, tCacheBlocks);
594     }
595     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)) {
596         return (PartSizeOverflow(tbd, cacheBlocks));
597     }
598
599     return (0);
600 }
601
602 /*
603  * All failures to open the partition are ignored. Also if the cache dir
604  * isn't a mounted partition it's also ignored since we can't guarantee
605  * what will be stored afterwards. Too many if's. This is now purely
606  * advisory. ODS with over 2G partition also gives warning message.
607  *
608  * Returns:
609  *      0 if everything went well,
610  *      1 otherwise.
611  */
612 int
613 PartSizeOverflow(char *path, int cs)
614 {
615   int bsize = -1;
616   afs_int64 totalblks, mint;
617 #if AFS_HAVE_STATVFS || defined(HAVE_SYS_STATVFS_H)
618     struct statvfs statbuf;
619
620     if (statvfs(path, &statbuf) != 0) {
621         if (afsd_debug)
622             printf
623                 ("statvfs failed on %s; skip checking for adequate partition space\n",
624                  path);
625         return 0;
626     }
627     totalblks = statbuf.f_blocks;
628     bsize = statbuf.f_frsize;
629 #if AFS_AIX51_ENV
630     if (strcmp(statbuf.f_basetype, "jfs")) {
631         fprintf(stderr, "Cache filesystem '%s' must be jfs (now %s)\n",
632                 path, statbuf.f_basetype);
633         return 1;
634     }
635 #endif /* AFS_AIX51_ENV */
636
637 #else /* AFS_HAVE_STATVFS */
638     struct statfs statbuf;
639
640     if (statfs(path, &statbuf) < 0) {
641         if (afsd_debug)
642             printf
643                 ("statfs failed on %s; skip checking for adequate partition space\n",
644                  path);
645         return 0;
646     }
647     totalblks = statbuf.f_blocks;
648     bsize = statbuf.f_bsize;
649 #endif
650     if (bsize == -1)
651         return 0;               /* success */
652
653     /* now free and totalblks are in fragment units, but we want them in 1K units */
654     if (bsize >= 1024) {
655         totalblks *= (bsize / 1024);
656     } else {
657         totalblks /= (1024 / bsize);
658     }
659
660     mint = totalblks / 100 * 95;
661     if (cs > mint) {
662         printf
663             ("Cache size (%d) must be less than 95%% of partition size (which is %lld). Lower cache size\n",
664              cs, mint);
665         return 1;
666     }
667
668     return 0;
669 }
670
671 /*-----------------------------------------------------------------------------
672   * GetVFileNumber
673   *
674   * Description:
675   *     Given the final component of a filename expected to be a data cache file,
676   *     return the integer corresponding to the file.  Note: we reject names that
677   *     are not a ``V'' followed by an integer.  We also reject those names having
678   *     the right format but lying outside the range [0..cacheFiles-1].
679   *
680   * Arguments:
681   *     fname : Char ptr to the filename to parse.
682   *     max   : integer for the highest number to accept
683   *
684   * Returns:
685   *     >= 0 iff the file is really a data cache file numbered from 0 to cacheFiles-1, or
686   *     -1      otherwise.
687   *
688   * Environment:
689   *     Nothing interesting.
690   *
691   * Side Effects:
692   *     None.
693   *---------------------------------------------------------------------------*/
694
695 static int
696 doGetXFileNumber(char *fname, char filechar, int maxNum)
697 {
698     int computedVNumber;        /*The computed file number we return */
699     int filenameLen;            /*Number of chars in filename */
700     int currDigit;              /*Current digit being processed */
701
702     /*
703      * The filename must have at least two characters, the first of which must be a ``filechar''
704      * and the second of which cannot be a zero unless the file is exactly two chars long.
705      */
706     filenameLen = strlen(fname);
707     if (filenameLen < 2)
708         return (-1);
709     if (fname[0] != filechar)
710         return (-1);
711     if ((filenameLen > 2) && (fname[1] == '0'))
712         return (-1);
713
714     /*
715      * Scan through the characters in the given filename, failing immediately if a non-digit
716      * is found.
717      */
718     for (currDigit = 1; currDigit < filenameLen; currDigit++)
719         if (isdigit(fname[currDigit]) == 0)
720             return (-1);
721
722     /*
723      * All relevant characters are digits.  Pull out the decimal number they represent.
724      * Reject it if it's out of range, otherwise return it.
725      */
726     computedVNumber = atoi(++fname);
727     if (computedVNumber < cacheFiles)
728         return (computedVNumber);
729     else
730         return (-1);
731 }
732
733 int
734 GetVFileNumber(char *fname, int maxFile)
735 {
736     return doGetXFileNumber(fname, 'V', maxFile);
737 }
738
739 int
740 GetDDirNumber(char *fname, int maxDir)
741 {
742     return doGetXFileNumber(fname, 'D', maxDir);
743 }
744
745
746 /*-----------------------------------------------------------------------------
747   * CreateCacheFile
748   *
749   * Description:
750   *     Given a full pathname for a file we need to create for the workstation AFS
751   *     cache, go ahead and create the file.
752   *
753   * Arguments:
754   *     fname : Full pathname of file to create.
755   *     statp : A pointer to a stat buffer which, if NON-NULL, will be
756   *             filled by fstat()
757   *
758   * Returns:
759   *     0   iff the file was created,
760   *     -1  otherwise.
761   *
762   * Environment:
763   *     The given cache file has been found to be missing.
764   *
765   * Side Effects:
766   *     As described.
767   *---------------------------------------------------------------------------*/
768
769 static int
770 CreateCacheSubDir(char *basename, int dirNum)
771 {
772     static char rn[] = "CreateCacheSubDir";     /* Routine Name */
773     char dir[1024];
774     int ret;
775
776     /* Build the new cache subdirectory */
777     sprintf(dir, "%s/D%d", basename, dirNum);
778
779     if (afsd_debug)
780         printf("%s: Creating cache subdir '%s'\n", rn, dir);
781
782     if ((ret = mkdir(dir, 0700)) != 0) {
783         printf("%s: Can't create '%s', error return is %d (%d)\n", rn, dir,
784                ret, errno);
785         if (errno != EEXIST)
786             return (-1);
787     }
788
789     /* Mark this directory as created */
790     cache_dir_list[dirNum] = 0;
791
792     /* And return success */
793     return (0);
794 }
795
796 static void
797 SetNoBackupAttr(char *fullpn)
798 {
799 #ifdef AFS_DARWIN80_ENV
800     int ret;
801
802     ret = setxattr(fullpn, "com.apple.metadata:com_apple_backup_excludeItem",
803                    "com.apple.backupd", strlen("com.apple.backupd"), 0,
804                    XATTR_CREATE);
805     if(ret < 0)
806     {
807         if(errno != EEXIST)
808             fprintf(stderr, "afsd: Warning: failed to set attribute to preclude cache backup: %s\n", strerror(errno));
809     }
810 #endif
811     return;
812 }
813
814 static int
815 MoveCacheFile(char *basename, int fromDir, int toDir, int cacheFile,
816               int maxDir)
817 {
818     static char rn[] = "MoveCacheFile";
819     char from[1024], to[1024];
820     int ret;
821
822     if (cache_dir_list[toDir] < 0
823         && (ret = CreateCacheSubDir(basename, toDir))) {
824         printf("%s: Can't create directory '%s/D%d'\n", rn, basename, toDir);
825         return ret;
826     }
827
828     /* Build the from,to dir */
829     if (fromDir < 0) {
830         /* old-style location */
831         snprintf(from, sizeof(from), "%s/V%d", basename, cacheFile);
832     } else {
833         snprintf(from, sizeof(from), "%s/D%d/V%d", basename, fromDir,
834                  cacheFile);
835     }
836
837     snprintf(to, sizeof(from), "%s/D%d/V%d", basename, toDir, cacheFile);
838
839     if (afsd_verbose)
840         printf("%s: Moving cacheFile from '%s' to '%s'\n", rn, from, to);
841
842     if ((ret = rename(from, to)) != 0) {
843         printf("%s: Can't rename '%s' to '%s', error return is %d (%d)\n", rn,
844                from, to, ret, errno);
845         return -1;
846     }
847     SetNoBackupAttr(to);
848
849     /* Reset directory pointer; fix file counts */
850     dir_for_V[cacheFile] = toDir;
851     cache_dir_list[toDir]++;
852     if (fromDir < maxDir && fromDir >= 0)
853         cache_dir_list[fromDir]--;
854
855     return 0;
856 }
857
858 int
859 CreateCacheFile(char *fname, struct stat *statp)
860 {
861     static char rn[] = "CreateCacheFile";       /*Routine name */
862     int cfd;                    /*File descriptor to AFS cache file */
863     int closeResult;            /*Result of close() */
864
865     if (afsd_debug)
866         printf("%s: Creating cache file '%s'\n", rn, fname);
867     cfd = open(fname, createAndTrunc, ownerRWmode);
868     if (cfd <= 0) {
869         printf("%s: Can't create '%s', error return is %d (%d)\n", rn, fname,
870                cfd, errno);
871         return (-1);
872     }
873     if (statp != NULL) {
874         closeResult = fstat(cfd, statp);
875         if (closeResult) {
876             printf
877                 ("%s: Can't stat newly-created AFS cache file '%s' (code %d)\n",
878                  rn, fname, errno);
879             return (-1);
880         }
881     }
882     closeResult = close(cfd);
883     if (closeResult) {
884         printf
885             ("%s: Can't close newly-created AFS cache file '%s' (code %d)\n",
886              rn, fname, errno);
887         return (-1);
888     }
889
890     return (0);
891 }
892
893 static void
894 CreateFileIfMissing(char *fullpn, int missing)
895 {
896     if (missing) {
897         if (CreateCacheFile(fullpn, NULL))
898             printf("CreateFileIfMissing: Can't create '%s'\n", fullpn);
899     }
900 }
901
902 static void
903 UnlinkUnwantedFile(char *rn, char *fullpn_FileToDelete, char *fileToDelete)
904 {
905     if (unlink(fullpn_FileToDelete)) {
906         if ((errno == EISDIR || errno == EPERM) && *fileToDelete == 'D') {
907             if (rmdir(fullpn_FileToDelete)) {
908                 printf("%s: Can't rmdir '%s', errno is %d\n", rn,
909                        fullpn_FileToDelete, errno);
910             }
911         } else
912             printf("%s: Can't unlink '%s', errno is %d\n", rn,
913                    fullpn_FileToDelete, errno);
914     }
915 }
916
917 /*-----------------------------------------------------------------------------
918   * SweepAFSCache
919   *
920   * Description:
921   *     Sweep through the AFS cache directory, recording the inode number for
922   *     each valid data cache file there.  Also, delete any file that doesn't belong
923   *     in the cache directory during this sweep, and remember which of the other
924   *     residents of this directory were seen.  After the sweep, we create any data
925   *     cache files that were missing.
926   *
927   * Arguments:
928   *     vFilesFound : Set to the number of data cache files found.
929   *
930   * Returns:
931   *     0   if everything went well,
932   *     -1 otherwise.
933   *
934   * Environment:
935   *     This routine may be called several times.  If the number of data cache files
936   *     found is less than the global cacheFiles, then the caller will need to call it
937   *     again to record the inodes of the missing zero-length data cache files created
938   *     in the previous call.
939   *
940   * Side Effects:
941   *     Fills up the global inode_for_V array, may create and/or delete files as
942   *     explained above.
943   *---------------------------------------------------------------------------*/
944
945
946 static int
947 doSweepAFSCache(int *vFilesFound,
948                 char *directory,        /* /path/to/cache/directory */
949                 int dirNum,             /* current directory number */
950                 int maxDir)             /* maximum directory number */
951 {
952     static char rn[] = "doSweepAFSCache";       /* Routine Name */
953     char fullpn_FileToDelete[1024];     /*File to be deleted from cache */
954     char *fileToDelete;         /*Ptr to last component of above */
955     DIR *cdirp;                 /*Ptr to cache directory structure */
956 #ifdef AFS_SGI62_ENV
957     struct dirent64 *currp;     /*Current directory entry */
958 #else
959     struct dirent *currp;       /*Current directory entry */
960 #endif
961     int vFileNum;               /*Data cache file's associated number */
962     int thisDir;                /* A directory number */
963     int highDir = 0;
964
965     if (afsd_debug)
966         printf("%s: Opening cache directory '%s'\n", rn, directory);
967
968     if (chmod(directory, 0700)) {       /* force it to be 700 */
969         printf("%s: Can't 'chmod 0700' the cache dir, '%s'.\n", rn,
970                directory);
971         return (-1);
972     }
973     cdirp = opendir(directory);
974     if (cdirp == (DIR *) 0) {
975         printf("%s: Can't open AFS cache directory, '%s'.\n", rn, directory);
976         return (-1);
977     }
978
979     /*
980      * Scan the directory entries, remembering data cache file inodes
981      * and the existance of other important residents.  Recurse into
982      * the data subdirectories.
983      *
984      * Delete all files and directories that don't belong here.
985      */
986     sprintf(fullpn_FileToDelete, "%s/", directory);
987     fileToDelete = fullpn_FileToDelete + strlen(fullpn_FileToDelete);
988
989 #ifdef AFS_SGI62_ENV
990     for (currp = readdir64(cdirp); currp; currp = readdir64(cdirp))
991 #else
992     for (currp = readdir(cdirp); currp; currp = readdir(cdirp))
993 #endif
994     {
995         if (afsd_debug) {
996             printf("%s: Current directory entry:\n", rn);
997 #if defined(AFS_SGI62_ENV) || defined(AFS_DARWIN90_ENV)
998             printf("\tinode=%" AFS_INT64_FMT ", reclen=%d, name='%s'\n", currp->d_ino,
999                    currp->d_reclen, currp->d_name);
1000 #elif defined(AFS_DFBSD_ENV) || defined(AFS_USR_DFBSD_ENV)
1001             printf("\tinode=%ld, name='%s'\n", (long)currp->d_ino, currp->d_name);
1002 #else
1003             printf("\tinode=%ld, reclen=%d, name='%s'\n", (long)currp->d_ino,
1004                    currp->d_reclen, currp->d_name);
1005 #endif
1006         }
1007
1008         /*
1009          * If dirNum < 0, we are a top-level cache directory and should
1010          * only contain sub-directories and other sundry files.  Therefore,
1011          * V-files are valid only if dirNum >= 0, and Directories are only
1012          * valid if dirNum < 0.
1013          */
1014
1015         if (*(currp->d_name) == 'V'
1016             && ((vFileNum = GetVFileNumber(currp->d_name, cacheFiles)) >=
1017                 0)) {
1018             /*
1019              * Found a valid data cache filename.  Remember this
1020              * file's inode, directory, and bump the number of files found
1021              * total and in this directory.
1022              */
1023 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
1024             inode_for_V[vFileNum] = currp->d_ino;
1025 #endif
1026             dir_for_V[vFileNum] = dirNum;       /* remember this directory */
1027
1028             if (!maxDir) {
1029                 /* If we're in a real subdir, mark this file to be moved
1030                  * if we've already got too many files in this directory
1031                  */
1032                 assert(dirNum >= 0);
1033                 cache_dir_list[dirNum]++;       /* keep directory's file count */
1034                 if (cache_dir_list[dirNum] > nFilesPerDir) {
1035                     /* Too many files -- add to filelist */
1036                     struct afsd_file_list *tmp = (struct afsd_file_list *)
1037                         malloc(sizeof(*tmp));
1038                     if (!tmp)
1039                         printf
1040                             ("%s: MALLOC FAILED allocating file_list entry\n",
1041                              rn);
1042                     else {
1043                         tmp->fileNum = vFileNum;
1044                         tmp->next = cache_dir_filelist[dirNum];
1045                         cache_dir_filelist[dirNum] = tmp;
1046                     }
1047                 }
1048             }
1049             (*vFilesFound)++;
1050         } else if (dirNum < 0 && (*(currp->d_name) == 'D')
1051                    && GetDDirNumber(currp->d_name, 1 << 30) >= 0) {
1052             int retval = 0;
1053             if ((vFileNum = GetDDirNumber(currp->d_name, maxDir)) >= 0) {
1054                 /* Found a valid cachefile sub-Directory.  Remember this number
1055                  * and recurse into it.  Note that subdirs cannot have subdirs.
1056                  */
1057                 retval = 1;
1058             } else if ((vFileNum = GetDDirNumber(currp->d_name, 1 << 30)) >=
1059                        0) {
1060                 /* This directory is going away, but figure out if there
1061                  * are any cachefiles in here that should be saved by
1062                  * moving them to other cache directories.  This directory
1063                  * will be removed later.
1064                  */
1065                 retval = 2;
1066             }
1067
1068             /* Save the highest directory number we've seen */
1069             if (vFileNum > highDir)
1070                 highDir = vFileNum;
1071
1072             /* If this directory is staying, be sure to mark it as 'found' */
1073             if (retval == 1)
1074                 cache_dir_list[vFileNum] = 0;
1075
1076             /* Print the dirname for recursion */
1077             sprintf(fileToDelete, "%s", currp->d_name);
1078
1079             /* Note: vFileNum is the directory number */
1080             retval =
1081                 doSweepAFSCache(vFilesFound, fullpn_FileToDelete, vFileNum,
1082                                 (retval == 1 ? 0 : -1));
1083             if (retval) {
1084                 printf("%s: Recursive sweep failed on directory %s\n", rn,
1085                        currp->d_name);
1086                 return retval;
1087             }
1088         } else if (dirNum < 0 && strcmp(currp->d_name, DCACHEFILE) == 0) {
1089             /*
1090              * Found the file holding the dcache entries.
1091              */
1092             missing_DCacheFile = 0;
1093             SetNoBackupAttr(fullpn_DCacheFile);
1094         } else if (dirNum < 0 && strcmp(currp->d_name, VOLINFOFILE) == 0) {
1095             /*
1096              * Found the file holding the volume info.
1097              */
1098             missing_VolInfoFile = 0;
1099             SetNoBackupAttr(fullpn_VolInfoFile);
1100         } else if (dirNum < 0 && strcmp(currp->d_name, CELLINFOFILE) == 0) {
1101             /*
1102              * Found the file holding the cell info.
1103              */
1104             missing_CellInfoFile = 0;
1105             SetNoBackupAttr(fullpn_CellInfoFile);
1106         } else if ((strcmp(currp->d_name, ".") == 0)
1107                    || (strcmp(currp->d_name, "..") == 0) ||
1108 #ifdef AFS_DECOSF_ENV
1109                    /* these are magic AdvFS files */
1110                    (strcmp(currp->d_name, ".tags") == 0)
1111                    || (strcmp(currp->d_name, "quota.user") == 0)
1112                    || (strcmp(currp->d_name, "quota.group") == 0) ||
1113 #endif
1114 #ifdef AFS_LINUX22_ENV
1115                    /* this is the ext3 journal file */
1116                    (strcmp(currp->d_name, ".journal") == 0) ||
1117 #endif
1118                    (strcmp(currp->d_name, "lost+found") == 0)) {
1119             /*
1120              * Don't do anything - this file is legit, and is to be left alone.
1121              */
1122         } else {
1123             /*
1124              * This file/directory doesn't belong in the cache.  Nuke it.
1125              */
1126             sprintf(fileToDelete, "%s", currp->d_name);
1127             if (afsd_verbose)
1128                 printf("%s: Deleting '%s'\n", rn, fullpn_FileToDelete);
1129             UnlinkUnwantedFile(rn, fullpn_FileToDelete, fileToDelete);
1130         }
1131     }
1132
1133     if (dirNum < 0) {
1134
1135         /*
1136          * Create all the cache files that are missing.
1137          */
1138         CreateFileIfMissing(fullpn_DCacheFile, missing_DCacheFile);
1139         CreateFileIfMissing(fullpn_VolInfoFile, missing_VolInfoFile);
1140         CreateFileIfMissing(fullpn_CellInfoFile, missing_CellInfoFile);
1141
1142         /* ADJUST CACHE FILES */
1143
1144         /* First, let's walk through the list of files and figure out
1145          * if there are any leftover files in extra directories or
1146          * missing files.  Move the former and create the latter in
1147          * subdirs with extra space.
1148          */
1149
1150         thisDir = 0;            /* Keep track of which subdir has space */
1151
1152         for (vFileNum = 0; vFileNum < cacheFiles; vFileNum++) {
1153             if (dir_for_V[vFileNum] == -1) {
1154                 /* This file does not exist.  Create it in the first
1155                  * subdir that still has extra space.
1156                  */
1157                 while (thisDir < maxDir
1158                        && cache_dir_list[thisDir] >= nFilesPerDir)
1159                     thisDir++;
1160                 if (thisDir >= maxDir)
1161                     printf("%s: can't find directory to create V%d\n", rn,
1162                            vFileNum);
1163                 else {
1164                     struct stat statb;
1165 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
1166                     assert(inode_for_V[vFileNum] == (AFSD_INO_T) 0);
1167 #endif
1168                     sprintf(vFilePtr, "D%d/V%d", thisDir, vFileNum);
1169                     if (afsd_verbose)
1170                         printf("%s: Creating '%s'\n", rn, fullpn_VFile);
1171                     if (cache_dir_list[thisDir] < 0
1172                         && CreateCacheSubDir(directory, thisDir))
1173                         printf("%s: Can't create directory for '%s'\n", rn,
1174                                fullpn_VFile);
1175                     if (CreateCacheFile(fullpn_VFile, &statb))
1176                         printf("%s: Can't create '%s'\n", rn, fullpn_VFile);
1177                     else {
1178 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
1179                         inode_for_V[vFileNum] = statb.st_ino;
1180 #endif
1181                         dir_for_V[vFileNum] = thisDir;
1182                         cache_dir_list[thisDir]++;
1183                         (*vFilesFound)++;
1184                     }
1185                     SetNoBackupAttr(fullpn_VFile);
1186                 }
1187
1188             } else if (dir_for_V[vFileNum] >= maxDir
1189                        || dir_for_V[vFileNum] == -2) {
1190                 /* This file needs to move; move it to the first subdir
1191                  * that has extra space.  (-2 means it's in the toplevel)
1192                  */
1193                 while (thisDir < maxDir
1194                        && cache_dir_list[thisDir] >= nFilesPerDir)
1195                     thisDir++;
1196                 if (thisDir >= maxDir)
1197                     printf("%s: can't find directory to move V%d\n", rn,
1198                            vFileNum);
1199                 else {
1200                     if (MoveCacheFile
1201                         (directory, dir_for_V[vFileNum], thisDir, vFileNum,
1202                          maxDir)) {
1203                         /* Cannot move.  Ignore this file??? */
1204                         /* XXX */
1205                     }
1206                 }
1207             }
1208         }                       /* for */
1209
1210         /* At this point, we've moved all of the valid cache files
1211          * into the valid subdirs, and created all the extra
1212          * cachefiles we need to create.  Next, rebalance any subdirs
1213          * with too many cache files into the directories with not
1214          * enough cache files.  Note that thisDir currently sits at
1215          * the lowest subdir that _may_ have room.
1216          */
1217
1218         for (dirNum = 0; dirNum < maxDir; dirNum++) {
1219             struct afsd_file_list *thisFile;
1220
1221             for (thisFile = cache_dir_filelist[dirNum];
1222                  thisFile && cache_dir_list[dirNum] >= nFilesPerDir;
1223                  thisFile = thisFile->next) {
1224                 while (thisDir < maxDir
1225                        && cache_dir_list[thisDir] >= nFilesPerDir)
1226                     thisDir++;
1227                 if (thisDir >= maxDir)
1228                     printf("%s: can't find directory to move V%d\n", rn,
1229                            vFileNum);
1230                 else {
1231                     if (MoveCacheFile
1232                         (directory, dirNum, thisDir, thisFile->fileNum,
1233                          maxDir)) {
1234                         /* Cannot move.  Ignore this file??? */
1235                         /* XXX */
1236                     }
1237                 }
1238             }                   /* for each file to move */
1239         }                       /* for each directory */
1240
1241         /* Remove any directories >= maxDir -- they should be empty */
1242         for (; highDir >= maxDir; highDir--) {
1243             sprintf(fileToDelete, "D%d", highDir);
1244             UnlinkUnwantedFile(rn, fullpn_FileToDelete, fileToDelete);
1245         }
1246     }
1247
1248     /* dirNum < 0 */
1249     /*
1250      * Close the directory, return success.
1251      */
1252     if (afsd_debug)
1253         printf("%s: Closing cache directory.\n", rn);
1254     closedir(cdirp);
1255     return (0);
1256 }
1257
1258 char *
1259 CheckCacheBaseDir(char *dir)
1260 {
1261     struct stat statbuf;
1262
1263     if (!dir) {
1264         return "cache base dir not specified";
1265     }
1266     if (stat(dir, &statbuf) != 0) {
1267         return "unable to stat cache base directory";
1268     }
1269
1270     /* might want to check here for anything else goofy, like cache pointed at a non-dedicated directory, etc */
1271
1272 #ifdef AFS_LINUX24_ENV
1273     {
1274         int res;
1275         struct statfs statfsbuf;
1276
1277         res = statfs(dir, &statfsbuf);
1278         if (res != 0) {
1279             return "unable to statfs cache base directory";
1280         }
1281 #if !defined(AFS_LINUX26_ENV)
1282         if (statfsbuf.f_type == 0x52654973) {   /* REISERFS_SUPER_MAGIC */
1283             return "cannot use reiserfs as cache partition";
1284         } else if (statfsbuf.f_type == 0x58465342) {    /* XFS_SUPER_MAGIC */
1285             return "cannot use xfs as cache partition";
1286         } else if (statfsbuf.f_type == 0x01021994) {    /* TMPFS_SUPER_MAGIC */
1287             return "cannot use tmpfs as cache partition";
1288         } else if (statfsbuf.f_type != 0xEF53) {
1289             return "must use ext2 or ext3 for cache partition";
1290         }
1291 #endif
1292     }
1293 #endif
1294
1295 #ifdef AFS_HPUX_ENV
1296     {
1297         int res;
1298         struct statfs statfsbuf;
1299         char name[FSTYPSZ];
1300
1301         res = statfs(dir, &statfsbuf);
1302         if (res != 0) {
1303             return "unable to statfs cache base directory";
1304         }
1305
1306         if (sysfs(GETFSTYP, statfsbuf.f_fsid[1], name) != 0) {
1307             return "unable to determine filesystem type for cache base dir";
1308         }
1309
1310         if (strcmp(name, "hfs")) {
1311             return "can only use hfs filesystem for cache partition on hpux";
1312         }
1313     }
1314 #endif
1315
1316 #ifdef AFS_SUN5_ENV
1317     {
1318         FILE *vfstab;
1319         struct mnttab mnt;
1320         struct stat statmnt, statci;
1321
1322         if ((stat(dir, &statci) == 0)
1323             && ((vfstab = fopen(MNTTAB, "r")) != NULL)) {
1324             while (getmntent(vfstab, &mnt) == 0) {
1325                 if (strcmp(dir, mnt.mnt_mountp) != 0) {
1326                     char *cp;
1327                     int rdev = 0;
1328
1329                     if (cp = hasmntopt(&mnt, "dev="))
1330                         rdev =
1331                             (int)strtol(cp + strlen("dev="), (char **)NULL,
1332                                         16);
1333
1334                     if ((rdev == 0) && (stat(mnt.mnt_mountp, &statmnt) == 0))
1335                         rdev = statmnt.st_dev;
1336
1337                     if ((rdev == statci.st_dev)
1338                         && (hasmntopt(&mnt, "logging") != NULL)) {
1339
1340                         fclose(vfstab);
1341                         return
1342                             "mounting a multi-use partition which contains the AFS cache with the\n\"logging\" option may deadlock your system.\n\n";
1343                     }
1344                 }
1345             }
1346
1347             fclose(vfstab);
1348         }
1349     }
1350 #endif
1351
1352     return NULL;
1353 }
1354
1355 int
1356 SweepAFSCache(int *vFilesFound)
1357 {
1358     static char rn[] = "SweepAFSCache"; /*Routine name */
1359     int maxDir = (cacheFiles + nFilesPerDir - 1) / nFilesPerDir;
1360     int i;
1361
1362     *vFilesFound = 0;
1363
1364     if (cacheFlags & AFSCALL_INIT_MEMCACHE) {
1365         if (afsd_debug)
1366             printf("%s: Memory Cache, no cache sweep done\n", rn);
1367         return 0;
1368     }
1369
1370     if (cache_dir_list == NULL) {
1371         cache_dir_list = (int *)malloc(maxDir * sizeof(*cache_dir_list));
1372         if (cache_dir_list == NULL) {
1373             printf("%s: Malloc Failed!\n", rn);
1374             return (-1);
1375         }
1376         for (i = 0; i < maxDir; i++)
1377             cache_dir_list[i] = -1;     /* Does not exist */
1378     }
1379
1380     if (cache_dir_filelist == NULL) {
1381         cache_dir_filelist = (struct afsd_file_list **)
1382             malloc(maxDir * sizeof(*cache_dir_filelist));
1383         if (cache_dir_filelist == NULL) {
1384             printf("%s: Malloc Failed!\n", rn);
1385             return (-1);
1386         }
1387         memset(cache_dir_filelist, 0, maxDir * sizeof(*cache_dir_filelist));
1388     }
1389
1390     if (dir_for_V == NULL) {
1391         dir_for_V = (int *)malloc(cacheFiles * sizeof(*dir_for_V));
1392         if (dir_for_V == NULL) {
1393             printf("%s: Malloc Failed!\n", rn);
1394             return (-1);
1395         }
1396         for (i = 0; i < cacheFiles; i++)
1397             dir_for_V[i] = -1;  /* Does not exist */
1398     }
1399
1400     /* Note, setting dirNum to -2 here will cause cachefiles found in
1401      * the toplevel directory to be marked in directory "-2".  This
1402      * allows us to differentiate between 'file not seen' (-1) and
1403      * 'file seen in top-level' (-2).  Then when we try to move the
1404      * file into a subdirectory, we know it's in the top-level instead
1405      * of some other cache subdir.
1406      */
1407     return doSweepAFSCache(vFilesFound, cacheBaseDir, -2, maxDir);
1408 }
1409
1410 static int
1411 ConfigCell(struct afsconf_cell *aci, void *arock, struct afsconf_dir *adir)
1412 {
1413     int isHomeCell;
1414     int i, code;
1415     afs_int32 cellFlags = 0;
1416     afs_int32 hosts[MAXHOSTSPERCELL];
1417
1418     /* figure out if this is the home cell */
1419     isHomeCell = (strcmp(aci->name, LclCellName) == 0);
1420     if (!isHomeCell) {
1421         cellFlags = 2;          /* not home, suid is forbidden */
1422         if (enable_dynroot == 2)
1423             cellFlags |= 8; /* don't display foreign cells until looked up */
1424     }
1425     /* build address list */
1426     for (i = 0; i < MAXHOSTSPERCELL; i++)
1427         memcpy(&hosts[i], &aci->hostAddr[i].sin_addr, sizeof(afs_int32));
1428
1429     if (aci->linkedCell)
1430         cellFlags |= 4;         /* Flag that linkedCell arg exists,
1431                                  * for upwards compatibility */
1432
1433     /* configure one cell */
1434     code = afsd_call_syscall(AFSOP_ADDCELL2, hosts,     /* server addresses */
1435                         aci->name,      /* cell name */
1436                         cellFlags,      /* is this the home cell? */
1437                         aci->linkedCell);       /* Linked cell, if any */
1438     if (code)
1439         printf("Adding cell '%s': error %d\n", aci->name, code);
1440     return 0;
1441 }
1442
1443 static int
1444 ConfigCellAlias(struct afsconf_cellalias *aca,
1445                 void *arock, struct afsconf_dir *adir)
1446 {
1447     /* push the alias into the kernel */
1448     afsd_call_syscall(AFSOP_ADDCELLALIAS, aca->aliasName, aca->realName);
1449     return 0;
1450 }
1451
1452 static void
1453 AfsdbLookupHandler(void)
1454 {
1455     afs_int32 kernelMsg[64];
1456     char acellName[128];
1457     afs_int32 code;
1458     struct afsconf_cell acellInfo;
1459     int i;
1460
1461     kernelMsg[0] = 0;
1462     kernelMsg[1] = 0;
1463     acellName[0] = '\0';
1464
1465 #ifdef AFS_DARWIN_ENV
1466     /* Fork the event handler also. */
1467     code = fork();
1468     if (code == 0) {
1469         afsd_install_events();
1470         return;
1471     } else if (code != -1) {
1472         event_pid = code;
1473     }
1474 #endif
1475     while (1) {
1476         /* On some platforms you only get 4 args to an AFS call */
1477         int sizeArg = ((sizeof acellName) << 16) | (sizeof kernelMsg);
1478         code =
1479             afsd_call_syscall(AFSOP_AFSDB_HANDLER, acellName, kernelMsg, sizeArg);
1480         if (code) {             /* Something is wrong? */
1481             sleep(1);
1482             continue;
1483         }
1484
1485         if (*acellName == 1)    /* Shutting down */
1486             break;
1487
1488         code = afsconf_GetAfsdbInfo(acellName, 0, &acellInfo);
1489         if (code) {
1490             kernelMsg[0] = 0;
1491             kernelMsg[1] = 0;
1492         } else {
1493             kernelMsg[0] = acellInfo.numServers;
1494             if (acellInfo.timeout)
1495                 kernelMsg[1] = acellInfo.timeout - time(0);
1496             else
1497                 kernelMsg[1] = 0;
1498             for (i = 0; i < acellInfo.numServers; i++)
1499                 kernelMsg[i + 2] = acellInfo.hostAddr[i].sin_addr.s_addr;
1500             strncpy(acellName, acellInfo.name, sizeof(acellName));
1501             acellName[sizeof(acellName) - 1] = '\0';
1502         }
1503     }
1504 #ifdef AFS_DARWIN_ENV
1505     kill(event_pid, SIGTERM);
1506 #endif
1507 }
1508
1509 #ifdef AFS_DARWIN_ENV
1510 static void
1511 BkgHandler(void)
1512 {
1513     afs_int32 code;
1514     struct afs_uspc_param *uspc;
1515     char srcName[256];
1516     char dstName[256];
1517
1518     uspc = (struct afs_uspc_param *)malloc(sizeof(struct afs_uspc_param));
1519     memset(uspc, 0, sizeof(struct afs_uspc_param));
1520     memset(srcName, 0, sizeof(srcName));
1521     memset(dstName, 0, sizeof(dstName));
1522
1523     /* brscount starts at 0 */
1524     uspc->ts = -1;
1525
1526     while (1) {
1527         pid_t child = 0;
1528         int status;
1529         char srcpath[BUFSIZ];
1530         char dstpath[BUFSIZ];
1531
1532         /* pushing in a buffer this large */
1533         uspc->bufSz = 256;
1534
1535         code = afsd_call_syscall(AFSOP_BKG_HANDLER, uspc, srcName, dstName);
1536         if (code) {             /* Something is wrong? */
1537             if (code == -2) /* shutting down */
1538                 break;
1539
1540             sleep(1);
1541             uspc->retval = -1;
1542             continue;
1543         }
1544
1545         switch (uspc->reqtype) {
1546         case AFS_USPC_UMV:
1547             snprintf(srcpath, BUFSIZ, "/afs/.:mount/%d:%d:%d:%d/%s",
1548                      uspc->req.umv.sCell, uspc->req.umv.sVolume,
1549                      uspc->req.umv.sVnode, uspc->req.umv.sUnique, srcName);
1550             snprintf(dstpath, BUFSIZ, "/afs/.:mount/%d:%d:%d:%d/%s",
1551                      uspc->req.umv.dCell, uspc->req.umv.dVolume,
1552                      uspc->req.umv.dVnode, uspc->req.umv.dUnique, dstName);
1553             if ((child = fork()) == 0) {
1554                 /* first child does cp; second, rm. mv would re-enter. */
1555
1556                 switch (uspc->req.umv.idtype) {
1557                 case IDTYPE_UID:
1558                     if (setuid(uspc->req.umv.id) != 0) {
1559                         exit(-1);
1560                     }
1561                     break;
1562                 default:
1563                     exit(-1);
1564                     break; /* notreached */
1565                 }
1566                 execl("/bin/cp", "(afsd EXDEV helper)", "-PRp", "--", srcpath,
1567                       dstpath, (char *) NULL);
1568             }
1569             if (child == (pid_t) -1) {
1570                 uspc->retval = -1;
1571                 continue;
1572             }
1573
1574             if (waitpid(child, &status, 0) == -1)
1575                 uspc->retval = EIO;
1576             else if (WIFEXITED(status) != 0 && WEXITSTATUS(status) == 0) {
1577                 if ((child = fork()) == 0) {
1578                     switch (uspc->req.umv.idtype) {
1579                     case IDTYPE_UID:
1580                         if (setuid(uspc->req.umv.id) != 0) {
1581                             exit(-1);
1582                         }
1583                         break;
1584                     default:
1585                         exit(-1);
1586                         break; /* notreached */
1587                     }
1588                     execl("/bin/rm", "(afsd EXDEV helper)", "-rf", "--",
1589                           srcpath, (char *) NULL);
1590                 }
1591                 if (child == (pid_t) -1) {
1592                     uspc->retval = -1;
1593                     continue;
1594                 }
1595                 if (waitpid(child, &status, 0) == -1)
1596                     uspc->retval = EIO;
1597                 else if (WIFEXITED(status) != 0) {
1598                     /* rm exit status */
1599                     uspc->retval = WEXITSTATUS(status);
1600                 } else {
1601                     /* rm signal status */
1602                     uspc->retval = -(WTERMSIG(status));
1603                 }
1604             } else {
1605                 /* error from cp: exit or signal status */
1606                 uspc->retval = (WIFEXITED(status) != 0) ?
1607                     WEXITSTATUS(status) : -(WTERMSIG(status));
1608             }
1609             memset(srcName, 0, sizeof(srcName));
1610             memset(dstName, 0, sizeof(dstName));
1611             break;
1612
1613         default:
1614             /* unknown req type */
1615             uspc->retval = -1;
1616             break;
1617         }
1618     }
1619 }
1620 #endif
1621
1622 static void *
1623 afsdb_thread(void *rock)
1624 {
1625     /* Since the AFSDB lookup handler runs as a user process,
1626      * need to drop the controlling TTY, etc.
1627      */
1628     if (afsd_daemon(0, 0) == -1) {
1629         printf("Error starting AFSDB lookup handler: %s\n",
1630                strerror(errno));
1631         exit(1);
1632     }
1633     AfsdbLookupHandler();
1634     return NULL;
1635 }
1636
1637 static void *
1638 daemon_thread(void *rock)
1639 {
1640 #ifdef AFS_DARWIN80_ENV
1641     /* Since the background daemon runs as a user process,
1642      * need to drop the controlling TTY, etc.
1643      */
1644     if (afsd_daemon(0, 0) == -1) {
1645         printf("Error starting background daemon: %s\n",
1646                strerror(errno));
1647         exit(1);
1648     }
1649     BkgHandler();
1650 #elif defined(AFS_AIX32_ENV)
1651     afsd_call_syscall(AFSOP_START_BKG, 0);
1652 #else
1653     afsd_call_syscall(AFSOP_START_BKG);
1654 #endif
1655     return NULL;
1656 }
1657
1658 #ifndef UKERNEL
1659 static void *
1660 rmtsysd_thread(void *rock)
1661 {
1662     rmtsysd();
1663     return NULL;
1664 }
1665 #endif /* !UKERNEL */
1666
1667 int
1668 mainproc(struct cmd_syndesc *as, void *arock)
1669 {
1670     afs_int32 code;             /*Result of fork() */
1671 #ifdef  AFS_SUN5_ENV
1672     struct stat st;
1673 #endif
1674 #ifdef AFS_SGI65_ENV
1675     struct sched_param sp;
1676 #endif
1677
1678 #ifdef AFS_SGI_VNODE_GLUE
1679     if (afs_init_kernel_config(-1) < 0) {
1680         printf("Can't determine NUMA configuration, not starting AFS.\n");
1681         exit(1);
1682     }
1683 #endif
1684
1685     /* call atoi on the appropriate parsed results */
1686     if (as->parms[0].items) {
1687         /* -blocks */
1688         cacheBlocks = atoi(as->parms[0].items->data);
1689         sawCacheBlocks = 1;
1690     }
1691     if (as->parms[1].items) {
1692         /* -files */
1693         cacheFiles = atoi(as->parms[1].items->data);
1694         filesSet = 1;           /* set when spec'd on cmd line */
1695     }
1696     if (as->parms[2].items) {
1697         /* -rootvol */
1698         strcpy(rootVolume, as->parms[2].items->data);
1699         rootVolSet = 1;
1700     }
1701     if (as->parms[3].items) {
1702         /* -stat */
1703         cacheStatEntries = atoi(as->parms[3].items->data);
1704         sawCacheStatEntries = 1;
1705     }
1706     if (as->parms[4].items) {
1707         /* -memcache */
1708         cacheBaseDir[0] = '\0';
1709         sawCacheBaseDir = 1;
1710         cacheFlags |= AFSCALL_INIT_MEMCACHE;
1711     }
1712     if (as->parms[5].items) {
1713         /* -cachedir */
1714         strcpy(cacheBaseDir, as->parms[5].items->data);
1715         sawCacheBaseDir = 1;
1716     }
1717     if (as->parms[6].items) {
1718         /* -mountdir */
1719         strcpy(afsd_cacheMountDir, as->parms[6].items->data);
1720         sawCacheMountDir = 1;
1721     }
1722     if (as->parms[7].items) {
1723         /* -daemons */
1724         nDaemons = atoi(as->parms[7].items->data);
1725     }
1726     if (as->parms[8].items) {
1727         /* -nosettime */
1728         cacheSetTime = 0;
1729     }
1730     if (as->parms[9].items) {
1731         /* -verbose */
1732         afsd_verbose = 1;
1733     }
1734     if (as->parms[10].items) {
1735         /* -rmtsys */
1736         afsd_rmtsys = 1;
1737 #ifdef UKERNEL
1738         printf("-rmtsys not supported for UKERNEL\n");
1739         return -1;
1740 #endif
1741     }
1742     if (as->parms[11].items) {
1743         /* -debug */
1744         afsd_debug = 1;
1745         afsd_verbose = 1;
1746     }
1747     if (as->parms[12].items) {
1748         /* -chunksize */
1749         chunkSize = atoi(as->parms[12].items->data);
1750         if (chunkSize < 0 || chunkSize > 30) {
1751             printf
1752                 ("afsd:invalid chunk size (not in range 0-30), using default\n");
1753             chunkSize = 0;
1754         }
1755     }
1756     if (as->parms[13].items) {
1757         /* -dcache */
1758         dCacheSize = atoi(as->parms[13].items->data);
1759         sawDCacheSize = 1;
1760     }
1761     if (as->parms[14].items) {
1762         /* -volumes */
1763         vCacheSize = atoi(as->parms[14].items->data);
1764     }
1765     if (as->parms[15].items) {
1766         /* -biods */
1767 #ifndef AFS_AIX32_ENV
1768         printf
1769             ("afsd: [-biods] currently only enabled for aix3.x VM supported systems\n");
1770 #else
1771         nBiods = atoi(as->parms[15].items->data);
1772         sawBiod = 1;
1773 #endif
1774     }
1775     if (as->parms[16].items) {
1776         /* -prealloc */
1777         preallocs = atoi(as->parms[16].items->data);
1778     }
1779     strcpy(confDir, AFSDIR_CLIENT_ETC_DIRPATH);
1780     if (as->parms[17].items) {
1781         /* -confdir */
1782         strcpy(confDir, as->parms[17].items->data);
1783     }
1784     sprintf(fullpn_CacheInfo, "%s/%s", confDir, CACHEINFOFILE);
1785     if (as->parms[18].items) {
1786         /* -logfile */
1787         printf("afsd: Ignoring obsolete -logfile flag\n");
1788     }
1789     if (as->parms[19].items) {
1790         /* -waitclose */
1791         afsd_CloseSynch = 1;
1792     }
1793     if (as->parms[20].items) {
1794         /* -shutdown */
1795         afs_shutdown = 1;
1796         /*
1797          * Cold shutdown is the default
1798          */
1799         printf("afsd: Shutting down all afs processes and afs state\n");
1800         code = afsd_call_syscall(AFSOP_SHUTDOWN, 1);
1801         if (code) {
1802             printf("afsd: AFS still mounted; Not shutting down\n");
1803             exit(1);
1804         }
1805         exit(0);
1806     }
1807     if (as->parms[21].items) {
1808         /* -enable_peer_stats */
1809         enable_peer_stats = 1;
1810     }
1811     if (as->parms[22].items) {
1812         /* -enable_process_stats */
1813         enable_process_stats = 1;
1814     }
1815     if (as->parms[23].items) {
1816         /* -mem_alloc_sleep */
1817         printf("afsd: -mem_alloc_sleep is deprecated -- ignored\n");
1818     }
1819     if (as->parms[24].items) {
1820         /* -afsdb */
1821         enable_afsdb = 1;
1822     }
1823     if (as->parms[25].items) {
1824         /* -files_per_subdir */
1825         int res = atoi(as->parms[25].items->data);
1826         if (res < 10 || res > (1 << 30)) {
1827             printf
1828                 ("afsd:invalid number of files per subdir, \"%s\". Ignored\n",
1829                  as->parms[25].items->data);
1830         } else {
1831             nFilesPerDir = res;
1832         }
1833     }
1834     if (as->parms[26].items) {
1835         /* -dynroot */
1836         enable_dynroot = 1;
1837     }
1838     if (as->parms[27].items) {
1839         /* -fakestat */
1840         enable_fakestat = 2;
1841     }
1842     if (as->parms[28].items) {
1843         /* -fakestat-all */
1844         enable_fakestat = 1;
1845     }
1846     if (as->parms[29].items) {
1847         /* -nomount */
1848         enable_nomount = 1;
1849     }
1850     if (as->parms[30].items) {
1851         /* -backuptree */
1852         enable_backuptree = 1;
1853     }
1854     if (as->parms[31].items) {
1855         /* -rxbind */
1856         enable_rxbind = 1;
1857     }
1858     if (as->parms[32].items) {
1859         /* -settime */
1860         cacheSetTime = 1;
1861     }
1862
1863     /* set rx_extraPackets */
1864     if (as->parms[33].items) {
1865         /* -rxpck */
1866         int rxpck = atoi(as->parms[33].items->data);
1867         printf("afsd: set rxpck = %d\n", rxpck);
1868         code = afsd_call_syscall(AFSOP_SET_RXPCK, rxpck);
1869         if (code) {
1870             printf("afsd: failed to set rxpck\n");
1871             exit(1);
1872         }
1873     }
1874     if (as->parms[34].items) {
1875         char *c;
1876         if (!as->parms[34].items->data ||
1877             ((c = strchr(as->parms[34].items->data, '/')) == NULL))
1878             printf
1879                 ("ignoring splitcache (specify as RW/RO percentages: 60/40)\n");
1880         else {
1881             ropct = atoi((char *)c + 1);
1882             *c = '\0';
1883             rwpct = atoi((char *)as->parms[30].items->data);
1884             if ((rwpct != 0) && (ropct != 0) && (ropct + rwpct == 100)) {
1885                 /* -splitcache */
1886                 enable_splitcache = 1;
1887             }
1888         }
1889     }
1890     if (as->parms[35].items) {
1891 #ifdef AFS_MAXVCOUNT_ENV
1892        /* -disable-dynamic-vcaches */
1893        afsd_dynamic_vcaches = 0;
1894 #else
1895        printf("afsd: Error toggling flag, dynamically allocated vcaches not supported on your platform\n");
1896        exit(1);
1897 #endif
1898     }
1899 #ifdef AFS_MAXVCOUNT_ENV
1900     else {
1901        /* -dynamic-vcaches */
1902        afsd_dynamic_vcaches = 1;
1903     }
1904
1905     if (afsd_verbose)
1906     printf("afsd: %s dynamically allocated vcaches\n", ( afsd_dynamic_vcaches ? "enabling" : "disabling" ));
1907 #endif
1908
1909     /* set -rxmaxmtu */
1910     if (as->parms[36].items) {
1911         /* -rxmaxmtu */
1912         rxmaxmtu = atoi(as->parms[36].items->data);
1913     }
1914     if (as->parms[37].items) {
1915         /* -dynroot-sparse */
1916         enable_dynroot = 2;
1917     }
1918     return 0;
1919 }
1920
1921 int
1922 afsd_run(void)
1923 {
1924     static char rn[] = "afsd";  /*Name of this routine */
1925     struct afsconf_dir *cdir;   /* config dir */
1926     int lookupResult;           /*Result of GetLocalCellName() */
1927     int i;
1928     afs_int32 code;             /*Result of fork() */
1929     char *fsTypeMsg = NULL;
1930     int cacheIteration;         /*How many times through cache verification */
1931     int vFilesFound;            /*How many data cache files were found in sweep */
1932     int currVFile;              /*Current AFS cache file number passed in */
1933
1934         /*
1935      * Pull out all the configuration info for the workstation's AFS cache and
1936      * the cellular community we're willing to let our users see.
1937      */
1938     cdir = afsconf_Open(confDir);
1939     if (!cdir) {
1940         printf("afsd: some file missing or bad in %s\n", confDir);
1941         exit(1);
1942     }
1943
1944     lookupResult =
1945         afsconf_GetLocalCell(cdir, LclCellName, sizeof(LclCellName));
1946     if (lookupResult) {
1947         printf("%s: Can't get my home cell name!  [Error is %d]\n", rn,
1948                lookupResult);
1949     } else {
1950         if (afsd_verbose)
1951             printf("%s: My home cell is '%s'\n", rn, LclCellName);
1952     }
1953
1954     /* parse cacheinfo file if this is a diskcache */
1955     if (ParseCacheInfoFile()) {
1956         exit(1);
1957     }
1958
1959     /* do some random computations in memcache case to get things to work
1960      * reasonably no matter which parameters you set.
1961      */
1962     if (cacheFlags & AFSCALL_INIT_MEMCACHE) {
1963         /* memory cache: size described either as blocks or dcache entries, but
1964          * not both.
1965          */
1966         if (filesSet) {
1967             fprintf(stderr, "%s: -files ignored with -memcache\n", rn);
1968         }
1969         if (sawDCacheSize) {
1970             if (chunkSize == 0) {
1971                 chunkSize = 13; /* 8k default chunksize for memcache */
1972             }
1973             if (sawCacheBlocks) {
1974                 printf
1975                     ("%s: can't set cache blocks and dcache size simultaneously when diskless.\n",
1976                      rn);
1977                 exit(1);
1978             }
1979             /* compute the cache size based on # of chunks times the chunk size */
1980             i = (1 << chunkSize);       /* bytes per chunk */
1981             cacheBlocks = i * dCacheSize;
1982             sawCacheBlocks = 1; /* so that ParseCacheInfoFile doesn't overwrite */
1983         } else {
1984             if (chunkSize == 0) {
1985                 /* Try to autotune the memcache chunksize based on size
1986                  * of memcache. This is done on the assumption that approx
1987                  * 1024 chunks is suitable, it's a balance between enough
1988                  * chunks to be useful and ramping up nicely when using larger
1989                  * memcache to improve bulk read/write performance
1990                  */
1991                 for (i = 14;
1992                      i <= 21 && (1 << i) / 1024 < (cacheBlocks / 1024); i++);
1993                 chunkSize = i - 1;
1994             }
1995             /* compute the dcache size from overall cache size and chunk size */
1996             if (chunkSize > 10) {
1997                 dCacheSize = (cacheBlocks >> (chunkSize - 10));
1998             } else if (chunkSize < 10) {
1999                 dCacheSize = (cacheBlocks << (10 - chunkSize));
2000             } else {
2001                 dCacheSize = cacheBlocks;
2002             }
2003             /* don't have to set sawDCacheSize here since it isn't overwritten
2004              * by ParseCacheInfoFile.
2005              */
2006         }
2007         if (afsd_verbose)
2008             printf("%s: chunkSize autotuned to %d\n", rn, chunkSize);
2009
2010         /* kernel computes # of dcache entries as min of cacheFiles and
2011          * dCacheSize, so we now make them equal.
2012          */
2013         cacheFiles = dCacheSize;
2014     } else {
2015         /* Disk cache:
2016          * Compute the number of cache files based on cache size,
2017          * but only if -files isn't given on the command line.
2018          * Don't let # files be so small as to prevent full utilization
2019          * of the cache unless user has explicitly asked for it.
2020          */
2021         if (chunkSize == 0) {
2022             /* Set chunksize to 256kB - 1MB depending on cache size */
2023             if (cacheBlocks < 500000) {
2024                 chunkSize = 18;
2025             } else if (cacheBlocks < 1000000) {
2026                 chunkSize = 19;
2027             } else {
2028                 chunkSize = 20;
2029             }
2030         }
2031         if (!filesSet) {
2032             cacheFiles = cacheBlocks / 32;      /* Assume 32k avg filesize */
2033
2034             cacheFiles = max(cacheFiles, 1000);
2035
2036             /* Always allow more files than chunks.  Presume average V-file
2037              * is ~67% of a chunk...  (another guess, perhaps Honeyman will
2038              * have a grad student write a paper).  i is KILOBYTES.
2039              */
2040             i = 1 << (chunkSize < 10 ? 0 : chunkSize - 10);
2041             cacheFiles = max(cacheFiles, 1.5 * (cacheBlocks / i));
2042
2043             /* never permit more files than blocks, while leaving space for
2044              * VolumeInfo and CacheItems files.  VolumeInfo is usually 20K,
2045              * CacheItems is 50 Bytes / file (== 1K/20)
2046              */
2047 #define CACHEITMSZ (cacheFiles / 20)
2048 #define VOLINFOSZ 50            /* 40kB has been seen, be conservative */
2049 #define CELLINFOSZ 4            /* Assuming disk block size is 4k ... */
2050 #define INFOSZ (VOLINFOSZ+CELLINFOSZ+CACHEITMSZ)
2051
2052             /* Sanity check: If the obtained number of disk cache files
2053              * is larger than the number of available (4k) disk blocks, we're
2054              * doing something wrong. Fail hard so we can fix the bug instead
2055              * of silently hiding it like before */
2056
2057             if (cacheFiles > (cacheBlocks - INFOSZ) / 4) {
2058                 fprintf(stderr,
2059                         "%s: ASSERT: cacheFiles %d  diskblocks %d\n",
2060                         rn, cacheFiles, (cacheBlocks - INFOSZ) / 4);
2061                 exit(1);
2062             }
2063             if (cacheFiles < 100)
2064                 fprintf(stderr, "%s: WARNING: cache probably too small!\n",
2065                         rn);
2066
2067             if (afsd_verbose)
2068                 printf("%s: cacheFiles autotuned to %d\n", rn, cacheFiles);
2069         }
2070 #if 0
2071        /* This actually needs to
2072           1) use powers of 2
2073           2) not second-guess when a chunksize comes from the command line
2074           3) be less, um, small. 2^2??
2075        */
2076         /* Sanity check chunkSize */
2077         i = max(cacheBlocks / 1000, cacheBlocks / cacheFiles);
2078         chunkSize = min(chunkSize, i);
2079         chunkSize = max(chunkSize, 2);
2080         if (afsd_verbose)
2081             printf("%s: chunkSize autotuned to %d\n", rn, chunkSize);
2082 #endif
2083
2084         if (!sawDCacheSize) {
2085             dCacheSize = cacheFiles / 2;
2086             if (dCacheSize > 10000) {
2087                 dCacheSize = 10000;
2088             }
2089             if (dCacheSize < 2000) {
2090                 dCacheSize = 2000;
2091             }
2092             if (afsd_verbose)
2093                 printf("%s: dCacheSize autotuned to %d\n", rn, dCacheSize);
2094         }
2095     }
2096     if (!sawCacheStatEntries) {
2097         if (chunkSize <= 13) {
2098             cacheStatEntries = dCacheSize / 4;
2099         } else if (chunkSize >= 16) {
2100             cacheStatEntries = dCacheSize * 1.5;
2101         } else {
2102             cacheStatEntries = dCacheSize;
2103         }
2104         if (afsd_verbose)
2105             printf("%s: cacheStatEntries autotuned to %d\n", rn,
2106                    cacheStatEntries);
2107     }
2108
2109 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
2110     /*
2111      * Create and zero the inode table for the desired cache files.
2112      */
2113     inode_for_V = (AFSD_INO_T *) malloc(cacheFiles * sizeof(AFSD_INO_T));
2114     if (inode_for_V == (AFSD_INO_T *) 0) {
2115         printf
2116             ("%s: malloc() failed for cache file inode table with %d entries.\n",
2117              rn, cacheFiles);
2118         exit(1);
2119     }
2120     memset(inode_for_V, '\0', (cacheFiles * sizeof(AFSD_INO_T)));
2121     if (afsd_debug)
2122         printf("%s: %d inode_for_V entries at 0x%x, %lu bytes\n", rn,
2123                cacheFiles, inode_for_V, (cacheFiles * sizeof(AFSD_INO_T)));
2124 #endif
2125
2126     /*
2127      * Set up all the pathnames we'll need for later.
2128      */
2129     sprintf(fullpn_DCacheFile, "%s/%s", cacheBaseDir, DCACHEFILE);
2130     sprintf(fullpn_VolInfoFile, "%s/%s", cacheBaseDir, VOLINFOFILE);
2131     sprintf(fullpn_CellInfoFile, "%s/%s", cacheBaseDir, CELLINFOFILE);
2132     sprintf(fullpn_VFile, "%s/", cacheBaseDir);
2133     vFilePtr = fullpn_VFile + strlen(fullpn_VFile);
2134
2135     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)
2136         && (fsTypeMsg = CheckCacheBaseDir(cacheBaseDir))) {
2137 #ifdef AFS_SUN5_ENV
2138         printf("%s: WARNING: Cache dir check failed (%s)\n", rn, fsTypeMsg);
2139 #else
2140         printf("%s: ERROR: Cache dir check failed (%s)\n", rn, fsTypeMsg);
2141         exit(1);
2142 #endif
2143     }
2144
2145     /*
2146      * Set up all the kernel processes needed for AFS.
2147      */
2148 #ifdef mac2
2149     setpgrp(getpid(), 0);
2150 #endif /* mac2 */
2151
2152     /*
2153      * Set the primary cell name.
2154      */
2155     afsd_call_syscall(AFSOP_SET_THISCELL, LclCellName);
2156
2157     /* Initialize RX daemons and services */
2158
2159     /* initialize the rx random number generator from user space */
2160     {
2161         /* parse multihomed address files */
2162         afs_uint32 addrbuf[MAXIPADDRS], maskbuf[MAXIPADDRS],
2163             mtubuf[MAXIPADDRS];
2164         char reason[1024];
2165         code =
2166             parseNetFiles(addrbuf, maskbuf, mtubuf, MAXIPADDRS, reason,
2167                           AFSDIR_CLIENT_NETINFO_FILEPATH,
2168                           AFSDIR_CLIENT_NETRESTRICT_FILEPATH);
2169         if (code > 0) {
2170             if (enable_rxbind)
2171                 code = code | 0x80000000;
2172                 afsd_call_syscall(AFSOP_ADVISEADDR, code, addrbuf, maskbuf, mtubuf);
2173         } else
2174             printf("ADVISEADDR: Error in specifying interface addresses:%s\n",
2175                    reason);
2176     }
2177
2178     /* Set realtime priority for most threads to same as for biod's. */
2179     afsd_set_afsd_rtpri();
2180
2181 #ifdef  AFS_SGI53_ENV
2182 #ifdef AFS_SGI61_ENV
2183     set_staticaddrs();
2184 #else /* AFS_SGI61_ENV */
2185     code = get_nfsstaticaddr();
2186     if (code)
2187         afsd_call_syscall(AFSOP_NFSSTATICADDR, code);
2188 #endif /* AFS_SGI61_ENV */
2189 #endif /* AFS_SGI_53_ENV */
2190
2191     /* Start listener, then callback listener. Lastly, start rx event daemon.
2192      * Change in ordering is so that Linux port has socket fd in listener
2193      * process.
2194      * preallocs are passed for both listener and callback server. Only
2195      * the one which actually does the initialization uses them though.
2196      */
2197     if (preallocs < cacheStatEntries + 50)
2198         preallocs = cacheStatEntries + 50;
2199 #ifdef RXK_LISTENER_ENV
2200     if (afsd_verbose)
2201         printf("%s: Forking rx listener daemon.\n", rn);
2202 # ifdef AFS_SUN510_ENV
2203     fork_rx_syscall_wait(rn, AFSOP_RXLISTENER_DAEMON, preallocs,
2204                          enable_peer_stats, enable_process_stats);
2205 # else /* !AFS_SUN510_ENV */
2206     fork_rx_syscall(rn, AFSOP_RXLISTENER_DAEMON, preallocs, enable_peer_stats,
2207                     enable_process_stats);
2208 # endif /* !AFS_SUN510_ENV */
2209 #endif
2210     if (afsd_verbose)
2211         printf("%s: Forking rx callback listener.\n", rn);
2212     fork_syscall(rn, AFSOP_START_RXCALLBACK, preallocs);
2213 #if defined(AFS_SUN5_ENV) || defined(RXK_LISTENER_ENV)
2214     if (afsd_verbose)
2215         printf("%s: Forking rxevent daemon.\n", rn);
2216     fork_rx_syscall(rn, AFSOP_RXEVENT_DAEMON);
2217 #endif
2218
2219     if (enable_afsdb) {
2220         if (afsd_verbose)
2221             printf("%s: Forking AFSDB lookup handler.\n", rn);
2222         afsd_fork(0, afsdb_thread, NULL);
2223     }
2224     code = afsd_call_syscall(AFSOP_BASIC_INIT, 1);
2225     if (code) {
2226         printf("%s: Error %d in basic initialization.\n", rn, code);
2227         exit(1);
2228     }
2229
2230     /*
2231      * Tell the kernel some basic information about the workstation's cache.
2232      */
2233     if (afsd_verbose)
2234         printf
2235             ("%s: Calling AFSOP_CACHEINIT: %d stat cache entries, %d optimum cache files, %d blocks in the cache, flags = 0x%x, dcache entries %d\n",
2236              rn, cacheStatEntries, cacheFiles, cacheBlocks, cacheFlags,
2237              dCacheSize);
2238     memset(&cparams, '\0', sizeof(cparams));
2239     cparams.cacheScaches = cacheStatEntries;
2240     cparams.cacheFiles = cacheFiles;
2241     cparams.cacheBlocks = cacheBlocks;
2242     cparams.cacheDcaches = dCacheSize;
2243     cparams.cacheVolumes = vCacheSize;
2244     cparams.chunkSize = chunkSize;
2245     cparams.setTimeFlag = cacheSetTime;
2246     cparams.memCacheFlag = cacheFlags;
2247     cparams.dynamic_vcaches = afsd_dynamic_vcaches;
2248         afsd_call_syscall(AFSOP_CACHEINIT, &cparams);
2249
2250     /* do it before we init the cache inodes */
2251     if (enable_splitcache) {
2252         afsd_call_syscall(AFSOP_BUCKETPCT, 1, rwpct);
2253         afsd_call_syscall(AFSOP_BUCKETPCT, 2, ropct);
2254     }
2255
2256     if (afsd_CloseSynch)
2257         afsd_call_syscall(AFSOP_CLOSEWAIT);
2258
2259     /*
2260      * Sweep the workstation AFS cache directory, remembering the inodes of
2261      * valid files and deleting extraneous files.  Keep sweeping until we
2262      * have the right number of data cache files or we've swept too many
2263      * times.
2264      *
2265      * This also creates files in the cache directory like VolumeItems and
2266      * CellItems, and thus must be ran before those are sent to the kernel.
2267      */
2268     if (afsd_verbose)
2269         printf("%s: Sweeping workstation's AFS cache directory.\n", rn);
2270     cacheIteration = 0;
2271     /* Memory-cache based system doesn't need any of this */
2272     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)) {
2273         do {
2274             cacheIteration++;
2275             if (SweepAFSCache(&vFilesFound)) {
2276                 printf("%s: Error on sweep %d of workstation AFS cache \
2277                        directory.\n", rn, cacheIteration);
2278                 exit(1);
2279             }
2280             if (afsd_verbose)
2281                 printf
2282                     ("%s: %d out of %d data cache files found in sweep %d.\n",
2283                      rn, vFilesFound, cacheFiles, cacheIteration);
2284         } while ((vFilesFound < cacheFiles)
2285                  && (cacheIteration < MAX_CACHE_LOOPS));
2286     } else if (afsd_verbose)
2287         printf("%s: Using memory cache, not swept\n", rn);
2288
2289     /*
2290      * Pass the kernel the name of the workstation cache file holding the
2291      * dcache entries.
2292      */
2293     if (afsd_debug)
2294         printf("%s: Calling AFSOP_CACHEINFO: dcache file is '%s'\n", rn,
2295                fullpn_DCacheFile);
2296     /* once again, meaningless for a memory-based cache. */
2297     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE))
2298         afsd_call_syscall(AFSOP_CACHEINFO, fullpn_DCacheFile);
2299
2300     /*
2301      * Pass the kernel the name of the workstation cache file holding the
2302      * cell information.
2303      */
2304     if (afsd_debug)
2305         printf("%s: Calling AFSOP_CELLINFO: cell info file is '%s'\n", rn,
2306                fullpn_CellInfoFile);
2307         afsd_call_syscall(AFSOP_CELLINFO, fullpn_CellInfoFile);
2308
2309     if (rxmaxmtu) {
2310         if (afsd_verbose)
2311             printf("%s: Setting rxmaxmtu in kernel = %d\n", rn, rxmaxmtu);
2312         code = afsd_call_syscall(AFSOP_SET_RXMAXMTU, rxmaxmtu);
2313         if (code)
2314             printf("%s: Error seting rxmaxmtu\n", rn);
2315     }
2316
2317     if (enable_dynroot) {
2318         if (afsd_verbose)
2319             printf("%s: Enabling dynroot support in kernel%s.\n", rn,
2320                    (enable_dynroot==2)?", not showing cells.":"");
2321         code = afsd_call_syscall(AFSOP_SET_DYNROOT, 1);
2322         if (code)
2323             printf("%s: Error enabling dynroot support.\n", rn);
2324     }
2325
2326     if (enable_fakestat) {
2327         if (afsd_verbose)
2328             printf("%s: Enabling fakestat support in kernel%s.\n", rn,
2329                    (enable_fakestat==2)?" for all mountpoints."
2330                    :" for crosscell mountpoints");
2331         code = afsd_call_syscall(AFSOP_SET_FAKESTAT, enable_fakestat);
2332         if (code)
2333             printf("%s: Error enabling fakestat support.\n", rn);
2334     }
2335
2336     if (enable_backuptree) {
2337         if (afsd_verbose)
2338             printf("%s: Enabling backup tree support in kernel.\n", rn);
2339         code = afsd_call_syscall(AFSOP_SET_BACKUPTREE, enable_backuptree);
2340         if (code)
2341             printf("%s: Error enabling backup tree support.\n", rn);
2342     }
2343
2344     /*
2345      * Tell the kernel about each cell in the configuration.
2346      */
2347     afsconf_CellApply(cdir, ConfigCell, NULL);
2348     afsconf_CellAliasApply(cdir, ConfigCellAlias, NULL);
2349
2350     /* Initialize AFS daemon threads. */
2351     if (afsd_verbose)
2352         printf("%s: Forking AFS daemon.\n", rn);
2353     fork_syscall(rn, AFSOP_START_AFS);
2354
2355     if (afsd_verbose)
2356         printf("%s: Forking Check Server Daemon.\n", rn);
2357     fork_syscall(rn, AFSOP_START_CS);
2358
2359     if (afsd_verbose)
2360         printf("%s: Forking %d background daemons.\n", rn, nDaemons);
2361 #if defined(AFS_SGI_ENV) && defined(AFS_SGI_SHORTSTACK)
2362     /* Add one because for sgi we always "steal" the first daemon for a
2363      * different task if we only have a 4K stack.
2364      */
2365     nDaemons++;
2366 #endif
2367     for (i = 0; i < nDaemons; i++) {
2368         afsd_fork(0, daemon_thread, NULL);
2369     }
2370 #ifdef  AFS_AIX32_ENV
2371     if (!sawBiod)
2372         nBiods = nDaemons * 2;
2373     if (nBiods < 5)
2374         nBiods = 5;
2375     for (i = 0; i < nBiods; i++) {
2376         fork_syscall(rn, AFSOP_START_BKG, nBiods);
2377     }
2378 #endif
2379
2380     /*
2381      * If the root volume has been explicitly set, tell the kernel.
2382      */
2383     if (rootVolSet) {
2384         if (afsd_verbose)
2385             printf("%s: Calling AFSOP_ROOTVOLUME with '%s'\n", rn,
2386                    rootVolume);
2387         afsd_call_syscall(AFSOP_ROOTVOLUME, rootVolume);
2388     }
2389
2390     /*
2391      * Pass the kernel the name of the workstation cache file holding the
2392      * volume information.
2393      */
2394     if (afsd_debug)
2395         printf("%s: Calling AFSOP_VOLUMEINFO: volume info file is '%s'\n", rn,
2396                fullpn_VolInfoFile);
2397     /* once again, meaningless for a memory-based cache. */
2398     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE))
2399         afsd_call_syscall(AFSOP_VOLUMEINFO, fullpn_VolInfoFile);
2400
2401     /*
2402      * Give the kernel the names of the AFS files cached on the workstation's
2403      * disk.
2404      */
2405     if (afsd_debug)
2406         printf
2407             ("%s: Calling AFSOP_CACHEFILE for each of the %d files in '%s'\n",
2408              rn, cacheFiles, cacheBaseDir);
2409     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)) {
2410         /* ... and again ... */
2411         int nocachefile = 0;
2412         for (currVFile = 0; currVFile < cacheFiles; currVFile++) {
2413             if (!nocachefile) {
2414                 sprintf(fullpn_VFile, "%s/D%d/V%d", cacheBaseDir, dir_for_V[currVFile], currVFile);
2415                 code = afsd_call_syscall(AFSOP_CACHEFILE, fullpn_VFile);
2416                 if (code) {
2417                     if (currVFile == 0) {
2418                         if (afsd_debug)
2419                             printf
2420                                 ("%s: Calling AFSOP_CACHEINODE for each of the %d files in '%s'\n",
2421                                  rn, cacheFiles, cacheBaseDir);
2422                         nocachefile = 1;
2423                     } else {
2424                         printf
2425                             ("%s: Error calling AFSOP_CACHEFILE for '%s'\n",
2426                              rn, fullpn_VFile);
2427                         exit(1);
2428                     }
2429                 } else {
2430                     continue;
2431                 }
2432                 /* fall through to setup-by-inode */
2433             }
2434 #ifdef AFS_SGI62_ENV
2435             afsd_call_syscall(AFSOP_CACHEINODE,
2436                          (afs_uint32) (inode_for_V[currVFile] >> 32),
2437                          (afs_uint32) (inode_for_V[currVFile] & 0xffffffff));
2438 #elif !(defined(AFS_LINUX26_ENV) || defined(AFS_CACHE_VNODE_PATH))
2439             afsd_call_syscall(AFSOP_CACHEINODE, inode_for_V[currVFile]);
2440 #else
2441             printf
2442                 ("%s: Error calling AFSOP_CACHEINODE: not configured\n",
2443                  rn);
2444             exit(1);
2445 #endif
2446         }
2447     }
2448     /*end for */
2449     /*
2450      * All the necessary info has been passed into the kernel to run an AFS
2451      * system.  Give the kernel our go-ahead.
2452      */
2453     if (afsd_debug)
2454         printf("%s: Calling AFSOP_GO with cacheSetTime = %d\n", rn,
2455                cacheSetTime);
2456         afsd_call_syscall(AFSOP_GO, cacheSetTime);
2457
2458     /*
2459      * At this point, we have finished passing the kernel all the info
2460      * it needs to set up the AFS.  Mount the AFS root.
2461      */
2462     printf("%s: All AFS daemons started.\n", rn);
2463
2464     if (afsd_verbose)
2465         printf("%s: Forking trunc-cache daemon.\n", rn);
2466     fork_syscall(rn, AFSOP_START_TRUNCDAEMON);
2467
2468     if (!enable_nomount) {
2469         afsd_mount_afs(rn, afsd_cacheMountDir);
2470     }
2471
2472 #ifndef UKERNEL
2473     if (afsd_rmtsys) {
2474         if (afsd_verbose)
2475             printf("%s: Forking 'rmtsys' daemon.\n", rn);
2476         afsd_fork(0, rmtsysd_thread, NULL);
2477     }
2478 #endif /* !UKERNEL */
2479     /*
2480      * Exit successfully.
2481      */
2482     return 0;
2483 }
2484
2485 #include "AFS_component_version_number.c"
2486
2487 void
2488 afsd_init(void)
2489 {
2490     struct cmd_syndesc *ts;
2491
2492     ts = cmd_CreateSyntax(NULL, mainproc, NULL, "start AFS");
2493
2494     /* 0 - 10 */
2495     cmd_AddParm(ts, "-blocks", CMD_SINGLE, CMD_OPTIONAL,
2496                 "1024 byte blocks in cache");
2497     cmd_AddParm(ts, "-files", CMD_SINGLE, CMD_OPTIONAL, "files in cache");
2498     cmd_AddParm(ts, "-rootvol", CMD_SINGLE, CMD_OPTIONAL,
2499                 "name of AFS root volume");
2500     cmd_AddParm(ts, "-stat", CMD_SINGLE, CMD_OPTIONAL,
2501                 "number of stat entries");
2502     cmd_AddParm(ts, "-memcache", CMD_FLAG, CMD_OPTIONAL, "run diskless");
2503     cmd_AddParm(ts, "-cachedir", CMD_SINGLE, CMD_OPTIONAL, "cache directory");
2504     cmd_AddParm(ts, "-mountdir", CMD_SINGLE, CMD_OPTIONAL, "mount location");
2505     cmd_AddParm(ts, "-daemons", CMD_SINGLE, CMD_OPTIONAL,
2506                 "number of daemons to use");
2507     cmd_AddParm(ts, "-nosettime", CMD_FLAG, CMD_OPTIONAL,
2508                 "don't set the time");
2509     cmd_AddParm(ts, "-verbose", CMD_FLAG, CMD_OPTIONAL,
2510                 "display lots of information");
2511     cmd_AddParm(ts, "-rmtsys", CMD_FLAG, CMD_OPTIONAL,
2512                 "start NFS rmtsysd program");
2513
2514     /* 11 - 20 */
2515     cmd_AddParm(ts, "-debug", CMD_FLAG, CMD_OPTIONAL, "display debug info");
2516     cmd_AddParm(ts, "-chunksize", CMD_SINGLE, CMD_OPTIONAL,
2517                 "log(2) of chunk size");
2518     cmd_AddParm(ts, "-dcache", CMD_SINGLE, CMD_OPTIONAL,
2519                 "number of dcache entries");
2520     cmd_AddParm(ts, "-volumes", CMD_SINGLE, CMD_OPTIONAL,
2521                 "number of volume entries");
2522     cmd_AddParm(ts, "-biods", CMD_SINGLE, CMD_OPTIONAL,
2523                 "number of bkg I/O daemons (aix vm)");
2524     cmd_AddParm(ts, "-prealloc", CMD_SINGLE, CMD_OPTIONAL,
2525                 "number of 'small' preallocated blocks");
2526     cmd_AddParm(ts, "-confdir", CMD_SINGLE, CMD_OPTIONAL,
2527                 "configuration directory");
2528     cmd_AddParm(ts, "-logfile", CMD_SINGLE, CMD_OPTIONAL,
2529                 "Place to keep the CM log");
2530     cmd_AddParm(ts, "-waitclose", CMD_FLAG, CMD_OPTIONAL,
2531                 "make close calls synchronous");
2532     cmd_AddParm(ts, "-shutdown", CMD_FLAG, CMD_OPTIONAL,
2533                 "Shutdown all afs state");
2534     /* 21 - 30 */
2535     cmd_AddParm(ts, "-enable_peer_stats", CMD_FLAG, CMD_OPTIONAL | CMD_HIDE,
2536                 "Collect rpc statistics by peer");
2537     cmd_AddParm(ts, "-enable_process_stats", CMD_FLAG,
2538                 CMD_OPTIONAL | CMD_HIDE,
2539                 "Collect rpc statistics for this process");
2540     cmd_AddParm(ts, "-mem_alloc_sleep", CMD_FLAG, (CMD_OPTIONAL | CMD_HIDE),
2541                 "Allow sleeps when allocating memory cache");
2542     cmd_AddParm(ts, "-afsdb", CMD_FLAG, (CMD_OPTIONAL),
2543                 "Enable AFSDB support");
2544     cmd_AddParm(ts, "-files_per_subdir", CMD_SINGLE, CMD_OPTIONAL,
2545                 "log(2) of the number of cache files per cache subdirectory");
2546     cmd_AddParm(ts, "-dynroot", CMD_FLAG, CMD_OPTIONAL,
2547                 "Enable dynroot support");
2548     cmd_AddParm(ts, "-fakestat", CMD_FLAG, CMD_OPTIONAL,
2549                 "Enable fakestat support for cross-cell mounts");
2550     cmd_AddParm(ts, "-fakestat-all", CMD_FLAG, CMD_OPTIONAL,
2551                 "Enable fakestat support for all mounts");
2552     cmd_AddParm(ts, "-nomount", CMD_FLAG, CMD_OPTIONAL, "Do not mount AFS");
2553     cmd_AddParm(ts, "-backuptree", CMD_FLAG, CMD_OPTIONAL,
2554                 "Prefer backup volumes for mointpoints in backup volumes");
2555     /* 31 - 40 */
2556     cmd_AddParm(ts, "-rxbind", CMD_FLAG, CMD_OPTIONAL,
2557                 "Bind the Rx socket (one interface only)");
2558     cmd_AddParm(ts, "-settime", CMD_FLAG, CMD_OPTIONAL, "set the time");
2559     cmd_AddParm(ts, "-rxpck", CMD_SINGLE, CMD_OPTIONAL,
2560                 "set rx_extraPackets to this value");
2561     cmd_AddParm(ts, "-splitcache", CMD_SINGLE, CMD_OPTIONAL,
2562                 "Percentage RW versus RO in cache (specify as 60/40)");
2563     cmd_AddParm(ts, "-disable-dynamic-vcaches", CMD_FLAG, CMD_OPTIONAL,
2564                 "disable stat/vcache cache growing as needed");
2565     cmd_AddParm(ts, "-rxmaxmtu", CMD_SINGLE, CMD_OPTIONAL, "set rx max MTU to use");
2566     cmd_AddParm(ts, "-dynroot-sparse", CMD_FLAG, CMD_OPTIONAL,
2567                 "Enable dynroot support with minimal cell list");
2568 }
2569
2570 int
2571 afsd_parse(int argc, char **argv)
2572 {
2573     return cmd_Dispatch(argc, argv);
2574 }
2575
2576 #ifdef  AFS_SGI53_ENV
2577 #ifdef AFS_SGI61_ENV
2578 /* The dwarf structures are searched to find entry points of static functions
2579  * and the addresses of static variables. The file name as well as the
2580  * sybmol name is reaquired.
2581  */
2582
2583 /* Contains list of names to find in given file. */
2584 typedef struct {
2585     char *name;                 /* Name of variable or function. */
2586     afs_hyper_t addr;           /* Address of function, undefined if not found. */
2587     Dwarf_Half type;            /* DW_AT_location for vars, DW_AT_lowpc for func's */
2588     char found;                 /* set if found. */
2589 } staticAddrList;
2590
2591 typedef struct {
2592     char *file;                 /* Name of file containing vars or funcs */
2593     staticAddrList *addrList;   /* List of vars and/or funcs. */
2594     int nAddrs;                 /* # of addrList's */
2595     int found;                  /* set if we've found this file already. */
2596 } staticNameList;
2597
2598 /* routines used to find addresses in /unix */
2599 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
2600 void findMDebugStaticAddresses(staticNameList *, int, int);
2601 #endif
2602 void findDwarfStaticAddresses(staticNameList *, int);
2603 void findElfAddresses(Dwarf_Debug, Dwarf_Die, staticNameList *);
2604 void getElfAddress(Dwarf_Debug, Dwarf_Die, staticAddrList *);
2605
2606 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
2607 #define AFS_N_FILELISTS 2
2608 #define AFS_SYMS_NEEDED 3
2609 #else /* AFS_SGI62_ENV */
2610 #define AFS_N_FILELISTS 1
2611 #endif /* AFS_SGI62_ENV */
2612
2613
2614
2615 void
2616 set_staticaddrs(void)
2617 {
2618     staticNameList fileList[AFS_N_FILELISTS];
2619
2620     fileList[0].addrList =
2621         (staticAddrList *) calloc(1, sizeof(staticAddrList));
2622     if (!fileList[0].addrList) {
2623         printf("set_staticaddrs: Can't calloc fileList[0].addrList\n");
2624         return;
2625     }
2626     fileList[0].file = "nfs_server.c";
2627     fileList[0].found = 0;
2628     fileList[0].nAddrs = 1;
2629     fileList[0].addrList[0].name = "rfsdisptab_v2";
2630     fileList[0].addrList[0].type = DW_AT_location;
2631     fileList[0].addrList[0].found = 0;
2632
2633 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
2634     fileList[1].addrList =
2635         (staticAddrList *) calloc(2, sizeof(staticAddrList));
2636     if (!fileList[1].addrList) {
2637         printf("set_staticaddrs: Can't malloc fileList[1].addrList\n");
2638         return;
2639     }
2640     fileList[1].file = "uipc_socket.c";
2641     fileList[1].found = 0;
2642     fileList[1].nAddrs = 2;
2643     fileList[1].addrList[0].name = "sblock";
2644     fileList[1].addrList[0].type = DW_AT_low_pc;
2645     fileList[1].addrList[0].found = 0;
2646     fileList[1].addrList[1].name = "sbunlock";
2647     fileList[1].addrList[1].type = DW_AT_low_pc;
2648     fileList[1].addrList[1].found = 0;
2649
2650     if (64 != sysconf(_SC_KERN_POINTERS))
2651         findMDebugStaticAddresses(fileList, AFS_N_FILELISTS, AFS_SYMS_NEEDED);
2652     else
2653 #endif /* AFS_SGI62_ENV */
2654         findDwarfStaticAddresses(fileList, AFS_N_FILELISTS);
2655
2656     if (fileList[0].addrList[0].found) {
2657         afsd_call_syscall(AFSOP_NFSSTATICADDR2, fileList[0].addrList[0].addr.high,
2658                      fileList[0].addrList[0].addr.low);
2659     } else {
2660         if (afsd_verbose)
2661             printf("NFS V2 is not present in the kernel.\n");
2662     }
2663     free(fileList[0].addrList);
2664 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
2665     if (fileList[1].addrList[0].found && fileList[1].addrList[1].found) {
2666         afsd_call_syscall(AFSOP_SBLOCKSTATICADDR2,
2667                      fileList[1].addrList[0].addr.high,
2668                      fileList[1].addrList[0].addr.low,
2669                      fileList[1].addrList[1].addr.high,
2670                      fileList[1].addrList[1].addr.low);
2671     } else {
2672         if (!fileList[1].addrList[0].found)
2673             printf("Can't find %s in kernel. Exiting.\n",
2674                    fileList[1].addrList[0].name);
2675         if (!fileList[1].addrList[0].found)
2676             printf("Can't find %s in kernel. Exiting.\n",
2677                    fileList[1].addrList[1].name);
2678         exit(1);
2679     }
2680     free(fileList[1].addrList);
2681 #endif /* AFS_SGI62_ENV */
2682 }
2683
2684
2685 /* Find addresses for static variables and functions. */
2686 void
2687 findDwarfStaticAddresses(staticNameList * nameList, int nLists)
2688 {
2689     int fd;
2690     int i;
2691     int found = 0;
2692     int code;
2693     char *s;
2694     char *hname = (char *)0;
2695     Dwarf_Unsigned dwarf_access = O_RDONLY;
2696     Dwarf_Debug dwarf_debug;
2697     Dwarf_Error dwarf_error;
2698     Dwarf_Unsigned dwarf_cu_header_length;
2699     Dwarf_Unsigned dwarf_abbrev_offset;
2700     Dwarf_Half dwarf_address_size;
2701     Dwarf_Unsigned next_cu_header;
2702     Dwarf_Die dwarf_die;
2703     Dwarf_Die dwarf_next_die;
2704     Dwarf_Die dwarf_child_die;
2705
2706     if (elf_version(EV_CURRENT) == EV_NONE) {
2707         printf("findDwarfStaticAddresses: Bad elf version.\n");
2708         return;
2709     }
2710
2711     if ((fd = open("/unix", O_RDONLY, 0)) < 0) {
2712         printf("findDwarfStaticAddresses: Failed to open /unix.\n");
2713         return;
2714     }
2715     code =
2716         dwarf_init(fd, dwarf_access, NULL, NULL, &dwarf_debug, &dwarf_error);
2717     if (code != DW_DLV_OK) {
2718         /* Nope hope for the elves and dwarves, try intermediate code. */
2719         close(fd);
2720         return;
2721     }
2722
2723     found = 0;
2724     while (1) {
2725         /* Run through the headers until we find ones for files we've
2726          * specified in nameList.
2727          */
2728         code =
2729             dwarf_next_cu_header(dwarf_debug, &dwarf_cu_header_length, NULL,
2730                                  &dwarf_abbrev_offset, &dwarf_address_size,
2731                                  &next_cu_header, &dwarf_error);
2732         if (code == DW_DLV_NO_ENTRY) {
2733             break;
2734         } else if (code == DW_DLV_ERROR) {
2735             printf("findDwarfStaticAddresses: Error reading headers: %s\n",
2736                    dwarf_errmsg(dwarf_error));
2737             break;
2738         }
2739
2740         code = dwarf_siblingof(dwarf_debug, NULL, &dwarf_die, &dwarf_error);
2741         if (code != DW_DLV_OK) {
2742             printf("findDwarfStaticAddresses: Can't get first die. %s\n",
2743                    (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2744             break;
2745         }
2746
2747         /* This is the header, test the name. */
2748         code = dwarf_diename(dwarf_die, &hname, &dwarf_error);
2749         if (code == DW_DLV_OK) {
2750             s = strrchr(hname, '/');
2751             for (i = 0; i < nLists; i++) {
2752                 if (s && !strcmp(s + 1, nameList[i].file)) {
2753                     findElfAddresses(dwarf_debug, dwarf_die, &nameList[i]);
2754                     found++;
2755                     break;
2756                 }
2757             }
2758         } else {
2759             printf
2760                 ("findDwarfStaticAddresses: Can't get name of current header. %s\n",
2761                  (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2762             break;
2763         }
2764         dwarf_dealloc(dwarf_debug, hname, DW_DLA_STRING);
2765         hname = (char *)0;
2766         if (found >= nLists) {  /* we're done */
2767             break;
2768         }
2769     }
2770
2771     /* Frees up all allocated space. */
2772     (void)dwarf_finish(dwarf_debug, &dwarf_error);
2773     close(fd);
2774 }
2775
2776 void
2777 findElfAddresses(Dwarf_Debug dwarf_debug, Dwarf_Die dwarf_die,
2778                  staticNameList * nameList)
2779 {
2780     int i;
2781     Dwarf_Error dwarf_error;
2782     Dwarf_Die dwarf_next_die;
2783     Dwarf_Die dwarf_child_die;
2784     Dwarf_Attribute dwarf_return_attr;
2785     char *vname = (char *)0;
2786     int found = 0;
2787     int code;
2788
2789     /* Drop into this die to find names in addrList. */
2790     code = dwarf_child(dwarf_die, &dwarf_child_die, &dwarf_error);
2791     if (code != DW_DLV_OK) {
2792         printf("findElfAddresses: Can't get child die. %s\n",
2793                (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2794         return;
2795     }
2796
2797     /* Try to find names in each sibling. */
2798     dwarf_next_die = (Dwarf_Die) 0;
2799     do {
2800         code = dwarf_diename(dwarf_child_die, &vname, &dwarf_error);
2801         /* It's possible that some siblings don't have names. */
2802         if (code == DW_DLV_OK) {
2803             for (i = 0; i < nameList->nAddrs; i++) {
2804                 if (!nameList->addrList[i].found) {
2805                     if (!strcmp(vname, nameList->addrList[i].name)) {
2806                         getElfAddress(dwarf_debug, dwarf_child_die,
2807                                       &(nameList->addrList[i]));
2808                         found++;
2809                         break;
2810                     }
2811                 }
2812             }
2813         }
2814         if (dwarf_next_die)
2815             dwarf_dealloc(dwarf_debug, dwarf_next_die, DW_DLA_DIE);
2816
2817         if (found >= nameList->nAddrs) {        /* we're done. */
2818             break;
2819         }
2820
2821         dwarf_next_die = dwarf_child_die;
2822         code =
2823             dwarf_siblingof(dwarf_debug, dwarf_next_die, &dwarf_child_die,
2824                             &dwarf_error);
2825
2826     } while (code == DW_DLV_OK);
2827 }
2828
2829 /* Get address out of current die. */
2830 void
2831 getElfAddress(Dwarf_Debug dwarf_debug, Dwarf_Die dwarf_child_die,
2832               staticAddrList * addrList)
2833 {
2834     int i;
2835     Dwarf_Error dwarf_error;
2836     Dwarf_Attribute dwarf_return_attr;
2837     Dwarf_Bool dwarf_return_bool;
2838     Dwarf_Locdesc *llbuf = NULL;
2839     Dwarf_Signed listlen;
2840     off64_t addr = (off64_t) 0;
2841     int code;
2842
2843     code =
2844         dwarf_hasattr(dwarf_child_die, addrList->type, &dwarf_return_bool,
2845                       &dwarf_error);
2846     if ((code != DW_DLV_OK) || (!dwarf_return_bool)) {
2847         printf("getElfAddress: no address given for %s. %s\n", addrList->name,
2848                (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2849         return;
2850     }
2851     code =
2852         dwarf_attr(dwarf_child_die, addrList->type, &dwarf_return_attr,
2853                    &dwarf_error);
2854     if (code != DW_DLV_OK) {
2855         printf("getElfAddress: Can't get attribute. %s\n",
2856                (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2857         return;
2858     }
2859
2860     switch (addrList->type) {
2861     case DW_AT_location:
2862         code =
2863             dwarf_loclist(dwarf_return_attr, &llbuf, &listlen, &dwarf_error);
2864         if (code != DW_DLV_OK) {
2865             printf("getElfAddress: Can't get location for %s. %s\n",
2866                    addrList->name,
2867                    (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2868             return;
2869         }
2870         if ((listlen != 1) || (llbuf[0].ld_cents != 1)) {
2871             printf("getElfAddress: %s has more than one address.\n",
2872                    addrList->name);
2873             return;
2874         }
2875         addr = llbuf[0].ld_s[0].lr_number;
2876         break;
2877
2878     case DW_AT_low_pc:
2879         code =
2880             dwarf_lowpc(dwarf_child_die, (Dwarf_Addr *) & addr, &dwarf_error);
2881         if (code != DW_DLV_OK) {
2882             printf("getElfAddress: Can't get lowpc for %s. %s\n",
2883                    addrList->name,
2884                    (code == DW_DLV_ERROR) ? dwarf_errmsg(dwarf_error) : "");
2885             return;
2886         }
2887         break;
2888
2889     default:
2890         printf("getElfAddress: Bad case %d in switch.\n", addrList->type);
2891         return;
2892     }
2893
2894     addrList->addr.high = (addr >> 32) & 0xffffffff;
2895     addrList->addr.low = addr & 0xffffffff;
2896     addrList->found = 1;
2897 }
2898
2899 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
2900 /* Find symbols in the .mdebug section for 32 bit kernels. */
2901 /*
2902  * do_mdebug()
2903  * On 32bit platforms, we're still using the ucode compilers to build
2904  * the kernel, so we need to get our static text/data from the .mdebug
2905  * section instead of the .dwarf sections.
2906  */
2907 /* SearchNameList searches our bizarre structs for the given string.
2908  * If found, sets the found bit and the address and returns 1.
2909  * Not found returns 0.
2910  */
2911 int
2912 SearchNameList(char *name, afs_uint32 addr, staticNameList * nameList,
2913                int nLists)
2914 {
2915     int i, j;
2916     for (i = 0; i < nLists; i++) {
2917         for (j = 0; j < nameList[i].nAddrs; j++) {
2918             if (nameList[i].addrList[j].found)
2919                 continue;
2920             if (!strcmp(name, nameList[i].addrList[j].name)) {
2921                 nameList[i].addrList[j].addr.high = 0;
2922                 nameList[i].addrList[j].addr.low = addr;
2923                 nameList[i].addrList[j].found = 1;
2924                 return 1;
2925             }
2926         }
2927     }
2928     return 0;
2929 }
2930
2931 static void
2932 SearchMDebug(Elf_Scn * scnp, Elf32_Shdr * shdrp, staticNameList * nameList,
2933              int nLists, int needed)
2934 {
2935     long *buf = (long *)(elf_getdata(scnp, NULL)->d_buf);
2936     u_long addr, mdoff = shdrp->sh_offset;
2937     HDRR *hdrp;
2938     SYMR *symbase, *symp, *symend;
2939     FDR *fdrbase, *fdrp;
2940     int i, j;
2941     char *strbase, *str;
2942     int ifd;
2943     int nFound = 0;
2944
2945     /* get header */
2946     addr = (__psunsigned_t) buf;
2947     hdrp = (HDRR *) addr;
2948
2949     /* setup base addresses */
2950     addr = (u_long) buf + (u_long) (hdrp->cbFdOffset - mdoff);
2951     fdrbase = (FDR *) addr;
2952     addr = (u_long) buf + (u_long) (hdrp->cbSymOffset - mdoff);
2953     symbase = (SYMR *) addr;
2954     addr = (u_long) buf + (u_long) (hdrp->cbSsOffset - mdoff);
2955     strbase = (char *)addr;
2956
2957 #define KEEPER(a,b)     ((a == stStaticProc && b == scText) || \
2958                          (a == stStatic && (b == scData || b == scBss || \
2959                                             b == scSBss || b == scSData)))
2960
2961     for (fdrp = fdrbase; fdrp < &fdrbase[hdrp->ifdMax]; fdrp++) {
2962         str = strbase + fdrp->issBase + fdrp->rss;
2963
2964         /* local symbols for each fd */
2965         for (symp = &symbase[fdrp->isymBase];
2966              symp < &symbase[fdrp->isymBase + fdrp->csym]; symp++) {
2967             if (KEEPER(symp->st, symp->sc)) {
2968                 if (symp->value == 0)
2969                     continue;
2970
2971                 str = strbase + fdrp->issBase + symp->iss;
2972                 /* Look for AFS symbols of interest */
2973                 if (SearchNameList(str, symp->value, nameList, nLists)) {
2974                     nFound++;
2975                     if (nFound >= needed)
2976                         return;
2977                 }
2978             }
2979         }
2980     }
2981 }
2982
2983 /*
2984  * returns section with the name of scn_name, & puts its header in shdr64 or
2985  * shdr32 based on elf's file type
2986  *
2987  */
2988 Elf_Scn *
2989 findMDebugSection(Elf * elf, char *scn_name)
2990 {
2991     Elf64_Ehdr *ehdr64;
2992     Elf32_Ehdr *ehdr32;
2993     Elf_Scn *scn = NULL;
2994     Elf64_Shdr *shdr64;
2995     Elf32_Shdr *shdr32;
2996
2997     if ((ehdr32 = elf32_getehdr(elf)) == NULL)
2998         return (NULL);
2999     do {
3000         if ((scn = elf_nextscn(elf, scn)) == NULL)
3001             break;
3002         if ((shdr32 = elf32_getshdr(scn)) == NULL)
3003             return (NULL);
3004     } while (strcmp
3005              (scn_name,
3006               elf_strptr(elf, ehdr32->e_shstrndx, shdr32->sh_name)));
3007
3008     return (scn);
3009 }
3010
3011
3012 void
3013 findMDebugStaticAddresses(staticNameList * nameList, int nLists, int needed)
3014 {
3015     int fd;
3016     Elf *elf;
3017     Elf_Scn *mdebug_scn;
3018     Elf32_Shdr *mdebug_shdr;
3019     char *names;
3020
3021     if ((fd = open("/unix", O_RDONLY)) == -1) {
3022         printf("findMDebugStaticAddresses: Failed to open /unix.\n");
3023         return;
3024     }
3025
3026     (void)elf_version(EV_CURRENT);
3027     if ((elf = elf_begin(fd, ELF_C_READ, NULL)) == NULL) {
3028         printf
3029             ("findMDebugStaticAddresses: /unix doesn't seem to be an elf file\n");
3030         close(fd);
3031         return;
3032     }
3033     mdebug_scn = findMDebugSection(elf, ".mdebug");
3034     if (!mdebug_scn) {
3035         printf("findMDebugStaticAddresses: Can't find .mdebug section.\n");
3036         goto find_end;
3037     }
3038     mdebug_shdr = elf32_getshdr(mdebug_scn);
3039     if (!mdebug_shdr) {
3040         printf("findMDebugStaticAddresses: Can't find .mdebug header.\n");
3041         goto find_end;
3042     }
3043
3044     (void)SearchMDebug(mdebug_scn, mdebug_shdr, nameList, nLists, needed);
3045
3046   find_end:
3047     elf_end(elf);
3048     close(fd);
3049 }
3050 #endif /* AFS_SGI62_ENV */
3051
3052 #else /* AFS_SGI61_ENV */
3053 #include <nlist.h>
3054 struct nlist nlunix[] = {
3055     {"rfsdisptab_v2"},
3056     {0},
3057 };
3058
3059 get_nfsstaticaddr()
3060 {
3061     int i, j, kmem, count;
3062
3063     if ((kmem = open("/dev/kmem", O_RDONLY)) < 0) {
3064         printf("Warning: can't open /dev/kmem\n");
3065         return 0;
3066     }
3067     if ((j = nlist("/unix", nlunix)) < 0) {
3068         printf("Warning: can't nlist /unix\n");
3069         return 0;
3070     }
3071     i = nlunix[0].n_value;
3072     if (lseek(kmem, i, L_SET /*0 */ ) != i) {
3073         printf("Warning: can't lseek to %x\n", i);
3074         return 0;
3075     }
3076     if ((j = read(kmem, &count, sizeof count)) != sizeof count) {
3077         printf("WARNING: kmem read at %x failed\n", i);
3078         return 0;
3079     }
3080     return i;
3081 }
3082 #endif /* AFS_SGI61_ENV */
3083 #endif /* AFS_SGI53_ENV */
3084
3085 struct afsd_syscall_args {
3086     long syscall;
3087     long param1;
3088     long param2;
3089     long param3;
3090     long param4;
3091     long param5;
3092     const char *rn;
3093     int rxpri;
3094 };
3095
3096 /**
3097  * entry point for calling a syscall from another proc/thread.
3098  *
3099  * @param[in] rock  a struct afsd_syscall_args* specifying what syscall to call
3100  *
3101  * @return unused
3102  *   @retval NULL always
3103  */
3104 static void *
3105 call_syscall_thread(void *rock)
3106 {
3107     struct afsd_syscall_args *args = rock;
3108     int code;
3109
3110     if (args->rxpri) {
3111         afsd_set_rx_rtpri();
3112     }
3113
3114     code = afsd_call_syscall(args->syscall, args->param1, args->param2,
3115                                  args->param3, args->param4, args->param5);
3116     if (code && args->syscall == AFSOP_START_CS) {
3117         printf("%s: No check server daemon in client.\n", args->rn);
3118     }
3119
3120     free(args);
3121
3122     return NULL;
3123 }
3124
3125 /**
3126  * common code for calling a syscall in another proc/thread.
3127  *
3128  * @param[in] rx   1 if this is a thread for RX stuff, 0 otherwise
3129  * @param[in] wait 1 if we should wait for the new proc/thread to finish, 0 to
3130  *                 let it run in the background
3131  * @param[in] rn   the name of the running program
3132  * @param[in] syscall syscall to run
3133  */
3134 static void
3135 fork_syscall_impl(int rx, int wait, const char *rn, long syscall, long param1,
3136                   long param2, long param3, long param4, long param5)
3137 {
3138     struct afsd_syscall_args *args;
3139
3140     args = malloc(sizeof(*args));
3141
3142     args->syscall = syscall;
3143     args->param1 = param1;
3144     args->param2 = param2;
3145     args->param3 = param3;
3146     args->param4 = param4;
3147     args->param5 = param5;
3148     args->rxpri = rx;
3149     args->rn = rn;
3150
3151     afsd_fork(wait, call_syscall_thread, args);
3152 }
3153
3154 /**
3155  * call a syscall in another process or thread.
3156  */
3157 static void
3158 fork_syscall(const char *rn, long syscall, long param1, long param2,
3159              long param3, long param4, long param5)
3160 {
3161     fork_syscall_impl(0, 0, rn, syscall, param1, param2, param3, param4, param5);
3162 }
3163
3164 #if defined(AFS_SUN510_ENV) || defined(RXK_LISTENER_ENV)
3165 /**
3166  * call a syscall in another process or thread, and give it RX priority.
3167  */
3168 static void
3169 fork_rx_syscall(const char *rn, long syscall, long param1, long param2,
3170                 long param3, long param4, long param5)
3171 {
3172     fork_syscall_impl(1, 0, rn, syscall, param1, param2, param3, param4, param5);
3173 }
3174 #endif /* AFS_SUN510_ENV || RXK_LISTENER_ENV */
3175
3176 #if defined(AFS_SUN510_ENV) && defined(RXK_LISTENER_ENV)
3177 /**
3178  * call a syscall in another process or thread, give it RX priority, and wait
3179  * for it to finish before returning.
3180  */
3181 static void
3182 fork_rx_syscall_wait(const char *rn, long syscall, long param1, long param2,
3183                      long param3, long param4, long param5)
3184 {
3185     fork_syscall_impl(1, 1, rn, syscall, param1, param2, param3, param4, param5);
3186 }
3187 #endif /* AFS_SUN510_ENV && RXK_LISTENER_ENV */