Fix UKERNEL afs_mount arguments
[openafs.git] / src / afs / afs_init.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  * afs_init.c - initialize AFS client.
12  *
13  * Implements:
14  */
15
16 #include <afsconfig.h>
17 #include "afs/param.h"
18
19
20 #include "afs/stds.h"
21 #include "afs/sysincludes.h"    /* Standard vendor system headers */
22 #include "afsincludes.h"        /* Afs-based standard headers */
23 #include "afs/afs_stats.h"      /* afs statistics */
24 #include "rx/rxstat.h"
25
26 #define FSINT_COMMON_XG
27 #include "afs/afscbint.h"
28
29 /* Exported variables */
30 struct osi_dev cacheDev;        /*Cache device */
31 afs_int32 cacheInfoModTime;     /*Last time cache info modified */
32 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
33 struct mount *afs_cacheVfsp = 0;
34 #elif defined(AFS_LINUX20_ENV)
35 struct super_block *afs_cacheSBp = 0;
36 #else
37 struct vfs *afs_cacheVfsp = 0;
38 #endif
39 afs_rwlock_t afs_puttofileLock; /* not used */
40 char *afs_sysname = 0;          /* So that superuser may change the
41                                  * local value of @sys */
42 char *afs_sysnamelist[MAXNUMSYSNAMES];  /* For support of a list of sysname */
43 int afs_sysnamecount = 0;
44 int afs_sysnamegen = 0;
45 struct volume *Initialafs_freeVolList;
46 int afs_memvolumes = 0;
47 #if defined(AFS_XBSD_ENV)
48 static struct vnode *volumeVnode;
49 #endif
50 #if defined(AFS_DISCON_ENV)
51 afs_rwlock_t afs_discon_lock;
52 extern afs_rwlock_t afs_disconDirtyLock;
53 #endif
54
55 /* This is the kernel side of the dynamic vcache setting */
56 int afsd_dynamic_vcaches = 0;   /* Enable dynamic-vcache support */
57
58 /*
59  * Initialization order is important.  Must first call afs_CacheInit,
60  * then cache file and volume file initialization routines.  Next, the
61  * individual cache entry initialization routines are called.
62  */
63
64
65 /*
66  * afs_CacheInit
67  *
68  * Description:
69  *
70  * Parameters:
71  *      astatSize : The number of stat cache (vnode) entries to
72  *                  allocate.
73  *      afiles    : The number of disk files to allocate to the cache
74  *      ablocks   : The max number of 1 Kbyte blocks that all of
75  *                  the files in the cache may occupy.
76  *      aDentries : Number of dcache entries to allocate.
77  *      aVolumes  : Number of volume cache entries to allocate.
78  *      achunk    : Power of 2 to make the chunks.
79  *      aflags    : Flags passed in.
80  *      inodes    : max inodes to pin down in inode[]
81  *      users     : what should size of per-user access cache be?
82  *
83  * Environment:
84  *      This routine should only be called at initialization time, since
85  *      it reclaims no resources and doesn't sufficiently synchronize
86  *      with other processes.
87  */
88
89 struct cm_initparams cm_initParams;
90 static int afs_cacheinit_flag = 0;
91 int
92 afs_CacheInit(afs_int32 astatSize, afs_int32 afiles, afs_int32 ablocks,
93               afs_int32 aDentries, afs_int32 aVolumes, afs_int32 achunk,
94               afs_int32 aflags, afs_int32 ninodes, afs_int32 nusers, afs_int32 dynamic_vcaches)
95 {
96     register afs_int32 i;
97     register struct volume *tv;
98
99     AFS_STATCNT(afs_CacheInit);
100     /*
101      * Jot down the epoch time, namely when this incarnation of the
102      * Cache Manager started.
103      */
104     afs_stats_cmperf.epoch = pag_epoch = osi_Time();
105 #ifdef SYS_NAME_ID
106     afs_stats_cmperf.sysName_ID = SYS_NAME_ID;
107 #else
108     afs_stats_cmperf.sysName_ID = SYS_NAME_ID_UNDEFINED;
109 #endif /* SYS_NAME_ID */
110
111 #ifdef AFS_MAXVCOUNT_ENV
112         afsd_dynamic_vcaches = dynamic_vcaches;
113     printf("%s dynamically allocated vcaches\n", ( afsd_dynamic_vcaches ? "enabling" : "disabling" ));
114 #else
115         afsd_dynamic_vcaches = 0;
116 #endif
117
118     printf("Starting AFS cache scan...");
119     if (afs_cacheinit_flag)
120         return 0;
121     afs_cacheinit_flag = 1;
122     cacheInfoModTime = 0;
123     maxIHint = ninodes;
124     nihints = 0;
125     usedihint = 0;
126
127     LOCK_INIT(&afs_ftf, "afs_ftf");
128     AFS_RWLOCK_INIT(&afs_xaxs, "afs_xaxs");
129 #ifdef AFS_DISCON_ENV
130     AFS_RWLOCK_INIT(&afs_discon_lock, "afs_discon_lock");
131     AFS_RWLOCK_INIT(&afs_disconDirtyLock, "afs_disconDirtyLock");
132     QInit(&afs_disconDirty);
133     QInit(&afs_disconShadow);
134 #endif
135     osi_dnlc_init();
136
137     /* 
138      * create volume list structure 
139      */
140     if (aVolumes < 50)
141         aVolumes = 50;
142     else if (aVolumes > 32767)
143         aVolumes = 32767;
144
145     tv = (struct volume *)afs_osi_Alloc(aVolumes * sizeof(struct volume));
146     for (i = 0; i < aVolumes - 1; i++)
147         tv[i].next = &tv[i + 1];
148     tv[aVolumes - 1].next = NULL;
149     afs_freeVolList = Initialafs_freeVolList = tv;
150     afs_memvolumes = aVolumes;
151
152     afs_cacheFiles = afiles;
153     afs_cacheStats = astatSize;
154     afs_vcacheInit(astatSize);
155     afs_dcacheInit(afiles, ablocks, aDentries, achunk, aflags);
156 #ifdef AFS_64BIT_CLIENT
157 #ifdef AFS_VM_RDWR_ENV
158     afs_vmMappingEnd = AFS_CHUNKBASE(0x7fffffff);
159 #endif /* AFS_VM_RDWR_ENV */
160 #endif /* AFS_64BIT_CLIENT */
161
162 #if defined(AFS_AIX_ENV) && !defined(AFS_AIX51_ENV)
163     {
164         static void afs_procsize_init(void);
165
166         afs_procsize_init();
167     }
168 #endif
169
170     /* Save the initialization parameters for later pioctl queries. */
171     cm_initParams.cmi_version = CMI_VERSION;
172     cm_initParams.cmi_nChunkFiles = afiles;
173     cm_initParams.cmi_nStatCaches = astatSize;
174     cm_initParams.cmi_nDataCaches = aDentries;
175     cm_initParams.cmi_nVolumeCaches = aVolumes;
176     cm_initParams.cmi_firstChunkSize = AFS_FIRSTCSIZE;
177     cm_initParams.cmi_otherChunkSize = AFS_OTHERCSIZE;
178     cm_initParams.cmi_cacheSize = afs_cacheBlocks;
179     cm_initParams.cmi_setTime = afs_setTime;
180     cm_initParams.cmi_memCache = (aflags & AFSCALL_INIT_MEMCACHE) ? 1 : 0;
181
182     return 0;
183
184 }                               /*afs_CacheInit */
185
186
187 /*
188   * afs_ComputeCacheParams
189   *
190   * Description:
191   *     Set some cache parameters.
192   *
193   * Parameters:
194   *     None.
195   */
196
197 void
198 afs_ComputeCacheParms(void)
199 {
200     register afs_int32 i;
201     afs_int32 afs_maxCacheDirty;
202
203     /*
204      * Don't allow more than 2/3 of the files in the cache to be dirty.
205      */
206     afs_maxCacheDirty = (2 * afs_cacheFiles) / 3;
207
208     /*
209      * Also, don't allow more than 2/3 of the total space get filled
210      * with dirty chunks.  Compute the total number of chunks required
211      * to fill the cache, make sure we don't set out limit above 2/3 of
212      * that. If the cache size is greater than 1G, avoid overflow at
213      * the expense of precision on the chunk size.
214      */
215     if (afs_cacheBlocks & 0xffe00000) {
216         i = afs_cacheBlocks / (AFS_FIRSTCSIZE >> 10);
217     } else {
218         i = (afs_cacheBlocks << 10) / AFS_FIRSTCSIZE;
219     }
220     i = (2 * i) / 3;
221     if (afs_maxCacheDirty > i)
222         afs_maxCacheDirty = i;
223     if (afs_maxCacheDirty < 1)
224         afs_maxCacheDirty = 1;
225     afs_stats_cmperf.cacheMaxDirtyChunks = afs_maxCacheDirty;
226 }                               /*afs_ComputeCacheParms */
227
228
229 /*
230  * afs_LookupInodeByPath
231  *
232  * Look up inode given a file name.
233  * Optionally return the vnode too.
234  * If the vnode is not returned, we rele it.
235  */
236 int
237 afs_LookupInodeByPath(char *filename, afs_ufs_dcache_id_t *inode, struct vnode **fvpp)
238 {
239     afs_int32 code;
240
241 #if defined(AFS_LINUX22_ENV)
242     struct dentry *dp;
243     code = gop_lookupname(filename, AFS_UIOSYS, 0, &dp);
244     if (code)
245         return code;
246     osi_get_fh(dp, inode);
247     dput(dp);
248 #else
249     struct vnode *filevp;
250     code = gop_lookupname(filename, AFS_UIOSYS, 0, &filevp);
251     if (code)
252         return code;
253     *inode = afs_vnodeToInumber(filevp);
254     if (fvpp)
255         *fvpp = filevp;
256     else {
257         AFS_RELE(filevp);
258     }
259 #endif
260
261     return 0;
262 }
263
264 int
265 afs_InitCellInfo(char *afile)
266 {
267     afs_dcache_id_t inode;
268     int code = 0;
269     
270 #ifdef AFS_CACHE_VNODE_PATH
271     inode.ufs = AFS_CACHE_CELLS_INODE;
272 #else
273     code = afs_LookupInodeByPath(afile, &inode.ufs, NULL);
274 #endif
275     return afs_cellname_init(&inode, code);
276 }
277
278 /*
279  * afs_InitVolumeInfo
280  *
281  * Description:
282  *      Set up the volume info storage file.
283  *
284  * Parameters:
285  *      afile : the file to be declared to be the volume info storage
286  *              file for AFS.  It must be already truncated to 0 length.
287  *
288  * Environment:
289  *      This function is called only during initialization.
290  *
291  *      WARNING: Data will be written to this file over time by AFS.
292  */
293
294 int
295 afs_InitVolumeInfo(char *afile)
296 {
297     int code = 0;
298     struct osi_file *tfile;
299
300     AFS_STATCNT(afs_InitVolumeInfo);
301 #if defined(AFS_XBSD_ENV)
302     /*
303      * On Open/Free/NetBSD, we can get into big trouble if we don't hold the volume file
304      * vnode.  SetupVolume holds afs_xvolume lock exclusive.
305      * SetupVolume->GetVolSlot->UFSGetVolSlot->{GetVolCache or WriteVolCache}
306      * ->osi_UFSOpen->VFS_VGET()->ffs_vget->getnewvnode->vgone on some vnode.
307      * If it's AFS, then ->vclean->afs_nbsd_reclaim->FlushVCache->QueueVCB->
308      * GetVolume->FindVolume-> waits on afs_xvolume lock !
309      *
310      * In general, anything that's called with afs_xvolume locked must not
311      * end up calling getnewvnode().  The only cases I've found so far
312      * are things which try to get the volumeInode, and since we keep
313      * it in the cache...
314      */
315     code = afs_LookupInodeByPath(afile, &volumeInode.ufs, &volumeVnode);
316 #elif defined(AFS_CACHE_VNODE_PATH)
317     volumeInode.ufs = AFS_CACHE_VOLUME_INODE;
318 #else
319     code = afs_LookupInodeByPath(afile, &volumeInode.ufs, NULL);
320 #endif
321     if (code)
322         return code;
323     tfile = afs_CFileOpen(&volumeInode);
324     afs_CFileTruncate(tfile, 0);
325     afs_CFileClose(tfile);
326     return 0;
327 }
328
329 /*
330  * afs_InitCacheInfo
331  *
332  * Description:
333  *      Set up the given file as the AFS cache info file.
334  *
335  * Parameters:
336  *      afile : Name of the file assumed to be the cache info file
337  *              for the Cache Manager; it will be used as such.
338  * Side Effects:  This sets afs_fragsize, which is used in the cache usage 
339  *                calculations such as in afs_adjustsize()
340  *
341  * Environment:
342  *      This function is called only during initialization.  The given
343  *      file should NOT be truncated to 0 lenght; its contents descrebe
344  *      what data is really in the cache.
345  *
346  *      WARNING: data will be written to this file over time by AFS.
347  *
348  * NOTE: Starting to use separate osi_InitCacheInfo() routines to clean up
349  * code.
350  *
351  */
352 int
353 afs_InitCacheInfo(register char *afile)
354 {
355     register afs_int32 code;
356     struct osi_stat tstat;
357     register struct osi_file *tfile;
358     struct afs_fheader theader;
359 #ifndef AFS_LINUX22_ENV
360     struct vnode *filevp;
361 #endif
362     int goodFile;
363
364     AFS_STATCNT(afs_InitCacheInfo);
365     if (cacheDiskType != AFS_FCACHE_TYPE_UFS)
366         osi_Panic("afs_InitCacheInfo --- called for non-ufs cache!");
367 #ifdef AFS_LINUX22_ENV
368     code = osi_InitCacheInfo(afile);
369     if (code)
370         return code;
371 #else
372     code = gop_lookupname(afile, AFS_UIOSYS, 0, &filevp);
373     if (code || !filevp)
374         return ENOENT;
375     {
376 #if     defined(AFS_SUN56_ENV)
377         struct statvfs64 st;
378 #elif   defined(AFS_HPUX102_ENV)
379         struct k_statvfs st;
380 #elif   defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV) ||defined(AFS_HPUX100_ENV)
381         struct statvfs st;
382 #elif defined(AFS_DUX40_ENV)
383         struct nstatfs st;
384 #elif defined(AFS_DARWIN80_ENV)
385         struct vfsstatfs st;
386 #else
387         struct statfs st;
388 #endif /* SUN56 */
389
390 #if     defined(AFS_SGI_ENV)
391 #ifdef AFS_SGI65_ENV
392         VFS_STATVFS(filevp->v_vfsp, &st, NULL, code);
393         if (!code)
394 #else
395         if (!VFS_STATFS(filevp->v_vfsp, &st, NULL))
396 #endif /* AFS_SGI65_ENV */
397 #elif   defined(AFS_SUN5_ENV) || defined(AFS_HPUX100_ENV)
398         if (!VFS_STATVFS(filevp->v_vfsp, &st))
399 #elif defined(AFS_OSF_ENV)
400
401         VFS_STATFS(filevp->v_vfsp, code);
402         /* struct copy */
403         st = filevp->v_vfsp->m_stat;
404         if (code == 0)
405 #elif defined(AFS_AIX41_ENV)
406         if (!VFS_STATFS(filevp->v_vfsp, &st, &afs_osi_cred))
407 #elif defined(AFS_LINUX20_ENV)
408         {
409             KERNEL_SPACE_DECL;
410             TO_USER_SPACE();
411
412             VFS_STATFS(filevp->v_vfsp, &st);
413             TO_KERNEL_SPACE();
414         }
415 #elif defined(AFS_DARWIN80_ENV)
416         afs_cacheVfsp = vnode_mount(filevp);
417         if (afs_cacheVfsp && ((st = *(vfs_statfs(afs_cacheVfsp))),1))
418 #elif defined(AFS_DARWIN_ENV)
419         if (!VFS_STATFS(filevp->v_mount, &st, current_proc()))
420 #elif defined(AFS_FBSD50_ENV)
421         if (!VFS_STATFS(filevp->v_mount, &st, curthread))
422 #elif defined(AFS_XBSD_ENV)
423         if (!VFS_STATFS(filevp->v_mount, &st, curproc))
424 #else
425         if (!VFS_STATFS(filevp->v_vfsp, &st))
426 #endif /* SGI... */
427 #if     defined(AFS_SUN5_ENV) || defined(AFS_HPUX100_ENV)
428             afs_fsfragsize = st.f_frsize - 1;
429 #else
430             afs_fsfragsize = st.f_bsize - 1;
431 #endif
432     }
433 #if defined(AFS_LINUX20_ENV)
434     cacheInode.ufs = filevp->i_ino;
435     afs_cacheSBp = filevp->i_sb;
436 #elif defined(AFS_XBSD_ENV)
437     cacheInode.ufs = VTOI(filevp)->i_number;
438     cacheDev.mp = filevp->v_mount;
439     cacheDev.held_vnode = filevp;
440     vref(filevp);               /* Make sure mount point stays busy. XXX */
441 #if !defined(AFS_OBSD_ENV)
442     afs_cacheVfsp = filevp->v_vfsp;
443 #endif
444 #else
445 #if defined(AFS_SGI62_ENV) || defined(AFS_HAVE_VXFS) || defined(AFS_DARWIN_ENV)
446     afs_InitDualFSCacheOps(filevp);
447 #endif
448 #ifndef AFS_CACHE_VNODE_PATH
449 #ifndef AFS_DARWIN80_ENV
450     afs_cacheVfsp = filevp->v_vfsp;
451 #endif
452     cacheInode.ufs = afs_vnodeToInumber(filevp);
453 #else
454     cacheInode.ufs = AFS_CACHE_ITEMS_INODE;
455 #endif
456     cacheDev.dev = afs_vnodeToDev(filevp);
457 #endif /* AFS_LINUX20_ENV */
458     AFS_RELE(filevp);
459 #endif /* AFS_LINUX22_ENV */
460     tfile = osi_UFSOpen(&cacheInode);
461     afs_osi_Stat(tfile, &tstat);
462     cacheInfoModTime = tstat.mtime;
463     code = afs_osi_Read(tfile, -1, &theader, sizeof(theader));
464     goodFile = 0;
465     if (code == sizeof(theader)) {
466         /* read the header correctly */
467         if (theader.magic == AFS_FHMAGIC
468             && theader.firstCSize == AFS_FIRSTCSIZE
469             && theader.otherCSize == AFS_OTHERCSIZE
470             && theader.version == AFS_CI_VERSION)
471             goodFile = 1;
472     }
473     if (!goodFile) {
474         /* write out a good file label */
475         theader.magic = AFS_FHMAGIC;
476         theader.firstCSize = AFS_FIRSTCSIZE;
477         theader.otherCSize = AFS_OTHERCSIZE;
478         theader.version = AFS_CI_VERSION;
479         afs_osi_Write(tfile, 0, &theader, sizeof(theader));
480         /*
481          * Truncate the rest of the file, since it may be arbitrarily
482          * wrong
483          */
484         osi_UFSTruncate(tfile, sizeof(struct afs_fheader));
485     }
486     /* Leave the file open now, since reopening the file makes public pool
487      * vnode systems (like OSF/Alpha) much harder to handle, That's because
488      * they can do a vnode recycle operation any time we open a file, which
489      * we'd do on any afs_GetDSlot call, etc.
490      */
491     afs_cacheInodep = (struct osi_file *)tfile;
492     return 0;
493 }
494
495 int afs_resourceinit_flag = 0;
496 int
497 afs_ResourceInit(int preallocs)
498 {
499     register afs_int32 i;
500     static struct rx_securityClass *secobj;
501
502     AFS_STATCNT(afs_ResourceInit);
503     AFS_RWLOCK_INIT(&afs_xuser, "afs_xuser");
504     AFS_RWLOCK_INIT(&afs_xvolume, "afs_xvolume");
505     AFS_RWLOCK_INIT(&afs_xserver, "afs_xserver");
506     AFS_RWLOCK_INIT(&afs_xsrvAddr, "afs_xsrvAddr");
507     AFS_RWLOCK_INIT(&afs_icl_lock, "afs_icl_lock");
508     AFS_RWLOCK_INIT(&afs_xinterface, "afs_xinterface");
509     LOCK_INIT(&afs_puttofileLock, "afs_puttofileLock");
510 #ifndef AFS_FBSD_ENV
511     LOCK_INIT(&osi_fsplock, "osi_fsplock");
512     LOCK_INIT(&osi_flplock, "osi_flplock");
513 #endif
514     AFS_RWLOCK_INIT(&afs_xconn, "afs_xconn");
515
516     afs_CellInit();
517     afs_InitCBQueue(1);         /* initialize callback queues */
518
519     if (afs_resourceinit_flag == 0) {
520         afs_resourceinit_flag = 1;
521         for (i = 0; i < NFENTRIES; i++)
522             fvTable[i] = 0;
523         for (i = 0; i < MAXNUMSYSNAMES; i++)
524             afs_sysnamelist[i] = afs_osi_Alloc(MAXSYSNAME);
525         afs_sysname = afs_sysnamelist[0];
526         strcpy(afs_sysname, SYS_NAME);
527         afs_sysnamecount = 1;
528         afs_sysnamegen++;
529     }
530
531     secobj = rxnull_NewServerSecurityObject();
532     afs_server =
533         rx_NewService(0, 1, "afs", &secobj, 1, RXAFSCB_ExecuteRequest);
534     afs_server =
535         rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats", &secobj, 1,
536                       RXSTATS_ExecuteRequest);
537     rx_StartServer(0);
538     afs_osi_Wakeup(&afs_server);        /* wakeup anyone waiting for it */
539     return 0;
540
541 }                               /*afs_ResourceInit */
542
543 #if defined(AFS_AIX_ENV) && !defined(AFS_AIX51_ENV)
544
545 /*
546  * AIX dynamic sizeof(struct proc)
547  *
548  * AIX keeps its proc structures in an array.  The size of struct proc
549  * varies from release to release of the OS.  In order to maintain
550  * binary compatibility with releases later than what we build on, we
551  * need to determine the size of struct proc at run time.
552  *
553  * We need this in order to walk the proc[] array to do PAG garbage
554  * collection.
555  *
556  * We also need this in order to support 'klog -setpag', since the
557  * kernel code needs to locate the proc structure for the parent process
558  * of the current process.
559  *
560  * To compute sizeof(struct proc), we need the addresses of two proc
561  * structures and their corresponding pids.  Given the pids, we can use
562  * the PROCMASK() macro to compute their corresponding indices in the
563  * proc[] array.  By dividing the distance between the pointers by the
564  * number of proc structures, we can compute the size of a single proc
565  * structure.
566  *
567  * We know the base address of the proc table from v.vb_proc:
568  *
569  * <sys/sysconfig.h> declares sysconfig() and SYS_GETPARMS;
570  * (we don't use this, but I note it here for completeness)
571  *
572  * <sys/var.h> declares struct var and external variable v;
573  *
574  * v.v_proc             NPROC
575  * v.vb_proc            &proc[0]
576  * v.ve_proc            &proc[x] (current highwater mark for
577  *                                proc[] array usage)
578  *
579  * The first proc pointer is v.vb_proc, which is the proc structure for
580  * process 0.  Process 0's pointer to its first child is the other proc
581  * pointer.  If process 0 has no children, we simply give up and do not
582  * support features that require knowing the size of struct proc.
583  */
584
585 static void
586 afs_procsize_init(void)
587 {
588     struct proc *p0;            /* pointer to process 0 */
589     struct proc *pN;            /* pointer to process 0's first child */
590 #ifdef AFS_AIX51_ENV
591     struct pvproc *pV;
592 #endif
593     int pN_index;
594     ptrdiff_t pN_offset;
595     int procsize;
596
597     p0 = (struct proc *)v.vb_proc;
598     if (!p0) {
599         afs_gcpags = AFS_GCPAGS_EPROC0;
600         return;
601     }
602 #ifdef AFS_AIX51_ENV
603     pN = (struct proc *)0;
604     pV = p0->p_pvprocp;
605     if (pV) {
606         pV = pV->pv_child;
607         if (pV)
608             pN = pV->pv_procp;
609     }
610 #else
611     pN = p0->p_child;
612 #endif
613     if (!pN) {
614         afs_gcpags = AFS_GCPAGS_EPROCN;
615         return;
616     }
617
618     if (pN->p_pid == p0->p_pid) {
619         afs_gcpags = AFS_GCPAGS_EEQPID;
620         return;
621     }
622
623     pN_index = PROCMASK(pN->p_pid);
624     pN_offset = ((char *)pN - (char *)p0);
625     procsize = pN_offset / pN_index;
626
627     /*
628      * check that the computation was exact
629      */
630
631     if (pN_index * procsize != pN_offset) {
632         afs_gcpags = AFS_GCPAGS_EINEXACT;
633         return;
634     }
635
636     /*
637      * check that the proc table size is a multiple of procsize.
638      */
639
640     if ((((char *)v.ve_proc - (char *)v.vb_proc) % procsize) != 0) {
641         afs_gcpags = AFS_GCPAGS_EPROCEND;
642         return;
643     }
644
645     /* okay, use it */
646
647     afs_gcpags_procsize = procsize;
648 }
649 #endif
650
651 /*
652  * shutdown_cache
653  *
654  * Description:
655  *      Clean up and shut down the AFS cache.
656  *
657  * Parameters:
658  *      None.
659  *
660  * Environment:
661  *      Nothing interesting.
662  */
663 void
664 shutdown_cache(void)
665 {
666     AFS_STATCNT(shutdown_cache);
667     afs_WriteThroughDSlots();
668     if (afs_cold_shutdown) {
669         afs_cacheinit_flag = 0;
670         shutdown_dcache();
671         shutdown_vcache();
672
673         afs_cacheStats = 0;
674         afs_cacheFiles = afs_cacheBlocks = 0;
675         pag_epoch = maxIHint = nihints = usedihint = 0;
676         pagCounter = 0;
677 #if defined(AFS_XBSD_ENV)
678         vrele(volumeVnode);     /* let it go, finally. */
679         volumeVnode = NULL;
680         if (cacheDev.held_vnode) {
681             vrele(cacheDev.held_vnode);
682             cacheDev.held_vnode = NULL;
683         }
684 #endif
685         afs_reset_inode(&cacheInode);
686         afs_reset_inode(&volumeInode);
687         cacheInfoModTime = 0;
688
689         afs_fsfragsize = 1023;
690         memset((char *)&afs_stats_cmperf, 0, sizeof(afs_stats_cmperf));
691         memset((char *)&cacheDev, 0, sizeof(struct osi_dev));
692         osi_dnlc_shutdown();
693     }
694 }                               /*shutdown_cache */
695
696
697 void
698 shutdown_vnodeops(void)
699 {
700 #if !defined(AFS_SGI_ENV) && !defined(AFS_SUN5_ENV)
701     struct buf *afs_bread_freebp = 0;
702 #endif
703
704
705     AFS_STATCNT(shutdown_vnodeops);
706     if (afs_cold_shutdown) {
707 #ifndef AFS_SUN5_ENV            /* XXX */
708         lastWarnTime = 0;
709 #endif
710 #ifndef AFS_LINUX20_ENV
711         afs_rd_stash_i = 0;
712 #endif
713 #if !defined(AFS_SGI_ENV) && !defined(AFS_SUN5_ENV)
714         afs_bread_freebp = 0;
715 #endif
716         shutdown_mariner();
717     }
718 }
719
720
721 void
722 shutdown_AFS(void)
723 {
724     int i;
725     register struct srvAddr *sa;
726
727     AFS_STATCNT(shutdown_AFS);
728     if (afs_cold_shutdown) {
729         afs_resourceinit_flag = 0;
730         /* 
731          * Free Volumes table allocations 
732          */
733         {
734             struct volume *tv;
735             for (i = 0; i < NVOLS; i++) {
736                 for (tv = afs_volumes[i]; tv; tv = tv->next) {
737                     if (tv->name) {
738                         afs_osi_Free(tv->name, strlen(tv->name) + 1);
739                         tv->name = 0;
740                     }
741                 }
742                 afs_volumes[i] = 0;
743             }
744         }
745
746         /* 
747          * Free FreeVolList allocations 
748          */
749         afs_osi_Free(Initialafs_freeVolList,
750                      afs_memvolumes * sizeof(struct volume));
751         afs_freeVolList = Initialafs_freeVolList = 0;
752
753         /* XXX HACK fort MEM systems XXX 
754          *
755          * For -memcache cache managers when we run out of free in memory volumes
756          * we simply malloc more; we won't be able to free those additional volumes.
757          */
758
759
760
761         /* 
762          * Free Users table allocation 
763          */
764         {
765             struct unixuser *tu, *ntu;
766             for (i = 0; i < NUSERS; i++) {
767                 for (tu = afs_users[i]; tu; tu = ntu) {
768                     ntu = tu->next;
769                     if (tu->stp)
770                         afs_osi_Free(tu->stp, tu->stLen);
771                     if (tu->exporter)
772                         EXP_RELE(tu->exporter);
773                     afs_osi_Free(tu, sizeof(struct unixuser));
774                 }
775                 afs_users[i] = 0;
776             }
777         }
778
779         /* 
780          * Free Servers table allocation 
781          */
782         {
783             struct server *ts, *nts;
784             struct afs_conn *tc, *ntc;
785             register struct afs_cbr *tcbrp, *tbrp;
786
787             for (i = 0; i < NSERVERS; i++) {
788                 for (ts = afs_servers[i]; ts; ts = nts) {
789                     nts = ts->next;
790                     for (sa = ts->addr; sa; sa = sa->next_sa) {
791                         if (sa->conns) {
792                             /*
793                              * Free all server's connection structs
794                              */
795                             tc = sa->conns;
796                             while (tc) {
797                                 ntc = tc->next;
798                                 AFS_GUNLOCK();
799                                 rx_DestroyConnection(tc->id);
800                                 AFS_GLOCK();
801                                 afs_osi_Free(tc, sizeof(struct afs_conn));
802                                 tc = ntc;
803                             }
804                         }
805                     }
806                     for (tcbrp = ts->cbrs; tcbrp; tcbrp = tbrp) {
807                         /*
808                          * Free all server's callback structs
809                          */
810                         tbrp = tcbrp->next;
811                         afs_FreeCBR(tcbrp);
812                     }
813                     afs_osi_Free(ts, sizeof(struct server));
814                 }
815                 afs_servers[i] = 0;
816             }
817         }
818         for (i = 0; i < NFENTRIES; i++)
819             fvTable[i] = 0;
820         /* Reinitialize local globals to defaults */
821         for (i = 0; i < MAXNUMSYSNAMES; i++)
822             afs_osi_Free(afs_sysnamelist[i], MAXSYSNAME);
823         afs_sysname = 0;
824         afs_sysnamecount = 0;
825         afs_marinerHost = 0;
826         afs_setTimeHost = NULL;
827         afs_volCounter = 1;
828         afs_waitForever = afs_waitForeverCount = 0;
829         afs_FVIndex = -1;
830         afs_server = (struct rx_service *)0;
831         AFS_RWLOCK_INIT(&afs_xconn, "afs_xconn");
832         memset((char *)&afs_rootFid, 0, sizeof(struct VenusFid));
833         AFS_RWLOCK_INIT(&afs_xuser, "afs_xuser");
834         AFS_RWLOCK_INIT(&afs_xvolume, "afs_xvolume");
835         AFS_RWLOCK_INIT(&afs_xserver, "afs_xserver");
836         LOCK_INIT(&afs_puttofileLock, "afs_puttofileLock");
837
838         shutdown_cell();
839         shutdown_server();
840     }
841 }