Linux: Prevent some fakestat data inconsistencies
[openafs.git] / src / afs / LINUX / osi_vnodeops.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Linux specific vnodeops. Also includes the glue routines required to call
12  * AFS vnodeops.
13  *
14  * So far the only truly scary part is that Linux relies on the inode cache
15  * to be up to date. Don't you dare break a callback and expect an fstat
16  * to give you meaningful information. This appears to be fixed in the 2.1
17  * development kernels. As it is we can fix this now by intercepting the 
18  * stat calls.
19  */
20
21 #include <afsconfig.h>
22 #include "afs/param.h"
23
24
25 #include "afs/sysincludes.h"
26 #include "afsincludes.h"
27 #include "afs/afs_stats.h"
28 #include <linux/mm.h>
29 #ifdef HAVE_MM_INLINE_H
30 #include <linux/mm_inline.h>
31 #endif
32 #include <linux/pagemap.h>
33 #include <linux/writeback.h>
34 #include <linux/pagevec.h>
35 #include <linux/aio.h>
36 #include "afs/lock.h"
37 #include "afs/afs_bypasscache.h"
38
39 #include "osi_compat.h"
40 #include "osi_pagecopy.h"
41
42 #ifndef HAVE_LINUX_PAGEVEC_LRU_ADD_FILE
43 #define __pagevec_lru_add_file __pagevec_lru_add
44 #endif
45
46 #ifndef MAX_ERRNO
47 #define MAX_ERRNO 1000L
48 #endif
49
50 int cachefs_noreadpage = 0;
51
52 extern struct backing_dev_info *afs_backing_dev_info;
53
54 extern struct vcache *afs_globalVp;
55
56 /* This function converts a positive error code from AFS into a negative
57  * code suitable for passing into the Linux VFS layer. It checks that the
58  * error code is within the permissable bounds for the ERR_PTR mechanism.
59  *
60  * _All_ error codes which come from the AFS layer should be passed through
61  * this function before being returned to the kernel.
62  */
63
64 static inline int
65 afs_convert_code(int code) {
66     if ((code >= 0) && (code <= MAX_ERRNO))
67         return -code;
68     else
69         return -EIO;
70 }
71
72 /* Linux doesn't require a credp for many functions, and crref is an expensive
73  * operation. This helper function avoids obtaining it for VerifyVCache calls
74  */
75
76 static inline int
77 afs_linux_VerifyVCache(struct vcache *avc, cred_t **retcred) {
78     cred_t *credp = NULL;
79     struct vrequest treq;
80     int code;
81
82     if (avc->f.states & CStatd) {
83         if (retcred)
84             *retcred = NULL;
85         return 0;
86     }
87
88     credp = crref();
89
90     code = afs_InitReq(&treq, credp);
91     if (code == 0)
92         code = afs_VerifyVCache2(avc, &treq);
93
94     if (retcred != NULL)
95         *retcred = credp;
96     else
97         crfree(credp);
98
99     return afs_convert_code(code);
100 }
101
102 #ifdef HAVE_LINUX_GENERIC_FILE_AIO_READ
103 # ifdef LINUX_HAS_NONVECTOR_AIO
104 static ssize_t
105 afs_linux_aio_read(struct kiocb *iocb, char __user *buf, size_t bufsize,
106                    loff_t pos)
107 # else
108 static ssize_t
109 afs_linux_aio_read(struct kiocb *iocb, const struct iovec *buf,
110                    unsigned long bufsize, loff_t pos)
111 # endif
112 {
113     struct file *fp = iocb->ki_filp;
114     ssize_t code = 0;
115     struct vcache *vcp = VTOAFS(fp->f_dentry->d_inode);
116
117     AFS_GLOCK();
118     afs_Trace4(afs_iclSetp, CM_TRACE_AIOREADOP, ICL_TYPE_POINTER, vcp,
119                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(pos), ICL_TYPE_INT32,
120                (afs_int32)bufsize, ICL_TYPE_INT32, 99999);
121     code = afs_linux_VerifyVCache(vcp, NULL);
122
123     if (code == 0) {
124         /* Linux's FlushPages implementation doesn't ever use credp,
125          * so we optimise by not using it */
126         osi_FlushPages(vcp, NULL);      /* ensure stale pages are gone */
127         AFS_GUNLOCK();
128         code = generic_file_aio_read(iocb, buf, bufsize, pos);
129         AFS_GLOCK();
130     }
131
132     afs_Trace4(afs_iclSetp, CM_TRACE_AIOREADOP, ICL_TYPE_POINTER, vcp,
133                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(pos), ICL_TYPE_INT32,
134                (afs_int32)bufsize, ICL_TYPE_INT32, code);
135     AFS_GUNLOCK();
136     return code;
137 }
138 #else
139 static ssize_t
140 afs_linux_read(struct file *fp, char *buf, size_t count, loff_t * offp)
141 {
142     ssize_t code = 0;
143     struct vcache *vcp = VTOAFS(fp->f_dentry->d_inode);
144
145     AFS_GLOCK();
146     afs_Trace4(afs_iclSetp, CM_TRACE_READOP, ICL_TYPE_POINTER, vcp,
147                ICL_TYPE_OFFSET, offp, ICL_TYPE_INT32, count, ICL_TYPE_INT32,
148                99999);
149     code = afs_linux_VerifyVCache(vcp, NULL);
150
151     if (code == 0) {
152         /* Linux's FlushPages implementation doesn't ever use credp,
153          * so we optimise by not using it */
154         osi_FlushPages(vcp, NULL);      /* ensure stale pages are gone */
155         AFS_GUNLOCK();
156         code = do_sync_read(fp, buf, count, offp);
157         AFS_GLOCK();
158     }
159
160     afs_Trace4(afs_iclSetp, CM_TRACE_READOP, ICL_TYPE_POINTER, vcp,
161                ICL_TYPE_OFFSET, offp, ICL_TYPE_INT32, count, ICL_TYPE_INT32,
162                code);
163     AFS_GUNLOCK();
164     return code;
165 }
166 #endif
167
168
169 /* Now we have integrated VM for writes as well as reads. the generic write operations
170  * also take care of re-positioning the pointer if file is open in append
171  * mode. Call fake open/close to ensure we do writes of core dumps.
172  */
173 #ifdef HAVE_LINUX_GENERIC_FILE_AIO_READ
174 # ifdef LINUX_HAS_NONVECTOR_AIO
175 static ssize_t
176 afs_linux_aio_write(struct kiocb *iocb, const char __user *buf, size_t bufsize,
177                     loff_t pos)
178 # else
179 static ssize_t
180 afs_linux_aio_write(struct kiocb *iocb, const struct iovec *buf,
181                     unsigned long bufsize, loff_t pos)
182 # endif
183 {
184     ssize_t code = 0;
185     struct vcache *vcp = VTOAFS(iocb->ki_filp->f_dentry->d_inode);
186     cred_t *credp;
187
188     AFS_GLOCK();
189
190     afs_Trace4(afs_iclSetp, CM_TRACE_AIOWRITEOP, ICL_TYPE_POINTER, vcp,
191                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(pos), ICL_TYPE_INT32,
192                (afs_int32)bufsize, ICL_TYPE_INT32,
193                (iocb->ki_filp->f_flags & O_APPEND) ? 99998 : 99999);
194
195     code = afs_linux_VerifyVCache(vcp, &credp);
196
197     ObtainWriteLock(&vcp->lock, 529);
198     afs_FakeOpen(vcp);
199     ReleaseWriteLock(&vcp->lock);
200     if (code == 0) {
201             AFS_GUNLOCK();
202             code = generic_file_aio_write(iocb, buf, bufsize, pos);
203             AFS_GLOCK();
204     }
205
206     ObtainWriteLock(&vcp->lock, 530);
207
208     if (vcp->execsOrWriters == 1 && !credp)
209       credp = crref();
210
211     afs_FakeClose(vcp, credp);
212     ReleaseWriteLock(&vcp->lock);
213
214     afs_Trace4(afs_iclSetp, CM_TRACE_AIOWRITEOP, ICL_TYPE_POINTER, vcp,
215                ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(pos), ICL_TYPE_INT32,
216                (afs_int32)bufsize, ICL_TYPE_INT32, code);
217
218     if (credp)
219       crfree(credp);
220     AFS_GUNLOCK();
221     return code;
222 }
223 #else
224 static ssize_t
225 afs_linux_write(struct file *fp, const char *buf, size_t count, loff_t * offp)
226 {
227     ssize_t code = 0;
228     struct vcache *vcp = VTOAFS(fp->f_dentry->d_inode);
229     cred_t *credp;
230
231     AFS_GLOCK();
232
233     afs_Trace4(afs_iclSetp, CM_TRACE_WRITEOP, ICL_TYPE_POINTER, vcp,
234                ICL_TYPE_OFFSET, offp, ICL_TYPE_INT32, count, ICL_TYPE_INT32,
235                (fp->f_flags & O_APPEND) ? 99998 : 99999);
236
237     code = afs_linux_VerifyVCache(vcp, &credp);
238
239     ObtainWriteLock(&vcp->lock, 529);
240     afs_FakeOpen(vcp);
241     ReleaseWriteLock(&vcp->lock);
242     if (code == 0) {
243             AFS_GUNLOCK();
244             code = do_sync_write(fp, buf, count, offp);
245             AFS_GLOCK();
246     }
247
248     ObtainWriteLock(&vcp->lock, 530);
249
250     if (vcp->execsOrWriters == 1 && !credp)
251       credp = crref();
252
253     afs_FakeClose(vcp, credp);
254     ReleaseWriteLock(&vcp->lock);
255
256     afs_Trace4(afs_iclSetp, CM_TRACE_WRITEOP, ICL_TYPE_POINTER, vcp,
257                ICL_TYPE_OFFSET, offp, ICL_TYPE_INT32, count, ICL_TYPE_INT32,
258                code);
259
260     if (credp)
261       crfree(credp);
262     AFS_GUNLOCK();
263     return code;
264 }
265 #endif
266
267 extern int BlobScan(struct dcache * afile, afs_int32 ablob);
268
269 /* This is a complete rewrite of afs_readdir, since we can make use of
270  * filldir instead of afs_readdir_move. Note that changes to vcache/dcache
271  * handling and use of bulkstats will need to be reflected here as well.
272  */
273 static int
274 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
275 afs_linux_readdir(struct file *fp, struct dir_context *ctx)
276 #else
277 afs_linux_readdir(struct file *fp, void *dirbuf, filldir_t filldir)
278 #endif
279 {
280     struct vcache *avc = VTOAFS(FILE_INODE(fp));
281     struct vrequest treq;
282     struct dcache *tdc;
283     int code;
284     int offset;
285     int dirpos;
286     struct DirEntry *de;
287     struct DirBuffer entry;
288     ino_t ino;
289     int len;
290     afs_size_t origOffset, tlen;
291     cred_t *credp = crref();
292     struct afs_fakestat_state fakestat;
293
294     AFS_GLOCK();
295     AFS_STATCNT(afs_readdir);
296
297     code = afs_convert_code(afs_InitReq(&treq, credp));
298     crfree(credp);
299     if (code)
300         goto out1;
301
302     afs_InitFakeStat(&fakestat);
303     code = afs_convert_code(afs_EvalFakeStat(&avc, &fakestat, &treq));
304     if (code)
305         goto out;
306
307     /* update the cache entry */
308   tagain:
309     code = afs_convert_code(afs_VerifyVCache2(avc, &treq));
310     if (code)
311         goto out;
312
313     /* get a reference to the entire directory */
314     tdc = afs_GetDCache(avc, (afs_size_t) 0, &treq, &origOffset, &tlen, 1);
315     len = tlen;
316     if (!tdc) {
317         code = -ENOENT;
318         goto out;
319     }
320     ObtainWriteLock(&avc->lock, 811);
321     ObtainReadLock(&tdc->lock);
322     /*
323      * Make sure that the data in the cache is current. There are two
324      * cases we need to worry about:
325      * 1. The cache data is being fetched by another process.
326      * 2. The cache data is no longer valid
327      */
328     while ((avc->f.states & CStatd)
329            && (tdc->dflags & DFFetching)
330            && hsame(avc->f.m.DataVersion, tdc->f.versionNo)) {
331         ReleaseReadLock(&tdc->lock);
332         ReleaseWriteLock(&avc->lock);
333         afs_osi_Sleep(&tdc->validPos);
334         ObtainWriteLock(&avc->lock, 812);
335         ObtainReadLock(&tdc->lock);
336     }
337     if (!(avc->f.states & CStatd)
338         || !hsame(avc->f.m.DataVersion, tdc->f.versionNo)) {
339         ReleaseReadLock(&tdc->lock);
340         ReleaseWriteLock(&avc->lock);
341         afs_PutDCache(tdc);
342         goto tagain;
343     }
344
345     /* Set the readdir-in-progress flag, and downgrade the lock
346      * to shared so others will be able to acquire a read lock.
347      */
348     avc->f.states |= CReadDir;
349     avc->dcreaddir = tdc;
350     avc->readdir_pid = MyPidxx2Pid(MyPidxx);
351     ConvertWToSLock(&avc->lock);
352
353     /* Fill in until we get an error or we're done. This implementation
354      * takes an offset in units of blobs, rather than bytes.
355      */
356     code = 0;
357 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
358     offset = ctx->pos;
359 #else
360     offset = (int) fp->f_pos;
361 #endif
362     while (1) {
363         dirpos = BlobScan(tdc, offset);
364         if (!dirpos)
365             break;
366
367         code = afs_dir_GetVerifiedBlob(tdc, dirpos, &entry);
368         if (code) {
369             if (!(avc->f.states & CCorrupt)) {
370                 struct cell *tc = afs_GetCellStale(avc->f.fid.Cell, READ_LOCK);
371                 afs_warn("Corrupt directory (%d.%d.%d.%d [%s] @%lx, pos %d)",
372                          avc->f.fid.Cell, avc->f.fid.Fid.Volume,
373                          avc->f.fid.Fid.Vnode, avc->f.fid.Fid.Unique,
374                          tc ? tc->cellName : "",
375                          (unsigned long)&tdc->f.inode, dirpos);
376                 if (tc)
377                     afs_PutCell(tc, READ_LOCK);
378                 UpgradeSToWLock(&avc->lock, 814);
379                 avc->f.states |= CCorrupt;
380             }
381             code = -ENOENT;
382             goto unlock_out;
383         }
384
385         de = (struct DirEntry *)entry.data;
386         ino = afs_calc_inum (avc->f.fid.Cell, avc->f.fid.Fid.Volume,
387                              ntohl(de->fid.vnode));
388         len = strlen(de->name);
389
390         /* filldir returns -EINVAL when the buffer is full. */
391         {
392             unsigned int type = DT_UNKNOWN;
393             struct VenusFid afid;
394             struct vcache *tvc;
395             int vtype;
396             afid.Cell = avc->f.fid.Cell;
397             afid.Fid.Volume = avc->f.fid.Fid.Volume;
398             afid.Fid.Vnode = ntohl(de->fid.vnode);
399             afid.Fid.Unique = ntohl(de->fid.vunique);
400             if ((avc->f.states & CForeign) == 0 && (ntohl(de->fid.vnode) & 1)) {
401                 type = DT_DIR;
402             } else if ((tvc = afs_FindVCache(&afid, 0, 0))) {
403                 if (tvc->mvstat) {
404                     type = DT_DIR;
405                 } else if (((tvc->f.states) & (CStatd | CTruth))) {
406                     /* CTruth will be set if the object has
407                      *ever* been statd */
408                     vtype = vType(tvc);
409                     if (vtype == VDIR)
410                         type = DT_DIR;
411                     else if (vtype == VREG)
412                         type = DT_REG;
413                     /* Don't do this until we're sure it can't be a mtpt */
414                     /* else if (vtype == VLNK)
415                      * type=DT_LNK; */
416                     /* what other types does AFS support? */
417                 }
418                 /* clean up from afs_FindVCache */
419                 afs_PutVCache(tvc);
420             }
421             /* 
422              * If this is NFS readdirplus, then the filler is going to
423              * call getattr on this inode, which will deadlock if we're
424              * holding the GLOCK.
425              */
426             AFS_GUNLOCK();
427 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
428             /* dir_emit returns a bool - true when it succeeds.
429              * Inverse the result to fit with how we check "code" */
430             code = !dir_emit(ctx, de->name, len, ino, type);
431 #else
432             code = (*filldir) (dirbuf, de->name, len, offset, ino, type);
433 #endif
434             AFS_GLOCK();
435         }
436         DRelease(&entry, 0);
437         if (code)
438             break;
439         offset = dirpos + 1 + ((len + 16) >> 5);
440     }
441     /* If filldir didn't fill in the last one this is still pointing to that
442      * last attempt.
443      */
444     code = 0;
445
446 unlock_out:
447 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
448     ctx->pos = (loff_t) offset;
449 #else
450     fp->f_pos = (loff_t) offset;
451 #endif
452     ReleaseReadLock(&tdc->lock);
453     afs_PutDCache(tdc);
454     UpgradeSToWLock(&avc->lock, 813);
455     avc->f.states &= ~CReadDir;
456     avc->dcreaddir = 0;
457     avc->readdir_pid = 0;
458     ReleaseSharedLock(&avc->lock);
459
460 out:
461     afs_PutFakeStat(&fakestat);
462 out1:
463     AFS_GUNLOCK();
464     return code;
465 }
466
467
468 /* in afs_pioctl.c */
469 extern int afs_xioctl(struct inode *ip, struct file *fp, unsigned int com,
470                       unsigned long arg);
471
472 #if defined(HAVE_UNLOCKED_IOCTL) || defined(HAVE_COMPAT_IOCTL)
473 static long afs_unlocked_xioctl(struct file *fp, unsigned int com,
474                                unsigned long arg) {
475     return afs_xioctl(FILE_INODE(fp), fp, com, arg);
476
477 }
478 #endif
479
480
481 static int
482 afs_linux_mmap(struct file *fp, struct vm_area_struct *vmap)
483 {
484     struct vcache *vcp = VTOAFS(FILE_INODE(fp));
485     int code;
486
487     AFS_GLOCK();
488     afs_Trace3(afs_iclSetp, CM_TRACE_GMAP, ICL_TYPE_POINTER, vcp,
489                ICL_TYPE_POINTER, vmap->vm_start, ICL_TYPE_INT32,
490                vmap->vm_end - vmap->vm_start);
491
492     /* get a validated vcache entry */
493     code = afs_linux_VerifyVCache(vcp, NULL);
494
495     if (code == 0) {
496         /* Linux's Flushpage implementation doesn't use credp, so optimise
497          * our code to not need to crref() it */
498         osi_FlushPages(vcp, NULL); /* ensure stale pages are gone */
499         AFS_GUNLOCK();
500         code = generic_file_mmap(fp, vmap);
501         AFS_GLOCK();
502         if (!code)
503             vcp->f.states |= CMAPPED;
504     }
505     AFS_GUNLOCK();
506
507     return code;
508 }
509
510 static int
511 afs_linux_open(struct inode *ip, struct file *fp)
512 {
513     struct vcache *vcp = VTOAFS(ip);
514     cred_t *credp = crref();
515     int code;
516
517     AFS_GLOCK();
518     code = afs_open(&vcp, fp->f_flags, credp);
519     AFS_GUNLOCK();
520
521     crfree(credp);
522     return afs_convert_code(code);
523 }
524
525 static int
526 afs_linux_release(struct inode *ip, struct file *fp)
527 {
528     struct vcache *vcp = VTOAFS(ip);
529     cred_t *credp = crref();
530     int code = 0;
531
532     AFS_GLOCK();
533     code = afs_close(vcp, fp->f_flags, credp);
534     ObtainWriteLock(&vcp->lock, 807);
535     if (vcp->cred) {
536         crfree(vcp->cred);
537         vcp->cred = NULL;
538     }
539     ReleaseWriteLock(&vcp->lock);
540     AFS_GUNLOCK();
541
542     crfree(credp);
543     return afs_convert_code(code);
544 }
545
546 static int
547 #if defined(FOP_FSYNC_TAKES_DENTRY)
548 afs_linux_fsync(struct file *fp, struct dentry *dp, int datasync)
549 #elif defined(FOP_FSYNC_TAKES_RANGE)
550 afs_linux_fsync(struct file *fp, loff_t start, loff_t end, int datasync)
551 #else
552 afs_linux_fsync(struct file *fp, int datasync)
553 #endif
554 {
555     int code;
556     struct inode *ip = FILE_INODE(fp);
557     cred_t *credp = crref();
558
559 #if defined(FOP_FSYNC_TAKES_RANGE)
560     mutex_lock(&ip->i_mutex);
561 #endif
562     AFS_GLOCK();
563     code = afs_fsync(VTOAFS(ip), credp);
564     AFS_GUNLOCK();
565 #if defined(FOP_FSYNC_TAKES_RANGE)
566     mutex_unlock(&ip->i_mutex);
567 #endif
568     crfree(credp);
569     return afs_convert_code(code);
570
571 }
572
573
574 static int
575 afs_linux_lock(struct file *fp, int cmd, struct file_lock *flp)
576 {
577     int code = 0;
578     struct vcache *vcp = VTOAFS(FILE_INODE(fp));
579     cred_t *credp = crref();
580     struct AFS_FLOCK flock;
581     
582     /* Convert to a lock format afs_lockctl understands. */
583     memset(&flock, 0, sizeof(flock));
584     flock.l_type = flp->fl_type;
585     flock.l_pid = flp->fl_pid;
586     flock.l_whence = 0;
587     flock.l_start = flp->fl_start;
588     if (flp->fl_end == OFFSET_MAX)
589         flock.l_len = 0; /* Lock to end of file */
590     else
591         flock.l_len = flp->fl_end - flp->fl_start + 1;
592
593     /* Safe because there are no large files, yet */
594 #if defined(F_GETLK64) && (F_GETLK != F_GETLK64)
595     if (cmd == F_GETLK64)
596         cmd = F_GETLK;
597     else if (cmd == F_SETLK64)
598         cmd = F_SETLK;
599     else if (cmd == F_SETLKW64)
600         cmd = F_SETLKW;
601 #endif /* F_GETLK64 && F_GETLK != F_GETLK64 */
602
603     AFS_GLOCK();
604     if ((vcp->f.states & CRO)) {
605         if (flp->fl_type == F_WRLCK) {
606             code = EBADF;
607         } else {
608             code = 0;
609         }
610         AFS_GUNLOCK();
611         crfree(credp);
612         return code;
613     }
614     code = afs_convert_code(afs_lockctl(vcp, &flock, cmd, credp));
615     AFS_GUNLOCK();
616
617     if ((code == 0 || flp->fl_type == F_UNLCK) && 
618         (cmd == F_SETLK || cmd == F_SETLKW)) {
619         code = afs_posix_lock_file(fp, flp);
620         if (code && flp->fl_type != F_UNLCK) {
621             struct AFS_FLOCK flock2;
622             flock2 = flock;
623             flock2.l_type = F_UNLCK;
624             AFS_GLOCK();
625             afs_lockctl(vcp, &flock2, F_SETLK, credp);
626             AFS_GUNLOCK();
627         }
628     }
629     /* If lockctl says there are no conflicting locks, then also check with the
630      * kernel, as lockctl knows nothing about byte range locks
631      */
632     if (code == 0 && cmd == F_GETLK && flock.l_type == F_UNLCK) {
633         afs_posix_test_lock(fp, flp);
634         /* If we found a lock in the kernel's structure, return it */
635         if (flp->fl_type != F_UNLCK) {
636             crfree(credp);
637             return 0;
638         }
639     }
640     
641     /* Convert flock back to Linux's file_lock */
642     flp->fl_type = flock.l_type;
643     flp->fl_pid = flock.l_pid;
644     flp->fl_start = flock.l_start;
645     if (flock.l_len == 0)
646         flp->fl_end = OFFSET_MAX; /* Lock to end of file */
647     else
648         flp->fl_end = flock.l_start + flock.l_len - 1;
649
650     crfree(credp);
651     return code;
652 }
653
654 #ifdef STRUCT_FILE_OPERATIONS_HAS_FLOCK
655 static int
656 afs_linux_flock(struct file *fp, int cmd, struct file_lock *flp) {
657     int code = 0;
658     struct vcache *vcp = VTOAFS(FILE_INODE(fp));
659     cred_t *credp = crref();
660     struct AFS_FLOCK flock;
661     /* Convert to a lock format afs_lockctl understands. */
662     memset(&flock, 0, sizeof(flock));
663     flock.l_type = flp->fl_type;
664     flock.l_pid = flp->fl_pid;
665     flock.l_whence = 0;
666     flock.l_start = 0;
667     flock.l_len = 0;
668
669     /* Safe because there are no large files, yet */
670 #if defined(F_GETLK64) && (F_GETLK != F_GETLK64)
671     if (cmd == F_GETLK64)
672         cmd = F_GETLK;
673     else if (cmd == F_SETLK64)
674         cmd = F_SETLK;
675     else if (cmd == F_SETLKW64)
676         cmd = F_SETLKW;
677 #endif /* F_GETLK64 && F_GETLK != F_GETLK64 */
678
679     AFS_GLOCK();
680     code = afs_convert_code(afs_lockctl(vcp, &flock, cmd, credp));
681     AFS_GUNLOCK();
682
683     if ((code == 0 || flp->fl_type == F_UNLCK) && 
684         (cmd == F_SETLK || cmd == F_SETLKW)) {
685         flp->fl_flags &=~ FL_SLEEP;
686         code = flock_lock_file_wait(fp, flp);
687         if (code && flp->fl_type != F_UNLCK) {
688             struct AFS_FLOCK flock2;
689             flock2 = flock;
690             flock2.l_type = F_UNLCK;
691             AFS_GLOCK();
692             afs_lockctl(vcp, &flock2, F_SETLK, credp);
693             AFS_GUNLOCK();
694         }
695     }
696     /* Convert flock back to Linux's file_lock */
697     flp->fl_type = flock.l_type;
698     flp->fl_pid = flock.l_pid;
699
700     crfree(credp);
701     return code;
702 }
703 #endif
704
705 /* afs_linux_flush
706  * essentially the same as afs_fsync() but we need to get the return
707  * code for the sys_close() here, not afs_linux_release(), so call
708  * afs_StoreAllSegments() with AFS_LASTSTORE
709  */
710 static int
711 #if defined(FOP_FLUSH_TAKES_FL_OWNER_T)
712 afs_linux_flush(struct file *fp, fl_owner_t id)
713 #else
714 afs_linux_flush(struct file *fp)
715 #endif
716 {
717     struct vrequest treq;
718     struct vcache *vcp;
719     cred_t *credp;
720     int code;
721     int bypasscache = 0;
722
723     AFS_GLOCK();
724
725     if ((fp->f_flags & O_ACCMODE) == O_RDONLY) { /* readers dont flush */
726         AFS_GUNLOCK();
727         return 0;
728     }
729
730     AFS_DISCON_LOCK();
731
732     credp = crref();
733     vcp = VTOAFS(FILE_INODE(fp));
734
735     code = afs_InitReq(&treq, credp);
736     if (code)
737         goto out;
738     /* If caching is bypassed for this file, or globally, just return 0 */
739     if (cache_bypass_strategy == ALWAYS_BYPASS_CACHE)
740         bypasscache = 1;
741     else {
742         ObtainReadLock(&vcp->lock);
743         if (vcp->cachingStates & FCSBypass)
744             bypasscache = 1;
745         ReleaseReadLock(&vcp->lock);
746     }
747     if (bypasscache) {
748         /* future proof: don't rely on 0 return from afs_InitReq */
749         code = 0;
750         goto out;
751     }
752
753     ObtainSharedLock(&vcp->lock, 535);
754     if ((vcp->execsOrWriters > 0) && (file_count(fp) == 1)) {
755         UpgradeSToWLock(&vcp->lock, 536);
756         if (!AFS_IS_DISCONNECTED) {
757                 code = afs_StoreAllSegments(vcp,
758                                 &treq,
759                                 AFS_SYNC | AFS_LASTSTORE);
760         } else {
761                 afs_DisconAddDirty(vcp, VDisconWriteOsiFlush, 1);
762         }
763         ConvertWToSLock(&vcp->lock);
764     }
765     code = afs_CheckCode(code, &treq, 54);
766     ReleaseSharedLock(&vcp->lock);
767
768 out:
769     AFS_DISCON_UNLOCK();
770     AFS_GUNLOCK();
771
772     crfree(credp);
773     return afs_convert_code(code);
774 }
775
776 struct file_operations afs_dir_fops = {
777   .read =       generic_read_dir,
778 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
779   .iterate =    afs_linux_readdir,
780 #else
781   .readdir =    afs_linux_readdir,
782 #endif
783 #ifdef HAVE_UNLOCKED_IOCTL
784   .unlocked_ioctl = afs_unlocked_xioctl,
785 #else
786   .ioctl =      afs_xioctl,
787 #endif
788 #ifdef HAVE_COMPAT_IOCTL
789   .compat_ioctl = afs_unlocked_xioctl,
790 #endif
791   .open =       afs_linux_open,
792   .release =    afs_linux_release,
793   .llseek =     default_llseek,
794 #ifdef HAVE_LINUX_NOOP_FSYNC
795   .fsync =      noop_fsync,
796 #else
797   .fsync =      simple_sync_file,
798 #endif
799 };
800
801 struct file_operations afs_file_fops = {
802 #ifdef HAVE_LINUX_GENERIC_FILE_AIO_READ
803   .aio_read =   afs_linux_aio_read,
804   .aio_write =  afs_linux_aio_write,
805   .read =       do_sync_read,
806   .write =      do_sync_write,
807 #else
808   .read =       afs_linux_read,
809   .write =      afs_linux_write,
810 #endif
811 #ifdef HAVE_UNLOCKED_IOCTL
812   .unlocked_ioctl = afs_unlocked_xioctl,
813 #else
814   .ioctl =      afs_xioctl,
815 #endif
816 #ifdef HAVE_COMPAT_IOCTL
817   .compat_ioctl = afs_unlocked_xioctl,
818 #endif
819   .mmap =       afs_linux_mmap,
820   .open =       afs_linux_open,
821   .flush =      afs_linux_flush,
822 #if defined(STRUCT_FILE_OPERATIONS_HAS_SENDFILE)
823   .sendfile =   generic_file_sendfile,
824 #endif
825 #if defined(STRUCT_FILE_OPERATIONS_HAS_SPLICE)
826   .splice_write = generic_file_splice_write,
827   .splice_read = generic_file_splice_read,
828 #endif
829   .release =    afs_linux_release,
830   .fsync =      afs_linux_fsync,
831   .lock =       afs_linux_lock,
832 #ifdef STRUCT_FILE_OPERATIONS_HAS_FLOCK
833   .flock =      afs_linux_flock,
834 #endif
835   .llseek =     default_llseek,
836 };
837
838 static struct dentry *
839 canonical_dentry(struct inode *ip)
840 {
841     struct vcache *vcp = VTOAFS(ip);
842     struct dentry *first = NULL, *ret = NULL, *cur;
843 #if defined(D_ALIAS_IS_HLIST) && !defined(HLIST_ITERATOR_NO_NODE)
844     struct hlist_node *p;
845 #endif
846
847     /* general strategy:
848      * if vcp->target_link is set, and can be found in ip->i_dentry, use that.
849      * otherwise, use the first dentry in ip->i_dentry.
850      * if ip->i_dentry is empty, use the 'dentry' argument we were given.
851      */
852     /* note that vcp->target_link specifies which dentry to use, but we have
853      * no reference held on that dentry. so, we cannot use or dereference
854      * vcp->target_link itself, since it may have been freed. instead, we only
855      * use it to compare to pointers in the ip->i_dentry list. */
856
857     d_prune_aliases(ip);
858
859 # ifdef HAVE_DCACHE_LOCK
860     spin_lock(&dcache_lock);
861 # else
862     spin_lock(&ip->i_lock);
863 # endif
864
865 #if defined(D_ALIAS_IS_HLIST)
866 # if defined(HLIST_ITERATOR_NO_NODE)
867     hlist_for_each_entry(cur, &ip->i_dentry, d_alias) {
868 # else
869     hlist_for_each_entry(cur, p, &ip->i_dentry, d_alias) {
870 # endif
871 #else
872     list_for_each_entry_reverse(cur, &ip->i_dentry, d_alias) {
873 #endif
874
875         if (!vcp->target_link || cur == vcp->target_link) {
876             ret = cur;
877             break;
878         }
879
880         if (!first) {
881             first = cur;
882         }
883     }
884     if (!ret && first) {
885         ret = first;
886     }
887
888     vcp->target_link = ret;
889
890 # ifdef HAVE_DCACHE_LOCK
891     if (ret) {
892         dget_locked(ret);
893     }
894     spin_unlock(&dcache_lock);
895 # else
896     if (ret) {
897         dget(ret);
898     }
899     spin_unlock(&ip->i_lock);
900 # endif
901
902     return ret;
903 }
904
905 /**********************************************************************
906  * AFS Linux dentry operations
907  **********************************************************************/
908
909 /* fix_bad_parent() : called if this dentry's vcache is a root vcache
910  * that has its mvid (parent dir's fid) pointer set to the wrong directory
911  * due to being mounted in multiple points at once. fix_bad_parent()
912  * calls afs_lookup() to correct the vcache's mvid, as well as the volume's
913  * dotdotfid and mtpoint fid members.
914  * Parameters:
915  *   dp - dentry to be checked.
916  *   credp - credentials
917  *   vcp, pvc - item's and parent's vcache pointer
918  * Return Values:
919  *   None.
920  * Sideeffects:
921  *   This dentry's vcache's mvid will be set to the correct parent directory's
922  *   fid.
923  *   This root vnode's volume will have its dotdotfid and mtpoint fids set
924  *   to the correct parent and mountpoint fids.
925  */
926
927 static inline void
928 fix_bad_parent(struct dentry *dp, cred_t *credp, struct vcache *vcp, struct vcache *pvc) 
929 {
930     struct vcache *avc = NULL;
931
932     /* force a lookup, so vcp->mvid is fixed up */
933     afs_lookup(pvc, (char *)dp->d_name.name, &avc, credp);
934     if (!avc || vcp != avc) {   /* bad, very bad.. */
935         afs_Trace4(afs_iclSetp, CM_TRACE_TMP_1S3L, ICL_TYPE_STRING,
936                    "check_bad_parent: bad pointer returned from afs_lookup origvc newvc dentry",
937                    ICL_TYPE_POINTER, vcp, ICL_TYPE_POINTER, avc,
938                    ICL_TYPE_POINTER, dp);
939     }
940     if (avc)
941         AFS_RELE(AFSTOV(avc));
942
943     return;
944 }
945
946 /* afs_linux_revalidate
947  * Ensure vcache is stat'd before use. Return 0 if entry is valid.
948  */
949 static int
950 afs_linux_revalidate(struct dentry *dp)
951 {
952     struct vattr vattr;
953     struct vcache *vcp = VTOAFS(dp->d_inode);
954     cred_t *credp;
955     int code;
956
957     if (afs_shuttingdown)
958         return EIO;
959
960     AFS_GLOCK();
961
962 #ifdef notyet
963     /* Make this a fast path (no crref), since it's called so often. */
964     if (vcp->states & CStatd) {
965         struct vcache *pvc = VTOAFS(dp->d_parent->d_inode);
966
967         if (*dp->d_name.name != '/' && vcp->mvstat == 2) {      /* root vnode */
968             if (vcp->mvid->Fid.Volume != pvc->fid.Fid.Volume) { /* bad parent */
969                 credp = crref();
970                 AFS_GLOCK();
971                 fix_bad_parent(dp);     /* check and correct mvid */
972                 AFS_GUNLOCK();
973                 crfree(credp);
974             }
975         }
976         return 0;
977     }
978 #endif
979
980     /* This avoids the crref when we don't have to do it. Watch for
981      * changes in afs_getattr that don't get replicated here!
982      */
983     if (vcp->f.states & CStatd &&
984         (!afs_fakestat_enable || vcp->mvstat != 1) &&
985         !afs_nfsexporter &&
986         (vType(vcp) == VDIR || vType(vcp) == VLNK)) {
987         code = afs_CopyOutAttrs(vcp, &vattr);
988     } else {
989         credp = crref();
990         code = afs_getattr(vcp, &vattr, credp);
991         crfree(credp);
992     }
993
994     if (!code)
995         afs_fill_inode(AFSTOV(vcp), &vattr);
996
997     AFS_GUNLOCK();
998
999     return afs_convert_code(code);
1000 }
1001
1002 /* vattr_setattr
1003  * Set iattr data into vattr. Assume vattr cleared before call.
1004  */
1005 static void
1006 iattr2vattr(struct vattr *vattrp, struct iattr *iattrp)
1007 {
1008     vattrp->va_mask = iattrp->ia_valid;
1009     if (iattrp->ia_valid & ATTR_MODE)
1010         vattrp->va_mode = iattrp->ia_mode;
1011     if (iattrp->ia_valid & ATTR_UID)
1012         vattrp->va_uid = afs_from_kuid(iattrp->ia_uid);
1013     if (iattrp->ia_valid & ATTR_GID)
1014         vattrp->va_gid = afs_from_kgid(iattrp->ia_gid);
1015     if (iattrp->ia_valid & ATTR_SIZE)
1016         vattrp->va_size = iattrp->ia_size;
1017     if (iattrp->ia_valid & ATTR_ATIME) {
1018         vattrp->va_atime.tv_sec = iattrp->ia_atime.tv_sec;
1019         vattrp->va_atime.tv_usec = 0;
1020     }
1021     if (iattrp->ia_valid & ATTR_MTIME) {
1022         vattrp->va_mtime.tv_sec = iattrp->ia_mtime.tv_sec;
1023         vattrp->va_mtime.tv_usec = 0;
1024     }
1025     if (iattrp->ia_valid & ATTR_CTIME) {
1026         vattrp->va_ctime.tv_sec = iattrp->ia_ctime.tv_sec;
1027         vattrp->va_ctime.tv_usec = 0;
1028     }
1029 }
1030
1031 /* vattr2inode
1032  * Rewrite the inode cache from the attr. Assumes all vattr fields are valid.
1033  */
1034 void
1035 vattr2inode(struct inode *ip, struct vattr *vp)
1036 {
1037     ip->i_ino = vp->va_nodeid;
1038 #ifdef HAVE_LINUX_SET_NLINK
1039     set_nlink(ip, vp->va_nlink);
1040 #else
1041     ip->i_nlink = vp->va_nlink;
1042 #endif
1043     ip->i_blocks = vp->va_blocks;
1044 #ifdef STRUCT_INODE_HAS_I_BLKBITS
1045     ip->i_blkbits = AFS_BLKBITS;
1046 #endif
1047 #ifdef STRUCT_INODE_HAS_I_BLKSIZE
1048     ip->i_blksize = vp->va_blocksize;
1049 #endif
1050     ip->i_rdev = vp->va_rdev;
1051     ip->i_mode = vp->va_mode;
1052     ip->i_uid = afs_make_kuid(vp->va_uid);
1053     ip->i_gid = afs_make_kgid(vp->va_gid);
1054     i_size_write(ip, vp->va_size);
1055     ip->i_atime.tv_sec = vp->va_atime.tv_sec;
1056     ip->i_atime.tv_nsec = 0;
1057     ip->i_mtime.tv_sec = vp->va_mtime.tv_sec;
1058     /* Set the mtime nanoseconds to the sysname generation number.
1059      * This convinces NFS clients that all directories have changed
1060      * any time the sysname list changes.
1061      */
1062     ip->i_mtime.tv_nsec = afs_sysnamegen;
1063     ip->i_ctime.tv_sec = vp->va_ctime.tv_sec;
1064     ip->i_ctime.tv_nsec = 0;
1065 }
1066
1067 /* afs_notify_change
1068  * Linux version of setattr call. What to change is in the iattr struct.
1069  * We need to set bits in both the Linux inode as well as the vcache.
1070  */
1071 static int
1072 afs_notify_change(struct dentry *dp, struct iattr *iattrp)
1073 {
1074     struct vattr vattr;
1075     cred_t *credp = crref();
1076     struct inode *ip = dp->d_inode;
1077     int code;
1078
1079     VATTR_NULL(&vattr);
1080     iattr2vattr(&vattr, iattrp);        /* Convert for AFS vnodeops call. */
1081
1082     AFS_GLOCK();
1083     code = afs_setattr(VTOAFS(ip), &vattr, credp);
1084     if (!code) {
1085         afs_getattr(VTOAFS(ip), &vattr, credp);
1086         vattr2inode(ip, &vattr);
1087     }
1088     AFS_GUNLOCK();
1089     crfree(credp);
1090     return afs_convert_code(code);
1091 }
1092
1093 static int
1094 afs_linux_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1095 {
1096         int err = afs_linux_revalidate(dentry);
1097         if (!err) {
1098                 generic_fillattr(dentry->d_inode, stat);
1099 }
1100         return err;
1101 }
1102
1103 static afs_uint32
1104 parent_vcache_dv(struct inode *inode, cred_t *credp)
1105 {
1106     int free_cred = 0;
1107     struct vcache *pvcp;
1108
1109     /*
1110      * If parent is a mount point and we are using fakestat, we may need
1111      * to look at the fake vcache entry instead of what the vfs is giving
1112      * us.  The fake entry is the one with the useful DataVersion.
1113      */
1114     pvcp = VTOAFS(inode);
1115     if (pvcp->mvstat == 1 && afs_fakestat_enable) {
1116         struct vrequest treq;
1117         struct afs_fakestat_state fakestate;
1118
1119         if (!credp) {
1120             credp = crref();
1121             free_cred = 1;
1122         }
1123         afs_InitReq(&treq, credp);
1124         afs_InitFakeStat(&fakestate);
1125         afs_TryEvalFakeStat(&pvcp, &fakestate, &treq);
1126         if (free_cred)
1127             crfree(credp);
1128         afs_PutFakeStat(&fakestate);
1129     }
1130     return hgetlo(pvcp->f.m.DataVersion);
1131 }
1132
1133 /* Validate a dentry. Return 1 if unchanged, 0 if VFS layer should re-evaluate.
1134  * In kernels 2.2.10 and above, we are passed an additional flags var which
1135  * may have either the LOOKUP_FOLLOW OR LOOKUP_DIRECTORY set in which case
1136  * we are advised to follow the entry if it is a link or to make sure that 
1137  * it is a directory. But since the kernel itself checks these possibilities
1138  * later on, we shouldn't have to do it until later. Perhaps in the future..
1139  *
1140  * The code here assumes that on entry the global lock is not held
1141  */
1142 static int
1143 #if defined(DOP_REVALIDATE_TAKES_UNSIGNED)
1144 afs_linux_dentry_revalidate(struct dentry *dp, unsigned int flags)
1145 #elif defined(DOP_REVALIDATE_TAKES_NAMEIDATA)
1146 afs_linux_dentry_revalidate(struct dentry *dp, struct nameidata *nd)
1147 #else
1148 afs_linux_dentry_revalidate(struct dentry *dp, int flags)
1149 #endif
1150 {
1151     struct vattr vattr;
1152     cred_t *credp = NULL;
1153     struct vcache *vcp, *pvcp, *tvc = NULL;
1154     struct dentry *parent;
1155     int valid;
1156     struct afs_fakestat_state fakestate;
1157     int locked = 0;
1158     int force_drop = 0;
1159     afs_uint32 parent_dv;
1160
1161 #ifdef LOOKUP_RCU
1162     /* We don't support RCU path walking */
1163 # if defined(DOP_REVALIDATE_TAKES_UNSIGNED)
1164     if (flags & LOOKUP_RCU)
1165 # else
1166     if (nd->flags & LOOKUP_RCU)
1167 # endif
1168        return -ECHILD;
1169 #endif
1170
1171     afs_InitFakeStat(&fakestate);
1172
1173     if (dp->d_inode) {
1174         vcp = VTOAFS(dp->d_inode);
1175
1176         if (vcp == afs_globalVp)
1177             goto good_dentry;
1178
1179         parent = dget_parent(dp);
1180         pvcp = VTOAFS(parent->d_inode);
1181
1182         if ((vcp->mvstat == 1) || (vcp->mvstat == 2) ||
1183                 (pvcp->mvstat == 1 && afs_fakestat_enable)) {   /* need to lock */
1184             credp = crref();
1185             AFS_GLOCK();
1186             locked = 1;
1187         }
1188
1189         if (locked && vcp->mvstat == 1) {         /* mount point */
1190             if (vcp->mvid && (vcp->f.states & CMValid)) {
1191                 int tryEvalOnly = 0;
1192                 int code = 0;
1193                 struct vrequest treq;
1194
1195                 code = afs_InitReq(&treq, credp);
1196                 if (
1197                     (strcmp(dp->d_name.name, ".directory") == 0)) {
1198                     tryEvalOnly = 1;
1199                 }
1200                 if (tryEvalOnly)
1201                     code = afs_TryEvalFakeStat(&vcp, &fakestate, &treq);
1202                 else
1203                     code = afs_EvalFakeStat(&vcp, &fakestate, &treq);
1204                 if ((tryEvalOnly && vcp->mvstat == 1) || code) {
1205                     /* a mount point, not yet replaced by its directory */
1206                     dput(parent);
1207                     goto bad_dentry;
1208                 }
1209             }
1210         } else
1211             if (locked && *dp->d_name.name != '/' && vcp->mvstat == 2) {        /* root vnode */
1212                 if (vcp->mvid->Fid.Volume != pvcp->f.fid.Fid.Volume) {  /* bad parent */
1213                     fix_bad_parent(dp, credp, vcp, pvcp);       /* check and correct mvid */
1214                 }
1215             }
1216
1217 #ifdef notdef
1218         /* If the last looker changes, we should make sure the current
1219          * looker still has permission to examine this file.  This would
1220          * always require a crref() which would be "slow".
1221          */
1222         if (vcp->last_looker != treq.uid) {
1223             if (!afs_AccessOK(vcp, (vType(vcp) == VREG) ? PRSFS_READ : PRSFS_LOOKUP, &treq, CHECK_MODE_BITS)) {
1224                 dput(parent);
1225                 goto bad_dentry;
1226             }
1227
1228             vcp->last_looker = treq.uid;
1229         }
1230 #endif
1231
1232         parent_dv = parent_vcache_dv(parent->d_inode, credp);
1233
1234         /* If the parent's DataVersion has changed or the vnode
1235          * is longer valid, we need to do a full lookup.  VerifyVCache
1236          * isn't enough since the vnode may have been renamed.
1237          */
1238
1239         if ((!locked) && (parent_dv > dp->d_time || !(vcp->f.states & CStatd)) ) {
1240             credp = crref();
1241             AFS_GLOCK();
1242             locked = 1;
1243         }
1244
1245         if (locked && (parent_dv > dp->d_time || !(vcp->f.states & CStatd))) {
1246             int code;
1247
1248             code = afs_lookup(pvcp, (char *)dp->d_name.name, &tvc, credp);
1249             if (!tvc || tvc != vcp) {
1250                 dput(parent);
1251                 /* Force unhash if name is known not to exist. */
1252                 if (code == ENOENT)
1253                     force_drop = 1;
1254                 goto bad_dentry;
1255             }
1256
1257             if (afs_getattr(vcp, &vattr, credp)) {
1258                 dput(parent);
1259                 goto bad_dentry;
1260             }
1261
1262             vattr2inode(AFSTOV(vcp), &vattr);
1263             dp->d_time = parent_dv;
1264         }
1265
1266         /* should we always update the attributes at this point? */
1267         /* unlikely--the vcache entry hasn't changed */
1268
1269         dput(parent);
1270     } else {
1271 #ifdef notyet
1272         /* If this code is ever enabled, we should use dget_parent to handle
1273          * getting the parent, and dput() to dispose of it. See above for an
1274          * example ... */
1275         pvcp = VTOAFS(dp->d_parent->d_inode);
1276         if (hgetlo(pvcp->f.m.DataVersion) > dp->d_time)
1277             goto bad_dentry;
1278 #endif
1279
1280         /* No change in parent's DataVersion so this negative
1281          * lookup is still valid.  BUT, if a server is down a
1282          * negative lookup can result so there should be a
1283          * liftime as well.  For now, always expire.
1284          */
1285
1286         goto bad_dentry;
1287     }
1288
1289   good_dentry:
1290     valid = 1;
1291
1292   done:
1293     /* Clean up */
1294     if (tvc)
1295         afs_PutVCache(tvc);
1296     afs_PutFakeStat(&fakestate);        /* from here on vcp may be no longer valid */
1297     if (locked) {
1298         /* we hold the global lock if we evaluated a mount point */
1299         AFS_GUNLOCK();
1300     }
1301     if (credp)
1302         crfree(credp);
1303
1304     if (!valid) {
1305         /*
1306          * If we had a negative lookup for the name we want to forcibly
1307          * unhash the dentry.
1308          * Otherwise use d_invalidate which will not unhash it if still in use.
1309          */
1310         if (force_drop) {
1311             shrink_dcache_parent(dp);
1312             d_drop(dp);
1313         } else
1314             d_invalidate(dp);
1315     }
1316
1317     return valid;
1318
1319   bad_dentry:
1320     if (have_submounts(dp))
1321         valid = 1;
1322     else 
1323         valid = 0;
1324     goto done;
1325 }
1326
1327 static void
1328 afs_dentry_iput(struct dentry *dp, struct inode *ip)
1329 {
1330     struct vcache *vcp = VTOAFS(ip);
1331
1332     AFS_GLOCK();
1333     if (!AFS_IS_DISCONNECTED || (vcp->f.states & CUnlinked)) {
1334         (void) afs_InactiveVCache(vcp, NULL);
1335     }
1336     AFS_GUNLOCK();
1337     afs_linux_clear_nfsfs_renamed(dp);
1338
1339     iput(ip);
1340 }
1341
1342 static int
1343 #if defined(DOP_D_DELETE_TAKES_CONST)
1344 afs_dentry_delete(const struct dentry *dp)
1345 #else
1346 afs_dentry_delete(struct dentry *dp)
1347 #endif
1348 {
1349     if (dp->d_inode && (VTOAFS(dp->d_inode)->f.states & CUnlinked))
1350         return 1;               /* bad inode? */
1351
1352     return 0;
1353 }
1354
1355 #ifdef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
1356 static struct vfsmount *
1357 afs_dentry_automount(afs_linux_path_t *path)
1358 {
1359     struct dentry *target;
1360
1361     /* avoid symlink resolution limits when resolving; we cannot contribute to
1362      * an infinite symlink loop */
1363     current->total_link_count--;
1364
1365     target = canonical_dentry(path->dentry->d_inode);
1366
1367     if (target == path->dentry) {
1368         dput(target);
1369         target = NULL;
1370     }
1371
1372     if (target) {
1373         dput(path->dentry);
1374         path->dentry = target;
1375
1376     } else {
1377         spin_lock(&path->dentry->d_lock);
1378         path->dentry->d_flags &= ~DCACHE_NEED_AUTOMOUNT;
1379         spin_unlock(&path->dentry->d_lock);
1380     }
1381
1382     return NULL;
1383 }
1384 #endif /* STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT */
1385
1386 struct dentry_operations afs_dentry_operations = {
1387   .d_revalidate =       afs_linux_dentry_revalidate,
1388   .d_delete =           afs_dentry_delete,
1389   .d_iput =             afs_dentry_iput,
1390 #ifdef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
1391   .d_automount =        afs_dentry_automount,
1392 #endif /* STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT */
1393 };
1394
1395 /**********************************************************************
1396  * AFS Linux inode operations
1397  **********************************************************************/
1398
1399 /* afs_linux_create
1400  *
1401  * Merely need to set enough of vattr to get us through the create. Note
1402  * that the higher level code (open_namei) will take care of any tuncation
1403  * explicitly. Exclusive open is also taken care of in open_namei.
1404  *
1405  * name is in kernel space at this point.
1406  */
1407 static int
1408 #if defined(IOP_CREATE_TAKES_BOOL)
1409 afs_linux_create(struct inode *dip, struct dentry *dp, umode_t mode,
1410                  bool excl)
1411 #elif defined(IOP_CREATE_TAKES_UMODE_T)
1412 afs_linux_create(struct inode *dip, struct dentry *dp, umode_t mode,
1413                  struct nameidata *nd)
1414 #elif defined(IOP_CREATE_TAKES_NAMEIDATA)
1415 afs_linux_create(struct inode *dip, struct dentry *dp, int mode,
1416                  struct nameidata *nd)
1417 #else
1418 afs_linux_create(struct inode *dip, struct dentry *dp, int mode)
1419 #endif
1420 {
1421     struct vattr vattr;
1422     cred_t *credp = crref();
1423     const char *name = dp->d_name.name;
1424     struct vcache *vcp;
1425     int code;
1426
1427     VATTR_NULL(&vattr);
1428     vattr.va_mode = mode;
1429     vattr.va_type = mode & S_IFMT;
1430
1431     AFS_GLOCK();
1432     code = afs_create(VTOAFS(dip), (char *)name, &vattr, NONEXCL, mode,
1433                       &vcp, credp);
1434
1435     if (!code) {
1436         struct inode *ip = AFSTOV(vcp);
1437
1438         afs_getattr(vcp, &vattr, credp);
1439         afs_fill_inode(ip, &vattr);
1440         insert_inode_hash(ip);
1441 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
1442         dp->d_op = &afs_dentry_operations;
1443 #endif
1444         dp->d_time = parent_vcache_dv(dip, credp);
1445         d_instantiate(dp, ip);
1446     }
1447     AFS_GUNLOCK();
1448
1449     crfree(credp);
1450     return afs_convert_code(code);
1451 }
1452
1453 /* afs_linux_lookup */
1454 static struct dentry *
1455 #if defined(IOP_LOOKUP_TAKES_UNSIGNED)
1456 afs_linux_lookup(struct inode *dip, struct dentry *dp,
1457                  unsigned flags)
1458 #elif defined(IOP_LOOKUP_TAKES_NAMEIDATA)
1459 afs_linux_lookup(struct inode *dip, struct dentry *dp,
1460                  struct nameidata *nd)
1461 #else
1462 afs_linux_lookup(struct inode *dip, struct dentry *dp)
1463 #endif
1464 {
1465     cred_t *credp = crref();
1466     struct vcache *vcp = NULL;
1467     const char *comp = dp->d_name.name;
1468     struct inode *ip = NULL;
1469     struct dentry *newdp = NULL;
1470     int code;
1471
1472     AFS_GLOCK();
1473     code = afs_lookup(VTOAFS(dip), (char *)comp, &vcp, credp);
1474     
1475     if (vcp) {
1476         struct vattr vattr;
1477         struct vcache *parent_vc = VTOAFS(dip);
1478
1479         if (parent_vc == vcp) {
1480             /* This is possible if the parent dir is a mountpoint to a volume,
1481              * and the dir entry we looked up is a mountpoint to the same
1482              * volume. Linux cannot cope with this, so return an error instead
1483              * of risking a deadlock or panic. */
1484             afs_PutVCache(vcp);
1485             code = EDEADLK;
1486             AFS_GUNLOCK();
1487             goto done;
1488         }
1489
1490         ip = AFSTOV(vcp);
1491         afs_getattr(vcp, &vattr, credp);
1492         afs_fill_inode(ip, &vattr);
1493         if (hlist_unhashed(&ip->i_hash))
1494             insert_inode_hash(ip);
1495     }
1496 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
1497     dp->d_op = &afs_dentry_operations;
1498 #endif
1499     dp->d_time = parent_vcache_dv(dip, credp);
1500
1501     AFS_GUNLOCK();
1502
1503     if (ip && S_ISDIR(ip->i_mode)) {
1504         d_prune_aliases(ip);
1505
1506 #ifdef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
1507         ip->i_flags |= S_AUTOMOUNT;
1508 #endif
1509     }
1510     newdp = d_splice_alias(ip, dp);
1511
1512  done:
1513     crfree(credp);
1514
1515     /* It's ok for the file to not be found. That's noted by the caller by
1516      * seeing that the dp->d_inode field is NULL.
1517      */
1518     if (!code || code == ENOENT)
1519         return newdp;
1520     else 
1521         return ERR_PTR(afs_convert_code(code));
1522 }
1523
1524 static int
1525 afs_linux_link(struct dentry *olddp, struct inode *dip, struct dentry *newdp)
1526 {
1527     int code;
1528     cred_t *credp = crref();
1529     const char *name = newdp->d_name.name;
1530     struct inode *oldip = olddp->d_inode;
1531
1532     /* If afs_link returned the vnode, we could instantiate the
1533      * dentry. Since it's not, we drop this one and do a new lookup.
1534      */
1535     d_drop(newdp);
1536
1537     AFS_GLOCK();
1538     code = afs_link(VTOAFS(oldip), VTOAFS(dip), (char *)name, credp);
1539
1540     AFS_GUNLOCK();
1541     crfree(credp);
1542     return afs_convert_code(code);
1543 }
1544
1545 /* We have to have a Linux specific sillyrename function, because we
1546  * also have to keep the dcache up to date when we're doing a silly
1547  * rename - so we don't want the generic vnodeops doing this behind our
1548  * back.
1549  */
1550
1551 static int
1552 afs_linux_sillyrename(struct inode *dir, struct dentry *dentry,
1553                       cred_t *credp)
1554 {
1555     struct vcache *tvc = VTOAFS(dentry->d_inode);
1556     struct dentry *__dp = NULL;
1557     char *__name = NULL;
1558     int code;
1559
1560     if (afs_linux_nfsfs_renamed(dentry))
1561         return EBUSY;
1562
1563     do {
1564         dput(__dp);
1565
1566         AFS_GLOCK();
1567         if (__name)
1568             osi_FreeSmallSpace(__name);
1569         __name = afs_newname();
1570         AFS_GUNLOCK();
1571
1572         __dp = lookup_one_len(__name, dentry->d_parent, strlen(__name));
1573
1574         if (IS_ERR(__dp)) {
1575             osi_FreeSmallSpace(__name);
1576             return EBUSY;
1577         }
1578     } while (__dp->d_inode != NULL);
1579
1580     AFS_GLOCK();
1581     code = afs_rename(VTOAFS(dir), (char *)dentry->d_name.name,
1582                       VTOAFS(dir), (char *)__dp->d_name.name,
1583                       credp);
1584     if (!code) {
1585         tvc->mvid = (void *) __name;
1586         crhold(credp);
1587         if (tvc->uncred) {
1588             crfree(tvc->uncred);
1589         }
1590         tvc->uncred = credp;
1591         tvc->f.states |= CUnlinked;
1592         afs_linux_set_nfsfs_renamed(dentry);
1593     } else {
1594         osi_FreeSmallSpace(__name);
1595     }
1596     AFS_GUNLOCK();
1597
1598     if (!code) {
1599         __dp->d_time = hgetlo(VTOAFS(dir)->f.m.DataVersion);
1600         d_move(dentry, __dp);
1601     }
1602     dput(__dp);
1603
1604     return code;
1605 }
1606
1607
1608 static int
1609 afs_linux_unlink(struct inode *dip, struct dentry *dp)
1610 {
1611     int code = EBUSY;
1612     cred_t *credp = crref();
1613     const char *name = dp->d_name.name;
1614     struct vcache *tvc = VTOAFS(dp->d_inode);
1615
1616     if (VREFCOUNT(tvc) > 1 && tvc->opens > 0
1617                                 && !(tvc->f.states & CUnlinked)) {
1618
1619         code = afs_linux_sillyrename(dip, dp, credp);
1620     } else {
1621         AFS_GLOCK();
1622         code = afs_remove(VTOAFS(dip), (char *)name, credp);
1623         AFS_GUNLOCK();
1624         if (!code)
1625             d_drop(dp);
1626     }
1627
1628     crfree(credp);
1629     return afs_convert_code(code);
1630 }
1631
1632
1633 static int
1634 afs_linux_symlink(struct inode *dip, struct dentry *dp, const char *target)
1635 {
1636     int code;
1637     cred_t *credp = crref();
1638     struct vattr vattr;
1639     const char *name = dp->d_name.name;
1640
1641     /* If afs_symlink returned the vnode, we could instantiate the
1642      * dentry. Since it's not, we drop this one and do a new lookup.
1643      */
1644     d_drop(dp);
1645
1646     VATTR_NULL(&vattr);
1647     AFS_GLOCK();
1648     code = afs_symlink(VTOAFS(dip), (char *)name, &vattr, (char *)target, NULL,
1649                        credp);
1650     AFS_GUNLOCK();
1651     crfree(credp);
1652     return afs_convert_code(code);
1653 }
1654
1655 static int
1656 #if defined(IOP_MKDIR_TAKES_UMODE_T)
1657 afs_linux_mkdir(struct inode *dip, struct dentry *dp, umode_t mode)
1658 #else
1659 afs_linux_mkdir(struct inode *dip, struct dentry *dp, int mode)
1660 #endif
1661 {
1662     int code;
1663     cred_t *credp = crref();
1664     struct vcache *tvcp = NULL;
1665     struct vattr vattr;
1666     const char *name = dp->d_name.name;
1667
1668     VATTR_NULL(&vattr);
1669     vattr.va_mask = ATTR_MODE;
1670     vattr.va_mode = mode;
1671     AFS_GLOCK();
1672     code = afs_mkdir(VTOAFS(dip), (char *)name, &vattr, &tvcp, credp);
1673
1674     if (tvcp) {
1675         struct inode *ip = AFSTOV(tvcp);
1676
1677         afs_getattr(tvcp, &vattr, credp);
1678         afs_fill_inode(ip, &vattr);
1679
1680 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
1681         dp->d_op = &afs_dentry_operations;
1682 #endif
1683         dp->d_time = hgetlo(VTOAFS(dip)->f.m.DataVersion);
1684         d_instantiate(dp, ip);
1685     }
1686     AFS_GUNLOCK();
1687
1688     crfree(credp);
1689     return afs_convert_code(code);
1690 }
1691
1692 static int
1693 afs_linux_rmdir(struct inode *dip, struct dentry *dp)
1694 {
1695     int code;
1696     cred_t *credp = crref();
1697     const char *name = dp->d_name.name;
1698
1699     /* locking kernel conflicts with glock? */
1700
1701     AFS_GLOCK();
1702     code = afs_rmdir(VTOAFS(dip), (char *)name, credp);
1703     AFS_GUNLOCK();
1704
1705     /* Linux likes to see ENOTEMPTY returned from an rmdir() syscall
1706      * that failed because a directory is not empty. So, we map
1707      * EEXIST to ENOTEMPTY on linux.
1708      */
1709     if (code == EEXIST) {
1710         code = ENOTEMPTY;
1711     }
1712
1713     if (!code) {
1714         d_drop(dp);
1715     }
1716
1717     crfree(credp);
1718     return afs_convert_code(code);
1719 }
1720
1721
1722 static int
1723 afs_linux_rename(struct inode *oldip, struct dentry *olddp,
1724                  struct inode *newip, struct dentry *newdp)
1725 {
1726     int code;
1727     cred_t *credp = crref();
1728     const char *oldname = olddp->d_name.name;
1729     const char *newname = newdp->d_name.name;
1730     struct dentry *rehash = NULL;
1731
1732     /* Prevent any new references during rename operation. */
1733
1734     if (!d_unhashed(newdp)) {
1735         d_drop(newdp);
1736         rehash = newdp;
1737     }
1738
1739     afs_maybe_shrink_dcache(olddp);
1740
1741     AFS_GLOCK();
1742     code = afs_rename(VTOAFS(oldip), (char *)oldname, VTOAFS(newip), (char *)newname, credp);
1743     AFS_GUNLOCK();
1744
1745     if (!code)
1746         olddp->d_time = 0;      /* force to revalidate */
1747
1748     if (rehash)
1749         d_rehash(rehash);
1750
1751     crfree(credp);
1752     return afs_convert_code(code);
1753 }
1754
1755
1756 /* afs_linux_ireadlink 
1757  * Internal readlink which can return link contents to user or kernel space.
1758  * Note that the buffer is NOT supposed to be null-terminated.
1759  */
1760 static int
1761 afs_linux_ireadlink(struct inode *ip, char *target, int maxlen, uio_seg_t seg)
1762 {
1763     int code;
1764     cred_t *credp = crref();
1765     struct uio tuio;
1766     struct iovec iov;
1767
1768     setup_uio(&tuio, &iov, target, (afs_offs_t) 0, maxlen, UIO_READ, seg);
1769     code = afs_readlink(VTOAFS(ip), &tuio, credp);
1770     crfree(credp);
1771
1772     if (!code)
1773         return maxlen - tuio.uio_resid;
1774     else
1775         return afs_convert_code(code);
1776 }
1777
1778 #if !defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
1779 /* afs_linux_readlink 
1780  * Fill target (which is in user space) with contents of symlink.
1781  */
1782 static int
1783 afs_linux_readlink(struct dentry *dp, char *target, int maxlen)
1784 {
1785     int code;
1786     struct inode *ip = dp->d_inode;
1787
1788     AFS_GLOCK();
1789     code = afs_linux_ireadlink(ip, target, maxlen, AFS_UIOUSER);
1790     AFS_GUNLOCK();
1791     return code;
1792 }
1793
1794
1795 /* afs_linux_follow_link
1796  * a file system dependent link following routine.
1797  */
1798 static int afs_linux_follow_link(struct dentry *dentry, struct nameidata *nd)
1799 {
1800     int code;
1801     char *name;
1802
1803     name = kmalloc(PATH_MAX, GFP_NOFS);
1804     if (!name) {
1805         return -EIO;
1806     }
1807
1808     AFS_GLOCK();
1809     code = afs_linux_ireadlink(dentry->d_inode, name, PATH_MAX - 1, AFS_UIOSYS);
1810     AFS_GUNLOCK();
1811
1812     if (code < 0) {
1813         return code;
1814     }
1815
1816     name[code] = '\0';
1817     nd_set_link(nd, name);
1818     return 0;
1819 }
1820
1821 static void
1822 afs_linux_put_link(struct dentry *dentry, struct nameidata *nd)
1823 {
1824     char *name = nd_get_link(nd);
1825
1826     if (name && !IS_ERR(name))
1827         kfree(name);
1828 }
1829
1830 #endif /* USABLE_KERNEL_PAGE_SYMLINK_CACHE */
1831
1832 /* Populate a page by filling it from the cache file pointed at by cachefp
1833  * (which contains indicated chunk)
1834  * If task is NULL, the page copy occurs syncronously, and the routine
1835  * returns with page still locked. If task is non-NULL, then page copies
1836  * may occur in the background, and the page will be unlocked when it is
1837  * ready for use.
1838  */
1839 static int
1840 afs_linux_read_cache(struct file *cachefp, struct page *page,
1841                      int chunk, struct pagevec *lrupv,
1842                      struct afs_pagecopy_task *task) {
1843     loff_t offset = page_offset(page);
1844     struct inode *cacheinode = cachefp->f_dentry->d_inode;
1845     struct page *newpage, *cachepage;
1846     struct address_space *cachemapping;
1847     int pageindex;
1848     int code = 0;
1849
1850     cachemapping = cacheinode->i_mapping;
1851     newpage = NULL;
1852     cachepage = NULL;
1853
1854     /* If we're trying to read a page that's past the end of the disk
1855      * cache file, then just return a zeroed page */
1856     if (AFS_CHUNKOFFSET(offset) >= i_size_read(cacheinode)) {
1857         zero_user_segment(page, 0, PAGE_CACHE_SIZE);
1858         SetPageUptodate(page);
1859         if (task)
1860             unlock_page(page);
1861         return 0;
1862     }
1863
1864     /* From our offset, we now need to work out which page in the disk
1865      * file it corresponds to. This will be fun ... */
1866     pageindex = (offset - AFS_CHUNKTOBASE(chunk)) >> PAGE_CACHE_SHIFT;
1867
1868     while (cachepage == NULL) {
1869         cachepage = find_get_page(cachemapping, pageindex);
1870         if (!cachepage) {
1871             if (!newpage)
1872                 newpage = page_cache_alloc_cold(cachemapping);
1873             if (!newpage) {
1874                 code = -ENOMEM;
1875                 goto out;
1876             }
1877
1878             code = add_to_page_cache(newpage, cachemapping,
1879                                      pageindex, GFP_KERNEL);
1880             if (code == 0) {
1881                 cachepage = newpage;
1882                 newpage = NULL;
1883
1884                 page_cache_get(cachepage);
1885                 if (!pagevec_add(lrupv, cachepage))
1886                     __pagevec_lru_add_file(lrupv);
1887
1888             } else {
1889                 page_cache_release(newpage);
1890                 newpage = NULL;
1891                 if (code != -EEXIST)
1892                     goto out;
1893             }
1894         } else {
1895             lock_page(cachepage);
1896         }
1897     }
1898
1899     if (!PageUptodate(cachepage)) {
1900         ClearPageError(cachepage);
1901         code = cachemapping->a_ops->readpage(NULL, cachepage);
1902         if (!code && !task) {
1903             wait_on_page_locked(cachepage);
1904         }
1905     } else {
1906         unlock_page(cachepage);
1907     }
1908
1909     if (!code) {
1910         if (PageUptodate(cachepage)) {
1911             copy_highpage(page, cachepage);
1912             flush_dcache_page(page);
1913             SetPageUptodate(page);
1914
1915             if (task)
1916                 unlock_page(page);
1917         } else if (task) {
1918             afs_pagecopy_queue_page(task, cachepage, page);
1919         } else {
1920             code = -EIO;
1921         }
1922     }
1923
1924     if (code && task) {
1925         unlock_page(page);
1926     }
1927
1928 out:
1929     if (cachepage)
1930         page_cache_release(cachepage);
1931
1932     return code;
1933 }
1934
1935 static int inline
1936 afs_linux_readpage_fastpath(struct file *fp, struct page *pp, int *codep)
1937 {
1938     loff_t offset = page_offset(pp);
1939     struct inode *ip = FILE_INODE(fp);
1940     struct vcache *avc = VTOAFS(ip);
1941     struct dcache *tdc;
1942     struct file *cacheFp = NULL;
1943     int code;
1944     int dcLocked = 0;
1945     struct pagevec lrupv;
1946
1947     /* Not a UFS cache, don't do anything */
1948     if (cacheDiskType != AFS_FCACHE_TYPE_UFS)
1949         return 0;
1950
1951     /* No readpage (ex: tmpfs) , skip */
1952     if (cachefs_noreadpage)
1953         return 0;
1954
1955     /* Can't do anything if the vcache isn't statd , or if the read
1956      * crosses a chunk boundary.
1957      */
1958     if (!(avc->f.states & CStatd) ||
1959         AFS_CHUNK(offset) != AFS_CHUNK(offset + PAGE_SIZE)) {
1960         return 0;
1961     }
1962
1963     ObtainWriteLock(&avc->lock, 911);
1964
1965     /* XXX - See if hinting actually makes things faster !!! */
1966
1967     /* See if we have a suitable entry already cached */
1968     tdc = avc->dchint;
1969
1970     if (tdc) {
1971         /* We need to lock xdcache, then dcache, to handle situations where
1972          * the hint is on the free list. However, we can't safely do this
1973          * according to the locking hierarchy. So, use a non blocking lock.
1974          */
1975         ObtainReadLock(&afs_xdcache);
1976         dcLocked = ( 0 == NBObtainReadLock(&tdc->lock));
1977
1978         if (dcLocked && (tdc->index != NULLIDX)
1979             && !FidCmp(&tdc->f.fid, &avc->f.fid)
1980             && tdc->f.chunk == AFS_CHUNK(offset)
1981             && !(afs_indexFlags[tdc->index] & (IFFree | IFDiscarded))) {
1982             /* Bonus - the hint was correct */
1983             afs_RefDCache(tdc);
1984         } else {
1985             /* Only destroy the hint if its actually invalid, not if there's
1986              * just been a locking failure */
1987             if (dcLocked) {
1988                 ReleaseReadLock(&tdc->lock);
1989                 avc->dchint = NULL;
1990             }
1991
1992             tdc = NULL;
1993             dcLocked = 0;
1994         }
1995         ReleaseReadLock(&afs_xdcache);
1996     }
1997
1998     /* No hint, or hint is no longer valid - see if we can get something
1999      * directly from the dcache
2000      */
2001     if (!tdc)
2002         tdc = afs_FindDCache(avc, offset);
2003
2004     if (!tdc) {
2005         ReleaseWriteLock(&avc->lock);
2006         return 0;
2007     }
2008
2009     if (!dcLocked)
2010         ObtainReadLock(&tdc->lock);
2011
2012     /* Is the dcache we've been given currently up to date */
2013     if (!hsame(avc->f.m.DataVersion, tdc->f.versionNo) ||
2014         (tdc->dflags & DFFetching))
2015         goto out;
2016
2017     /* Update our hint for future abuse */
2018     avc->dchint = tdc;
2019
2020     /* Okay, so we've now got a cache file that is up to date */
2021
2022     /* XXX - I suspect we should be locking the inodes before we use them! */
2023     AFS_GUNLOCK();
2024     cacheFp = afs_linux_raw_open(&tdc->f.inode);
2025     if (!cacheFp->f_dentry->d_inode->i_mapping->a_ops->readpage) {
2026         cachefs_noreadpage = 1;
2027         AFS_GLOCK();
2028         goto out;
2029     }
2030     pagevec_init(&lrupv, 0);
2031
2032     code = afs_linux_read_cache(cacheFp, pp, tdc->f.chunk, &lrupv, NULL);
2033
2034     if (pagevec_count(&lrupv))
2035        __pagevec_lru_add_file(&lrupv);
2036
2037     filp_close(cacheFp, NULL);
2038     AFS_GLOCK();
2039
2040     ReleaseReadLock(&tdc->lock);
2041     ReleaseWriteLock(&avc->lock);
2042     afs_PutDCache(tdc);
2043
2044     *codep = code;
2045     return 1;
2046
2047 out:
2048     ReleaseWriteLock(&avc->lock);
2049     ReleaseReadLock(&tdc->lock);
2050     afs_PutDCache(tdc);
2051     return 0;
2052 }
2053
2054 /* afs_linux_readpage
2055  *
2056  * This function is split into two, because prepare_write/begin_write
2057  * require a readpage call which doesn't unlock the resulting page upon
2058  * success.
2059  */
2060 static int
2061 afs_linux_fillpage(struct file *fp, struct page *pp)
2062 {
2063     afs_int32 code;
2064     char *address;
2065     struct uio *auio;
2066     struct iovec *iovecp;
2067     struct inode *ip = FILE_INODE(fp);
2068     afs_int32 cnt = page_count(pp);
2069     struct vcache *avc = VTOAFS(ip);
2070     afs_offs_t offset = page_offset(pp);
2071     cred_t *credp;
2072
2073     AFS_GLOCK();
2074     if (afs_linux_readpage_fastpath(fp, pp, &code)) {
2075         AFS_GUNLOCK();
2076         return code;
2077     }
2078     AFS_GUNLOCK();
2079
2080     credp = crref();
2081     address = kmap(pp);
2082     ClearPageError(pp);
2083
2084     auio = kmalloc(sizeof(struct uio), GFP_NOFS);
2085     iovecp = kmalloc(sizeof(struct iovec), GFP_NOFS);
2086
2087     setup_uio(auio, iovecp, (char *)address, offset, PAGE_SIZE, UIO_READ,
2088               AFS_UIOSYS);
2089
2090     AFS_GLOCK();
2091     AFS_DISCON_LOCK();
2092     afs_Trace4(afs_iclSetp, CM_TRACE_READPAGE, ICL_TYPE_POINTER, ip,
2093                ICL_TYPE_POINTER, pp, ICL_TYPE_INT32, cnt, ICL_TYPE_INT32,
2094                99999);  /* not a possible code value */
2095
2096     code = afs_rdwr(avc, auio, UIO_READ, 0, credp);
2097         
2098     afs_Trace4(afs_iclSetp, CM_TRACE_READPAGE, ICL_TYPE_POINTER, ip,
2099                ICL_TYPE_POINTER, pp, ICL_TYPE_INT32, cnt, ICL_TYPE_INT32,
2100                code);
2101     AFS_DISCON_UNLOCK();
2102     AFS_GUNLOCK();
2103     if (!code) {
2104         /* XXX valid for no-cache also?  Check last bits of files... :)
2105          * Cognate code goes in afs_NoCacheFetchProc.  */
2106         if (auio->uio_resid)    /* zero remainder of page */
2107              memset((void *)(address + (PAGE_SIZE - auio->uio_resid)), 0,
2108                     auio->uio_resid);
2109
2110         flush_dcache_page(pp);
2111         SetPageUptodate(pp);
2112     } /* !code */
2113
2114     kunmap(pp);
2115
2116     kfree(auio);
2117     kfree(iovecp);
2118
2119     crfree(credp);
2120     return afs_convert_code(code);
2121 }
2122
2123 static int
2124 afs_linux_prefetch(struct file *fp, struct page *pp)
2125 {
2126     int code = 0;
2127     struct vcache *avc = VTOAFS(FILE_INODE(fp));
2128     afs_offs_t offset = page_offset(pp);
2129
2130     if (AFS_CHUNKOFFSET(offset) == 0) {
2131         struct dcache *tdc;
2132         struct vrequest treq;
2133         cred_t *credp;
2134
2135         credp = crref();
2136         AFS_GLOCK();
2137         code = afs_InitReq(&treq, credp);
2138         if (!code && !NBObtainWriteLock(&avc->lock, 534)) {
2139             tdc = afs_FindDCache(avc, offset);
2140             if (tdc) {
2141                 if (!(tdc->mflags & DFNextStarted))
2142                     afs_PrefetchChunk(avc, tdc, credp, &treq);
2143                     afs_PutDCache(tdc);
2144             }
2145             ReleaseWriteLock(&avc->lock);
2146         }
2147         AFS_GUNLOCK();
2148         crfree(credp);
2149     }
2150     return afs_convert_code(code);
2151
2152 }
2153
2154 static int
2155 afs_linux_bypass_readpages(struct file *fp, struct address_space *mapping,
2156                            struct list_head *page_list, unsigned num_pages)
2157 {
2158     afs_int32 page_ix;
2159     struct uio *auio;
2160     afs_offs_t offset;
2161     struct iovec* iovecp;
2162     struct nocache_read_request *ancr;
2163     struct page *pp;
2164     struct pagevec lrupv;
2165     afs_int32 code = 0;
2166
2167     cred_t *credp;
2168     struct inode *ip = FILE_INODE(fp);
2169     struct vcache *avc = VTOAFS(ip);
2170     afs_int32 base_index = 0;
2171     afs_int32 page_count = 0;
2172     afs_int32 isize;
2173
2174     /* background thread must free: iovecp, auio, ancr */
2175     iovecp = osi_Alloc(num_pages * sizeof(struct iovec));
2176
2177     auio = osi_Alloc(sizeof(struct uio));
2178     auio->uio_iov = iovecp;
2179     auio->uio_iovcnt = num_pages;
2180     auio->uio_flag = UIO_READ;
2181     auio->uio_seg = AFS_UIOSYS;
2182     auio->uio_resid = num_pages * PAGE_SIZE;
2183
2184     ancr = osi_Alloc(sizeof(struct nocache_read_request));
2185     ancr->auio = auio;
2186     ancr->offset = auio->uio_offset;
2187     ancr->length = auio->uio_resid;
2188
2189     pagevec_init(&lrupv, 0);
2190
2191     for(page_ix = 0; page_ix < num_pages; ++page_ix) {
2192
2193         if(list_empty(page_list))
2194             break;
2195
2196         pp = list_entry(page_list->prev, struct page, lru);
2197         /* If we allocate a page and don't remove it from page_list,
2198          * the page cache gets upset. */
2199         list_del(&pp->lru);
2200         isize = (i_size_read(fp->f_mapping->host) - 1) >> PAGE_CACHE_SHIFT;
2201         if(pp->index > isize) {
2202             if(PageLocked(pp))
2203                 unlock_page(pp);
2204             continue;
2205         }
2206
2207         if(page_ix == 0) {
2208             offset = page_offset(pp);
2209             ancr->offset = auio->uio_offset = offset;
2210             base_index = pp->index;
2211         }
2212         iovecp[page_ix].iov_len = PAGE_SIZE;
2213         code = add_to_page_cache(pp, mapping, pp->index, GFP_KERNEL);
2214         if(base_index != pp->index) {
2215             if(PageLocked(pp))
2216                  unlock_page(pp);
2217             page_cache_release(pp);
2218             iovecp[page_ix].iov_base = (void *) 0;
2219             base_index++;
2220             ancr->length -= PAGE_SIZE;
2221             continue;
2222         }
2223         base_index++;
2224         if(code) {
2225             if(PageLocked(pp))
2226                 unlock_page(pp);
2227             page_cache_release(pp);
2228             iovecp[page_ix].iov_base = (void *) 0;
2229         } else {
2230             page_count++;
2231             if(!PageLocked(pp)) {
2232                 lock_page(pp);
2233             }
2234
2235             /* increment page refcount--our original design assumed
2236              * that locking it would effectively pin it;  protect
2237              * ourselves from the possiblity that this assumption is
2238              * is faulty, at low cost (provided we do not fail to
2239              * do the corresponding decref on the other side) */
2240             get_page(pp);
2241
2242             /* save the page for background map */
2243             iovecp[page_ix].iov_base = (void*) pp;
2244
2245             /* and put it on the LRU cache */
2246             if (!pagevec_add(&lrupv, pp))
2247                 __pagevec_lru_add_file(&lrupv);
2248         }
2249     }
2250
2251     /* If there were useful pages in the page list, make sure all pages
2252      * are in the LRU cache, then schedule the read */
2253     if(page_count) {
2254         if (pagevec_count(&lrupv))
2255             __pagevec_lru_add_file(&lrupv);
2256         credp = crref();
2257         code = afs_ReadNoCache(avc, ancr, credp);
2258         crfree(credp);
2259     } else {
2260         /* If there is nothing for the background thread to handle,
2261          * it won't be freeing the things that we never gave it */
2262         osi_Free(iovecp, num_pages * sizeof(struct iovec));
2263         osi_Free(auio, sizeof(struct uio));
2264         osi_Free(ancr, sizeof(struct nocache_read_request));
2265     }
2266     /* we do not flush, release, or unmap pages--that will be
2267      * done for us by the background thread as each page comes in
2268      * from the fileserver */
2269     return afs_convert_code(code);
2270 }
2271
2272
2273 static int
2274 afs_linux_bypass_readpage(struct file *fp, struct page *pp)
2275 {
2276     cred_t *credp = NULL;
2277     struct uio *auio;
2278     struct iovec *iovecp;
2279     struct nocache_read_request *ancr;
2280     int code;
2281
2282     /*
2283      * Special case: if page is at or past end of file, just zero it and set
2284      * it as up to date.
2285      */
2286     if (page_offset(pp) >=  i_size_read(fp->f_mapping->host)) {
2287         zero_user_segment(pp, 0, PAGE_CACHE_SIZE);
2288         SetPageUptodate(pp);
2289         unlock_page(pp);
2290         return 0;
2291     }
2292
2293     ClearPageError(pp);
2294
2295     /* receiver frees */
2296     auio = osi_Alloc(sizeof(struct uio));
2297     iovecp = osi_Alloc(sizeof(struct iovec));
2298
2299     /* address can be NULL, because we overwrite it with 'pp', below */
2300     setup_uio(auio, iovecp, NULL, page_offset(pp),
2301               PAGE_SIZE, UIO_READ, AFS_UIOSYS);
2302
2303     /* save the page for background map */
2304     get_page(pp); /* see above */
2305     auio->uio_iov->iov_base = (void*) pp;
2306     /* the background thread will free this */
2307     ancr = osi_Alloc(sizeof(struct nocache_read_request));
2308     ancr->auio = auio;
2309     ancr->offset = page_offset(pp);
2310     ancr->length = PAGE_SIZE;
2311
2312     credp = crref();
2313     code = afs_ReadNoCache(VTOAFS(FILE_INODE(fp)), ancr, credp);
2314     crfree(credp);
2315
2316     return afs_convert_code(code);
2317 }
2318
2319 static inline int
2320 afs_linux_can_bypass(struct inode *ip) {
2321
2322     switch(cache_bypass_strategy) {
2323         case NEVER_BYPASS_CACHE:
2324             return 0;
2325         case ALWAYS_BYPASS_CACHE:
2326             return 1;
2327         case LARGE_FILES_BYPASS_CACHE:
2328             if (i_size_read(ip) > cache_bypass_threshold)
2329                 return 1;
2330         default:
2331             return 0;
2332      }
2333 }
2334
2335 /* Check if a file is permitted to bypass the cache by policy, and modify
2336  * the cache bypass state recorded for that file */
2337
2338 static inline int
2339 afs_linux_bypass_check(struct inode *ip) {
2340     cred_t* credp;
2341
2342     int bypass = afs_linux_can_bypass(ip);
2343
2344     credp = crref();
2345     trydo_cache_transition(VTOAFS(ip), credp, bypass);
2346     crfree(credp);
2347
2348     return bypass;
2349 }
2350
2351
2352 static int
2353 afs_linux_readpage(struct file *fp, struct page *pp)
2354 {
2355     int code;
2356
2357     if (afs_linux_bypass_check(FILE_INODE(fp))) {
2358         code = afs_linux_bypass_readpage(fp, pp);
2359     } else {
2360         code = afs_linux_fillpage(fp, pp);
2361         if (!code)
2362             code = afs_linux_prefetch(fp, pp);
2363         unlock_page(pp);
2364     }
2365
2366     return code;
2367 }
2368
2369 /* Readpages reads a number of pages for a particular file. We use
2370  * this to optimise the reading, by limiting the number of times upon which
2371  * we have to lookup, lock and open vcaches and dcaches
2372  */
2373
2374 static int
2375 afs_linux_readpages(struct file *fp, struct address_space *mapping,
2376                     struct list_head *page_list, unsigned int num_pages)
2377 {
2378     struct inode *inode = mapping->host;
2379     struct vcache *avc = VTOAFS(inode);
2380     struct dcache *tdc;
2381     struct file *cacheFp = NULL;
2382     int code;
2383     unsigned int page_idx;
2384     loff_t offset;
2385     struct pagevec lrupv;
2386     struct afs_pagecopy_task *task;
2387
2388     if (afs_linux_bypass_check(inode))
2389         return afs_linux_bypass_readpages(fp, mapping, page_list, num_pages);
2390
2391     if (cacheDiskType == AFS_FCACHE_TYPE_MEM)
2392         return 0;
2393
2394     /* No readpage (ex: tmpfs) , skip */
2395     if (cachefs_noreadpage)
2396         return 0;
2397
2398     AFS_GLOCK();
2399     if ((code = afs_linux_VerifyVCache(avc, NULL))) {
2400         AFS_GUNLOCK();
2401         return code;
2402     }
2403
2404     ObtainWriteLock(&avc->lock, 912);
2405     AFS_GUNLOCK();
2406
2407     task = afs_pagecopy_init_task();
2408
2409     tdc = NULL;
2410     pagevec_init(&lrupv, 0);
2411     for (page_idx = 0; page_idx < num_pages; page_idx++) {
2412         struct page *page = list_entry(page_list->prev, struct page, lru);
2413         list_del(&page->lru);
2414         offset = page_offset(page);
2415
2416         if (tdc && tdc->f.chunk != AFS_CHUNK(offset)) {
2417             AFS_GLOCK();
2418             ReleaseReadLock(&tdc->lock);
2419             afs_PutDCache(tdc);
2420             AFS_GUNLOCK();
2421             tdc = NULL;
2422             if (cacheFp)
2423                 filp_close(cacheFp, NULL);
2424         }
2425
2426         if (!tdc) {
2427             AFS_GLOCK();
2428             if ((tdc = afs_FindDCache(avc, offset))) {
2429                 ObtainReadLock(&tdc->lock);
2430                 if (!hsame(avc->f.m.DataVersion, tdc->f.versionNo) ||
2431                     (tdc->dflags & DFFetching)) {
2432                     ReleaseReadLock(&tdc->lock);
2433                     afs_PutDCache(tdc);
2434                     tdc = NULL;
2435                 }
2436             }
2437             AFS_GUNLOCK();
2438             if (tdc) {
2439                 cacheFp = afs_linux_raw_open(&tdc->f.inode);
2440                 if (!cacheFp->f_dentry->d_inode->i_mapping->a_ops->readpage) {
2441                     cachefs_noreadpage = 1;
2442                     goto out;
2443                 }
2444             }
2445         }
2446
2447         if (tdc && !add_to_page_cache(page, mapping, page->index,
2448                                       GFP_KERNEL)) {
2449             page_cache_get(page);
2450             if (!pagevec_add(&lrupv, page))
2451                 __pagevec_lru_add_file(&lrupv);
2452
2453             afs_linux_read_cache(cacheFp, page, tdc->f.chunk, &lrupv, task);
2454         }
2455         page_cache_release(page);
2456     }
2457     if (pagevec_count(&lrupv))
2458        __pagevec_lru_add_file(&lrupv);
2459
2460 out:
2461     if (tdc)
2462         filp_close(cacheFp, NULL);
2463
2464     afs_pagecopy_put_task(task);
2465
2466     AFS_GLOCK();
2467     if (tdc) {
2468         ReleaseReadLock(&tdc->lock);
2469         afs_PutDCache(tdc);
2470     }
2471
2472     ReleaseWriteLock(&avc->lock);
2473     AFS_GUNLOCK();
2474     return 0;
2475 }
2476
2477 /* Prepare an AFS vcache for writeback. Should be called with the vcache
2478  * locked */
2479 static inline int
2480 afs_linux_prepare_writeback(struct vcache *avc) {
2481     if (avc->f.states & CPageWrite) {
2482         return AOP_WRITEPAGE_ACTIVATE;
2483     }
2484     avc->f.states |= CPageWrite;
2485     return 0;
2486 }
2487
2488 static inline int
2489 afs_linux_dopartialwrite(struct vcache *avc, cred_t *credp) {
2490     struct vrequest treq;
2491     int code = 0;
2492
2493     if (!afs_InitReq(&treq, credp))
2494         code = afs_DoPartialWrite(avc, &treq);
2495
2496     return afs_convert_code(code);
2497 }
2498
2499 static inline void
2500 afs_linux_complete_writeback(struct vcache *avc) {
2501     avc->f.states &= ~CPageWrite;
2502 }
2503
2504 /* Writeback a given page syncronously. Called with no AFS locks held */
2505 static int
2506 afs_linux_page_writeback(struct inode *ip, struct page *pp,
2507                          unsigned long offset, unsigned int count,
2508                          cred_t *credp)
2509 {
2510     struct vcache *vcp = VTOAFS(ip);
2511     char *buffer;
2512     afs_offs_t base;
2513     int code = 0;
2514     struct uio tuio;
2515     struct iovec iovec;
2516     int f_flags = 0;
2517
2518     buffer = kmap(pp) + offset;
2519     base = page_offset(pp) + offset;
2520
2521     AFS_GLOCK();
2522     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
2523                ICL_TYPE_POINTER, pp, ICL_TYPE_INT32, page_count(pp),
2524                ICL_TYPE_INT32, 99999);
2525
2526     setup_uio(&tuio, &iovec, buffer, base, count, UIO_WRITE, AFS_UIOSYS);
2527
2528     code = afs_write(vcp, &tuio, f_flags, credp, 0);
2529
2530     i_size_write(ip, vcp->f.m.Length);
2531     ip->i_blocks = ((vcp->f.m.Length + 1023) >> 10) << 1;
2532
2533     code = code ? afs_convert_code(code) : count - tuio.uio_resid;
2534
2535     afs_Trace4(afs_iclSetp, CM_TRACE_UPDATEPAGE, ICL_TYPE_POINTER, vcp,
2536                ICL_TYPE_POINTER, pp, ICL_TYPE_INT32, page_count(pp),
2537                ICL_TYPE_INT32, code);
2538
2539     AFS_GUNLOCK();
2540     kunmap(pp);
2541
2542     return code;
2543 }
2544
2545 static int
2546 afs_linux_writepage_sync(struct inode *ip, struct page *pp,
2547                          unsigned long offset, unsigned int count)
2548 {
2549     int code;
2550     int code1 = 0;
2551     struct vcache *vcp = VTOAFS(ip);
2552     cred_t *credp;
2553
2554     /* Catch recursive writeback. This occurs if the kernel decides
2555      * writeback is required whilst we are writing to the cache, or
2556      * flushing to the server. When we're running syncronously (as
2557      * opposed to from writepage) we can't actually do anything about
2558      * this case - as we can't return AOP_WRITEPAGE_ACTIVATE to write()
2559      */
2560     AFS_GLOCK();
2561     ObtainWriteLock(&vcp->lock, 532);
2562     afs_linux_prepare_writeback(vcp);
2563     ReleaseWriteLock(&vcp->lock);
2564     AFS_GUNLOCK();
2565
2566     credp = crref();
2567     code = afs_linux_page_writeback(ip, pp, offset, count, credp);
2568
2569     AFS_GLOCK();
2570     ObtainWriteLock(&vcp->lock, 533);
2571     if (code > 0)
2572         code1 = afs_linux_dopartialwrite(vcp, credp);
2573     afs_linux_complete_writeback(vcp);
2574     ReleaseWriteLock(&vcp->lock);
2575     AFS_GUNLOCK();
2576     crfree(credp);
2577
2578     if (code1)
2579         return code1;
2580
2581     return code;
2582 }
2583
2584 static int
2585 #ifdef AOP_WRITEPAGE_TAKES_WRITEBACK_CONTROL
2586 afs_linux_writepage(struct page *pp, struct writeback_control *wbc)
2587 #else
2588 afs_linux_writepage(struct page *pp)
2589 #endif
2590 {
2591     struct address_space *mapping = pp->mapping;
2592     struct inode *inode;
2593     struct vcache *vcp;
2594     cred_t *credp;
2595     unsigned int to = PAGE_CACHE_SIZE;
2596     loff_t isize;
2597     int code = 0;
2598     int code1 = 0;
2599
2600     if (PageReclaim(pp)) {
2601         return AOP_WRITEPAGE_ACTIVATE;
2602         /* XXX - Do we need to redirty the page here? */
2603     }
2604
2605     page_cache_get(pp);
2606
2607     inode = mapping->host;
2608     vcp = VTOAFS(inode);
2609     isize = i_size_read(inode);
2610
2611     /* Don't defeat an earlier truncate */
2612     if (page_offset(pp) > isize) {
2613         set_page_writeback(pp);
2614         unlock_page(pp);
2615         goto done;
2616     }
2617
2618     AFS_GLOCK();
2619     ObtainWriteLock(&vcp->lock, 537);
2620     code = afs_linux_prepare_writeback(vcp);
2621     if (code == AOP_WRITEPAGE_ACTIVATE) {
2622         /* WRITEPAGE_ACTIVATE is the only return value that permits us
2623          * to return with the page still locked */
2624         ReleaseWriteLock(&vcp->lock);
2625         AFS_GUNLOCK();
2626         return code;
2627     }
2628
2629     /* Grab the creds structure currently held in the vnode, and
2630      * get a reference to it, in case it goes away ... */
2631     credp = vcp->cred;
2632     if (credp)
2633         crhold(credp);
2634     else
2635         credp = crref();
2636     ReleaseWriteLock(&vcp->lock);
2637     AFS_GUNLOCK();
2638
2639     set_page_writeback(pp);
2640
2641     SetPageUptodate(pp);
2642
2643     /* We can unlock the page here, because it's protected by the
2644      * page_writeback flag. This should make us less vulnerable to
2645      * deadlocking in afs_write and afs_DoPartialWrite
2646      */
2647     unlock_page(pp);
2648
2649     /* If this is the final page, then just write the number of bytes that
2650      * are actually in it */
2651     if ((isize - page_offset(pp)) < to )
2652         to = isize - page_offset(pp);
2653
2654     code = afs_linux_page_writeback(inode, pp, 0, to, credp);
2655
2656     AFS_GLOCK();
2657     ObtainWriteLock(&vcp->lock, 538);
2658
2659     /* As much as we might like to ignore a file server error here,
2660      * and just try again when we close(), unfortunately StoreAllSegments
2661      * will invalidate our chunks if the server returns a permanent error,
2662      * so we need to at least try and get that error back to the user
2663      */
2664     if (code == to)
2665         code1 = afs_linux_dopartialwrite(vcp, credp);
2666
2667     afs_linux_complete_writeback(vcp);
2668     ReleaseWriteLock(&vcp->lock);
2669     crfree(credp);
2670     AFS_GUNLOCK();
2671
2672 done:
2673     end_page_writeback(pp);
2674     page_cache_release(pp);
2675
2676     if (code1)
2677         return code1;
2678
2679     if (code == to)
2680         return 0;
2681
2682     return code;
2683 }
2684
2685 /* afs_linux_permission
2686  * Check access rights - returns error if can't check or permission denied.
2687  */
2688 static int
2689 #if defined(IOP_PERMISSION_TAKES_FLAGS)
2690 afs_linux_permission(struct inode *ip, int mode, unsigned int flags)
2691 #elif defined(IOP_PERMISSION_TAKES_NAMEIDATA)
2692 afs_linux_permission(struct inode *ip, int mode, struct nameidata *nd)
2693 #else
2694 afs_linux_permission(struct inode *ip, int mode)
2695 #endif
2696 {
2697     int code;
2698     cred_t *credp;
2699     int tmp = 0;
2700
2701     /* Check for RCU path walking */
2702 #if defined(IOP_PERMISSION_TAKES_FLAGS)
2703     if (flags & IPERM_FLAG_RCU)
2704        return -ECHILD;
2705 #elif defined(MAY_NOT_BLOCK)
2706     if (mode & MAY_NOT_BLOCK)
2707        return -ECHILD;
2708 #endif
2709
2710     credp = crref();
2711     AFS_GLOCK();
2712     if (mode & MAY_EXEC)
2713         tmp |= VEXEC;
2714     if (mode & MAY_READ)
2715         tmp |= VREAD;
2716     if (mode & MAY_WRITE)
2717         tmp |= VWRITE;
2718     code = afs_access(VTOAFS(ip), tmp, credp);
2719
2720     AFS_GUNLOCK();
2721     crfree(credp);
2722     return afs_convert_code(code);
2723 }
2724
2725 static int
2726 afs_linux_commit_write(struct file *file, struct page *page, unsigned offset,
2727                        unsigned to)
2728 {
2729     int code;
2730     struct inode *inode = FILE_INODE(file);
2731     loff_t pagebase = page_offset(page);
2732
2733     if (i_size_read(inode) < (pagebase + offset))
2734         i_size_write(inode, pagebase + offset);
2735
2736     if (PageChecked(page)) {
2737         SetPageUptodate(page);
2738         ClearPageChecked(page);
2739     }
2740
2741     code = afs_linux_writepage_sync(inode, page, offset, to - offset);
2742
2743     return code;
2744 }
2745
2746 static int
2747 afs_linux_prepare_write(struct file *file, struct page *page, unsigned from,
2748                         unsigned to)
2749 {
2750
2751     /* http://kerneltrap.org/node/4941 details the expected behaviour of
2752      * prepare_write. Essentially, if the page exists within the file,
2753      * and is not being fully written, then we should populate it.
2754      */
2755
2756     if (!PageUptodate(page)) {
2757         loff_t pagebase = page_offset(page);
2758         loff_t isize = i_size_read(page->mapping->host);
2759
2760         /* Is the location we are writing to beyond the end of the file? */
2761         if (pagebase >= isize ||
2762             ((from == 0) && (pagebase + to) >= isize)) {
2763             zero_user_segments(page, 0, from, to, PAGE_CACHE_SIZE);
2764             SetPageChecked(page);
2765         /* Are we we writing a full page */
2766         } else if (from == 0 && to == PAGE_CACHE_SIZE) {
2767             SetPageChecked(page);
2768         /* Is the page readable, if it's wronly, we don't care, because we're
2769          * not actually going to read from it ... */
2770         } else if ((file->f_flags && O_ACCMODE) != O_WRONLY) {
2771             /* We don't care if fillpage fails, because if it does the page
2772              * won't be marked as up to date
2773              */
2774             afs_linux_fillpage(file, page);
2775         }
2776     }
2777     return 0;
2778 }
2779
2780 #if defined(STRUCT_ADDRESS_SPACE_OPERATIONS_HAS_WRITE_BEGIN)
2781 static int
2782 afs_linux_write_end(struct file *file, struct address_space *mapping,
2783                                 loff_t pos, unsigned len, unsigned copied,
2784                                 struct page *page, void *fsdata)
2785 {
2786     int code;
2787     unsigned int from = pos & (PAGE_CACHE_SIZE - 1);
2788
2789     code = afs_linux_commit_write(file, page, from, from + len);
2790
2791     unlock_page(page);
2792     page_cache_release(page);
2793     return code;
2794 }
2795
2796 static int
2797 afs_linux_write_begin(struct file *file, struct address_space *mapping,
2798                                 loff_t pos, unsigned len, unsigned flags,
2799                                 struct page **pagep, void **fsdata)
2800 {
2801     struct page *page;
2802     pgoff_t index = pos >> PAGE_CACHE_SHIFT;
2803     unsigned int from = pos & (PAGE_CACHE_SIZE - 1);
2804     int code;
2805
2806     page = grab_cache_page_write_begin(mapping, index, flags);
2807     *pagep = page;
2808
2809     code = afs_linux_prepare_write(file, page, from, from + len);
2810     if (code) {
2811         unlock_page(page);
2812         page_cache_release(page);
2813     }
2814
2815     return code;
2816 }
2817 #endif
2818
2819 #ifndef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
2820 static void *
2821 afs_linux_dir_follow_link(struct dentry *dentry, struct nameidata *nd)
2822 {
2823     struct dentry **dpp;
2824     struct dentry *target;
2825
2826     if (current->total_link_count > 0) {
2827         /* avoid symlink resolution limits when resolving; we cannot contribute to
2828          * an infinite symlink loop */
2829         /* only do this for follow_link when total_link_count is positive to be
2830          * on the safe side; there is at least one code path in the Linux
2831          * kernel where it seems like it may be possible to get here without
2832          * total_link_count getting incremented. it is not clear on how that
2833          * path is actually reached, but guard against it just to be safe */
2834         current->total_link_count--;
2835     }
2836
2837     target = canonical_dentry(dentry->d_inode);
2838
2839 # ifdef STRUCT_NAMEIDATA_HAS_PATH
2840     dpp = &nd->path.dentry;
2841 # else
2842     dpp = &nd->dentry;
2843 # endif
2844
2845     dput(*dpp);
2846
2847     if (target) {
2848         *dpp = target;
2849     } else {
2850         *dpp = dget(dentry);
2851     }
2852
2853     nd->last_type = LAST_BIND;
2854
2855     return NULL;
2856 }
2857 #endif /* !STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT */
2858
2859
2860 static struct inode_operations afs_file_iops = {
2861   .permission =         afs_linux_permission,
2862   .getattr =            afs_linux_getattr,
2863   .setattr =            afs_notify_change,
2864 };
2865
2866 static struct address_space_operations afs_file_aops = {
2867   .readpage =           afs_linux_readpage,
2868   .readpages =          afs_linux_readpages,
2869   .writepage =          afs_linux_writepage,
2870 #if defined (STRUCT_ADDRESS_SPACE_OPERATIONS_HAS_WRITE_BEGIN)
2871   .write_begin =        afs_linux_write_begin,
2872   .write_end =          afs_linux_write_end,
2873 #else
2874   .commit_write =       afs_linux_commit_write,
2875   .prepare_write =      afs_linux_prepare_write,
2876 #endif
2877 };
2878
2879
2880 /* Separate ops vector for directories. Linux 2.2 tests type of inode
2881  * by what sort of operation is allowed.....
2882  */
2883
2884 static struct inode_operations afs_dir_iops = {
2885   .setattr =            afs_notify_change,
2886   .create =             afs_linux_create,
2887   .lookup =             afs_linux_lookup,
2888   .link =               afs_linux_link,
2889   .unlink =             afs_linux_unlink,
2890   .symlink =            afs_linux_symlink,
2891   .mkdir =              afs_linux_mkdir,
2892   .rmdir =              afs_linux_rmdir,
2893   .rename =             afs_linux_rename,
2894   .getattr =            afs_linux_getattr,
2895   .permission =         afs_linux_permission,
2896 #ifndef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
2897   .follow_link =        afs_linux_dir_follow_link,
2898 #endif
2899 };
2900
2901 /* We really need a separate symlink set of ops, since do_follow_link()
2902  * determines if it _is_ a link by checking if the follow_link op is set.
2903  */
2904 #if defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
2905 static int
2906 afs_symlink_filler(struct file *file, struct page *page)
2907 {
2908     struct inode *ip = (struct inode *)page->mapping->host;
2909     char *p = (char *)kmap(page);
2910     int code;
2911
2912     AFS_GLOCK();
2913     code = afs_linux_ireadlink(ip, p, PAGE_SIZE, AFS_UIOSYS);
2914     AFS_GUNLOCK();
2915
2916     if (code < 0)
2917         goto fail;
2918     p[code] = '\0';             /* null terminate? */
2919
2920     SetPageUptodate(page);
2921     kunmap(page);
2922     unlock_page(page);
2923     return 0;
2924
2925   fail:
2926     SetPageError(page);
2927     kunmap(page);
2928     unlock_page(page);
2929     return code;
2930 }
2931
2932 static struct address_space_operations afs_symlink_aops = {
2933   .readpage =   afs_symlink_filler
2934 };
2935 #endif  /* USABLE_KERNEL_PAGE_SYMLINK_CACHE */
2936
2937 static struct inode_operations afs_symlink_iops = {
2938 #if defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
2939   .readlink =           page_readlink,
2940 # if defined(HAVE_LINUX_PAGE_FOLLOW_LINK)
2941   .follow_link =        page_follow_link,
2942 # else
2943   .follow_link =        page_follow_link_light,
2944   .put_link =           page_put_link,
2945 # endif
2946 #else /* !defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE) */
2947   .readlink =           afs_linux_readlink,
2948   .follow_link =        afs_linux_follow_link,
2949   .put_link =           afs_linux_put_link,
2950 #endif /* USABLE_KERNEL_PAGE_SYMLINK_CACHE */
2951   .setattr =            afs_notify_change,
2952 };
2953
2954 void
2955 afs_fill_inode(struct inode *ip, struct vattr *vattr)
2956 {
2957         
2958     if (vattr)
2959         vattr2inode(ip, vattr);
2960
2961     ip->i_mapping->backing_dev_info = afs_backing_dev_info;
2962 /* Reset ops if symlink or directory. */
2963     if (S_ISREG(ip->i_mode)) {
2964         ip->i_op = &afs_file_iops;
2965         ip->i_fop = &afs_file_fops;
2966         ip->i_data.a_ops = &afs_file_aops;
2967
2968     } else if (S_ISDIR(ip->i_mode)) {
2969         ip->i_op = &afs_dir_iops;
2970         ip->i_fop = &afs_dir_fops;
2971
2972     } else if (S_ISLNK(ip->i_mode)) {
2973         ip->i_op = &afs_symlink_iops;
2974 #if defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
2975         ip->i_data.a_ops = &afs_symlink_aops;
2976         ip->i_mapping = &ip->i_data;
2977 #endif
2978     }
2979
2980 }