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