4c96d9c4d4049eb04a38ba130fc847c1efe27cf0
[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 #include <roken.h>
59
60 #ifdef IGNORE_SOME_GCC_WARNINGS
61 # pragma GCC diagnostic warning "-Wdeprecated-declarations"
62 #endif
63
64 #define VFS 1
65
66 #include <afs/stds.h>
67 #include <afs/opr.h>
68 #include <afs/opr_assert.h>
69
70 #include <afs/cmd.h>
71
72 #include "afsd.h"
73
74 #include <afs/afsutil.h>
75 #include <stdlib.h>
76 #include <stdio.h>
77 #include <signal.h>
78 #include <string.h>
79 #include <stdlib.h>
80 #include <time.h>
81 #include <sys/types.h>
82 #include <sys/stat.h>
83 #include <sys/file.h>
84 #include <errno.h>
85 #include <sys/time.h>
86 #include <sys/wait.h>
87
88 /* darwin dirent.h doesn't give us the prototypes we want if KERNEL is
89  * defined */
90 #if defined(UKERNEL) && defined(AFS_USR_DARWIN_ENV)
91 # undef KERNEL
92 # include <dirent.h>
93 # define KERNEL
94 #else
95 # include <dirent.h>
96 #endif
97
98
99 #ifdef HAVE_SYS_PARAM_H
100 #include <sys/param.h>
101 #endif
102
103 #ifdef HAVE_SYS_FS_TYPES_H
104 #include <sys/fs_types.h>
105 #endif
106
107 #if defined(HAVE_SYS_MOUNT_H) && !defined(AFS_ARM_DARWIN_ENV)
108 #include <sys/mount.h>
109 #endif
110
111 #ifdef HAVE_SYS_FCNTL_H
112 #include <sys/fcntl.h>
113 #endif
114
115 #ifdef HAVE_SYS_MNTTAB_H
116 #include <sys/mnttab.h>
117 #endif
118
119 #ifdef HAVE_SYS_MNTENT_H
120 #include <sys/mntent.h>
121 #endif
122
123 #ifdef HAVE_MNTENT_H
124 #include <mntent.h>
125 #endif
126
127 #ifdef HAVE_SYS_VFS_H
128 #include <sys/vfs.h>
129 #endif
130
131 #ifdef HAVE_SYS_FSTYP_H
132 #include <sys/fstyp.h>
133 #endif
134
135 #ifdef HAVE_UNISTD_H
136 #include <unistd.h>
137 #endif
138
139 #ifdef HAVE_FCNTL_H
140 #include <fcntl.h>
141 #endif
142
143 #include <netinet/in.h>
144 #include <afs/afs_args.h>
145 #include <afs/cellconfig.h>
146 #include <ctype.h>
147 #include <afs/afssyscalls.h>
148 #include <afs/afsutil.h>
149 #include <afs/sys_prototypes.h>
150
151 #ifdef AFS_SGI61_ENV
152 #include <unistd.h>
153 #include <libelf.h>
154 #include <dwarf.h>
155 #include <libdwarf.h>
156 void set_staticaddrs(void);
157 #endif /* AFS_SGI61_ENV */
158 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
159 #include <sym.h>
160 #include <symconst.h>
161 #endif
162 #ifdef AFS_SGI65_ENV
163 #include <sched.h>
164 #endif
165
166 #ifdef AFS_DARWIN_ENV
167 #ifdef AFS_DARWIN80_ENV
168 #include <sys/ioctl.h>
169 #include <sys/xattr.h>
170 #endif
171 #include <CoreFoundation/CoreFoundation.h>
172
173 #include <SystemConfiguration/SystemConfiguration.h>
174 #include <SystemConfiguration/SCDynamicStore.h>
175
176 #ifndef AFS_ARM_DARWIN_ENV
177 #include <IOKit/pwr_mgt/IOPMLib.h>
178 #include <IOKit/IOMessage.h>
179
180 static io_connect_t root_port;
181 static IONotificationPortRef notify;
182 static io_object_t iterator;
183 #endif
184
185 static CFRunLoopSourceRef source;
186
187 static int event_pid;
188
189 #endif /* AFS_DARWIN_ENV */
190
191 #if AFS_HAVE_STATVFS || defined(HAVE_SYS_STATVFS_H)
192 #include <sys/statvfs.h>
193 #else
194 #if defined(AFS_SUN_ENV)
195 #include <sys/vfs.h>
196 #else
197 #ifdef HAVE_SYS_STATFS_H
198 #include <sys/statfs.h>
199 #endif
200 #endif
201 #endif
202
203 #undef  VIRTUE
204 #undef  VICE
205
206
207 #define CACHEINFOFILE   "cacheinfo"
208 #define DCACHEFILE      "CacheItems"
209 #define VOLINFOFILE     "VolumeItems"
210 #define CELLINFOFILE    "CellItems"
211
212 #define MAXIPADDRS 1024
213
214 char LclCellName[64];
215
216 #define MAX_CACHE_LOOPS 4
217
218
219 /*
220  * Internet address (old style... should be updated).  This was pulled out of the old 4.2
221  * version of <netinet/in.h>, since it's still useful.
222  */
223 struct in_addr_42 {
224     union {
225         struct {
226             u_char s_b1, s_b2, s_b3, s_b4;
227         } S_un_b;
228         struct {
229             u_short s_w1, s_w2;
230         } S_un_w;
231         afs_uint32 S_addr;
232     } S_un;
233 };
234
235 #define mPrintIPAddr(ipaddr)  printf("[%d.%d.%d.%d] ",          \
236       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b1,      \
237       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b2,      \
238       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b3,      \
239       ((struct in_addr_42 *) &(ipaddr))->S_un.S_un_b.s_b4)
240
241 /*
242  * Global configuration variables.
243  */
244 static afs_int32 enable_rxbind = 0;
245 static afs_int32 afs_shutdown = 0;
246 static afs_int32 cacheBlocks;           /*Num blocks in the cache */
247 static afs_int32 cacheFiles;            /*Optimal # of files in workstation cache */
248 static afs_int32 rwpct = 0;
249 static afs_int32 ropct = 0;
250 static afs_int32 cacheStatEntries;      /*Number of stat cache entries */
251 static char cacheBaseDir[1024]; /*Where the workstation AFS cache lives */
252 static char confDir[1024];              /*Where the workstation AFS configuration lives */
253 static char fullpn_DCacheFile[1024];    /*Full pathname of DCACHEFILE */
254 static char fullpn_VolInfoFile[1024];   /*Full pathname of VOLINFOFILE */
255 static char fullpn_CellInfoFile[1024];  /*Full pathanem of CELLINFOFILE */
256 static char fullpn_CacheInfo[1024];     /*Full pathname of CACHEINFO */
257 static char fullpn_VFile[1024]; /*Full pathname of data cache files */
258 static char *vFilePtr;                  /*Ptr to the number part of above pathname */
259 static int sawCacheMountDir = 0;        /* from cmd line */
260 static int sawCacheBaseDir = 0;
261 static int sawCacheBlocks = 0;
262 static int sawDCacheSize = 0;
263 #ifdef AFS_AIX32_ENV
264 static int sawBiod = 0;
265 #endif
266 static int sawCacheStatEntries = 0;
267 char afsd_cacheMountDir[1024];  /*Mount directory for AFS */
268 static char rootVolume[64] = "root.afs";        /*AFS root volume name */
269 #ifdef AFS_XBSD_ENV
270 static int createAndTrunc = O_RDWR | O_CREAT | O_TRUNC; /*Create & truncate on open */
271 #else
272 static int createAndTrunc = O_CREAT | O_TRUNC;  /*Create & truncate on open */
273 #endif
274 static int ownerRWmode = 0600;          /*Read/write OK by owner */
275 static int filesSet = 0;        /*True if number of files explicitly set */
276 static int nFilesPerDir = 2048; /* # files per cache dir */
277 #if defined(AFS_CACHE_BYPASS)
278 #define AFSD_NDAEMONS 4
279 #else
280 #define AFSD_NDAEMONS 2
281 #endif
282 static int nDaemons = AFSD_NDAEMONS;    /* Number of background daemons */
283 static int chunkSize = 0;       /* 2^chunkSize bytes per chunk */
284 static int dCacheSize;          /* # of dcache entries */
285 static int vCacheSize = 200;    /* # of volume cache entries */
286 static int rootVolSet = 0;      /*True if root volume name explicitly set */
287 int addrNum;                    /*Cell server address index being printed */
288 static int cacheFlags = 0;      /*Flags to cache manager */
289 #ifdef AFS_AIX32_ENV
290 static int nBiods = 5;          /* AIX3.1 only */
291 #endif
292 static int preallocs = 400;     /* Def # of allocated memory blocks */
293 static int enable_peer_stats = 0;       /* enable rx stats */
294 static int enable_process_stats = 0;    /* enable rx stats */
295 static int enable_afsdb = 0;    /* enable AFSDB support */
296 static int enable_dynroot = 0;  /* enable dynroot support */
297 static int enable_fakestat = 0; /* enable fakestat support */
298 static int enable_backuptree = 0;       /* enable backup tree support */
299 static int enable_nomount = 0;  /* do not mount */
300 static int enable_splitcache = 0;
301 static int afsd_dynamic_vcaches = 0;    /* Enable dynamic-vcache support */
302 int afsd_verbose = 0;           /*Are we being chatty? */
303 int afsd_debug = 0;             /*Are we printing debugging info? */
304 static int afsd_CloseSynch = 0; /*Are closes synchronous or not? */
305 static int rxmaxmtu = 0;       /* Are we forcing a limit on the mtu? */
306 static int rxmaxfrags = 0;      /* Are we forcing a limit on frags? */
307
308 #ifdef AFS_SGI62_ENV
309 #define AFSD_INO_T ino64_t
310 #else
311 #define AFSD_INO_T afs_uint32
312 #endif
313 struct afsd_file_list {
314     int fileNum;
315     struct afsd_file_list *next;
316 };
317 struct afsd_file_list **cache_dir_filelist = NULL;
318 int *cache_dir_list = NULL;     /* Array of cache subdirs */
319 int *dir_for_V = NULL;          /* Array: dir of each cache file.
320                                  * -1: file does not exist
321                                  * -2: file exists in top-level
322                                  * >=0: file exists in Dxxx
323                                  */
324 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
325 AFSD_INO_T *inode_for_V;        /* Array of inodes for desired
326                                  * cache files */
327 #endif
328 int missing_DCacheFile = 1;     /*Is the DCACHEFILE missing? */
329 int missing_VolInfoFile = 1;    /*Is the VOLINFOFILE missing? */
330 int missing_CellInfoFile = 1;   /*Is the CELLINFOFILE missing? */
331 int afsd_rmtsys = 0;            /* Default: don't support rmtsys */
332 struct afs_cacheParams cparams; /* params passed to cache manager */
333
334 int PartSizeOverflow(char *path, int cs);
335
336 #if defined(AFS_SUN510_ENV) && defined(RXK_LISTENER_ENV)
337 static void fork_rx_syscall_wait();
338 #endif
339 static void fork_rx_syscall();
340 static void fork_syscall();
341
342 #if defined(AFS_DARWIN_ENV) && !defined(AFS_ARM_DARWIN_ENV)
343 static void
344 afsd_sleep_callback(void * refCon, io_service_t service,
345                     natural_t messageType, void * messageArgument )
346 {
347     switch (messageType) {
348     case kIOMessageCanSystemSleep:
349         /* Idle sleep is about to kick in; can
350            prevent sleep by calling IOCancelPowerChange, otherwise
351            if we don't ack in 30s the system sleeps anyway */
352
353         /* allow it */
354         IOAllowPowerChange(root_port, (long)messageArgument);
355         break;
356
357     case kIOMessageSystemWillSleep:
358         /* The system WILL go to sleep. Ack or suffer delay */
359
360         IOAllowPowerChange(root_port, (long)messageArgument);
361         break;
362
363     case kIOMessageSystemWillRestart:
364         /* The system WILL restart. Ack or suffer delay */
365
366         IOAllowPowerChange(root_port, (long)messageArgument);
367         break;
368
369     case kIOMessageSystemWillPowerOn:
370     case kIOMessageSystemHasPoweredOn:
371         /* coming back from sleep */
372
373         IOAllowPowerChange(root_port, (long)messageArgument);
374         break;
375
376     default:
377         IOAllowPowerChange(root_port, (long)messageArgument);
378         break;
379     }
380 }
381
382 static void
383 afsd_update_addresses(CFRunLoopTimerRef timer, void *info)
384 {
385     /* parse multihomed address files */
386     afs_uint32 addrbuf[MAXIPADDRS], maskbuf[MAXIPADDRS],
387         mtubuf[MAXIPADDRS];
388     char reason[1024];
389     afs_int32 code;
390
391     code =
392         parseNetFiles(addrbuf, maskbuf, mtubuf, MAXIPADDRS, reason,
393                       AFSDIR_CLIENT_NETINFO_FILEPATH,
394                       AFSDIR_CLIENT_NETRESTRICT_FILEPATH);
395
396     if (code > 0) {
397         /* Note we're refreshing */
398         code = code | 0x40000000;
399         afsd_call_syscall(AFSOP_ADVISEADDR, code, addrbuf, maskbuf, mtubuf);
400     } else
401         printf("ADVISEADDR: Error in specifying interface addresses:%s\n",
402                reason);
403
404     /* Since it's likely this means our DNS server changed, reinit now */
405     if (enable_afsdb)
406         res_init();
407 }
408
409 /* This function is called when the system's ip addresses may have changed. */
410 static void
411 afsd_ipaddr_callback (SCDynamicStoreRef store, CFArrayRef changed_keys, void *info)
412 {
413       CFRunLoopTimerRef timer;
414
415       timer = CFRunLoopTimerCreate (NULL, CFAbsoluteTimeGetCurrent () + 1.0,
416                                     0.0, 0, 0, afsd_update_addresses, NULL);
417       CFRunLoopAddTimer (CFRunLoopGetCurrent (), timer,
418                          kCFRunLoopDefaultMode);
419       CFRelease (timer);
420 }
421
422 static void
423 afsd_event_cleanup(int signo) {
424
425     CFRunLoopRemoveSource(CFRunLoopGetCurrent(), source, kCFRunLoopDefaultMode);
426     CFRelease (source);
427     IODeregisterForSystemPower(&iterator);
428     IOServiceClose(root_port);
429     IONotificationPortDestroy(notify);
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) || defined(AFS_USR_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(AFS_LINUX26_ENV)
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(AFS_LINUX26_ENV)
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(AFS_LINUX26_ENV)
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(AFS_LINUX26_ENV)
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         if (enable_dynroot == 2)
1414             cellFlags |= 8; /* don't display foreign cells until looked up */
1415     }
1416     /* build address list */
1417     for (i = 0; i < MAXHOSTSPERCELL; i++)
1418         memcpy(&hosts[i], &aci->hostAddr[i].sin_addr, sizeof(afs_int32));
1419
1420     if (aci->linkedCell)
1421         cellFlags |= 4;         /* Flag that linkedCell arg exists,
1422                                  * for upwards compatibility */
1423
1424     /* configure one cell */
1425     code = afsd_call_syscall(AFSOP_ADDCELL2, hosts,     /* server addresses */
1426                         aci->name,      /* cell name */
1427                         cellFlags,      /* is this the home cell? */
1428                         aci->linkedCell);       /* Linked cell, if any */
1429     if (code)
1430         printf("Adding cell '%s': error %d\n", aci->name, code);
1431     return 0;
1432 }
1433
1434 static int
1435 ConfigCellAlias(struct afsconf_cellalias *aca,
1436                 void *arock, struct afsconf_dir *adir)
1437 {
1438     /* push the alias into the kernel */
1439     afsd_call_syscall(AFSOP_ADDCELLALIAS, aca->aliasName, aca->realName);
1440     return 0;
1441 }
1442
1443 static void
1444 AfsdbLookupHandler(void)
1445 {
1446     afs_int32 kernelMsg[64];
1447     char acellName[128];
1448     afs_int32 code;
1449     struct afsconf_cell acellInfo;
1450     int i;
1451
1452     kernelMsg[0] = 0;
1453     kernelMsg[1] = 0;
1454     acellName[0] = '\0';
1455
1456 #if defined(AFS_DARWIN_ENV) && !defined(AFS_ARM_DARWIN_ENV)
1457     /* Fork the event handler also. */
1458     code = fork();
1459     if (code == 0) {
1460         afsd_install_events();
1461         return;
1462     } else if (code != -1) {
1463         event_pid = code;
1464     }
1465 #endif
1466     while (1) {
1467         /* On some platforms you only get 4 args to an AFS call */
1468         int sizeArg = ((sizeof acellName) << 16) | (sizeof kernelMsg);
1469         code =
1470             afsd_call_syscall(AFSOP_AFSDB_HANDLER, acellName, kernelMsg, sizeArg);
1471         if (code) {             /* Something is wrong? */
1472             sleep(1);
1473             continue;
1474         }
1475
1476         if (*acellName == 1)    /* Shutting down */
1477             break;
1478
1479         code = afsconf_GetAfsdbInfo(acellName, 0, &acellInfo);
1480         if (code) {
1481             kernelMsg[0] = 0;
1482             kernelMsg[1] = 0;
1483         } else {
1484             kernelMsg[0] = acellInfo.numServers;
1485             if (acellInfo.timeout)
1486                 kernelMsg[1] = acellInfo.timeout - time(0);
1487             else
1488                 kernelMsg[1] = 0;
1489             for (i = 0; i < acellInfo.numServers; i++)
1490                 kernelMsg[i + 2] = acellInfo.hostAddr[i].sin_addr.s_addr;
1491             strncpy(acellName, acellInfo.name, sizeof(acellName));
1492             acellName[sizeof(acellName) - 1] = '\0';
1493         }
1494     }
1495 #ifdef AFS_DARWIN_ENV
1496     kill(event_pid, SIGTERM);
1497 #endif
1498 }
1499
1500 #ifdef AFS_DARWIN_ENV
1501 static void
1502 BkgHandler(void)
1503 {
1504     afs_int32 code;
1505     struct afs_uspc_param *uspc;
1506     char srcName[256];
1507     char dstName[256];
1508
1509     uspc = (struct afs_uspc_param *)malloc(sizeof(struct afs_uspc_param));
1510     memset(uspc, 0, sizeof(struct afs_uspc_param));
1511     memset(srcName, 0, sizeof(srcName));
1512     memset(dstName, 0, sizeof(dstName));
1513
1514     /* brscount starts at 0 */
1515     uspc->ts = -1;
1516
1517     while (1) {
1518         pid_t child = 0;
1519         int status;
1520         char srcpath[BUFSIZ];
1521         char dstpath[BUFSIZ];
1522
1523         /* pushing in a buffer this large */
1524         uspc->bufSz = 256;
1525
1526         code = afsd_call_syscall(AFSOP_BKG_HANDLER, uspc, srcName, dstName);
1527         if (code) {             /* Something is wrong? */
1528             if (code == -2) /* shutting down */
1529                 break;
1530
1531             sleep(1);
1532             uspc->retval = -1;
1533             continue;
1534         }
1535
1536         switch (uspc->reqtype) {
1537         case AFS_USPC_UMV:
1538             snprintf(srcpath, BUFSIZ, "/afs/.:mount/%d:%d:%d:%d/%s",
1539                      uspc->req.umv.sCell, uspc->req.umv.sVolume,
1540                      uspc->req.umv.sVnode, uspc->req.umv.sUnique, srcName);
1541             snprintf(dstpath, BUFSIZ, "/afs/.:mount/%d:%d:%d:%d/%s",
1542                      uspc->req.umv.dCell, uspc->req.umv.dVolume,
1543                      uspc->req.umv.dVnode, uspc->req.umv.dUnique, dstName);
1544             if ((child = fork()) == 0) {
1545                 /* first child does cp; second, rm. mv would re-enter. */
1546
1547                 switch (uspc->req.umv.idtype) {
1548                 case IDTYPE_UID:
1549                     if (setuid(uspc->req.umv.id) != 0) {
1550                         exit(-1);
1551                     }
1552                     break;
1553                 default:
1554                     exit(-1);
1555                     break; /* notreached */
1556                 }
1557                 execl("/bin/cp", "(afsd EXDEV helper)", "-PRp", "--", srcpath,
1558                       dstpath, (char *) NULL);
1559             }
1560             if (child == (pid_t) -1) {
1561                 uspc->retval = -1;
1562                 continue;
1563             }
1564
1565             if (waitpid(child, &status, 0) == -1)
1566                 uspc->retval = EIO;
1567             else if (WIFEXITED(status) != 0 && WEXITSTATUS(status) == 0) {
1568                 if ((child = fork()) == 0) {
1569                     switch (uspc->req.umv.idtype) {
1570                     case IDTYPE_UID:
1571                         if (setuid(uspc->req.umv.id) != 0) {
1572                             exit(-1);
1573                         }
1574                         break;
1575                     default:
1576                         exit(-1);
1577                         break; /* notreached */
1578                     }
1579                     execl("/bin/rm", "(afsd EXDEV helper)", "-rf", "--",
1580                           srcpath, (char *) NULL);
1581                 }
1582                 if (child == (pid_t) -1) {
1583                     uspc->retval = -1;
1584                     continue;
1585                 }
1586                 if (waitpid(child, &status, 0) == -1)
1587                     uspc->retval = EIO;
1588                 else if (WIFEXITED(status) != 0) {
1589                     /* rm exit status */
1590                     uspc->retval = WEXITSTATUS(status);
1591                 } else {
1592                     /* rm signal status */
1593                     uspc->retval = -(WTERMSIG(status));
1594                 }
1595             } else {
1596                 /* error from cp: exit or signal status */
1597                 uspc->retval = (WIFEXITED(status) != 0) ?
1598                     WEXITSTATUS(status) : -(WTERMSIG(status));
1599             }
1600             memset(srcName, 0, sizeof(srcName));
1601             memset(dstName, 0, sizeof(dstName));
1602             break;
1603
1604         default:
1605             /* unknown req type */
1606             uspc->retval = -1;
1607             break;
1608         }
1609     }
1610 }
1611 #endif
1612
1613 static void *
1614 afsdb_thread(void *rock)
1615 {
1616     /* Since the AFSDB lookup handler runs as a user process,
1617      * need to drop the controlling TTY, etc.
1618      */
1619     if (afsd_daemon(0, 0) == -1) {
1620         printf("Error starting AFSDB lookup handler: %s\n",
1621                strerror(errno));
1622         exit(1);
1623     }
1624     AfsdbLookupHandler();
1625     return NULL;
1626 }
1627
1628 static void *
1629 daemon_thread(void *rock)
1630 {
1631 #ifdef AFS_DARWIN80_ENV
1632     /* Since the background daemon runs as a user process,
1633      * need to drop the controlling TTY, etc.
1634      */
1635     if (afsd_daemon(0, 0) == -1) {
1636         printf("Error starting background daemon: %s\n",
1637                strerror(errno));
1638         exit(1);
1639     }
1640     BkgHandler();
1641 #elif defined(AFS_AIX32_ENV)
1642     afsd_call_syscall(AFSOP_START_BKG, 0);
1643 #else
1644     afsd_call_syscall(AFSOP_START_BKG);
1645 #endif
1646     return NULL;
1647 }
1648
1649 #ifndef UKERNEL
1650 static void *
1651 rmtsysd_thread(void *rock)
1652 {
1653     rmtsysd();
1654     return NULL;
1655 }
1656 #endif /* !UKERNEL */
1657
1658 int
1659 mainproc(struct cmd_syndesc *as, void *arock)
1660 {
1661     afs_int32 code;             /*Result of fork() */
1662 #ifdef  AFS_SUN5_ENV
1663     struct stat st;
1664 #endif
1665 #ifdef AFS_SGI65_ENV
1666     struct sched_param sp;
1667 #endif
1668
1669 #ifdef AFS_SGI_VNODE_GLUE
1670     if (afs_init_kernel_config(-1) < 0) {
1671         printf("Can't determine NUMA configuration, not starting AFS.\n");
1672         exit(1);
1673     }
1674 #endif
1675
1676     /* call atoi on the appropriate parsed results */
1677     if (as->parms[0].items) {
1678         /* -blocks */
1679         cacheBlocks = atoi(as->parms[0].items->data);
1680         sawCacheBlocks = 1;
1681     }
1682     if (as->parms[1].items) {
1683         /* -files */
1684         cacheFiles = atoi(as->parms[1].items->data);
1685         filesSet = 1;           /* set when spec'd on cmd line */
1686     }
1687     if (as->parms[2].items) {
1688         /* -rootvol */
1689         strcpy(rootVolume, as->parms[2].items->data);
1690         rootVolSet = 1;
1691     }
1692     if (as->parms[3].items) {
1693         /* -stat */
1694         cacheStatEntries = atoi(as->parms[3].items->data);
1695         sawCacheStatEntries = 1;
1696     }
1697     if (as->parms[4].items) {
1698         /* -memcache */
1699         cacheBaseDir[0] = '\0';
1700         sawCacheBaseDir = 1;
1701         cacheFlags |= AFSCALL_INIT_MEMCACHE;
1702     }
1703     if (as->parms[5].items) {
1704         /* -cachedir */
1705         strcpy(cacheBaseDir, as->parms[5].items->data);
1706         sawCacheBaseDir = 1;
1707     }
1708     if (as->parms[6].items) {
1709         /* -mountdir */
1710         strcpy(afsd_cacheMountDir, as->parms[6].items->data);
1711         sawCacheMountDir = 1;
1712     }
1713     if (as->parms[7].items) {
1714         /* -daemons */
1715         nDaemons = atoi(as->parms[7].items->data);
1716     }
1717     if (as->parms[8].items) {
1718         /* -nosettime */
1719         /* noop */
1720     }
1721     if (as->parms[9].items) {
1722         /* -verbose */
1723         afsd_verbose = 1;
1724     }
1725     if (as->parms[10].items) {
1726         /* -rmtsys */
1727         afsd_rmtsys = 1;
1728 #ifdef UKERNEL
1729         printf("-rmtsys not supported for UKERNEL\n");
1730         return -1;
1731 #endif
1732     }
1733     if (as->parms[11].items) {
1734         /* -debug */
1735         afsd_debug = 1;
1736         afsd_verbose = 1;
1737     }
1738     if (as->parms[12].items) {
1739         /* -chunksize */
1740         chunkSize = atoi(as->parms[12].items->data);
1741         if (chunkSize < 0 || chunkSize > 30) {
1742             printf
1743                 ("afsd:invalid chunk size (not in range 0-30), using default\n");
1744             chunkSize = 0;
1745         }
1746     }
1747     if (as->parms[13].items) {
1748         /* -dcache */
1749         dCacheSize = atoi(as->parms[13].items->data);
1750         sawDCacheSize = 1;
1751     }
1752     if (as->parms[14].items) {
1753         /* -volumes */
1754         vCacheSize = atoi(as->parms[14].items->data);
1755     }
1756     if (as->parms[15].items) {
1757         /* -biods */
1758 #ifndef AFS_AIX32_ENV
1759         printf
1760             ("afsd: [-biods] currently only enabled for aix3.x VM supported systems\n");
1761 #else
1762         nBiods = atoi(as->parms[15].items->data);
1763         sawBiod = 1;
1764 #endif
1765     }
1766     if (as->parms[16].items) {
1767         /* -prealloc */
1768         preallocs = atoi(as->parms[16].items->data);
1769     }
1770     strcpy(confDir, AFSDIR_CLIENT_ETC_DIRPATH);
1771     if (as->parms[17].items) {
1772         /* -confdir */
1773         strcpy(confDir, as->parms[17].items->data);
1774     }
1775     sprintf(fullpn_CacheInfo, "%s/%s", confDir, CACHEINFOFILE);
1776     if (as->parms[18].items) {
1777         /* -logfile */
1778         printf("afsd: Ignoring obsolete -logfile flag\n");
1779     }
1780     if (as->parms[19].items) {
1781         /* -waitclose */
1782         afsd_CloseSynch = 1;
1783     }
1784     if (as->parms[20].items) {
1785         /* -shutdown */
1786         afs_shutdown = 1;
1787         /*
1788          * Cold shutdown is the default
1789          */
1790         printf("afsd: Shutting down all afs processes and afs state\n");
1791         code = afsd_call_syscall(AFSOP_SHUTDOWN, 1);
1792         if (code) {
1793             printf("afsd: AFS still mounted; Not shutting down\n");
1794             exit(1);
1795         }
1796         exit(0);
1797     }
1798     if (as->parms[21].items) {
1799         /* -enable_peer_stats */
1800         enable_peer_stats = 1;
1801     }
1802     if (as->parms[22].items) {
1803         /* -enable_process_stats */
1804         enable_process_stats = 1;
1805     }
1806     if (as->parms[23].items) {
1807         /* -mem_alloc_sleep */
1808         printf("afsd: -mem_alloc_sleep is deprecated -- ignored\n");
1809     }
1810     if (as->parms[24].items) {
1811         /* -afsdb */
1812         enable_afsdb = 1;
1813     }
1814     if (as->parms[25].items) {
1815         /* -files_per_subdir */
1816         int res = atoi(as->parms[25].items->data);
1817         if (res < 10 || res > (1 << 30)) {
1818             printf
1819                 ("afsd:invalid number of files per subdir, \"%s\". Ignored\n",
1820                  as->parms[25].items->data);
1821         } else {
1822             nFilesPerDir = res;
1823         }
1824     }
1825     if (as->parms[26].items) {
1826         /* -dynroot */
1827         enable_dynroot = 1;
1828     }
1829     if (as->parms[27].items) {
1830         /* -fakestat */
1831         enable_fakestat = 2;
1832     }
1833     if (as->parms[28].items) {
1834         /* -fakestat-all */
1835         enable_fakestat = 1;
1836     }
1837     if (as->parms[29].items) {
1838         /* -nomount */
1839         enable_nomount = 1;
1840     }
1841     if (as->parms[30].items) {
1842         /* -backuptree */
1843         enable_backuptree = 1;
1844     }
1845     if (as->parms[31].items) {
1846         /* -rxbind */
1847         enable_rxbind = 1;
1848     }
1849     if (as->parms[32].items) {
1850         /* -settime */
1851         printf("afsd: -settime ignored\n");
1852         printf("afsd: the OpenAFS client no longer sets the system time; "
1853                "please use NTP or\n");
1854         printf("afsd: another such system to synchronize client time\n");
1855     }
1856
1857     /* set rx_extraPackets */
1858     if (as->parms[33].items) {
1859         /* -rxpck */
1860         int rxpck = atoi(as->parms[33].items->data);
1861         printf("afsd: set rxpck = %d\n", rxpck);
1862         code = afsd_call_syscall(AFSOP_SET_RXPCK, rxpck);
1863         if (code) {
1864             printf("afsd: failed to set rxpck\n");
1865             exit(1);
1866         }
1867     }
1868     if (as->parms[34].items) {
1869         char *c;
1870         if (!as->parms[34].items->data ||
1871             ((c = strchr(as->parms[34].items->data, '/')) == NULL))
1872             printf
1873                 ("ignoring splitcache (specify as RW/RO percentages: 60/40)\n");
1874         else {
1875             ropct = atoi((char *)c + 1);
1876             *c = '\0';
1877             rwpct = atoi((char *)as->parms[34].items->data);
1878             if ((rwpct != 0) && (ropct != 0) && (ropct + rwpct == 100)) {
1879                 /* -splitcache */
1880                 enable_splitcache = 1;
1881             }
1882         }
1883     }
1884     if (as->parms[35].items) {
1885 #ifdef AFS_MAXVCOUNT_ENV
1886        /* -disable-dynamic-vcaches */
1887        afsd_dynamic_vcaches = 0;
1888 #else
1889        printf("afsd: Error toggling flag, dynamically allocated vcaches not supported on your platform\n");
1890        exit(1);
1891 #endif
1892     }
1893 #ifdef AFS_MAXVCOUNT_ENV
1894     else {
1895        /* -dynamic-vcaches */
1896        afsd_dynamic_vcaches = 1;
1897     }
1898
1899     if (afsd_verbose)
1900     printf("afsd: %s dynamically allocated vcaches\n", ( afsd_dynamic_vcaches ? "enabling" : "disabling" ));
1901 #endif
1902
1903     /* set -rxmaxmtu */
1904     if (as->parms[36].items) {
1905         /* -rxmaxmtu */
1906         rxmaxmtu = atoi(as->parms[36].items->data);
1907     }
1908     if (as->parms[37].items) {
1909         /* -dynroot-sparse */
1910         enable_dynroot = 2;
1911     }
1912     if (as->parms[38].items) {
1913         /* -rxmaxfrags */
1914         rxmaxfrags = atoi(as->parms[38].items->data);
1915     }
1916
1917     /* parse cacheinfo file if this is a diskcache */
1918     if (ParseCacheInfoFile()) {
1919         exit(1);
1920     }
1921
1922     return 0;
1923 }
1924
1925 int
1926 afsd_run(void)
1927 {
1928     static char rn[] = "afsd";  /*Name of this routine */
1929     struct afsconf_dir *cdir;   /* config dir */
1930     int lookupResult;           /*Result of GetLocalCellName() */
1931     int i;
1932     afs_int32 code;             /*Result of fork() */
1933     char *fsTypeMsg = NULL;
1934     int cacheIteration;         /*How many times through cache verification */
1935     int vFilesFound;            /*How many data cache files were found in sweep */
1936     int currVFile;              /*Current AFS cache file number passed in */
1937
1938         /*
1939      * Pull out all the configuration info for the workstation's AFS cache and
1940      * the cellular community we're willing to let our users see.
1941      */
1942     cdir = afsconf_Open(confDir);
1943     if (!cdir) {
1944         printf("afsd: some file missing or bad in %s\n", confDir);
1945         exit(1);
1946     }
1947
1948     lookupResult =
1949         afsconf_GetLocalCell(cdir, LclCellName, sizeof(LclCellName));
1950     if (lookupResult) {
1951         printf("%s: Can't get my home cell name!  [Error is %d]\n", rn,
1952                lookupResult);
1953     } else {
1954         if (afsd_verbose)
1955             printf("%s: My home cell is '%s'\n", rn, LclCellName);
1956     }
1957
1958     if (!enable_nomount) {
1959         if (afsd_check_mount(rn, afsd_cacheMountDir)) {
1960             return -1;
1961         }
1962     }
1963
1964     /* do some random computations in memcache case to get things to work
1965      * reasonably no matter which parameters you set.
1966      */
1967     if (cacheFlags & AFSCALL_INIT_MEMCACHE) {
1968         /* memory cache: size described either as blocks or dcache entries, but
1969          * not both.
1970          */
1971         if (filesSet) {
1972             fprintf(stderr, "%s: -files ignored with -memcache\n", rn);
1973         }
1974         if (sawDCacheSize) {
1975             if (chunkSize == 0) {
1976                 chunkSize = 13; /* 8k default chunksize for memcache */
1977             }
1978             if (sawCacheBlocks) {
1979                 printf
1980                     ("%s: can't set cache blocks and dcache size simultaneously when diskless.\n",
1981                      rn);
1982                 exit(1);
1983             }
1984             /* compute the cache size based on # of chunks times the chunk size */
1985             i = (1 << chunkSize);       /* bytes per chunk */
1986             cacheBlocks = i * dCacheSize;
1987             sawCacheBlocks = 1; /* so that ParseCacheInfoFile doesn't overwrite */
1988         } else {
1989             if (chunkSize == 0) {
1990                 /* Try to autotune the memcache chunksize based on size
1991                  * of memcache. This is done on the assumption that approx
1992                  * 1024 chunks is suitable, it's a balance between enough
1993                  * chunks to be useful and ramping up nicely when using larger
1994                  * memcache to improve bulk read/write performance
1995                  */
1996                 for (i = 14;
1997                      i <= 21 && (1 << i) / 1024 < (cacheBlocks / 1024); i++);
1998                 chunkSize = i - 1;
1999             }
2000             /* compute the dcache size from overall cache size and chunk size */
2001             if (chunkSize > 10) {
2002                 dCacheSize = (cacheBlocks >> (chunkSize - 10));
2003             } else if (chunkSize < 10) {
2004                 dCacheSize = (cacheBlocks << (10 - chunkSize));
2005             } else {
2006                 dCacheSize = cacheBlocks;
2007             }
2008             /* don't have to set sawDCacheSize here since it isn't overwritten
2009              * by ParseCacheInfoFile.
2010              */
2011         }
2012         if (afsd_verbose)
2013             printf("%s: chunkSize autotuned to %d\n", rn, chunkSize);
2014
2015         /* kernel computes # of dcache entries as min of cacheFiles and
2016          * dCacheSize, so we now make them equal.
2017          */
2018         cacheFiles = dCacheSize;
2019     } else {
2020         /* Disk cache:
2021          * Compute the number of cache files based on cache size,
2022          * but only if -files isn't given on the command line.
2023          * Don't let # files be so small as to prevent full utilization
2024          * of the cache unless user has explicitly asked for it.
2025          */
2026         if (chunkSize == 0) {
2027             /* Set chunksize to 256kB - 1MB depending on cache size */
2028             if (cacheBlocks < 500000) {
2029                 chunkSize = 18;
2030             } else if (cacheBlocks < 1000000) {
2031                 chunkSize = 19;
2032             } else {
2033                 chunkSize = 20;
2034             }
2035         }
2036         if (!filesSet) {
2037             cacheFiles = cacheBlocks / 32;      /* Assume 32k avg filesize */
2038
2039             cacheFiles = max(cacheFiles, 1000);
2040
2041             /* Always allow more files than chunks.  Presume average V-file
2042              * is ~67% of a chunk...  (another guess, perhaps Honeyman will
2043              * have a grad student write a paper).  i is KILOBYTES.
2044              */
2045             i = 1 << (chunkSize < 10 ? 0 : chunkSize - 10);
2046             cacheFiles = max(cacheFiles, 1.5 * (cacheBlocks / i));
2047
2048             /* never permit more files than blocks, while leaving space for
2049              * VolumeInfo and CacheItems files.  VolumeInfo is usually 20K,
2050              * CacheItems is 50 Bytes / file (== 1K/20)
2051              */
2052 #define CACHEITMSZ (cacheFiles / 20)
2053 #define VOLINFOSZ 50            /* 40kB has been seen, be conservative */
2054 #define CELLINFOSZ 4            /* Assuming disk block size is 4k ... */
2055 #define INFOSZ (VOLINFOSZ+CELLINFOSZ+CACHEITMSZ)
2056
2057             /* Sanity check: If the obtained number of disk cache files
2058              * is larger than the number of available (4k) disk blocks, we're
2059              * doing something wrong. Fail hard so we can fix the bug instead
2060              * of silently hiding it like before */
2061
2062             if (cacheFiles > (cacheBlocks - INFOSZ) / 4) {
2063                 fprintf(stderr,
2064                         "%s: ASSERT: cacheFiles %d  diskblocks %d\n",
2065                         rn, cacheFiles, (cacheBlocks - INFOSZ) / 4);
2066                 exit(1);
2067             }
2068             if (cacheFiles < 100)
2069                 fprintf(stderr, "%s: WARNING: cache probably too small!\n",
2070                         rn);
2071
2072             if (afsd_verbose)
2073                 printf("%s: cacheFiles autotuned to %d\n", rn, cacheFiles);
2074         }
2075 #if 0
2076        /* This actually needs to
2077           1) use powers of 2
2078           2) not second-guess when a chunksize comes from the command line
2079           3) be less, um, small. 2^2??
2080        */
2081         /* Sanity check chunkSize */
2082         i = max(cacheBlocks / 1000, cacheBlocks / cacheFiles);
2083         chunkSize = min(chunkSize, i);
2084         chunkSize = max(chunkSize, 2);
2085         if (afsd_verbose)
2086             printf("%s: chunkSize autotuned to %d\n", rn, chunkSize);
2087 #endif
2088
2089         if (!sawDCacheSize) {
2090             dCacheSize = cacheFiles / 2;
2091             if (dCacheSize > 10000) {
2092                 dCacheSize = 10000;
2093             }
2094             if (dCacheSize < 2000) {
2095                 dCacheSize = 2000;
2096             }
2097             if (afsd_verbose)
2098                 printf("%s: dCacheSize autotuned to %d\n", rn, dCacheSize);
2099         }
2100     }
2101     if (!sawCacheStatEntries) {
2102         if (chunkSize <= 13) {
2103             cacheStatEntries = dCacheSize / 4;
2104         } else if (chunkSize >= 16) {
2105             cacheStatEntries = dCacheSize * 1.5;
2106         } else {
2107             cacheStatEntries = dCacheSize;
2108         }
2109         if (afsd_verbose)
2110             printf("%s: cacheStatEntries autotuned to %d\n", rn,
2111                    cacheStatEntries);
2112     }
2113
2114 #if !defined(AFS_CACHE_VNODE_PATH) && !defined(AFS_LINUX26_ENV)
2115     /*
2116      * Create and zero the inode table for the desired cache files.
2117      */
2118     inode_for_V = (AFSD_INO_T *) malloc(cacheFiles * sizeof(AFSD_INO_T));
2119     if (inode_for_V == (AFSD_INO_T *) 0) {
2120         printf
2121             ("%s: malloc() failed for cache file inode table with %d entries.\n",
2122              rn, cacheFiles);
2123         exit(1);
2124     }
2125     memset(inode_for_V, '\0', (cacheFiles * sizeof(AFSD_INO_T)));
2126     if (afsd_debug)
2127         printf("%s: %d inode_for_V entries at 0x%x, %lu bytes\n", rn,
2128                cacheFiles, inode_for_V, (cacheFiles * sizeof(AFSD_INO_T)));
2129 #endif
2130
2131     /*
2132      * Set up all the pathnames we'll need for later.
2133      */
2134     sprintf(fullpn_DCacheFile, "%s/%s", cacheBaseDir, DCACHEFILE);
2135     sprintf(fullpn_VolInfoFile, "%s/%s", cacheBaseDir, VOLINFOFILE);
2136     sprintf(fullpn_CellInfoFile, "%s/%s", cacheBaseDir, CELLINFOFILE);
2137     sprintf(fullpn_VFile, "%s/", cacheBaseDir);
2138     vFilePtr = fullpn_VFile + strlen(fullpn_VFile);
2139
2140     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)
2141         && (fsTypeMsg = CheckCacheBaseDir(cacheBaseDir))) {
2142 #ifdef AFS_SUN5_ENV
2143         printf("%s: WARNING: Cache dir check failed (%s)\n", rn, fsTypeMsg);
2144 #else
2145         printf("%s: ERROR: Cache dir check failed (%s)\n", rn, fsTypeMsg);
2146         exit(1);
2147 #endif
2148     }
2149
2150     /*
2151      * Set up all the kernel processes needed for AFS.
2152      */
2153 #ifdef mac2
2154     setpgrp(getpid(), 0);
2155 #endif /* mac2 */
2156
2157     /*
2158      * Set the primary cell name.
2159      */
2160     afsd_call_syscall(AFSOP_SET_THISCELL, LclCellName);
2161
2162     /* Initialize RX daemons and services */
2163
2164     /* initialize the rx random number generator from user space */
2165     {
2166         /* parse multihomed address files */
2167         afs_uint32 addrbuf[MAXIPADDRS], maskbuf[MAXIPADDRS],
2168             mtubuf[MAXIPADDRS];
2169         char reason[1024];
2170         code =
2171             parseNetFiles(addrbuf, maskbuf, mtubuf, MAXIPADDRS, reason,
2172                           AFSDIR_CLIENT_NETINFO_FILEPATH,
2173                           AFSDIR_CLIENT_NETRESTRICT_FILEPATH);
2174         if (code > 0) {
2175             if (enable_rxbind)
2176                 code = code | 0x80000000;
2177                 afsd_call_syscall(AFSOP_ADVISEADDR, code, addrbuf, maskbuf, mtubuf);
2178         } else
2179             printf("ADVISEADDR: Error in specifying interface addresses:%s\n",
2180                    reason);
2181     }
2182
2183     /* Set realtime priority for most threads to same as for biod's. */
2184     afsd_set_afsd_rtpri();
2185
2186     /* Start listener, then callback listener. Lastly, start rx event daemon.
2187      * Change in ordering is so that Linux port has socket fd in listener
2188      * process.
2189      * preallocs are passed for both listener and callback server. Only
2190      * the one which actually does the initialization uses them though.
2191      */
2192     if (preallocs < cacheStatEntries + 50)
2193         preallocs = cacheStatEntries + 50;
2194 #ifdef RXK_LISTENER_ENV
2195     if (afsd_verbose)
2196         printf("%s: Forking rx listener daemon.\n", rn);
2197 # ifdef AFS_SUN510_ENV
2198     fork_rx_syscall_wait(rn, AFSOP_RXLISTENER_DAEMON, preallocs,
2199                          enable_peer_stats, enable_process_stats);
2200 # else /* !AFS_SUN510_ENV */
2201     fork_rx_syscall(rn, AFSOP_RXLISTENER_DAEMON, preallocs, enable_peer_stats,
2202                     enable_process_stats);
2203 # endif /* !AFS_SUN510_ENV */
2204 #endif
2205     if (afsd_verbose)
2206         printf("%s: Forking rx callback listener.\n", rn);
2207 #ifndef RXK_LISTENER_ENV
2208     fork_rx_syscall(rn, AFSOP_START_RXCALLBACK, preallocs, enable_peer_stats,
2209                     enable_process_stats);
2210 #else
2211     fork_syscall(rn, AFSOP_START_RXCALLBACK, preallocs);
2212 #endif
2213 #if defined(AFS_SUN5_ENV) || defined(RXK_LISTENER_ENV) || defined(RXK_UPCALL_ENV)
2214     if (afsd_verbose)
2215         printf("%s: Forking rxevent daemon.\n", rn);
2216     fork_rx_syscall(rn, AFSOP_RXEVENT_DAEMON);
2217 #endif
2218
2219     if (enable_afsdb) {
2220         if (afsd_verbose)
2221             printf("%s: Forking AFSDB lookup handler.\n", rn);
2222         afsd_fork(0, afsdb_thread, NULL);
2223     }
2224     code = afsd_call_syscall(AFSOP_BASIC_INIT, 1);
2225     if (code) {
2226         printf("%s: Error %d in basic initialization.\n", rn, code);
2227         exit(1);
2228     }
2229
2230     /*
2231      * Tell the kernel some basic information about the workstation's cache.
2232      */
2233     if (afsd_verbose)
2234         printf
2235             ("%s: Calling AFSOP_CACHEINIT: %d stat cache entries, %d optimum cache files, %d blocks in the cache, flags = 0x%x, dcache entries %d\n",
2236              rn, cacheStatEntries, cacheFiles, cacheBlocks, cacheFlags,
2237              dCacheSize);
2238     memset(&cparams, '\0', sizeof(cparams));
2239     cparams.cacheScaches = cacheStatEntries;
2240     cparams.cacheFiles = cacheFiles;
2241     cparams.cacheBlocks = cacheBlocks;
2242     cparams.cacheDcaches = dCacheSize;
2243     cparams.cacheVolumes = vCacheSize;
2244     cparams.chunkSize = chunkSize;
2245     cparams.setTimeFlag = 0;
2246     cparams.memCacheFlag = cacheFlags;
2247     cparams.dynamic_vcaches = afsd_dynamic_vcaches;
2248         afsd_call_syscall(AFSOP_CACHEINIT, &cparams);
2249
2250     /* do it before we init the cache inodes */
2251     if (enable_splitcache) {
2252         afsd_call_syscall(AFSOP_BUCKETPCT, 1, rwpct);
2253         afsd_call_syscall(AFSOP_BUCKETPCT, 2, ropct);
2254     }
2255
2256     if (afsd_CloseSynch)
2257         afsd_call_syscall(AFSOP_CLOSEWAIT);
2258
2259     /*
2260      * Sweep the workstation AFS cache directory, remembering the inodes of
2261      * valid files and deleting extraneous files.  Keep sweeping until we
2262      * have the right number of data cache files or we've swept too many
2263      * times.
2264      *
2265      * This also creates files in the cache directory like VolumeItems and
2266      * CellItems, and thus must be ran before those are sent to the kernel.
2267      */
2268     if (afsd_verbose)
2269         printf("%s: Sweeping workstation's AFS cache directory.\n", rn);
2270     cacheIteration = 0;
2271     /* Memory-cache based system doesn't need any of this */
2272     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)) {
2273         do {
2274             cacheIteration++;
2275             if (SweepAFSCache(&vFilesFound)) {
2276                 printf("%s: Error on sweep %d of workstation AFS cache \
2277                        directory.\n", rn, cacheIteration);
2278                 exit(1);
2279             }
2280             if (afsd_verbose)
2281                 printf
2282                     ("%s: %d out of %d data cache files found in sweep %d.\n",
2283                      rn, vFilesFound, cacheFiles, cacheIteration);
2284         } while ((vFilesFound < cacheFiles)
2285                  && (cacheIteration < MAX_CACHE_LOOPS));
2286     } else if (afsd_verbose)
2287         printf("%s: Using memory cache, not swept\n", rn);
2288
2289     /*
2290      * Pass the kernel the name of the workstation cache file holding the
2291      * dcache entries.
2292      */
2293     if (afsd_debug)
2294         printf("%s: Calling AFSOP_CACHEINFO: dcache file is '%s'\n", rn,
2295                fullpn_DCacheFile);
2296     /* once again, meaningless for a memory-based cache. */
2297     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE))
2298         afsd_call_syscall(AFSOP_CACHEINFO, fullpn_DCacheFile);
2299
2300     /*
2301      * Pass the kernel the name of the workstation cache file holding the
2302      * cell information.
2303      */
2304     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)) {
2305         if (afsd_debug)
2306             printf("%s: Calling AFSOP_CELLINFO: cell info file is '%s'\n", rn,
2307                    fullpn_CellInfoFile);
2308         afsd_call_syscall(AFSOP_CELLINFO, fullpn_CellInfoFile);
2309     }
2310
2311     if (rxmaxfrags) {
2312         if (afsd_verbose)
2313             printf("%s: Setting rxmaxfrags in kernel = %d\n", rn, rxmaxfrags);
2314         code = afsd_call_syscall(AFSOP_SET_RXMAXFRAGS, rxmaxfrags);
2315         if (code)
2316             printf("%s: Error seting rxmaxfrags\n", rn);
2317     }
2318
2319     if (rxmaxmtu) {
2320         if (afsd_verbose)
2321             printf("%s: Setting rxmaxmtu in kernel = %d\n", rn, rxmaxmtu);
2322         code = afsd_call_syscall(AFSOP_SET_RXMAXMTU, rxmaxmtu);
2323         if (code)
2324             printf("%s: Error seting rxmaxmtu\n", rn);
2325     }
2326
2327     if (enable_dynroot) {
2328         if (afsd_verbose)
2329             printf("%s: Enabling dynroot support in kernel%s.\n", rn,
2330                    (enable_dynroot==2)?", not showing cells.":"");
2331         code = afsd_call_syscall(AFSOP_SET_DYNROOT, 1);
2332         if (code)
2333             printf("%s: Error enabling dynroot support.\n", rn);
2334     }
2335
2336     if (enable_fakestat) {
2337         if (afsd_verbose)
2338             printf("%s: Enabling fakestat support in kernel%s.\n", rn,
2339                    (enable_fakestat==2)?" for all mountpoints."
2340                    :" for crosscell mountpoints");
2341         code = afsd_call_syscall(AFSOP_SET_FAKESTAT, enable_fakestat);
2342         if (code)
2343             printf("%s: Error enabling fakestat support.\n", rn);
2344     }
2345
2346     if (enable_backuptree) {
2347         if (afsd_verbose)
2348             printf("%s: Enabling backup tree support in kernel.\n", rn);
2349         code = afsd_call_syscall(AFSOP_SET_BACKUPTREE, enable_backuptree);
2350         if (code)
2351             printf("%s: Error enabling backup tree support.\n", rn);
2352     }
2353
2354     /*
2355      * Tell the kernel about each cell in the configuration.
2356      */
2357     afsconf_CellApply(cdir, ConfigCell, NULL);
2358     afsconf_CellAliasApply(cdir, ConfigCellAlias, NULL);
2359
2360     /* Initialize AFS daemon threads. */
2361     if (afsd_verbose)
2362         printf("%s: Forking AFS daemon.\n", rn);
2363     fork_syscall(rn, AFSOP_START_AFS);
2364
2365     if (afsd_verbose)
2366         printf("%s: Forking Check Server Daemon.\n", rn);
2367     fork_syscall(rn, AFSOP_START_CS);
2368
2369     if (afsd_verbose)
2370         printf("%s: Forking %d background daemons.\n", rn, nDaemons);
2371 #if defined(AFS_SGI_ENV) && defined(AFS_SGI_SHORTSTACK)
2372     /* Add one because for sgi we always "steal" the first daemon for a
2373      * different task if we only have a 4K stack.
2374      */
2375     nDaemons++;
2376 #endif
2377     for (i = 0; i < nDaemons; i++) {
2378         afsd_fork(0, daemon_thread, NULL);
2379     }
2380 #ifdef  AFS_AIX32_ENV
2381     if (!sawBiod)
2382         nBiods = nDaemons * 2;
2383     if (nBiods < 5)
2384         nBiods = 5;
2385     for (i = 0; i < nBiods; i++) {
2386         fork_syscall(rn, AFSOP_START_BKG, nBiods);
2387     }
2388 #endif
2389
2390     /*
2391      * If the root volume has been explicitly set, tell the kernel.
2392      */
2393     if (rootVolSet) {
2394         if (afsd_verbose)
2395             printf("%s: Calling AFSOP_ROOTVOLUME with '%s'\n", rn,
2396                    rootVolume);
2397         afsd_call_syscall(AFSOP_ROOTVOLUME, rootVolume);
2398     }
2399
2400     /*
2401      * Pass the kernel the name of the workstation cache file holding the
2402      * volume information.
2403      */
2404     if (afsd_debug)
2405         printf("%s: Calling AFSOP_VOLUMEINFO: volume info file is '%s'\n", rn,
2406                fullpn_VolInfoFile);
2407     /* once again, meaningless for a memory-based cache. */
2408     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE))
2409         afsd_call_syscall(AFSOP_VOLUMEINFO, fullpn_VolInfoFile);
2410
2411     /*
2412      * Give the kernel the names of the AFS files cached on the workstation's
2413      * disk.
2414      */
2415     if (afsd_debug)
2416         printf
2417             ("%s: Calling AFSOP_CACHEFILE for each of the %d files in '%s'\n",
2418              rn, cacheFiles, cacheBaseDir);
2419     if (!(cacheFlags & AFSCALL_INIT_MEMCACHE)) {
2420         /* ... and again ... */
2421         int nocachefile = 0;
2422         for (currVFile = 0; currVFile < cacheFiles; currVFile++) {
2423             if (!nocachefile) {
2424                 sprintf(fullpn_VFile, "%s/D%d/V%d", cacheBaseDir, dir_for_V[currVFile], currVFile);
2425                 code = afsd_call_syscall(AFSOP_CACHEFILE, fullpn_VFile);
2426                 if (code) {
2427                     if (currVFile == 0) {
2428                         if (afsd_debug)
2429                             printf
2430                                 ("%s: Calling AFSOP_CACHEINODE for each of the %d files in '%s'\n",
2431                                  rn, cacheFiles, cacheBaseDir);
2432                         nocachefile = 1;
2433                     } else {
2434                         printf
2435                             ("%s: Error calling AFSOP_CACHEFILE for '%s'\n",
2436                              rn, fullpn_VFile);
2437                         exit(1);
2438                     }
2439                 } else {
2440                     continue;
2441                 }
2442                 /* fall through to setup-by-inode */
2443             }
2444 #ifdef AFS_SGI62_ENV
2445             afsd_call_syscall(AFSOP_CACHEINODE,
2446                          (afs_uint32) (inode_for_V[currVFile] >> 32),
2447                          (afs_uint32) (inode_for_V[currVFile] & 0xffffffff));
2448 #elif !(defined(AFS_LINUX26_ENV) || defined(AFS_CACHE_VNODE_PATH))
2449             afsd_call_syscall(AFSOP_CACHEINODE, inode_for_V[currVFile]);
2450 #else
2451             printf
2452                 ("%s: Error calling AFSOP_CACHEINODE: not configured\n",
2453                  rn);
2454             exit(1);
2455 #endif
2456         }
2457     }
2458     /*end for */
2459     /*
2460      * All the necessary info has been passed into the kernel to run an AFS
2461      * system.  Give the kernel our go-ahead.
2462      */
2463     if (afsd_debug)
2464         printf("%s: Calling AFSOP_GO with cacheSetTime = %d\n", rn,
2465                0);
2466         afsd_call_syscall(AFSOP_GO, 0);
2467
2468     /*
2469      * At this point, we have finished passing the kernel all the info
2470      * it needs to set up the AFS.  Mount the AFS root.
2471      */
2472     printf("%s: All AFS daemons started.\n", rn);
2473
2474     if (afsd_verbose)
2475         printf("%s: Forking trunc-cache daemon.\n", rn);
2476     fork_syscall(rn, AFSOP_START_TRUNCDAEMON);
2477
2478     if (!enable_nomount) {
2479         afsd_mount_afs(rn, afsd_cacheMountDir);
2480     }
2481
2482 #ifndef UKERNEL
2483     if (afsd_rmtsys) {
2484         if (afsd_verbose)
2485             printf("%s: Forking 'rmtsys' daemon.\n", rn);
2486         afsd_fork(0, rmtsysd_thread, NULL);
2487     }
2488 #endif /* !UKERNEL */
2489     /*
2490      * Exit successfully.
2491      */
2492     return 0;
2493 }
2494
2495 #include "AFS_component_version_number.c"
2496
2497 void
2498 afsd_init(void)
2499 {
2500     struct cmd_syndesc *ts;
2501
2502     ts = cmd_CreateSyntax(NULL, mainproc, NULL, "start AFS");
2503
2504     /* 0 - 10 */
2505     cmd_AddParm(ts, "-blocks", CMD_SINGLE, CMD_OPTIONAL,
2506                 "1024 byte blocks in cache");
2507     cmd_AddParm(ts, "-files", CMD_SINGLE, CMD_OPTIONAL, "files in cache");
2508     cmd_AddParm(ts, "-rootvol", CMD_SINGLE, CMD_OPTIONAL,
2509                 "name of AFS root volume");
2510     cmd_AddParm(ts, "-stat", CMD_SINGLE, CMD_OPTIONAL,
2511                 "number of stat entries");
2512     cmd_AddParm(ts, "-memcache", CMD_FLAG, CMD_OPTIONAL, "run diskless");
2513     cmd_AddParm(ts, "-cachedir", CMD_SINGLE, CMD_OPTIONAL, "cache directory");
2514     cmd_AddParm(ts, "-mountdir", CMD_SINGLE, CMD_OPTIONAL, "mount location");
2515     cmd_AddParm(ts, "-daemons", CMD_SINGLE, CMD_OPTIONAL,
2516                 "number of daemons to use");
2517     cmd_AddParm(ts, "-nosettime", CMD_FLAG, CMD_OPTIONAL,
2518                 "don't set the time");
2519     cmd_AddParm(ts, "-verbose", CMD_FLAG, CMD_OPTIONAL,
2520                 "display lots of information");
2521     cmd_AddParm(ts, "-rmtsys", CMD_FLAG, CMD_OPTIONAL,
2522                 "start NFS rmtsysd program");
2523
2524     /* 11 - 20 */
2525     cmd_AddParm(ts, "-debug", CMD_FLAG, CMD_OPTIONAL, "display debug info");
2526     cmd_AddParm(ts, "-chunksize", CMD_SINGLE, CMD_OPTIONAL,
2527                 "log(2) of chunk size");
2528     cmd_AddParm(ts, "-dcache", CMD_SINGLE, CMD_OPTIONAL,
2529                 "number of dcache entries");
2530     cmd_AddParm(ts, "-volumes", CMD_SINGLE, CMD_OPTIONAL,
2531                 "number of volume entries");
2532     cmd_AddParm(ts, "-biods", CMD_SINGLE, CMD_OPTIONAL,
2533                 "number of bkg I/O daemons (aix vm)");
2534     cmd_AddParm(ts, "-prealloc", CMD_SINGLE, CMD_OPTIONAL,
2535                 "number of 'small' preallocated blocks");
2536     cmd_AddParm(ts, "-confdir", CMD_SINGLE, CMD_OPTIONAL,
2537                 "configuration directory");
2538     cmd_AddParm(ts, "-logfile", CMD_SINGLE, CMD_OPTIONAL,
2539                 "Place to keep the CM log");
2540     cmd_AddParm(ts, "-waitclose", CMD_FLAG, CMD_OPTIONAL,
2541                 "make close calls synchronous");
2542     cmd_AddParm(ts, "-shutdown", CMD_FLAG, CMD_OPTIONAL,
2543                 "Shutdown all afs state");
2544     /* 21 - 30 */
2545     cmd_AddParm(ts, "-enable_peer_stats", CMD_FLAG, CMD_OPTIONAL | CMD_HIDE,
2546                 "Collect rpc statistics by peer");
2547     cmd_AddParm(ts, "-enable_process_stats", CMD_FLAG,
2548                 CMD_OPTIONAL | CMD_HIDE,
2549                 "Collect rpc statistics for this process");
2550     cmd_AddParm(ts, "-mem_alloc_sleep", CMD_FLAG, (CMD_OPTIONAL | CMD_HIDE),
2551                 "Allow sleeps when allocating memory cache");
2552     cmd_AddParm(ts, "-afsdb", CMD_FLAG, (CMD_OPTIONAL),
2553                 "Enable AFSDB support");
2554     cmd_AddParm(ts, "-files_per_subdir", CMD_SINGLE, CMD_OPTIONAL,
2555                 "log(2) of the number of cache files per cache subdirectory");
2556     cmd_AddParm(ts, "-dynroot", CMD_FLAG, CMD_OPTIONAL,
2557                 "Enable dynroot support");
2558     cmd_AddParm(ts, "-fakestat", CMD_FLAG, CMD_OPTIONAL,
2559                 "Enable fakestat support for cross-cell mounts");
2560     cmd_AddParm(ts, "-fakestat-all", CMD_FLAG, CMD_OPTIONAL,
2561                 "Enable fakestat support for all mounts");
2562     cmd_AddParm(ts, "-nomount", CMD_FLAG, CMD_OPTIONAL, "Do not mount AFS");
2563     cmd_AddParm(ts, "-backuptree", CMD_FLAG, CMD_OPTIONAL,
2564                 "Prefer backup volumes for mointpoints in backup volumes");
2565     /* 31 - 40 */
2566     cmd_AddParm(ts, "-rxbind", CMD_FLAG, CMD_OPTIONAL,
2567                 "Bind the Rx socket (one interface only)");
2568     cmd_AddParm(ts, "-settime", CMD_FLAG, CMD_OPTIONAL, "set the time");
2569     cmd_AddParm(ts, "-rxpck", CMD_SINGLE, CMD_OPTIONAL,
2570                 "set rx_extraPackets to this value");
2571     cmd_AddParm(ts, "-splitcache", CMD_SINGLE, CMD_OPTIONAL,
2572                 "Percentage RW versus RO in cache (specify as 60/40)");
2573     cmd_AddParm(ts, "-disable-dynamic-vcaches", CMD_FLAG, CMD_OPTIONAL,
2574                 "disable stat/vcache cache growing as needed");
2575     cmd_AddParm(ts, "-rxmaxmtu", CMD_SINGLE, CMD_OPTIONAL, "set rx max MTU to use");
2576     cmd_AddParm(ts, "-dynroot-sparse", CMD_FLAG, CMD_OPTIONAL,
2577                 "Enable dynroot support with minimal cell list");
2578     cmd_AddParm(ts, "-rxmaxfrags", CMD_SINGLE, CMD_OPTIONAL,
2579                 "Set the maximum number of UDP fragments Rx should send/receive"
2580                 " per Rx packet");
2581 }
2582
2583 int
2584 afsd_parse(int argc, char **argv)
2585 {
2586     return cmd_Dispatch(argc, argv);
2587 }
2588
2589 struct afsd_syscall_args {
2590     long syscall;
2591     long param1;
2592     long param2;
2593     long param3;
2594     long param4;
2595     long param5;
2596     const char *rn;
2597     int rxpri;
2598 };
2599
2600 /**
2601  * entry point for calling a syscall from another proc/thread.
2602  *
2603  * @param[in] rock  a struct afsd_syscall_args* specifying what syscall to call
2604  *
2605  * @return unused
2606  *   @retval NULL always
2607  */
2608 static void *
2609 call_syscall_thread(void *rock)
2610 {
2611     struct afsd_syscall_args *args = rock;
2612     int code;
2613
2614     if (args->rxpri) {
2615         afsd_set_rx_rtpri();
2616     }
2617
2618     code = afsd_call_syscall(args->syscall, args->param1, args->param2,
2619                                  args->param3, args->param4, args->param5);
2620     if (code && args->syscall == AFSOP_START_CS) {
2621         printf("%s: No check server daemon in client.\n", args->rn);
2622     }
2623
2624     free(args);
2625
2626     return NULL;
2627 }
2628
2629 /**
2630  * common code for calling a syscall in another proc/thread.
2631  *
2632  * @param[in] rx   1 if this is a thread for RX stuff, 0 otherwise
2633  * @param[in] wait 1 if we should wait for the new proc/thread to finish, 0 to
2634  *                 let it run in the background
2635  * @param[in] rn   the name of the running program
2636  * @param[in] syscall syscall to run
2637  */
2638 static void
2639 fork_syscall_impl(int rx, int wait, const char *rn, long syscall, long param1,
2640                   long param2, long param3, long param4, long param5)
2641 {
2642     struct afsd_syscall_args *args;
2643
2644     args = malloc(sizeof(*args));
2645
2646     args->syscall = syscall;
2647     args->param1 = param1;
2648     args->param2 = param2;
2649     args->param3 = param3;
2650     args->param4 = param4;
2651     args->param5 = param5;
2652     args->rxpri = rx;
2653     args->rn = rn;
2654
2655     afsd_fork(wait, call_syscall_thread, args);
2656 }
2657
2658 /**
2659  * call a syscall in another process or thread.
2660  */
2661 static void
2662 fork_syscall(const char *rn, long syscall, long param1, long param2,
2663              long param3, long param4, long param5)
2664 {
2665     fork_syscall_impl(0, 0, rn, syscall, param1, param2, param3, param4, param5);
2666 }
2667
2668 /**
2669  * call a syscall in another process or thread, and give it RX priority.
2670  */
2671 static void
2672 fork_rx_syscall(const char *rn, long syscall, long param1, long param2,
2673                 long param3, long param4, long param5)
2674 {
2675     fork_syscall_impl(1, 0, rn, syscall, param1, param2, param3, param4, param5);
2676 }
2677
2678 #if defined(AFS_SUN510_ENV) && defined(RXK_LISTENER_ENV)
2679 /**
2680  * call a syscall in another process or thread, give it RX priority, and wait
2681  * for it to finish before returning.
2682  */
2683 static void
2684 fork_rx_syscall_wait(const char *rn, long syscall, long param1, long param2,
2685                      long param3, long param4, long param5)
2686 {
2687     fork_syscall_impl(1, 1, rn, syscall, param1, param2, param3, param4, param5);
2688 }
2689 #endif /* AFS_SUN510_ENV && RXK_LISTENER_ENV */