linux-revised-dentry-invalidation-20050121
[openafs.git] / src / afs / afs_vcache.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Implements:
12  * afs_FlushVCache
13  * afs_AllocCBR
14  * afs_FreeCBR
15  * afs_FlushVCBs
16  * afs_QueueVCB
17  * afs_RemoveVCB
18  * afs_NewVCache
19  * afs_FlushActiveVcaches
20  * afs_VerifyVCache2
21  * afs_WriteVCache
22  * afs_SimpleVStat
23  * afs_ProcessFS
24  * TellALittleWhiteLie
25  * afs_RemoteLookup
26  * afs_GetVCache
27  * afs_LookupVCache
28  * afs_GetRootVCache
29  * afs_FetchStatus
30  * afs_StuffVcache
31  * afs_PutVCache
32  * afs_FindVCache
33  * afs_NFSFindVCache
34  * afs_vcacheInit
35  * shutdown_vcache
36  *
37  */
38 #include <afsconfig.h>
39 #include "afs/param.h"
40
41 RCSID
42     ("$Header$");
43
44 #include "afs/sysincludes.h"    /*Standard vendor system headers */
45 #include "afsincludes.h"        /*AFS-based standard headers */
46 #include "afs/afs_stats.h"
47 #include "afs/afs_cbqueue.h"
48 #include "afs/afs_osidnlc.h"
49
50 #ifdef AFS_OSF_ENV
51 afs_int32 afs_maxvcount = 0;    /* max number of vcache entries */
52 afs_int32 afs_vcount = 0;       /* number of vcache in use now */
53 #endif /* AFS_OSF_ENV */
54
55 #ifdef AFS_SGI_ENV
56 int afsvnumbers = 0;
57 #endif
58
59 #ifdef AFS_SGI64_ENV
60 char *makesname();
61 #endif /* AFS_SGI64_ENV */
62
63 /* Exported variables */
64 afs_rwlock_t afs_xvcache;       /*Lock: alloc new stat cache entries */
65 afs_lock_t afs_xvcb;            /*Lock: fids on which there are callbacks */
66 struct vcache *freeVCList;      /*Free list for stat cache entries */
67 struct vcache *Initial_freeVCList;      /*Initial list for above */
68 struct afs_q VLRU;              /*vcache LRU */
69 afs_int32 vcachegen = 0;
70 unsigned int afs_paniconwarn = 0;
71 struct vcache *afs_vhashT[VCSIZE];
72 static struct afs_cbr *afs_cbrHashT[CBRSIZE];
73 afs_int32 afs_bulkStatsLost;
74 int afs_norefpanic = 0;
75
76 /* Forward declarations */
77 static afs_int32 afs_QueueVCB(struct vcache *avc);
78
79 /*
80  * afs_HashCBRFid
81  *
82  * Generate an index into the hash table for a given Fid.
83  */
84 static int
85 afs_HashCBRFid(struct AFSFid *fid)
86 {
87     return (fid->Volume + fid->Vnode + fid->Unique) % CBRSIZE;
88 }
89
90 /*
91  * afs_InsertHashCBR
92  *
93  * Insert a CBR entry into the hash table.
94  * Must be called with afs_xvcb held.
95  */
96 static void
97 afs_InsertHashCBR(struct afs_cbr *cbr)
98 {
99     int slot = afs_HashCBRFid(&cbr->fid);
100
101     cbr->hash_next = afs_cbrHashT[slot];
102     if (afs_cbrHashT[slot])
103         afs_cbrHashT[slot]->hash_pprev = &cbr->hash_next;
104
105     cbr->hash_pprev = &afs_cbrHashT[slot];
106     afs_cbrHashT[slot] = cbr;
107 }
108
109 /*
110  * afs_FlushVCache
111  *
112  * Description:
113  *      Flush the given vcache entry.
114  *
115  * Parameters:
116  *      avc : Pointer to vcache entry to flush.
117  *      slept : Pointer to int to set 1 if we sleep/drop locks, 0 if we don't.
118  *
119  * Environment:
120  *      afs_xvcache lock must be held for writing upon entry to
121  *      prevent people from changing the vrefCount field, and to
122  *      protect the lruq and hnext fields.
123  * LOCK: afs_FlushVCache afs_xvcache W
124  * REFCNT: vcache ref count must be zero on entry except for osf1
125  * RACE: lock is dropped and reobtained, permitting race in caller
126  */
127
128 int
129 afs_FlushVCache(struct vcache *avc, int *slept)
130 {                               /*afs_FlushVCache */
131
132     register afs_int32 i, code;
133     register struct vcache **uvc, *wvc;
134
135     *slept = 0;
136     AFS_STATCNT(afs_FlushVCache);
137     afs_Trace2(afs_iclSetp, CM_TRACE_FLUSHV, ICL_TYPE_POINTER, avc,
138                ICL_TYPE_INT32, avc->states);
139 #ifdef  AFS_OSF_ENV
140     AFS_GUNLOCK();
141     VN_LOCK(AFSTOV(avc));
142     AFS_GLOCK();
143 #endif
144
145     code = osi_VM_FlushVCache(avc, slept);
146     if (code)
147         goto bad;
148
149     if (avc->states & CVFlushed) {
150         code = EBUSY;
151         goto bad;
152     }
153     if (avc->nextfree || !avc->vlruq.prev || !avc->vlruq.next) {        /* qv afs.h */
154         refpanic("LRU vs. Free inconsistency");
155     }
156     avc->states |= CVFlushed;
157     /* pull the entry out of the lruq and put it on the free list */
158     QRemove(&avc->vlruq);
159     avc->vlruq.prev = avc->vlruq.next = (struct afs_q *)0;
160
161     /* keep track of # of files that we bulk stat'd, but never used
162      * before they got recycled.
163      */
164     if (avc->states & CBulkStat)
165         afs_bulkStatsLost++;
166     vcachegen++;
167     /* remove entry from the hash chain */
168     i = VCHash(&avc->fid);
169     uvc = &afs_vhashT[i];
170     for (wvc = *uvc; wvc; uvc = &wvc->hnext, wvc = *uvc) {
171         if (avc == wvc) {
172             *uvc = avc->hnext;
173             avc->hnext = (struct vcache *)NULL;
174             break;
175         }
176     }
177     if (!wvc)
178         osi_Panic("flushvcache");       /* not in correct hash bucket */
179     if (avc->mvid)
180         osi_FreeSmallSpace(avc->mvid);
181     avc->mvid = (struct VenusFid *)0;
182     if (avc->linkData) {
183         afs_osi_Free(avc->linkData, strlen(avc->linkData) + 1);
184         avc->linkData = NULL;
185     }
186 #if defined(AFS_XBSD_ENV)
187     /* OK, there are no internal vrefCounts, so there shouldn't
188      * be any more refs here. */
189     if (avc->v) {
190         avc->v->v_data = NULL;  /* remove from vnode */
191         avc->v = NULL;          /* also drop the ptr to vnode */
192     }
193 #endif
194     afs_FreeAllAxs(&(avc->Access));
195
196     /* we can't really give back callbacks on RO files, since the
197      * server only tracks them on a per-volume basis, and we don't
198      * know whether we still have some other files from the same
199      * volume. */
200     if ((avc->states & CRO) == 0 && avc->callback) {
201         afs_QueueVCB(avc);
202     }
203     ObtainWriteLock(&afs_xcbhash, 460);
204     afs_DequeueCallback(avc);   /* remove it from queued callbacks list */
205     avc->states &= ~(CStatd | CUnique);
206     ReleaseWriteLock(&afs_xcbhash);
207     afs_symhint_inval(avc);
208     if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
209         osi_dnlc_purgedp(avc);  /* if it (could be) a directory */
210     else
211         osi_dnlc_purgevp(avc);
212
213     /*
214      * Next, keep track of which vnodes we've deleted for create's
215      * optimistic synchronization algorithm
216      */
217     afs_allZaps++;
218     if (avc->fid.Fid.Vnode & 1)
219         afs_oddZaps++;
220     else
221         afs_evenZaps++;
222
223 #if     !defined(AFS_OSF_ENV)
224     /* put the entry in the free list */
225     avc->nextfree = freeVCList;
226     freeVCList = avc;
227     if (avc->vlruq.prev || avc->vlruq.next) {
228         refpanic("LRU vs. Free inconsistency");
229     }
230 #else
231     /* This should put it back on the vnode free list since usecount is 1 */
232     afs_vcount--;
233     vSetType(avc, VREG);
234     if (VREFCOUNT(avc) > 0) {
235         VN_UNLOCK(AFSTOV(avc));
236         AFS_RELE(AFSTOV(avc));
237     } else {
238         if (afs_norefpanic) {
239             printf("flush vc refcnt < 1");
240             afs_norefpanic++;
241             (void)vgone(avc, VX_NOSLEEP, NULL);
242             AFS_GLOCK();
243             VN_UNLOCK(AFSTOV(avc));
244         } else
245             osi_Panic("flush vc refcnt < 1");
246     }
247 #endif /* AFS_OSF_ENV */
248     avc->states |= CVFlushed;
249     return 0;
250
251   bad:
252 #ifdef  AFS_OSF_ENV
253     VN_UNLOCK(AFSTOV(avc));
254 #endif
255     return code;
256
257 }                               /*afs_FlushVCache */
258
259 #ifndef AFS_SGI_ENV
260 /*
261  * afs_InactiveVCache
262  *
263  * The core of the inactive vnode op for all but IRIX.
264  */
265 void
266 afs_InactiveVCache(struct vcache *avc, struct AFS_UCRED *acred)
267 {
268     AFS_STATCNT(afs_inactive);
269     if (avc->states & CDirty) {
270         /* we can't keep trying to push back dirty data forever.  Give up. */
271         afs_InvalidateAllSegments(avc); /* turns off dirty bit */
272     }
273     avc->states &= ~CMAPPED;    /* mainly used by SunOS 4.0.x */
274     avc->states &= ~CDirty;     /* Turn it off */
275     if (avc->states & CUnlinked) {
276         if (CheckLock(&afs_xvcache) || CheckLock(&afs_xdcache)) {
277             avc->states |= CUnlinkedDel;
278             return;
279         }
280         afs_remunlink(avc, 1);  /* ignore any return code */
281     }
282
283 }
284 #endif
285
286 /*
287  * afs_AllocCBR
288  *
289  * Description: allocate a callback return structure from the
290  * free list and return it.
291  *
292  * Env: The alloc and free routines are both called with the afs_xvcb lock
293  * held, so we don't have to worry about blocking in osi_Alloc.
294  */
295 static struct afs_cbr *afs_cbrSpace = 0;
296 struct afs_cbr *
297 afs_AllocCBR(void)
298 {
299     register struct afs_cbr *tsp;
300     int i;
301
302     while (!afs_cbrSpace) {
303         if (afs_stats_cmperf.CallBackAlloced >= 2) {
304             /* don't allocate more than 2 * AFS_NCBRS for now */
305             afs_FlushVCBs(0);
306             afs_stats_cmperf.CallBackFlushes++;
307         } else {
308             /* try allocating */
309             tsp =
310                 (struct afs_cbr *)afs_osi_Alloc(AFS_NCBRS *
311                                                 sizeof(struct afs_cbr));
312             for (i = 0; i < AFS_NCBRS - 1; i++) {
313                 tsp[i].next = &tsp[i + 1];
314             }
315             tsp[AFS_NCBRS - 1].next = 0;
316             afs_cbrSpace = tsp;
317             afs_stats_cmperf.CallBackAlloced++;
318         }
319     }
320     tsp = afs_cbrSpace;
321     afs_cbrSpace = tsp->next;
322     return tsp;
323 }
324
325 /*
326  * afs_FreeCBR
327  *
328  * Description: free a callback return structure, removing it from all lists.
329  *
330  * Parameters:
331  *      asp -- the address of the structure to free.
332  *
333  * Environment: the xvcb lock is held over these calls.
334  */
335 int
336 afs_FreeCBR(register struct afs_cbr *asp)
337 {
338     *(asp->pprev) = asp->next;
339     if (asp->next)
340         asp->next->pprev = asp->pprev;
341
342     *(asp->hash_pprev) = asp->hash_next;
343     if (asp->hash_next)
344         asp->hash_next->hash_pprev = asp->hash_pprev;
345
346     asp->next = afs_cbrSpace;
347     afs_cbrSpace = asp;
348     return 0;
349 }
350
351 /*
352  * afs_FlushVCBs
353  *
354  * Description: flush all queued callbacks to all servers.
355  *
356  * Parameters: none.
357  *
358  * Environment: holds xvcb lock over RPC to guard against race conditions
359  *      when a new callback is granted for the same file later on.
360  */
361 afs_int32
362 afs_FlushVCBs(afs_int32 lockit)
363 {
364     struct AFSFid *tfids;
365     struct AFSCallBack callBacks[1];
366     struct AFSCBFids fidArray;
367     struct AFSCBs cbArray;
368     afs_int32 code;
369     struct afs_cbr *tcbrp;
370     int tcount;
371     struct server *tsp;
372     int i;
373     struct vrequest treq;
374     struct conn *tc;
375     int safety1, safety2, safety3;
376     XSTATS_DECLS;
377     if ((code = afs_InitReq(&treq, afs_osi_credp)))
378         return code;
379     treq.flags |= O_NONBLOCK;
380     tfids = afs_osi_Alloc(sizeof(struct AFSFid) * AFS_MAXCBRSCALL);
381
382     if (lockit)
383         MObtainWriteLock(&afs_xvcb, 273);
384     ObtainReadLock(&afs_xserver);
385     for (i = 0; i < NSERVERS; i++) {
386         for (safety1 = 0, tsp = afs_servers[i];
387              tsp && safety1 < afs_totalServers + 10;
388              tsp = tsp->next, safety1++) {
389             /* don't have any */
390             if (tsp->cbrs == (struct afs_cbr *)0)
391                 continue;
392
393             /* otherwise, grab a block of AFS_MAXCBRSCALL from the list
394              * and make an RPC, over and over again.
395              */
396             tcount = 0;         /* number found so far */
397             for (safety2 = 0; safety2 < afs_cacheStats; safety2++) {
398                 if (tcount >= AFS_MAXCBRSCALL || !tsp->cbrs) {
399                     /* if buffer is full, or we've queued all we're going
400                      * to from this server, we should flush out the
401                      * callbacks.
402                      */
403                     fidArray.AFSCBFids_len = tcount;
404                     fidArray.AFSCBFids_val = (struct AFSFid *)tfids;
405                     cbArray.AFSCBs_len = 1;
406                     cbArray.AFSCBs_val = callBacks;
407                     memset(&callBacks[0], 0, sizeof(callBacks[0]));
408                     callBacks[0].CallBackType = CB_EXCLUSIVE;
409                     for (safety3 = 0; safety3 < MAXHOSTS * 2; safety3++) {
410                         tc = afs_ConnByHost(tsp, tsp->cell->fsport,
411                                             tsp->cell->cellNum, &treq, 0,
412                                             SHARED_LOCK);
413                         if (tc) {
414                             XSTATS_START_TIME
415                                 (AFS_STATS_FS_RPCIDX_GIVEUPCALLBACKS);
416                             RX_AFS_GUNLOCK();
417                             code =
418                                 RXAFS_GiveUpCallBacks(tc->id, &fidArray,
419                                                       &cbArray);
420                             RX_AFS_GLOCK();
421                             XSTATS_END_TIME;
422                         } else
423                             code = -1;
424                         if (!afs_Analyze
425                             (tc, code, 0, &treq,
426                              AFS_STATS_FS_RPCIDX_GIVEUPCALLBACKS, SHARED_LOCK,
427                              tsp->cell)) {
428                             break;
429                         }
430                     }
431                     /* ignore return code, since callbacks may have
432                      * been returned anyway, we shouldn't leave them
433                      * around to be returned again.
434                      *
435                      * Next, see if we are done with this server, and if so,
436                      * break to deal with the next one.
437                      */
438                     if (!tsp->cbrs)
439                         break;
440                     tcount = 0;
441                 }
442                 /* if to flush full buffer */
443                 /* if we make it here, we have an entry at the head of cbrs,
444                  * which we should copy to the file ID array and then free.
445                  */
446                 tcbrp = tsp->cbrs;
447                 tfids[tcount++] = tcbrp->fid;
448
449                 /* Freeing the CBR will unlink it from the server's CBR list */
450                 afs_FreeCBR(tcbrp);
451             }                   /* while loop for this one server */
452             if (safety2 > afs_cacheStats) {
453                 afs_warn("possible internal error afs_flushVCBs (%d)\n",
454                          safety2);
455             }
456         }                       /* for loop for this hash chain */
457     }                           /* loop through all hash chains */
458     if (safety1 > afs_totalServers + 2) {
459         afs_warn
460             ("AFS internal error (afs_flushVCBs) (%d > %d), continuing...\n",
461              safety1, afs_totalServers + 2);
462         if (afs_paniconwarn)
463             osi_Panic("afs_flushVCBS safety1");
464     }
465
466     ReleaseReadLock(&afs_xserver);
467     if (lockit)
468         MReleaseWriteLock(&afs_xvcb);
469     afs_osi_Free(tfids, sizeof(struct AFSFid) * AFS_MAXCBRSCALL);
470     return 0;
471 }
472
473 /*
474  * afs_QueueVCB
475  *
476  * Description:
477  *      Queue a callback on the given fid.
478  *
479  * Parameters:
480  *      avc: vcache entry
481  *
482  * Environment:
483  *      Locks the xvcb lock.
484  *      Called when the xvcache lock is already held.
485  */
486
487 static afs_int32
488 afs_QueueVCB(struct vcache *avc)
489 {
490     struct server *tsp;
491     struct afs_cbr *tcbp;
492
493     AFS_STATCNT(afs_QueueVCB);
494     /* The callback is really just a struct server ptr. */
495     tsp = (struct server *)(avc->callback);
496
497     /* we now have a pointer to the server, so we just allocate
498      * a queue entry and queue it.
499      */
500     MObtainWriteLock(&afs_xvcb, 274);
501     tcbp = afs_AllocCBR();
502     tcbp->fid = avc->fid.Fid;
503
504     tcbp->next = tsp->cbrs;
505     if (tsp->cbrs)
506         tsp->cbrs->pprev = &tcbp->next;
507
508     tsp->cbrs = tcbp;
509     tcbp->pprev = &tsp->cbrs;
510
511     afs_InsertHashCBR(tcbp);
512
513     /* now release locks and return */
514     MReleaseWriteLock(&afs_xvcb);
515     return 0;
516 }
517
518
519 /*
520  * afs_RemoveVCB
521  *
522  * Description:
523  *      Remove a queued callback for a given Fid.
524  *
525  * Parameters:
526  *      afid: The fid we want cleansed of queued callbacks.
527  *
528  * Environment:
529  *      Locks xvcb and xserver locks.
530  *      Typically called with xdcache, xvcache and/or individual vcache
531  *      entries locked.
532  */
533
534 void
535 afs_RemoveVCB(struct VenusFid *afid)
536 {
537     int slot;
538     struct afs_cbr *cbr, *ncbr;
539
540     AFS_STATCNT(afs_RemoveVCB);
541     MObtainWriteLock(&afs_xvcb, 275);
542
543     slot = afs_HashCBRFid(&afid->Fid);
544     ncbr = afs_cbrHashT[slot];
545
546     while (ncbr) {
547         cbr = ncbr;
548         ncbr = cbr->hash_next;
549
550         if (afid->Fid.Volume == cbr->fid.Volume &&
551             afid->Fid.Vnode == cbr->fid.Vnode &&
552             afid->Fid.Unique == cbr->fid.Unique) {
553             afs_FreeCBR(cbr);
554         }
555     }
556
557     MReleaseWriteLock(&afs_xvcb);
558 }
559
560 /*
561  * afs_NewVCache
562  *
563  * Description:
564  *      This routine is responsible for allocating a new cache entry
565  *      from the free list.  It formats the cache entry and inserts it
566  *      into the appropriate hash tables.  It must be called with
567  *      afs_xvcache write-locked so as to prevent several processes from
568  *      trying to create a new cache entry simultaneously.
569  *
570  * Parameters:
571  *      afid  : The file id of the file whose cache entry is being
572  *              created.
573  */
574 /* LOCK: afs_NewVCache  afs_xvcache W */
575 struct vcache *
576 afs_NewVCache(struct VenusFid *afid, struct server *serverp)
577 {
578     struct vcache *tvc;
579     afs_int32 i;
580     afs_int32 anumber = VCACHE_FREE;
581 #ifdef  AFS_AIX_ENV
582     struct gnode *gnodepnt;
583 #endif
584 #ifdef  AFS_MACH_ENV
585     struct vm_info *vm_info_ptr;
586 #endif /* AFS_MACH_ENV */
587 #ifdef  AFS_OSF_ENV
588     struct vcache *nvc;
589 #endif /* AFS_OSF_ENV */
590     struct afs_q *tq, *uq;
591     int code, fv_slept;
592
593     AFS_STATCNT(afs_NewVCache);
594 #ifdef  AFS_OSF_ENV
595 #ifdef  AFS_OSF30_ENV
596     if (afs_vcount >= afs_maxvcount) {
597 #else
598     /*
599      * If we are using > 33 % of the total system vnodes for AFS vcache
600      * entries or we are using the maximum number of vcache entries,
601      * then free some.  (if our usage is > 33% we should free some, if
602      * our usage is > afs_maxvcount, set elsewhere to 0.5*nvnode,
603      * we _must_ free some -- no choice).
604      */
605     if (((3 * afs_vcount) > nvnode) || (afs_vcount >= afs_maxvcount)) {
606 #endif
607         struct afs_q *tq, *uq;
608         int i;
609         char *panicstr;
610
611         i = 0;
612         for (tq = VLRU.prev; tq != &VLRU && anumber > 0; tq = uq) {
613             tvc = QTOV(tq);
614             uq = QPrev(tq);
615             if (tvc->states & CVFlushed)
616                 refpanic("CVFlushed on VLRU");
617             else if (i++ > afs_maxvcount)
618                 refpanic("Exceeded pool of AFS vnodes(VLRU cycle?)");
619             else if (QNext(uq) != tq)
620                 refpanic("VLRU inconsistent");
621             else if (VREFCOUNT(tvc) < 1)
622                 refpanic("refcnt 0 on VLRU");
623
624             if (VREFCOUNT(tvc) == 1 && tvc->opens == 0
625                 && (tvc->states & CUnlinkedDel) == 0) {
626                 code = afs_FlushVCache(tvc, &fv_slept);
627                 if (code == 0) {
628                     anumber--;
629                 }
630                 if (fv_slept) {
631                     uq = VLRU.prev;
632                     i = 0;
633                     continue;   /* start over - may have raced. */
634                 }
635             }
636             if (tq == uq)
637                 break;
638         }
639         if (anumber == VCACHE_FREE) {
640             printf("NewVCache: warning none freed, using %d of %d\n",
641                    afs_vcount, afs_maxvcount);
642             if (afs_vcount >= afs_maxvcount) {
643                 osi_Panic("NewVCache - none freed");
644                 /* XXX instead of panicing, should do afs_maxvcount++
645                  * and magic up another one */
646             }
647         }
648     }
649
650     AFS_GUNLOCK();
651     if (getnewvnode(MOUNT_AFS, &Afs_vnodeops, &nvc)) {
652         /* What should we do ???? */
653         osi_Panic("afs_NewVCache: no more vnodes");
654     }
655     AFS_GLOCK();
656
657     tvc = nvc;
658     tvc->nextfree = NULL;
659     afs_vcount++;
660 #else /* AFS_OSF_ENV */
661     /* pull out a free cache entry */
662     if (!freeVCList) {
663         i = 0;
664         for (tq = VLRU.prev; (anumber > 0) && (tq != &VLRU); tq = uq) {
665             tvc = QTOV(tq);
666             uq = QPrev(tq);
667
668             if (tvc->states & CVFlushed) {
669                 refpanic("CVFlushed on VLRU");
670             } else if (i++ > 2 * afs_cacheStats) {      /* even allowing for a few xallocs... */
671                 refpanic("Increase -stat parameter of afsd(VLRU cycle?)");
672             } else if (QNext(uq) != tq) {
673                 refpanic("VLRU inconsistent");
674             }
675 #ifdef AFS_DARWIN_ENV
676             if ((VREFCOUNT(tvc) < DARWIN_REFBASE) ||
677                 (VREFCOUNT(tvc) < 1 + DARWIN_REFBASE &&
678                  UBCINFOEXISTS(&tvc->v))) {
679                 VREFCOUNT_SET(tvc,
680                               DARWIN_REFBASE +
681                               (UBCINFOEXISTS(&tvc->v) ? 1 : 0));
682             }
683             if (tvc->opens == 0 && ((tvc->states & CUnlinkedDel) == 0)
684                 && VREFCOUNT(tvc) == DARWIN_REFBASE + 1
685                 && UBCINFOEXISTS(&tvc->v)) {
686                 osi_VM_TryReclaim(tvc, &fv_slept);
687                 if (fv_slept) {
688                     uq = VLRU.prev;
689                     i = 0;
690                     continue;   /* start over - may have raced. */
691                 }
692             }
693 #elif defined(AFS_LINUX22_ENV)
694             if (tvc != afs_globalVp && VREFCOUNT(tvc) && tvc->opens == 0) {
695                 struct dentry *dentry;
696                 struct list_head *cur, *head = &(AFSTOI(tvc))->i_dentry;
697                 AFS_FAST_HOLD(tvc);
698                 AFS_GUNLOCK();
699
700 restart:
701 #if defined(AFS_LINUX24_ENV)
702                 spin_lock(&dcache_lock);
703 #endif
704                 cur = head;
705                 while ((cur = cur->next) != head) {
706                     dentry = list_entry(cur, struct dentry, d_alias);
707
708                     if (d_unhashed(dentry))
709                         continue;
710
711                     dget_locked(dentry);
712
713 #if defined(AFS_LINUX24_ENV)
714                     spin_unlock(&dcache_lock);
715 #endif
716                     if (d_invalidate(dentry) == -EBUSY) {
717                         dput(dentry);
718                         /* perhaps lock and try to continue? (use cur as head?) */
719                         goto inuse;
720                     }
721                     dput(dentry);
722                     goto restart;
723                 }                   
724 #if defined(AFS_LINUX24_ENV)
725                 spin_unlock(&dcache_lock);
726 #endif
727             inuse:
728                 AFS_GLOCK();
729                 AFS_FAST_RELE(tvc);
730             }
731 #endif
732
733             if (VREFCOUNT(tvc) ==
734 #ifdef AFS_DARWIN_ENV
735                 DARWIN_REFBASE
736 #else
737                 0
738 #endif
739                 && tvc->opens == 0 && (tvc->states & CUnlinkedDel) == 0) {
740 #if defined(AFS_XBSD_ENV)
741                 /*
742                  * vgone() reclaims the vnode, which calls afs_FlushVCache(),
743                  * then it puts the vnode on the free list.
744                  * If we don't do this we end up with a cleaned vnode that's
745                  * not on the free list.
746                  * XXX assume FreeBSD is the same for now.
747                  */
748                 vgone(AFSTOV(tvc));
749                 code = fv_slept = 0;
750 #else
751                 code = afs_FlushVCache(tvc, &fv_slept);
752 #endif
753                 if (code == 0) {
754                     anumber--;
755                 }
756                 if (fv_slept) {
757                     uq = VLRU.prev;
758                     i = 0;
759                     continue;   /* start over - may have raced. */
760                 }
761             }
762             if (tq == uq)
763                 break;
764         }
765     }
766     if (!freeVCList) {
767         /* none free, making one is better than a panic */
768         afs_stats_cmperf.vcacheXAllocs++;       /* count in case we have a leak */
769         tvc = (struct vcache *)afs_osi_Alloc(sizeof(struct vcache));
770 #ifdef  KERNEL_HAVE_PIN
771         pin((char *)tvc, sizeof(struct vcache));        /* XXX */
772 #endif
773 #ifdef  AFS_MACH_ENV
774         /* In case it still comes here we need to fill this */
775         tvc->v.v_vm_info = VM_INFO_NULL;
776         vm_info_init(tvc->v.v_vm_info);
777         /* perhaps we should also do close_flush on non-NeXT mach systems;
778          * who knows; we don't currently have the sources.
779          */
780 #endif /* AFS_MACH_ENV */
781 #if defined(AFS_SGI_ENV)
782         {
783             char name[METER_NAMSZ];
784             memset(tvc, 0, sizeof(struct vcache));
785             tvc->v.v_number = ++afsvnumbers;
786             tvc->vc_rwlockid = OSI_NO_LOCKID;
787             initnsema(&tvc->vc_rwlock, 1,
788                       makesname(name, "vrw", tvc->v.v_number));
789 #ifndef AFS_SGI53_ENV
790             initnsema(&tvc->v.v_sync, 0,
791                       makesname(name, "vsy", tvc->v.v_number));
792 #endif
793 #ifndef AFS_SGI62_ENV
794             initnlock(&tvc->v.v_lock,
795                       makesname(name, "vlk", tvc->v.v_number));
796 #endif
797         }
798 #endif /* AFS_SGI_ENV */
799     } else {
800         tvc = freeVCList;       /* take from free list */
801         freeVCList = tvc->nextfree;
802         tvc->nextfree = NULL;
803     }
804 #endif /* AFS_OSF_ENV */
805
806 #ifdef  AFS_MACH_ENV
807     vm_info_ptr = tvc->v.v_vm_info;
808 #endif /* AFS_MACH_ENV */
809
810 #if defined(AFS_XBSD_ENV)
811     if (tvc->v)
812         panic("afs_NewVCache(): free vcache with vnode attached");
813 #endif
814
815 #if !defined(AFS_SGI_ENV) && !defined(AFS_OSF_ENV)
816     memset((char *)tvc, 0, sizeof(struct vcache));
817 #else
818     tvc->uncred = 0;
819 #endif
820
821     RWLOCK_INIT(&tvc->lock, "vcache lock");
822 #if     defined(AFS_SUN5_ENV)
823     RWLOCK_INIT(&tvc->vlock, "vcache vlock");
824 #endif /* defined(AFS_SUN5_ENV) */
825
826 #ifdef  AFS_MACH_ENV
827     tvc->v.v_vm_info = vm_info_ptr;
828     tvc->v.v_vm_info->pager = MEMORY_OBJECT_NULL;
829 #endif /* AFS_MACH_ENV */
830 #ifdef AFS_OBSD_ENV
831     AFS_GUNLOCK();
832     afs_nbsd_getnewvnode(tvc);  /* includes one refcount */
833     AFS_GLOCK();
834     lockinit(&tvc->rwlock, PINOD, "vcache", 0, 0);
835 #endif
836 #ifdef AFS_FBSD_ENV
837     {
838         struct vnode *vp;
839
840         AFS_GUNLOCK();
841 #ifdef AFS_FBSD50_ENV
842         if (getnewvnode(MOUNT_AFS, afs_globalVFS, afs_vnodeop_p, &vp))
843 #else
844         if (getnewvnode(VT_AFS, afs_globalVFS, afs_vnodeop_p, &vp))
845 #endif
846             panic("afs getnewvnode");   /* can't happen */
847         AFS_GLOCK();
848         if (tvc->v != NULL) {
849             /* I'd like to know if this ever happens...
850              * We don't drop global for the rest of this function,
851              * so if we do lose the race, the other thread should
852              * have found the same vnode and finished initializing
853              * the vcache entry.  Is it conceivable that this vcache
854              * entry could be recycled during this interval?  If so,
855              * then there probably needs to be some sort of additional
856              * mutual exclusion (an Embryonic flag would suffice).
857              * -GAW */
858             printf("afs_NewVCache: lost the race\n");
859             return (tvc);
860         }
861         tvc->v = vp;
862         tvc->v->v_data = tvc;
863         lockinit(&tvc->rwlock, PINOD, "vcache", 0, 0);
864     }
865 #endif
866     tvc->parentVnode = 0;
867     tvc->mvid = NULL;
868     tvc->linkData = NULL;
869     tvc->cbExpires = 0;
870     tvc->opens = 0;
871     tvc->execsOrWriters = 0;
872     tvc->flockCount = 0;
873     tvc->anyAccess = 0;
874     tvc->states = 0;
875     tvc->last_looker = 0;
876     tvc->fid = *afid;
877     tvc->asynchrony = -1;
878     tvc->vc_error = 0;
879     afs_symhint_inval(tvc);
880 #ifdef AFS_TEXT_ENV
881     tvc->flushDV.low = tvc->flushDV.high = AFS_MAXDV;
882 #endif
883     hzero(tvc->mapDV);
884     tvc->truncPos = AFS_NOTRUNC;        /* don't truncate until we need to */
885     hzero(tvc->m.DataVersion);  /* in case we copy it into flushDV */
886 #if defined(AFS_LINUX22_ENV)
887     {
888         struct inode *ip = AFSTOI(tvc);
889         struct address_space *mapping = &ip->i_data;
890
891 #if defined(AFS_LINUX26_ENV)
892         inode_init_once(ip);
893 #else
894         sema_init(&ip->i_sem, 1);
895         INIT_LIST_HEAD(&ip->i_hash);
896         INIT_LIST_HEAD(&ip->i_dentry);
897 #if defined(AFS_LINUX24_ENV)
898         sema_init(&ip->i_zombie, 1);
899         init_waitqueue_head(&ip->i_wait);
900         spin_lock_init(&ip->i_data.i_shared_lock);
901 #ifdef STRUCT_ADDRESS_SPACE_HAS_PAGE_LOCK
902         spin_lock_init(&ip->i_data.page_lock);
903 #endif
904         INIT_LIST_HEAD(&ip->i_data.clean_pages);
905         INIT_LIST_HEAD(&ip->i_data.dirty_pages);
906         INIT_LIST_HEAD(&ip->i_data.locked_pages);
907         INIT_LIST_HEAD(&ip->i_dirty_buffers);
908 #ifdef STRUCT_INODE_HAS_I_DIRTY_DATA_BUFFERS
909         INIT_LIST_HEAD(&ip->i_dirty_data_buffers);
910 #endif
911 #ifdef STRUCT_INODE_HAS_I_DEVICES
912         INIT_LIST_HEAD(&ip->i_devices);
913 #endif
914 #ifdef STRUCT_INODE_HAS_I_TRUNCATE_SEM
915         init_rwsem(&ip->i_truncate_sem);
916 #endif
917 #ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
918         init_rwsem(&ip->i_alloc_sem);
919 #endif
920
921 #else /* AFS_LINUX22_ENV */
922         sema_init(&ip->i_atomic_write, 1);
923         init_waitqueue(&ip->i_wait);
924 #endif
925 #endif
926
927 #if defined(AFS_LINUX24_ENV)
928         mapping->host = ip;
929         ip->i_mapping = mapping;
930 #ifdef STRUCT_ADDRESS_SPACE_HAS_GFP_MASK
931         ip->i_data.gfp_mask = GFP_HIGHUSER;
932 #endif
933 #if defined(AFS_LINUX26_ENV)
934         mapping_set_gfp_mask(mapping, GFP_HIGHUSER);
935         {
936             extern struct backing_dev_info afs_backing_dev_info;
937
938             mapping->backing_dev_info = &afs_backing_dev_info;
939         }
940 #endif
941 #endif
942
943 #if !defined(AFS_LINUX26_ENV)
944         if (afs_globalVFS)
945             ip->i_dev = afs_globalVFS->s_dev;
946 #else
947 #ifdef STRUCT_INODE_HAS_I_SECURITY
948         ip->i_security = NULL;
949         if (security_inode_alloc(ip))
950             panic("Cannot allocate inode security");
951 #endif
952 #endif
953         ip->i_sb = afs_globalVFS;
954         put_inode_on_dummy_list(ip);
955     }
956 #endif
957
958 #ifdef  AFS_OSF_ENV
959     /* Hold it for the LRU (should make count 2) */
960     VN_HOLD(AFSTOV(tvc));
961 #else /* AFS_OSF_ENV */
962 #if !defined(AFS_XBSD_ENV)
963     VREFCOUNT_SET(tvc, 1);      /* us */
964 #endif /* AFS_XBSD_ENV */
965 #endif /* AFS_OSF_ENV */
966 #ifdef  AFS_AIX32_ENV
967     LOCK_INIT(&tvc->pvmlock, "vcache pvmlock");
968     tvc->vmh = tvc->segid = NULL;
969     tvc->credp = NULL;
970 #endif
971 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
972 #if     defined(AFS_SUN5_ENV)
973     rw_init(&tvc->rwlock, "vcache rwlock", RW_DEFAULT, NULL);
974
975 #if     defined(AFS_SUN55_ENV)
976     /* This is required if the kaio (kernel aynchronous io)
977      ** module is installed. Inside the kernel, the function
978      ** check_vp( common/os/aio.c) checks to see if the kernel has
979      ** to provide asynchronous io for this vnode. This
980      ** function extracts the device number by following the
981      ** v_data field of the vnode. If we do not set this field
982      ** then the system panics. The  value of the v_data field
983      ** is not really important for AFS vnodes because the kernel
984      ** does not do asynchronous io for regular files. Hence,
985      ** for the time being, we fill up the v_data field with the
986      ** vnode pointer itself. */
987     tvc->v.v_data = (char *)tvc;
988 #endif /* AFS_SUN55_ENV */
989 #endif
990     afs_BozonInit(&tvc->pvnLock, tvc);
991 #endif
992
993     tvc->Access = NULL;
994     tvc->callback = serverp;    /* to minimize chance that clear
995                                  * request is lost */
996     /* initialize vnode data, note vrefCount is v.v_count */
997 #ifdef  AFS_AIX_ENV
998     /* Don't forget to free the gnode space */
999     tvc->v.v_gnode = gnodepnt =
1000         (struct gnode *)osi_AllocSmallSpace(sizeof(struct gnode));
1001     memset((char *)gnodepnt, 0, sizeof(struct gnode));
1002 #endif
1003 #ifdef AFS_SGI64_ENV
1004     memset((void *)&(tvc->vc_bhv_desc), 0, sizeof(tvc->vc_bhv_desc));
1005     bhv_desc_init(&(tvc->vc_bhv_desc), tvc, tvc, &Afs_vnodeops);
1006 #ifdef AFS_SGI65_ENV
1007     vn_bhv_head_init(&(tvc->v.v_bh), "afsvp");
1008     vn_bhv_insert_initial(&(tvc->v.v_bh), &(tvc->vc_bhv_desc));
1009 #else
1010     bhv_head_init(&(tvc->v.v_bh));
1011     bhv_insert_initial(&(tvc->v.v_bh), &(tvc->vc_bhv_desc));
1012 #endif
1013 #ifdef AFS_SGI65_ENV
1014     tvc->v.v_mreg = tvc->v.v_mregb = (struct pregion *)tvc;
1015 #ifdef VNODE_TRACING
1016     tvc->v.v_trace = ktrace_alloc(VNODE_TRACE_SIZE, 0);
1017 #endif
1018     init_bitlock(&tvc->v.v_pcacheflag, VNODE_PCACHE_LOCKBIT, "afs_pcache",
1019                  tvc->v.v_number);
1020     init_mutex(&tvc->v.v_filocksem, MUTEX_DEFAULT, "afsvfl", (long)tvc);
1021     init_mutex(&tvc->v.v_buf_lock, MUTEX_DEFAULT, "afsvnbuf", (long)tvc);
1022 #endif
1023     vnode_pcache_init(&tvc->v);
1024 #if defined(DEBUG) && defined(VNODE_INIT_BITLOCK)
1025     /* Above define is never true execpt in SGI test kernels. */
1026     init_bitlock(&(tvc->v.v_flag, VLOCK, "vnode", tvc->v.v_number);
1027 #endif
1028 #ifdef INTR_KTHREADS
1029                  AFS_VN_INIT_BUF_LOCK(&(tvc->v));
1030 #endif
1031 #else
1032     SetAfsVnode(AFSTOV(tvc));
1033 #endif /* AFS_SGI64_ENV */
1034 #ifdef AFS_DARWIN_ENV
1035     tvc->v.v_ubcinfo = UBC_INFO_NULL;
1036     lockinit(&tvc->rwlock, PINOD, "vcache rwlock", 0, 0);
1037     cache_purge(AFSTOV(tvc));
1038     tvc->v.v_data = tvc;
1039     tvc->v.v_tag = VT_AFS;
1040     /* VLISTNONE(&tvc->v); */
1041     tvc->v.v_freelist.tqe_next = 0;
1042     tvc->v.v_freelist.tqe_prev = (struct vnode **)0xdeadb;
1043     tvc->vrefCount += DARWIN_REFBASE;
1044 #endif
1045     /*
1046      * The proper value for mvstat (for root fids) is setup by the caller.
1047      */
1048     tvc->mvstat = 0;
1049     if (afid->Fid.Vnode == 1 && afid->Fid.Unique == 1)
1050         tvc->mvstat = 2;
1051     if (afs_globalVFS == 0)
1052         osi_Panic("afs globalvfs");
1053     vSetVfsp(tvc, afs_globalVFS);
1054     vSetType(tvc, VREG);
1055 #ifdef  AFS_AIX_ENV
1056     tvc->v.v_vfsnext = afs_globalVFS->vfs_vnodes;       /* link off vfs */
1057     tvc->v.v_vfsprev = NULL;
1058     afs_globalVFS->vfs_vnodes = &tvc->v;
1059     if (tvc->v.v_vfsnext != NULL)
1060         tvc->v.v_vfsnext->v_vfsprev = &tvc->v;
1061     tvc->v.v_next = gnodepnt->gn_vnode; /*Single vnode per gnode for us! */
1062     gnodepnt->gn_vnode = &tvc->v;
1063 #endif
1064 #ifdef  AFS_DEC_ENV
1065     tvc->v.g_dev = ((struct mount *)afs_globalVFS->vfs_data)->m_dev;
1066 #endif
1067 #if     defined(AFS_DUX40_ENV)
1068     insmntque(tvc, afs_globalVFS, &afs_ubcops);
1069 #else
1070 #ifdef  AFS_OSF_ENV
1071     /* Is this needed??? */
1072     insmntque(tvc, afs_globalVFS);
1073 #endif /* AFS_OSF_ENV */
1074 #endif /* AFS_DUX40_ENV */
1075 #if defined(AFS_SGI_ENV)
1076     VN_SET_DPAGES(&(tvc->v), (struct pfdat *)NULL);
1077     osi_Assert((tvc->v.v_flag & VINACT) == 0);
1078     tvc->v.v_flag = 0;
1079     osi_Assert(VN_GET_PGCNT(&(tvc->v)) == 0);
1080     osi_Assert(tvc->mapcnt == 0 && tvc->vc_locktrips == 0);
1081     osi_Assert(tvc->vc_rwlockid == OSI_NO_LOCKID);
1082     osi_Assert(tvc->v.v_filocks == NULL);
1083 #if !defined(AFS_SGI65_ENV)
1084     osi_Assert(tvc->v.v_filocksem == NULL);
1085 #endif
1086     osi_Assert(tvc->cred == NULL);
1087 #ifdef AFS_SGI64_ENV
1088     vnode_pcache_reinit(&tvc->v);
1089     tvc->v.v_rdev = NODEV;
1090 #endif
1091     vn_initlist((struct vnlist *)&tvc->v);
1092     tvc->lastr = 0;
1093 #endif /* AFS_SGI_ENV */
1094     tvc->h1.dchint = 0;
1095     osi_dnlc_purgedp(tvc);      /* this may be overkill */
1096     memset((char *)&(tvc->quick), 0, sizeof(struct vtodc));
1097     memset((char *)&(tvc->callsort), 0, sizeof(struct afs_q));
1098     tvc->slocks = NULL;
1099     i = VCHash(afid);
1100
1101     tvc->hnext = afs_vhashT[i];
1102     afs_vhashT[i] = tvc;
1103     if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
1104         refpanic("NewVCache VLRU inconsistent");
1105     }
1106     QAdd(&VLRU, &tvc->vlruq);   /* put in lruq */
1107     if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
1108         refpanic("NewVCache VLRU inconsistent2");
1109     }
1110     if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
1111         refpanic("NewVCache VLRU inconsistent3");
1112     }
1113     if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
1114         refpanic("NewVCache VLRU inconsistent4");
1115     }
1116     vcachegen++;
1117
1118     return tvc;
1119
1120 }                               /*afs_NewVCache */
1121
1122
1123 /*
1124  * afs_FlushActiveVcaches
1125  *
1126  * Description:
1127  *      ???
1128  *
1129  * Parameters:
1130  *      doflocks : Do we handle flocks?
1131  */
1132 /* LOCK: afs_FlushActiveVcaches afs_xvcache N */
1133 void
1134 afs_FlushActiveVcaches(register afs_int32 doflocks)
1135 {
1136     register struct vcache *tvc;
1137     register int i;
1138     register struct conn *tc;
1139     register afs_int32 code;
1140     register struct AFS_UCRED *cred = NULL;
1141     struct vrequest treq, ureq;
1142     struct AFSVolSync tsync;
1143     int didCore;
1144     XSTATS_DECLS;
1145     AFS_STATCNT(afs_FlushActiveVcaches);
1146     ObtainReadLock(&afs_xvcache);
1147     for (i = 0; i < VCSIZE; i++) {
1148         for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
1149             if (doflocks && tvc->flockCount != 0) {
1150                 /* if this entry has an flock, send a keep-alive call out */
1151                 osi_vnhold(tvc, 0);
1152                 ReleaseReadLock(&afs_xvcache);
1153                 ObtainWriteLock(&tvc->lock, 51);
1154                 do {
1155                     afs_InitReq(&treq, afs_osi_credp);
1156                     treq.flags |= O_NONBLOCK;
1157
1158                     tc = afs_Conn(&tvc->fid, &treq, SHARED_LOCK);
1159                     if (tc) {
1160                         XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_EXTENDLOCK);
1161                         RX_AFS_GUNLOCK();
1162                         code =
1163                             RXAFS_ExtendLock(tc->id,
1164                                              (struct AFSFid *)&tvc->fid.Fid,
1165                                              &tsync);
1166                         RX_AFS_GLOCK();
1167                         XSTATS_END_TIME;
1168                     } else
1169                         code = -1;
1170                 } while (afs_Analyze
1171                          (tc, code, &tvc->fid, &treq,
1172                           AFS_STATS_FS_RPCIDX_EXTENDLOCK, SHARED_LOCK, NULL));
1173
1174                 ReleaseWriteLock(&tvc->lock);
1175                 ObtainReadLock(&afs_xvcache);
1176                 AFS_FAST_RELE(tvc);
1177             }
1178             didCore = 0;
1179             if ((tvc->states & CCore) || (tvc->states & CUnlinkedDel)) {
1180                 /*
1181                  * Don't let it evaporate in case someone else is in
1182                  * this code.  Also, drop the afs_xvcache lock while
1183                  * getting vcache locks.
1184                  */
1185                 osi_vnhold(tvc, 0);
1186                 ReleaseReadLock(&afs_xvcache);
1187 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
1188                 afs_BozonLock(&tvc->pvnLock, tvc);
1189 #endif
1190 #if defined(AFS_SGI_ENV)
1191                 /*
1192                  * That's because if we come in via the CUnlinkedDel bit state path we'll be have 0 refcnt
1193                  */
1194                 osi_Assert(VREFCOUNT(tvc) > 0);
1195                 AFS_RWLOCK((vnode_t *) tvc, VRWLOCK_WRITE);
1196 #endif
1197                 ObtainWriteLock(&tvc->lock, 52);
1198                 if (tvc->states & CCore) {
1199                     tvc->states &= ~CCore;
1200                     /* XXXX Find better place-holder for cred XXXX */
1201                     cred = (struct AFS_UCRED *)tvc->linkData;
1202                     tvc->linkData = NULL;       /* XXX */
1203                     afs_InitReq(&ureq, cred);
1204                     afs_Trace2(afs_iclSetp, CM_TRACE_ACTCCORE,
1205                                ICL_TYPE_POINTER, tvc, ICL_TYPE_INT32,
1206                                tvc->execsOrWriters);
1207                     code = afs_StoreOnLastReference(tvc, &ureq);
1208                     ReleaseWriteLock(&tvc->lock);
1209 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
1210                     afs_BozonUnlock(&tvc->pvnLock, tvc);
1211 #endif
1212                     hzero(tvc->flushDV);
1213                     osi_FlushText(tvc);
1214                     didCore = 1;
1215                     if (code && code != VNOVNODE) {
1216                         afs_StoreWarn(code, tvc->fid.Fid.Volume,
1217                                       /* /dev/console */ 1);
1218                     }
1219                 } else if (tvc->states & CUnlinkedDel) {
1220                     /*
1221                      * Ignore errors
1222                      */
1223                     ReleaseWriteLock(&tvc->lock);
1224 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
1225                     afs_BozonUnlock(&tvc->pvnLock, tvc);
1226 #endif
1227 #if defined(AFS_SGI_ENV)
1228                     AFS_RWUNLOCK((vnode_t *) tvc, VRWLOCK_WRITE);
1229 #endif
1230                     afs_remunlink(tvc, 0);
1231 #if defined(AFS_SGI_ENV)
1232                     AFS_RWLOCK((vnode_t *) tvc, VRWLOCK_WRITE);
1233 #endif
1234                 } else {
1235                     /* lost (or won, perhaps) the race condition */
1236                     ReleaseWriteLock(&tvc->lock);
1237 #if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
1238                     afs_BozonUnlock(&tvc->pvnLock, tvc);
1239 #endif
1240                 }
1241 #if defined(AFS_SGI_ENV)
1242                 AFS_RWUNLOCK((vnode_t *) tvc, VRWLOCK_WRITE);
1243 #endif
1244                 ObtainReadLock(&afs_xvcache);
1245                 AFS_FAST_RELE(tvc);
1246                 if (didCore) {
1247 #ifdef  AFS_GFS_ENV
1248                     VREFCOUNT_DEC(tvc);
1249 #else
1250                     AFS_RELE(AFSTOV(tvc));
1251 #endif
1252                     /* Matches write code setting CCore flag */
1253                     crfree(cred);
1254                 }
1255             }
1256 #ifdef AFS_DARWIN_ENV
1257             if (VREFCOUNT(tvc) == 1 + DARWIN_REFBASE
1258                 && UBCINFOEXISTS(&tvc->v)) {
1259                 if (tvc->opens)
1260                     panic("flushactive open, hasubc, but refcnt 1");
1261                 osi_VM_TryReclaim(tvc, 0);
1262             }
1263 #endif
1264         }
1265     }
1266     ReleaseReadLock(&afs_xvcache);
1267 }
1268
1269
1270 /*
1271  * afs_VerifyVCache
1272  *
1273  * Description:
1274  *      Make sure a cache entry is up-to-date status-wise.
1275  *
1276  * NOTE: everywhere that calls this can potentially be sped up
1277  *       by checking CStatd first, and avoiding doing the InitReq
1278  *       if this is up-to-date.
1279  *
1280  *  Anymore, the only places that call this KNOW already that the
1281  *  vcache is not up-to-date, so we don't screw around.
1282  *
1283  * Parameters:
1284  *      avc  : Ptr to vcache entry to verify.
1285  *      areq : ???
1286  */
1287
1288 int
1289 afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
1290 {
1291     register struct vcache *tvc;
1292
1293     AFS_STATCNT(afs_VerifyVCache);
1294
1295 #if defined(AFS_OSF_ENV)
1296     ObtainReadLock(&avc->lock);
1297     if (afs_IsWired(avc)) {
1298         ReleaseReadLock(&avc->lock);
1299         return 0;
1300     }
1301     ReleaseReadLock(&avc->lock);
1302 #endif /* AFS_OSF_ENV */
1303     /* otherwise we must fetch the status info */
1304
1305     ObtainWriteLock(&avc->lock, 53);
1306     if (avc->states & CStatd) {
1307         ReleaseWriteLock(&avc->lock);
1308         return 0;
1309     }
1310     ObtainWriteLock(&afs_xcbhash, 461);
1311     avc->states &= ~(CStatd | CUnique);
1312     avc->callback = NULL;
1313     afs_DequeueCallback(avc);
1314     ReleaseWriteLock(&afs_xcbhash);
1315     ReleaseWriteLock(&avc->lock);
1316
1317     /* since we've been called back, or the callback has expired,
1318      * it's possible that the contents of this directory, or this
1319      * file's name have changed, thus invalidating the dnlc contents.
1320      */
1321     if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
1322         osi_dnlc_purgedp(avc);
1323     else
1324         osi_dnlc_purgevp(avc);
1325
1326     /* fetch the status info */
1327     tvc = afs_GetVCache(&avc->fid, areq, NULL, avc);
1328     if (!tvc)
1329         return ENOENT;
1330     /* Put it back; caller has already incremented vrefCount */
1331     afs_PutVCache(tvc);
1332     return 0;
1333
1334 }                               /*afs_VerifyVCache */
1335
1336
1337 /*
1338  * afs_SimpleVStat
1339  *
1340  * Description:
1341  *      Simple copy of stat info into cache.
1342  *
1343  * Parameters:
1344  *      avc   : Ptr to vcache entry involved.
1345  *      astat : Ptr to stat info to copy.
1346  *
1347  * Environment:
1348  *      Nothing interesting.
1349  *
1350  * Callers:  as of 1992-04-29, only called by WriteVCache
1351  */
1352 static void
1353 afs_SimpleVStat(register struct vcache *avc,
1354                 register struct AFSFetchStatus *astat, struct vrequest *areq)
1355 {
1356     afs_size_t length;
1357     AFS_STATCNT(afs_SimpleVStat);
1358
1359 #ifdef AFS_SGI_ENV
1360     if ((avc->execsOrWriters <= 0) && !afs_DirtyPages(avc)
1361         && !AFS_VN_MAPPED((vnode_t *) avc)) {
1362 #else
1363     if ((avc->execsOrWriters <= 0) && !afs_DirtyPages(avc)) {
1364 #endif
1365 #ifdef AFS_64BIT_CLIENT
1366         FillInt64(length, astat->Length_hi, astat->Length);
1367 #else /* AFS_64BIT_CLIENT */
1368         length = astat->Length;
1369 #endif /* AFS_64BIT_CLIENT */
1370 #if defined(AFS_SGI_ENV)
1371         osi_Assert((valusema(&avc->vc_rwlock) <= 0)
1372                    && (OSI_GET_LOCKID() == avc->vc_rwlockid));
1373         if (length < avc->m.Length) {
1374             vnode_t *vp = (vnode_t *) avc;
1375
1376             osi_Assert(WriteLocked(&avc->lock));
1377             ReleaseWriteLock(&avc->lock);
1378             AFS_GUNLOCK();
1379             PTOSSVP(vp, (off_t) length, (off_t) MAXLONG);
1380             AFS_GLOCK();
1381             ObtainWriteLock(&avc->lock, 67);
1382         }
1383 #endif
1384         /* if writing the file, don't fetch over this value */
1385         afs_Trace3(afs_iclSetp, CM_TRACE_SIMPLEVSTAT, ICL_TYPE_POINTER, avc,
1386                    ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length),
1387                    ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(length));
1388         avc->m.Length = length;
1389         avc->m.Date = astat->ClientModTime;
1390     }
1391     avc->m.Owner = astat->Owner;
1392     avc->m.Group = astat->Group;
1393     avc->m.Mode = astat->UnixModeBits;
1394     if (vType(avc) == VREG) {
1395         avc->m.Mode |= S_IFREG;
1396     } else if (vType(avc) == VDIR) {
1397         avc->m.Mode |= S_IFDIR;
1398     } else if (vType(avc) == VLNK) {
1399         avc->m.Mode |= S_IFLNK;
1400         if ((avc->m.Mode & 0111) == 0)
1401             avc->mvstat = 1;
1402     }
1403     if (avc->states & CForeign) {
1404         struct axscache *ac;
1405         avc->anyAccess = astat->AnonymousAccess;
1406 #ifdef badidea
1407         if ((astat->CallerAccess & ~astat->AnonymousAccess))
1408             /*   USED TO SAY :
1409              * Caller has at least one bit not covered by anonymous, and
1410              * thus may have interesting rights.
1411              *
1412              * HOWEVER, this is a really bad idea, because any access query
1413              * for bits which aren't covered by anonymous, on behalf of a user
1414              * who doesn't have any special rights, will result in an answer of
1415              * the form "I don't know, lets make a FetchStatus RPC and find out!"
1416              * It's an especially bad idea under Ultrix, since (due to the lack of
1417              * a proper access() call) it must perform several afs_access() calls
1418              * in order to create magic mode bits that vary according to who makes
1419              * the call.  In other words, _every_ stat() generates a test for
1420              * writeability...
1421              */
1422 #endif /* badidea */
1423             if (avc->Access && (ac = afs_FindAxs(avc->Access, areq->uid)))
1424                 ac->axess = astat->CallerAccess;
1425             else                /* not found, add a new one if possible */
1426                 afs_AddAxs(avc->Access, areq->uid, astat->CallerAccess);
1427     }
1428
1429
1430 }                               /*afs_SimpleVStat */
1431
1432
1433 /*
1434  * afs_WriteVCache
1435  *
1436  * Description:
1437  *      Store the status info *only* back to the server for a
1438  *      fid/vrequest.
1439  *
1440  * Parameters:
1441  *      avc     : Ptr to the vcache entry.
1442  *      astatus : Ptr to the status info to store.
1443  *      areq    : Ptr to the associated vrequest.
1444  *
1445  * Environment:
1446  *      Must be called with a shared lock held on the vnode.
1447  */
1448
1449 int
1450 afs_WriteVCache(register struct vcache *avc,
1451                 register struct AFSStoreStatus *astatus,
1452                 struct vrequest *areq)
1453 {
1454     afs_int32 code;
1455     struct conn *tc;
1456     struct AFSFetchStatus OutStatus;
1457     struct AFSVolSync tsync;
1458     XSTATS_DECLS;
1459     AFS_STATCNT(afs_WriteVCache);
1460     afs_Trace2(afs_iclSetp, CM_TRACE_WVCACHE, ICL_TYPE_POINTER, avc,
1461                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length));
1462
1463     do {
1464         tc = afs_Conn(&avc->fid, areq, SHARED_LOCK);
1465         if (tc) {
1466             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_STORESTATUS);
1467             RX_AFS_GUNLOCK();
1468             code =
1469                 RXAFS_StoreStatus(tc->id, (struct AFSFid *)&avc->fid.Fid,
1470                                   astatus, &OutStatus, &tsync);
1471             RX_AFS_GLOCK();
1472             XSTATS_END_TIME;
1473         } else
1474             code = -1;
1475     } while (afs_Analyze
1476              (tc, code, &avc->fid, areq, AFS_STATS_FS_RPCIDX_STORESTATUS,
1477               SHARED_LOCK, NULL));
1478
1479     UpgradeSToWLock(&avc->lock, 20);
1480     if (code == 0) {
1481         /* success, do the changes locally */
1482         afs_SimpleVStat(avc, &OutStatus, areq);
1483         /*
1484          * Update the date, too.  SimpleVStat didn't do this, since
1485          * it thought we were doing this after fetching new status
1486          * over a file being written.
1487          */
1488         avc->m.Date = OutStatus.ClientModTime;
1489     } else {
1490         /* failure, set up to check with server next time */
1491         ObtainWriteLock(&afs_xcbhash, 462);
1492         afs_DequeueCallback(avc);
1493         avc->states &= ~(CStatd | CUnique);     /* turn off stat valid flag */
1494         ReleaseWriteLock(&afs_xcbhash);
1495         if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
1496             osi_dnlc_purgedp(avc);      /* if it (could be) a directory */
1497     }
1498     ConvertWToSLock(&avc->lock);
1499     return code;
1500
1501 }                               /*afs_WriteVCache */
1502
1503 /*
1504  * afs_ProcessFS
1505  *
1506  * Description:
1507  *      Copy astat block into vcache info
1508  *
1509  * Parameters:
1510  *      avc   : Ptr to vcache entry.
1511  *      astat : Ptr to stat block to copy in.
1512  *      areq  : Ptr to associated request.
1513  *
1514  * Environment:
1515  *      Must be called under a write lock
1516  *
1517  * Note: this code may get dataversion and length out of sync if the file has
1518  *       been modified.  This is less than ideal.  I haven't thought about
1519  *       it sufficiently to be certain that it is adequate.
1520  */
1521 void
1522 afs_ProcessFS(register struct vcache *avc,
1523               register struct AFSFetchStatus *astat, struct vrequest *areq)
1524 {
1525     afs_size_t length;
1526     AFS_STATCNT(afs_ProcessFS);
1527
1528 #ifdef AFS_64BIT_CLIENT
1529     FillInt64(length, astat->Length_hi, astat->Length);
1530 #else /* AFS_64BIT_CLIENT */
1531     length = astat->Length;
1532 #endif /* AFS_64BIT_CLIENT */
1533     /* WARNING: afs_DoBulkStat uses the Length field to store a sequence
1534      * number for each bulk status request. Under no circumstances
1535      * should afs_DoBulkStat store a sequence number if the new
1536      * length will be ignored when afs_ProcessFS is called with
1537      * new stats. If you change the following conditional then you
1538      * also need to change the conditional in afs_DoBulkStat.  */
1539 #ifdef AFS_SGI_ENV
1540     if ((avc->execsOrWriters <= 0) && !afs_DirtyPages(avc)
1541         && !AFS_VN_MAPPED((vnode_t *) avc)) {
1542 #else
1543     if ((avc->execsOrWriters <= 0) && !afs_DirtyPages(avc)) {
1544 #endif
1545         /* if we're writing or mapping this file, don't fetch over these
1546          *  values.
1547          */
1548         afs_Trace3(afs_iclSetp, CM_TRACE_PROCESSFS, ICL_TYPE_POINTER, avc,
1549                    ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length),
1550                    ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(length));
1551         avc->m.Length = length;
1552         avc->m.Date = astat->ClientModTime;
1553     }
1554     hset64(avc->m.DataVersion, astat->dataVersionHigh, astat->DataVersion);
1555     avc->m.Owner = astat->Owner;
1556     avc->m.Mode = astat->UnixModeBits;
1557     avc->m.Group = astat->Group;
1558     avc->m.LinkCount = astat->LinkCount;
1559     if (astat->FileType == File) {
1560         vSetType(avc, VREG);
1561         avc->m.Mode |= S_IFREG;
1562     } else if (astat->FileType == Directory) {
1563         vSetType(avc, VDIR);
1564         avc->m.Mode |= S_IFDIR;
1565     } else if (astat->FileType == SymbolicLink) {
1566         if (afs_fakestat_enable && (avc->m.Mode & 0111) == 0) {
1567             vSetType(avc, VDIR);
1568             avc->m.Mode |= S_IFDIR;
1569         } else {
1570             vSetType(avc, VLNK);
1571             avc->m.Mode |= S_IFLNK;
1572         }
1573         if ((avc->m.Mode & 0111) == 0) {
1574             avc->mvstat = 1;
1575         }
1576     }
1577     avc->anyAccess = astat->AnonymousAccess;
1578 #ifdef badidea
1579     if ((astat->CallerAccess & ~astat->AnonymousAccess))
1580         /*   USED TO SAY :
1581          * Caller has at least one bit not covered by anonymous, and
1582          * thus may have interesting rights.
1583          *
1584          * HOWEVER, this is a really bad idea, because any access query
1585          * for bits which aren't covered by anonymous, on behalf of a user
1586          * who doesn't have any special rights, will result in an answer of
1587          * the form "I don't know, lets make a FetchStatus RPC and find out!"
1588          * It's an especially bad idea under Ultrix, since (due to the lack of
1589          * a proper access() call) it must perform several afs_access() calls
1590          * in order to create magic mode bits that vary according to who makes
1591          * the call.  In other words, _every_ stat() generates a test for
1592          * writeability...
1593          */
1594 #endif /* badidea */
1595     {
1596         struct axscache *ac;
1597         if (avc->Access && (ac = afs_FindAxs(avc->Access, areq->uid)))
1598             ac->axess = astat->CallerAccess;
1599         else                    /* not found, add a new one if possible */
1600             afs_AddAxs(avc->Access, areq->uid, astat->CallerAccess);
1601     }
1602 #ifdef AFS_LINUX22_ENV
1603     vcache2inode(avc);          /* Set the inode attr cache */
1604 #endif
1605 #ifdef AFS_DARWIN_ENV
1606     osi_VM_Setup(avc, 1);
1607 #endif
1608
1609 }                               /*afs_ProcessFS */
1610
1611
1612 int
1613 afs_RemoteLookup(register struct VenusFid *afid, struct vrequest *areq,
1614                  char *name, struct VenusFid *nfid,
1615                  struct AFSFetchStatus *OutStatusp,
1616                  struct AFSCallBack *CallBackp, struct server **serverp,
1617                  struct AFSVolSync *tsyncp)
1618 {
1619     afs_int32 code;
1620     afs_uint32 start;
1621     register struct conn *tc;
1622     struct AFSFetchStatus OutDirStatus;
1623     XSTATS_DECLS;
1624     if (!name)
1625         name = "";              /* XXX */
1626     do {
1627         tc = afs_Conn(afid, areq, SHARED_LOCK);
1628         if (tc) {
1629             if (serverp)
1630                 *serverp = tc->srvr->server;
1631             start = osi_Time();
1632             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_XLOOKUP);
1633             RX_AFS_GUNLOCK();
1634             code =
1635                 RXAFS_Lookup(tc->id, (struct AFSFid *)&afid->Fid, name,
1636                              (struct AFSFid *)&nfid->Fid, OutStatusp,
1637                              &OutDirStatus, CallBackp, tsyncp);
1638             RX_AFS_GLOCK();
1639             XSTATS_END_TIME;
1640         } else
1641             code = -1;
1642     } while (afs_Analyze
1643              (tc, code, afid, areq, AFS_STATS_FS_RPCIDX_XLOOKUP, SHARED_LOCK,
1644               NULL));
1645
1646     return code;
1647 }
1648
1649
1650 /*
1651  * afs_GetVCache
1652  *
1653  * Description:
1654  *      Given a file id and a vrequest structure, fetch the status
1655  *      information associated with the file.
1656  *
1657  * Parameters:
1658  *      afid : File ID.
1659  *      areq : Ptr to associated vrequest structure, specifying the
1660  *              user whose authentication tokens will be used.
1661  *      avc  : caller may already have a vcache for this file, which is
1662  *             already held.
1663  *
1664  * Environment:
1665  *      The cache entry is returned with an increased vrefCount field.
1666  *      The entry must be discarded by calling afs_PutVCache when you
1667  *      are through using the pointer to the cache entry.
1668  *
1669  *      You should not hold any locks when calling this function, except
1670  *      locks on other vcache entries.  If you lock more than one vcache
1671  *      entry simultaneously, you should lock them in this order:
1672  *
1673  *          1. Lock all files first, then directories.
1674  *          2.  Within a particular type, lock entries in Fid.Vnode order.
1675  *
1676  *      This locking hierarchy is convenient because it allows locking
1677  *      of a parent dir cache entry, given a file (to check its access
1678  *      control list).  It also allows renames to be handled easily by
1679  *      locking directories in a constant order.
1680  * NB.  NewVCache -> FlushVCache presently (4/10/95) drops the xvcache lock.
1681  */
1682    /* might have a vcache structure already, which must
1683     * already be held by the caller */
1684
1685 struct vcache *
1686 afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
1687               afs_int32 * cached, struct vcache *avc)
1688 {
1689
1690     afs_int32 code, newvcache = 0;
1691     register struct vcache *tvc;
1692     struct volume *tvp;
1693     afs_int32 retry;
1694
1695     AFS_STATCNT(afs_GetVCache);
1696
1697     if (cached)
1698         *cached = 0;            /* Init just in case */
1699
1700 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
1701   loop:
1702 #endif
1703
1704     ObtainSharedLock(&afs_xvcache, 5);
1705
1706     tvc = afs_FindVCache(afid, &retry, DO_STATS | DO_VLRU);
1707     if (tvc && retry) {
1708 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
1709         ReleaseSharedLock(&afs_xvcache);
1710         spunlock_psema(tvc->v.v_lock, retry, &tvc->v.v_sync, PINOD);
1711         goto loop;
1712 #endif
1713     }
1714
1715     if (tvc) {
1716         if (cached)
1717             *cached = 1;
1718         if (tvc->states & CStatd) {
1719             ReleaseSharedLock(&afs_xvcache);
1720             return tvc;
1721         }
1722     } else {
1723         UpgradeSToWLock(&afs_xvcache, 21);
1724
1725         /* no cache entry, better grab one */
1726         tvc = afs_NewVCache(afid, NULL);
1727         newvcache = 1;
1728
1729         ConvertWToSLock(&afs_xvcache);
1730         afs_stats_cmperf.vcacheMisses++;
1731     }
1732
1733     ReleaseSharedLock(&afs_xvcache);
1734
1735     ObtainWriteLock(&tvc->lock, 54);
1736
1737     if (tvc->states & CStatd) {
1738 #ifdef AFS_LINUX22_ENV
1739         vcache2inode(tvc);
1740 #endif
1741         ReleaseWriteLock(&tvc->lock);
1742 #ifdef AFS_DARWIN_ENV
1743         osi_VM_Setup(tvc, 0);
1744 #endif
1745         return tvc;
1746     }
1747 #if defined(AFS_OSF_ENV)
1748     if (afs_IsWired(tvc)) {
1749         ReleaseWriteLock(&tvc->lock);
1750         return tvc;
1751     }
1752 #endif /* AFS_OSF_ENV */
1753 #ifdef AFS_OBSD_ENV
1754     VOP_LOCK(AFSTOV(tvc), LK_EXCLUSIVE | LK_RETRY, curproc);
1755     uvm_vnp_uncache(AFSTOV(tvc));
1756     VOP_UNLOCK(AFSTOV(tvc), 0, curproc);
1757 #endif
1758 #ifdef AFS_FBSD_ENV
1759     /*
1760      * XXX - I really don't like this.  Should try to understand better.
1761      * It seems that sometimes, when we get called, we already hold the
1762      * lock on the vnode (e.g., from afs_getattr via afs_VerifyVCache).
1763      * We can't drop the vnode lock, because that could result in a race.
1764      * Sometimes, though, we get here and don't hold the vnode lock.
1765      * I hate code paths that sometimes hold locks and sometimes don't.
1766      * In any event, the dodge we use here is to check whether the vnode
1767      * is locked, and if it isn't, then we gain and drop it around the call
1768      * to vinvalbuf; otherwise, we leave it alone.
1769      */
1770     {
1771         struct vnode *vp;
1772         int iheldthelock;
1773
1774         vp = AFSTOV(tvc);
1775 #ifdef AFS_FBSD50_ENV
1776         iheldthelock = VOP_ISLOCKED(vp, curthread);
1777         if (!iheldthelock)
1778             vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, curthread);
1779         vinvalbuf(vp, V_SAVE, osi_curcred(), curthread, PINOD, 0);
1780         if (!iheldthelock)
1781             VOP_UNLOCK(vp, LK_EXCLUSIVE, curthread);
1782 #else
1783         iheldthelock = VOP_ISLOCKED(vp, curproc);
1784         if (!iheldthelock)
1785             vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, curproc);
1786         vinvalbuf(vp, V_SAVE, osi_curcred(), curproc, PINOD, 0);
1787         if (!iheldthelock)
1788             VOP_UNLOCK(vp, LK_EXCLUSIVE, curproc);
1789 #endif
1790     }
1791 #endif
1792
1793     ObtainWriteLock(&afs_xcbhash, 464);
1794     tvc->states &= ~CUnique;
1795     tvc->callback = 0;
1796     afs_DequeueCallback(tvc);
1797     ReleaseWriteLock(&afs_xcbhash);
1798
1799     /* It is always appropriate to throw away all the access rights? */
1800     afs_FreeAllAxs(&(tvc->Access));
1801     tvp = afs_GetVolume(afid, areq, READ_LOCK); /* copy useful per-volume info */
1802     if (tvp) {
1803         if ((tvp->states & VForeign)) {
1804             if (newvcache)
1805                 tvc->states |= CForeign;
1806             if (newvcache && (tvp->rootVnode == afid->Fid.Vnode)
1807                 && (tvp->rootUnique == afid->Fid.Unique)) {
1808                 tvc->mvstat = 2;
1809             }
1810         }
1811         if (tvp->states & VRO)
1812             tvc->states |= CRO;
1813         if (tvp->states & VBackup)
1814             tvc->states |= CBackup;
1815         /* now copy ".." entry back out of volume structure, if necessary */
1816         if (tvc->mvstat == 2 && tvp->dotdot.Fid.Volume != 0) {
1817             if (!tvc->mvid)
1818                 tvc->mvid = (struct VenusFid *)
1819                     osi_AllocSmallSpace(sizeof(struct VenusFid));
1820             *tvc->mvid = tvp->dotdot;
1821         }
1822         afs_PutVolume(tvp, READ_LOCK);
1823     }
1824
1825     /* stat the file */
1826     afs_RemoveVCB(afid);
1827     {
1828         struct AFSFetchStatus OutStatus;
1829
1830         if (afs_DynrootNewVnode(tvc, &OutStatus)) {
1831             afs_ProcessFS(tvc, &OutStatus, areq);
1832             tvc->states |= CStatd | CUnique;
1833             code = 0;
1834         } else {
1835             code = afs_FetchStatus(tvc, afid, areq, &OutStatus);
1836         }
1837     }
1838
1839     if (code) {
1840         ReleaseWriteLock(&tvc->lock);
1841
1842         ObtainReadLock(&afs_xvcache);
1843         AFS_FAST_RELE(tvc);
1844         ReleaseReadLock(&afs_xvcache);
1845         return NULL;
1846     }
1847
1848     ReleaseWriteLock(&tvc->lock);
1849     return tvc;
1850
1851 }                               /*afs_GetVCache */
1852
1853
1854
1855 struct vcache *
1856 afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
1857                  afs_int32 * cached, struct vcache *adp, char *aname)
1858 {
1859     afs_int32 code, now, newvcache = 0;
1860     struct VenusFid nfid;
1861     register struct vcache *tvc;
1862     struct volume *tvp;
1863     struct AFSFetchStatus OutStatus;
1864     struct AFSCallBack CallBack;
1865     struct AFSVolSync tsync;
1866     struct server *serverp = 0;
1867     afs_int32 origCBs;
1868     afs_int32 retry;
1869
1870     AFS_STATCNT(afs_GetVCache);
1871     if (cached)
1872         *cached = 0;            /* Init just in case */
1873
1874 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
1875   loop1:
1876 #endif
1877
1878     ObtainReadLock(&afs_xvcache);
1879     tvc = afs_FindVCache(afid, &retry, DO_STATS /* no vlru */ );
1880
1881     if (tvc) {
1882         ReleaseReadLock(&afs_xvcache);
1883         if (retry) {
1884 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
1885             spunlock_psema(tvc->v.v_lock, retry, &tvc->v.v_sync, PINOD);
1886             goto loop1;
1887 #endif
1888         }
1889         ObtainReadLock(&tvc->lock);
1890
1891         if (tvc->states & CStatd) {
1892             if (cached) {
1893                 *cached = 1;
1894             }
1895             ReleaseReadLock(&tvc->lock);
1896             return tvc;
1897         }
1898         tvc->states &= ~CUnique;
1899
1900         ReleaseReadLock(&tvc->lock);
1901         ObtainReadLock(&afs_xvcache);
1902         AFS_FAST_RELE(tvc);
1903     }
1904     /* if (tvc) */
1905     ReleaseReadLock(&afs_xvcache);
1906
1907     /* lookup the file */
1908     nfid = *afid;
1909     now = osi_Time();
1910     origCBs = afs_allCBs;       /* if anything changes, we don't have a cb */
1911     code =
1912         afs_RemoteLookup(&adp->fid, areq, aname, &nfid, &OutStatus, &CallBack,
1913                          &serverp, &tsync);
1914
1915 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
1916   loop2:
1917 #endif
1918
1919     ObtainSharedLock(&afs_xvcache, 6);
1920     tvc = afs_FindVCache(&nfid, &retry, DO_VLRU /* no xstats now */ );
1921     if (tvc && retry) {
1922 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
1923         ReleaseSharedLock(&afs_xvcache);
1924         spunlock_psema(tvc->v.v_lock, retry, &tvc->v.v_sync, PINOD);
1925         goto loop2;
1926 #endif
1927     }
1928
1929     if (!tvc) {
1930         /* no cache entry, better grab one */
1931         UpgradeSToWLock(&afs_xvcache, 22);
1932         tvc = afs_NewVCache(&nfid, serverp);
1933         newvcache = 1;
1934         ConvertWToSLock(&afs_xvcache);
1935     }
1936
1937     ReleaseSharedLock(&afs_xvcache);
1938     ObtainWriteLock(&tvc->lock, 55);
1939
1940     /* It is always appropriate to throw away all the access rights? */
1941     afs_FreeAllAxs(&(tvc->Access));
1942     tvp = afs_GetVolume(afid, areq, READ_LOCK); /* copy useful per-vol info */
1943     if (tvp) {
1944         if ((tvp->states & VForeign)) {
1945             if (newvcache)
1946                 tvc->states |= CForeign;
1947             if (newvcache && (tvp->rootVnode == afid->Fid.Vnode)
1948                 && (tvp->rootUnique == afid->Fid.Unique))
1949                 tvc->mvstat = 2;
1950         }
1951         if (tvp->states & VRO)
1952             tvc->states |= CRO;
1953         if (tvp->states & VBackup)
1954             tvc->states |= CBackup;
1955         /* now copy ".." entry back out of volume structure, if necessary */
1956         if (tvc->mvstat == 2 && tvp->dotdot.Fid.Volume != 0) {
1957             if (!tvc->mvid)
1958                 tvc->mvid = (struct VenusFid *)
1959                     osi_AllocSmallSpace(sizeof(struct VenusFid));
1960             *tvc->mvid = tvp->dotdot;
1961         }
1962     }
1963
1964     if (code) {
1965         ObtainWriteLock(&afs_xcbhash, 465);
1966         afs_DequeueCallback(tvc);
1967         tvc->states &= ~(CStatd | CUnique);
1968         ReleaseWriteLock(&afs_xcbhash);
1969         if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
1970             osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
1971         if (tvp)
1972             afs_PutVolume(tvp, READ_LOCK);
1973         ReleaseWriteLock(&tvc->lock);
1974         ObtainReadLock(&afs_xvcache);
1975         AFS_FAST_RELE(tvc);
1976         ReleaseReadLock(&afs_xvcache);
1977         return NULL;
1978     }
1979
1980     ObtainWriteLock(&afs_xcbhash, 466);
1981     if (origCBs == afs_allCBs) {
1982         if (CallBack.ExpirationTime) {
1983             tvc->callback = serverp;
1984             tvc->cbExpires = CallBack.ExpirationTime + now;
1985             tvc->states |= CStatd | CUnique;
1986             tvc->states &= ~CBulkFetching;
1987             afs_QueueCallback(tvc, CBHash(CallBack.ExpirationTime), tvp);
1988         } else if (tvc->states & CRO) {
1989             /* adapt gives us an hour. */
1990             tvc->cbExpires = 3600 + osi_Time();
1991              /*XXX*/ tvc->states |= CStatd | CUnique;
1992             tvc->states &= ~CBulkFetching;
1993             afs_QueueCallback(tvc, CBHash(3600), tvp);
1994         } else {
1995             tvc->callback = NULL;
1996             afs_DequeueCallback(tvc);
1997             tvc->states &= ~(CStatd | CUnique);
1998             if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
1999                 osi_dnlc_purgedp(tvc);  /* if it (could be) a directory */
2000         }
2001     } else {
2002         afs_DequeueCallback(tvc);
2003         tvc->states &= ~CStatd;
2004         tvc->states &= ~CUnique;
2005         tvc->callback = NULL;
2006         if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
2007             osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
2008     }
2009     ReleaseWriteLock(&afs_xcbhash);
2010     if (tvp)
2011         afs_PutVolume(tvp, READ_LOCK);
2012     afs_ProcessFS(tvc, &OutStatus, areq);
2013
2014     ReleaseWriteLock(&tvc->lock);
2015     return tvc;
2016
2017 }
2018
2019 struct vcache *
2020 afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
2021                   afs_int32 * cached, struct volume *tvolp)
2022 {
2023     afs_int32 code = 0, i, newvcache = 0, haveStatus = 0;
2024     afs_int32 getNewFid = 0;
2025     afs_uint32 start;
2026     struct VenusFid nfid;
2027     register struct vcache *tvc;
2028     struct server *serverp = 0;
2029     struct AFSFetchStatus OutStatus;
2030     struct AFSCallBack CallBack;
2031     struct AFSVolSync tsync;
2032     int origCBs = 0;
2033
2034     start = osi_Time();
2035
2036   newmtpt:
2037     if (!tvolp->rootVnode || getNewFid) {
2038         struct VenusFid tfid;
2039
2040         tfid = *afid;
2041         tfid.Fid.Vnode = 0;     /* Means get rootfid of volume */
2042         origCBs = afs_allCBs;   /* ignore InitCallBackState */
2043         code =
2044             afs_RemoteLookup(&tfid, areq, NULL, &nfid, &OutStatus, &CallBack,
2045                              &serverp, &tsync);
2046         if (code) {
2047             return NULL;
2048         }
2049 /*      ReleaseReadLock(&tvolp->lock);           */
2050         ObtainWriteLock(&tvolp->lock, 56);
2051         tvolp->rootVnode = afid->Fid.Vnode = nfid.Fid.Vnode;
2052         tvolp->rootUnique = afid->Fid.Unique = nfid.Fid.Unique;
2053         ReleaseWriteLock(&tvolp->lock);
2054 /*      ObtainReadLock(&tvolp->lock);*/
2055         haveStatus = 1;
2056     } else {
2057         afid->Fid.Vnode = tvolp->rootVnode;
2058         afid->Fid.Unique = tvolp->rootUnique;
2059     }
2060
2061     ObtainSharedLock(&afs_xvcache, 7);
2062     i = VCHash(afid);
2063     for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
2064         if (!FidCmp(&(tvc->fid), afid)) {
2065 #ifdef  AFS_OSF_ENV
2066             /* Grab this vnode, possibly reactivating from the free list */
2067             /* for the present (95.05.25) everything on the hash table is
2068              * definitively NOT in the free list -- at least until afs_reclaim
2069              * can be safely implemented */
2070             int vg;
2071             AFS_GUNLOCK();
2072             vg = vget(AFSTOV(tvc));     /* this bumps ref count */
2073             AFS_GLOCK();
2074             if (vg)
2075                 continue;
2076 #endif /* AFS_OSF_ENV */
2077 #ifdef AFS_DARWIN14_ENV
2078             /* It'd really suck if we allowed duplicate vcaches for the 
2079              * same fid to happen. Wonder if this will work? */
2080             struct vnode *vp = AFSTOV(tvc);
2081             if (vp->v_flag & (VXLOCK | VORECLAIM | VTERMINATE)) {
2082                 printf("precluded FindVCache on %x (%d:%d:%d)\n",
2083                        vp, tvc->fid.Fid.Volume, tvc->fid.Fid.Vnode,
2084                        tvc->fid.Fid.Unique);
2085                 simple_lock(&vp->v_interlock);
2086                 SET(vp->v_flag, VTERMWANT);
2087                 simple_unlock(&vp->v_interlock);
2088                 (void)tsleep((caddr_t) & vp->v_ubcinfo, PINOD, "vget1", 0);
2089                 printf("VTERMWANT ended on %x\n", vp);
2090                 continue;
2091             }
2092 #endif
2093             break;
2094         }
2095     }
2096
2097     if (!haveStatus && (!tvc || !(tvc->states & CStatd))) {
2098         /* Mount point no longer stat'd or unknown. FID may have changed. */
2099 #ifdef AFS_OSF_ENV
2100         if (tvc)
2101             AFS_RELE(AFSTOV(tvc));
2102 #endif
2103         tvc = NULL;
2104         getNewFid = 1;
2105         ReleaseSharedLock(&afs_xvcache);
2106         goto newmtpt;
2107     }
2108
2109     if (!tvc) {
2110         UpgradeSToWLock(&afs_xvcache, 23);
2111         /* no cache entry, better grab one */
2112         tvc = afs_NewVCache(afid, NULL);
2113         newvcache = 1;
2114         afs_stats_cmperf.vcacheMisses++;
2115     } else {
2116         if (cached)
2117             *cached = 1;
2118         afs_stats_cmperf.vcacheHits++;
2119 #ifdef  AFS_OSF_ENV
2120         /* we already bumped the ref count in the for loop above */
2121 #else /* AFS_OSF_ENV */
2122         osi_vnhold(tvc, 0);
2123 #endif
2124         UpgradeSToWLock(&afs_xvcache, 24);
2125         if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
2126             refpanic("GRVC VLRU inconsistent0");
2127         }
2128         if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
2129             refpanic("GRVC VLRU inconsistent1");
2130         }
2131         if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
2132             refpanic("GRVC VLRU inconsistent2");
2133         }
2134         QRemove(&tvc->vlruq);   /* move to lruq head */
2135         QAdd(&VLRU, &tvc->vlruq);
2136         if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
2137             refpanic("GRVC VLRU inconsistent3");
2138         }
2139         if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
2140             refpanic("GRVC VLRU inconsistent4");
2141         }
2142         if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
2143             refpanic("GRVC VLRU inconsistent5");
2144         }
2145         vcachegen++;
2146     }
2147
2148     ReleaseWriteLock(&afs_xvcache);
2149
2150     if (tvc->states & CStatd) {
2151         return tvc;
2152     } else {
2153
2154         ObtainReadLock(&tvc->lock);
2155         tvc->states &= ~CUnique;
2156         tvc->callback = NULL;   /* redundant, perhaps */
2157         ReleaseReadLock(&tvc->lock);
2158     }
2159
2160     ObtainWriteLock(&tvc->lock, 57);
2161
2162     /* It is always appropriate to throw away all the access rights? */
2163     afs_FreeAllAxs(&(tvc->Access));
2164
2165     if (newvcache)
2166         tvc->states |= CForeign;
2167     if (tvolp->states & VRO)
2168         tvc->states |= CRO;
2169     if (tvolp->states & VBackup)
2170         tvc->states |= CBackup;
2171     /* now copy ".." entry back out of volume structure, if necessary */
2172     if (newvcache && (tvolp->rootVnode == afid->Fid.Vnode)
2173         && (tvolp->rootUnique == afid->Fid.Unique)) {
2174         tvc->mvstat = 2;
2175     }
2176     if (tvc->mvstat == 2 && tvolp->dotdot.Fid.Volume != 0) {
2177         if (!tvc->mvid)
2178             tvc->mvid = (struct VenusFid *)
2179                 osi_AllocSmallSpace(sizeof(struct VenusFid));
2180         *tvc->mvid = tvolp->dotdot;
2181     }
2182
2183     /* stat the file */
2184     afs_RemoveVCB(afid);
2185
2186     if (!haveStatus) {
2187         struct VenusFid tfid;
2188
2189         tfid = *afid;
2190         tfid.Fid.Vnode = 0;     /* Means get rootfid of volume */
2191         origCBs = afs_allCBs;   /* ignore InitCallBackState */
2192         code =
2193             afs_RemoteLookup(&tfid, areq, NULL, &nfid, &OutStatus, &CallBack,
2194                              &serverp, &tsync);
2195     }
2196
2197     if (code) {
2198         ObtainWriteLock(&afs_xcbhash, 467);
2199         afs_DequeueCallback(tvc);
2200         tvc->callback = NULL;
2201         tvc->states &= ~(CStatd | CUnique);
2202         ReleaseWriteLock(&afs_xcbhash);
2203         if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
2204             osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
2205         ReleaseWriteLock(&tvc->lock);
2206         ObtainReadLock(&afs_xvcache);
2207         AFS_FAST_RELE(tvc);
2208         ReleaseReadLock(&afs_xvcache);
2209         return NULL;
2210     }
2211
2212     ObtainWriteLock(&afs_xcbhash, 468);
2213     if (origCBs == afs_allCBs) {
2214         tvc->states |= CTruth;
2215         tvc->callback = serverp;
2216         if (CallBack.ExpirationTime != 0) {
2217             tvc->cbExpires = CallBack.ExpirationTime + start;
2218             tvc->states |= CStatd;
2219             tvc->states &= ~CBulkFetching;
2220             afs_QueueCallback(tvc, CBHash(CallBack.ExpirationTime), tvolp);
2221         } else if (tvc->states & CRO) {
2222             /* adapt gives us an hour. */
2223             tvc->cbExpires = 3600 + osi_Time();
2224              /*XXX*/ tvc->states |= CStatd;
2225             tvc->states &= ~CBulkFetching;
2226             afs_QueueCallback(tvc, CBHash(3600), tvolp);
2227         }
2228     } else {
2229         afs_DequeueCallback(tvc);
2230         tvc->callback = NULL;
2231         tvc->states &= ~(CStatd | CUnique);
2232         if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
2233             osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
2234     }
2235     ReleaseWriteLock(&afs_xcbhash);
2236     afs_ProcessFS(tvc, &OutStatus, areq);
2237
2238     ReleaseWriteLock(&tvc->lock);
2239     return tvc;
2240 }
2241
2242
2243
2244 /*
2245  * must be called with avc write-locked
2246  * don't absolutely have to invalidate the hint unless the dv has
2247  * changed, but be sure to get it right else there will be consistency bugs.
2248  */
2249 afs_int32
2250 afs_FetchStatus(struct vcache * avc, struct VenusFid * afid,
2251                 struct vrequest * areq, struct AFSFetchStatus * Outsp)
2252 {
2253     int code;
2254     afs_uint32 start = 0;
2255     register struct conn *tc;
2256     struct AFSCallBack CallBack;
2257     struct AFSVolSync tsync;
2258     struct volume *volp;
2259     XSTATS_DECLS;
2260     do {
2261         tc = afs_Conn(afid, areq, SHARED_LOCK);
2262         avc->quick.stamp = 0;
2263         avc->h1.dchint = NULL;  /* invalidate hints */
2264         if (tc) {
2265             avc->callback = tc->srvr->server;
2266             start = osi_Time();
2267             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_FETCHSTATUS);
2268             RX_AFS_GUNLOCK();
2269             code =
2270                 RXAFS_FetchStatus(tc->id, (struct AFSFid *)&afid->Fid, Outsp,
2271                                   &CallBack, &tsync);
2272             RX_AFS_GLOCK();
2273
2274             XSTATS_END_TIME;
2275
2276         } else
2277             code = -1;
2278     } while (afs_Analyze
2279              (tc, code, afid, areq, AFS_STATS_FS_RPCIDX_FETCHSTATUS,
2280               SHARED_LOCK, NULL));
2281
2282     if (!code) {
2283         afs_ProcessFS(avc, Outsp, areq);
2284         volp = afs_GetVolume(afid, areq, READ_LOCK);
2285         ObtainWriteLock(&afs_xcbhash, 469);
2286         avc->states |= CTruth;
2287         if (avc->callback /* check for race */ ) {
2288             if (CallBack.ExpirationTime != 0) {
2289                 avc->cbExpires = CallBack.ExpirationTime + start;
2290                 avc->states |= CStatd;
2291                 avc->states &= ~CBulkFetching;
2292                 afs_QueueCallback(avc, CBHash(CallBack.ExpirationTime), volp);
2293             } else if (avc->states & CRO) {     /* ordinary callback on a read-only volume -- AFS 3.2 style */
2294                 avc->cbExpires = 3600 + start;
2295                 avc->states |= CStatd;
2296                 avc->states &= ~CBulkFetching;
2297                 afs_QueueCallback(avc, CBHash(3600), volp);
2298             } else {
2299                 afs_DequeueCallback(avc);
2300                 avc->callback = NULL;
2301                 avc->states &= ~(CStatd | CUnique);
2302                 if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
2303                     osi_dnlc_purgedp(avc);      /* if it (could be) a directory */
2304             }
2305         } else {
2306             afs_DequeueCallback(avc);
2307             avc->callback = NULL;
2308             avc->states &= ~(CStatd | CUnique);
2309             if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
2310                 osi_dnlc_purgedp(avc);  /* if it (could be) a directory */
2311         }
2312         ReleaseWriteLock(&afs_xcbhash);
2313         if (volp)
2314             afs_PutVolume(volp, READ_LOCK);
2315     } else {
2316         /* used to undo the local callback, but that's too extreme.
2317          * There are plenty of good reasons that fetchstatus might return
2318          * an error, such as EPERM.  If we have the vnode cached, statd,
2319          * with callback, might as well keep track of the fact that we
2320          * don't have access...
2321          */
2322         if (code == EPERM || code == EACCES) {
2323             struct axscache *ac;
2324             if (avc->Access && (ac = afs_FindAxs(avc->Access, areq->uid)))
2325                 ac->axess = 0;
2326             else                /* not found, add a new one if possible */
2327                 afs_AddAxs(avc->Access, areq->uid, 0);
2328         }
2329     }
2330     return code;
2331 }
2332
2333 #if 0
2334 /*
2335  * afs_StuffVcache
2336  *
2337  * Description:
2338  *      Stuff some information into the vcache for the given file.
2339  *
2340  * Parameters:
2341  *      afid      : File in question.
2342  *      OutStatus : Fetch status on the file.
2343  *      CallBack  : Callback info.
2344  *      tc        : RPC connection involved.
2345  *      areq      : vrequest involved.
2346  *
2347  * Environment:
2348  *      Nothing interesting.
2349  */
2350 void
2351 afs_StuffVcache(register struct VenusFid *afid,
2352                 struct AFSFetchStatus *OutStatus,
2353                 struct AFSCallBack *CallBack, register struct conn *tc,
2354                 struct vrequest *areq)
2355 {
2356     register afs_int32 code, i, newvcache = 0;
2357     register struct vcache *tvc;
2358     struct AFSVolSync tsync;
2359     struct volume *tvp;
2360     struct axscache *ac;
2361     afs_int32 retry;
2362
2363     AFS_STATCNT(afs_StuffVcache);
2364 #ifdef IFS_VCACHECOUNT
2365     ifs_gvcachecall++;
2366 #endif
2367
2368   loop:
2369     ObtainSharedLock(&afs_xvcache, 8);
2370
2371     tvc = afs_FindVCache(afid, &retry, DO_VLRU /* no stats */ );
2372     if (tvc && retry) {
2373 #if     defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
2374         ReleaseSharedLock(&afs_xvcache);
2375         spunlock_psema(tvc->v.v_lock, retry, &tvc->v.v_sync, PINOD);
2376         goto loop;
2377 #endif
2378     }
2379
2380     if (!tvc) {
2381         /* no cache entry, better grab one */
2382         UpgradeSToWLock(&afs_xvcache, 25);
2383         tvc = afs_NewVCache(afid, NULL);
2384         newvcache = 1;
2385         ConvertWToSLock(&afs_xvcache);
2386     }
2387
2388     ReleaseSharedLock(&afs_xvcache);
2389     ObtainWriteLock(&tvc->lock, 58);
2390
2391     tvc->states &= ~CStatd;
2392     if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
2393         osi_dnlc_purgedp(tvc);  /* if it (could be) a directory */
2394
2395     /* Is it always appropriate to throw away all the access rights? */
2396     afs_FreeAllAxs(&(tvc->Access));
2397
2398     /*Copy useful per-volume info */
2399     tvp = afs_GetVolume(afid, areq, READ_LOCK);
2400     if (tvp) {
2401         if (newvcache && (tvp->states & VForeign))
2402             tvc->states |= CForeign;
2403         if (tvp->states & VRO)
2404             tvc->states |= CRO;
2405         if (tvp->states & VBackup)
2406             tvc->states |= CBackup;
2407         /*
2408          * Now, copy ".." entry back out of volume structure, if
2409          * necessary
2410          */
2411         if (tvc->mvstat == 2 && tvp->dotdot.Fid.Volume != 0) {
2412             if (!tvc->mvid)
2413                 tvc->mvid = (struct VenusFid *)
2414                     osi_AllocSmallSpace(sizeof(struct VenusFid));
2415             *tvc->mvid = tvp->dotdot;
2416         }
2417     }
2418     /* store the stat on the file */
2419     afs_RemoveVCB(afid);
2420     afs_ProcessFS(tvc, OutStatus, areq);
2421     tvc->callback = tc->srvr->server;
2422
2423     /* we use osi_Time twice below.  Ideally, we would use the time at which
2424      * the FetchStatus call began, instead, but we don't have it here.  So we
2425      * make do with "now".  In the CRO case, it doesn't really matter. In
2426      * the other case, we hope that the difference between "now" and when the
2427      * call actually began execution on the server won't be larger than the
2428      * padding which the server keeps.  Subtract 1 second anyway, to be on
2429      * the safe side.  Can't subtract more because we don't know how big
2430      * ExpirationTime is.  Possible consistency problems may arise if the call
2431      * timeout period becomes longer than the server's expiration padding.  */
2432     ObtainWriteLock(&afs_xcbhash, 470);
2433     if (CallBack->ExpirationTime != 0) {
2434         tvc->cbExpires = CallBack->ExpirationTime + osi_Time() - 1;
2435         tvc->states |= CStatd;
2436         tvc->states &= ~CBulkFetching;
2437         afs_QueueCallback(tvc, CBHash(CallBack->ExpirationTime), tvp);
2438     } else if (tvc->states & CRO) {
2439         /* old-fashioned AFS 3.2 style */
2440         tvc->cbExpires = 3600 + osi_Time();
2441          /*XXX*/ tvc->states |= CStatd;
2442         tvc->states &= ~CBulkFetching;
2443         afs_QueueCallback(tvc, CBHash(3600), tvp);
2444     } else {
2445         afs_DequeueCallback(tvc);
2446         tvc->callback = NULL;
2447         tvc->states &= ~(CStatd | CUnique);
2448         if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
2449             osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
2450     }
2451     ReleaseWriteLock(&afs_xcbhash);
2452     if (tvp)
2453         afs_PutVolume(tvp, READ_LOCK);
2454
2455     /* look in per-pag cache */
2456     if (tvc->Access && (ac = afs_FindAxs(tvc->Access, areq->uid)))
2457         ac->axess = OutStatus->CallerAccess;    /* substitute pags */
2458     else                        /* not found, add a new one if possible */
2459         afs_AddAxs(tvc->Access, areq->uid, OutStatus->CallerAccess);
2460
2461     ReleaseWriteLock(&tvc->lock);
2462     afs_Trace4(afs_iclSetp, CM_TRACE_STUFFVCACHE, ICL_TYPE_POINTER, tvc,
2463                ICL_TYPE_POINTER, tvc->callback, ICL_TYPE_INT32,
2464                tvc->cbExpires, ICL_TYPE_INT32, tvc->cbExpires - osi_Time());
2465     /*
2466      * Release ref count... hope this guy stays around...
2467      */
2468     afs_PutVCache(tvc);
2469 }                               /*afs_StuffVcache */
2470 #endif
2471
2472 /*
2473  * afs_PutVCache
2474  *
2475  * Description:
2476  *      Decrements the reference count on a cache entry.
2477  *
2478  * Parameters:
2479  *      avc : Pointer to the cache entry to decrement.
2480  *
2481  * Environment:
2482  *      Nothing interesting.
2483  */
2484 void
2485 afs_PutVCache(register struct vcache *avc)
2486 {
2487     AFS_STATCNT(afs_PutVCache);
2488     /*
2489      * Can we use a read lock here?
2490      */
2491     ObtainReadLock(&afs_xvcache);
2492     AFS_FAST_RELE(avc);
2493     ReleaseReadLock(&afs_xvcache);
2494 }                               /*afs_PutVCache */
2495
2496 /*
2497  * afs_FindVCache
2498  *
2499  * Description:
2500  *      Find a vcache entry given a fid.
2501  *
2502  * Parameters:
2503  *      afid : Pointer to the fid whose cache entry we desire.
2504  *      retry: (SGI-specific) tell the caller to drop the lock on xvcache,
2505  *             unlock the vnode, and try again.
2506  *      flags: bit 1 to specify whether to compute hit statistics.  Not
2507  *             set if FindVCache is called as part of internal bookkeeping.
2508  *
2509  * Environment:
2510  *      Must be called with the afs_xvcache lock at least held at
2511  *      the read level.  In order to do the VLRU adjustment, the xvcache lock
2512  *      must be shared-- we upgrade it here.
2513  */
2514
2515 struct vcache *
2516 afs_FindVCache(struct VenusFid *afid, afs_int32 * retry, afs_int32 flag)
2517 {
2518
2519     register struct vcache *tvc;
2520     afs_int32 i;
2521
2522     AFS_STATCNT(afs_FindVCache);
2523
2524     i = VCHash(afid);
2525     for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
2526         if (FidMatches(afid, tvc)) {
2527 #ifdef  AFS_OSF_ENV
2528             /* Grab this vnode, possibly reactivating from the free list */
2529             int vg;
2530             AFS_GUNLOCK();
2531             vg = vget(AFSTOV(tvc));
2532             AFS_GLOCK();
2533             if (vg)
2534                 continue;
2535 #endif /* AFS_OSF_ENV */
2536             break;
2537         }
2538     }
2539
2540     /* should I have a read lock on the vnode here? */
2541     if (tvc) {
2542         if (retry)
2543             *retry = 0;
2544 #if !defined(AFS_OSF_ENV)
2545         osi_vnhold(tvc, retry); /* already held, above */
2546         if (retry && *retry)
2547             return 0;
2548 #endif
2549         /*
2550          * only move to front of vlru if we have proper vcache locking)
2551          */
2552         if (flag & DO_VLRU) {
2553             if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
2554                 refpanic("FindVC VLRU inconsistent1");
2555             }
2556             if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
2557                 refpanic("FindVC VLRU inconsistent1");
2558             }
2559             if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
2560                 refpanic("FindVC VLRU inconsistent2");
2561             }
2562             UpgradeSToWLock(&afs_xvcache, 26);
2563             QRemove(&tvc->vlruq);
2564             QAdd(&VLRU, &tvc->vlruq);
2565             ConvertWToSLock(&afs_xvcache);
2566             if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
2567                 refpanic("FindVC VLRU inconsistent1");
2568             }
2569             if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
2570                 refpanic("FindVC VLRU inconsistent2");
2571             }
2572             if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
2573                 refpanic("FindVC VLRU inconsistent3");
2574             }
2575         }
2576         vcachegen++;
2577     }
2578
2579     if (flag & DO_STATS) {
2580         if (tvc)
2581             afs_stats_cmperf.vcacheHits++;
2582         else
2583             afs_stats_cmperf.vcacheMisses++;
2584         if (afs_IsPrimaryCellNum(afid->Cell))
2585             afs_stats_cmperf.vlocalAccesses++;
2586         else
2587             afs_stats_cmperf.vremoteAccesses++;
2588     }
2589 #ifdef AFS_LINUX22_ENV
2590     if (tvc && (tvc->states & CStatd))
2591         vcache2inode(tvc);      /* mainly to reset i_nlink */
2592 #endif
2593 #ifdef AFS_DARWIN_ENV
2594     if (tvc)
2595         osi_VM_Setup(tvc, 0);
2596 #endif
2597     return tvc;
2598 }                               /*afs_FindVCache */
2599
2600 /*
2601  * afs_NFSFindVCache
2602  *
2603  * Description:
2604  *      Find a vcache entry given a fid. Does a wildcard match on what we
2605  *      have for the fid. If more than one entry, don't return anything.
2606  *
2607  * Parameters:
2608  *      avcp : Fill in pointer if we found one and only one.
2609  *      afid : Pointer to the fid whose cache entry we desire.
2610  *      retry: (SGI-specific) tell the caller to drop the lock on xvcache,
2611  *             unlock the vnode, and try again.
2612  *      flags: bit 1 to specify whether to compute hit statistics.  Not
2613  *             set if FindVCache is called as part of internal bookkeeping.
2614  *
2615  * Environment:
2616  *      Must be called with the afs_xvcache lock at least held at
2617  *      the read level.  In order to do the VLRU adjustment, the xvcache lock
2618  *      must be shared-- we upgrade it here.
2619  *
2620  * Return value:
2621  *      number of matches found.
2622  */
2623
2624 int afs_duplicate_nfs_fids = 0;
2625
2626 afs_int32
2627 afs_NFSFindVCache(struct vcache **avcp, struct VenusFid *afid)
2628 {
2629     register struct vcache *tvc;
2630     afs_int32 i;
2631     afs_int32 count = 0;
2632     struct vcache *found_tvc = NULL;
2633
2634     AFS_STATCNT(afs_FindVCache);
2635
2636 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
2637   loop:
2638 #endif
2639
2640     ObtainSharedLock(&afs_xvcache, 331);
2641
2642     i = VCHash(afid);
2643     for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
2644         /* Match only on what we have.... */
2645         if (((tvc->fid.Fid.Vnode & 0xffff) == afid->Fid.Vnode)
2646             && (tvc->fid.Fid.Volume == afid->Fid.Volume)
2647             && ((tvc->fid.Fid.Unique & 0xffffff) == afid->Fid.Unique)
2648             && (tvc->fid.Cell == afid->Cell)) {
2649 #ifdef  AFS_OSF_ENV
2650             /* Grab this vnode, possibly reactivating from the free list */
2651             int vg;
2652             AFS_GUNLOCK();
2653             vg = vget(AFSTOV(tvc));
2654             AFS_GLOCK();
2655             if (vg) {
2656                 /* This vnode no longer exists. */
2657                 continue;
2658             }
2659 #endif /* AFS_OSF_ENV */
2660             count++;
2661             if (found_tvc) {
2662                 /* Duplicates */
2663 #ifdef AFS_OSF_ENV
2664                 /* Drop our reference counts. */
2665                 vrele(AFSTOV(tvc));
2666                 vrele(AFSTOV(found_tvc));
2667 #endif
2668                 afs_duplicate_nfs_fids++;
2669                 ReleaseSharedLock(&afs_xvcache);
2670                 return count;
2671             }
2672             found_tvc = tvc;
2673         }
2674     }
2675
2676     tvc = found_tvc;
2677     /* should I have a read lock on the vnode here? */
2678     if (tvc) {
2679 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
2680         afs_int32 retry = 0;
2681         osi_vnhold(tvc, &retry);
2682         if (retry) {
2683             count = 0;
2684             found_tvc = (struct vcache *)0;
2685             ReleaseSharedLock(&afs_xvcache);
2686             spunlock_psema(tvc->v.v_lock, retry, &tvc->v.v_sync, PINOD);
2687             goto loop;
2688         }
2689 #else
2690 #if !defined(AFS_OSF_ENV)
2691         osi_vnhold(tvc, (int *)0);      /* already held, above */
2692 #endif
2693 #endif
2694         /*
2695          * We obtained the xvcache lock above.
2696          */
2697         if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
2698             refpanic("FindVC VLRU inconsistent1");
2699         }
2700         if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
2701             refpanic("FindVC VLRU inconsistent1");
2702         }
2703         if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
2704             refpanic("FindVC VLRU inconsistent2");
2705         }
2706         UpgradeSToWLock(&afs_xvcache, 568);
2707         QRemove(&tvc->vlruq);
2708         QAdd(&VLRU, &tvc->vlruq);
2709         ConvertWToSLock(&afs_xvcache);
2710         if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
2711             refpanic("FindVC VLRU inconsistent1");
2712         }
2713         if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
2714             refpanic("FindVC VLRU inconsistent2");
2715         }
2716         if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
2717             refpanic("FindVC VLRU inconsistent3");
2718         }
2719     }
2720     vcachegen++;
2721
2722     if (tvc)
2723         afs_stats_cmperf.vcacheHits++;
2724     else
2725         afs_stats_cmperf.vcacheMisses++;
2726     if (afs_IsPrimaryCellNum(afid->Cell))
2727         afs_stats_cmperf.vlocalAccesses++;
2728     else
2729         afs_stats_cmperf.vremoteAccesses++;
2730
2731     *avcp = tvc;                /* May be null */
2732
2733     ReleaseSharedLock(&afs_xvcache);
2734     return (tvc ? 1 : 0);
2735
2736 }                               /*afs_NFSFindVCache */
2737
2738
2739
2740
2741 /*
2742  * afs_vcacheInit
2743  *
2744  * Initialize vcache related variables
2745  */
2746 void
2747 afs_vcacheInit(int astatSize)
2748 {
2749     register struct vcache *tvp;
2750     int i;
2751 #if     defined(AFS_OSF_ENV)
2752     if (!afs_maxvcount) {
2753 #if     defined(AFS_OSF30_ENV)
2754         afs_maxvcount = max_vnodes / 2; /* limit ourselves to half the total */
2755 #else
2756         afs_maxvcount = nvnode / 2;     /* limit ourselves to half the total */
2757 #endif
2758         if (astatSize < afs_maxvcount) {
2759             afs_maxvcount = astatSize;
2760         }
2761     }
2762 #else /* AFS_OSF_ENV */
2763     freeVCList = NULL;
2764 #endif
2765
2766     RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
2767     LOCK_INIT(&afs_xvcb, "afs_xvcb");
2768
2769 #if     !defined(AFS_OSF_ENV)
2770 #ifdef AFS_LINUX26_ENV
2771     printf("old style would have needed %d contiguous bytes\n", astatSize *
2772            sizeof(struct vcache));
2773     Initial_freeVCList = freeVCList = tvp = (struct vcache *)
2774         afs_osi_Alloc(sizeof(struct vcache));
2775     for (i = 0; i < astatSize; i++) {
2776         tvp->nextfree = (struct vcache *) afs_osi_Alloc(sizeof(struct vcache));
2777         tvp = tvp->nextfree;
2778     }
2779     tvp->nextfree = NULL;
2780 #else
2781     /* Allocate and thread the struct vcache entries */
2782     tvp = (struct vcache *)afs_osi_Alloc(astatSize * sizeof(struct vcache));
2783     memset((char *)tvp, 0, sizeof(struct vcache) * astatSize);
2784
2785     Initial_freeVCList = tvp;
2786     freeVCList = &(tvp[0]);
2787     for (i = 0; i < astatSize - 1; i++) {
2788         tvp[i].nextfree = &(tvp[i + 1]);
2789     }
2790     tvp[astatSize - 1].nextfree = NULL;
2791 #ifdef  KERNEL_HAVE_PIN
2792     pin((char *)tvp, astatSize * sizeof(struct vcache));        /* XXX */
2793 #endif
2794 #endif
2795 #endif
2796
2797 #if defined(AFS_SGI_ENV)
2798     for (i = 0; i < astatSize; i++) {
2799         char name[METER_NAMSZ];
2800         struct vcache *tvc = &tvp[i];
2801
2802         tvc->v.v_number = ++afsvnumbers;
2803         tvc->vc_rwlockid = OSI_NO_LOCKID;
2804         initnsema(&tvc->vc_rwlock, 1,
2805                   makesname(name, "vrw", tvc->v.v_number));
2806 #ifndef AFS_SGI53_ENV
2807         initnsema(&tvc->v.v_sync, 0, makesname(name, "vsy", tvc->v.v_number));
2808 #endif
2809 #ifndef AFS_SGI62_ENV
2810         initnlock(&tvc->v.v_lock, makesname(name, "vlk", tvc->v.v_number));
2811 #endif /* AFS_SGI62_ENV */
2812     }
2813 #endif
2814
2815     QInit(&VLRU);
2816
2817
2818 }
2819
2820 /*
2821  * shutdown_vcache
2822  *
2823  */
2824 void
2825 shutdown_vcache(void)
2826 {
2827     int i;
2828     struct afs_cbr *tsp, *nsp;
2829     /*
2830      * XXX We may potentially miss some of the vcaches because if when there're no
2831      * free vcache entries and all the vcache entries are active ones then we allocate
2832      * an additional one - admittedly we almost never had that occur.
2833      */
2834
2835     {
2836         register struct afs_q *tq, *uq;
2837         register struct vcache *tvc;
2838         for (tq = VLRU.prev; tq != &VLRU; tq = uq) {
2839             tvc = QTOV(tq);
2840             uq = QPrev(tq);
2841             if (tvc->mvid) {
2842                 osi_FreeSmallSpace(tvc->mvid);
2843                 tvc->mvid = (struct VenusFid *)0;
2844             }
2845 #ifdef  AFS_AIX_ENV
2846             aix_gnode_rele(AFSTOV(tvc));
2847 #endif
2848             if (tvc->linkData) {
2849                 afs_osi_Free(tvc->linkData, strlen(tvc->linkData) + 1);
2850                 tvc->linkData = 0;
2851             }
2852         }
2853         /*
2854          * Also free the remaining ones in the Cache
2855          */
2856         for (i = 0; i < VCSIZE; i++) {
2857             for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
2858                 if (tvc->mvid) {
2859                     osi_FreeSmallSpace(tvc->mvid);
2860                     tvc->mvid = (struct VenusFid *)0;
2861                 }
2862 #ifdef  AFS_AIX_ENV
2863                 if (tvc->v.v_gnode)
2864                     afs_osi_Free(tvc->v.v_gnode, sizeof(struct gnode));
2865 #ifdef  AFS_AIX32_ENV
2866                 if (tvc->segid) {
2867                     AFS_GUNLOCK();
2868                     vms_delete(tvc->segid);
2869                     AFS_GLOCK();
2870                     tvc->segid = tvc->vmh = NULL;
2871                     if (VREFCOUNT(tvc))
2872                         osi_Panic("flushVcache: vm race");
2873                 }
2874                 if (tvc->credp) {
2875                     crfree(tvc->credp);
2876                     tvc->credp = NULL;
2877                 }
2878 #endif
2879 #endif
2880 #if     defined(AFS_SUN5_ENV)
2881                 if (tvc->credp) {
2882                     crfree(tvc->credp);
2883                     tvc->credp = NULL;
2884                 }
2885 #endif
2886                 if (tvc->linkData) {
2887                     afs_osi_Free(tvc->linkData, strlen(tvc->linkData) + 1);
2888                     tvc->linkData = 0;
2889                 }
2890
2891                 afs_FreeAllAxs(&(tvc->Access));
2892             }
2893             afs_vhashT[i] = 0;
2894         }
2895     }
2896     /*
2897      * Free any leftover callback queue
2898      */
2899     for (tsp = afs_cbrSpace; tsp; tsp = nsp) {
2900         nsp = tsp->next;
2901         afs_osi_Free((char *)tsp, AFS_NCBRS * sizeof(struct afs_cbr));
2902     }
2903     afs_cbrSpace = 0;
2904
2905 #ifdef AFS_LINUX26_ENV
2906     {
2907         struct vcache *tvp = Initial_freeVCList;
2908         while (tvp) {
2909             struct vcache *next = tvp->nextfree;
2910             
2911             afs_osi_Free(tvp, sizeof(struct vcache));
2912             tvp = next;
2913         }
2914     }
2915 #else
2916 #ifdef  KERNEL_HAVE_PIN
2917     unpin(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
2918 #endif
2919 #if     !defined(AFS_OSF_ENV)
2920     afs_osi_Free(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
2921 #endif
2922 #endif
2923
2924 #if     !defined(AFS_OSF_ENV)
2925     freeVCList = Initial_freeVCList = 0;
2926 #endif
2927     RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
2928     LOCK_INIT(&afs_xvcb, "afs_xvcb");
2929     QInit(&VLRU);
2930
2931 }