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