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