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