macos disconnected vnode holding fix
[openafs.git] / src / afs / afs_dcache.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  */
13 #include <afsconfig.h>
14 #include "afs/param.h"
15
16
17 #include "afs/sysincludes.h"    /*Standard vendor system headers */
18 #include "afsincludes.h"        /*AFS-based standard headers */
19 #include "afs/afs_stats.h"      /* statistics */
20 #include "afs/afs_cbqueue.h"
21 #include "afs/afs_osidnlc.h"
22
23 /* Forward declarations. */
24 static void afs_GetDownD(int anumber, int *aneedSpace, afs_int32 buckethint);
25 static void afs_FreeDiscardedDCache(void);
26 static void afs_DiscardDCache(struct dcache *);
27 static void afs_FreeDCache(struct dcache *);
28 /* For split cache */
29 static afs_int32 afs_DCGetBucket(struct vcache *);
30 static void afs_DCAdjustSize(struct dcache *, afs_int32, afs_int32);
31 static void afs_DCMoveBucket(struct dcache *, afs_int32, afs_int32);
32 static void afs_DCSizeInit(void);
33 static afs_int32 afs_DCWhichBucket(afs_int32, afs_int32);
34
35 /*
36  * --------------------- Exported definitions ---------------------
37  */
38 /* For split cache */
39 afs_int32 afs_blocksUsed_0;    /*!< 1K blocks in cache - in theory is zero */
40 afs_int32 afs_blocksUsed_1;    /*!< 1K blocks in cache */
41 afs_int32 afs_blocksUsed_2;    /*!< 1K blocks in cache */
42 afs_int32 afs_pct1 = -1;
43 afs_int32 afs_pct2 = -1;
44 afs_uint32 afs_tpct1 = 0;
45 afs_uint32 afs_tpct2 = 0;
46 afs_uint32 splitdcache = 0;
47
48 afs_lock_t afs_xdcache;         /*!< Lock: alloc new disk cache entries */
49 afs_int32 afs_freeDCList;       /*!< Free list for disk cache entries */
50 afs_int32 afs_freeDCCount;      /*!< Count of elts in freeDCList */
51 afs_int32 afs_discardDCList;    /*!< Discarded disk cache entries */
52 afs_int32 afs_discardDCCount;   /*!< Count of elts in discardDCList */
53 struct dcache *afs_freeDSList;  /*!< Free list for disk slots */
54 struct dcache *afs_Initial_freeDSList;  /*!< Initial list for above */
55 afs_dcache_id_t cacheInode;               /*!< Inode for CacheItems file */
56 struct osi_file *afs_cacheInodep = 0;   /*!< file for CacheItems inode */
57 struct afs_q afs_DLRU;          /*!< dcache LRU */
58 afs_int32 afs_dhashsize = 1024;
59 afs_int32 *afs_dvhashTbl;       /*!< Data cache hash table: hashed by FID + chunk number. */
60 afs_int32 *afs_dchashTbl;       /*!< Data cache hash table: hashed by FID. */
61 afs_int32 *afs_dvnextTbl;       /*!< Dcache hash table links */
62 afs_int32 *afs_dcnextTbl;       /*!< Dcache hash table links */
63 struct dcache **afs_indexTable; /*!< Pointers to dcache entries */
64 afs_hyper_t *afs_indexTimes;    /*!< Dcache entry Access times */
65 afs_int32 *afs_indexUnique;     /*!< dcache entry Fid.Unique */
66 unsigned char *afs_indexFlags;  /*!< (only one) Is there data there? */
67 afs_hyper_t afs_indexCounter;   /*!< Fake time for marking index
68                                  * entries */
69 afs_int32 afs_cacheFiles = 0;   /*!< Size of afs_indexTable */
70 afs_int32 afs_cacheBlocks;      /*!< 1K blocks in cache */
71 afs_int32 afs_cacheStats;       /*!< Stat entries in cache */
72 afs_int32 afs_blocksUsed;       /*!< Number of blocks in use */
73 afs_int32 afs_blocksDiscarded;  /*!<Blocks freed but not truncated */
74 afs_int32 afs_fsfragsize = AFS_MIN_FRAGSIZE;    /*!< Underlying Filesystem minimum unit 
75                                          *of disk allocation usually 1K
76                                          *this value is (truefrag -1 ) to
77                                          *save a bunch of subtracts... */
78 #ifdef AFS_64BIT_CLIENT
79 #ifdef AFS_VM_RDWR_ENV
80 afs_size_t afs_vmMappingEnd;    /* !< For large files (>= 2GB) the VM
81                                  * mapping an 32bit addressing machines
82                                  * can only be used below the 2 GB
83                                  * line. From this point upwards we
84                                  * must do direct I/O into the cache
85                                  * files. The value should be on a
86                                  * chunk boundary. */
87 #endif /* AFS_VM_RDWR_ENV */
88 #endif /* AFS_64BIT_CLIENT */
89
90 /* The following is used to ensure that new dcache's aren't obtained when
91  * the cache is nearly full.
92  */
93 int afs_WaitForCacheDrain = 0;
94 int afs_TruncateDaemonRunning = 0;
95 int afs_CacheTooFull = 0;
96
97 afs_int32 afs_dcentries;        /*!< In-memory dcache entries */
98
99
100 int dcacheDisabled = 0;
101
102 struct afs_cacheOps afs_UfsCacheOps = {
103 #if defined(__SUNPRO_C) || (defined(AFS_SGI_ENV) && !defined(__c99))
104     osi_UFSOpen,
105     osi_UFSTruncate,
106     afs_osi_Read,
107     afs_osi_Write,
108     osi_UFSClose,
109     afs_UFSRead,
110     afs_UFSWrite,
111     afs_UFSGetDSlot,
112     afs_UFSGetVolSlot,
113     afs_UFSHandleLink,
114 #else
115     .open       = osi_UFSOpen,
116     .truncate   = osi_UFSTruncate,
117     .fread      = afs_osi_Read,
118     .fwrite     = afs_osi_Write,
119     .close      = osi_UFSClose,
120     .vread      = afs_UFSRead,
121     .vwrite     = afs_UFSWrite,
122     .GetDSlot   = afs_UFSGetDSlot,
123     .GetVolSlot = afs_UFSGetVolSlot,
124     .HandleLink = afs_UFSHandleLink,
125 #endif
126 };
127
128 struct afs_cacheOps afs_MemCacheOps = {
129 #if defined(__SUNPRO_C) || (defined(AFS_SGI_ENV) && !defined(__c99))
130     afs_MemCacheOpen,
131     afs_MemCacheTruncate,
132     afs_MemReadBlk,
133     afs_MemWriteBlk,
134     afs_MemCacheClose,
135     afs_MemRead,
136     afs_MemWrite,
137     afs_MemGetDSlot,
138     afs_MemGetVolSlot,
139     afs_MemHandleLink,
140 #else
141     .open       = afs_MemCacheOpen,
142     .truncate   = afs_MemCacheTruncate,
143     .fread      = afs_MemReadBlk,
144     .fwrite     = afs_MemWriteBlk,
145     .close      = afs_MemCacheClose,
146     .vread      = afs_MemRead,
147     .vwrite     = afs_MemWrite,
148     .GetDSlot   = afs_MemGetDSlot,
149     .GetVolSlot = afs_MemGetVolSlot,
150     .HandleLink = afs_MemHandleLink,
151 #endif
152 };
153
154 int cacheDiskType;              /*Type of backing disk for cache */
155 struct afs_cacheOps *afs_cacheType;
156
157 /*!
158  * Where is this vcache's entry associated dcache located/
159  * \param avc The vcache entry.
160  * \return Bucket index:
161  *      1 : main
162  *      2 : RO
163  */
164 static afs_int32
165 afs_DCGetBucket(struct vcache *avc) 
166 {
167     if (!splitdcache) 
168         return 1;
169     
170     /* This should be replaced with some sort of user configurable function */
171     if (avc->f.states & CRO) {
172         return 2;
173     } else if (avc->f.states & CBackup) {
174         return 1;
175     } else {
176         /* RW */
177     }
178     /* main bucket */
179     return 1;
180 }
181
182 /*!
183  * Readjust a dcache's size.
184  *
185  * \param adc The dcache to be adjusted.
186  * \param oldSize Old size for the dcache.
187  * \param newSize The new size to be adjusted to.
188  *
189  */
190 static void 
191 afs_DCAdjustSize(struct dcache *adc, afs_int32 oldSize, afs_int32 newSize)
192 {
193     afs_int32 adjustSize = newSize - oldSize;
194
195     if (!splitdcache) 
196         return;
197
198     switch (adc->bucket) 
199     {
200     case 0:
201         afs_blocksUsed_0 += adjustSize;
202         afs_stats_cmperf.cacheBucket0_Discarded += oldSize;
203         break;
204     case 1:
205         afs_blocksUsed_1 += adjustSize;
206         afs_stats_cmperf.cacheBucket1_Discarded += oldSize;
207         break;
208     case 2:
209         afs_blocksUsed_2 += adjustSize;
210         afs_stats_cmperf.cacheBucket2_Discarded += oldSize;
211         break;
212     }
213
214     return;
215 }
216
217 /*!
218  * Move a dcache from one bucket to another.
219  * 
220  * \param adc Operate on this dcache.
221  * \param size Size in bucket (?).
222  * \param newBucket Destination bucket.
223  *
224  */
225 static void 
226 afs_DCMoveBucket(struct dcache *adc, afs_int32 size, afs_int32 newBucket)
227 {
228     if (!splitdcache) 
229         return;
230
231     /* Substract size from old bucket. */       
232     switch (adc->bucket) 
233     {
234     case 0:
235         afs_blocksUsed_0 -= size;
236         break;
237     case 1:
238         afs_blocksUsed_1 -= size;
239         break;
240     case 2:
241         afs_blocksUsed_2 -= size;
242         break;
243     }
244
245     /* Set new bucket and increase destination bucket size. */
246     adc->bucket = newBucket;
247
248     switch (adc->bucket) 
249     {
250     case 0:
251         afs_blocksUsed_0 += size;
252         break;
253     case 1:
254         afs_blocksUsed_1 += size;
255         break;
256     case 2:
257         afs_blocksUsed_2 += size;
258         break;
259     }
260     
261     return;
262 }
263
264 /*!
265  * Init split caches size.
266  */
267 static void 
268 afs_DCSizeInit(void) 
269 {
270     afs_blocksUsed_0 = afs_blocksUsed_1 = afs_blocksUsed_2 = 0;
271 }
272
273
274 /*!
275  * \param phase
276  * \param bucket
277  */
278 static afs_int32
279 afs_DCWhichBucket(afs_int32 phase, afs_int32 bucket) 
280 {
281     if (!splitdcache) 
282         return 0;
283
284     afs_pct1 = afs_blocksUsed_1 / (afs_cacheBlocks / 100);
285     afs_pct2 = afs_blocksUsed_2 / (afs_cacheBlocks / 100);
286
287     /* Short cut: if we don't know about it, try to kill it */
288     if (phase < 2 && afs_blocksUsed_0) 
289         return 0;
290     
291     if (afs_pct1 > afs_tpct1) 
292         return 1;
293     if (afs_pct2 > afs_tpct2)
294         return 2;
295     return 0; /* unlikely */
296 }
297
298
299 /*!
300  * Warn about failing to store a file.
301  *
302  * \param acode Associated error code.
303  * \param avolume Volume involved.
304  * \param aflags How to handle the output:
305  *      aflags & 1: Print out on console
306  *      aflags & 2: Print out on controlling tty
307  *
308  * \note Environment: Call this from close call when vnodeops is RCS unlocked.
309  */
310
311 void
312 afs_StoreWarn(register afs_int32 acode, afs_int32 avolume,
313               register afs_int32 aflags)
314 {
315     static char problem_fmt[] =
316         "afs: failed to store file in volume %d (%s)\n";
317     static char problem_fmt_w_error[] =
318         "afs: failed to store file in volume %d (error %d)\n";
319     static char netproblems[] = "network problems";
320     static char partfull[] = "partition full";
321     static char overquota[] = "over quota";
322
323     AFS_STATCNT(afs_StoreWarn);
324     if (acode < 0) {
325         /*
326          * Network problems
327          */
328         if (aflags & 1)
329             afs_warn(problem_fmt, avolume, netproblems);
330         if (aflags & 2)
331             afs_warnuser(problem_fmt, avolume, netproblems);
332     } else if (acode == ENOSPC) {
333         /*
334          * Partition full
335          */
336         if (aflags & 1)
337             afs_warn(problem_fmt, avolume, partfull);
338         if (aflags & 2)
339             afs_warnuser(problem_fmt, avolume, partfull);
340     } else
341 #ifdef  EDQUOT
342         /* EDQUOT doesn't exist on solaris and won't be sent by the server.
343          * Instead ENOSPC will be sent...
344          */
345     if (acode == EDQUOT) {
346         /*
347          * Quota exceeded
348          */
349         if (aflags & 1)
350             afs_warn(problem_fmt, avolume, overquota);
351         if (aflags & 2)
352             afs_warnuser(problem_fmt, avolume, overquota);
353     } else
354 #endif
355     {
356         /*
357          * Unknown error
358          */
359         if (aflags & 1)
360             afs_warn(problem_fmt_w_error, avolume, acode);
361         if (aflags & 2)
362             afs_warnuser(problem_fmt_w_error, avolume, acode);
363     }
364 }                               /*afs_StoreWarn */
365
366 /*!
367  * Try waking up truncation daemon, if it's worth it.
368  */
369 void
370 afs_MaybeWakeupTruncateDaemon(void)
371 {
372     if (!afs_CacheTooFull && afs_CacheIsTooFull()) {
373         afs_CacheTooFull = 1;
374         if (!afs_TruncateDaemonRunning)
375             afs_osi_Wakeup((int *)afs_CacheTruncateDaemon);
376     } else if (!afs_TruncateDaemonRunning
377                && afs_blocksDiscarded > CM_MAXDISCARDEDCHUNKS) {
378         afs_osi_Wakeup((int *)afs_CacheTruncateDaemon);
379     }
380 }
381
382 /*!
383  * /struct CTD_stats
384  *
385  * Keep statistics on run time for afs_CacheTruncateDaemon. This is a
386  * struct so we need only export one symbol for AIX.
387  */
388 static struct CTD_stats {
389     osi_timeval_t CTD_beforeSleep;
390     osi_timeval_t CTD_afterSleep;
391     osi_timeval_t CTD_sleepTime;
392     osi_timeval_t CTD_runTime;
393     int CTD_nSleeps;
394 } CTD_stats;
395
396 u_int afs_min_cache = 0;
397
398 /*!
399  * Keeps the cache clean and free by truncating uneeded files, when used.
400  * \param  
401  * \return 
402  */
403 void
404 afs_CacheTruncateDaemon(void)
405 {
406     osi_timeval_t CTD_tmpTime;
407     u_int counter;
408     u_int cb_lowat;
409     u_int dc_hiwat =
410         PERCENT((100 - CM_DCACHECOUNTFREEPCT + CM_DCACHEEXTRAPCT), afs_cacheFiles);
411     afs_min_cache =
412         (((10 * AFS_CHUNKSIZE(0)) + afs_fsfragsize) & ~afs_fsfragsize) >> 10;
413
414     osi_GetuTime(&CTD_stats.CTD_afterSleep);
415     afs_TruncateDaemonRunning = 1;
416     while (1) {
417         cb_lowat = PERCENT((CM_DCACHESPACEFREEPCT - CM_DCACHEEXTRAPCT), afs_cacheBlocks);
418         ObtainWriteLock(&afs_xdcache, 266);
419         if (afs_CacheTooFull) {
420             int space_needed, slots_needed;
421             /* if we get woken up, we should try to clean something out */
422             for (counter = 0; counter < 10; counter++) {
423                 space_needed =
424                     afs_blocksUsed - afs_blocksDiscarded - cb_lowat;
425                 slots_needed =
426                     dc_hiwat - afs_freeDCCount - afs_discardDCCount;
427                 afs_GetDownD(slots_needed, &space_needed, 0);
428                 if ((space_needed <= 0) && (slots_needed <= 0)) {
429                     break;
430                 }
431                 if (afs_termState == AFSOP_STOP_TRUNCDAEMON)
432                     break;
433             }
434             if (!afs_CacheIsTooFull())
435                 afs_CacheTooFull = 0;
436         }       /* end of cache cleanup */
437         ReleaseWriteLock(&afs_xdcache);
438
439         /*
440          * This is a defensive check to try to avoid starving threads
441          * that may need the global lock so thay can help free some
442          * cache space. If this thread won't be sleeping or truncating
443          * any cache files then give up the global lock so other
444          * threads get a chance to run.
445          */
446         if ((afs_termState != AFSOP_STOP_TRUNCDAEMON) && afs_CacheTooFull
447             && (!afs_blocksDiscarded || afs_WaitForCacheDrain)) {
448             afs_osi_Wait(100, 0, 0);    /* 100 milliseconds */
449         }
450
451         /*
452          * This is where we free the discarded cache elements.
453          */
454         while (afs_blocksDiscarded && !afs_WaitForCacheDrain
455                && (afs_termState != AFSOP_STOP_TRUNCDAEMON)) {
456             afs_FreeDiscardedDCache();
457         }
458
459         /* See if we need to continue to run. Someone may have
460          * signalled us while we were executing.
461          */
462         if (!afs_WaitForCacheDrain && !afs_CacheTooFull
463             && (afs_termState != AFSOP_STOP_TRUNCDAEMON)) {
464             /* Collect statistics on truncate daemon. */
465             CTD_stats.CTD_nSleeps++;
466             osi_GetuTime(&CTD_stats.CTD_beforeSleep);
467             afs_stats_GetDiff(CTD_tmpTime, CTD_stats.CTD_afterSleep,
468                               CTD_stats.CTD_beforeSleep);
469             afs_stats_AddTo(CTD_stats.CTD_runTime, CTD_tmpTime);
470
471             afs_TruncateDaemonRunning = 0;
472             afs_osi_Sleep((int *)afs_CacheTruncateDaemon);
473             afs_TruncateDaemonRunning = 1;
474
475             osi_GetuTime(&CTD_stats.CTD_afterSleep);
476             afs_stats_GetDiff(CTD_tmpTime, CTD_stats.CTD_beforeSleep,
477                               CTD_stats.CTD_afterSleep);
478             afs_stats_AddTo(CTD_stats.CTD_sleepTime, CTD_tmpTime);
479         }
480         if (afs_termState == AFSOP_STOP_TRUNCDAEMON) {
481             afs_termState = AFSOP_STOP_AFSDB;
482             afs_osi_Wakeup(&afs_termState);
483             break;
484         }
485     }
486 }
487
488
489 /*!
490  * Make adjustment for the new size in the disk cache entry
491  *
492  * \note Major Assumptions Here:
493  *      Assumes that frag size is an integral power of two, less one,
494  *      and that this is a two's complement machine.  I don't
495  *      know of any filesystems which violate this assumption...
496  *
497  * \param adc Ptr to dcache entry.
498  * \param anewsize New size desired.
499  *
500  */
501
502 void
503 afs_AdjustSize(register struct dcache *adc, register afs_int32 newSize)
504 {
505     register afs_int32 oldSize;
506
507     AFS_STATCNT(afs_AdjustSize);
508
509     adc->dflags |= DFEntryMod;
510     oldSize = ((adc->f.chunkBytes + afs_fsfragsize) ^ afs_fsfragsize) >> 10;    /* round up */
511     adc->f.chunkBytes = newSize;
512     if (!newSize)
513         adc->validPos = 0;
514     newSize = ((newSize + afs_fsfragsize) ^ afs_fsfragsize) >> 10;      /* round up */
515     afs_DCAdjustSize(adc, oldSize, newSize);
516     if ((newSize > oldSize) && !AFS_IS_DISCONNECTED) {
517
518         /* We're growing the file, wakeup the daemon */
519         afs_MaybeWakeupTruncateDaemon();
520     }
521     afs_blocksUsed += (newSize - oldSize);
522     afs_stats_cmperf.cacheBlocksInUse = afs_blocksUsed; /* XXX */
523 }
524
525
526 /*!
527  * This routine is responsible for moving at least one entry (but up
528  * to some number of them) from the LRU queue to the free queue.
529  *
530  * \param anumber Number of entries that should ideally be moved.
531  * \param aneedSpace How much space we need (1K blocks);
532  *
533  * \note Environment:
534  *      The anumber parameter is just a hint; at least one entry MUST be
535  *      moved, or we'll panic.  We must be called with afs_xdcache
536  *      write-locked.  We should try to satisfy both anumber and aneedspace,
537  *      whichever is more demanding - need to do several things:
538  *      1.  only grab up to anumber victims if aneedSpace <= 0, not
539  *          the whole set of MAXATONCE.
540  *      2.  dynamically choose MAXATONCE to reflect severity of
541  *          demand: something like (*aneedSpace >> (logChunk - 9)) 
542  *
543  *  \note N.B. if we're called with aneedSpace <= 0 and anumber > 0, that
544  *  indicates that the cache is not properly configured/tuned or
545  *  something. We should be able to automatically correct that problem.
546  */
547
548 #define MAXATONCE   16          /* max we can obtain at once */
549 static void
550 afs_GetDownD(int anumber, int *aneedSpace, afs_int32 buckethint)
551 {
552
553     struct dcache *tdc;
554     struct VenusFid *afid;
555     afs_int32 i, j;
556     afs_hyper_t vtime;
557     int skip, phase;
558     register struct vcache *tvc;
559     afs_uint32 victims[MAXATONCE];
560     struct dcache *victimDCs[MAXATONCE];
561     afs_hyper_t victimTimes[MAXATONCE]; /* youngest (largest LRU time) first */
562     afs_uint32 victimPtr;       /* next free item in victim arrays */
563     afs_hyper_t maxVictimTime;  /* youngest (largest LRU time) victim */
564     afs_uint32 maxVictimPtr;    /* where it is */
565     int discard;
566     int curbucket;
567 #if defined(AFS_FBSD80_ENV) && !defined(UKERNEL)
568     int vfslocked;
569 #endif
570
571 #if defined(AFS_FBSD80_ENV) && !defined(UKERNEL)
572     vfslocked = VFS_LOCK_GIANT(afs_globalVFS);
573 #endif
574
575     AFS_STATCNT(afs_GetDownD);
576
577     if (CheckLock(&afs_xdcache) != -1)
578         osi_Panic("getdownd nolock");
579     /* decrement anumber first for all dudes in free list */
580     /* SHOULD always decrement anumber first, even if aneedSpace >0, 
581      * because we should try to free space even if anumber <=0 */
582     if (!aneedSpace || *aneedSpace <= 0) {
583         anumber -= afs_freeDCCount;
584         if (anumber <= 0) {
585 #if defined(AFS_FBSD80_ENV) && !defined(UKERNEL)
586           VFS_UNLOCK_GIANT(vfslocked);
587 #endif
588             return;             /* enough already free */
589         }
590     }
591
592     /* bounds check parameter */
593     if (anumber > MAXATONCE)
594         anumber = MAXATONCE;    /* all we can do */
595
596     /* rewrite so phases include a better eligiblity for gc test*/
597     /*
598      * The phase variable manages reclaims.  Set to 0, the first pass,
599      * we don't reclaim active entries, or other than target bucket.  
600      * Set to 1, we reclaim even active ones in target bucket.
601      * Set to 2, we reclaim any inactive one.
602      * Set to 3, we reclaim even active ones.
603      */
604     if (splitdcache) {
605         phase = 0;
606     } else {
607         phase = 4;
608     }
609
610     for (i = 0; i < afs_cacheFiles; i++)
611         /* turn off all flags */
612         afs_indexFlags[i] &= ~IFFlag;
613
614     while (anumber > 0 || (aneedSpace && *aneedSpace > 0)) {
615         /* find oldest entries for reclamation */
616         maxVictimPtr = victimPtr = 0;
617         hzero(maxVictimTime);
618         curbucket = afs_DCWhichBucket(phase, buckethint);
619         /* select victims from access time array */
620         for (i = 0; i < afs_cacheFiles; i++) {
621             if (afs_indexFlags[i] & (IFDataMod | IFFree | IFDiscarded)) {
622                 /* skip if dirty or already free */
623                 continue;
624             }
625             tdc = afs_indexTable[i];
626             if (tdc && (curbucket != tdc->bucket) && (phase < 4))
627             {
628                 /* Wrong bucket; can't use it! */
629                 continue;
630             }
631             if (tdc && (tdc->refCount != 0)) {
632                 /* Referenced; can't use it! */
633                 continue;
634             }
635             hset(vtime, afs_indexTimes[i]);
636
637             /* if we've already looked at this one, skip it */
638             if (afs_indexFlags[i] & IFFlag)
639                 continue;
640
641             if (victimPtr < MAXATONCE) {
642                 /* if there's at least one free victim slot left */
643                 victims[victimPtr] = i;
644                 hset(victimTimes[victimPtr], vtime);
645                 if (hcmp(vtime, maxVictimTime) > 0) {
646                     hset(maxVictimTime, vtime);
647                     maxVictimPtr = victimPtr;
648                 }
649                 victimPtr++;
650             } else if (hcmp(vtime, maxVictimTime) < 0) {
651                 /*
652                  * We're older than youngest victim, so we replace at
653                  * least one victim
654                  */
655                 /* find youngest (largest LRU) victim */
656                 j = maxVictimPtr;
657                 if (j == victimPtr)
658                     osi_Panic("getdownd local");
659                 victims[j] = i;
660                 hset(victimTimes[j], vtime);
661                 /* recompute maxVictimTime */
662                 hset(maxVictimTime, vtime);
663                 for (j = 0; j < victimPtr; j++)
664                     if (hcmp(maxVictimTime, victimTimes[j]) < 0) {
665                         hset(maxVictimTime, victimTimes[j]);
666                         maxVictimPtr = j;
667                     }
668             }
669         }                       /* big for loop */
670
671         /* now really reclaim the victims */
672         j = 0;                  /* flag to track if we actually got any of the victims */
673         /* first, hold all the victims, since we're going to release the lock
674          * during the truncate operation.
675          */
676         for (i = 0; i < victimPtr; i++) {
677             tdc = afs_GetDSlot(victims[i], 0);
678             /* We got tdc->tlock(R) here */
679             if (tdc->refCount == 1)
680                 victimDCs[i] = tdc;
681             else
682                 victimDCs[i] = 0;
683             ReleaseReadLock(&tdc->tlock);
684             if (!victimDCs[i])
685                 afs_PutDCache(tdc);
686         }
687         for (i = 0; i < victimPtr; i++) {
688             /* q is first elt in dcache entry */
689             tdc = victimDCs[i];
690             /* now, since we're dropping the afs_xdcache lock below, we
691              * have to verify, before proceeding, that there are no other
692              * references to this dcache entry, even now.  Note that we
693              * compare with 1, since we bumped it above when we called
694              * afs_GetDSlot to preserve the entry's identity.
695              */
696             if (tdc && tdc->refCount == 1) {
697                 unsigned char chunkFlags;
698                 afs_size_t tchunkoffset = 0;
699                 afid = &tdc->f.fid;
700                 /* xdcache is lower than the xvcache lock */
701                 ReleaseWriteLock(&afs_xdcache);
702                 ObtainReadLock(&afs_xvcache);
703                 tvc = afs_FindVCache(afid, 0, 0 /* no stats, no vlru */ );
704                 ReleaseReadLock(&afs_xvcache);
705                 ObtainWriteLock(&afs_xdcache, 527);
706                 skip = 0;
707                 if (tdc->refCount > 1)
708                     skip = 1;
709                 if (tvc) {
710                     tchunkoffset = AFS_CHUNKTOBASE(tdc->f.chunk);
711                     chunkFlags = afs_indexFlags[tdc->index];
712                     if (((phase & 1) == 0) && osi_Active(tvc))
713                         skip = 1;
714                     if (((phase & 1) == 1) && osi_Active(tvc)
715                         && (tvc->f.states & CDCLock)
716                         && (chunkFlags & IFAnyPages))
717                         skip = 1;
718                     if (chunkFlags & IFDataMod)
719                         skip = 1;
720                     afs_Trace4(afs_iclSetp, CM_TRACE_GETDOWND,
721                                ICL_TYPE_POINTER, tvc, ICL_TYPE_INT32, skip,
722                                ICL_TYPE_INT32, tdc->index, ICL_TYPE_OFFSET,
723                                ICL_HANDLE_OFFSET(tchunkoffset));
724
725 #if     defined(AFS_SUN5_ENV)
726                     /*
727                      * Now we try to invalidate pages.  We do this only for
728                      * Solaris.  For other platforms, it's OK to recycle a
729                      * dcache entry out from under a page, because the strategy
730                      * function can call afs_GetDCache().
731                      */
732                     if (!skip && (chunkFlags & IFAnyPages)) {
733                         int code;
734
735                         ReleaseWriteLock(&afs_xdcache);
736                         ObtainWriteLock(&tvc->vlock, 543);
737                         if (tvc->multiPage) {
738                             skip = 1;
739                             goto endmultipage;
740                         }
741                         /* block locking pages */
742                         tvc->vstates |= VPageCleaning;
743                         /* block getting new pages */
744                         tvc->activeV++;
745                         ReleaseWriteLock(&tvc->vlock);
746                         /* One last recheck */
747                         ObtainWriteLock(&afs_xdcache, 333);
748                         chunkFlags = afs_indexFlags[tdc->index];
749                         if (tdc->refCount > 1 || (chunkFlags & IFDataMod)
750                             || (osi_Active(tvc) && (tvc->f.states & CDCLock)
751                                 && (chunkFlags & IFAnyPages))) {
752                             skip = 1;
753                             ReleaseWriteLock(&afs_xdcache);
754                             goto endputpage;
755                         }
756                         ReleaseWriteLock(&afs_xdcache);
757
758                         code = osi_VM_GetDownD(tvc, tdc);
759
760                         ObtainWriteLock(&afs_xdcache, 269);
761                         /* we actually removed all pages, clean and dirty */
762                         if (code == 0) {
763                             afs_indexFlags[tdc->index] &=
764                                 ~(IFDirtyPages | IFAnyPages);
765                         } else
766                             skip = 1;
767                         ReleaseWriteLock(&afs_xdcache);
768                       endputpage:
769                         ObtainWriteLock(&tvc->vlock, 544);
770                         if (--tvc->activeV == 0
771                             && (tvc->vstates & VRevokeWait)) {
772                             tvc->vstates &= ~VRevokeWait;
773                             afs_osi_Wakeup((char *)&tvc->vstates);
774
775                         }
776                         if (tvc->vstates & VPageCleaning) {
777                             tvc->vstates &= ~VPageCleaning;
778                             afs_osi_Wakeup((char *)&tvc->vstates);
779                         }
780                       endmultipage:
781                         ReleaseWriteLock(&tvc->vlock);
782                     } else
783 #endif /* AFS_SUN5_ENV */
784                     {
785                         ReleaseWriteLock(&afs_xdcache);
786                     }
787
788                     afs_PutVCache(tvc); /*XXX was AFS_FAST_RELE?*/
789                     ObtainWriteLock(&afs_xdcache, 528);
790                     if (afs_indexFlags[tdc->index] &
791                         (IFDataMod | IFDirtyPages | IFAnyPages))
792                         skip = 1;
793                     if (tdc->refCount > 1)
794                         skip = 1;
795                 }
796 #if     defined(AFS_SUN5_ENV)
797                 else {
798                     /* no vnode, so IFDirtyPages is spurious (we don't
799                      * sweep dcaches on vnode recycling, so we can have
800                      * DIRTYPAGES set even when all pages are gone).  Just
801                      * clear the flag.
802                      * Hold vcache lock to prevent vnode from being
803                      * created while we're clearing IFDirtyPages.
804                      */
805                     afs_indexFlags[tdc->index] &=
806                         ~(IFDirtyPages | IFAnyPages);
807                 }
808 #endif
809                 if (skip) {
810                     /* skip this guy and mark him as recently used */
811                     afs_indexFlags[tdc->index] |= IFFlag;
812                     afs_Trace4(afs_iclSetp, CM_TRACE_GETDOWND,
813                                ICL_TYPE_POINTER, tvc, ICL_TYPE_INT32, 2,
814                                ICL_TYPE_INT32, tdc->index, ICL_TYPE_OFFSET,
815                                ICL_HANDLE_OFFSET(tchunkoffset));
816                 } else {
817                     /* flush this dude from the data cache and reclaim;
818                      * first, make sure no one will care that we damage
819                      * it, by removing it from all hash tables.  Then,
820                      * melt it down for parts.  Note that any concurrent
821                      * (new possibility!) calls to GetDownD won't touch
822                      * this guy because his reference count is > 0. */
823                     afs_Trace4(afs_iclSetp, CM_TRACE_GETDOWND,
824                                ICL_TYPE_POINTER, tvc, ICL_TYPE_INT32, 3,
825                                ICL_TYPE_INT32, tdc->index, ICL_TYPE_OFFSET,
826                                ICL_HANDLE_OFFSET(tchunkoffset));
827                     AFS_STATCNT(afs_gget);
828                     afs_HashOutDCache(tdc, 1);
829                     if (tdc->f.chunkBytes != 0) {
830                         discard = 1;
831                         if (aneedSpace)
832                             *aneedSpace -=
833                                 (tdc->f.chunkBytes + afs_fsfragsize) >> 10;
834                     } else {
835                         discard = 0;
836                     }
837                     if (discard) {
838                         afs_DiscardDCache(tdc);
839                     } else {
840                         afs_FreeDCache(tdc);
841                     }
842                     anumber--;
843                     j = 1;      /* we reclaimed at least one victim */
844                 }
845             }
846             afs_PutDCache(tdc);
847         }                       /* end of for victims loop */
848
849         if (phase < 5) {
850             /* Phase is 0 and no one was found, so try phase 1 (ignore
851              * osi_Active flag) */
852             if (j == 0) {
853                 phase++;
854                 for (i = 0; i < afs_cacheFiles; i++)
855                     /* turn off all flags */
856                     afs_indexFlags[i] &= ~IFFlag;
857             }
858         } else {
859             /* found no one in phases 0-5, we're hosed */
860             if (victimPtr == 0)
861                 break;
862         }
863     }                           /* big while loop */
864
865 #if defined(AFS_FBSD80_ENV) && !defined(UKERNEL)
866     VFS_UNLOCK_GIANT(vfslocked);
867 #endif
868
869     return;
870
871 }                               /*afs_GetDownD */
872
873
874 /*!
875  * Remove adc from any hash tables that would allow it to be located
876  * again by afs_FindDCache or afs_GetDCache.
877  *
878  * \param adc Pointer to dcache entry to remove from hash tables.
879  *
880  * \note Locks: Must have the afs_xdcache lock write-locked to call this function.
881  *
882  */
883 int
884 afs_HashOutDCache(struct dcache *adc, int zap)
885 {
886     int i, us;
887
888     AFS_STATCNT(afs_glink);
889     if (zap)
890         /* we know this guy's in the LRUQ.  We'll move dude into DCQ below */
891         DZap(adc);
892     /* if this guy is in the hash table, pull him out */
893     if (adc->f.fid.Fid.Volume != 0) {
894         /* remove entry from first hash chains */
895         i = DCHash(&adc->f.fid, adc->f.chunk);
896         us = afs_dchashTbl[i];
897         if (us == adc->index) {
898             /* first dude in the list */
899             afs_dchashTbl[i] = afs_dcnextTbl[adc->index];
900         } else {
901             /* somewhere on the chain */
902             while (us != NULLIDX) {
903                 if (afs_dcnextTbl[us] == adc->index) {
904                     /* found item pointing at the one to delete */
905                     afs_dcnextTbl[us] = afs_dcnextTbl[adc->index];
906                     break;
907                 }
908                 us = afs_dcnextTbl[us];
909             }
910             if (us == NULLIDX)
911                 osi_Panic("dcache hc");
912         }
913         /* remove entry from *other* hash chain */
914         i = DVHash(&adc->f.fid);
915         us = afs_dvhashTbl[i];
916         if (us == adc->index) {
917             /* first dude in the list */
918             afs_dvhashTbl[i] = afs_dvnextTbl[adc->index];
919         } else {
920             /* somewhere on the chain */
921             while (us != NULLIDX) {
922                 if (afs_dvnextTbl[us] == adc->index) {
923                     /* found item pointing at the one to delete */
924                     afs_dvnextTbl[us] = afs_dvnextTbl[adc->index];
925                     break;
926                 }
927                 us = afs_dvnextTbl[us];
928             }
929             if (us == NULLIDX)
930                 osi_Panic("dcache hv");
931         }
932     }
933
934     if (zap) {
935         /* prevent entry from being found on a reboot (it is already out of
936          * the hash table, but after a crash, we just look at fid fields of
937          * stable (old) entries).
938          */
939          adc->f.fid.Fid.Volume = 0;     /* invalid */
940
941         /* mark entry as modified */
942         adc->dflags |= DFEntryMod;
943     }
944
945     /* all done */
946     return 0;
947 }                               /*afs_HashOutDCache */
948
949 /*!
950  * Flush the given dcache entry, pulling it from hash chains
951  * and truncating the associated cache file.
952  *
953  * \param adc Ptr to dcache entry to flush.
954  *
955  * \note Environment:
956  *      This routine must be called with the afs_xdcache lock held
957  *      (in write mode).
958  */
959 void
960 afs_FlushDCache(register struct dcache *adc)
961 {
962     AFS_STATCNT(afs_FlushDCache);
963     /*
964      * Bump the number of cache files flushed.
965      */
966     afs_stats_cmperf.cacheFlushes++;
967
968     /* remove from all hash tables */
969     afs_HashOutDCache(adc, 1);
970
971     /* Free its space; special case null operation, since truncate operation
972      * in UFS is slow even in this case, and this allows us to pre-truncate
973      * these files at more convenient times with fewer locks set
974      * (see afs_GetDownD).
975      */
976     if (adc->f.chunkBytes != 0) {
977         afs_DiscardDCache(adc);
978         afs_MaybeWakeupTruncateDaemon();
979     } else {
980         afs_FreeDCache(adc);
981     }
982
983     if (afs_WaitForCacheDrain) {
984         if (afs_blocksUsed <=
985             PERCENT(CM_CACHESIZEDRAINEDPCT, afs_cacheBlocks)) {
986             afs_WaitForCacheDrain = 0;
987             afs_osi_Wakeup(&afs_WaitForCacheDrain);
988         }
989     }
990 }                               /*afs_FlushDCache */
991
992
993 /*!
994  * Put a dcache entry on the free dcache entry list.
995  *
996  * \param adc dcache entry to free.
997  *
998  * \note Environment: called with afs_xdcache lock write-locked.
999  */
1000 static void
1001 afs_FreeDCache(register struct dcache *adc)
1002 {
1003     /* Thread on free list, update free list count and mark entry as
1004      * freed in its indexFlags element.  Also, ensure DCache entry gets
1005      * written out (set DFEntryMod).
1006      */
1007
1008     afs_dvnextTbl[adc->index] = afs_freeDCList;
1009     afs_freeDCList = adc->index;
1010     afs_freeDCCount++;
1011     afs_indexFlags[adc->index] |= IFFree;
1012     adc->dflags |= DFEntryMod;
1013
1014     if (afs_WaitForCacheDrain) {
1015         if ((afs_blocksUsed - afs_blocksDiscarded) <=
1016             PERCENT(CM_CACHESIZEDRAINEDPCT, afs_cacheBlocks)) {
1017             afs_WaitForCacheDrain = 0;
1018             afs_osi_Wakeup(&afs_WaitForCacheDrain);
1019         }
1020     }
1021 }                               /* afs_FreeDCache */
1022
1023 /*!
1024  * Discard the cache element by moving it to the discardDCList.
1025  * This puts the cache element into a quasi-freed state, where
1026  * the space may be reused, but the file has not been truncated.
1027  *
1028  * \note Major Assumptions Here:
1029  *      Assumes that frag size is an integral power of two, less one,
1030  *      and that this is a two's complement machine.  I don't
1031  *      know of any filesystems which violate this assumption...
1032  *
1033  * \param adr Ptr to dcache entry.
1034  *
1035  * \note Environment:
1036  *      Must be called with afs_xdcache write-locked.
1037  */
1038
1039 static void
1040 afs_DiscardDCache(register struct dcache *adc)
1041 {
1042     register afs_int32 size;
1043
1044     AFS_STATCNT(afs_DiscardDCache);
1045
1046     osi_Assert(adc->refCount == 1);
1047
1048     size = ((adc->f.chunkBytes + afs_fsfragsize) ^ afs_fsfragsize) >> 10;       /* round up */
1049     afs_blocksDiscarded += size;
1050     afs_stats_cmperf.cacheBlocksDiscarded = afs_blocksDiscarded;
1051
1052     afs_dvnextTbl[adc->index] = afs_discardDCList;
1053     afs_discardDCList = adc->index;
1054     afs_discardDCCount++;
1055
1056     adc->f.fid.Fid.Volume = 0;
1057     adc->dflags |= DFEntryMod;
1058     afs_indexFlags[adc->index] |= IFDiscarded;
1059
1060     if (afs_WaitForCacheDrain) {
1061         if ((afs_blocksUsed - afs_blocksDiscarded) <=
1062             PERCENT(CM_CACHESIZEDRAINEDPCT, afs_cacheBlocks)) {
1063             afs_WaitForCacheDrain = 0;
1064             afs_osi_Wakeup(&afs_WaitForCacheDrain);
1065         }
1066     }
1067
1068 }                               /*afs_DiscardDCache */
1069
1070 /*!
1071  * Free the next element on the list of discarded cache elements.
1072  */
1073 static void
1074 afs_FreeDiscardedDCache(void)
1075 {
1076     register struct dcache *tdc;
1077     register struct osi_file *tfile;
1078     register afs_int32 size;
1079
1080     AFS_STATCNT(afs_FreeDiscardedDCache);
1081
1082     ObtainWriteLock(&afs_xdcache, 510);
1083     if (!afs_blocksDiscarded) {
1084         ReleaseWriteLock(&afs_xdcache);
1085         return;
1086     }
1087
1088     /*
1089      * Get an entry from the list of discarded cache elements
1090      */
1091     tdc = afs_GetDSlot(afs_discardDCList, 0);
1092     osi_Assert(tdc->refCount == 1);
1093     ReleaseReadLock(&tdc->tlock);
1094
1095     afs_discardDCList = afs_dvnextTbl[tdc->index];
1096     afs_dvnextTbl[tdc->index] = NULLIDX;
1097     afs_discardDCCount--;
1098     size = ((tdc->f.chunkBytes + afs_fsfragsize) ^ afs_fsfragsize) >> 10;       /* round up */
1099     afs_blocksDiscarded -= size;
1100     afs_stats_cmperf.cacheBlocksDiscarded = afs_blocksDiscarded;
1101     /* We can lock because we just took it off the free list */
1102     ObtainWriteLock(&tdc->lock, 626);
1103     ReleaseWriteLock(&afs_xdcache);
1104
1105     /*
1106      * Truncate the element to reclaim its space
1107      */
1108     tfile = afs_CFileOpen(&tdc->f.inode);
1109     afs_CFileTruncate(tfile, 0);
1110     afs_CFileClose(tfile);
1111     afs_AdjustSize(tdc, 0);
1112     afs_DCMoveBucket(tdc, 0, 0);
1113
1114     /*
1115      * Free the element we just truncated
1116      */
1117     ObtainWriteLock(&afs_xdcache, 511);
1118     afs_indexFlags[tdc->index] &= ~IFDiscarded;
1119     afs_FreeDCache(tdc);
1120     tdc->f.states &= ~(DRO|DBackup|DRW);
1121     ReleaseWriteLock(&tdc->lock);
1122     afs_PutDCache(tdc);
1123     ReleaseWriteLock(&afs_xdcache);
1124 }
1125
1126 /*!
1127  * Free as many entries from the list of discarded cache elements
1128  * as we need to get the free space down below CM_WAITFORDRAINPCT (98%).
1129  *
1130  * \return 0
1131  */
1132 int
1133 afs_MaybeFreeDiscardedDCache(void)
1134 {
1135
1136     AFS_STATCNT(afs_MaybeFreeDiscardedDCache);
1137
1138     while (afs_blocksDiscarded
1139            && (afs_blocksUsed >
1140                PERCENT(CM_WAITFORDRAINPCT, afs_cacheBlocks))) {
1141         afs_FreeDiscardedDCache();
1142     }
1143     return 0;
1144 }
1145
1146 /*!
1147  * Try to free up a certain number of disk slots.
1148  *
1149  * \param anumber Targeted number of disk slots to free up.
1150  *
1151  * \note Environment:
1152  *      Must be called with afs_xdcache write-locked.
1153  *
1154  */
1155 static void
1156 afs_GetDownDSlot(int anumber)
1157 {
1158     struct afs_q *tq, *nq;
1159     struct dcache *tdc;
1160     int ix;
1161     unsigned int cnt;
1162
1163     AFS_STATCNT(afs_GetDownDSlot);
1164     if (cacheDiskType == AFS_FCACHE_TYPE_MEM)
1165         osi_Panic("diskless getdowndslot");
1166
1167     if (CheckLock(&afs_xdcache) != -1)
1168         osi_Panic("getdowndslot nolock");
1169
1170     /* decrement anumber first for all dudes in free list */
1171     for (tdc = afs_freeDSList; tdc; tdc = (struct dcache *)tdc->lruq.next)
1172         anumber--;
1173     if (anumber <= 0)
1174         return;                 /* enough already free */
1175
1176     for (cnt = 0, tq = afs_DLRU.prev; tq != &afs_DLRU && anumber > 0;
1177          tq = nq, cnt++) {
1178         tdc = (struct dcache *)tq;      /* q is first elt in dcache entry */
1179         nq = QPrev(tq);         /* in case we remove it */
1180         if (tdc->refCount == 0) {
1181             if ((ix = tdc->index) == NULLIDX)
1182                 osi_Panic("getdowndslot");
1183             /* pull the entry out of the lruq and put it on the free list */
1184             QRemove(&tdc->lruq);
1185
1186             /* write-through if modified */
1187             if (tdc->dflags & DFEntryMod) {
1188 #if defined(AFS_SGI_ENV) && defined(AFS_SGI_SHORTSTACK)
1189                 /*
1190                  * ask proxy to do this for us - we don't have the stack space
1191                  */
1192                 while (tdc->dflags & DFEntryMod) {
1193                     int s;
1194                     AFS_GUNLOCK();
1195                     s = SPLOCK(afs_sgibklock);
1196                     if (afs_sgibklist == NULL) {
1197                         /* if slot is free, grab it. */
1198                         afs_sgibklist = tdc;
1199                         SV_SIGNAL(&afs_sgibksync);
1200                     }
1201                     /* wait for daemon to (start, then) finish. */
1202                     SP_WAIT(afs_sgibklock, s, &afs_sgibkwait, PINOD);
1203                     AFS_GLOCK();
1204                 }
1205 #else
1206                 tdc->dflags &= ~DFEntryMod;
1207                 afs_WriteDCache(tdc, 1);
1208 #endif
1209             }
1210
1211             /* finally put the entry in the free list */
1212             afs_indexTable[ix] = NULL;
1213             afs_indexFlags[ix] &= ~IFEverUsed;
1214             tdc->index = NULLIDX;
1215             tdc->lruq.next = (struct afs_q *)afs_freeDSList;
1216             afs_freeDSList = tdc;
1217             anumber--;
1218         }
1219     }
1220 }                               /*afs_GetDownDSlot */
1221
1222
1223 /*
1224  * afs_RefDCache
1225  *
1226  * Description:
1227  *      Increment the reference count on a disk cache entry,
1228  *      which already has a non-zero refcount.  In order to
1229  *      increment the refcount of a zero-reference entry, you
1230  *      have to hold afs_xdcache.
1231  *
1232  * Parameters:
1233  *      adc : Pointer to the dcache entry to increment.
1234  *
1235  * Environment:
1236  *      Nothing interesting.
1237  */
1238 int
1239 afs_RefDCache(struct dcache *adc)
1240 {
1241     ObtainWriteLock(&adc->tlock, 627);
1242     if (adc->refCount < 0)
1243         osi_Panic("RefDCache: negative refcount");
1244     adc->refCount++;
1245     ReleaseWriteLock(&adc->tlock);
1246     return 0;
1247 }
1248
1249
1250 /*
1251  * afs_PutDCache
1252  *
1253  * Description:
1254  *      Decrement the reference count on a disk cache entry.
1255  *
1256  * Parameters:
1257  *      ad : Ptr to the dcache entry to decrement.
1258  *
1259  * Environment:
1260  *      Nothing interesting.
1261  */
1262 int
1263 afs_PutDCache(register struct dcache *adc)
1264 {
1265     AFS_STATCNT(afs_PutDCache);
1266     ObtainWriteLock(&adc->tlock, 276);
1267     if (adc->refCount <= 0)
1268         osi_Panic("putdcache");
1269     --adc->refCount;
1270     ReleaseWriteLock(&adc->tlock);
1271     return 0;
1272 }
1273
1274
1275 /*
1276  * afs_TryToSmush
1277  *
1278  * Description:
1279  *      Try to discard all data associated with this file from the
1280  *      cache.
1281  *
1282  * Parameters:
1283  *      avc : Pointer to the cache info for the file.
1284  *
1285  * Environment:
1286  *      Both pvnLock and lock are write held.
1287  */
1288 void
1289 afs_TryToSmush(register struct vcache *avc, afs_ucred_t *acred, int sync)
1290 {
1291     register struct dcache *tdc;
1292     register int index;
1293     register int i;
1294     AFS_STATCNT(afs_TryToSmush);
1295     afs_Trace2(afs_iclSetp, CM_TRACE_TRYTOSMUSH, ICL_TYPE_POINTER, avc,
1296                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length));
1297     sync = 1;                   /* XX Temp testing XX */
1298
1299 #if     defined(AFS_SUN5_ENV)
1300     ObtainWriteLock(&avc->vlock, 573);
1301     avc->activeV++;             /* block new getpages */
1302     ReleaseWriteLock(&avc->vlock);
1303 #endif
1304
1305     /* Flush VM pages */
1306     osi_VM_TryToSmush(avc, acred, sync);
1307
1308     /*
1309      * Get the hash chain containing all dce's for this fid
1310      */
1311     i = DVHash(&avc->f.fid);
1312     ObtainWriteLock(&afs_xdcache, 277);
1313     for (index = afs_dvhashTbl[i]; index != NULLIDX; index = i) {
1314         i = afs_dvnextTbl[index];       /* next pointer this hash table */
1315         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
1316             int releaseTlock = 1;
1317             tdc = afs_GetDSlot(index, NULL);
1318             if (!FidCmp(&tdc->f.fid, &avc->f.fid)) {
1319                 if (sync) {
1320                     if ((afs_indexFlags[index] & IFDataMod) == 0
1321                         && tdc->refCount == 1) {
1322                         ReleaseReadLock(&tdc->tlock);
1323                         releaseTlock = 0;
1324                         afs_FlushDCache(tdc);
1325                     }
1326                 } else
1327                     afs_indexTable[index] = 0;
1328             }
1329             if (releaseTlock)
1330                 ReleaseReadLock(&tdc->tlock);
1331             afs_PutDCache(tdc);
1332         }
1333     }
1334 #if     defined(AFS_SUN5_ENV)
1335     ObtainWriteLock(&avc->vlock, 545);
1336     if (--avc->activeV == 0 && (avc->vstates & VRevokeWait)) {
1337         avc->vstates &= ~VRevokeWait;
1338         afs_osi_Wakeup((char *)&avc->vstates);
1339     }
1340     ReleaseWriteLock(&avc->vlock);
1341 #endif
1342     ReleaseWriteLock(&afs_xdcache);
1343     /*
1344      * It's treated like a callback so that when we do lookups we'll 
1345      * invalidate the unique bit if any
1346      * trytoSmush occured during the lookup call
1347      */
1348     afs_allCBs++;
1349 }
1350
1351 /*
1352  * afs_DCacheMissingChunks
1353  *
1354  * Description
1355  *      Given the cached info for a file, return the number of chunks that
1356  *      are not available from the dcache.
1357  * 
1358  * Parameters:
1359  *      avc:    Pointer to the (held) vcache entry to look in.
1360  * 
1361  * Returns:
1362  *      The number of chunks which are not currently cached.
1363  * 
1364  * Environment:
1365  *      The vcache entry is held upon entry.
1366  */
1367
1368 int
1369 afs_DCacheMissingChunks(struct vcache *avc)
1370 {
1371     int i, index;
1372     afs_size_t totalLength = 0;
1373     afs_uint32 totalChunks = 0;
1374     struct dcache *tdc;
1375
1376     totalLength = avc->f.m.Length;
1377     if (avc->f.truncPos < totalLength)
1378         totalLength = avc->f.truncPos;
1379
1380     /* Length is 0, no chunk missing. */
1381     if (totalLength == 0)
1382         return 0;
1383
1384     /* If totalLength is a multiple of chunksize, the last byte appears
1385      * as being part of the next chunk, which does not exist.
1386      * Decrementing totalLength by one fixes that.
1387      */
1388     totalLength--;
1389     totalChunks = (AFS_CHUNK(totalLength) + 1);
1390
1391     /* If we're a directory, we only ever have one chunk, regardless of
1392      * the size of the dir.
1393      */
1394     if (avc->f.fid.Fid.Vnode & 1 || vType(avc) == VDIR)
1395         totalChunks = 1;
1396     
1397     /*
1398      printf("Should have %d chunks for %u bytes\n",
1399                 totalChunks, (totalLength + 1));
1400     */
1401     i = DVHash(&avc->f.fid);
1402     ObtainWriteLock(&afs_xdcache, 1001);
1403     for (index = afs_dvhashTbl[i]; index != NULLIDX; index = i) {
1404         i = afs_dvnextTbl[index];
1405         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
1406             tdc = afs_GetDSlot(index, NULL);
1407             if (!FidCmp(&tdc->f.fid, &avc->f.fid)) {
1408                 totalChunks--;
1409             }
1410             ReleaseReadLock(&tdc->tlock);
1411             afs_PutDCache(tdc);
1412         }
1413     }
1414     ReleaseWriteLock(&afs_xdcache);
1415
1416     /*printf("Missing %d chunks\n", totalChunks);*/
1417
1418     return (totalChunks);
1419 }
1420
1421 /*
1422  * afs_FindDCache
1423  *
1424  * Description:
1425  *      Given the cached info for a file and a byte offset into the
1426  *      file, make sure the dcache entry for that file and containing
1427  *      the given byte is available, returning it to our caller.
1428  *
1429  * Parameters:
1430  *      avc   : Pointer to the (held) vcache entry to look in.
1431  *      abyte : Which byte we want to get to.
1432  *
1433  * Returns:
1434  *      Pointer to the dcache entry covering the file & desired byte,
1435  *      or NULL if not found.
1436  *
1437  * Environment:
1438  *      The vcache entry is held upon entry.
1439  */
1440
1441 struct dcache *
1442 afs_FindDCache(register struct vcache *avc, afs_size_t abyte)
1443 {
1444     afs_int32 chunk;
1445     register afs_int32 i, index;
1446     register struct dcache *tdc = NULL;
1447
1448     AFS_STATCNT(afs_FindDCache);
1449     chunk = AFS_CHUNK(abyte);
1450
1451     /*
1452      * Hash on the [fid, chunk] and get the corresponding dcache index
1453      * after write-locking the dcache.
1454      */
1455     i = DCHash(&avc->f.fid, chunk);
1456     ObtainWriteLock(&afs_xdcache, 278);
1457     for (index = afs_dchashTbl[i]; index != NULLIDX;) {
1458         if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
1459             tdc = afs_GetDSlot(index, NULL);
1460             ReleaseReadLock(&tdc->tlock);
1461             if (!FidCmp(&tdc->f.fid, &avc->f.fid) && chunk == tdc->f.chunk) {
1462                 break;          /* leaving refCount high for caller */
1463             }
1464             afs_PutDCache(tdc);
1465         }
1466         index = afs_dcnextTbl[index];
1467     }
1468     if (index != NULLIDX) {
1469         hset(afs_indexTimes[tdc->index], afs_indexCounter);
1470         hadd32(afs_indexCounter, 1);
1471         ReleaseWriteLock(&afs_xdcache);
1472         return tdc;
1473     } 
1474     ReleaseWriteLock(&afs_xdcache);
1475     return NULL;
1476 }                               /*afs_FindDCache */
1477
1478
1479 /*!
1480  * Get a fresh dcache from the free or discarded list.
1481  *
1482  * \param avc Who's dcache is this going to be?
1483  * \param chunk The position where it will be placed in.
1484  * \param lock How are locks held.
1485  * \param ashFid If this dcache going to be used for a shadow dir,
1486  *              this is it's fid.
1487  *
1488  * \note Required locks:
1489  *      - afs_xdcache (W)
1490  *      - avc (R if (lock & 1) set and W otherwise)
1491  * \note It write locks the new dcache. The caller must unlock it.
1492  *
1493  * \return The new dcache.
1494  */
1495 struct dcache *
1496 afs_AllocDCache(struct vcache *avc, afs_int32 chunk, afs_int32 lock,
1497                 struct VenusFid *ashFid)
1498 {
1499     struct dcache *tdc = NULL;
1500     afs_uint32 size = 0;
1501     struct osi_file *file;
1502
1503     if (afs_discardDCList == NULLIDX
1504         || ((lock & 2) && afs_freeDCList != NULLIDX)) {
1505
1506         afs_indexFlags[afs_freeDCList] &= ~IFFree;
1507         tdc = afs_GetDSlot(afs_freeDCList, 0);
1508         osi_Assert(tdc->refCount == 1);
1509         ReleaseReadLock(&tdc->tlock);
1510         ObtainWriteLock(&tdc->lock, 604);
1511         afs_freeDCList = afs_dvnextTbl[tdc->index];
1512         afs_freeDCCount--;
1513     } else {
1514         afs_indexFlags[afs_discardDCList] &= ~IFDiscarded;
1515         tdc = afs_GetDSlot(afs_discardDCList, 0);
1516         osi_Assert(tdc->refCount == 1);
1517         ReleaseReadLock(&tdc->tlock);
1518         ObtainWriteLock(&tdc->lock, 605);
1519         afs_discardDCList = afs_dvnextTbl[tdc->index];
1520         afs_discardDCCount--;
1521         size =
1522             ((tdc->f.chunkBytes +
1523               afs_fsfragsize) ^ afs_fsfragsize) >> 10;
1524         tdc->f.states &= ~(DRO|DBackup|DRW);
1525         afs_DCMoveBucket(tdc, size, 0);
1526         afs_blocksDiscarded -= size;
1527         afs_stats_cmperf.cacheBlocksDiscarded = afs_blocksDiscarded;
1528         if (lock & 2) {
1529             /* Truncate the chunk so zeroes get filled properly */
1530             file = afs_CFileOpen(&tdc->f.inode);
1531             afs_CFileTruncate(file, 0);
1532             afs_CFileClose(file);
1533             afs_AdjustSize(tdc, 0);
1534         }
1535     }
1536
1537     /*
1538      * Locks held:
1539      * avc->lock(R) if setLocks
1540      * avc->lock(W) if !setLocks
1541      * tdc->lock(W)
1542      * afs_xdcache(W)
1543      */
1544
1545     /*
1546      * Fill in the newly-allocated dcache record.
1547      */
1548     afs_indexFlags[tdc->index] &= ~(IFDirtyPages | IFAnyPages);
1549     if (ashFid)
1550         /* Use shadow fid if provided. */
1551         tdc->f.fid = *ashFid;
1552     else
1553         /* Use normal vcache's fid otherwise. */
1554         tdc->f.fid = avc->f.fid;
1555     if (avc->f.states & CRO)
1556         tdc->f.states = DRO;
1557     else if (avc->f.states & CBackup)
1558         tdc->f.states = DBackup;
1559     else
1560         tdc->f.states = DRW;
1561     afs_DCMoveBucket(tdc, 0, afs_DCGetBucket(avc));
1562     afs_indexUnique[tdc->index] = tdc->f.fid.Fid.Unique;
1563     if (!ashFid)
1564         hones(tdc->f.versionNo);        /* invalid value */
1565     tdc->f.chunk = chunk;
1566     tdc->validPos = AFS_CHUNKTOBASE(chunk);
1567     /* XXX */
1568     if (tdc->lruq.prev == &tdc->lruq)
1569         osi_Panic("lruq 1");
1570
1571     return tdc;
1572 }
1573
1574 /*
1575  * afs_GetDCache
1576  *
1577  * Description:
1578  *      This function is called to obtain a reference to data stored in
1579  *      the disk cache, locating a chunk of data containing the desired
1580  *      byte and returning a reference to the disk cache entry, with its
1581  *      reference count incremented.
1582  *
1583  * Parameters:
1584  * IN:
1585  *      avc     : Ptr to a vcache entry (unlocked)
1586  *      abyte   : Byte position in the file desired
1587  *      areq    : Request structure identifying the requesting user.
1588  *      aflags  : Settings as follows:
1589  *                      1 : Set locks
1590  *                      2 : Return after creating entry.
1591  *                      4 : called from afs_vnop_write.c
1592  *                          *alen contains length of data to be written.
1593  * OUT:
1594  *      aoffset : Set to the offset within the chunk where the resident
1595  *                byte is located.
1596  *      alen    : Set to the number of bytes of data after the desired
1597  *                byte (including the byte itself) which can be read
1598  *                from this chunk.
1599  *
1600  * Environment:
1601  *      The vcache entry pointed to by avc is unlocked upon entry.
1602  */
1603
1604 /*
1605  * Update the vnode-to-dcache hint if we can get the vnode lock
1606  * right away.  Assumes dcache entry is at least read-locked.
1607  */
1608 void
1609 updateV2DC(int lockVc, struct vcache *v, struct dcache *d, int src)
1610 {
1611     if (!lockVc || 0 == NBObtainWriteLock(&v->lock, src)) {
1612         if (hsame(v->f.m.DataVersion, d->f.versionNo) && v->callback)
1613             v->dchint = d;
1614         if (lockVc)
1615             ReleaseWriteLock(&v->lock);
1616     }
1617 }
1618
1619 /* avc - Write-locked unless aflags & 1 */
1620 struct dcache *
1621 afs_GetDCache(register struct vcache *avc, afs_size_t abyte,
1622               register struct vrequest *areq, afs_size_t * aoffset,
1623               afs_size_t * alen, int aflags)
1624 {
1625     register afs_int32 i, code, shortcut;
1626 #if     defined(AFS_AIX32_ENV) || defined(AFS_SGI_ENV)
1627     register afs_int32 adjustsize = 0;
1628 #endif
1629     int setLocks;
1630     afs_int32 index;
1631     afs_int32 us;
1632     afs_int32 chunk;
1633     afs_size_t maxGoodLength;   /* amount of good data at server */
1634     afs_size_t Position = 0;
1635     afs_int32 size, tlen;       /* size of segment to transfer */
1636     struct afs_FetchOutput *tsmall = 0;
1637     register struct dcache *tdc;
1638     register struct osi_file *file;
1639     register struct afs_conn *tc;
1640     int downDCount = 0;
1641     struct server *newCallback = NULL;
1642     char setNewCallback;
1643     char setVcacheStatus;
1644     char doVcacheUpdate;
1645     char slowPass = 0;
1646     int doAdjustSize = 0;
1647     int doReallyAdjustSize = 0;
1648     int overWriteWholeChunk = 0;
1649
1650 #ifndef AFS_NOSTATS
1651     struct afs_stats_AccessInfo *accP;  /*Ptr to access record in stats */
1652     int fromReplica;            /*Are we reading from a replica? */
1653     int numFetchLoops;          /*# times around the fetch/analyze loop */
1654 #endif /* AFS_NOSTATS */
1655
1656     AFS_STATCNT(afs_GetDCache);
1657     if (dcacheDisabled)
1658         return NULL;
1659
1660     setLocks = aflags & 1;
1661
1662     /*
1663      * Determine the chunk number and offset within the chunk corresponding
1664      * to the desired byte.
1665      */
1666     if (avc->f.fid.Fid.Vnode & 1) {     /* if (vType(avc) == VDIR) */
1667         chunk = 0;
1668     } else {
1669         chunk = AFS_CHUNK(abyte);
1670     }
1671
1672     /* come back to here if we waited for the cache to drain. */
1673   RetryGetDCache:
1674
1675     setNewCallback = setVcacheStatus = 0;
1676
1677     if (setLocks) {
1678         if (slowPass)
1679             ObtainWriteLock(&avc->lock, 616);
1680         else
1681             ObtainReadLock(&avc->lock);
1682     }
1683
1684     /*
1685      * Locks held:
1686      * avc->lock(R) if setLocks && !slowPass
1687      * avc->lock(W) if !setLocks || slowPass
1688      */
1689
1690     shortcut = 0;
1691
1692     /* check hints first! (might could use bcmp or some such...) */
1693     if ((tdc = avc->dchint)) {
1694         int dcLocked;
1695
1696         /*
1697          * The locking order between afs_xdcache and dcache lock matters.
1698          * The hint dcache entry could be anywhere, even on the free list.
1699          * Locking afs_xdcache ensures that noone is trying to pull dcache
1700          * entries from the free list, and thereby assuming them to be not
1701          * referenced and not locked.
1702          */
1703         ObtainReadLock(&afs_xdcache);
1704         dcLocked = (0 == NBObtainSharedLock(&tdc->lock, 601));
1705
1706         if (dcLocked && (tdc->index != NULLIDX)
1707             && !FidCmp(&tdc->f.fid, &avc->f.fid) && chunk == tdc->f.chunk
1708             && !(afs_indexFlags[tdc->index] & (IFFree | IFDiscarded))) {
1709             /* got the right one.  It might not be the right version, and it 
1710              * might be fetching, but it's the right dcache entry.
1711              */
1712             /* All this code should be integrated better with what follows:
1713              * I can save a good bit more time under a write lock if I do..
1714              */
1715             ObtainWriteLock(&tdc->tlock, 603);
1716             tdc->refCount++;
1717             ReleaseWriteLock(&tdc->tlock);
1718
1719             ReleaseReadLock(&afs_xdcache);
1720             shortcut = 1;
1721
1722             if (hsame(tdc->f.versionNo, avc->f.m.DataVersion)
1723                 && !(tdc->dflags & DFFetching)) {
1724
1725                 afs_stats_cmperf.dcacheHits++;
1726                 ObtainWriteLock(&afs_xdcache, 559);
1727                 QRemove(&tdc->lruq);
1728                 QAdd(&afs_DLRU, &tdc->lruq);
1729                 ReleaseWriteLock(&afs_xdcache);
1730
1731                 /* Locks held:
1732                  * avc->lock(R) if setLocks && !slowPass
1733                  * avc->lock(W) if !setLocks || slowPass
1734                  * tdc->lock(S)
1735                  */
1736                 goto done;
1737             }
1738         } else {
1739             if (dcLocked)
1740                 ReleaseSharedLock(&tdc->lock);
1741             ReleaseReadLock(&afs_xdcache);
1742         }
1743
1744         if (!shortcut)
1745             tdc = 0;
1746     }
1747
1748     /* Locks held:
1749      * avc->lock(R) if setLocks && !slowPass
1750      * avc->lock(W) if !setLocks || slowPass
1751      * tdc->lock(S) if tdc
1752      */
1753
1754     if (!tdc) {                 /* If the hint wasn't the right dcache entry */
1755         /*
1756          * Hash on the [fid, chunk] and get the corresponding dcache index
1757          * after write-locking the dcache.
1758          */
1759       RetryLookup:
1760
1761         /* Locks held:
1762          * avc->lock(R) if setLocks && !slowPass
1763          * avc->lock(W) if !setLocks || slowPass
1764          */
1765
1766         i = DCHash(&avc->f.fid, chunk);
1767         /* check to make sure our space is fine */
1768         afs_MaybeWakeupTruncateDaemon();
1769
1770         ObtainWriteLock(&afs_xdcache, 280);
1771         us = NULLIDX;
1772         for (index = afs_dchashTbl[i]; index != NULLIDX;) {
1773             if (afs_indexUnique[index] == avc->f.fid.Fid.Unique) {
1774                 tdc = afs_GetDSlot(index, NULL);
1775                 ReleaseReadLock(&tdc->tlock);
1776                 /*
1777                  * Locks held:
1778                  * avc->lock(R) if setLocks && !slowPass
1779                  * avc->lock(W) if !setLocks || slowPass
1780                  * afs_xdcache(W)
1781                  */
1782                 if (!FidCmp(&tdc->f.fid, &avc->f.fid) && chunk == tdc->f.chunk) {
1783                     /* Move it up in the beginning of the list */
1784                     if (afs_dchashTbl[i] != index) {
1785                         afs_dcnextTbl[us] = afs_dcnextTbl[index];
1786                         afs_dcnextTbl[index] = afs_dchashTbl[i];
1787                         afs_dchashTbl[i] = index;
1788                     }
1789                     ReleaseWriteLock(&afs_xdcache);
1790                     ObtainSharedLock(&tdc->lock, 606);
1791                     break;      /* leaving refCount high for caller */
1792                 }
1793                 afs_PutDCache(tdc);
1794                 tdc = 0;
1795             }
1796             us = index;
1797             index = afs_dcnextTbl[index];
1798         }
1799
1800         /*
1801          * If we didn't find the entry, we'll create one.
1802          */
1803         if (index == NULLIDX) {
1804             /*
1805              * Locks held:
1806              * avc->lock(R) if setLocks
1807              * avc->lock(W) if !setLocks
1808              * afs_xdcache(W)
1809              */
1810             afs_Trace2(afs_iclSetp, CM_TRACE_GETDCACHE1, ICL_TYPE_POINTER,
1811                        avc, ICL_TYPE_INT32, chunk);
1812
1813             /* Make sure there is a free dcache entry for us to use */
1814             if (afs_discardDCList == NULLIDX && afs_freeDCList == NULLIDX) {
1815                 while (1) {
1816                     if (!setLocks)
1817                         avc->f.states |= CDCLock;
1818                     /* just need slots */
1819                     afs_GetDownD(5, (int *)0, afs_DCGetBucket(avc));
1820                     if (!setLocks)
1821                         avc->f.states &= ~CDCLock;
1822                     if (afs_discardDCList != NULLIDX
1823                         || afs_freeDCList != NULLIDX)
1824                         break;
1825                     /* If we can't get space for 5 mins we give up and panic */
1826                     if (++downDCount > 300) {
1827                         osi_Panic("getdcache");
1828                     }
1829                     ReleaseWriteLock(&afs_xdcache);
1830                     /*
1831                      * Locks held:
1832                      * avc->lock(R) if setLocks
1833                      * avc->lock(W) if !setLocks
1834                      */
1835                     afs_osi_Wait(1000, 0, 0);
1836                     goto RetryLookup;
1837                 }
1838             }
1839
1840             tdc = afs_AllocDCache(avc, chunk, aflags, NULL);
1841
1842             /*
1843              * Now add to the two hash chains - note that i is still set
1844              * from the above DCHash call.
1845              */
1846             afs_dcnextTbl[tdc->index] = afs_dchashTbl[i];
1847             afs_dchashTbl[i] = tdc->index;
1848             i = DVHash(&avc->f.fid);
1849             afs_dvnextTbl[tdc->index] = afs_dvhashTbl[i];
1850             afs_dvhashTbl[i] = tdc->index;
1851             tdc->dflags = DFEntryMod;
1852             tdc->mflags = 0;
1853             afs_MaybeWakeupTruncateDaemon();
1854             ReleaseWriteLock(&afs_xdcache);
1855             ConvertWToSLock(&tdc->lock);
1856         }
1857     }
1858
1859
1860     /* vcache->dcache hint failed */
1861     /*
1862      * Locks held:
1863      * avc->lock(R) if setLocks && !slowPass
1864      * avc->lock(W) if !setLocks || slowPass
1865      * tdc->lock(S)
1866      */
1867     afs_Trace4(afs_iclSetp, CM_TRACE_GETDCACHE2, ICL_TYPE_POINTER, avc,
1868                ICL_TYPE_POINTER, tdc, ICL_TYPE_INT32,
1869                hgetlo(tdc->f.versionNo), ICL_TYPE_INT32,
1870                hgetlo(avc->f.m.DataVersion));
1871     /*
1872      * Here we have the entry in tdc, with its refCount incremented.
1873      * Note: we don't use the S-lock on avc; it costs concurrency when
1874      * storing a file back to the server.
1875      */
1876
1877     /*
1878      * Not a newly created file so we need to check the file's length and
1879      * compare data versions since someone could have changed the data or we're
1880      * reading a file written elsewhere. We only want to bypass doing no-op
1881      * read rpcs on newly created files (dv of 0) since only then we guarantee
1882      * that this chunk's data hasn't been filled by another client.
1883      */
1884     size = AFS_CHUNKSIZE(abyte);
1885     if (aflags & 4)             /* called from write */
1886         tlen = *alen;
1887     else                        /* called from read */
1888         tlen = tdc->validPos - abyte;
1889     Position = AFS_CHUNKTOBASE(chunk);
1890     afs_Trace4(afs_iclSetp, CM_TRACE_GETDCACHE3, ICL_TYPE_INT32, tlen,
1891                ICL_TYPE_INT32, aflags, ICL_TYPE_OFFSET,
1892                ICL_HANDLE_OFFSET(abyte), ICL_TYPE_OFFSET,
1893                ICL_HANDLE_OFFSET(Position));
1894     if ((aflags & 4) && (hiszero(avc->f.m.DataVersion)))
1895         doAdjustSize = 1;
1896     if ((AFS_CHUNKTOBASE(chunk) >= avc->f.m.Length) ||
1897          ((aflags & 4) && (abyte == Position) && (tlen >= size)))
1898         overWriteWholeChunk = 1;
1899     if (doAdjustSize || overWriteWholeChunk) {
1900 #if     defined(AFS_AIX32_ENV) || defined(AFS_SGI_ENV)
1901 #ifdef  AFS_SGI_ENV
1902 #ifdef AFS_SGI64_ENV
1903         if (doAdjustSize)
1904             adjustsize = NBPP;
1905 #else /* AFS_SGI64_ENV */
1906         if (doAdjustSize)
1907             adjustsize = 8192;
1908 #endif /* AFS_SGI64_ENV */
1909 #else /* AFS_SGI_ENV */
1910         if (doAdjustSize)
1911             adjustsize = 4096;
1912 #endif /* AFS_SGI_ENV */
1913         if (AFS_CHUNKTOBASE(chunk) + adjustsize >= avc->f.m.Length &&
1914 #else /* defined(AFS_AIX32_ENV) || defined(AFS_SGI_ENV) */
1915 #if     defined(AFS_SUN5_ENV)
1916         if ((doAdjustSize || (AFS_CHUNKTOBASE(chunk) >= avc->f.m.Length)) &&
1917 #else
1918         if (AFS_CHUNKTOBASE(chunk) >= avc->f.m.Length &&
1919 #endif
1920 #endif /* defined(AFS_AIX32_ENV) || defined(AFS_SGI_ENV) */
1921             !hsame(avc->f.m.DataVersion, tdc->f.versionNo))
1922             doReallyAdjustSize = 1;
1923
1924         if (doReallyAdjustSize || overWriteWholeChunk) {
1925             /* no data in file to read at this position */
1926             UpgradeSToWLock(&tdc->lock, 607);
1927             file = afs_CFileOpen(&tdc->f.inode);
1928             afs_CFileTruncate(file, 0);
1929             afs_CFileClose(file);
1930             afs_AdjustSize(tdc, 0);
1931             hset(tdc->f.versionNo, avc->f.m.DataVersion);
1932             tdc->dflags |= DFEntryMod;
1933
1934             ConvertWToSLock(&tdc->lock);
1935         }
1936     }
1937
1938     /*
1939      * We must read in the whole chunk if the version number doesn't
1940      * match.
1941      */
1942     if (aflags & 2) {
1943         /* don't need data, just a unique dcache entry */
1944         ObtainWriteLock(&afs_xdcache, 608);
1945         hset(afs_indexTimes[tdc->index], afs_indexCounter);
1946         hadd32(afs_indexCounter, 1);
1947         ReleaseWriteLock(&afs_xdcache);
1948
1949         updateV2DC(setLocks, avc, tdc, 553);
1950         if (vType(avc) == VDIR)
1951             *aoffset = abyte;
1952         else
1953             *aoffset = AFS_CHUNKOFFSET(abyte);
1954         if (tdc->validPos < abyte)
1955             *alen = (afs_size_t) 0;
1956         else
1957             *alen = tdc->validPos - abyte;
1958         ReleaseSharedLock(&tdc->lock);
1959         if (setLocks) {
1960             if (slowPass)
1961                 ReleaseWriteLock(&avc->lock);
1962             else
1963                 ReleaseReadLock(&avc->lock);
1964         }
1965         return tdc;             /* check if we're done */
1966     }
1967
1968     /*
1969      * Locks held:
1970      * avc->lock(R) if setLocks && !slowPass
1971      * avc->lock(W) if !setLocks || slowPass
1972      * tdc->lock(S)
1973      */
1974     osi_Assert((setLocks && !slowPass) || WriteLocked(&avc->lock));
1975
1976     setNewCallback = setVcacheStatus = 0;
1977
1978     /*
1979      * Locks held:
1980      * avc->lock(R) if setLocks && !slowPass
1981      * avc->lock(W) if !setLocks || slowPass
1982      * tdc->lock(S)
1983      */
1984     if (!hsame(avc->f.m.DataVersion, tdc->f.versionNo) && !overWriteWholeChunk) {
1985         /*
1986          * Version number mismatch.
1987          */
1988         /*
1989          * If we are disconnected, then we can't do much of anything
1990          * because the data doesn't match the file.
1991          */
1992         if (AFS_IS_DISCONNECTED) {
1993             ReleaseSharedLock(&tdc->lock);
1994             if (setLocks) {
1995                 if (slowPass)
1996                     ReleaseWriteLock(&avc->lock);
1997                 else
1998                     ReleaseReadLock(&avc->lock);
1999             }
2000             /* Flush the Dcache */
2001             afs_PutDCache(tdc);
2002
2003             return NULL;
2004         }
2005         UpgradeSToWLock(&tdc->lock, 609);
2006
2007         /*
2008          * If data ever existed for this vnode, and this is a text object,
2009          * do some clearing.  Now, you'd think you need only do the flush
2010          * when VTEXT is on, but VTEXT is turned off when the text object
2011          * is freed, while pages are left lying around in memory marked
2012          * with this vnode.  If we would reactivate (create a new text
2013          * object from) this vnode, we could easily stumble upon some of
2014          * these old pages in pagein.  So, we always flush these guys.
2015          * Sun has a wonderful lack of useful invariants in this system.
2016          *
2017          * avc->flushDV is the data version # of the file at the last text
2018          * flush.  Clearly, at least, we don't have to flush the file more
2019          * often than it changes
2020          */
2021         if (hcmp(avc->flushDV, avc->f.m.DataVersion) < 0) {
2022             /*
2023              * By here, the cache entry is always write-locked.  We can
2024              * deadlock if we call osi_Flush with the cache entry locked...
2025              * Unlock the dcache too.
2026              */
2027             ReleaseWriteLock(&tdc->lock);
2028             if (setLocks && !slowPass)
2029                 ReleaseReadLock(&avc->lock);
2030             else
2031                 ReleaseWriteLock(&avc->lock);
2032
2033             osi_FlushText(avc);
2034             /*
2035              * Call osi_FlushPages in open, read/write, and map, since it
2036              * is too hard here to figure out if we should lock the
2037              * pvnLock.
2038              */
2039             if (setLocks && !slowPass)
2040                 ObtainReadLock(&avc->lock);
2041             else
2042                 ObtainWriteLock(&avc->lock, 66);
2043             ObtainWriteLock(&tdc->lock, 610);
2044         }
2045
2046         /*
2047          * Locks held:
2048          * avc->lock(R) if setLocks && !slowPass
2049          * avc->lock(W) if !setLocks || slowPass
2050          * tdc->lock(W)
2051          */
2052
2053         /* Watch for standard race condition around osi_FlushText */
2054         if (hsame(avc->f.m.DataVersion, tdc->f.versionNo)) {
2055             updateV2DC(setLocks, avc, tdc, 569);        /* set hint */
2056             afs_stats_cmperf.dcacheHits++;
2057             ConvertWToSLock(&tdc->lock);
2058             goto done;
2059         }
2060
2061         /* Sleep here when cache needs to be drained. */
2062         if (setLocks && !slowPass
2063             && (afs_blocksUsed >
2064                 PERCENT(CM_WAITFORDRAINPCT, afs_cacheBlocks))) {
2065             /* Make sure truncate daemon is running */
2066             afs_MaybeWakeupTruncateDaemon();
2067             ObtainWriteLock(&tdc->tlock, 614);
2068             tdc->refCount--;    /* we'll re-obtain the dcache when we re-try. */
2069             ReleaseWriteLock(&tdc->tlock);
2070             ReleaseWriteLock(&tdc->lock);
2071             ReleaseReadLock(&avc->lock);
2072             while ((afs_blocksUsed - afs_blocksDiscarded) >
2073                    PERCENT(CM_WAITFORDRAINPCT, afs_cacheBlocks)) {
2074                 afs_WaitForCacheDrain = 1;
2075                 afs_osi_Sleep(&afs_WaitForCacheDrain);
2076             }
2077             afs_MaybeFreeDiscardedDCache();
2078             /* need to check if someone else got the chunk first. */
2079             goto RetryGetDCache;
2080         }
2081
2082         /* Do not fetch data beyond truncPos. */
2083         maxGoodLength = avc->f.m.Length;
2084         if (avc->f.truncPos < maxGoodLength)
2085             maxGoodLength = avc->f.truncPos;
2086         Position = AFS_CHUNKBASE(abyte);
2087         if (vType(avc) == VDIR) {
2088             size = avc->f.m.Length;
2089             if (size > tdc->f.chunkBytes) {
2090                 /* pre-reserve space for file */
2091                 afs_AdjustSize(tdc, size);
2092             }
2093             size = 999999999;   /* max size for transfer */
2094         } else {
2095             size = AFS_CHUNKSIZE(abyte);        /* expected max size */
2096             /* don't read past end of good data on server */
2097             if (Position + size > maxGoodLength)
2098                 size = maxGoodLength - Position;
2099             if (size < 0)
2100                 size = 0;       /* Handle random races */
2101             if (size > tdc->f.chunkBytes) {
2102                 /* pre-reserve space for file */
2103                 afs_AdjustSize(tdc, size);      /* changes chunkBytes */
2104                 /* max size for transfer still in size */
2105             }
2106         }
2107         if (afs_mariner && !tdc->f.chunk)
2108             afs_MarinerLog("fetch$Fetching", avc);      /* , Position, size, afs_indexCounter ); */
2109         /*
2110          * Right now, we only have one tool, and it's a hammer.  So, we
2111          * fetch the whole file.
2112          */
2113         DZap(tdc);      /* pages in cache may be old */
2114         file = afs_CFileOpen(&tdc->f.inode);
2115         afs_RemoveVCB(&avc->f.fid);
2116         tdc->f.states |= DWriting;
2117         tdc->dflags |= DFFetching;
2118         tdc->validPos = Position;       /*  which is AFS_CHUNKBASE(abyte) */
2119         if (tdc->mflags & DFFetchReq) {
2120             tdc->mflags &= ~DFFetchReq;
2121             if (afs_osi_Wakeup(&tdc->validPos) == 0)
2122                 afs_Trace4(afs_iclSetp, CM_TRACE_DCACHEWAKE, ICL_TYPE_STRING,
2123                            __FILE__, ICL_TYPE_INT32, __LINE__,
2124                            ICL_TYPE_POINTER, tdc, ICL_TYPE_INT32,
2125                            tdc->dflags);
2126         }
2127         tsmall =
2128             (struct afs_FetchOutput *)osi_AllocLargeSpace(sizeof(struct afs_FetchOutput));
2129         setVcacheStatus = 0;
2130 #ifndef AFS_NOSTATS
2131         /*
2132          * Remember if we are doing the reading from a replicated volume,
2133          * and how many times we've zipped around the fetch/analyze loop.
2134          */
2135         fromReplica = (avc->f.states & CRO) ? 1 : 0;
2136         numFetchLoops = 0;
2137         accP = &(afs_stats_cmfullperf.accessinf);
2138         if (fromReplica)
2139             (accP->replicatedRefs)++;
2140         else
2141             (accP->unreplicatedRefs)++;
2142 #endif /* AFS_NOSTATS */
2143         /* this is a cache miss */
2144         afs_Trace4(afs_iclSetp, CM_TRACE_FETCHPROC, ICL_TYPE_POINTER, avc,
2145                    ICL_TYPE_FID, &(avc->f.fid), ICL_TYPE_OFFSET,
2146                    ICL_HANDLE_OFFSET(Position), ICL_TYPE_INT32, size);
2147
2148         if (size)
2149             afs_stats_cmperf.dcacheMisses++;
2150         code = 0;
2151         /*
2152          * Dynamic root support:  fetch data from local memory.
2153          */
2154         if (afs_IsDynroot(avc)) {
2155             char *dynrootDir;
2156             int dynrootLen;
2157
2158             afs_GetDynroot(&dynrootDir, &dynrootLen, &tsmall->OutStatus);
2159
2160             dynrootDir += Position;
2161             dynrootLen -= Position;
2162             if (size > dynrootLen)
2163                 size = dynrootLen;
2164             if (size < 0)
2165                 size = 0;
2166             code = afs_CFileWrite(file, 0, dynrootDir, size);
2167             afs_PutDynroot();
2168
2169             if (code == size)
2170                 code = 0;
2171             else
2172                 code = -1;
2173
2174             tdc->validPos = Position + size;
2175             afs_CFileTruncate(file, size);      /* prune it */
2176         } else if (afs_IsDynrootMount(avc)) {
2177             char *dynrootDir;
2178             int dynrootLen;
2179
2180             afs_GetDynrootMount(&dynrootDir, &dynrootLen, &tsmall->OutStatus);
2181
2182             dynrootDir += Position;
2183             dynrootLen -= Position;
2184             if (size > dynrootLen)
2185                 size = dynrootLen;
2186             if (size < 0)
2187                 size = 0;
2188             code = afs_CFileWrite(file, 0, dynrootDir, size);
2189             afs_PutDynroot();
2190
2191             if (code == size)
2192                 code = 0;
2193             else
2194                 code = -1;
2195
2196             tdc->validPos = Position + size;
2197             afs_CFileTruncate(file, size);      /* prune it */
2198         } else
2199             /*
2200              * Not a dynamic vnode:  do the real fetch.
2201              */
2202             do {
2203                 /*
2204                  * Locks held:
2205                  * avc->lock(R) if setLocks && !slowPass
2206                  * avc->lock(W) if !setLocks || slowPass
2207                  * tdc->lock(W)
2208                  */
2209
2210                 tc = afs_Conn(&avc->f.fid, areq, SHARED_LOCK);
2211                 if (tc) {
2212 #ifndef AFS_NOSTATS
2213                     numFetchLoops++;
2214                     if (fromReplica)
2215                         (accP->numReplicasAccessed)++;
2216
2217 #endif /* AFS_NOSTATS */
2218                     if (!setLocks || slowPass) {
2219                         avc->callback = tc->srvr->server;
2220                     } else {
2221                         newCallback = tc->srvr->server;
2222                         setNewCallback = 1;
2223                     }
2224                     i = osi_Time();
2225                     code = afs_CacheFetchProc(tc, file, Position, tdc,
2226                                                avc, size, tsmall);
2227                 } else
2228                    code = -1;
2229
2230                 if (code == 0) {
2231                     /* callback could have been broken (or expired) in a race here, 
2232                      * but we return the data anyway.  It's as good as we knew about
2233                      * when we started. */
2234                     /* 
2235                      * validPos is updated by CacheFetchProc, and can only be 
2236                      * modifed under a dcache write lock, which we've blocked out 
2237                      */
2238                     size = tdc->validPos - Position;    /* actual segment size */
2239                     if (size < 0)
2240                         size = 0;
2241                     afs_CFileTruncate(file, size);      /* prune it */
2242                 } else {
2243                     if (!setLocks || slowPass) {
2244                         ObtainWriteLock(&afs_xcbhash, 453);
2245                         afs_DequeueCallback(avc);
2246                         avc->f.states &= ~(CStatd | CUnique);
2247                         avc->callback = NULL;
2248                         ReleaseWriteLock(&afs_xcbhash);
2249                         if (avc->f.fid.Fid.Vnode & 1 || (vType(avc) == VDIR))
2250                             osi_dnlc_purgedp(avc);
2251                     } else {
2252                         /* Something lost.  Forget about performance, and go
2253                          * back with a vcache write lock.
2254                          */
2255                         afs_CFileTruncate(file, 0);
2256                         afs_AdjustSize(tdc, 0);
2257                         afs_CFileClose(file);
2258                         osi_FreeLargeSpace(tsmall);
2259                         tsmall = 0;
2260                         ReleaseWriteLock(&tdc->lock);
2261                         afs_PutDCache(tdc);
2262                         tdc = 0;
2263                         ReleaseReadLock(&avc->lock);
2264                         slowPass = 1;
2265                         goto RetryGetDCache;
2266                     }
2267                 }
2268
2269             } while (afs_Analyze
2270                      (tc, code, &avc->f.fid, areq,
2271                       AFS_STATS_FS_RPCIDX_FETCHDATA, SHARED_LOCK, NULL));
2272
2273         /*
2274          * Locks held:
2275          * avc->lock(R) if setLocks && !slowPass
2276          * avc->lock(W) if !setLocks || slowPass
2277          * tdc->lock(W)
2278          */
2279
2280 #ifndef AFS_NOSTATS
2281         /*
2282          * In the case of replicated access, jot down info on the number of
2283          * attempts it took before we got through or gave up.
2284          */
2285         if (fromReplica) {
2286             if (numFetchLoops <= 1)
2287                 (accP->refFirstReplicaOK)++;
2288             if (numFetchLoops > accP->maxReplicasPerRef)
2289                 accP->maxReplicasPerRef = numFetchLoops;
2290         }
2291 #endif /* AFS_NOSTATS */
2292
2293         tdc->dflags &= ~DFFetching;
2294         if (afs_osi_Wakeup(&tdc->validPos) == 0)
2295             afs_Trace4(afs_iclSetp, CM_TRACE_DCACHEWAKE, ICL_TYPE_STRING,
2296                        __FILE__, ICL_TYPE_INT32, __LINE__, ICL_TYPE_POINTER,
2297                        tdc, ICL_TYPE_INT32, tdc->dflags);
2298         if (avc->execsOrWriters == 0)
2299             tdc->f.states &= ~DWriting;
2300
2301         /* now, if code != 0, we have an error and should punt.
2302          * note that we have the vcache write lock, either because
2303          * !setLocks or slowPass.
2304          */
2305         if (code) {
2306             afs_CFileTruncate(file, 0);
2307             afs_AdjustSize(tdc, 0);
2308             afs_CFileClose(file);
2309             ZapDCE(tdc);        /* sets DFEntryMod */
2310             if (vType(avc) == VDIR) {
2311                 DZap(tdc);
2312             }
2313             tdc->f.states &= ~(DRO|DBackup|DRW);
2314             afs_DCMoveBucket(tdc, 0, 0);
2315             ReleaseWriteLock(&tdc->lock);
2316             afs_PutDCache(tdc);
2317             if (!afs_IsDynroot(avc)) {
2318                 ObtainWriteLock(&afs_xcbhash, 454);
2319                 afs_DequeueCallback(avc);
2320                 avc->f.states &= ~(CStatd | CUnique);
2321                 ReleaseWriteLock(&afs_xcbhash);
2322                 if (avc->f.fid.Fid.Vnode & 1 || (vType(avc) == VDIR))
2323                     osi_dnlc_purgedp(avc);
2324                 /*
2325                  * Locks held:
2326                  * avc->lock(W); assert(!setLocks || slowPass)
2327                  */
2328                 osi_Assert(!setLocks || slowPass);
2329             }
2330             tdc = NULL;
2331             goto done;
2332         }
2333
2334         /* otherwise we copy in the just-fetched info */
2335         afs_CFileClose(file);
2336         afs_AdjustSize(tdc, size);      /* new size */
2337         /*
2338          * Copy appropriate fields into vcache.  Status is
2339          * copied later where we selectively acquire the
2340          * vcache write lock.
2341          */
2342         if (slowPass)
2343             afs_ProcessFS(avc, &tsmall->OutStatus, areq);
2344         else
2345             setVcacheStatus = 1;
2346         hset64(tdc->f.versionNo, tsmall->OutStatus.dataVersionHigh,
2347                tsmall->OutStatus.DataVersion);
2348         tdc->dflags |= DFEntryMod;
2349         afs_indexFlags[tdc->index] |= IFEverUsed;
2350         ConvertWToSLock(&tdc->lock);
2351     } /*Data version numbers don't match */
2352     else {
2353         /*
2354          * Data version numbers match.
2355          */
2356         afs_stats_cmperf.dcacheHits++;
2357     }                           /*Data version numbers match */
2358
2359     updateV2DC(setLocks, avc, tdc, 335);        /* set hint */
2360   done:
2361     /*
2362      * Locks held:
2363      * avc->lock(R) if setLocks && !slowPass
2364      * avc->lock(W) if !setLocks || slowPass
2365      * tdc->lock(S) if tdc
2366      */
2367
2368     /*
2369      * See if this was a reference to a file in the local cell.
2370      */
2371     if (afs_IsPrimaryCellNum(avc->f.fid.Cell))
2372         afs_stats_cmperf.dlocalAccesses++;
2373     else
2374         afs_stats_cmperf.dremoteAccesses++;
2375
2376     /* Fix up LRU info */
2377
2378     if (tdc) {
2379         ObtainWriteLock(&afs_xdcache, 602);
2380         hset(afs_indexTimes[tdc->index], afs_indexCounter);
2381         hadd32(afs_indexCounter, 1);
2382         ReleaseWriteLock(&afs_xdcache);
2383
2384         /* return the data */
2385         if (vType(avc) == VDIR)
2386             *aoffset = abyte;
2387         else
2388             *aoffset = AFS_CHUNKOFFSET(abyte);
2389         *alen = (tdc->f.chunkBytes - *aoffset);
2390         ReleaseSharedLock(&tdc->lock);
2391     }
2392
2393     /*
2394      * Locks held:
2395      * avc->lock(R) if setLocks && !slowPass
2396      * avc->lock(W) if !setLocks || slowPass
2397      */
2398
2399     /* Fix up the callback and status values in the vcache */
2400     doVcacheUpdate = 0;
2401     if (setLocks && !slowPass) {
2402         /* DCLOCKXXX
2403          *
2404          * This is our dirty little secret to parallel fetches.
2405          * We don't write-lock the vcache while doing the fetch,
2406          * but potentially we'll need to update the vcache after
2407          * the fetch is done.
2408          *
2409          * Drop the read lock and try to re-obtain the write
2410          * lock.  If the vcache still has the same DV, it's
2411          * ok to go ahead and install the new data.
2412          */
2413         afs_hyper_t currentDV, statusDV;
2414
2415         hset(currentDV, avc->f.m.DataVersion);
2416
2417         if (setNewCallback && avc->callback != newCallback)
2418             doVcacheUpdate = 1;
2419
2420         if (tsmall) {
2421             hset64(statusDV, tsmall->OutStatus.dataVersionHigh,
2422                    tsmall->OutStatus.DataVersion);
2423
2424             if (setVcacheStatus && avc->f.m.Length != tsmall->OutStatus.Length)
2425                 doVcacheUpdate = 1;
2426             if (setVcacheStatus && !hsame(currentDV, statusDV))
2427                 doVcacheUpdate = 1;
2428         }
2429
2430         ReleaseReadLock(&avc->lock);
2431
2432         if (doVcacheUpdate) {
2433             ObtainWriteLock(&avc->lock, 615);
2434             if (!hsame(avc->f.m.DataVersion, currentDV)) {
2435                 /* We lose.  Someone will beat us to it. */
2436                 doVcacheUpdate = 0;
2437                 ReleaseWriteLock(&avc->lock);
2438             }
2439         }
2440     }
2441
2442     /* With slow pass, we've already done all the updates */
2443     if (slowPass) {
2444         ReleaseWriteLock(&avc->lock);
2445     }
2446
2447     /* Check if we need to perform any last-minute fixes with a write-lock */
2448     if (!setLocks || doVcacheUpdate) {
2449         if (setNewCallback)
2450             avc->callback = newCallback;
2451         if (tsmall && setVcacheStatus)
2452             afs_ProcessFS(avc, &tsmall->OutStatus, areq);
2453         if (setLocks)
2454             ReleaseWriteLock(&avc->lock);
2455     }
2456
2457     if (tsmall)
2458         osi_FreeLargeSpace(tsmall);
2459
2460     return tdc;
2461 }                               /*afs_GetDCache */
2462
2463
2464 /*
2465  * afs_WriteThroughDSlots
2466  *
2467  * Description:
2468  *      Sweep through the dcache slots and write out any modified
2469  *      in-memory data back on to our caching store.
2470  *
2471  * Parameters:
2472  *      None.
2473  *
2474  * Environment:
2475  *      The afs_xdcache is write-locked through this whole affair.
2476  */
2477 void
2478 afs_WriteThroughDSlots(void)
2479 {
2480     register struct dcache *tdc;
2481     register afs_int32 i, touchedit = 0;
2482
2483     struct afs_q DirtyQ, *tq;
2484
2485     AFS_STATCNT(afs_WriteThroughDSlots);
2486
2487     /*
2488      * Because of lock ordering, we can't grab dcache locks while
2489      * holding afs_xdcache.  So we enter xdcache, get a reference
2490      * for every dcache entry, and exit xdcache.
2491      */
2492     ObtainWriteLock(&afs_xdcache, 283);
2493     QInit(&DirtyQ);
2494     for (i = 0; i < afs_cacheFiles; i++) {
2495         tdc = afs_indexTable[i];
2496
2497         /* Grab tlock in case the existing refcount isn't zero */
2498         if (tdc && !(afs_indexFlags[i] & (IFFree | IFDiscarded))) {
2499             ObtainWriteLock(&tdc->tlock, 623);
2500             tdc->refCount++;
2501             ReleaseWriteLock(&tdc->tlock);
2502
2503             QAdd(&DirtyQ, &tdc->dirty);
2504         }
2505     }
2506     ReleaseWriteLock(&afs_xdcache);
2507
2508     /*
2509      * Now, for each dcache entry we found, check if it's dirty.
2510      * If so, get write-lock, get afs_xdcache, which protects
2511      * afs_cacheInodep, and flush it.  Don't forget to put back
2512      * the refcounts.
2513      */
2514
2515 #define DQTODC(q)       ((struct dcache *)(((char *) (q)) - sizeof(struct afs_q)))
2516
2517     for (tq = DirtyQ.prev; tq != &DirtyQ; tq = QPrev(tq)) {
2518         tdc = DQTODC(tq);
2519         if (tdc->dflags & DFEntryMod) {
2520             int wrLock;
2521
2522             wrLock = (0 == NBObtainWriteLock(&tdc->lock, 619));
2523
2524             /* Now that we have the write lock, double-check */
2525             if (wrLock && (tdc->dflags & DFEntryMod)) {
2526                 tdc->dflags &= ~DFEntryMod;
2527                 ObtainWriteLock(&afs_xdcache, 620);
2528                 afs_WriteDCache(tdc, 1);
2529                 ReleaseWriteLock(&afs_xdcache);
2530                 touchedit = 1;
2531             }
2532             if (wrLock)
2533                 ReleaseWriteLock(&tdc->lock);
2534         }
2535
2536         afs_PutDCache(tdc);
2537     }
2538
2539     ObtainWriteLock(&afs_xdcache, 617);
2540     if (!touchedit && (cacheDiskType != AFS_FCACHE_TYPE_MEM)) {
2541         /* Touch the file to make sure that the mtime on the file is kept
2542          * up-to-date to avoid losing cached files on cold starts because
2543          * their mtime seems old...
2544          */
2545         struct afs_fheader theader;
2546
2547         theader.magic = AFS_FHMAGIC;
2548         theader.firstCSize = AFS_FIRSTCSIZE;
2549         theader.otherCSize = AFS_OTHERCSIZE;
2550         theader.version = AFS_CI_VERSION;
2551         theader.dataSize = sizeof(struct fcache);
2552         afs_osi_Write(afs_cacheInodep, 0, &theader, sizeof(theader));
2553     }
2554     ReleaseWriteLock(&afs_xdcache);
2555 }
2556
2557 /*
2558  * afs_MemGetDSlot
2559  *
2560  * Description:
2561  *      Return a pointer to an freshly initialized dcache entry using
2562  *      a memory-based cache.  The tlock will be read-locked.
2563  *
2564  * Parameters:
2565  *      aslot : Dcache slot to look at.
2566  *      tmpdc : Ptr to dcache entry.
2567  *
2568  * Environment:
2569  *      Must be called with afs_xdcache write-locked.
2570  */
2571
2572 struct dcache *
2573 afs_MemGetDSlot(register afs_int32 aslot, register struct dcache *tmpdc)
2574 {
2575     register struct dcache *tdc;
2576     int existing = 0;
2577
2578     AFS_STATCNT(afs_MemGetDSlot);
2579     if (CheckLock(&afs_xdcache) != -1)
2580         osi_Panic("getdslot nolock");
2581     if (aslot < 0 || aslot >= afs_cacheFiles)
2582         osi_Panic("getdslot slot %d (of %d)", aslot, afs_cacheFiles);
2583     tdc = afs_indexTable[aslot];
2584     if (tdc) {
2585         QRemove(&tdc->lruq);    /* move to queue head */
2586         QAdd(&afs_DLRU, &tdc->lruq);
2587         /* We're holding afs_xdcache, but get tlock in case refCount != 0 */
2588         ObtainWriteLock(&tdc->tlock, 624);
2589         tdc->refCount++;
2590         ConvertWToRLock(&tdc->tlock);
2591         return tdc;
2592     }
2593     if (tmpdc == NULL) {
2594         if (!afs_freeDSList)
2595             afs_GetDownDSlot(4);
2596         if (!afs_freeDSList) {
2597             /* none free, making one is better than a panic */
2598             afs_stats_cmperf.dcacheXAllocs++;   /* count in case we have a leak */
2599             tdc = (struct dcache *)afs_osi_Alloc(sizeof(struct dcache));
2600 #ifdef  KERNEL_HAVE_PIN
2601             pin((char *)tdc, sizeof(struct dcache));    /* XXX */
2602 #endif
2603         } else {
2604             tdc = afs_freeDSList;
2605             afs_freeDSList = (struct dcache *)tdc->lruq.next;
2606             existing = 1;
2607         }
2608         tdc->dflags = 0;        /* up-to-date, not in free q */
2609         tdc->mflags = 0;
2610         QAdd(&afs_DLRU, &tdc->lruq);
2611         if (tdc->lruq.prev == &tdc->lruq)
2612             osi_Panic("lruq 3");
2613     } else {
2614         tdc = tmpdc;
2615         tdc->f.states = 0;
2616     }
2617
2618     /* initialize entry */
2619     tdc->f.fid.Cell = 0;
2620     tdc->f.fid.Fid.Volume = 0;
2621     tdc->f.chunk = -1;
2622     hones(tdc->f.versionNo);
2623     tdc->f.inode.mem = aslot;
2624     tdc->dflags |= DFEntryMod;
2625     tdc->refCount = 1;
2626     tdc->index = aslot;
2627     afs_indexUnique[aslot] = tdc->f.fid.Fid.Unique;
2628
2629     if (existing) {
2630         osi_Assert(0 == NBObtainWriteLock(&tdc->lock, 674));
2631         osi_Assert(0 == NBObtainWriteLock(&tdc->mflock, 675));
2632         osi_Assert(0 == NBObtainWriteLock(&tdc->tlock, 676));
2633     }
2634
2635     AFS_RWLOCK_INIT(&tdc->lock, "dcache lock");
2636     AFS_RWLOCK_INIT(&tdc->tlock, "dcache tlock");
2637     AFS_RWLOCK_INIT(&tdc->mflock, "dcache flock");
2638     ObtainReadLock(&tdc->tlock);
2639
2640     if (tmpdc == NULL)
2641         afs_indexTable[aslot] = tdc;
2642     return tdc;
2643
2644 }                               /*afs_MemGetDSlot */
2645
2646 unsigned int last_error = 0, lasterrtime = 0;
2647
2648 /*
2649  * afs_UFSGetDSlot
2650  *
2651  * Description:
2652  *      Return a pointer to an freshly initialized dcache entry using
2653  *      a UFS-based disk cache.  The dcache tlock will be read-locked.
2654  *
2655  * Parameters:
2656  *      aslot : Dcache slot to look at.
2657  *      tmpdc : Ptr to dcache entry.
2658  *
2659  * Environment:
2660  *      afs_xdcache lock write-locked.
2661  */
2662 struct dcache *
2663 afs_UFSGetDSlot(register afs_int32 aslot, register struct dcache *tmpdc)
2664 {
2665     register afs_int32 code;
2666     register struct dcache *tdc;
2667     int existing = 0;
2668     int entryok;
2669
2670     AFS_STATCNT(afs_UFSGetDSlot);
2671     if (CheckLock(&afs_xdcache) != -1)
2672         osi_Panic("getdslot nolock");
2673     if (aslot < 0 || aslot >= afs_cacheFiles)
2674         osi_Panic("getdslot slot %d (of %d)", aslot, afs_cacheFiles);
2675     tdc = afs_indexTable[aslot];
2676     if (tdc) {
2677         QRemove(&tdc->lruq);    /* move to queue head */
2678         QAdd(&afs_DLRU, &tdc->lruq);
2679         /* Grab tlock in case refCount != 0 */
2680         ObtainWriteLock(&tdc->tlock, 625);
2681         tdc->refCount++;
2682         ConvertWToRLock(&tdc->tlock);
2683         return tdc;
2684     }
2685     /* otherwise we should read it in from the cache file */
2686     /*
2687      * If we weren't passed an in-memory region to place the file info,
2688      * we have to allocate one.
2689      */
2690     if (tmpdc == NULL) {
2691         if (!afs_freeDSList)
2692             afs_GetDownDSlot(4);
2693         if (!afs_freeDSList) {
2694             /* none free, making one is better than a panic */
2695             afs_stats_cmperf.dcacheXAllocs++;   /* count in case we have a leak */
2696             tdc = (struct dcache *)afs_osi_Alloc(sizeof(struct dcache));
2697 #ifdef  KERNEL_HAVE_PIN
2698             pin((char *)tdc, sizeof(struct dcache));    /* XXX */
2699 #endif
2700         } else {
2701             tdc = afs_freeDSList;
2702             afs_freeDSList = (struct dcache *)tdc->lruq.next;
2703             existing = 1;
2704         }
2705         tdc->dflags = 0;        /* up-to-date, not in free q */
2706         tdc->mflags = 0;
2707         QAdd(&afs_DLRU, &tdc->lruq);
2708         if (tdc->lruq.prev == &tdc->lruq)
2709             osi_Panic("lruq 3");
2710     } else {
2711         tdc = tmpdc;
2712         tdc->f.states = 0;
2713     }
2714
2715     /*
2716      * Seek to the aslot'th entry and read it in.
2717      */
2718     code =
2719         afs_osi_Read(afs_cacheInodep,
2720                      sizeof(struct fcache) * aslot +
2721                      sizeof(struct afs_fheader), (char *)(&tdc->f),
2722                      sizeof(struct fcache));
2723     entryok = 1;
2724     if (code != sizeof(struct fcache))
2725         entryok = 0;
2726     if (!afs_CellNumValid(tdc->f.fid.Cell))
2727         entryok = 0;
2728
2729     if (!entryok) {
2730         tdc->f.fid.Cell = 0;
2731         tdc->f.fid.Fid.Volume = 0;
2732         tdc->f.chunk = -1;
2733         hones(tdc->f.versionNo);
2734         tdc->dflags |= DFEntryMod;
2735 #if defined(KERNEL_HAVE_UERROR)
2736         last_error = getuerror();
2737 #endif
2738         lasterrtime = osi_Time();
2739         afs_indexUnique[aslot] = tdc->f.fid.Fid.Unique;
2740         tdc->f.states &= ~(DRO|DBackup|DRW);
2741         afs_DCMoveBucket(tdc, 0, 0);
2742     } else {
2743         if (&tdc->f != 0) {
2744             if (tdc->f.states & DRO) {
2745                 afs_DCMoveBucket(tdc, 0, 2);
2746             } else if (tdc->f.states & DBackup) {
2747                 afs_DCMoveBucket(tdc, 0, 1);
2748             } else {
2749                 afs_DCMoveBucket(tdc, 0, 1); 
2750             }
2751         } 
2752     }
2753     tdc->refCount = 1;
2754     tdc->index = aslot;
2755     if (tdc->f.chunk >= 0)
2756         tdc->validPos = AFS_CHUNKTOBASE(tdc->f.chunk) + tdc->f.chunkBytes;
2757     else
2758         tdc->validPos = 0;
2759
2760     if (existing) {
2761         osi_Assert(0 == NBObtainWriteLock(&tdc->lock, 674));
2762         osi_Assert(0 == NBObtainWriteLock(&tdc->mflock, 675));
2763         osi_Assert(0 == NBObtainWriteLock(&tdc->tlock, 676));
2764     }
2765
2766     AFS_RWLOCK_INIT(&tdc->lock, "dcache lock");
2767     AFS_RWLOCK_INIT(&tdc->tlock, "dcache tlock");
2768     AFS_RWLOCK_INIT(&tdc->mflock, "dcache flock");
2769     ObtainReadLock(&tdc->tlock);
2770
2771     /*
2772      * If we didn't read into a temporary dcache region, update the
2773      * slot pointer table.
2774      */
2775     if (tmpdc == NULL)
2776         afs_indexTable[aslot] = tdc;
2777     return tdc;
2778
2779 }                               /*afs_UFSGetDSlot */
2780
2781
2782
2783 /*!
2784  * Write a particular dcache entry back to its home in the
2785  * CacheInfo file.
2786  *
2787  * \param adc Pointer to the dcache entry to write.
2788  * \param atime If true, set the modtime on the file to the current time.
2789  *
2790  * \note Environment:
2791  *      Must be called with the afs_xdcache lock at least read-locked,
2792  *      and dcache entry at least read-locked.
2793  *      The reference count is not changed.
2794  */
2795
2796 int
2797 afs_WriteDCache(register struct dcache *adc, int atime)
2798 {
2799     register afs_int32 code;
2800
2801     if (cacheDiskType == AFS_FCACHE_TYPE_MEM)
2802         return 0;
2803     AFS_STATCNT(afs_WriteDCache);
2804     osi_Assert(WriteLocked(&afs_xdcache));
2805     if (atime)
2806         adc->f.modTime = osi_Time();
2807     /*
2808      * Seek to the right dcache slot and write the in-memory image out to disk.
2809      */
2810     afs_cellname_write();
2811     code =
2812         afs_osi_Write(afs_cacheInodep,
2813                       sizeof(struct fcache) * adc->index +
2814                       sizeof(struct afs_fheader), (char *)(&adc->f),
2815                       sizeof(struct fcache));
2816     if (code != sizeof(struct fcache))
2817         return EIO;
2818     return 0;
2819 }
2820
2821
2822
2823 /*!
2824  * Wake up users of a particular file waiting for stores to take
2825  * place.
2826  *
2827  * \param avc Ptr to related vcache entry.
2828  *
2829  * \note Environment:
2830  *      Nothing interesting.
2831  */
2832 int
2833 afs_wakeup(register struct vcache *avc)
2834 {
2835     register int i;
2836     register struct brequest *tb;
2837     tb = afs_brs;
2838     AFS_STATCNT(afs_wakeup);
2839     for (i = 0; i < NBRS; i++, tb++) {
2840         /* if request is valid and for this file, we've found it */
2841         if (tb->refCount > 0 && avc == tb->vc) {
2842
2843             /*
2844              * If CSafeStore is on, then we don't awaken the guy
2845              * waiting for the store until the whole store has finished.
2846              * Otherwise, we do it now.  Note that if CSafeStore is on,
2847              * the BStore routine actually wakes up the user, instead
2848              * of us.
2849              * I think this is redundant now because this sort of thing
2850              * is already being handled by the higher-level code.
2851              */
2852             if ((avc->f.states & CSafeStore) == 0) {
2853                 tb->code = 0;
2854                 tb->flags |= BUVALID;
2855                 if (tb->flags & BUWAIT) {
2856                     tb->flags &= ~BUWAIT;
2857                     afs_osi_Wakeup(tb);
2858                 }
2859             }
2860             break;
2861         }
2862     }
2863     return 0;
2864 }
2865
2866
2867 /*!
2868  * Given a file name and inode, set up that file to be an
2869  * active member in the AFS cache.  This also involves checking
2870  * the usability of its data.
2871  *
2872  * \param afile Name of the cache file to initialize.
2873  * \param ainode Inode of the file.
2874  *
2875  * \note Environment:
2876  *      This function is called only during initialization.
2877  */
2878 int
2879 afs_InitCacheFile(char *afile, ino_t ainode)
2880 {
2881     register afs_int32 code;
2882     afs_int32 index;
2883     int fileIsBad;
2884     struct osi_file *tfile;
2885     struct osi_stat tstat;
2886     register struct dcache *tdc;
2887
2888     AFS_STATCNT(afs_InitCacheFile);
2889     index = afs_stats_cmperf.cacheNumEntries;
2890     if (index >= afs_cacheFiles)
2891         return EINVAL;
2892
2893     ObtainWriteLock(&afs_xdcache, 282);
2894     tdc = afs_GetDSlot(index, NULL);
2895     ReleaseReadLock(&tdc->tlock);
2896     ReleaseWriteLock(&afs_xdcache);
2897
2898     ObtainWriteLock(&tdc->lock, 621);
2899     ObtainWriteLock(&afs_xdcache, 622);
2900     if (afile) {
2901         code = afs_LookupInodeByPath(afile, &tdc->f.inode.ufs, NULL);
2902         if (code) {
2903             ReleaseWriteLock(&afs_xdcache);
2904             ReleaseWriteLock(&tdc->lock);
2905             afs_PutDCache(tdc);
2906             return code;
2907         }
2908     } else {
2909         /* Add any other 'complex' inode types here ... */
2910 #if !defined(AFS_LINUX26_ENV) && !defined(AFS_CACHE_VNODE_PATH)
2911         tdc->f.inode.ufs = ainode;
2912 #else
2913         osi_Panic("Can't init cache with inode numbers when complex inodes are "
2914                   "in use\n");
2915 #endif
2916     }
2917     fileIsBad = 0;
2918     if ((tdc->f.states & DWriting) || tdc->f.fid.Fid.Volume == 0)
2919         fileIsBad = 1;
2920     tfile = osi_UFSOpen(&tdc->f.inode);
2921     code = afs_osi_Stat(tfile, &tstat);
2922     if (code)
2923         osi_Panic("initcachefile stat");
2924
2925     /*
2926      * If file size doesn't match the cache info file, it's probably bad.
2927      */
2928     if (tdc->f.chunkBytes != tstat.size)
2929         fileIsBad = 1;
2930     tdc->f.chunkBytes = 0;
2931
2932     /*
2933      * If file changed within T (120?) seconds of cache info file, it's
2934      * probably bad.  In addition, if slot changed within last T seconds,
2935      * the cache info file may be incorrectly identified, and so slot
2936      * may be bad.
2937      */
2938     if (cacheInfoModTime < tstat.mtime + 120)
2939         fileIsBad = 1;
2940     if (cacheInfoModTime < tdc->f.modTime + 120)
2941         fileIsBad = 1;
2942     /* In case write through is behind, make sure cache items entry is
2943      * at least as new as the chunk.
2944      */
2945     if (tdc->f.modTime < tstat.mtime)
2946         fileIsBad = 1;
2947     if (fileIsBad) {
2948         tdc->f.fid.Fid.Volume = 0;      /* not in the hash table */
2949         if (tstat.size != 0)
2950             osi_UFSTruncate(tfile, 0);
2951         tdc->f.states &= ~(DRO|DBackup|DRW);
2952         afs_DCMoveBucket(tdc, 0, 0);
2953         /* put entry in free cache slot list */
2954         afs_dvnextTbl[tdc->index] = afs_freeDCList;
2955         afs_freeDCList = index;
2956         afs_freeDCCount++;
2957         afs_indexFlags[index] |= IFFree;
2958         afs_indexUnique[index] = 0;
2959     } else {
2960         /*
2961          * We must put this entry in the appropriate hash tables.
2962          * Note that i is still set from the above DCHash call
2963          */
2964         code = DCHash(&tdc->f.fid, tdc->f.chunk);
2965         afs_dcnextTbl[tdc->index] = afs_dchashTbl[code];
2966         afs_dchashTbl[code] = tdc->index;
2967         code = DVHash(&tdc->f.fid);
2968         afs_dvnextTbl[tdc->index] = afs_dvhashTbl[code];
2969         afs_dvhashTbl[code] = tdc->index;
2970         afs_AdjustSize(tdc, tstat.size);        /* adjust to new size */
2971         if (tstat.size > 0)
2972             /* has nontrivial amt of data */
2973             afs_indexFlags[index] |= IFEverUsed;
2974         afs_stats_cmperf.cacheFilesReused++;
2975         /*
2976          * Initialize index times to file's mod times; init indexCounter
2977          * to max thereof
2978          */
2979         hset32(afs_indexTimes[index], tstat.atime);
2980         if (hgetlo(afs_indexCounter) < tstat.atime) {
2981             hset32(afs_indexCounter, tstat.atime);
2982         }
2983         afs_indexUnique[index] = tdc->f.fid.Fid.Unique;
2984     }                           /*File is not bad */
2985
2986     osi_UFSClose(tfile);
2987     tdc->f.states &= ~DWriting;
2988     tdc->dflags &= ~DFEntryMod;
2989     /* don't set f.modTime; we're just cleaning up */
2990     afs_WriteDCache(tdc, 0);
2991     ReleaseWriteLock(&afs_xdcache);
2992     ReleaseWriteLock(&tdc->lock);
2993     afs_PutDCache(tdc);
2994     afs_stats_cmperf.cacheNumEntries++;
2995     return 0;
2996 }
2997
2998
2999 /*Max # of struct dcache's resident at any time*/
3000 /*
3001  * If 'dchint' is enabled then in-memory dcache min is increased because of
3002  * crashes...
3003  */
3004 #define DDSIZE 200
3005
3006 /*!
3007  * Initialize dcache related variables.
3008  *
3009  * \param afiles
3010  * \param ablocks 
3011  * \param aDentries
3012  * \param achunk
3013  * \param aflags
3014  *
3015  */
3016 void
3017 afs_dcacheInit(int afiles, int ablocks, int aDentries, int achunk, int aflags)
3018 {
3019     register struct dcache *tdp;
3020     int i;
3021     int code;
3022
3023     afs_freeDCList = NULLIDX;
3024     afs_discardDCList = NULLIDX;
3025     afs_freeDCCount = 0;
3026     afs_freeDSList = NULL;
3027     hzero(afs_indexCounter);
3028
3029     LOCK_INIT(&afs_xdcache, "afs_xdcache");
3030
3031     /*
3032      * Set chunk size
3033      */
3034     if (achunk) {
3035         if (achunk < 0 || achunk > 30)
3036             achunk = 13;        /* Use default */
3037         AFS_SETCHUNKSIZE(achunk);
3038     }
3039
3040     if (!aDentries)
3041         aDentries = DDSIZE;
3042
3043     if (aflags & AFSCALL_INIT_MEMCACHE) {
3044         /*
3045          * Use a memory cache instead of a disk cache
3046          */
3047         cacheDiskType = AFS_FCACHE_TYPE_MEM;
3048         afs_cacheType = &afs_MemCacheOps;
3049         afiles = (afiles < aDentries) ? afiles : aDentries;     /* min */
3050         ablocks = afiles * (AFS_FIRSTCSIZE / 1024);
3051         /* ablocks is reported in 1K blocks */
3052         code = afs_InitMemCache(afiles, AFS_FIRSTCSIZE, aflags);
3053         if (code != 0) {
3054             afs_warn("afsd: memory cache too large for available memory.\n");
3055             afs_warn("afsd: AFS files cannot be accessed.\n\n");
3056             dcacheDisabled = 1;
3057             afiles = ablocks = 0;
3058         } else
3059             afs_warn("Memory cache: Allocating %d dcache entries...",
3060                    aDentries);
3061     } else {
3062         cacheDiskType = AFS_FCACHE_TYPE_UFS;
3063         afs_cacheType = &afs_UfsCacheOps;
3064     }
3065
3066     if (aDentries > 512)
3067         afs_dhashsize = 2048;
3068     /* initialize hash tables */
3069     afs_dvhashTbl =
3070         (afs_int32 *) afs_osi_Alloc(afs_dhashsize * sizeof(afs_int32));
3071     afs_dchashTbl =
3072         (afs_int32 *) afs_osi_Alloc(afs_dhashsize * sizeof(afs_int32));
3073     for (i = 0; i < afs_dhashsize; i++) {
3074         afs_dvhashTbl[i] = NULLIDX;
3075         afs_dchashTbl[i] = NULLIDX;
3076     }
3077     afs_dvnextTbl = (afs_int32 *) afs_osi_Alloc(afiles * sizeof(afs_int32));
3078     afs_dcnextTbl = (afs_int32 *) afs_osi_Alloc(afiles * sizeof(afs_int32));
3079     for (i = 0; i < afiles; i++) {
3080         afs_dvnextTbl[i] = NULLIDX;
3081         afs_dcnextTbl[i] = NULLIDX;
3082     }
3083
3084     /* Allocate and zero the pointer array to the dcache entries */
3085     afs_indexTable = (struct dcache **)
3086         afs_osi_Alloc(sizeof(struct dcache *) * afiles);
3087     memset(afs_indexTable, 0, sizeof(struct dcache *) * afiles);
3088     afs_indexTimes =
3089         (afs_hyper_t *) afs_osi_Alloc(afiles * sizeof(afs_hyper_t));
3090     memset(afs_indexTimes, 0, afiles * sizeof(afs_hyper_t));
3091     afs_indexUnique =
3092         (afs_int32 *) afs_osi_Alloc(afiles * sizeof(afs_uint32));
3093     memset(afs_indexUnique, 0, afiles * sizeof(afs_uint32));
3094     afs_indexFlags = (u_char *) afs_osi_Alloc(afiles * sizeof(u_char));
3095     memset(afs_indexFlags, 0, afiles * sizeof(char));
3096
3097     /* Allocate and thread the struct dcache entries themselves */
3098     tdp = afs_Initial_freeDSList =
3099         (struct dcache *)afs_osi_Alloc(aDentries * sizeof(struct dcache));
3100     memset(tdp, 0, aDentries * sizeof(struct dcache));
3101 #ifdef  KERNEL_HAVE_PIN
3102     pin((char *)afs_indexTable, sizeof(struct dcache *) * afiles);      /* XXX */
3103     pin((char *)afs_indexTimes, sizeof(afs_hyper_t) * afiles);  /* XXX */
3104     pin((char *)afs_indexFlags, sizeof(char) * afiles); /* XXX */
3105     pin((char *)afs_indexUnique, sizeof(afs_int32) * afiles);   /* XXX */
3106     pin((char *)tdp, aDentries * sizeof(struct dcache));        /* XXX */
3107     pin((char *)afs_dvhashTbl, sizeof(afs_int32) * afs_dhashsize);      /* XXX */
3108     pin((char *)afs_dchashTbl, sizeof(afs_int32) * afs_dhashsize);      /* XXX */
3109     pin((char *)afs_dcnextTbl, sizeof(afs_int32) * afiles);     /* XXX */
3110     pin((char *)afs_dvnextTbl, sizeof(afs_int32) * afiles);     /* XXX */
3111 #endif
3112
3113     afs_freeDSList = &tdp[0];
3114     for (i = 0; i < aDentries - 1; i++) {
3115         tdp[i].lruq.next = (struct afs_q *)(&tdp[i + 1]);
3116         AFS_RWLOCK_INIT(&tdp[i].lock, "dcache lock");
3117         AFS_RWLOCK_INIT(&tdp[i].tlock, "dcache tlock");
3118         AFS_RWLOCK_INIT(&tdp[i].mflock, "dcache flock");
3119     }
3120     tdp[aDentries - 1].lruq.next = (struct afs_q *)0;
3121     AFS_RWLOCK_INIT(&tdp[aDentries - 1].lock, "dcache lock");
3122     AFS_RWLOCK_INIT(&tdp[aDentries - 1].tlock, "dcache tlock");
3123     AFS_RWLOCK_INIT(&tdp[aDentries - 1].mflock, "dcache flock");
3124
3125     afs_stats_cmperf.cacheBlocksOrig = afs_stats_cmperf.cacheBlocksTotal =
3126         afs_cacheBlocks = ablocks;
3127     afs_ComputeCacheParms();    /* compute parms based on cache size */
3128
3129     afs_dcentries = aDentries;
3130     afs_blocksUsed = 0;
3131     afs_stats_cmperf.cacheBucket0_Discarded = 
3132         afs_stats_cmperf.cacheBucket1_Discarded = 
3133         afs_stats_cmperf.cacheBucket2_Discarded = 0;
3134     afs_DCSizeInit();
3135     QInit(&afs_DLRU);
3136 }
3137
3138 /*!
3139  * Shuts down the cache.
3140  *
3141  */
3142 void
3143 shutdown_dcache(void)
3144 {
3145     int i;
3146
3147 #ifdef AFS_CACHE_VNODE_PATH
3148     if (cacheDiskType != AFS_FCACHE_TYPE_MEM) {
3149         struct dcache *tdc;
3150         for (i = 0; i < afs_cacheFiles; i++) {
3151             tdc = afs_indexTable[i];
3152             if (tdc) {
3153                 afs_osi_FreeStr(tdc->f.inode.ufs);
3154             }
3155         }
3156     }
3157 #endif
3158
3159     afs_osi_Free(afs_dvnextTbl, afs_cacheFiles * sizeof(afs_int32));
3160     afs_osi_Free(afs_dcnextTbl, afs_cacheFiles * sizeof(afs_int32));
3161     afs_osi_Free(afs_indexTable, afs_cacheFiles * sizeof(struct dcache *));
3162     afs_osi_Free(afs_indexTimes, afs_cacheFiles * sizeof(afs_hyper_t));
3163     afs_osi_Free(afs_indexUnique, afs_cacheFiles * sizeof(afs_uint32));
3164     afs_osi_Free(afs_indexFlags, afs_cacheFiles * sizeof(u_char));
3165     afs_osi_Free(afs_Initial_freeDSList,
3166                  afs_dcentries * sizeof(struct dcache));
3167 #ifdef  KERNEL_HAVE_PIN
3168     unpin((char *)afs_dcnextTbl, afs_cacheFiles * sizeof(afs_int32));
3169     unpin((char *)afs_dvnextTbl, afs_cacheFiles * sizeof(afs_int32));
3170     unpin((char *)afs_indexTable, afs_cacheFiles * sizeof(struct dcache *));
3171     unpin((char *)afs_indexTimes, afs_cacheFiles * sizeof(afs_hyper_t));
3172     unpin((char *)afs_indexUnique, afs_cacheFiles * sizeof(afs_uint32));
3173     unpin((u_char *) afs_indexFlags, afs_cacheFiles * sizeof(u_char));
3174     unpin(afs_Initial_freeDSList, afs_dcentries * sizeof(struct dcache));
3175 #endif
3176
3177
3178     for (i = 0; i < afs_dhashsize; i++) {
3179         afs_dvhashTbl[i] = NULLIDX;
3180         afs_dchashTbl[i] = NULLIDX;
3181     }
3182
3183     afs_osi_Free(afs_dvhashTbl, afs_dhashsize * sizeof(afs_int32));
3184     afs_osi_Free(afs_dchashTbl, afs_dhashsize * sizeof(afs_int32));
3185
3186     afs_blocksUsed = afs_dcentries = 0;
3187     afs_stats_cmperf.cacheBucket0_Discarded = 
3188         afs_stats_cmperf.cacheBucket1_Discarded = 
3189         afs_stats_cmperf.cacheBucket2_Discarded = 0;
3190     hzero(afs_indexCounter);
3191
3192     afs_freeDCCount = 0;
3193     afs_freeDCList = NULLIDX;
3194     afs_discardDCList = NULLIDX;
3195     afs_freeDSList = afs_Initial_freeDSList = 0;
3196
3197     LOCK_INIT(&afs_xdcache, "afs_xdcache");
3198     QInit(&afs_DLRU);
3199
3200 }
3201
3202 /*!
3203  * Get a dcache ready for writing, respecting the current cache size limits
3204  *
3205  * len is required because afs_GetDCache with flag == 4 expects the length 
3206  * field to be filled. It decides from this whether it's necessary to fetch 
3207  * data into the chunk before writing or not (when the whole chunk is 
3208  * overwritten!).
3209  *
3210  * \param avc           The vcache to fetch a dcache for
3211  * \param filePos       The start of the section to be written
3212  * \param len           The length of the section to be written
3213  * \param areq
3214  * \param noLock
3215  *
3216  * \return If successful, a reference counted dcache with tdc->lock held. Lock
3217  *         must be released and afs_PutDCache() called to free dcache. 
3218  *         NULL on  failure
3219  *
3220  * \note avc->lock must be held on entry. Function may release and reobtain 
3221  *       avc->lock and GLOCK.
3222  */
3223
3224 struct dcache *
3225 afs_ObtainDCacheForWriting(struct vcache *avc, afs_size_t filePos, 
3226                            afs_size_t len, struct vrequest *areq,
3227                            int noLock)
3228 {
3229     struct dcache *tdc = NULL;
3230     afs_size_t offset;
3231
3232     /* read the cached info */
3233     if (noLock) {
3234         tdc = afs_FindDCache(avc, filePos);
3235         if (tdc)
3236             ObtainWriteLock(&tdc->lock, 657);
3237     } else if (afs_blocksUsed >
3238                PERCENT(CM_WAITFORDRAINPCT, afs_cacheBlocks)) {
3239         tdc = afs_FindDCache(avc, filePos);
3240         if (tdc) {
3241             ObtainWriteLock(&tdc->lock, 658);
3242             if (!hsame(tdc->f.versionNo, avc->f.m.DataVersion)
3243                 || (tdc->dflags & DFFetching)) {
3244                 ReleaseWriteLock(&tdc->lock);
3245                 afs_PutDCache(tdc);
3246                 tdc = NULL;
3247             }
3248         }
3249         if (!tdc) {
3250             afs_MaybeWakeupTruncateDaemon();
3251             while (afs_blocksUsed >
3252                    PERCENT(CM_WAITFORDRAINPCT, afs_cacheBlocks)) {
3253                 ReleaseWriteLock(&avc->lock);
3254                 if (afs_blocksUsed - afs_blocksDiscarded >
3255                     PERCENT(CM_WAITFORDRAINPCT, afs_cacheBlocks)) {
3256                     afs_WaitForCacheDrain = 1;
3257                     afs_osi_Sleep(&afs_WaitForCacheDrain);
3258                 }
3259                 afs_MaybeFreeDiscardedDCache();
3260                 afs_MaybeWakeupTruncateDaemon();
3261                 ObtainWriteLock(&avc->lock, 509);
3262             }
3263             avc->f.states |= CDirty;
3264             tdc = afs_GetDCache(avc, filePos, areq, &offset, &len, 4);
3265             if (tdc)
3266                 ObtainWriteLock(&tdc->lock, 659);
3267         }
3268     } else {
3269         tdc = afs_GetDCache(avc, filePos, areq, &offset, &len, 4);
3270         if (tdc)
3271             ObtainWriteLock(&tdc->lock, 660);
3272     }
3273     if (tdc) {
3274         if (!(afs_indexFlags[tdc->index] & IFDataMod)) {
3275             afs_stats_cmperf.cacheCurrDirtyChunks++;
3276             afs_indexFlags[tdc->index] |= IFDataMod;    /* so it doesn't disappear */
3277         }
3278         if (!(tdc->f.states & DWriting)) {
3279             /* don't mark entry as mod if we don't have to */
3280             tdc->f.states |= DWriting;
3281             tdc->dflags |= DFEntryMod;
3282         }
3283     }
3284     return tdc;
3285 }
3286
3287 /*!
3288  * Make a shadow copy of a dir's dcache. It's used for disconnected
3289  * operations like remove/create/rename to keep the original directory data.
3290  * On reconnection, we can diff the original data with the server and get the
3291  * server changes and with the local data to get the local changes.
3292  *
3293  * \param avc The dir vnode.
3294  * \param adc The dir dcache.
3295  *
3296  * \return 0 for success.
3297  *
3298  * \note The vcache entry must be write locked.
3299  * \note The dcache entry must be read locked.
3300  */
3301 int
3302 afs_MakeShadowDir(struct vcache *avc, struct dcache *adc)
3303 {
3304     int i, code, ret_code = 0, written, trans_size;
3305     struct dcache *new_dc = NULL;
3306     struct osi_file *tfile_src, *tfile_dst;
3307     struct VenusFid shadow_fid;
3308     char *data;
3309
3310     /* Is this a dir? */
3311     if (vType(avc) != VDIR)
3312         return ENOTDIR;
3313
3314     if (avc->f.shadow.vnode || avc->f.shadow.unique)
3315         return EEXIST;
3316
3317     /* Generate a fid for the shadow dir. */
3318     shadow_fid.Cell = avc->f.fid.Cell;
3319     shadow_fid.Fid.Volume = avc->f.fid.Fid.Volume;
3320     afs_GenShadowFid(&shadow_fid);
3321
3322     ObtainWriteLock(&afs_xdcache, 716);
3323
3324     /* Get a fresh dcache. */
3325     new_dc = afs_AllocDCache(avc, 0, 0, &shadow_fid);
3326
3327     ObtainReadLock(&adc->mflock);
3328
3329     /* Set up the new fid. */
3330     /* Copy interesting data from original dir dcache. */
3331     new_dc->mflags = adc->mflags;
3332     new_dc->dflags = adc->dflags;
3333     new_dc->f.modTime = adc->f.modTime;
3334     new_dc->f.versionNo = adc->f.versionNo;
3335     new_dc->f.states = adc->f.states;
3336     new_dc->f.chunk= adc->f.chunk;
3337     new_dc->f.chunkBytes = adc->f.chunkBytes;
3338
3339     ReleaseReadLock(&adc->mflock);
3340     
3341     /* Now add to the two hash chains */
3342     i = DCHash(&shadow_fid, 0);
3343     afs_dcnextTbl[new_dc->index] = afs_dchashTbl[i];
3344     afs_dchashTbl[i] = new_dc->index;
3345
3346     i = DVHash(&shadow_fid);
3347     afs_dvnextTbl[new_dc->index] = afs_dvhashTbl[i];
3348     afs_dvhashTbl[i] = new_dc->index;
3349
3350     ReleaseWriteLock(&afs_xdcache);
3351
3352     /* Alloc a 4k block. */
3353     data = (char *) afs_osi_Alloc(4096);
3354     if (!data) {
3355         afs_warn("afs_MakeShadowDir: could not alloc data\n");
3356         ret_code = ENOMEM;
3357         goto done;
3358     }
3359
3360     /* Open the files. */
3361     tfile_src = afs_CFileOpen(&adc->f.inode);
3362     tfile_dst = afs_CFileOpen(&new_dc->f.inode);
3363
3364     /* And now copy dir dcache data into this dcache,
3365      * 4k at a time.
3366      */
3367     written = 0;
3368     while (written < adc->f.chunkBytes) {
3369         trans_size = adc->f.chunkBytes - written;
3370         if (trans_size > 4096)
3371             trans_size = 4096;
3372
3373         /* Read a chunk from the dcache. */
3374         code = afs_CFileRead(tfile_src, written, data, trans_size);
3375         if (code < trans_size) {
3376             ret_code = EIO;
3377             break;
3378         }
3379
3380         /* Write it to the new dcache. */
3381         code = afs_CFileWrite(tfile_dst, written, data, trans_size);
3382         if (code < trans_size) {
3383             ret_code = EIO;
3384             break;
3385         }
3386
3387         written+=trans_size;
3388     }
3389
3390     afs_CFileClose(tfile_dst);
3391     afs_CFileClose(tfile_src);
3392
3393     afs_osi_Free(data, 4096);
3394
3395     ReleaseWriteLock(&new_dc->lock);
3396     afs_PutDCache(new_dc);
3397
3398     if (!ret_code) {
3399         ObtainWriteLock(&afs_xvcache, 763);
3400         ObtainWriteLock(&afs_disconDirtyLock, 765);
3401         QAdd(&afs_disconShadow, &avc->shadowq);
3402         osi_Assert((afs_RefVCache(avc) == 0));
3403         ReleaseWriteLock(&afs_disconDirtyLock);
3404         ReleaseWriteLock(&afs_xvcache);
3405
3406         avc->f.shadow.vnode = shadow_fid.Fid.Vnode;
3407         avc->f.shadow.unique = shadow_fid.Fid.Unique;
3408     }
3409
3410 done:
3411     return ret_code;
3412 }
3413
3414 /*!
3415  * Delete the dcaches of a shadow dir.
3416  *
3417  * \param avc The vcache containing the shadow fid.
3418  *
3419  * \note avc must be write locked.
3420  */
3421 void
3422 afs_DeleteShadowDir(struct vcache *avc)
3423 {
3424     struct dcache *tdc;
3425     struct VenusFid shadow_fid;
3426
3427     shadow_fid.Cell = avc->f.fid.Cell;
3428     shadow_fid.Fid.Volume = avc->f.fid.Fid.Volume;
3429     shadow_fid.Fid.Vnode = avc->f.shadow.vnode;
3430     shadow_fid.Fid.Unique = avc->f.shadow.unique;
3431
3432     tdc = afs_FindDCacheByFid(&shadow_fid);
3433     if (tdc) {
3434         afs_HashOutDCache(tdc, 1);
3435         afs_DiscardDCache(tdc);
3436         afs_PutDCache(tdc);
3437     }
3438     avc->f.shadow.vnode = avc->f.shadow.unique = 0;
3439     ObtainWriteLock(&afs_disconDirtyLock, 708);
3440     QRemove(&avc->shadowq);
3441     ReleaseWriteLock(&afs_disconDirtyLock);
3442     afs_PutVCache(avc); /* Because we held it when we added to the queue */
3443 }
3444
3445 /*!
3446  * Populate a dcache with empty chunks up to a given file size,
3447  * used before extending a file in order to avoid 'holes' which
3448  * we can't access in disconnected mode.
3449  *
3450  * \param avc   The vcache which is being extended (locked)
3451  * \param alen  The new length of the file
3452  *
3453  */
3454 void 
3455 afs_PopulateDCache(struct vcache *avc, afs_size_t apos, struct vrequest *areq)
3456 {
3457     struct dcache *tdc;
3458     afs_size_t len, offset;
3459     afs_int32 start, end;
3460
3461     /* We're doing this to deal with the situation where we extend
3462      * by writing after lseek()ing past the end of the file . If that 
3463      * extension skips chunks, then those chunks won't be created, and 
3464      * GetDCache will assume that they have to be fetched from the server. 
3465      * So, for each chunk between the current file position, and the new 
3466      * length we GetDCache for that chunk.
3467      */
3468
3469     if (AFS_CHUNK(apos) == 0 || apos <= avc->f.m.Length) 
3470         return;
3471
3472     if (avc->f.m.Length == 0)
3473         start = 0;
3474     else 
3475         start = AFS_CHUNK(avc->f.m.Length)+1;
3476
3477     end = AFS_CHUNK(apos);
3478
3479     while (start<end) {
3480         len = AFS_CHUNKTOSIZE(start);
3481         tdc = afs_GetDCache(avc, AFS_CHUNKTOBASE(start), areq, &offset, &len, 4);
3482         if (tdc)
3483             afs_PutDCache(tdc);
3484         start++;
3485     }
3486 }