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