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