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