1f7361d92af703d144ab1c44474e17f37b623312
[openafs.git] / src / WINNT / afsd / cm_buf.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 /* Copyright (C) 1994 Cazamar Systems, Inc. */
11
12 #include <afs/param.h>
13 #include <afs/stds.h>
14
15 #include <windows.h>
16 #include <osi.h>
17 #include <stdio.h>
18 #include <assert.h>
19 #include <strsafe.h>
20 #include <math.h>
21
22 #include "afsd.h"
23 #include "cm_memmap.h"
24
25 #ifdef DEBUG
26 #define TRACE_BUFFER 1
27 #endif
28
29 extern void afsi_log(char *pattern, ...);
30
31 /* This module implements the buffer package used by the local transaction
32  * system (cm).  It is initialized by calling cm_Init, which calls buf_Init;
33  * it must be initalized before any of its main routines are called.
34  *
35  * Each buffer is hashed into a hash table by file ID and offset, and if its
36  * reference count is zero, it is also in a free list.
37  *
38  * There are two locks involved in buffer processing.  The global lock
39  * buf_globalLock protects all of the global variables defined in this module,
40  * the reference counts and hash pointers in the actual cm_buf_t structures,
41  * and the LRU queue pointers in the buffer structures.
42  *
43  * The mutexes in the buffer structures protect the remaining fields in the
44  * buffers, as well the data itself.
45  * 
46  * The locking hierarchy here is this:
47  * 
48  * - resv multiple simul. buffers reservation
49  * - lock buffer I/O flags
50  * - lock buffer's mutex
51  * - lock buf_globalLock
52  *
53  */
54
55 /* global debugging log */
56 osi_log_t *buf_logp = NULL;
57
58 /* Global lock protecting hash tables and free lists */
59 osi_rwlock_t buf_globalLock;
60
61 /* ptr to head of the free list (most recently used) and the
62  * tail (the guy to remove first).  We use osi_Q* functions
63  * to put stuff in buf_freeListp, and maintain the end
64  * pointer manually
65  */
66
67 /* a pointer to a list of all buffers, just so that we can find them
68  * easily for debugging, and for the incr syncer.  Locked under
69  * the global lock.
70  */
71
72 /* defaults setup; these variables may be manually assigned into
73  * before calling cm_Init, as a way of changing these defaults.
74  */
75
76 /* callouts for reading and writing data, etc */
77 cm_buf_ops_t *cm_buf_opsp;
78
79 #ifdef DISKCACHE95
80 /* for experimental disk caching support in Win95 client */
81 cm_buf_t *buf_diskFreeListp;
82 cm_buf_t *buf_diskFreeListEndp;
83 cm_buf_t *buf_diskAllp;
84 extern int cm_diskCacheEnabled;
85 #endif /* DISKCACHE95 */
86
87 /* set this to 1 when we are terminating to prevent access attempts */
88 static int buf_ShutdownFlag = 0;
89
90 void buf_HoldLocked(cm_buf_t *bp)
91 {
92     osi_assert(bp->magic == CM_BUF_MAGIC);
93     bp->refCount++;
94 }
95
96 /* hold a reference to an already held buffer */
97 void buf_Hold(cm_buf_t *bp)
98 {
99     lock_ObtainWrite(&buf_globalLock);
100     buf_HoldLocked(bp);
101     lock_ReleaseWrite(&buf_globalLock);
102 }
103
104 /* code to drop reference count while holding buf_globalLock */
105 void buf_ReleaseLocked(cm_buf_t *bp)
106 {
107     /* ensure that we're in the LRU queue if our ref count is 0 */
108     osi_assert(bp->magic == CM_BUF_MAGIC);
109 #ifdef DEBUG
110     if (bp->refCount == 0)
111         osi_panic("buf refcount 0",__FILE__,__LINE__);;
112 #else
113     osi_assert(bp->refCount > 0);
114 #endif
115     if (--bp->refCount == 0) {
116         if (!(bp->flags & CM_BUF_INLRU)) {
117             osi_QAdd((osi_queue_t **) &cm_data.buf_freeListp, &bp->q);
118
119             /* watch for transition from empty to one element */
120             if (!cm_data.buf_freeListEndp)
121                 cm_data.buf_freeListEndp = cm_data.buf_freeListp;
122             bp->flags |= CM_BUF_INLRU;
123         }
124     }
125 }       
126
127 /* release a buffer.  Buffer must be referenced, but unlocked. */
128 void buf_Release(cm_buf_t *bp)
129 {
130     lock_ObtainWrite(&buf_globalLock);
131     buf_ReleaseLocked(bp);
132     lock_ReleaseWrite(&buf_globalLock);
133 }
134
135 /* incremental sync daemon.  Writes all dirty buffers every 5000 ms */
136 void buf_IncrSyncer(long parm)
137 {
138     cm_buf_t **bpp, *bp;
139     long i;                             /* counter */
140     long wasDirty = 0;
141     cm_req_t req;
142
143     while (buf_ShutdownFlag == 0) {
144         if (!wasDirty) {
145             i = SleepEx(5000, 1);
146             if (i != 0) continue;
147         }
148
149         wasDirty = 0;
150
151         /* now go through our percentage of the buffers */
152         for (bpp = &cm_data.buf_dirtyListp; bp = *bpp; ) {
153
154             /* all dirty buffers are held when they are added to the
155              * dirty list.  No need for an additional hold.
156              */
157
158             if (bp->flags & CM_BUF_DIRTY) {
159                 /* start cleaning the buffer; don't touch log pages since
160                  * the log code counts on knowing exactly who is writing
161                  * a log page at any given instant.
162                  */
163                 cm_InitReq(&req);
164                 req.flags |= CM_REQ_NORETRY;
165                 wasDirty |= buf_CleanAsync(bp, &req);
166             }
167
168             /* the buffer may or may not have been dirty
169              * and if dirty may or may not have been cleaned
170              * successfully.  check the dirty flag again.  
171              */
172             if (!(bp->flags & CM_BUF_DIRTY)) {
173                 lock_ObtainMutex(&bp->mx);
174                 if (!(bp->flags & CM_BUF_DIRTY)) {
175                     /* remove the buffer from the dirty list */
176                     lock_ObtainWrite(&buf_globalLock);
177                     *bpp = bp->dirtyp;
178                     bp->dirtyp = NULL;
179                     if (cm_data.buf_dirtyListp == NULL)
180                         cm_data.buf_dirtyListEndp = NULL;
181                     buf_ReleaseLocked(bp);
182                     lock_ReleaseWrite(&buf_globalLock);
183                 } else {
184                     /* advance the pointer so we don't loop forever */
185                     bpp = &bp->dirtyp;
186                 }
187                 lock_ReleaseMutex(&bp->mx);
188             } else {
189                 /* advance the pointer so we don't loop forever */
190                 bpp = &bp->dirtyp;
191             }
192         }       /* for loop over a bunch of buffers */
193     }           /* whole daemon's while loop */
194 }
195
196 long
197 buf_ValidateBuffers(void)
198 {
199     cm_buf_t * bp, *bpf, *bpa, *bpb;
200     afs_uint64 countb = 0, countf = 0, counta = 0;
201
202     if (cm_data.buf_freeListp == NULL && cm_data.buf_freeListEndp != NULL ||
203          cm_data.buf_freeListp != NULL && cm_data.buf_freeListEndp == NULL) {
204         afsi_log("cm_ValidateBuffers failure: inconsistent free list pointers");
205         fprintf(stderr, "cm_ValidateBuffers failure: inconsistent free list pointers\n");
206         return -9;                  
207     }
208
209     for (bp = cm_data.buf_freeListEndp; bp; bp=(cm_buf_t *) osi_QPrev(&bp->q)) { 
210         if (bp->magic != CM_BUF_MAGIC) {
211             afsi_log("cm_ValidateBuffers failure: bp->magic != CM_BUF_MAGIC");
212             fprintf(stderr, "cm_ValidateBuffers failure: bp->magic != CM_BUF_MAGIC\n");
213             return -1;                  
214         }
215         countb++;                                                                
216         bpb = bp;     
217
218         if (countb > cm_data.buf_nbuffers) {
219             afsi_log("cm_ValidateBuffers failure: countb > cm_data.buf_nbuffers");
220             fprintf(stderr, "cm_ValidateBuffers failure: countb > cm_data.buf_nbuffers\n");
221             return -6;                   
222         }
223     }
224
225     for (bp = cm_data.buf_freeListp; bp; bp=(cm_buf_t *) osi_QNext(&bp->q)) { 
226         if (bp->magic != CM_BUF_MAGIC) {
227             afsi_log("cm_ValidateBuffers failure: bp->magic != CM_BUF_MAGIC");
228             fprintf(stderr, "cm_ValidateBuffers failure: bp->magic != CM_BUF_MAGIC\n");
229             return -2;                  
230         }
231         countf++;                                                             
232         bpf = bp;    
233
234         if (countf > cm_data.buf_nbuffers) {
235             afsi_log("cm_ValidateBuffers failure: countf > cm_data.buf_nbuffers");
236             fprintf(stderr, "cm_ValidateBuffers failure: countf > cm_data.buf_nbuffers\n");
237             return -7;
238         }
239     }                                                                         
240                                                                               
241     for (bp = cm_data.buf_allp; bp; bp=bp->allp) {                            
242         if (bp->magic != CM_BUF_MAGIC) {
243             afsi_log("cm_ValidateBuffers failure: bp->magic != CM_BUF_MAGIC");
244             fprintf(stderr, "cm_ValidateBuffers failure: bp->magic != CM_BUF_MAGIC\n");
245             return -3;                  
246         }
247         counta++;                                                             
248         bpa = bp;                                                             
249
250         if (counta > cm_data.buf_nbuffers) {
251             afsi_log("cm_ValidateBuffers failure: counta > cm_data.buf_nbuffers");
252             fprintf(stderr, "cm_ValidateBuffers failure: counta > cm_data.buf_nbuffers\n");
253             return -8;                   
254         }
255     }                                                                         
256                                                                               
257     if (countb != countf) {
258         afsi_log("cm_ValidateBuffers failure: countb != countf");
259         fprintf(stderr, "cm_ValidateBuffers failure: countb != countf\n");
260         return -4;         
261     }
262                                                                               
263     if (counta != cm_data.buf_nbuffers) {
264         afsi_log("cm_ValidateBuffers failure: counta != cm_data.buf_nbuffers");
265         fprintf(stderr, "cm_ValidateBuffers failure: counta != cm_data.buf_nbuffers\n");
266         return -5;                       
267     }
268                                                                               
269     return 0;                                                                 
270 }
271
272 void buf_Shutdown(void)  
273 {                        
274     buf_ShutdownFlag = 1;
275 }                        
276
277 /* initialize the buffer package; called with no locks
278  * held during the initialization phase.
279  */
280 long buf_Init(int newFile, cm_buf_ops_t *opsp, afs_uint64 nbuffers)
281 {
282     static osi_once_t once;
283     cm_buf_t *bp;
284     thread_t phandle;
285     long i;
286     unsigned long pid;
287     char *data;
288
289     if ( newFile ) {
290         if (nbuffers) 
291             cm_data.buf_nbuffers = nbuffers;
292
293         /* Have to be able to reserve a whole chunk */
294         if (((cm_data.buf_nbuffers - 3) * cm_data.buf_blockSize) < cm_chunkSize)
295             return CM_ERROR_TOOFEWBUFS;
296     }
297
298     /* recall for callouts */
299     cm_buf_opsp = opsp;
300
301     if (osi_Once(&once)) {
302         /* initialize global locks */
303         lock_InitializeRWLock(&buf_globalLock, "Global buffer lock");
304
305         if ( newFile ) {
306             /* remember this for those who want to reset it */
307             cm_data.buf_nOrigBuffers = cm_data.buf_nbuffers;
308  
309             /* lower hash size to a prime number */
310             cm_data.buf_hashSize = osi_PrimeLessThan((afs_uint32)(cm_data.buf_nbuffers/7 + 1));
311  
312             /* create hash table */
313             memset((void *)cm_data.buf_scacheHashTablepp, 0, cm_data.buf_hashSize * sizeof(cm_buf_t *));
314             
315             /* another hash table */
316             memset((void *)cm_data.buf_fileHashTablepp, 0, cm_data.buf_hashSize * sizeof(cm_buf_t *));
317
318             /* create buffer headers and put in free list */
319             bp = cm_data.bufHeaderBaseAddress;
320             data = cm_data.bufDataBaseAddress;
321             cm_data.buf_allp = NULL;
322             
323             for (i=0; i<cm_data.buf_nbuffers; i++) {
324                 osi_assert(bp >= cm_data.bufHeaderBaseAddress && bp < (cm_buf_t *)cm_data.bufDataBaseAddress);
325                 osi_assert(data >= cm_data.bufDataBaseAddress && data < cm_data.bufEndOfData);
326                 
327                 /* allocate and zero some storage */
328                 memset(bp, 0, sizeof(cm_buf_t));
329                 bp->magic = CM_BUF_MAGIC;
330                 /* thread on list of all buffers */
331                 bp->allp = cm_data.buf_allp;
332                 cm_data.buf_allp = bp;
333                 
334                 osi_QAdd((osi_queue_t **)&cm_data.buf_freeListp, &bp->q);
335                 bp->flags |= CM_BUF_INLRU;
336                 lock_InitializeMutex(&bp->mx, "Buffer mutex");
337                 
338                 /* grab appropriate number of bytes from aligned zone */
339                 bp->datap = data;
340                 
341                 /* setup last buffer pointer */
342                 if (i == 0)
343                     cm_data.buf_freeListEndp = bp;
344                     
345                 /* next */
346                 bp++;
347                 data += cm_data.buf_blockSize;
348             }       
349  
350             /* none reserved at first */
351             cm_data.buf_reservedBufs = 0;
352  
353             /* just for safety's sake */
354             cm_data.buf_maxReservedBufs = cm_data.buf_nbuffers - 3;
355         } else {
356             bp = cm_data.bufHeaderBaseAddress;
357             data = cm_data.bufDataBaseAddress;
358             
359             for (i=0; i<cm_data.buf_nbuffers; i++) {
360                 lock_InitializeMutex(&bp->mx, "Buffer mutex");
361                 bp->userp = NULL;
362                 bp->waitCount = 0;
363                 bp->waitRequests = 0;
364                 bp->flags &= ~CM_BUF_WAITING;
365                 bp++;
366             }       
367         }
368  
369 #ifdef TESTING
370         buf_ValidateBufQueues();
371 #endif /* TESTING */
372
373 #ifdef TRACE_BUFFER
374         /* init the buffer trace log */
375         buf_logp = osi_LogCreate("buffer", 1000);
376         osi_LogEnable(buf_logp);
377 #endif
378
379         osi_EndOnce(&once);
380
381         /* and create the incr-syncer */
382         phandle = thrd_Create(0, 0,
383                                (ThreadFunc) buf_IncrSyncer, 0, 0, &pid,
384                                "buf_IncrSyncer");
385
386         osi_assertx(phandle != NULL, "buf: can't create incremental sync proc");
387         CloseHandle(phandle);
388     }
389
390 #ifdef TESTING
391     buf_ValidateBufQueues();
392 #endif /* TESTING */
393     return 0;
394 }
395
396 /* add nbuffers to the buffer pool, if possible.
397  * Called with no locks held.
398  */
399 long buf_AddBuffers(afs_uint64 nbuffers)
400 {
401     /* The size of a virtual cache cannot be changed after it has
402      * been created.  Subsequent calls to MapViewofFile() with
403      * an existing mapping object name would not allow the 
404      * object to be resized.  Return failure immediately.
405      *
406      * A similar problem now occurs with the persistent cache
407      * given that the memory mapped file now contains a complex
408      * data structure.
409      */
410     afsi_log("request to add %d buffers to the existing cache of size %d denied",
411               nbuffers, cm_data.buf_nbuffers);
412
413     return CM_ERROR_INVAL;
414 }       
415
416 /* interface to set the number of buffers to an exact figure.
417  * Called with no locks held.
418  */
419 long buf_SetNBuffers(afs_uint64 nbuffers)
420 {
421     if (nbuffers < 10) 
422         return CM_ERROR_INVAL;
423     if (nbuffers == cm_data.buf_nbuffers) 
424         return 0;
425     else if (nbuffers > cm_data.buf_nbuffers)
426         return buf_AddBuffers(nbuffers - cm_data.buf_nbuffers);
427     else 
428         return CM_ERROR_INVAL;
429 }
430
431 /* wait for reading or writing to clear; called with write-locked
432  * buffer and unlocked scp and returns with locked buffer.
433  */
434 void buf_WaitIO(cm_scache_t * scp, cm_buf_t *bp)
435 {
436     int release = 0;
437
438     if (scp)
439         osi_assert(scp->magic == CM_SCACHE_MAGIC);
440     osi_assert(bp->magic == CM_BUF_MAGIC);
441
442     while (1) {
443         /* if no IO is happening, we're done */
444         if (!(bp->flags & (CM_BUF_READING | CM_BUF_WRITING)))
445             break;
446                 
447         /* otherwise I/O is happening, but some other thread is waiting for
448          * the I/O already.  Wait for that guy to figure out what happened,
449          * and then check again.
450          */
451         if ( bp->flags & CM_BUF_WAITING ) {
452             bp->waitCount++;
453             bp->waitRequests++;
454             osi_Log1(buf_logp, "buf_WaitIO CM_BUF_WAITING already set for 0x%p", bp);
455         } else {
456             osi_Log1(buf_logp, "buf_WaitIO CM_BUF_WAITING set for 0x%p", bp);
457             bp->flags |= CM_BUF_WAITING;
458             bp->waitCount = bp->waitRequests = 1;
459         }
460         osi_SleepM((LONG_PTR)bp, &bp->mx);
461
462         smb_UpdateServerPriority();
463
464         lock_ObtainMutex(&bp->mx);
465         osi_Log1(buf_logp, "buf_WaitIO conflict wait done for 0x%p", bp);
466         bp->waitCount--;
467         if (bp->waitCount == 0) {
468             osi_Log1(buf_logp, "buf_WaitIO CM_BUF_WAITING reset for 0x%p", bp);
469             bp->flags &= ~CM_BUF_WAITING;
470             bp->waitRequests = 0;
471         }
472
473         if ( !scp ) {
474             if (scp = cm_FindSCache(&bp->fid))
475                  release = 1;
476         }
477         if ( scp ) {
478             lock_ObtainMutex(&scp->mx);
479             if (scp->flags & CM_SCACHEFLAG_WAITING) {
480                 osi_Log1(buf_logp, "buf_WaitIO waking scp 0x%p", scp);
481                 osi_Wakeup((LONG_PTR)&scp->flags);
482             }
483             lock_ReleaseMutex(&scp->mx);
484         }
485     }
486         
487     /* if we get here, the IO is done, but we may have to wakeup people waiting for
488      * the I/O to complete.  Do so.
489      */
490     if (bp->flags & CM_BUF_WAITING) {
491         osi_Log1(buf_logp, "buf_WaitIO Waking bp 0x%p", bp);
492         osi_Wakeup((LONG_PTR) bp);
493     }
494     osi_Log1(buf_logp, "WaitIO finished wait for bp 0x%p", bp);
495
496     if (scp && release)
497         cm_ReleaseSCache(scp);
498 }
499
500 /* find a buffer, if any, for a particular file ID and offset.  Assumes
501  * that buf_globalLock is write locked when called.
502  */
503 cm_buf_t *buf_FindLocked(struct cm_scache *scp, osi_hyper_t *offsetp)
504 {
505     afs_uint32 i;
506     cm_buf_t *bp;
507
508     i = BUF_HASH(&scp->fid, offsetp);
509     for(bp = cm_data.buf_scacheHashTablepp[i]; bp; bp=bp->hashp) {
510         if (cm_FidCmp(&scp->fid, &bp->fid) == 0
511              && offsetp->LowPart == bp->offset.LowPart
512              && offsetp->HighPart == bp->offset.HighPart) {
513             buf_HoldLocked(bp);
514             break;
515         }
516     }
517         
518     /* return whatever we found, if anything */
519     return bp;
520 }
521
522 /* find a buffer with offset *offsetp for vnode *scp.  Called
523  * with no locks held.
524  */
525 cm_buf_t *buf_Find(struct cm_scache *scp, osi_hyper_t *offsetp)
526 {
527     cm_buf_t *bp;
528
529     lock_ObtainWrite(&buf_globalLock);
530     bp = buf_FindLocked(scp, offsetp);
531     lock_ReleaseWrite(&buf_globalLock);
532
533     return bp;
534 }       
535
536 /* start cleaning I/O on this buffer.  Buffer must be write locked, and is returned
537  * write-locked.
538  *
539  * Makes sure that there's only one person writing this block
540  * at any given time, and also ensures that the log is forced sufficiently far,
541  * if this buffer contains logged data.
542  *
543  * Returns non-zero if the buffer was dirty.
544  */
545 long buf_CleanAsyncLocked(cm_buf_t *bp, cm_req_t *reqp)
546 {
547     long code = 0;
548     long isdirty = 0;
549     cm_scache_t * scp = NULL;
550
551     osi_assert(bp->magic == CM_BUF_MAGIC);
552
553     while ((bp->flags & CM_BUF_DIRTY) == CM_BUF_DIRTY) {
554         isdirty = 1;
555         lock_ReleaseMutex(&bp->mx);
556
557         scp = cm_FindSCache(&bp->fid);
558         if (scp) {
559             osi_Log2(buf_logp, "buf_CleanAsyncLocked starts I/O on scp 0x%p buf 0x%p", scp, bp);
560             code = (*cm_buf_opsp->Writep)(scp, &bp->offset,
561                                            cm_data.buf_blockSize, 0, bp->userp,
562                                            reqp);
563             osi_Log3(buf_logp, "buf_CleanAsyncLocked I/O on scp 0x%p buf 0x%p, done=%d", scp, bp, code);
564
565             cm_ReleaseSCache(scp);
566             scp = NULL;
567         } else {
568             osi_Log1(buf_logp, "buf_CleanAsyncLocked unable to start I/O - scp not found buf 0x%p", bp);
569             code = CM_ERROR_NOSUCHFILE;
570         }    
571         
572         lock_ObtainMutex(&bp->mx);
573         /* if the Write routine returns No Such File, clear the dirty flag
574          * because we aren't going to be able to write this data to the file
575          * server.
576          */
577         if (code == CM_ERROR_NOSUCHFILE){
578             bp->flags &= ~CM_BUF_DIRTY;
579             bp->flags |= CM_BUF_ERROR;
580             bp->error = CM_ERROR_NOSUCHFILE;
581             bp->dataVersion = -1; /* bad */
582             bp->dirtyCounter++;
583         }
584
585 #ifdef DISKCACHE95
586         /* Disk cache support */
587         /* write buffer to disk cache (synchronous for now) */
588         diskcache_Update(bp->dcp, bp->datap, cm_data.buf_blockSize, bp->dataVersion);
589 #endif /* DISKCACHE95 */
590
591         /* if we get here and retries are not permitted 
592          * then we need to exit this loop regardless of 
593          * whether or not we were able to clear the dirty bit
594          */
595         if (reqp->flags & CM_REQ_NORETRY)
596             break;
597     };
598
599     if (!(bp->flags & CM_BUF_DIRTY)) {
600         /* remove buffer from dirty buffer queue */
601
602     }
603
604     /* do logging after call to GetLastError, or else */
605         
606     /* if someone was waiting for the I/O that just completed or failed,
607      * wake them up.
608      */
609     if (bp->flags & CM_BUF_WAITING) {
610         /* turn off flags and wakeup users */
611         osi_Log1(buf_logp, "buf_WaitIO Waking bp 0x%p", bp);
612         osi_Wakeup((LONG_PTR) bp);
613     }
614     return isdirty;
615 }
616
617 /* Called with a zero-ref count buffer and with the buf_globalLock write locked.
618  * recycles the buffer, and leaves it ready for reuse with a ref count of 1.
619  * The buffer must already be clean, and no I/O should be happening to it.
620  */
621 void buf_Recycle(cm_buf_t *bp)
622 {
623     int i;
624     cm_buf_t **lbpp;
625     cm_buf_t *tbp;
626     cm_buf_t *prevBp, *nextBp;
627
628     osi_assert(bp->magic == CM_BUF_MAGIC);
629
630     /* if we get here, we know that the buffer still has a 0 ref count,
631      * and that it is clean and has no currently pending I/O.  This is
632      * the dude to return.
633      * Remember that as long as the ref count is 0, we know that we won't
634      * have any lock conflicts, so we can grab the buffer lock out of
635      * order in the locking hierarchy.
636      */
637     osi_Log3( buf_logp, "buf_Recycle recycles 0x%p, off 0x%x:%08x",
638               bp, bp->offset.HighPart, bp->offset.LowPart);
639
640     osi_assert(bp->refCount == 0);
641     osi_assert(!(bp->flags & (CM_BUF_READING | CM_BUF_WRITING | CM_BUF_DIRTY)));
642     lock_AssertWrite(&buf_globalLock);
643
644     if (bp->flags & CM_BUF_INHASH) {
645         /* Remove from hash */
646
647         i = BUF_HASH(&bp->fid, &bp->offset);
648         lbpp = &(cm_data.buf_scacheHashTablepp[i]);
649         for(tbp = *lbpp; tbp; lbpp = &tbp->hashp, tbp = *lbpp) {
650             if (tbp == bp) break;
651         }
652
653         /* we better find it */
654         osi_assertx(tbp != NULL, "buf_Recycle: hash table screwup");
655
656         *lbpp = bp->hashp;      /* hash out */
657
658         /* Remove from file hash */
659
660         i = BUF_FILEHASH(&bp->fid);
661         prevBp = bp->fileHashBackp;
662         nextBp = bp->fileHashp;
663         if (prevBp)
664             prevBp->fileHashp = nextBp;
665         else
666             cm_data.buf_fileHashTablepp[i] = nextBp;
667         if (nextBp)
668             nextBp->fileHashBackp = prevBp;
669
670         bp->flags &= ~CM_BUF_INHASH;
671     }
672
673     /* bump the soft reference counter now, to invalidate softRefs; no
674      * wakeup is required since people don't sleep waiting for this
675      * counter to change.
676      */
677     bp->idCounter++;
678
679     /* make the fid unrecognizable */
680     memset(&bp->fid, 0, sizeof(cm_fid_t));
681 }       
682
683 /* recycle a buffer, removing it from the free list, hashing in its new identity
684  * and returning it write-locked so that no one can use it.  Called without
685  * any locks held, and can return an error if it loses the race condition and 
686  * finds that someone else created the desired buffer.
687  *
688  * If success is returned, the buffer is returned write-locked.
689  *
690  * May be called with null scp and offsetp, if we're just trying to reclaim some
691  * space from the buffer pool.  In that case, the buffer will be returned
692  * without being hashed into the hash table.
693  */
694 long buf_GetNewLocked(struct cm_scache *scp, osi_hyper_t *offsetp, cm_buf_t **bufpp)
695 {
696     cm_buf_t *bp;               /* buffer we're dealing with */
697     cm_buf_t *nextBp;   /* next buffer in file hash chain */
698     long i;                     /* temp */
699     cm_req_t req;
700
701     cm_InitReq(&req);   /* just in case */
702
703 #ifdef TESTING
704     buf_ValidateBufQueues();
705 #endif /* TESTING */
706
707     while(1) {
708       retry:
709         lock_ObtainWrite(&buf_globalLock);
710         /* check to see if we lost the race */
711         if (scp) {
712             if (bp = buf_FindLocked(scp, offsetp)) {
713                 /* Do not call buf_ReleaseLocked() because we 
714                  * do not want to allow the buffer to be added
715                  * to the free list.
716                  */
717                 bp->refCount--;
718                 lock_ReleaseWrite(&buf_globalLock);
719                 return CM_BUF_EXISTS;
720             }
721         }
722
723         /* does this fix the problem below?  it's a simple solution. */
724         if (!cm_data.buf_freeListEndp)
725         {
726             lock_ReleaseWrite(&buf_globalLock);
727             osi_Log0(afsd_logp, "buf_GetNewLocked: Free Buffer List is empty - sleeping 200ms");
728             Sleep(200);
729             goto retry;
730         }
731
732         /* for debugging, assert free list isn't empty, although we
733          * really should try waiting for a running tranasction to finish
734          * instead of this; or better, we should have a transaction
735          * throttler prevent us from entering this situation.
736          */
737         osi_assertx(cm_data.buf_freeListEndp != NULL, "buf_GetNewLocked: no free buffers");
738
739         /* look at all buffers in free list, some of which may temp.
740          * have high refcounts and which then should be skipped,
741          * starting cleaning I/O for those which are dirty.  If we find
742          * a clean buffer, we rehash it, lock it and return it.
743          */
744         for(bp = cm_data.buf_freeListEndp; bp; bp=(cm_buf_t *) osi_QPrev(&bp->q)) {
745             /* check to see if it really has zero ref count.  This
746              * code can bump refcounts, at least, so it may not be
747              * zero.
748              */
749             if (bp->refCount > 0) 
750                 continue;
751                         
752             /* we don't have to lock buffer itself, since the ref
753              * count is 0 and we know it will stay zero as long as
754              * we hold the global lock.
755              */
756
757             /* don't recycle someone in our own chunk */
758             if (!cm_FidCmp(&bp->fid, &scp->fid)
759                  && (bp->offset.LowPart & (-cm_chunkSize))
760                  == (offsetp->LowPart & (-cm_chunkSize)))
761                 continue;
762
763             /* if this page is being filled (!) or cleaned, see if
764              * the I/O has completed.  If not, skip it, otherwise
765              * do the final processing for the I/O.
766              */
767             if (bp->flags & (CM_BUF_READING | CM_BUF_WRITING)) {
768                 /* probably shouldn't do this much work while
769                  * holding the big lock?  Watch for contention
770                  * here.
771                  */
772                 continue;
773             }
774                         
775             if (bp->flags & CM_BUF_DIRTY) {
776                 /* if the buffer is dirty, start cleaning it and
777                  * move on to the next buffer.  We do this with
778                  * just the lock required to minimize contention
779                  * on the big lock.
780                  */
781                 buf_HoldLocked(bp);
782                 lock_ReleaseWrite(&buf_globalLock);
783
784                 /* grab required lock and clean; this only
785                  * starts the I/O.  By the time we're back,
786                  * it'll still be marked dirty, but it will also
787                  * have the WRITING flag set, so we won't get
788                  * back here.
789                  */
790                 buf_CleanAsync(bp, &req);
791
792                 /* now put it back and go around again */
793                 buf_Release(bp);
794                 goto retry;
795             }
796
797             /* if we get here, we know that the buffer still has a 0
798              * ref count, and that it is clean and has no currently
799              * pending I/O.  This is the dude to return.
800              * Remember that as long as the ref count is 0, we know
801              * that we won't have any lock conflicts, so we can grab
802              * the buffer lock out of order in the locking hierarchy.
803              */
804             buf_Recycle(bp);
805
806             /* clean up junk flags */
807             bp->flags &= ~(CM_BUF_EOF | CM_BUF_ERROR);
808             bp->dataVersion = -1;       /* unknown so far */
809
810             /* now hash in as our new buffer, and give it the
811              * appropriate label, if requested.
812              */
813             if (scp) {
814                 bp->flags |= CM_BUF_INHASH;
815                 bp->fid = scp->fid;
816 #ifdef DEBUG
817                 bp->scp = scp;
818 #endif
819                 bp->offset = *offsetp;
820                 i = BUF_HASH(&scp->fid, offsetp);
821                 bp->hashp = cm_data.buf_scacheHashTablepp[i];
822                 cm_data.buf_scacheHashTablepp[i] = bp;
823                 i = BUF_FILEHASH(&scp->fid);
824                 nextBp = cm_data.buf_fileHashTablepp[i];
825                 bp->fileHashp = nextBp;
826                 bp->fileHashBackp = NULL;
827                 if (nextBp)
828                     nextBp->fileHashBackp = bp;
829                 cm_data.buf_fileHashTablepp[i] = bp;
830             }
831
832             /* we should move it from the lru queue.  It better still be there,
833              * since we've held the global (big) lock since we found it there.
834              */
835             osi_assertx(bp->flags & CM_BUF_INLRU,
836                          "buf_GetNewLocked: LRU screwup");
837
838             if (cm_data.buf_freeListEndp == bp) {
839                 /* we're the last guy in this queue, so maintain it */
840                 cm_data.buf_freeListEndp = (cm_buf_t *) osi_QPrev(&bp->q);
841             }
842             osi_QRemove((osi_queue_t **) &cm_data.buf_freeListp, &bp->q);
843             bp->flags &= ~CM_BUF_INLRU;
844
845             /* grab the mutex so that people don't use it
846              * before the caller fills it with data.  Again, no one     
847              * should have been able to get to this dude to lock it.
848              */
849             if (!lock_TryMutex(&bp->mx)) {
850                 osi_Log2(afsd_logp, "buf_GetNewLocked bp 0x%p cannot be mutex locked.  refCount %d should be 0",
851                          bp, bp->refCount);
852                 osi_panic("buf_GetNewLocked: TryMutex failed",__FILE__,__LINE__);
853             }
854
855             /* prepare to return it.  Give it a refcount */
856             bp->refCount = 1;
857                         
858             lock_ReleaseWrite(&buf_globalLock);
859             *bufpp = bp;
860
861 #ifdef TESTING
862             buf_ValidateBufQueues();
863 #endif /* TESTING */
864             return 0;
865         } /* for all buffers in lru queue */
866         lock_ReleaseWrite(&buf_globalLock);
867         osi_Log0(afsd_logp, "buf_GetNewLocked: Free Buffer List has no buffers with a zero refcount - sleeping 100ms");
868         Sleep(100);             /* give some time for a buffer to be freed */
869     }   /* while loop over everything */
870     /* not reached */
871 } /* the proc */
872
873 /* get a page, returning it held but unlocked.  Doesn't fill in the page
874  * with I/O, since we're going to write the whole thing new.
875  */
876 long buf_GetNew(struct cm_scache *scp, osi_hyper_t *offsetp, cm_buf_t **bufpp)
877 {
878     cm_buf_t *bp;
879     long code;
880     osi_hyper_t pageOffset;
881     int created;
882
883     created = 0;
884     pageOffset.HighPart = offsetp->HighPart;
885     pageOffset.LowPart = offsetp->LowPart & ~(cm_data.buf_blockSize-1);
886     while (1) {
887         bp = buf_Find(scp, &pageOffset);
888         if (bp) {
889             /* lock it and break out */
890             lock_ObtainMutex(&bp->mx);
891             break;
892         }
893
894         /* otherwise, we have to create a page */
895         code = buf_GetNewLocked(scp, &pageOffset, &bp);
896
897         /* check if the buffer was created in a race condition branch.
898          * If so, go around so we can hold a reference to it. 
899          */
900         if (code == CM_BUF_EXISTS) 
901             continue;
902
903         /* something else went wrong */
904         if (code != 0) 
905             return code;
906
907         /* otherwise, we have a locked buffer that we just created */
908         created = 1;
909         break;
910     } /* big while loop */
911
912     /* wait for reads */
913     if (bp->flags & CM_BUF_READING)
914         buf_WaitIO(scp, bp);
915
916     /* once it has been read once, we can unlock it and return it, still
917      * with its refcount held.
918      */
919     lock_ReleaseMutex(&bp->mx);
920     *bufpp = bp;
921     osi_Log4(buf_logp, "buf_GetNew returning bp 0x%p for scp 0x%p, offset 0x%x:%08x",
922               bp, scp, offsetp->HighPart, offsetp->LowPart);
923     return 0;
924 }
925
926 /* get a page, returning it held but unlocked.  Make sure it is complete */
927 /* The scp must be unlocked when passed to this function */
928 long buf_Get(struct cm_scache *scp, osi_hyper_t *offsetp, cm_buf_t **bufpp)
929 {
930     cm_buf_t *bp;
931     long code;
932     osi_hyper_t pageOffset;
933     unsigned long tcount;
934     int created;
935     long lcount = 0;
936 #ifdef DISKCACHE95
937     cm_diskcache_t *dcp;
938 #endif /* DISKCACHE95 */
939
940     created = 0;
941     pageOffset.HighPart = offsetp->HighPart;
942     pageOffset.LowPart = offsetp->LowPart & ~(cm_data.buf_blockSize-1);
943     while (1) {
944         lcount++;
945 #ifdef TESTING
946         buf_ValidateBufQueues();
947 #endif /* TESTING */
948
949         bp = buf_Find(scp, &pageOffset);
950         if (bp) {
951             /* lock it and break out */
952             lock_ObtainMutex(&bp->mx);
953
954 #ifdef DISKCACHE95
955             /* touch disk chunk to update LRU info */
956             diskcache_Touch(bp->dcp);
957 #endif /* DISKCACHE95 */
958             break;
959         }
960
961         /* otherwise, we have to create a page */
962         code = buf_GetNewLocked(scp, &pageOffset, &bp);
963         /* bp->mx is now held */
964
965         /* check if the buffer was created in a race condition branch.
966          * If so, go around so we can hold a reference to it. 
967          */
968         if (code == CM_BUF_EXISTS) 
969             continue;
970
971         /* something else went wrong */
972         if (code != 0) { 
973 #ifdef TESTING
974             buf_ValidateBufQueues();
975 #endif /* TESTING */
976             return code;
977         }
978                 
979         /* otherwise, we have a locked buffer that we just created */
980         created = 1;
981         break;
982     } /* big while loop */
983
984     /* if we get here, we have a locked buffer that may have just been
985      * created, in which case it needs to be filled with data.
986      */
987     if (created) {
988         /* load the page; freshly created pages should be idle */
989         osi_assert(!(bp->flags & (CM_BUF_READING | CM_BUF_WRITING)));
990
991         /* setup offset, event */
992         bp->over.Offset = bp->offset.LowPart;
993         bp->over.OffsetHigh = bp->offset.HighPart;
994
995         /* start the I/O; may drop lock */
996         bp->flags |= CM_BUF_READING;
997         code = (*cm_buf_opsp->Readp)(bp, cm_data.buf_blockSize, &tcount, NULL);
998
999 #ifdef DISKCACHE95
1000         code = diskcache_Get(&bp->fid, &bp->offset, bp->datap, cm_data.buf_blockSize, &bp->dataVersion, &tcount, &dcp);
1001         bp->dcp = dcp;    /* pointer to disk cache struct. */
1002 #endif /* DISKCACHE95 */
1003
1004         if (code != 0) {
1005             /* failure or queued */
1006             if (code != ERROR_IO_PENDING) {
1007                 bp->error = code;
1008                 bp->flags |= CM_BUF_ERROR;
1009                 bp->flags &= ~CM_BUF_READING;
1010                 if (bp->flags & CM_BUF_WAITING) {
1011                     osi_Log1(buf_logp, "buf_Get Waking bp 0x%p", bp);
1012                     osi_Wakeup((LONG_PTR) bp);
1013                 }
1014                 lock_ReleaseMutex(&bp->mx);
1015                 buf_Release(bp);
1016 #ifdef TESTING
1017                 buf_ValidateBufQueues();
1018 #endif /* TESTING */
1019                 return code;
1020             }
1021         } else {
1022             /* otherwise, I/O completed instantly and we're done, except
1023              * for padding the xfr out with 0s and checking for EOF
1024              */
1025             if (tcount < (unsigned long) cm_data.buf_blockSize) {
1026                 memset(bp->datap+tcount, 0, cm_data.buf_blockSize - tcount);
1027                 if (tcount == 0)
1028                     bp->flags |= CM_BUF_EOF;
1029             }
1030             bp->flags &= ~CM_BUF_READING;
1031             if (bp->flags & CM_BUF_WAITING) {
1032                 osi_Log1(buf_logp, "buf_Get Waking bp 0x%p", bp);
1033                 osi_Wakeup((LONG_PTR) bp);
1034             }
1035         }
1036
1037     } /* if created */
1038
1039     /* wait for reads, either that which we started above, or that someone
1040      * else started.  We don't care if we return a buffer being cleaned.
1041      */
1042     if (bp->flags & CM_BUF_READING)
1043         buf_WaitIO(scp, bp);
1044
1045     /* once it has been read once, we can unlock it and return it, still
1046      * with its refcount held.
1047      */
1048     lock_ReleaseMutex(&bp->mx);
1049     *bufpp = bp;
1050
1051     /* now remove from queue; will be put in at the head (farthest from
1052      * being recycled) when we're done in buf_Release.
1053      */
1054     lock_ObtainWrite(&buf_globalLock);
1055     if (bp->flags & CM_BUF_INLRU) {
1056         if (cm_data.buf_freeListEndp == bp)
1057             cm_data.buf_freeListEndp = (cm_buf_t *) osi_QPrev(&bp->q);
1058         osi_QRemove((osi_queue_t **) &cm_data.buf_freeListp, &bp->q);
1059         bp->flags &= ~CM_BUF_INLRU;
1060     }
1061     lock_ReleaseWrite(&buf_globalLock);
1062
1063     osi_Log4(buf_logp, "buf_Get returning bp 0x%p for scp 0x%p, offset 0x%x:%08x",
1064               bp, scp, offsetp->HighPart, offsetp->LowPart);
1065 #ifdef TESTING
1066     buf_ValidateBufQueues();
1067 #endif /* TESTING */
1068     return 0;
1069 }
1070
1071 /* count # of elements in the free list;
1072  * we don't bother doing the proper locking for accessing dataVersion or flags
1073  * since it is a pain, and this is really just an advisory call.  If you need
1074  * to do better at some point, rewrite this function.
1075  */
1076 long buf_CountFreeList(void)
1077 {
1078     long count;
1079     cm_buf_t *bufp;
1080
1081     count = 0;
1082     lock_ObtainRead(&buf_globalLock);
1083     for(bufp = cm_data.buf_freeListp; bufp; bufp = (cm_buf_t *) osi_QNext(&bufp->q)) {
1084         /* if the buffer doesn't have an identity, or if the buffer
1085          * has been invalidate (by having its DV stomped upon), then
1086          * count it as free, since it isn't really being utilized.
1087          */
1088         if (!(bufp->flags & CM_BUF_INHASH) || bufp->dataVersion <= 0)
1089             count++;
1090     }       
1091     lock_ReleaseRead(&buf_globalLock);
1092     return count;
1093 }
1094
1095 /* clean a buffer synchronously */
1096 long buf_CleanAsync(cm_buf_t *bp, cm_req_t *reqp)
1097 {
1098     long code;
1099     osi_assert(bp->magic == CM_BUF_MAGIC);
1100
1101     lock_ObtainMutex(&bp->mx);
1102     code = buf_CleanAsyncLocked(bp, reqp);
1103     lock_ReleaseMutex(&bp->mx);
1104
1105     return code;
1106 }       
1107
1108 /* wait for a buffer's cleaning to finish */
1109 void buf_CleanWait(cm_scache_t * scp, cm_buf_t *bp)
1110 {
1111     osi_assert(bp->magic == CM_BUF_MAGIC);
1112
1113     lock_ObtainMutex(&bp->mx);
1114     if (bp->flags & CM_BUF_WRITING) {
1115         buf_WaitIO(scp, bp);
1116     }
1117     lock_ReleaseMutex(&bp->mx);
1118 }       
1119
1120 /* set the dirty flag on a buffer, and set associated write-ahead log,
1121  * if there is one.  Allow one to be added to a buffer, but not changed.
1122  *
1123  * The buffer must be locked before calling this routine.
1124  */
1125 void buf_SetDirty(cm_buf_t *bp)
1126 {
1127     osi_assert(bp->magic == CM_BUF_MAGIC);
1128     osi_assert(bp->refCount > 0);
1129         
1130     if (bp->flags & CM_BUF_DIRTY) {
1131         osi_Log1(buf_logp, "buf_SetDirty 0x%p already dirty", bp);
1132     } else {
1133         osi_Log1(buf_logp, "buf_SetDirty 0x%p", bp);
1134     }
1135     /* set dirty bit */
1136     bp->flags |= CM_BUF_DIRTY;
1137
1138     /* and turn off EOF flag, since it has associated data now */
1139     bp->flags &= ~CM_BUF_EOF;
1140
1141     /* and add to the dirty list.  
1142      * we obtain a hold on the buffer for as long as it remains 
1143      * in the list.  buffers are only removed from the list by 
1144      * the buf_IncrSyncer function regardless of when else the
1145      * dirty flag might be cleared.
1146      *
1147      * This should never happen but just in case there is a bug
1148      * elsewhere, never add to the dirty list if the buffer is 
1149      * already there.
1150      */
1151     lock_ObtainWrite(&buf_globalLock);
1152     if (bp->dirtyp == NULL && cm_data.buf_dirtyListEndp != bp) {
1153         buf_HoldLocked(bp);
1154         if (!cm_data.buf_dirtyListp) {
1155             cm_data.buf_dirtyListp = cm_data.buf_dirtyListEndp = bp;
1156         } else {
1157             cm_data.buf_dirtyListEndp->dirtyp = bp;
1158             cm_data.buf_dirtyListEndp = bp;
1159         }
1160         bp->dirtyp = NULL;
1161     }
1162     lock_ReleaseWrite(&buf_globalLock);
1163 }
1164
1165 /* clean all buffers, reset log pointers and invalidate all buffers.
1166  * Called with no locks held, and returns with same.
1167  *
1168  * This function is guaranteed to clean and remove the log ptr of all the
1169  * buffers that were dirty or had non-zero log ptrs before the call was
1170  * made.  That's sufficient to clean up any garbage left around by recovery,
1171  * which is all we're counting on this for; there may be newly created buffers
1172  * added while we're running, but that should be OK.
1173  *
1174  * In an environment where there are no transactions (artificially imposed, for
1175  * example, when switching the database to raw mode), this function is used to
1176  * make sure that all updates have been written to the disk.  In that case, we don't
1177  * really require that we forget the log association between pages and logs, but
1178  * it also doesn't hurt.  Since raw mode I/O goes through this buffer package, we don't
1179  * have to worry about invalidating data in the buffers.
1180  *
1181  * This function is used at the end of recovery as paranoia to get the recovered
1182  * database out to disk.  It removes all references to the recovery log and cleans
1183  * all buffers.
1184  */
1185 long buf_CleanAndReset(void)
1186 {
1187     afs_uint32 i;
1188     cm_buf_t *bp;
1189     cm_req_t req;
1190
1191     lock_ObtainWrite(&buf_globalLock);
1192     for(i=0; i<cm_data.buf_hashSize; i++) {
1193         for(bp = cm_data.buf_scacheHashTablepp[i]; bp; bp = bp->hashp) {
1194             if ((bp->flags & CM_BUF_DIRTY) == CM_BUF_DIRTY) {
1195                 buf_HoldLocked(bp);
1196                 lock_ReleaseWrite(&buf_globalLock);
1197
1198                 /* now no locks are held; clean buffer and go on */
1199                 cm_InitReq(&req);
1200                 req.flags |= CM_REQ_NORETRY;
1201
1202                 buf_CleanAsync(bp, &req);
1203                 buf_CleanWait(NULL, bp);
1204
1205                 /* relock and release buffer */
1206                 lock_ObtainWrite(&buf_globalLock);
1207                 buf_ReleaseLocked(bp);
1208             } /* dirty */
1209         } /* over one bucket */
1210     }   /* for loop over all hash buckets */
1211
1212     /* release locks */
1213     lock_ReleaseWrite(&buf_globalLock);
1214
1215 #ifdef TESTING
1216     buf_ValidateBufQueues();
1217 #endif /* TESTING */
1218     
1219     /* and we're done */
1220     return 0;
1221 }       
1222
1223 /* called without global lock being held, reserves buffers for callers
1224  * that need more than one held (not locked) at once.
1225  */
1226 void buf_ReserveBuffers(afs_uint64 nbuffers)
1227 {
1228     lock_ObtainWrite(&buf_globalLock);
1229     while (1) {
1230         if (cm_data.buf_reservedBufs + nbuffers > cm_data.buf_maxReservedBufs) {
1231             cm_data.buf_reserveWaiting = 1;
1232             osi_Log1(buf_logp, "buf_ReserveBuffers waiting for %d bufs", nbuffers);
1233             osi_SleepW((LONG_PTR) &cm_data.buf_reservedBufs, &buf_globalLock);
1234             lock_ObtainWrite(&buf_globalLock);
1235         }
1236         else {
1237             cm_data.buf_reservedBufs += nbuffers;
1238             break;
1239         }
1240     }
1241     lock_ReleaseWrite(&buf_globalLock);
1242 }
1243
1244 int buf_TryReserveBuffers(afs_uint64 nbuffers)
1245 {
1246     int code;
1247
1248     lock_ObtainWrite(&buf_globalLock);
1249     if (cm_data.buf_reservedBufs + nbuffers > cm_data.buf_maxReservedBufs) {
1250         code = 0;
1251     }
1252     else {
1253         cm_data.buf_reservedBufs += nbuffers;
1254         code = 1;
1255     }
1256     lock_ReleaseWrite(&buf_globalLock);
1257     return code;
1258 }       
1259
1260 /* called without global lock held, releases reservation held by
1261  * buf_ReserveBuffers.
1262  */
1263 void buf_UnreserveBuffers(afs_uint64 nbuffers)
1264 {
1265     lock_ObtainWrite(&buf_globalLock);
1266     cm_data.buf_reservedBufs -= nbuffers;
1267     if (cm_data.buf_reserveWaiting) {
1268         cm_data.buf_reserveWaiting = 0;
1269         osi_Wakeup((LONG_PTR) &cm_data.buf_reservedBufs);
1270     }
1271     lock_ReleaseWrite(&buf_globalLock);
1272 }       
1273
1274 /* truncate the buffers past sizep, zeroing out the page, if we don't
1275  * end on a page boundary.
1276  *
1277  * Requires cm_bufCreateLock to be write locked.
1278  */
1279 long buf_Truncate(cm_scache_t *scp, cm_user_t *userp, cm_req_t *reqp,
1280                    osi_hyper_t *sizep)
1281 {
1282     cm_buf_t *bufp;
1283     cm_buf_t *nbufp;                    /* next buffer, if didRelease */
1284     osi_hyper_t bufEnd;
1285     long code;
1286     long bufferPos;
1287     long i;
1288
1289     /* assert that cm_bufCreateLock is held in write mode */
1290     lock_AssertWrite(&scp->bufCreateLock);
1291
1292     i = BUF_FILEHASH(&scp->fid);
1293
1294     lock_ObtainWrite(&buf_globalLock);
1295     bufp = cm_data.buf_fileHashTablepp[i];
1296     if (bufp == NULL) {
1297         lock_ReleaseWrite(&buf_globalLock);
1298         return 0;
1299     }
1300
1301     buf_HoldLocked(bufp);
1302     lock_ReleaseWrite(&buf_globalLock);
1303     while (bufp) {
1304         lock_ObtainMutex(&bufp->mx);
1305
1306         bufEnd.HighPart = 0;
1307         bufEnd.LowPart = cm_data.buf_blockSize;
1308         bufEnd = LargeIntegerAdd(bufEnd, bufp->offset);
1309
1310         if (cm_FidCmp(&bufp->fid, &scp->fid) == 0 &&
1311              LargeIntegerLessThan(*sizep, bufEnd)) {
1312             buf_WaitIO(scp, bufp);
1313         }
1314         lock_ObtainMutex(&scp->mx);
1315         
1316         /* make sure we have a callback (so we have the right value for
1317          * the length), and wait for it to be safe to do a truncate.
1318          */
1319         code = cm_SyncOp(scp, bufp, userp, reqp, 0,
1320                           CM_SCACHESYNC_NEEDCALLBACK
1321                           | CM_SCACHESYNC_GETSTATUS
1322                           | CM_SCACHESYNC_SETSIZE
1323                           | CM_SCACHESYNC_BUFLOCKED);
1324
1325         
1326         lock_ObtainWrite(&buf_globalLock);
1327         /* if we succeeded in our locking, and this applies to the right
1328          * file, and the truncate request overlaps the buffer either
1329          * totally or partially, then do something.
1330          */
1331         if (code == 0 && cm_FidCmp(&bufp->fid, &scp->fid) == 0
1332              && LargeIntegerLessThan(*sizep, bufEnd)) {
1333
1334
1335             /* destroy the buffer, turning off its dirty bit, if
1336              * we're truncating the whole buffer.  Otherwise, set
1337              * the dirty bit, and clear out the tail of the buffer
1338              * if we just overlap some.
1339              */
1340             if (LargeIntegerLessThanOrEqualTo(*sizep, bufp->offset)) {
1341                 /* truncating the entire page */
1342                 bufp->flags &= ~CM_BUF_DIRTY;
1343                 bufp->dataVersion = -1; /* known bad */
1344                 bufp->dirtyCounter++;
1345             }
1346             else {
1347                 /* don't set dirty, since dirty implies
1348                  * currently up-to-date.  Don't need to do this,
1349                  * since we'll update the length anyway.
1350                  *
1351                  * Zero out remainder of the page, in case we
1352                  * seek and write past EOF, and make this data
1353                  * visible again.
1354                  */
1355                 bufferPos = sizep->LowPart & (cm_data.buf_blockSize - 1);
1356                 osi_assert(bufferPos != 0);
1357                 memset(bufp->datap + bufferPos, 0,
1358                         cm_data.buf_blockSize - bufferPos);
1359             }
1360         }
1361                 
1362         cm_SyncOpDone( scp, bufp, 
1363                        CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS
1364                        | CM_SCACHESYNC_SETSIZE | CM_SCACHESYNC_BUFLOCKED);
1365
1366         lock_ReleaseMutex(&scp->mx);
1367         lock_ReleaseMutex(&bufp->mx);
1368     
1369         if (!code) {
1370             nbufp = bufp->fileHashp;
1371             if (nbufp) 
1372                 buf_HoldLocked(nbufp);
1373         } else {
1374             /* This forces the loop to end and the error code
1375              * to be returned. */
1376             nbufp = NULL;
1377         }
1378         buf_ReleaseLocked(bufp);
1379         lock_ReleaseWrite(&buf_globalLock);
1380         bufp = nbufp;
1381     }
1382
1383 #ifdef TESTING
1384     buf_ValidateBufQueues();
1385 #endif /* TESTING */
1386
1387     /* done */
1388     return code;
1389 }
1390
1391 long buf_FlushCleanPages(cm_scache_t *scp, cm_user_t *userp, cm_req_t *reqp)
1392 {
1393     long code;
1394     cm_buf_t *bp;               /* buffer we're hacking on */
1395     cm_buf_t *nbp;
1396     int didRelease;
1397     long i;
1398
1399     i = BUF_FILEHASH(&scp->fid);
1400
1401     code = 0;
1402     lock_ObtainWrite(&buf_globalLock);
1403     bp = cm_data.buf_fileHashTablepp[i];
1404     if (bp) 
1405         buf_HoldLocked(bp);
1406     lock_ReleaseWrite(&buf_globalLock);
1407     
1408     for (; bp; bp = nbp) {
1409         didRelease = 0; /* haven't released this buffer yet */
1410
1411         /* clean buffer synchronously */
1412         if (cm_FidCmp(&bp->fid, &scp->fid) == 0) {
1413             lock_ObtainMutex(&bp->mx);
1414
1415             /* start cleaning the buffer, and wait for it to finish */
1416             buf_CleanAsyncLocked(bp, reqp);
1417             buf_WaitIO(scp, bp);
1418             lock_ReleaseMutex(&bp->mx);
1419
1420             code = (*cm_buf_opsp->Stabilizep)(scp, userp, reqp);
1421             if (code) 
1422                 goto skip;
1423
1424             lock_ObtainWrite(&buf_globalLock);
1425             /* actually, we only know that buffer is clean if ref
1426              * count is 1, since we don't have buffer itself locked.
1427              */
1428             if (!(bp->flags & CM_BUF_DIRTY)) {
1429                 if (bp->refCount == 1) {        /* bp is held above */
1430                     nbp = bp->fileHashp;
1431                     if (nbp) 
1432                         buf_HoldLocked(nbp);
1433                     buf_ReleaseLocked(bp);
1434                     didRelease = 1;
1435                     buf_Recycle(bp);
1436                 }
1437             }
1438             lock_ReleaseWrite(&buf_globalLock);
1439
1440             (*cm_buf_opsp->Unstabilizep)(scp, userp);
1441         }
1442
1443       skip:
1444         if (!didRelease) {
1445             lock_ObtainWrite(&buf_globalLock);
1446             nbp = bp->fileHashp;
1447             if (nbp)
1448                 buf_HoldLocked(nbp);
1449             buf_ReleaseLocked(bp);
1450             lock_ReleaseWrite(&buf_globalLock);
1451         }
1452     }   /* for loop over a bunch of buffers */
1453
1454 #ifdef TESTING
1455     buf_ValidateBufQueues();
1456 #endif /* TESTING */
1457
1458     /* done */
1459     return code;
1460 }       
1461
1462 /* Must be called with scp->mx held */
1463 long buf_ForceDataVersion(cm_scache_t * scp, afs_uint32 fromVersion, afs_uint32 toVersion)
1464 {
1465     cm_buf_t * bp;
1466     cm_buf_t * nbp;
1467     unsigned int i;
1468     int found = 0;
1469
1470     i = BUF_FILEHASH(&scp->fid);
1471
1472     lock_ObtainWrite(&buf_globalLock);
1473
1474     for (bp = cm_data.buf_fileHashTablepp[i]; bp; bp = bp->fileHashp) {
1475         if (cm_FidCmp(&bp->fid, &scp->fid) == 0) {
1476             if (bp->dataVersion == fromVersion) {
1477                 bp->dataVersion = toVersion;
1478                 found = 1;
1479             }
1480         }
1481     }
1482     lock_ReleaseWrite(&buf_globalLock);
1483
1484     if (found)
1485         return 0;
1486     else
1487         return ENOENT;
1488 }
1489
1490 long buf_CleanVnode(struct cm_scache *scp, cm_user_t *userp, cm_req_t *reqp)
1491 {
1492     long code = 0;
1493     long wasDirty = 0;
1494     cm_buf_t *bp;               /* buffer we're hacking on */
1495     cm_buf_t *nbp;              /* next one */
1496     long i;
1497
1498     i = BUF_FILEHASH(&scp->fid);
1499
1500     lock_ObtainWrite(&buf_globalLock);
1501     bp = cm_data.buf_fileHashTablepp[i];
1502     if (bp) 
1503         buf_HoldLocked(bp);
1504     lock_ReleaseWrite(&buf_globalLock);
1505     for (; bp; bp = nbp) {
1506         /* clean buffer synchronously */
1507         if (cm_FidCmp(&bp->fid, &scp->fid) == 0) {
1508             if (userp) {
1509                 cm_HoldUser(userp);
1510                 lock_ObtainMutex(&bp->mx);
1511                 if (bp->userp) 
1512                     cm_ReleaseUser(bp->userp);
1513                 bp->userp = userp;
1514                 lock_ReleaseMutex(&bp->mx);
1515             }   
1516             wasDirty = buf_CleanAsync(bp, reqp);
1517             buf_CleanWait(scp, bp);
1518             lock_ObtainMutex(&bp->mx);
1519             if (bp->flags & CM_BUF_ERROR) {
1520                 code = bp->error;
1521                 if (code == 0) 
1522                     code = -1;
1523             }
1524             lock_ReleaseMutex(&bp->mx);
1525         }
1526
1527         lock_ObtainWrite(&buf_globalLock);
1528         nbp = bp->fileHashp;
1529         if (nbp) 
1530             buf_HoldLocked(nbp);
1531         buf_ReleaseLocked(bp);
1532         lock_ReleaseWrite(&buf_globalLock);
1533     }   /* for loop over a bunch of buffers */
1534
1535 #ifdef TESTING
1536     buf_ValidateBufQueues();
1537 #endif /* TESTING */
1538
1539     /* done */
1540     return code;
1541 }
1542
1543 #ifdef TESTING
1544 void
1545 buf_ValidateBufQueues(void)
1546 {
1547     cm_buf_t * bp, *bpb, *bpf, *bpa;
1548     afs_uint32 countf=0, countb=0, counta=0;
1549
1550     lock_ObtainRead(&buf_globalLock);
1551     for (bp = cm_data.buf_freeListEndp; bp; bp=(cm_buf_t *) osi_QPrev(&bp->q)) {
1552         if (bp->magic != CM_BUF_MAGIC)
1553             osi_panic("buf magic error",__FILE__,__LINE__);
1554         countb++;
1555         bpb = bp;
1556     }
1557
1558     for (bp = cm_data.buf_freeListp; bp; bp=(cm_buf_t *) osi_QNext(&bp->q)) {
1559         if (bp->magic != CM_BUF_MAGIC)
1560             osi_panic("buf magic error",__FILE__,__LINE__);
1561         countf++;
1562         bpf = bp;
1563     }
1564
1565     for (bp = cm_data.buf_allp; bp; bp=bp->allp) {
1566         if (bp->magic != CM_BUF_MAGIC)
1567             osi_panic("buf magic error",__FILE__,__LINE__);
1568         counta++;
1569         bpa = bp;
1570     }
1571     lock_ReleaseRead(&buf_globalLock);
1572
1573     if (countb != countf)
1574         osi_panic("buf magic error",__FILE__,__LINE__);
1575
1576     if (counta != cm_data.buf_nbuffers)
1577         osi_panic("buf magic error",__FILE__,__LINE__);
1578 }
1579 #endif /* TESTING */
1580
1581 /* dump the contents of the buf_scacheHashTablepp. */
1582 int cm_DumpBufHashTable(FILE *outputFile, char *cookie, int lock)
1583 {
1584     int zilch;
1585     cm_buf_t *bp;
1586     char output[1024];
1587     afs_uint32 i;
1588   
1589     if (cm_data.buf_scacheHashTablepp == NULL)
1590         return -1;
1591
1592     if (lock)
1593         lock_ObtainRead(&buf_globalLock);
1594   
1595     StringCbPrintfA(output, sizeof(output), "%s - dumping buf_HashTable - buf_hashSize=%d\r\n", 
1596                     cookie, cm_data.buf_hashSize);
1597     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1598   
1599     for (i = 0; i < cm_data.buf_hashSize; i++)
1600     {
1601         for (bp = cm_data.buf_scacheHashTablepp[i]; bp; bp=bp->hashp) 
1602         {
1603             StringCbPrintfA(output, sizeof(output), 
1604                             "%s bp=0x%08X, hash=%d, fid (cell=%d, volume=%d, "
1605                             "vnode=%d, unique=%d), offset=%x:%08x, dv=%d, "
1606                             "flags=0x%x, cmFlags=0x%x, refCount=%d\r\n",
1607                              cookie, (void *)bp, i, bp->fid.cell, bp->fid.volume, 
1608                              bp->fid.vnode, bp->fid.unique, bp->offset.HighPart, 
1609                              bp->offset.LowPart, bp->dataVersion, bp->flags, 
1610                              bp->cmFlags, bp->refCount);
1611             WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1612         }
1613     }
1614   
1615     StringCbPrintfA(output, sizeof(output), "%s - Done dumping buf_HashTable.\r\n", cookie);
1616     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1617
1618     StringCbPrintfA(output, sizeof(output), "%s - dumping buf_freeListEndp\r\n", cookie);
1619     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1620     for(bp = cm_data.buf_freeListEndp; bp; bp=(cm_buf_t *) osi_QPrev(&bp->q)) {
1621         StringCbPrintfA(output, sizeof(output), 
1622                          "%s bp=0x%08X, fid (cell=%d, volume=%d, "
1623                          "vnode=%d, unique=%d), offset=%x:%08x, dv=%d, "
1624                          "flags=0x%x, cmFlags=0x%x, refCount=%d\r\n",
1625                          cookie, (void *)bp, bp->fid.cell, bp->fid.volume, 
1626                          bp->fid.vnode, bp->fid.unique, bp->offset.HighPart, 
1627                          bp->offset.LowPart, bp->dataVersion, bp->flags, 
1628                          bp->cmFlags, bp->refCount);
1629         WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1630     }
1631     StringCbPrintfA(output, sizeof(output), "%s - Done dumping buf_FreeListEndp.\r\n", cookie);
1632     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1633
1634     StringCbPrintfA(output, sizeof(output), "%s - dumping buf_dirtyListEndp\r\n", cookie);
1635     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1636     for(bp = cm_data.buf_dirtyListEndp; bp; bp=(cm_buf_t *) osi_QPrev(&bp->q)) {
1637         StringCbPrintfA(output, sizeof(output), 
1638                          "%s bp=0x%08X, fid (cell=%d, volume=%d, "
1639                          "vnode=%d, unique=%d), offset=%x:%08x, dv=%d, "
1640                          "flags=0x%x, cmFlags=0x%x, refCount=%d\r\n",
1641                          cookie, (void *)bp, bp->fid.cell, bp->fid.volume, 
1642                          bp->fid.vnode, bp->fid.unique, bp->offset.HighPart, 
1643                          bp->offset.LowPart, bp->dataVersion, bp->flags, 
1644                          bp->cmFlags, bp->refCount);
1645         WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1646     }
1647     StringCbPrintfA(output, sizeof(output), "%s - Done dumping buf_dirtyListEndp.\r\n", cookie);
1648     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1649
1650     if (lock)
1651         lock_ReleaseRead(&buf_globalLock);
1652     return 0;
1653 }
1654
1655 void buf_ForceTrace(BOOL flush)
1656 {
1657     HANDLE handle;
1658     int len;
1659     char buf[256];
1660
1661     if (!buf_logp) 
1662         return;
1663
1664     len = GetTempPath(sizeof(buf)-10, buf);
1665     StringCbCopyA(&buf[len], sizeof(buf)-len, "/afs-buffer.log");
1666     handle = CreateFile(buf, GENERIC_WRITE, FILE_SHARE_READ,
1667                             NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1668     if (handle == INVALID_HANDLE_VALUE) {
1669         osi_panic("Cannot create log file", __FILE__, __LINE__);
1670     }
1671     osi_LogPrint(buf_logp, handle);
1672     if (flush)
1673         FlushFileBuffers(handle);
1674     CloseHandle(handle);
1675 }
1676
1677 long buf_DirtyBuffersExist(cm_fid_t *fidp)
1678 {
1679     cm_buf_t *bp;
1680     afs_uint32 bcount = 0;
1681
1682     for (bp = cm_data.buf_allp; bp; bp=bp->allp, bcount++) {
1683         if (!cm_FidCmp(fidp, &bp->fid) && (bp->flags & CM_BUF_DIRTY))
1684             return 1;
1685     }
1686     return 0;
1687 }
1688
1689 #if 0
1690 long buf_CleanDirtyBuffers(cm_scache_t *scp)
1691 {
1692     cm_buf_t *bp;
1693     afs_uint32 bcount = 0;
1694     cm_fid_t * fidp = &scp->fid;
1695
1696     for (bp = cm_data.buf_allp; bp; bp=bp->allp, bcount++) {
1697         if (!cm_FidCmp(fidp, &bp->fid) && (bp->flags & CM_BUF_DIRTY)) {
1698                 buf_Hold(bp);
1699             lock_ObtainMutex(&bp->mx);
1700             bp->cmFlags &= ~CM_BUF_CMSTORING;
1701             bp->flags &= ~CM_BUF_DIRTY;
1702             bp->flags |= CM_BUF_ERROR;
1703             bp->error = VNOVNODE;
1704             bp->dataVersion = -1; /* bad */
1705             bp->dirtyCounter++;
1706             if (bp->flags & CM_BUF_WAITING) {
1707                 osi_Log2(buf_logp, "BUF CleanDirtyBuffers Waking [scp 0x%x] bp 0x%x", scp, bp);
1708                 osi_Wakeup((long) &bp);
1709             }
1710             lock_ReleaseMutex(&bp->mx);
1711             buf_Release(bp);
1712         }
1713     }
1714     return 0;
1715 }
1716 #endif