887ff05b6c0f6d8ddc9cd826039972c6f6138fbf
[openafs.git] / src / afs / VNOPS / afs_vnop_lookup.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_lookup
13  * EvalMountPoint
14  * afs_DoBulkStat
15  */
16
17 #include <afsconfig.h>
18 #include "afs/param.h"
19
20 #include "afs/sysincludes.h"    /* Standard vendor system headers */
21 #include "afsincludes.h"        /* Afs-based standard headers */
22 #include "afs/afs_stats.h"      /* statistics */
23 #include "afs/afs_cbqueue.h"
24 #include "afs/nfsclient.h"
25 #include "afs/exporter.h"
26 #include "afs/afs_osidnlc.h"
27 #include "afs/afs_dynroot.h"
28
29 extern struct vcache *afs_globalVp;
30
31 afs_int32 afs_bkvolpref = 0;
32 afs_int32 afs_bulkStatsDone;
33 static int bulkStatCounter = 0; /* counter for bulk stat seq. numbers */
34 int afs_fakestat_enable = 0;    /* 1: fakestat-all, 2: fakestat-crosscell */
35
36
37 /* this would be faster if it did comparison as int32word, but would be 
38  * dependant on byte-order and alignment, and I haven't figured out
39  * what "@sys" is in binary... */
40 #define AFS_EQ_ATSYS(name) (((name)[0]=='@')&&((name)[1]=='s')&&((name)[2]=='y')&&((name)[3]=='s')&&(!(name)[4]))
41
42 /* call under write lock, evaluate mvid.target_root field from a mt pt.
43  * avc is the vnode of the mount point object; must be write-locked.
44  * advc is the vnode of the containing directory (optional; if NULL and
45  *   EvalMountPoint succeeds, caller must initialize *avolpp->dotdot)
46  * avolpp is where we return a pointer to the volume named by the mount pt, if success
47  * areq is the identity of the caller.
48  *
49  * NOTE: this function returns a held volume structure in *volpp if it returns 0!
50  */
51 static int
52 EvalMountData(char type, char *data, afs_uint32 states, afs_uint32 cellnum,
53               struct volume **avolpp, struct vrequest *areq,
54               afs_uint32 *acellidxp, afs_uint32 *avolnump,
55               afs_uint32 *avnoidp, afs_uint32 *auniqp)
56 {
57     struct volume *tvp = 0;
58     struct VenusFid tfid;
59     struct cell *tcell;
60     char *cpos, *volnamep = NULL;
61     char *endptr;
62     afs_int32 prefetch;         /* 1=>None  2=>RO  3=>BK */
63     afs_int32 mtptCell, assocCell = 0, hac = 0;
64     afs_int32 samecell, roname, len;
65     afs_uint32 volid = 0, cellidx, vnoid = 0, uniq = 0;
66
67     /* Start by figuring out and finding the cell */
68     cpos = afs_strchr(data, ':');       /* if cell name present */
69     if (cpos) {
70         afs_uint32 mtptCellnum;
71         volnamep = cpos + 1;
72         *cpos = 0;
73         if ((afs_strtoi_r(data, &endptr, &mtptCellnum) == 0) &&
74             (endptr == cpos)) {
75             tcell = afs_GetCell(mtptCellnum, READ_LOCK);
76         } else {
77             tcell = afs_GetCellByName(data, READ_LOCK);
78         }
79         *cpos = ':';
80     } else if (cellnum) {
81         volnamep = data;
82         tcell = afs_GetCell(cellnum, READ_LOCK);
83     } else {
84         /* No cellname or cellnum; return ENODEV */
85         return ENODEV;
86     }
87     if (!tcell) {
88         /* no cell found; return ENODEV */
89         return ENODEV;
90     }
91
92     cellidx = tcell->cellIndex;
93     mtptCell = tcell->cellNum;  /* The cell for the mountpoint */
94     if (tcell->lcellp) {
95         hac = 1;                /* has associated cell */
96         assocCell = tcell->lcellp->cellNum;     /* The associated cell */
97     }
98     afs_PutCell(tcell, READ_LOCK);
99
100     /* If there's nothing to look up, we can't proceed */
101     if (!*volnamep)
102         return ENODEV;
103
104     /* cell found. figure out volume */
105     cpos = afs_strchr(volnamep, ':');
106     if (cpos)
107         *cpos = 0;
108
109     /* Look for an all-numeric volume ID */
110     if ((afs_strtoi_r(volnamep, &endptr, &volid) == 0) &&
111         ((endptr == cpos) || (!*endptr)))
112     {
113         /* Ok. Is there a vnode and uniq? */
114         if (cpos) {
115             char *vnodep = (char *)(cpos + 1);
116             char *uniqp = NULL;
117             if ((!*vnodep) /* no vnode after colon */
118                 || !(uniqp = afs_strchr(vnodep, ':')) /* no colon for uniq */
119                 || (!*(++uniqp)) /* no uniq after colon */
120                 || (afs_strtoi_r(vnodep, &endptr, &vnoid) != 0) /* bad vno */
121                 || (*endptr != ':') /* bad vnode field */
122                 || (afs_strtoi_r(uniqp, &endptr, &uniq) != 0) /* bad uniq */
123                 || (*endptr)) /* anything after uniq */
124             {
125                 *cpos = ':';
126                 /* sorry. vnode and uniq, or nothing */
127                 return ENODEV;
128             }
129         }
130     } else
131             volid = 0;
132
133     /*
134      * If the volume ID was all-numeric, and they didn't ask for a
135      * pointer to the volume structure, then just return the number
136      * as-is.  This is currently only used for handling name lookups
137      * in the dynamic mount directory.
138      */
139     if (volid && !avolpp) {
140         if (cpos)
141             *cpos = ':';
142         goto done;
143     }
144
145     /*
146      * If the volume ID was all-numeric, and the type was '%', then
147      * assume whoever made the mount point knew what they were doing,
148      * and don't second-guess them by forcing use of a RW volume when
149      * they gave the ID of something else.
150      */
151     if (volid && type == '%') {
152         tfid.Fid.Volume = volid;        /* remember BK volume */
153         tfid.Cell = mtptCell;
154         tvp = afs_GetVolume(&tfid, areq, WRITE_LOCK);   /* get the new one */
155         if (cpos) /* one way or another we're done */
156             *cpos = ':';
157         if (!tvp)
158             return ENODEV; /* afs_GetVolume failed; return ENODEV */
159         goto done;
160     }
161
162     /* Is volume name a "<n>.backup" or "<n>.readonly" name */
163     len = strlen(volnamep);
164     roname = ((len > 9) && (strcmp(&volnamep[len - 9], ".readonly") == 0))
165         || ((len > 7) && (strcmp(&volnamep[len - 7], ".backup") == 0));
166
167     /* When we cross mountpoint, do we stay in the same cell */
168     samecell = (cellnum == mtptCell) || (hac && (cellnum == assocCell));
169
170     /* Decide whether to prefetch the BK, or RO.  Also means we want the BK or
171      * RO.
172      * If this is a regular mountpoint with a RW volume name
173      * - If BK preference is enabled AND we remain within the same cell AND
174      *   start from a BK volume, then we will want to prefetch the BK volume.
175      * - If we cross a cell boundary OR start from a RO volume, then we will
176      *   want to prefetch the RO volume.
177      */
178     if ((type == '#') && !roname) {
179         if (afs_bkvolpref && samecell && (states & CBackup))
180             prefetch = 3;       /* Prefetch the BK */
181         else if (!samecell || (states & CRO))
182             prefetch = 2;       /* Prefetch the RO */
183         else
184             prefetch = 1;       /* Do not prefetch */
185     } else {
186         prefetch = 1;           /* Do not prefetch */
187     }
188
189     /* Get the volume struct. Unless this volume name has ".readonly" or
190      * ".backup" in it, this will get the volume struct for the RW volume.
191      * The RO volume will be prefetched if requested (but not returned).
192      * Set up to use volname first.
193      */
194     tvp = afs_GetVolumeByName(volnamep, mtptCell, prefetch, areq, WRITE_LOCK);
195
196     /* If no volume was found in this cell, try the associated linked cell */
197     if (!tvp && hac && areq->volumeError) {
198         tvp =
199             afs_GetVolumeByName(volnamep, assocCell, prefetch, areq,
200                                 WRITE_LOCK);
201     }
202
203     /* done with volname */
204     if (cpos)
205         *cpos = ':';
206     if (!tvp)
207         return ENODEV;          /* Couldn't find the volume */
208     else
209         volid = tvp->volume;
210
211     /* Don't cross mountpoint from a BK to a BK volume */
212     if ((states & CBackup) && (tvp->states & VBackup)) {
213         afs_PutVolume(tvp, WRITE_LOCK);
214         return ENODEV;
215     }
216
217     /* If we want (prefetched) the BK and it exists, then drop the RW volume
218      * and get the BK.
219      * Otherwise, if we want (prefetched0 the RO and it exists, then drop the
220      * RW volume and get the RO.
221      * Otherwise, go with the RW.
222      */
223     if ((prefetch == 3) && tvp->backVol) {
224         tfid.Fid.Volume = tvp->backVol; /* remember BK volume */
225         tfid.Cell = tvp->cell;
226         afs_PutVolume(tvp, WRITE_LOCK); /* release old volume */
227         tvp = afs_GetVolume(&tfid, areq, WRITE_LOCK);   /* get the new one */
228         if (!tvp)
229             return ENODEV;      /* oops, can't do it */
230     } else if ((prefetch >= 2) && tvp->roVol) {
231         tfid.Fid.Volume = tvp->roVol;   /* remember RO volume */
232         tfid.Cell = tvp->cell;
233         afs_PutVolume(tvp, WRITE_LOCK); /* release old volume */
234         tvp = afs_GetVolume(&tfid, areq, WRITE_LOCK);   /* get the new one */
235         if (!tvp)
236             return ENODEV;      /* oops, can't do it */
237     }
238
239 done:
240     if (acellidxp)
241         *acellidxp = cellidx;
242     if (avolnump)
243         *avolnump = volid;
244     if (avnoidp)
245         *avnoidp = vnoid;
246     if (auniqp)
247         *auniqp = uniq;
248     if (avolpp)
249         *avolpp = tvp;
250     else if (tvp)
251         afs_PutVolume(tvp, WRITE_LOCK);
252     return 0;
253 }
254
255 int
256 EvalMountPoint(struct vcache *avc, struct vcache *advc,
257                struct volume **avolpp, struct vrequest *areq)
258 {
259     afs_int32 code;
260     afs_uint32 avnoid, auniq;
261
262     AFS_STATCNT(EvalMountPoint);
263     *avolpp = NULL;
264     code = afs_HandleLink(avc, areq);
265     if (code)
266         return code;
267
268     /* Determine which cell and volume the mointpoint goes to */
269     code = EvalMountData(avc->linkData[0], avc->linkData + 1,
270                          avc->f.states, avc->f.fid.Cell, avolpp, areq, 0, 0,
271                          &avnoid, &auniq);
272     if (code) return code;
273
274     if (!avnoid)
275         avnoid = 1;
276
277     if (!auniq)
278         auniq = 1;
279
280     if (avc->mvid.target_root == NULL)
281         avc->mvid.target_root = osi_AllocSmallSpace(sizeof(struct VenusFid));
282     avc->mvid.target_root->Cell = (*avolpp)->cell;
283     avc->mvid.target_root->Fid.Volume = (*avolpp)->volume;
284     avc->mvid.target_root->Fid.Vnode = avnoid;
285     avc->mvid.target_root->Fid.Unique = auniq;
286     avc->f.states |= CMValid;
287
288     /* Used to: if the mount point is stored within a backup volume,
289      * then we should only update the parent pointer information if
290      * there's none already set, so as to avoid updating a volume's ..
291      * info with something in an OldFiles directory.
292      *
293      * Next two lines used to be under this if:
294      *
295      * if (!(avc->f.states & CBackup) || tvp->dotdot.Fid.Volume == 0)
296      *
297      * Now: update mount point back pointer on every call, so that we handle
298      * multiple mount points better.  This way, when du tries to go back
299      * via chddir(".."), it will end up exactly where it started, yet
300      * cd'ing via a new path to a volume will reset the ".." pointer
301      * to the new path.
302      */
303     (*avolpp)->mtpoint = avc->f.fid;    /* setup back pointer to mtpoint */
304     
305     if (advc)
306         (*avolpp)->dotdot = advc->f.fid;
307
308     return 0;
309 }
310
311 /*
312  * afs_InitFakeStat
313  *
314  * Must be called on an afs_fakestat_state object before calling
315  * afs_EvalFakeStat or afs_PutFakeStat.  Calling afs_PutFakeStat
316  * without calling afs_EvalFakeStat is legal, as long as this
317  * function is called.
318  */
319 void
320 afs_InitFakeStat(struct afs_fakestat_state *state)
321 {
322     if (!afs_fakestat_enable)
323         return;
324
325     state->valid = 1;
326     state->did_eval = 0;
327     state->need_release = 0;
328 }
329
330 /*
331  * afs_EvalFakeStat_int
332  *
333  * The actual implementation of afs_EvalFakeStat and afs_TryEvalFakeStat,
334  * which is called by those wrapper functions.
335  *
336  * Only issues RPCs if canblock is non-zero.
337  */
338 static int
339 afs_EvalFakeStat_int(struct vcache **avcp, struct afs_fakestat_state *state,
340                      struct vrequest *areq, int canblock)
341 {
342     struct vcache *tvc, *root_vp;
343     struct volume *tvolp = NULL;
344     int code = 0;
345
346     if (!afs_fakestat_enable)
347         return 0;
348
349     osi_Assert(state->valid == 1);
350     osi_Assert(state->did_eval == 0);
351     state->did_eval = 1;
352
353     tvc = *avcp;
354     if (tvc->mvstat != AFS_MVSTAT_MTPT)
355         return 0;
356
357     if (canblock) {
358         /* Is the call to VerifyVCache really necessary? */
359         code = afs_VerifyVCache(tvc, areq);
360         if (code)
361             goto done;
362
363         ObtainWriteLock(&tvc->lock, 599);
364         code = EvalMountPoint(tvc, NULL, &tvolp, areq);
365         ReleaseWriteLock(&tvc->lock);
366         if (code)
367             goto done;
368         if (tvolp) {
369             tvolp->dotdot = tvc->f.fid;
370             tvolp->dotdot.Fid.Vnode = tvc->f.parent.vnode;
371             tvolp->dotdot.Fid.Unique = tvc->f.parent.unique;
372         }
373     }
374     if (tvc->mvid.target_root && (tvc->f.states & CMValid)) {
375         if (!canblock) {
376             afs_int32 retry;
377
378             do {
379                 retry = 0;
380                 ObtainWriteLock(&afs_xvcache, 597);
381                 root_vp = afs_FindVCache(tvc->mvid.target_root, &retry, IS_WLOCK);
382                 if (root_vp && retry) {
383                     ReleaseWriteLock(&afs_xvcache);
384                     afs_PutVCache(root_vp);
385                 }
386             } while (root_vp && retry);
387             ReleaseWriteLock(&afs_xvcache);
388         } else {
389             root_vp = afs_GetVCache(tvc->mvid.target_root, areq);
390         }
391         if (!root_vp) {
392             code = canblock ? EIO : 0;
393             goto done;
394         }
395 #ifdef AFS_DARWIN80_ENV
396         root_vp->f.m.Type = VDIR;
397         AFS_GUNLOCK();
398         code = afs_darwin_finalizevnode(root_vp, NULL, NULL, 0, 0);
399         AFS_GLOCK();
400         if (code) goto done;
401         vnode_ref(AFSTOV(root_vp));
402 #endif
403         if (tvolp && !afs_InReadDir(root_vp)) {
404             /* Is this always kosher?  Perhaps we should instead use
405              * NBObtainWriteLock to avoid potential deadlock.
406              */
407             ObtainWriteLock(&root_vp->lock, 598);
408             if (!root_vp->mvid.parent)
409                 root_vp->mvid.parent = osi_AllocSmallSpace(sizeof(struct VenusFid));
410             *root_vp->mvid.parent = tvolp->dotdot;
411             ReleaseWriteLock(&root_vp->lock);
412         }
413         state->need_release = 1;
414         state->root_vp = root_vp;
415         *avcp = root_vp;
416         code = 0;
417     } else {
418         code = canblock ? EIO : 0;
419     }
420
421   done:
422     if (tvolp)
423         afs_PutVolume(tvolp, WRITE_LOCK);
424     return code;
425 }
426
427 /*
428  * afs_EvalFakeStat
429  *
430  * Automatically does the equivalent of EvalMountPoint for vcache entries
431  * which are mount points.  Remembers enough state to properly release
432  * the volume root vcache when afs_PutFakeStat() is called.
433  *
434  * State variable must be initialized by afs_InitFakeState() beforehand.
435  *
436  * Returns 0 when everything succeeds and *avcp points to the vcache entry
437  * that should be used for the real vnode operation.  Returns non-zero if
438  * something goes wrong and the error code should be returned to the user.
439  */
440 int
441 afs_EvalFakeStat(struct vcache **avcp, struct afs_fakestat_state *state,
442                  struct vrequest *areq)
443 {
444     return afs_EvalFakeStat_int(avcp, state, areq, 1);
445 }
446
447 /*
448  * afs_TryEvalFakeStat
449  *
450  * Same as afs_EvalFakeStat, but tries not to talk to remote servers
451  * and only evaluate the mount point if all the data is already in
452  * local caches.
453  *
454  * Returns 0 if everything succeeds and *avcp points to a valid
455  * vcache entry (possibly evaluated).
456  */
457 int
458 afs_TryEvalFakeStat(struct vcache **avcp, struct afs_fakestat_state *state,
459                     struct vrequest *areq)
460 {
461     return afs_EvalFakeStat_int(avcp, state, areq, 0);
462 }
463
464 /*
465  * afs_PutFakeStat
466  *
467  * Perform any necessary cleanup at the end of a vnode op, given that
468  * afs_InitFakeStat was previously called with this state.
469  */
470 void
471 afs_PutFakeStat(struct afs_fakestat_state *state)
472 {
473     if (!afs_fakestat_enable)
474         return;
475
476     osi_Assert(state->valid == 1);
477     if (state->need_release)
478         afs_PutVCache(state->root_vp);
479     state->valid = 0;
480 }
481
482 int
483 afs_ENameOK(char *aname)
484 {
485     int tlen;
486
487     AFS_STATCNT(ENameOK);
488     tlen = strlen(aname);
489     if (tlen >= 4 && strcmp(aname + tlen - 4, "@sys") == 0)
490         return 0;
491     return 1;
492 }
493
494 static int
495 afs_getsysname(struct vrequest *areq, struct vcache *adp,
496                char *bufp, int *num, char **sysnamelist[])
497 {
498     struct unixuser *au;
499     afs_int32 error;
500
501     AFS_STATCNT(getsysname);
502
503     *sysnamelist = afs_sysnamelist;
504
505     if (!afs_nfsexporter)
506         strcpy(bufp, (*sysnamelist)[0]);
507     else {
508         au = afs_GetUser(areq->uid, adp->f.fid.Cell, READ_LOCK);
509         if (au->exporter) {
510             error = EXP_SYSNAME(au->exporter, (char *)0, sysnamelist, num, 0);
511             if (error) {
512                 strcpy(bufp, "@sys");
513                 afs_PutUser(au, READ_LOCK);
514                 return -1;
515             } else {
516                 strcpy(bufp, (*sysnamelist)[0]);
517             }
518         } else
519             strcpy(bufp, afs_sysname);
520         afs_PutUser(au, READ_LOCK);
521     }
522     return 0;
523 }
524
525 void
526 Check_AtSys(struct vcache *avc, const char *aname,
527             struct sysname_info *state, struct vrequest *areq)
528 {
529     int num = 0;
530     char **sysnamelist[MAXNUMSYSNAMES];
531
532     if (AFS_EQ_ATSYS(aname)) {
533         state->offset = 0;
534         state->name = osi_AllocLargeSpace(MAXSYSNAME);
535         state->allocked = 1;
536         state->index =
537             afs_getsysname(areq, avc, state->name, &num, sysnamelist);
538     } else {
539         state->offset = -1;
540         state->allocked = 0;
541         state->index = 0;
542         state->name = (char *)aname;
543     }
544 }
545
546 int
547 Next_AtSys(struct vcache *avc, struct vrequest *areq,
548            struct sysname_info *state)
549 {
550     int num = afs_sysnamecount;
551     char **sysnamelist[MAXNUMSYSNAMES];
552
553     if (state->index == -1)
554         return 0;               /* No list */
555
556     /* Check for the initial state of aname != "@sys" in Check_AtSys */
557     if (state->offset == -1 && state->allocked == 0) {
558         char *tname;
559
560         /* Check for .*@sys */
561         for (tname = state->name; *tname; tname++)
562             /*Move to the end of the string */ ;
563
564         if ((tname > state->name + 4) && (AFS_EQ_ATSYS(tname - 4))) {
565             state->offset = (tname - 4) - state->name;
566             tname = osi_AllocLargeSpace(AFS_LRALLOCSIZ);
567             strncpy(tname, state->name, state->offset);
568             state->name = tname;
569             state->allocked = 1;
570             num = 0;
571             state->index =
572                 afs_getsysname(areq, avc, state->name + state->offset, &num,
573                                sysnamelist);
574             return 1;
575         } else
576             return 0;           /* .*@sys doesn't match either */
577     } else {
578         struct unixuser *au;
579         afs_int32 error;
580
581         *sysnamelist = afs_sysnamelist;
582
583         if (afs_nfsexporter) {
584             au = afs_GetUser(areq->uid, avc->f.fid.Cell, READ_LOCK);
585             if (au->exporter) {
586                 error =
587                     EXP_SYSNAME(au->exporter, (char *)0, sysnamelist, &num, 0);
588                 if (error) {
589                     afs_PutUser(au, READ_LOCK);
590                     return 0;
591                 }
592             }
593             afs_PutUser(au, READ_LOCK);
594         }
595         if (++(state->index) >= num || !(*sysnamelist)[(unsigned int)state->index])
596             return 0;           /* end of list */
597     }
598     strcpy(state->name + state->offset, (*sysnamelist)[(unsigned int)state->index]);
599     return 1;
600 }
601
602 static int
603 afs_CheckBulkStatus(struct afs_conn *tc, int nFids, AFSBulkStats *statParm,
604                     AFSCBs *cbParm)
605 {
606     int i;
607     int code;
608
609     if (statParm->AFSBulkStats_len != nFids || cbParm->AFSCBs_len != nFids) {
610         afs_warn("afs: BulkFetchStatus length %u/%u, expected %u\n",
611                  (unsigned)statParm->AFSBulkStats_len,
612                  (unsigned)cbParm->AFSCBs_len, nFids);
613         afs_BadFetchStatus(tc);
614         return VBUSY;
615     }
616     for (i = 0; i < nFids; i++) {
617         if (statParm->AFSBulkStats_val[i].errorCode) {
618             continue;
619         }
620         code = afs_CheckFetchStatus(tc, &statParm->AFSBulkStats_val[i]);
621         if (code) {
622             return code;
623         }
624     }
625
626     return 0;
627 }
628
629 extern int BlobScan(struct dcache * afile, afs_int32 ablob, afs_int32 *ablobOut);
630
631 /* called with an unlocked directory and directory cookie.  Areqp
632  * describes who is making the call.
633  * Scans the next N (about 30, typically) directory entries, and does
634  * a bulk stat call to stat them all.
635  *
636  * Must be very careful when merging in RPC responses, since we dont
637  * want to overwrite newer info that was added by a file system mutating
638  * call that ran concurrently with our bulk stat call.
639  *
640  * We do that, as described below, by not merging in our info (always
641  * safe to skip the merge) if the status info is valid in the vcache entry.
642  *
643  * If adapt ever implements the bulk stat RPC, then this code will need to
644  * ensure that vcaches created for failed RPC's to older servers have the
645  * CForeign bit set.
646  */
647 static struct vcache *BStvc = NULL;
648
649 int
650 afs_DoBulkStat(struct vcache *adp, long dirCookie, struct vrequest *areqp)
651 {
652     int nentries;               /* # of entries to prefetch */
653     int nskip;                  /* # of slots in the LRU queue to skip */
654 #ifdef AFS_DARWIN80_ENV
655     int npasses = 0;
656     struct vnode *lruvp;
657 #endif
658     struct vcache *lruvcp;      /* vcache ptr of our goal pos in LRU queue */
659     struct dcache *dcp;         /* chunk containing the dir block */
660     afs_size_t temp;            /* temp for holding chunk length, &c. */
661     struct AFSFid *fidsp;       /* file IDs were collecting */
662     struct AFSCallBack *cbsp;   /* call back pointers */
663     struct AFSCallBack *tcbp;   /* temp callback ptr */
664     struct AFSFetchStatus *statsp;      /* file status info */
665     struct AFSVolSync volSync;  /* vol sync return info */
666     struct vcache *tvcp;        /* temp vcp */
667     struct afs_q *tq;           /* temp queue variable */
668     AFSCBFids fidParm;          /* file ID parm for bulk stat */
669     AFSBulkStats statParm;      /* stat info parm for bulk stat */
670     int fidIndex = 0;           /* which file were stating */
671     struct afs_conn *tcp = 0;   /* conn for call */
672     AFSCBs cbParm;              /* callback parm for bulk stat */
673     struct server *hostp = 0;   /* host we got callback from */
674     long startTime;             /* time we started the call,
675                                  * for callback expiration base
676                                  */
677 #if defined(AFS_DARWIN_ENV)
678     int ftype[4] = {VNON, VREG, VDIR, VLNK}; /* verify type is as expected */
679 #endif
680     afs_size_t statSeqNo = 0;   /* Valued of file size to detect races */
681     int code;                   /* error code */
682     afs_int32 newIndex;         /* new index in the dir */
683     struct DirBuffer entry;     /* Buffer for dir manipulation */
684     struct DirEntry *dirEntryp; /* dir entry we are examining */
685     int i;
686     struct VenusFid afid;       /* file ID we are using now */
687     struct VenusFid tfid;       /* another temp. file ID */
688     afs_int32 retry;            /* handle low-level SGI MP race conditions */
689     long volStates;             /* flags from vol structure */
690     struct volume *volp = 0;    /* volume ptr */
691     struct VenusFid dotdot = {0, {0, 0, 0}};
692     int flagIndex = 0;          /* First file with bulk fetch flag set */
693     struct rx_connection *rxconn;
694     XSTATS_DECLS;
695     dotdot.Cell = 0;
696     dotdot.Fid.Unique = 0;
697     dotdot.Fid.Vnode = 0;
698
699     /* first compute some basic parameters.  We dont want to prefetch more
700      * than a fraction of the cache in any given call, and we want to preserve
701      * a portion of the LRU queue in any event, so as to avoid thrashing
702      * the entire stat cache (we will at least leave some of it alone).
703      * presently dont stat more than 1/8 the cache in any one call.      */
704     nentries = afs_cacheStats / 8;
705
706     /* dont bother prefetching more than one calls worth of info */
707     if (nentries > AFSCBMAX)
708         nentries = AFSCBMAX;
709
710     /* heuristic to make sure that things fit in 4K.  This means that
711      * we shouldnt make it any bigger than 47 entries.  I am typically
712      * going to keep it a little lower, since we don't want to load
713      * too much of the stat cache.
714      */
715     if (nentries > 30)
716         nentries = 30;
717
718     /* now, to reduce the stack size, well allocate two 4K blocks,
719      * one for fids and callbacks, and one for stat info.  Well set
720      * up our pointers to the memory from there, too.
721      */
722     statsp = osi_Alloc(AFSCBMAX * sizeof(AFSFetchStatus));
723     fidsp = osi_AllocLargeSpace(nentries * sizeof(AFSFid));
724     cbsp = osi_Alloc(AFSCBMAX * sizeof(AFSCallBack));
725
726     /* next, we must iterate over the directory, starting from the specified
727      * cookie offset (dirCookie), and counting out nentries file entries.
728      * We skip files that already have stat cache entries, since we
729      * dont want to bulk stat files that are already in the cache.
730      */
731   tagain:
732     code = afs_VerifyVCache(adp, areqp);
733     if (code)
734         goto done2;
735
736     dcp = afs_GetDCache(adp, (afs_size_t) 0, areqp, &temp, &temp, 1);
737     if (!dcp) {
738         code = EIO;
739         goto done2;
740     }
741
742     /* lock the directory cache entry */
743     ObtainReadLock(&adp->lock);
744     ObtainReadLock(&dcp->lock);
745
746     /*
747      * Make sure that the data in the cache is current. There are two
748      * cases we need to worry about:
749      * 1. The cache data is being fetched by another process.
750      * 2. The cache data is no longer valid
751      */
752     while ((adp->f.states & CStatd)
753            && (dcp->dflags & DFFetching)
754            && afs_IsDCacheFresh(dcp, adp)) {
755         afs_Trace4(afs_iclSetp, CM_TRACE_DCACHEWAIT, ICL_TYPE_STRING,
756                    __FILE__, ICL_TYPE_INT32, __LINE__, ICL_TYPE_POINTER, dcp,
757                    ICL_TYPE_INT32, dcp->dflags);
758         ReleaseReadLock(&dcp->lock);
759         ReleaseReadLock(&adp->lock);
760         afs_osi_Sleep(&dcp->validPos);
761         ObtainReadLock(&adp->lock);
762         ObtainReadLock(&dcp->lock);
763     }
764     if (!(adp->f.states & CStatd)
765         || !afs_IsDCacheFresh(dcp, adp)) {
766         ReleaseReadLock(&dcp->lock);
767         ReleaseReadLock(&adp->lock);
768         afs_PutDCache(dcp);
769         goto tagain;
770     }
771
772     /* Generate a sequence number so we can tell whether we should
773      * store the attributes when processing the response. This number is
774      * stored in the file size when we set the CBulkFetching bit. If the
775      * CBulkFetching is still set and this value hasn't changed, then
776      * we know we were the last to set CBulkFetching bit for this file,
777      * and it is safe to set the status information for this file.
778      */
779     statSeqNo = bulkStatCounter++;
780     /* ensure against wrapping */
781     if (statSeqNo == 0)
782         statSeqNo = bulkStatCounter++;
783
784     /* now we have dir data in the cache, so scan the dir page */
785     fidIndex = 0;
786     flagIndex = 0;
787     while (1) {                 /* Should probably have some constant bound */
788         /* look for first safe entry to examine in the directory.  BlobScan
789          * looks for a the 1st allocated dir after the dirCookie slot.
790          */
791         code = BlobScan(dcp, (dirCookie >> 5), &newIndex);
792         if (code || newIndex == 0)
793             break;
794
795         /* remember the updated directory cookie */
796         dirCookie = newIndex << 5;
797
798         /* get a ptr to the dir entry */
799         code = afs_dir_GetBlob(dcp, newIndex, &entry);
800         if (code)
801             break;
802         dirEntryp = (struct DirEntry *)entry.data;
803
804         /* dont copy more than we have room for */
805         if (fidIndex >= nentries) {
806             DRelease(&entry, 0);
807             break;
808         }
809
810         /* now, if the dir entry looks good, copy it out to our list.  Vnode
811          * 0 means deleted, although it should also be free were it deleted.
812          */
813         if (dirEntryp->fid.vnode != 0) {
814             /* dont copy entries we have in our cache.  This check will
815              * also make us skip "." and probably "..", unless it has
816              * disappeared from the cache since we did our namei call.
817              */
818             tfid.Cell = adp->f.fid.Cell;
819             tfid.Fid.Volume = adp->f.fid.Fid.Volume;
820             tfid.Fid.Vnode = ntohl(dirEntryp->fid.vnode);
821             tfid.Fid.Unique = ntohl(dirEntryp->fid.vunique);
822             do {
823                 retry = 0;
824                 ObtainWriteLock(&afs_xvcache, 130);
825                 tvcp = afs_FindVCache(&tfid, &retry, IS_WLOCK /* no stats | LRU */ );
826                 if (tvcp && retry) {
827                     ReleaseWriteLock(&afs_xvcache);
828                     afs_PutVCache(tvcp);
829                 }
830             } while (tvcp && retry);
831             if (!tvcp) {        /* otherwise, create manually */
832                 tvcp = afs_NewBulkVCache(&tfid, hostp, statSeqNo);
833                 if (tvcp)
834                 {
835                     ObtainWriteLock(&tvcp->lock, 505);
836 #ifdef AFS_DARWIN80_ENV
837                     /* use even/odd hack to guess file versus dir.
838                        let links be reaped. oh well. */
839                     if (dirEntryp->fid.vnode & 1)
840                         tvcp->f.m.Type = VDIR;
841                     else
842                         tvcp->f.m.Type = VREG;
843                     /* finalize to a best guess */
844                     afs_darwin_finalizevnode(tvcp, AFSTOV(adp), NULL, 0, 1);
845                     /* re-acquire usecount that finalizevnode disposed of */
846                     vnode_ref(AFSTOV(tvcp));
847 #endif
848                     ReleaseWriteLock(&afs_xvcache);
849                     afs_RemoveVCB(&tfid);
850                     ReleaseWriteLock(&tvcp->lock);
851                 } else {
852                     ReleaseWriteLock(&afs_xvcache);
853                 }
854             } else {
855                 ReleaseWriteLock(&afs_xvcache);
856             }
857             if (!tvcp)
858             {
859                 DRelease(&entry, 0);
860                 ReleaseReadLock(&dcp->lock);
861                 ReleaseReadLock(&adp->lock);
862                 afs_PutDCache(dcp);
863                 goto done;      /* can happen if afs_NewVCache fails */
864             }
865
866             /* WARNING: afs_DoBulkStat uses the Length field to store a
867              * sequence number for each bulk status request. Under no
868              * circumstances should afs_DoBulkStat store a sequence number
869              * if the new length will be ignored when afs_ProcessFS is
870              * called with new stats. */
871 #ifdef AFS_SGI_ENV
872             if (!(tvcp->f.states & CStatd)
873                 && (!((tvcp->f.states & CBulkFetching) &&
874                       (tvcp->f.m.Length != statSeqNo)))
875                 && (tvcp->execsOrWriters <= 0)
876                 && !afs_DirtyPages(tvcp)
877                 && !AFS_VN_MAPPED((vnode_t *) tvcp))
878 #else
879             if (!(tvcp->f.states & CStatd)
880                 && (!((tvcp->f.states & CBulkFetching) &&
881                       (tvcp->f.m.Length != statSeqNo)))
882                 && (tvcp->execsOrWriters <= 0)
883                 && !afs_DirtyPages(tvcp))
884 #endif
885
886             {
887                 /* this entry doesnt exist in the cache, and is not
888                  * already being fetched by someone else, so add it to the
889                  * list of file IDs to obtain.
890                  *
891                  * We detect a callback breaking race condition by checking the
892                  * CBulkFetching state bit and the value in the file size.
893                  * It is safe to set the status only if the CBulkFetching
894                  * flag is still set and the value in the file size does
895                  * not change. NewBulkVCache sets us up for the new ones.
896                  * Set up the rest here.
897                  *
898                  * Don't fetch status for dirty files. We need to
899                  * preserve the value of the file size. We could
900                  * flush the pages, but it wouldn't be worthwhile.
901                  */
902                 if (!(tvcp->f.states & CBulkFetching)) {
903                     tvcp->f.states |= CBulkFetching;
904                     tvcp->f.m.Length = statSeqNo;
905                 }
906                 memcpy((char *)(fidsp + fidIndex), (char *)&tfid.Fid,
907                        sizeof(*fidsp));
908                 fidIndex++;
909             }
910             afs_PutVCache(tvcp);
911         }
912
913         /* if dir vnode has non-zero entry */
914         /* move to the next dir entry by adding in the # of entries
915          * used by this dir entry.
916          */
917         temp = afs_dir_NameBlobs(dirEntryp->name) << 5;
918         DRelease(&entry, 0);
919         if (temp <= 0)
920             break;
921         dirCookie += temp;
922     }                           /* while loop over all dir entries */
923
924     /* now release the dir lock and prepare to make the bulk RPC */
925     ReleaseReadLock(&dcp->lock);
926     ReleaseReadLock(&adp->lock);
927
928     /* release the chunk */
929     afs_PutDCache(dcp);
930
931     /* dont make a null call */
932     if (fidIndex == 0)
933         goto done;
934
935     do {
936         /* setup the RPC parm structures */
937         fidParm.AFSCBFids_len = fidIndex;
938         fidParm.AFSCBFids_val = fidsp;
939         statParm.AFSBulkStats_len = fidIndex;
940         statParm.AFSBulkStats_val = statsp;
941         cbParm.AFSCBs_len = fidIndex;
942         cbParm.AFSCBs_val = cbsp;
943
944         /* start the timer; callback expirations are relative to this */
945         startTime = osi_Time();
946
947         tcp = afs_Conn(&adp->f.fid, areqp, SHARED_LOCK, &rxconn);
948         if (tcp) {
949             hostp = tcp->parent->srvr->server;
950
951             for (i = 0; i < fidIndex; i++) {
952                 /* we must set tvcp->callback before the BulkStatus call, so
953                  * we can detect concurrent InitCallBackState's */
954
955                 afid.Cell = adp->f.fid.Cell;
956                 afid.Fid.Volume = adp->f.fid.Fid.Volume;
957                 afid.Fid.Vnode = fidsp[i].Vnode;
958                 afid.Fid.Unique = fidsp[i].Unique;
959
960                 do {
961                     retry = 0;
962                     ObtainReadLock(&afs_xvcache);
963                     tvcp = afs_FindVCache(&afid, &retry, 0 /* !stats&!lru */);
964                     ReleaseReadLock(&afs_xvcache);
965                 } while (tvcp && retry);
966
967                 if (!tvcp) {
968                     continue;
969                 }
970
971                 if ((tvcp->f.states & CBulkFetching) &&
972                      (tvcp->f.m.Length == statSeqNo)) {
973                     tvcp->callback = hostp;
974                 }
975
976                 afs_PutVCache(tvcp);
977                 tvcp = NULL;
978             }
979
980             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_BULKSTATUS);
981
982             if (!(tcp->parent->srvr->server->flags & SNO_INLINEBULK)) {
983                 RX_AFS_GUNLOCK();
984                 code =
985                     RXAFS_InlineBulkStatus(rxconn, &fidParm, &statParm,
986                                            &cbParm, &volSync);
987                 RX_AFS_GLOCK();
988                 if (code == RXGEN_OPCODE) {
989                     tcp->parent->srvr->server->flags |= SNO_INLINEBULK;
990                     RX_AFS_GUNLOCK();
991                     code =
992                         RXAFS_BulkStatus(rxconn, &fidParm, &statParm,
993                                          &cbParm, &volSync);
994                     RX_AFS_GLOCK();
995                 }
996             } else {
997                 RX_AFS_GUNLOCK();
998                 code =
999                     RXAFS_BulkStatus(rxconn, &fidParm, &statParm, &cbParm,
1000                                      &volSync);
1001                 RX_AFS_GLOCK();
1002             }
1003             XSTATS_END_TIME;
1004
1005             if (code == 0) {
1006                 code = afs_CheckBulkStatus(tcp, fidIndex, &statParm, &cbParm);
1007             }
1008         } else
1009             code = -1;
1010         /* make sure we give afs_Analyze a chance to retry,
1011          * but if the RPC succeeded we may have entries to merge.
1012          * if we wipe code with one entry's status we get bogus failures.
1013          */
1014     } while (afs_Analyze
1015              (tcp, rxconn, code ? code : (&statsp[0])->errorCode,
1016               &adp->f.fid, areqp, AFS_STATS_FS_RPCIDX_BULKSTATUS,
1017               SHARED_LOCK, NULL));
1018
1019     /* now, if we didnt get the info, bail out. */
1020     if (code)
1021         goto done;
1022
1023     /* we need vol flags to create the entries properly */
1024     dotdot.Fid.Volume = 0;
1025     volp = afs_GetVolume(&adp->f.fid, areqp, READ_LOCK);
1026     if (volp) {
1027         volStates = volp->states;
1028         if (volp->dotdot.Fid.Volume != 0)
1029             dotdot = volp->dotdot;
1030     } else
1031         volStates = 0;
1032
1033     /* find the place to merge the info into  We do this by skipping
1034      * nskip entries in the LRU queue.  The more we skip, the more
1035      * we preserve, since the head of the VLRU queue is the most recently
1036      * referenced file.
1037      */
1038   reskip:
1039     nskip = afs_cacheStats / 2; /* preserved fraction of the cache */
1040     ObtainReadLock(&afs_xvcache);
1041 #ifdef AFS_DARWIN80_ENV
1042  reskip2:
1043 #endif
1044     if (QEmpty(&VLRU)) {
1045         /* actually a serious error, probably should panic. Probably will 
1046          * panic soon, oh well. */
1047         ReleaseReadLock(&afs_xvcache);
1048         afs_warnuser("afs_DoBulkStat: VLRU empty!");
1049         goto done;
1050     }
1051     if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
1052         refpanic("Bulkstat VLRU inconsistent");
1053     }
1054     for (tq = VLRU.next; tq != &VLRU; tq = QNext(tq)) {
1055         if (--nskip <= 0) {
1056 #ifdef AFS_DARWIN80_ENV
1057             if ((!(QTOV(tq)->f.states & CDeadVnode)&&!(QTOV(tq)->f.states & CVInit)))
1058 #endif
1059                 break;
1060         }
1061         if (QNext(QPrev(tq)) != tq) {
1062             BStvc = QTOV(tq);
1063             refpanic("BulkStat VLRU inconsistent");
1064         }
1065     }
1066     if (tq != &VLRU)
1067         lruvcp = QTOV(tq);
1068     else
1069         lruvcp = QTOV(VLRU.next);
1070
1071     /* now we have to hold this entry, so that it does not get moved
1072      * into the free list while we're running.  It could still get
1073      * moved within the lru queue, but hopefully that will be rare; it
1074      * doesn't hurt nearly as much.
1075      */
1076     retry = 0;
1077 #ifdef AFS_DARWIN80_ENV
1078     if (((lruvcp->f.states & CDeadVnode)||(lruvcp->f.states & CVInit))) {
1079         if (npasses == 0) {
1080             nskip = 1;
1081             npasses++;
1082             goto reskip2;
1083         } else
1084             panic("Can't find non-dead vnode in VLRU\n");
1085     }
1086     lruvp = AFSTOV(lruvcp);
1087     if (vnode_get(lruvp))       /* this bumps ref count */
1088         retry = 1;
1089     else if (vnode_ref(lruvp)) {
1090         AFS_GUNLOCK();
1091         /* AFSTOV(lruvcp) may be NULL */
1092         vnode_put(lruvp);
1093         AFS_GLOCK();
1094         retry = 1;
1095     }
1096 #else
1097     if (osi_vnhold(lruvcp) != 0) {
1098         retry = 1;
1099     }
1100 #endif
1101     ReleaseReadLock(&afs_xvcache);      /* could be read lock */
1102     if (retry)
1103         goto reskip;
1104
1105     /* otherwise, merge in the info.  We have to be quite careful here,
1106      * since we need to ensure that we don't merge old info over newer
1107      * stuff in a stat cache entry.  We're very conservative here: we don't
1108      * do the merge at all unless we ourselves create the stat cache
1109      * entry.  That's pretty safe, and should work pretty well, since we
1110      * typically expect to do the stat cache creation ourselves.
1111      *
1112      * We also have to take into account racing token revocations.
1113      */
1114     for (i = 0; i < fidIndex; i++) {
1115         if ((&statsp[i])->errorCode)
1116             continue;
1117         afid.Cell = adp->f.fid.Cell;
1118         afid.Fid.Volume = adp->f.fid.Fid.Volume;
1119         afid.Fid.Vnode = fidsp[i].Vnode;
1120         afid.Fid.Unique = fidsp[i].Unique;
1121         do {
1122             retry = 0;
1123             ObtainReadLock(&afs_xvcache);
1124             tvcp = afs_FindVCache(&afid, &retry, 0/* !stats&!lru */);
1125             ReleaseReadLock(&afs_xvcache);
1126         } while (tvcp && retry);
1127
1128         /* The entry may no longer exist */
1129         if (tvcp == NULL) {
1130             continue;
1131         }
1132
1133         /* now we have the entry held, but we need to fill it in */
1134         ObtainWriteLock(&tvcp->lock, 131);
1135
1136         /* if CBulkFetching is not set, or if the file size no longer
1137          * matches the value we placed there when we set the CBulkFetching
1138          * flag, then someone else has done something with this node,
1139          * and we may not have the latest status information for this
1140          * file.  Leave the entry alone. There's also a file type
1141          * change here, for OSX bulkstat support.
1142          */
1143         if (!(tvcp->f.states & CBulkFetching)
1144             || (tvcp->f.m.Length != statSeqNo)
1145 #if defined(AFS_DARWIN_ENV)
1146             || (ftype[(&statsp[i])->FileType] != vType(tvcp))
1147 #endif
1148            ) {
1149             flagIndex++;
1150             ReleaseWriteLock(&tvcp->lock);
1151             afs_PutVCache(tvcp);
1152             continue;
1153         }
1154
1155         /* now copy ".." entry back out of volume structure, if necessary */
1156         if (tvcp->mvstat == AFS_MVSTAT_ROOT && (dotdot.Fid.Volume != 0)) {
1157             if (!tvcp->mvid.parent)
1158                 tvcp->mvid.parent = osi_AllocSmallSpace(sizeof(struct VenusFid));
1159             *tvcp->mvid.parent = dotdot;
1160         }
1161
1162 #ifdef AFS_DARWIN80_ENV
1163         if (((lruvcp->f.states & CDeadVnode)||(lruvcp->f.states & CVInit)))
1164             panic("vlru control point went dead\n");
1165 #endif
1166
1167         ObtainWriteLock(&afs_xvcache, 132);
1168         if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
1169             refpanic("Bulkstat VLRU inconsistent2");
1170         }
1171         if ((QNext(QPrev(&tvcp->vlruq)) != &tvcp->vlruq)
1172             || (QPrev(QNext(&tvcp->vlruq)) != &tvcp->vlruq)) {
1173             refpanic("Bulkstat VLRU inconsistent4");
1174         }
1175         if ((QNext(QPrev(&lruvcp->vlruq)) != &lruvcp->vlruq)
1176             || (QPrev(QNext(&lruvcp->vlruq)) != &lruvcp->vlruq)) {
1177             refpanic("Bulkstat VLRU inconsistent5");
1178         }
1179
1180         if (tvcp != lruvcp) {   /* if they are == don't move it, don't corrupt vlru */
1181             QRemove(&tvcp->vlruq);
1182             QAdd(&lruvcp->vlruq, &tvcp->vlruq);
1183         }
1184
1185         if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
1186             refpanic("Bulkstat VLRU inconsistent3");
1187         }
1188         if ((QNext(QPrev(&tvcp->vlruq)) != &tvcp->vlruq)
1189             || (QPrev(QNext(&tvcp->vlruq)) != &tvcp->vlruq)) {
1190             refpanic("Bulkstat VLRU inconsistent5");
1191         }
1192         if ((QNext(QPrev(&lruvcp->vlruq)) != &lruvcp->vlruq)
1193             || (QPrev(QNext(&lruvcp->vlruq)) != &lruvcp->vlruq)) {
1194             refpanic("Bulkstat VLRU inconsistent6");
1195         }
1196         ReleaseWriteLock(&afs_xvcache);
1197
1198         ObtainWriteLock(&afs_xcbhash, 494);
1199
1200         /* We need to check the flags again. We may have missed
1201          * something while we were waiting for a lock.
1202          */
1203         if (!(tvcp->f.states & CBulkFetching) || (tvcp->f.m.Length != statSeqNo)) {
1204             flagIndex++;
1205             ReleaseWriteLock(&tvcp->lock);
1206             ReleaseWriteLock(&afs_xcbhash);
1207             afs_PutVCache(tvcp);
1208             continue;
1209         }
1210
1211         /* now merge in the resulting status back into the vnode.
1212          * We only do this if the entry looks clear.
1213          */
1214         afs_ProcessFS(tvcp, &statsp[i], areqp);
1215 #if defined(AFS_LINUX22_ENV)
1216         afs_fill_inode(AFSTOV(tvcp), NULL);     /* reset inode operations */
1217 #endif
1218
1219         /* do some accounting for bulk stats: mark this entry as
1220          * loaded, so we can tell if we use it before it gets
1221          * recycled.
1222          */
1223         tvcp->f.states |= CBulkStat;
1224         tvcp->f.states &= ~CBulkFetching;
1225         flagIndex++;
1226         afs_bulkStatsDone++;
1227
1228         /* merge in vol info */
1229         if (volStates & VRO)
1230             tvcp->f.states |= CRO;
1231         if (volStates & VBackup)
1232             tvcp->f.states |= CBackup;
1233         if (volStates & VForeign)
1234             tvcp->f.states |= CForeign;
1235
1236         /* merge in the callback info */
1237         tvcp->f.states |= CTruth;
1238
1239         /* get ptr to the callback we are interested in */
1240         tcbp = cbsp + i;
1241
1242         if (tcbp->ExpirationTime != 0) {
1243             tvcp->cbExpires = tcbp->ExpirationTime + startTime;
1244             tvcp->callback = hostp;
1245             tvcp->f.states |= CStatd;
1246             afs_QueueCallback(tvcp, CBHash(tcbp->ExpirationTime), volp);
1247         } else if (tvcp->f.states & CRO) {
1248             /* ordinary callback on a read-only volume -- AFS 3.2 style */
1249             tvcp->cbExpires = 3600 + startTime;
1250             tvcp->callback = hostp;
1251             tvcp->f.states |= CStatd;
1252             afs_QueueCallback(tvcp, CBHash(3600), volp);
1253         } else {
1254             afs_StaleVCacheFlags(tvcp,
1255                                  AFS_STALEVC_CBLOCKED | AFS_STALEVC_CLEARCB,
1256                                  CUnique);
1257         }
1258 #ifdef AFS_DARWIN80_ENV
1259         /* reclaim->FlushVCache will need xcbhash */
1260         if (((tvcp->f.states & CDeadVnode)||(tvcp->f.states & CVInit))) {
1261             ReleaseWriteLock(&afs_xcbhash);
1262             /* passing in a parent hangs getting the vnode lock */
1263             code = afs_darwin_finalizevnode(tvcp, NULL, NULL, 0, 1);
1264             if (code) {
1265                 /* It's gonna get recycled - shouldn't happen */
1266                 afs_StaleVCacheFlags(tvcp,
1267                                      AFS_STALEVC_CBLOCKED | AFS_STALEVC_CLEARCB,
1268                                      CUnique);
1269             } else
1270                 /* re-acquire the usecount that finalizevnode disposed of */
1271                 vnode_ref(AFSTOV(tvcp));
1272         } else
1273 #endif
1274         ReleaseWriteLock(&afs_xcbhash);
1275
1276         ReleaseWriteLock(&tvcp->lock);
1277         /* finally, we're done with the entry */
1278         afs_PutVCache(tvcp);
1279     }                           /* for all files we got back */
1280
1281     /* finally return the pointer into the LRU queue */
1282 #ifdef AFS_DARWIN80_ENV
1283     if (((lruvcp->f.states & CDeadVnode)||(lruvcp->f.states & CVInit)))
1284         panic("vlru control point went dead before put\n");
1285     AFS_GUNLOCK();
1286     vnode_put(lruvp);
1287     vnode_rele(lruvp);
1288     AFS_GLOCK();
1289 #else
1290     afs_PutVCache(lruvcp);
1291 #endif
1292
1293   done:
1294     /* Be sure to turn off the CBulkFetching flags */
1295     for (i = flagIndex; i < fidIndex; i++) {
1296         afid.Cell = adp->f.fid.Cell;
1297         afid.Fid.Volume = adp->f.fid.Fid.Volume;
1298         afid.Fid.Vnode = fidsp[i].Vnode;
1299         afid.Fid.Unique = fidsp[i].Unique;
1300         do {
1301             retry = 0;
1302             ObtainReadLock(&afs_xvcache);
1303             tvcp = afs_FindVCache(&afid, &retry, 0 /* !stats&!lru */);
1304             ReleaseReadLock(&afs_xvcache);
1305         } while (tvcp && retry);
1306         if (tvcp != NULL) {
1307             if ((tvcp->f.states & CBulkFetching)
1308                 && (tvcp->f.m.Length == statSeqNo)) {
1309                 tvcp->f.states &= ~CBulkFetching;
1310             }
1311             afs_PutVCache(tvcp);
1312         }
1313     }
1314     if (volp)
1315         afs_PutVolume(volp, READ_LOCK);
1316
1317   done2:
1318     osi_FreeLargeSpace((char *)fidsp);
1319     osi_Free((char *)statsp, AFSCBMAX * sizeof(AFSFetchStatus));
1320     osi_Free((char *)cbsp, AFSCBMAX * sizeof(AFSCallBack));
1321     return code;
1322 }
1323
1324 #ifdef AFS_DARWIN80_ENV
1325 int AFSDOBULK = 0;
1326 #endif
1327
1328 static int
1329 afs_ShouldTryBulkStat(struct vcache *adp)
1330 {
1331 #ifdef AFS_DARWIN80_ENV
1332     if (!AFSDOBULK) {
1333         return 0;
1334     }
1335 #endif
1336     if (AFS_IS_DISCONNECTED) {
1337         /* We can't prefetch entries if we're offline. */
1338         return 0;
1339     }
1340     if (adp->opens < 1) {
1341         /* Don't bother prefetching entries if nobody is holding the dir open
1342          * while we're doing a lookup. */
1343         return 0;
1344     }
1345     if ((adp->f.states & CForeign)) {
1346         /* Don't bulkstat for dfs xlator dirs. */
1347         return 0;
1348     }
1349     if (afs_IsDynroot(adp)) {
1350         /* Don't prefetch dynroot entries; that's pointless, since we generate
1351          * those locally. */
1352         return 0;
1353     }
1354     if (afs_InReadDir(adp)) {
1355         /* Don't bulkstat if we're in the middle of servicing a readdir() in
1356          * the same process. */
1357         return 0;
1358     }
1359     return 1;
1360 }
1361
1362 static_inline int
1363 osi_lookup_isdot(const char *aname)
1364 {
1365 #ifdef AFS_SUN5_ENV
1366     if (!aname[0]) {
1367         /* in Solaris, we can get passed "" as a path component if we are the
1368          * root directory, e.g. after a call to chroot. It is equivalent to
1369          * looking up "." */
1370         return 1;
1371     }
1372 #endif /* AFS_SUN5_ENV */
1373     if (aname[0] == '.' && !aname[1]) {
1374         return 1;
1375     }
1376     return 0;
1377 }
1378
1379 int
1380 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
1381 afs_lookup(OSI_VC_DECL(adp), char *aname, struct vcache **avcp, struct pathname *pnp, int flags, struct vnode *rdir, afs_ucred_t *acred)
1382 #elif defined(UKERNEL)
1383 afs_lookup(OSI_VC_DECL(adp), char *aname, struct vcache **avcp, afs_ucred_t *acred, int flags)
1384 #else
1385 afs_lookup(OSI_VC_DECL(adp), char *aname, struct vcache **avcp, afs_ucred_t *acred)
1386 #endif
1387 {
1388     struct vrequest *treq = NULL;
1389     char *tname = NULL;
1390     struct vcache *tvc = 0;
1391     afs_int32 code;
1392     afs_int32 bulkcode = 0;
1393     int pass = 0, hit = 0;
1394     int force_eval = afs_fakestat_enable ? 0 : 1;
1395     long dirCookie;
1396     afs_hyper_t versionNo;
1397     int no_read_access = 0;
1398     struct sysname_info sysState;       /* used only for @sys checking */
1399     int dynrootRetry = 1;
1400     struct afs_fakestat_state fakestate;
1401     int tryEvalOnly = 0;
1402
1403     /* Don't allow ENOENT errors, except for a specific code path where
1404      * 'enoent_prohibited' is cleared below. */
1405     int enoent_prohibited = 1;
1406
1407     OSI_VC_CONVERT(adp);
1408
1409     AFS_STATCNT(afs_lookup);
1410     afs_InitFakeStat(&fakestate);
1411
1412     AFS_DISCON_LOCK();
1413
1414     if ((code = afs_CreateReq(&treq, acred)))
1415         goto done;
1416
1417     if (afs_fakestat_enable && adp->mvstat == AFS_MVSTAT_MTPT) {
1418        if (strcmp(aname, ".directory") == 0)
1419            tryEvalOnly = 1;
1420     }
1421
1422 #if defined(AFS_DARWIN_ENV)
1423     /* Workaround for MacOSX Finder, which tries to look for
1424      * .DS_Store and Contents under every directory.
1425      */
1426     if (afs_fakestat_enable && adp->mvstat == AFS_MVSTAT_MTPT) {
1427         if (strcmp(aname, ".DS_Store") == 0)
1428             tryEvalOnly = 1;
1429         if (strcmp(aname, "Contents") == 0)
1430             tryEvalOnly = 1;
1431     }
1432     if (afs_fakestat_enable && adp->mvstat == AFS_MVSTAT_ROOT) {
1433         if (strncmp(aname, "._", 2) == 0)
1434             tryEvalOnly = 1;
1435     }
1436 #endif
1437
1438     if (tryEvalOnly)
1439         code = afs_TryEvalFakeStat(&adp, &fakestate, treq);
1440     else
1441         code = afs_EvalFakeStat(&adp, &fakestate, treq);
1442
1443     /*printf("Code is %d\n", code);*/
1444     
1445     if (tryEvalOnly && adp->mvstat == AFS_MVSTAT_MTPT)
1446         code = ENODEV;
1447     if (code)
1448         goto done;
1449
1450     /* come back to here if we encounter a non-existent object in a read-only
1451      * volume's directory */
1452   redo:
1453     *avcp = NULL;               /* Since some callers don't initialize it */
1454     bulkcode = 0;
1455
1456     if (!(adp->f.states & CStatd) && !afs_InReadDir(adp)) {
1457         if ((code = afs_VerifyVCache2(adp, treq))) {
1458             goto done;
1459         }
1460     } else
1461         code = 0;
1462
1463     /* watch for ".." in a volume root */
1464     if (adp->mvstat == AFS_MVSTAT_ROOT && aname[0] == '.' && aname[1] == '.' && !aname[2]) {
1465         /* looking up ".." in root via special hacks */
1466         if (adp->mvid.parent == (struct VenusFid *)0 || adp->mvid.parent->Fid.Volume == 0) {
1467             code = ENODEV;
1468             goto done;
1469         }
1470         /* otherwise we have the fid here, so we use it */
1471         /*printf("Getting vcache\n");*/
1472         tvc = afs_GetVCache(adp->mvid.parent, treq);
1473         afs_Trace3(afs_iclSetp, CM_TRACE_GETVCDOTDOT, ICL_TYPE_FID, adp->mvid.parent,
1474                    ICL_TYPE_POINTER, tvc, ICL_TYPE_INT32, code);
1475         *avcp = tvc;
1476         code = (tvc ? 0 : EIO);
1477         hit = 1;
1478         if (tvc && !VREFCOUNT_GT(tvc, 0)) {
1479             osi_Panic("TT1");
1480         }
1481         if (code) {
1482             /*printf("LOOKUP GETVCDOTDOT -> %d\n", code); */
1483         }
1484         goto done;
1485     }
1486
1487     /* now check the access */
1488     if (treq->uid != adp->last_looker) {
1489         if (!afs_AccessOK(adp, PRSFS_LOOKUP, treq, CHECK_MODE_BITS)) {
1490             *avcp = NULL;
1491             code = EACCES;
1492             goto done;
1493         } else
1494             adp->last_looker = treq->uid;
1495     }
1496
1497     /* Check for read access as well.  We need read access in order to
1498      * stat files, but not to stat subdirectories. */
1499     if (!afs_AccessOK(adp, PRSFS_READ, treq, CHECK_MODE_BITS))
1500         no_read_access = 1;
1501
1502     /* special case lookup of ".".  Can we check for it sooner in this code,
1503      * for instance, way up before "redo:" ??
1504      * I'm not fiddling with the LRUQ here, either, perhaps I should, or else 
1505      * invent a lightweight version of GetVCache.
1506      */
1507     if (osi_lookup_isdot(aname)) {      /* special case */
1508         ObtainReadLock(&afs_xvcache);
1509         if (osi_vnhold(adp) != 0) {
1510             ReleaseReadLock(&afs_xvcache);
1511             code = EIO;
1512             goto done;
1513         }
1514         ReleaseReadLock(&afs_xvcache);
1515 #ifdef AFS_DARWIN80_ENV
1516         vnode_get(AFSTOV(adp));
1517 #endif
1518         code = 0;
1519         *avcp = tvc = adp;
1520         hit = 1;
1521         if (adp && !VREFCOUNT_GT(adp, 0)) {
1522             osi_Panic("TT2");
1523         }
1524         goto done;
1525     }
1526
1527     /*
1528      * Special case lookup of ".." in the dynamic mount directory.
1529      * The parent of this directory is _always_ the AFS root volume.
1530      */
1531     if (afs_IsDynrootMount(adp) &&
1532         aname[0] == '.' && aname[1] == '.' && !aname[2]) {
1533
1534         ObtainReadLock(&afs_xvcache);
1535         if (osi_vnhold(afs_globalVp) != 0) {
1536             ReleaseReadLock(&afs_xvcache);
1537             code = EIO;
1538             goto done;
1539         }
1540         ReleaseReadLock(&afs_xvcache);
1541 #ifdef AFS_DARWIN80_ENV
1542         vnode_get(AFSTOV(afs_globalVp));
1543 #endif
1544         code = 0;
1545         *avcp = tvc = afs_globalVp;
1546         hit = 1;
1547         goto done;
1548     }
1549
1550     /*
1551      * Special case lookups in the dynamic mount directory.
1552      * The names here take the form cell:volume, similar to a mount point.
1553      * EvalMountData parses that and returns a cell and volume ID, which
1554      * we use to construct the appropriate dynroot Fid.
1555      */
1556     if (afs_IsDynrootMount(adp)) {
1557         struct VenusFid tfid;
1558         afs_uint32 cellidx, volid, vnoid, uniq;
1559
1560         code = EvalMountData('%', aname, 0, 0, NULL, treq, &cellidx, &volid, &vnoid, &uniq);
1561         if (code)
1562             goto done;
1563         /* If a vnode was returned, it's not a real mount point */
1564         if (vnoid > 1) {
1565             struct cell *tcell = afs_GetCellByIndex(cellidx, READ_LOCK);
1566             tfid.Cell = tcell->cellNum;
1567             afs_PutCell(tcell, READ_LOCK);
1568             tfid.Fid.Vnode = vnoid;
1569             tfid.Fid.Volume = volid;
1570             tfid.Fid.Unique = uniq;
1571         } else {
1572             afs_GetDynrootMountFid(&tfid);
1573             tfid.Fid.Vnode = VNUM_FROM_TYPEID(VN_TYPE_MOUNT, cellidx << 2);
1574             tfid.Fid.Unique = volid;
1575         }
1576         *avcp = tvc = afs_GetVCache(&tfid, treq);
1577         code = (tvc ? 0 : EIO);
1578         hit = 1;
1579         goto done;
1580     }
1581
1582 #ifdef AFS_LINUX26_ENV
1583     /*
1584      * Special case of the dynamic mount volume in a static root.
1585      * This is really unfortunate, but we need this for the translator.
1586      */
1587     if (adp == afs_globalVp && !afs_GetDynrootEnable() &&
1588         !strcmp(aname, AFS_DYNROOT_MOUNTNAME)) {
1589         struct VenusFid tfid;
1590
1591         afs_GetDynrootMountFid(&tfid);
1592         *avcp = tvc = afs_GetVCache(&tfid, treq);
1593         code = 0;
1594         hit = 1;
1595         goto done;
1596     }
1597 #endif
1598
1599     Check_AtSys(adp, aname, &sysState, treq);
1600     tname = sysState.name;
1601
1602     /* 1st Check_AtSys and lookup by tname is required here, for now,
1603      * because the dnlc is *not* told to remove entries for the parent
1604      * dir of file/dir op that afs_LocalHero likes, but dnlc is informed
1605      * if the cached entry for the parent dir is invalidated for a
1606      * non-local change.
1607      * Otherwise, we'd be able to do a dnlc lookup on an entry ending
1608      * w/@sys and know the dnlc was consistent with reality. */
1609     tvc = osi_dnlc_lookup(adp, tname, WRITE_LOCK);
1610     *avcp = tvc;                /* maybe wasn't initialized, but it is now */
1611     if (tvc) {
1612         if (no_read_access && vType(tvc) != VDIR && vType(tvc) != VLNK) {
1613             /* need read access on dir to stat non-directory / non-link */
1614             afs_PutVCache(tvc);
1615             *avcp = NULL;
1616             code = EACCES;
1617             goto done;
1618         }
1619 #ifdef AFS_LINUX22_ENV
1620         if (tvc->mvstat == AFS_MVSTAT_ROOT) {   /* we don't trust the dnlc for root vcaches */
1621             AFS_RELE(AFSTOV(tvc));
1622             *avcp = 0;
1623         } else {
1624             code = 0;
1625             hit = 1;
1626             goto done;
1627         }
1628 #else /* non - LINUX */
1629         code = 0;
1630         hit = 1;
1631         goto done;
1632 #endif /* linux22 */
1633     }
1634
1635     {                           /* sub-block just to reduce stack usage */
1636         struct dcache *tdc;
1637         afs_size_t dirOffset, dirLen;
1638         struct VenusFid tfid;
1639
1640         /* now we have to lookup the next fid */
1641         if (afs_InReadDir(adp))
1642             tdc = adp->dcreaddir;
1643         else
1644             tdc = afs_GetDCache(adp, (afs_size_t) 0, treq,
1645                                 &dirOffset, &dirLen, 1);
1646         if (!tdc) {
1647             *avcp = NULL;       /* redundant, but harmless */
1648             code = EIO;
1649             goto done;
1650         }
1651
1652         /* now we will just call dir package with appropriate inode.
1653          * Dirs are always fetched in their entirety for now */
1654         ObtainReadLock(&adp->lock);
1655         ObtainReadLock(&tdc->lock);
1656
1657         /*
1658          * Make sure that the data in the cache is current. There are two
1659          * cases we need to worry about:
1660          * 1. The cache data is being fetched by another process.
1661          * 2. The cache data is no longer valid
1662          *
1663          * If a readdir is in progress _in this thread_, it has a shared
1664          * lock on the vcache and has obtained current data, so we just
1665          * use that.  This eliminates several possible deadlocks.  
1666          */
1667         if (!afs_InReadDir(adp)) {
1668             while ((adp->f.states & CStatd)
1669                    && (tdc->dflags & DFFetching)
1670                    && afs_IsDCacheFresh(tdc, adp)) {
1671                 ReleaseReadLock(&tdc->lock);
1672                 ReleaseReadLock(&adp->lock);
1673                 afs_osi_Sleep(&tdc->validPos);
1674                 ObtainReadLock(&adp->lock);
1675                 ObtainReadLock(&tdc->lock);
1676             }
1677             if (!(adp->f.states & CStatd)
1678                 || !afs_IsDCacheFresh(tdc, adp)) {
1679                 ReleaseReadLock(&tdc->lock);
1680                 ReleaseReadLock(&adp->lock);
1681                 afs_PutDCache(tdc);
1682                 if (tname && tname != aname)
1683                     osi_FreeLargeSpace(tname);
1684                 goto redo;
1685             }
1686         }
1687
1688         /* Save the version number for when we call osi_dnlc_enter */
1689         hset(versionNo, tdc->f.versionNo);
1690
1691         /*
1692          * check for, and handle "@sys" if it's there.  We should be able
1693          * to avoid the alloc and the strcpy with a little work, but it's
1694          * not pressing.  If there aren't any remote users (ie, via the 
1695          * NFS translator), we have a slightly easier job.
1696          * the faster way to do this is to check for *aname == '@' and if 
1697          * it's there, check for @sys, otherwise, assume there's no @sys 
1698          * then, if the lookup fails, check for .*@sys...
1699          */
1700         /* above now implemented by Check_AtSys and Next_AtSys */
1701
1702         /* lookup the name in the appropriate dir, and return a cache entry
1703          * on the resulting fid */
1704         code =
1705             afs_dir_LookupOffset(tdc, sysState.name, &tfid.Fid,
1706                                  &dirCookie);
1707
1708         /* If the first lookup doesn't succeed, maybe it's got @sys in the name */
1709         while (code == ENOENT && Next_AtSys(adp, treq, &sysState))
1710             code =
1711                 afs_dir_LookupOffset(tdc, sysState.name, &tfid.Fid,
1712                                      &dirCookie);
1713         tname = sysState.name;
1714
1715         ReleaseReadLock(&tdc->lock);
1716         if (!afs_InReadDir(adp))
1717             afs_PutDCache(tdc);
1718         if (code == ENOENT && afs_IsDynroot(adp) && dynrootRetry && !tryEvalOnly) {
1719             struct cell *tc;
1720             char *cn = (tname[0] == '.') ? tname + 1 : tname;
1721             ReleaseReadLock(&adp->lock);
1722             /* confirm it's not just hushed */
1723             tc = afs_GetCellByName(cn, WRITE_LOCK);
1724             if (tc) {
1725                 if (tc->states & CHush) {
1726                     tc->states &= ~CHush;
1727                     ReleaseWriteLock(&tc->lock);
1728                     afs_DynrootInvalidate();
1729                     goto redo;
1730                 }
1731                 ReleaseWriteLock(&tc->lock);
1732             }
1733             /* Allow a second dynroot retry if the cell was hushed before */
1734             dynrootRetry = 0;
1735             if (tname[0] == '.')
1736                 afs_LookupAFSDB(tname + 1);
1737             else
1738                 afs_LookupAFSDB(tname);
1739             if (tname && tname != aname)
1740                 osi_FreeLargeSpace(tname);
1741             goto redo;
1742         } else {
1743             ReleaseReadLock(&adp->lock);
1744         }
1745
1746         /* new fid has same cell and volume */
1747         tfid.Cell = adp->f.fid.Cell;
1748         tfid.Fid.Volume = adp->f.fid.Fid.Volume;
1749         afs_Trace4(afs_iclSetp, CM_TRACE_LOOKUP, ICL_TYPE_POINTER, adp,
1750                    ICL_TYPE_STRING, tname, ICL_TYPE_FID, &tfid,
1751                    ICL_TYPE_INT32, code);
1752
1753         if (code) {
1754             if (code == ENOENT) {
1755                 /* The target name really doesn't exist (according to
1756                  * afs_dir_LookupOffset, anyway). */
1757                 enoent_prohibited = 0;
1758             }
1759             goto done;
1760         }
1761
1762         /* prefetch some entries, if the dir is currently open.  The variable
1763          * dirCookie tells us where to start prefetching from.
1764          */
1765         if (afs_ShouldTryBulkStat(adp)) {
1766             afs_int32 retry;
1767             /* if the entry is not in the cache, or is in the cache,
1768              * but hasn't been statd, then do a bulk stat operation.
1769              */
1770             do {
1771                 retry = 0;
1772                 ObtainReadLock(&afs_xvcache);
1773                 tvc = afs_FindVCache(&tfid, &retry, 0 /* !stats,!lru */ );
1774                 ReleaseReadLock(&afs_xvcache);
1775             } while (tvc && retry);
1776
1777             if (!tvc || !(tvc->f.states & CStatd))
1778                 bulkcode = afs_DoBulkStat(adp, dirCookie, treq);
1779             else
1780                 bulkcode = 0;
1781
1782             /* if the vcache isn't usable, release it */
1783             if (tvc && !(tvc->f.states & CStatd)) {
1784                 afs_PutVCache(tvc);
1785                 tvc = NULL;
1786             }
1787         } else {
1788             tvc = NULL;
1789             bulkcode = 0;
1790         }
1791
1792         /* now get the status info, if we don't already have it */
1793         /* This is kind of weird, but we might wind up accidentally calling
1794          * RXAFS_Lookup because we happened upon a file which legitimately
1795          * has a 0 uniquifier. That is the result of allowing unique to wrap
1796          * to 0. This was fixed in AFS 3.4. For CForeign, Unique == 0 means that
1797          * the file has not yet been looked up.
1798          */
1799         if (!tvc) {
1800             if (!tfid.Fid.Unique && (adp->f.states & CForeign)) {
1801                 tvc = afs_LookupVCache(&tfid, treq, adp, tname);
1802             }
1803             if (!tvc && !bulkcode) {    /* lookup failed or wasn't called */
1804                 tvc = afs_GetVCache(&tfid, treq);
1805             }
1806         }                       /* if !tvc */
1807     }                           /* sub-block just to reduce stack usage */
1808
1809     if (tvc) {
1810         if (adp->f.states & CForeign)
1811             tvc->f.states |= CForeign;
1812         tvc->f.parent.vnode = adp->f.fid.Fid.Vnode;
1813         tvc->f.parent.unique = adp->f.fid.Fid.Unique;
1814         tvc->f.states &= ~CBulkStat;
1815
1816         if (afs_fakestat_enable == 2 && tvc->mvstat == AFS_MVSTAT_MTPT) {
1817             ObtainSharedLock(&tvc->lock, 680);
1818             if (!tvc->linkData) {
1819                 UpgradeSToWLock(&tvc->lock, 681);
1820                 code = afs_HandleLink(tvc, treq);
1821                 ConvertWToRLock(&tvc->lock);
1822             } else {
1823                 ConvertSToRLock(&tvc->lock);
1824                 code = 0;
1825             }
1826             if (!code && !afs_strchr(tvc->linkData, ':'))
1827                 force_eval = 1;
1828             ReleaseReadLock(&tvc->lock);
1829         }
1830         if (tvc->mvstat == AFS_MVSTAT_MTPT && (tvc->f.states & CMValid) && tvc->mvid.target_root != NULL)
1831           force_eval = 1; /* This is now almost for free, get it correct */
1832
1833 #if defined(UKERNEL)
1834         if (!(flags & AFS_LOOKUP_NOEVAL))
1835             /* don't eval mount points */
1836 #endif /* UKERNEL */
1837             if (tvc->mvstat == AFS_MVSTAT_MTPT && force_eval) {
1838                 /* a mt point, possibly unevaluated */
1839                 struct volume *tvolp;
1840
1841                 ObtainWriteLock(&tvc->lock, 133);
1842                 code = EvalMountPoint(tvc, adp, &tvolp, treq);
1843                 ReleaseWriteLock(&tvc->lock);
1844
1845                 if (code) {
1846                     afs_PutVCache(tvc);
1847                     if (tvolp)
1848                         afs_PutVolume(tvolp, WRITE_LOCK);
1849                     goto done;
1850                 }
1851
1852                 /* next, we want to continue using the target of the mt point */
1853                 if (tvc->mvid.target_root && (tvc->f.states & CMValid)) {
1854                     struct vcache *uvc;
1855                     /* now lookup target, to set .. pointer */
1856                     afs_Trace2(afs_iclSetp, CM_TRACE_LOOKUP1,
1857                                ICL_TYPE_POINTER, tvc, ICL_TYPE_FID,
1858                                &tvc->f.fid);
1859                     uvc = tvc;  /* remember for later */
1860
1861                     if (tvolp && (tvolp->states & VForeign)) {
1862                         /* XXXX tvolp has ref cnt on but not locked! XXX */
1863                         tvc =
1864                             afs_GetRootVCache(tvc->mvid.target_root, treq, tvolp);
1865                     } else {
1866                         tvc = afs_GetVCache(tvc->mvid.target_root, treq);
1867                     }
1868                     afs_PutVCache(uvc); /* we're done with it */
1869
1870                     if (!tvc) {
1871                         code = EIO;
1872                         if (tvolp) {
1873                             afs_PutVolume(tvolp, WRITE_LOCK);
1874                         }
1875                         goto done;
1876                     }
1877
1878                     /* now, if we came via a new mt pt (say because of a new
1879                      * release of a R/O volume), we must reevaluate the ..
1880                      * ptr to point back to the appropriate place */
1881                     if (tvolp) {
1882                         ObtainWriteLock(&tvc->lock, 134);
1883                         if (tvc->mvid.parent == NULL) {
1884                             tvc->mvid.parent =
1885                                 osi_AllocSmallSpace(sizeof(struct VenusFid));
1886                         }
1887                         /* setup backpointer */
1888                         *tvc->mvid.parent = tvolp->dotdot;
1889                         ReleaseWriteLock(&tvc->lock);
1890                         afs_PutVolume(tvolp, WRITE_LOCK);
1891                     }
1892                 } else {
1893                     afs_PutVCache(tvc);
1894                     code = ENODEV;
1895                     if (tvolp)
1896                         afs_PutVolume(tvolp, WRITE_LOCK);
1897                     goto done;
1898                 }
1899             }
1900         *avcp = tvc;
1901         if (tvc && !VREFCOUNT_GT(tvc, 0)) {
1902             osi_Panic("TT3");
1903         }
1904         code = 0;
1905     } else {
1906         /* if we get here, we found something in a directory that couldn't
1907          * be located (a Multics "connection failure").  If the volume is
1908          * read-only, we try flushing this entry from the cache and trying
1909          * again. */
1910         if (!AFS_IS_DISCONNECTED) {
1911             if (pass == 0) {
1912                 struct volume *tv;
1913                 tv = afs_GetVolume(&adp->f.fid, treq, READ_LOCK);
1914                 if (tv) {
1915                     if (tv->states & VRO) {
1916                         pass = 1;       /* try this *once* */
1917                         /* re-stat to get later version */
1918                         afs_StaleVCache(adp);
1919                         afs_PutVolume(tv, READ_LOCK);
1920                         goto redo;
1921                     }
1922                     afs_PutVolume(tv, READ_LOCK);
1923                 }
1924             }
1925             code = EIO;
1926         } else {
1927             code = ENETDOWN;
1928         }
1929     }
1930
1931   done:
1932     /* put the network buffer back, if need be */
1933     if (tname != aname && tname)
1934         osi_FreeLargeSpace(tname);
1935     if (code == 0) {
1936
1937         if (afs_mariner)
1938             afs_AddMarinerName(aname, tvc);
1939
1940 #if defined(UKERNEL)
1941         if (!(flags & AFS_LOOKUP_NOEVAL)) {
1942             /* Here we don't enter the name into the DNLC because we want the
1943              * evaluated mount dir to be there (the vcache for the mounted
1944              * volume) rather than the vc of the mount point itself.  We can
1945              * still find the mount point's vc in the vcache by its fid. */
1946 #endif /* UKERNEL */
1947             if (!hit && (force_eval || tvc->mvstat != AFS_MVSTAT_MTPT)) {
1948                 osi_dnlc_enter(adp, aname, tvc, &versionNo);
1949             } else {
1950 #ifdef AFS_LINUX20_ENV
1951                 /* So Linux inode cache is up to date. */
1952                 code = afs_VerifyVCache(tvc, treq);
1953 #else
1954                 afs_PutFakeStat(&fakestate);
1955                 afs_DestroyReq(treq);
1956                 AFS_DISCON_UNLOCK();
1957                 return 0;       /* can't have been any errors if hit and !code */
1958 #endif
1959             }
1960 #if defined(UKERNEL)
1961         }
1962 #endif
1963     }
1964     if (bulkcode)
1965         code = bulkcode;
1966
1967     code = afs_CheckCode(code, treq, 19);
1968     if (code) {
1969         /* If there is an error, make sure *avcp is null.
1970          * Alphas panic otherwise - defect 10719.
1971          */
1972         *avcp = NULL;
1973     }
1974     if (code == ENOENT && enoent_prohibited) {
1975         /*
1976          * We got an ENOENT error, but we didn't get it while looking up the
1977          * dir entry in the relevant dir blob. That means we likely hit some
1978          * other internal error; don't allow us to return ENOENT in this case,
1979          * since some platforms cache ENOENT errors, and the target path name
1980          * may actually exist.
1981          */
1982         code = EIO;
1983     }
1984
1985     afs_PutFakeStat(&fakestate);
1986     afs_DestroyReq(treq);
1987     AFS_DISCON_UNLOCK();
1988     return code;
1989 }