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