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