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