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