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