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