windows-volume-20080414
[openafs.git] / src / WINNT / afsd / cm_scache.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 #include <afs/param.h>
11 #include <afs/stds.h>
12
13 #include <windows.h>
14 #include <winsock2.h>
15 #include <nb30.h>
16 #include <malloc.h>
17 #include <string.h>
18 #include <stdlib.h>
19 #include <osi.h>
20
21 #include "afsd.h"
22 #include "cm_btree.h"
23
24 /*extern void afsi_log(char *pattern, ...);*/
25
26 extern osi_hyper_t hzero;
27
28 /* File locks */
29 osi_queue_t *cm_allFileLocks;
30 osi_queue_t *cm_freeFileLocks;
31 unsigned long cm_lockRefreshCycle;
32
33 /* lock for globals */
34 osi_rwlock_t cm_scacheLock;
35
36 /* Dummy scache entry for use with pioctl fids */
37 cm_scache_t cm_fakeSCache;
38
39 osi_queue_t * cm_allFreeWaiters;        /* protected by cm_scacheLock */
40
41 #ifdef AFS_FREELANCE_CLIENT
42 extern osi_mutex_t cm_Freelance_Lock;
43 #endif
44
45 /* must be called with cm_scacheLock write-locked! */
46 void cm_AdjustScacheLRU(cm_scache_t *scp)
47 {
48     if (scp == cm_data.scacheLRULastp)
49         cm_data.scacheLRULastp = (cm_scache_t *) osi_QPrev(&scp->q);
50     osi_QRemoveHT((osi_queue_t **) &cm_data.scacheLRUFirstp, (osi_queue_t **) &cm_data.scacheLRULastp, &scp->q);
51     osi_QAdd((osi_queue_t **) &cm_data.scacheLRUFirstp, &scp->q);
52     if (!cm_data.scacheLRULastp) 
53         cm_data.scacheLRULastp = scp;
54 }
55
56 /* call with scache write-locked and mutex held */
57 void cm_RemoveSCacheFromHashTable(cm_scache_t *scp)
58 {
59     cm_scache_t **lscpp;
60     cm_scache_t *tscp;
61     int i;
62         
63     if (scp->flags & CM_SCACHEFLAG_INHASH) {
64         /* hash it out first */
65         i = CM_SCACHE_HASH(&scp->fid);
66         for (lscpp = &cm_data.scacheHashTablep[i], tscp = cm_data.scacheHashTablep[i];
67              tscp;
68              lscpp = &tscp->nextp, tscp = tscp->nextp) {
69             if (tscp == scp) {
70                 *lscpp = scp->nextp;
71                 scp->flags &= ~CM_SCACHEFLAG_INHASH;
72                 break;
73             }
74         }
75     }
76 }
77
78 /* called with cm_scacheLock write-locked; recycles an existing scp. 
79  *
80  * this function ignores all of the locking hierarchy.  
81  */
82 long cm_RecycleSCache(cm_scache_t *scp, afs_int32 flags)
83 {
84     if (scp->refCount != 0) {
85         return -1;
86     }
87
88     if (scp->flags & CM_SCACHEFLAG_SMB_FID) {
89         osi_Log1(afsd_logp,"cm_RecycleSCache CM_SCACHEFLAG_SMB_FID detected scp 0x%p", scp);
90 #ifdef DEBUG
91         osi_panic("cm_RecycleSCache CM_SCACHEFLAG_SMB_FID detected",__FILE__,__LINE__);
92 #endif
93         return -1;
94     }
95
96     cm_RemoveSCacheFromHashTable(scp);
97
98 #if 0
99     if (flags & CM_SCACHE_RECYCLEFLAG_DESTROY_BUFFERS) {
100         osi_queueData_t *qdp;
101         cm_buf_t *bufp;
102
103         while(qdp = scp->bufWritesp) {
104             bufp = osi_GetQData(qdp);
105             osi_QRemove((osi_queue_t **) &scp->bufWritesp, &qdp->q);
106             osi_QDFree(qdp);
107             if (bufp) {
108                 lock_ObtainMutex(&bufp->mx);
109                 bufp->cmFlags &= ~CM_BUF_CMSTORING;
110                 bufp->flags &= ~CM_BUF_DIRTY;
111                 bufp->dirty_offset = 0;
112                 bufp->dirty_length = 0;
113                 bufp->flags |= CM_BUF_ERROR;
114                 bufp->error = VNOVNODE;
115                 bufp->dataVersion = -1; /* bad */
116                 bufp->dirtyCounter++;
117                 if (bufp->flags & CM_BUF_WAITING) {
118                     osi_Log2(afsd_logp, "CM RecycleSCache Waking [scp 0x%x] bufp 0x%x", scp, bufp);
119                     osi_Wakeup((long) &bufp);
120                 }
121                 lock_ReleaseMutex(&bufp->mx);
122                 buf_Release(bufp);
123             }
124         }
125         while(qdp = scp->bufReadsp) {
126             bufp = osi_GetQData(qdp);
127             osi_QRemove((osi_queue_t **) &scp->bufReadsp, &qdp->q);
128             osi_QDFree(qdp);
129             if (bufp) {
130                 lock_ObtainMutex(&bufp->mx);
131                 bufp->cmFlags &= ~CM_BUF_CMFETCHING;
132                 bufp->flags &= ~CM_BUF_DIRTY;
133                 bufp->dirty_offset = 0;
134                 bufp->dirty_length = 0;
135                 bufp->flags |= CM_BUF_ERROR;
136                 bufp->error = VNOVNODE;
137                 bufp->dataVersion = -1; /* bad */
138                 bufp->dirtyCounter++;
139                 if (bufp->flags & CM_BUF_WAITING) {
140                     osi_Log2(afsd_logp, "CM RecycleSCache Waking [scp 0x%x] bufp 0x%x", scp, bufp);
141                     osi_Wakeup((long) &bufp);
142                 }
143                 lock_ReleaseMutex(&bufp->mx);
144                 buf_Release(bufp);
145             }
146         }
147         buf_CleanDirtyBuffers(scp); 
148     } else {
149         /* look for things that shouldn't still be set */
150         osi_assertx(scp->bufWritesp == NULL, "non-null cm_scache_t bufWritesp");
151         osi_assertx(scp->bufReadsp == NULL, "non-null cm_scache_t bufReadsp");
152     }
153 #endif
154
155     /* invalidate so next merge works fine;
156      * also initialize some flags */
157     scp->fileType = 0;
158     scp->flags &= ~(CM_SCACHEFLAG_STATD
159                      | CM_SCACHEFLAG_DELETED
160                      | CM_SCACHEFLAG_RO
161                      | CM_SCACHEFLAG_PURERO
162                      | CM_SCACHEFLAG_OVERQUOTA
163                      | CM_SCACHEFLAG_OUTOFSPACE
164                      | CM_SCACHEFLAG_EACCESS);
165     scp->serverModTime = 0;
166     scp->dataVersion = 0;
167     scp->bufDataVersionLow = 0;
168     scp->bulkStatProgress = hzero;
169     scp->waitCount = 0;
170     scp->waitQueueT = NULL;
171
172     if (scp->cbServerp) {
173         cm_PutServer(scp->cbServerp);
174         scp->cbServerp = NULL;
175     }
176     scp->cbExpires = 0;
177
178     scp->fid.vnode = 0;
179     scp->fid.volume = 0;
180     scp->fid.unique = 0;
181     scp->fid.cell = 0;
182     scp->fid.hash = 0;
183
184     /* remove from dnlc */
185     cm_dnlcPurgedp(scp);
186     cm_dnlcPurgevp(scp);
187
188     /* discard cached status; if non-zero, Close
189      * tried to store this to server but failed */
190     scp->mask = 0;
191
192     /* discard symlink info */
193     scp->mountPointStringp[0] = '\0';
194     memset(&scp->mountRootFid, 0, sizeof(cm_fid_t));
195     memset(&scp->dotdotFid, 0, sizeof(cm_fid_t));
196
197     /* reset locking info */
198     scp->fileLocksH = NULL;
199     scp->fileLocksT = NULL;
200     scp->serverLock = (-1);
201     scp->exclusiveLocks = 0;
202     scp->sharedLocks = 0;
203     scp->lockDataVersion = -1;
204
205     /* not locked, but there can be no references to this guy
206      * while we hold the global refcount lock.
207      */
208     cm_FreeAllACLEnts(scp);
209
210 #ifdef USE_BPLUS
211     /* destroy directory Bplus Tree */
212     if (scp->dirBplus) {
213         LARGE_INTEGER start, end;
214         QueryPerformanceCounter(&start);
215         bplus_free_tree++;
216         freeBtree(scp->dirBplus);
217         scp->dirBplus = NULL;
218         QueryPerformanceCounter(&end);
219
220         bplus_free_time += (end.QuadPart - start.QuadPart);
221     }
222 #endif
223     return 0;
224 }
225
226
227 /* called with cm_scacheLock write-locked; find a vnode to recycle.
228  * Can allocate a new one if desperate, or if below quota (cm_data.maxSCaches).
229  */
230 cm_scache_t *cm_GetNewSCache(void)
231 {
232     cm_scache_t *scp;
233     int retry = 0;
234
235 #if 0
236     /* first pass - look for deleted objects */
237     for ( scp = cm_data.scacheLRULastp;
238           scp;
239           scp = (cm_scache_t *) osi_QPrev(&scp->q)) 
240     {
241         osi_assertx(scp >= cm_data.scacheBaseAddress && scp < (cm_scache_t *)cm_data.scacheHashTablep,
242                     "invalid cm_scache_t address");
243
244         if (scp->refCount == 0) {
245             if (scp->flags & CM_SCACHEFLAG_DELETED) {
246                 osi_Log1(afsd_logp, "GetNewSCache attempting to recycle deleted scp 0x%x", scp);
247                 if (!cm_RecycleSCache(scp, CM_SCACHE_RECYCLEFLAG_DESTROY_BUFFERS)) {
248
249                     /* we found an entry, so return it */
250                     /* now remove from the LRU queue and put it back at the
251                      * head of the LRU queue.
252                      */
253                     cm_AdjustScacheLRU(scp);
254
255                     /* and we're done */
256                     return scp;
257                 } 
258                 osi_Log1(afsd_logp, "GetNewSCache recycled failed scp 0x%x", scp);
259             } else if (!(scp->flags & CM_SCACHEFLAG_INHASH)) {
260                 /* we found an entry, so return it */
261                 /* now remove from the LRU queue and put it back at the
262                 * head of the LRU queue.
263                 */
264                 cm_AdjustScacheLRU(scp);
265
266                 /* and we're done */
267                 return scp;
268             }
269         }       
270     }   
271     osi_Log0(afsd_logp, "GetNewSCache no deleted or recycled entries available for reuse");
272 #endif 
273
274     if (cm_data.currentSCaches >= cm_data.maxSCaches) {
275         /* There were no deleted scache objects that we could use.  Try to find
276          * one that simply hasn't been used in a while.
277          */
278         for ( scp = cm_data.scacheLRULastp;
279               scp;
280               scp = (cm_scache_t *) osi_QPrev(&scp->q)) 
281         {
282             /* It is possible for the refCount to be zero and for there still
283              * to be outstanding dirty buffers.  If there are dirty buffers,
284              * we must not recycle the scp. */
285             if (scp->refCount == 0 && scp->bufReadsp == NULL && scp->bufWritesp == NULL) {
286                 if (!buf_DirtyBuffersExist(&scp->fid)) {
287                     if (!cm_RecycleSCache(scp, 0)) {
288                         /* we found an entry, so return it */
289                         /* now remove from the LRU queue and put it back at the
290                          * head of the LRU queue.
291                          */
292                         cm_AdjustScacheLRU(scp);
293
294                         /* and we're done */
295                         return scp;
296                     }
297                 } else {
298                     osi_Log1(afsd_logp,"GetNewSCache dirty buffers exist scp 0x%x", scp);
299                 }
300             }   
301         }
302         osi_Log1(afsd_logp, "GetNewSCache all scache entries in use (retry = %d)", retry);
303
304         return NULL;
305     }
306         
307     /* if we get here, we should allocate a new scache entry.  We either are below
308      * quota or we have a leak and need to allocate a new one to avoid panicing.
309      */
310     scp = cm_data.scacheBaseAddress + cm_data.currentSCaches;
311     osi_assertx(scp >= cm_data.scacheBaseAddress && scp < (cm_scache_t *)cm_data.scacheHashTablep,
312                 "invalid cm_scache_t address");
313     memset(scp, 0, sizeof(cm_scache_t));
314     scp->magic = CM_SCACHE_MAGIC;
315     lock_InitializeRWLock(&scp->rw, "cm_scache_t rw");
316     lock_InitializeRWLock(&scp->bufCreateLock, "cm_scache_t bufCreateLock");
317 #ifdef USE_BPLUS
318     lock_InitializeRWLock(&scp->dirlock, "cm_scache_t dirlock");
319 #endif
320     scp->serverLock = -1;
321
322     /* and put it in the LRU queue */
323     osi_QAdd((osi_queue_t **) &cm_data.scacheLRUFirstp, &scp->q);
324     if (!cm_data.scacheLRULastp) 
325         cm_data.scacheLRULastp = scp;
326     cm_data.currentSCaches++;
327     cm_dnlcPurgedp(scp); /* make doubly sure that this is not in dnlc */
328     cm_dnlcPurgevp(scp); 
329     scp->allNextp = cm_data.allSCachesp;
330     cm_data.allSCachesp = scp;
331     return scp;
332 }       
333
334 void cm_SetFid(cm_fid_t *fidp, afs_uint32 cell, afs_uint32 volume, afs_uint32 vnode, afs_uint32 unique)
335 {
336     fidp->cell = cell;
337     fidp->volume = volume;
338     fidp->vnode = vnode;
339     fidp->unique = unique;
340     fidp->hash = ((cell & 0xF) << 28) | ((volume & 0x3F) << 22) | ((vnode & 0x7FF) << 11) | (unique & 0x7FF);
341 }
342
343 /* like strcmp, only for fids */
344 __inline int cm_FidCmp(cm_fid_t *ap, cm_fid_t *bp)
345 {
346     if (ap->hash != bp->hash)
347         return 1;
348     if (ap->vnode != bp->vnode)
349         return 1;
350     if (ap->volume != bp->volume) 
351         return 1;
352     if (ap->unique != bp->unique) 
353         return 1;
354     if (ap->cell != bp->cell) 
355         return 1;
356     return 0;
357 }
358
359 void cm_fakeSCacheInit(int newFile)
360 {
361     if ( newFile ) {
362         memset(&cm_data.fakeSCache, 0, sizeof(cm_scache_t));
363         cm_data.fakeSCache.cbServerp = (struct cm_server *)(-1);
364         /* can leave clientModTime at 0 */
365         cm_data.fakeSCache.fileType = CM_SCACHETYPE_FILE;
366         cm_data.fakeSCache.unixModeBits = 0777;
367         cm_data.fakeSCache.length.LowPart = 1000;
368         cm_data.fakeSCache.linkCount = 1;
369         cm_data.fakeSCache.refCount = 1;
370     }
371     lock_InitializeRWLock(&cm_data.fakeSCache.rw, "cm_scache_t rw");
372 }
373
374 long
375 cm_ValidateSCache(void)
376 {
377     cm_scache_t * scp, *lscp;
378     long i;
379
380     if ( cm_data.scacheLRUFirstp == NULL && cm_data.scacheLRULastp != NULL ||
381          cm_data.scacheLRUFirstp != NULL && cm_data.scacheLRULastp == NULL) {
382         afsi_log("cm_ValidateSCache failure: inconsistent LRU pointers");
383         fprintf(stderr, "cm_ValidateSCache failure: inconsistent LRU pointers\n");
384         return -17;
385     }
386
387     for ( scp = cm_data.scacheLRUFirstp, lscp = NULL, i = 0; 
388           scp;
389           lscp = scp, scp = (cm_scache_t *) osi_QNext(&scp->q), i++ ) {
390         if (scp->magic != CM_SCACHE_MAGIC) {
391             afsi_log("cm_ValidateSCache failure: scp->magic != CM_SCACHE_MAGIC");
392             fprintf(stderr, "cm_ValidateSCache failure: scp->magic != CM_SCACHE_MAGIC\n");
393             return -1;
394         }
395         if (scp->nextp && scp->nextp->magic != CM_SCACHE_MAGIC) {
396             afsi_log("cm_ValidateSCache failure: scp->nextp->magic != CM_SCACHE_MAGIC");
397             fprintf(stderr, "cm_ValidateSCache failure: scp->nextp->magic != CM_SCACHE_MAGIC\n");
398             return -2;
399         }
400         if (scp->randomACLp && scp->randomACLp->magic != CM_ACLENT_MAGIC) {
401             afsi_log("cm_ValidateSCache failure: scp->randomACLp->magic != CM_ACLENT_MAGIC");
402             fprintf(stderr, "cm_ValidateSCache failure: scp->randomACLp->magic != CM_ACLENT_MAGIC\n");
403             return -3;
404         }
405         if (i > cm_data.currentSCaches ) {
406             afsi_log("cm_ValidateSCache failure: LRU First queue loops");
407             fprintf(stderr, "cm_ValidateSCache failure: LUR First queue loops\n");
408             return -13;
409         }
410         if (lscp != (cm_scache_t *) osi_QPrev(&scp->q)) {
411             afsi_log("cm_ValidateSCache failure: QPrev(scp) != previous");
412             fprintf(stderr, "cm_ValidateSCache failure: QPrev(scp) != previous\n");
413             return -15;
414         }
415     }
416
417     for ( scp = cm_data.scacheLRULastp, lscp = NULL, i = 0; scp;
418           lscp = scp, scp = (cm_scache_t *) osi_QPrev(&scp->q), i++ ) {
419         if (scp->magic != CM_SCACHE_MAGIC) {
420             afsi_log("cm_ValidateSCache failure: scp->magic != CM_SCACHE_MAGIC");
421             fprintf(stderr, "cm_ValidateSCache failure: scp->magic != CM_SCACHE_MAGIC\n");
422             return -5;
423         }
424         if (scp->nextp && scp->nextp->magic != CM_SCACHE_MAGIC) {
425             afsi_log("cm_ValidateSCache failure: scp->nextp->magic != CM_SCACHE_MAGIC");
426             fprintf(stderr, "cm_ValidateSCache failure: scp->nextp->magic != CM_SCACHE_MAGIC\n");
427             return -6;
428         }
429         if (scp->randomACLp && scp->randomACLp->magic != CM_ACLENT_MAGIC) {
430             afsi_log("cm_ValidateSCache failure: scp->randomACLp->magic != CM_ACLENT_MAGIC");
431             fprintf(stderr, "cm_ValidateSCache failure: scp->randomACLp->magic != CM_ACLENT_MAGIC\n");
432             return -7;
433         }
434         if (i > cm_data.currentSCaches ) {
435             afsi_log("cm_ValidateSCache failure: LRU Last queue loops");
436             fprintf(stderr, "cm_ValidateSCache failure: LUR Last queue loops\n");
437             return -14;
438         }
439         if (lscp != (cm_scache_t *) osi_QNext(&scp->q)) {
440             afsi_log("cm_ValidateSCache failure: QNext(scp) != next");
441             fprintf(stderr, "cm_ValidateSCache failure: QNext(scp) != next\n");
442             return -16;
443         }
444     }
445
446     for ( i=0; i < cm_data.scacheHashTableSize; i++ ) {
447         for ( scp = cm_data.scacheHashTablep[i]; scp; scp = scp->nextp ) {
448             afs_uint32 hash;
449             hash = CM_SCACHE_HASH(&scp->fid);
450             if (scp->magic != CM_SCACHE_MAGIC) {
451                 afsi_log("cm_ValidateSCache failure: scp->magic != CM_SCACHE_MAGIC");
452                 fprintf(stderr, "cm_ValidateSCache failure: scp->magic != CM_SCACHE_MAGIC\n");
453                 return -9;
454             }
455             if (scp->nextp && scp->nextp->magic != CM_SCACHE_MAGIC) {
456                 afsi_log("cm_ValidateSCache failure: scp->nextp->magic != CM_SCACHE_MAGIC");
457                 fprintf(stderr, "cm_ValidateSCache failure: scp->nextp->magic != CM_SCACHE_MAGIC\n");
458                 return -10;
459             }
460             if (scp->randomACLp && scp->randomACLp->magic != CM_ACLENT_MAGIC) {
461                 afsi_log("cm_ValidateSCache failure: scp->randomACLp->magic != CM_ACLENT_MAGIC");
462                 fprintf(stderr, "cm_ValidateSCache failure: scp->randomACLp->magic != CM_ACLENT_MAGIC\n");
463                 return -11;
464             }
465             if (hash != i) {
466                 afsi_log("cm_ValidateSCache failure: scp hash != hash index");
467                 fprintf(stderr, "cm_ValidateSCache failure: scp hash != hash index\n");
468                 return -13;
469             }
470         }
471     }
472
473     return cm_dnlcValidate();
474 }
475
476 void
477 cm_SuspendSCache(void)
478 {
479     cm_scache_t * scp;
480     time_t now;
481
482     cm_GiveUpAllCallbacksAllServers(TRUE);
483
484     /* 
485      * After this call all servers are marked down.
486      * Do not clear the callbacks, instead change the
487      * expiration time so that the callbacks will be expired
488      * when the servers are marked back up.  However, we
489      * want the callbacks to be preserved as long as the 
490      * servers are down.  That way if the machine resumes
491      * without network, the stat cache item will still be
492      * considered valid.
493      */
494     now = time(NULL);
495
496     lock_ObtainWrite(&cm_scacheLock);
497     for ( scp = cm_data.allSCachesp; scp; scp = scp->allNextp ) {
498         if (scp->cbServerp) {
499             if (scp->flags & CM_SCACHEFLAG_PURERO) {
500                 cm_volume_t *volp = cm_GetVolumeByFID(&scp->fid);
501                 if (volp) {
502                     if (volp->cbExpiresRO == scp->cbExpires)
503                         volp->cbExpiresRO = now+1;
504                     cm_PutVolume(volp);
505                 }
506             }
507             scp->cbExpires = now+1;
508         }
509     }
510     lock_ReleaseWrite(&cm_scacheLock);
511 }
512
513 long
514 cm_ShutdownSCache(void)
515 {
516     cm_scache_t * scp;
517
518     lock_ObtainWrite(&cm_scacheLock);
519
520     for ( scp = cm_data.allSCachesp; scp;
521           scp = scp->allNextp ) {
522         if (scp->randomACLp) {
523             lock_ObtainWrite(&scp->rw);
524             cm_FreeAllACLEnts(scp);
525             lock_ReleaseWrite(&scp->rw);
526         }
527
528         if (scp->cbServerp) {
529             cm_PutServer(scp->cbServerp);
530             scp->cbServerp = NULL;
531         }
532         scp->cbExpires = 0;
533         scp->flags &= ~CM_SCACHEFLAG_CALLBACK;
534
535 #ifdef USE_BPLUS
536         if (scp->dirBplus)
537             freeBtree(scp->dirBplus);
538         scp->dirBplus = NULL;
539         scp->dirDataVersion = -1;
540         lock_FinalizeRWLock(&scp->dirlock);
541 #endif
542         lock_FinalizeRWLock(&scp->rw);
543         lock_FinalizeRWLock(&scp->bufCreateLock);
544     }
545     lock_ReleaseWrite(&cm_scacheLock);
546
547     cm_GiveUpAllCallbacksAllServers(FALSE);
548
549     return cm_dnlcShutdown();
550 }
551
552 void cm_InitSCache(int newFile, long maxSCaches)
553 {
554     static osi_once_t once;
555         
556     if (osi_Once(&once)) {
557         lock_InitializeRWLock(&cm_scacheLock, "cm_scacheLock");
558         if ( newFile ) {
559             memset(cm_data.scacheHashTablep, 0, sizeof(cm_scache_t *) * cm_data.scacheHashTableSize);
560             cm_data.allSCachesp = NULL;
561             cm_data.currentSCaches = 0;
562             cm_data.maxSCaches = maxSCaches;
563             cm_data.scacheLRUFirstp = cm_data.scacheLRULastp = NULL;
564         } else {
565             cm_scache_t * scp;
566
567             for ( scp = cm_data.allSCachesp; scp;
568                   scp = scp->allNextp ) {
569                 lock_InitializeRWLock(&scp->rw, "cm_scache_t rw");
570                 lock_InitializeRWLock(&scp->bufCreateLock, "cm_scache_t bufCreateLock");
571 #ifdef USE_BPLUS
572                 lock_InitializeRWLock(&scp->dirlock, "cm_scache_t dirlock");
573 #endif
574                 scp->cbServerp = NULL;
575                 scp->cbExpires = 0;
576                 scp->fileLocksH = NULL;
577                 scp->fileLocksT = NULL;
578                 scp->serverLock = (-1);
579                 scp->lastRefreshCycle = 0;
580                 scp->exclusiveLocks = 0;
581                 scp->sharedLocks = 0;
582                 scp->openReads = 0;
583                 scp->openWrites = 0;
584                 scp->openShares = 0;
585                 scp->openExcls = 0;
586                 scp->waitCount = 0;
587 #ifdef USE_BPLUS
588                 scp->dirBplus = NULL;
589                 scp->dirDataVersion = -1;
590 #endif
591                 scp->waitQueueT = NULL;
592                 scp->flags &= ~CM_SCACHEFLAG_WAITING;
593             }
594         }
595         cm_allFileLocks = NULL;
596         cm_freeFileLocks = NULL;
597         cm_lockRefreshCycle = 0;
598         cm_fakeSCacheInit(newFile);
599         cm_allFreeWaiters = NULL;
600         cm_dnlcInit(newFile);
601         osi_EndOnce(&once);
602     }
603 }
604
605 /* version that doesn't bother creating the entry if we don't find it */
606 cm_scache_t *cm_FindSCache(cm_fid_t *fidp)
607 {
608     long hash;
609     cm_scache_t *scp;
610
611     hash = CM_SCACHE_HASH(fidp);
612
613     if (fidp->cell == 0) {
614         return NULL;
615     }
616
617     lock_ObtainRead(&cm_scacheLock);
618     for (scp=cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
619         if (cm_FidCmp(fidp, &scp->fid) == 0) {
620             cm_HoldSCacheNoLock(scp);
621             lock_ConvertRToW(&cm_scacheLock);
622             cm_AdjustScacheLRU(scp);
623             lock_ReleaseWrite(&cm_scacheLock);
624             return scp;
625         }
626     }
627     lock_ReleaseRead(&cm_scacheLock);
628     return NULL;
629 }
630
631 #ifdef DEBUG_REFCOUNT
632 long cm_GetSCacheDbg(cm_fid_t *fidp, cm_scache_t **outScpp, cm_user_t *userp,
633                   cm_req_t *reqp, char * file, long line)
634 #else
635 long cm_GetSCache(cm_fid_t *fidp, cm_scache_t **outScpp, cm_user_t *userp,
636                   cm_req_t *reqp)
637 #endif
638 {
639     long hash;
640     cm_scache_t *scp = NULL;
641     long code;
642     cm_volume_t *volp = NULL;
643     cm_cell_t *cellp;
644     int special = 0; // yj: boolean variable to test if file is on root.afs
645     int isRoot = 0;
646     extern cm_fid_t cm_rootFid;
647         
648     hash = CM_SCACHE_HASH(fidp);
649         
650     osi_assertx(fidp->cell != 0, "unassigned cell value");
651
652 #ifdef AFS_FREELANCE_CLIENT
653     special = (fidp->cell==AFS_FAKE_ROOT_CELL_ID && 
654                fidp->volume==AFS_FAKE_ROOT_VOL_ID &&
655                !(fidp->vnode==0x1 && fidp->unique==0x1));
656     isRoot = (fidp->cell==AFS_FAKE_ROOT_CELL_ID && 
657               fidp->volume==AFS_FAKE_ROOT_VOL_ID &&
658               fidp->vnode==0x1 && fidp->unique==0x1);
659 #endif
660
661     // yj: check if we have the scp, if so, we don't need
662     // to do anything else
663     lock_ObtainWrite(&cm_scacheLock);
664     for (scp=cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
665         if (cm_FidCmp(fidp, &scp->fid) == 0) {
666 #ifdef DEBUG_REFCOUNT
667             afsi_log("%s:%d cm_GetSCache (1) outScpp 0x%p ref %d", file, line, scp, scp->refCount);
668             osi_Log1(afsd_logp,"cm_GetSCache (1) outScpp 0x%p", scp);
669 #endif
670 #ifdef AFS_FREELANCE_CLIENT
671             if (cm_freelanceEnabled && special && 
672                 cm_data.fakeDirVersion != scp->dataVersion)
673                 break;
674 #endif
675             cm_HoldSCacheNoLock(scp);
676             *outScpp = scp;
677             cm_AdjustScacheLRU(scp);
678             lock_ReleaseWrite(&cm_scacheLock);
679             return 0;
680         }
681     }
682
683     // yj: when we get here, it means we don't have an scp
684     // so we need to either load it or fake it, depending
685     // on whether the file is "special", see below.
686
687     // yj: if we're trying to get an scp for a file that's
688     // on root.afs of homecell, we want to handle it specially
689     // because we have to fill in the status stuff 'coz we
690     // don't want trybulkstat to fill it in for us
691 #ifdef AFS_FREELANCE_CLIENT
692     if (cm_freelanceEnabled && isRoot) {
693         osi_Log0(afsd_logp,"cm_GetSCache Freelance and isRoot");
694         /* freelance: if we are trying to get the root scp for the first
695          * time, we will just put in a place holder entry. 
696          */
697         volp = NULL;
698     }
699           
700     if (cm_freelanceEnabled && special) {
701         char mp[MOUNTPOINTLEN] = "";
702         afs_uint32 fileType;
703
704         osi_Log0(afsd_logp,"cm_GetSCache Freelance and special");
705
706         if (cm_getLocalMountPointChange()) {    // check for changes
707             cm_clearLocalMountPointChange();    // clear the changefile
708                     lock_ReleaseWrite(&cm_scacheLock);
709             cm_reInitLocalMountPoints();        // start reinit
710                         lock_ObtainWrite(&cm_scacheLock);
711         }
712
713         lock_ObtainMutex(&cm_Freelance_Lock);
714         if (fidp->vnode >= 2 && fidp->vnode - 2 < cm_noLocalMountPoints) {
715             strncpy(mp,(cm_localMountPoints+fidp->vnode-2)->mountPointStringp, MOUNTPOINTLEN);
716             mp[MOUNTPOINTLEN-1] = '\0';
717             if ( !strnicmp(mp, "msdfs:", strlen("msdfs:")) )
718                 fileType = CM_SCACHETYPE_DFSLINK;
719             else
720                 fileType = (cm_localMountPoints+fidp->vnode-2)->fileType;
721         } else {
722             fileType = CM_SCACHETYPE_INVALID;
723
724         }
725         lock_ReleaseMutex(&cm_Freelance_Lock);
726
727         if (scp == NULL)
728             scp = cm_GetNewSCache();
729         if (scp == NULL) {
730             osi_Log0(afsd_logp,"cm_GetSCache unable to obtain *new* scache entry");
731             lock_ReleaseWrite(&cm_scacheLock);
732             return CM_ERROR_WOULDBLOCK;
733         }
734
735 #if not_too_dangerous
736         /* dropping the cm_scacheLock allows more than one thread
737          * to obtain the same cm_scache_t from the LRU list.  Since
738          * the refCount is known to be zero at this point we have to
739          * assume that no one else is using the one this is returned.
740          */
741         lock_ReleaseWrite(&cm_scacheLock);
742         lock_ObtainWrite(&scp->rw);
743         lock_ObtainWrite(&cm_scacheLock);
744 #endif
745         scp->fid = *fidp;
746         scp->dotdotFid.cell=AFS_FAKE_ROOT_CELL_ID;
747         scp->dotdotFid.volume=AFS_FAKE_ROOT_VOL_ID;
748         scp->dotdotFid.unique=1;
749         scp->dotdotFid.vnode=1;
750         scp->flags |= (CM_SCACHEFLAG_PURERO | CM_SCACHEFLAG_RO);
751         if (!(scp->flags & CM_SCACHEFLAG_INHASH)) {
752             scp->nextp=cm_data.scacheHashTablep[hash];
753             cm_data.scacheHashTablep[hash]=scp;
754             scp->flags |= CM_SCACHEFLAG_INHASH;
755         }
756         scp->refCount = 1;
757         osi_Log1(afsd_logp,"cm_GetSCache (freelance) sets refCount to 1 scp 0x%x", scp);
758         scp->fileType = fileType;
759         scp->length.LowPart = (DWORD)strlen(mp)+4;
760         scp->length.HighPart = 0;
761         strncpy(scp->mountPointStringp,mp,MOUNTPOINTLEN);
762         scp->owner=0x0;
763         scp->unixModeBits=0777;
764         scp->clientModTime=FakeFreelanceModTime;
765         scp->serverModTime=FakeFreelanceModTime;
766         scp->parentUnique = 0x1;
767         scp->parentVnode=0x1;
768         scp->group=0;
769         scp->dataVersion=cm_data.fakeDirVersion;
770         scp->bufDataVersionLow=cm_data.fakeDirVersion;
771         scp->lockDataVersion=-1; /* no lock yet */
772 #if not_too_dangerous
773         lock_ReleaseWrite(&scp->rw);
774 #endif
775         *outScpp = scp;
776         lock_ReleaseWrite(&cm_scacheLock);
777 #ifdef DEBUG_REFCOUNT
778         afsi_log("%s:%d cm_GetSCache (2) outScpp 0x%p ref %d", file, line, scp, scp->refCount);
779         osi_Log1(afsd_logp,"cm_GetSCache (2) outScpp 0x%p", scp);
780 #endif
781         return 0;
782     }
783     // end of yj code
784 #endif /* AFS_FREELANCE_CLIENT */
785
786     /* otherwise, we need to find the volume */
787     if (!cm_freelanceEnabled || !isRoot) {
788         lock_ReleaseWrite(&cm_scacheLock);      /* for perf. reasons */
789         cellp = cm_FindCellByID(fidp->cell, 0);
790         if (!cellp) 
791             return CM_ERROR_NOSUCHCELL;
792
793         code = cm_FindVolumeByID(cellp, fidp->volume, userp, reqp, CM_GETVOL_FLAG_CREATE, &volp);
794         if (code) 
795             return code;
796         lock_ObtainWrite(&cm_scacheLock);
797     }
798         
799     /* otherwise, we have the volume, now reverify that the scp doesn't
800      * exist, and proceed.
801      */
802     for (scp=cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
803         if (cm_FidCmp(fidp, &scp->fid) == 0) {
804 #ifdef DEBUG_REFCOUNT
805             afsi_log("%s:%d cm_GetSCache (3) outScpp 0x%p ref %d", file, line, scp, scp->refCount);
806             osi_Log1(afsd_logp,"cm_GetSCache (3) outScpp 0x%p", scp);
807 #endif
808             cm_HoldSCacheNoLock(scp);
809             cm_AdjustScacheLRU(scp);
810             lock_ReleaseWrite(&cm_scacheLock);
811             if (volp)
812                 cm_PutVolume(volp);
813             *outScpp = scp;
814             return 0;
815         }
816     }
817         
818     /* now, if we don't have the fid, recycle something */
819     scp = cm_GetNewSCache();
820     if (scp == NULL) {
821         osi_Log0(afsd_logp,"cm_GetNewSCache unable to obtain *new* scache entry");
822         lock_ReleaseWrite(&cm_scacheLock);
823         if (volp)
824             cm_PutVolume(volp);
825         return CM_ERROR_WOULDBLOCK;
826     }
827     osi_Log2(afsd_logp,"cm_GetNewSCache returns scp 0x%x flags 0x%x", scp, scp->flags);
828
829     osi_assertx(!(scp->flags & CM_SCACHEFLAG_INHASH), "CM_SCACHEFLAG_INHASH set");
830
831 #if not_too_dangerous
832     /* dropping the cm_scacheLock allows more than one thread
833      * to obtain the same cm_scache_t from the LRU list.  Since
834      * the refCount is known to be zero at this point we have to
835      * assume that no one else is using the one this is returned.
836      */
837     lock_ReleaseWrite(&cm_scacheLock);
838     lock_ObtainWrite(&scp->rw);
839     lock_ObtainWrite(&cm_scacheLock);
840 #endif
841     scp->fid = *fidp;
842     if (!cm_freelanceEnabled || !isRoot) {
843         /* if this scache entry represents a volume root then we need 
844          * to copy the dotdotFipd from the volume structure where the 
845          * "master" copy is stored (defect 11489)
846          */
847         if (volp->vol[ROVOL].ID == fidp->volume) {
848             scp->flags |= (CM_SCACHEFLAG_PURERO | CM_SCACHEFLAG_RO);
849             if (scp->fid.vnode == 1 && scp->fid.unique == 1)
850                 scp->dotdotFid = cm_VolumeStateByType(volp, ROVOL)->dotdotFid;
851         } else if (volp->vol[BACKVOL].ID == fidp->volume) {
852             scp->flags |= CM_SCACHEFLAG_RO;
853             if (scp->fid.vnode == 1 && scp->fid.unique == 1)
854                 scp->dotdotFid = cm_VolumeStateByType(volp, BACKVOL)->dotdotFid;
855         } else {
856             if (scp->fid.vnode == 1 && scp->fid.unique == 1)
857                 scp->dotdotFid = cm_VolumeStateByType(volp, RWVOL)->dotdotFid;
858         }
859     }
860     if (volp)
861         cm_PutVolume(volp);
862     scp->nextp = cm_data.scacheHashTablep[hash];
863     cm_data.scacheHashTablep[hash] = scp;
864     scp->flags |= CM_SCACHEFLAG_INHASH;
865     scp->refCount = 1;
866     osi_Log1(afsd_logp,"cm_GetSCache sets refCount to 1 scp 0x%x", scp);
867 #if not_too_dangerous
868     lock_ReleaseWrite(&scp->rw);
869 #endif
870
871     /* XXX - The following fields in the cm_scache are 
872      * uninitialized:
873      *   fileType
874      *   parentVnode
875      *   parentUnique
876      */
877     lock_ReleaseWrite(&cm_scacheLock);
878         
879     /* now we have a held scache entry; just return it */
880     *outScpp = scp;
881 #ifdef DEBUG_REFCOUNT
882     afsi_log("%s:%d cm_GetSCache (4) outScpp 0x%p ref %d", file, line, scp, scp->refCount);
883     osi_Log1(afsd_logp,"cm_GetSCache (4) outScpp 0x%p", scp);
884 #endif
885     return 0;
886 }
887
888 /* Returns a held reference to the scache's parent 
889  * if it exists */
890 cm_scache_t * cm_FindSCacheParent(cm_scache_t * scp)
891 {
892     long code = 0;
893     int i;
894     cm_fid_t    parent_fid;
895     cm_scache_t * pscp = NULL;
896
897     lock_ObtainWrite(&cm_scacheLock);
898     cm_SetFid(&parent_fid, scp->fid.cell, scp->fid.volume, scp->parentVnode, scp->parentUnique);
899
900     if (cm_FidCmp(&scp->fid, &parent_fid)) {
901         i = CM_SCACHE_HASH(&parent_fid);
902         for (pscp = cm_data.scacheHashTablep[i]; pscp; pscp = pscp->nextp) {
903             if (!cm_FidCmp(&pscp->fid, &parent_fid)) {
904                 cm_HoldSCacheNoLock(pscp);
905                 break;
906             }
907         }
908     }
909
910     lock_ReleaseWrite(&cm_scacheLock);
911
912     return pscp;
913 }
914
915 void cm_SyncOpAddToWaitQueue(cm_scache_t * scp, afs_int32 flags, cm_buf_t * bufp)
916 {
917     cm_scache_waiter_t * w;
918
919     lock_ObtainWrite(&cm_scacheLock);
920     if (cm_allFreeWaiters == NULL) {
921         w = malloc(sizeof(*w));
922         memset(w, 0, sizeof(*w));
923     } else {
924         w = (cm_scache_waiter_t *) cm_allFreeWaiters;
925         osi_QRemove(&cm_allFreeWaiters, (osi_queue_t *) w);
926     }
927
928     w->threadId = thrd_Current();
929     w->scp = scp;
930     cm_HoldSCacheNoLock(scp);
931     w->flags = flags;
932     w->bufp = bufp;
933
934     osi_QAddT(&scp->waitQueueH, &scp->waitQueueT, (osi_queue_t *) w);
935     lock_ReleaseWrite(&cm_scacheLock);
936
937     osi_Log2(afsd_logp, "cm_SyncOpAddToWaitQueue : Adding thread to wait queue scp 0x%p w 0x%p", scp, w);
938 }
939
940 int cm_SyncOpCheckContinue(cm_scache_t * scp, afs_int32 flags, cm_buf_t * bufp)
941 {
942     cm_scache_waiter_t * w;
943     int this_is_me;
944
945     osi_Log0(afsd_logp, "cm_SyncOpCheckContinue checking for continuation");
946
947     lock_ObtainRead(&cm_scacheLock);
948     for (w = (cm_scache_waiter_t *)scp->waitQueueH;
949          w;
950          w = (cm_scache_waiter_t *)osi_QNext((osi_queue_t *) w)) {
951         if (w->flags == flags && w->bufp == bufp) {
952             break;
953         }
954     }
955
956     osi_assertx(w != NULL, "null cm_scache_waiter_t");
957     this_is_me = (w->threadId == thrd_Current());
958     lock_ReleaseRead(&cm_scacheLock);
959
960     if (!this_is_me) {
961         osi_Log1(afsd_logp, "cm_SyncOpCheckContinue MISS: Waiter 0x%p", w);
962         return 0;
963     }
964
965     osi_Log1(afsd_logp, "cm_SyncOpCheckContinue HIT: Waiter 0x%p", w);
966
967     lock_ObtainWrite(&cm_scacheLock);
968     osi_QRemoveHT(&scp->waitQueueH, &scp->waitQueueT, (osi_queue_t *) w);
969     cm_ReleaseSCacheNoLock(scp);
970     memset(w, 0, sizeof(*w));
971     osi_QAdd(&cm_allFreeWaiters, (osi_queue_t *) w);
972     lock_ReleaseWrite(&cm_scacheLock);
973
974     return 1;
975 }
976
977
978 /* synchronize a fetch, store, read, write, fetch status or store status.
979  * Called with scache mutex held, and returns with it held, but temporarily
980  * drops it during the fetch.
981  * 
982  * At most one flag can be on in flags, if this is an RPC request.
983  *
984  * Also, if we're fetching or storing data, we must ensure that we have a buffer.
985  *
986  * There are a lot of weird restrictions here; here's an attempt to explain the
987  * rationale for the concurrency restrictions implemented in this function.
988  *
989  * First, although the file server will break callbacks when *another* machine
990  * modifies a file or status block, the client itself is responsible for
991  * concurrency control on its own requests.  Callback breaking events are rare,
992  * and simply invalidate any concurrent new status info.
993  *
994  * In the absence of callback breaking messages, we need to know how to
995  * synchronize incoming responses describing updates to files.  We synchronize
996  * operations that update the data version by comparing the data versions.
997  * However, updates that do not update the data, but only the status, can't be
998  * synchronized with fetches or stores, since there's nothing to compare
999  * to tell which operation executed first at the server.
1000  *
1001  * Thus, we can allow multiple ops that change file data, or dir data, and
1002  * fetches.  However, status storing ops have to be done serially.
1003  *
1004  * Furthermore, certain data-changing ops are incompatible: we can't read or
1005  * write a buffer while doing a truncate.  We can't read and write the same
1006  * buffer at the same time, or write while fetching or storing, or read while
1007  * fetching a buffer (this may change).  We can't fetch and store at the same
1008  * time, either.
1009  *
1010  * With respect to status, we can't read and write at the same time, read while
1011  * fetching, write while fetching or storing, or fetch and store at the same time.
1012  *
1013  * We can't allow a get callback RPC to run in concurrently with something that
1014  * will return updated status, since we could start a call, have the server
1015  * return status, have another machine make an update to the status (which
1016  * doesn't change serverModTime), have the original machine get a new callback,
1017  * and then have the original machine merge in the early, old info from the
1018  * first call.  At this point, the easiest way to avoid this problem is to have
1019  * getcallback calls conflict with all others for the same vnode.  Other calls
1020  * to cm_MergeStatus that aren't associated with calls to cm_SyncOp on the same
1021  * vnode must be careful not to merge in their status unless they have obtained
1022  * a callback from the start of their call.
1023  *
1024  * Note added 1/23/96
1025  * Concurrent StoreData RPC's can cause trouble if the file is being extended.
1026  * Each such RPC passes a FileLength parameter, which the server uses to do
1027  * pre-truncation if necessary.  So if two RPC's are processed out of order at
1028  * the server, the one with the smaller FileLength will be processed last,
1029  * possibly resulting in a bogus truncation.  The simplest way to avoid this
1030  * is to serialize all StoreData RPC's.  This is the reason we defined
1031  * CM_SCACHESYNC_STOREDATA_EXCL and CM_SCACHEFLAG_DATASTORING.
1032  */
1033 long cm_SyncOp(cm_scache_t *scp, cm_buf_t *bufp, cm_user_t *userp, cm_req_t *reqp,
1034                afs_uint32 rights, afs_uint32 flags)
1035 {
1036     osi_queueData_t *qdp;
1037     long code;
1038     cm_buf_t *tbufp;
1039     afs_uint32 outRights;
1040     int bufLocked;
1041     afs_uint32 sleep_scp_flags = 0;
1042     afs_uint32 sleep_buf_cmflags = 0;
1043     afs_uint32 sleep_scp_bufs = 0;
1044     int wakeupCycle;
1045
1046     /* lookup this first */
1047     bufLocked = flags & CM_SCACHESYNC_BUFLOCKED;
1048
1049     if (bufp)
1050         osi_assertx(bufp->refCount > 0, "cm_buf_t refCount 0");
1051
1052
1053     /* Do the access check.  Now we don't really do the access check
1054      * atomically, since the caller doesn't expect the parent dir to be
1055      * returned locked, and that is what we'd have to do to prevent a
1056      * callback breaking message on the parent due to a setacl call from
1057      * being processed while we're running.  So, instead, we check things
1058      * here, and if things look fine with the access, we proceed to finish
1059      * the rest of this check.  Sort of a hack, but probably good enough.
1060      */
1061
1062     while (1) {
1063         if (flags & CM_SCACHESYNC_FETCHSTATUS) {
1064             /* if we're bringing in a new status block, ensure that
1065              * we aren't already doing so, and that no one is
1066              * changing the status concurrently, either.  We need
1067              * to do this, even if the status is of a different
1068              * type, since we don't have the ability to figure out,
1069              * in the AFS 3 protocols, which status-changing
1070              * operation ran first, or even which order a read and
1071              * a write occurred in.
1072              */
1073             if (scp->flags & (CM_SCACHEFLAG_FETCHING | CM_SCACHEFLAG_STORING
1074                                | CM_SCACHEFLAG_SIZESTORING | CM_SCACHEFLAG_GETCALLBACK)) {
1075                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING|STORING|SIZESTORING|GETCALLBACK want FETCHSTATUS", scp);
1076                 goto sleep;
1077             }
1078         }
1079         if (flags & (CM_SCACHESYNC_STORESIZE | CM_SCACHESYNC_STORESTATUS
1080                       | CM_SCACHESYNC_SETSIZE | CM_SCACHESYNC_GETCALLBACK)) {
1081             /* if we're going to make an RPC to change the status, make sure
1082              * that no one is bringing in or sending out the status.
1083              */
1084             if (scp->flags & (CM_SCACHEFLAG_FETCHING | CM_SCACHEFLAG_STORING |
1085                               CM_SCACHEFLAG_SIZESTORING | CM_SCACHEFLAG_GETCALLBACK)) {
1086                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING|STORING|SIZESTORING|GETCALLBACK want STORESIZE|STORESTATUS|SETSIZE|GETCALLBACK", scp);
1087                 goto sleep;
1088             }
1089             if (scp->bufReadsp || scp->bufWritesp) {
1090                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is bufRead|bufWrite want STORESIZE|STORESTATUS|SETSIZE|GETCALLBACK", scp);
1091                 goto sleep;
1092             }
1093         }
1094         if (flags & CM_SCACHESYNC_FETCHDATA) {
1095             /* if we're bringing in a new chunk of data, make sure that
1096              * nothing is happening to that chunk, and that we aren't
1097              * changing the basic file status info, either.
1098              */
1099             if (scp->flags & (CM_SCACHEFLAG_FETCHING | CM_SCACHEFLAG_STORING
1100                                | CM_SCACHEFLAG_SIZESTORING | CM_SCACHEFLAG_GETCALLBACK)) {
1101                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING|STORING|SIZESTORING|GETCALLBACK want FETCHDATA", scp);
1102                 goto sleep;
1103             }
1104             if (bufp && (bufp->cmFlags & (CM_BUF_CMFETCHING | CM_BUF_CMSTORING | CM_BUF_CMWRITING))) {
1105                 osi_Log2(afsd_logp, "CM SyncOp scp 0x%p bufp 0x%p is BUF_CMFETCHING|BUF_CMSTORING|BUF_CMWRITING want FETCHDATA", scp, bufp);
1106                 goto sleep;
1107             }
1108         }
1109         if (flags & CM_SCACHESYNC_STOREDATA) {
1110             /* same as fetch data */
1111             if (scp->flags & (CM_SCACHEFLAG_FETCHING | CM_SCACHEFLAG_STORING
1112                                | CM_SCACHEFLAG_SIZESTORING | CM_SCACHEFLAG_GETCALLBACK)) {
1113                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING|STORING|SIZESTORING|GETCALLBACK want STOREDATA", scp);
1114                 goto sleep;
1115             }
1116             if (bufp && (bufp->cmFlags & (CM_BUF_CMFETCHING | CM_BUF_CMSTORING | CM_BUF_CMWRITING))) {
1117                 osi_Log2(afsd_logp, "CM SyncOp scp 0x%p bufp 0x%p is BUF_CMFETCHING|BUF_CMSTORING|BUF_CMWRITING want STOREDATA", scp, bufp);
1118                 goto sleep;
1119             }
1120         }
1121
1122         if (flags & CM_SCACHESYNC_STOREDATA_EXCL) {
1123             /* Don't allow concurrent StoreData RPC's */
1124             if (scp->flags & CM_SCACHEFLAG_DATASTORING) {
1125                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is DATASTORING want STOREDATA_EXCL", scp);
1126                 goto sleep;
1127             }
1128         }
1129
1130         if (flags & CM_SCACHESYNC_ASYNCSTORE) {
1131             /* Don't allow more than one BKG store request */
1132             if (scp->flags & CM_SCACHEFLAG_ASYNCSTORING) {
1133                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is ASYNCSTORING want ASYNCSTORE", scp);
1134                 goto sleep;
1135             }
1136         }
1137
1138         if (flags & CM_SCACHESYNC_LOCK) {
1139             /* Don't allow concurrent fiddling with lock lists */
1140             if (scp->flags & CM_SCACHEFLAG_LOCKING) {
1141                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is LOCKING want LOCK", scp);
1142                 goto sleep;
1143             }
1144         }
1145
1146         /* now the operations that don't correspond to making RPCs */
1147         if (flags & CM_SCACHESYNC_GETSTATUS) {
1148             /* we can use the status that's here, if we're not
1149              * bringing in new status.
1150              */
1151             if (scp->flags & (CM_SCACHEFLAG_FETCHING)) {
1152                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING want GETSTATUS", scp);
1153                 goto sleep;
1154             }
1155         }
1156         if (flags & CM_SCACHESYNC_SETSTATUS) {
1157             /* we can make a change to the local status, as long as
1158              * the status isn't changing now.
1159              *
1160              * If we're fetching or storing a chunk of data, we can
1161              * change the status locally, since the fetch/store
1162              * operations don't change any of the data that we're
1163              * changing here.
1164              */
1165             if (scp->flags & (CM_SCACHEFLAG_FETCHING | CM_SCACHEFLAG_STORING | CM_SCACHEFLAG_SIZESTORING)) {
1166                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING|STORING|SIZESTORING want SETSTATUS", scp);
1167                 goto sleep;
1168             }
1169         }
1170         if (flags & CM_SCACHESYNC_READ) {
1171             /* we're going to read the data, make sure that the
1172              * status is available, and that the data is here.  It
1173              * is OK to read while storing the data back.
1174              */
1175             if (scp->flags & CM_SCACHEFLAG_FETCHING) {
1176                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING want READ", scp);
1177                 goto sleep;
1178             }
1179             if (bufp && ((bufp->cmFlags & (CM_BUF_CMFETCHING | CM_BUF_CMFULLYFETCHED)) == CM_BUF_CMFETCHING)) {
1180                 osi_Log2(afsd_logp, "CM SyncOp scp 0x%p bufp 0x%p is BUF_CMFETCHING want READ", scp, bufp);
1181                 goto sleep;
1182             }
1183             if (bufp && (bufp->cmFlags & CM_BUF_CMWRITING)) {
1184                 osi_Log2(afsd_logp, "CM SyncOp scp 0x%p bufp 0x%p is BUF_CMWRITING want READ", scp, bufp);
1185                 goto sleep;
1186             }
1187         }
1188         if (flags & CM_SCACHESYNC_WRITE) {
1189             /* don't write unless the status is stable and the chunk
1190              * is stable.
1191              */
1192             if (scp->flags & (CM_SCACHEFLAG_FETCHING | CM_SCACHEFLAG_STORING
1193                                | CM_SCACHEFLAG_SIZESTORING)) {
1194                 osi_Log1(afsd_logp, "CM SyncOp scp 0x%p is FETCHING|STORING|SIZESTORING want WRITE", scp);
1195                 goto sleep;
1196             }
1197             if (bufp && (bufp->cmFlags & (CM_BUF_CMFETCHING |
1198                                           CM_BUF_CMSTORING |
1199                                           CM_BUF_CMWRITING))) {
1200                 osi_Log3(afsd_logp, "CM SyncOp scp 0x%p bufp 0x%p is %s want WRITE",
1201                          scp, bufp,
1202                          ((bufp->cmFlags & CM_BUF_CMFETCHING) ? "CM_BUF_CMFETCHING":
1203                           ((bufp->cmFlags & CM_BUF_CMSTORING) ? "CM_BUF_CMSTORING" :
1204                            ((bufp->cmFlags & CM_BUF_CMWRITING) ? "CM_BUF_CMWRITING" :
1205                             "UNKNOWN!!!"))));
1206                 goto sleep;
1207             }
1208         }
1209
1210         // yj: modified this so that callback only checked if we're
1211         // not checking something on /afs
1212         /* fix the conditional to match the one in cm_HaveCallback */
1213         if ((flags & CM_SCACHESYNC_NEEDCALLBACK)
1214 #ifdef AFS_FREELANCE_CLIENT
1215              && (!cm_freelanceEnabled || 
1216                   !(scp->fid.vnode==0x1 && scp->fid.unique==0x1) ||
1217                   scp->fid.cell!=AFS_FAKE_ROOT_CELL_ID ||
1218                   scp->fid.volume!=AFS_FAKE_ROOT_VOL_ID ||
1219                   cm_fakeDirCallback < 2)
1220 #endif /* AFS_FREELANCE_CLIENT */
1221              ) {
1222             if ((flags & CM_SCACHESYNC_FORCECB) || !cm_HaveCallback(scp)) {
1223                 osi_Log1(afsd_logp, "CM SyncOp getting callback on scp 0x%p",
1224                           scp);
1225                 if (bufLocked) 
1226                     lock_ReleaseMutex(&bufp->mx);
1227                 code = cm_GetCallback(scp, userp, reqp, (flags & CM_SCACHESYNC_FORCECB)?1:0);
1228                 if (bufLocked) {
1229                     lock_ReleaseWrite(&scp->rw);
1230                     lock_ObtainMutex(&bufp->mx);
1231                     lock_ObtainWrite(&scp->rw);
1232                 }
1233                 if (code) 
1234                     return code;
1235                 flags &= ~CM_SCACHESYNC_FORCECB;        /* only force once */
1236                 continue;
1237             }
1238         }
1239
1240         if (rights) {
1241             /* can't check access rights without a callback */
1242             osi_assertx(flags & CM_SCACHESYNC_NEEDCALLBACK, "!CM_SCACHESYNC_NEEDCALLBACK");
1243
1244             if ((rights & PRSFS_WRITE) && (scp->flags & CM_SCACHEFLAG_RO))
1245                 return CM_ERROR_READONLY;
1246
1247             if (cm_HaveAccessRights(scp, userp, rights, &outRights)) {
1248                 if (~outRights & rights) 
1249                     return CM_ERROR_NOACCESS;
1250             }
1251             else {
1252                 /* we don't know the required access rights */
1253                 if (bufLocked) lock_ReleaseMutex(&bufp->mx);
1254                 code = cm_GetAccessRights(scp, userp, reqp);
1255                 if (bufLocked) {
1256                     lock_ReleaseWrite(&scp->rw);
1257                     lock_ObtainMutex(&bufp->mx);
1258                     lock_ObtainWrite(&scp->rw);
1259                 }
1260                 if (code) 
1261                     return code;
1262                 continue;
1263             }
1264         }
1265
1266         /* if we get here, we're happy */
1267         break;
1268
1269       sleep:
1270         /* first check if we're not supposed to wait: fail 
1271          * in this case, returning with everything still locked.
1272          */
1273         if (flags & CM_SCACHESYNC_NOWAIT) 
1274             return CM_ERROR_WOULDBLOCK;
1275
1276         /* These are used for minidump debugging */
1277         sleep_scp_flags = scp->flags;           /* so we know why we slept */
1278         sleep_buf_cmflags = bufp ? bufp->cmFlags : 0;
1279         sleep_scp_bufs = (scp->bufReadsp ? 1 : 0) | (scp->bufWritesp ? 2 : 0);
1280
1281         /* wait here, then try again */
1282         osi_Log1(afsd_logp, "CM SyncOp sleeping scp 0x%p", scp);
1283         if ( scp->flags & CM_SCACHEFLAG_WAITING ) {
1284             scp->waitCount++;
1285             scp->waitRequests++;
1286             osi_Log3(afsd_logp, "CM SyncOp CM_SCACHEFLAG_WAITING already set for 0x%p; %d threads; %d requests", 
1287                      scp, scp->waitCount, scp->waitRequests);
1288         } else {
1289             osi_Log1(afsd_logp, "CM SyncOp CM_SCACHEFLAG_WAITING set for 0x%p", scp);
1290             scp->flags |= CM_SCACHEFLAG_WAITING;
1291             scp->waitCount = scp->waitRequests = 1;
1292         }
1293
1294         cm_SyncOpAddToWaitQueue(scp, flags, bufp);
1295         wakeupCycle = 0;
1296         do {
1297             if (bufLocked) 
1298                 lock_ReleaseMutex(&bufp->mx);
1299             osi_SleepW((LONG_PTR) &scp->flags, &scp->rw);
1300             if (bufLocked) 
1301                 lock_ObtainMutex(&bufp->mx);
1302             lock_ObtainWrite(&scp->rw);
1303         } while (!cm_SyncOpCheckContinue(scp, flags, bufp));
1304
1305         smb_UpdateServerPriority();
1306
1307         scp->waitCount--;
1308         osi_Log3(afsd_logp, "CM SyncOp woke! scp 0x%p; still waiting %d threads of %d requests", 
1309                  scp, scp->waitCount, scp->waitRequests);
1310         if (scp->waitCount == 0) {
1311             osi_Log1(afsd_logp, "CM SyncOp CM_SCACHEFLAG_WAITING reset for 0x%p", scp);
1312             scp->flags &= ~CM_SCACHEFLAG_WAITING;
1313             scp->waitRequests = 0;
1314         }
1315     } /* big while loop */
1316         
1317     /* now, update the recorded state for RPC-type calls */
1318     if (flags & CM_SCACHESYNC_FETCHSTATUS)
1319         scp->flags |= CM_SCACHEFLAG_FETCHING;
1320     if (flags & CM_SCACHESYNC_STORESTATUS)
1321         scp->flags |= CM_SCACHEFLAG_STORING;
1322     if (flags & CM_SCACHESYNC_STORESIZE)
1323         scp->flags |= CM_SCACHEFLAG_SIZESTORING;
1324     if (flags & CM_SCACHESYNC_GETCALLBACK)
1325         scp->flags |= CM_SCACHEFLAG_GETCALLBACK;
1326     if (flags & CM_SCACHESYNC_STOREDATA_EXCL)
1327         scp->flags |= CM_SCACHEFLAG_DATASTORING;
1328     if (flags & CM_SCACHESYNC_ASYNCSTORE)
1329         scp->flags |= CM_SCACHEFLAG_ASYNCSTORING;
1330     if (flags & CM_SCACHESYNC_LOCK)
1331         scp->flags |= CM_SCACHEFLAG_LOCKING;
1332
1333     /* now update the buffer pointer */
1334     if (flags & CM_SCACHESYNC_FETCHDATA) {
1335         /* ensure that the buffer isn't already in the I/O list */
1336         if (bufp) {
1337             for(qdp = scp->bufReadsp; qdp; qdp = (osi_queueData_t *) osi_QNext(&qdp->q)) {
1338                 tbufp = osi_GetQData(qdp);
1339                 osi_assertx(tbufp != bufp, "unexpected cm_buf_t value");
1340             }
1341         }
1342
1343         /* queue a held reference to the buffer in the "reading" I/O list */
1344         qdp = osi_QDAlloc();
1345         osi_SetQData(qdp, bufp);
1346         if (bufp) {
1347             buf_Hold(bufp);
1348             bufp->cmFlags |= CM_BUF_CMFETCHING;
1349         }
1350         osi_QAdd((osi_queue_t **) &scp->bufReadsp, &qdp->q);
1351     }
1352
1353     if (flags & CM_SCACHESYNC_STOREDATA) {
1354         /* ensure that the buffer isn't already in the I/O list */
1355         if (bufp) {
1356             for(qdp = scp->bufWritesp; qdp; qdp = (osi_queueData_t *) osi_QNext(&qdp->q)) {
1357                 tbufp = osi_GetQData(qdp);
1358                 osi_assertx(tbufp != bufp, "unexpected cm_buf_t value");
1359             }
1360         }
1361
1362         /* queue a held reference to the buffer in the "writing" I/O list */
1363         qdp = osi_QDAlloc();
1364         osi_SetQData(qdp, bufp);
1365         if (bufp) {
1366             buf_Hold(bufp);
1367             bufp->cmFlags |= CM_BUF_CMSTORING;
1368         }
1369         osi_QAdd((osi_queue_t **) &scp->bufWritesp, &qdp->q);
1370     }
1371
1372     if (flags & CM_SCACHESYNC_WRITE) {
1373         /* mark the buffer as being written to. */
1374         if (bufp) {
1375             bufp->cmFlags |= CM_BUF_CMWRITING;
1376         }
1377     }
1378
1379     return 0;
1380 }
1381
1382 /* for those syncops that setup for RPCs.
1383  * Called with scache locked.
1384  */
1385 void cm_SyncOpDone(cm_scache_t *scp, cm_buf_t *bufp, afs_uint32 flags)
1386 {
1387     osi_queueData_t *qdp;
1388     cm_buf_t *tbufp;
1389
1390     lock_AssertWrite(&scp->rw);
1391
1392     /* now, update the recorded state for RPC-type calls */
1393     if (flags & CM_SCACHESYNC_FETCHSTATUS)
1394         scp->flags &= ~CM_SCACHEFLAG_FETCHING;
1395     if (flags & CM_SCACHESYNC_STORESTATUS)
1396         scp->flags &= ~CM_SCACHEFLAG_STORING;
1397     if (flags & CM_SCACHESYNC_STORESIZE)
1398         scp->flags &= ~CM_SCACHEFLAG_SIZESTORING;
1399     if (flags & CM_SCACHESYNC_GETCALLBACK)
1400         scp->flags &= ~CM_SCACHEFLAG_GETCALLBACK;
1401     if (flags & CM_SCACHESYNC_STOREDATA_EXCL)
1402         scp->flags &= ~CM_SCACHEFLAG_DATASTORING;
1403     if (flags & CM_SCACHESYNC_ASYNCSTORE)
1404         scp->flags &= ~CM_SCACHEFLAG_ASYNCSTORING;
1405     if (flags & CM_SCACHESYNC_LOCK)
1406         scp->flags &= ~CM_SCACHEFLAG_LOCKING;
1407
1408     /* now update the buffer pointer */
1409     if (flags & CM_SCACHESYNC_FETCHDATA) {
1410         int release = 0;
1411
1412         /* ensure that the buffer isn't already in the I/O list */
1413         for(qdp = scp->bufReadsp; qdp; qdp = (osi_queueData_t *) osi_QNext(&qdp->q)) {
1414             tbufp = osi_GetQData(qdp);
1415             if (tbufp == bufp) 
1416                 break;
1417         }
1418         if (qdp) {
1419             osi_QRemove((osi_queue_t **) &scp->bufReadsp, &qdp->q);
1420             osi_QDFree(qdp);
1421             release = 1;
1422         }
1423         if (bufp) {
1424             bufp->cmFlags &= ~(CM_BUF_CMFETCHING | CM_BUF_CMFULLYFETCHED);
1425             if (bufp->flags & CM_BUF_WAITING) {
1426                 osi_Log2(afsd_logp, "CM SyncOpDone Waking [scp 0x%p] bufp 0x%p", scp, bufp);
1427                 osi_Wakeup((LONG_PTR) &bufp);
1428             }
1429             if (release)
1430                 buf_Release(bufp);
1431         }
1432     }
1433
1434     /* now update the buffer pointer */
1435     if (flags & CM_SCACHESYNC_STOREDATA) {
1436         int release = 0;
1437         /* ensure that the buffer isn't already in the I/O list */
1438         for(qdp = scp->bufWritesp; qdp; qdp = (osi_queueData_t *) osi_QNext(&qdp->q)) {
1439             tbufp = osi_GetQData(qdp);
1440             if (tbufp == bufp) 
1441                 break;
1442         }
1443         if (qdp) {
1444             osi_QRemove((osi_queue_t **) &scp->bufWritesp, &qdp->q);
1445             osi_QDFree(qdp);
1446             release = 1;
1447         }
1448         if (bufp) {
1449             bufp->cmFlags &= ~CM_BUF_CMSTORING;
1450             if (bufp->flags & CM_BUF_WAITING) {
1451                 osi_Log2(afsd_logp, "CM SyncOpDone Waking [scp 0x%p] bufp 0x%p", scp, bufp);
1452                 osi_Wakeup((LONG_PTR) &bufp);
1453             }
1454             if (release)
1455                 buf_Release(bufp);
1456         }
1457     }
1458
1459     if (flags & CM_SCACHESYNC_WRITE) {
1460         if (bufp) {
1461             osi_assertx(bufp->cmFlags & CM_BUF_CMWRITING, "!CM_BUF_CMWRITING");
1462
1463             bufp->cmFlags &= ~CM_BUF_CMWRITING;
1464         }
1465     }
1466
1467     /* and wakeup anyone who is waiting */
1468     if (scp->flags & CM_SCACHEFLAG_WAITING) {
1469         osi_Log1(afsd_logp, "CM SyncOpDone Waking scp 0x%p", scp);
1470         osi_Wakeup((LONG_PTR) &scp->flags);
1471     }
1472 }       
1473
1474 /* merge in a response from an RPC.  The scp must be locked, and the callback
1475  * is optional.
1476  *
1477  * Don't overwrite any status info that is dirty, since we could have a store
1478  * operation (such as store data) that merges some info in, and we don't want
1479  * to lose the local updates.  Typically, there aren't many updates we do
1480  * locally, anyway, probably only mtime.
1481  *
1482  * There is probably a bug in here where a chmod (which doesn't change
1483  * serverModTime) that occurs between two fetches, both of whose responses are
1484  * handled after the callback breaking is done, but only one of whose calls
1485  * started before that, can cause old info to be merged from the first call.
1486  */
1487 void cm_MergeStatus(cm_scache_t *dscp, 
1488                     cm_scache_t *scp, AFSFetchStatus *statusp, 
1489                     AFSVolSync *volsyncp,
1490                     cm_user_t *userp, afs_uint32 flags)
1491 {
1492     afs_uint64 dataVersion;
1493
1494     // yj: i want to create some fake status for the /afs directory and the
1495     // entries under that directory
1496 #ifdef AFS_FREELANCE_CLIENT
1497     if (cm_freelanceEnabled && scp == cm_data.rootSCachep) {
1498         osi_Log0(afsd_logp,"cm_MergeStatus Freelance cm_data.rootSCachep");
1499         statusp->InterfaceVersion = 0x1;
1500         statusp->FileType = CM_SCACHETYPE_DIRECTORY;
1501         statusp->LinkCount = scp->linkCount;
1502         statusp->Length = cm_fakeDirSize;
1503         statusp->Length_hi = 0;
1504         statusp->DataVersion = (afs_uint32)(cm_data.fakeDirVersion & 0xFFFFFFFF);
1505         statusp->Author = 0x1;
1506         statusp->Owner = 0x0;
1507         statusp->CallerAccess = 0x9;
1508         statusp->AnonymousAccess = 0x9;
1509         statusp->UnixModeBits = 0777;
1510         statusp->ParentVnode = 0x1;
1511         statusp->ParentUnique = 0x1;
1512         statusp->ResidencyMask = 0;
1513         statusp->ClientModTime = FakeFreelanceModTime;
1514         statusp->ServerModTime = FakeFreelanceModTime;
1515         statusp->Group = 0;
1516         statusp->SyncCounter = 0;
1517         statusp->dataVersionHigh = (afs_uint32)(cm_data.fakeDirVersion >> 32);
1518         statusp->errorCode = 0;
1519     }
1520 #endif /* AFS_FREELANCE_CLIENT */
1521
1522     if (statusp->errorCode != 0) {      
1523         scp->flags |= CM_SCACHEFLAG_EACCESS;
1524         osi_Log2(afsd_logp, "Merge, Failure scp %x code 0x%x", scp, statusp->errorCode);
1525
1526         scp->fileType = 0;      /* unknown */
1527
1528         scp->serverModTime = 0;
1529         scp->clientModTime = 0;
1530         scp->length.LowPart = 0;
1531         scp->length.HighPart = 0;
1532         scp->serverLength.LowPart = 0;
1533         scp->serverLength.HighPart = 0;
1534         scp->linkCount = 0;
1535         scp->owner = 0;
1536         scp->group = 0;
1537         scp->unixModeBits = 0;
1538         scp->anyAccess = 0;
1539         scp->dataVersion = 0;
1540         scp->bufDataVersionLow = 0;
1541
1542         if (dscp) {
1543             scp->parentVnode = dscp->fid.vnode;
1544             scp->parentUnique = dscp->fid.unique;
1545         } else {
1546             scp->parentVnode = 0;
1547             scp->parentUnique = 0;
1548         }
1549         return;
1550     } else {
1551         scp->flags &= ~CM_SCACHEFLAG_EACCESS;
1552     }
1553
1554     dataVersion = statusp->dataVersionHigh;
1555     dataVersion <<= 32;
1556     dataVersion |= statusp->DataVersion;
1557
1558     if (!(flags & CM_MERGEFLAG_FORCE) && dataVersion < scp->dataVersion) {
1559         struct cm_cell *cellp;
1560
1561         cellp = cm_FindCellByID(scp->fid.cell, 0);
1562         if (scp->cbServerp) {
1563             struct cm_volume *volp = NULL;
1564
1565             cm_FindVolumeByID(cellp, scp->fid.volume, userp,
1566                               (cm_req_t *) NULL, CM_GETVOL_FLAG_CREATE, &volp);
1567             osi_Log2(afsd_logp, "old data from server %x volume %s",
1568                       scp->cbServerp->addr.sin_addr.s_addr,
1569                       volp ? volp->namep : "(unknown)");
1570             if (volp)
1571                 cm_PutVolume(volp);
1572         }
1573         osi_Log3(afsd_logp, "Bad merge, scp %x, scp dv %d, RPC dv %d",
1574                   scp, scp->dataVersion, dataVersion);
1575         /* we have a number of data fetch/store operations running
1576          * concurrently, and we can tell which one executed last at the
1577          * server by its mtime.
1578          * Choose the one with the largest mtime, and ignore the rest.
1579          *
1580          * These concurrent calls are incompatible with setting the
1581          * mtime, so we won't have a locally changed mtime here.
1582          *
1583          * We could also have ACL info for a different user than usual,
1584          * in which case we have to do that part of the merge, anyway.
1585          * We won't have to worry about the info being old, since we
1586          * won't have concurrent calls
1587          * that change file status running from this machine.
1588          *
1589          * Added 3/17/98:  if we see data version regression on an RO
1590          * file, it's probably due to a server holding an out-of-date
1591          * replica, rather than to concurrent RPC's.  Failures to
1592          * release replicas are now flagged by the volserver, but only
1593          * since AFS 3.4 5.22, so there are plenty of clients getting
1594          * out-of-date replicas out there.
1595          *
1596          * If we discover an out-of-date replica, by this time it's too
1597          * late to go to another server and retry.  Also, we can't
1598          * reject the merge, because then there is no way for
1599          * GetAccess to do its work, and the caller gets into an
1600          * infinite loop.  So we just grin and bear it.
1601          */
1602         if (!(scp->flags & CM_SCACHEFLAG_RO))
1603             return;
1604     }       
1605
1606     scp->serverModTime = statusp->ServerModTime;
1607
1608     if (!(scp->mask & CM_SCACHEMASK_CLIENTMODTIME)) {
1609         scp->clientModTime = statusp->ClientModTime;
1610     }
1611     if (!(scp->mask & CM_SCACHEMASK_LENGTH)) {
1612         scp->length.LowPart = statusp->Length;
1613         scp->length.HighPart = statusp->Length_hi;
1614     }
1615
1616     scp->serverLength.LowPart = statusp->Length;
1617     scp->serverLength.HighPart = statusp->Length_hi;
1618
1619     scp->linkCount = statusp->LinkCount;
1620     scp->owner = statusp->Owner;
1621     scp->group = statusp->Group;
1622     scp->unixModeBits = statusp->UnixModeBits & 07777;
1623
1624     if (statusp->FileType == File)
1625         scp->fileType = CM_SCACHETYPE_FILE;
1626     else if (statusp->FileType == Directory)
1627         scp->fileType = CM_SCACHETYPE_DIRECTORY;
1628     else if (statusp->FileType == SymbolicLink) {
1629         if ((scp->unixModeBits & 0111) == 0)
1630             scp->fileType = CM_SCACHETYPE_MOUNTPOINT;
1631         else
1632             scp->fileType = CM_SCACHETYPE_SYMLINK;
1633     }       
1634     else {
1635         osi_Log2(afsd_logp, "Merge, Invalid File Type (%d), scp %x", statusp->FileType, scp);
1636         scp->fileType = CM_SCACHETYPE_INVALID;  /* invalid */
1637     }
1638     /* and other stuff */
1639     scp->parentVnode = statusp->ParentVnode;
1640     scp->parentUnique = statusp->ParentUnique;
1641         
1642     /* and merge in the private acl cache info, if this is more than the public
1643      * info; merge in the public stuff in any case.
1644      */
1645     scp->anyAccess = statusp->AnonymousAccess;
1646
1647     if (userp != NULL) {
1648         cm_AddACLCache(scp, userp, statusp->CallerAccess);
1649     }
1650
1651     if (scp->dataVersion != 0 &&
1652         (!(flags & (CM_MERGEFLAG_DIROP|CM_MERGEFLAG_STOREDATA)) && dataVersion != scp->dataVersion ||
1653          (flags & (CM_MERGEFLAG_DIROP|CM_MERGEFLAG_STOREDATA)) && dataVersion - scp->dataVersion > 1)) {
1654         /* 
1655          * We now know that all of the data buffers that we have associated
1656          * with this scp are invalid.  Subsequent operations will go faster
1657          * if the buffers are removed from the hash tables.
1658          *
1659          * We do not remove directory buffers if the dataVersion delta is 1 because
1660          * those version numbers will be updated as part of the directory operation.
1661          *
1662          * We do not remove storedata buffers because they will still be valid.
1663          */
1664         int i, j;
1665         cm_buf_t **lbpp;
1666         cm_buf_t *tbp;
1667         cm_buf_t *bp, *prevBp, *nextBp;
1668
1669         lock_ObtainWrite(&buf_globalLock);
1670         i = BUF_FILEHASH(&scp->fid);
1671         for (bp = cm_data.buf_fileHashTablepp[i]; bp; bp=nextBp)
1672         {
1673             nextBp = bp->fileHashp;
1674             /* 
1675              * if the buffer belongs to this stat cache entry
1676              * and the buffer mutex can be obtained, check the
1677              * reference count and if it is zero, remove the buffer
1678              * from the hash tables.  If there are references,
1679              * the buffer might be updated to the current version
1680              * so leave it in place.
1681              */
1682             if (cm_FidCmp(&scp->fid, &bp->fid) == 0 &&
1683                  lock_TryMutex(&bp->mx)) {
1684                 if (bp->refCount == 0 && 
1685                     !(bp->flags & CM_BUF_READING | CM_BUF_WRITING | CM_BUF_DIRTY)) {
1686                     prevBp = bp->fileHashBackp;
1687                     bp->fileHashBackp = bp->fileHashp = NULL;
1688                     if (prevBp)
1689                         prevBp->fileHashp = nextBp;
1690                     else
1691                         cm_data.buf_fileHashTablepp[i] = nextBp;
1692                     if (nextBp)
1693                         nextBp->fileHashBackp = prevBp;
1694
1695                     j = BUF_HASH(&bp->fid, &bp->offset);
1696                     lbpp = &(cm_data.buf_scacheHashTablepp[j]);
1697                     for(tbp = *lbpp; tbp; lbpp = &tbp->hashp, tbp = *lbpp) {
1698                         if (tbp == bp) 
1699                             break;
1700                     }
1701
1702                     *lbpp = bp->hashp;  /* hash out */
1703                     bp->hashp = NULL;
1704
1705                     bp->flags &= ~CM_BUF_INHASH;
1706                 }
1707                 lock_ReleaseMutex(&bp->mx);
1708             }
1709         }
1710         lock_ReleaseWrite(&buf_globalLock);
1711     }
1712
1713     /* We maintain a range of buffer dataVersion values which are considered 
1714      * valid.  This avoids the need to update the dataVersion on each buffer
1715      * object during an uncontested storeData operation.  As a result this 
1716      * merge status no longer has performance characteristics derived from
1717      * the size of the file.
1718      */
1719     if (((flags & CM_MERGEFLAG_STOREDATA) && dataVersion - scp->dataVersion > 1) || 
1720          (!(flags & CM_MERGEFLAG_STOREDATA) && scp->dataVersion != dataVersion) ||
1721          scp->bufDataVersionLow == 0)
1722         scp->bufDataVersionLow = dataVersion;
1723     
1724     scp->dataVersion = dataVersion;
1725 }
1726
1727 /* note that our stat cache info is incorrect, so force us eventually
1728  * to stat the file again.  There may be dirty data associated with
1729  * this vnode, and we want to preserve that information.
1730  *
1731  * This function works by simply simulating a loss of the callback.
1732  *
1733  * This function must be called with the scache locked.
1734  */
1735 void cm_DiscardSCache(cm_scache_t *scp)
1736 {
1737     lock_AssertWrite(&scp->rw);
1738     if (scp->cbServerp) {
1739         cm_PutServer(scp->cbServerp);
1740         scp->cbServerp = NULL;
1741     }
1742     scp->cbExpires = 0;
1743     scp->flags &= ~CM_SCACHEFLAG_CALLBACK;
1744     cm_dnlcPurgedp(scp);
1745     cm_dnlcPurgevp(scp);
1746     cm_FreeAllACLEnts(scp);
1747
1748     if (scp->fileType == CM_SCACHETYPE_DFSLINK)
1749         cm_VolStatus_Invalidate_DFS_Mapping(scp);
1750
1751     /* Force mount points and symlinks to be re-evaluated */
1752     scp->mountPointStringp[0] = '\0';
1753 }
1754
1755 void cm_AFSFidFromFid(AFSFid *afsFidp, cm_fid_t *fidp)
1756 {
1757     afsFidp->Volume = fidp->volume;
1758     afsFidp->Vnode = fidp->vnode;
1759     afsFidp->Unique = fidp->unique;
1760 }       
1761
1762 #ifdef DEBUG_REFCOUNT
1763 void cm_HoldSCacheNoLockDbg(cm_scache_t *scp, char * file, long line)
1764 #else
1765 void cm_HoldSCacheNoLock(cm_scache_t *scp)
1766 #endif
1767 {     
1768     afs_int32 refCount;
1769
1770     osi_assertx(scp != NULL, "null cm_scache_t");
1771     lock_AssertAny(&cm_scacheLock);
1772     refCount = InterlockedIncrement(&scp->refCount);
1773 #ifdef DEBUG_REFCOUNT
1774     osi_Log2(afsd_logp,"cm_HoldSCacheNoLock scp 0x%p ref %d",scp, refCount);
1775     afsi_log("%s:%d cm_HoldSCacheNoLock scp 0x%p, ref %d", file, line, scp, refCount);
1776 #endif
1777 }
1778
1779 #ifdef DEBUG_REFCOUNT
1780 void cm_HoldSCacheDbg(cm_scache_t *scp, char * file, long line)
1781 #else
1782 void cm_HoldSCache(cm_scache_t *scp)
1783 #endif
1784 {
1785     afs_int32 refCount;
1786
1787     osi_assertx(scp != NULL, "null cm_scache_t");
1788     lock_ObtainRead(&cm_scacheLock);
1789     refCount = InterlockedIncrement(&scp->refCount);
1790 #ifdef DEBUG_REFCOUNT
1791     osi_Log2(afsd_logp,"cm_HoldSCache scp 0x%p ref %d",scp, refCount);
1792     afsi_log("%s:%d cm_HoldSCache scp 0x%p ref %d", file, line, scp, refCount);
1793 #endif
1794     lock_ReleaseRead(&cm_scacheLock);
1795 }
1796
1797 #ifdef DEBUG_REFCOUNT
1798 void cm_ReleaseSCacheNoLockDbg(cm_scache_t *scp, char * file, long line)
1799 #else
1800 void cm_ReleaseSCacheNoLock(cm_scache_t *scp)
1801 #endif
1802 {
1803     afs_int32 refCount;
1804     osi_assertx(scp != NULL, "null cm_scache_t");
1805     lock_AssertAny(&cm_scacheLock);
1806     refCount = InterlockedDecrement(&scp->refCount);
1807 #ifdef DEBUG_REFCOUNT
1808     if (refCount < 0)
1809         osi_Log1(afsd_logp,"cm_ReleaseSCacheNoLock about to panic scp 0x%x",scp);
1810 #endif
1811     osi_assertx(refCount >= 0, "cm_scache_t refCount 0");
1812 #ifdef DEBUG_REFCOUNT
1813     osi_Log2(afsd_logp,"cm_ReleaseSCacheNoLock scp 0x%p ref %d",scp, refCount);
1814     afsi_log("%s:%d cm_ReleaseSCacheNoLock scp 0x%p ref %d", file, line, scp, refCount);
1815 #endif
1816 }
1817
1818 #ifdef DEBUG_REFCOUNT
1819 void cm_ReleaseSCacheDbg(cm_scache_t *scp, char * file, long line)
1820 #else
1821 void cm_ReleaseSCache(cm_scache_t *scp)
1822 #endif
1823 {     
1824     afs_int32 refCount;
1825
1826     osi_assertx(scp != NULL, "null cm_scache_t");
1827     lock_ObtainRead(&cm_scacheLock);
1828     refCount = InterlockedDecrement(&scp->refCount);
1829 #ifdef DEBUG_REFCOUNT
1830     if (refCount < 0)
1831         osi_Log1(afsd_logp,"cm_ReleaseSCache about to panic scp 0x%x",scp);
1832 #endif
1833     osi_assertx(refCount >= 0, "cm_scache_t refCount 0");
1834 #ifdef DEBUG_REFCOUNT
1835     osi_Log2(afsd_logp,"cm_ReleaseSCache scp 0x%p ref %d",scp, refCount);
1836     afsi_log("%s:%d cm_ReleaseSCache scp 0x%p ref %d", file, line, scp, refCount);
1837 #endif
1838     lock_ReleaseRead(&cm_scacheLock);
1839 }
1840
1841 /* just look for the scp entry to get filetype */
1842 /* doesn't need to be perfectly accurate, so locking doesn't matter too much */
1843 int cm_FindFileType(cm_fid_t *fidp)
1844 {
1845     long hash;
1846     cm_scache_t *scp;
1847         
1848     hash = CM_SCACHE_HASH(fidp);
1849         
1850     osi_assertx(fidp->cell != 0, "unassigned cell value");
1851
1852     lock_ObtainWrite(&cm_scacheLock);
1853     for (scp=cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
1854         if (cm_FidCmp(fidp, &scp->fid) == 0) {
1855             lock_ReleaseWrite(&cm_scacheLock);
1856             return scp->fileType;
1857         }
1858     }
1859     lock_ReleaseWrite(&cm_scacheLock);
1860     return 0;
1861 }
1862
1863 /* dump all scp's that have reference count > 0 to a file. 
1864  * cookie is used to identify this batch for easy parsing, 
1865  * and it a string provided by a caller 
1866  */
1867 int cm_DumpSCache(FILE *outputFile, char *cookie, int lock)
1868 {
1869     int zilch;
1870     cm_scache_t *scp;
1871     char output[2048];
1872     int i;
1873   
1874     if (lock)
1875         lock_ObtainRead(&cm_scacheLock);
1876   
1877     sprintf(output, "%s - dumping all scache - cm_data.currentSCaches=%d, cm_data.maxSCaches=%d\r\n", cookie, cm_data.currentSCaches, cm_data.maxSCaches);
1878     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1879   
1880     for (scp = cm_data.allSCachesp; scp; scp = scp->allNextp) 
1881     {
1882         sprintf(output, "%s scp=0x%p, fid (cell=%d, volume=%d, vnode=%d, unique=%d) type=%d dv=%I64d len=0x%I64x mp='%s' flags=0x%x cb=0x%x refCount=%u\r\n", 
1883                 cookie, scp, scp->fid.cell, scp->fid.volume, scp->fid.vnode, scp->fid.unique, 
1884                 scp->fileType, scp->dataVersion, scp->length.QuadPart, scp->mountPointStringp, scp->flags,
1885                 (unsigned long)scp->cbExpires, scp->refCount);
1886         WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1887     }
1888   
1889     sprintf(output, "%s - Done dumping all scache.\r\n", cookie);
1890     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1891     sprintf(output, "%s - dumping cm_data.scacheHashTable - cm_data.scacheHashTableSize=%d\r\n", cookie, cm_data.scacheHashTableSize);
1892     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1893   
1894     for (i = 0; i < cm_data.scacheHashTableSize; i++)
1895     {
1896         for(scp = cm_data.scacheHashTablep[i]; scp; scp=scp->nextp) 
1897         {
1898             sprintf(output, "%s scp=0x%p, hash=%d, fid (cell=%d, volume=%d, vnode=%d, unique=%d)\r\n", 
1899                     cookie, scp, i, scp->fid.cell, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
1900             WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1901         }
1902     }
1903
1904     sprintf(output, "%s - Done dumping cm_data.scacheHashTable\r\n", cookie);
1905     WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);
1906   
1907     if (lock)
1908         lock_ReleaseRead(&cm_scacheLock);       
1909     return (0);     
1910 }
1911