revert-cache-size-limit-upping-20050728
[openafs.git] / src / afs / afs.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
10 #ifndef _AFS_H_
11 #define _AFS_H_
12 /*
13  * AFS system call opcodes
14  */
15 #ifdef KDUMP_KERNEL
16 #include <afs/afs_args.h>
17 #else
18 #include "afs/afs_args.h"
19 #endif
20
21
22 /* Upper bound on number of iovecs out uio routines will deal with. */
23 #define AFS_MAXIOVCNT       16
24
25
26 extern int afs_shuttingdown;
27
28 /*
29  * Macros to uniquely identify the AFS vfs struct
30  */
31 #define AFS_VFSMAGIC            0x1234
32 #if defined(AFS_SUN5_ENV) || defined(AFS_HPUX90_ENV) || defined(AFS_LINUX20_ENV)
33 #define AFS_VFSFSID             99
34 #else
35 #if defined(AFS_SGI_ENV)
36 #define AFS_VFSFSID             afs_fstype
37 #else
38 #define AFS_VFSFSID             AFS_MOUNT_AFS
39 #endif
40 #endif
41
42 /* Moved from VNOPS/afs_vnop_flocks so can be used in prototypes */
43 #if     defined(AFS_HPUX102_ENV)
44 #define AFS_FLOCK       k_flock
45 #else
46 #if     defined(AFS_SUN56_ENV) || (defined(AFS_LINUX24_ENV) && !(defined(AFS_LINUX26_ENV) && defined(AFS_LINUX_64BIT_KERNEL)))
47 #define AFS_FLOCK       flock64
48 #else
49 #define AFS_FLOCK       flock
50 #endif /* AFS_SUN65_ENV */
51 #endif /* AFS_HPUX102_ENV */
52
53 /* The following are various levels of afs debugging */
54 #define AFSDEB_GENERAL          1       /* Standard debugging */
55 #define AFSDEB_NETWORK          2       /* low level afs networking */
56 #define AFSDEB_RX               4       /* RX debugging */
57 #define AFSDEB_VNLAYER          8       /* interface layer to AFS (aixops, gfsops, etc) */
58
59 /* generic undefined vice id */
60 #define UNDEFVID            (-1)
61
62 /* The basic defines for the Andrew file system
63     better keep things powers of two so "& (foo-1)" hack works for masking bits */
64 #define MAXHOSTS        13      /* max hosts per single volume */
65 #define OMAXHOSTS        8      /* backwards compatibility */
66 #define MAXCELLHOSTS     8      /* max vldb servers per cell */
67 #define NBRS            15      /* max number of queued daemon requests */
68 #define NUSERS          16      /* hash table size for unixuser table */
69 #define NSERVERS        16      /* hash table size for server table */
70 #define NVOLS           64      /* hash table size for volume table */
71 #define NFENTRIES       256     /* hash table size for disk volume table */
72 #define VCSIZE         1024     /* stat cache hash table size */
73 #define DCSIZE          512     /* disk cache hash table size */
74 #define CBRSIZE         512     /* call back returns hash table size */
75 #define PIGGYSIZE       1350    /* max piggyback size */
76 #define MAXVOLS         128     /* max vols we can store */
77 #define MAXSYSNAME      128     /* max sysname (i.e. @sys) size */
78 #define MAXNUMSYSNAMES  16      /* max that current constants allow */
79 #define NOTOKTIMEOUT    (2*3600)        /* time after which to timeout conns sans tokens */
80 #define NOPAG           0xffffffff
81 #define AFS_NCBRS       300     /* max # of call back return entries */
82 #define AFS_MAXCBRSCALL 16      /* max to return in a given call */
83 #define AFS_SALLOC_LOW_WATER    250     /* Min free blocks before allocating more */
84 #define AFS_LRALLOCSIZ  4096    /* "Large" allocated size */
85 #define VCACHE_FREE     5
86 #define AFS_NRXPACKETS  80
87 #define AFS_RXDEADTIME  50
88 #define AFS_HARDDEADTIME        120
89
90 extern afs_int32 afs_rx_deadtime;
91 extern afs_int32 afs_rx_harddead;
92
93 struct sysname_info {
94     char *name;
95     short offset;
96     char index, allocked;
97 };
98
99 /* flags to use with AFSOP_CACHEINIT */
100 #define AFSCALL_INIT_MEMCACHE        0x1        /* use a memory-based cache */
101
102 /* below here used only for kernel procedures */
103 #ifdef KERNEL
104 /* Store synchrony flags - SYNC means that data should be forced to server's
105  * disk immediately upon completion. */
106 #define AFS_ASYNC       0
107 #define AFS_SYNC        1
108 #define AFS_VMSYNC_INVAL 2      /* sync and invalidate pages */
109 #define AFS_LASTSTORE   4
110
111
112 /* background request structure */
113 #define BPARMS          4
114
115 #define BOP_NOOP        0       /* leave 0 unused */
116 #define BOP_FETCH       1       /* parm1 is chunk to get */
117 #define BOP_STORE       2       /* parm1 is chunk to store */
118 #define BOP_PATH        3       /* parm1 is path, parm2 is chunk to fetch */
119
120 #define B_DONTWAIT      1       /* On failure return; don't wait */
121
122 /* protocol is: refCount is incremented by user to take block out of free pool.
123     Next, BSTARTED is set when daemon finds request.  This prevents
124     other daemons from picking up the same request.  Finally, when
125     request is done, refCount is zeroed.  BDONE and BWAIT are used by
126     dudes waiting for operation to proceed to a certain point before returning.
127 */
128 #define BSTARTED        1       /* request picked up by a daemon */
129 #define BUVALID         2       /* code is valid (store) */
130 #define BUWAIT          4       /* someone is waiting for BUVALID */
131 struct brequest {
132     struct vcache *vc;          /* vnode to use, with vrefcount bumped */
133     struct AFS_UCRED *cred;     /* credentials to use for operation */
134     afs_size_t size_parm[BPARMS];       /* random parameters */
135     void *ptr_parm[BPARMS];     /* pointer parameters */
136     afs_int32 code;             /* return code */
137     short refCount;             /* use counter for this structure */
138     char opcode;                /* what to do (store, fetch, etc) */
139     char flags;                 /* free, etc */
140     afs_int32 ts;               /* counter "timestamp" */
141 };
142
143 struct SecretToken {
144     char data[56];
145 };
146
147 struct ClearToken {
148     afs_int32 AuthHandle;
149     char HandShakeKey[8];
150     afs_int32 ViceId;
151     afs_int32 BeginTimestamp;
152     afs_int32 EndTimestamp;
153 };
154
155 struct VenusFid {
156     afs_int32 Cell;             /* better sun packing if at end of structure */
157     struct AFSFid Fid;
158 };
159
160 /* Temporary struct to be passed between afs_fid and afs_vget; in SunOS4.x we can only pass a maximum of 10 bytes for a handle (we ideally need 16!) */
161 struct SmallFid {
162     afs_int32 Volume;
163     afs_int32 CellAndUnique;
164     u_short Vnode;
165 };
166 /* The actual number of bytes in the SmallFid, not the sizeof struct. */
167 #define SIZEOF_SMALLFID 10
168
169
170 /*
171   * Queues implemented with both pointers and short offsets into a disk file.
172   */
173 struct afs_q {
174     struct afs_q *next;
175     struct afs_q *prev;
176 };
177
178 struct vrequest {
179     afs_int32 uid;              /* user id making the request */
180     afs_int32 busyCount;        /* how many busies we've seen so far */
181     afs_int32 flags;            /* things like O_SYNC, O_NONBLOCK go here */
182     char initd;                 /* if non-zero, non-uid fields meaningful */
183     char accessError;           /* flags for overriding error return code */
184     char volumeError;           /* encountered a missing or busy volume */
185     char networkError;          /* encountered network problems */
186     char permWriteError;        /* fileserver returns permenent error. */
187 };
188 #define VOLMISSING 1
189 #define VOLBUSY 2
190
191 /* structure linked off of a server to keep track of queued returned
192  * callbacks.  Sent asynchronously when we run a little low on free dudes.
193  */
194 struct afs_cbr {
195     struct afs_cbr **pprev;
196     struct afs_cbr *next;
197
198     struct afs_cbr **hash_pprev;
199     struct afs_cbr *hash_next;
200
201     struct AFSFid fid;
202 };
203
204 /* cellinfo file magic number */
205 #define AFS_CELLINFO_MAGIC      0xf32817cd
206
207 /* cell flags */
208 #define CNoSUID                 0x02    /* disable suid bit for this cell */
209 #define CLinkedCell4            0x04    /* reserved for ADDCELL2 pioctl */
210 #define CNoAFSDB                0x08    /* never bother trying AFSDB */
211 #define CHasVolRef              0x10    /* volumes were referenced */
212 #define CLinkedCell             0x20    /* has a linked cell in lcellp */
213
214 struct cell {
215     struct afs_q lruq;          /* lru q next and prev */
216     char *cellName;             /* char string name of cell */
217     afs_int32 cellIndex;        /* sequence number */
218     afs_int32 cellNum;          /* semi-permanent cell number */
219     struct server *cellHosts[MAXCELLHOSTS];     /* volume *location* hosts */
220     struct cell *lcellp;        /* Associated linked cell */
221     u_short fsport;             /* file server port */
222     u_short vlport;             /* volume server port */
223     short states;               /* state flags */
224     time_t timeout;             /* data expire time, if non-zero */
225     struct cell_name *cnamep;   /* pointer to our cell_name */
226     afs_rwlock_t lock;          /* protects cell data */
227 };
228
229 struct cell_name {
230     struct cell_name *next;
231     afs_int32 cellnum;
232     char *cellname;
233     char used;
234 };
235
236 struct cell_alias {
237     struct cell_alias *next;
238     afs_int32 index;
239     char *alias;
240     char *cell;
241 };
242
243 #define afs_PutCell(cellp, locktype)
244
245 /* the unixuser flag bit definitions */
246 #define UHasTokens      1       /* are the st and ct fields valid (ever set)? */
247 #define UTokensBad      2       /* are tokens bad? */
248 #define UPrimary        4       /* on iff primary identity */
249 #define UNeedsReset     8       /* needs afs_ResetAccessCache call done */
250 #define UPAGCounted    16       /* entry seen during PAG search (for stats) */
251 /* A flag used by afs_GCPAGs to keep track of
252  * which entries in afs_users need to be deleted.
253  * The lifetime of its presence in the table is the
254  * lifetime of the afs_GCPAGs function.
255  */
256 #define TMP_UPAGNotReferenced   128
257
258 /* values for afs_gcpags */
259 enum { AFS_GCPAGS_NOTCOMPILED = 0, AFS_GCPAGS_OK =
260         1, AFS_GCPAGS_USERDISABLED, AFS_GCPAGS_EPROC0, AFS_GCPAGS_EPROCN,
261     AFS_GCPAGS_EEQPID, AFS_GCPAGS_EINEXACT, AFS_GCPAGS_EPROCEND,
262     AFS_GCPAGS_EPROCWALK, AFS_GCPAGS_ECREDWALK, AFS_GCPAGS_EPIDCHECK,
263     AFS_GCPAGS_ENICECHECK
264 };
265
266 extern afs_int32 afs_gcpags;
267 extern afs_int32 afs_gcpags_procsize;
268 extern afs_int32 afs_bkvolpref;
269
270 struct unixuser {
271     struct unixuser *next;      /* next hash pointer */
272     afs_int32 uid;              /* search based on uid and cell */
273     afs_int32 cell;
274     afs_int32 vid;              /* corresponding vice id in specified cell */
275     short refCount;             /* reference count for allocation */
276     char states;                /* flag info */
277     afs_int32 tokenTime;        /* last time tokens were set, used for timing out conn data */
278     afs_int32 stLen;            /* ticket length (if kerberos, includes kvno at head) */
279     char *stp;                  /* pointer to ticket itself */
280     struct ClearToken ct;
281     struct afs_exporter *exporter;      /* more info about the exporter for the remote user */
282 };
283
284 struct conn {
285     /* Per-connection block. */
286     struct conn *next;          /* Next dude same server. */
287     struct unixuser *user;      /* user validated with respect to. */
288     struct rx_connection *id;   /* RPC connid. */
289     struct srvAddr *srvr;       /* server associated with this conn */
290     short refCount;             /* reference count for allocation */
291     unsigned short port;        /* port associated with this connection */
292     char forceConnectFS;        /* Should we try again with these tokens? */
293 };
294
295
296 #define SQNULL -1
297
298 /* Fid comparison routines */
299 #define FidCmp(a,b) ((a)->Fid.Unique != (b)->Fid.Unique \
300     || (a)->Fid.Vnode != (b)->Fid.Vnode \
301     || (a)->Fid.Volume != (b)->Fid.Volume \
302     || (a)->Cell != (b)->Cell)
303
304 #define FidMatches(afid,tvc) ((tvc)->fid.Fid.Vnode == (afid)->Fid.Vnode && \
305         (tvc)->fid.Fid.Volume == (afid)->Fid.Volume && \
306         (tvc)->fid.Cell == (afid)->Cell && \
307         ( (tvc)->fid.Fid.Unique == (afid)->Fid.Unique || \
308          (!(afid)->Fid.Unique && ((tvc)->states & CUnique))))
309
310
311 /*
312   * Operations on circular queues implemented with pointers.  Note: these queue
313   * objects are always located at the beginning of the structures they are linking.
314   */
315 #define QInit(q)    ((q)->prev = (q)->next = (q))
316 #define QAdd(q,e)   ((e)->next = (q)->next, (e)->prev = (q), \
317                         (q)->next->prev = (e), (q)->next = (e))
318 #define QRemove(e)  ((e)->next->prev = (e)->prev, (e)->prev->next = (e)->next)
319 #define QNext(e)    ((e)->next)
320 #define QPrev(e)    ((e)->prev)
321 #define QEmpty(q)   ((q)->prev == (q))
322 /* this one takes q1 and sticks it on the end of q2 - that is, the other end, not the end
323  * that things are added onto.  q1 shouldn't be empty, it's silly */
324 #define QCat(q1,q2) ((q2)->prev->next = (q1)->next, (q1)->next->prev=(q2)->prev, (q1)->prev->next=(q2), (q2)->prev=(q1)->prev, (q1)->prev=(q1)->next=(q1))
325 /*
326  * Do lots of address arithmetic to go from vlruq to the base of the vcache
327  * structure.  Don't move struct vnode, since we think of a struct vcache as
328  * a specialization of a struct vnode
329  */
330 #define QTOV(e)     ((struct vcache *)(((char *) (e)) - (((char *)(&(((struct vcache *)(e))->vlruq))) - ((char *)(e)))))
331 #define QTOC(e)     ((struct cell *)((char *) (e)))
332 #define QTOVH(e)   ((struct vcache *)(((char *) (e)) - (((char *)(&(((struct vcache *)(e))->vhashq))) - ((char *)(e)))))
333
334 #define SRVADDR_MH      1
335 #define SRVADDR_ISDOWN  0x20    /* same as SRVR_ISDOWN */
336 #define  SRVADDR_NOUSE    0x40  /* Don't use this srvAddr */
337 struct srvAddr {
338     struct srvAddr *next_bkt;   /* next item in hash bucket */
339     struct srvAddr *next_sa;    /* another interface on same host */
340     struct server *server;      /* back to parent */
341     struct conn *conns;         /* All user connections to this server */
342     afs_int32 sa_ip;            /* Host addr in network byte order */
343     u_short sa_iprank;          /* indiv ip address priority */
344     u_short sa_portal;          /* port addr in network byte order */
345     u_char sa_flags;
346 };
347
348 /*
349  * Values used in the flags field of the server structure below.
350  *
351  *      AFS_SERVER_FLAG_ACTIVATED Has the server ever had a user connection
352  *                                associated with it?
353  */
354 #define AFS_SERVER_FLAG_ACTIVATED       0x01
355 #define SNO_LHOSTS                      0x04
356 #define SYES_LHOSTS                     0x08
357 #define SVLSRV_UUID                     0x10
358 #define SRVR_ISDOWN                     0x20
359 #define SRVR_MULTIHOMED                 0x40
360 #define SRVR_ISGONE                     0x80
361 #define SNO_INLINEBULK                  0x100
362 #define SNO_64BIT                       0x200
363
364 #define afs_serverSetNo64Bit(s) ((s)->srvr->server->flags |= SNO_64BIT)
365 #define afs_serverHasNo64Bit(s) ((s)->srvr->server->flags & SNO_64BIT)
366
367 struct server {
368     union {
369         struct {
370             afsUUID suuid;
371             afs_int32 addr_uniquifier;
372             afs_int32 spares[2];
373         } _srvUuid;
374         struct {
375             struct srvAddr haddr;
376         } _srvId;
377     } _suid;
378 #define sr_uuid         _suid._srvUuid.suuid
379 #define sr_addr_uniquifier      _suid._srvUuid.addr_uniquifier
380 #define sr_host         _suid._srvId.haddr.ip
381 #define sr_portal       _suid._srvId.haddr.portal
382 #define sr_rank         _suid._srvId.haddr.ip_rank
383 #define sr_flags        _suid._srvId.haddr.flags
384 #define sr_conns        _suid._srvId.haddr.conns
385     struct server *next;        /* Ptr to next server in hash chain */
386     struct cell *cell;          /* Cell in which this host resides */
387     struct afs_cbr *cbrs;       /* Return list of callbacks */
388     afs_int32 activationTime;   /* Time when this record was first activated */
389     afs_int32 lastDowntimeStart;        /* Time when last downtime incident began */
390     afs_int32 numDowntimeIncidents;     /* # (completed) downtime incidents */
391     afs_int32 sumOfDowntimes;   /* Total downtime experienced, in seconds */
392     struct srvAddr *addr;
393     afs_uint32 flags;           /* Misc flags */
394 };
395
396 #define afs_PutServer(servp, locktype)
397
398 /* structs for some pioctls  - these are (or should be) 
399  * also in venus.h
400  */
401 struct spref {
402     struct in_addr host;
403     unsigned short rank;
404 };
405
406 struct sprefrequest_33 {
407     unsigned short offset;
408     unsigned short num_servers;
409 };
410
411
412 struct sprefrequest {           /* new struct for 3.4 */
413     unsigned short offset;
414     unsigned short num_servers;
415     unsigned short flags;
416 };
417 #define DBservers 1
418
419 struct sprefinfo {
420     unsigned short next_offset;
421     unsigned short num_servers;
422     struct spref servers[1];    /* we overrun this array intentionally... */
423 };
424
425 struct setspref {
426     unsigned short flags;
427     unsigned short num_servers;
428     struct spref servers[1];    /* we overrun this array intentionally... */
429 };
430 /* struct for GAG pioctl
431  */
432 struct gaginfo {
433     afs_uint32 showflags, logflags, logwritethruflag, spare[3];
434     unsigned char spare2[128];
435 };
436 #define GAGUSER    1
437 #define GAGCONSOLE 2
438 #define logwritethruON  1
439
440 struct rxparams {
441     afs_int32 rx_initReceiveWindow, rx_maxReceiveWindow, rx_initSendWindow,
442         rx_maxSendWindow, rxi_nSendFrags, rxi_nRecvFrags, rxi_OrphanFragSize;
443     afs_int32 rx_maxReceiveSize, rx_MyMaxSendSize;
444     afs_uint32 spare[21];
445 };
446
447 /* struct for checkservers */
448
449 struct chservinfo {
450     int magic;
451     char tbuffer[128];
452     int tsize;
453     afs_int32 tinterval;
454     afs_int32 tflags;
455 };
456
457
458 /* state bits for volume */
459 #define VRO                     1       /* volume is readonly */
460 #define VRecheck                2       /* recheck volume info with server */
461 #define VBackup                 4       /* is this a backup volume? */
462 #define VForeign                8       /* this is a non-afs volume */
463 #define VResort         16      /* server order was rearranged, sort when able */
464 #define VMoreReps       32      /* This volume has more replicas than we are   */
465                              /* keeping track of now -- check with VLDB     */
466
467 enum repstate { not_busy, end_not_busy = 6, rd_busy, rdwr_busy, offline };
468
469 struct volume {
470     /* One structure per volume, describing where the volume is located
471      * and where its mount points are. */
472     struct volume *next;        /* Next volume in hash list. */
473     afs_int32 cell;             /* the cell in which the volume resides */
474     afs_rwlock_t lock;          /* the lock for this structure */
475     afs_int32 volume;           /* This volume's ID number. */
476     char *name;                 /* This volume's name, or 0 if unknown */
477     struct server *serverHost[MAXHOSTS];        /* servers serving this volume */
478     enum repstate status[MAXHOSTS];     /* busy, offline, etc */
479     struct VenusFid dotdot;     /* dir to access as .. */
480     struct VenusFid mtpoint;    /* The mount point for this volume. */
481     afs_int32 rootVnode, rootUnique;    /* Volume's root fid */
482     afs_int32 roVol;
483     afs_int32 backVol;
484     afs_int32 rwVol;            /* For r/o vols, original read/write volume. */
485     afs_int32 accessTime;       /* last time we used it */
486     afs_int32 vtix;             /* volume table index */
487     afs_int32 copyDate;         /* copyDate field, for tracking vol releases */
488     afs_int32 expireTime;       /* for per-volume callbacks... */
489     short refCount;             /* reference count for allocation */
490     char states;                /* here for alignment reasons */
491 };
492
493 #define afs_PutVolume(av, locktype) ((av)->refCount--)
494
495 /* format of an entry in volume info file */
496 struct fvolume {
497     afs_int32 cell;             /* cell for this entry */
498     afs_int32 volume;           /* volume */
499     afs_int32 next;             /* has index */
500     struct VenusFid dotdot;     /* .. value */
501     struct VenusFid mtpoint;    /* mt point's fid */
502     afs_int32 rootVnode, rootUnique;    /* Volume's root fid */
503 };
504
505 struct SimpleLocks {
506     struct SimpleLocks *next;
507     int type;
508     afs_int32 boff, eoff;
509     afs_int32 pid;
510 #if     defined(AFS_AIX32_ENV) || defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
511     afs_int32 sysid;
512 #endif
513 };
514
515 /* vcache state bits */
516 #define CStatd          0x00000001      /* has this file ever been stat'd? */
517 #define CBackup         0x00000002      /* file is on a backup volume */
518 #define CRO             0x00000004      /* is it on a read-only volume */
519 #define CMValid         0x00000008      /* is the mount point info valid? */
520 #define CCore           0x00000010      /* storing a core file, needed since we don't get an open */
521 #define CDirty          0x00000020      /* file has been modified since first open (... O_RDWR) */
522 #define CSafeStore      0x00000040      /* close must wait for store to finish (should be in fd) */
523 #define CMAPPED         0x00000080      /* Mapped files; primarily used by SunOS 4.0.x */
524 #define CNSHARE         0x00000100      /* support O_NSHARE semantics */
525 #define CLied           0x00000200
526 #define CTruth          0x00000400
527 #ifdef  AFS_OSF_ENV
528 #define CWired          0x00000800      /* OSF hack only */
529 #else
530 #ifdef AFS_DARWIN_ENV
531 #define CUBCinit        0x00000800
532 #else
533 #define CWRITE_IGN      0x00000800      /* Next OS hack only */
534 #endif
535 #endif
536 #define CUnique         0x00001000      /* vc's uniquifier - latest unifiquier for fid */
537 #define CForeign        0x00002000      /* this is a non-afs vcache */
538 #define CUnlinked       0x00010000
539 #define CBulkStat       0x00020000      /* loaded by a bulk stat, and not ref'd since */
540 #define CUnlinkedDel    0x00040000
541 #define CVFlushed       0x00080000
542 #define CCore1          0x00100000      /* osf1 core file; not same as CCore above */
543 #define CWritingUFS     0x00200000      /* to detect vm deadlock - used by sgi */
544 #define CCreating       0x00400000      /* avoid needless store after open truncate */
545 #define CPageHog        0x00800000      /* AIX - dumping large cores is a page hog. */
546 #define CDCLock         0x02000000      /* Vnode lock held over call to GetDownD */
547 #define CBulkFetching   0x04000000      /* stats are being fetched by bulk stat */
548 #define CExtendedFile   0x08000000      /* extended file via ftruncate call. */
549
550 /* vcache vstate bits */
551 #define VRevokeWait   0x1
552 #define VPageCleaning 0x2       /* Solaris - Cache Trunc Daemon sez keep out */
553
554 #define CPSIZE      2
555 #if defined(AFS_XBSD_ENV) || defined(AFS_DARWIN_ENV)
556 #define vrefCount   v->v_usecount
557 #else
558 #define vrefCount   v.v_count
559 #endif /* AFS_XBSD_ENV */
560
561 #if defined(AFS_LINUX24_ENV)
562 #define VREFCOUNT(v)            atomic_read(&(AFSTOV(v)->v_count))
563 #define VREFCOUNT_SET(v, c)     atomic_set(&(AFSTOV(v)->v_count), c)
564 #define VREFCOUNT_DEC(v)        atomic_dec(&(AFSTOV(v)->v_count))
565 #define VREFCOUNT_INC(v)        atomic_inc(&(AFSTOV(v)->v_count))
566 #else
567 #define VREFCOUNT(v)            ((v)->vrefCount)
568 #define VREFCOUNT_SET(v, c)     (v)->vrefCount = c;
569 #define VREFCOUNT_DEC(v)        (v)->vrefCount--;
570 #define VREFCOUNT_INC(v)        (v)->vrefCount++;
571 #define d_unhash(d) list_empty(&(d)->d_hash)
572 #define dget_locked(d) dget(d)
573 #endif
574
575 #define AFS_MAXDV   0x7fffffff  /* largest dataversion number */
576 #ifdef AFS_64BIT_CLIENT
577 #define AFS_NOTRUNC 0x7fffffffffffffffLL        /* largest positive int64 number */
578 #else /* AFS_64BIT_CLIENT */
579 #define AFS_NOTRUNC 0x7fffffff  /* largest dataversion number */
580 #endif /* AFS_64BIT_CLIENT */
581
582 extern afs_int32 vmPageHog;     /* counter for # of vnodes which are page hogs. */
583
584 #if defined(AFS_XBSD_ENV) || defined(AFS_DARWIN_ENV) || (defined(AFS_LINUX22_ENV) && !defined(STRUCT_SUPER_HAS_ALLOC_INODE))
585 #define VTOAFS(v) ((struct vcache *)(v)->v_data)
586 #define AFSTOV(vc) ((vc)->v)
587 #else
588 #define VTOAFS(V) ((struct vcache *)(V))
589 #define AFSTOV(V) (&(V)->v)
590 #endif
591
592 /* INVARIANTs: (vlruq.next != NULL) == (vlruq.prev != NULL)
593  *             nextfree => !vlruq.next && ! vlruq.prev
594  * !(avc->nextfree) && !avc->vlruq.next => (FreeVCList == avc->nextfree)
595  */
596 struct vcache {
597 #if defined(AFS_XBSD_ENV) || defined(AFS_DARWIN_ENV) || (defined(AFS_LINUX22_ENV) && !defined(STRUCT_SUPER_HAS_ALLOC_INODE))
598     struct vnode *v;
599 #else
600     struct vnode v;             /* Has reference count in v.v_count */
601 #endif
602     struct afs_q vlruq;         /* lru q next and prev */
603 #if !defined(AFS_LINUX22_ENV)
604     struct vcache *nextfree;    /* next on free list (if free) */
605 #endif
606     struct vcache *hnext;       /* Hash next */
607     struct afs_q vhashq;        /* Hashed per-volume list */
608     struct VenusFid fid;
609     struct mstat {
610         afs_size_t Length;
611         afs_hyper_t DataVersion;
612         afs_uint32 Date;
613         afs_uint32 Owner;
614         afs_uint32 Group;
615         afs_uint16 Mode;        /* XXXX Should be afs_int32 XXXX */
616         afs_uint16 LinkCount;
617         /* vnode type is in v.v_type */
618     } m;
619     afs_rwlock_t lock;          /* The lock on the vcache contents. */
620 #if     defined(AFS_SUN5_ENV)
621     /* Lock used to protect the activeV, multipage, and vstates fields.
622      * Do not try to get the vcache lock when the vlock is held */
623     afs_rwlock_t vlock;
624 #endif                          /* defined(AFS_SUN5_ENV) */
625 #if     defined(AFS_SUN5_ENV)
626     krwlock_t rwlock;
627     struct cred *credp;
628 #endif
629 #ifdef AFS_BOZONLOCK_ENV
630     afs_bozoLock_t pvnLock;     /* see locks.x */
631 #endif
632 #ifdef  AFS_AIX32_ENV
633     afs_lock_t pvmlock;
634     vmhandle_t vmh;
635 #if defined(AFS_AIX51_ENV)
636     vmid_t segid;
637 #else
638     int segid;
639 #endif
640     struct ucred *credp;
641 #endif
642 #ifdef AFS_AIX_ENV
643     int ownslock;               /* pid of owner of excl lock, else 0 - defect 3083 */
644 #endif
645 #ifdef AFS_DARWIN_ENV
646     struct lock__bsd__ rwlock;
647 #endif
648 #ifdef AFS_XBSD_ENV
649     struct lock rwlock;
650 #endif
651     afs_int32 parentVnode;      /* Parent dir, if a file. */
652     afs_int32 parentUnique;
653     struct VenusFid *mvid;      /* Either parent dir (if root) or root (if mt pt) */
654     char *linkData;             /* Link data if a symlink. */
655     afs_hyper_t flushDV;        /* data version last flushed from text */
656     afs_hyper_t mapDV;          /* data version last flushed from map */
657     afs_size_t truncPos;        /* truncate file to this position at next store */
658     struct server *callback;    /* The callback host, if any */
659     afs_uint32 cbExpires;       /* time the callback expires */
660     struct afs_q callsort;      /* queue in expiry order, sort of */
661     struct axscache *Access;    /* a list of cached access bits */
662     afs_int32 anyAccess;        /* System:AnyUser's access to this. */
663     afs_int32 last_looker;      /* pag/uid from last lookup here */
664 #if     defined(AFS_SUN5_ENV)
665     afs_int32 activeV;
666 #endif                          /* defined(AFS_SUN5_ENV) */
667     struct SimpleLocks *slocks;
668     short opens;                /* The numbers of opens, read or write, on this file. */
669     short execsOrWriters;       /* The number of execs (if < 0) or writers (if > 0) of
670                                  * this file. */
671     short flockCount;           /* count of flock readers, or -1 if writer */
672     char mvstat;                /* 0->normal, 1->mt pt, 2->root. */
673     afs_uint32 states;          /* state bits */
674 #if     defined(AFS_SUN5_ENV)
675     afs_uint32 vstates;         /* vstate bits */
676 #endif                          /* defined(AFS_SUN5_ENV) */
677     struct dcache *dchint;
678 #ifdef AFS_LINUX22_ENV
679     u_short mapcnt;             /* Number of mappings of this file. */
680 #endif
681 #if defined(AFS_SGI_ENV)
682     daddr_t lastr;              /* for read-ahead */
683 #ifdef AFS_SGI64_ENV
684     uint64_t vc_rwlockid;       /* kthread owning rwlock */
685 #else
686     short vc_rwlockid;          /* pid of process owning rwlock */
687 #endif
688     short vc_locktrips;         /* # of rwlock reacquisitions */
689     sema_t vc_rwlock;           /* vop_rwlock for afs */
690     pgno_t mapcnt;              /* # of pages mapped */
691     struct cred *cred;          /* last writer's cred */
692 #ifdef AFS_SGI64_ENV
693     struct bhv_desc vc_bhv_desc;        /* vnode's behavior data. */
694 #endif
695 #endif                          /* AFS_SGI_ENV */
696     afs_int32 vc_error;         /* stash write error for this vnode. */
697     int xlatordv;               /* Used by nfs xlator */
698     struct AFS_UCRED *uncred;
699     int asynchrony;             /* num kbytes to store behind */
700 #ifdef AFS_SUN5_ENV
701     short multiPage;            /* count of multi-page getpages in progress */
702 #endif
703 };
704
705 #define DONT_CHECK_MODE_BITS    0
706 #define CHECK_MODE_BITS         1
707 #define CMB_ALLOW_EXEC_AS_READ  2       /* For the NFS xlator */
708
709 #if defined(AFS_SGI_ENV)
710 #define AVCRWLOCK(avc)          (valusema(&(avc)->vc_rwlock) <= 0)
711
712 /* SGI vnode rwlock macros and flags. */
713 #ifndef AFS_SGI62_ENV
714 /* The following are defined here. SGI 6.2 declares them in vnode.h */
715 #define VRWLOCK_READ            0
716 #define VRWLOCK_WRITE           1
717 #define VRWLOCK_WRITE_DIRECT    2
718 #endif
719
720 #ifdef AFS_SGI53_ENV
721 #ifdef AFS_SGI62_ENV
722 #define AFS_RWLOCK_T vrwlock_t
723 #else
724 #define AFS_RWLOCK_T int
725 #endif /* AFS_SGI62_ENV */
726 #ifdef AFS_SGI64_ENV
727 #include <ksys/behavior.h>
728 #define AFS_RWLOCK(V,F) \
729         afs_rwlock(&VTOAFS(V)->vc_bhv_desc, (F));
730 #define AFS_RWUNLOCK(V,F) \
731         afs_rwunlock(&VTOAFS(V)->vc_bhv_desc, (F));
732
733 #else
734 #define AFS_RWLOCK(V,F) afs_rwlock((vnode_t *)(V), (F) )
735 #define AFS_RWUNLOCK(V,F) afs_rwunlock((vnode_t *)(V), (F) )
736 #endif
737 #else /* AFS_SGI53_ENV */
738 #define AFS_RWLOCK(V,F) afs_rwlock((V))
739 #define AFS_RWUNLOCK(V,F) afs_rwunlock((V))
740 #endif /* AFS_SGI53_ENV */
741 #endif /* AFS_SGI_ENV */
742
743 struct vcxstat {
744     struct VenusFid fid;
745     afs_hyper_t DataVersion;
746     afs_rwlock_t lock;
747     afs_int32 parentVnode;
748     afs_int32 parentUnique;
749     afs_hyper_t flushDV;
750     afs_hyper_t mapDV;
751     afs_int32 truncPos;
752     afs_int32 randomUid[CPSIZE];
753     afs_int32 callback;         /* Now a pointer to 'server' struct */
754     afs_int32 cbExpires;
755     afs_int32 randomAccess[CPSIZE];
756     afs_int32 anyAccess;
757     short opens;
758     short execsOrWriters;
759     short flockCount;
760     char mvstat;
761     afs_uint32 states;
762 };
763
764 struct vcxstat2 {
765     afs_int32 callerAccess;
766     afs_int32 cbExpires;
767     afs_int32 anyAccess;
768     char mvstat;
769 };
770
771 struct sbstruct {
772     int sb_thisfile;
773     int sb_default;
774 };
775
776 /* CM inititialization parameters. What CM actually used after calculations
777  * based on passed in arguments.
778  */
779 #define CMI_VERSION 1           /* increment when adding new fields. */
780 struct cm_initparams {
781     int cmi_version;
782     int cmi_nChunkFiles;
783     int cmi_nStatCaches;
784     int cmi_nDataCaches;
785     int cmi_nVolumeCaches;
786     int cmi_firstChunkSize;
787     int cmi_otherChunkSize;
788     int cmi_cacheSize;          /* The original cache size, in 1K blocks. */
789     unsigned cmi_setTime:1;
790     unsigned cmi_memCache:1;
791     int spare[16 - 9];          /* size of struct is 16 * 4 = 64 bytes */
792 };
793
794
795 /*----------------------------------------------------------------------
796  * AFS Data cache definitions
797  *
798  * Each entry describes a Unix file on the local disk that is
799  * is serving as a cached copy of all or part of a Vice file.
800  * Entries live in circular queues for each hash table slot
801  *
802  * Which queue is this thing in?  Good question.
803  * A struct dcache entry is in the freeDSlot queue when not associated with a cache slot (file).
804  * Otherwise, it is in the DLRU queue.  The freeDSlot queue uses the lruq.next field as
805  * its "next" pointer.
806  *
807  * Cache entries in the DLRU queue are either associated with vice files, in which case
808  * they are hashed by afs_dvnextTbl and afs_dcnextTbl pointers, or they are in the freeDCList
809  * and are not associated with any vice file.  This last list uses the afs_dvnextTbl pointer for
810  * its "next" pointer.
811  *----------------------------------------------------------------------*/
812
813 #define NULLIDX     (-1)        /* null index definition */
814 /* struct dcache states bits */
815 #define DRO         1
816 #define DBackup     2
817 #define DRW         4
818 #define DWriting    8           /* file being written (used for cache validation) */
819
820 /* dcache data flags */
821 #define DFEntryMod      0x02    /* has entry itself been modified? */
822 #define DFFetching      0x04    /* file is currently being fetched */
823
824 /* dcache meta flags */
825 #define DFNextStarted   0x01    /* next chunk has been prefetched already */
826 #define DFFetchReq      0x10    /* someone is waiting for DFFetching to go on */
827
828
829 /* flags in afs_indexFlags array */
830 #define IFEverUsed      1       /* index entry has >= 1 byte of data */
831 #define IFFree          2       /* index entry in freeDCList */
832 #define IFDataMod       4       /* file needs to be written out */
833 #define IFFlag          8       /* utility flag */
834 #define IFDirtyPages    16
835 #define IFAnyPages      32
836 #define IFDiscarded     64      /* index entry in discardDCList */
837
838 struct afs_ioctl {
839     char *in;                   /* input buffer */
840     char *out;                  /* output buffer */
841     short in_size;              /* Size of input buffer <= 2K */
842     short out_size;             /* Maximum size of output buffer, <= 2K */
843 };
844
845 /*
846  * This version of afs_ioctl is required to pass in 32 bit user space
847  * pointers into a 64 bit kernel.
848  */
849
850 struct afs_ioctl32 {
851     unsigned int in;
852     unsigned int out;
853     short in_size;
854     short out_size;
855 };
856
857
858 /* CacheItems file has a header of type struct afs_fheader
859  * (keep aligned properly). Since we already have sgi_62 clients running
860  * with a 32 bit inode, a change is required to the header so that
861  * they can distinguish the old 32 bit inode CacheItems file and zap it 
862  * instead of using it.
863  */
864 struct afs_fheader {
865 #define AFS_FHMAGIC         0x7635abaf  /* uses version number */
866     afs_int32 magic;
867 #if defined(AFS_SUN57_64BIT_ENV)
868 #define AFS_CI_VERSION 3
869 #else
870 #define AFS_CI_VERSION 2
871 #endif
872     afs_int32 version;
873     afs_int32 firstCSize;
874     afs_int32 otherCSize;
875 };
876
877 #if defined(AFS_SGI61_ENV) || defined(AFS_SUN57_64BIT_ENV)
878 /* Using ino64_t here so that user level debugging programs compile
879  * the size correctly.
880  */
881 #define afs_inode_t ino64_t
882 #else
883 #if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_S390X_LINUX24_ENV)
884 #define afs_inode_t long
885 #else
886 #if defined(AFS_AIX51_ENV) || defined(AFS_HPUX1123_ENV)
887 #define afs_inode_t ino_t
888 #else
889 #define afs_inode_t afs_int32
890 #endif
891 #endif
892 #endif
893
894 struct buffer {
895   afs_int32 fid;              /* is adc->index, the cache file number */
896   afs_inode_t inode;          /* is adc->f.inode, the inode number of the cac\
897                                  he file */
898   afs_int32 page;
899   afs_int32 accesstime;
900   struct buffer *hashNext;
901   char *data;
902   char lockers;
903   char dirty;
904   char hashIndex;
905 #if AFS_USEBUFFERS
906   struct buf *bufp;
907 #endif
908   afs_rwlock_t lock;          /* the lock for this structure */
909 };
910
911 /* kept on disk and in dcache entries */
912 struct fcache {
913     struct VenusFid fid;        /* Fid for this file */
914     afs_int32 modTime;          /* last time this entry was modified */
915     afs_hyper_t versionNo;      /* Associated data version number */
916     afs_int32 chunk;            /* Relative chunk number */
917     afs_inode_t inode;          /* Unix inode for this chunk */
918     afs_int32 chunkBytes;       /* Num bytes in this chunk */
919     char states;                /* Has this chunk been modified? */
920 };
921
922 /* magic numbers to specify the cache type */
923
924 #define AFS_FCACHE_TYPE_UFS 0x0
925 #define AFS_FCACHE_TYPE_MEM 0x1
926 #define AFS_FCACHE_TYPE_NFS 0x2
927 #define AFS_FCACHE_TYPE_EPI 0x3
928
929 /* kept in memory */
930 struct dcache {
931     struct afs_q lruq;          /* Free queue for in-memory images */
932     struct afs_q dirty;         /* Queue of dirty entries that need written */
933     afs_rwlock_t lock;          /* Protects validPos, some f */
934     afs_rwlock_t tlock;         /* Atomizes updates to refCount */
935     afs_rwlock_t mflock;        /* Atomizes accesses/updates to mflags */
936     afs_size_t validPos;        /* number of valid bytes during fetch */
937     afs_int32 index;            /* The index in the CacheInfo file */
938     short refCount;             /* Associated reference count. */
939     char dflags;                /* Data flags */
940     char mflags;                /* Meta flags */
941     struct fcache f;            /* disk image */
942     afs_int32 bucket;           /* which bucket these dcache entries are in */
943     /*
944      * Locking rules:
945      *
946      * dcache.lock protects the actual contents of the cache file (in
947      * f.inode), subfields of f except those noted below, dflags and
948      * validPos.
949      *
950      * dcache.tlock is used to make atomic updates to refCount.  Zero
951      * refCount dcache entries are protected by afs_xdcache instead of
952      * tlock.
953      *
954      * dcache.mflock is used to access and update mflags.  It cannot be
955      * held without holding the corresponding dcache.lock.  Updating
956      * mflags requires holding dcache.lock(R) and dcache.mflock(W), and
957      * checking for mflags requires dcache.lock(R) and dcache.mflock(R).
958      * Note that dcache.lock(W) gives you the right to update mflags,
959      * as dcache.mflock(W) can only be held with dcache.lock(R).
960      *
961      * dcache.index, dcache.f.fid, dcache.f.chunk and dcache.f.inode are
962      * write-protected by afs_xdcache and read-protected by refCount.
963      * Once an entry is referenced, these values cannot change, and if
964      * it's on the free list (with refCount=0), it can be reused for a
965      * different file/chunk.  These values can only be written while
966      * holding afs_xdcache(W) and allocating this dcache entry (thereby
967      * ensuring noone else has a refCount on it).
968      */
969 };
970
971 /* afs_memcache.c */
972 struct memCacheEntry {
973   int size;                   /* # of valid bytes in this entry */
974   int dataSize;               /* size of allocated data area */
975   afs_lock_t afs_memLock;
976   char *data;                 /* bytes */
977 };
978
979 /* macro to mark a dcache entry as bad */
980 #define ZapDCE(x) \
981     do { \
982         (x)->f.fid.Fid.Unique = 0; \
983         afs_indexUnique[(x)->index] = 0; \
984         (x)->dflags |= DFEntryMod; \
985     } while(0)
986
987 /* FakeOpen and Fake Close used to be real subroutines.  They're only used in
988  * sun_subr and afs_vnodeops, and they're very frequently called, so I made 
989  * them into macros.  They do:
990  * FakeOpen:  fake the file being open for writing.  avc->lock must be held
991  * in write mode.  Having the file open for writing is like having a DFS
992  * write-token: you're known to have the best version of the data around, 
993  * and so the CM won't let it be overwritten by random server info.
994  * FakeClose:  undo the effects of FakeOpen, noting that we want to ensure
995  * that a real close eventually gets done.  We use CCore to achieve this if
996  * we would end up closing the file.  avc->lock must be held in write mode */
997
998 #ifdef AFS_AIX_IAUTH_ENV
999 #define CRKEEP(V, C)  (V)->linkData = (char*)crdup((C))
1000 #else
1001 #define CRKEEP(V, C)  crhold((C)); (V)->linkData = (char*)(C)
1002 #endif
1003
1004 #define afs_FakeOpen(avc) { avc->opens++; avc->execsOrWriters++; }
1005 #define afs_FakeClose(avc, acred) \
1006 { if (avc->execsOrWriters == 1) {  \
1007         /* we're the last writer, just use CCore flag */   \
1008         avc->states |= CCore;   /* causes close to be called later */ \
1009                                                                       \
1010         /* The cred and vnode holds will be released in afs_FlushActiveVcaches */  \
1011         VN_HOLD(AFSTOV(avc));   /* So it won't disappear */           \
1012         CRKEEP(avc, acred); /* Should use a better place for the creds */ \
1013     }                                                                         \
1014     else {                                                                    \
1015         /* we're not the last writer, let the last one do the store-back for us */    \
1016         avc->opens--;                                                         \
1017         avc->execsOrWriters--;                                                \
1018     }                                                                         \
1019 }
1020
1021 #define AFS_ZEROS   64          /* zero buffer */
1022
1023 /*#define afs_DirtyPages(avc)   (((avc)->states & CDirty) || osi_VMDirty_p((avc)))*/
1024 #define afs_DirtyPages(avc)     ((avc)->states & CDirty)
1025
1026 /* The PFlush algorithm makes use of the fact that Fid.Unique is not used in
1027   below hash algorithms.  Change it if need be so that flushing algorithm
1028   doesn't move things from one hash chain to another
1029 */
1030 /* extern int afs_dhashsize; */
1031 #define DCHash(v, c)    ((((v)->Fid.Vnode + (v)->Fid.Volume + (c))) & (afs_dhashsize-1))
1032         /*Vnode, Chunk -> Hash table index */
1033 #define DVHash(v)       ((((v)->Fid.Vnode + (v)->Fid.Volume )) & (afs_dhashsize-1))
1034         /*Vnode -> Other hash table index */
1035 /* don't hash on the cell, our callback-breaking code sometimes fails to compute
1036     the cell correctly, and only scans one hash bucket */
1037 #define VCHash(fid)     (((fid)->Fid.Volume + (fid)->Fid.Vnode) & (VCSIZE-1))
1038 /* Hash only on volume to speed up volume callbacks. */
1039 #define VCHashV(fid) ((fid)->Fid.Volume & (VCSIZE-1))
1040
1041 extern struct dcache **afs_indexTable;  /*Pointers to in-memory dcache entries */
1042 extern afs_int32 *afs_indexUnique;      /*dcache entry Fid.Unique */
1043 extern afs_int32 *afs_dvnextTbl;        /*Dcache hash table links */
1044 extern afs_int32 *afs_dcnextTbl;        /*Dcache hash table links */
1045 extern afs_int32 afs_cacheFiles;        /*Size of afs_indexTable */
1046 extern afs_int32 afs_cacheBlocks;       /*1K blocks in cache */
1047 extern afs_int32 afs_cacheStats;        /*Stat entries in cache */
1048 extern struct vcache *afs_vhashT[VCSIZE];       /*Stat cache hash table */
1049 extern struct afs_q afs_vhashTV[VCSIZE]; /* cache hash table on volume */
1050 extern afs_int32 afs_initState; /*Initialization state */
1051 extern afs_int32 afs_termState; /* Termination state */
1052 extern struct VenusFid afs_rootFid;     /*Root for whole file system */
1053 extern afs_int32 afs_allCBs;    /* Count of callbacks */
1054 extern afs_int32 afs_oddCBs;    /* Count of odd callbacks */
1055 extern afs_int32 afs_evenCBs;   /* Count of even callbacks */
1056 extern afs_int32 afs_allZaps;   /* Count of fid deletes */
1057 extern afs_int32 afs_oddZaps;   /* Count of odd fid deletes */
1058 extern afs_int32 afs_evenZaps;  /* Count of even fid deletes */
1059 extern struct brequest afs_brs[NBRS];   /* request structures */
1060
1061 #define UHash(auid)     ((auid) & (NUSERS-1))
1062 #define VHash(avol)     ((avol)&(NVOLS-1))
1063 #define SHash(aserv)    ((ntohl(aserv)) & (NSERVERS-1))
1064 #define FVHash(acell,avol)  (((avol)+(acell)) & (NFENTRIES-1))
1065
1066 /* Performance hack - we could replace VerifyVCache2 with the appropriate
1067  * GetVCache incantation, and could eliminate even this code from afs_UFSRead 
1068  * by making intentionally invalidating quick.stamp in the various callbacks
1069  * expiration/breaking code */
1070 #ifdef AFS_DARWIN_ENV
1071 #define afs_VerifyVCache(avc, areq)  \
1072   (((avc)->states & CStatd) ? (osi_VM_Setup(avc, 0), 0) : \
1073    afs_VerifyVCache2((avc),areq))
1074 #else
1075 #define afs_VerifyVCache(avc, areq)  \
1076   (((avc)->states & CStatd) ? 0 : afs_VerifyVCache2((avc),areq))
1077 #endif
1078
1079 #define DO_STATS 1              /* bits used by FindVCache */
1080 #define DO_VLRU 2
1081
1082 /* values for flag param of afs_CheckVolumeNames */
1083 #define AFS_VOLCHECK_EXPIRED    0x1     /* volumes whose callbacks have expired */
1084 #define AFS_VOLCHECK_BUSY       0x2     /* volumes which were marked busy */
1085 #define AFS_VOLCHECK_MTPTS      0x4     /* mount point invalidation also */
1086 #define AFS_VOLCHECK_FORCE      0x8     /* do all forcibly */
1087
1088 #endif /* KERNEL */
1089
1090 #define AFS_FSPORT          ((unsigned short) htons(7000))
1091 #define AFS_VLPORT          ((unsigned short) htons(7003))
1092
1093 #define afs_read(avc, uio, acred, albn, abpp, nolock) \
1094         (*(afs_cacheType->vread))(avc, uio, acred, albn, abpp, nolock)
1095 #define afs_write(avc, uio, aio, acred, nolock) \
1096         (*(afs_cacheType->vwrite))(avc, uio, aio, acred, nolock)
1097
1098 #define afs_rdwr(avc, uio, rw, io, cred) \
1099     (((rw) == UIO_WRITE) ? afs_write(avc, uio, io, cred, 0) : afs_read(avc, uio, cred, 0, 0, 0))
1100 #define afs_nlrdwr(avc, uio, rw, io, cred) \
1101     (((rw) == UIO_WRITE) ? afs_write(avc, uio, io, cred, 1) : afs_read(avc, uio, cred, 0, 0, 1))
1102
1103 /* Cache size truncation uses the following low and high water marks:
1104  * If the cache is more than 95% full (CM_DCACHECOUNTFREEPCT), the cache
1105  * truncation daemon is awakened and will free up space until the cache is 85%
1106  * (CM_DCACHESPACEFREEPCT - CM_DCACHEEXTRAPCT) full.
1107  * afs_UFSWrite and afs_GetDCache (when it needs to fetch data) will wait on
1108  * afs_WaitForCacheDrain if the cache is 98% (CM_WAITFORDRAINPCT) full.
1109  * afs_GetDownD wakes those processes once the cache is 95% full
1110  * (CM_CACHESIZEDRAINEDPCT).
1111  */
1112 #define CM_MAXDISCARDEDCHUNKS   16      /* # of chunks */
1113 #define CM_DCACHECOUNTFREEPCT   95      /* max pct of chunks in use */
1114 #define CM_DCACHESPACEFREEPCT   90      /* max pct of space in use */
1115 #define CM_DCACHEEXTRAPCT        5      /* extra to get when freeing */
1116 #define CM_CACHESIZEDRAINEDPCT  95      /* wakeup processes when down to here. */
1117 #define CM_WAITFORDRAINPCT      98      /* sleep if cache is this full. */
1118
1119 #define afs_CacheIsTooFull() \
1120     (afs_blocksUsed - afs_blocksDiscarded > \
1121         (CM_DCACHECOUNTFREEPCT*afs_cacheBlocks)/100 || \
1122      afs_freeDCCount - afs_discardDCCount < \
1123         ((100-CM_DCACHECOUNTFREEPCT)*afs_cacheFiles)/100)
1124
1125 /* Handy max length of a numeric string. */
1126 #define CVBS    12              /* max afs_int32 is 2^32 ~ 4*10^9, +1 for NULL, +luck */
1127
1128 #define refpanic(foo) if (afs_norefpanic) \
1129         { printf( foo ); afs_norefpanic++;} else osi_Panic( foo )
1130
1131 /* 
1132 ** these are defined in the AIX source code sys/fs_locks.h but are not
1133 ** defined anywhere in the /usr/include directory
1134 */
1135 #if     defined(AFS_AIX41_ENV)
1136 #define VN_LOCK(vp)             simple_lock(&(vp)->v_lock)
1137 #define VN_UNLOCK(vp)           simple_unlock(&(vp)->v_lock)
1138 #endif
1139
1140 /* get a file's serial number from a vnode */
1141 #ifndef afs_vnodeToInumber
1142 #if defined(AFS_SGI62_ENV) || defined(AFS_HAVE_VXFS) || defined(AFS_DARWIN_ENV)
1143 #define afs_vnodeToInumber(V) VnodeToIno(V)
1144 #else
1145 #ifdef AFS_DECOSF_ENV
1146 #define afs_vnodeToInumber(V) osi_vnodeToInumber(V)
1147 #else
1148 #define afs_vnodeToInumber(V) (VTOI(V)->i_number)
1149 #endif /* AFS_DECOSF_ENV */
1150 #endif /* AFS_SGI62_ENV */
1151 #endif
1152
1153 /* get a file's device number from a vnode */
1154 #ifndef afs_vnodeToDev
1155 #if defined(AFS_SGI62_ENV) || defined(AFS_HAVE_VXFS) || defined(AFS_DARWIN_ENV)
1156 #define afs_vnodeToDev(V) VnodeToDev(V)
1157 #elif defined(AFS_DECOSF_ENV)
1158 #define afs_vnodeToDev(V) osi_vnodeToDev(V)
1159 #else
1160 #define afs_vnodeToDev(V) (VTOI(V)->i_dev)
1161 #endif
1162 #endif
1163
1164
1165 /* Note: this should agree with the definition in kdump.c */
1166 #if     defined(AFS_OSF_ENV)
1167 #if     !defined(UKERNEL)
1168 #define AFS_USEBUFFERS  1
1169 #endif
1170 #endif
1171
1172 #if !defined(UKERNEL) && !defined(HAVE_STRUCT_BUF)
1173 /* declare something so that prototypes don't flip out */
1174 /* appears struct buf stuff is only actually passed around as a pointer, 
1175    except with libuafs, in which case it is actually defined */
1176
1177 struct buf;
1178 #endif
1179
1180 /* fakestat support: opaque storage for afs_EvalFakeStat to remember
1181  * what vcache should be released.
1182  */
1183 struct afs_fakestat_state {
1184     char valid;
1185     char did_eval;
1186     char need_release;
1187     struct vcache *root_vp;
1188 };
1189
1190 extern int afs_fakestat_enable;
1191
1192 /* First 32 bits of capabilities */
1193 #define CAPABILITY_ERRORTRANS (1<<0)
1194
1195 #define CAPABILITY_BITS 1
1196
1197 #endif /* _AFS_H_ */