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