Merge 1.8.0~pre4 packaging into master
[pkg-k5-afs_openafs.git] / src / afs / afs_init.c
blobacc7bef66d4411b4b42737d7c93394c6b32851e7
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
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 */
11 * afs_init.c - initialize AFS client.
13 * Implements:
16 #include <afsconfig.h>
17 #include "afs/param.h"
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
29 #define FSINT_COMMON_XG
30 #include "afs/afscbint.h"
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
59 /* This is the kernel side of the dynamic vcache setting */
60 int afsd_dynamic_vcaches = 0; /* Enable dynamic-vcache support */
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.
70 * afs_CacheInit
72 * Description:
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?
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.
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)
101 afs_int32 i;
102 struct volume *tv;
104 AFS_STATCNT(afs_CacheInit);
106 * Jot down the epoch time, namely when this incarnation of the
107 * Cache Manager started.
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 */
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
122 afs_warn("Starting AFS cache scan...");
123 if (afs_cacheinit_flag)
124 return 0;
125 afs_cacheinit_flag = 1;
126 cacheInfoModTime = 0;
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();
137 * create volume list structure
139 if (aVolumes < 50)
140 aVolumes = 50;
141 else if (aVolumes > 32767)
142 aVolumes = 32767;
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;
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)
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.
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 */
172 #if defined(AFS_AIX_ENV) && !defined(AFS_AIX51_ENV)
174 static void afs_procsize_init(void);
176 afs_procsize_init();
178 #endif
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;
192 return 0;
194 } /*afs_CacheInit */
198 * afs_ComputeCacheParams
200 * Description:
201 * Set some cache parameters.
203 * Parameters:
204 * None.
207 void
208 afs_ComputeCacheParms(void)
210 afs_int32 i;
211 afs_int32 afs_maxCacheDirty;
214 * Don't allow more than 2/3 of the files in the cache to be dirty.
216 afs_maxCacheDirty = (2 * afs_cacheFiles) / 3;
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.
225 if (afs_cacheBlocks & 0xffe00000) {
226 i = afs_cacheBlocks / (AFS_FIRSTCSIZE >> 10);
227 } else {
228 i = (afs_cacheBlocks << 10) / AFS_FIRSTCSIZE;
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 */
240 * afs_LookupInodeByPath
242 * Look up inode given a file name.
243 * Optionally return the vnode too.
244 * If the vnode is not returned, we rele it.
247 afs_LookupInodeByPath(char *filename, afs_ufs_dcache_id_t *inode,
248 struct vnode **fvpp)
250 afs_int32 code;
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);
274 #endif
276 return 0;
280 afs_InitCellInfo(char *afile)
282 afs_dcache_id_t inode;
283 int code = 0;
285 code = afs_LookupInodeByPath(afile, &inode.ufs, NULL);
286 return afs_cellname_init(&inode, code);
290 * afs_InitVolumeInfo
292 * Description:
293 * Set up the volume info storage file.
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.
299 * Environment:
300 * This function is called only during initialization.
302 * WARNING: Data will be written to this file over time by AFS.
306 afs_InitVolumeInfo(char *afile)
308 int code = 0;
309 struct osi_file *tfile;
311 AFS_STATCNT(afs_InitVolumeInfo);
312 #if defined(AFS_XBSD_ENV)
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 !
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...
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;
338 void
339 afs_InitFHeader(struct afs_fheader *aheader)
341 memset(aheader, 0, sizeof(*aheader));
342 aheader->magic = AFS_FHMAGIC;
343 aheader->version = AFS_CI_VERSION;
344 aheader->dataSize = sizeof(struct fcache);
345 aheader->firstCSize = AFS_FIRSTCSIZE;
346 aheader->otherCSize = AFS_OTHERCSIZE;
350 * afs_InitCacheInfo
352 * Description:
353 * Set up the given file as the AFS cache info file.
355 * Parameters:
356 * afile : Name of the file assumed to be the cache info file
357 * for the Cache Manager; it will be used as such.
358 * Side Effects: This sets afs_fragsize, which is used in the cache usage
359 * calculations such as in afs_adjustsize()
361 * Environment:
362 * This function is called only during initialization. The given
363 * file should NOT be truncated to 0 length; its contents describe
364 * what data is really in the cache.
366 * WARNING: data will be written to this file over time by AFS.
368 * NOTE: Starting to use separate osi_InitCacheInfo() routines to clean up
369 * code.
373 afs_InitCacheInfo(char *afile)
375 afs_int32 code;
376 struct osi_stat tstat;
377 struct osi_file *tfile;
378 struct afs_fheader theader;
379 #ifndef AFS_LINUX22_ENV
380 struct vnode *filevp;
381 #endif
382 int goodFile;
384 AFS_STATCNT(afs_InitCacheInfo);
385 if (cacheDiskType != AFS_FCACHE_TYPE_UFS)
386 osi_Panic("afs_InitCacheInfo --- called for non-ufs cache!");
387 #ifdef AFS_LINUX22_ENV
388 code = osi_InitCacheInfo(afile);
389 if (code)
390 return code;
391 #else
392 code = gop_lookupname(afile, AFS_UIOSYS, 0, &filevp);
393 if (code || !filevp)
394 return ENOENT;
396 #if defined(AFS_SUN5_ENV)
397 struct statvfs64 st;
398 #elif defined(AFS_HPUX102_ENV)
399 struct k_statvfs st;
400 #elif defined(AFS_SGI_ENV) || defined(AFS_HPUX100_ENV) || defined(AFS_NBSD40_ENV)
401 struct statvfs st;
402 #elif defined(AFS_DARWIN80_ENV)
403 struct vfsstatfs st;
404 #else
405 struct statfs st;
406 #endif /* SUN5 */
408 #if defined(AFS_SGI_ENV)
409 #ifdef AFS_SGI65_ENV
410 VFS_STATVFS(filevp->v_vfsp, &st, NULL, code);
411 if (!code)
412 #else
413 if (!VFS_STATFS(filevp->v_vfsp, &st, NULL))
414 #endif /* AFS_SGI65_ENV */
415 #elif defined(AFS_SUN5_ENV) || defined(AFS_HPUX100_ENV)
416 if (!VFS_STATVFS(filevp->v_vfsp, &st))
417 #elif defined(AFS_AIX41_ENV)
418 if (!VFS_STATFS(filevp->v_vfsp, &st, &afs_osi_cred))
419 #elif defined(AFS_LINUX20_ENV)
421 KERNEL_SPACE_DECL;
422 TO_USER_SPACE();
424 VFS_STATFS(filevp->v_vfsp, &st);
425 TO_KERNEL_SPACE();
427 #elif defined(AFS_DARWIN80_ENV)
428 afs_cacheVfsp = vnode_mount(filevp);
429 if (afs_cacheVfsp && ((st = *(vfs_statfs(afs_cacheVfsp))),1))
430 #elif defined(AFS_FBSD80_ENV)
431 if (!VFS_STATFS(filevp->v_mount, &st))
432 #elif defined(AFS_NBSD50_ENV)
433 if (!VFS_STATVFS(filevp->v_vfsp, &st))
434 #elif defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
435 if (!VFS_STATFS(filevp->v_mount, &st, osi_curproc()))
436 #else
437 if (!VFS_STATFS(filevp->v_vfsp, &st))
438 #endif /* SGI... */
439 #if defined(AFS_SUN5_ENV) || defined(AFS_HPUX100_ENV)
440 if (strcmp("zfs", st.f_basetype) == 0) {
442 * Files in ZFS can take up to around the next
443 * recordsize boundary after being truncated. recordsize
444 * is reported in statvfs by f_bsize, so use that
445 * instead.
447 afs_fsfragsize = st.f_bsize - 1;
448 } else {
449 afs_fsfragsize = st.f_frsize - 1;
451 #else
452 afs_fsfragsize = st.f_bsize - 1;
453 #endif
455 #if defined(AFS_LINUX20_ENV)
456 cacheInode.ufs = filevp->i_ino;
457 afs_cacheSBp = filevp->i_sb;
458 #elif defined(AFS_XBSD_ENV)
459 cacheInode.ufs = VTOI(filevp)->i_number;
460 cacheDev.mp = filevp->v_mount;
461 cacheDev.held_vnode = filevp;
462 vref(filevp); /* Make sure mount point stays busy. XXX */
463 #if !defined(AFS_OBSD_ENV)
464 afs_cacheVfsp = filevp->v_vfsp;
465 #endif
466 #else
467 #if defined(AFS_HAVE_VXFS) || defined(AFS_DARWIN_ENV)
468 afs_InitDualFSCacheOps(filevp);
469 #endif
470 #ifndef AFS_CACHE_VNODE_PATH
471 #ifndef AFS_DARWIN80_ENV
472 afs_cacheVfsp = filevp->v_vfsp;
473 #endif
474 cacheInode.ufs = afs_vnodeToInumber(filevp);
475 #else
476 afs_LookupInodeByPath(afile, &cacheInode.ufs, NULL);
477 #endif
478 cacheDev.dev = afs_vnodeToDev(filevp);
479 #endif /* AFS_LINUX20_ENV */
480 AFS_RELE(filevp);
481 #endif /* AFS_LINUX22_ENV */
482 if (afs_fsfragsize < AFS_MIN_FRAGSIZE) {
483 afs_fsfragsize = AFS_MIN_FRAGSIZE;
485 tfile = osi_UFSOpen(&cacheInode);
486 if (!tfile)
487 return ENOENT;
489 afs_osi_Stat(tfile, &tstat);
490 cacheInfoModTime = tstat.mtime;
491 code = afs_osi_Read(tfile, -1, &theader, sizeof(theader));
492 goodFile = 0;
493 if (code == sizeof(theader)) {
494 /* read the header correctly */
495 if (theader.magic == AFS_FHMAGIC
496 && theader.firstCSize == AFS_FIRSTCSIZE
497 && theader.otherCSize == AFS_OTHERCSIZE
498 && theader.dataSize == sizeof(struct fcache)
499 && theader.version == AFS_CI_VERSION)
500 goodFile = 1;
502 if (!goodFile) {
503 /* write out a good file label */
504 afs_InitFHeader(&theader);
505 afs_osi_Write(tfile, 0, &theader, sizeof(theader));
507 * Truncate the rest of the file, since it may be arbitrarily
508 * wrong
510 osi_UFSTruncate(tfile, sizeof(struct afs_fheader));
512 /* Leave the file open now, since reopening the file makes public pool
513 * vnode systems (like OSF/Alpha) much harder to handle, That's because
514 * they can do a vnode recycle operation any time we open a file, which
515 * we'd do on any afs_GetDSlot call, etc.
517 afs_cacheInodep = (struct osi_file *)tfile;
518 return 0;
521 int afs_resourceinit_flag = 0;
523 afs_ResourceInit(int preallocs)
525 afs_int32 i;
526 static struct rx_securityClass *secobj;
528 AFS_STATCNT(afs_ResourceInit);
529 AFS_RWLOCK_INIT(&afs_xuser, "afs_xuser");
530 AFS_RWLOCK_INIT(&afs_xvolume, "afs_xvolume");
531 AFS_RWLOCK_INIT(&afs_xserver, "afs_xserver");
532 AFS_RWLOCK_INIT(&afs_xsrvAddr, "afs_xsrvAddr");
533 AFS_RWLOCK_INIT(&afs_icl_lock, "afs_icl_lock");
534 AFS_RWLOCK_INIT(&afs_xinterface, "afs_xinterface");
535 LOCK_INIT(&afs_puttofileLock, "afs_puttofileLock");
536 #ifndef AFS_PRIVATE_OSI_ALLOCSPACES
537 LOCK_INIT(&osi_fsplock, "osi_fsplock");
538 LOCK_INIT(&osi_flplock, "osi_flplock");
539 #endif
540 AFS_RWLOCK_INIT(&afs_xconn, "afs_xconn");
542 afs_CellInit();
543 afs_InitCBQueue(1); /* initialize callback queues */
545 if (afs_resourceinit_flag == 0) {
546 afs_resourceinit_flag = 1;
547 for (i = 0; i < NFENTRIES; i++)
548 fvTable[i] = 0;
549 for (i = 0; i < MAXNUMSYSNAMES; i++) {
550 afs_sysnamelist[i] = afs_osi_Alloc(MAXSYSNAME);
551 osi_Assert(afs_sysnamelist[i] != NULL);
553 afs_sysname = afs_sysnamelist[0];
554 strcpy(afs_sysname, SYS_NAME);
555 afs_sysnamecount = 1;
556 afs_sysnamegen++;
559 secobj = rxnull_NewServerSecurityObject();
560 afs_server =
561 rx_NewService(0, 1, "afs", &secobj, 1, RXAFSCB_ExecuteRequest);
562 afs_server =
563 rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats", &secobj, 1,
564 RXSTATS_ExecuteRequest);
565 rx_StartServer(0);
566 afs_osi_Wakeup(&afs_server); /* wakeup anyone waiting for it */
567 return 0;
569 } /*afs_ResourceInit */
571 #if defined(AFS_AIX_ENV) && !defined(AFS_AIX51_ENV)
574 * AIX dynamic sizeof(struct proc)
576 * AIX keeps its proc structures in an array. The size of struct proc
577 * varies from release to release of the OS. In order to maintain
578 * binary compatibility with releases later than what we build on, we
579 * need to determine the size of struct proc at run time.
581 * We need this in order to walk the proc[] array to do PAG garbage
582 * collection.
584 * We also need this in order to support 'klog -setpag', since the
585 * kernel code needs to locate the proc structure for the parent process
586 * of the current process.
588 * To compute sizeof(struct proc), we need the addresses of two proc
589 * structures and their corresponding pids. Given the pids, we can use
590 * the PROCMASK() macro to compute their corresponding indices in the
591 * proc[] array. By dividing the distance between the pointers by the
592 * number of proc structures, we can compute the size of a single proc
593 * structure.
595 * We know the base address of the proc table from v.vb_proc:
597 * <sys/sysconfig.h> declares sysconfig() and SYS_GETPARMS;
598 * (we don't use this, but I note it here for completeness)
600 * <sys/var.h> declares struct var and external variable v;
602 * v.v_proc NPROC
603 * v.vb_proc &proc[0]
604 * v.ve_proc &proc[x] (current highwater mark for
605 * proc[] array usage)
607 * The first proc pointer is v.vb_proc, which is the proc structure for
608 * process 0. Process 0's pointer to its first child is the other proc
609 * pointer. If process 0 has no children, we simply give up and do not
610 * support features that require knowing the size of struct proc.
613 static void
614 afs_procsize_init(void)
616 afs_proc_t *p0; /* pointer to process 0 */
617 afs_proc_t *pN; /* pointer to process 0's first child */
618 #ifdef AFS_AIX51_ENV
619 struct pvproc *pV;
620 #endif
621 int pN_index;
622 ptrdiff_t pN_offset;
623 int procsize;
625 p0 = (afs_proc_t *)v.vb_proc;
626 if (!p0) {
627 afs_gcpags = AFS_GCPAGS_EPROC0;
628 return;
630 #ifdef AFS_AIX51_ENV
631 pN = NULL;
632 pV = p0->p_pvprocp;
633 if (pV) {
634 pV = pV->pv_child;
635 if (pV)
636 pN = pV->pv_procp;
638 #else
639 pN = p0->p_child;
640 #endif
641 if (!pN) {
642 afs_gcpags = AFS_GCPAGS_EPROCN;
643 return;
646 if (pN->p_pid == p0->p_pid) {
647 afs_gcpags = AFS_GCPAGS_EEQPID;
648 return;
651 pN_index = PROCMASK(pN->p_pid);
652 pN_offset = ((char *)pN - (char *)p0);
653 procsize = pN_offset / pN_index;
656 * check that the computation was exact
659 if (pN_index * procsize != pN_offset) {
660 afs_gcpags = AFS_GCPAGS_EINEXACT;
661 return;
665 * check that the proc table size is a multiple of procsize.
668 if ((((char *)v.ve_proc - (char *)v.vb_proc) % procsize) != 0) {
669 afs_gcpags = AFS_GCPAGS_EPROCEND;
670 return;
673 /* okay, use it */
675 afs_gcpags_procsize = procsize;
677 #endif
680 * shutdown_cache
682 * Description:
683 * Clean up and shut down the AFS cache.
685 * Parameters:
686 * None.
688 * Environment:
689 * Nothing interesting.
691 void
692 shutdown_cache(void)
694 AFS_STATCNT(shutdown_cache);
695 afs_WriteThroughDSlots();
696 if (1/*afs_cold_shutdown*/) {
697 afs_cacheinit_flag = 0;
698 shutdown_dcache();
699 shutdown_vcache();
701 afs_cacheStats = 0;
702 afs_cacheFiles = afs_cacheBlocks = 0;
703 pag_epoch = 0;
704 pagCounter = 0;
705 #if defined(AFS_XBSD_ENV)
706 /* memcache never sets this, so don't panic on shutdown */
707 if (volumeVnode != NULL) {
708 vrele(volumeVnode); /* let it go, finally. */
709 volumeVnode = NULL;
711 if (cacheDev.held_vnode) {
712 vrele(cacheDev.held_vnode);
713 cacheDev.held_vnode = NULL;
715 #endif
716 #ifdef AFS_CACHE_VNODE_PATH
717 if (cacheDiskType != AFS_FCACHE_TYPE_MEM) {
718 afs_osi_FreeStr(cacheInode.ufs);
719 afs_osi_FreeStr(volumeInode.ufs);
721 #endif
722 afs_reset_inode(&cacheInode);
723 afs_reset_inode(&volumeInode);
724 cacheInfoModTime = 0;
726 afs_fsfragsize = 1023;
727 memset(&cacheDev, 0, sizeof(struct osi_dev));
728 osi_dnlc_shutdown();
730 #if defined(AFS_LINUX26_ENV) && defined(STRUCT_TASK_STRUCT_HAS_CRED)
731 put_cred(cache_creds);
732 #endif
733 } /*shutdown_cache */
736 void
737 shutdown_vnodeops(void)
739 AFS_STATCNT(shutdown_vnodeops);
740 if (afs_cold_shutdown) {
741 #ifndef AFS_LINUX20_ENV
742 afs_rd_stash_i = 0;
743 #endif
744 shutdown_mariner();
749 static void
750 shutdown_server(void)
752 int i;
753 struct afs_cbr *tcbrp, *tbrp;
754 struct srvAddr *sa;
756 for (i = 0; i < NSERVERS; i++) {
757 struct server *ts, *next;
759 ts = afs_servers[i];
760 while(ts) {
761 next = ts->next;
762 for (sa = ts->addr; sa; sa = sa->next_sa) {
763 if (sa->conns) {
764 /* afs_ReleaseConns has been updated to
765 * defer rx_DestroyConnection to Rx
766 * shutdown, as most recently was done
767 * here */
768 afs_ReleaseConns(sa->conns);
771 for (tcbrp = ts->cbrs; tcbrp; tcbrp = tbrp) {
773 * Free all server's callback structs
775 tbrp = tcbrp->next;
776 afs_FreeCBR(tcbrp);
778 afs_osi_Free(ts, sizeof(struct server));
779 ts = next;
783 for (i = 0; i < NSERVERS; i++) {
784 struct srvAddr *sa, *next;
786 sa = afs_srvAddrs[i];
787 while(sa) {
788 next = sa->next_bkt;
789 afs_osi_Free(sa, sizeof(struct srvAddr));
790 sa = next;
795 static void
796 shutdown_volume(void)
798 struct volume *tv;
799 int i;
801 for (i = 0; i < NVOLS; i++) {
802 for (tv = afs_volumes[i]; tv; tv = tv->next) {
803 if (tv->name) {
804 afs_osi_Free(tv->name, strlen(tv->name) + 1);
805 tv->name = 0;
808 afs_volumes[i] = 0;
812 void
813 shutdown_AFS(void)
815 int i;
817 AFS_STATCNT(shutdown_AFS);
818 if (afs_cold_shutdown) {
819 afs_resourceinit_flag = 0;
821 shutdown_volume();
824 * Free FreeVolList allocations
826 afs_osi_Free(Initialafs_freeVolList,
827 afs_memvolumes * sizeof(struct volume));
828 afs_freeVolList = Initialafs_freeVolList = 0;
830 /* XXX HACK for MEM systems XXX
832 * For -memcache cache managers when we run out of free in memory volumes
833 * we simply malloc more; we won't be able to free those additional volumes.
837 * Free Users table allocation
840 struct unixuser *tu, *ntu;
841 for (i = 0; i < NUSERS; i++) {
842 for (tu = afs_users[i]; tu; tu = ntu) {
843 ntu = tu->next;
844 if (tu->tokens)
845 afs_FreeTokens(&tu->tokens);
846 if (tu->exporter)
847 EXP_RELE(tu->exporter);
848 afs_osi_Free(tu, sizeof(struct unixuser));
850 afs_users[i] = 0;
854 for (i = 0; i < NFENTRIES; i++)
855 fvTable[i] = 0;
856 /* Reinitialize local globals to defaults */
857 for (i = 0; i < MAXNUMSYSNAMES; i++)
858 afs_osi_Free(afs_sysnamelist[i], MAXSYSNAME);
859 afs_sysname = 0;
860 afs_sysnamecount = 0;
861 afs_marinerHost = 0;
862 afs_volCounter = 1;
863 afs_waitForever = afs_waitForeverCount = 0;
864 afs_FVIndex = -1;
865 afs_server = (struct rx_service *)0;
866 AFS_RWLOCK_INIT(&afs_xconn, "afs_xconn");
867 memset(&afs_rootFid, 0, sizeof(struct VenusFid));
868 AFS_RWLOCK_INIT(&afs_xuser, "afs_xuser");
869 AFS_RWLOCK_INIT(&afs_xvolume, "afs_xvolume");
870 AFS_RWLOCK_INIT(&afs_xserver, "afs_xserver");
871 LOCK_INIT(&afs_puttofileLock, "afs_puttofileLock");
873 shutdown_cell();
874 shutdown_server();