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