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