2 * Copyright 2000, International Business Machines Corporation and others.
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
9 * Portions Copyright (c) 2005-2008 Sine Nomine Associates
12 /* 1/1/89: NB: this stuff is all going to be replaced. Don't take it too seriously */
17 Institution: The Information Technology Center, Carnegie-Mellon University
21 #include <afsconfig.h>
22 #include <afs/param.h>
30 #ifdef HAVE_SYS_FILE_H
35 #include <afs/afsint.h>
38 #if !defined(AFS_SGI_ENV)
41 #else /* AFS_OSF_ENV */
42 #ifdef AFS_VFSINCL_ENV
45 #include <sys/fs/ufs_fs.h>
47 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
48 #include <ufs/ufs/dinode.h>
49 #include <ufs/ffs/fs.h>
54 #else /* AFS_VFSINCL_ENV */
55 #if !defined(AFS_AIX_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_XBSD_ENV) && !defined(AFS_DARWIN_ENV)
58 #endif /* AFS_VFSINCL_ENV */
59 #endif /* AFS_OSF_ENV */
60 #endif /* AFS_SGI_ENV */
61 #endif /* !AFS_NT40_ENV */
69 #if defined(AFS_SUN_ENV) || defined(AFS_SUN5_ENV)
71 #include <sys/mnttab.h>
72 #include <sys/mntent.h>
78 #if defined(AFS_SGI_ENV)
81 #ifndef AFS_LINUX20_ENV
82 #include <fstab.h> /* Need to find in libc 5, present in libc 6 */
85 #endif /* AFS_SGI_ENV */
87 #endif /* AFS_HPUX_ENV */
91 #include <afs/errors.h>
94 #include <afs/afssyscalls.h>
96 #include <afs/afsutil.h>
97 #include "daemon_com.h"
102 #include "partition.h"
103 #include "volume_inline.h"
108 #ifdef AFS_PTHREAD_ENV
109 pthread_mutex_t vol_glock_mutex;
110 pthread_mutex_t vol_trans_mutex;
111 pthread_cond_t vol_put_volume_cond;
112 pthread_cond_t vol_sleep_cond;
113 pthread_cond_t vol_init_attach_cond;
114 pthread_cond_t vol_vinit_cond;
115 int vol_attach_threads = 1;
116 #endif /* AFS_PTHREAD_ENV */
118 /* start-time configurable I/O parameters */
119 ih_init_params vol_io_params;
121 #ifdef AFS_DEMAND_ATTACH_FS
122 pthread_mutex_t vol_salvsync_mutex;
125 * Set this to 1 to disallow SALVSYNC communication in all threads; used
126 * during shutdown, since the salvageserver may have gone away.
128 static volatile sig_atomic_t vol_disallow_salvsync = 0;
129 #endif /* AFS_DEMAND_ATTACH_FS */
132 * has VShutdown_r been called / is VShutdown_r running?
134 static int vol_shutting_down = 0;
137 extern void *calloc(), *realloc();
140 /* Forward declarations */
141 static Volume *attach2(Error * ec, VolId volumeId, char *path,
142 struct DiskPartition64 *partp, Volume * vp,
143 int isbusy, int mode, int *acheckedOut);
144 static void ReallyFreeVolume(Volume * vp);
145 #ifdef AFS_DEMAND_ATTACH_FS
146 static void FreeVolume(Volume * vp);
147 #else /* !AFS_DEMAND_ATTACH_FS */
148 #define FreeVolume(vp) ReallyFreeVolume(vp)
149 static void VScanUpdateList(void);
150 #endif /* !AFS_DEMAND_ATTACH_FS */
151 static void VInitVolumeHeaderCache(afs_uint32 howMany);
152 static int GetVolumeHeader(Volume * vp);
153 static void ReleaseVolumeHeader(struct volHeader *hd);
154 static void FreeVolumeHeader(Volume * vp);
155 static void AddVolumeToHashTable(Volume * vp, int hashid);
156 static void DeleteVolumeFromHashTable(Volume * vp);
158 static int VHold(Volume * vp);
160 static int VHold_r(Volume * vp);
161 static void VGetBitmap_r(Error * ec, Volume * vp, VnodeClass class);
162 static void VReleaseVolumeHandles_r(Volume * vp);
163 static void VCloseVolumeHandles_r(Volume * vp);
164 static void LoadVolumeHeader(Error * ec, Volume * vp);
165 static int VCheckOffline(Volume * vp);
166 static int VCheckDetach(Volume * vp);
167 static Volume * GetVolume(Error * ec, Error * client_ec, VolId volumeId,
168 Volume * hint, const struct timespec *ts);
170 int LogLevel; /* Vice loglevel--not defined as extern so that it will be
171 * defined when not linked with vice, XXXX */
172 ProgramType programType; /* The type of program using the package */
173 static VolumePackageOptions vol_opts;
175 /* extended volume package statistics */
178 #ifdef VOL_LOCK_DEBUG
179 pthread_t vol_glock_holder = 0;
183 #define VOLUME_BITMAP_GROWSIZE 16 /* bytes, => 128vnodes */
184 /* Must be a multiple of 4 (1 word) !! */
186 /* this parameter needs to be tunable at runtime.
187 * 128 was really inadequate for largish servers -- at 16384 volumes this
188 * puts average chain length at 128, thus an average 65 deref's to find a volptr.
189 * talk about bad spatial locality...
191 * an AVL or splay tree might work a lot better, but we'll just increase
192 * the default hash table size for now
194 #define DEFAULT_VOLUME_HASH_SIZE 256 /* Must be a power of 2!! */
195 #define DEFAULT_VOLUME_HASH_MASK (DEFAULT_VOLUME_HASH_SIZE-1)
196 #define VOLUME_HASH(volumeId) (volumeId&(VolumeHashTable.Mask))
199 * turn volume hash chains into partially ordered lists.
200 * when the threshold is exceeded between two adjacent elements,
201 * perform a chain rebalancing operation.
203 * keep the threshold high in order to keep cache line invalidates
204 * low "enough" on SMPs
206 #define VOLUME_HASH_REORDER_THRESHOLD 200
209 * when possible, don't just reorder single elements, but reorder
210 * entire chains of elements at once. a chain of elements that
211 * exceed the element previous to the pivot by at least CHAIN_THRESH
212 * accesses are moved in front of the chain whose elements have at
213 * least CHAIN_THRESH less accesses than the pivot element
215 #define VOLUME_HASH_REORDER_CHAIN_THRESH (VOLUME_HASH_REORDER_THRESHOLD / 2)
217 #include "rx/rx_queue.h"
220 VolumeHashTable_t VolumeHashTable = {
221 DEFAULT_VOLUME_HASH_SIZE,
222 DEFAULT_VOLUME_HASH_MASK,
227 static void VInitVolumeHash(void);
231 /* This macro is used where an ffs() call does not exist. Was in util/ffs.c */
235 afs_int32 ffs_tmp = x;
239 for (ffs_i = 1;; ffs_i++) {
246 #endif /* !AFS_HAVE_FFS */
248 #ifdef AFS_PTHREAD_ENV
250 * disk partition queue element
252 typedef struct diskpartition_queue_t {
253 struct rx_queue queue; /**< queue header */
254 struct DiskPartition64 *diskP; /**< disk partition table entry */
255 } diskpartition_queue_t;
257 #ifndef AFS_DEMAND_ATTACH_FS
259 typedef struct vinitvolumepackage_thread_t {
260 struct rx_queue queue;
261 pthread_cond_t thread_done_cv;
262 int n_threads_complete;
263 } vinitvolumepackage_thread_t;
264 static void * VInitVolumePackageThread(void * args);
266 #else /* !AFS_DEMAND_ATTTACH_FS */
267 #define VINIT_BATCH_MAX_SIZE 512
270 * disk partition work queue
272 struct partition_queue {
273 struct rx_queue head; /**< diskpartition_queue_t queue */
274 pthread_mutex_t mutex;
279 * volumes parameters for preattach
281 struct volume_init_batch {
282 struct rx_queue queue; /**< queue header */
283 int thread; /**< posting worker thread */
284 int last; /**< indicates thread is done */
285 int size; /**< number of volume ids in batch */
286 Volume *batch[VINIT_BATCH_MAX_SIZE]; /**< volumes ids to preattach */
290 * volume parameters work queue
292 struct volume_init_queue {
293 struct rx_queue head; /**< volume_init_batch queue */
294 pthread_mutex_t mutex;
299 * volume init worker thread parameters
301 struct vinitvolumepackage_thread_param {
302 int nthreads; /**< total number of worker threads */
303 int thread; /**< thread number for this worker thread */
304 struct partition_queue *pq; /**< queue partitions to scan */
305 struct volume_init_queue *vq; /**< queue of volume to preattach */
308 static void *VInitVolumePackageThread(void *args);
309 static struct DiskPartition64 *VInitNextPartition(struct partition_queue *pq);
310 static VolId VInitNextVolumeId(DIR *dirp);
311 static int VInitPreAttachVolumes(int nthreads, struct volume_init_queue *vq);
313 #endif /* !AFS_DEMAND_ATTACH_FS */
314 #endif /* AFS_PTHREAD_ENV */
316 #ifndef AFS_DEMAND_ATTACH_FS
317 static int VAttachVolumesByPartition(struct DiskPartition64 *diskP,
318 int * nAttached, int * nUnattached);
319 #endif /* AFS_DEMAND_ATTACH_FS */
322 #ifdef AFS_DEMAND_ATTACH_FS
323 /* demand attach fileserver extensions */
326 * in the future we will support serialization of VLRU state into the fs_state
329 * these structures are the beginning of that effort
331 struct VLRU_DiskHeader {
332 struct versionStamp stamp; /* magic and structure version number */
333 afs_uint32 mtime; /* time of dump to disk */
334 afs_uint32 num_records; /* number of VLRU_DiskEntry records */
337 struct VLRU_DiskEntry {
338 afs_uint32 vid; /* volume ID */
339 afs_uint32 idx; /* generation */
340 afs_uint32 last_get; /* timestamp of last get */
343 struct VLRU_StartupQueue {
344 struct VLRU_DiskEntry * entry;
349 typedef struct vshutdown_thread_t {
351 pthread_mutex_t lock;
353 pthread_cond_t master_cv;
355 int n_threads_complete;
357 int schedule_version;
360 byte n_parts_done_pass;
361 byte part_thread_target[VOLMAXPARTS+1];
362 byte part_done_pass[VOLMAXPARTS+1];
363 struct rx_queue * part_pass_head[VOLMAXPARTS+1];
364 int stats[4][VOLMAXPARTS+1];
365 } vshutdown_thread_t;
366 static void * VShutdownThread(void * args);
369 static Volume * VAttachVolumeByVp_r(Error * ec, Volume * vp, int mode);
370 static int VCheckFree(Volume * vp);
373 static void AddVolumeToVByPList_r(Volume * vp);
374 static void DeleteVolumeFromVByPList_r(Volume * vp);
375 static void VVByPListBeginExclusive_r(struct DiskPartition64 * dp);
376 static void VVByPListEndExclusive_r(struct DiskPartition64 * dp);
377 static void VVByPListWait_r(struct DiskPartition64 * dp);
379 /* online salvager */
380 static int VCheckSalvage(Volume * vp);
381 #if defined(SALVSYNC_BUILD_CLIENT) || defined(FSSYNC_BUILD_CLIENT)
382 static int VScheduleSalvage_r(Volume * vp);
385 /* Volume hash table */
386 static void VReorderHash_r(VolumeHashChainHead * head, Volume * pp, Volume * vp);
387 static void VHashBeginExclusive_r(VolumeHashChainHead * head);
388 static void VHashEndExclusive_r(VolumeHashChainHead * head);
389 static void VHashWait_r(VolumeHashChainHead * head);
392 static int ShutdownVByPForPass_r(struct DiskPartition64 * dp, int pass);
393 static int ShutdownVolumeWalk_r(struct DiskPartition64 * dp, int pass,
394 struct rx_queue ** idx);
395 static void ShutdownController(vshutdown_thread_t * params);
396 static void ShutdownCreateSchedule(vshutdown_thread_t * params);
399 static void VLRU_ComputeConstants(void);
400 static void VInitVLRU(void);
401 static void VLRU_Init_Node_r(Volume * vp);
402 static void VLRU_Add_r(Volume * vp);
403 static void VLRU_Delete_r(Volume * vp);
404 static void VLRU_UpdateAccess_r(Volume * vp);
405 static void * VLRU_ScannerThread(void * args);
406 static void VLRU_Scan_r(int idx);
407 static void VLRU_Promote_r(int idx);
408 static void VLRU_Demote_r(int idx);
409 static void VLRU_SwitchQueues(Volume * vp, int new_idx, int append);
412 static int VCheckSoftDetach(Volume * vp, afs_uint32 thresh);
413 static int VCheckSoftDetachCandidate(Volume * vp, afs_uint32 thresh);
414 static int VSoftDetachVolume_r(Volume * vp, afs_uint32 thresh);
417 pthread_key_t VThread_key;
418 VThreadOptions_t VThread_defaults = {
419 0 /**< allow salvsync */
421 #endif /* AFS_DEMAND_ATTACH_FS */
424 struct Lock vol_listLock; /* Lock obtained when listing volumes:
425 * prevents a volume from being missed
426 * if the volume is attached during a
430 /* Common message used when the volume goes off line */
431 char *VSalvageMessage =
432 "Files in this volume are currently unavailable; call operations";
434 int VInit; /* 0 - uninitialized,
435 * 1 - initialized but not all volumes have been attached,
436 * 2 - initialized and all volumes have been attached,
437 * 3 - initialized, all volumes have been attached, and
438 * VConnectFS() has completed. */
440 static int vinit_attach_abort = 0;
442 bit32 VolumeCacheCheck; /* Incremented everytime a volume goes on line--
443 * used to stamp volume headers and in-core
444 * vnodes. When the volume goes on-line the
445 * vnode will be invalidated
446 * access only with VOL_LOCK held */
451 /***************************************************/
452 /* Startup routines */
453 /***************************************************/
455 #if defined(FAST_RESTART) && defined(AFS_DEMAND_ATTACH_FS)
456 # error FAST_RESTART and DAFS are incompatible. For the DAFS equivalent \
457 of FAST_RESTART, use the -unsafe-nosalvage fileserver argument
461 * assign default values to a VolumePackageOptions struct.
463 * Always call this on a VolumePackageOptions struct first, then set any
464 * specific options you want, then call VInitVolumePackage2.
466 * @param[in] pt caller's program type
467 * @param[out] opts volume package options
470 VOptDefaults(ProgramType pt, VolumePackageOptions *opts)
472 opts->nLargeVnodes = opts->nSmallVnodes = 5;
475 opts->canScheduleSalvage = 0;
476 opts->canUseFSSYNC = 0;
477 opts->canUseSALVSYNC = 0;
479 opts->interrupt_rxcall = NULL;
480 opts->offline_timeout = -1;
481 opts->offline_shutdown_timeout = -1;
482 opts->usage_threshold = 128;
483 opts->usage_rate_limit = 5;
486 opts->unsafe_attach = 1;
487 #else /* !FAST_RESTART */
488 opts->unsafe_attach = 0;
489 #endif /* !FAST_RESTART */
493 opts->canScheduleSalvage = 1;
494 opts->canUseSALVSYNC = 1;
498 opts->canUseFSSYNC = 1;
502 opts->nLargeVnodes = 0;
503 opts->nSmallVnodes = 0;
505 opts->canScheduleSalvage = 1;
506 opts->canUseFSSYNC = 1;
516 * Set VInit to a certain value, and signal waiters.
518 * @param[in] value the value to set VInit to
523 VSetVInit_r(int value)
526 CV_BROADCAST(&vol_vinit_cond);
530 VLogOfflineTimeout(const char *type, afs_int32 timeout)
536 Log("VInitVolumePackage: Interrupting clients accessing %s "
537 "immediately\n", type);
539 Log("VInitVolumePackage: Interrupting clients accessing %s "
540 "after %ld second%s\n", type, (long)timeout, timeout==1?"":"s");
545 VInitVolumePackage2(ProgramType pt, VolumePackageOptions * opts)
547 int errors = 0; /* Number of errors while finding vice partitions. */
552 #ifndef AFS_PTHREAD_ENV
553 if (opts->offline_timeout != -1 || opts->offline_shutdown_timeout != -1) {
554 Log("VInitVolumePackage: offline_timeout and/or "
555 "offline_shutdown_timeout was specified, but the volume package "
556 "does not support these for LWP builds\n");
560 VLogOfflineTimeout("volumes going offline", opts->offline_timeout);
561 VLogOfflineTimeout("volumes going offline during shutdown",
562 opts->offline_shutdown_timeout);
564 memset(&VStats, 0, sizeof(VStats));
565 VStats.hdr_cache_size = 200;
567 VInitPartitionPackage();
569 #ifdef AFS_DEMAND_ATTACH_FS
570 if (programType == fileServer) {
573 VLRU_SetOptions(VLRU_SET_ENABLED, 0);
575 osi_Assert(pthread_key_create(&VThread_key, NULL) == 0);
578 MUTEX_INIT(&vol_glock_mutex, "vol glock", MUTEX_DEFAULT, 0);
579 MUTEX_INIT(&vol_trans_mutex, "vol trans", MUTEX_DEFAULT, 0);
580 CV_INIT(&vol_put_volume_cond, "vol put", CV_DEFAULT, 0);
581 CV_INIT(&vol_sleep_cond, "vol sleep", CV_DEFAULT, 0);
582 CV_INIT(&vol_init_attach_cond, "vol init attach", CV_DEFAULT, 0);
583 CV_INIT(&vol_vinit_cond, "vol init", CV_DEFAULT, 0);
584 #ifndef AFS_PTHREAD_ENV
586 #endif /* AFS_PTHREAD_ENV */
587 Lock_Init(&vol_listLock);
589 srandom(time(0)); /* For VGetVolumeInfo */
591 #ifdef AFS_DEMAND_ATTACH_FS
592 MUTEX_INIT(&vol_salvsync_mutex, "salvsync", MUTEX_DEFAULT, 0);
593 #endif /* AFS_DEMAND_ATTACH_FS */
595 /* Ok, we have done enough initialization that fileserver can
596 * start accepting calls, even though the volumes may not be
597 * available just yet.
601 #if defined(AFS_DEMAND_ATTACH_FS) && defined(SALVSYNC_BUILD_SERVER)
602 if (programType == salvageServer) {
605 #endif /* AFS_DEMAND_ATTACH_FS */
606 #ifdef FSSYNC_BUILD_SERVER
607 if (programType == fileServer) {
611 #if defined(AFS_DEMAND_ATTACH_FS) && defined(SALVSYNC_BUILD_CLIENT)
612 if (VCanUseSALVSYNC()) {
613 /* establish a connection to the salvager at this point */
614 osi_Assert(VConnectSALV() != 0);
616 #endif /* AFS_DEMAND_ATTACH_FS */
618 if (opts->volcache > VStats.hdr_cache_size)
619 VStats.hdr_cache_size = opts->volcache;
620 VInitVolumeHeaderCache(VStats.hdr_cache_size);
622 VInitVnodes(vLarge, opts->nLargeVnodes);
623 VInitVnodes(vSmall, opts->nSmallVnodes);
626 errors = VAttachPartitions();
630 if (programType != fileServer) {
631 errors = VInitAttachVolumes(programType);
637 #ifdef FSSYNC_BUILD_CLIENT
638 if (VCanUseFSSYNC()) {
640 #ifdef AFS_DEMAND_ATTACH_FS
641 if (programType == salvageServer) {
642 Log("Unable to connect to file server; aborted\n");
645 #endif /* AFS_DEMAND_ATTACH_FS */
646 Log("Unable to connect to file server; will retry at need\n");
649 #endif /* FSSYNC_BUILD_CLIENT */
654 #if !defined(AFS_PTHREAD_ENV)
656 * Attach volumes in vice partitions
658 * @param[in] pt calling program type
661 * @note This is the original, non-threaded version of attach parititions.
663 * @post VInit state is 2
666 VInitAttachVolumes(ProgramType pt)
668 osi_Assert(VInit==1);
669 if (pt == fileServer) {
670 struct DiskPartition64 *diskP;
671 /* Attach all the volumes in this partition */
672 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
673 int nAttached = 0, nUnattached = 0;
674 osi_Assert(VAttachVolumesByPartition(diskP, &nAttached, &nUnattached) == 0);
678 VSetVInit_r(2); /* Initialized, and all volumes have been attached */
679 LWP_NoYieldSignal(VInitAttachVolumes);
683 #endif /* !AFS_PTHREAD_ENV */
685 #if defined(AFS_PTHREAD_ENV) && !defined(AFS_DEMAND_ATTACH_FS)
687 * Attach volumes in vice partitions
689 * @param[in] pt calling program type
692 * @note Threaded version of attach parititions.
694 * @post VInit state is 2
697 VInitAttachVolumes(ProgramType pt)
699 osi_Assert(VInit==1);
700 if (pt == fileServer) {
701 struct DiskPartition64 *diskP;
702 struct vinitvolumepackage_thread_t params;
703 struct diskpartition_queue_t * dpq;
704 int i, threads, parts;
706 pthread_attr_t attrs;
708 CV_INIT(¶ms.thread_done_cv, "thread done", CV_DEFAULT, 0);
710 params.n_threads_complete = 0;
712 /* create partition work queue */
713 for (parts=0, diskP = DiskPartitionList; diskP; diskP = diskP->next, parts++) {
714 dpq = (diskpartition_queue_t *) malloc(sizeof(struct diskpartition_queue_t));
715 osi_Assert(dpq != NULL);
717 queue_Append(¶ms,dpq);
720 threads = MIN(parts, vol_attach_threads);
723 /* spawn off a bunch of initialization threads */
724 osi_Assert(pthread_attr_init(&attrs) == 0);
725 osi_Assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
727 Log("VInitVolumePackage: beginning parallel fileserver startup\n");
728 Log("VInitVolumePackage: using %d threads to attach volumes on %d partitions\n",
732 for (i=0; i < threads; i++) {
735 osi_Assert(pthread_create
736 (&tid, &attrs, &VInitVolumePackageThread,
738 AFS_SIGSET_RESTORE();
741 while(params.n_threads_complete < threads) {
742 VOL_CV_WAIT(¶ms.thread_done_cv);
746 osi_Assert(pthread_attr_destroy(&attrs) == 0);
748 /* if we're only going to run one init thread, don't bother creating
750 Log("VInitVolumePackage: beginning single-threaded fileserver startup\n");
751 Log("VInitVolumePackage: using 1 thread to attach volumes on %d partition(s)\n",
754 VInitVolumePackageThread(¶ms);
757 CV_DESTROY(¶ms.thread_done_cv);
760 VSetVInit_r(2); /* Initialized, and all volumes have been attached */
761 CV_BROADCAST(&vol_init_attach_cond);
767 VInitVolumePackageThread(void * args) {
769 struct DiskPartition64 *diskP;
770 struct vinitvolumepackage_thread_t * params;
771 struct diskpartition_queue_t * dpq;
773 params = (vinitvolumepackage_thread_t *) args;
777 /* Attach all the volumes in this partition */
778 while (queue_IsNotEmpty(params)) {
779 int nAttached = 0, nUnattached = 0;
781 if (vinit_attach_abort) {
782 Log("Aborting initialization\n");
786 dpq = queue_First(params,diskpartition_queue_t);
792 osi_Assert(VAttachVolumesByPartition(diskP, &nAttached, &nUnattached) == 0);
798 params->n_threads_complete++;
799 CV_SIGNAL(¶ms->thread_done_cv);
803 #endif /* AFS_PTHREAD_ENV && !AFS_DEMAND_ATTACH_FS */
805 #if defined(AFS_DEMAND_ATTACH_FS)
807 * Attach volumes in vice partitions
809 * @param[in] pt calling program type
812 * @note Threaded version of attach partitions.
814 * @post VInit state is 2
817 VInitAttachVolumes(ProgramType pt)
819 osi_Assert(VInit==1);
820 if (pt == fileServer) {
822 struct DiskPartition64 *diskP;
823 struct partition_queue pq;
824 struct volume_init_queue vq;
826 int i, threads, parts;
828 pthread_attr_t attrs;
830 /* create partition work queue */
832 CV_INIT(&(pq.cv), "partq", CV_DEFAULT, 0);
833 MUTEX_INIT(&(pq.mutex), "partq", MUTEX_DEFAULT, 0);
834 for (parts = 0, diskP = DiskPartitionList; diskP; diskP = diskP->next, parts++) {
835 struct diskpartition_queue_t *dp;
836 dp = (struct diskpartition_queue_t*)malloc(sizeof(struct diskpartition_queue_t));
837 osi_Assert(dp != NULL);
839 queue_Append(&pq, dp);
842 /* number of worker threads; at least one, not to exceed the number of partitions */
843 threads = MIN(parts, vol_attach_threads);
845 /* create volume work queue */
847 CV_INIT(&(vq.cv), "volq", CV_DEFAULT, 0);
848 MUTEX_INIT(&(vq.mutex), "volq", MUTEX_DEFAULT, 0);
850 osi_Assert(pthread_attr_init(&attrs) == 0);
851 osi_Assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
853 Log("VInitVolumePackage: beginning parallel fileserver startup\n");
854 Log("VInitVolumePackage: using %d threads to pre-attach volumes on %d partitions\n",
857 /* create threads to scan disk partitions. */
858 for (i=0; i < threads; i++) {
859 struct vinitvolumepackage_thread_param *params;
862 params = (struct vinitvolumepackage_thread_param *)malloc(sizeof(struct vinitvolumepackage_thread_param));
866 params->nthreads = threads;
867 params->thread = i+1;
870 osi_Assert(pthread_create (&tid, &attrs, &VInitVolumePackageThread, (void*)params) == 0);
871 AFS_SIGSET_RESTORE();
874 VInitPreAttachVolumes(threads, &vq);
876 osi_Assert(pthread_attr_destroy(&attrs) == 0);
878 MUTEX_DESTROY(&pq.mutex);
880 MUTEX_DESTROY(&vq.mutex);
884 VSetVInit_r(2); /* Initialized, and all volumes have been attached */
885 CV_BROADCAST(&vol_init_attach_cond);
892 * Volume package initialization worker thread. Scan partitions for volume
893 * header files. Gather batches of volume ids and dispatch them to
894 * the main thread to be preattached. The volume preattachement is done
895 * in the main thread to avoid global volume lock contention.
898 VInitVolumePackageThread(void *args)
900 struct vinitvolumepackage_thread_param *params;
901 struct DiskPartition64 *partition;
902 struct partition_queue *pq;
903 struct volume_init_queue *vq;
904 struct volume_init_batch *vb;
907 params = (struct vinitvolumepackage_thread_param *)args;
913 vb = (struct volume_init_batch*)malloc(sizeof(struct volume_init_batch));
915 vb->thread = params->thread;
919 Log("Scanning partitions on thread %d of %d\n", params->thread, params->nthreads);
920 while((partition = VInitNextPartition(pq))) {
924 Log("Partition %s: pre-attaching volumes\n", partition->name);
925 dirp = opendir(VPartitionPath(partition));
927 Log("opendir on Partition %s failed, errno=%d!\n", partition->name, errno);
930 while ((vid = VInitNextVolumeId(dirp))) {
931 Volume *vp = (Volume*)malloc(sizeof(Volume));
933 memset(vp, 0, sizeof(Volume));
934 vp->device = partition->device;
935 vp->partition = partition;
937 queue_Init(&vp->vnode_list);
938 queue_Init(&vp->rx_call_list);
939 CV_INIT(&V_attachCV(vp), "partattach", CV_DEFAULT, 0);
941 vb->batch[vb->size++] = vp;
942 if (vb->size == VINIT_BATCH_MAX_SIZE) {
943 MUTEX_ENTER(&vq->mutex);
944 queue_Append(vq, vb);
945 CV_BROADCAST(&vq->cv);
946 MUTEX_EXIT(&vq->mutex);
948 vb = (struct volume_init_batch*)malloc(sizeof(struct volume_init_batch));
950 vb->thread = params->thread;
959 MUTEX_ENTER(&vq->mutex);
960 queue_Append(vq, vb);
961 CV_BROADCAST(&vq->cv);
962 MUTEX_EXIT(&vq->mutex);
964 Log("Partition scan thread %d of %d ended\n", params->thread, params->nthreads);
970 * Read next element from the pre-populated partition list.
972 static struct DiskPartition64*
973 VInitNextPartition(struct partition_queue *pq)
975 struct DiskPartition64 *partition;
976 struct diskpartition_queue_t *dp; /* queue element */
978 if (vinit_attach_abort) {
979 Log("Aborting volume preattach thread.\n");
983 /* get next partition to scan */
984 MUTEX_ENTER(&pq->mutex);
985 if (queue_IsEmpty(pq)) {
986 MUTEX_EXIT(&pq->mutex);
989 dp = queue_First(pq, diskpartition_queue_t);
991 MUTEX_EXIT(&pq->mutex);
994 osi_Assert(dp->diskP);
996 partition = dp->diskP;
1002 * Find next volume id on the partition.
1005 VInitNextVolumeId(DIR *dirp)
1011 while((d = readdir(dirp))) {
1012 if (vinit_attach_abort) {
1013 Log("Aborting volume preattach thread.\n");
1016 ext = strrchr(d->d_name, '.');
1017 if (d->d_name[0] == 'V' && ext && strcmp(ext, VHDREXT) == 0) {
1018 vid = VolumeNumber(d->d_name);
1022 Log("Warning: bogus volume header file: %s\n", d->d_name);
1029 * Preattach volumes in batches to avoid lock contention.
1032 VInitPreAttachVolumes(int nthreads, struct volume_init_queue *vq)
1034 struct volume_init_batch *vb;
1038 /* dequeue next volume */
1039 MUTEX_ENTER(&vq->mutex);
1040 if (queue_IsEmpty(vq)) {
1041 CV_WAIT(&vq->cv, &vq->mutex);
1043 vb = queue_First(vq, volume_init_batch);
1045 MUTEX_EXIT(&vq->mutex);
1049 for (i = 0; i<vb->size; i++) {
1055 dup = VLookupVolume_r(&ec, vp->hashid, NULL);
1057 Log("Error looking up volume, code=%d\n", ec);
1060 Log("Warning: Duplicate volume id %d detected.\n", vp->hashid);
1063 /* put pre-attached volume onto the hash table
1064 * and bring it up to the pre-attached state */
1065 AddVolumeToHashTable(vp, vp->hashid);
1066 AddVolumeToVByPList_r(vp);
1067 VLRU_Init_Node_r(vp);
1068 VChangeState_r(vp, VOL_STATE_PREATTACHED);
1081 #endif /* AFS_DEMAND_ATTACH_FS */
1083 #if !defined(AFS_DEMAND_ATTACH_FS)
1085 * attach all volumes on a given disk partition
1088 VAttachVolumesByPartition(struct DiskPartition64 *diskP, int * nAttached, int * nUnattached)
1094 Log("Partition %s: attaching volumes\n", diskP->name);
1095 dirp = opendir(VPartitionPath(diskP));
1097 Log("opendir on Partition %s failed!\n", diskP->name);
1101 while ((dp = readdir(dirp))) {
1103 p = strrchr(dp->d_name, '.');
1105 if (vinit_attach_abort) {
1106 Log("Partition %s: abort attach volumes\n", diskP->name);
1110 if (p != NULL && strcmp(p, VHDREXT) == 0) {
1113 vp = VAttachVolumeByName(&error, diskP->name, dp->d_name,
1115 (*(vp ? nAttached : nUnattached))++;
1116 if (error == VOFFLINE)
1117 Log("Volume %d stays offline (/vice/offline/%s exists)\n", VolumeNumber(dp->d_name), dp->d_name);
1118 else if (LogLevel >= 5) {
1119 Log("Partition %s: attached volume %d (%s)\n",
1120 diskP->name, VolumeNumber(dp->d_name),
1129 Log("Partition %s: attached %d volumes; %d volumes not attached\n", diskP->name, *nAttached, *nUnattached);
1134 #endif /* !AFS_DEMAND_ATTACH_FS */
1136 /***************************************************/
1137 /* Shutdown routines */
1138 /***************************************************/
1142 * highly multithreaded volume package shutdown
1144 * with the demand attach fileserver extensions,
1145 * VShutdown has been modified to be multithreaded.
1146 * In order to achieve optimal use of many threads,
1147 * the shutdown code involves one control thread and
1148 * n shutdown worker threads. The control thread
1149 * periodically examines the number of volumes available
1150 * for shutdown on each partition, and produces a worker
1151 * thread allocation schedule. The idea is to eliminate
1152 * redundant scheduling computation on the workers by
1153 * having a single master scheduler.
1155 * The scheduler's objectives are:
1157 * each partition with volumes remaining gets allocated
1158 * at least 1 thread (assuming sufficient threads)
1160 * threads are allocated proportional to the number of
1161 * volumes remaining to be offlined. This ensures that
1162 * the OS I/O scheduler has many requests to elevator
1163 * seek on partitions that will (presumably) take the
1164 * longest amount of time (from now) to finish shutdown
1165 * (3) keep threads busy
1166 * when there are extra threads, they are assigned to
1167 * partitions using a simple round-robin algorithm
1169 * In the future, we may wish to add the ability to adapt
1170 * to the relative performance patterns of each disk
1175 * multi-step shutdown process
1177 * demand attach shutdown is a four-step process. Each
1178 * shutdown "pass" shuts down increasingly more difficult
1179 * volumes. The main purpose is to achieve better cache
1180 * utilization during shutdown.
1183 * shutdown volumes in the unattached, pre-attached
1186 * shutdown attached volumes with cached volume headers
1188 * shutdown all volumes in non-exclusive states
1190 * shutdown all remaining volumes
1193 #ifdef AFS_DEMAND_ATTACH_FS
1199 struct DiskPartition64 * diskP;
1200 struct diskpartition_queue_t * dpq;
1201 vshutdown_thread_t params;
1203 pthread_attr_t attrs;
1205 memset(¶ms, 0, sizeof(vshutdown_thread_t));
1208 Log("VShutdown: aborting attach volumes\n");
1209 vinit_attach_abort = 1;
1210 VOL_CV_WAIT(&vol_init_attach_cond);
1213 for (params.n_parts=0, diskP = DiskPartitionList;
1214 diskP; diskP = diskP->next, params.n_parts++);
1216 Log("VShutdown: shutting down on-line volumes on %d partition%s...\n",
1217 params.n_parts, params.n_parts > 1 ? "s" : "");
1219 vol_shutting_down = 1;
1221 if (vol_attach_threads > 1) {
1222 /* prepare for parallel shutdown */
1223 params.n_threads = vol_attach_threads;
1224 MUTEX_INIT(¶ms.lock, "params", MUTEX_DEFAULT, 0);
1225 CV_INIT(¶ms.cv, "params", CV_DEFAULT, 0);
1226 CV_INIT(¶ms.master_cv, "params master", CV_DEFAULT, 0);
1227 osi_Assert(pthread_attr_init(&attrs) == 0);
1228 osi_Assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
1229 queue_Init(¶ms);
1231 /* setup the basic partition information structures for
1232 * parallel shutdown */
1233 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1235 struct rx_queue * qp, * nqp;
1239 VVByPListWait_r(diskP);
1240 VVByPListBeginExclusive_r(diskP);
1243 for (queue_Scan(&diskP->vol_list, qp, nqp, rx_queue)) {
1244 vp = (Volume *)((char *)qp - offsetof(Volume, vol_list));
1248 Log("VShutdown: partition %s has %d volumes with attached headers\n",
1249 VPartitionPath(diskP), count);
1252 /* build up the pass 0 shutdown work queue */
1253 dpq = (struct diskpartition_queue_t *) malloc(sizeof(struct diskpartition_queue_t));
1254 osi_Assert(dpq != NULL);
1256 queue_Prepend(¶ms, dpq);
1258 params.part_pass_head[diskP->index] = queue_First(&diskP->vol_list, rx_queue);
1261 Log("VShutdown: beginning parallel fileserver shutdown\n");
1262 Log("VShutdown: using %d threads to offline volumes on %d partition%s\n",
1263 vol_attach_threads, params.n_parts, params.n_parts > 1 ? "s" : "" );
1265 /* do pass 0 shutdown */
1266 MUTEX_ENTER(¶ms.lock);
1267 for (i=0; i < params.n_threads; i++) {
1268 osi_Assert(pthread_create
1269 (&tid, &attrs, &VShutdownThread,
1273 /* wait for all the pass 0 shutdowns to complete */
1274 while (params.n_threads_complete < params.n_threads) {
1275 CV_WAIT(¶ms.master_cv, ¶ms.lock);
1277 params.n_threads_complete = 0;
1279 CV_BROADCAST(¶ms.cv);
1280 MUTEX_EXIT(¶ms.lock);
1282 Log("VShutdown: pass 0 completed using the 1 thread per partition algorithm\n");
1283 Log("VShutdown: starting passes 1 through 3 using finely-granular mp-fast algorithm\n");
1285 /* run the parallel shutdown scheduler. it will drop the glock internally */
1286 ShutdownController(¶ms);
1288 /* wait for all the workers to finish pass 3 and terminate */
1289 while (params.pass < 4) {
1290 VOL_CV_WAIT(¶ms.cv);
1293 osi_Assert(pthread_attr_destroy(&attrs) == 0);
1294 CV_DESTROY(¶ms.cv);
1295 CV_DESTROY(¶ms.master_cv);
1296 MUTEX_DESTROY(¶ms.lock);
1298 /* drop the VByPList exclusive reservations */
1299 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1300 VVByPListEndExclusive_r(diskP);
1301 Log("VShutdown: %s stats : (pass[0]=%d, pass[1]=%d, pass[2]=%d, pass[3]=%d)\n",
1302 VPartitionPath(diskP),
1303 params.stats[0][diskP->index],
1304 params.stats[1][diskP->index],
1305 params.stats[2][diskP->index],
1306 params.stats[3][diskP->index]);
1309 Log("VShutdown: shutdown finished using %d threads\n", params.n_threads);
1311 /* if we're only going to run one shutdown thread, don't bother creating
1313 Log("VShutdown: beginning single-threaded fileserver shutdown\n");
1315 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1316 VShutdownByPartition_r(diskP);
1320 Log("VShutdown: complete.\n");
1323 #else /* AFS_DEMAND_ATTACH_FS */
1333 Log("VShutdown: aborting attach volumes\n");
1334 vinit_attach_abort = 1;
1335 #ifdef AFS_PTHREAD_ENV
1336 VOL_CV_WAIT(&vol_init_attach_cond);
1338 LWP_WaitProcess(VInitAttachVolumes);
1339 #endif /* AFS_PTHREAD_ENV */
1342 Log("VShutdown: shutting down on-line volumes...\n");
1343 vol_shutting_down = 1;
1344 for (i = 0; i < VolumeHashTable.Size; i++) {
1345 /* try to hold first volume in the hash table */
1346 for (queue_Scan(&VolumeHashTable.Table[i],vp,np,Volume)) {
1350 Log("VShutdown: Attempting to take volume %u offline.\n",
1353 /* next, take the volume offline (drops reference count) */
1354 VOffline_r(vp, "File server was shut down");
1358 Log("VShutdown: complete.\n");
1360 #endif /* AFS_DEMAND_ATTACH_FS */
1366 osi_Assert(VInit>0);
1373 * stop new activity (e.g. SALVSYNC) from occurring
1375 * Use this to make the volume package less busy; for example, during
1376 * shutdown. This doesn't actually shutdown/detach anything in the
1377 * volume package, but prevents certain processes from ocurring. For
1378 * example, preventing new SALVSYNC communication in DAFS. In theory, we
1379 * could also use this to prevent new volume attachment, or prevent
1380 * other programs from checking out volumes, etc.
1385 #ifdef AFS_DEMAND_ATTACH_FS
1386 /* make sure we don't try to contact the salvageserver, since it may
1387 * not be around anymore */
1388 vol_disallow_salvsync = 1;
1392 #ifdef AFS_DEMAND_ATTACH_FS
1395 * shutdown control thread
1398 ShutdownController(vshutdown_thread_t * params)
1401 struct DiskPartition64 * diskP;
1403 vshutdown_thread_t shadow;
1405 ShutdownCreateSchedule(params);
1407 while ((params->pass < 4) &&
1408 (params->n_threads_complete < params->n_threads)) {
1409 /* recompute schedule once per second */
1411 memcpy(&shadow, params, sizeof(vshutdown_thread_t));
1415 Log("ShutdownController: schedule version=%d, vol_remaining=%d, pass=%d\n",
1416 shadow.schedule_version, shadow.vol_remaining, shadow.pass);
1417 Log("ShutdownController: n_threads_complete=%d, n_parts_done_pass=%d\n",
1418 shadow.n_threads_complete, shadow.n_parts_done_pass);
1419 for (diskP = DiskPartitionList; diskP; diskP=diskP->next) {
1421 Log("ShutdownController: part[%d] : (len=%d, thread_target=%d, done_pass=%d, pass_head=%p)\n",
1423 diskP->vol_list.len,
1424 shadow.part_thread_target[id],
1425 shadow.part_done_pass[id],
1426 shadow.part_pass_head[id]);
1432 ShutdownCreateSchedule(params);
1436 /* create the shutdown thread work schedule.
1437 * this scheduler tries to implement fairness
1438 * by allocating at least 1 thread to each
1439 * partition with volumes to be shutdown,
1440 * and then it attempts to allocate remaining
1441 * threads based upon the amount of work left
1444 ShutdownCreateSchedule(vshutdown_thread_t * params)
1446 struct DiskPartition64 * diskP;
1447 int sum, thr_workload, thr_left;
1448 int part_residue[VOLMAXPARTS+1];
1451 /* compute the total number of outstanding volumes */
1453 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1454 sum += diskP->vol_list.len;
1457 params->schedule_version++;
1458 params->vol_remaining = sum;
1463 /* compute average per-thread workload */
1464 thr_workload = sum / params->n_threads;
1465 if (sum % params->n_threads)
1468 thr_left = params->n_threads;
1469 memset(&part_residue, 0, sizeof(part_residue));
1471 /* for fairness, give every partition with volumes remaining
1472 * at least one thread */
1473 for (diskP = DiskPartitionList; diskP && thr_left; diskP = diskP->next) {
1475 if (diskP->vol_list.len) {
1476 params->part_thread_target[id] = 1;
1479 params->part_thread_target[id] = 0;
1483 if (thr_left && thr_workload) {
1484 /* compute length-weighted workloads */
1487 for (diskP = DiskPartitionList; diskP && thr_left; diskP = diskP->next) {
1489 delta = (diskP->vol_list.len / thr_workload) -
1490 params->part_thread_target[id];
1494 if (delta < thr_left) {
1495 params->part_thread_target[id] += delta;
1498 params->part_thread_target[id] += thr_left;
1506 /* try to assign any leftover threads to partitions that
1507 * had volume lengths closer to needing thread_target+1 */
1508 int max_residue, max_id = 0;
1510 /* compute the residues */
1511 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1513 part_residue[id] = diskP->vol_list.len -
1514 (params->part_thread_target[id] * thr_workload);
1517 /* now try to allocate remaining threads to partitions with the
1518 * highest residues */
1521 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1523 if (part_residue[id] > max_residue) {
1524 max_residue = part_residue[id];
1533 params->part_thread_target[max_id]++;
1535 part_residue[max_id] = 0;
1540 /* punt and give any remaining threads equally to each partition */
1542 if (thr_left >= params->n_parts) {
1543 alloc = thr_left / params->n_parts;
1544 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1546 params->part_thread_target[id] += alloc;
1551 /* finish off the last of the threads */
1552 for (diskP = DiskPartitionList; thr_left && diskP; diskP = diskP->next) {
1554 params->part_thread_target[id]++;
1560 /* worker thread for parallel shutdown */
1562 VShutdownThread(void * args)
1564 vshutdown_thread_t * params;
1565 int found, pass, schedule_version_save, count;
1566 struct DiskPartition64 *diskP;
1567 struct diskpartition_queue_t * dpq;
1570 params = (vshutdown_thread_t *) args;
1572 /* acquire the shutdown pass 0 lock */
1573 MUTEX_ENTER(¶ms->lock);
1575 /* if there's still pass 0 work to be done,
1576 * get a work entry, and do a pass 0 shutdown */
1577 if (queue_IsNotEmpty(params)) {
1578 dpq = queue_First(params, diskpartition_queue_t);
1580 MUTEX_EXIT(¶ms->lock);
1586 while (ShutdownVolumeWalk_r(diskP, 0, ¶ms->part_pass_head[id]))
1588 params->stats[0][diskP->index] = count;
1589 MUTEX_ENTER(¶ms->lock);
1592 params->n_threads_complete++;
1593 if (params->n_threads_complete == params->n_threads) {
1594 /* notify control thread that all workers have completed pass 0 */
1595 CV_SIGNAL(¶ms->master_cv);
1597 while (params->pass == 0) {
1598 CV_WAIT(¶ms->cv, ¶ms->lock);
1602 MUTEX_EXIT(¶ms->lock);
1605 pass = params->pass;
1606 osi_Assert(pass > 0);
1608 /* now escalate through the more complicated shutdowns */
1610 schedule_version_save = params->schedule_version;
1612 /* find a disk partition to work on */
1613 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1615 if (params->part_thread_target[id] && !params->part_done_pass[id]) {
1616 params->part_thread_target[id]--;
1623 /* hmm. for some reason the controller thread couldn't find anything for
1624 * us to do. let's see if there's anything we can do */
1625 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1627 if (diskP->vol_list.len && !params->part_done_pass[id]) {
1630 } else if (!params->part_done_pass[id]) {
1631 params->part_done_pass[id] = 1;
1632 params->n_parts_done_pass++;
1634 Log("VShutdown: done shutting down volumes on partition %s.\n",
1635 VPartitionPath(diskP));
1641 /* do work on this partition until either the controller
1642 * creates a new schedule, or we run out of things to do
1643 * on this partition */
1646 while (!params->part_done_pass[id] &&
1647 (schedule_version_save == params->schedule_version)) {
1648 /* ShutdownVolumeWalk_r will drop the glock internally */
1649 if (!ShutdownVolumeWalk_r(diskP, pass, ¶ms->part_pass_head[id])) {
1650 if (!params->part_done_pass[id]) {
1651 params->part_done_pass[id] = 1;
1652 params->n_parts_done_pass++;
1654 Log("VShutdown: done shutting down volumes on partition %s.\n",
1655 VPartitionPath(diskP));
1663 params->stats[pass][id] += count;
1665 /* ok, everyone is done this pass, proceed */
1668 params->n_threads_complete++;
1669 while (params->pass == pass) {
1670 if (params->n_threads_complete == params->n_threads) {
1671 /* we are the last thread to complete, so we will
1672 * reinitialize worker pool state for the next pass */
1673 params->n_threads_complete = 0;
1674 params->n_parts_done_pass = 0;
1676 for (diskP = DiskPartitionList; diskP; diskP = diskP->next) {
1678 params->part_done_pass[id] = 0;
1679 params->part_pass_head[id] = queue_First(&diskP->vol_list, rx_queue);
1682 /* compute a new thread schedule before releasing all the workers */
1683 ShutdownCreateSchedule(params);
1685 /* wake up all the workers */
1686 CV_BROADCAST(¶ms->cv);
1689 Log("VShutdown: pass %d completed using %d threads on %d partitions\n",
1690 pass, params->n_threads, params->n_parts);
1693 VOL_CV_WAIT(¶ms->cv);
1696 pass = params->pass;
1710 /* shut down all volumes on a given disk partition
1712 * note that this function will not allow mp-fast
1713 * shutdown of a partition */
1715 VShutdownByPartition_r(struct DiskPartition64 * dp)
1721 /* wait for other exclusive ops to finish */
1722 VVByPListWait_r(dp);
1724 /* begin exclusive access */
1725 VVByPListBeginExclusive_r(dp);
1727 /* pick the low-hanging fruit first,
1728 * then do the complicated ones last
1729 * (has the advantage of keeping
1730 * in-use volumes up until the bitter end) */
1731 for (pass = 0, total=0; pass < 4; pass++) {
1732 pass_stats[pass] = ShutdownVByPForPass_r(dp, pass);
1733 total += pass_stats[pass];
1736 /* end exclusive access */
1737 VVByPListEndExclusive_r(dp);
1739 Log("VShutdownByPartition: shut down %d volumes on %s (pass[0]=%d, pass[1]=%d, pass[2]=%d, pass[3]=%d)\n",
1740 total, VPartitionPath(dp), pass_stats[0], pass_stats[1], pass_stats[2], pass_stats[3]);
1745 /* internal shutdown functionality
1747 * for multi-pass shutdown:
1748 * 0 to only "shutdown" {pre,un}attached and error state volumes
1749 * 1 to also shutdown attached volumes w/ volume header loaded
1750 * 2 to also shutdown attached volumes w/o volume header loaded
1751 * 3 to also shutdown exclusive state volumes
1753 * caller MUST hold exclusive access on the hash chain
1754 * because we drop vol_glock_mutex internally
1756 * this function is reentrant for passes 1--3
1757 * (e.g. multiple threads can cooperate to
1758 * shutdown a partition mp-fast)
1760 * pass 0 is not scaleable because the volume state data is
1761 * synchronized by vol_glock mutex, and the locking overhead
1762 * is too high to drop the lock long enough to do linked list
1766 ShutdownVByPForPass_r(struct DiskPartition64 * dp, int pass)
1768 struct rx_queue * q = queue_First(&dp->vol_list, rx_queue);
1771 while (ShutdownVolumeWalk_r(dp, pass, &q))
1777 /* conditionally shutdown one volume on partition dp
1778 * returns 1 if a volume was shutdown in this pass,
1781 ShutdownVolumeWalk_r(struct DiskPartition64 * dp, int pass,
1782 struct rx_queue ** idx)
1784 struct rx_queue *qp, *nqp;
1789 for (queue_ScanFrom(&dp->vol_list, qp, qp, nqp, rx_queue)) {
1790 vp = (Volume *) (((char *)qp) - offsetof(Volume, vol_list));
1794 if ((V_attachState(vp) != VOL_STATE_UNATTACHED) &&
1795 (V_attachState(vp) != VOL_STATE_ERROR) &&
1796 (V_attachState(vp) != VOL_STATE_DELETED) &&
1797 (V_attachState(vp) != VOL_STATE_PREATTACHED)) {
1801 if ((V_attachState(vp) == VOL_STATE_ATTACHED) &&
1802 (vp->header == NULL)) {
1806 if (VIsExclusiveState(V_attachState(vp))) {
1811 DeleteVolumeFromVByPList_r(vp);
1812 VShutdownVolume_r(vp);
1822 * shutdown a specific volume
1824 /* caller MUST NOT hold a heavyweight ref on vp */
1826 VShutdownVolume_r(Volume * vp)
1830 VCreateReservation_r(vp);
1832 if (LogLevel >= 5) {
1833 Log("VShutdownVolume_r: vid=%u, device=%d, state=%hu\n",
1834 vp->hashid, vp->partition->device, V_attachState(vp));
1837 /* wait for other blocking ops to finish */
1838 VWaitExclusiveState_r(vp);
1840 osi_Assert(VIsValidState(V_attachState(vp)));
1842 switch(V_attachState(vp)) {
1843 case VOL_STATE_SALVAGING:
1844 /* Leave salvaging volumes alone. Any in-progress salvages will
1845 * continue working after viced shuts down. This is intentional.
1848 case VOL_STATE_PREATTACHED:
1849 case VOL_STATE_ERROR:
1850 VChangeState_r(vp, VOL_STATE_UNATTACHED);
1851 case VOL_STATE_UNATTACHED:
1852 case VOL_STATE_DELETED:
1854 case VOL_STATE_GOING_OFFLINE:
1855 case VOL_STATE_SHUTTING_DOWN:
1856 case VOL_STATE_ATTACHED:
1860 Log("VShutdown: Attempting to take volume %u offline.\n",
1863 /* take the volume offline (drops reference count) */
1864 VOffline_r(vp, "File server was shut down");
1871 VCancelReservation_r(vp);
1875 #endif /* AFS_DEMAND_ATTACH_FS */
1878 /***************************************************/
1879 /* Header I/O routines */
1880 /***************************************************/
1883 HeaderName(bit32 magic)
1886 case VOLUMEINFOMAGIC:
1887 return "volume info";
1888 case SMALLINDEXMAGIC:
1889 return "small index";
1890 case LARGEINDEXMAGIC:
1891 return "large index";
1892 case LINKTABLEMAGIC:
1893 return "link table";
1898 /* open a descriptor for the inode (h),
1899 * read in an on-disk structure into buffer (to) of size (size),
1900 * verify versionstamp in structure has magic (magic) and
1901 * optionally verify version (version) if (version) is nonzero
1904 ReadHeader(Error * ec, IHandle_t * h, char *to, int size, bit32 magic,
1907 struct versionStamp *vsn;
1909 afs_sfsize_t nbytes;
1914 Log("ReadHeader: Null inode handle argument for %s header file.\n",
1922 Log("ReadHeader: Failed to open %s header file "
1923 "(volume=%u, inode=%s); errno=%d\n", HeaderName(magic), h->ih_vid,
1924 PrintInode(stmp, h->ih_ino), errno);
1929 vsn = (struct versionStamp *)to;
1930 nbytes = FDH_PREAD(fdP, to, size, 0);
1932 Log("ReadHeader: Failed to read %s header file "
1933 "(volume=%u, inode=%s); errno=%d\n", HeaderName(magic), h->ih_vid,
1934 PrintInode(stmp, h->ih_ino), errno);
1936 FDH_REALLYCLOSE(fdP);
1939 if (nbytes != size) {
1940 Log("ReadHeader: Incorrect number of bytes read from %s header file "
1941 "(volume=%u, inode=%s); expected=%d, read=%d\n",
1942 HeaderName(magic), h->ih_vid, PrintInode(stmp, h->ih_ino), size,
1945 FDH_REALLYCLOSE(fdP);
1948 if (vsn->magic != magic) {
1949 Log("ReadHeader: Incorrect magic for %s header file "
1950 "(volume=%u, inode=%s); expected=0x%x, read=0x%x\n",
1951 HeaderName(magic), h->ih_vid, PrintInode(stmp, h->ih_ino), magic,
1954 FDH_REALLYCLOSE(fdP);
1960 /* Check is conditional, in case caller wants to inspect version himself */
1961 if (version && vsn->version != version) {
1962 Log("ReadHeader: Incorrect version for %s header file "
1963 "(volume=%u, inode=%s); expected=%x, read=%x\n",
1964 HeaderName(magic), h->ih_vid, PrintInode(stmp, h->ih_ino),
1965 version, vsn->version);
1971 WriteVolumeHeader_r(Error * ec, Volume * vp)
1973 IHandle_t *h = V_diskDataHandle(vp);
1983 if (FDH_PWRITE(fdP, (char *)&V_disk(vp), sizeof(V_disk(vp)), 0)
1984 != sizeof(V_disk(vp))) {
1986 FDH_REALLYCLOSE(fdP);
1992 /* VolumeHeaderToDisk
1993 * Allows for storing 64 bit inode numbers in on-disk volume header
1996 /* convert in-memory representation of a volume header to the
1997 * on-disk representation of a volume header */
1999 VolumeHeaderToDisk(VolumeDiskHeader_t * dh, VolumeHeader_t * h)
2002 memset(dh, 0, sizeof(VolumeDiskHeader_t));
2003 dh->stamp = h->stamp;
2005 dh->parent = h->parent;
2007 #ifdef AFS_64BIT_IOPS_ENV
2008 dh->volumeInfo_lo = (afs_int32) h->volumeInfo & 0xffffffff;
2009 dh->volumeInfo_hi = (afs_int32) (h->volumeInfo >> 32) & 0xffffffff;
2010 dh->smallVnodeIndex_lo = (afs_int32) h->smallVnodeIndex & 0xffffffff;
2011 dh->smallVnodeIndex_hi =
2012 (afs_int32) (h->smallVnodeIndex >> 32) & 0xffffffff;
2013 dh->largeVnodeIndex_lo = (afs_int32) h->largeVnodeIndex & 0xffffffff;
2014 dh->largeVnodeIndex_hi =
2015 (afs_int32) (h->largeVnodeIndex >> 32) & 0xffffffff;
2016 dh->linkTable_lo = (afs_int32) h->linkTable & 0xffffffff;
2017 dh->linkTable_hi = (afs_int32) (h->linkTable >> 32) & 0xffffffff;
2019 dh->volumeInfo_lo = h->volumeInfo;
2020 dh->smallVnodeIndex_lo = h->smallVnodeIndex;
2021 dh->largeVnodeIndex_lo = h->largeVnodeIndex;
2022 dh->linkTable_lo = h->linkTable;
2026 /* DiskToVolumeHeader
2027 * Converts an on-disk representation of a volume header to
2028 * the in-memory representation of a volume header.
2030 * Makes the assumption that AFS has *always*
2031 * zero'd the volume header file so that high parts of inode
2032 * numbers are 0 in older (SGI EFS) volume header files.
2035 DiskToVolumeHeader(VolumeHeader_t * h, VolumeDiskHeader_t * dh)
2037 memset(h, 0, sizeof(VolumeHeader_t));
2038 h->stamp = dh->stamp;
2040 h->parent = dh->parent;
2042 #ifdef AFS_64BIT_IOPS_ENV
2044 (Inode) dh->volumeInfo_lo | ((Inode) dh->volumeInfo_hi << 32);
2046 h->smallVnodeIndex =
2047 (Inode) dh->smallVnodeIndex_lo | ((Inode) dh->
2048 smallVnodeIndex_hi << 32);
2050 h->largeVnodeIndex =
2051 (Inode) dh->largeVnodeIndex_lo | ((Inode) dh->
2052 largeVnodeIndex_hi << 32);
2054 (Inode) dh->linkTable_lo | ((Inode) dh->linkTable_hi << 32);
2056 h->volumeInfo = dh->volumeInfo_lo;
2057 h->smallVnodeIndex = dh->smallVnodeIndex_lo;
2058 h->largeVnodeIndex = dh->largeVnodeIndex_lo;
2059 h->linkTable = dh->linkTable_lo;
2064 /***************************************************/
2065 /* Volume Attachment routines */
2066 /***************************************************/
2068 #ifdef AFS_DEMAND_ATTACH_FS
2070 * pre-attach a volume given its path.
2072 * @param[out] ec outbound error code
2073 * @param[in] partition partition path string
2074 * @param[in] name volume id string
2076 * @return volume object pointer
2078 * @note A pre-attached volume will only have its partition
2079 * and hashid fields initialized. At first call to
2080 * VGetVolume, the volume will be fully attached.
2084 VPreAttachVolumeByName(Error * ec, char *partition, char *name)
2088 vp = VPreAttachVolumeByName_r(ec, partition, name);
2094 * pre-attach a volume given its path.
2096 * @param[out] ec outbound error code
2097 * @param[in] partition path to vice partition
2098 * @param[in] name volume id string
2100 * @return volume object pointer
2102 * @pre VOL_LOCK held
2104 * @internal volume package internal use only.
2107 VPreAttachVolumeByName_r(Error * ec, char *partition, char *name)
2109 return VPreAttachVolumeById_r(ec,
2111 VolumeNumber(name));
2115 * pre-attach a volume given its path and numeric volume id.
2117 * @param[out] ec error code return
2118 * @param[in] partition path to vice partition
2119 * @param[in] volumeId numeric volume id
2121 * @return volume object pointer
2123 * @pre VOL_LOCK held
2125 * @internal volume package internal use only.
2128 VPreAttachVolumeById_r(Error * ec,
2133 struct DiskPartition64 *partp;
2137 osi_Assert(programType == fileServer);
2139 if (!(partp = VGetPartition_r(partition, 0))) {
2141 Log("VPreAttachVolumeById_r: Error getting partition (%s)\n", partition);
2145 vp = VLookupVolume_r(ec, volumeId, NULL);
2150 return VPreAttachVolumeByVp_r(ec, partp, vp, volumeId);
2154 * preattach a volume.
2156 * @param[out] ec outbound error code
2157 * @param[in] partp pointer to partition object
2158 * @param[in] vp pointer to volume object
2159 * @param[in] vid volume id
2161 * @return volume object pointer
2163 * @pre VOL_LOCK is held.
2165 * @warning Returned volume object pointer does not have to
2166 * equal the pointer passed in as argument vp. There
2167 * are potential race conditions which can result in
2168 * the pointers having different values. It is up to
2169 * the caller to make sure that references are handled
2170 * properly in this case.
2172 * @note If there is already a volume object registered with
2173 * the same volume id, its pointer MUST be passed as
2174 * argument vp. Failure to do so will result in a silent
2175 * failure to preattach.
2177 * @internal volume package internal use only.
2180 VPreAttachVolumeByVp_r(Error * ec,
2181 struct DiskPartition64 * partp,
2189 /* check to see if pre-attach already happened */
2191 (V_attachState(vp) != VOL_STATE_UNATTACHED) &&
2192 (V_attachState(vp) != VOL_STATE_DELETED) &&
2193 (V_attachState(vp) != VOL_STATE_PREATTACHED) &&
2194 !VIsErrorState(V_attachState(vp))) {
2196 * pre-attach is a no-op in all but the following cases:
2198 * - volume is unattached
2199 * - volume is in an error state
2200 * - volume is pre-attached
2202 Log("VPreattachVolumeByVp_r: volume %u not in quiescent state (state %u flags 0x%x)\n",
2203 vid, V_attachState(vp), V_attachFlags(vp));
2206 /* we're re-attaching a volume; clear out some old state */
2207 memset(&vp->salvage, 0, sizeof(struct VolumeOnlineSalvage));
2209 if (V_partition(vp) != partp) {
2210 /* XXX potential race */
2211 DeleteVolumeFromVByPList_r(vp);
2214 /* if we need to allocate a new Volume struct,
2215 * go ahead and drop the vol glock, otherwise
2216 * do the basic setup synchronised, as it's
2217 * probably not worth dropping the lock */
2220 /* allocate the volume structure */
2221 vp = nvp = (Volume *) malloc(sizeof(Volume));
2222 osi_Assert(vp != NULL);
2223 memset(vp, 0, sizeof(Volume));
2224 queue_Init(&vp->vnode_list);
2225 queue_Init(&vp->rx_call_list);
2226 CV_INIT(&V_attachCV(vp), "vp attach", CV_DEFAULT, 0);
2229 /* link the volume with its associated vice partition */
2230 vp->device = partp->device;
2231 vp->partition = partp;
2234 vp->specialStatus = 0;
2236 /* if we dropped the lock, reacquire the lock,
2237 * check for pre-attach races, and then add
2238 * the volume to the hash table */
2241 nvp = VLookupVolume_r(ec, vid, NULL);
2246 } else if (nvp) { /* race detected */
2251 /* hack to make up for VChangeState_r() decrementing
2252 * the old state counter */
2253 VStats.state_levels[0]++;
2257 /* put pre-attached volume onto the hash table
2258 * and bring it up to the pre-attached state */
2259 AddVolumeToHashTable(vp, vp->hashid);
2260 AddVolumeToVByPList_r(vp);
2261 VLRU_Init_Node_r(vp);
2262 VChangeState_r(vp, VOL_STATE_PREATTACHED);
2265 Log("VPreAttachVolumeByVp_r: volume %u pre-attached\n", vp->hashid);
2273 #endif /* AFS_DEMAND_ATTACH_FS */
2275 /* Attach an existing volume, given its pathname, and return a
2276 pointer to the volume header information. The volume also
2277 normally goes online at this time. An offline volume
2278 must be reattached to make it go online */
2280 VAttachVolumeByName(Error * ec, char *partition, char *name, int mode)
2284 retVal = VAttachVolumeByName_r(ec, partition, name, mode);
2290 VAttachVolumeByName_r(Error * ec, char *partition, char *name, int mode)
2293 struct DiskPartition64 *partp;
2298 #ifdef AFS_DEMAND_ATTACH_FS
2299 VolumeStats stats_save;
2301 #endif /* AFS_DEMAND_ATTACH_FS */
2305 volumeId = VolumeNumber(name);
2307 if (!(partp = VGetPartition_r(partition, 0))) {
2309 Log("VAttachVolume: Error getting partition (%s)\n", partition);
2313 if (VRequiresPartLock()) {
2314 osi_Assert(VInit == 3);
2315 VLockPartition_r(partition);
2316 } else if (programType == fileServer) {
2317 #ifdef AFS_DEMAND_ATTACH_FS
2318 /* lookup the volume in the hash table */
2319 vp = VLookupVolume_r(ec, volumeId, NULL);
2325 /* save any counters that are supposed to
2326 * be monotonically increasing over the
2327 * lifetime of the fileserver */
2328 memcpy(&stats_save, &vp->stats, sizeof(VolumeStats));
2330 memset(&stats_save, 0, sizeof(VolumeStats));
2333 /* if there's something in the hash table, and it's not
2334 * in the pre-attach state, then we may need to detach
2335 * it before proceeding */
2336 if (vp && (V_attachState(vp) != VOL_STATE_PREATTACHED)) {
2337 VCreateReservation_r(vp);
2338 VWaitExclusiveState_r(vp);
2340 /* at this point state must be one of:
2350 if (vp->specialStatus == VBUSY)
2353 /* if it's already attached, see if we can return it */
2354 if (V_attachState(vp) == VOL_STATE_ATTACHED) {
2355 VGetVolumeByVp_r(ec, vp);
2356 if (V_inUse(vp) == fileServer) {
2357 VCancelReservation_r(vp);
2361 /* otherwise, we need to detach, and attempt to re-attach */
2362 VDetachVolume_r(ec, vp);
2364 Log("VAttachVolume: Error detaching old volume instance (%s)\n", name);
2367 /* if it isn't fully attached, delete from the hash tables,
2368 and let the refcounter handle the rest */
2369 DeleteVolumeFromHashTable(vp);
2370 DeleteVolumeFromVByPList_r(vp);
2373 VCancelReservation_r(vp);
2377 /* pre-attach volume if it hasn't been done yet */
2379 (V_attachState(vp) == VOL_STATE_UNATTACHED) ||
2380 (V_attachState(vp) == VOL_STATE_DELETED) ||
2381 (V_attachState(vp) == VOL_STATE_ERROR)) {
2383 vp = VPreAttachVolumeByVp_r(ec, partp, vp, volumeId);
2389 osi_Assert(vp != NULL);
2391 /* handle pre-attach races
2393 * multiple threads can race to pre-attach a volume,
2394 * but we can't let them race beyond that
2396 * our solution is to let the first thread to bring
2397 * the volume into an exclusive state win; the other
2398 * threads just wait until it finishes bringing the
2399 * volume online, and then they do a vgetvolumebyvp
2401 if (svp && (svp != vp)) {
2402 /* wait for other exclusive ops to finish */
2403 VCreateReservation_r(vp);
2404 VWaitExclusiveState_r(vp);
2406 /* get a heavyweight ref, kill the lightweight ref, and return */
2407 VGetVolumeByVp_r(ec, vp);
2408 VCancelReservation_r(vp);
2412 /* at this point, we are chosen as the thread to do
2413 * demand attachment for this volume. all other threads
2414 * doing a getvolume on vp->hashid will block until we finish */
2416 /* make sure any old header cache entries are invalidated
2417 * before proceeding */
2418 FreeVolumeHeader(vp);
2420 VChangeState_r(vp, VOL_STATE_ATTACHING);
2422 /* restore any saved counters */
2423 memcpy(&vp->stats, &stats_save, sizeof(VolumeStats));
2424 #else /* AFS_DEMAND_ATTACH_FS */
2425 vp = VGetVolume_r(ec, volumeId);
2427 if (V_inUse(vp) == fileServer)
2429 if (vp->specialStatus == VBUSY)
2431 VDetachVolume_r(ec, vp);
2433 Log("VAttachVolume: Error detaching volume (%s)\n", name);
2437 #endif /* AFS_DEMAND_ATTACH_FS */
2441 strcpy(path, VPartitionPath(partp));
2445 strcat(path, OS_DIRSEP);
2449 vp = (Volume *) calloc(1, sizeof(Volume));
2450 osi_Assert(vp != NULL);
2451 vp->hashid = volumeId;
2452 vp->device = partp->device;
2453 vp->partition = partp;
2454 queue_Init(&vp->vnode_list);
2455 queue_Init(&vp->rx_call_list);
2456 #ifdef AFS_DEMAND_ATTACH_FS
2457 CV_INIT(&V_attachCV(vp), "vp attach", CV_DEFAULT, 0);
2458 #endif /* AFS_DEMAND_ATTACH_FS */
2461 /* attach2 is entered without any locks, and returns
2462 * with vol_glock_mutex held */
2463 vp = attach2(ec, volumeId, path, partp, vp, isbusy, mode, &checkedOut);
2465 if (VCanUseFSSYNC() && vp) {
2466 #ifdef AFS_DEMAND_ATTACH_FS
2467 if ((mode == V_VOLUPD) || (VolumeWriteable(vp) && (mode == V_CLONE))) {
2468 /* mark volume header as in use so that volser crashes lead to a
2469 * salvage attempt */
2470 VUpdateVolume_r(ec, vp, 0);
2472 /* for dafs, we should tell the fileserver, except for V_PEEK
2473 * where we know it is not necessary */
2474 if (mode == V_PEEK) {
2475 vp->needsPutBack = 0;
2477 vp->needsPutBack = VOL_PUTBACK;
2479 #else /* !AFS_DEMAND_ATTACH_FS */
2480 /* duplicate computation in fssync.c about whether the server
2481 * takes the volume offline or not. If the volume isn't
2482 * offline, we must not return it when we detach the volume,
2483 * or the server will abort */
2484 if (mode == V_READONLY || mode == V_PEEK
2485 || (!VolumeWriteable(vp) && (mode == V_CLONE || mode == V_DUMP)))
2486 vp->needsPutBack = 0;
2488 vp->needsPutBack = VOL_PUTBACK;
2489 #endif /* !AFS_DEMAND_ATTACH_FS */
2491 #ifdef FSSYNC_BUILD_CLIENT
2492 /* Only give back the vol to the fileserver if we checked it out; attach2
2493 * will set checkedOut only if we successfully checked it out from the
2495 if (VCanUseFSSYNC() && vp == NULL && checkedOut) {
2497 #ifdef AFS_DEMAND_ATTACH_FS
2498 /* If we couldn't attach but we scheduled a salvage, we already
2499 * notified the fileserver; don't online it now */
2500 if (*ec != VSALVAGING)
2501 #endif /* AFS_DEMAND_ATTACH_FS */
2502 FSYNC_VolOp(volumeId, partition, FSYNC_VOL_ON, 0, NULL);
2505 if (programType == fileServer && vp) {
2506 #ifdef AFS_DEMAND_ATTACH_FS
2508 * we can get here in cases where we don't "own"
2509 * the volume (e.g. volume owned by a utility).
2510 * short circuit around potential disk header races.
2512 if (V_attachState(vp) != VOL_STATE_ATTACHED) {
2516 VUpdateVolume_r(ec, vp, 0);
2518 Log("VAttachVolume: Error updating volume\n");
2523 if (VolumeWriteable(vp) && V_dontSalvage(vp) == 0) {
2524 #ifndef AFS_DEMAND_ATTACH_FS
2525 /* This is a hack: by temporarily setting the incore
2526 * dontSalvage flag ON, the volume will be put back on the
2527 * Update list (with dontSalvage OFF again). It will then
2528 * come back in N minutes with DONT_SALVAGE eventually
2529 * set. This is the way that volumes that have never had
2530 * it set get it set; or that volumes that have been
2531 * offline without DONT SALVAGE having been set also
2532 * eventually get it set */
2533 V_dontSalvage(vp) = DONT_SALVAGE;
2534 #endif /* !AFS_DEMAND_ATTACH_FS */
2535 VAddToVolumeUpdateList_r(ec, vp);
2537 Log("VAttachVolume: Error adding volume to update list\n");
2544 Log("VOnline: volume %u (%s) attached and online\n", V_id(vp),
2549 if (VRequiresPartLock()) {
2550 VUnlockPartition_r(partition);
2553 #ifdef AFS_DEMAND_ATTACH_FS
2554 /* attach failed; make sure we're in error state */
2555 if (vp && !VIsErrorState(V_attachState(vp))) {
2556 VChangeState_r(vp, VOL_STATE_ERROR);
2558 #endif /* AFS_DEMAND_ATTACH_FS */
2565 #ifdef AFS_DEMAND_ATTACH_FS
2566 /* VAttachVolumeByVp_r
2568 * finish attaching a volume that is
2569 * in a less than fully attached state
2571 /* caller MUST hold a ref count on vp */
2573 VAttachVolumeByVp_r(Error * ec, Volume * vp, int mode)
2575 char name[VMAXPATHLEN];
2577 struct DiskPartition64 *partp;
2581 Volume * nvp = NULL;
2582 VolumeStats stats_save;
2586 /* volume utility should never call AttachByVp */
2587 osi_Assert(programType == fileServer);
2589 volumeId = vp->hashid;
2590 partp = vp->partition;
2591 VolumeExternalName_r(volumeId, name, sizeof(name));
2594 /* if another thread is performing a blocking op, wait */
2595 VWaitExclusiveState_r(vp);
2597 memcpy(&stats_save, &vp->stats, sizeof(VolumeStats));
2599 /* if it's already attached, see if we can return it */
2600 if (V_attachState(vp) == VOL_STATE_ATTACHED) {
2601 VGetVolumeByVp_r(ec, vp);
2602 if (V_inUse(vp) == fileServer) {
2605 if (vp->specialStatus == VBUSY)
2607 VDetachVolume_r(ec, vp);
2609 Log("VAttachVolume: Error detaching volume (%s)\n", name);
2615 /* pre-attach volume if it hasn't been done yet */
2617 (V_attachState(vp) == VOL_STATE_UNATTACHED) ||
2618 (V_attachState(vp) == VOL_STATE_DELETED) ||
2619 (V_attachState(vp) == VOL_STATE_ERROR)) {
2620 nvp = VPreAttachVolumeByVp_r(ec, partp, vp, volumeId);
2626 VCreateReservation_r(nvp);
2631 osi_Assert(vp != NULL);
2632 VChangeState_r(vp, VOL_STATE_ATTACHING);
2634 /* restore monotonically increasing stats */
2635 memcpy(&vp->stats, &stats_save, sizeof(VolumeStats));
2639 /* compute path to disk header */
2640 strcpy(path, VPartitionPath(partp));
2644 strcat(path, OS_DIRSEP);
2649 * NOTE: attach2 is entered without any locks, and returns
2650 * with vol_glock_mutex held */
2651 vp = attach2(ec, volumeId, path, partp, vp, isbusy, mode, &checkedOut);
2654 * the event that an error was encountered, or
2655 * the volume was not brought to an attached state
2656 * for any reason, skip to the end. We cannot
2657 * safely call VUpdateVolume unless we "own" it.
2661 (V_attachState(vp) != VOL_STATE_ATTACHED)) {
2665 VUpdateVolume_r(ec, vp, 0);
2667 Log("VAttachVolume: Error updating volume %u\n", vp->hashid);
2671 if (VolumeWriteable(vp) && V_dontSalvage(vp) == 0) {
2672 #ifndef AFS_DEMAND_ATTACH_FS
2673 /* This is a hack: by temporarily setting the incore
2674 * dontSalvage flag ON, the volume will be put back on the
2675 * Update list (with dontSalvage OFF again). It will then
2676 * come back in N minutes with DONT_SALVAGE eventually
2677 * set. This is the way that volumes that have never had
2678 * it set get it set; or that volumes that have been
2679 * offline without DONT SALVAGE having been set also
2680 * eventually get it set */
2681 V_dontSalvage(vp) = DONT_SALVAGE;
2682 #endif /* !AFS_DEMAND_ATTACH_FS */
2683 VAddToVolumeUpdateList_r(ec, vp);
2685 Log("VAttachVolume: Error adding volume %u to update list\n", vp->hashid);
2692 Log("VOnline: volume %u (%s) attached and online\n", V_id(vp),
2696 VCancelReservation_r(nvp);
2699 if (*ec && (*ec != VOFFLINE) && (*ec != VSALVAGE)) {
2700 if (vp && !VIsErrorState(V_attachState(vp))) {
2701 VChangeState_r(vp, VOL_STATE_ERROR);
2710 * lock a volume on disk (non-blocking).
2712 * @param[in] vp The volume to lock
2713 * @param[in] locktype READ_LOCK or WRITE_LOCK
2715 * @return operation status
2716 * @retval 0 success, lock was obtained
2717 * @retval EBUSY a conflicting lock was held by another process
2718 * @retval EIO error acquiring lock
2720 * @pre If we're in the fileserver, vp is in an exclusive state
2722 * @pre vp is not already locked
2725 VLockVolumeNB(Volume *vp, int locktype)
2729 osi_Assert(programType != fileServer || VIsExclusiveState(V_attachState(vp)));
2730 osi_Assert(!(V_attachFlags(vp) & VOL_LOCKED));
2732 code = VLockVolumeByIdNB(vp->hashid, vp->partition, locktype);
2734 V_attachFlags(vp) |= VOL_LOCKED;
2741 * unlock a volume on disk that was locked with VLockVolumeNB.
2743 * @param[in] vp volume to unlock
2745 * @pre If we're in the fileserver, vp is in an exclusive state
2747 * @pre vp has already been locked
2750 VUnlockVolume(Volume *vp)
2752 osi_Assert(programType != fileServer || VIsExclusiveState(V_attachState(vp)));
2753 osi_Assert((V_attachFlags(vp) & VOL_LOCKED));
2755 VUnlockVolumeById(vp->hashid, vp->partition);
2757 V_attachFlags(vp) &= ~VOL_LOCKED;
2759 #endif /* AFS_DEMAND_ATTACH_FS */
2762 * read in a vol header, possibly lock the vol header, and possibly check out
2763 * the vol header from the fileserver, as part of volume attachment.
2765 * @param[out] ec error code
2766 * @param[in] vp volume pointer object
2767 * @param[in] partp disk partition object of the attaching partition
2768 * @param[in] mode attachment mode such as V_VOLUPD, V_DUMP, etc (see
2770 * @param[in] peek 1 to just try to read in the volume header and make sure
2771 * we don't try to lock the vol, or check it out from
2772 * FSSYNC or anything like that; 0 otherwise, for 'normal'
2774 * @param[out] acheckedOut If we successfully checked-out the volume from
2775 * the fileserver (if we needed to), this is set
2776 * to 1, otherwise it is untouched.
2778 * @note As part of DAFS volume attachment, the volume header may be either
2779 * read- or write-locked to ensure mutual exclusion of certain volume
2780 * operations. In some cases in order to determine whether we need to
2781 * read- or write-lock the header, we need to read in the header to see
2782 * if the volume is RW or not. So, if we read in the header under a
2783 * read-lock and determine that we actually need a write-lock on the
2784 * volume header, this function will drop the read lock, acquire a write
2785 * lock, and read the header in again.
2788 attach_volume_header(Error *ec, Volume *vp, struct DiskPartition64 *partp,
2789 int mode, int peek, int *acheckedOut)
2791 struct VolumeDiskHeader diskHeader;
2792 struct VolumeHeader header;
2795 int lock_tries = 0, checkout_tries = 0;
2797 VolumeId volid = vp->hashid;
2798 #ifdef FSSYNC_BUILD_CLIENT
2799 int checkout, done_checkout = 0;
2800 #endif /* FSSYNC_BUILD_CLIENT */
2801 #ifdef AFS_DEMAND_ATTACH_FS
2802 int locktype = 0, use_locktype = -1;
2803 #endif /* AFS_DEMAND_ATTACH_FS */
2809 if (lock_tries > VOL_MAX_CHECKOUT_RETRIES) {
2810 Log("VAttachVolume: retried too many times trying to lock header for "
2811 "vol %lu part %s; giving up\n", afs_printable_uint32_lu(volid),
2812 VPartitionPath(partp));
2816 if (checkout_tries > VOL_MAX_CHECKOUT_RETRIES) {
2817 Log("VAttachVolume: retried too many times trying to checkout "
2818 "vol %lu part %s; giving up\n", afs_printable_uint32_lu(volid),
2819 VPartitionPath(partp));
2824 if (VReadVolumeDiskHeader(volid, partp, NULL)) {
2825 /* short-circuit the 'volume does not exist' case */
2830 #ifdef FSSYNC_BUILD_CLIENT
2831 checkout = !done_checkout;
2833 if (!peek && checkout && VMustCheckoutVolume(mode)) {
2835 memset(&res, 0, sizeof(res));
2837 if (FSYNC_VolOp(volid, partp->name, FSYNC_VOL_NEEDVOLUME, mode, &res)
2840 if (res.hdr.reason == FSYNC_SALVAGE) {
2841 Log("VAttachVolume: file server says volume %lu is salvaging\n",
2842 afs_printable_uint32_lu(volid));
2845 Log("VAttachVolume: attach of volume %lu apparently denied by file server\n",
2846 afs_printable_uint32_lu(volid));
2847 *ec = VNOVOL; /* XXXX */
2855 #ifdef AFS_DEMAND_ATTACH_FS
2856 if (use_locktype < 0) {
2857 /* don't know whether vol is RO or RW; assume it's RO and we can retry
2858 * if it turns out to be RW */
2859 locktype = VVolLockType(mode, 0);
2862 /* a previous try says we should use use_locktype to lock the volume,
2864 locktype = use_locktype;
2867 if (!peek && locktype) {
2868 code = VLockVolumeNB(vp, locktype);
2870 if (code == EBUSY) {
2871 Log("VAttachVolume: another program has vol %lu locked\n",
2872 afs_printable_uint32_lu(volid));
2874 Log("VAttachVolume: error %d trying to lock vol %lu\n",
2875 code, afs_printable_uint32_lu(volid));
2882 #endif /* AFS_DEMAND_ATTACH_FS */
2884 code = VReadVolumeDiskHeader(volid, partp, &diskHeader);
2894 DiskToVolumeHeader(&header, &diskHeader);
2896 IH_INIT(vp->vnodeIndex[vLarge].handle, partp->device, header.parent,
2897 header.largeVnodeIndex);
2898 IH_INIT(vp->vnodeIndex[vSmall].handle, partp->device, header.parent,
2899 header.smallVnodeIndex);
2900 IH_INIT(vp->diskDataHandle, partp->device, header.parent,
2902 IH_INIT(vp->linkHandle, partp->device, header.parent, header.linkTable);
2905 /* only need to do this once */
2907 GetVolumeHeader(vp);
2911 #if defined(AFS_DEMAND_ATTACH_FS) && defined(FSSYNC_BUILD_CLIENT)
2912 /* demand attach changes the V_PEEK mechanism
2914 * we can now suck the current disk data structure over
2915 * the fssync interface without going to disk
2917 * (technically, we don't need to restrict this feature
2918 * to demand attach fileservers. However, I'm trying
2919 * to limit the number of common code changes)
2921 if (VCanUseFSSYNC() && (mode == V_PEEK || peek)) {
2923 res.payload.len = sizeof(VolumeDiskData);
2924 res.payload.buf = &vp->header->diskstuff;
2926 if (FSYNC_VolOp(vp->hashid,
2928 FSYNC_VOL_QUERY_HDR,
2931 goto disk_header_loaded;
2934 #endif /* AFS_DEMAND_ATTACH_FS && FSSYNC_BUILD_CLIENT */
2935 (void)ReadHeader(ec, V_diskDataHandle(vp), (char *)&V_disk(vp),
2936 sizeof(V_disk(vp)), VOLUMEINFOMAGIC, VOLUMEINFOVERSION);
2938 #ifdef AFS_DEMAND_ATTACH_FS
2941 IncUInt64(&VStats.hdr_loads);
2942 IncUInt64(&vp->stats.hdr_loads);
2944 #endif /* AFS_DEMAND_ATTACH_FS */
2947 Log("VAttachVolume: Error reading diskDataHandle header for vol %lu; "
2948 "error=%u\n", afs_printable_uint32_lu(volid), *ec);
2952 #ifdef AFS_DEMAND_ATTACH_FS
2953 # ifdef FSSYNC_BUILD_CLIENT
2955 # endif /* FSSYNC_BUILD_CLIENT */
2957 /* if the lock type we actually used to lock the volume is different than
2958 * the lock type we should have used, retry with the lock type we should
2960 use_locktype = VVolLockType(mode, VolumeWriteable(vp));
2961 if (locktype != use_locktype) {
2965 #endif /* AFS_DEMAND_ATTACH_FS */
2970 #if defined(AFS_DEMAND_ATTACH_FS) && defined(FSSYNC_BUILD_CLIENT)
2971 if (!peek && *ec == 0 && retry == 0 && VMustCheckoutVolume(mode)) {
2973 code = FSYNC_VerifyCheckout(volid, partp->name, FSYNC_VOL_NEEDVOLUME, mode);
2975 if (code == SYNC_DENIED) {
2976 /* must retry checkout; fileserver no longer thinks we have
2982 } else if (code != SYNC_OK) {
2986 #endif /* AFS_DEMAND_ATTACH_FS && FSSYNC_BUILD_CLIENT */
2989 /* either we are going to be called again for a second pass, or we
2990 * encountered an error; clean up in either case */
2992 #ifdef AFS_DEMAND_ATTACH_FS
2993 if ((V_attachFlags(vp) & VOL_LOCKED)) {
2996 #endif /* AFS_DEMAND_ATTACH_FS */
2997 if (vp->linkHandle) {
2998 IH_RELEASE(vp->vnodeIndex[vLarge].handle);
2999 IH_RELEASE(vp->vnodeIndex[vSmall].handle);
3000 IH_RELEASE(vp->diskDataHandle);
3001 IH_RELEASE(vp->linkHandle);
3014 #ifdef AFS_DEMAND_ATTACH_FS
3016 attach_check_vop(Error *ec, VolumeId volid, struct DiskPartition64 *partp,
3017 Volume *vp, int *acheckedOut)
3021 if (vp->pending_vol_op) {
3025 if (vp->pending_vol_op->vol_op_state == FSSYNC_VolOpRunningUnknown) {
3027 code = VVolOpLeaveOnlineNoHeader_r(vp, vp->pending_vol_op);
3029 vp->pending_vol_op->vol_op_state = FSSYNC_VolOpRunningOnline;
3030 } else if (code == 0) {
3031 vp->pending_vol_op->vol_op_state = FSSYNC_VolOpRunningOffline;
3034 /* we need the vol header to determine if the volume can be
3035 * left online for the vop, so... get the header */
3039 /* attach header with peek=1 to avoid checking out the volume
3040 * or locking it; we just want the header info, we're not
3041 * messing with the volume itself at all */
3042 attach_volume_header(ec, vp, partp, V_PEEK, 1, acheckedOut);
3049 if (VVolOpLeaveOnline_r(vp, vp->pending_vol_op)) {
3050 vp->pending_vol_op->vol_op_state = FSSYNC_VolOpRunningOnline;
3052 vp->pending_vol_op->vol_op_state = FSSYNC_VolOpRunningOffline;
3055 /* make sure we grab a new vol header and re-open stuff on
3056 * actual attachment; we can't keep the data we grabbed, since
3057 * it was not done under a lock and thus not safe */
3058 FreeVolumeHeader(vp);
3059 VReleaseVolumeHandles_r(vp);
3062 /* see if the pending volume op requires exclusive access */
3063 switch (vp->pending_vol_op->vol_op_state) {
3064 case FSSYNC_VolOpPending:
3065 /* this should never happen */
3066 osi_Assert(vp->pending_vol_op->vol_op_state != FSSYNC_VolOpPending);
3069 case FSSYNC_VolOpRunningUnknown:
3070 /* this should never happen; we resolved 'unknown' above */
3071 osi_Assert(vp->pending_vol_op->vol_op_state != FSSYNC_VolOpRunningUnknown);
3074 case FSSYNC_VolOpRunningOffline:
3075 /* mark the volume down */
3077 VChangeState_r(vp, VOL_STATE_UNATTACHED);
3079 /* do not set V_offlineMessage here; we don't have ownership of
3080 * the volume (and probably do not have the header loaded), so we
3081 * can't alter the disk header */
3083 /* check to see if we should set the specialStatus flag */
3084 if (VVolOpSetVBusy_r(vp, vp->pending_vol_op)) {
3085 /* don't overwrite specialStatus if it was already set to
3086 * something else (e.g. VMOVED) */
3087 if (!vp->specialStatus) {
3088 vp->specialStatus = VBUSY;
3100 #endif /* AFS_DEMAND_ATTACH_FS */
3103 * volume attachment helper function.
3105 * @param[out] ec error code
3106 * @param[in] volumeId volume ID of the attaching volume
3107 * @param[in] path full path to the volume header .vol file
3108 * @param[in] partp disk partition object for the attaching partition
3109 * @param[in] vp volume object; vp->hashid, vp->device, vp->partition,
3110 * vp->vnode_list, vp->rx_call_list, and V_attachCV (for
3111 * DAFS) should already be initialized
3112 * @param[in] isbusy 1 if vp->specialStatus should be set to VBUSY; that is,
3113 * if there is a volume operation running for this volume
3114 * that should set the volume to VBUSY during its run. 0
3115 * otherwise. (see VVolOpSetVBusy_r)
3116 * @param[in] mode attachment mode such as V_VOLUPD, V_DUMP, etc (see
3118 * @param[out] acheckedOut If we successfully checked-out the volume from
3119 * the fileserver (if we needed to), this is set
3120 * to 1, otherwise it is 0.
3122 * @return pointer to the semi-attached volume pointer
3123 * @retval NULL an error occurred (check value of *ec)
3124 * @retval vp volume successfully attaching
3126 * @pre no locks held
3128 * @post VOL_LOCK held
3131 attach2(Error * ec, VolId volumeId, char *path, struct DiskPartition64 *partp,
3132 Volume * vp, int isbusy, int mode, int *acheckedOut)
3134 /* have we read in the header successfully? */
3135 int read_header = 0;
3137 #ifdef AFS_DEMAND_ATTACH_FS
3138 /* should we FreeVolume(vp) instead of VCheckFree(vp) in the error
3142 /* in the case of an error, to what state should the volume be
3144 VolState error_state = VOL_STATE_ERROR;
3145 #endif /* AFS_DEMAND_ATTACH_FS */
3149 vp->vnodeIndex[vLarge].handle = NULL;
3150 vp->vnodeIndex[vSmall].handle = NULL;
3151 vp->diskDataHandle = NULL;
3152 vp->linkHandle = NULL;
3156 #ifdef AFS_DEMAND_ATTACH_FS
3157 attach_check_vop(ec, volumeId, partp, vp, acheckedOut);
3159 attach_volume_header(ec, vp, partp, mode, 0, acheckedOut);
3162 attach_volume_header(ec, vp, partp, mode, 0, acheckedOut);
3163 #endif /* !AFS_DEMAND_ATTACH_FS */
3165 if (*ec == VNOVOL) {
3166 /* if the volume doesn't exist, skip straight to 'error' so we don't
3167 * request a salvage */
3169 goto error_notbroken;
3175 /* ensure that we don't override specialStatus if it was set to
3176 * something else (e.g. VMOVED) */
3177 if (isbusy && !vp->specialStatus) {
3178 vp->specialStatus = VBUSY;
3180 vp->shuttingDown = 0;
3181 vp->goingOffline = 0;
3183 #ifdef AFS_DEMAND_ATTACH_FS
3184 vp->stats.last_attach = FT_ApproxTime();
3185 vp->stats.attaches++;
3189 IncUInt64(&VStats.attaches);
3190 vp->cacheCheck = ++VolumeCacheCheck;
3191 /* just in case this ever rolls over */
3192 if (!vp->cacheCheck)
3193 vp->cacheCheck = ++VolumeCacheCheck;
3196 #ifdef AFS_DEMAND_ATTACH_FS
3197 V_attachFlags(vp) |= VOL_HDR_LOADED;
3198 vp->stats.last_hdr_load = vp->stats.last_attach;
3199 #endif /* AFS_DEMAND_ATTACH_FS */
3203 struct IndexFileHeader iHead;
3205 #if OPENAFS_VOL_STATS
3207 * We just read in the diskstuff part of the header. If the detailed
3208 * volume stats area has not yet been initialized, we should bzero the
3209 * area and mark it as initialized.
3211 if (!(V_stat_initialized(vp))) {
3212 memset((V_stat_area(vp)), 0, VOL_STATS_BYTES);
3213 V_stat_initialized(vp) = 1;
3215 #endif /* OPENAFS_VOL_STATS */
3217 (void)ReadHeader(ec, vp->vnodeIndex[vSmall].handle,
3218 (char *)&iHead, sizeof(iHead),
3219 SMALLINDEXMAGIC, SMALLINDEXVERSION);
3222 Log("VAttachVolume: Error reading smallVnode vol header %s; error=%u\n", path, *ec);
3227 struct IndexFileHeader iHead;
3229 (void)ReadHeader(ec, vp->vnodeIndex[vLarge].handle,
3230 (char *)&iHead, sizeof(iHead),
3231 LARGEINDEXMAGIC, LARGEINDEXVERSION);
3234 Log("VAttachVolume: Error reading largeVnode vol header %s; error=%u\n", path, *ec);
3238 #ifdef AFS_NAMEI_ENV
3240 struct versionStamp stamp;
3242 (void)ReadHeader(ec, V_linkHandle(vp), (char *)&stamp,
3243 sizeof(stamp), LINKTABLEMAGIC, LINKTABLEVERSION);
3246 Log("VAttachVolume: Error reading namei vol header %s; error=%u\n", path, *ec);
3249 #endif /* AFS_NAMEI_ENV */
3251 #if defined(AFS_DEMAND_ATTACH_FS)
3252 if (*ec && ((*ec != VOFFLINE) || (V_attachState(vp) != VOL_STATE_UNATTACHED))) {
3254 if (!VCanScheduleSalvage()) {
3255 Log("VAttachVolume: Error attaching volume %s; volume needs salvage; error=%u\n", path, *ec);
3257 VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_NO_OFFLINE);
3262 /* volume operation in progress */
3264 goto error_notbroken;
3266 #else /* AFS_DEMAND_ATTACH_FS */
3268 Log("VAttachVolume: Error attaching volume %s; volume needs salvage; error=%u\n", path, *ec);
3269 goto unlocked_error;
3271 #endif /* AFS_DEMAND_ATTACH_FS */
3273 if (V_needsSalvaged(vp)) {
3274 if (vp->specialStatus)
3275 vp->specialStatus = 0;
3277 #if defined(AFS_DEMAND_ATTACH_FS)
3278 if (!VCanScheduleSalvage()) {
3279 Log("VAttachVolume: volume salvage flag is ON for %s; volume needs salvage\n", path);
3281 VRequestSalvage_r(ec, vp, SALVSYNC_NEEDED, VOL_SALVAGE_NO_OFFLINE);
3284 #else /* AFS_DEMAND_ATTACH_FS */
3286 #endif /* AFS_DEMAND_ATTACH_FS */
3292 vp->nextVnodeUnique = V_uniquifier(vp);
3294 if (VShouldCheckInUse(mode) && V_inUse(vp) && VolumeWriteable(vp)) {
3295 if (!V_needsSalvaged(vp)) {
3296 V_needsSalvaged(vp) = 1;
3297 VUpdateVolume_r(ec, vp, 0);
3299 #if defined(AFS_DEMAND_ATTACH_FS)
3300 if (!VCanScheduleSalvage()) {
3301 Log("VAttachVolume: volume %s needs to be salvaged; not attached.\n", path);
3303 VRequestSalvage_r(ec, vp, SALVSYNC_NEEDED, VOL_SALVAGE_NO_OFFLINE);
3306 #else /* AFS_DEMAND_ATTACH_FS */
3307 Log("VAttachVolume: volume %s needs to be salvaged; not attached.\n", path);
3309 #endif /* AFS_DEMAND_ATTACH_FS */
3314 if (programType == fileServer && V_destroyMe(vp) == DESTROY_ME) {
3315 /* Only check destroyMe if we are the fileserver, since the
3316 * volserver et al sometimes need to work with volumes with
3317 * destroyMe set. Examples are 'temporary' volumes the
3318 * volserver creates, and when we create a volume (destroyMe
3319 * is set on creation; sometimes a separate volserver
3320 * transaction is created to clear destroyMe).
3323 #if defined(AFS_DEMAND_ATTACH_FS)
3324 /* schedule a salvage so the volume goes away on disk */
3325 VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_NO_OFFLINE);
3326 VChangeState_r(vp, VOL_STATE_ERROR);
3329 #endif /* AFS_DEMAND_ATTACH_FS */
3330 Log("VAttachVolume: volume %s is junk; it should be destroyed at next salvage\n", path);
3335 vp->vnodeIndex[vSmall].bitmap = vp->vnodeIndex[vLarge].bitmap = NULL;
3336 #ifndef BITMAP_LATER
3337 if (programType == fileServer && VolumeWriteable(vp)) {
3339 for (i = 0; i < nVNODECLASSES; i++) {
3340 VGetBitmap_r(ec, vp, i);
3342 #ifdef AFS_DEMAND_ATTACH_FS
3343 VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_NO_OFFLINE);
3345 #endif /* AFS_DEMAND_ATTACH_FS */
3346 Log("VAttachVolume: error getting bitmap for volume (%s)\n",
3352 #endif /* BITMAP_LATER */
3354 if (VInit >= 2 && V_needsCallback(vp)) {
3355 if (V_BreakVolumeCallbacks) {
3356 Log("VAttachVolume: Volume %lu was changed externally; breaking callbacks\n",
3357 afs_printable_uint32_lu(V_id(vp)));
3358 V_needsCallback(vp) = 0;
3360 (*V_BreakVolumeCallbacks) (V_id(vp));
3363 VUpdateVolume_r(ec, vp, 0);
3365 #ifdef FSSYNC_BUILD_CLIENT
3366 else if (VCanUseFSSYNC()) {
3367 afs_int32 fsync_code;
3369 V_needsCallback(vp) = 0;
3371 fsync_code = FSYNC_VolOp(V_id(vp), NULL, FSYNC_VOL_BREAKCBKS, FSYNC_WHATEVER, NULL);
3375 V_needsCallback(vp) = 1;
3376 Log("Error trying to tell the fileserver to break callbacks for "
3377 "changed volume %lu; error code %ld\n",
3378 afs_printable_uint32_lu(V_id(vp)),
3379 afs_printable_int32_ld(fsync_code));
3381 VUpdateVolume_r(ec, vp, 0);
3384 #endif /* FSSYNC_BUILD_CLIENT */
3387 Log("VAttachVolume: error %d clearing needsCallback on volume "
3388 "%lu; needs salvage\n", (int)*ec,
3389 afs_printable_uint32_lu(V_id(vp)));
3390 #ifdef AFS_DEMAND_ATTACH_FS
3391 VRequestSalvage_r(ec, vp, SALVSYNC_ERROR, VOL_SALVAGE_NO_OFFLINE);
3393 #else /* !AFS_DEMAND_ATTACH_FS */
3395 #endif /* !AFS_DEMAND_ATTACh_FS */
3400 if (programType == fileServer) {
3401 if (vp->specialStatus)
3402 vp->specialStatus = 0;
3403 if (V_blessed(vp) && V_inService(vp) && !V_needsSalvaged(vp)) {
3404 V_inUse(vp) = fileServer;
3405 V_offlineMessage(vp)[0] = '\0';
3409 #ifdef AFS_DEMAND_ATTACH_FS
3410 /* Put the vol into PREATTACHED state, so if someone tries to
3411 * access it again, we try to attach, see that we're not blessed,
3412 * and give a VNOVOL error again. Putting it into UNATTACHED state
3413 * would result in a VOFFLINE error instead. */
3414 error_state = VOL_STATE_PREATTACHED;
3415 #endif /* AFS_DEMAND_ATTACH_FS */
3417 /* mimic e.g. GetVolume errors */
3418 if (!V_blessed(vp)) {
3419 Log("Volume %lu offline: not blessed\n", afs_printable_uint32_lu(V_id(vp)));
3420 FreeVolumeHeader(vp);
3421 } else if (!V_inService(vp)) {
3422 Log("Volume %lu offline: not in service\n", afs_printable_uint32_lu(V_id(vp)));
3423 FreeVolumeHeader(vp);
3425 Log("Volume %lu offline: needs salvage\n", afs_printable_uint32_lu(V_id(vp)));
3427 #ifdef AFS_DEMAND_ATTACH_FS
3428 error_state = VOL_STATE_ERROR;
3429 /* see if we can recover */
3430 VRequestSalvage_r(ec, vp, SALVSYNC_NEEDED, 0 /*flags*/);
3433 #ifdef AFS_DEMAND_ATTACH_FS
3439 #ifdef AFS_DEMAND_ATTACH_FS
3440 if ((mode != V_PEEK) && (mode != V_SECRETLY))
3441 V_inUse(vp) = programType;
3442 #endif /* AFS_DEMAND_ATTACH_FS */
3443 V_checkoutMode(vp) = mode;
3446 AddVolumeToHashTable(vp, V_id(vp));
3447 #ifdef AFS_DEMAND_ATTACH_FS
3448 if (VCanUnlockAttached() && (V_attachFlags(vp) & VOL_LOCKED)) {
3451 if ((programType != fileServer) ||
3452 (V_inUse(vp) == fileServer)) {
3453 AddVolumeToVByPList_r(vp);
3455 VChangeState_r(vp, VOL_STATE_ATTACHED);
3457 VChangeState_r(vp, VOL_STATE_UNATTACHED);
3463 #ifndef AFS_DEMAND_ATTACH_FS
3469 #ifdef AFS_DEMAND_ATTACH_FS
3470 if (!VIsErrorState(V_attachState(vp))) {
3471 if (VIsErrorState(error_state)) {
3472 Log("attach2: forcing vol %u to error state (state %u flags 0x%x ec %d)\n",
3473 vp->hashid, V_attachState(vp), V_attachFlags(vp), *ec);
3475 VChangeState_r(vp, error_state);
3477 #endif /* AFS_DEMAND_ATTACH_FS */
3480 VReleaseVolumeHandles_r(vp);
3484 #ifdef AFS_DEMAND_ATTACH_FS
3491 #else /* !AFS_DEMAND_ATTACH_FS */
3493 #endif /* !AFS_DEMAND_ATTACH_FS */
3497 /* Attach an existing volume.
3498 The volume also normally goes online at this time.
3499 An offline volume must be reattached to make it go online.
3503 VAttachVolume(Error * ec, VolumeId volumeId, int mode)
3507 retVal = VAttachVolume_r(ec, volumeId, mode);
3513 VAttachVolume_r(Error * ec, VolumeId volumeId, int mode)
3516 VGetVolumePath(ec, volumeId, &part, &name);
3520 vp = VGetVolume_r(&error, volumeId);
3522 osi_Assert(V_inUse(vp) == 0);
3523 VDetachVolume_r(ec, vp);
3527 return VAttachVolumeByName_r(ec, part, name, mode);
3530 /* Increment a reference count to a volume, sans context swaps. Requires
3531 * possibly reading the volume header in from the disk, since there's
3532 * an invariant in the volume package that nUsers>0 ==> vp->header is valid.
3534 * N.B. This call can fail if we can't read in the header!! In this case
3535 * we still guarantee we won't context swap, but the ref count won't be
3536 * incremented (otherwise we'd violate the invariant).
3538 /* NOTE: with the demand attach fileserver extensions, the global lock
3539 * is dropped within VHold */
3540 #ifdef AFS_DEMAND_ATTACH_FS
3542 VHold_r(Volume * vp)
3546 VCreateReservation_r(vp);
3547 VWaitExclusiveState_r(vp);
3549 LoadVolumeHeader(&error, vp);
3551 VCancelReservation_r(vp);
3555 VCancelReservation_r(vp);
3558 #else /* AFS_DEMAND_ATTACH_FS */
3560 VHold_r(Volume * vp)
3564 LoadVolumeHeader(&error, vp);
3570 #endif /* AFS_DEMAND_ATTACH_FS */
3572 /**** volume timeout-related stuff ****/
3574 #ifdef AFS_PTHREAD_ENV
3576 static struct timespec *shutdown_timeout;
3577 static pthread_once_t shutdown_timeout_once = PTHREAD_ONCE_INIT;
3580 VTimedOut(const struct timespec *ts)
3585 if (ts->tv_sec == 0) {
3586 /* short-circuit; this will have always timed out */
3590 code = gettimeofday(&tv, NULL);
3592 Log("Error %d from gettimeofday, assuming we have not timed out\n", errno);
3593 /* assume no timeout; failure mode is we just wait longer than normal
3594 * instead of returning errors when we shouldn't */
3598 if (tv.tv_sec < ts->tv_sec ||
3599 (tv.tv_sec == ts->tv_sec && tv.tv_usec*1000 < ts->tv_nsec)) {
3608 * Calculate an absolute timeout.
3610 * @param[out] ts A timeout that is "timeout" seconds from now, if we return
3611 * NULL, the memory is not touched
3612 * @param[in] timeout How long the timeout should be from now
3614 * @return timeout to use
3615 * @retval NULL no timeout; wait forever
3616 * @retval non-NULL the given value for "ts"
3620 static struct timespec *
3621 VCalcTimeout(struct timespec *ts, afs_int32 timeout)
3631 ts->tv_sec = ts->tv_nsec = 0;
3635 code = gettimeofday(&now, NULL);
3637 Log("Error %d from gettimeofday, falling back to 'forever' timeout\n", errno);
3641 ts->tv_sec = now.tv_sec + timeout;
3642 ts->tv_nsec = now.tv_usec * 1000;
3648 * Initialize the shutdown_timeout global.
3651 VShutdownTimeoutInit(void)
3653 struct timespec *ts;
3655 ts = malloc(sizeof(*ts));
3657 shutdown_timeout = VCalcTimeout(ts, vol_opts.offline_shutdown_timeout);
3659 if (!shutdown_timeout) {
3665 * Figure out the timeout that should be used for waiting for offline volumes.
3667 * @param[out] ats Storage space for a local timeout value if needed
3669 * @return The timeout value that should be used
3670 * @retval NULL No timeout; wait forever for offlining volumes
3671 * @retval non-NULL A pointer to the absolute time that should be used as
3672 * the deadline for waiting for offlining volumes.
3674 * @note If we return non-NULL, the pointer we return may or may not be the
3677 static const struct timespec *
3678 VOfflineTimeout(struct timespec *ats)
3680 if (vol_shutting_down) {
3681 osi_Assert(pthread_once(&shutdown_timeout_once, VShutdownTimeoutInit) == 0);
3682 return shutdown_timeout;
3684 return VCalcTimeout(ats, vol_opts.offline_timeout);
3688 #else /* AFS_PTHREAD_ENV */
3690 /* Waiting a certain amount of time for offlining volumes is not supported
3691 * for LWP due to a lack of primitives. So, we never time out */
3692 # define VTimedOut(x) (0)
3693 # define VOfflineTimeout(x) (NULL)
3695 #endif /* !AFS_PTHREAD_ENV */
3703 retVal = VHold_r(vp);
3710 VIsGoingOffline_r(struct Volume *vp)
3714 if (vp->goingOffline) {
3715 if (vp->specialStatus) {
3716 code = vp->specialStatus;
3717 } else if (V_inService(vp) == 0 || V_blessed(vp) == 0) {
3728 * Tell the caller if a volume is waiting to go offline.
3730 * @param[in] vp The volume we want to know about
3732 * @return volume status
3733 * @retval 0 volume is not waiting to go offline, go ahead and use it
3734 * @retval nonzero volume is waiting to offline, and give the returned code
3735 * as an error to anyone accessing the volume
3737 * @pre VOL_LOCK is NOT held
3738 * @pre caller holds a heavyweight reference on vp
3741 VIsGoingOffline(struct Volume *vp)
3746 code = VIsGoingOffline_r(vp);
3753 * Register an RX call with a volume.
3755 * @param[inout] ec Error code; if unset when passed in, may be set if
3756 * the volume starts going offline
3757 * @param[out] client_ec @see GetVolume
3758 * @param[in] vp Volume struct
3759 * @param[in] cbv VCallByVol struct containing the RX call to register
3761 * @pre VOL_LOCK held
3762 * @pre caller holds heavy ref on vp
3767 VRegisterCall_r(Error *ec, Error *client_ec, Volume *vp, struct VCallByVol *cbv)
3770 #ifdef AFS_DEMAND_ATTACH_FS
3772 /* just in case the volume started going offline after we got the
3773 * reference to it... otherwise, if the volume started going
3774 * offline right at the end of GetVolume(), we might race with the
3775 * RX call scanner, and return success and add our cbv to the
3776 * rx_call_list _after_ the scanner has scanned the list. */
3777 *ec = VIsGoingOffline_r(vp);
3783 while (V_attachState(vp) == VOL_STATE_SCANNING_RXCALLS) {
3784 VWaitStateChange_r(vp);
3786 #endif /* AFS_DEMAND_ATTACH_FS */
3788 queue_Prepend(&vp->rx_call_list, cbv);
3793 * Deregister an RX call with a volume.
3795 * @param[in] vp Volume struct
3796 * @param[in] cbv VCallByVol struct containing the RX call to deregister
3798 * @pre VOL_LOCK held
3799 * @pre caller holds heavy ref on vp
3804 VDeregisterCall_r(Volume *vp, struct VCallByVol *cbv)
3806 if (cbv && queue_IsOnQueue(cbv)) {
3807 #ifdef AFS_DEMAND_ATTACH_FS
3808 while (V_attachState(vp) == VOL_STATE_SCANNING_RXCALLS) {