DAFS: Replace partition locks with volume locks
[openafs.git] / src / vol / volume.h
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) 2006-2008 Sine Nomine Associates
10  */
11
12 /*
13         System:         VICE-TWO
14         Module:         volume.h
15         Institution:    The Information Technology Center, Carnegie-Mellon University
16
17  */
18
19 #ifndef __volume_h
20 #define __volume_h  1
21
22 #include <afs/afssyscalls.h>
23 #include "voldefs.h"
24 #include "ihandle.h"
25 #define VolumeWriteable(vp)             (V_type(vp)==readwriteVolume)
26 #define VolumeWriteable2(vol)           (vol.type == readwriteVolume)
27 typedef bit32 FileOffset;       /* Offset in this file */
28 #define Date afs_uint32
29 #include "daemon_com.h"
30 #include "fssync.h"
31
32 #if 0
33 /** turn this on if you suspect a volume package locking bug */
34 #define VOL_LOCK_DEBUG 1
35 #endif
36
37 #ifdef VOL_LOCK_DEBUG
38 #define VOL_LOCK_ASSERT_HELD \
39     assert(vol_glock_holder == pthread_self())
40 #define VOL_LOCK_ASSERT_UNHELD \
41     assert(vol_glock_holder == 0)
42 #define _VOL_LOCK_SET_HELD \
43     vol_glock_holder = pthread_self()
44 #define _VOL_LOCK_SET_UNHELD \
45     vol_glock_holder = 0
46 #define VOL_LOCK_DBG_CV_WAIT_END \
47     do { \
48         VOL_LOCK_ASSERT_UNHELD; \
49         _VOL_LOCK_SET_HELD; \
50     } while(0)
51 #define VOL_LOCK_DBG_CV_WAIT_BEGIN \
52     do { \
53          VOL_LOCK_ASSERT_HELD; \
54          _VOL_LOCK_SET_UNHELD; \
55     } while(0)
56 #else
57 #define VOL_LOCK_ASSERT_HELD
58 #define VOL_LOCK_ASSERT_UNHELD
59 #define VOL_LOCK_DBG_CV_WAIT_BEGIN
60 #define VOL_LOCK_DBG_CV_WAIT_END
61 #endif
62
63
64 #ifdef AFS_PTHREAD_ENV
65 #include <assert.h>
66 #include <pthread.h>
67 extern pthread_mutex_t vol_glock_mutex;
68 extern pthread_mutex_t vol_trans_mutex;
69 extern pthread_cond_t vol_put_volume_cond;
70 extern pthread_cond_t vol_sleep_cond;
71 extern ih_init_params vol_io_params;
72 extern int vol_attach_threads;
73 #ifdef VOL_LOCK_DEBUG
74 extern pthread_t vol_glock_holder;
75 #define VOL_LOCK \
76     do { \
77         assert(pthread_mutex_lock(&vol_glock_mutex) == 0); \
78         assert(vol_glock_holder == 0); \
79         vol_glock_holder = pthread_self(); \
80     } while (0)
81 #define VOL_UNLOCK \
82     do { \
83         VOL_LOCK_ASSERT_HELD; \
84         vol_glock_holder = 0; \
85         assert(pthread_mutex_unlock(&vol_glock_mutex) == 0); \
86     } while (0)
87 #define VOL_CV_WAIT(cv) \
88     do { \
89         VOL_LOCK_DBG_CV_WAIT_BEGIN; \
90         assert(pthread_cond_wait((cv), &vol_glock_mutex) == 0); \
91         VOL_LOCK_DBG_CV_WAIT_END; \
92     } while (0)
93 #else /* !VOL_LOCK_DEBUG */
94 #define VOL_LOCK \
95     assert(pthread_mutex_lock(&vol_glock_mutex) == 0)
96 #define VOL_UNLOCK \
97     assert(pthread_mutex_unlock(&vol_glock_mutex) == 0)
98 #define VOL_CV_WAIT(cv) assert(pthread_cond_wait((cv), &vol_glock_mutex) == 0)
99 #endif /* !VOL_LOCK_DEBUG */
100 #define VSALVSYNC_LOCK \
101     assert(pthread_mutex_lock(&vol_salvsync_mutex) == 0)
102 #define VSALVSYNC_UNLOCK \
103     assert(pthread_mutex_unlock(&vol_salvsync_mutex) == 0)
104 #define VTRANS_LOCK \
105     assert(pthread_mutex_lock(&vol_trans_mutex) == 0)
106 #define VTRANS_UNLOCK \
107     assert(pthread_mutex_unlock(&vol_trans_mutex) == 0)
108 #else /* AFS_PTHREAD_ENV */
109 #define VOL_LOCK
110 #define VOL_UNLOCK
111 #define VSALVSYNC_LOCK
112 #define VSALVSYNC_UNLOCK
113 #define VTRANS_LOCK
114 #define VTRANS_UNLOCK
115 #endif /* AFS_PTHREAD_ENV */
116
117 /**
118  * volume package program type enumeration.
119  */
120 typedef enum {
121     fileServer          = 1,    /**< the fileserver process */
122     volumeUtility       = 2,    /**< any miscellaneous volume utility */
123     salvager            = 3,    /**< standalone whole-partition salvager */
124     salvageServer       = 4,    /**< dafs online salvager */
125     debugUtility        = 5,    /**< fssync-debug or similar utility */
126     volumeServer        = 6,    /**< the volserver process */
127     volumeSalvager      = 7,    /**< the standalone single-volume salvager */
128 } ProgramType;
129 extern ProgramType programType; /* The type of program using the package */
130
131 /* Some initialization parameters for the volume package */
132 /* Add new initialization parameters here */
133 extern int (*V_BreakVolumeCallbacks) (VolumeId);
134 extern int (*vol_PollProc) (void);
135
136 #define DOPOLL  ((vol_PollProc)? (*vol_PollProc)() : 0)
137
138 #ifdef AFS_DEMAND_ATTACH_FS
139 /**
140  * variable error return code based upon programType and DAFS presence
141  */
142 #define DAFS_VSALVAGE   ((programType == fileServer) ? VSALVAGING : VSALVAGE)
143 #else
144 #define DAFS_VSALVAGE   (VSALVAGE)
145 #endif
146
147 struct versionStamp {           /* Version stamp for critical volume files */
148     bit32 magic;                /* Magic number */
149     bit32 version;              /* Version number of this file, or software
150                                  * that created this file */
151 };
152
153 #ifdef AFS_DEMAND_ATTACH_FS
154 /**
155  * demand attach volume state enumeration.
156  *
157  * @note values must be contiguous in order for VIsValidState() to work correctly
158  */
159 typedef enum {
160     VOL_STATE_UNATTACHED        = 0,    /**< volume is unattached */
161     VOL_STATE_PREATTACHED       = 1,    /**< volume has been pre-attached */
162     VOL_STATE_ATTACHING         = 2,    /**< volume is transitioning to fully attached */
163     VOL_STATE_ATTACHED          = 3,    /**< volume has been fully attached */
164     VOL_STATE_UPDATING          = 4,    /**< volume is updating on-disk structures */
165     VOL_STATE_GET_BITMAP        = 5,    /**< volume is getting bitmap entries */
166     VOL_STATE_HDR_LOADING       = 6,    /**< volume is loading disk header */
167     VOL_STATE_HDR_ATTACHING     = 7,    /**< volume is getting a header from the LRU */
168     VOL_STATE_SHUTTING_DOWN     = 8,    /**< volume is shutting down */
169     VOL_STATE_GOING_OFFLINE     = 9,    /**< volume is going offline */
170     VOL_STATE_OFFLINING         = 10,   /**< volume is transitioning to offline */
171     VOL_STATE_DETACHING         = 11,   /**< volume is transitioning to detached */
172     VOL_STATE_SALVSYNC_REQ      = 12,   /**< volume is blocked on a salvsync request */
173     VOL_STATE_SALVAGING         = 13,   /**< volume is being salvaged */
174     VOL_STATE_ERROR             = 14,   /**< volume is in an error state */
175     VOL_STATE_VNODE_ALLOC       = 15,   /**< volume is busy allocating a new vnode */
176     VOL_STATE_VNODE_GET         = 16,   /**< volume is busy getting vnode disk data */
177     VOL_STATE_VNODE_CLOSE       = 17,   /**< volume is busy closing vnodes */
178     VOL_STATE_VNODE_RELEASE     = 18,   /**< volume is busy releasing vnodes */
179     VOL_STATE_VLRU_ADD          = 19,   /**< volume is busy being added to a VLRU queue */
180     /* please add new states directly above this line */
181     VOL_STATE_FREED             = 20,   /**< debugging aid */
182     VOL_STATE_COUNT             = 21,   /**< total number of valid states */
183 } VolState;
184
185 /**
186  * V_attachFlags bits.
187  */
188 enum VolFlags {
189     VOL_HDR_ATTACHED      = 0x1,     /**< volume header is attached to Volume struct */
190     VOL_HDR_LOADED        = 0x2,     /**< volume header contents are valid */
191     VOL_HDR_IN_LRU        = 0x4,     /**< volume header is in LRU */
192     VOL_IN_HASH           = 0x8,     /**< volume is in hash table */
193     VOL_ON_VBYP_LIST      = 0x10,    /**< volume is on VByP list */
194     VOL_IS_BUSY           = 0x20,    /**< volume is not to be free()d */
195     VOL_ON_VLRU           = 0x40,    /**< volume is on the VLRU */
196     VOL_HDR_DONTSALV      = 0x80,    /**< volume header DONTSALVAGE flag is set */
197     VOL_LOCKED            = 0x100,   /**< volume is disk-locked (@see VLockVolumeNB) */
198 };
199
200 /* VPrintExtendedCacheStats flags */
201 #define VOL_STATS_PER_CHAIN   0x1  /**< compute simple per-chain stats */
202 #define VOL_STATS_PER_CHAIN2  0x2  /**< compute per-chain stats that require scanning
203                                     *   every element of the chain */
204
205 /* VLRU_SetOptions options */
206 #define VLRU_SET_THRESH       1
207 #define VLRU_SET_INTERVAL     2
208 #define VLRU_SET_MAX          3
209 #define VLRU_SET_ENABLED      4
210
211 /**
212  * VLRU queue names.
213  */
214 typedef enum {
215     VLRU_QUEUE_NEW        = 0,  /**< LRU queue for new volumes */
216     VLRU_QUEUE_MID        = 1,  /**< survivor generation */
217     VLRU_QUEUE_OLD        = 2,  /**< old generation */
218     VLRU_QUEUE_CANDIDATE  = 3,  /**< soft detach candidate pool */
219     VLRU_QUEUE_HELD       = 4,  /*   volumes which are not allowed
220                                  *   to be soft detached */
221     VLRU_QUEUE_INVALID    = 5,  /**< invalid queue id */
222 } VLRUQueueName;
223
224 /* default scanner timing parameters */
225 #define VLRU_DEFAULT_OFFLINE_THRESH (60*60*2) /* 2 hours */
226 #define VLRU_DEFAULT_OFFLINE_INTERVAL (60*2) /* 2 minutes */
227 #define VLRU_DEFAULT_OFFLINE_MAX 8 /* 8 volumes */
228
229
230 /**
231  * DAFS thread-specific options structure
232  */
233 typedef struct VThreadOptions {
234      int disallow_salvsync;     /**< whether or not salvsync calls are allowed
235                                  *   on this thread (deadlock prevention). */
236 } VThreadOptions_t;
237 extern pthread_key_t VThread_key;
238 extern VThreadOptions_t VThread_defaults;
239
240 #endif /* AFS_DEMAND_ATTACH_FS */
241
242 typedef struct VolumePackageOptions {
243     afs_uint32 nLargeVnodes;      /**< size of large vnode cache */
244     afs_uint32 nSmallVnodes;      /**< size of small vnode cache */
245     afs_uint32 volcache;          /**< size of volume header cache */
246
247     afs_int32 canScheduleSalvage; /**< can we schedule salvages? (DAFS) */
248                                   /* (if 'no', we will just error out if we
249                                    * find a bad vol) */
250     afs_int32 canUseFSSYNC;       /**< can we use the FSSYNC channel? */
251     afs_int32 canUseSALVSYNC;     /**< can we use the SALVSYNC channel? (DAFS) */
252 } VolumePackageOptions;
253
254 /* Magic numbers and version stamps for each type of file */
255 #define VOLUMEHEADERMAGIC       ((bit32)0x88a1bb3c)
256 #define VOLUMEINFOMAGIC         ((bit32)0x78a1b2c5)
257 #define SMALLINDEXMAGIC         0x99776655
258 #define LARGEINDEXMAGIC         0x88664433
259 #define MOUNTMAGIC              0x9a8b7c6d
260 #define ACLMAGIC                0x88877712
261 #define LINKTABLEMAGIC          0x99877712
262
263 #define VOLUMEHEADERVERSION     1
264 #define VOLUMEINFOVERSION       1
265 #define SMALLINDEXVERSION       1
266 #define LARGEINDEXVERSION       1
267 #define MOUNTVERSION            1
268 #define ACLVERSION              1
269 #define LINKTABLEVERSION        1
270
271 /*
272  * Define whether we are keeping detailed statistics on volume dealings.
273  */
274 #define OPENAFS_VOL_STATS       1
275
276 #if OPENAFS_VOL_STATS
277 /*
278  * Define various indices and counts used in keeping volume-level statistics.
279  */
280 #define VOL_STATS_NUM_RWINFO_FIELDS 4
281
282 #define VOL_STATS_SAME_NET      0       /*Within same site (total) */
283 #define VOL_STATS_SAME_NET_AUTH 1       /*Within same site (authenticated);
284                                          * (must be 1 more than above) */
285 #define VOL_STATS_DIFF_NET      2       /*From external site (total) */
286 #define VOL_STATS_DIFF_NET_AUTH 3       /*From external site (authenticated)
287                                          * (must be 1 more than above) */
288
289 #define VOL_STATS_NUM_TIME_RANGES 6
290
291 #define VOL_STATS_TIME_CAP_0        60  /*60 seconds */
292 #define VOL_STATS_TIME_CAP_1       600  /*10 minutes, in seconds */
293 #define VOL_STATS_TIME_CAP_2      3600  /*1 hour, in seconds */
294 #define VOL_STATS_TIME_CAP_3     86400  /*1 day, in seconds */
295 #define VOL_STATS_TIME_CAP_4    604800  /*1 week, in seconds */
296
297 #define VOL_STATS_NUM_TIME_FIELDS 6
298
299 #define VOL_STATS_TIME_IDX_0    0       /*0 secs to 60 secs */
300 #define VOL_STATS_TIME_IDX_1    1       /*1 min to 10 mins */
301 #define VOL_STATS_TIME_IDX_2    2       /*10 mins to 60 mins */
302 #define VOL_STATS_TIME_IDX_3    3       /*1 hr to 24 hrs */
303 #define VOL_STATS_TIME_IDX_4    4       /*1 day to 7 days */
304 #define VOL_STATS_TIME_IDX_5    5       /*Greater than 1 week */
305 #endif /* OPENAFS_VOL_STATS */
306
307 /* Volume header.  This is the contents of the named file representing
308  * the volume.  Read-only by the file server!
309  */
310 typedef struct VolumeHeader {
311     struct versionStamp stamp;  /* Must be first field */
312     VolumeId id;                /* Volume number */
313     VolumeId parent;            /* Read-write volume number (or this volume
314                                  * number if this is a read-write volume) */
315     Inode volumeInfo;
316     Inode smallVnodeIndex;
317     Inode largeVnodeIndex;
318     Inode volumeAcl;
319     Inode volumeMountTable;
320     Inode linkTable;
321 } VolumeHeader_t;
322
323
324 typedef struct VolumeDiskHeader {
325     struct versionStamp stamp;  /* Must be first field */
326     VolumeId id;                /* Volume number */
327     VolumeId parent;            /* Read-write volume number (or this volume
328                                  * number if this is a read-write volume) */
329     afs_int32 volumeInfo_lo;
330     afs_int32 smallVnodeIndex_lo;
331     afs_int32 largeVnodeIndex_lo;
332     afs_int32 volumeAcl_lo;
333     afs_int32 volumeMountTable_lo;
334     afs_int32 volumeInfo_hi;
335     afs_int32 smallVnodeIndex_hi;
336     afs_int32 largeVnodeIndex_hi;
337     afs_int32 volumeAcl_hi;
338     afs_int32 volumeMountTable_hi;
339     afs_int32 linkTable_lo;
340     afs_int32 linkTable_hi;
341     /* If you add fields, add them before here and reduce the size of  array */
342     bit32 reserved[3];
343 } VolumeDiskHeader_t;
344
345 /* A vnode index file header */
346 struct IndexFileHeader {
347     struct versionStamp stamp;
348 };
349
350
351 /******************************************************************************/
352 /* Volume Data which is stored on disk and can also be maintained in memory.  */
353 /******************************************************************************/
354 typedef struct VolumeDiskData {
355     struct versionStamp stamp;  /* Must be first field */
356     VolumeId id;                /* Volume id--unique over all systems */
357 #define VNAMESIZE 32            /* including 0 byte */
358     char name[VNAMESIZE];       /* Unofficial name for the volume */
359     byte inUse;                 /* Volume is being used (perhaps it is online),
360                                  * or the system crashed while it was used */
361     byte inService;             /* Volume in service, not necessarily on line
362                                  * This bit is set by an operator/system
363                                  * programmer.  Manually taking a volume offline
364                                  * always clears the inService bit. Taking
365                                  * it out of service also takes it offline */
366     byte blessed;               /* Volume is administratively blessed with
367                                  * the ability to go on line.  Set by a system
368                                  * administrator. Clearing this bit will
369                                  * take the volume offline */
370     byte needsSalvaged;         /* Volume needs salvaged--an unrecoverable
371                                  * error occured to the volume.  Note:  a volume
372                                  * may still require salvage even if this
373                                  * flag isn't set--e.g. if a system crash
374                                  * occurred while the volume was on line. */
375     bit32 uniquifier;           /* Next vnode uniquifier for this volume */
376     int type;                   /* */
377     VolId parentId;             /* Id of parent, if type==readonly */
378     VolId cloneId;              /* Latest read-only clone, if type==readwrite,
379                                  * 0 if the volume has never been cloned.  Note: the
380                                  * indicated volume does not necessarily exist (it
381                                  * may have been deleted since cloning). */
382     VolId backupId;             /* Latest backup copy of this read write volume */
383     VolId restoredFromId;       /* The id in the dump this volume was restored from--used simply
384                                  * to make sure that an incremental dump is not restored on top
385                                  * of something inappropriate:  Note:  this field itself is NEVER
386                                  * dumped!!! */
387     byte needsCallback;         /* Set by the salvager if anything was changed
388                                  * about the volume.  Note:  this is not set by
389                                  * clone/makebackups when setting the copy-on-write
390                                  * flag in directories; this flag is not seen by
391                                  * the clients. */
392 #define DESTROY_ME      0xD3
393     byte destroyMe;             /* If this is set to DESTROY_ME, then the salvager should destroy
394                                  * this volume; it is bogus (left over from an aborted  volume move,
395                                  * for example).  Note:  if this flag is on, then inService should
396                                  * be OFF--only the salvager checks this flag */
397 #ifdef ALPHA_DUX40_ENV
398 #define DONT_SALVAGE    0xE6
399 #else                           /* ALPHA_DUX40_ENV */
400 #define DONT_SALVAGE    0xE5
401 #endif                          /* ALPHA_DUX40_ENV */
402     byte dontSalvage;           /* If this is on, then don't bother salvaging this volume */
403     byte reserveb3;
404
405     bit32 reserved1[6];
406
407
408     /* Administrative stuff */
409     int maxquota;               /* Quota maximum, 1K blocks */
410     int minquota;               /* Quota minimum, 1K blocks */
411     int maxfiles;               /* Maximum number of files (i.e. inodes) */
412     bit32 accountNumber;        /* Uninterpreted account number */
413     bit32 owner;                /* The person administratively responsible
414                                  * for this volume */
415     int reserved2[8];           /* Other administrative constraints */
416
417     /* Resource usage & statistics */
418     int filecount;              /* Actual number of files */
419     int diskused;               /* Actual disk space used, 1K blocks */
420     int dayUse;                 /* Metric for today's usage of this volume so far */
421     int weekUse[7];             /* Usage of the volume for the last week.
422                                  * weekUse[0] is for most recent complete 24 hour period
423                                  * of measurement; week[6] is 7 days ago */
424     Date dayUseDate;            /* Date the dayUse statistics refer to; the week use stats
425                                  * are the preceding 7 days */
426     unsigned int volUpdateCounter; /*incremented at every update of volume*/
427     int reserved3[10];          /* Other stats here */
428
429     /* Server supplied dates */
430     Date creationDate;          /* Creation date for a read/write
431                                  * volume; cloning date for original copy of
432                                  * a readonly volume (replicated volumes have
433                                  * the same creation date) */
434     Date accessDate;            /* Last access time by a user, large granularity */
435     Date updateDate;            /* Last modification by user */
436     Date expirationDate;        /* 0 if it never expires */
437     Date backupDate;            /* last time a backup clone was taken */
438
439     /* Time that this copy of this volume was made.  NEVER backed up.  This field is only
440      * set when the copy is created */
441     Date copyDate;
442
443 #if OPENAFS_VOL_STATS
444     bit32 stat_initialized;     /*Are the stat fields below set up? */
445     bit32 reserved4[7];
446 #else
447     bit32 reserved4[8];
448 #endif                          /* OPENAFS_VOL_STATS */
449
450     /* messages */
451 #define VMSGSIZE 128
452     char offlineMessage[VMSGSIZE];      /* Why the volume is offline */
453 #if OPENAFS_VOL_STATS
454 #define VOL_STATS_BYTES 128
455     /*
456      * Keep per-volume aggregate statistics on type and distance of access,
457      * along with authorship info.
458      */
459     bit32 stat_reads[VOL_STATS_NUM_RWINFO_FIELDS];
460     bit32 stat_writes[VOL_STATS_NUM_RWINFO_FIELDS];
461     bit32 stat_fileSameAuthor[VOL_STATS_NUM_TIME_FIELDS];
462     bit32 stat_fileDiffAuthor[VOL_STATS_NUM_TIME_FIELDS];
463     bit32 stat_dirSameAuthor[VOL_STATS_NUM_TIME_FIELDS];
464     bit32 stat_dirDiffAuthor[VOL_STATS_NUM_TIME_FIELDS];
465 #else
466     char motd[VMSGSIZE];        /* Volume "message of the day" */
467 #endif                          /* OPENAFS_VOL_STATS */
468
469 } VolumeDiskData;
470
471
472 /**************************************/
473 /* Memory resident volume information */
474 /**************************************/
475
476 /** 
477  * global volume package stats.
478  */
479 typedef struct VolPkgStats {
480 #ifdef AFS_DEMAND_ATTACH_FS
481     /*
482      * demand attach fs
483      * extended volume package statistics
484      */
485
486     /* levels */
487     afs_uint32 state_levels[VOL_STATE_COUNT]; /**< volume state transition counters */
488
489     /* counters */
490     afs_uint64 hash_looks;           /**< number of hash chain element traversals */
491     afs_uint64 hash_reorders;        /**< number of hash chain reorders */
492     afs_uint64 salvages;             /**< online salvages since fileserver start */
493     afs_uint64 vol_ops;              /**< volume operations since fileserver start */
494 #endif /* AFS_DEMAND_ATTACH_FS */
495
496     afs_uint64 hdr_loads;            /**< header loads from disk */
497     afs_uint64 hdr_gets;             /**< header pulls out of LRU */
498     afs_uint64 attaches;             /**< volume attaches since fileserver start */
499     afs_uint64 soft_detaches;        /**< soft detach ops since fileserver start */
500
501     /* configuration parameters */
502     afs_uint32 hdr_cache_size;       /**< size of volume header cache */
503 } VolPkgStats;
504 extern VolPkgStats VStats;
505
506 /*
507  * volume header cache supporting structures
508  */
509 struct volume_hdr_LRU_stats {
510     afs_uint32 free;
511     afs_uint32 used;
512     afs_uint32 attached;
513 };
514
515 struct volume_hdr_LRU_t {
516     struct rx_queue lru;
517     struct volume_hdr_LRU_stats stats;
518 };
519 extern struct volume_hdr_LRU_t volume_hdr_LRU;
520
521 /*
522  * volume hash chain supporting structures
523  */
524 typedef struct VolumeHashChainHead {
525     struct rx_queue queue;
526     int len;
527     /* someday we could put a per-chain lock here... */
528 #ifdef AFS_DEMAND_ATTACH_FS
529     int busy;
530     int cacheCheck;
531
532     /* per-chain statistics */
533     afs_uint64 looks;
534     afs_uint64 gets;
535     afs_uint64 reorders;
536
537     pthread_cond_t chain_busy_cv;
538 #endif /* AFS_DEMAND_ATTACH_FS */
539 } VolumeHashChainHead;
540
541 typedef struct VolumeHashTable {
542     int Size;
543     int Mask;
544     VolumeHashChainHead * Table;
545 } VolumeHashTable_t;
546 extern VolumeHashTable_t VolumeHashTable;
547
548 struct VolumeHashChainStats {
549     afs_int32 table_size;
550     afs_int32 chain_len;
551 #ifdef AFS_DEMAND_ATTACH_FS
552     afs_int32 chain_cacheCheck;
553     afs_int32 chain_busy;
554     afs_uint64 chain_looks;
555     afs_uint64 chain_gets;
556     afs_uint64 chain_reorders;
557 #endif
558 };
559
560
561 #ifdef AFS_DEMAND_ATTACH_FS
562 /**
563  * DAFS extended per-volume statistics.
564  *
565  * @note this data lives across the entire
566  *       lifetime of the fileserver process
567  */
568 typedef struct VolumeStats {
569     /* counters */
570     afs_uint64 hash_lookups;         /**< hash table lookups */
571     afs_uint64 hash_short_circuits;  /**< short circuited hash lookups (due to cacheCheck) */
572     afs_uint64 hdr_loads;            /**< header loads from disk */
573     afs_uint64 hdr_gets;             /**< header pulls out of LRU */
574     afs_uint16 attaches;             /**< attaches of this volume since fileserver start */
575     afs_uint16 soft_detaches;        /**< soft detaches of this volume */
576     afs_uint16 salvages;             /**< online salvages since fileserver start */
577     afs_uint16 vol_ops;              /**< volume operations since fileserver start */
578
579     /* timestamps */
580     afs_uint32 last_attach;      /**< unix timestamp of last VAttach */
581     afs_uint32 last_get;         /**< unix timestamp of last VGet/VHold */
582     afs_uint32 last_promote;     /**< unix timestamp of last VLRU promote/demote */
583     afs_uint32 last_hdr_get;     /**< unix timestamp of last GetVolumeHeader() */
584     afs_uint32 last_hdr_load;    /**< unix timestamp of last LoadVolumeHeader() */
585     afs_uint32 last_salvage;     /**< unix timestamp of last initiation of an online salvage */
586     afs_uint32 last_salvage_req; /**< unix timestamp of last SALVSYNC request */
587     afs_uint32 last_vol_op;      /**< unix timestamp of last volume operation */
588 } VolumeStats;
589
590
591 #define SALVAGE_PRIO_UPDATE_INTERVAL 3      /**< number of seconds between prio updates */
592 #define SALVAGE_COUNT_MAX 16                /**< number of online salvages we
593                                              *   allow before moving the volume
594                                              *   into a permanent error state
595                                              *
596                                              *   once this threshold is reached,
597                                              *   the operator will have to manually
598                                              *   issue a 'bos salvage' to bring
599                                              *   the volume back online
600                                              */
601
602 /**
603  * DAFS online salvager state.
604  */
605 typedef struct VolumeOnlineSalvage {
606     afs_uint32 prio;            /**< number of VGetVolume's since salvage requested */
607     int reason;                 /**< reason for requesting online salvage */
608     byte requested;             /**< flag specifying that salvage should be scheduled */
609     byte scheduled;             /**< flag specifying whether online salvage scheduled */
610     byte reserved[2];           /**< padding */
611 } VolumeOnlineSalvage;
612
613 /**
614  * DAFS Volume LRU state.
615  */
616 typedef struct VolumeVLRUState {
617     struct rx_queue lru;        /**< VLRU queue for this generation */
618     VLRUQueueName idx;          /**< VLRU generation index */
619 } VolumeVLRUState;
620 #endif /* AFS_DEMAND_ATTACH_FS */
621
622 typedef struct Volume {
623     struct rx_queue q;          /* Volume hash chain pointers */
624     VolumeId hashid;            /* Volume number -- for hash table lookup */
625     struct volHeader *header;   /* Cached disk data */
626     Device device;              /* Unix device for the volume */
627     struct DiskPartition64
628      *partition;                /* Information about the Unix partition */
629     struct vnodeIndex {
630         IHandle_t *handle;      /* Unix inode holding this index */
631         byte *bitmap;           /* Index bitmap */
632         afs_uint32 bitmapSize;  /* length of bitmap, in bytes */
633         afs_uint32 bitmapOffset;        /* Which byte address of the first long to
634                                          * start search from in bitmap */
635     } vnodeIndex[nVNODECLASSES];
636     IHandle_t *linkHandle;
637     Unique nextVnodeUnique;     /* Derived originally from volume uniquifier.
638                                  * This is the actual next version number to
639                                  * assign; the uniquifier is bumped by 200 and
640                                  * and written to disk every 200 file creates
641                                  * If the volume is shutdown gracefully, the
642                                  * uniquifier should be rewritten with the
643                                  * value nextVnodeVersion */
644     IHandle_t *diskDataHandle;  /* Unix inode holding general volume info */
645     bit16 vnodeHashOffset;      /* Computed by HashOffset function in vnode.h.
646                                  * Assigned to the volume when initialized. 
647                                  * Added to vnode number for hash table index */
648     byte shuttingDown;          /* This volume is going to be detached */
649     byte goingOffline;          /* This volume is going offline */
650     bit32 cacheCheck;           /* Online sequence number to be used to invalidate vnode cache entries
651                                  * that stayed around while a volume was offline */
652     short nUsers;               /* Number of users of this volume header */
653     byte needsPutBack;          /* For a volume utility, this flag is set if we need
654                                  * to give the volume back when we detach it.  The server has
655                                  * certain modes where it doesn't detach the volume, and
656                                  * if we give it back spuriously, the server aborts.  This field
657                                  * is meaningless on the file server */
658     byte specialStatus;         /* An error code to return on VGetVolume: the
659                                  * volume is unavailable for the reason quoted,
660                                  * currently VBUSY or VMOVED */
661     afs_uint32 checkoutMode;    /* for volume utilities, mode number for current checkout */
662     afs_uint32 updateTime;      /* Time that this volume was put on the updated
663                                  * volume list--the list of volumes that will be
664                                  * salvaged should the file server crash */
665     struct rx_queue vnode_list; /**< linked list of cached vnodes for this volume */
666 #ifdef AFS_DEMAND_ATTACH_FS
667     VolState attach_state;      /* what stage of attachment has been completed */
668     afs_uint32 attach_flags;    /* flags related to attachment state */
669     pthread_cond_t attach_cv;   /* state change condition variable */
670     short nWaiters;             /* volume package internal ref count */
671     int chainCacheCheck;        /* Volume hash chain cache check */
672     struct rx_queue vol_list;   /* per-partition volume list (VByPList) */
673
674     VolumeOnlineSalvage salvage;  /* online salvager state */
675     VolumeStats stats;            /* per-volume statistics */
676     VolumeVLRUState vlru;         /* state specific to the VLRU */
677     FSSYNC_VolOp_info * pending_vol_op;  /* fssync command info for any pending vol ops */
678 #endif /* AFS_DEMAND_ATTACH_FS */
679 } Volume;
680
681 struct volHeader {
682     struct rx_queue lru;
683     VolumeDiskData diskstuff;   /* General volume info read from disk */
684     Volume *back;               /* back pointer to current volume structure */
685 };
686
687 /* These macros are used to export fields within the volume header.  This was added
688    to facilitate changing the actual representation */
689
690 #define V_device(vp)            ((vp)->device)
691 #define V_partition(vp)         ((vp)->partition)
692 #define V_diskDataHandle(vp)    ((vp)->diskDataHandle)
693 #define V_vnodeIndex(vp)        ((vp)->vnodeIndex)
694 #define V_nextVnodeUnique(vp)   ((vp)->nextVnodeUnique)
695 #define V_linkHandle(vp)        ((vp)->linkHandle)
696 #define V_checkoutMode(vp)      ((vp)->checkoutMode)
697 #ifdef AFS_DEMAND_ATTACH_FS
698 #define V_attachState(vp)       ((vp)->attach_state)
699 #define V_attachFlags(vp)       ((vp)->attach_flags)
700 #define V_attachCV(vp)          ((vp)->attach_cv)
701 #endif /* AFS_DEMAND_ATTACH_FS */
702
703 /* N.B. V_id must be this, rather than vp->id, or some programs will break, probably */
704 #define V_stamp(vp)             ((vp)->header->diskstuff.stamp)
705 #define V_id(vp)                ((vp)->header->diskstuff.id)
706 #define V_name(vp)              ((vp)->header->diskstuff.name)
707 #define V_inUse(vp)             ((vp)->header->diskstuff.inUse)
708 #define V_inService(vp)         ((vp)->header->diskstuff.inService)
709 #define V_blessed(vp)           ((vp)->header->diskstuff.blessed)
710 #define V_needsSalvaged(vp)     ((vp)->header->diskstuff.needsSalvaged)
711 #define V_uniquifier(vp)        ((vp)->header->diskstuff.uniquifier)
712 #define V_type(vp)              ((vp)->header->diskstuff.type)
713 #define V_parentId(vp)          ((vp)->header->diskstuff.parentId)
714 #define V_cloneId(vp)           ((vp)->header->diskstuff.cloneId)
715 #define V_backupId(vp)          ((vp)->header->diskstuff.backupId)
716 #define V_restoredFromId(vp)    ((vp)->header->diskstuff.restoredFromId)
717 #define V_needsCallback(vp)     ((vp)->header->diskstuff.needsCallback)
718 #define V_destroyMe(vp)         ((vp)->header->diskstuff.destroyMe)
719 #define V_dontSalvage(vp)       ((vp)->header->diskstuff.dontSalvage)
720 #define V_maxquota(vp)          ((vp)->header->diskstuff.maxquota)
721 #define V_minquota(vp)          ((vp)->header->diskstuff.minquota)
722 #define V_maxfiles(vp)          ((vp)->header->diskstuff.maxfiles)
723 #define V_accountNumber(vp)     ((vp)->header->diskstuff.accountNumber)
724 #define V_owner(vp)             ((vp)->header->diskstuff.owner)
725 #define V_filecount(vp)         ((vp)->header->diskstuff.filecount)
726 #define V_diskused(vp)          ((vp)->header->diskstuff.diskused)
727 #define V_dayUse(vp)            ((vp)->header->diskstuff.dayUse)
728 #define V_weekUse(vp)           ((vp)->header->diskstuff.weekUse)
729 #define V_dayUseDate(vp)        ((vp)->header->diskstuff.dayUseDate)
730 #define V_creationDate(vp)      ((vp)->header->diskstuff.creationDate)
731 #define V_accessDate(vp)        ((vp)->header->diskstuff.accessDate)
732 #define V_updateDate(vp)        ((vp)->header->diskstuff.updateDate)
733 #define V_expirationDate(vp)    ((vp)->header->diskstuff.expirationDate)
734 #define V_backupDate(vp)        ((vp)->header->diskstuff.backupDate)
735 #define V_copyDate(vp)          ((vp)->header->diskstuff.copyDate)
736 #define V_offlineMessage(vp)    ((vp)->header->diskstuff.offlineMessage)
737 #define V_disk(vp)              ((vp)->header->diskstuff)
738 #define V_motd(vp)              ((vp)->header->diskstuff.motd)
739 #if OPENAFS_VOL_STATS
740 #define V_stat_initialized(vp)  ((vp)->header->diskstuff.stat_initialized)
741 #define V_stat_area(vp)         (((vp)->header->diskstuff.stat_reads))
742 #define V_stat_reads(vp, idx)   (((vp)->header->diskstuff.stat_reads)[idx])
743 #define V_stat_writes(vp, idx)  (((vp)->header->diskstuff.stat_writes)[idx])
744 #define V_stat_fileSameAuthor(vp, idx) (((vp)->header->diskstuff.stat_fileSameAuthor)[idx])
745 #define V_stat_fileDiffAuthor(vp, idx) (((vp)->header->diskstuff.stat_fileDiffAuthor)[idx])
746 #define V_stat_dirSameAuthor(vp, idx)  (((vp)->header->diskstuff.stat_dirSameAuthor)[idx])
747 #define V_stat_dirDiffAuthor(vp, idx)  (((vp)->header->diskstuff.stat_dirDiffAuthor)[idx])
748 #endif /* OPENAFS_VOL_STATS */
749 #define V_volUpCounter(vp)              ((vp)->header->diskstuff.volUpdateCounter)
750
751 /* File offset computations.  The offset values in the volume header are
752    computed with these macros -- when the file is written only!! */
753 #define VOLUME_MOUNT_TABLE_OFFSET(Volume)       (sizeof (VolumeDiskData))
754 #define VOLUME_BITMAP_OFFSET(Volume)    \
755         (sizeof (VolumeDiskData) + (Volume)->disk.mountTableSize)
756
757
758 extern char *VSalvageMessage;   /* Canonical message when a volume is forced
759                                  * offline */
760 extern Volume *VGetVolume(Error * ec, Error * client_ec, VolId volumeId);
761 extern Volume *VGetVolume_r(Error * ec, VolId volumeId);
762 extern void VPutVolume(Volume *);
763 extern void VPutVolume_r(Volume *);
764 extern void VOffline(Volume * vp, char *message);
765 extern void VOffline_r(Volume * vp, char *message);
766 extern int VConnectFS(void);
767 extern int VConnectFS_r(void);
768 extern void VDisconnectFS(void);
769 extern void VDisconnectFS_r(void);
770 extern int VChildProcReconnectFS(void);
771 extern Volume *VAttachVolume(Error * ec, VolumeId volumeId, int mode);
772 extern Volume *VAttachVolume_r(Error * ec, VolumeId volumeId, int mode);
773 extern Volume *VCreateVolume(Error * ec, char *partname, VolId volumeId,
774                              VolId parentId);
775 extern Volume *VCreateVolume_r(Error * ec, char *partname, VolId volumeId,
776                                VolId parentId);
777 extern VnodeId VAllocBitmapEntry(Error * ec, Volume * vp,
778                                  struct vnodeIndex *index);
779 extern VnodeId VAllocBitmapEntry_r(Error * ec, Volume * vp,
780                                    struct vnodeIndex *index, int flags);
781 extern void VFreeBitMapEntry(Error * ec, register struct vnodeIndex *index,
782                              unsigned bitNumber);
783 extern void VFreeBitMapEntry_r(Error * ec, register struct vnodeIndex *index,
784                                unsigned bitNumber);
785 extern int VolumeNumber(char *name);
786 extern char *VolumeExternalName(VolumeId volumeId);
787 extern int VolumeExternalName_r(VolumeId volumeId, char *name, size_t len);
788 extern Volume *VAttachVolumeByName(Error * ec, char *partition, char *name,
789                                    int mode);
790 extern Volume *VAttachVolumeByName_r(Error * ec, char *partition, char *name,
791                                      int mode);
792 extern void VShutdown(void);
793 extern void VSetTranquil(void);
794 extern void VUpdateVolume(Error * ec, Volume * vp);
795 extern void VUpdateVolume_r(Error * ec, Volume * vp, int flags);
796 extern void VAddToVolumeUpdateList(Error * ec, Volume * vp);
797 extern void VAddToVolumeUpdateList_r(Error * ec, Volume * vp);
798 extern void VDetachVolume(Error * ec, Volume * vp);
799 extern void VDetachVolume_r(Error * ec, Volume * vp);
800 extern void VForceOffline(Volume * vp);
801 extern void VForceOffline_r(Volume * vp, int flags);
802 extern void VBumpVolumeUsage(register Volume * vp);
803 extern void VBumpVolumeUsage_r(register Volume * vp);
804 extern void VSetDiskUsage(void);
805 extern void VPrintCacheStats(void);
806 extern void VReleaseVnodeFiles_r(Volume * vp);
807 extern void VCloseVnodeFiles_r(Volume * vp);
808 extern struct DiskPartition64 *VGetPartition(char *name, int abortp);
809 extern struct DiskPartition64 *VGetPartition_r(char *name, int abortp);
810 extern void VOptDefaults(ProgramType pt, VolumePackageOptions * opts);
811 extern int VInitVolumePackage2(ProgramType pt, VolumePackageOptions * opts);
812 extern int VInitAttachVolumes(ProgramType pt);
813 extern void DiskToVolumeHeader(VolumeHeader_t * h, VolumeDiskHeader_t * dh);
814 extern void VolumeHeaderToDisk(VolumeDiskHeader_t * dh, VolumeHeader_t * h);
815 extern void AssignVolumeName(VolumeDiskData * vol, char *name, char *ext);
816 extern void VTakeOffline_r(register Volume * vp);
817 extern void VTakeOffline(register Volume * vp);
818 extern Volume * VLookupVolume_r(Error * ec, VolId volumeId, Volume * hint);
819 extern void VGetVolumePath(Error * ec, VolId volumeId, char **partitionp,
820                            char **namep);
821 extern char *vol_DevName(dev_t adev, char *wpath);
822
823 struct VLockFile;
824 extern void VLockFileInit(struct VLockFile *lf, const char *path);
825 extern void VLockFileReinit(struct VLockFile *lf);
826 extern int VLockFileLock(struct VLockFile *lf, afs_uint32 offset,
827                          int locktype, int nonblock);
828 extern void VLockFileUnlock(struct VLockFile *lf, afs_uint32 offset);
829
830 #ifdef AFS_DEMAND_ATTACH_FS
831 extern Volume *VPreAttachVolumeByName(Error * ec, char *partition, char *name);
832 extern Volume *VPreAttachVolumeByName_r(Error * ec, char *partition, char *name);
833 extern Volume *VPreAttachVolumeById_r(Error * ec, char * partition, 
834                                       VolId volumeId);
835 extern Volume *VPreAttachVolumeByVp_r(Error * ec, struct DiskPartition64 * partp, 
836                                       Volume * vp, VolId volume_id);
837 extern Volume *VGetVolumeByVp_r(Error * ec, Volume * vp);
838 extern int VShutdownByPartition_r(struct DiskPartition64 * dp);
839 extern int VShutdownVolume_r(Volume * vp);
840 extern int VConnectSALV(void);
841 extern int VConnectSALV_r(void);
842 extern int VReconnectSALV(void);
843 extern int VReconnectSALV_r(void);
844 extern int VDisconnectSALV(void);
845 extern int VDisconnectSALV_r(void);
846 extern void VPrintExtendedCacheStats(int flags);
847 extern void VPrintExtendedCacheStats_r(int flags);
848 extern void VLRU_SetOptions(int option, afs_uint32 val);
849 extern int VSetVolHashSize(int logsize);
850 extern int VRequestSalvage_r(Error * ec, Volume * vp, int reason, int flags);
851 extern int VUpdateSalvagePriority_r(Volume * vp);
852 extern int VRegisterVolOp_r(Volume * vp, FSSYNC_VolOp_info * vopinfo);
853 extern int VDeregisterVolOp_r(Volume * vp);
854 extern void VCancelReservation_r(Volume * vp);
855 extern int VChildProcReconnectFS_r(void);
856 extern void VOfflineForVolOp_r(Error *ec, Volume *vp, char *message);
857
858 struct VDiskLock;
859 extern void VDiskLockInit(struct VDiskLock *dl, struct VLockFile *lf,
860                           afs_uint32 offset);
861 extern int VGetDiskLock(struct VDiskLock *dl, int locktype, int nonblock);
862 extern void VReleaseDiskLock(struct VDiskLock *dl, int locktype);
863 #endif /* AFS_DEMAND_ATTACH_FS */
864 extern int VVolOpLeaveOnline_r(Volume * vp, FSSYNC_VolOp_info * vopinfo);
865 extern int VVolOpLeaveOnlineNoHeader_r(Volume * vp, FSSYNC_VolOp_info * vopinfo);
866 extern int VVolOpSetVBusy_r(Volume * vp, FSSYNC_VolOp_info * vopinfo);
867
868 extern void VPurgeVolume(Error * ec, Volume * vp);
869
870 extern afs_int32 VCanScheduleSalvage(void);
871 extern afs_int32 VCanUseFSSYNC(void);
872 extern afs_int32 VCanUseSALVSYNC(void);
873 extern afs_int32 VReadVolumeDiskHeader(VolumeId volid,
874                                        struct DiskPartition64 * dp,
875                                        VolumeDiskHeader_t * hdr);
876 extern afs_int32 VWriteVolumeDiskHeader(VolumeDiskHeader_t * hdr,
877                                         struct DiskPartition64 * dp);
878 extern afs_int32 VCreateVolumeDiskHeader(VolumeDiskHeader_t * hdr,
879                                          struct DiskPartition64 * dp);
880 extern afs_int32 VDestroyVolumeDiskHeader(struct DiskPartition64 * dp,
881                                           VolumeId volid, VolumeId parent);
882
883 /**
884  * VWalkVolumeHeaders header callback.
885  *
886  * @param[in] dp   disk partition
887  * @param[in] name full path to the .vol header file
888  * @param[in] hdr  the header data that was read from the .vol header
889  * @param[in] last 1 if this is the last attempt to read the vol header, 0
890  *                 otherwise. DAFS VWalkVolumeHeaders will retry reading the
891  *                 header once, if a non-fatal error occurs when reading the
892  *                 header, or if this function returns a positive error code.
893  *                 So, if there is a problem, this function will be called
894  *                 first with last=0, then with last=1, then the error function
895  *                 callback will be called. For non-DAFS, this is always 1.
896  * @param[in] rock the rock passed to VWalkVolumeHeaders
897  *
898  * @return operation status
899  *  @retval 0 success
900  *  @retval negative a fatal error that should stop the walk immediately
901  *  @retval positive an error with the volume header was encountered; the walk
902  *          should continue, but the error function should be called on this
903  *          header
904  *
905  * @see VWalkVolumeHeaders
906  */
907 typedef int (*VWalkVolFunc)(struct DiskPartition64 *dp, const char *name,
908                             struct VolumeDiskHeader *hdr, int last,
909                             void *rock);
910 /**
911  * VWalkVolumeHeaders error callback.
912  *
913  * This is called from VWalkVolumeHeaders when an invalid or otherwise
914  * problematic volume header is encountered. It is typically implemented as a
915  * wrapper to unlink the .vol file.
916  *
917  * @param[in] dp   disk partition
918  * @param[in] name full path to the .vol header file
919  * @param[in] hdr  header read in from the .vol file, or NULL if it could not
920  *                 be read
921  * @param[in] rock rock passed to VWalkVolumeHeaders
922  *
923  * @see VWalkVolumeHeaders
924  */
925 typedef void (*VWalkErrFunc)(struct DiskPartition64 *dp, const char *name,
926                              struct VolumeDiskHeader *hdr, void *rock);
927 extern int VWalkVolumeHeaders(struct DiskPartition64 *dp, const char *partpath,
928                               VWalkVolFunc volfunc, VWalkErrFunc errfunc,
929                               void *rock);
930
931 /* Naive formula relating number of file size to number of 1K blocks in file */
932 /* Note:  we charge 1 block for 0 length files so the user can't store
933    an inifite number of them; for most files, we give him the inode, vnode,
934    and indirect block overhead, for FREE! */
935 #define nBlocks(bytes) ((afs_sfsize_t)((bytes) == 0? 1: (((afs_sfsize_t)(bytes))+1023)/1024))
936
937 /* Client process id -- file server sends a Check volumes signal back to the client at this pid */
938 #define CLIENTPID       "/vice/vol/clientpid"
939
940 /* Modes of attachment, for VAttachVolume[ByName] to convey to the file server */
941 #define V_READONLY 1            /* Absolutely no updates will be done to the volume */
942 #define V_CLONE    2            /* Cloning the volume:  if it is read/write, then directory
943                                  * version numbers will change.  Header will be updated.  If
944                                  * the volume is read-only, the file server may continue to
945                                  * server it; it may also continue to server it in read/write
946                                  * mode if the writes are deferred */
947 #define V_VOLUPD   3            /* General update or volume purge is possible.  Volume must
948                                  * go offline */
949 #define V_DUMP     4            /* A dump of the volume is requested; the volume can be served
950                                  * read-only during this time */
951 #define V_SECRETLY 5            /* Secret attach of the volume.  This is used to attach a volume
952                                  * which the file server doesn't know about--and which it shouldn't
953                                  * know about yet, since the volume has just been created and
954                                  * is somewhat bogus.  Required to make sure that a file server
955                                  * never knows about more than one copy of the same volume--when
956                                  * a volume is moved from one partition to another on a single
957                                  * server */
958 #define V_PEEK     6            /* "Peek" at the volume without telling the fileserver.  This is
959                                  * similar to V_SECRETLY, but read-only.  It is used in cases where
960                                  * not impacting fileserver performance is more important than
961                                  * getting the most recent data. */
962
963
964
965 /* VUpdateVolume_r flags */
966 #define VOL_UPDATE_WAIT          0x1  /* for demand attach, wait for other exclusive ops to end */
967 #define VOL_UPDATE_NOFORCEOFF    0x2  /* don't force offline on failure. this is to prevent
968                                        * infinite recursion between vupdate and vforceoff */
969
970 /* VForceOffline_r flags */
971 #define VOL_FORCEOFF_NOUPDATE    0x1  /* don't force update on forceoff. this is to prevent
972                                        * infinite recursion between vupdate and vforceoff */
973
974 /* VSyncVolume_r flags */
975 #define VOL_SYNC_WAIT            0x1  /* for demand attach, wait for other exclusive ops to end */
976
977 /* VAllocBitmapEntry_r flags */
978 #define VOL_ALLOC_BITMAP_WAIT    0x1  /* for demand attach, wait for other exclusive ops to end */
979
980 /* VRequestSalvage_r flags */
981 #define VOL_SALVAGE_INVALIDATE_HEADER 0x1 /* for demand attach fs, invalidate volume header cache */
982
983
984 #if     defined(NEARINODE_HINT)
985 #define V_pref(vp,nearInode)  nearInodeHash(V_id(vp),(nearInode)); (nearInode) %= V_partition(vp)->f_files
986 #else
987 #define V_pref(vp,nearInode)   nearInode = 0
988 #endif /* NEARINODE_HINT */
989
990 hdr_static_inline(unsigned int)
991 afs_printable_VolumeId_u(VolumeId d) { return (unsigned int) d; }
992
993 hdr_static_inline(unsigned int)
994 afs_printable_VnodeId_u(VnodeId d) { return (unsigned int) d; }
995
996 #endif /* __volume_h */