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