Cleanup cache bypass
[openafs.git] / src / afs / afs_bypasscache.c
1 /*
2  * COPYRIGHT  ©  2000
3  * THE REGENTS OF THE UNIVERSITY OF MICHIGAN
4  * ALL RIGHTS RESERVED
5  * 
6  * Permission is granted to use, copy, create derivative works
7  * and redistribute this software and such derivative works
8  * for any purpose, so long as the name of The University of
9  * Michigan is not used in any advertising or publicity
10  * pertaining to the use of distribution of this software
11  * without specific, written prior authorization.  If the
12  * above copyright notice or any other identification of the
13  * University of Michigan is included in any copy of any
14  * portion of this software, then the disclaimer below must
15  * also be included.
16  * 
17  * THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION
18  * FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY
19  * PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY O 
20  * MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
21  * WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
22  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
23  * REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE
24  * FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR
25  * CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING
26  * OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN
27  * IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGES.
29  */
30  
31  /*
32  * Portions Copyright (c) 2008
33  * The Linux Box Corporation
34  * ALL RIGHTS RESERVED
35  *
36  * Permission is granted to use, copy, create derivative works
37  * and redistribute this software and such derivative works
38  * for any purpose, so long as the name of the Linux Box
39  * Corporation is not used in any advertising or publicity
40  * pertaining to the use or distribution of this software
41  * without specific, written prior authorization.  If the
42  * above copyright notice or any other identification of the
43  * Linux Box Corporation is included in any copy of any
44  * portion of this software, then the disclaimer below must
45  * also be included.
46  *
47  * This software is provided as is, without representation
48  * from the Linux Box Corporation as to its fitness for any
49  * purpose, and without warranty by the Linux Box Corporation
50  * of any kind, either express or implied, including
51  * without limitation the implied warranties of
52  * merchantability and fitness for a particular purpose.  The
53  * Linux Box Corporation shall not be liable for any damages, 
54  * including special, indirect, incidental, or consequential 
55  * damages, with respect to any claim arising out of or in 
56  * connection with the use of the software, even if it has been 
57  * or is hereafter advised of the possibility of such damages.
58  */
59
60
61 #include <afsconfig.h>
62 #include "afs/param.h"
63
64 #if defined(AFS_CACHE_BYPASS)
65
66 #include "afs/afs_bypasscache.h"
67
68 /*
69  * afs_bypasscache.c
70  *
71  */
72 #include "afs/sysincludes.h" /* Standard vendor system headers */
73 #include "afs/afsincludes.h" /* Afs-based standard headers */
74 #include "afs/afs_stats.h"   /* statistics */
75 #include "afs/nfsclient.h"  
76 #include "rx/rx_globals.h"
77
78 #if defined(AFS_LINUX26_ENV)
79 #define LockPage(pp) lock_page(pp)
80 #define UnlockPage(pp) unlock_page(pp)
81 #endif
82 #define AFS_KMAP_ATOMIC
83
84 #ifndef afs_min
85 #define afs_min(A,B) ((A)<(B)) ? (A) : (B)
86 #endif
87
88 /* conditional GLOCK macros */
89 #define COND_GLOCK(var) \
90         do { \
91                 var = ISAFS_GLOCK(); \
92                 if(!var) \
93                         RX_AFS_GLOCK(); \
94         } while(0)
95         
96 #define COND_RE_GUNLOCK(var) \
97         do { \
98                 if(var) \
99                         RX_AFS_GUNLOCK(); \
100         } while(0)
101
102
103 /* conditional GUNLOCK macros */
104
105 #define COND_GUNLOCK(var) \
106         do {    \
107                 var = ISAFS_GLOCK(); \
108                 if(var) \
109                         RX_AFS_GUNLOCK(); \
110         } while(0)
111
112 #define COND_RE_GLOCK(var) \
113         do { \
114                 if(var) \
115                         RX_AFS_GLOCK(); \
116         } while(0)
117
118
119 int cache_bypass_strategy   =   NEVER_BYPASS_CACHE;
120 int cache_bypass_threshold  =   AFS_CACHE_BYPASS_DISABLED; /* file size > threshold triggers bypass */
121 int cache_bypass_prefetch = 1;  /* Should we do prefetching ? */
122
123 extern afs_rwlock_t afs_xcbhash;
124
125 /*
126  * This is almost exactly like the PFlush() routine in afs_pioctl.c,
127  * but that routine is static.  We are about to change a file from
128  * normal caching to bypass it's caching.  Therefore, we want to
129  * free up any cache space in use by the file, and throw out any
130  * existing VM pages for the file.  We keep track of the number of
131  * times we go back and forth from caching to bypass.
132  */
133 void
134 afs_TransitionToBypass(register struct vcache *avc,
135                        register afs_ucred_t *acred, int aflags)
136 {
137
138     afs_int32 code;
139     struct vrequest treq;
140     int setDesire = 0;
141     int setManual = 0;
142
143     if (!avc)
144         return;
145                 
146     if (avc->f.states & FCSBypass)
147         osi_Panic("afs_TransitionToBypass: illegal transition to bypass--already FCSBypass\n");         
148                 
149     if (aflags & TRANSChangeDesiredBit)
150         setDesire = 1;
151     if (aflags & TRANSSetManualBit)
152         setManual = 1;
153                 
154 #ifdef AFS_BOZONLOCK_ENV
155     afs_BozonLock(&avc->pvnLock, avc);  /* Since afs_TryToSmush will do a pvn_vptrunc */
156 #else
157     AFS_GLOCK();
158 #endif
159     ObtainWriteLock(&avc->lock, 925);
160         
161     /* If we never cached this, just change state */
162     if (setDesire && (!avc->cachingStates & FCSBypass)) {
163         avc->f.states |= FCSBypass;
164         goto done;
165     }
166
167     /* cg2v, try to store any chunks not written 20071204 */
168     if (avc->execsOrWriters > 0) {
169         code = afs_InitReq(&treq, acred);
170         if (!code)
171             code = afs_StoreAllSegments(avc, &treq, AFS_SYNC | AFS_LASTSTORE);
172     }
173
174 #if 0
175     /* also cg2v, don't dequeue the callback */
176     ObtainWriteLock(&afs_xcbhash, 956); 
177     afs_DequeueCallback(avc);
178     ReleaseWriteLock(&afs_xcbhash);
179 #endif
180     avc->f.states &= ~(CStatd | CDirty);      /* next reference will re-stat */
181     /* now find the disk cache entries */
182     afs_TryToSmush(avc, acred, 1);
183     osi_dnlc_purgedp(avc);
184     if (avc->linkData && !(avc->f.states & CCore)) {
185         afs_osi_Free(avc->linkData, strlen(avc->linkData) + 1);
186         avc->linkData = NULL;
187     }           
188
189     avc->cachingStates |= FCSBypass;    /* Set the bypass flag */
190     if(setDesire)
191         avc->cachingStates |= FCSDesireBypass;
192     if(setManual)
193         avc->cachingStates |= FCSManuallySet;
194     avc->cachingTransitions++;
195
196 done:
197     ReleaseWriteLock(&avc->lock);
198 #ifdef AFS_BOZONLOCK_ENV
199     afs_BozonUnlock(&avc->pvnLock, avc);
200 #else
201     AFS_GUNLOCK();
202 #endif
203 }
204
205 /*
206  * This is almost exactly like the PFlush() routine in afs_pioctl.c,
207  * but that routine is static.  We are about to change a file from
208  * bypassing caching to normal caching.  Therefore, we want to
209  * throw out any existing VM pages for the file.  We keep track of
210  * the number of times we go back and forth from caching to bypass.
211  */
212 void
213 afs_TransitionToCaching(register struct vcache *avc,
214                         register afs_ucred_t *acred,
215                         int aflags)
216 {
217     int resetDesire = 0;
218     int setManual = 0;
219
220     if (!avc)
221         return;
222
223     if (!avc->f.states & FCSBypass)
224         osi_Panic("afs_TransitionToCaching: illegal transition to caching--already caching\n");         
225                 
226     if (aflags & TRANSChangeDesiredBit)
227         resetDesire = 1;
228     if (aflags & TRANSSetManualBit)
229         setManual = 1;
230
231 #ifdef AFS_BOZONLOCK_ENV
232     afs_BozonLock(&avc->pvnLock, avc);  /* Since afs_TryToSmush will do a pvn_vptrunc */
233 #else
234     AFS_GLOCK();
235 #endif
236     ObtainWriteLock(&avc->lock, 926);
237
238     /* Ok, we actually do need to flush */
239     ObtainWriteLock(&afs_xcbhash, 957);
240     afs_DequeueCallback(avc);
241     avc->f.states &= ~(CStatd | CDirty);        /* next reference will re-stat cache entry */
242     ReleaseWriteLock(&afs_xcbhash);
243     /* now find the disk cache entries */
244     afs_TryToSmush(avc, acred, 1);
245     osi_dnlc_purgedp(avc);
246     if (avc->linkData && !(avc->f.states & CCore)) {
247         afs_osi_Free(avc->linkData, strlen(avc->linkData) + 1);
248         avc->linkData = NULL;
249     }
250                 
251     avc->cachingStates &= ~(FCSBypass);    /* Reset the bypass flag */
252     if (resetDesire)
253         avc->cachingStates &= ~(FCSDesireBypass);
254     if (setManual)
255         avc->cachingStates |= FCSManuallySet;
256     avc->cachingTransitions++;
257
258     ReleaseWriteLock(&avc->lock);
259 #ifdef AFS_BOZONLOCK_ENV
260     afs_BozonUnlock(&avc->pvnLock, avc);
261 #else
262     AFS_GUNLOCK();
263 #endif
264 }
265
266 /* In the case where there's an error in afs_NoCacheFetchProc or
267  * afs_PrefetchNoCache, all of the pages they've been passed need
268  * to be unlocked.
269  */
270 #if defined(AFS_LINUX24_ENV)
271 #define unlock_pages(auio) \
272     do { \
273         struct iovec *ciov;     \
274         struct page *pp; \
275         afs_int32 iovmax; \
276         afs_int32 iovno = 0; \
277         ciov = auio->uio_iov; \
278         iovmax = auio->uio_iovcnt - 1;  \
279         pp = (struct page*) ciov->iov_base;     \
280         afs_warn("BYPASS: Unlocking pages..."); \
281         while(1) { \
282             if(pp != NULL && PageLocked(pp)) \
283                 UnlockPage(pp); \
284             iovno++; \
285             if(iovno > iovmax) \
286                 break; \
287             ciov = (auio->uio_iov + iovno);     \
288             pp = (struct page*) ciov->iov_base; \
289         } \
290         afs_warn("Pages Unlocked.\n"); \
291     } while(0)
292 #else
293 #ifdef UKERNEL
294 #define unlock_pages(auio) \
295          do { } while(0)
296 #else
297 #error AFS_CACHE_BYPASS not implemented on this platform
298 #endif
299 #endif
300
301 /* no-cache prefetch routine */
302 static afs_int32
303 afs_NoCacheFetchProc(register struct rx_call *acall, 
304                      register struct vcache *avc, 
305                                          register uio_t *auio, 
306                      afs_int32 release_pages)
307 {
308     afs_int32 length;
309     afs_int32 code;
310     int tlen;
311     int moredata, iovno, iovoff, iovmax, clen, result, locked;
312     struct iovec *ciov;
313     struct page *pp;
314     char *address;
315 #ifdef AFS_KMAP_ATOMIC
316     char *page_buffer = osi_Alloc(PAGE_SIZE);
317 #else
318     char *page_buffer = NULL;
319 #endif
320
321     ciov = auio->uio_iov;
322     pp = (struct page*) ciov->iov_base;
323     iovmax = auio->uio_iovcnt - 1;
324     iovno = iovoff = result = 0;        
325     do {
326
327         COND_GUNLOCK(locked);
328         code = rx_Read(acall, (char *)&length, sizeof(afs_int32));
329         COND_RE_GLOCK(locked);
330
331         if (code != sizeof(afs_int32)) {
332             result = 0;
333             afs_warn("Preread error. code: %d instead of %d\n",
334                 code, sizeof(afs_int32));
335             unlock_pages(auio);
336             goto done;
337         } else
338             length = ntohl(length);             
339                                         
340         /*
341          * The fetch protocol is extended for the AFS/DFS translator
342          * to allow multiple blocks of data, each with its own length,
343          * to be returned. As long as the top bit is set, there are more
344          * blocks expected.
345          *
346          * We do not do this for AFS file servers because they sometimes
347          * return large negative numbers as the transfer size.
348          */
349         if (avc->f.states & CForeign) {
350             moredata = length & 0x80000000;
351             length &= ~0x80000000;
352         } else {
353             moredata = 0;
354         }
355                                 
356         while (length > 0) {
357
358             clen = ciov->iov_len - iovoff; 
359             tlen = afs_min(length, clen);
360 #ifdef AFS_LINUX24_ENV
361 #ifndef AFS_KMAP_ATOMIC
362             if(pp)
363                 address = kmap(pp);
364             else { 
365                 /* rx doesn't provide an interface to simply advance
366                    or consume n bytes.  for now, allocate a PAGE_SIZE 
367                    region of memory to receive bytes in the case that 
368                    there were holes in readpages */
369                 if(page_buffer == NULL)
370                     page_buffer = osi_Alloc(PAGE_SIZE);
371                     address = page_buffer;
372                 }
373 #else
374             address = page_buffer;
375 #endif
376 #else
377 #ifndef UKERNEL
378 #error AFS_CACHE_BYPASS not implemented on this platform
379 #endif
380 #endif /* LINUX24 */
381             COND_GUNLOCK(locked);
382             code = rx_Read(acall, address, tlen);
383             COND_RE_GLOCK(locked);
384                 
385             if (code < 0) {
386                 afs_warn("afs_NoCacheFetchProc: rx_Read error. Return code was %d\n", code);
387                 result = 0;
388                 unlock_pages(auio);
389                 goto done;
390             } else if (code == 0) {
391                 result = 0;
392                 afs_warn("afs_NoCacheFetchProc: rx_Read returned zero. Aborting.\n");
393                 unlock_pages(auio);
394                 goto done;
395             }
396             length -= code;
397             tlen -= code;
398                 
399             if(tlen > 0) {
400                 iovoff += code;
401                 address += code;
402             } else {
403 #ifdef AFS_LINUX24_ENV
404 #ifdef AFS_KMAP_ATOMIC
405                 if(pp) {
406                     address = kmap_atomic(pp, KM_USER0);
407                     memcpy(address, page_buffer, PAGE_SIZE);
408                     kunmap_atomic(address, KM_USER0);
409                 }
410 #endif
411 #else
412 #ifndef UKERNEL
413 #error AFS_CACHE_BYPASS not implemented on this platform
414 #endif
415 #endif /* LINUX 24 */
416                 /* we filled a page, conditionally release it */
417                 if (release_pages && ciov->iov_base) {
418                     /* this is appropriate when no caller intends to unlock
419                      * and release the page */
420 #ifdef AFS_LINUX24_ENV
421                     SetPageUptodate(pp);
422                     if(PageLocked(pp))
423                         UnlockPage(pp);
424                     else
425                         afs_warn("afs_NoCacheFetchProc: page not locked at iovno %d!\n", iovno);
426 #ifndef AFS_KMAP_ATOMIC
427                     kunmap(pp);
428 #endif
429 #else
430 #ifndef UKERNEL
431 #error AFS_CACHE_BYPASS not implemented on this platform
432 #endif
433 #endif /* LINUX24 */
434                 }
435                 /* and carry uio_iov */
436                 iovno++;
437                 if (iovno > iovmax)
438                     goto done;
439                         
440                 ciov = (auio->uio_iov + iovno);
441                 pp = (struct page*) ciov->iov_base;
442                 iovoff = 0;
443             }
444         }
445     } while (moredata);
446         
447 done:
448     if(page_buffer)
449         osi_Free(page_buffer, PAGE_SIZE);
450     return result;
451 }
452
453
454 /* dispatch a no-cache read request */
455 afs_int32
456 afs_ReadNoCache(register struct vcache *avc, 
457                 register struct nocache_read_request *bparms,
458                 afs_ucred_t *acred)
459 {
460     afs_int32 code;
461     afs_int32 bcnt;
462     struct brequest *breq;
463     struct vrequest *areq;
464                 
465     /* the reciever will free this */
466     areq = osi_Alloc(sizeof(struct vrequest));
467         
468     if (avc && avc->vc_error) {
469         code = EIO;
470         afs_warn("afs_ReadNoCache VCache Error!\n");
471         goto cleanup;
472     }
473     if ((code = afs_InitReq(areq, acred))) {
474         afs_warn("afs_ReadNoCache afs_InitReq error!\n");
475         goto cleanup;
476     }
477
478     AFS_GLOCK();                
479     code = afs_VerifyVCache(avc, areq);
480     AFS_GUNLOCK();
481         
482     if (code) {
483         code = afs_CheckCode(code, areq, 11);   /* failed to get it */
484         afs_warn("afs_ReadNoCache Failed to verify VCache!\n");
485         goto cleanup;
486     }
487         
488     bparms->areq = areq;
489         
490     /* and queue this one */
491     bcnt = 1;
492     AFS_GLOCK();
493     while(bcnt < 20) {
494         breq = afs_BQueue(BOP_FETCH_NOCACHE, avc, B_DONTWAIT, 0, acred, 1, 1,
495                           bparms);
496         if(breq != 0) {
497             code = 0;
498             break;
499         }
500         afs_osi_Wait(10 * bcnt, 0, 0);
501     }
502     AFS_GUNLOCK();
503     
504     if(!breq) {
505         code = EBUSY;
506         goto cleanup;
507     }
508
509     return code;
510
511 cleanup:
512     /* If there's a problem before we queue the request, we need to
513      * do everything that would normally happen when the request was
514      * processed, like unlocking the pages and freeing memory.
515      */
516 #ifdef AFS_LINUX24_ENV
517     unlock_pages(bparms->auio);
518 #else
519 #ifndef UKERNEL
520 #error AFS_CACHE_BYPASS not implemented on this platform
521 #endif
522 #endif
523     osi_Free(areq, sizeof(struct vrequest));
524     osi_Free(bparms->auio->uio_iov,
525              bparms->auio->uio_iovcnt * sizeof(struct iovec));
526     osi_Free(bparms->auio, sizeof(uio_t));
527     osi_Free(bparms, sizeof(struct nocache_read_request));
528     return code;
529 }
530
531
532 /* Cannot have static linkage--called from BPrefetch (afs_daemons) */
533 afs_int32
534 afs_PrefetchNoCache(register struct vcache *avc, 
535                     register afs_ucred_t *acred,
536                     register struct nocache_read_request *bparms)
537 {
538     uio_t *auio;
539     struct iovec *iovecp;
540     struct vrequest *areq;
541     afs_int32 code, length_hi, bytes, locked;    
542         
543     register struct afs_conn *tc;
544     afs_int32 i;
545     struct rx_call *tcall;
546     struct tlocal1 {
547         struct AFSVolSync tsync;
548         struct AFSFetchStatus OutStatus;
549         struct AFSCallBack CallBack;
550     };
551     struct tlocal1 *tcallspec;  
552                         
553     auio = bparms->auio;
554     areq = bparms->areq;
555     iovecp = auio->uio_iov;     
556         
557     tcallspec = (struct tlocal1 *) osi_Alloc(sizeof(struct tlocal1));
558     do {
559         tc = afs_Conn(&avc->f.fid, areq, SHARED_LOCK /* ignored */);
560         if (tc) {
561             avc->callback = tc->srvr->server;
562             i = osi_Time();
563             tcall = rx_NewCall(tc->id);
564 #ifdef AFS_64BIT_CLIENT
565             if (!afs_serverHasNo64Bit(tc)) {
566                 code = StartRXAFS_FetchData64(tcall,
567                                               (struct AFSFid *) &avc->f.fid.Fid,
568                                               auio->uio_offset,
569                                               bparms->length);
570                 if (code == 0) {
571                     COND_GUNLOCK(locked);
572                     bytes = rx_Read(tcall, (char *)&length_hi,
573                                     sizeof(afs_int32));
574                     COND_RE_GLOCK(locked);
575                                         
576                     if (bytes != sizeof(afs_int32)) {
577                         length_hi = 0;
578                         code = rx_Error(tcall);
579                         COND_GUNLOCK(locked);
580                         code = rx_EndCall(tcall, code);
581                         COND_RE_GLOCK(locked);
582                         tcall = NULL;
583                     }
584                 }
585                 if (code == RXGEN_OPCODE || afs_serverHasNo64Bit(tc)) {
586                     if (auio->uio_offset > 0x7FFFFFFF) {
587                         code = EFBIG;
588                     } else {
589                         afs_int32 pos;
590                         pos = auio->uio_offset;
591                         COND_GUNLOCK(locked);
592                         if (!tcall)
593                             tcall = rx_NewCall(tc->id);
594                         code = StartRXAFS_FetchData(tcall,
595                                               (struct AFSFid *) &avc->f.fid.Fid,
596                                               pos, bparms->length);
597                         COND_RE_GLOCK(locked);
598                     }
599                     afs_serverSetNo64Bit(tc);
600                 }
601             } /* afs_serverHasNo64Bit */
602 #else
603             code = StartRXAFS_FetchData(tcall,
604                                         (struct AFSFid *) &avc->f.fid.Fid,
605                                         auio->uio_offset, bparms->length);
606 #endif
607             if (code == 0) {
608                 code = afs_NoCacheFetchProc(tcall, avc, auio,
609                                             1 /* release_pages */);
610             } else {
611                 afs_warn("BYPASS: StartRXAFS_FetchData failed: %d\n", code);
612                 unlock_pages(auio);
613                 goto done;
614             }
615             if (code == 0) {
616                 code = EndRXAFS_FetchData(tcall, &tcallspec->OutStatus,
617                                           &tcallspec->CallBack,
618                                           &tcallspec->tsync);
619             } else {
620                 afs_warn("BYPASS: NoCacheFetchProc failed: %d\n", code);
621             }
622             code = rx_EndCall(tcall, code);
623         } else {
624             afs_warn("BYPASS: No connection.\n");
625             code = -1;
626 #ifdef AFS_LINUX24_ENV
627             unlock_pages(auio);
628 #else
629 #ifndef UKERNEL
630 #error AFS_CACHE_BYPASS not implemented on this platform
631 #endif
632 #endif
633             goto done;
634         }
635     } while (afs_Analyze(tc, code, &avc->f.fid, areq,
636                                                  AFS_STATS_FS_RPCIDX_FETCHDATA,
637                                                  SHARED_LOCK,0));
638 done:
639     /*
640      * Copy appropriate fields into vcache
641      */
642
643     afs_ProcessFS(avc, &tcallspec->OutStatus, areq);
644
645     osi_Free(areq, sizeof(struct vrequest));
646     osi_Free(tcallspec, sizeof(struct tlocal1));
647     osi_Free(iovecp, auio->uio_iovcnt * sizeof(struct iovec));  
648     osi_Free(bparms, sizeof(struct nocache_read_request));
649     osi_Free(auio, sizeof(uio_t));
650     return code;
651 }
652
653 #endif /* AFS_CACHE_BYPASS */