dafs-updates-20080612
[openafs.git] / src / vol / volume.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  * Portions Copyright (c) 2005-2008 Sine Nomine Associates
10  */
11
12 /* 1/1/89: NB:  this stuff is all going to be replaced.  Don't take it too seriously */
13 /*
14
15         System:         VICE-TWO
16         Module:         volume.c
17         Institution:    The Information Technology Center, Carnegie-Mellon University
18
19  */
20
21 #include <afsconfig.h>
22 #include <afs/param.h>
23
24 RCSID
25     ("$Header$");
26
27 #include <rx/xdr.h>
28 #include <afs/afsint.h>
29 #include <ctype.h>
30 #ifndef AFS_NT40_ENV
31 #include <sys/param.h>
32 #if !defined(AFS_SGI_ENV)
33 #ifdef  AFS_OSF_ENV
34 #include <ufs/fs.h>
35 #else /* AFS_OSF_ENV */
36 #ifdef AFS_VFSINCL_ENV
37 #define VFS
38 #ifdef  AFS_SUN5_ENV
39 #include <sys/fs/ufs_fs.h>
40 #else
41 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
42 #include <ufs/ufs/dinode.h>
43 #include <ufs/ffs/fs.h>
44 #else
45 #include <ufs/fs.h>
46 #endif
47 #endif
48 #else /* AFS_VFSINCL_ENV */
49 #if !defined(AFS_AIX_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_XBSD_ENV)
50 #include <sys/fs.h>
51 #endif
52 #endif /* AFS_VFSINCL_ENV */
53 #endif /* AFS_OSF_ENV */
54 #endif /* AFS_SGI_ENV */
55 #endif /* AFS_NT40_ENV */
56 #include <errno.h>
57 #include <sys/stat.h>
58 #include <stdio.h>
59 #ifdef AFS_NT40_ENV
60 #include <fcntl.h>
61 #else
62 #include <sys/file.h>
63 #endif
64 #include <dirent.h>
65 #ifdef  AFS_AIX_ENV
66 #include <sys/vfs.h>
67 #include <fcntl.h>
68 #else
69 #ifdef  AFS_HPUX_ENV
70 #include <fcntl.h>
71 #include <mntent.h>
72 #else
73 #if     defined(AFS_SUN_ENV) || defined(AFS_SUN5_ENV)
74 #ifdef  AFS_SUN5_ENV
75 #include <sys/mnttab.h>
76 #include <sys/mntent.h>
77 #else
78 #include <mntent.h>
79 #endif
80 #else
81 #ifndef AFS_NT40_ENV
82 #if defined(AFS_SGI_ENV)
83 #include <fcntl.h>
84 #include <mntent.h>
85
86 #else
87 #ifndef AFS_LINUX20_ENV
88 #include <fstab.h>              /* Need to find in libc 5, present in libc 6 */
89 #endif
90 #endif
91 #endif /* AFS_SGI_ENV */
92 #endif
93 #endif /* AFS_HPUX_ENV */
94 #endif
95 #ifndef AFS_NT40_ENV
96 #include <netdb.h>
97 #include <netinet/in.h>
98 #include <sys/wait.h>
99 #include <setjmp.h>
100 #ifndef ITIMER_REAL
101 #include <sys/time.h>
102 #endif /* ITIMER_REAL */
103 #endif /* AFS_NT40_ENV */
104 #if defined(AFS_SUN5_ENV) || defined(AFS_NT40_ENV) || defined(AFS_LINUX20_ENV)
105 #include <string.h>
106 #else
107 #include <strings.h>
108 #endif
109
110 #include "nfs.h"
111 #include <afs/errors.h>
112 #include "lock.h"
113 #include "lwp.h"
114 #include <afs/afssyscalls.h>
115 #include "ihandle.h"
116 #include <afs/afsutil.h>
117 #ifdef AFS_NT40_ENV
118 #include <io.h>
119 #endif
120 #include "daemon_com.h"
121 #include "fssync.h"
122 #include "salvsync.h"
123 #include "vnode.h"
124 #include "volume.h"
125 #include "partition.h"
126 #include "volume_inline.h"
127 #ifdef AFS_PTHREAD_ENV
128 #include <assert.h>
129 #else /* AFS_PTHREAD_ENV */
130 #include "afs/assert.h"
131 #endif /* AFS_PTHREAD_ENV */
132 #include "vutils.h"
133 #ifndef AFS_NT40_ENV
134 #include <dir/dir.h>
135 #include <unistd.h>
136 #endif
137
138 #if !defined(offsetof)
139 #include <stddef.h>
140 #endif
141
142 #ifdef O_LARGEFILE
143 #define afs_stat        stat64
144 #define afs_fstat       fstat64
145 #define afs_open        open64
146 #else /* !O_LARGEFILE */
147 #define afs_stat        stat
148 #define afs_fstat       fstat
149 #define afs_open        open
150 #endif /* !O_LARGEFILE */
151
152 #ifdef AFS_PTHREAD_ENV
153 pthread_mutex_t vol_glock_mutex;
154 pthread_mutex_t vol_trans_mutex;
155 pthread_cond_t vol_put_volume_cond;
156 pthread_cond_t vol_sleep_cond;
157 int vol_attach_threads = 1;
158 #endif /* AFS_PTHREAD_ENV */
159
160 #ifdef AFS_DEMAND_ATTACH_FS
161 pthread_mutex_t vol_salvsync_mutex;
162 #endif /* AFS_DEMAND_ATTACH_FS */
163
164 #ifdef  AFS_OSF_ENV
165 extern void *calloc(), *realloc();
166 #endif
167
168 /*@printflike@*/ extern void Log(const char *format, ...);
169
170 /* Forward declarations */
171 static Volume *attach2(Error * ec, VolId vid, char *path,
172                        register struct VolumeHeader *header,
173                        struct DiskPartition64 *partp, Volume * vp, 
174                        int isbusy, int mode);
175 static void ReallyFreeVolume(Volume * vp);
176 #ifdef AFS_DEMAND_ATTACH_FS
177 static void FreeVolume(Volume * vp);
178 #else /* !AFS_DEMAND_ATTACH_FS */
179 #define FreeVolume(vp) ReallyFreeVolume(vp)
180 static void VScanUpdateList(void);
181 #endif /* !AFS_DEMAND_ATTACH_FS */
182 static void VInitVolumeHeaderCache(afs_uint32 howMany);
183 static int GetVolumeHeader(register Volume * vp);
184 static void ReleaseVolumeHeader(register struct volHeader *hd);
185 static void FreeVolumeHeader(register Volume * vp);
186 static void AddVolumeToHashTable(register Volume * vp, int hashid);
187 static void DeleteVolumeFromHashTable(register Volume * vp);
188 static int VHold(Volume * vp);
189 static int VHold_r(Volume * vp);
190 static void VGetBitmap_r(Error * ec, Volume * vp, VnodeClass class);
191 static void VReleaseVolumeHandles_r(Volume * vp);
192 static void VCloseVolumeHandles_r(Volume * vp);
193 static void LoadVolumeHeader(Error * ec, Volume * vp);
194 static int VCheckOffline(register Volume * vp);
195 static int VCheckDetach(register Volume * vp);
196 static Volume * GetVolume(Error * ec, Error * client_ec, VolId volumeId, Volume * hint, int flags);
197 static int VolumeExternalName_r(VolumeId volumeId, char * name, size_t len);
198
199 int LogLevel;                   /* Vice loglevel--not defined as extern so that it will be
200                                  * defined when not linked with vice, XXXX */
201 ProgramType programType;        /* The type of program using the package */
202
203 /* extended volume package statistics */
204 VolPkgStats VStats;
205
206 #ifdef VOL_LOCK_DEBUG
207 pthread_t vol_glock_holder = 0;
208 #endif
209
210
211 #define VOLUME_BITMAP_GROWSIZE  16      /* bytes, => 128vnodes */
212                                         /* Must be a multiple of 4 (1 word) !! */
213
214 /* this parameter needs to be tunable at runtime.
215  * 128 was really inadequate for largish servers -- at 16384 volumes this
216  * puts average chain length at 128, thus an average 65 deref's to find a volptr.
217  * talk about bad spatial locality...
218  *
219  * an AVL or splay tree might work a lot better, but we'll just increase
220  * the default hash table size for now
221  */
222 #define DEFAULT_VOLUME_HASH_SIZE 256   /* Must be a power of 2!! */
223 #define DEFAULT_VOLUME_HASH_MASK (DEFAULT_VOLUME_HASH_SIZE-1)
224 #define VOLUME_HASH(volumeId) (volumeId&(VolumeHashTable.Mask))
225
226 /*
227  * turn volume hash chains into partially ordered lists.
228  * when the threshold is exceeded between two adjacent elements,
229  * perform a chain rebalancing operation.
230  *
231  * keep the threshold high in order to keep cache line invalidates
232  * low "enough" on SMPs
233  */
234 #define VOLUME_HASH_REORDER_THRESHOLD 200
235
236 /*
237  * when possible, don't just reorder single elements, but reorder
238  * entire chains of elements at once.  a chain of elements that
239  * exceed the element previous to the pivot by at least CHAIN_THRESH 
240  * accesses are moved in front of the chain whose elements have at
241  * least CHAIN_THRESH less accesses than the pivot element
242  */
243 #define VOLUME_HASH_REORDER_CHAIN_THRESH (VOLUME_HASH_REORDER_THRESHOLD / 2)
244
245 #include "rx/rx_queue.h"
246
247
248 VolumeHashTable_t VolumeHashTable = {
249     DEFAULT_VOLUME_HASH_SIZE,
250     DEFAULT_VOLUME_HASH_MASK,
251     NULL
252 };
253
254
255 static void VInitVolumeHash(void);
256
257
258 #ifndef AFS_HAVE_FFS
259 /* This macro is used where an ffs() call does not exist. Was in util/ffs.c */
260 ffs(x)
261 {
262     afs_int32 ffs_i;
263     afs_int32 ffs_tmp = x;
264     if (ffs_tmp == 0)
265         return (-1);
266     else
267         for (ffs_i = 1;; ffs_i++) {
268             if (ffs_tmp & 1)
269                 return (ffs_i);
270             else
271                 ffs_tmp >>= 1;
272         }
273 }
274 #endif /* !AFS_HAVE_FFS */
275
276 #ifdef AFS_PTHREAD_ENV
277 typedef struct diskpartition_queue_t {
278     struct rx_queue queue;
279     struct DiskPartition64 * diskP;
280 } diskpartition_queue_t;
281 typedef struct vinitvolumepackage_thread_t {
282     struct rx_queue queue;
283     pthread_cond_t thread_done_cv;
284     int n_threads_complete;
285 } vinitvolumepackage_thread_t;
286 static void * VInitVolumePackageThread(void * args);
287 #endif /* AFS_PTHREAD_ENV */
288
289 static int VAttachVolumesByPartition(struct DiskPartition64 *diskP, 
290                                      int * nAttached, int * nUnattached);
291
292
293 #ifdef AFS_DEMAND_ATTACH_FS
294 /* demand attach fileserver extensions */
295
296 /* XXX
297  * in the future we will support serialization of VLRU state into the fs_state
298  * disk dumps
299  *
300  * these structures are the beginning of that effort
301  */
302 struct VLRU_DiskHeader {
303     struct versionStamp stamp;            /* magic and structure version number */
304     afs_uint32 mtime;                     /* time of dump to disk */
305     afs_uint32 num_records;               /* number of VLRU_DiskEntry records */
306 };
307
308 struct VLRU_DiskEntry {
309     afs_uint32 vid;                       /* volume ID */
310     afs_uint32 idx;                       /* generation */
311     afs_uint32 last_get;                  /* timestamp of last get */
312 };
313
314 struct VLRU_StartupQueue {
315     struct VLRU_DiskEntry * entry;
316     int num_entries;
317     int next_idx;
318 };
319
320 typedef struct vshutdown_thread_t {
321     struct rx_queue q;
322     pthread_mutex_t lock;
323     pthread_cond_t cv;
324     pthread_cond_t master_cv;
325     int n_threads;
326     int n_threads_complete;
327     int vol_remaining;
328     int schedule_version;
329     int pass;
330     byte n_parts;
331     byte n_parts_done_pass;
332     byte part_thread_target[VOLMAXPARTS+1];
333     byte part_done_pass[VOLMAXPARTS+1];
334     struct rx_queue * part_pass_head[VOLMAXPARTS+1];
335     int stats[4][VOLMAXPARTS+1];
336 } vshutdown_thread_t;
337 static void * VShutdownThread(void * args);
338
339
340 static Volume * VAttachVolumeByVp_r(Error * ec, Volume * vp, int mode);
341 static int VCheckFree(Volume * vp);
342
343 /* VByP List */
344 static void AddVolumeToVByPList_r(Volume * vp);
345 static void DeleteVolumeFromVByPList_r(Volume * vp);
346 static void VVByPListBeginExclusive_r(struct DiskPartition64 * dp);
347 static void VVByPListEndExclusive_r(struct DiskPartition64 * dp);
348 static void VVByPListWait_r(struct DiskPartition64 * dp);
349
350 /* online salvager */
351 static int VCheckSalvage(register Volume * vp);
352 static int VUpdateSalvagePriority_r(Volume * vp);
353 static int VScheduleSalvage_r(Volume * vp);
354 static int VCancelSalvage_r(Volume * vp, int reason);
355
356 /* Volume hash table */
357 static void VReorderHash_r(VolumeHashChainHead * head, Volume * pp, Volume * vp);
358 static void VHashBeginExclusive_r(VolumeHashChainHead * head);
359 static void VHashEndExclusive_r(VolumeHashChainHead * head);
360 static void VHashWait_r(VolumeHashChainHead * head);
361
362 /* shutdown */
363 static int ShutdownVByPForPass_r(struct DiskPartition64 * dp, int pass);
364 static int ShutdownVolumeWalk_r(struct DiskPartition64 * dp, int pass,
365                                 struct rx_queue ** idx);
366 static void ShutdownController(vshutdown_thread_t * params);
367 static void ShutdownCreateSchedule(vshutdown_thread_t * params);
368
369 /* VLRU */
370 static void VLRU_ComputeConstants(void);
371 static void VInitVLRU(void);
372 static void VLRU_Init_Node_r(volatile Volume * vp);
373 static void VLRU_Add_r(volatile Volume * vp);
374 static void VLRU_Delete_r(volatile Volume * vp);
375 static void VLRU_UpdateAccess_r(volatile Volume * vp);
376 static void * VLRU_ScannerThread(void * args);
377 static void VLRU_Scan_r(int idx);
378 static void VLRU_Promote_r(int idx);
379 static void VLRU_Demote_r(int idx);
380 static void VLRU_SwitchQueues(volatile Volume * vp, int new_idx, int append);
381
382 /* soft detach */
383 static int VCheckSoftDetach(volatile Volume * vp, afs_uint32 thresh);
384 static int VCheckSoftDetachCandidate(volatile Volume * vp, afs_uint32 thresh);
385 static int VSoftDetachVolume_r(volatile Volume * vp, afs_uint32 thresh);
386
387
388 pthread_key_t VThread_key;
389 VThreadOptions_t VThread_defaults = {
390     0                           /**< allow salvsync */
391 };
392 #endif /* AFS_DEMAND_ATTACH_FS */
393
394
395 struct Lock vol_listLock;       /* Lock obtained when listing volumes:  
396                                  * prevents a volume from being missed 
397                                  * if the volume is attached during a 
398                                  * list volumes */
399
400
401 static int TimeZoneCorrection;  /* Number of seconds west of GMT */
402
403 /* Common message used when the volume goes off line */
404 char *VSalvageMessage =
405     "Files in this volume are currently unavailable; call operations";
406
407 int VInit;                      /* 0 - uninitialized,
408                                  * 1 - initialized but not all volumes have been attached,
409                                  * 2 - initialized and all volumes have been attached,
410                                  * 3 - initialized, all volumes have been attached, and
411                                  * VConnectFS() has completed. */
412
413
414 bit32 VolumeCacheCheck;         /* Incremented everytime a volume goes on line--
415                                  * used to stamp volume headers and in-core
416                                  * vnodes.  When the volume goes on-line the
417                                  * vnode will be invalidated
418                                  * access only with VOL_LOCK held */
419
420
421
422
423 /***************************************************/
424 /* Startup routines                                */
425 /***************************************************/
426
427 int
428 VInitVolumePackage(ProgramType pt, afs_uint32 nLargeVnodes, afs_uint32 nSmallVnodes,
429                    int connect, afs_uint32 volcache)
430 {
431     int errors = 0;             /* Number of errors while finding vice partitions. */
432     struct timeval tv;
433     struct timezone tz;
434
435     programType = pt;
436
437     memset(&VStats, 0, sizeof(VStats));
438     VStats.hdr_cache_size = 200;
439
440     VInitPartitionPackage();
441     VInitVolumeHash();
442 #ifdef AFS_DEMAND_ATTACH_FS
443     if (programType == fileServer) {
444         VInitVLRU();
445     } else {
446         VLRU_SetOptions(VLRU_SET_ENABLED, 0);
447     }
448     assert(pthread_key_create(&VThread_key, NULL) == 0);
449 #endif
450
451 #ifdef AFS_PTHREAD_ENV
452     assert(pthread_mutex_init(&vol_glock_mutex, NULL) == 0);
453     assert(pthread_mutex_init(&vol_trans_mutex, NULL) == 0);
454     assert(pthread_cond_init(&vol_put_volume_cond, NULL) == 0);
455     assert(pthread_cond_init(&vol_sleep_cond, NULL) == 0);
456 #else /* AFS_PTHREAD_ENV */
457     IOMGR_Initialize();
458 #endif /* AFS_PTHREAD_ENV */
459     Lock_Init(&vol_listLock);
460
461     srandom(time(0));           /* For VGetVolumeInfo */
462     gettimeofday(&tv, &tz);
463     TimeZoneCorrection = tz.tz_minuteswest * 60;
464
465 #ifdef AFS_DEMAND_ATTACH_FS
466     assert(pthread_mutex_init(&vol_salvsync_mutex, NULL) == 0);
467 #endif /* AFS_DEMAND_ATTACH_FS */
468
469     /* Ok, we have done enough initialization that fileserver can 
470      * start accepting calls, even though the volumes may not be 
471      * available just yet.
472      */
473     VInit = 1;
474
475 #if defined(AFS_DEMAND_ATTACH_FS) && defined(SALVSYNC_BUILD_SERVER)
476     if (programType == salvageServer) {
477         SALVSYNC_salvInit();
478     }
479 #endif /* AFS_DEMAND_ATTACH_FS */
480 #ifdef FSSYNC_BUILD_SERVER
481     if (programType == fileServer) {
482         FSYNC_fsInit();
483     }
484 #endif
485 #if defined(AFS_DEMAND_ATTACH_FS) && defined(SALVSYNC_BUILD_CLIENT)
486     if (programType == fileServer) {
487         /* establish a connection to the salvager at this point */
488         assert(VConnectSALV() != 0);
489     }
490 #endif /* AFS_DEMAND_ATTACH_FS */
491
492     if (volcache > VStats.hdr_cache_size)
493         VStats.hdr_cache_size = volcache;
494     VInitVolumeHeaderCache(VStats.hdr_cache_size);
495
496     VInitVnodes(vLarge, nLargeVnodes);
497     VInitVnodes(vSmall, nSmallVnodes);
498
499
500     errors = VAttachPartitions();
501     if (errors)
502         return -1;
503
504     if (programType == fileServer) {
505         struct DiskPartition64 *diskP;
506 #ifdef AFS_PTHREAD_ENV
507         struct vinitvolumepackage_thread_t params;
508         struct diskpartition_queue_t * dpq;
509         int i, threads, parts;
510         pthread_t tid;
511         pthread_attr_t attrs;
512
513         assert(pthread_cond_init(&params.thread_done_cv,NULL) == 0);
514         queue_Init(&params);
515         params.n_threads_complete = 0;
516
517         /* create partition work queue */
518         for (parts=0, diskP = DiskPartitionList; diskP; diskP = diskP->next, parts++) {
519             dpq = (diskpartition_queue_t *) malloc(sizeof(struct diskpartition_queue_t));
520             assert(dpq != NULL);
521             dpq->diskP = diskP;
522             queue_Append(&params,dpq);
523         }
524
525         threads = MIN(parts, vol_attach_threads);
526
527         if (threads > 1) {
528             /* spawn off a bunch of initialization threads */
529             assert(pthread_attr_init(&attrs) == 0);
530             assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
531
532             Log("VInitVolumePackage: beginning parallel fileserver startup\n");
533 #ifdef AFS_DEMAND_ATTACH_FS
534             Log("VInitVolumePackage: using %d threads to pre-attach volumes on %d partitions\n",
535                 threads, parts);
536 #else /* AFS_DEMAND_ATTACH_FS */
537             Log("VInitVolumePackage: using %d threads to attach volumes on %d partitions\n",
538                 threads, parts);
539 #endif /* AFS_DEMAND_ATTACH_FS */
540
541             VOL_LOCK;
542             for (i=0; i < threads; i++) {
543                 assert(pthread_create
544                        (&tid, &attrs, &VInitVolumePackageThread,
545                         &params) == 0);
546             }
547
548             while(params.n_threads_complete < threads) {
549                 VOL_CV_WAIT(&params.thread_done_cv);
550             }
551             VOL_UNLOCK;
552
553             assert(pthread_attr_destroy(&attrs) == 0);
554         } else {
555             /* if we're only going to run one init thread, don't bother creating
556              * another LWP */
557             Log("VInitVolumePackage: beginning single-threaded fileserver startup\n");
558 #ifdef AFS_DEMAND_ATTACH_FS
559             Log("VInitVolumePackage: using 1 thread to pre-attach volumes on %d partition(s)\n",
560                 parts);
561 #else /* AFS_DEMAND_ATTACH_FS */
562             Log("VInitVolumePackage: using 1 thread to attach volumes on %d partition(s)\n",
563                 parts);
564 #endif /* AFS_DEMAND_ATTACH_FS */
565
566             VInitVolumePackageThread(&params);
567         }
568
569         assert(pthread_cond_destroy(&params.thread_done_cv) == 0);
570
571 #else /* AFS_PTHREAD_ENV */
572         DIR *dirp;
573         struct dirent *dp;
574
575         /* Attach all the volumes in this partition */
576         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
577             int nAttached = 0, nUnattached = 0;
578             assert(VAttachVolumesByPartition(diskP, &nAttached, &nUnattached) == 0);
579         }
580 #endif /* AFS_PTHREAD_ENV */
581     }
582
583     VInit = 2;                  /* Initialized, and all volumes have been attached */
584 #ifdef FSSYNC_BUILD_CLIENT
585     if (programType == volumeUtility && connect) {
586         if (!VConnectFS()) {
587             Log("Unable to connect to file server; will retry at need\n");
588             /*exit(1);*/
589         }
590     }
591 #ifdef AFS_DEMAND_ATTACH_FS
592     else if (programType == salvageServer) {
593         if (!VConnectFS()) {
594             Log("Unable to connect to file server; aborted\n");
595             exit(1);
596         }
597     }
598 #endif /* AFS_DEMAND_ATTACH_FS */
599 #endif /* FSSYNC_BUILD_CLIENT */
600     return 0;
601 }
602
603 #ifdef AFS_PTHREAD_ENV
604 static void *
605 VInitVolumePackageThread(void * args) {
606     int errors = 0;             /* Number of errors while finding vice partitions. */
607
608     DIR *dirp;
609     struct dirent *dp;
610     struct DiskPartition64 *diskP;
611     struct vinitvolumepackage_thread_t * params;
612     struct diskpartition_queue_t * dpq;
613
614     params = (vinitvolumepackage_thread_t *) args;
615
616
617     VOL_LOCK;
618     /* Attach all the volumes in this partition */
619     while (queue_IsNotEmpty(params)) {
620         int nAttached = 0, nUnattached = 0;
621
622         dpq = queue_First(params,diskpartition_queue_t);
623         queue_Remove(dpq);
624         VOL_UNLOCK;
625         diskP = dpq->diskP;
626         free(dpq);
627
628         assert(VAttachVolumesByPartition(diskP, &nAttached, &nUnattached) == 0);
629
630         VOL_LOCK;
631     }
632
633     params->n_threads_complete++;
634     pthread_cond_signal(&params->thread_done_cv);
635     VOL_UNLOCK;
636     return NULL;
637 }
638 #endif /* AFS_PTHREAD_ENV */
639
640 /*
641  * attach all volumes on a given disk partition
642  */
643 static int
644 VAttachVolumesByPartition(struct DiskPartition64 *diskP, int * nAttached, int * nUnattached)
645 {
646   DIR * dirp;
647   struct dirent * dp;
648   int ret = 0;
649
650   Log("Partition %s: attaching volumes\n", diskP->name);
651   dirp = opendir(VPartitionPath(diskP));
652   if (!dirp) {
653     Log("opendir on Partition %s failed!\n", diskP->name);
654     return 1;
655   }
656
657   while ((dp = readdir(dirp))) {
658     char *p;
659     p = strrchr(dp->d_name, '.');
660     if (p != NULL && strcmp(p, VHDREXT) == 0) {
661       Error error;
662       Volume *vp;
663 #ifdef AFS_DEMAND_ATTACH_FS
664       vp = VPreAttachVolumeByName(&error, diskP->name, dp->d_name);
665 #else /* AFS_DEMAND_ATTACH_FS */
666       vp = VAttachVolumeByName(&error, diskP->name, dp->d_name,
667                                V_VOLUPD);
668 #endif /* AFS_DEMAND_ATTACH_FS */
669       (*(vp ? nAttached : nUnattached))++;
670       if (error == VOFFLINE)
671         Log("Volume %d stays offline (/vice/offline/%s exists)\n", VolumeNumber(dp->d_name), dp->d_name);
672       else if (LogLevel >= 5) {
673         Log("Partition %s: attached volume %d (%s)\n",
674             diskP->name, VolumeNumber(dp->d_name),
675             dp->d_name);
676       }
677 #if !defined(AFS_DEMAND_ATTACH_FS)
678       if (vp) {
679         VPutVolume(vp);
680       }
681 #endif /* AFS_DEMAND_ATTACH_FS */
682     }
683   }
684
685   Log("Partition %s: attached %d volumes; %d volumes not attached\n", diskP->name, *nAttached, *nUnattached);
686   closedir(dirp);
687   return ret;
688 }
689
690
691 /***************************************************/
692 /* Shutdown routines                               */
693 /***************************************************/
694
695 /*
696  * demand attach fs
697  * highly multithreaded volume package shutdown
698  *
699  * with the demand attach fileserver extensions,
700  * VShutdown has been modified to be multithreaded.
701  * In order to achieve optimal use of many threads,
702  * the shutdown code involves one control thread and
703  * n shutdown worker threads.  The control thread
704  * periodically examines the number of volumes available
705  * for shutdown on each partition, and produces a worker
706  * thread allocation schedule.  The idea is to eliminate
707  * redundant scheduling computation on the workers by
708  * having a single master scheduler.
709  *
710  * The scheduler's objectives are:
711  * (1) fairness
712  *   each partition with volumes remaining gets allocated
713  *   at least 1 thread (assuming sufficient threads)
714  * (2) performance
715  *   threads are allocated proportional to the number of
716  *   volumes remaining to be offlined.  This ensures that
717  *   the OS I/O scheduler has many requests to elevator
718  *   seek on partitions that will (presumably) take the
719  *   longest amount of time (from now) to finish shutdown
720  * (3) keep threads busy
721  *   when there are extra threads, they are assigned to
722  *   partitions using a simple round-robin algorithm
723  *
724  * In the future, we may wish to add the ability to adapt
725  * to the relative performance patterns of each disk
726  * partition.
727  *
728  *
729  * demand attach fs
730  * multi-step shutdown process
731  *
732  * demand attach shutdown is a four-step process. Each
733  * shutdown "pass" shuts down increasingly more difficult
734  * volumes.  The main purpose is to achieve better cache
735  * utilization during shutdown.
736  *
737  * pass 0
738  *   shutdown volumes in the unattached, pre-attached
739  *   and error states
740  * pass 1
741  *   shutdown attached volumes with cached volume headers
742  * pass 2
743  *   shutdown all volumes in non-exclusive states
744  * pass 3
745  *   shutdown all remaining volumes
746  */
747
748 void
749 VShutdown_r(void)
750 {
751     int i;
752     register Volume *vp, *np;
753     register afs_int32 code;
754 #ifdef AFS_DEMAND_ATTACH_FS
755     struct DiskPartition64 * diskP;
756     struct diskpartition_queue_t * dpq;
757     vshutdown_thread_t params;
758     pthread_t tid;
759     pthread_attr_t attrs;
760
761     memset(&params, 0, sizeof(vshutdown_thread_t));
762
763     for (params.n_parts=0, diskP = DiskPartitionList;
764          diskP; diskP = diskP->next, params.n_parts++);
765
766     Log("VShutdown:  shutting down on-line volumes on %d partition%s...\n", 
767         params.n_parts, params.n_parts > 1 ? "s" : "");
768
769     if (vol_attach_threads > 1) {
770         /* prepare for parallel shutdown */
771         params.n_threads = vol_attach_threads;
772         assert(pthread_mutex_init(&params.lock, NULL) == 0);
773         assert(pthread_cond_init(&params.cv, NULL) == 0);
774         assert(pthread_cond_init(&params.master_cv, NULL) == 0);
775         assert(pthread_attr_init(&attrs) == 0);
776         assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
777         queue_Init(&params);
778
779         /* setup the basic partition information structures for
780          * parallel shutdown */
781         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
782             /* XXX debug */
783             struct rx_queue * qp, * nqp;
784             Volume * vp;
785             int count = 0;
786
787             VVByPListWait_r(diskP);
788             VVByPListBeginExclusive_r(diskP);
789
790             /* XXX debug */
791             for (queue_Scan(&diskP->vol_list, qp, nqp, rx_queue)) {
792                 vp = (Volume *)((char *)qp - offsetof(Volume, vol_list));
793                 if (vp->header)
794                     count++;
795             }
796             Log("VShutdown: partition %s has %d volumes with attached headers\n",
797                 VPartitionPath(diskP), count);
798                 
799
800             /* build up the pass 0 shutdown work queue */
801             dpq = (struct diskpartition_queue_t *) malloc(sizeof(struct diskpartition_queue_t));
802             assert(dpq != NULL);
803             dpq->diskP = diskP;
804             queue_Prepend(&params, dpq);
805
806             params.part_pass_head[diskP->index] = queue_First(&diskP->vol_list, rx_queue);
807         }
808
809         Log("VShutdown:  beginning parallel fileserver shutdown\n");
810         Log("VShutdown:  using %d threads to offline volumes on %d partition%s\n",
811             vol_attach_threads, params.n_parts, params.n_parts > 1 ? "s" : "" );
812
813         /* do pass 0 shutdown */
814         assert(pthread_mutex_lock(&params.lock) == 0);
815         for (i=0; i < params.n_threads; i++) {
816             assert(pthread_create
817                    (&tid, &attrs, &VShutdownThread,
818                     &params) == 0);
819         }
820         
821         /* wait for all the pass 0 shutdowns to complete */
822         while (params.n_threads_complete < params.n_threads) {
823             assert(pthread_cond_wait(&params.master_cv, &params.lock) == 0);
824         }
825         params.n_threads_complete = 0;
826         params.pass = 1;
827         assert(pthread_cond_broadcast(&params.cv) == 0);
828         assert(pthread_mutex_unlock(&params.lock) == 0);
829
830         Log("VShutdown:  pass 0 completed using the 1 thread per partition algorithm\n");
831         Log("VShutdown:  starting passes 1 through 3 using finely-granular mp-fast algorithm\n");
832
833         /* run the parallel shutdown scheduler. it will drop the glock internally */
834         ShutdownController(&params);
835         
836         /* wait for all the workers to finish pass 3 and terminate */
837         while (params.pass < 4) {
838             VOL_CV_WAIT(&params.cv);
839         }
840         
841         assert(pthread_attr_destroy(&attrs) == 0);
842         assert(pthread_cond_destroy(&params.cv) == 0);
843         assert(pthread_cond_destroy(&params.master_cv) == 0);
844         assert(pthread_mutex_destroy(&params.lock) == 0);
845
846         /* drop the VByPList exclusive reservations */
847         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
848             VVByPListEndExclusive_r(diskP);
849             Log("VShutdown:  %s stats : (pass[0]=%d, pass[1]=%d, pass[2]=%d, pass[3]=%d)\n",
850                 VPartitionPath(diskP),
851                 params.stats[0][diskP->index],
852                 params.stats[1][diskP->index],
853                 params.stats[2][diskP->index],
854                 params.stats[3][diskP->index]);
855         }
856
857         Log("VShutdown:  shutdown finished using %d threads\n", params.n_threads);
858     } else {
859         /* if we're only going to run one shutdown thread, don't bother creating
860          * another LWP */
861         Log("VShutdown:  beginning single-threaded fileserver shutdown\n");
862
863         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
864             VShutdownByPartition_r(diskP);
865         }
866     }
867
868     Log("VShutdown:  complete.\n");
869 #else /* AFS_DEMAND_ATTACH_FS */
870     Log("VShutdown:  shutting down on-line volumes...\n");
871     for (i = 0; i < VolumeHashTable.Size; i++) {
872         /* try to hold first volume in the hash table */
873         for (queue_Scan(&VolumeHashTable.Table[i],vp,np,Volume)) {
874             code = VHold_r(vp);
875             if (code == 0) {
876                 if (LogLevel >= 5)
877                     Log("VShutdown:  Attempting to take volume %u offline.\n",
878                         vp->hashid);
879                 
880                 /* next, take the volume offline (drops reference count) */
881                 VOffline_r(vp, "File server was shut down");
882             }
883         }
884     }
885     Log("VShutdown:  complete.\n");
886 #endif /* AFS_DEMAND_ATTACH_FS */
887 }
888
889 void
890 VShutdown(void)
891 {
892     VOL_LOCK;
893     VShutdown_r();
894     VOL_UNLOCK;
895 }
896
897 #ifdef AFS_DEMAND_ATTACH_FS
898 /*
899  * demand attach fs
900  * shutdown control thread
901  */
902 static void
903 ShutdownController(vshutdown_thread_t * params)
904 {
905     /* XXX debug */
906     struct DiskPartition64 * diskP;
907     Device id;
908     vshutdown_thread_t shadow;
909
910     ShutdownCreateSchedule(params);
911
912     while ((params->pass < 4) &&
913            (params->n_threads_complete < params->n_threads)) {
914         /* recompute schedule once per second */
915
916         memcpy(&shadow, params, sizeof(vshutdown_thread_t));
917
918         VOL_UNLOCK;
919         /* XXX debug */
920         Log("ShutdownController:  schedule version=%d, vol_remaining=%d, pass=%d\n",
921             shadow.schedule_version, shadow.vol_remaining, shadow.pass);
922         Log("ShutdownController:  n_threads_complete=%d, n_parts_done_pass=%d\n",
923             shadow.n_threads_complete, shadow.n_parts_done_pass);
924         for (diskP = DiskPartitionList; diskP; diskP=diskP->next) {
925             id = diskP->index;
926             Log("ShutdownController:  part[%d] : (len=%d, thread_target=%d, done_pass=%d, pass_head=%p)\n",
927                 id, 
928                 diskP->vol_list.len,
929                 shadow.part_thread_target[id], 
930                 shadow.part_done_pass[id], 
931                 shadow.part_pass_head[id]);
932         }
933
934         sleep(1);
935         VOL_LOCK;
936
937         ShutdownCreateSchedule(params);
938     }
939 }
940
941 /* create the shutdown thread work schedule.
942  * this scheduler tries to implement fairness
943  * by allocating at least 1 thread to each 
944  * partition with volumes to be shutdown,
945  * and then it attempts to allocate remaining
946  * threads based upon the amount of work left
947  */
948 static void
949 ShutdownCreateSchedule(vshutdown_thread_t * params)
950 {
951     struct DiskPartition64 * diskP;
952     int sum, thr_workload, thr_left;
953     int part_residue[VOLMAXPARTS+1];
954     Device id;
955
956     /* compute the total number of outstanding volumes */
957     sum = 0;
958     for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
959         sum += diskP->vol_list.len;
960     }
961     
962     params->schedule_version++;
963     params->vol_remaining = sum;
964
965     if (!sum)
966         return;
967
968     /* compute average per-thread workload */
969     thr_workload = sum / params->n_threads;
970     if (sum % params->n_threads)
971         thr_workload++;
972
973     thr_left = params->n_threads;
974     memset(&part_residue, 0, sizeof(part_residue));
975
976     /* for fairness, give every partition with volumes remaining
977      * at least one thread */
978     for (diskP = DiskPartitionList; diskP && thr_left; diskP = diskP->next) {
979         id = diskP->index;
980         if (diskP->vol_list.len) {
981             params->part_thread_target[id] = 1;
982             thr_left--;
983         } else {
984             params->part_thread_target[id] = 0;
985         }
986     }
987
988     if (thr_left && thr_workload) {
989         /* compute length-weighted workloads */
990         int delta;
991
992         for (diskP = DiskPartitionList; diskP && thr_left; diskP = diskP->next) {
993             id = diskP->index;
994             delta = (diskP->vol_list.len / thr_workload) -
995                 params->part_thread_target[id];
996             if (delta < 0) {
997                 continue;
998             }
999             if (delta < thr_left) {
1000                 params->part_thread_target[id] += delta;
1001                 thr_left -= delta;
1002             } else {
1003                 params->part_thread_target[id] += thr_left;
1004                 thr_left = 0;
1005                 break;
1006             }
1007         }
1008     }
1009
1010     if (thr_left) {
1011         /* try to assign any leftover threads to partitions that
1012          * had volume lengths closer to needing thread_target+1 */
1013         int max_residue, max_id;
1014
1015         /* compute the residues */
1016         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1017             id = diskP->index;
1018             part_residue[id] = diskP->vol_list.len - 
1019                 (params->part_thread_target[id] * thr_workload);
1020         }
1021
1022         /* now try to allocate remaining threads to partitions with the
1023          * highest residues */
1024         while (thr_left) {
1025             max_residue = 0;
1026             for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1027                 id = diskP->index;
1028                 if (part_residue[id] > max_residue) {
1029                     max_residue = part_residue[id];
1030                     max_id = id;
1031                 }
1032             }
1033
1034             if (!max_residue) {
1035                 break;
1036             }
1037
1038             params->part_thread_target[max_id]++;
1039             thr_left--;
1040             part_residue[max_id] = 0;
1041         }
1042     }
1043
1044     if (thr_left) {
1045         /* punt and give any remaining threads equally to each partition */
1046         int alloc;
1047         if (thr_left >= params->n_parts) {
1048             alloc = thr_left / params->n_parts;
1049             for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1050                 id = diskP->index;
1051                 params->part_thread_target[id] += alloc;
1052                 thr_left -= alloc;
1053             }
1054         }
1055
1056         /* finish off the last of the threads */
1057         for (diskP = DiskPartitionList; thr_left && diskP; diskP = diskP->next) {
1058             id = diskP->index;
1059             params->part_thread_target[id]++;
1060             thr_left--;
1061         }
1062     }
1063 }
1064
1065 /* worker thread for parallel shutdown */
1066 static void *
1067 VShutdownThread(void * args)
1068 {
1069     struct rx_queue *qp;
1070     Volume * vp;
1071     vshutdown_thread_t * params;
1072     int part, code, found, pass, schedule_version_save, count;
1073     struct DiskPartition64 *diskP;
1074     struct diskpartition_queue_t * dpq;
1075     Device id;
1076
1077     params = (vshutdown_thread_t *) args;
1078
1079     /* acquire the shutdown pass 0 lock */
1080     assert(pthread_mutex_lock(&params->lock) == 0);
1081
1082     /* if there's still pass 0 work to be done,
1083      * get a work entry, and do a pass 0 shutdown */
1084     if (queue_IsNotEmpty(params)) {
1085         dpq = queue_First(params, diskpartition_queue_t);
1086         queue_Remove(dpq);
1087         assert(pthread_mutex_unlock(&params->lock) == 0);
1088         diskP = dpq->diskP;
1089         free(dpq);
1090         id = diskP->index;
1091
1092         count = 0;
1093         while (ShutdownVolumeWalk_r(diskP, 0, &params->part_pass_head[id]))
1094             count++;
1095         params->stats[0][diskP->index] = count;
1096         assert(pthread_mutex_lock(&params->lock) == 0);
1097     }
1098
1099     params->n_threads_complete++;
1100     if (params->n_threads_complete == params->n_threads) {
1101       /* notify control thread that all workers have completed pass 0 */
1102       assert(pthread_cond_signal(&params->master_cv) == 0);
1103     }
1104     while (params->pass == 0) {
1105       assert(pthread_cond_wait(&params->cv, &params->lock) == 0);
1106     }
1107
1108     /* switch locks */
1109     assert(pthread_mutex_unlock(&params->lock) == 0);
1110     VOL_LOCK;
1111
1112     pass = params->pass;
1113     assert(pass > 0);
1114
1115     /* now escalate through the more complicated shutdowns */
1116     while (pass <= 3) {
1117         schedule_version_save = params->schedule_version;
1118         found = 0;
1119         /* find a disk partition to work on */
1120         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1121             id = diskP->index;
1122             if (params->part_thread_target[id] && !params->part_done_pass[id]) {
1123                 params->part_thread_target[id]--;
1124                 found = 1;
1125                 break;
1126             }
1127         }
1128         
1129         if (!found) {
1130             /* hmm. for some reason the controller thread couldn't find anything for 
1131              * us to do. let's see if there's anything we can do */
1132             for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1133                 id = diskP->index;
1134                 if (diskP->vol_list.len && !params->part_done_pass[id]) {
1135                     found = 1;
1136                     break;
1137                 } else if (!params->part_done_pass[id]) {
1138                     params->part_done_pass[id] = 1;
1139                     params->n_parts_done_pass++;
1140                     if (pass == 3) {
1141                         Log("VShutdown:  done shutting down volumes on partition %s.\n",
1142                             VPartitionPath(diskP));
1143                     }
1144                 }
1145             }
1146         }
1147         
1148         /* do work on this partition until either the controller
1149          * creates a new schedule, or we run out of things to do
1150          * on this partition */
1151         if (found) {
1152             count = 0;
1153             while (!params->part_done_pass[id] &&
1154                    (schedule_version_save == params->schedule_version)) {
1155                 /* ShutdownVolumeWalk_r will drop the glock internally */
1156                 if (!ShutdownVolumeWalk_r(diskP, pass, &params->part_pass_head[id])) {
1157                     if (!params->part_done_pass[id]) {
1158                         params->part_done_pass[id] = 1;
1159                         params->n_parts_done_pass++;
1160                         if (pass == 3) {
1161                             Log("VShutdown:  done shutting down volumes on partition %s.\n",
1162                                 VPartitionPath(diskP));
1163                         }
1164                     }
1165                     break;
1166                 }
1167                 count++;
1168             }
1169
1170             params->stats[pass][id] += count;
1171         } else {
1172             /* ok, everyone is done this pass, proceed */
1173
1174             /* barrier lock */
1175             params->n_threads_complete++;
1176             while (params->pass == pass) {
1177                 if (params->n_threads_complete == params->n_threads) {
1178                     /* we are the last thread to complete, so we will
1179                      * reinitialize worker pool state for the next pass */
1180                     params->n_threads_complete = 0;
1181                     params->n_parts_done_pass = 0;
1182                     params->pass++;
1183                     for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1184                         id = diskP->index;
1185                         params->part_done_pass[id] = 0;
1186                         params->part_pass_head[id] = queue_First(&diskP->vol_list, rx_queue);
1187                     }
1188
1189                     /* compute a new thread schedule before releasing all the workers */
1190                     ShutdownCreateSchedule(params);
1191
1192                     /* wake up all the workers */
1193                     assert(pthread_cond_broadcast(&params->cv) == 0);
1194
1195                     VOL_UNLOCK;
1196                     Log("VShutdown:  pass %d completed using %d threads on %d partitions\n",
1197                         pass, params->n_threads, params->n_parts);
1198                     VOL_LOCK;
1199                 } else {
1200                     VOL_CV_WAIT(&params->cv);
1201                 }
1202             }
1203             pass = params->pass;
1204         }
1205         
1206         /* for fairness */
1207         VOL_UNLOCK;
1208         pthread_yield();
1209         VOL_LOCK;
1210     }
1211
1212     VOL_UNLOCK;
1213
1214     return NULL;
1215 }
1216
1217 /* shut down all volumes on a given disk partition 
1218  *
1219  * note that this function will not allow mp-fast
1220  * shutdown of a partition */
1221 int
1222 VShutdownByPartition_r(struct DiskPartition64 * dp)
1223 {
1224     int pass, retVal;
1225     int pass_stats[4];
1226     int total;
1227
1228     /* wait for other exclusive ops to finish */
1229     VVByPListWait_r(dp);
1230
1231     /* begin exclusive access */
1232     VVByPListBeginExclusive_r(dp);
1233
1234     /* pick the low-hanging fruit first,
1235      * then do the complicated ones last 
1236      * (has the advantage of keeping
1237      *  in-use volumes up until the bitter end) */
1238     for (pass = 0, total=0; pass < 4; pass++) {
1239         pass_stats[pass] = ShutdownVByPForPass_r(dp, pass);
1240         total += pass_stats[pass];
1241     }
1242
1243     /* end exclusive access */
1244     VVByPListEndExclusive_r(dp);
1245
1246     Log("VShutdownByPartition:  shut down %d volumes on %s (pass[0]=%d, pass[1]=%d, pass[2]=%d, pass[3]=%d)\n",
1247         total, VPartitionPath(dp), pass_stats[0], pass_stats[1], pass_stats[2], pass_stats[3]);
1248
1249     return retVal;
1250 }
1251
1252 /* internal shutdown functionality
1253  *
1254  * for multi-pass shutdown:
1255  * 0 to only "shutdown" {pre,un}attached and error state volumes
1256  * 1 to also shutdown attached volumes w/ volume header loaded
1257  * 2 to also shutdown attached volumes w/o volume header loaded
1258  * 3 to also shutdown exclusive state volumes 
1259  *
1260  * caller MUST hold exclusive access on the hash chain
1261  * because we drop vol_glock_mutex internally
1262  * 
1263  * this function is reentrant for passes 1--3 
1264  * (e.g. multiple threads can cooperate to 
1265  *  shutdown a partition mp-fast)
1266  *
1267  * pass 0 is not scaleable because the volume state data is
1268  * synchronized by vol_glock mutex, and the locking overhead
1269  * is too high to drop the lock long enough to do linked list
1270  * traversal
1271  */
1272 static int
1273 ShutdownVByPForPass_r(struct DiskPartition64 * dp, int pass)
1274 {
1275     struct rx_queue * q = queue_First(&dp->vol_list, rx_queue);
1276     register int i = 0;
1277
1278     while (ShutdownVolumeWalk_r(dp, pass, &q))
1279         i++;
1280
1281     return i;
1282 }
1283
1284 /* conditionally shutdown one volume on partition dp
1285  * returns 1 if a volume was shutdown in this pass,
1286  * 0 otherwise */
1287 static int
1288 ShutdownVolumeWalk_r(struct DiskPartition64 * dp, int pass,
1289                      struct rx_queue ** idx)
1290 {
1291     struct rx_queue *qp, *nqp;
1292     Volume * vp;
1293
1294     qp = *idx;
1295
1296     for (queue_ScanFrom(&dp->vol_list, qp, qp, nqp, rx_queue)) {
1297         vp = (Volume *) (((char *)qp) - offsetof(Volume, vol_list));
1298         
1299         switch (pass) {
1300         case 0:
1301             if ((V_attachState(vp) != VOL_STATE_UNATTACHED) &&
1302                 (V_attachState(vp) != VOL_STATE_ERROR) &&
1303                 (V_attachState(vp) != VOL_STATE_PREATTACHED)) {
1304                 break;
1305             }
1306         case 1:
1307             if ((V_attachState(vp) == VOL_STATE_ATTACHED) &&
1308                 (vp->header == NULL)) {
1309                 break;
1310             }
1311         case 2:
1312             if (VIsExclusiveState(V_attachState(vp))) {
1313                 break;
1314             }
1315         case 3:
1316             *idx = nqp;
1317             DeleteVolumeFromVByPList_r(vp);
1318             VShutdownVolume_r(vp);
1319             vp = NULL;
1320             return 1;
1321         }
1322     }
1323
1324     return 0;
1325 }
1326
1327 /*
1328  * shutdown a specific volume
1329  */
1330 /* caller MUST NOT hold a heavyweight ref on vp */
1331 int
1332 VShutdownVolume_r(Volume * vp)
1333 {
1334     int code;
1335
1336     VCreateReservation_r(vp);
1337
1338     if (LogLevel >= 5) {
1339         Log("VShutdownVolume_r:  vid=%u, device=%d, state=%hu\n",
1340             vp->hashid, vp->partition->device, V_attachState(vp));
1341     }
1342
1343     /* wait for other blocking ops to finish */
1344     VWaitExclusiveState_r(vp);
1345
1346     assert(VIsValidState(V_attachState(vp)));
1347     
1348     switch(V_attachState(vp)) {
1349     case VOL_STATE_SALVAGING:
1350         /* make sure salvager knows we don't want
1351          * the volume back */
1352         VCancelSalvage_r(vp, SALVSYNC_SHUTDOWN);
1353     case VOL_STATE_PREATTACHED:
1354     case VOL_STATE_ERROR:
1355         VChangeState_r(vp, VOL_STATE_UNATTACHED);
1356     case VOL_STATE_UNATTACHED:
1357         break;
1358     case VOL_STATE_GOING_OFFLINE:
1359     case VOL_STATE_SHUTTING_DOWN:
1360     case VOL_STATE_ATTACHED:
1361         code = VHold_r(vp);
1362         if (!code) {
1363             if (LogLevel >= 5)
1364                 Log("VShutdown:  Attempting to take volume %u offline.\n",
1365                     vp->hashid);
1366
1367             /* take the volume offline (drops reference count) */
1368             VOffline_r(vp, "File server was shut down");
1369         }
1370         break;
1371     }
1372     
1373     VCancelReservation_r(vp);
1374     vp = NULL;
1375     return 0;
1376 }
1377 #endif /* AFS_DEMAND_ATTACH_FS */
1378
1379
1380 /***************************************************/
1381 /* Header I/O routines                             */
1382 /***************************************************/
1383
1384 /* open a descriptor for the inode (h),
1385  * read in an on-disk structure into buffer (to) of size (size),
1386  * verify versionstamp in structure has magic (magic) and
1387  * optionally verify version (version) if (version) is nonzero
1388  */
1389 static void
1390 ReadHeader(Error * ec, IHandle_t * h, char *to, int size, bit32 magic,
1391            bit32 version)
1392 {
1393     struct versionStamp *vsn;
1394     FdHandle_t *fdP;
1395
1396     *ec = 0;
1397     if (h == NULL) {
1398         *ec = VSALVAGE;
1399         return;
1400     }
1401
1402     fdP = IH_OPEN(h);
1403     if (fdP == NULL) {
1404         *ec = VSALVAGE;
1405         return;
1406     }
1407
1408     if (FDH_SEEK(fdP, 0, SEEK_SET) < 0) {
1409         *ec = VSALVAGE;
1410         FDH_REALLYCLOSE(fdP);
1411         return;
1412     }
1413     vsn = (struct versionStamp *)to;
1414     if (FDH_READ(fdP, to, size) != size || vsn->magic != magic) {
1415         *ec = VSALVAGE;
1416         FDH_REALLYCLOSE(fdP);
1417         return;
1418     }
1419     FDH_CLOSE(fdP);
1420
1421     /* Check is conditional, in case caller wants to inspect version himself */
1422     if (version && vsn->version != version) {
1423         *ec = VSALVAGE;
1424     }
1425 }
1426
1427 void
1428 WriteVolumeHeader_r(Error * ec, Volume * vp)
1429 {
1430     IHandle_t *h = V_diskDataHandle(vp);
1431     FdHandle_t *fdP;
1432
1433     *ec = 0;
1434
1435     fdP = IH_OPEN(h);
1436     if (fdP == NULL) {
1437         *ec = VSALVAGE;
1438         return;
1439     }
1440     if (FDH_SEEK(fdP, 0, SEEK_SET) < 0) {
1441         *ec = VSALVAGE;
1442         FDH_REALLYCLOSE(fdP);
1443         return;
1444     }
1445     if (FDH_WRITE(fdP, (char *)&V_disk(vp), sizeof(V_disk(vp)))
1446         != sizeof(V_disk(vp))) {
1447         *ec = VSALVAGE;
1448         FDH_REALLYCLOSE(fdP);
1449         return;
1450     }
1451     FDH_CLOSE(fdP);
1452 }
1453
1454 /* VolumeHeaderToDisk
1455  * Allows for storing 64 bit inode numbers in on-disk volume header
1456  * file.
1457  */
1458 /* convert in-memory representation of a volume header to the
1459  * on-disk representation of a volume header */
1460 void
1461 VolumeHeaderToDisk(VolumeDiskHeader_t * dh, VolumeHeader_t * h)
1462 {
1463
1464     memset((char *)dh, 0, sizeof(VolumeDiskHeader_t));
1465     dh->stamp = h->stamp;
1466     dh->id = h->id;
1467     dh->parent = h->parent;
1468
1469 #ifdef AFS_64BIT_IOPS_ENV
1470     dh->volumeInfo_lo = (afs_int32) h->volumeInfo & 0xffffffff;
1471     dh->volumeInfo_hi = (afs_int32) (h->volumeInfo >> 32) & 0xffffffff;
1472     dh->smallVnodeIndex_lo = (afs_int32) h->smallVnodeIndex & 0xffffffff;
1473     dh->smallVnodeIndex_hi =
1474         (afs_int32) (h->smallVnodeIndex >> 32) & 0xffffffff;
1475     dh->largeVnodeIndex_lo = (afs_int32) h->largeVnodeIndex & 0xffffffff;
1476     dh->largeVnodeIndex_hi =
1477         (afs_int32) (h->largeVnodeIndex >> 32) & 0xffffffff;
1478     dh->linkTable_lo = (afs_int32) h->linkTable & 0xffffffff;
1479     dh->linkTable_hi = (afs_int32) (h->linkTable >> 32) & 0xffffffff;
1480 #else
1481     dh->volumeInfo_lo = h->volumeInfo;
1482     dh->smallVnodeIndex_lo = h->smallVnodeIndex;
1483     dh->largeVnodeIndex_lo = h->largeVnodeIndex;
1484     dh->linkTable_lo = h->linkTable;
1485 #endif
1486 }
1487
1488 /* DiskToVolumeHeader
1489  * Converts an on-disk representation of a volume header to
1490  * the in-memory representation of a volume header.
1491  *
1492  * Makes the assumption that AFS has *always* 
1493  * zero'd the volume header file so that high parts of inode
1494  * numbers are 0 in older (SGI EFS) volume header files.
1495  */
1496 void
1497 DiskToVolumeHeader(VolumeHeader_t * h, VolumeDiskHeader_t * dh)
1498 {
1499     memset((char *)h, 0, sizeof(VolumeHeader_t));
1500     h->stamp = dh->stamp;
1501     h->id = dh->id;
1502     h->parent = dh->parent;
1503
1504 #ifdef AFS_64BIT_IOPS_ENV
1505     h->volumeInfo =
1506         (Inode) dh->volumeInfo_lo | ((Inode) dh->volumeInfo_hi << 32);
1507
1508     h->smallVnodeIndex =
1509         (Inode) dh->smallVnodeIndex_lo | ((Inode) dh->
1510                                           smallVnodeIndex_hi << 32);
1511
1512     h->largeVnodeIndex =
1513         (Inode) dh->largeVnodeIndex_lo | ((Inode) dh->
1514                                           largeVnodeIndex_hi << 32);
1515     h->linkTable =
1516         (Inode) dh->linkTable_lo | ((Inode) dh->linkTable_hi << 32);
1517 #else
1518     h->volumeInfo = dh->volumeInfo_lo;
1519     h->smallVnodeIndex = dh->smallVnodeIndex_lo;
1520     h->largeVnodeIndex = dh->largeVnodeIndex_lo;
1521     h->linkTable = dh->linkTable_lo;
1522 #endif
1523 }
1524
1525
1526 /***************************************************/
1527 /* Volume Attachment routines                      */
1528 /***************************************************/
1529
1530 #ifdef AFS_DEMAND_ATTACH_FS
1531 /**
1532  * pre-attach a volume given its path.
1533  *
1534  * @param[out] ec         outbound error code
1535  * @param[in]  partition  partition path string
1536  * @param[in]  name       volume id string
1537  *
1538  * @return volume object pointer
1539  *
1540  * @note A pre-attached volume will only have its partition
1541  *       and hashid fields initialized.  At first call to 
1542  *       VGetVolume, the volume will be fully attached.
1543  *
1544  */
1545 Volume *
1546 VPreAttachVolumeByName(Error * ec, char *partition, char *name)
1547 {
1548     Volume * vp;
1549     VOL_LOCK;
1550     vp = VPreAttachVolumeByName_r(ec, partition, name);
1551     VOL_UNLOCK;
1552     return vp;
1553 }
1554
1555 /**
1556  * pre-attach a volume given its path.
1557  *
1558  * @param[out] ec         outbound error code
1559  * @param[in]  partition  path to vice partition
1560  * @param[in]  name       volume id string
1561  *
1562  * @return volume object pointer
1563  *
1564  * @pre VOL_LOCK held
1565  *
1566  * @internal volume package internal use only.
1567  */
1568 Volume *
1569 VPreAttachVolumeByName_r(Error * ec, char *partition, char *name)
1570 {
1571     return VPreAttachVolumeById_r(ec, 
1572                                   partition,
1573                                   VolumeNumber(name));
1574 }
1575
1576 /**
1577  * pre-attach a volume given its path and numeric volume id.
1578  *
1579  * @param[out] ec          error code return
1580  * @param[in]  partition   path to vice partition
1581  * @param[in]  volumeId    numeric volume id
1582  *
1583  * @return volume object pointer
1584  *
1585  * @pre VOL_LOCK held
1586  *
1587  * @internal volume package internal use only.
1588  */
1589 Volume *
1590 VPreAttachVolumeById_r(Error * ec, 
1591                        char * partition,
1592                        VolId volumeId)
1593 {
1594     Volume *vp;
1595     struct DiskPartition64 *partp;
1596
1597     *ec = 0;
1598
1599     assert(programType == fileServer);
1600
1601     if (!(partp = VGetPartition_r(partition, 0))) {
1602         *ec = VNOVOL;
1603         Log("VPreAttachVolumeById_r:  Error getting partition (%s)\n", partition);
1604         return NULL;
1605     }
1606
1607     vp = VLookupVolume_r(ec, volumeId, NULL);
1608     if (*ec) {
1609         return NULL;
1610     }
1611
1612     return VPreAttachVolumeByVp_r(ec, partp, vp, volumeId);
1613 }
1614
1615 /**
1616  * preattach a volume.
1617  *
1618  * @param[out] ec     outbound error code
1619  * @param[in]  partp  pointer to partition object
1620  * @param[in]  vp     pointer to volume object
1621  * @param[in]  vid    volume id
1622  *
1623  * @return volume object pointer
1624  *
1625  * @pre VOL_LOCK is held.
1626  *
1627  * @warning Returned volume object pointer does not have to
1628  *          equal the pointer passed in as argument vp.  There
1629  *          are potential race conditions which can result in
1630  *          the pointers having different values.  It is up to
1631  *          the caller to make sure that references are handled
1632  *          properly in this case.
1633  *
1634  * @note If there is already a volume object registered with
1635  *       the same volume id, its pointer MUST be passed as 
1636  *       argument vp.  Failure to do so will result in a silent
1637  *       failure to preattach.
1638  *
1639  * @internal volume package internal use only.
1640  */
1641 Volume * 
1642 VPreAttachVolumeByVp_r(Error * ec, 
1643                        struct DiskPartition64 * partp, 
1644                        Volume * vp,
1645                        VolId vid)
1646 {
1647     Volume *nvp = NULL;
1648
1649     *ec = 0;
1650
1651     /* check to see if pre-attach already happened */
1652     if (vp && 
1653         (V_attachState(vp) != VOL_STATE_UNATTACHED) && 
1654         (V_attachState(vp) != VOL_STATE_PREATTACHED) &&
1655         !VIsErrorState(V_attachState(vp))) {
1656         /*
1657          * pre-attach is a no-op in all but the following cases:
1658          *
1659          *   - volume is unattached
1660          *   - volume is in an error state
1661          *   - volume is pre-attached
1662          */
1663         Log("VPreattachVolumeByVp_r: volume %u not in quiescent state\n", vid);
1664         goto done;
1665     } else if (vp) {
1666         /* we're re-attaching a volume; clear out some old state */
1667         memset(&vp->salvage, 0, sizeof(struct VolumeOnlineSalvage));
1668
1669         if (V_partition(vp) != partp) {
1670             /* XXX potential race */
1671             DeleteVolumeFromVByPList_r(vp);
1672         }
1673     } else {
1674         /* if we need to allocate a new Volume struct,
1675          * go ahead and drop the vol glock, otherwise
1676          * do the basic setup synchronised, as it's
1677          * probably not worth dropping the lock */
1678         VOL_UNLOCK;
1679
1680         /* allocate the volume structure */
1681         vp = nvp = (Volume *) malloc(sizeof(Volume));
1682         assert(vp != NULL);
1683         memset(vp, 0, sizeof(Volume));
1684         queue_Init(&vp->vnode_list);
1685         assert(pthread_cond_init(&V_attachCV(vp), NULL) == 0);
1686     }
1687
1688     /* link the volume with its associated vice partition */
1689     vp->device = partp->device;
1690     vp->partition = partp;
1691
1692     vp->hashid = vid;
1693     vp->specialStatus = 0;
1694
1695     /* if we dropped the lock, reacquire the lock,
1696      * check for pre-attach races, and then add
1697      * the volume to the hash table */
1698     if (nvp) {
1699         VOL_LOCK;
1700         nvp = VLookupVolume_r(ec, vid, NULL);
1701         if (*ec) {
1702             free(vp);
1703             vp = NULL;
1704             goto done;
1705         } else if (nvp) { /* race detected */
1706             free(vp);
1707             vp = nvp;
1708             goto done;
1709         } else {
1710           /* hack to make up for VChangeState_r() decrementing 
1711            * the old state counter */
1712           VStats.state_levels[0]++;
1713         }
1714     }
1715
1716     /* put pre-attached volume onto the hash table
1717      * and bring it up to the pre-attached state */
1718     AddVolumeToHashTable(vp, vp->hashid);
1719     AddVolumeToVByPList_r(vp);
1720     VLRU_Init_Node_r(vp);
1721     VChangeState_r(vp, VOL_STATE_PREATTACHED);
1722
1723     if (LogLevel >= 5)
1724         Log("VPreAttachVolumeByVp_r:  volume %u pre-attached\n", vp->hashid);
1725
1726   done:
1727     if (*ec)
1728         return NULL;
1729     else
1730         return vp;
1731 }
1732 #endif /* AFS_DEMAND_ATTACH_FS */
1733
1734 /* Attach an existing volume, given its pathname, and return a
1735    pointer to the volume header information.  The volume also
1736    normally goes online at this time.  An offline volume
1737    must be reattached to make it go online */
1738 Volume *
1739 VAttachVolumeByName(Error * ec, char *partition, char *name, int mode)
1740 {
1741     Volume *retVal;
1742     VOL_LOCK;
1743     retVal = VAttachVolumeByName_r(ec, partition, name, mode);
1744     VOL_UNLOCK;
1745     return retVal;
1746 }
1747
1748 Volume *
1749 VAttachVolumeByName_r(Error * ec, char *partition, char *name, int mode)
1750 {
1751     register Volume *vp = NULL, *svp = NULL;
1752     int fd, n;
1753     struct afs_stat status;
1754     struct VolumeDiskHeader diskHeader;
1755     struct VolumeHeader iheader;
1756     struct DiskPartition64 *partp;
1757     char path[64];
1758     int isbusy = 0;
1759     VolId volumeId;
1760 #ifdef AFS_DEMAND_ATTACH_FS
1761     VolumeStats stats_save;
1762 #endif /* AFS_DEMAND_ATTACH_FS */
1763
1764     *ec = 0;
1765    
1766     volumeId = VolumeNumber(name);
1767
1768     if (!(partp = VGetPartition_r(partition, 0))) {
1769         *ec = VNOVOL;
1770         Log("VAttachVolume: Error getting partition (%s)\n", partition);
1771         goto done;
1772     }
1773
1774     if (programType == volumeUtility) {
1775         assert(VInit == 3);
1776         VLockPartition_r(partition);
1777     } else if (programType == fileServer) {
1778 #ifdef AFS_DEMAND_ATTACH_FS
1779         /* lookup the volume in the hash table */
1780         vp = VLookupVolume_r(ec, volumeId, NULL);
1781         if (*ec) {
1782             return NULL;
1783         }
1784
1785         if (vp) {
1786             /* save any counters that are supposed to
1787              * be monotonically increasing over the
1788              * lifetime of the fileserver */
1789             memcpy(&stats_save, &vp->stats, sizeof(VolumeStats));
1790         } else {
1791             memset(&stats_save, 0, sizeof(VolumeStats));
1792         }
1793
1794         /* if there's something in the hash table, and it's not
1795          * in the pre-attach state, then we may need to detach
1796          * it before proceeding */
1797         if (vp && (V_attachState(vp) != VOL_STATE_PREATTACHED)) {
1798             VCreateReservation_r(vp);
1799             VWaitExclusiveState_r(vp);
1800
1801             /* at this point state must be one of:
1802              *   - UNATTACHED
1803              *   - ATTACHED
1804              *   - SHUTTING_DOWN
1805              *   - GOING_OFFLINE
1806              *   - SALVAGING
1807              *   - ERROR
1808              */
1809
1810             if (vp->specialStatus == VBUSY)
1811                 isbusy = 1;
1812             
1813             /* if it's already attached, see if we can return it */
1814             if (V_attachState(vp) == VOL_STATE_ATTACHED) {
1815                 VGetVolumeByVp_r(ec, vp);
1816                 if (V_inUse(vp) == fileServer) {
1817                     VCancelReservation_r(vp);
1818                     return vp;
1819                 }
1820
1821                 /* otherwise, we need to detach, and attempt to re-attach */
1822                 VDetachVolume_r(ec, vp);
1823                 if (*ec) {
1824                     Log("VAttachVolume: Error detaching old volume instance (%s)\n", name);
1825                 }
1826             } else {
1827                 /* if it isn't fully attached, delete from the hash tables,
1828                    and let the refcounter handle the rest */
1829                 DeleteVolumeFromHashTable(vp);
1830                 DeleteVolumeFromVByPList_r(vp);
1831             }
1832
1833             VCancelReservation_r(vp);
1834             vp = NULL;
1835         }
1836
1837         /* pre-attach volume if it hasn't been done yet */
1838         if (!vp || 
1839             (V_attachState(vp) == VOL_STATE_UNATTACHED) ||
1840             (V_attachState(vp) == VOL_STATE_ERROR)) {
1841             svp = vp;
1842             vp = VPreAttachVolumeByVp_r(ec, partp, vp, volumeId);
1843             if (*ec) {
1844                 return NULL;
1845             }
1846         }
1847
1848         assert(vp != NULL);
1849
1850         /* handle pre-attach races 
1851          *
1852          * multiple threads can race to pre-attach a volume,
1853          * but we can't let them race beyond that
1854          * 
1855          * our solution is to let the first thread to bring
1856          * the volume into an exclusive state win; the other
1857          * threads just wait until it finishes bringing the
1858          * volume online, and then they do a vgetvolumebyvp
1859          */
1860         if (svp && (svp != vp)) {
1861             /* wait for other exclusive ops to finish */
1862             VCreateReservation_r(vp);
1863             VWaitExclusiveState_r(vp);
1864
1865             /* get a heavyweight ref, kill the lightweight ref, and return */
1866             VGetVolumeByVp_r(ec, vp);
1867             VCancelReservation_r(vp);
1868             return vp;
1869         }
1870
1871         /* at this point, we are chosen as the thread to do
1872          * demand attachment for this volume. all other threads
1873          * doing a getvolume on vp->hashid will block until we finish */
1874
1875         /* make sure any old header cache entries are invalidated
1876          * before proceeding */
1877         FreeVolumeHeader(vp);
1878
1879         VChangeState_r(vp, VOL_STATE_ATTACHING);
1880
1881         /* restore any saved counters */
1882         memcpy(&vp->stats, &stats_save, sizeof(VolumeStats));
1883 #else /* AFS_DEMAND_ATTACH_FS */
1884         vp = VGetVolume_r(ec, volumeId);
1885         if (vp) {
1886             if (V_inUse(vp) == fileServer)
1887                 return vp;
1888             if (vp->specialStatus == VBUSY)
1889                 isbusy = 1;
1890             VDetachVolume_r(ec, vp);
1891             if (*ec) {
1892                 Log("VAttachVolume: Error detaching volume (%s)\n", name);
1893             }
1894             vp = NULL;
1895         }
1896 #endif /* AFS_DEMAND_ATTACH_FS */
1897     }
1898
1899     *ec = 0;
1900     strcpy(path, VPartitionPath(partp));
1901
1902     VOL_UNLOCK;
1903
1904     strcat(path, "/");
1905     strcat(path, name);
1906     if ((fd = afs_open(path, O_RDONLY)) == -1 || afs_fstat(fd, &status) == -1) {
1907         Log("VAttachVolume: Failed to open %s (errno %d)\n", path, errno);
1908         if (fd > -1)
1909             close(fd);
1910         *ec = VNOVOL;
1911         VOL_LOCK;
1912         goto done;
1913     }
1914     n = read(fd, &diskHeader, sizeof(diskHeader));
1915     close(fd);
1916     if (n != sizeof(diskHeader)
1917         || diskHeader.stamp.magic != VOLUMEHEADERMAGIC) {
1918         Log("VAttachVolume: Error reading volume header %s\n", path);
1919         *ec = VSALVAGE;
1920         VOL_LOCK;
1921         goto done;
1922     }
1923     if (diskHeader.stamp.version != VOLUMEHEADERVERSION) {
1924         Log("VAttachVolume: Volume %s, version number is incorrect; volume needs salvaged\n", path);
1925         *ec = VSALVAGE;
1926         VOL_LOCK;
1927         goto done;
1928     }
1929
1930     DiskToVolumeHeader(&iheader, &diskHeader);
1931 #ifdef FSSYNC_BUILD_CLIENT
1932     if (programType == volumeUtility && mode != V_SECRETLY && mode != V_PEEK) {
1933         VOL_LOCK;
1934         if (FSYNC_VolOp(iheader.id, partition, FSYNC_VOL_NEEDVOLUME, mode, NULL)
1935             != SYNC_OK) {
1936             Log("VAttachVolume: attach of volume %u apparently denied by file server\n", iheader.id);
1937             *ec = VNOVOL;       /* XXXX */
1938             goto done;
1939         }
1940         VOL_UNLOCK;
1941     }
1942 #endif
1943
1944     if (!vp) {
1945       vp = (Volume *) calloc(1, sizeof(Volume));
1946       assert(vp != NULL);
1947       vp->device = partp->device;
1948       vp->partition = partp;
1949       queue_Init(&vp->vnode_list);
1950 #ifdef AFS_DEMAND_ATTACH_FS
1951       assert(pthread_cond_init(&V_attachCV(vp), NULL) == 0);
1952 #endif /* AFS_DEMAND_ATTACH_FS */
1953     }
1954
1955     /* attach2 is entered without any locks, and returns
1956      * with vol_glock_mutex held */
1957     vp = attach2(ec, volumeId, path, &iheader, partp, vp, isbusy, mode);
1958
1959     if (programType == volumeUtility && vp) {
1960         if ((mode == V_VOLUPD) || (VolumeWriteable(vp) && (mode == V_CLONE))) {
1961             /* mark volume header as in use so that volser crashes lead to a
1962              * salvage attempt */
1963             VUpdateVolume_r(ec, vp, 0);
1964         }
1965 #ifdef AFS_DEMAND_ATTACH_FS
1966         /* for dafs, we should tell the fileserver, except for V_PEEK
1967          * where we know it is not necessary */
1968         if (mode == V_PEEK) {
1969             vp->needsPutBack = 0;
1970         } else {
1971             vp->needsPutBack = 1;
1972         }
1973 #else /* !AFS_DEMAND_ATTACH_FS */
1974         /* duplicate computation in fssync.c about whether the server
1975          * takes the volume offline or not.  If the volume isn't
1976          * offline, we must not return it when we detach the volume,
1977          * or the server will abort */
1978         if (mode == V_READONLY || mode == V_PEEK
1979             || (!VolumeWriteable(vp) && (mode == V_CLONE || mode == V_DUMP)))
1980             vp->needsPutBack = 0;
1981         else
1982             vp->needsPutBack = 1;
1983 #endif /* !AFS_DEMAND_ATTACH_FS */
1984     }
1985     /* OK, there's a problem here, but one that I don't know how to
1986      * fix right now, and that I don't think should arise often.
1987      * Basically, we should only put back this volume to the server if
1988      * it was given to us by the server, but since we don't have a vp,
1989      * we can't run the VolumeWriteable function to find out as we do
1990      * above when computing vp->needsPutBack.  So we send it back, but
1991      * there's a path in VAttachVolume on the server which may abort
1992      * if this volume doesn't have a header.  Should be pretty rare
1993      * for all of that to happen, but if it does, probably the right
1994      * fix is for the server to allow the return of readonly volumes
1995      * that it doesn't think are really checked out. */
1996 #ifdef FSSYNC_BUILD_CLIENT
1997     if (programType == volumeUtility && vp == NULL &&
1998         mode != V_SECRETLY && mode != V_PEEK) {
1999         FSYNC_VolOp(iheader.id, partition, FSYNC_VOL_ON, 0, NULL);
2000     } else 
2001 #endif
2002     if (programType == fileServer && vp) {
2003 #ifdef AFS_DEMAND_ATTACH_FS
2004         /* 
2005          * we can get here in cases where we don't "own"
2006          * the volume (e.g. volume owned by a utility).
2007          * short circuit around potential disk header races.
2008          */
2009         if (V_attachState(vp) != VOL_STATE_ATTACHED) {
2010             goto done;
2011         }
2012 #endif
2013         V_needsCallback(vp) = 0;
2014 #ifdef  notdef
2015         if (VInit >= 2 && V_BreakVolumeCallbacks) {
2016             Log("VAttachVolume: Volume %u was changed externally; breaking callbacks\n", V_id(vp));
2017             (*V_BreakVolumeCallbacks) (V_id(vp));
2018         }
2019 #endif
2020         VUpdateVolume_r(ec, vp, 0);
2021         if (*ec) {
2022             Log("VAttachVolume: Error updating volume\n");
2023             if (vp)
2024                 VPutVolume_r(vp);
2025             goto done;
2026         }
2027         if (VolumeWriteable(vp) && V_dontSalvage(vp) == 0) {
2028 #ifndef AFS_DEMAND_ATTACH_FS
2029             /* This is a hack: by temporarily setting the incore
2030              * dontSalvage flag ON, the volume will be put back on the
2031              * Update list (with dontSalvage OFF again).  It will then
2032              * come back in N minutes with DONT_SALVAGE eventually
2033              * set.  This is the way that volumes that have never had
2034              * it set get it set; or that volumes that have been
2035              * offline without DONT SALVAGE having been set also
2036              * eventually get it set */
2037             V_dontSalvage(vp) = DONT_SALVAGE;
2038 #endif /* !AFS_DEMAND_ATTACH_FS */
2039             VAddToVolumeUpdateList_r(ec, vp);
2040             if (*ec) {
2041                 Log("VAttachVolume: Error adding volume to update list\n");
2042                 if (vp)
2043                     VPutVolume_r(vp);
2044                 goto done;
2045             }
2046         }
2047         if (LogLevel)
2048             Log("VOnline:  volume %u (%s) attached and online\n", V_id(vp),
2049                 V_name(vp));
2050     }
2051
2052   done:
2053     if (programType == volumeUtility) {
2054         VUnlockPartition_r(partition);
2055     }
2056     if (*ec) {
2057 #ifdef AFS_DEMAND_ATTACH_FS
2058         /* attach failed; make sure we're in error state */
2059         if (vp && !VIsErrorState(V_attachState(vp))) {
2060             VChangeState_r(vp, VOL_STATE_ERROR);
2061         }
2062 #endif /* AFS_DEMAND_ATTACH_FS */
2063         return NULL;
2064     } else {
2065         return vp;
2066     }
2067 }
2068
2069 #ifdef AFS_DEMAND_ATTACH_FS
2070 /* VAttachVolumeByVp_r
2071  *
2072  * finish attaching a volume that is
2073  * in a less than fully attached state
2074  */
2075 /* caller MUST hold a ref count on vp */
2076 static Volume *
2077 VAttachVolumeByVp_r(Error * ec, Volume * vp, int mode)
2078 {
2079     char name[VMAXPATHLEN];
2080     int fd, n, reserve = 0;
2081     struct afs_stat status;
2082     struct VolumeDiskHeader diskHeader;
2083     struct VolumeHeader iheader;
2084     struct DiskPartition64 *partp;
2085     char path[64];
2086     int isbusy = 0;
2087     VolId volumeId;
2088     Volume * nvp;
2089     VolumeStats stats_save;
2090     *ec = 0;
2091
2092     /* volume utility should never call AttachByVp */
2093     assert(programType == fileServer);
2094    
2095     volumeId = vp->hashid;
2096     partp = vp->partition;
2097     VolumeExternalName_r(volumeId, name, sizeof(name));
2098
2099
2100     /* if another thread is performing a blocking op, wait */
2101     VWaitExclusiveState_r(vp);
2102
2103     memcpy(&stats_save, &vp->stats, sizeof(VolumeStats));
2104
2105     /* if it's already attached, see if we can return it */
2106     if (V_attachState(vp) == VOL_STATE_ATTACHED) {
2107         VGetVolumeByVp_r(ec, vp);
2108         if (V_inUse(vp) == fileServer) {
2109             return vp;
2110         } else {
2111             if (vp->specialStatus == VBUSY)
2112                 isbusy = 1;
2113             VDetachVolume_r(ec, vp);
2114             if (*ec) {
2115                 Log("VAttachVolume: Error detaching volume (%s)\n", name);
2116             }
2117             vp = NULL;
2118         }
2119     }
2120
2121     /* pre-attach volume if it hasn't been done yet */
2122     if (!vp || 
2123         (V_attachState(vp) == VOL_STATE_UNATTACHED) ||
2124         (V_attachState(vp) == VOL_STATE_ERROR)) {
2125         nvp = VPreAttachVolumeByVp_r(ec, partp, vp, volumeId);
2126         if (*ec) {
2127             return NULL;
2128         }
2129         if (nvp != vp) {
2130             reserve = 1;
2131             VCreateReservation_r(nvp);
2132             vp = nvp;
2133         }
2134     }
2135     
2136     assert(vp != NULL);
2137     VChangeState_r(vp, VOL_STATE_ATTACHING);
2138
2139     /* restore monotonically increasing stats */
2140     memcpy(&vp->stats, &stats_save, sizeof(VolumeStats));
2141
2142     *ec = 0;
2143
2144
2145     /* compute path to disk header, 
2146      * read in header, 
2147      * and verify magic and version stamps */
2148     strcpy(path, VPartitionPath(partp));
2149
2150     VOL_UNLOCK;
2151
2152     strcat(path, "/");
2153     strcat(path, name);
2154     if ((fd = afs_open(path, O_RDONLY)) == -1 || afs_fstat(fd, &status) == -1) {
2155         Log("VAttachVolume: Failed to open %s (errno %d)\n", path, errno);
2156         if (fd > -1)
2157             close(fd);
2158         *ec = VNOVOL;
2159         VOL_LOCK;
2160         goto done;
2161     }
2162     n = read(fd, &diskHeader, sizeof(diskHeader));
2163     close(fd);
2164     if (n != sizeof(diskHeader)
2165         || diskHeader.stamp.magic != VOLUMEHEADERMAGIC) {
2166         Log("VAttachVolume: Error reading volume header %s\n", path);
2167         *ec = VSALVAGE;
2168         VOL_LOCK;
2169         goto done;
2170     }
2171     if (diskHeader.stamp.version != VOLUMEHEADERVERSION) {
2172         Log("VAttachVolume: Volume %s, version number is incorrect; volume needs salvaged\n", path);
2173         *ec = VSALVAGE;
2174         VOL_LOCK;
2175         goto done;
2176     }
2177
2178     /* convert on-disk header format to in-memory header format */
2179     DiskToVolumeHeader(&iheader, &diskHeader);
2180
2181     /* do volume attach
2182      *
2183      * NOTE: attach2 is entered without any locks, and returns
2184      * with vol_glock_mutex held */
2185     vp = attach2(ec, volumeId, path, &iheader, partp, vp, isbusy, mode);
2186
2187     /*
2188      * the event that an error was encountered, or
2189      * the volume was not brought to an attached state
2190      * for any reason, skip to the end.  We cannot
2191      * safely call VUpdateVolume unless we "own" it.
2192      */
2193     if (*ec || 
2194         (vp == NULL) ||
2195         (V_attachState(vp) != VOL_STATE_ATTACHED)) {
2196         goto done;
2197     }
2198
2199     V_needsCallback(vp) = 0;
2200     VUpdateVolume_r(ec, vp, 0);
2201     if (*ec) {
2202         Log("VAttachVolume: Error updating volume %u\n", vp->hashid);
2203         VPutVolume_r(vp);
2204         goto done;
2205     }
2206     if (VolumeWriteable(vp) && V_dontSalvage(vp) == 0) {
2207 #ifndef AFS_DEMAND_ATTACH_FS
2208         /* This is a hack: by temporarily setting the incore
2209          * dontSalvage flag ON, the volume will be put back on the
2210          * Update list (with dontSalvage OFF again).  It will then
2211          * come back in N minutes with DONT_SALVAGE eventually
2212          * set.  This is the way that volumes that have never had
2213          * it set get it set; or that volumes that have been
2214          * offline without DONT SALVAGE having been set also
2215          * eventually get it set */
2216         V_dontSalvage(vp) = DONT_SALVAGE;
2217 #endif /* !AFS_DEMAND_ATTACH_FS */
2218         VAddToVolumeUpdateList_r(ec, vp);
2219         if (*ec) {
2220             Log("VAttachVolume: Error adding volume %u to update list\n", vp->hashid);
2221             if (vp)
2222                 VPutVolume_r(vp);
2223             goto done;
2224         }
2225     }
2226     if (LogLevel)
2227         Log("VOnline:  volume %u (%s) attached and online\n", V_id(vp),
2228             V_name(vp));
2229   done:
2230     if (reserve) {
2231         VCancelReservation_r(nvp);
2232         reserve = 0;
2233     }
2234     if (*ec && (*ec != VOFFLINE) && (*ec != VSALVAGE)) {
2235         if (vp && !VIsErrorState(V_attachState(vp))) {
2236             VChangeState_r(vp, VOL_STATE_ERROR);
2237         }
2238         return NULL;
2239     } else {
2240         return vp;
2241     }
2242 }
2243 #endif /* AFS_DEMAND_ATTACH_FS */
2244
2245 /*
2246  * called without any locks held
2247  * returns with vol_glock_mutex held
2248  */
2249 private Volume * 
2250 attach2(Error * ec, VolId volumeId, char *path, register struct VolumeHeader * header,
2251         struct DiskPartition64 * partp, register Volume * vp, int isbusy, int mode)
2252 {
2253     vp->specialStatus = (byte) (isbusy ? VBUSY : 0);
2254     IH_INIT(vp->vnodeIndex[vLarge].handle, partp->device, header->parent,
2255             header->largeVnodeIndex);
2256     IH_INIT(vp->vnodeIndex[vSmall].handle, partp->device, header->parent,
2257             header->smallVnodeIndex);
2258     IH_INIT(vp->diskDataHandle, partp->device, header->parent,
2259             header->volumeInfo);
2260     IH_INIT(vp->linkHandle, partp->device, header->parent, header->linkTable);
2261     vp->shuttingDown = 0;
2262     vp->goingOffline = 0;
2263     vp->nUsers = 1;
2264 #ifdef AFS_DEMAND_ATTACH_FS
2265     vp->stats.last_attach = FT_ApproxTime();
2266     vp->stats.attaches++;
2267 #endif
2268
2269     VOL_LOCK;
2270     IncUInt64(&VStats.attaches);
2271     vp->cacheCheck = ++VolumeCacheCheck;
2272     /* just in case this ever rolls over */
2273     if (!vp->cacheCheck)
2274         vp->cacheCheck = ++VolumeCacheCheck;
2275     GetVolumeHeader(vp);
2276     VOL_UNLOCK;
2277
2278 #if defined(AFS_DEMAND_ATTACH_FS) && defined(FSSYNC_BUILD_CLIENT)
2279     /* demand attach changes the V_PEEK mechanism
2280      *
2281      * we can now suck the current disk data structure over
2282      * the fssync interface without going to disk
2283      *
2284      * (technically, we don't need to restrict this feature
2285      *  to demand attach fileservers.  However, I'm trying
2286      *  to limit the number of common code changes)
2287      */
2288     if (programType != fileServer && mode == V_PEEK) {
2289         SYNC_response res;
2290         res.payload.len = sizeof(VolumeDiskData);
2291         res.payload.buf = &vp->header->diskstuff;
2292
2293         if (FSYNC_VolOp(volumeId,
2294                         partp->name,
2295                         FSYNC_VOL_QUERY_HDR,
2296                         FSYNC_WHATEVER,
2297                         &res) == SYNC_OK) {
2298             goto disk_header_loaded;
2299         }
2300     }
2301 #endif /* AFS_DEMAND_ATTACH_FS && FSSYNC_BUILD_CLIENT */
2302     (void)ReadHeader(ec, V_diskDataHandle(vp), (char *)&V_disk(vp),
2303                      sizeof(V_disk(vp)), VOLUMEINFOMAGIC, VOLUMEINFOVERSION);
2304
2305 #ifdef AFS_DEMAND_ATTACH_FS
2306     /* update stats */
2307     VOL_LOCK;
2308     IncUInt64(&VStats.hdr_loads);
2309     IncUInt64(&vp->stats.hdr_loads);
2310     VOL_UNLOCK;
2311 #endif /* AFS_DEMAND_ATTACH_FS */
2312     
2313     if (*ec) {
2314         Log("VAttachVolume: Error reading diskDataHandle vol header %s; error=%u\n", path, *ec);
2315     }
2316
2317  disk_header_loaded:
2318
2319 #ifdef AFS_DEMAND_ATTACH_FS
2320     if (!*ec) {
2321
2322         /* check for pending volume operations */
2323         if (vp->pending_vol_op) {
2324             /* see if the pending volume op requires exclusive access */
2325             if (!VVolOpLeaveOnline_r(vp, vp->pending_vol_op)) {
2326                 /* mark the volume down */
2327                 *ec = VOFFLINE;
2328                 VChangeState_r(vp, VOL_STATE_UNATTACHED);
2329                 if (V_offlineMessage(vp)[0] == '\0')
2330                     strlcpy(V_offlineMessage(vp),
2331                             "A volume utility is running.", 
2332                             sizeof(V_offlineMessage(vp)));
2333                 V_offlineMessage(vp)[sizeof(V_offlineMessage(vp)) - 1] = '\0';
2334
2335                 /* check to see if we should set the specialStatus flag */
2336                 if (VVolOpSetVBusy_r(vp, vp->pending_vol_op)) {
2337                     vp->specialStatus = VBUSY;
2338                 }
2339             }
2340         }
2341
2342         V_attachFlags(vp) |= VOL_HDR_LOADED;
2343         vp->stats.last_hdr_load = vp->stats.last_attach;
2344     }
2345 #endif /* AFS_DEMAND_ATTACH_FS */
2346
2347     if (!*ec) {
2348         struct IndexFileHeader iHead;
2349
2350 #if OPENAFS_VOL_STATS
2351         /*
2352          * We just read in the diskstuff part of the header.  If the detailed
2353          * volume stats area has not yet been initialized, we should bzero the
2354          * area and mark it as initialized.
2355          */
2356         if (!(V_stat_initialized(vp))) {
2357             memset((char *)(V_stat_area(vp)), 0, VOL_STATS_BYTES);
2358             V_stat_initialized(vp) = 1;
2359         }
2360 #endif /* OPENAFS_VOL_STATS */
2361
2362         (void)ReadHeader(ec, vp->vnodeIndex[vSmall].handle,
2363                          (char *)&iHead, sizeof(iHead),
2364                          SMALLINDEXMAGIC, SMALLINDEXVERSION);
2365
2366         if (*ec) {
2367             Log("VAttachVolume: Error reading smallVnode vol header %s; error=%u\n", path, *ec);
2368         }
2369     }
2370
2371     if (!*ec) {
2372         struct IndexFileHeader iHead;
2373
2374         (void)ReadHeader(ec, vp->vnodeIndex[vLarge].handle,
2375                          (char *)&iHead, sizeof(iHead),
2376                          LARGEINDEXMAGIC, LARGEINDEXVERSION);
2377
2378         if (*ec) {
2379             Log("VAttachVolume: Error reading largeVnode vol header %s; error=%u\n", path, *ec);
2380         }
2381     }
2382
2383 #ifdef AFS_NAMEI_ENV
2384     if (!*ec) {
2385         struct versionStamp stamp;
2386
2387         (void)ReadHeader(ec, V_linkHandle(vp), (char *)&stamp,
2388                          sizeof(stamp), LINKTABLEMAGIC, LINKTABLEVERSION);
2389
2390         if (*ec) {
2391             Log("VAttachVolume: Error reading namei vol header %s; error=%u\n", path, *ec);
2392         }
2393     }
2394 #endif /* AFS_NAMEI_ENV */
2395
2396 #if defined(AFS_DEMAND_ATTACH_FS)
2397     if (*ec && ((*ec != VOFFLINE) || (V_attachState(vp) != VOL_STATE_UNATTACHED))) {
2398         VOL_LOCK;
2399         if (programType == fileServer) {
2400             VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_INVALIDATE_HEADER);
2401             vp->nUsers = 0;
2402         } else {
2403             Log("VAttachVolume: Error attaching volume %s; volume needs salvage; error=%u\n", path, *ec);
2404             FreeVolume(vp);
2405             *ec = VSALVAGE;
2406         }
2407         return NULL;
2408     } else if (*ec) {
2409         /* volume operation in progress */
2410         VOL_LOCK;
2411         return NULL;
2412     }
2413 #else /* AFS_DEMAND_ATTACH_FS */
2414     if (*ec) {
2415         Log("VAttachVolume: Error attaching volume %s; volume needs salvage; error=%u\n", path, *ec);
2416         VOL_LOCK;
2417         FreeVolume(vp);
2418         return NULL;
2419     }
2420 #endif /* AFS_DEMAND_ATTACH_FS */
2421
2422     if (V_needsSalvaged(vp)) {
2423         if (vp->specialStatus)
2424             vp->specialStatus = 0;
2425         VOL_LOCK;
2426 #if defined(AFS_DEMAND_ATTACH_FS)
2427         if (programType == fileServer) {
2428             VRequestSalvage_r(ec, vp, SALVSYNC_NEEDED, VOL_SALVAGE_INVALIDATE_HEADER);
2429             vp->nUsers = 0;
2430         } else {
2431             Log("VAttachVolume: volume salvage flag is ON for %s; volume needs salvage\n", path);
2432             FreeVolume(vp);
2433             *ec = VSALVAGE;
2434         }
2435 #else /* AFS_DEMAND_ATTACH_FS */
2436         FreeVolume(vp);
2437         *ec = VSALVAGE;
2438 #endif /* AFS_DEMAND_ATTACH_FS */
2439         return NULL;
2440     }
2441
2442     VOL_LOCK;
2443     if (programType == fileServer) {
2444 #ifndef FAST_RESTART
2445         if (V_inUse(vp) && VolumeWriteable(vp)) {
2446             if (!V_needsSalvaged(vp)) {
2447                 V_needsSalvaged(vp) = 1;
2448                 VUpdateVolume_r(ec, vp, 0);
2449             }
2450 #if defined(AFS_DEMAND_ATTACH_FS)
2451             VRequestSalvage_r(ec, vp, SALVSYNC_NEEDED, VOL_SALVAGE_INVALIDATE_HEADER);
2452             vp->nUsers = 0;
2453 #else /* AFS_DEMAND_ATTACH_FS */
2454             Log("VAttachVolume: volume %s needs to be salvaged; not attached.\n", path);
2455             FreeVolume(vp);
2456             *ec = VSALVAGE;
2457 #endif /* AFS_DEMAND_ATTACH_FS */
2458             return NULL;
2459         }
2460 #endif /* FAST_RESTART */
2461
2462         if (V_destroyMe(vp) == DESTROY_ME) {
2463 #if defined(AFS_DEMAND_ATTACH_FS)
2464             /* schedule a salvage so the volume goes away on disk */
2465             VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_INVALIDATE_HEADER);
2466             VChangeState_r(vp, VOL_STATE_ERROR);
2467             vp->nUsers = 0;
2468 #endif /* AFS_DEMAND_ATTACH_FS */
2469             FreeVolume(vp);
2470             Log("VAttachVolume: volume %s is junk; it should be destroyed at next salvage\n", path);
2471             *ec = VNOVOL;
2472             return NULL;
2473         }
2474     }
2475
2476     vp->nextVnodeUnique = V_uniquifier(vp);
2477     vp->vnodeIndex[vSmall].bitmap = vp->vnodeIndex[vLarge].bitmap = NULL;
2478 #ifndef BITMAP_LATER
2479     if (programType == fileServer && VolumeWriteable(vp)) {
2480         int i;
2481         for (i = 0; i < nVNODECLASSES; i++) {
2482             VGetBitmap_r(ec, vp, i);
2483             if (*ec) {
2484 #ifdef AFS_DEMAND_ATTACH_FS
2485                 VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_INVALIDATE_HEADER);
2486                 vp->nUsers = 0;
2487 #else /* AFS_DEMAND_ATTACH_FS */
2488                 FreeVolume(vp);
2489 #endif /* AFS_DEMAND_ATTACH_FS */
2490                 Log("VAttachVolume: error getting bitmap for volume (%s)\n",
2491                     path);
2492                 return NULL;
2493             }
2494         }
2495     }
2496 #endif /* BITMAP_LATER */
2497
2498     if (programType == fileServer) {
2499         if (vp->specialStatus)
2500             vp->specialStatus = 0;
2501         if (V_blessed(vp) && V_inService(vp) && !V_needsSalvaged(vp)) {
2502             V_inUse(vp) = fileServer;
2503             V_offlineMessage(vp)[0] = '\0';
2504         }
2505     } else {
2506         V_inUse(vp) = programType;
2507         V_checkoutMode(vp) = mode;
2508     }
2509
2510     AddVolumeToHashTable(vp, V_id(vp));
2511 #ifdef AFS_DEMAND_ATTACH_FS
2512     if ((programType != fileServer) ||
2513         (V_inUse(vp) == fileServer)) {
2514         AddVolumeToVByPList_r(vp);
2515         VLRU_Add_r(vp);
2516         VChangeState_r(vp, VOL_STATE_ATTACHED);
2517     } else {
2518         VChangeState_r(vp, VOL_STATE_UNATTACHED);
2519     }
2520 #endif
2521     return vp;
2522 }
2523
2524 /* Attach an existing volume.
2525    The volume also normally goes online at this time.
2526    An offline volume must be reattached to make it go online.
2527  */
2528
2529 Volume *
2530 VAttachVolume(Error * ec, VolumeId volumeId, int mode)
2531 {
2532     Volume *retVal;
2533     VOL_LOCK;
2534     retVal = VAttachVolume_r(ec, volumeId, mode);
2535     VOL_UNLOCK;
2536     return retVal;
2537 }
2538
2539 Volume *
2540 VAttachVolume_r(Error * ec, VolumeId volumeId, int mode)
2541 {
2542     char *part, *name;
2543     VGetVolumePath(ec, volumeId, &part, &name);
2544     if (*ec) {
2545         register Volume *vp;
2546         Error error;
2547         vp = VGetVolume_r(&error, volumeId);
2548         if (vp) {
2549             assert(V_inUse(vp) == 0);
2550             VDetachVolume_r(ec, vp);
2551         }
2552         return NULL;
2553     }
2554     return VAttachVolumeByName_r(ec, part, name, mode);
2555 }
2556
2557 /* Increment a reference count to a volume, sans context swaps.  Requires
2558  * possibly reading the volume header in from the disk, since there's
2559  * an invariant in the volume package that nUsers>0 ==> vp->header is valid.
2560  *
2561  * N.B. This call can fail if we can't read in the header!!  In this case
2562  * we still guarantee we won't context swap, but the ref count won't be
2563  * incremented (otherwise we'd violate the invariant).
2564  */
2565 /* NOTE: with the demand attach fileserver extensions, the global lock
2566  * is dropped within VHold */
2567 #ifdef AFS_DEMAND_ATTACH_FS
2568 static int
2569 VHold_r(register Volume * vp)
2570 {
2571     Error error;
2572
2573     VCreateReservation_r(vp);
2574     VWaitExclusiveState_r(vp);
2575
2576     LoadVolumeHeader(&error, vp);
2577     if (error) {
2578         VCancelReservation_r(vp);
2579         return error;
2580     }
2581     vp->nUsers++;
2582     VCancelReservation_r(vp);
2583     return 0;
2584 }
2585 #else /* AFS_DEMAND_ATTACH_FS */
2586 static int
2587 VHold_r(register Volume * vp)
2588 {
2589     Error error;
2590
2591     LoadVolumeHeader(&error, vp);
2592     if (error)
2593         return error;
2594     vp->nUsers++;
2595     return 0;
2596 }
2597 #endif /* AFS_DEMAND_ATTACH_FS */
2598
2599 static int
2600 VHold(register Volume * vp)
2601 {
2602     int retVal;
2603     VOL_LOCK;
2604     retVal = VHold_r(vp);
2605     VOL_UNLOCK;
2606     return retVal;
2607 }
2608
2609
2610 /***************************************************/
2611 /* get and put volume routines                     */
2612 /***************************************************/
2613
2614 /**
2615  * put back a heavyweight reference to a volume object.
2616  *
2617  * @param[in] vp  volume object pointer
2618  *
2619  * @pre VOL_LOCK held
2620  *
2621  * @post heavyweight volume reference put back.
2622  *       depending on state, volume may have been taken offline,
2623  *       detached, salvaged, freed, etc.
2624  *
2625  * @internal volume package internal use only
2626  */
2627 void
2628 VPutVolume_r(register Volume * vp)
2629 {
2630     assert(--vp->nUsers >= 0);
2631     if (vp->nUsers == 0) {
2632         VCheckOffline(vp);
2633         ReleaseVolumeHeader(vp->header);
2634 #ifdef AFS_DEMAND_ATTACH_FS
2635         if (!VCheckDetach(vp)) {
2636             VCheckSalvage(vp);
2637             VCheckFree(vp);
2638         }
2639 #else /* AFS_DEMAND_ATTACH_FS */
2640         VCheckDetach(vp);
2641 #endif /* AFS_DEMAND_ATTACH_FS */
2642     }
2643 }
2644
2645 void
2646 VPutVolume(register Volume * vp)
2647 {
2648     VOL_LOCK;
2649     VPutVolume_r(vp);
2650     VOL_UNLOCK;
2651 }
2652
2653
2654 /* Get a pointer to an attached volume.  The pointer is returned regardless
2655    of whether or not the volume is in service or on/off line.  An error
2656    code, however, is returned with an indication of the volume's status */
2657 Volume *
2658 VGetVolume(Error * ec, Error * client_ec, VolId volumeId)
2659 {
2660     Volume *retVal;
2661     VOL_LOCK;
2662     retVal = GetVolume(ec, client_ec, volumeId, NULL, 0);
2663     VOL_UNLOCK;
2664     return retVal;
2665 }
2666
2667 Volume *
2668 VGetVolume_r(Error * ec, VolId volumeId)
2669 {
2670     return GetVolume(ec, NULL, volumeId, NULL, 0);
2671 }
2672
2673 /* try to get a volume we've previously looked up */
2674 /* for demand attach fs, caller MUST NOT hold a ref count on vp */
2675 Volume * 
2676 VGetVolumeByVp_r(Error * ec, Volume * vp)
2677 {
2678     return GetVolume(ec, NULL, vp->hashid, vp, 0);
2679 }
2680
2681 /* private interface for getting a volume handle
2682  * volumeId must be provided.
2683  * hint is an optional parameter to speed up hash lookups
2684  * flags is not used at this time
2685  */
2686 /* for demand attach fs, caller MUST NOT hold a ref count on hint */
2687 static Volume *
2688 GetVolume(Error * ec, Error * client_ec, VolId volumeId, Volume * hint, int flags)
2689 {
2690     Volume *vp = hint;
2691     /* pull this profiling/debugging code out of regular builds */
2692 #ifdef notdef
2693 #define VGET_CTR_INC(x) x++
2694     unsigned short V0 = 0, V1 = 0, V2 = 0, V3 = 0, V5 = 0, V6 =
2695         0, V7 = 0, V8 = 0, V9 = 0;
2696     unsigned short V10 = 0, V11 = 0, V12 = 0, V13 = 0, V14 = 0, V15 = 0;
2697 #else
2698 #define VGET_CTR_INC(x)
2699 #endif
2700 #ifdef AFS_DEMAND_ATTACH_FS
2701     Volume *avp, * rvp = hint;
2702 #endif
2703
2704     /* 
2705      * if VInit is zero, the volume package dynamic
2706      * data structures have not been initialized yet,
2707      * and we must immediately return an error
2708      */
2709     if (VInit == 0) {
2710         vp = NULL;
2711         *ec = VOFFLINE;
2712         if (client_ec) {
2713             *client_ec = VOFFLINE;
2714         }
2715         goto not_inited;
2716     }
2717
2718 #ifdef AFS_DEMAND_ATTACH_FS
2719     if (rvp) {
2720         VCreateReservation_r(rvp);
2721     }
2722 #endif /* AFS_DEMAND_ATTACH_FS */
2723
2724     for (;;) {
2725         *ec = 0;
2726         if (client_ec)
2727             *client_ec = 0;
2728         VGET_CTR_INC(V0);
2729
2730         vp = VLookupVolume_r(ec, volumeId, vp);
2731         if (*ec) {
2732             vp = NULL;
2733             break;
2734         }
2735
2736 #ifdef AFS_DEMAND_ATTACH_FS
2737         if (rvp && (rvp != vp)) {
2738             /* break reservation on old vp */
2739             VCancelReservation_r(rvp);
2740             rvp = NULL;
2741         }
2742 #endif /* AFS_DEMAND_ATTACH_FS */
2743
2744         if (!vp) {
2745             VGET_CTR_INC(V1);
2746             if (VInit < 2) {
2747                 VGET_CTR_INC(V2);
2748                 /* Until we have reached an initialization level of 2
2749                  * we don't know whether this volume exists or not.
2750                  * We can't sleep and retry later because before a volume
2751                  * is attached, the caller tries to get it first.  Just
2752                  * return VOFFLINE and the caller can choose whether to
2753                  * retry the command or not. */
2754                 *ec = VOFFLINE;
2755                 break;
2756             }
2757
2758             *ec = VNOVOL;
2759             break;
2760         }
2761
2762         VGET_CTR_INC(V3);
2763         IncUInt64(&VStats.hdr_gets);
2764         
2765 #ifdef AFS_DEMAND_ATTACH_FS
2766         /* block if someone else is performing an exclusive op on this volume */
2767         if (rvp != vp) {
2768             rvp = vp;
2769             VCreateReservation_r(rvp);
2770         }
2771         VWaitExclusiveState_r(vp);
2772
2773         /* short circuit with VNOVOL in the following circumstances:
2774          *
2775          *   - VOL_STATE_ERROR
2776          *   - VOL_STATE_SHUTTING_DOWN
2777          */
2778         if ((V_attachState(vp) == VOL_STATE_ERROR) ||
2779             (V_attachState(vp) == VOL_STATE_SHUTTING_DOWN)) {
2780             *ec = VNOVOL;
2781             vp = NULL;
2782             break;
2783         }
2784
2785         /*
2786          * short circuit with VOFFLINE in the following circumstances:
2787          *
2788          *   - VOL_STATE_UNATTACHED
2789          */
2790        if (V_attachState(vp) == VOL_STATE_UNATTACHED) {
2791            if (vp->specialStatus) {
2792                *ec = vp->specialStatus;
2793            } else {
2794                *ec = VOFFLINE;
2795            }
2796            vp = NULL;
2797            break;
2798        }
2799
2800         /* allowable states:
2801          *   - PREATTACHED
2802          *   - ATTACHED
2803          *   - GOING_OFFLINE
2804          *   - SALVAGING
2805          */
2806
2807         if (vp->salvage.requested) {
2808             VUpdateSalvagePriority_r(vp);
2809         }
2810
2811         if (V_attachState(vp) == VOL_STATE_PREATTACHED) {
2812             avp = VAttachVolumeByVp_r(ec, vp, 0);
2813             if (avp) {
2814                 if (vp != avp) {
2815                     /* VAttachVolumeByVp_r can return a pointer
2816                      * != the vp passed to it under certain
2817                      * conditions; make sure we don't leak
2818                      * reservations if that happens */
2819                     vp = avp;
2820                     VCancelReservation_r(rvp);
2821                     rvp = avp;
2822                     VCreateReservation_r(rvp);
2823                 }
2824                 VPutVolume_r(avp);
2825             }
2826             if (*ec) {
2827                 int endloop = 0;
2828                 switch (*ec) {
2829                 case VSALVAGING:
2830                     break;
2831                 case VOFFLINE:
2832                     if (!vp->pending_vol_op) {
2833                         endloop = 1;
2834                     }
2835                     break;
2836                 default:
2837                     *ec = VNOVOL;
2838                     endloop = 1;
2839                 }
2840                 if (endloop) {
2841                     vp = NULL;
2842                     break;
2843                 }
2844             }
2845         }
2846
2847         if ((V_attachState(vp) == VOL_STATE_SALVAGING) ||
2848             (*ec == VSALVAGING)) {
2849             if (client_ec) {
2850                 /* see CheckVnode() in afsfileprocs.c for an explanation
2851                  * of this error code logic */
2852                 afs_uint32 now = FT_ApproxTime();
2853                 if ((vp->stats.last_salvage + (10 * 60)) >= now) {
2854                     *client_ec = VBUSY;
2855                 } else {
2856                     *client_ec = VRESTARTING;
2857                 }
2858             }
2859             *ec = VSALVAGING;
2860             vp = NULL;
2861             break;
2862         }
2863 #endif
2864
2865         LoadVolumeHeader(ec, vp);
2866         if (*ec) {
2867             VGET_CTR_INC(V6);
2868             /* Only log the error if it was a totally unexpected error.  Simply
2869              * a missing inode is likely to be caused by the volume being deleted */
2870             if (errno != ENXIO || LogLevel)
2871                 Log("Volume %u: couldn't reread volume header\n",
2872                     vp->hashid);
2873 #ifdef AFS_DEMAND_ATTACH_FS
2874             if (programType == fileServer) {
2875                 VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_INVALIDATE_HEADER);
2876             } else {
2877                 FreeVolume(vp);
2878                 vp = NULL;
2879             }
2880 #else /* AFS_DEMAND_ATTACH_FS */
2881             FreeVolume(vp);
2882             vp = NULL;
2883 #endif /* AFS_DEMAND_ATTACH_FS */
2884             break;
2885         }
2886
2887 #ifdef AFS_DEMAND_ATTACH_FS
2888         /*
2889          * this test MUST happen after the volume header is loaded
2890          */
2891         if (vp->pending_vol_op && !VVolOpLeaveOnline_r(vp, vp->pending_vol_op)) {
2892            /* 
2893             * volume cannot remain online during this volume operation.
2894             * notify client. 
2895             */
2896            if (vp->specialStatus) {
2897                /*
2898                 * special status codes outrank normal VOFFLINE code
2899                 */
2900                *ec = vp->specialStatus;
2901                if (client_ec) {
2902                    *client_ec = vp->specialStatus;
2903                }
2904            } else {
2905                if (client_ec) {
2906                    /* see CheckVnode() in afsfileprocs.c for an explanation
2907                     * of this error code logic */
2908                    afs_uint32 now = FT_ApproxTime();
2909                    if ((vp->stats.last_vol_op + (10 * 60)) >= now) {
2910                        *client_ec = VBUSY;
2911                    } else {
2912                        *client_ec = VRESTARTING;
2913                    }
2914                }
2915                *ec = VOFFLINE;
2916            }
2917            ReleaseVolumeHeader(vp->header);
2918            vp = NULL;
2919            break;
2920         }
2921 #endif /* AFS_DEMAND_ATTACH_FS */
2922         
2923         VGET_CTR_INC(V7);
2924         if (vp->shuttingDown) {
2925             VGET_CTR_INC(V8);
2926             *ec = VNOVOL;
2927             vp = NULL;
2928             break;
2929         }
2930
2931         if (programType == fileServer) {
2932             VGET_CTR_INC(V9);
2933             if (vp->goingOffline) {
2934                 VGET_CTR_INC(V10);
2935 #ifdef AFS_DEMAND_ATTACH_FS
2936                 /* wait for the volume to go offline */
2937                 if (V_attachState(vp) == VOL_STATE_GOING_OFFLINE) {
2938                     VWaitStateChange_r(vp);
2939                 }
2940 #elif defined(AFS_PTHREAD_ENV)
2941                 VOL_CV_WAIT(&vol_put_volume_cond);
2942 #else /* AFS_PTHREAD_ENV */
2943                 LWP_WaitProcess(VPutVolume);
2944 #endif /* AFS_PTHREAD_ENV */
2945                 continue;
2946             }
2947             if (vp->specialStatus) {
2948                 VGET_CTR_INC(V11);
2949                 *ec = vp->specialStatus;
2950             } else if (V_inService(vp) == 0 || V_blessed(vp) == 0) {
2951                 VGET_CTR_INC(V12);
2952                 *ec = VNOVOL;
2953             } else if (V_inUse(vp) == 0) {
2954                 VGET_CTR_INC(V13);
2955                 *ec = VOFFLINE;
2956             } else {
2957                 VGET_CTR_INC(V14);
2958             }
2959         }
2960         break;
2961     }
2962     VGET_CTR_INC(V15);
2963
2964 #ifdef AFS_DEMAND_ATTACH_FS
2965     /* if no error, bump nUsers */
2966     if (vp) {
2967         vp->nUsers++;
2968         VLRU_UpdateAccess_r(vp);
2969     }
2970     if (rvp) {
2971         VCancelReservation_r(rvp);
2972         rvp = NULL;
2973     }
2974     if (client_ec && !*client_ec) {
2975         *client_ec = *ec;
2976     }
2977 #else /* AFS_DEMAND_ATTACH_FS */
2978     /* if no error, bump nUsers */
2979     if (vp) {
2980         vp->nUsers++;
2981     }
2982     if (client_ec) {
2983         *client_ec = *ec;
2984     }
2985 #endif /* AFS_DEMAND_ATTACH_FS */
2986
2987  not_inited:
2988     assert(vp || *ec);
2989     return vp;
2990 }
2991
2992
2993 /***************************************************/
2994 /* Volume offline/detach routines                  */
2995 /***************************************************/
2996
2997 /* caller MUST hold a heavyweight ref on vp */
2998 #ifdef AFS_DEMAND_ATTACH_FS
2999 void
3000 VTakeOffline_r(register Volume * vp)
3001 {
3002     Error error;
3003
3004     assert(vp->nUsers > 0);
3005     assert(programType == fileServer);
3006
3007     VCreateReservation_r(vp);
3008     VWaitExclusiveState_r(vp);
3009
3010     vp->goingOffline = 1;
3011     V_needsSalvaged(vp) = 1;
3012
3013     VRequestSalvage_r(&error, vp, SALVSYNC_ERROR, 0);
3014     VCancelReservation_r(vp);
3015 }
3016 #else /* AFS_DEMAND_ATTACH_FS */
3017 void
3018 VTakeOffline_r(register Volume * vp)
3019 {
3020     assert(vp->nUsers > 0);
3021     assert(programType == fileServer);
3022
3023     vp->goingOffline = 1;
3024     V_needsSalvaged(vp) = 1;
3025 }
3026 #endif /* AFS_DEMAND_ATTACH_FS */
3027
3028 void
3029 VTakeOffline(register Volume * vp)
3030 {
3031     VOL_LOCK;
3032     VTakeOffline_r(vp);
3033     VOL_UNLOCK;
3034 }
3035
3036 /**
3037  * force a volume offline.
3038  *
3039  * @param[in] vp     volume object pointer
3040  * @param[in] flags  flags (see note below)
3041  *
3042  * @note the flag VOL_FORCEOFF_NOUPDATE is a recursion control flag
3043  *       used when VUpdateVolume_r needs to call VForceOffline_r
3044  *       (which in turn would normally call VUpdateVolume_r)
3045  *
3046  * @see VUpdateVolume_r
3047  *
3048  * @pre VOL_LOCK must be held.
3049  *      for DAFS, caller must hold ref.
3050  *
3051  * @note for DAFS, it _is safe_ to call this function from an
3052  *       exclusive state
3053  *
3054  * @post needsSalvaged flag is set.
3055  *       for DAFS, salvage is requested.
3056  *       no further references to the volume through the volume 
3057  *       package will be honored.
3058  *       all file descriptor and vnode caches are invalidated.
3059  *
3060  * @warning this is a heavy-handed interface.  it results in
3061  *          a volume going offline regardless of the current 
3062  *          reference count state.
3063  *
3064  * @internal  volume package internal use only
3065  */
3066 void
3067 VForceOffline_r(Volume * vp, int flags)
3068 {
3069     Error error;
3070     if (!V_inUse(vp)) {
3071 #ifdef AFS_DEMAND_ATTACH_FS
3072         VChangeState_r(vp, VOL_STATE_ERROR);
3073 #endif
3074         return;
3075     }
3076
3077     strcpy(V_offlineMessage(vp),
3078            "Forced offline due to internal error: volume needs to be salvaged");
3079     Log("Volume %u forced offline:  it needs salvaging!\n", V_id(vp));
3080
3081     V_inUse(vp) = 0;
3082     vp->goingOffline = 0;
3083     V_needsSalvaged(vp) = 1;
3084     if (!(flags & VOL_FORCEOFF_NOUPDATE)) {
3085         VUpdateVolume_r(&error, vp, VOL_UPDATE_NOFORCEOFF);
3086     }
3087
3088 #ifdef AFS_DEMAND_ATTACH_FS
3089     VRequestSalvage_r(&error, vp, SALVSYNC_ERROR, VOL_SALVAGE_INVALIDATE_HEADER);
3090 #endif /* AFS_DEMAND_ATTACH_FS */
3091
3092 #ifdef AFS_PTHREAD_ENV
3093     assert(pthread_cond_broadcast(&vol_put_volume_cond) == 0);
3094 #else /* AFS_PTHREAD_ENV */
3095     LWP_NoYieldSignal(VPutVolume);
3096 #endif /* AFS_PTHREAD_ENV */
3097
3098     VReleaseVolumeHandles_r(vp);
3099 }
3100
3101 /**
3102  * force a volume offline.
3103  *
3104  * @param[in] vp  volume object pointer
3105  *
3106  * @see VForceOffline_r
3107  */
3108 void
3109 VForceOffline(Volume * vp)
3110 {
3111     VOL_LOCK;
3112     VForceOffline_r(vp, 0);
3113     VOL_UNLOCK;
3114 }
3115
3116 /* The opposite of VAttachVolume.  The volume header is written to disk, with
3117    the inUse bit turned off.  A copy of the header is maintained in memory,
3118    however (which is why this is VOffline, not VDetach).
3119  */
3120 void
3121 VOffline_r(Volume * vp, char *message)
3122 {
3123     Error error;
3124     VolumeId vid = V_id(vp);
3125
3126     assert(programType != volumeUtility);
3127     if (!V_inUse(vp)) {
3128         VPutVolume_r(vp);
3129         return;
3130     }
3131     if (V_offlineMessage(vp)[0] == '\0')
3132         strncpy(V_offlineMessage(vp), message, sizeof(V_offlineMessage(vp)));
3133     V_offlineMessage(vp)[sizeof(V_offlineMessage(vp)) - 1] = '\0';
3134
3135     vp->goingOffline = 1;
3136 #ifdef AFS_DEMAND_ATTACH_FS
3137     VChangeState_r(vp, VOL_STATE_GOING_OFFLINE);
3138     VCreateReservation_r(vp);
3139     VPutVolume_r(vp);
3140
3141     /* wait for the volume to go offline */
3142     if (V_attachState(vp) == VOL_STATE_GOING_OFFLINE) {
3143         VWaitStateChange_r(vp);
3144     }
3145     VCancelReservation_r(vp);
3146 #else /* AFS_DEMAND_ATTACH_FS */
3147     VPutVolume_r(vp);
3148     vp = VGetVolume_r(&error, vid);     /* Wait for it to go offline */
3149     if (vp)                     /* In case it was reattached... */
3150         VPutVolume_r(vp);
3151 #endif /* AFS_DEMAND_ATTACH_FS */
3152 }
3153
3154 void
3155 VOffline(Volume * vp, char *message)
3156 {
3157     VOL_LOCK;
3158     VOffline_r(vp, message);
3159     VOL_UNLOCK;
3160 }
3161
3162 /* This gets used for the most part by utility routines that don't want
3163  * to keep all the volume headers around.  Generally, the file server won't
3164  * call this routine, because then the offline message in the volume header
3165  * (or other information) won't be available to clients. For NAMEI, also
3166  * close the file handles.  However, the fileserver does call this during
3167  * an attach following a volume operation.
3168  */
3169 void
3170 VDetachVolume_r(Error * ec, Volume * vp)
3171 {
3172     VolumeId volume;
3173     struct DiskPartition64 *tpartp;
3174     int notifyServer, useDone = FSYNC_VOL_ON;
3175
3176     *ec = 0;                    /* always "succeeds" */
3177     if (programType == volumeUtility) {
3178         notifyServer = vp->needsPutBack;
3179         if (V_destroyMe(vp) == DESTROY_ME)
3180             useDone = FSYNC_VOL_DONE;
3181 #ifdef AFS_DEMAND_ATTACH_FS
3182         else if (!V_blessed(vp) || !V_inService(vp))
3183             useDone = FSYNC_VOL_LEAVE_OFF;
3184 #endif
3185     }
3186     tpartp = vp->partition;
3187     volume = V_id(vp);
3188     DeleteVolumeFromHashTable(vp);
3189     vp->shuttingDown = 1;
3190 #ifdef AFS_DEMAND_ATTACH_FS
3191     DeleteVolumeFromVByPList_r(vp);
3192     VLRU_Delete_r(vp);
3193     VChangeState_r(vp, VOL_STATE_SHUTTING_DOWN);
3194 #endif /* AFS_DEMAND_ATTACH_FS */
3195     VPutVolume_r(vp);
3196     /* Will be detached sometime in the future--this is OK since volume is offline */
3197
3198     /* XXX the following code should really be moved to VCheckDetach() since the volume
3199      * is not technically detached until the refcounts reach zero
3200      */
3201 #ifdef FSSYNC_BUILD_CLIENT
3202     if (programType == volumeUtility && notifyServer) {
3203         /* 
3204          * Note:  The server is not notified in the case of a bogus volume 
3205          * explicitly to make it possible to create a volume, do a partial 
3206          * restore, then abort the operation without ever putting the volume 
3207          * online.  This is essential in the case of a volume move operation 
3208          * between two partitions on the same server.  In that case, there 
3209          * would be two instances of the same volume, one of them bogus, 
3210          * which the file server would attempt to put on line 
3211          */
3212         FSYNC_VolOp(volume, tpartp->name, useDone, 0, NULL);
3213         /* XXX this code path is only hit by volume utilities, thus
3214          * V_BreakVolumeCallbacks will always be NULL.  if we really
3215          * want to break callbacks in this path we need to use FSYNC_VolOp() */
3216 #ifdef notdef
3217         /* Dettaching it so break all callbacks on it */
3218         if (V_BreakVolumeCallbacks) {
3219             Log("volume %u detached; breaking all call backs\n", volume);
3220             (*V_BreakVolumeCallbacks) (volume);
3221         }
3222 #endif
3223     }
3224 #endif /* FSSYNC_BUILD_CLIENT */
3225 }
3226
3227 void
3228 VDetachVolume(Error * ec, Volume * vp)
3229 {
3230     VOL_LOCK;
3231     VDetachVolume_r(ec, vp);
3232     VOL_UNLOCK;
3233 }
3234
3235
3236 /***************************************************/
3237 /* Volume fd/inode handle closing routines         */
3238 /***************************************************/
3239
3240 /* For VDetachVolume, we close all cached file descriptors, but keep
3241  * the Inode handles in case we need to read from a busy volume.
3242  */
3243 /* for demand attach, caller MUST hold ref count on vp */
3244 static void
3245 VCloseVolumeHandles_r(Volume * vp)
3246 {
3247 #ifdef AFS_DEMAND_ATTACH_FS
3248     VolState state_save;
3249
3250     state_save = VChangeState_r(vp, VOL_STATE_OFFLINING);
3251 #endif
3252
3253     /* demand attach fs
3254      *
3255      * XXX need to investigate whether we can perform
3256      * DFlushVolume outside of vol_glock_mutex... 
3257      *
3258      * VCloseVnodeFiles_r drops the glock internally */
3259     DFlushVolume(V_id(vp));
3260     VCloseVnodeFiles_r(vp);
3261
3262 #ifdef AFS_DEMAND_ATTACH_FS
3263     VOL_UNLOCK;
3264 #endif
3265
3266     /* Too time consuming and unnecessary for the volserver */
3267     if (programType != volumeUtility) {
3268         IH_CONDSYNC(vp->vnodeIndex[vLarge].handle);
3269         IH_CONDSYNC(vp->vnodeIndex[vSmall].handle);
3270         IH_CONDSYNC(vp->diskDataHandle);
3271 #ifdef AFS_NT40_ENV
3272         IH_CONDSYNC(vp->linkHandle);
3273 #endif /* AFS_NT40_ENV */
3274     }
3275
3276     IH_REALLYCLOSE(vp->vnodeIndex[vLarge].handle);
3277     IH_REALLYCLOSE(vp->vnodeIndex[vSmall].handle);
3278     IH_REALLYCLOSE(vp->diskDataHandle);
3279     IH_REALLYCLOSE(vp->linkHandle);
3280
3281 #ifdef AFS_DEMAND_ATTACH_FS
3282     VOL_LOCK;
3283     VChangeState_r(vp, state_save);
3284 #endif
3285 }
3286
3287 /* For both VForceOffline and VOffline, we close all relevant handles.
3288  * For VOffline, if we re-attach the volume, the files may possible be
3289  * different than before. 
3290  */
3291 /* for demand attach, caller MUST hold a ref count on vp */
3292 static void
3293 VReleaseVolumeHandles_r(Volume * vp)
3294 {
3295 #ifdef AFS_DEMAND_ATTACH_FS
3296     VolState state_save;
3297
3298     state_save = VChangeState_r(vp, VOL_STATE_DETACHING);
3299 #endif
3300
3301     /* XXX need to investigate whether we can perform
3302      * DFlushVolume outside of vol_glock_mutex... */
3303     DFlushVolume(V_id(vp));
3304
3305     VReleaseVnodeFiles_r(vp); /* releases the glock internally */
3306
3307 #ifdef AFS_DEMAND_ATTACH_FS
3308     VOL_UNLOCK;
3309 #endif
3310
3311     /* Too time consuming and unnecessary for the volserver */
3312     if (programType != volumeUtility) {
3313         IH_CONDSYNC(vp->vnodeIndex[vLarge].handle);
3314         IH_CONDSYNC(vp->vnodeIndex[vSmall].handle);
3315         IH_CONDSYNC(vp->diskDataHandle);
3316 #ifdef AFS_NT40_ENV
3317         IH_CONDSYNC(vp->linkHandle);
3318 #endif /* AFS_NT40_ENV */
3319     }
3320
3321     IH_RELEASE(vp->vnodeIndex[vLarge].handle);
3322     IH_RELEASE(vp->vnodeIndex[vSmall].handle);
3323     IH_RELEASE(vp->diskDataHandle);
3324     IH_RELEASE(vp->linkHandle);
3325
3326 #ifdef AFS_DEMAND_ATTACH_FS
3327     VOL_LOCK;
3328     VChangeState_r(vp, state_save);
3329 #endif
3330 }
3331
3332
3333 /***************************************************/
3334 /* Volume write and fsync routines                 */
3335 /***************************************************/
3336
3337 void
3338 VUpdateVolume_r(Error * ec, Volume * vp, int flags)
3339 {
3340 #ifdef AFS_DEMAND_ATTACH_FS
3341     VolState state_save;
3342
3343     if (flags & VOL_UPDATE_WAIT) {
3344         VCreateReservation_r(vp);
3345         VWaitExclusiveState_r(vp);
3346     }
3347 #endif
3348
3349     *ec = 0;
3350     if (programType == fileServer)
3351         V_uniquifier(vp) =
3352             (V_inUse(vp) ? V_nextVnodeUnique(vp) +
3353              200 : V_nextVnodeUnique(vp));
3354
3355 #ifdef AFS_DEMAND_ATTACH_FS
3356     state_save = VChangeState_r(vp, VOL_STATE_UPDATING);
3357     VOL_UNLOCK;
3358 #endif
3359
3360     WriteVolumeHeader_r(ec, vp);
3361
3362 #ifdef AFS_DEMAND_ATTACH_FS
3363     VOL_LOCK;
3364     VChangeState_r(vp, state_save);
3365     if (flags & VOL_UPDATE_WAIT) {
3366         VCancelReservation_r(vp);
3367     }
3368 #endif
3369
3370     if (*ec) {
3371         Log("VUpdateVolume: error updating volume header, volume %u (%s)\n",
3372             V_id(vp), V_name(vp));
3373         /* try to update on-disk header, 
3374          * while preventing infinite recursion */
3375         if (!(flags & VOL_UPDATE_NOFORCEOFF)) {
3376             VForceOffline_r(vp, VOL_FORCEOFF_NOUPDATE);
3377         }
3378     }
3379 }
3380
3381 void
3382 VUpdateVolume(Error * ec, Volume * vp)
3383 {
3384     VOL_LOCK;
3385     VUpdateVolume_r(ec, vp, VOL_UPDATE_WAIT);
3386     VOL_UNLOCK;
3387 }
3388
3389 void
3390 VSyncVolume_r(Error * ec, Volume * vp, int flags)
3391 {
3392     FdHandle_t *fdP;
3393     int code;
3394 #ifdef AFS_DEMAND_ATTACH_FS
3395     VolState state_save;
3396 #endif
3397
3398     if (flags & VOL_SYNC_WAIT) {
3399         VUpdateVolume_r(ec, vp, VOL_UPDATE_WAIT);
3400     } else {
3401         VUpdateVolume_r(ec, vp, 0);
3402     }
3403     if (!*ec) {
3404 #ifdef AFS_DEMAND_ATTACH_FS
3405         state_save = VChangeState_r(vp, VOL_STATE_UPDATING);
3406         VOL_UNLOCK;
3407 #endif
3408         fdP = IH_OPEN(V_diskDataHandle(vp));
3409         assert(fdP != NULL);
3410         code = FDH_SYNC(fdP);
3411         assert(code == 0);
3412         FDH_CLOSE(fdP);
3413 #ifdef AFS_DEMAND_ATTACH_FS
3414         VOL_LOCK;
3415         VChangeState_r(vp, state_save);
3416 #endif
3417     }
3418 }
3419
3420 void
3421 VSyncVolume(Error * ec, Volume * vp)
3422 {
3423     VOL_LOCK;
3424     VSyncVolume_r(ec, vp, VOL_SYNC_WAIT);
3425     VOL_UNLOCK;
3426 }
3427
3428
3429 /***************************************************/
3430 /* Volume dealloaction routines                    */
3431 /***************************************************/
3432
3433 #ifdef AFS_DEMAND_ATTACH_FS
3434 static void
3435 FreeVolume(Volume * vp)
3436 {
3437     /* free the heap space, iff it's safe.
3438      * otherwise, pull it out of the hash table, so it
3439      * will get deallocated when all refs to it go away */
3440     if (!VCheckFree(vp)) {
3441         DeleteVolumeFromHashTable(vp);
3442         DeleteVolumeFromVByPList_r(vp);
3443
3444         /* make sure we invalidate the header cache entry */
3445         FreeVolumeHeader(vp);
3446     }
3447 }
3448 #endif /* AFS_DEMAND_ATTACH_FS */
3449
3450 static void
3451 ReallyFreeVolume(Volume * vp)
3452 {
3453     int i;
3454     if (!vp)
3455         return;
3456 #ifdef AFS_DEMAND_ATTACH_FS
3457     /* debug */
3458     VChangeState_r(vp, VOL_STATE_FREED);
3459     if (vp->pending_vol_op)
3460         free(vp->pending_vol_op);
3461 #endif /* AFS_DEMAND_ATTACH_FS */
3462     for (i = 0; i < nVNODECLASSES; i++)
3463         if (vp->vnodeIndex[i].bitmap)
3464             free(vp->vnodeIndex[i].bitmap);
3465     FreeVolumeHeader(vp);
3466 #ifndef AFS_DEMAND_ATTACH_FS
3467     DeleteVolumeFromHashTable(vp);
3468 #endif /* AFS_DEMAND_ATTACH_FS */
3469     free(vp);
3470 }
3471
3472 /* check to see if we should shutdown this volume
3473  * returns 1 if volume was freed, 0 otherwise */
3474 #ifdef AFS_DEMAND_ATTACH_FS
3475 static int
3476 VCheckDetach(register Volume * vp)
3477 {
3478     int ret = 0;
3479     Error ec = 0;
3480
3481     if (vp->nUsers || vp->nWaiters)
3482         return ret;
3483
3484     if (vp->shuttingDown) {
3485         ret = 1;
3486         if ((programType != fileServer) &&
3487             (V_inUse(vp) == programType) &&
3488             ((V_checkoutMode(vp) == V_VOLUPD) ||
3489              ((V_checkoutMode(vp) == V_CLONE) &&
3490               (VolumeWriteable(vp))))) {
3491             V_inUse(vp) = 0;
3492             VUpdateVolume_r(&ec, vp, VOL_UPDATE_NOFORCEOFF);
3493             if (ec) {
3494                 Log("VCheckDetach: volume header update for volume %u "
3495                     "failed with errno %d\n", vp->hashid, errno);
3496             }
3497         }
3498         VReleaseVolumeHandles_r(vp);
3499         VCheckSalvage(vp);
3500         ReallyFreeVolume(vp);
3501         if (programType == fileServer) {
3502             assert(pthread_cond_broadcast(&vol_put_volume_cond) == 0);
3503         }
3504     }
3505     return ret;
3506 }
3507 #else /* AFS_DEMAND_ATTACH_FS */
3508 static int
3509 VCheckDetach(register Volume * vp)
3510 {
3511     int ret = 0;
3512     Error ec = 0;
3513
3514     if (vp->nUsers)
3515         return ret;
3516
3517     if (vp->shuttingDown) {
3518         ret = 1;
3519         if ((programType != fileServer) &&
3520             (V_inUse(vp) == programType) &&
3521             ((V_checkoutMode(vp) == V_VOLUPD) ||
3522              ((V_checkoutMode(vp) == V_CLONE) &&
3523               (VolumeWriteable(vp))))) {
3524             V_inUse(vp) = 0;
3525             VUpdateVolume_r(&ec, vp, VOL_UPDATE_NOFORCEOFF);
3526             if (ec) {
3527                 Log("VCheckDetach: volume header update for volume %u failed with errno %d\n",
3528                     vp->hashid, errno);
3529             }
3530         }
3531         VReleaseVolumeHandles_r(vp);
3532         ReallyFreeVolume(vp);
3533         if (programType == fileServer) {
3534 #if defined(AFS_PTHREAD_ENV)
3535             assert(pthread_cond_broadcast(&vol_put_volume_cond) == 0);
3536 #else /* AFS_PTHREAD_ENV */
3537             LWP_NoYieldSignal(VPutVolume);
3538 #endif /* AFS_PTHREAD_ENV */
3539         }
3540     }
3541     return ret;
3542 }
3543 #endif /* AFS_DEMAND_ATTACH_FS */
3544
3545 /* check to see if we should offline this volume
3546  * return 1 if volume went offline, 0 otherwise */
3547 #ifdef AFS_DEMAND_ATTACH_FS
3548 static int
3549 VCheckOffline(register Volume * vp)
3550 {
3551     Volume * rvp = NULL;
3552     int ret = 0;
3553
3554     if (vp->goingOffline && !vp->nUsers) {
3555         Error error;
3556         assert(programType == fileServer);
3557         assert((V_attachState(vp) != VOL_STATE_ATTACHED) &&
3558                (V_attachState(vp) != VOL_STATE_FREED) &&
3559                (V_attachState(vp) != VOL_STATE_PREATTACHED) &&
3560                (V_attachState(vp) != VOL_STATE_UNATTACHED));
3561
3562         /* valid states:
3563          *
3564          * VOL_STATE_GOING_OFFLINE
3565          * VOL_STATE_SHUTTING_DOWN
3566          * VIsErrorState(V_attachState(vp))
3567          * VIsExclusiveState(V_attachState(vp))
3568          */
3569
3570         VCreateReservation_r(vp);
3571         VChangeState_r(vp, VOL_STATE_OFFLINING);
3572
3573         ret = 1;
3574         /* must clear the goingOffline flag before we drop the glock */
3575         vp->goingOffline = 0;
3576         V_inUse(vp) = 0;
3577
3578         VLRU_Delete_r(vp);
3579
3580         /* perform async operations */
3581         VUpdateVolume_r(&error, vp, 0);
3582         VCloseVolumeHandles_r(vp);
3583
3584         if (LogLevel) {
3585             Log("VOffline: Volume %u (%s) is now offline", V_id(vp),
3586                 V_name(vp));
3587             if (V_offlineMessage(vp)[0])
3588                 Log(" (%s)", V_offlineMessage(vp));
3589             Log("\n");
3590         }
3591
3592         /* invalidate the volume header cache entry */
3593         FreeVolumeHeader(vp);
3594
3595         /* if nothing changed state to error or salvaging,
3596          * drop state to unattached */
3597         if (!VIsErrorState(V_attachState(vp))) {
3598             VChangeState_r(vp, VOL_STATE_UNATTACHED);
3599         }
3600         VCancelReservation_r(vp);
3601         /* no usage of vp is safe beyond this point */
3602     }
3603     return ret;
3604 }
3605 #else /* AFS_DEMAND_ATTACH_FS */
3606 static int
3607 VCheckOffline(register Volume * vp)
3608 {
3609     Volume * rvp = NULL;
3610     int ret = 0;
3611
3612     if (vp->goingOffline && !vp->nUsers) {
3613         Error error;
3614         assert(programType == fileServer);
3615
3616         ret = 1;
3617         vp->goingOffline = 0;
3618         V_inUse(vp) = 0;
3619         VUpdateVolume_r(&error, vp, 0);
3620         VCloseVolumeHandles_r(vp);
3621         if (LogLevel) {
3622             Log("VOffline: Volume %u (%s) is now offline", V_id(vp),
3623                 V_name(vp));
3624             if (V_offlineMessage(vp)[0])
3625                 Log(" (%s)", V_offlineMessage(vp));
3626             Log("\n");
3627         }
3628         FreeVolumeHeader(vp);
3629 #ifdef AFS_PTHREAD_ENV
3630         assert(pthread_cond_broadcast(&vol_put_volume_cond) == 0);
3631 #else /* AFS_PTHREAD_ENV */
3632         LWP_NoYieldSignal(VPutVolume);
3633 #endif /* AFS_PTHREAD_ENV */
3634     }
3635     return ret;
3636 }
3637 #endif /* AFS_DEMAND_ATTACH_FS */
3638
3639 /***************************************************/
3640 /* demand attach fs ref counting routines          */
3641 /***************************************************/
3642
3643 #ifdef AFS_DEMAND_ATTACH_FS
3644 /* the following two functions handle reference counting for
3645  * asynchronous operations on volume structs.
3646  *
3647  * their purpose is to prevent a VDetachVolume or VShutdown
3648  * from free()ing the Volume struct during an async i/o op */
3649
3650 /* register with the async volume op ref counter */
3651 /* VCreateReservation_r moved into inline code header because it 
3652  * is now needed in vnode.c -- tkeiser 11/20/2007 
3653  */
3654
3655 /**
3656  * decrement volume-package internal refcount.
3657  *
3658  * @param vp  volume object pointer
3659  *
3660  * @internal volume package internal use only
3661  *
3662  * @pre 
3663  *    @arg VOL_LOCK is held
3664  *    @arg lightweight refcount held
3665  *
3666  * @post volume waiters refcount is decremented; volume may
3667  *       have been deallocated/shutdown/offlined/salvaged/
3668  *       whatever during the process
3669  *
3670  * @warning once you have tossed your last reference (you can acquire
3671  *          lightweight refs recursively) it is NOT SAFE to reference
3672  *          a volume object pointer ever again
3673  *
3674  * @see VCreateReservation_r
3675  *
3676  * @note DEMAND_ATTACH_FS only
3677  */
3678 void
3679 VCancelReservation_r(Volume * vp)
3680 {
3681     assert(--vp->nWaiters >= 0);
3682     if (vp->nWaiters == 0) {
3683         VCheckOffline(vp);
3684         if (!VCheckDetach(vp)) {
3685             VCheckSalvage(vp);
3686             VCheckFree(vp);
3687         }
3688     }
3689 }
3690
3691 /* check to see if we should free this volume now
3692  * return 1 if volume was freed, 0 otherwise */
3693 static int
3694 VCheckFree(Volume * vp)
3695 {
3696     int ret = 0;
3697     if ((vp->nUsers == 0) &&
3698         (vp->nWaiters == 0) &&
3699         !(V_attachFlags(vp) & (VOL_IN_HASH | 
3700                                VOL_ON_VBYP_LIST | 
3701                                VOL_IS_BUSY |
3702                                VOL_ON_VLRU))) {
3703         ReallyFreeVolume(vp);
3704         ret = 1;
3705     }
3706     return ret;
3707 }
3708 #endif /* AFS_DEMAND_ATTACH_FS */
3709
3710
3711 /***************************************************/
3712 /* online volume operations routines               */
3713 /***************************************************/
3714
3715 #ifdef AFS_DEMAND_ATTACH_FS
3716 /**
3717  * register a volume operation on a given volume.
3718  *
3719  * @param[in] vp       volume object
3720  * @param[in] vopinfo  volume operation info object
3721  *
3722  * @pre VOL_LOCK is held
3723  *
3724  * @post volume operation info object attached to volume object.
3725  *       volume operation statistics updated.
3726  *
3727  * @note by "attached" we mean a copy of the passed in object is made
3728  *
3729  * @internal volume package internal use only
3730  */
3731 int
3732 VRegisterVolOp_r(Volume * vp, FSSYNC_VolOp_info * vopinfo)
3733 {
3734     FSSYNC_VolOp_info * info;
3735
3736     /* attach a vol op info node to the volume struct */
3737     info = (FSSYNC_VolOp_info *) malloc(sizeof(FSSYNC_VolOp_info));
3738     assert(info != NULL);
3739     memcpy(info, vopinfo, sizeof(FSSYNC_VolOp_info));
3740     vp->pending_vol_op = info;
3741
3742     /* update stats */
3743     vp->stats.last_vol_op = FT_ApproxTime();
3744     vp->stats.vol_ops++;
3745     IncUInt64(&VStats.vol_ops);
3746
3747     return 0;
3748 }
3749
3750 /**
3751  * deregister the volume operation attached to this volume.
3752  *
3753  * @param[in] vp  volume object pointer
3754  *
3755  * @pre VOL_LOCK is held
3756  *
3757  * @post the volume operation info object is detached from the volume object
3758  *
3759  * @internal volume package internal use only
3760  */
3761 int
3762 VDeregisterVolOp_r(Volume * vp)
3763 {
3764     if (vp->pending_vol_op) {
3765         free(vp->pending_vol_op);
3766         vp->pending_vol_op = NULL;
3767     }
3768     return 0;
3769 }
3770 #endif /* AFS_DEMAND_ATTACH_FS */
3771
3772 /**
3773  * determine whether it is safe to leave a volume online during
3774  * the volume operation described by the vopinfo object.
3775  *
3776  * @param[in] vp        volume object
3777  * @param[in] vopinfo   volume operation info object
3778  *
3779  * @return whether it is safe to leave volume online
3780  *    @retval 0  it is NOT SAFE to leave the volume online
3781  *    @retval 1  it is safe to leave the volume online during the operation
3782  *
3783  * @pre
3784  *    @arg VOL_LOCK is held
3785  *    @arg disk header attached to vp (heavyweight ref on vp will guarantee
3786  *         this condition is met)
3787  *
3788  * @internal volume package internal use only
3789  */
3790 int
3791 VVolOpLeaveOnline_r(Volume * vp, FSSYNC_VolOp_info * vopinfo)
3792 {
3793     return (vopinfo->com.command == FSYNC_VOL_NEEDVOLUME &&
3794             (vopinfo->com.reason == V_READONLY ||
3795              (!VolumeWriteable(vp) &&
3796               (vopinfo->com.reason == V_CLONE ||
3797                vopinfo->com.reason == V_DUMP))));
3798 }
3799
3800 /**
3801  * determine whether VBUSY should be set during this volume operation.
3802  *
3803  * @param[in] vp        volume object
3804  * @param[in] vopinfo   volume operation info object
3805  *
3806  * @return whether VBUSY should be set
3807  *   @retval 0  VBUSY does NOT need to be set
3808  *   @retval 1  VBUSY SHOULD be set
3809  *
3810  * @pre VOL_LOCK is held
3811  *
3812  * @internal volume package internal use only
3813  */
3814 int
3815 VVolOpSetVBusy_r(Volume * vp, FSSYNC_VolOp_info * vopinfo)
3816 {
3817     return (vopinfo->com.command == FSYNC_VOL_NEEDVOLUME &&
3818             (vopinfo->com.reason == V_CLONE ||
3819              vopinfo->com.reason == V_DUMP));
3820 }
3821
3822
3823 /***************************************************/
3824 /* online salvager routines                        */
3825 /***************************************************/
3826 #if defined(AFS_DEMAND_ATTACH_FS)
3827 #define SALVAGE_PRIO_UPDATE_INTERVAL 3      /**< number of seconds between prio updates */
3828 #define SALVAGE_COUNT_MAX 16                /**< number of online salvages we
3829                                              *   allow before moving the volume
3830                                              *   into a permanent error state
3831                                              *
3832                                              *   once this threshold is reached,
3833                                              *   the operator will have to manually
3834                                              *   issue a 'bos salvage' to bring
3835                                              *   the volume back online
3836                                              */
3837
3838 /**
3839  * check whether a salvage needs to be performed on this volume.
3840  *
3841  * @param[in] vp   pointer to volume object
3842  *
3843  * @return status code
3844  *    @retval 0 no salvage scheduled
3845  *    @retval 1 a salvage has been scheduled with the salvageserver
3846  *
3847  * @pre VOL_LOCK is held
3848  *
3849  * @post if salvage request flag is set and nUsers and nWaiters are zero,
3850  *       then a salvage will be requested
3851  *
3852  * @note this is one of the event handlers called by VCancelReservation_r
3853  *
3854  * @see VCancelReservation_r
3855  *
3856  * @internal volume package internal use only.
3857  */
3858 static int
3859 VCheckSalvage(register Volume * vp)
3860 {
3861     int ret = 0;
3862 #ifdef SALVSYNC_BUILD_CLIENT
3863     if (vp->nUsers || vp->nWaiters)
3864         return ret;
3865     if (vp->salvage.requested) {
3866         VScheduleSalvage_r(vp);
3867         ret = 1;
3868     }
3869 #endif /* SALVSYNC_BUILD_CLIENT */
3870     return ret;
3871 }
3872
3873 /**
3874  * request volume salvage.
3875  *
3876  * @param[out] ec      computed client error code
3877  * @param[in]  vp      volume object pointer
3878  * @param[in]  reason  reason code (passed to salvageserver via SALVSYNC)
3879  * @param[in]  flags   see flags note below
3880  *
3881  * @note flags:
3882  *       VOL_SALVAGE_INVALIDATE_HEADER causes volume header cache entry 
3883  *                                     to be invalidated.
3884  *
3885  * @pre VOL_LOCK is held.
3886  *
3887  * @post volume state is changed.
3888  *       for fileserver, salvage will be requested once refcount reaches zero.
3889  *
3890  * @return operation status code
3891  *   @retval 0  volume salvage will occur
3892  *   @retval 1  volume salvage could not be scheduled
3893  *
3894  * @note DAFS fileserver only
3895  *
3896  * @note this call does not synchronously schedule a volume salvage.  rather,
3897  *       it sets volume state so that when volume refcounts reach zero, a
3898  *       volume salvage will occur.  by "refcounts", we mean both nUsers and 
3899  *       nWaiters must be zero.
3900  *
3901  * @internal volume package internal use only.
3902  */
3903 int
3904 VRequestSalvage_r(Error * ec, Volume * vp, int reason, int flags)
3905 {
3906     int code = 0;
3907     /*
3908      * for DAFS volume utilities, transition to error state
3909      * (at some point in the future, we should consider
3910      *  making volser talk to salsrv)
3911      */
3912     if (programType != fileServer) {
3913         VChangeState_r(vp, VOL_STATE_ERROR);
3914         *ec = VSALVAGE;
3915         return 1;
3916     }
3917
3918     if (!vp->salvage.requested) {
3919         vp->salvage.requested = 1;
3920         vp->salvage.reason = reason;
3921         vp->stats.last_salvage = FT_ApproxTime();
3922         if (flags & VOL_SALVAGE_INVALIDATE_HEADER) {
3923             /* XXX this should likely be changed to FreeVolumeHeader() */
3924             ReleaseVolumeHeader(vp->header);
3925         }
3926         if (vp->stats.salvages < SALVAGE_COUNT_MAX) {
3927             VChangeState_r(vp, VOL_STATE_SALVAGING);
3928             *ec = VSALVAGING;
3929         } else {
3930             Log("VRequestSalvage: volume %u online salvaged too many times; forced offline.\n", vp->hashid);
3931             VChangeState_r(vp, VOL_STATE_ERROR);
3932             *ec = VSALVAGE;
3933             code = 1;
3934         }
3935     }
3936     return code;
3937 }
3938
3939 /**
3940  * update salvageserver scheduling priority for a volume.
3941  *
3942  * @param[in] vp  pointer to volume object
3943  *
3944  * @return operation status
3945  *   @retval 0  success
3946  *   @retval 1  request denied, or SALVSYNC communications failure
3947  *
3948  * @pre VOL_LOCK is held.
3949  *
3950  * @post in-core salvage priority counter is incremented.  if at least
3951  *       SALVAGE_PRIO_UPDATE_INTERVAL seconds have elapsed since the
3952  *       last SALVSYNC_RAISEPRIO request, we contact the salvageserver
3953  *       to update its priority queue.  if no salvage is scheduled,
3954  *       this function is a no-op.
3955  *
3956  * @note DAFS fileserver only
3957  *
3958  * @note this should be called whenever a VGetVolume fails due to a 
3959  *       pending salvage request
3960  *
3961  * @todo should set exclusive state and drop glock around salvsync call
3962  *
3963  * @internal volume package internal use only.
3964  */
3965 static int
3966 VUpdateSalvagePriority_r(Volume * vp)
3967 {
3968     int code, ret=0;
3969     afs_uint32 now;
3970
3971 #ifdef SALVSYNC_BUILD_CLIENT
3972     vp->salvage.prio++;
3973     now = FT_ApproxTime();
3974
3975     /* update the salvageserver priority queue occasionally so that
3976      * frequently requested volumes get moved to the head of the queue 
3977      */
3978     if ((vp->salvage.scheduled) &&
3979         (vp->stats.last_salvage_req < (now-SALVAGE_PRIO_UPDATE_INTERVAL))) {
3980         code = SALVSYNC_SalvageVolume(vp->hashid,
3981                                       VPartitionPath(vp->partition),
3982                                       SALVSYNC_RAISEPRIO,
3983                                       vp->salvage.reason,
3984                                       vp->salvage.prio,
3985                                       NULL);
3986         vp->stats.last_salvage_req = now;
3987         if (code != SYNC_OK) {
3988             ret = 1;
3989         }
3990     }
3991 #endif /* SALVSYNC_BUILD_CLIENT */
3992     return ret;
3993 }
3994
3995
3996 /**
3997  * schedule a salvage with the salvage server.
3998  *
3999  * @param[in] vp  pointer to volume object
4000  *
4001  * @return operation status
4002  *    @retval 0 salvage scheduled successfully
4003  *    @retval 1 salvage not scheduled, or SALVSYNC com error
4004  *
4005  * @pre 
4006  *    @arg VOL_LOCK is held.
4007  *    @arg nUsers and nWaiters should be zero.
4008  *
4009  * @post salvageserver is sent a salvage request
4010  *
4011  * @note DAFS fileserver only
4012  *
4013  * @internal volume package internal use only.
4014  */
4015 static int
4016 VScheduleSalvage_r(Volume * vp)
4017 {
4018     int code, ret=0;
4019 #ifdef SALVSYNC_BUILD_CLIENT
4020     VolState state_save;
4021     VThreadOptions_t * thread_opts;
4022     char partName[16];
4023
4024     if (vp->nWaiters || vp->nUsers) {
4025         return 1;
4026     }
4027
4028     /* prevent endless salvage,attach,salvage,attach,... loops */
4029     if (vp->stats.salvages >= SALVAGE_COUNT_MAX)
4030         return 1;
4031
4032     /*
4033      * don't perform salvsync ops on certain threads
4034      */
4035     thread_opts = pthread_getspecific(VThread_key);
4036     if (thread_opts == NULL) {
4037         thread_opts = &VThread_defaults;
4038     }
4039     if (thread_opts->disallow_salvsync) {
4040         return 1;
4041     }
4042
4043     /*
4044      * XXX the scheduling process should really be done asynchronously
4045      *     to avoid fssync deadlocks
4046      */
4047     if (!vp->salvage.scheduled) {
4048         /* if we haven't previously scheduled a salvage, do so now 
4049          *
4050          * set the volume to an exclusive state and drop the lock
4051          * around the SALVSYNC call
4052          *
4053          * note that we do NOT acquire a reservation here -- doing so
4054          * could result in unbounded recursion
4055          */
4056         strlcpy(partName, VPartitionPath(vp->partition), sizeof(partName));
4057         state_save = VChangeState_r(vp, VOL_STATE_SALVSYNC_REQ);
4058         VOL_UNLOCK;
4059
4060         /* can't use V_id() since there's no guarantee
4061          * we have the disk data header at this point */
4062         code = SALVSYNC_SalvageVolume(vp->hashid,
4063                                       partName,
4064                                       SALVSYNC_SALVAGE,
4065                                       vp->salvage.reason,
4066                                       vp->salvage.prio,
4067                                       NULL);
4068         VOL_LOCK;
4069         VChangeState_r(vp, state_save);
4070
4071         if (code == SYNC_OK) {
4072             vp->salvage.scheduled = 1;
4073             vp->stats.salvages++;
4074             vp->stats.last_salvage_req = FT_ApproxTime();
4075             IncUInt64(&VStats.salvages);
4076         } else {
4077             ret = 1;
4078             switch(code) {
4079             case SYNC_BAD_COMMAND:
4080             case SYNC_COM_ERROR:
4081                 break;
4082             case SYNC_DENIED:
4083                 Log("VScheduleSalvage_r:  SALVSYNC request denied\n");
4084                 break;
4085             default:
4086                 Log("VScheduleSalvage_r:  SALVSYNC unknown protocol error\n");
4087                 break;
4088             }
4089         }
4090     }
4091 #endif /* SALVSYNC_BUILD_CLIENT */
4092     return ret;
4093 }
4094
4095 /**
4096  * ask salvageserver to cancel a scheduled salvage operation.
4097  *
4098  * @param[in] vp      pointer to volume object
4099  * @param[in] reason  SALVSYNC protocol reason code
4100  *
4101  * @return operation status
4102  *    @retval 0 success
4103  *    @retval 1 request failed
4104  *
4105  * @pre VOL_LOCK is held.
4106  *
4107  * @post salvageserver is sent a request to cancel the volume salvage.
4108  *       volume is transitioned to a hard error state.
4109  *
4110  * @internal volume package internal use only.
4111  */
4112 static int
4113 VCancelSalvage_r(Volume * vp, int reason)
4114 {
4115     int code, ret = 0;
4116
4117 #ifdef SALVSYNC_BUILD_CLIENT
4118     if (vp->salvage.scheduled) {
4119         VChangeState_r(vp, VOL_STATE_SALVSYNC_REQ);
4120         VOL_UNLOCK;
4121
4122         /* can't use V_id() since there's no guarantee
4123          * we have the disk data header at this point */
4124         code = SALVSYNC_SalvageVolume(vp->hashid,
4125                                       VPartitionPath(vp->partition),
4126                                       SALVSYNC_CANCEL,
4127                                       reason,
4128                                       0,
4129                                       NULL);
4130
4131         VOL_LOCK;
4132         VChangeState_r(vp, VOL_STATE_ERROR);
4133
4134         if (code == SYNC_OK) {
4135             vp->salvage.scheduled = 0;
4136             vp->salvage.requested = 0;
4137         } else {
4138             ret = 1;
4139         }
4140     }
4141 #endif /* SALVSYNC_BUILD_CLIENT */
4142     return ret;
4143 }
4144
4145
4146 #ifdef SALVSYNC_BUILD_CLIENT
4147 /**
4148  * connect to the salvageserver SYNC service.
4149  *
4150  * @return operation status
4151  *    @retval 0 failure
4152  *    @retval 1 success
4153  *
4154  * @post connection to salvageserver SYNC service established
4155  *
4156  * @see VConnectSALV_r
4157  * @see VDisconnectSALV
4158  * @see VReconnectSALV
4159  */
4160 int
4161 VConnectSALV(void)
4162 {
4163     int retVal;
4164     VOL_LOCK;
4165     retVal = VConnectSALV_r();
4166     VOL_UNLOCK;
4167     return retVal;
4168 }
4169
4170 /**
4171  * connect to the salvageserver SYNC service.
4172  *
4173  * @return operation status
4174  *    @retval 0 failure
4175  *    @retval 1 success
4176  *
4177  * @pre VOL_LOCK is held.
4178  *
4179  * @post connection to salvageserver SYNC service established
4180  *
4181  * @see VConnectSALV
4182  * @see VDisconnectSALV_r
4183  * @see VReconnectSALV_r
4184  * @see SALVSYNC_clientInit
4185  *
4186  * @internal volume package internal use only.
4187  */
4188 int
4189 VConnectSALV_r(void)
4190 {
4191     return SALVSYNC_clientInit();
4192 }
4193
4194 /**
4195  * disconnect from the salvageserver SYNC service.
4196  *
4197  * @return operation status
4198  *    @retval 0 success
4199  *
4200  * @pre client should have a live connection to the salvageserver
4201  *
4202  * @post connection to salvageserver SYNC service destroyed
4203  *
4204  * @see VDisconnectSALV_r
4205  * @see VConnectSALV
4206  * @see VReconnectSALV
4207  */
4208 int
4209 VDisconnectSALV(void)
4210 {
4211     int retVal;
4212     VOL_LOCK;
4213     VDisconnectSALV_r();
4214     VOL_UNLOCK;
4215     return retVal;
4216 }
4217
4218 /**
4219  * disconnect from the salvageserver SYNC service.
4220  *
4221  * @return operation status
4222  *    @retval 0 success
4223  *
4224  * @pre 
4225  *    @arg VOL_LOCK is held.
4226  *    @arg client should have a live connection to the salvageserver.
4227  *
4228  * @post connection to salvageserver SYNC service destroyed
4229  *
4230  * @see VDisconnectSALV
4231  * @see VConnectSALV_r
4232  * @see VReconnectSALV_r
4233  * @see SALVSYNC_clientFinis
4234  *
4235  * @internal volume package internal use only.
4236  */
4237 int
4238 VDisconnectSALV_r(void)
4239
4240     return SALVSYNC_clientFinis();
4241 }
4242
4243 /**
4244  * disconnect and then re-connect to the salvageserver SYNC service.
4245  *
4246  * @return operation status
4247  *    @retval 0 failure
4248  *    @retval 1 success
4249  *
4250  * @pre client should have a live connection to the salvageserver
4251  *
4252  * @post old connection is dropped, and a new one is established
4253  *
4254  * @see VConnectSALV
4255  * @see VDisconnectSALV
4256  * @see VReconnectSALV_r
4257  */
4258 int
4259 VReconnectSALV(void)
4260 {
4261     int retVal;
4262     VOL_LOCK;
4263     retVal = VReconnectSALV_r();
4264     VOL_UNLOCK;
4265     return retVal;
4266 }
4267
4268 /**
4269  * disconnect and then re-connect to the salvageserver SYNC service.
4270  *
4271  * @return operation status
4272  *    @retval 0 failure
4273  *    @retval 1 success
4274  *
4275  * @pre 
4276  *    @arg VOL_LOCK is held.
4277  *    @arg client should have a live connection to the salvageserver.
4278  *
4279  * @post old connection is dropped, and a new one is established
4280  *
4281  * @see VConnectSALV_r
4282  * @see VDisconnectSALV
4283  * @see VReconnectSALV
4284  * @see SALVSYNC_clientReconnect
4285  *
4286  * @internal volume package internal use only.
4287  */
4288 int
4289 VReconnectSALV_r(void)
4290 {
4291     return SALVSYNC_clientReconnect();
4292 }
4293 #endif /* SALVSYNC_BUILD_CLIENT */
4294 #endif /* AFS_DEMAND_ATTACH_FS */
4295
4296
4297 /***************************************************/
4298 /* FSSYNC routines                                 */
4299 /***************************************************/
4300
4301 /* This must be called by any volume utility which needs to run while the
4302    file server is also running.  This is separated from VInitVolumePackage so
4303    that a utility can fork--and each of the children can independently
4304    initialize communication with the file server */
4305 #ifdef FSSYNC_BUILD_CLIENT
4306 /**
4307  * connect to the fileserver SYNC service.
4308  *
4309  * @return operation status
4310  *    @retval 0 failure
4311  *    @retval 1 success
4312  *
4313  * @pre 
4314  *    @arg VInit must equal 2.
4315  *    @arg Program Type must not be fileserver or salvager.
4316  *
4317  * @post connection to fileserver SYNC service established
4318  *
4319  * @see VConnectFS_r
4320  * @see VDisconnectFS
4321  * @see VChildProcReconnectFS
4322  */
4323 int
4324 VConnectFS(void)
4325 {
4326     int retVal;
4327     VOL_LOCK;
4328     retVal = VConnectFS_r();
4329     VOL_UNLOCK;
4330     return retVal;
4331 }
4332
4333 /**
4334  * connect to the fileserver SYNC service.
4335  *
4336  * @return operation status
4337  *    @retval 0 failure
4338  *    @retval 1 success
4339  *
4340  * @pre 
4341  *    @arg VInit must equal 2.
4342  *    @arg Program Type must not be fileserver or salvager.
4343  *    @arg VOL_LOCK is held.
4344  *
4345  * @post connection to fileserver SYNC service established
4346  *
4347  * @see VConnectFS
4348  * @see VDisconnectFS_r
4349  * @see VChildProcReconnectFS_r
4350  *
4351  * @internal volume package internal use only.
4352  */
4353 int
4354 VConnectFS_r(void)
4355 {
4356     int rc;
4357     assert((VInit == 2) && 
4358            (programType != fileServer) &&
4359            (programType != salvager));
4360     rc = FSYNC_clientInit();
4361     if (rc)
4362         VInit = 3;
4363     return rc;
4364 }
4365
4366 /**
4367  * disconnect from the fileserver SYNC service.
4368  *
4369  * @pre 
4370  *    @arg client should have a live connection to the fileserver.
4371  *    @arg VOL_LOCK is held.
4372  *    @arg Program Type must not be fileserver or salvager.
4373  *
4374  * @post connection to fileserver SYNC service destroyed
4375  *
4376  * @see VDisconnectFS
4377  * @see VConnectFS_r
4378  * @see VChildProcReconnectFS_r
4379  *
4380  * @internal volume package internal use only.
4381  */
4382 void
4383 VDisconnectFS_r(void)
4384 {
4385     assert((programType != fileServer) &&
4386            (programType != salvager));
4387     FSYNC_clientFinis();
4388     VInit = 2;
4389 }
4390
4391 /**
4392  * disconnect from the fileserver SYNC service.
4393  *
4394  * @pre
4395  *    @arg client should have a live connection to the fileserver.
4396  *    @arg Program Type must not be fileserver or salvager.
4397  *
4398  * @post connection to fileserver SYNC service destroyed
4399  *
4400  * @see VDisconnectFS_r
4401  * @see VConnectFS
4402  * @see VChildProcReconnectFS
4403  */
4404 void
4405 VDisconnectFS(void)
4406 {
4407     VOL_LOCK;
4408     VDisconnectFS_r();
4409     VOL_UNLOCK;
4410 }
4411
4412 /**
4413  * connect to the fileserver SYNC service from a child process following a fork.
4414  *
4415  * @return operation status
4416  *    @retval 0 failure
4417  *    @retval 1 success
4418  *
4419  * @pre
4420  *    @arg VOL_LOCK is held.
4421  *    @arg current FSYNC handle is shared with a parent process
4422  *
4423  * @post current FSYNC handle is discarded and a new connection to the
4424  *       fileserver SYNC service is established
4425  *
4426  * @see VChildProcReconnectFS
4427  * @see VConnectFS_r
4428  * @see VDisconnectFS_r
4429  *
4430  * @internal volume package internal use only.
4431  */
4432 int
4433 VChildProcReconnectFS_r(void)
4434 {
4435     return FSYNC_clientChildProcReconnect();
4436 }
4437
4438 /**
4439  * connect to the fileserver SYNC service from a child process following a fork.
4440  *
4441  * @return operation status
4442  *    @retval 0 failure
4443  *    @retval 1 success
4444  *
4445  * @pre current FSYNC handle is shared with a parent process
4446  *
4447  * @post current FSYNC handle is discarded and a new connection to the
4448  *       fileserver SYNC service is established
4449  *
4450  * @see VChildProcReconnectFS_r
4451  * @see VConnectFS
4452  * @see VDisconnectFS
4453  */
4454 int
4455 VChildProcReconnectFS(void)
4456 {
4457     int ret;
4458     VOL_LOCK;
4459     ret = VChildProcReconnectFS_r();
4460     VOL_UNLOCK;
4461     return ret;
4462 }
4463 #endif /* FSSYNC_BUILD_CLIENT */
4464
4465
4466 /***************************************************/
4467 /* volume bitmap routines                          */
4468 /***************************************************/
4469
4470 /*
4471  * For demand attach fs, flags parameter controls
4472  * locking behavior.  If (flags & VOL_ALLOC_BITMAP_WAIT)
4473  * is set, then this function will create a reservation
4474  * and block on any other exclusive operations.  Otherwise,
4475  * this function assumes the caller already has exclusive
4476  * access to vp, and we just change the volume state.
4477  */
4478 VnodeId
4479 VAllocBitmapEntry_r(Error * ec, Volume * vp, 
4480                     struct vnodeIndex *index, int flags)
4481 {
4482     VnodeId ret;
4483     register byte *bp, *ep;
4484 #ifdef AFS_DEMAND_ATTACH_FS
4485     VolState state_save;
4486 #endif /* AFS_DEMAND_ATTACH_FS */
4487
4488     *ec = 0;
4489
4490     /* This test is probably redundant */
4491     if (!VolumeWriteable(vp)) {
4492         *ec = (bit32) VREADONLY;
4493         return 0;
4494     }
4495
4496 #ifdef AFS_DEMAND_ATTACH_FS
4497     if (flags & VOL_ALLOC_BITMAP_WAIT) {
4498         VCreateReservation_r(vp);
4499         VWaitExclusiveState_r(vp);
4500     }
4501     state_save = VChangeState_r(vp, VOL_STATE_GET_BITMAP);
4502 #endif /* AFS_DEMAND_ATTACH_FS */
4503
4504 #ifdef BITMAP_LATER
4505     if ((programType == fileServer) && !index->bitmap) {
4506         int i;
4507 #ifndef AFS_DEMAND_ATTACH_FS
4508         /* demand attach fs uses the volume state to avoid races.
4509          * specialStatus field is not used at all */
4510         int wasVBUSY = 0;
4511         if (vp->specialStatus == VBUSY) {
4512             if (vp->goingOffline) {     /* vos dump waiting for the volume to
4513                                          * go offline. We probably come here
4514                                          * from AddNewReadableResidency */
4515                 wasVBUSY = 1;
4516             } else {
4517                 while (vp->specialStatus == VBUSY) {
4518 #ifdef AFS_PTHREAD_ENV
4519                     VOL_UNLOCK;
4520                     sleep(2);
4521                     VOL_LOCK;
4522 #else /* !AFS_PTHREAD_ENV */
4523                     IOMGR_Sleep(2);
4524 #endif /* !AFS_PTHREAD_ENV */
4525                 }
4526             }
4527         }
4528 #endif /* !AFS_DEMAND_ATTACH_FS */
4529
4530         if (!index->bitmap) {
4531 #ifndef AFS_DEMAND_ATTACH_FS
4532             vp->specialStatus = VBUSY;  /* Stop anyone else from using it. */
4533 #endif /* AFS_DEMAND_ATTACH_FS */
4534             for (i = 0; i < nVNODECLASSES; i++) {
4535                 VGetBitmap_r(ec, vp, i);
4536                 if (*ec) {
4537 #ifdef AFS_DEMAND_ATTACH_FS
4538                     VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_INVALIDATE_HEADER);
4539 #else /* AFS_DEMAND_ATTACH_FS */
4540                     DeleteVolumeFromHashTable(vp);
4541                     vp->shuttingDown = 1;       /* Let who has it free it. */
4542                     vp->specialStatus = 0;
4543 #endif /* AFS_DEMAND_ATTACH_FS */
4544                     ret = NULL;
4545                     goto done;
4546                 }
4547             }
4548 #ifndef AFS_DEMAND_ATTACH_FS
4549             if (!wasVBUSY)
4550                 vp->specialStatus = 0;  /* Allow others to have access. */
4551 #endif /* AFS_DEMAND_ATTACH_FS */
4552         }
4553     }
4554 #endif /* BITMAP_LATER */
4555
4556 #ifdef AFS_DEMAND_ATTACH_FS
4557     VOL_UNLOCK;
4558 #endif /* AFS_DEMAND_ATTACH_FS */
4559     bp = index->bitmap + index->bitmapOffset;
4560     ep = index->bitmap + index->bitmapSize;
4561     while (bp < ep) {
4562         if ((*(bit32 *) bp) != (bit32) 0xffffffff) {
4563             int o;
4564             index->bitmapOffset = (afs_uint32) (bp - index->bitmap);
4565             while (*bp == 0xff)
4566                 bp++;
4567             o = ffs(~*bp) - 1;  /* ffs is documented in BSTRING(3) */
4568             *bp |= (1 << o);
4569             ret = (VnodeId) ((bp - index->bitmap) * 8 + o);
4570 #ifdef AFS_DEMAND_ATTACH_FS
4571             VOL_LOCK;
4572 #endif /* AFS_DEMAND_ATTACH_FS */
4573             goto done;
4574         }
4575         bp += sizeof(bit32) /* i.e. 4 */ ;
4576     }
4577     /* No bit map entry--must grow bitmap */
4578     bp = (byte *)
4579         realloc(index->bitmap, index->bitmapSize + VOLUME_BITMAP_GROWSIZE);
4580     assert(bp != NULL);
4581     index->bitmap = bp;
4582     bp += index->bitmapSize;
4583     memset(bp, 0, VOLUME_BITMAP_GROWSIZE);
4584     index->bitmapOffset = index->bitmapSize;
4585     index->bitmapSize += VOLUME_BITMAP_GROWSIZE;
4586     *bp = 1;
4587     ret = index->bitmapOffset * 8;
4588 #ifdef AFS_DEMAND_ATTACH_FS
4589     VOL_LOCK;
4590 #endif /* AFS_DEMAND_ATTACH_FS */
4591
4592  done:
4593 #ifdef AFS_DEMAND_ATTACH_FS
4594     VChangeState_r(vp, state_save);
4595     if (flags & VOL_ALLOC_BITMAP_WAIT) {
4596         VCancelReservation_r(vp);
4597     }
4598 #endif /* AFS_DEMAND_ATTACH_FS */
4599     return ret;
4600 }
4601
4602 VnodeId
4603 VAllocBitmapEntry(Error * ec, Volume * vp, register struct vnodeIndex * index)
4604 {
4605     VnodeId retVal;
4606     VOL_LOCK;
4607     retVal = VAllocBitmapEntry_r(ec, vp, index, VOL_ALLOC_BITMAP_WAIT);
4608     VOL_UNLOCK;
4609     return retVal;
4610 }
4611
4612 void
4613 VFreeBitMapEntry_r(Error * ec, register struct vnodeIndex *index,
4614                    unsigned bitNumber)
4615 {
4616     unsigned int offset;
4617
4618     *ec = 0;
4619 #ifdef BITMAP_LATER
4620     if (!index->bitmap)
4621         return;
4622 #endif /* BITMAP_LATER */
4623     offset = bitNumber >> 3;
4624     if (offset >= index->bitmapSize) {
4625         *ec = VNOVNODE;
4626         return;
4627     }
4628     if (offset < index->bitmapOffset)
4629         index->bitmapOffset = offset & ~3;      /* Truncate to nearest bit32 */
4630     *(index->bitmap + offset) &= ~(1 << (bitNumber & 0x7));
4631 }
4632
4633 void
4634 VFreeBitMapEntry(Error * ec, register struct vnodeIndex *index,
4635                  unsigned bitNumber)
4636 {
4637     VOL_LOCK;
4638     VFreeBitMapEntry_r(ec, index, bitNumber);
4639     VOL_UNLOCK;
4640 }
4641
4642 /* this function will drop the glock internally.
4643  * for old pthread fileservers, this is safe thanks to vbusy.
4644  *
4645  * for demand attach fs, caller must have already called
4646  * VCreateReservation_r and VWaitExclusiveState_r */
4647 static void
4648 VGetBitmap_r(Error * ec, Volume * vp, VnodeClass class)
4649 {
4650     StreamHandle_t *file;
4651     int nVnodes;
4652     int size;
4653     struct VnodeClassInfo *vcp = &VnodeClassInfo[class];
4654     struct vnodeIndex *vip = &vp->vnodeIndex[class];
4655     struct VnodeDiskObject *vnode;
4656     unsigned int unique = 0;
4657     FdHandle_t *fdP;
4658 #ifdef BITMAP_LATER
4659     byte *BitMap = 0;
4660 #endif /* BITMAP_LATER */
4661 #ifdef AFS_DEMAND_ATTACH_FS
4662     VolState state_save;
4663 #endif /* AFS_DEMAND_ATTACH_FS */
4664
4665     *ec = 0;
4666
4667 #ifdef AFS_DEMAND_ATTACH_FS
4668     state_save = VChangeState_r(vp, VOL_STATE_GET_BITMAP);
4669 #endif /* AFS_DEMAND_ATTACH_FS */
4670     VOL_UNLOCK;
4671
4672     fdP = IH_OPEN(vip->handle);
4673     assert(fdP != NULL);
4674     file = FDH_FDOPEN(fdP, "r");
4675     assert(file != NULL);
4676     vnode = (VnodeDiskObject *) malloc(vcp->diskSize);
4677     assert(vnode != NULL);
4678     size = OS_SIZE(fdP->fd_fd);
4679     assert(size != -1);
4680     nVnodes = (size <= vcp->diskSize ? 0 : size - vcp->diskSize)
4681         >> vcp->logSize;
4682     vip->bitmapSize = ((nVnodes / 8) + 10) / 4 * 4;     /* The 10 is a little extra so
4683                                                          * a few files can be created in this volume,
4684                                                          * the whole thing is rounded up to nearest 4
4685                                                          * bytes, because the bit map allocator likes
4686                                                          * it that way */
4687 #ifdef BITMAP_LATER
4688     BitMap = (byte *) calloc(1, vip->bitmapSize);
4689     assert(BitMap != NULL);
4690 #else /* BITMAP_LATER */
4691     vip->bitmap = (byte *) calloc(1, vip->bitmapSize);
4692     assert(vip->bitmap != NULL);
4693     vip->bitmapOffset = 0;
4694 #endif /* BITMAP_LATER */
4695     if (STREAM_SEEK(file, vcp->diskSize, 0) != -1) {
4696         int bitNumber = 0;
4697         for (bitNumber = 0; bitNumber < nVnodes + 100; bitNumber++) {
4698             if (STREAM_READ(vnode, vcp->diskSize, 1, file) != 1)
4699                 break;
4700             if (vnode->type != vNull) {
4701                 if (vnode->vnodeMagic != vcp->magic) {
4702                     Log("GetBitmap: addled vnode index in volume %s; volume needs salvage\n", V_name(vp));
4703                     *ec = VSALVAGE;
4704                     break;
4705                 }
4706 #ifdef BITMAP_LATER
4707                 *(BitMap + (bitNumber >> 3)) |= (1 << (bitNumber & 0x7));
4708 #else /* BITMAP_LATER */
4709                 *(vip->bitmap + (bitNumber >> 3)) |= (1 << (bitNumber & 0x7));
4710 #endif /* BITMAP_LATER */
4711                 if (unique <= vnode->uniquifier)
4712                     unique = vnode->uniquifier + 1;
4713             }
4714 #ifndef AFS_PTHREAD_ENV
4715             if ((bitNumber & 0x00ff) == 0x0ff) {        /* every 256 iterations */
4716                 IOMGR_Poll();
4717             }
4718 #endif /* !AFS_PTHREAD_ENV */
4719         }
4720     }
4721     if (vp->nextVnodeUnique < unique) {
4722         Log("GetBitmap: bad volume uniquifier for volume %s; volume needs salvage\n", V_name(vp));
4723         *ec = VSALVAGE;
4724     }
4725     /* Paranoia, partly justified--I think fclose after fdopen
4726      * doesn't seem to close fd.  In any event, the documentation
4727      * doesn't specify, so it's safer to close it twice.
4728      */
4729     STREAM_CLOSE(file);
4730     FDH_CLOSE(fdP);
4731     free(vnode);
4732
4733     VOL_LOCK;
4734 #ifdef BITMAP_LATER
4735     /* There may have been a racing condition with some other thread, both
4736      * creating the bitmaps for this volume. If the other thread was faster
4737      * the pointer to bitmap should already be filled and we can free ours.
4738      */
4739     if (vip->bitmap == NULL) {
4740         vip->bitmap = BitMap;
4741         vip->bitmapOffset = 0;
4742     } else
4743         free((byte *) BitMap);
4744 #endif /* BITMAP_LATER */
4745 #ifdef AFS_DEMAND_ATTACH_FS
4746     VChangeState_r(vp, state_save);
4747 #endif /* AFS_DEMAND_ATTACH_FS */
4748 }
4749
4750
4751 /***************************************************/
4752 /* Volume Path and Volume Number utility routines  */
4753 /***************************************************/
4754
4755 /**
4756  * find the first occurrence of a volume header file and return the path.
4757  *
4758  * @param[out] ec          outbound error code
4759  * @param[in]  volumeId    volume id to find
4760  * @param[out] partitionp  pointer to disk partition path string
4761  * @param[out] namep       pointer to volume header file name string
4762  *
4763  * @post path to first occurrence of volume header is returned in partitionp
4764  *       and namep, or ec is set accordingly.
4765  *
4766  * @warning this function is NOT re-entrant -- partitionp and namep point to
4767  *          static data segments
4768  *
4769  * @note if a volume utility inadvertently leaves behind a stale volume header
4770  *       on a vice partition, it is possible for callers to get the wrong one,
4771  *       depending on the order of the disk partition linked list.
4772  *
4773  */
4774 void
4775 VGetVolumePath(Error * ec, VolId volumeId, char **partitionp, char **namep)
4776 {
4777     static char partition[VMAXPATHLEN], name[VMAXPATHLEN];
4778     char path[VMAXPATHLEN];
4779     int found = 0;
4780     struct DiskPartition64 *dp;
4781
4782     *ec = 0;
4783     name[0] = '/';
4784     (void)afs_snprintf(&name[1], (sizeof name) - 1, VFORMAT, volumeId);
4785     for (dp = DiskPartitionList; dp; dp = dp->next) {
4786         struct afs_stat status;
4787         strcpy(path, VPartitionPath(dp));
4788         strcat(path, name);
4789         if (afs_stat(path, &status) == 0) {
4790             strcpy(partition, dp->name);
4791             found = 1;
4792             break;
4793         }
4794     }
4795     if (!found) {
4796         *ec = VNOVOL;
4797         *partitionp = *namep = NULL;
4798     } else {
4799         *partitionp = partition;
4800         *namep = name;
4801     }
4802 }
4803
4804 /**
4805  * extract a volume number from a volume header filename string.
4806  *
4807  * @param[in] name  volume header filename string
4808  *
4809  * @return volume number
4810  *
4811  * @note the string must be of the form VFORMAT.  the only permissible
4812  *       deviation is a leading '/' character.
4813  *
4814  * @see VFORMAT
4815  */
4816 int
4817 VolumeNumber(char *name)
4818 {
4819     if (*name == '/')
4820         name++;
4821     return atoi(name + 1);
4822 }
4823
4824 /**
4825  * compute the volume header filename.
4826  *
4827  * @param[in] volumeId
4828  *
4829  * @return volume header filename
4830  *
4831  * @post volume header filename string is constructed
4832  *
4833  * @warning this function is NOT re-entrant -- the returned string is
4834  *          stored in a static char array.  see VolumeExternalName_r
4835  *          for a re-entrant equivalent.
4836  *
4837  * @see VolumeExternalName_r
4838  *
4839  * @deprecated due to the above re-entrancy warning, this interface should
4840  *             be considered deprecated.  Please use VolumeExternalName_r
4841  *             in its stead.
4842  */
4843 char *
4844 VolumeExternalName(VolumeId volumeId)
4845 {
4846     static char name[VMAXPATHLEN];
4847     (void)afs_snprintf(name, sizeof name, VFORMAT, volumeId);
4848     return name;
4849 }
4850
4851 /**
4852  * compute the volume header filename.
4853  *
4854  * @param[in]     volumeId
4855  * @param[inout]  name       array in which to store filename
4856  * @param[in]     len        length of name array
4857  *
4858  * @return result code from afs_snprintf
4859  *
4860  * @see VolumeExternalName
4861  * @see afs_snprintf
4862  *
4863  * @note re-entrant equivalent of VolumeExternalName
4864  *
4865  * @internal volume package internal use only.
4866  */
4867 static int
4868 VolumeExternalName_r(VolumeId volumeId, char * name, size_t len)
4869 {
4870     return afs_snprintf(name, len, VFORMAT, volumeId);
4871 }
4872
4873
4874 /***************************************************/
4875 /* Volume Usage Statistics routines                */
4876 /***************************************************/
4877
4878 #if OPENAFS_VOL_STATS
4879 #define OneDay  (86400)         /* 24 hours' worth of seconds */
4880 #else
4881 #define OneDay  (24*60*60)      /* 24 hours */
4882 #endif /* OPENAFS_VOL_STATS */
4883
4884 #define Midnight(date) ((date-TimeZoneCorrection)/OneDay*OneDay+TimeZoneCorrection)
4885
4886 /*------------------------------------------------------------------------
4887  * [export] VAdjustVolumeStatistics
4888  *
4889  * Description:
4890  *      If we've passed midnight, we need to update all the day use
4891  *      statistics as well as zeroing the detailed volume statistics
4892  *      (if we are implementing them).
4893  *
4894  * Arguments:
4895  *      vp : Pointer to the volume structure describing the lucky
4896  *              volume being considered for update.
4897  *
4898  * Returns:
4899  *      0 (always!)
4900  *
4901  * Environment:
4902  *      Nothing interesting.
4903  *
4904  * Side Effects:
4905  *      As described.
4906  *------------------------------------------------------------------------*/
4907
4908 int
4909 VAdjustVolumeStatistics_r(register Volume * vp)
4910 {
4911     unsigned int now = FT_ApproxTime();
4912
4913     if (now - V_dayUseDate(vp) > OneDay) {
4914         register int ndays, i;
4915
4916         ndays = (now - V_dayUseDate(vp)) / OneDay;
4917         for (i = 6; i > ndays - 1; i--)
4918             V_weekUse(vp)[i] = V_weekUse(vp)[i - ndays];
4919         for (i = 0; i < ndays - 1 && i < 7; i++)
4920             V_weekUse(vp)[i] = 0;
4921         if (ndays <= 7)
4922             V_weekUse(vp)[ndays - 1] = V_dayUse(vp);
4923         V_dayUse(vp) = 0;
4924         V_dayUseDate(vp) = Midnight(now);
4925
4926 #if OPENAFS_VOL_STATS
4927         /*
4928          * All we need to do is bzero the entire VOL_STATS_BYTES of
4929          * the detailed volume statistics area.
4930          */
4931         memset((char *)(V_stat_area(vp)), 0, VOL_STATS_BYTES);
4932 #endif /* OPENAFS_VOL_STATS */
4933     }
4934
4935     /*It's been more than a day of collection */
4936     /*
4937      * Always return happily.
4938      */
4939     return (0);
4940 }                               /*VAdjustVolumeStatistics */
4941
4942 int
4943 VAdjustVolumeStatistics(register Volume * vp)
4944 {
4945     int retVal;
4946     VOL_LOCK;
4947     retVal = VAdjustVolumeStatistics_r(vp);
4948     VOL_UNLOCK;
4949     return retVal;
4950 }
4951
4952 void
4953 VBumpVolumeUsage_r(register Volume * vp)
4954 {
4955     unsigned int now = FT_ApproxTime();
4956     if (now - V_dayUseDate(vp) > OneDay)
4957         VAdjustVolumeStatistics_r(vp);
4958     /*
4959      * Save the volume header image to disk after every 128 bumps to dayUse.
4960      */
4961     if ((V_dayUse(vp)++ & 127) == 0) {
4962         Error error;
4963         VUpdateVolume_r(&error, vp, VOL_UPDATE_WAIT);
4964     }
4965 }
4966
4967 void
4968 VBumpVolumeUsage(register Volume * vp)
4969 {
4970     VOL_LOCK;
4971     VBumpVolumeUsage_r(vp);
4972     VOL_UNLOCK;
4973 }
4974
4975 void
4976 VSetDiskUsage_r(void)
4977 {
4978 #ifndef AFS_DEMAND_ATTACH_FS
4979     static int FifteenMinuteCounter = 0;
4980 #endif
4981
4982     while (VInit < 2) {
4983         /* NOTE: Don't attempt to access the partitions list until the
4984          * initialization level indicates that all volumes are attached,
4985          * which implies that all partitions are initialized. */
4986 #ifdef AFS_PTHREAD_ENV
4987         sleep(10);
4988 #else /* AFS_PTHREAD_ENV */
4989         IOMGR_Sleep(10);
4990 #endif /* AFS_PTHREAD_ENV */
4991     }
4992
4993     VResetDiskUsage_r();
4994
4995 #ifndef AFS_DEMAND_ATTACH_FS
4996     if (++FifteenMinuteCounter == 3) {
4997         FifteenMinuteCounter = 0;
4998         VScanUpdateList();
4999     }
5000 #endif /* !AFS_DEMAND_ATTACH_FS */
5001 }
5002
5003 void
5004 VSetDiskUsage(void)
5005 {
5006     VOL_LOCK;
5007     VSetDiskUsage_r();
5008     VOL_UNLOCK;
5009 }
5010
5011
5012 /***************************************************/
5013 /* Volume Update List routines                     */
5014 /***************************************************/
5015
5016 /* The number of minutes that a volume hasn't been updated before the
5017  * "Dont salvage" flag in the volume header will be turned on */
5018 #define SALVAGE_INTERVAL        (10*60)
5019
5020 /*
5021  * demand attach fs
5022  *
5023  * volume update list functionality has been moved into the VLRU
5024  * the DONT_SALVAGE flag is now set during VLRU demotion
5025  */
5026
5027 #ifndef AFS_DEMAND_ATTACH_FS
5028 static VolumeId *UpdateList = NULL;     /* Pointer to array of Volume ID's */
5029 static int nUpdatedVolumes = 0;         /* Updated with entry in UpdateList, salvage after crash flag on */
5030 static int updateSize = 0;              /* number of entries possible */
5031 #define UPDATE_LIST_SIZE 128            /* initial size increment (must be a power of 2!) */
5032 #endif /* !AFS_DEMAND_ATTACH_FS */
5033
5034 void
5035 VAddToVolumeUpdateList_r(Error * ec, Volume * vp)
5036 {
5037     *ec = 0;
5038     vp->updateTime = FT_ApproxTime();
5039     if (V_dontSalvage(vp) == 0)
5040         return;
5041     V_dontSalvage(vp) = 0;
5042     VSyncVolume_r(ec, vp, 0);
5043 #ifdef AFS_DEMAND_ATTACH_FS
5044     V_attachFlags(vp) &= ~(VOL_HDR_DONTSALV);
5045 #else /* !AFS_DEMAND_ATTACH_FS */
5046     if (*ec)
5047         return;
5048     if (UpdateList == NULL) {
5049         updateSize = UPDATE_LIST_SIZE;
5050         UpdateList = (VolumeId *) malloc(sizeof(VolumeId) * updateSize);
5051     } else {
5052         if (nUpdatedVolumes == updateSize) {
5053             updateSize <<= 1;
5054             if (updateSize > 524288) {
5055                 Log("warning: there is likely a bug in the volume update scanner\n");
5056                 return;
5057             }
5058             UpdateList =
5059                 (VolumeId *) realloc(UpdateList,
5060                                      sizeof(VolumeId) * updateSize);
5061         }
5062     }
5063     assert(UpdateList != NULL);
5064     UpdateList[nUpdatedVolumes++] = V_id(vp);
5065 #endif /* !AFS_DEMAND_ATTACH_FS */
5066 }
5067
5068 #ifndef AFS_DEMAND_ATTACH_FS
5069 static void
5070 VScanUpdateList(void)
5071 {
5072     register int i, gap;
5073     register Volume *vp;
5074     Error error;
5075     afs_uint32 now = FT_ApproxTime();
5076     /* Be careful with this code, since it works with interleaved calls to AddToVolumeUpdateList */
5077     for (i = gap = 0; i < nUpdatedVolumes; i++) {
5078         if (gap)
5079             UpdateList[i - gap] = UpdateList[i];
5080
5081         /* XXX this routine needlessly messes up the Volume LRU by
5082          * breaking the LRU temporal-locality assumptions.....
5083          * we should use a special volume header allocator here */
5084         vp = VGetVolume_r(&error, UpdateList[i - gap] = UpdateList[i]);
5085         if (error) {
5086             gap++;
5087         } else if (vp->nUsers == 1 && now - vp->updateTime > SALVAGE_INTERVAL) {
5088             V_dontSalvage(vp) = DONT_SALVAGE;
5089             VUpdateVolume_r(&error, vp, 0);     /* No need to fsync--not critical */
5090             gap++;
5091         }
5092
5093         if (vp) {
5094             VPutVolume_r(vp);
5095         }
5096
5097 #ifndef AFS_PTHREAD_ENV
5098         IOMGR_Poll();
5099 #endif /* !AFS_PTHREAD_ENV */
5100     }
5101     nUpdatedVolumes -= gap;
5102 }
5103 #endif /* !AFS_DEMAND_ATTACH_FS */
5104
5105
5106 /***************************************************/
5107 /* Volume LRU routines                             */
5108 /***************************************************/
5109
5110 /* demand attach fs
5111  * volume LRU
5112  *
5113  * with demand attach fs, we attempt to soft detach(1)
5114  * volumes which have not been accessed in a long time
5115  * in order to speed up fileserver shutdown
5116  *
5117  * (1) by soft detach we mean a process very similar
5118  *     to VOffline, except the final state of the 
5119  *     Volume will be VOL_STATE_PREATTACHED, instead
5120  *     of the usual VOL_STATE_UNATTACHED
5121  */
5122 #ifdef AFS_DEMAND_ATTACH_FS
5123
5124 /* implementation is reminiscent of a generational GC
5125  *
5126  * queue 0 is newly attached volumes. this queue is
5127  * sorted by attach timestamp
5128  *
5129  * queue 1 is volumes that have been around a bit
5130  * longer than queue 0. this queue is sorted by
5131  * attach timestamp
5132  *
5133  * queue 2 is volumes tha have been around the longest.
5134  * this queue is unsorted
5135  *
5136  * queue 3 is volumes that have been marked as
5137  * candidates for soft detachment. this queue is
5138  * unsorted
5139  */
5140 #define VLRU_GENERATIONS  3   /**< number of generations in VLRU */
5141 #define VLRU_QUEUES       5   /**< total number of VLRU queues */
5142
5143 /**
5144  * definition of a VLRU queue.
5145  */
5146 struct VLRU_q {
5147     volatile struct rx_queue q;
5148     volatile int len;
5149     volatile int busy;
5150     pthread_cond_t cv;
5151 };
5152
5153 /**
5154  * main VLRU data structure.
5155  */
5156 struct VLRU {
5157     struct VLRU_q q[VLRU_QUEUES];   /**< VLRU queues */
5158
5159     /* VLRU config */
5160     /** time interval (in seconds) between promotion passes for
5161      *  each young generation queue. */
5162     afs_uint32 promotion_interval[VLRU_GENERATIONS-1];
5163
5164     /** time interval (in seconds) between soft detach candidate
5165      *  scans for each generation queue.
5166      *
5167      *  scan_interval[VLRU_QUEUE_CANDIDATE] defines how frequently
5168      *  we perform a soft detach pass. */
5169     afs_uint32 scan_interval[VLRU_GENERATIONS+1];
5170
5171     /* scheduler state */
5172     int next_idx;                                       /**< next queue to receive attention */
5173     afs_uint32 last_promotion[VLRU_GENERATIONS-1];      /**< timestamp of last promotion scan */
5174     afs_uint32 last_scan[VLRU_GENERATIONS+1];           /**< timestamp of last detach scan */
5175
5176     int scanner_state;                                  /**< state of scanner thread */
5177     pthread_cond_t cv;                                  /**< state transition CV */
5178 };
5179
5180 /** global VLRU state */
5181 static struct VLRU volume_LRU;
5182
5183 /**
5184  * defined states for VLRU scanner thread.
5185  */
5186 typedef enum {
5187     VLRU_SCANNER_STATE_OFFLINE        = 0,    /**< vlru scanner thread is offline */
5188     VLRU_SCANNER_STATE_ONLINE         = 1,    /**< vlru scanner thread is online */
5189     VLRU_SCANNER_STATE_SHUTTING_DOWN  = 2,    /**< vlru scanner thread is shutting down */
5190     VLRU_SCANNER_STATE_PAUSING        = 3,    /**< vlru scanner thread is getting ready to pause */
5191     VLRU_SCANNER_STATE_PAUSED         = 4     /**< vlru scanner thread is paused */
5192 } vlru_thread_state_t;
5193
5194 /* vlru disk data header stuff */
5195 #define VLRU_DISK_MAGIC      0x7a8b9cad        /**< vlru disk entry magic number */
5196 #define VLRU_DISK_VERSION    1                 /**< vlru disk entry version number */
5197
5198 /** vlru default expiration time (for eventual fs state serialization of vlru data) */
5199 #define VLRU_DUMP_EXPIRATION_TIME   (60*60*24*7)  /* expire vlru data after 1 week */
5200
5201
5202 /** minimum volume inactivity (in seconds) before a volume becomes eligible for
5203  *  soft detachment. */
5204 static afs_uint32 VLRU_offline_thresh = VLRU_DEFAULT_OFFLINE_THRESH;
5205
5206 /** time interval (in seconds) between VLRU scanner thread soft detach passes. */
5207 static afs_uint32 VLRU_offline_interval = VLRU_DEFAULT_OFFLINE_INTERVAL;
5208
5209 /** maximum number of volumes to soft detach in a VLRU soft detach pass. */
5210 static afs_uint32 VLRU_offline_max = VLRU_DEFAULT_OFFLINE_MAX;
5211
5212 /** VLRU control flag.  non-zero value implies VLRU subsystem is activated. */
5213 static afs_uint32 VLRU_enabled = 1;
5214
5215 /* queue synchronization routines */
5216 static void VLRU_BeginExclusive_r(struct VLRU_q * q);
5217 static void VLRU_EndExclusive_r(struct VLRU_q * q);
5218 static void VLRU_Wait_r(struct VLRU_q * q);
5219
5220 /**
5221  * set VLRU subsystem tunable parameters.
5222  *
5223  * @param[in] option  tunable option to modify
5224  * @param[in] val     new value for tunable parameter
5225  *
5226  * @pre @c VInitVolumePackage has not yet been called.
5227  *
5228  * @post tunable parameter is modified
5229  *
5230  * @note DAFS only
5231  *
5232  * @note valid option parameters are:
5233  *    @arg @c VLRU_SET_THRESH 
5234  *         set the period of inactivity after which
5235  *         volumes are eligible for soft detachment
5236  *    @arg @c VLRU_SET_INTERVAL 
5237  *         set the time interval between calls
5238  *         to the volume LRU "garbage collector"
5239  *    @arg @c VLRU_SET_MAX 
5240  *         set the max number of volumes to deallocate
5241  *         in one GC pass
5242  */
5243 void
5244 VLRU_SetOptions(int option, afs_uint32 val)
5245 {
5246     if (option == VLRU_SET_THRESH) {
5247         VLRU_offline_thresh = val;
5248     } else if (option == VLRU_SET_INTERVAL) {
5249         VLRU_offline_interval = val;
5250     } else if (option == VLRU_SET_MAX) {
5251         VLRU_offline_max = val;
5252     } else if (option == VLRU_SET_ENABLED) {
5253         VLRU_enabled = val;
5254     }
5255     VLRU_ComputeConstants();
5256 }
5257
5258 /**
5259  * compute VLRU internal timing parameters.
5260  *
5261  * @post VLRU scanner thread internal timing parameters are computed
5262  *
5263  * @note computes internal timing parameters based upon user-modifiable 
5264  *       tunable parameters.
5265  *
5266  * @note DAFS only
5267  *
5268  * @internal volume package internal use only.
5269  */
5270 static void
5271 VLRU_ComputeConstants(void)
5272 {
5273     afs_uint32 factor = VLRU_offline_thresh / VLRU_offline_interval;
5274
5275     /* compute the candidate scan interval */
5276     volume_LRU.scan_interval[VLRU_QUEUE_CANDIDATE] = VLRU_offline_interval;
5277
5278     /* compute the promotion intervals */
5279     volume_LRU.promotion_interval[VLRU_QUEUE_NEW] = VLRU_offline_thresh * 2;
5280     volume_LRU.promotion_interval[VLRU_QUEUE_MID] = VLRU_offline_thresh * 4;
5281
5282     if (factor > 16) {
5283         /* compute the gen 0 scan interval */
5284         volume_LRU.scan_interval[VLRU_QUEUE_NEW] = VLRU_offline_thresh / 8;
5285     } else {
5286         /* compute the gen 0 scan interval */
5287         volume_LRU.scan_interval[VLRU_QUEUE_NEW] = VLRU_offline_interval * 2;
5288     }
5289 }
5290
5291 /**
5292  * initialize VLRU subsystem.
5293  *
5294  * @pre this function has not yet been called
5295  *
5296  * @post VLRU subsystem is initialized and VLRU scanner thread is starting
5297  *
5298  * @note DAFS only
5299  *
5300  * @internal volume package internal use only.
5301  */
5302 static void
5303 VInitVLRU(void)
5304 {
5305     pthread_t tid;
5306     pthread_attr_t attrs;
5307     int i;
5308
5309     if (!VLRU_enabled) {
5310         Log("VLRU: disabled\n");
5311         return;
5312     }
5313
5314     /* initialize each of the VLRU queues */
5315     for (i = 0; i < VLRU_QUEUES; i++) {
5316         queue_Init(&volume_LRU.q[i]);
5317         volume_LRU.q[i].len = 0;
5318         volume_LRU.q[i].busy = 0;
5319         assert(pthread_cond_init(&volume_LRU.q[i].cv, NULL) == 0);
5320     }
5321
5322     /* setup the timing constants */
5323     VLRU_ComputeConstants();
5324
5325     /* XXX put inside LogLevel check? */
5326     Log("VLRU: starting scanner with the following configuration parameters:\n");
5327     Log("VLRU:  offlining volumes after minimum of %d seconds of inactivity\n", VLRU_offline_thresh);
5328     Log("VLRU:  running VLRU soft detach pass every %d seconds\n", VLRU_offline_interval);
5329     Log("VLRU:  taking up to %d volumes offline per pass\n", VLRU_offline_max);
5330     Log("VLRU:  scanning generation 0 for inactive volumes every %d seconds\n", volume_LRU.scan_interval[0]);
5331     Log("VLRU:  scanning for promotion/demotion between generations 0 and 1 every %d seconds\n", volume_LRU.promotion_interval[0]);
5332     Log("VLRU:  scanning for promotion/demotion between generations 1 and 2 every %d seconds\n", volume_LRU.promotion_interval[1]);
5333
5334     /* start up the VLRU scanner */
5335     volume_LRU.scanner_state = VLRU_SCANNER_STATE_OFFLINE;
5336     if (programType == fileServer) {
5337         assert(pthread_cond_init(&volume_LRU.cv, NULL) == 0);
5338         assert(pthread_attr_init(&attrs) == 0);
5339         assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
5340         assert(pthread_create(&tid, &attrs, &VLRU_ScannerThread, NULL) == 0);
5341     }
5342 }
5343
5344 /**
5345  * initialize the VLRU-related fields of a newly allocated volume object.
5346  *
5347  * @param[in] vp  pointer to volume object
5348  *
5349  * @pre
5350  *    @arg @c VOL_LOCK is held.
5351  *    @arg volume object is not on a VLRU queue.
5352  *
5353  * @post VLRU fields are initialized to indicate that volume object is not
5354  *       currently registered with the VLRU subsystem
5355  *
5356  * @note DAFS only
5357  *
5358  * @internal volume package interal use only.
5359  */
5360 static void
5361 VLRU_Init_Node_r(volatile Volume * vp)
5362 {
5363     if (!VLRU_enabled)
5364         return;
5365
5366     assert(queue_IsNotOnQueue(&vp->vlru));
5367     vp->vlru.idx = VLRU_QUEUE_INVALID;
5368 }
5369
5370 /**
5371  * add a volume object to a VLRU queue.
5372  *
5373  * @param[in] vp  pointer to volume object
5374  *
5375  * @pre
5376  *    @arg @c VOL_LOCK is held.
5377  *    @arg caller MUST hold a lightweight ref on @p vp.
5378  *    @arg caller MUST NOT hold exclusive ownership of the VLRU queue.
5379  *
5380  * @post the volume object is added to the appropriate VLRU queue
5381  *
5382  * @note if @c vp->vlru.idx contains the index of a valid VLRU queue,
5383  *       then the volume is added to that queue.  Otherwise, the value
5384  *       @c VLRU_QUEUE_NEW is stored into @c vp->vlru.idx and the
5385  *       volume is added to the NEW generation queue.
5386  *
5387  * @note @c VOL_LOCK may be dropped internally
5388  *
5389  * @note Volume state is temporarily set to @c VOL_STATE_VLRU_ADD
5390  *       during the add operation, and is restored to the previous
5391  *       state prior to return.
5392  *
5393  * @note DAFS only
5394  *
5395  * @internal volume package internal use only.
5396  */
5397 static void
5398 VLRU_Add_r(volatile Volume * vp)
5399 {
5400     int idx;
5401     VolState state_save;
5402
5403     if (!VLRU_enabled)
5404         return;
5405
5406     if (queue_IsOnQueue(&vp->vlru))
5407         return;
5408
5409     state_save = VChangeState_r(vp, VOL_STATE_VLRU_ADD);
5410
5411     idx = vp->vlru.idx;
5412     if ((idx < 0) || (idx >= VLRU_QUEUE_INVALID)) {
5413         idx = VLRU_QUEUE_NEW;
5414     }
5415
5416     VLRU_Wait_r(&volume_LRU.q[idx]);
5417
5418     /* repeat check since VLRU_Wait_r may have dropped
5419      * the glock */
5420     if (queue_IsNotOnQueue(&vp->vlru)) {
5421         vp->vlru.idx = idx;
5422         queue_Prepend(&volume_LRU.q[idx], &vp->vlru);
5423         volume_LRU.q[idx].len++;
5424         V_attachFlags(vp) |= VOL_ON_VLRU;
5425         vp->stats.last_promote = FT_ApproxTime();
5426     }
5427
5428     VChangeState_r(vp, state_save);
5429 }
5430
5431 /**
5432  * delete a volume object from a VLRU queue.
5433  *
5434  * @param[in] vp  pointer to volume object
5435  *
5436  * @pre
5437  *    @arg @c VOL_LOCK is held.
5438  *    @arg caller MUST hold a lightweight ref on @p vp.
5439  *    @arg caller MUST NOT hold exclusive ownership of the VLRU queue.
5440  *
5441  * @post volume object is removed from the VLRU queue
5442  *
5443  * @note @c VOL_LOCK may be dropped internally
5444  *
5445  * @note DAFS only
5446  *
5447  * @todo We should probably set volume state to something exlcusive 
5448  *       (as @c VLRU_Add_r does) prior to dropping @c VOL_LOCK.
5449  *
5450  * @internal volume package internal use only.
5451  */
5452 static void
5453 VLRU_Delete_r(volatile Volume * vp)
5454 {
5455     int idx;
5456
5457     if (!VLRU_enabled)
5458         return;
5459
5460     if (queue_IsNotOnQueue(&vp->vlru))
5461         return;
5462
5463     /* handle races */
5464     do {
5465       idx = vp->vlru.idx;
5466       if (idx == VLRU_QUEUE_INVALID)
5467           return;
5468       VLRU_Wait_r(&volume_LRU.q[idx]);
5469     } while (idx != vp->vlru.idx);
5470
5471     /* now remove from the VLRU and update 
5472      * the appropriate counter */
5473     queue_Remove(&vp->vlru);
5474     volume_LRU.q[idx].len--;
5475     vp->vlru.idx = VLRU_QUEUE_INVALID;
5476     V_attachFlags(vp) &= ~(VOL_ON_VLRU);
5477 }
5478
5479 /**
5480  * tell the VLRU subsystem that a volume was just accessed.
5481  *
5482  * @param[in] vp  pointer to volume object
5483  *
5484  * @pre
5485  *    @arg @c VOL_LOCK is held
5486  *    @arg caller MUST hold a lightweight ref on @p vp
5487  *    @arg caller MUST NOT hold exclusive ownership of any VLRU queue
5488  *
5489  * @post volume VLRU access statistics are updated.  If the volume was on
5490  *       the VLRU soft detach candidate queue, it is moved to the NEW
5491  *       generation queue.
5492  *
5493  * @note @c VOL_LOCK may be dropped internally
5494  *
5495  * @note DAFS only
5496  *
5497  * @internal volume package internal use only.
5498  */
5499 static void
5500 VLRU_UpdateAccess_r(volatile Volume * vp)
5501 {
5502     afs_uint32 live_interval;
5503     Volume * rvp = NULL;
5504
5505     if (!VLRU_enabled)
5506         return;
5507
5508     if (queue_IsNotOnQueue(&vp->vlru))
5509         return;
5510
5511     assert(V_attachFlags(vp) & VOL_ON_VLRU);
5512
5513     /* update the access timestamp */
5514     vp->stats.last_get = FT_ApproxTime();
5515
5516     /*
5517      * if the volume is on the soft detach candidate
5518      * list, we need to safely move it back to a
5519      * regular generation.  this has to be done
5520      * carefully so we don't race against the scanner
5521      * thread.
5522      */
5523
5524     /* if this volume is on the soft detach candidate queue,
5525      * then grab exclusive access to the necessary queues */
5526     if (vp->vlru.idx == VLRU_QUEUE_CANDIDATE) {
5527         rvp = vp;
5528         VCreateReservation_r(rvp);
5529
5530         VLRU_Wait_r(&volume_LRU.q[VLRU_QUEUE_NEW]);
5531         VLRU_BeginExclusive_r(&volume_LRU.q[VLRU_QUEUE_NEW]);
5532         VLRU_Wait_r(&volume_LRU.q[VLRU_QUEUE_CANDIDATE]);
5533         VLRU_BeginExclusive_r(&volume_LRU.q[VLRU_QUEUE_CANDIDATE]);
5534     }
5535
5536     /* make sure multiple threads don't race to update */
5537     if (vp->vlru.idx == VLRU_QUEUE_CANDIDATE) {
5538         VLRU_SwitchQueues(vp, VLRU_QUEUE_NEW, 1);
5539     }
5540
5541     if (rvp) {
5542       VLRU_EndExclusive_r(&volume_LRU.q[VLRU_QUEUE_CANDIDATE]);
5543       VLRU_EndExclusive_r(&volume_LRU.q[VLRU_QUEUE_NEW]);
5544       VCancelReservation_r(rvp);
5545     }
5546 }
5547
5548 /**
5549  * switch a volume between two VLRU queues.
5550  *
5551  * @param[in] vp       pointer to volume object
5552  * @param[in] new_idx  index of VLRU queue onto which the volume will be moved
5553  * @param[in] append   controls whether the volume will be appended or 
5554  *                     prepended to the queue.  A nonzero value means it will
5555  *                     be appended; zero means it will be prepended.
5556  *
5557  * @pre The new (and old, if applicable) queue(s) must either be owned 
5558  *      exclusively by the calling thread for asynchronous manipulation,
5559  *      or the queue(s) must be quiescent and VOL_LOCK must be held.
5560  *      Please see VLRU_BeginExclusive_r, VLRU_EndExclusive_r and VLRU_Wait_r
5561  *      for further details of the queue asynchronous processing mechanism.
5562  *
5563  * @post If the volume object was already on a VLRU queue, it is
5564  *       removed from the queue.  Depending on the value of the append
5565  *       parameter, the volume object is either appended or prepended
5566  *       to the VLRU queue referenced by the new_idx parameter.
5567  *
5568  * @note DAFS only
5569  *
5570  * @see VLRU_BeginExclusive_r
5571  * @see VLRU_EndExclusive_r
5572  * @see VLRU_Wait_r
5573  *
5574  * @internal volume package internal use only.
5575  */
5576 static void
5577 VLRU_SwitchQueues(volatile Volume * vp, int new_idx, int append)
5578 {
5579     if (queue_IsNotOnQueue(&vp->vlru))
5580         return;
5581
5582     queue_Remove(&vp->vlru);
5583     volume_LRU.q[vp->vlru.idx].len--;
5584     
5585     /* put the volume back on the correct generational queue */
5586     if (append) {
5587         queue_Append(&volume_LRU.q[new_idx], &vp->vlru);
5588     } else {
5589         queue_Prepend(&volume_LRU.q[new_idx], &vp->vlru);
5590     }
5591
5592     volume_LRU.q[new_idx].len++;
5593     vp->vlru.idx = new_idx;
5594 }
5595
5596 /**
5597  * VLRU background thread.
5598  *
5599  * The VLRU Scanner Thread is responsible for periodically scanning through
5600  * each VLRU queue looking for volumes which should be moved to another
5601  * queue, or soft detached.
5602  *
5603  * @param[in] args  unused thread arguments parameter
5604  *
5605  * @return unused thread return value
5606  *    @retval NULL always
5607  *
5608  * @internal volume package internal use only.
5609  */
5610 static void *
5611 VLRU_ScannerThread(void * args)
5612 {
5613     afs_uint32 now, min_delay, delay;
5614     afs_uint32 next_scan[VLRU_GENERATIONS];
5615     afs_uint32 next_promotion[VLRU_GENERATIONS];
5616     int i, min_idx, min_op, overdue, state;
5617
5618     /* set t=0 for promotion cycle to be 
5619      * fileserver startup */
5620     now = FT_ApproxTime();
5621     for (i=0; i < VLRU_GENERATIONS-1; i++) {
5622         volume_LRU.last_promotion[i] = now;
5623     }
5624
5625     /* don't start the scanner until VLRU_offline_thresh
5626      * plus a small delay for VInitVolumePackage to finish
5627      * has gone by */
5628
5629     sleep(VLRU_offline_thresh + 60);
5630
5631     /* set t=0 for scan cycle to be now */
5632     now = FT_ApproxTime();
5633     for (i=0; i < VLRU_GENERATIONS+1; i++) {
5634         volume_LRU.last_scan[i] = now;
5635     }
5636
5637     VOL_LOCK;
5638     if (volume_LRU.scanner_state == VLRU_SCANNER_STATE_OFFLINE) {
5639         volume_LRU.scanner_state = VLRU_SCANNER_STATE_ONLINE;
5640     }
5641
5642     while ((state = volume_LRU.scanner_state) != VLRU_SCANNER_STATE_SHUTTING_DOWN) {
5643         /* check to see if we've been asked to pause */
5644         if (volume_LRU.scanner_state == VLRU_SCANNER_STATE_PAUSING) {
5645             volume_LRU.scanner_state = VLRU_SCANNER_STATE_PAUSED;
5646             assert(pthread_cond_broadcast(&volume_LRU.cv) == 0);
5647             do {
5648                 VOL_CV_WAIT(&volume_LRU.cv);
5649             } while (volume_LRU.scanner_state == VLRU_SCANNER_STATE_PAUSED);
5650         }
5651
5652         /* scheduling can happen outside the glock */
5653         VOL_UNLOCK;
5654
5655         /* figure out what is next on the schedule */
5656
5657         /* figure out a potential schedule for the new generation first */
5658         overdue = 0;
5659         min_delay = volume_LRU.scan_interval[0] + volume_LRU.last_scan[0] - now;
5660         min_idx = 0;
5661         min_op = 0;
5662         if (min_delay > volume_LRU.scan_interval[0]) {
5663             /* unsigned overflow -- we're overdue to run this scan */
5664             min_delay = 0;
5665             overdue = 1;
5666         }
5667
5668         /* if we're not overdue for gen 0, figure out schedule for candidate gen */
5669         if (!overdue) {
5670             i = VLRU_QUEUE_CANDIDATE;
5671             delay = volume_LRU.scan_interval[i] + volume_LRU.last_scan[i] - now;
5672             if (delay < min_delay) {
5673                 min_delay = delay;
5674                 min_idx = i;
5675             }
5676             if (delay > volume_LRU.scan_interval[i]) {
5677                 /* unsigned overflow -- we're overdue to run this scan */
5678                 min_delay = 0;
5679                 min_idx = i;
5680                 overdue = 1;
5681             }
5682         }
5683
5684         /* if we're still not overdue for something, figure out schedules for promotions */
5685         for (i=0; !overdue && i < VLRU_GENERATIONS-1; i++) {
5686             delay = volume_LRU.promotion_interval[i] + volume_LRU.last_promotion[i] - now;
5687             if (delay < min_delay) {
5688                 min_delay = delay;
5689                 min_idx = i;
5690                 min_op = 1;
5691             }
5692             if (delay > volume_LRU.promotion_interval[i]) {
5693                 /* unsigned overflow -- we're overdue to run this promotion */
5694                 min_delay = 0;
5695                 min_idx = i;
5696                 min_op = 1;
5697                 overdue = 1;
5698                 break;
5699             }
5700         }
5701
5702         /* sleep as needed */
5703         if (min_delay) {
5704             sleep(min_delay);
5705         }
5706
5707         /* do whatever is next */
5708         VOL_LOCK;
5709         if (min_op) {
5710             VLRU_Promote_r(min_idx);
5711             VLRU_Demote_r(min_idx+1);
5712         } else {
5713             VLRU_Scan_r(min_idx);
5714         }
5715         now = FT_ApproxTime();
5716     }
5717
5718     Log("VLRU scanner asked to go offline (scanner_state=%d)\n", state);
5719
5720     /* signal that scanner is down */
5721     volume_LRU.scanner_state = VLRU_SCANNER_STATE_OFFLINE;
5722     assert(pthread_cond_broadcast(&volume_LRU.cv) == 0);
5723     VOL_UNLOCK;
5724     return NULL;
5725 }
5726
5727 /**
5728  * promote volumes from one VLRU generation to the next.
5729  *
5730  * This routine scans a VLRU generation looking for volumes which are
5731  * eligible to be promoted to the next generation.  All volumes which
5732  * meet the eligibility requirement are promoted.
5733  *
5734  * Promotion eligibility is based upon meeting both of the following
5735  * requirements:
5736  *
5737  *    @arg The volume has been accessed since the last promotion:
5738  *         @c (vp->stats.last_get >= vp->stats.last_promote)
5739  *    @arg The last promotion occurred at least 
5740  *         @c volume_LRU.promotion_interval[idx] seconds ago
5741  *
5742  * As a performance optimization, promotions are "globbed".  In other
5743  * words, we promote arbitrarily large contiguous sublists of elements
5744  * as one operation.  
5745  *
5746  * @param[in] idx  VLRU queue index to scan
5747  *
5748  * @note DAFS only
5749  *
5750  * @internal VLRU internal use only.
5751  */
5752 static void
5753 VLRU_Promote_r(int idx)
5754 {
5755     int len, chaining, promote;
5756     afs_uint32 now, thresh;
5757     struct rx_queue *qp, *nqp;
5758     Volume * vp, *start, *end;
5759
5760     /* get exclusive access to two chains, and drop the glock */
5761     VLRU_Wait_r(&volume_LRU.q[idx]);
5762     VLRU_BeginExclusive_r(&volume_LRU.q[idx]);
5763     VLRU_Wait_r(&volume_LRU.q[idx+1]);
5764     VLRU_BeginExclusive_r(&volume_LRU.q[idx+1]);
5765     VOL_UNLOCK;
5766
5767     thresh = volume_LRU.promotion_interval[idx];
5768     now = FT_ApproxTime();
5769
5770     len = chaining = 0;
5771     for (queue_ScanBackwards(&volume_LRU.q[idx], qp, nqp, rx_queue)) {
5772         vp = (Volume *)((char *)qp - offsetof(Volume, vlru));
5773         promote = (((vp->stats.last_promote + thresh) <= now) &&
5774                    (vp->stats.last_get >= vp->stats.last_promote));
5775
5776         if (chaining) {
5777             if (promote) {
5778                 vp->vlru.idx++;
5779                 len++;
5780                 start = vp;
5781             } else {
5782                 /* promote and prepend chain */
5783                 queue_MoveChainAfter(&volume_LRU.q[idx+1], &start->vlru, &end->vlru);
5784                 chaining = 0;
5785             }
5786         } else {
5787             if (promote) {
5788                 vp->vlru.idx++;
5789                 len++;
5790                 chaining = 1;
5791                 start = end = vp;
5792             }
5793         }
5794     }
5795
5796     if (chaining) {
5797         /* promote and prepend */
5798         queue_MoveChainAfter(&volume_LRU.q[idx+1], &start->vlru, &end->vlru);
5799     }
5800
5801     if (len) {
5802         volume_LRU.q[idx].len -= len;
5803         volume_LRU.q[idx+1].len += len;
5804     }
5805
5806     /* release exclusive access to the two chains */
5807     VOL_LOCK;
5808     volume_LRU.last_promotion[idx] = now;
5809     VLRU_EndExclusive_r(&volume_LRU.q[idx+1]);
5810     VLRU_EndExclusive_r(&volume_LRU.q[idx]);
5811 }
5812
5813 /* run the demotions */
5814 static void
5815 VLRU_Demote_r(int idx)
5816 {
5817     Error ec;
5818     int len, chaining, demote;
5819     afs_uint32 now, thresh;
5820     struct rx_queue *qp, *nqp;
5821     Volume * vp, *start, *end;
5822     Volume ** salv_flag_vec = NULL;
5823     int salv_vec_offset = 0;
5824
5825     assert(idx == VLRU_QUEUE_MID || idx == VLRU_QUEUE_OLD);
5826
5827     /* get exclusive access to two chains, and drop the glock */
5828     VLRU_Wait_r(&volume_LRU.q[idx-1]);
5829     VLRU_BeginExclusive_r(&volume_LRU.q[idx-1]);
5830     VLRU_Wait_r(&volume_LRU.q[idx]);
5831     VLRU_BeginExclusive_r(&volume_LRU.q[idx]);
5832     VOL_UNLOCK;
5833
5834     /* no big deal if this allocation fails */
5835     if (volume_LRU.q[idx].len) {
5836         salv_flag_vec = (Volume **) malloc(volume_LRU.q[idx].len * sizeof(Volume *));
5837     }
5838
5839     now = FT_ApproxTime();
5840     thresh = volume_LRU.promotion_interval[idx-1];
5841
5842     len = chaining = 0;
5843     for (queue_ScanBackwards(&volume_LRU.q[idx], qp, nqp, rx_queue)) {
5844         vp = (Volume *)((char *)qp - offsetof(Volume, vlru));
5845         demote = (((vp->stats.last_promote + thresh) <= now) &&
5846                   (vp->stats.last_get < (now - thresh)));
5847
5848         /* we now do volume update list DONT_SALVAGE flag setting during
5849          * demotion passes */
5850         if (salv_flag_vec &&
5851             !(V_attachFlags(vp) & VOL_HDR_DONTSALV) &&
5852             demote && 
5853             (vp->updateTime < (now - SALVAGE_INTERVAL)) &&
5854             (V_attachState(vp) == VOL_STATE_ATTACHED)) {
5855             salv_flag_vec[salv_vec_offset++] = vp;
5856             VCreateReservation_r(vp);
5857         }
5858
5859         if (chaining) {
5860             if (demote) {
5861                 vp->vlru.idx--;
5862                 len++;
5863                 start = vp;
5864             } else {
5865                 /* demote and append chain */
5866                 queue_MoveChainBefore(&volume_LRU.q[idx-1], &start->vlru, &end->vlru);
5867                 chaining = 0;
5868             }
5869         } else {
5870             if (demote) {
5871                 vp->vlru.idx--;
5872                 len++;
5873                 chaining = 1;
5874                 start = end = vp;
5875             }
5876         }
5877     }
5878
5879     if (chaining) {
5880         queue_MoveChainBefore(&volume_LRU.q[idx-1], &start->vlru, &end->vlru);
5881     }
5882
5883     if (len) {
5884         volume_LRU.q[idx].len -= len;
5885         volume_LRU.q[idx-1].len += len;
5886     }
5887
5888     /* release exclusive access to the two chains */
5889     VOL_LOCK;
5890     VLRU_EndExclusive_r(&volume_LRU.q[idx]);
5891     VLRU_EndExclusive_r(&volume_LRU.q[idx-1]);
5892
5893     /* now go back and set the DONT_SALVAGE flags as appropriate */
5894     if (salv_flag_vec) {
5895         int i;
5896         for (i = 0; i < salv_vec_offset; i++) {
5897             vp = salv_flag_vec[i];
5898             if (!(V_attachFlags(vp) & VOL_HDR_DONTSALV) &&
5899                 (vp->updateTime < (now - SALVAGE_INTERVAL)) &&
5900                 (V_attachState(vp) == VOL_STATE_ATTACHED)) {
5901                 ec = VHold_r(vp);
5902                 if (!ec) {
5903                     V_attachFlags(vp) |= VOL_HDR_DONTSALV;
5904                     V_dontSalvage(vp) = DONT_SALVAGE;
5905                     VUpdateVolume_r(&ec, vp, 0);
5906                     VPutVolume_r(vp);
5907                 }
5908             }
5909             VCancelReservation_r(vp);
5910         }
5911         free(salv_flag_vec);
5912     }
5913 }
5914
5915 /* run a pass of the VLRU GC scanner */
5916 static void
5917 VLRU_Scan_r(int idx)
5918 {
5919     afs_uint32 now, thresh;
5920     struct rx_queue *qp, *nqp;
5921     volatile Volume * vp;
5922     int i, locked = 1;
5923
5924     assert(idx == VLRU_QUEUE_NEW || idx == VLRU_QUEUE_CANDIDATE);
5925
5926     /* gain exclusive access to the idx VLRU */
5927     VLRU_Wait_r(&volume_LRU.q[idx]);
5928     VLRU_BeginExclusive_r(&volume_LRU.q[idx]);
5929
5930     if (idx != VLRU_QUEUE_CANDIDATE) {
5931         /* gain exclusive access to the candidate VLRU */
5932         VLRU_Wait_r(&volume_LRU.q[VLRU_QUEUE_CANDIDATE]);
5933         VLRU_BeginExclusive_r(&volume_LRU.q[VLRU_QUEUE_CANDIDATE]);
5934     }
5935
5936     now = FT_ApproxTime();
5937     thresh = now - VLRU_offline_thresh;
5938
5939     /* perform candidate selection and soft detaching */
5940     if (idx == VLRU_QUEUE_CANDIDATE) {
5941         /* soft detach some volumes from the candidate pool */
5942         VOL_UNLOCK;
5943         locked = 0;
5944
5945         for (i=0,queue_ScanBackwards(&volume_LRU.q[idx], qp, nqp, rx_queue)) {
5946             vp = (Volume *)((char *)qp - offsetof(Volume, vlru));
5947             if (i >= VLRU_offline_max) {
5948                 break;
5949             }
5950             /* check timestamp to see if it's a candidate for soft detaching */
5951             if (vp->stats.last_get <= thresh) {
5952                 VOL_LOCK;
5953                 if (VCheckSoftDetach(vp, thresh))
5954                     i++;
5955                 VOL_UNLOCK;
5956             }
5957         }
5958     } else {
5959         /* scan for volumes to become soft detach candidates */
5960         for (i=1,queue_ScanBackwards(&volume_LRU.q[idx], qp, nqp, rx_queue),i++) {
5961             vp = (Volume *)((char *)qp - offsetof(Volume, vlru));
5962
5963             /* check timestamp to see if it's a candidate for soft detaching */
5964             if (vp->stats.last_get <= thresh) {
5965                 VCheckSoftDetachCandidate(vp, thresh);
5966             }
5967
5968             if (!(i&0x7f)) {   /* lock coarsening optimization */
5969                 VOL_UNLOCK;
5970                 pthread_yield();
5971                 VOL_LOCK;
5972             }
5973         }
5974     }
5975
5976     /* relinquish exclusive access to the VLRU chains */
5977     if (!locked) {
5978         VOL_LOCK;
5979     }
5980     volume_LRU.last_scan[idx] = now;
5981     if (idx != VLRU_QUEUE_CANDIDATE) {
5982         VLRU_EndExclusive_r(&volume_LRU.q[VLRU_QUEUE_CANDIDATE]);
5983     }
5984     VLRU_EndExclusive_r(&volume_LRU.q[idx]);
5985 }
5986
5987 /* check whether volume is safe to soft detach
5988  * caller MUST NOT hold a ref count on vp */
5989 static int
5990 VCheckSoftDetach(volatile Volume * vp, afs_uint32 thresh)
5991 {
5992     int ret=0;
5993
5994     if (vp->nUsers || vp->nWaiters)
5995         return 0;
5996
5997     if (vp->stats.last_get <= thresh) {
5998         ret = VSoftDetachVolume_r(vp, thresh);
5999     }
6000
6001     return ret;
6002 }
6003
6004 /* check whether volume should be made a 
6005  * soft detach candidate */
6006 static int
6007 VCheckSoftDetachCandidate(volatile Volume * vp, afs_uint32 thresh)
6008 {
6009     int idx, ret = 0;
6010     if (vp->nUsers || vp->nWaiters)
6011         return 0;
6012
6013     idx = vp->vlru.idx;
6014
6015     assert(idx == VLRU_QUEUE_NEW);
6016
6017     if (vp->stats.last_get <= thresh) {
6018         /* move to candidate pool */
6019         queue_Remove(&vp->vlru);
6020         volume_LRU.q[VLRU_QUEUE_NEW].len--;
6021         queue_Prepend(&volume_LRU.q[VLRU_QUEUE_CANDIDATE], &vp->vlru);
6022         vp->vlru.idx = VLRU_QUEUE_CANDIDATE;
6023         volume_LRU.q[VLRU_QUEUE_CANDIDATE].len++;
6024         ret = 1;
6025     }
6026
6027     return ret;
6028 }
6029
6030
6031 /* begin exclusive access on VLRU */
6032 static void
6033 VLRU_BeginExclusive_r(struct VLRU_q * q)
6034 {
6035     assert(q->busy == 0);
6036     q->busy = 1;
6037 }
6038
6039 /* end exclusive access on VLRU */
6040 static void
6041 VLRU_EndExclusive_r(struct VLRU_q * q)
6042 {
6043     assert(q->busy);
6044     q->busy = 0;
6045     assert(pthread_cond_broadcast(&q->cv) == 0);
6046 }
6047
6048 /* wait for another thread to end exclusive access on VLRU */
6049 static void
6050 VLRU_Wait_r(struct VLRU_q * q)
6051 {
6052     while(q->busy) {
6053         VOL_CV_WAIT(&q->cv);
6054     }
6055 }
6056
6057 /* demand attach fs
6058  * volume soft detach
6059  *
6060  * caller MUST NOT hold a ref count on vp */
6061 static int
6062 VSoftDetachVolume_r(volatile Volume * vp, afs_uint32 thresh)
6063 {
6064     afs_uint32 ts_save;
6065     int ret = 0;
6066
6067     assert(vp->vlru.idx == VLRU_QUEUE_CANDIDATE);
6068
6069     ts_save = vp->stats.last_get;
6070     if (ts_save > thresh)
6071         return 0;
6072
6073     if (vp->nUsers || vp->nWaiters)
6074         return 0;
6075
6076     if (VIsExclusiveState(V_attachState(vp))) {
6077         return 0;
6078     }
6079
6080     switch (V_attachState(vp)) {
6081     case VOL_STATE_UNATTACHED:
6082     case VOL_STATE_PREATTACHED:
6083     case VOL_STATE_ERROR:
6084     case VOL_STATE_GOING_OFFLINE:
6085     case VOL_STATE_SHUTTING_DOWN:
6086     case VOL_STATE_SALVAGING:
6087         volume_LRU.q[vp->vlru.idx].len--;
6088
6089         /* create and cancel a reservation to
6090          * give the volume an opportunity to
6091          * be deallocated */
6092         VCreateReservation_r(vp);
6093         queue_Remove(&vp->vlru);
6094         vp->vlru.idx = VLRU_QUEUE_INVALID;
6095         V_attachFlags(vp) &= ~(VOL_ON_VLRU);
6096         VCancelReservation_r(vp);
6097         return 0;
6098     }
6099
6100     /* hold the volume and take it offline.
6101      * no need for reservations, as VHold_r
6102      * takes care of that internally. */
6103     if (VHold_r(vp) == 0) {
6104         /* vhold drops the glock, so now we should
6105          * check to make sure we aren't racing against
6106          * other threads.  if we are racing, offlining vp
6107          * would be wasteful, and block the scanner for a while 
6108          */
6109         if (vp->nWaiters || 
6110             (vp->nUsers > 1) ||
6111             (vp->shuttingDown) ||
6112             (vp->goingOffline) ||
6113             (vp->stats.last_get != ts_save)) {
6114             /* looks like we're racing someone else. bail */
6115             VPutVolume_r(vp);
6116             vp = NULL;
6117         } else {
6118             /* pull it off the VLRU */
6119             assert(vp->vlru.idx == VLRU_QUEUE_CANDIDATE);
6120             volume_LRU.q[VLRU_QUEUE_CANDIDATE].len--;
6121             queue_Remove(&vp->vlru);
6122             vp->vlru.idx = VLRU_QUEUE_INVALID;
6123             V_attachFlags(vp) &= ~(VOL_ON_VLRU);
6124
6125             /* take if offline */
6126             VOffline_r(vp, "volume has been soft detached");
6127
6128             /* invalidate the volume header cache */
6129             FreeVolumeHeader(vp);
6130
6131             /* update stats */
6132             IncUInt64(&VStats.soft_detaches);
6133             vp->stats.soft_detaches++;
6134
6135             /* put in pre-attached state so demand
6136              * attacher can work on it */
6137             VChangeState_r(vp, VOL_STATE_PREATTACHED);
6138             ret = 1;
6139         }
6140     }
6141     return ret;
6142 }
6143 #endif /* AFS_DEMAND_ATTACH_FS */
6144
6145
6146 /***************************************************/
6147 /* Volume Header Cache routines                    */
6148 /***************************************************/
6149
6150 /** 
6151  * volume header cache.
6152  */
6153 struct volume_hdr_LRU_t volume_hdr_LRU;
6154
6155 /**
6156  * initialize the volume header cache.
6157  *
6158  * @param[in] howMany  number of header cache entries to preallocate
6159  *
6160  * @pre VOL_LOCK held.  Function has never been called before.
6161  *
6162  * @post howMany cache entries are allocated, initialized, and added 
6163  *       to the LRU list.  Header cache statistics are initialized.
6164  *
6165  * @note only applicable to fileServer program type.  Should only be
6166  *       called once during volume package initialization.
6167  *
6168  * @internal volume package internal use only.
6169  */
6170 static void
6171 VInitVolumeHeaderCache(afs_uint32 howMany)
6172 {
6173     register struct volHeader *hp;
6174     if (programType != fileServer)
6175         return;
6176     queue_Init(&volume_hdr_LRU);
6177     volume_hdr_LRU.stats.free = 0;
6178     volume_hdr_LRU.stats.used = howMany;
6179     volume_hdr_LRU.stats.attached = 0;
6180     hp = (struct volHeader *)(calloc(howMany, sizeof(struct volHeader)));
6181     while (howMany--)
6182         ReleaseVolumeHeader(hp++);
6183 }
6184
6185 /**
6186  * get a volume header and attach it to the volume object.
6187  *
6188  * @param[in] vp  pointer to volume object
6189  *
6190  * @return cache entry status
6191  *    @retval 0  volume header was newly attached; cache data is invalid
6192  *    @retval 1  volume header was previously attached; cache data is valid
6193  *
6194  * @pre VOL_LOCK held.  For DAFS, lightweight ref must be held on volume object.
6195  *
6196  * @post volume header attached to volume object.  if necessary, header cache 
6197  *       entry on LRU is synchronized to disk.  Header is removed from LRU list.
6198  *
6199  * @note VOL_LOCK may be dropped
6200  *
6201  * @warning this interface does not load header data from disk.  it merely
6202  *          attaches a header object to the volume object, and may sync the old
6203  *          header cache data out to disk in the process.
6204  *
6205  * @internal volume package internal use only.
6206  */
6207 static int
6208 GetVolumeHeader(register Volume * vp)
6209 {
6210     Error error;
6211     register struct volHeader *hd;
6212     int old;
6213     static int everLogged = 0;
6214
6215 #ifdef AFS_DEMAND_ATTACH_FS
6216     VolState vp_save, back_save;
6217
6218     /* XXX debug 9/19/05 we've apparently got
6219      * a ref counting bug somewhere that's
6220      * breaking the nUsers == 0 => header on LRU
6221      * assumption */
6222     if (vp->header && queue_IsNotOnQueue(vp->header)) {
6223         Log("nUsers == 0, but header not on LRU\n");
6224         return 1;
6225     }
6226 #endif
6227
6228     old = (vp->header != NULL); /* old == volume already has a header */
6229
6230     if (programType != fileServer) {
6231         /* for volume utilities, we allocate volHeaders as needed */
6232         if (!vp->header) {
6233             hd = (struct volHeader *)calloc(1, sizeof(*vp->header));
6234             assert(hd != NULL);
6235             vp->header = hd;
6236             hd->back = vp;
6237 #ifdef AFS_DEMAND_ATTACH_FS
6238             V_attachFlags(vp) |= VOL_HDR_ATTACHED;
6239 #endif
6240         }
6241     } else {
6242         /* for the fileserver, we keep a volume header cache */
6243         if (old) {
6244             /* the header we previously dropped in the lru is
6245              * still available. pull it off the lru and return */
6246             hd = vp->header;
6247             queue_Remove(hd);
6248             assert(hd->back == vp);
6249         } else {
6250             /* we need to grab a new element off the LRU */
6251             if (queue_IsNotEmpty(&volume_hdr_LRU)) {
6252                 /* grab an element and pull off of LRU */
6253                 hd = queue_First(&volume_hdr_LRU, volHeader);
6254                 queue_Remove(hd);
6255             } else {
6256                 /* LRU is empty, so allocate a new volHeader 
6257                  * this is probably indicative of a leak, so let the user know */
6258                 hd = (struct volHeader *)calloc(1, sizeof(struct volHeader));
6259                 assert(hd != NULL);
6260                 if (!everLogged) {
6261                     Log("****Allocated more volume headers, probably leak****\n");
6262                     everLogged = 1;
6263                 }
6264                 volume_hdr_LRU.stats.free++;
6265             }
6266             if (hd->back) {
6267                 /* this header used to belong to someone else. 
6268                  * we'll need to check if the header needs to
6269                  * be sync'd out to disk */
6270
6271 #ifdef AFS_DEMAND_ATTACH_FS
6272                 /* if hd->back were in an exclusive state, then
6273                  * its volHeader would not be on the LRU... */
6274                 assert(!VIsExclusiveState(V_attachState(hd->back)));
6275 #endif
6276
6277                 if (hd->diskstuff.inUse) {
6278                     /* volume was in use, so we'll need to sync
6279                      * its header to disk */
6280
6281 #ifdef AFS_DEMAND_ATTACH_FS
6282                     back_save = VChangeState_r(hd->back, VOL_STATE_UPDATING);
6283                     vp_save = VChangeState_r(vp, VOL_STATE_HDR_ATTACHING);
6284                     VCreateReservation_r(hd->back);
6285                     VOL_UNLOCK;
6286 #endif
6287
6288                     WriteVolumeHeader_r(&error, hd->back);
6289                     /* Ignore errors; catch them later */
6290
6291 #ifdef AFS_DEMAND_ATTACH_FS
6292                     VOL_LOCK;
6293 #endif
6294                 }
6295
6296                 hd->back->header = NULL;
6297 #ifdef AFS_DEMAND_ATTACH_FS
6298                 V_attachFlags(hd->back) &= ~(VOL_HDR_ATTACHED | VOL_HDR_LOADED | VOL_HDR_IN_LRU);
6299
6300                 if (hd->diskstuff.inUse) {
6301                     VChangeState_r(hd->back, back_save);
6302                     VCancelReservation_r(hd->back);
6303                     VChangeState_r(vp, vp_save);
6304                 }
6305 #endif
6306             } else {
6307                 volume_hdr_LRU.stats.attached++;
6308             }
6309             hd->back = vp;
6310             vp->header = hd;
6311 #ifdef AFS_DEMAND_ATTACH_FS
6312             V_attachFlags(vp) |= VOL_HDR_ATTACHED;
6313 #endif
6314         }
6315         volume_hdr_LRU.stats.free--;
6316         volume_hdr_LRU.stats.used++;
6317     }
6318     IncUInt64(&VStats.hdr_gets);
6319 #ifdef AFS_DEMAND_ATTACH_FS
6320     IncUInt64(&vp->stats.hdr_gets);
6321     vp->stats.last_hdr_get = FT_ApproxTime();
6322 #endif
6323     return old;
6324 }
6325
6326
6327 /**
6328  * make sure volume header is attached and contains valid cache data.
6329  *
6330  * @param[out] ec  outbound error code
6331  * @param[in]  vp  pointer to volume object
6332  *
6333  * @pre VOL_LOCK held.  For DAFS, lightweight ref held on vp.
6334  *
6335  * @post header cache entry attached, and loaded with valid data, or
6336  *       *ec is nonzero, and the header is released back into the LRU.
6337  *
6338  * @internal volume package internal use only.
6339  */
6340 static void
6341 LoadVolumeHeader(Error * ec, Volume * vp)
6342 {
6343 #ifdef AFS_DEMAND_ATTACH_FS
6344     VolState state_save;
6345     afs_uint32 now;
6346     *ec = 0;
6347
6348     if (vp->nUsers == 0 && !GetVolumeHeader(vp)) {
6349         IncUInt64(&VStats.hdr_loads);
6350         state_save = VChangeState_r(vp, VOL_STATE_HDR_LOADING);
6351         VOL_UNLOCK;
6352
6353         ReadHeader(ec, V_diskDataHandle(vp), (char *)&V_disk(vp),
6354                    sizeof(V_disk(vp)), VOLUMEINFOMAGIC,
6355                    VOLUMEINFOVERSION);
6356         IncUInt64(&vp->stats.hdr_loads);
6357         now = FT_ApproxTime();
6358
6359         VOL_LOCK;
6360         if (!*ec) {
6361             V_attachFlags(vp) |= VOL_HDR_LOADED;
6362             vp->stats.last_hdr_load = now;
6363         }
6364         VChangeState_r(vp, state_save);
6365     }
6366 #else /* AFS_DEMAND_ATTACH_FS */
6367     *ec = 0;
6368     if (vp->nUsers == 0 && !GetVolumeHeader(vp)) {
6369         IncUInt64(&VStats.hdr_loads);
6370
6371         ReadHeader(ec, V_diskDataHandle(vp), (char *)&V_disk(vp),
6372                    sizeof(V_disk(vp)), VOLUMEINFOMAGIC,
6373                    VOLUMEINFOVERSION);
6374     }
6375 #endif /* AFS_DEMAND_ATTACH_FS */
6376     if (*ec) {
6377         /* maintain (nUsers==0) => header in LRU invariant */
6378         ReleaseVolumeHeader(vp->header);
6379     }
6380 }
6381
6382 /**
6383  * release a header cache entry back into the LRU list.
6384  *
6385  * @param[in] hd  pointer to volume header cache object
6386  *
6387  * @pre VOL_LOCK held.
6388  *
6389  * @post header cache object appended onto end of LRU list.
6390  *
6391  * @note only applicable to fileServer program type.
6392  *
6393  * @note used to place a header cache entry back into the
6394  *       LRU pool without invalidating it as a cache entry.
6395  *
6396  * @internal volume package internal use only.
6397  */
6398 static void
6399 ReleaseVolumeHeader(register struct volHeader *hd)
6400 {
6401     if (programType != fileServer)
6402         return;
6403     if (!hd || queue_IsOnQueue(hd))     /* no header, or header already released */
6404         return;
6405     queue_Append(&volume_hdr_LRU, hd);
6406 #ifdef AFS_DEMAND_ATTACH_FS
6407     if (hd->back) {
6408         V_attachFlags(hd->back) |= VOL_HDR_IN_LRU;
6409     }
6410 #endif
6411     volume_hdr_LRU.stats.free++;
6412     volume_hdr_LRU.stats.used--;
6413 }
6414
6415 /**
6416  * free/invalidate a volume header cache entry.
6417  *
6418  * @param[in] vp  pointer to volume object
6419  *
6420  * @pre VOL_LOCK is held.
6421  *
6422  * @post For fileserver, header cache entry is returned to LRU, and it is
6423  *       invalidated as a cache entry.  For volume utilities, the header
6424  *       cache entry is freed.
6425  *
6426  * @note For fileserver, this should be utilized instead of ReleaseVolumeHeader
6427  *       whenever it is necessary to invalidate the header cache entry.
6428  *
6429  * @see ReleaseVolumeHeader
6430  *
6431  * @internal volume package internal use only.
6432  */
6433 static void
6434 FreeVolumeHeader(register Volume * vp)
6435 {
6436     register struct volHeader *hd = vp->header;
6437     if (!hd)
6438         return;
6439     if (programType == fileServer) {
6440         ReleaseVolumeHeader(hd);
6441         hd->back = NULL;
6442     } else {
6443         free(hd);
6444     }
6445 #ifdef AFS_DEMAND_ATTACH_FS
6446     V_attachFlags(vp) &= ~(VOL_HDR_ATTACHED | VOL_HDR_IN_LRU | VOL_HDR_LOADED);
6447 #endif
6448     volume_hdr_LRU.stats.attached--;
6449     vp->header = NULL;
6450 }
6451
6452
6453 /***************************************************/
6454 /* Volume Hash Table routines                      */
6455 /***************************************************/
6456
6457 /**
6458  * set size of volume object hash table.
6459  *
6460  * @param[in] logsize   log(2) of desired hash table size
6461  *
6462  * @return operation status
6463  *    @retval 0 success
6464  *    @retval -1 failure
6465  *
6466  * @pre MUST be called prior to VInitVolumePackage
6467  *
6468  * @post Volume Hash Table will have 2^logsize buckets
6469  */
6470 int 
6471 VSetVolHashSize(int logsize)
6472 {
6473     /* 64 to 16384 hash buckets seems like a reasonable range */
6474     if ((logsize < 6 ) || (logsize > 14)) {
6475         return -1;
6476     }
6477     
6478     if (!VInit) {
6479         VolumeHashTable.Size = 1 << logsize;
6480         VolumeHashTable.Mask = VolumeHashTable.Size - 1;
6481     } else {
6482         /* we can't yet support runtime modification of this
6483          * parameter. we'll need a configuration rwlock to
6484          * make runtime modification feasible.... */
6485         return -1;
6486     }
6487     return 0;
6488 }
6489
6490 /**
6491  * initialize dynamic data structures for volume hash table.
6492  *
6493  * @post hash table is allocated, and fields are initialized.
6494  *
6495  * @internal volume package internal use only.
6496  */
6497 static void
6498 VInitVolumeHash(void)
6499 {
6500     register int i;
6501
6502     VolumeHashTable.Table = (VolumeHashChainHead *) calloc(VolumeHashTable.Size, 
6503                                                            sizeof(VolumeHashChainHead));
6504     assert(VolumeHashTable.Table != NULL);
6505     
6506     for (i=0; i < VolumeHashTable.Size; i++) {
6507         queue_Init(&VolumeHashTable.Table[i]);
6508 #ifdef AFS_DEMAND_ATTACH_FS
6509         assert(pthread_cond_init(&VolumeHashTable.Table[i].chain_busy_cv, NULL) == 0);
6510 #endif /* AFS_DEMAND_ATTACH_FS */
6511     }
6512 }
6513
6514 /**
6515  * add a volume object to the hash table.
6516  *
6517  * @param[in] vp      pointer to volume object
6518  * @param[in] hashid  hash of volume id
6519  *
6520  * @pre VOL_LOCK is held.  For DAFS, caller must hold a lightweight
6521  *      reference on vp.
6522  *
6523  * @post volume is added to hash chain.
6524  *
6525  * @internal volume package internal use only.
6526  *
6527  * @note For DAFS, VOL_LOCK may be dropped in order to wait for an
6528  *       asynchronous hash chain reordering to finish.
6529  */
6530 static void
6531 AddVolumeToHashTable(register Volume * vp, int hashid)
6532 {
6533     VolumeHashChainHead * head;
6534
6535     if (queue_IsOnQueue(vp))
6536         return;
6537
6538     head = &VolumeHashTable.Table[VOLUME_HASH(hashid)];
6539
6540 #ifdef AFS_DEMAND_ATTACH_FS
6541     /* wait for the hash chain to become available */
6542     VHashWait_r(head);
6543
6544     V_attachFlags(vp) |= VOL_IN_HASH;
6545     vp->chainCacheCheck = ++head->cacheCheck;
6546 #endif /* AFS_DEMAND_ATTACH_FS */
6547
6548     head->len++;
6549     vp->hashid = hashid;
6550     queue_Append(head, vp);
6551     vp->vnodeHashOffset = VolumeHashOffset_r();
6552 }
6553
6554 /**
6555  * delete a volume object from the hash table.
6556  *
6557  * @param[in] vp  pointer to volume object
6558  *
6559  * @pre VOL_LOCK is held.  For DAFS, caller must hold a lightweight
6560  *      reference on vp.
6561  *
6562  * @post volume is removed from hash chain.
6563  *
6564  * @internal volume package internal use only.
6565  *
6566  * @note For DAFS, VOL_LOCK may be dropped in order to wait for an
6567  *       asynchronous hash chain reordering to finish.
6568  */
6569 static void
6570 DeleteVolumeFromHashTable(register Volume * vp)
6571 {
6572     VolumeHashChainHead * head;
6573
6574     if (!queue_IsOnQueue(vp))
6575         return;
6576
6577     head = &VolumeHashTable.Table[VOLUME_HASH(vp->hashid)];
6578
6579 #ifdef AFS_DEMAND_ATTACH_FS
6580     /* wait for the hash chain to become available */
6581     VHashWait_r(head);
6582
6583     V_attachFlags(vp) &= ~(VOL_IN_HASH);
6584     head->cacheCheck++;
6585 #endif /* AFS_DEMAND_ATTACH_FS */
6586
6587     head->len--;
6588     queue_Remove(vp);
6589     /* do NOT reset hashid to zero, as the online
6590      * salvager package may need to know the volume id
6591      * after the volume is removed from the hash */
6592 }
6593
6594 /**
6595  * lookup a volume object in the hash table given a volume id.
6596  *
6597  * @param[out] ec        error code return
6598  * @param[in]  volumeId  volume id
6599  * @param[in]  hint      volume object which we believe could be the correct 
6600                          mapping
6601  *
6602  * @return volume object pointer
6603  *    @retval NULL  no such volume id is registered with the hash table.
6604  *
6605  * @pre VOL_LOCK is held.  For DAFS, caller must hold a lightweight 
6606         ref on hint.
6607  *
6608  * @post volume object with the given id is returned.  volume object and 
6609  *       hash chain access statistics are updated.  hash chain may have 
6610  *       been reordered.
6611  *
6612  * @note For DAFS, VOL_LOCK may be dropped in order to wait for an 
6613  *       asynchronous hash chain reordering operation to finish, or 
6614  *       in order for us to perform an asynchronous chain reordering.
6615  *
6616  * @note Hash chain reorderings occur when the access count for the 
6617  *       volume object being looked up exceeds the sum of the previous 
6618  *       node's (the node ahead of it in the hash chain linked list) 
6619  *       access count plus the constant VOLUME_HASH_REORDER_THRESHOLD.
6620  *
6621  * @note For DAFS, the hint parameter allows us to short-circuit if the 
6622  *       cacheCheck fields match between the hash chain head and the 
6623  *       hint volume object.
6624  */
6625 Volume *
6626 VLookupVolume_r(Error * ec, VolId volumeId, Volume * hint)
6627 {
6628     register int looks = 0;
6629     Volume * vp, *np, *pp;
6630     VolumeHashChainHead * head;
6631     *ec = 0;
6632
6633     head = &VolumeHashTable.Table[VOLUME_HASH(volumeId)];
6634
6635 #ifdef AFS_DEMAND_ATTACH_FS
6636     /* wait for the hash chain to become available */
6637     VHashWait_r(head);
6638
6639     /* check to see if we can short circuit without walking the hash chain */
6640     if (hint && (hint->chainCacheCheck == head->cacheCheck)) {
6641         IncUInt64(&hint->stats.hash_short_circuits);
6642         return hint;
6643     }
6644 #endif /* AFS_DEMAND_ATTACH_FS */
6645
6646     /* someday we need to either do per-chain locks, RWlocks,
6647      * or both for volhash access. 
6648      * (and move to a data structure with better cache locality) */
6649
6650     /* search the chain for this volume id */
6651     for(queue_Scan(head, vp, np, Volume)) {
6652         looks++;
6653         if ((vp->hashid == volumeId)) {
6654             break;
6655         }
6656     }
6657
6658     if (queue_IsEnd(head, vp)) {
6659         vp = NULL;
6660     }
6661
6662 #ifdef AFS_DEMAND_ATTACH_FS
6663     /* update hash chain statistics */
6664     {
6665         afs_uint64 lks;
6666         FillInt64(lks, 0, looks);
6667         AddUInt64(head->looks, lks, &head->looks);
6668         AddUInt64(VStats.hash_looks, lks, &VStats.hash_looks);
6669         IncUInt64(&head->gets);
6670     }
6671
6672     if (vp) {
6673         afs_uint64 thresh;
6674         IncUInt64(&vp->stats.hash_lookups);
6675
6676         /* for demand attach fileserver, we permit occasional hash chain reordering
6677          * so that frequently looked up volumes move towards the head of the chain */
6678         pp = queue_Prev(vp, Volume);
6679         if (!queue_IsEnd(head, pp)) {
6680             FillInt64(thresh, 0, VOLUME_HASH_REORDER_THRESHOLD);
6681             AddUInt64(thresh, pp->stats.hash_lookups, &thresh);
6682             if (GEInt64(vp->stats.hash_lookups, thresh)) {
6683                 VReorderHash_r(head, pp, vp);
6684             }
6685         }
6686
6687         /* update the short-circuit cache check */
6688         vp->chainCacheCheck = head->cacheCheck;
6689     }
6690 #endif /* AFS_DEMAND_ATTACH_FS */    
6691
6692     return vp;
6693 }
6694
6695 #ifdef AFS_DEMAND_ATTACH_FS
6696 /* perform volume hash chain reordering.
6697  *
6698  * advance a subchain beginning at vp ahead of
6699  * the adjacent subchain ending at pp */
6700 static void
6701 VReorderHash_r(VolumeHashChainHead * head, Volume * pp, Volume * vp)
6702 {
6703     Volume *tp, *np, *lp;
6704     afs_uint64 move_thresh;
6705
6706     /* this should never be called if the chain is already busy, so
6707      * no need to wait for other exclusive chain ops to finish */
6708
6709     /* this is a rather heavy set of operations,
6710      * so let's set the chain busy flag and drop
6711      * the vol_glock */
6712     VHashBeginExclusive_r(head);
6713     VOL_UNLOCK;
6714
6715     /* scan forward in the chain from vp looking for the last element
6716      * in the chain we want to advance */
6717     FillInt64(move_thresh, 0, VOLUME_HASH_REORDER_CHAIN_THRESH);
6718     AddUInt64(move_thresh, pp->stats.hash_lookups, &move_thresh);
6719     for(queue_ScanFrom(head, vp, tp, np, Volume)) {
6720         if (LTInt64(tp->stats.hash_lookups, move_thresh)) {
6721             break;
6722         }
6723     }
6724     lp = queue_Prev(tp, Volume);
6725
6726     /* scan backwards from pp to determine where to splice and
6727      * insert the subchain we're advancing */
6728     for(queue_ScanBackwardsFrom(head, pp, tp, np, Volume)) {
6729         if (GTInt64(tp->stats.hash_lookups, move_thresh)) {
6730             break;
6731         }
6732     }
6733     tp = queue_Next(tp, Volume);
6734
6735     /* rebalance chain(vp,...,lp) ahead of chain(tp,...,pp) */
6736     queue_MoveChainBefore(tp,vp,lp);
6737
6738     VOL_LOCK;
6739     IncUInt64(&VStats.hash_reorders);
6740     head->cacheCheck++;
6741     IncUInt64(&head->reorders);
6742
6743     /* wake up any threads waiting for the hash chain */
6744     VHashEndExclusive_r(head);
6745 }
6746
6747
6748 /* demand-attach fs volume hash
6749  * asynchronous exclusive operations */
6750
6751 /**
6752  * begin an asynchronous exclusive operation on a volume hash chain.
6753  *
6754  * @param[in] head   pointer to volume hash chain head object
6755  *
6756  * @pre VOL_LOCK held.  hash chain is quiescent.
6757  *
6758  * @post hash chain marked busy.
6759  *
6760  * @note this interface is used in conjunction with VHashEndExclusive_r and
6761  *       VHashWait_r to perform asynchronous (wrt VOL_LOCK) operations on a
6762  *       volume hash chain.  Its main use case is hash chain reordering, which
6763  *       has the potential to be a highly latent operation.
6764  *
6765  * @see VHashEndExclusive_r
6766  * @see VHashWait_r
6767  *
6768  * @note DAFS only
6769  *
6770  * @internal volume package internal use only.
6771  */
6772 static void
6773 VHashBeginExclusive_r(VolumeHashChainHead * head)
6774 {
6775     assert(head->busy == 0);
6776     head->busy = 1;
6777 }
6778
6779 /**
6780  * relinquish exclusive ownership of a volume hash chain.
6781  *
6782  * @param[in] head   pointer to volume hash chain head object
6783  *
6784  * @pre VOL_LOCK held.  thread owns the hash chain exclusively.
6785  *
6786  * @post hash chain is marked quiescent.  threads awaiting use of
6787  *       chain are awakened.
6788  *
6789  * @see VHashBeginExclusive_r
6790  * @see VHashWait_r
6791  *
6792  * @note DAFS only
6793  *
6794  * @internal volume package internal use only.
6795  */
6796 static void
6797 VHashEndExclusive_r(VolumeHashChainHead * head)
6798 {
6799     assert(head->busy);
6800     head->busy = 0;
6801     assert(pthread_cond_broadcast(&head->chain_busy_cv) == 0);
6802 }
6803
6804 /**
6805  * wait for all asynchronous operations on a hash chain to complete.
6806  *
6807  * @param[in] head   pointer to volume hash chain head object
6808  *
6809  * @pre VOL_LOCK held.
6810  *
6811  * @post hash chain object is quiescent.
6812  *
6813  * @see VHashBeginExclusive_r
6814  * @see VHashEndExclusive_r
6815  *
6816  * @note DAFS only
6817  *
6818  * @note This interface should be called before any attempt to
6819  *       traverse the hash chain.  It is permissible for a thread
6820  *       to gain exclusive access to the chain, and then perform
6821  *       latent operations on the chain asynchronously wrt the 
6822  *       VOL_LOCK.
6823  *
6824  * @warning if waiting is necessary, VOL_LOCK is dropped
6825  *
6826  * @internal volume package internal use only.
6827  */
6828 static void
6829 VHashWait_r(VolumeHashChainHead * head)
6830 {
6831     while (head->busy) {
6832         VOL_CV_WAIT(&head->chain_busy_cv);
6833     }
6834 }
6835 #endif /* AFS_DEMAND_ATTACH_FS */
6836
6837
6838 /***************************************************/
6839 /* Volume by Partition List routines               */
6840 /***************************************************/
6841
6842 /*
6843  * demand attach fileserver adds a
6844  * linked list of volumes to each
6845  * partition object, thus allowing
6846  * for quick enumeration of all
6847  * volumes on a partition
6848  */
6849
6850 #ifdef AFS_DEMAND_ATTACH_FS
6851 /**
6852  * add a volume to its disk partition VByPList.
6853  *
6854  * @param[in] vp  pointer to volume object
6855  *
6856  * @pre either the disk partition VByPList is owned exclusively
6857  *      by the calling thread, or the list is quiescent and
6858  *      VOL_LOCK is held.
6859  *
6860  * @post volume is added to disk partition VByPList
6861  *
6862  * @note DAFS only
6863  *
6864  * @warning it is the caller's responsibility to ensure list
6865  *          quiescence.
6866  *
6867  * @see VVByPListWait_r
6868  * @see VVByPListBeginExclusive_r
6869  * @see VVByPListEndExclusive_r
6870  *
6871  * @internal volume package internal use only.
6872  */
6873 static void
6874 AddVolumeToVByPList_r(Volume * vp)
6875 {
6876     if (queue_IsNotOnQueue(&vp->vol_list)) {
6877         queue_Append(&vp->partition->vol_list, &vp->vol_list);
6878         V_attachFlags(vp) |= VOL_ON_VBYP_LIST;
6879         vp->partition->vol_list.len++;
6880     }
6881 }
6882
6883 /**
6884  * delete a volume from its disk partition VByPList.
6885  *
6886  * @param[in] vp  pointer to volume object
6887  *
6888  * @pre either the disk partition VByPList is owned exclusively
6889  *      by the calling thread, or the list is quiescent and
6890  *      VOL_LOCK is held.
6891  *
6892  * @post volume is removed from the disk partition VByPList
6893  *
6894  * @note DAFS only
6895  *
6896  * @warning it is the caller's responsibility to ensure list
6897  *          quiescence.
6898  *
6899  * @see VVByPListWait_r
6900  * @see VVByPListBeginExclusive_r
6901  * @see VVByPListEndExclusive_r
6902  *
6903  * @internal volume package internal use only.
6904  */
6905 static void
6906 DeleteVolumeFromVByPList_r(Volume * vp)
6907 {
6908     if (queue_IsOnQueue(&vp->vol_list)) {
6909         queue_Remove(&vp->vol_list);
6910         V_attachFlags(vp) &= ~(VOL_ON_VBYP_LIST);
6911         vp->partition->vol_list.len--;
6912     }
6913 }
6914
6915 /**
6916  * begin an asynchronous exclusive operation on a VByPList.
6917  *
6918  * @param[in] dp   pointer to disk partition object
6919  *
6920  * @pre VOL_LOCK held.  VByPList is quiescent.
6921  *
6922  * @post VByPList marked busy.
6923  *
6924  * @note this interface is used in conjunction with VVByPListEndExclusive_r and
6925  *       VVByPListWait_r to perform asynchronous (wrt VOL_LOCK) operations on a
6926  *       VByPList.
6927  *
6928  * @see VVByPListEndExclusive_r
6929  * @see VVByPListWait_r
6930  *
6931  * @note DAFS only
6932  *
6933  * @internal volume package internal use only.
6934  */
6935 /* take exclusive control over the list */
6936 static void
6937 VVByPListBeginExclusive_r(struct DiskPartition64 * dp)
6938 {
6939     assert(dp->vol_list.busy == 0);
6940     dp->vol_list.busy = 1;
6941 }
6942
6943 /**
6944  * relinquish exclusive ownership of a VByPList.
6945  *
6946  * @param[in] dp   pointer to disk partition object
6947  *
6948  * @pre VOL_LOCK held.  thread owns the VByPList exclusively.
6949  *
6950  * @post VByPList is marked quiescent.  threads awaiting use of
6951  *       the list are awakened.
6952  *
6953  * @see VVByPListBeginExclusive_r
6954  * @see VVByPListWait_r
6955  *
6956  * @note DAFS only
6957  *
6958  * @internal volume package internal use only.
6959  */
6960 static void
6961 VVByPListEndExclusive_r(struct DiskPartition64 * dp)
6962 {
6963     assert(dp->vol_list.busy);
6964     dp->vol_list.busy = 0;
6965     assert(pthread_cond_broadcast(&dp->vol_list.cv) == 0);
6966 }
6967
6968 /**
6969  * wait for all asynchronous operations on a VByPList to complete.
6970  *
6971  * @param[in] dp  pointer to disk partition object
6972  *
6973  * @pre VOL_LOCK is held.
6974  *
6975  * @post disk partition's VByP list is quiescent
6976  *
6977  * @note DAFS only
6978  *
6979  * @note This interface should be called before any attempt to
6980  *       traverse the VByPList.  It is permissible for a thread
6981  *       to gain exclusive access to the list, and then perform
6982  *       latent operations on the list asynchronously wrt the 
6983  *       VOL_LOCK.
6984  *
6985  * @warning if waiting is necessary, VOL_LOCK is dropped
6986  *
6987  * @see VVByPListEndExclusive_r
6988  * @see VVByPListBeginExclusive_r
6989  *
6990  * @internal volume package internal use only.
6991  */
6992 static void
6993 VVByPListWait_r(struct DiskPartition64 * dp)
6994 {
6995     while (dp->vol_list.busy) {
6996         VOL_CV_WAIT(&dp->vol_list.cv);
6997     }
6998 }
6999 #endif /* AFS_DEMAND_ATTACH_FS */
7000
7001 /***************************************************/
7002 /* Volume Cache Statistics routines                */
7003 /***************************************************/
7004
7005 void
7006 VPrintCacheStats_r(void)
7007 {
7008     afs_uint32 get_hi, get_lo, load_hi, load_lo;
7009     register struct VnodeClassInfo *vcp;
7010     vcp = &VnodeClassInfo[vLarge];
7011     Log("Large vnode cache, %d entries, %d allocs, %d gets (%d reads), %d writes\n", vcp->cacheSize, vcp->allocs, vcp->gets, vcp->reads, vcp->writes);
7012     vcp = &VnodeClassInfo[vSmall];
7013     Log("Small vnode cache,%d entries, %d allocs, %d gets (%d reads), %d writes\n", vcp->cacheSize, vcp->allocs, vcp->gets, vcp->reads, vcp->writes);
7014     SplitInt64(VStats.hdr_gets, get_hi, get_lo);
7015     SplitInt64(VStats.hdr_loads, load_hi, load_lo);
7016     Log("Volume header cache, %d entries, %d gets, %d replacements\n",
7017         VStats.hdr_cache_size, get_lo, load_lo);
7018 }
7019
7020 void
7021 VPrintCacheStats(void)
7022 {
7023     VOL_LOCK;
7024     VPrintCacheStats_r();
7025     VOL_UNLOCK;
7026 }
7027
7028 #ifdef AFS_DEMAND_ATTACH_FS
7029 static double
7030 UInt64ToDouble(afs_uint64 * x)
7031 {
7032     static double c32 = 4.0 * 1.073741824 * 1000000000.0;
7033     afs_uint32 h, l;
7034     SplitInt64(*x, h, l);
7035     return (((double)h) * c32) + ((double) l);
7036 }
7037
7038 static char *
7039 DoubleToPrintable(double x, char * buf, int len)
7040 {
7041     static double billion = 1000000000.0;
7042     afs_uint32 y[3];
7043
7044     y[0] = (afs_uint32) (x / (billion * billion));
7045     y[1] = (afs_uint32) ((x - (((double)y[0]) * billion * billion)) / billion);
7046     y[2] = (afs_uint32) (x - ((((double)y[0]) * billion * billion) + (((double)y[1]) * billion)));
7047
7048     if (y[0]) {
7049         snprintf(buf, len, "%d%09d%09d", y[0], y[1], y[2]);
7050     } else if (y[1]) {
7051         snprintf(buf, len, "%d%09d", y[1], y[2]);
7052     } else {
7053         snprintf(buf, len, "%d", y[2]);
7054     }
7055     buf[len-1] = '\0';
7056     return buf;
7057 }
7058
7059 struct VLRUExtStatsEntry {
7060     VolumeId volid;
7061 };
7062
7063 struct VLRUExtStats {
7064     afs_uint32 len;
7065     afs_uint32 used;
7066     struct {
7067         afs_uint32 start;
7068         afs_uint32 len;
7069     } queue_info[VLRU_QUEUE_INVALID];
7070     struct VLRUExtStatsEntry * vec;
7071 };
7072
7073 /** 
7074  * add a 256-entry fudge factor onto the vector in case state changes
7075  * out from under us.
7076  */
7077 #define VLRU_EXT_STATS_VEC_LEN_FUDGE   256
7078
7079 /**
7080  * collect extended statistics for the VLRU subsystem.
7081  *
7082  * @param[out] stats  pointer to stats structure to be populated
7083  * @param[in] nvols   number of volumes currently known to exist
7084  *
7085  * @pre VOL_LOCK held
7086  *
7087  * @post stats->vec allocated and populated
7088  *
7089  * @return operation status
7090  *    @retval 0 success
7091  *    @retval 1 failure
7092  */
7093 static int
7094 VVLRUExtStats_r(struct VLRUExtStats * stats, afs_uint32 nvols)
7095 {
7096     afs_uint32 cur, idx, len;
7097     struct rx_queue * qp, * nqp;
7098     Volume * vp;
7099     struct VLRUExtStatsEntry * vec;
7100
7101     len = nvols + VLRU_EXT_STATS_VEC_LEN_FUDGE;
7102     vec = stats->vec = calloc(len,
7103                               sizeof(struct VLRUExtStatsEntry));
7104     if (vec == NULL) {
7105         return 1;
7106     }
7107
7108     cur = 0;
7109     for (idx = VLRU_QUEUE_NEW; idx < VLRU_QUEUE_INVALID; idx++) {
7110         VLRU_Wait_r(&volume_LRU.q[idx]);
7111         VLRU_BeginExclusive_r(&volume_LRU.q[idx]);
7112         VOL_UNLOCK;
7113
7114         stats->queue_info[idx].start = cur;
7115
7116         for (queue_Scan(&volume_LRU.q[idx], qp, nqp, rx_queue)) {
7117             if (cur == len) {
7118                 /* out of space in vec */
7119                 break;
7120             }
7121             vp = (Volume *)((char *)qp - offsetof(Volume, vlru));
7122             vec[cur].volid = vp->hashid;
7123             cur++;
7124         }
7125
7126         stats->queue_info[idx].len = cur - stats->queue_info[idx].start;
7127
7128         VOL_LOCK;
7129         VLRU_EndExclusive_r(&volume_LRU.q[idx]);
7130     }
7131
7132     stats->len = len;
7133     stats->used = cur;
7134     return 0;
7135 }
7136
7137 #define ENUMTOSTRING(en)  #en
7138 #define ENUMCASE(en) \
7139     case en: \
7140         return ENUMTOSTRING(en); \
7141         break
7142
7143 static char *
7144 vlru_idx_to_string(int idx)
7145 {
7146     switch (idx) {
7147         ENUMCASE(VLRU_QUEUE_NEW);
7148         ENUMCASE(VLRU_QUEUE_MID);
7149         ENUMCASE(VLRU_QUEUE_OLD);
7150         ENUMCASE(VLRU_QUEUE_CANDIDATE);
7151         ENUMCASE(VLRU_QUEUE_HELD);
7152         ENUMCASE(VLRU_QUEUE_INVALID);
7153     default:
7154         return "**UNKNOWN**";
7155     }
7156 }
7157
7158 void
7159 VPrintExtendedCacheStats_r(int flags)
7160 {
7161     int i, j;
7162     afs_uint32 vol_sum = 0;
7163     struct stats {
7164         double min;
7165         double max;
7166         double sum;
7167         double avg;
7168     };
7169     struct stats looks, gets, reorders, len;
7170     struct stats ch_looks, ch_gets, ch_reorders;
7171     char pr_buf[4][32];
7172     VolumeHashChainHead *head;
7173     Volume *vp, *np;
7174     struct VLRUExtStats vlru_stats;
7175
7176     /* zero out stats */
7177     memset(&looks, 0, sizeof(struct stats));
7178     memset(&gets, 0, sizeof(struct stats));
7179     memset(&reorders, 0, sizeof(struct stats));
7180     memset(&len, 0, sizeof(struct stats));
7181     memset(&ch_looks, 0, sizeof(struct stats));
7182     memset(&ch_gets, 0, sizeof(struct stats));
7183     memset(&ch_reorders, 0, sizeof(struct stats));
7184
7185     for (i = 0; i < VolumeHashTable.Size; i++) {
7186         head = &VolumeHashTable.Table[i];
7187
7188         VHashWait_r(head);
7189         VHashBeginExclusive_r(head);
7190         VOL_UNLOCK;
7191
7192         ch_looks.sum    = UInt64ToDouble(&head->looks);
7193         ch_gets.sum     = UInt64ToDouble(&head->gets);
7194         ch_reorders.sum = UInt64ToDouble(&head->reorders);
7195
7196         /* update global statistics */
7197         {
7198             looks.sum    += ch_looks.sum;
7199             gets.sum     += ch_gets.sum;
7200             reorders.sum += ch_reorders.sum;
7201             len.sum      += (double)head->len;
7202             vol_sum      += head->len;
7203             
7204             if (i == 0) {
7205                 len.min      = (double) head->len;
7206                 len.max      = (double) head->len;
7207                 looks.min    = ch_looks.sum;
7208                 looks.max    = ch_looks.sum;
7209                 gets.min     = ch_gets.sum;
7210                 gets.max     = ch_gets.sum;
7211                 reorders.min = ch_reorders.sum;
7212                 reorders.max = ch_reorders.sum;
7213             } else {
7214                 if (((double)head->len) < len.min)
7215                     len.min = (double) head->len;
7216                 if (((double)head->len) > len.max)
7217                     len.max = (double) head->len;
7218                 if (ch_looks.sum < looks.min)
7219                     looks.min = ch_looks.sum;
7220                 else if (ch_looks.sum > looks.max)
7221                     looks.max = ch_looks.sum;
7222                 if (ch_gets.sum < gets.min)
7223                     gets.min = ch_gets.sum;
7224                 else if (ch_gets.sum > gets.max)
7225                     gets.max = ch_gets.sum;
7226                 if (ch_reorders.sum < reorders.min)
7227                     reorders.min = ch_reorders.sum;
7228                 else if (ch_reorders.sum > reorders.max)
7229                     reorders.max = ch_reorders.sum;
7230             }
7231         }
7232
7233         if ((flags & VOL_STATS_PER_CHAIN2) && queue_IsNotEmpty(head)) {
7234             /* compute detailed per-chain stats */
7235             struct stats hdr_loads, hdr_gets;
7236             double v_looks, v_loads, v_gets;
7237
7238             /* initialize stats with data from first element in chain */
7239             vp = queue_First(head, Volume);
7240             v_looks = UInt64ToDouble(&vp->stats.hash_lookups);
7241             v_loads = UInt64ToDouble(&vp->stats.hdr_loads);
7242             v_gets  = UInt64ToDouble(&vp->stats.hdr_gets);
7243             ch_gets.min = ch_gets.max = v_looks;
7244             hdr_loads.min = hdr_loads.max = v_loads;
7245             hdr_gets.min = hdr_gets.max = v_gets;
7246             hdr_loads.sum = hdr_gets.sum = 0;
7247
7248             vp = queue_Next(vp, Volume);
7249
7250             /* pull in stats from remaining elements in chain */
7251             for (queue_ScanFrom(head, vp, vp, np, Volume)) {
7252                 v_looks = UInt64ToDouble(&vp->stats.hash_lookups);
7253                 v_loads = UInt64ToDouble(&vp->stats.hdr_loads);
7254                 v_gets  = UInt64ToDouble(&vp->stats.hdr_gets);
7255
7256                 hdr_loads.sum += v_loads;
7257                 hdr_gets.sum += v_gets;
7258
7259                 if (v_looks < ch_gets.min)
7260                     ch_gets.min = v_looks;
7261                 else if (v_looks > ch_gets.max)
7262                     ch_gets.max = v_looks;
7263
7264                 if (v_loads < hdr_loads.min)
7265                     hdr_loads.min = v_loads;
7266                 else if (v_loads > hdr_loads.max)
7267                     hdr_loads.max = v_loads;
7268
7269                 if (v_gets < hdr_gets.min)
7270                     hdr_gets.min = v_gets;
7271                 else if (v_gets > hdr_gets.max)
7272                     hdr_gets.max = v_gets;
7273             }
7274
7275             /* compute per-chain averages */
7276             ch_gets.avg = ch_gets.sum / ((double)head->len);
7277             hdr_loads.avg = hdr_loads.sum / ((double)head->len);
7278             hdr_gets.avg = hdr_gets.sum / ((double)head->len);
7279
7280             /* dump per-chain stats */
7281             Log("Volume hash chain %d : len=%d, looks=%s, reorders=%s\n",
7282                 i, head->len, 
7283                 DoubleToPrintable(ch_looks.sum, pr_buf[0], sizeof(pr_buf[0])),
7284                 DoubleToPrintable(ch_reorders.sum, pr_buf[1], sizeof(pr_buf[1])));
7285             Log("\tVolume gets : min=%s, max=%s, avg=%s, total=%s\n",
7286                 DoubleToPrintable(ch_gets.min, pr_buf[0], sizeof(pr_buf[0])),
7287                 DoubleToPrintable(ch_gets.max, pr_buf[1], sizeof(pr_buf[1])),
7288                 DoubleToPrintable(ch_gets.avg, pr_buf[2], sizeof(pr_buf[2])),
7289                 DoubleToPrintable(ch_gets.sum, pr_buf[3], sizeof(pr_buf[3])));
7290             Log("\tHDR gets : min=%s, max=%s, avg=%s, total=%s\n",
7291                 DoubleToPrintable(hdr_gets.min, pr_buf[0], sizeof(pr_buf[0])),
7292                 DoubleToPrintable(hdr_gets.max, pr_buf[1], sizeof(pr_buf[1])),
7293                 DoubleToPrintable(hdr_gets.avg, pr_buf[2], sizeof(pr_buf[2])),
7294                 DoubleToPrintable(hdr_gets.sum, pr_buf[3], sizeof(pr_buf[3])));
7295             Log("\tHDR loads : min=%s, max=%s, avg=%s, total=%s\n",
7296                 DoubleToPrintable(hdr_loads.min, pr_buf[0], sizeof(pr_buf[0])),
7297                 DoubleToPrintable(hdr_loads.max, pr_buf[1], sizeof(pr_buf[1])),
7298                 DoubleToPrintable(hdr_loads.avg, pr_buf[2], sizeof(pr_buf[2])),
7299                 DoubleToPrintable(hdr_loads.sum, pr_buf[3], sizeof(pr_buf[3])));
7300         } else if (flags & VOL_STATS_PER_CHAIN) {
7301             /* dump simple per-chain stats */
7302             Log("Volume hash chain %d : len=%d, looks=%s, gets=%s, reorders=%s\n",
7303                 i, head->len, 
7304                 DoubleToPrintable(ch_looks.sum, pr_buf[0], sizeof(pr_buf[0])),
7305                 DoubleToPrintable(ch_gets.sum, pr_buf[1], sizeof(pr_buf[1])),
7306                 DoubleToPrintable(ch_reorders.sum, pr_buf[2], sizeof(pr_buf[2])));
7307         }
7308
7309         VOL_LOCK;
7310         VHashEndExclusive_r(head);
7311     }
7312
7313     VOL_UNLOCK;
7314
7315     /* compute global averages */
7316     len.avg      = len.sum      / ((double)VolumeHashTable.Size);
7317     looks.avg    = looks.sum    / ((double)VolumeHashTable.Size);
7318     gets.avg     = gets.sum     / ((double)VolumeHashTable.Size);
7319     reorders.avg = reorders.sum / ((double)VolumeHashTable.Size);
7320
7321     /* dump global stats */
7322     Log("Volume hash summary: %d buckets\n", VolumeHashTable.Size);
7323     Log(" chain length : min=%s, max=%s, avg=%s, total=%s\n",
7324         DoubleToPrintable(len.min, pr_buf[0], sizeof(pr_buf[0])),
7325         DoubleToPrintable(len.max, pr_buf[1], sizeof(pr_buf[1])),
7326         DoubleToPrintable(len.avg, pr_buf[2], sizeof(pr_buf[2])),
7327         DoubleToPrintable(len.sum, pr_buf[3], sizeof(pr_buf[3])));
7328     Log(" looks : min=%s, max=%s, avg=%s, total=%s\n",
7329         DoubleToPrintable(looks.min, pr_buf[0], sizeof(pr_buf[0])),
7330         DoubleToPrintable(looks.max, pr_buf[1], sizeof(pr_buf[1])),
7331         DoubleToPrintable(looks.avg, pr_buf[2], sizeof(pr_buf[2])),
7332         DoubleToPrintable(looks.sum, pr_buf[3], sizeof(pr_buf[3])));
7333     Log(" gets : min=%s, max=%s, avg=%s, total=%s\n",
7334         DoubleToPrintable(gets.min, pr_buf[0], sizeof(pr_buf[0])),
7335         DoubleToPrintable(gets.max, pr_buf[1], sizeof(pr_buf[1])),
7336         DoubleToPrintable(gets.avg, pr_buf[2], sizeof(pr_buf[2])),
7337         DoubleToPrintable(gets.sum, pr_buf[3], sizeof(pr_buf[3])));
7338     Log(" reorders : min=%s, max=%s, avg=%s, total=%s\n",
7339         DoubleToPrintable(reorders.min, pr_buf[0], sizeof(pr_buf[0])),
7340         DoubleToPrintable(reorders.max, pr_buf[1], sizeof(pr_buf[1])),
7341         DoubleToPrintable(reorders.avg, pr_buf[2], sizeof(pr_buf[2])),
7342         DoubleToPrintable(reorders.sum, pr_buf[3], sizeof(pr_buf[3])));
7343
7344     /* print extended disk related statistics */
7345     {
7346         struct DiskPartition64 * diskP;
7347         afs_uint32 vol_count[VOLMAXPARTS+1];
7348         byte part_exists[VOLMAXPARTS+1];
7349         Device id;
7350         int i;
7351
7352         memset(vol_count, 0, sizeof(vol_count));
7353         memset(part_exists, 0, sizeof(part_exists));
7354
7355         VOL_LOCK;
7356
7357         for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
7358             id = diskP->index;
7359             vol_count[id] = diskP->vol_list.len;
7360             part_exists[id] = 1;
7361         }
7362
7363         VOL_UNLOCK;
7364         for (i = 0; i <= VOLMAXPARTS; i++) {
7365             if (part_exists[i]) {
7366                 /* XXX while this is currently safe, it is a violation
7367                  *     of the VGetPartitionById_r interface contract. */
7368                 diskP = VGetPartitionById_r(i, 0);
7369                 if (diskP) {
7370                     Log("Partition %s has %d online volumes\n", 
7371                         VPartitionPath(diskP), diskP->vol_list.len);
7372                 }
7373             }
7374         }
7375         VOL_LOCK;
7376     }
7377
7378     /* print extended VLRU statistics */
7379     if (VVLRUExtStats_r(&vlru_stats, vol_sum) == 0) {
7380         afs_uint32 idx, cur, lpos;
7381         VOL_UNLOCK;
7382         VolumeId line[5];
7383
7384         Log("VLRU State Dump:\n\n");
7385
7386         for (idx = VLRU_QUEUE_NEW; idx < VLRU_QUEUE_INVALID; idx++) {
7387             Log("\t%s:\n", vlru_idx_to_string(idx));
7388
7389             lpos = 0;
7390             for (cur = vlru_stats.queue_info[idx].start;
7391                  cur < vlru_stats.queue_info[idx].len;
7392                  cur++) {
7393                 line[lpos++] = vlru_stats.vec[cur].volid;
7394                 if (lpos==5) {
7395                     Log("\t\t%u, %u, %u, %u, %u,\n",
7396                         line[0], line[1], line[2], line[3], line[4]);
7397                     lpos = 0;
7398                 }
7399             }
7400
7401             if (lpos) {
7402                 while (lpos < 5) {
7403                     line[lpos++] = 0;
7404                 }
7405                 Log("\t\t%u, %u, %u, %u, %u\n",
7406                     line[0], line[1], line[2], line[3], line[4]);
7407             }
7408             Log("\n");
7409         }
7410
7411         free(vlru_stats.vec);
7412
7413         VOL_LOCK;
7414     }
7415 }
7416
7417 void
7418 VPrintExtendedCacheStats(int flags)
7419 {
7420     VOL_LOCK;
7421     VPrintExtendedCacheStats_r(flags);
7422     VOL_UNLOCK;
7423 }
7424 #endif /* AFS_DEMAND_ATTACH_FS */