2 * Copyright 2000, International Business Machines Corporation and others.
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
11 * Linux specific vnodeops. Also includes the glue routines required to call
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
21 #include <afsconfig.h>
22 #include "afs/param.h"
25 #include "afs/sysincludes.h"
26 #include "afsincludes.h"
27 #include "afs/afs_stats.h"
29 #ifdef HAVE_MM_INLINE_H
30 #include <linux/mm_inline.h>
32 #include <linux/pagemap.h>
33 #include <linux/writeback.h>
34 #include <linux/pagevec.h>
35 #include <linux/aio.h>
37 #include "afs/afs_bypasscache.h"
39 #include "osi_compat.h"
40 #include "osi_pagecopy.h"
42 #ifndef HAVE_LINUX_PAGEVEC_LRU_ADD_FILE
43 #define __pagevec_lru_add_file __pagevec_lru_add
47 #define MAX_ERRNO 1000L
50 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,34)
51 /* Enable our workaround for a race with d_splice_alias. The race was fixed in
52 * 2.6.34, so don't do it after that point. */
53 # define D_SPLICE_ALIAS_RACE
56 int cachefs_noreadpage
= 0;
58 extern struct backing_dev_info
*afs_backing_dev_info
;
60 extern struct vcache
*afs_globalVp
;
62 /* This function converts a positive error code from AFS into a negative
63 * code suitable for passing into the Linux VFS layer. It checks that the
64 * error code is within the permissable bounds for the ERR_PTR mechanism.
66 * _All_ error codes which come from the AFS layer should be passed through
67 * this function before being returned to the kernel.
71 afs_convert_code(int code
) {
72 if ((code
>= 0) && (code
<= MAX_ERRNO
))
78 /* Linux doesn't require a credp for many functions, and crref is an expensive
79 * operation. This helper function avoids obtaining it for VerifyVCache calls
83 afs_linux_VerifyVCache(struct vcache
*avc
, cred_t
**retcred
) {
85 struct vrequest
*treq
= NULL
;
88 if (avc
->f
.states
& CStatd
) {
96 code
= afs_CreateReq(&treq
, credp
);
98 code
= afs_VerifyVCache2(avc
, treq
);
107 return afs_convert_code(code
);
110 #if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER) || defined(HAVE_LINUX_GENERIC_FILE_AIO_READ)
111 # if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER)
113 afs_linux_read_iter(struct kiocb
*iocb
, struct iov_iter
*iter
)
114 # elif defined(LINUX_HAS_NONVECTOR_AIO)
116 afs_linux_aio_read(struct kiocb
*iocb
, char __user
*buf
, size_t bufsize
,
120 afs_linux_aio_read(struct kiocb
*iocb
, const struct iovec
*buf
,
121 unsigned long bufsize
, loff_t pos
)
124 struct file
*fp
= iocb
->ki_filp
;
126 struct vcache
*vcp
= VTOAFS(fp
->f_dentry
->d_inode
);
127 # if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER)
128 loff_t pos
= iocb
->ki_pos
;
129 unsigned long bufsize
= iter
->nr_segs
;
134 afs_Trace4(afs_iclSetp
, CM_TRACE_AIOREADOP
, ICL_TYPE_POINTER
, vcp
,
135 ICL_TYPE_OFFSET
, ICL_HANDLE_OFFSET(pos
), ICL_TYPE_INT32
,
136 (afs_int32
)bufsize
, ICL_TYPE_INT32
, 99999);
137 code
= afs_linux_VerifyVCache(vcp
, NULL
);
140 /* Linux's FlushPages implementation doesn't ever use credp,
141 * so we optimise by not using it */
142 osi_FlushPages(vcp
, NULL
); /* ensure stale pages are gone */
144 # if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER)
145 code
= generic_file_read_iter(iocb
, iter
);
147 code
= generic_file_aio_read(iocb
, buf
, bufsize
, pos
);
152 afs_Trace4(afs_iclSetp
, CM_TRACE_AIOREADOP
, ICL_TYPE_POINTER
, vcp
,
153 ICL_TYPE_OFFSET
, ICL_HANDLE_OFFSET(pos
), ICL_TYPE_INT32
,
154 (afs_int32
)bufsize
, ICL_TYPE_INT32
, code
);
160 afs_linux_read(struct file
*fp
, char *buf
, size_t count
, loff_t
* offp
)
163 struct vcache
*vcp
= VTOAFS(fp
->f_dentry
->d_inode
);
166 afs_Trace4(afs_iclSetp
, CM_TRACE_READOP
, ICL_TYPE_POINTER
, vcp
,
167 ICL_TYPE_OFFSET
, offp
, ICL_TYPE_INT32
, count
, ICL_TYPE_INT32
,
169 code
= afs_linux_VerifyVCache(vcp
, NULL
);
172 /* Linux's FlushPages implementation doesn't ever use credp,
173 * so we optimise by not using it */
174 osi_FlushPages(vcp
, NULL
); /* ensure stale pages are gone */
176 code
= do_sync_read(fp
, buf
, count
, offp
);
180 afs_Trace4(afs_iclSetp
, CM_TRACE_READOP
, ICL_TYPE_POINTER
, vcp
,
181 ICL_TYPE_OFFSET
, offp
, ICL_TYPE_INT32
, count
, ICL_TYPE_INT32
,
189 /* Now we have integrated VM for writes as well as reads. the generic write operations
190 * also take care of re-positioning the pointer if file is open in append
191 * mode. Call fake open/close to ensure we do writes of core dumps.
193 #if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER) || defined(HAVE_LINUX_GENERIC_FILE_AIO_READ)
194 # if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER)
196 afs_linux_write_iter(struct kiocb
*iocb
, struct iov_iter
*iter
)
197 # elif defined(LINUX_HAS_NONVECTOR_AIO)
199 afs_linux_aio_write(struct kiocb
*iocb
, const char __user
*buf
, size_t bufsize
,
203 afs_linux_aio_write(struct kiocb
*iocb
, const struct iovec
*buf
,
204 unsigned long bufsize
, loff_t pos
)
208 struct vcache
*vcp
= VTOAFS(iocb
->ki_filp
->f_dentry
->d_inode
);
210 # if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER)
211 loff_t pos
= iocb
->ki_pos
;
212 unsigned long bufsize
= iter
->nr_segs
;
217 afs_Trace4(afs_iclSetp
, CM_TRACE_AIOWRITEOP
, ICL_TYPE_POINTER
, vcp
,
218 ICL_TYPE_OFFSET
, ICL_HANDLE_OFFSET(pos
), ICL_TYPE_INT32
,
219 (afs_int32
)bufsize
, ICL_TYPE_INT32
,
220 (iocb
->ki_filp
->f_flags
& O_APPEND
) ? 99998 : 99999);
222 code
= afs_linux_VerifyVCache(vcp
, &credp
);
224 ObtainWriteLock(&vcp
->lock
, 529);
226 ReleaseWriteLock(&vcp
->lock
);
229 # if defined(STRUCT_FILE_OPERATIONS_HAS_READ_ITER)
230 code
= generic_file_write_iter(iocb
, iter
);
232 code
= generic_file_aio_write(iocb
, buf
, bufsize
, pos
);
237 ObtainWriteLock(&vcp
->lock
, 530);
239 if (vcp
->execsOrWriters
== 1 && !credp
)
242 afs_FakeClose(vcp
, credp
);
243 ReleaseWriteLock(&vcp
->lock
);
245 afs_Trace4(afs_iclSetp
, CM_TRACE_AIOWRITEOP
, ICL_TYPE_POINTER
, vcp
,
246 ICL_TYPE_OFFSET
, ICL_HANDLE_OFFSET(pos
), ICL_TYPE_INT32
,
247 (afs_int32
)bufsize
, ICL_TYPE_INT32
, code
);
256 afs_linux_write(struct file
*fp
, const char *buf
, size_t count
, loff_t
* offp
)
259 struct vcache
*vcp
= VTOAFS(fp
->f_dentry
->d_inode
);
264 afs_Trace4(afs_iclSetp
, CM_TRACE_WRITEOP
, ICL_TYPE_POINTER
, vcp
,
265 ICL_TYPE_OFFSET
, offp
, ICL_TYPE_INT32
, count
, ICL_TYPE_INT32
,
266 (fp
->f_flags
& O_APPEND
) ? 99998 : 99999);
268 code
= afs_linux_VerifyVCache(vcp
, &credp
);
270 ObtainWriteLock(&vcp
->lock
, 529);
272 ReleaseWriteLock(&vcp
->lock
);
275 code
= do_sync_write(fp
, buf
, count
, offp
);
279 ObtainWriteLock(&vcp
->lock
, 530);
281 if (vcp
->execsOrWriters
== 1 && !credp
)
284 afs_FakeClose(vcp
, credp
);
285 ReleaseWriteLock(&vcp
->lock
);
287 afs_Trace4(afs_iclSetp
, CM_TRACE_WRITEOP
, ICL_TYPE_POINTER
, vcp
,
288 ICL_TYPE_OFFSET
, offp
, ICL_TYPE_INT32
, count
, ICL_TYPE_INT32
,
298 extern int BlobScan(struct dcache
* afile
, afs_int32 ablob
, afs_int32
*ablobOut
);
300 /* This is a complete rewrite of afs_readdir, since we can make use of
301 * filldir instead of afs_readdir_move. Note that changes to vcache/dcache
302 * handling and use of bulkstats will need to be reflected here as well.
305 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
306 afs_linux_readdir(struct file
*fp
, struct dir_context
*ctx
)
308 afs_linux_readdir(struct file
*fp
, void *dirbuf
, filldir_t filldir
)
311 struct vcache
*avc
= VTOAFS(FILE_INODE(fp
));
312 struct vrequest
*treq
= NULL
;
318 struct DirBuffer entry
;
321 afs_size_t origOffset
, tlen
;
322 cred_t
*credp
= crref();
323 struct afs_fakestat_state fakestat
;
326 AFS_STATCNT(afs_readdir
);
328 code
= afs_convert_code(afs_CreateReq(&treq
, credp
));
333 afs_InitFakeStat(&fakestat
);
334 code
= afs_convert_code(afs_EvalFakeStat(&avc
, &fakestat
, treq
));
338 /* update the cache entry */
340 code
= afs_convert_code(afs_VerifyVCache2(avc
, treq
));
344 /* get a reference to the entire directory */
345 tdc
= afs_GetDCache(avc
, (afs_size_t
) 0, treq
, &origOffset
, &tlen
, 1);
351 ObtainWriteLock(&avc
->lock
, 811);
352 ObtainReadLock(&tdc
->lock
);
354 * Make sure that the data in the cache is current. There are two
355 * cases we need to worry about:
356 * 1. The cache data is being fetched by another process.
357 * 2. The cache data is no longer valid
359 while ((avc
->f
.states
& CStatd
)
360 && (tdc
->dflags
& DFFetching
)
361 && hsame(avc
->f
.m
.DataVersion
, tdc
->f
.versionNo
)) {
362 ReleaseReadLock(&tdc
->lock
);
363 ReleaseWriteLock(&avc
->lock
);
364 afs_osi_Sleep(&tdc
->validPos
);
365 ObtainWriteLock(&avc
->lock
, 812);
366 ObtainReadLock(&tdc
->lock
);
368 if (!(avc
->f
.states
& CStatd
)
369 || !hsame(avc
->f
.m
.DataVersion
, tdc
->f
.versionNo
)) {
370 ReleaseReadLock(&tdc
->lock
);
371 ReleaseWriteLock(&avc
->lock
);
376 /* Set the readdir-in-progress flag, and downgrade the lock
377 * to shared so others will be able to acquire a read lock.
379 avc
->f
.states
|= CReadDir
;
380 avc
->dcreaddir
= tdc
;
381 avc
->readdir_pid
= MyPidxx2Pid(MyPidxx
);
382 ConvertWToSLock(&avc
->lock
);
384 /* Fill in until we get an error or we're done. This implementation
385 * takes an offset in units of blobs, rather than bytes.
388 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
391 offset
= (int) fp
->f_pos
;
394 code
= BlobScan(tdc
, offset
, &dirpos
);
398 code
= afs_dir_GetVerifiedBlob(tdc
, dirpos
, &entry
);
400 if (!(avc
->f
.states
& CCorrupt
)) {
401 struct cell
*tc
= afs_GetCellStale(avc
->f
.fid
.Cell
, READ_LOCK
);
402 afs_warn("afs: Corrupt directory (%d.%d.%d.%d [%s] @%lx, pos %d)\n",
403 avc
->f
.fid
.Cell
, avc
->f
.fid
.Fid
.Volume
,
404 avc
->f
.fid
.Fid
.Vnode
, avc
->f
.fid
.Fid
.Unique
,
405 tc
? tc
->cellName
: "",
406 (unsigned long)&tdc
->f
.inode
, dirpos
);
408 afs_PutCell(tc
, READ_LOCK
);
409 UpgradeSToWLock(&avc
->lock
, 814);
410 avc
->f
.states
|= CCorrupt
;
416 de
= (struct DirEntry
*)entry
.data
;
417 ino
= afs_calc_inum (avc
->f
.fid
.Cell
, avc
->f
.fid
.Fid
.Volume
,
418 ntohl(de
->fid
.vnode
));
419 len
= strlen(de
->name
);
421 /* filldir returns -EINVAL when the buffer is full. */
423 unsigned int type
= DT_UNKNOWN
;
424 struct VenusFid afid
;
427 afid
.Cell
= avc
->f
.fid
.Cell
;
428 afid
.Fid
.Volume
= avc
->f
.fid
.Fid
.Volume
;
429 afid
.Fid
.Vnode
= ntohl(de
->fid
.vnode
);
430 afid
.Fid
.Unique
= ntohl(de
->fid
.vunique
);
431 if ((avc
->f
.states
& CForeign
) == 0 && (ntohl(de
->fid
.vnode
) & 1)) {
433 } else if ((tvc
= afs_FindVCache(&afid
, 0, 0))) {
434 if (tvc
->mvstat
!= AFS_MVSTAT_FILE
) {
436 } else if (((tvc
->f
.states
) & (CStatd
| CTruth
))) {
437 /* CTruth will be set if the object has
442 else if (vtype
== VREG
)
444 /* Don't do this until we're sure it can't be a mtpt */
445 /* else if (vtype == VLNK)
447 /* what other types does AFS support? */
449 /* clean up from afs_FindVCache */
453 * If this is NFS readdirplus, then the filler is going to
454 * call getattr on this inode, which will deadlock if we're
458 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
459 /* dir_emit returns a bool - true when it succeeds.
460 * Inverse the result to fit with how we check "code" */
461 code
= !dir_emit(ctx
, de
->name
, len
, ino
, type
);
463 code
= (*filldir
) (dirbuf
, de
->name
, len
, offset
, ino
, type
);
470 offset
= dirpos
+ 1 + ((len
+ 16) >> 5);
472 /* If filldir didn't fill in the last one this is still pointing to that
478 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
479 ctx
->pos
= (loff_t
) offset
;
481 fp
->f_pos
= (loff_t
) offset
;
483 ReleaseReadLock(&tdc
->lock
);
485 UpgradeSToWLock(&avc
->lock
, 813);
486 avc
->f
.states
&= ~CReadDir
;
488 avc
->readdir_pid
= 0;
489 ReleaseSharedLock(&avc
->lock
);
492 afs_PutFakeStat(&fakestat
);
493 afs_DestroyReq(treq
);
500 /* in afs_pioctl.c */
501 extern int afs_xioctl(struct inode
*ip
, struct file
*fp
, unsigned int com
,
504 #if defined(HAVE_UNLOCKED_IOCTL) || defined(HAVE_COMPAT_IOCTL)
505 static long afs_unlocked_xioctl(struct file
*fp
, unsigned int com
,
507 return afs_xioctl(FILE_INODE(fp
), fp
, com
, arg
);
514 afs_linux_mmap(struct file
*fp
, struct vm_area_struct
*vmap
)
516 struct vcache
*vcp
= VTOAFS(FILE_INODE(fp
));
520 afs_Trace3(afs_iclSetp
, CM_TRACE_GMAP
, ICL_TYPE_POINTER
, vcp
,
521 ICL_TYPE_POINTER
, vmap
->vm_start
, ICL_TYPE_INT32
,
522 vmap
->vm_end
- vmap
->vm_start
);
524 /* get a validated vcache entry */
525 code
= afs_linux_VerifyVCache(vcp
, NULL
);
528 /* Linux's Flushpage implementation doesn't use credp, so optimise
529 * our code to not need to crref() it */
530 osi_FlushPages(vcp
, NULL
); /* ensure stale pages are gone */
532 code
= generic_file_mmap(fp
, vmap
);
535 vcp
->f
.states
|= CMAPPED
;
543 afs_linux_open(struct inode
*ip
, struct file
*fp
)
545 struct vcache
*vcp
= VTOAFS(ip
);
546 cred_t
*credp
= crref();
550 code
= afs_open(&vcp
, fp
->f_flags
, credp
);
554 return afs_convert_code(code
);
558 afs_linux_release(struct inode
*ip
, struct file
*fp
)
560 struct vcache
*vcp
= VTOAFS(ip
);
561 cred_t
*credp
= crref();
565 code
= afs_close(vcp
, fp
->f_flags
, credp
);
566 ObtainWriteLock(&vcp
->lock
, 807);
571 ReleaseWriteLock(&vcp
->lock
);
575 return afs_convert_code(code
);
579 #if defined(FOP_FSYNC_TAKES_DENTRY)
580 afs_linux_fsync(struct file
*fp
, struct dentry
*dp
, int datasync
)
581 #elif defined(FOP_FSYNC_TAKES_RANGE)
582 afs_linux_fsync(struct file
*fp
, loff_t start
, loff_t end
, int datasync
)
584 afs_linux_fsync(struct file
*fp
, int datasync
)
588 struct inode
*ip
= FILE_INODE(fp
);
589 cred_t
*credp
= crref();
591 #if defined(FOP_FSYNC_TAKES_RANGE)
592 afs_linux_lock_inode(ip
);
595 code
= afs_fsync(VTOAFS(ip
), credp
);
597 #if defined(FOP_FSYNC_TAKES_RANGE)
598 afs_linux_unlock_inode(ip
);
601 return afs_convert_code(code
);
607 afs_linux_lock(struct file
*fp
, int cmd
, struct file_lock
*flp
)
610 struct vcache
*vcp
= VTOAFS(FILE_INODE(fp
));
611 cred_t
*credp
= crref();
612 struct AFS_FLOCK flock
;
614 /* Convert to a lock format afs_lockctl understands. */
615 memset(&flock
, 0, sizeof(flock
));
616 flock
.l_type
= flp
->fl_type
;
617 flock
.l_pid
= flp
->fl_pid
;
619 flock
.l_start
= flp
->fl_start
;
620 if (flp
->fl_end
== OFFSET_MAX
)
621 flock
.l_len
= 0; /* Lock to end of file */
623 flock
.l_len
= flp
->fl_end
- flp
->fl_start
+ 1;
625 /* Safe because there are no large files, yet */
626 #if defined(F_GETLK64) && (F_GETLK != F_GETLK64)
627 if (cmd
== F_GETLK64
)
629 else if (cmd
== F_SETLK64
)
631 else if (cmd
== F_SETLKW64
)
633 #endif /* F_GETLK64 && F_GETLK != F_GETLK64 */
636 code
= afs_convert_code(afs_lockctl(vcp
, &flock
, cmd
, credp
));
639 if ((code
== 0 || flp
->fl_type
== F_UNLCK
) &&
640 (cmd
== F_SETLK
|| cmd
== F_SETLKW
)) {
641 code
= afs_posix_lock_file(fp
, flp
);
642 if (code
&& flp
->fl_type
!= F_UNLCK
) {
643 struct AFS_FLOCK flock2
;
645 flock2
.l_type
= F_UNLCK
;
647 afs_lockctl(vcp
, &flock2
, F_SETLK
, credp
);
651 /* If lockctl says there are no conflicting locks, then also check with the
652 * kernel, as lockctl knows nothing about byte range locks
654 if (code
== 0 && cmd
== F_GETLK
&& flock
.l_type
== F_UNLCK
) {
655 afs_posix_test_lock(fp
, flp
);
656 /* If we found a lock in the kernel's structure, return it */
657 if (flp
->fl_type
!= F_UNLCK
) {
663 /* Convert flock back to Linux's file_lock */
664 flp
->fl_type
= flock
.l_type
;
665 flp
->fl_pid
= flock
.l_pid
;
666 flp
->fl_start
= flock
.l_start
;
667 if (flock
.l_len
== 0)
668 flp
->fl_end
= OFFSET_MAX
; /* Lock to end of file */
670 flp
->fl_end
= flock
.l_start
+ flock
.l_len
- 1;
676 #ifdef STRUCT_FILE_OPERATIONS_HAS_FLOCK
678 afs_linux_flock(struct file
*fp
, int cmd
, struct file_lock
*flp
) {
680 struct vcache
*vcp
= VTOAFS(FILE_INODE(fp
));
681 cred_t
*credp
= crref();
682 struct AFS_FLOCK flock
;
683 /* Convert to a lock format afs_lockctl understands. */
684 memset(&flock
, 0, sizeof(flock
));
685 flock
.l_type
= flp
->fl_type
;
686 flock
.l_pid
= flp
->fl_pid
;
691 /* Safe because there are no large files, yet */
692 #if defined(F_GETLK64) && (F_GETLK != F_GETLK64)
693 if (cmd
== F_GETLK64
)
695 else if (cmd
== F_SETLK64
)
697 else if (cmd
== F_SETLKW64
)
699 #endif /* F_GETLK64 && F_GETLK != F_GETLK64 */
702 code
= afs_convert_code(afs_lockctl(vcp
, &flock
, cmd
, credp
));
705 if ((code
== 0 || flp
->fl_type
== F_UNLCK
) &&
706 (cmd
== F_SETLK
|| cmd
== F_SETLKW
)) {
707 flp
->fl_flags
&=~ FL_SLEEP
;
708 code
= flock_lock_file_wait(fp
, flp
);
709 if (code
&& flp
->fl_type
!= F_UNLCK
) {
710 struct AFS_FLOCK flock2
;
712 flock2
.l_type
= F_UNLCK
;
714 afs_lockctl(vcp
, &flock2
, F_SETLK
, credp
);
718 /* Convert flock back to Linux's file_lock */
719 flp
->fl_type
= flock
.l_type
;
720 flp
->fl_pid
= flock
.l_pid
;
728 * essentially the same as afs_fsync() but we need to get the return
729 * code for the sys_close() here, not afs_linux_release(), so call
730 * afs_StoreAllSegments() with AFS_LASTSTORE
733 #if defined(FOP_FLUSH_TAKES_FL_OWNER_T)
734 afs_linux_flush(struct file
*fp
, fl_owner_t id
)
736 afs_linux_flush(struct file
*fp
)
739 struct vrequest
*treq
= NULL
;
747 if ((fp
->f_flags
& O_ACCMODE
) == O_RDONLY
) { /* readers dont flush */
755 vcp
= VTOAFS(FILE_INODE(fp
));
757 code
= afs_CreateReq(&treq
, credp
);
760 /* If caching is bypassed for this file, or globally, just return 0 */
761 if (cache_bypass_strategy
== ALWAYS_BYPASS_CACHE
)
764 ObtainReadLock(&vcp
->lock
);
765 if (vcp
->cachingStates
& FCSBypass
)
767 ReleaseReadLock(&vcp
->lock
);
770 /* future proof: don't rely on 0 return from afs_InitReq */
775 ObtainSharedLock(&vcp
->lock
, 535);
776 if ((vcp
->execsOrWriters
> 0) && (file_count(fp
) == 1)) {
777 UpgradeSToWLock(&vcp
->lock
, 536);
778 if (!AFS_IS_DISCONNECTED
) {
779 code
= afs_StoreAllSegments(vcp
,
781 AFS_SYNC
| AFS_LASTSTORE
);
783 afs_DisconAddDirty(vcp
, VDisconWriteOsiFlush
, 1);
785 ConvertWToSLock(&vcp
->lock
);
787 code
= afs_CheckCode(code
, treq
, 54);
788 ReleaseSharedLock(&vcp
->lock
);
791 afs_DestroyReq(treq
);
796 return afs_convert_code(code
);
799 struct file_operations afs_dir_fops
= {
800 .read
= generic_read_dir
,
801 #if defined(STRUCT_FILE_OPERATIONS_HAS_ITERATE)
802 .iterate
= afs_linux_readdir
,
804 .readdir
= afs_linux_readdir
,
806 #ifdef HAVE_UNLOCKED_IOCTL
807 .unlocked_ioctl
= afs_unlocked_xioctl
,
811 #ifdef HAVE_COMPAT_IOCTL
812 .compat_ioctl
= afs_unlocked_xioctl
,
814 .open
= afs_linux_open
,
815 .release
= afs_linux_release
,
816 .llseek
= default_llseek
,
817 #ifdef HAVE_LINUX_NOOP_FSYNC
820 .fsync
= simple_sync_file
,
824 struct file_operations afs_file_fops
= {
825 #ifdef STRUCT_FILE_OPERATIONS_HAS_READ_ITER
826 .read_iter
= afs_linux_read_iter
,
827 .write_iter
= afs_linux_write_iter
,
828 # if !defined(HAVE_LINUX___VFS_WRITE)
829 .read
= new_sync_read
,
830 .write
= new_sync_write
,
832 #elif defined(HAVE_LINUX_GENERIC_FILE_AIO_READ)
833 .aio_read
= afs_linux_aio_read
,
834 .aio_write
= afs_linux_aio_write
,
835 .read
= do_sync_read
,
836 .write
= do_sync_write
,
838 .read
= afs_linux_read
,
839 .write
= afs_linux_write
,
841 #ifdef HAVE_UNLOCKED_IOCTL
842 .unlocked_ioctl
= afs_unlocked_xioctl
,
846 #ifdef HAVE_COMPAT_IOCTL
847 .compat_ioctl
= afs_unlocked_xioctl
,
849 .mmap
= afs_linux_mmap
,
850 .open
= afs_linux_open
,
851 .flush
= afs_linux_flush
,
852 #if defined(STRUCT_FILE_OPERATIONS_HAS_SENDFILE)
853 .sendfile
= generic_file_sendfile
,
855 #if defined(STRUCT_FILE_OPERATIONS_HAS_SPLICE) && !defined(HAVE_LINUX_DEFAULT_FILE_SPLICE_READ)
856 # if defined(HAVE_LINUX_ITER_FILE_SPLICE_WRITE)
857 .splice_write
= iter_file_splice_write
,
859 .splice_write
= generic_file_splice_write
,
861 .splice_read
= generic_file_splice_read
,
863 .release
= afs_linux_release
,
864 .fsync
= afs_linux_fsync
,
865 .lock
= afs_linux_lock
,
866 #ifdef STRUCT_FILE_OPERATIONS_HAS_FLOCK
867 .flock
= afs_linux_flock
,
869 .llseek
= default_llseek
,
872 static struct dentry
*
873 canonical_dentry(struct inode
*ip
)
875 struct vcache
*vcp
= VTOAFS(ip
);
876 struct dentry
*first
= NULL
, *ret
= NULL
, *cur
;
877 #if defined(D_ALIAS_IS_HLIST) && !defined(HLIST_ITERATOR_NO_NODE)
878 struct hlist_node
*p
;
882 * if vcp->target_link is set, and can be found in ip->i_dentry, use that.
883 * otherwise, use the first dentry in ip->i_dentry.
884 * if ip->i_dentry is empty, use the 'dentry' argument we were given.
886 /* note that vcp->target_link specifies which dentry to use, but we have
887 * no reference held on that dentry. so, we cannot use or dereference
888 * vcp->target_link itself, since it may have been freed. instead, we only
889 * use it to compare to pointers in the ip->i_dentry list. */
893 # ifdef HAVE_DCACHE_LOCK
894 spin_lock(&dcache_lock
);
896 spin_lock(&ip
->i_lock
);
899 #if defined(D_ALIAS_IS_HLIST)
900 # if defined(HLIST_ITERATOR_NO_NODE)
901 hlist_for_each_entry(cur
, &ip
->i_dentry
, d_alias
) {
903 hlist_for_each_entry(cur
, p
, &ip
->i_dentry
, d_alias
) {
906 list_for_each_entry_reverse(cur
, &ip
->i_dentry
, d_alias
) {
909 if (!vcp
->target_link
|| cur
== vcp
->target_link
) {
922 vcp
->target_link
= ret
;
924 # ifdef HAVE_DCACHE_LOCK
928 spin_unlock(&dcache_lock
);
933 spin_unlock(&ip
->i_lock
);
939 /**********************************************************************
940 * AFS Linux dentry operations
941 **********************************************************************/
943 /* afs_linux_revalidate
944 * Ensure vcache is stat'd before use. Return 0 if entry is valid.
947 afs_linux_revalidate(struct dentry
*dp
)
949 struct vattr
*vattr
= NULL
;
950 struct vcache
*vcp
= VTOAFS(dp
->d_inode
);
954 if (afs_shuttingdown
!= AFS_RUNNING
)
959 code
= afs_CreateAttr(&vattr
);
964 /* This avoids the crref when we don't have to do it. Watch for
965 * changes in afs_getattr that don't get replicated here!
967 if (vcp
->f
.states
& CStatd
&&
968 (!afs_fakestat_enable
|| vcp
->mvstat
!= AFS_MVSTAT_MTPT
) &&
970 (vType(vcp
) == VDIR
|| vType(vcp
) == VLNK
)) {
971 code
= afs_CopyOutAttrs(vcp
, vattr
);
974 code
= afs_getattr(vcp
, vattr
, credp
);
979 afs_fill_inode(AFSTOV(vcp
), vattr
);
981 afs_DestroyAttr(vattr
);
986 return afs_convert_code(code
);
990 * Set iattr data into vattr. Assume vattr cleared before call.
993 iattr2vattr(struct vattr
*vattrp
, struct iattr
*iattrp
)
995 vattrp
->va_mask
= iattrp
->ia_valid
;
996 if (iattrp
->ia_valid
& ATTR_MODE
)
997 vattrp
->va_mode
= iattrp
->ia_mode
;
998 if (iattrp
->ia_valid
& ATTR_UID
)
999 vattrp
->va_uid
= afs_from_kuid(iattrp
->ia_uid
);
1000 if (iattrp
->ia_valid
& ATTR_GID
)
1001 vattrp
->va_gid
= afs_from_kgid(iattrp
->ia_gid
);
1002 if (iattrp
->ia_valid
& ATTR_SIZE
)
1003 vattrp
->va_size
= iattrp
->ia_size
;
1004 if (iattrp
->ia_valid
& ATTR_ATIME
) {
1005 vattrp
->va_atime
.tv_sec
= iattrp
->ia_atime
.tv_sec
;
1006 vattrp
->va_atime
.tv_usec
= 0;
1008 if (iattrp
->ia_valid
& ATTR_MTIME
) {
1009 vattrp
->va_mtime
.tv_sec
= iattrp
->ia_mtime
.tv_sec
;
1010 vattrp
->va_mtime
.tv_usec
= 0;
1012 if (iattrp
->ia_valid
& ATTR_CTIME
) {
1013 vattrp
->va_ctime
.tv_sec
= iattrp
->ia_ctime
.tv_sec
;
1014 vattrp
->va_ctime
.tv_usec
= 0;
1019 * Rewrite the inode cache from the attr. Assumes all vattr fields are valid.
1022 vattr2inode(struct inode
*ip
, struct vattr
*vp
)
1024 ip
->i_ino
= vp
->va_nodeid
;
1025 #ifdef HAVE_LINUX_SET_NLINK
1026 set_nlink(ip
, vp
->va_nlink
);
1028 ip
->i_nlink
= vp
->va_nlink
;
1030 ip
->i_blocks
= vp
->va_blocks
;
1031 #ifdef STRUCT_INODE_HAS_I_BLKBITS
1032 ip
->i_blkbits
= AFS_BLKBITS
;
1034 #ifdef STRUCT_INODE_HAS_I_BLKSIZE
1035 ip
->i_blksize
= vp
->va_blocksize
;
1037 ip
->i_rdev
= vp
->va_rdev
;
1038 ip
->i_mode
= vp
->va_mode
;
1039 ip
->i_uid
= afs_make_kuid(vp
->va_uid
);
1040 ip
->i_gid
= afs_make_kgid(vp
->va_gid
);
1041 i_size_write(ip
, vp
->va_size
);
1042 ip
->i_atime
.tv_sec
= vp
->va_atime
.tv_sec
;
1043 ip
->i_atime
.tv_nsec
= 0;
1044 ip
->i_mtime
.tv_sec
= vp
->va_mtime
.tv_sec
;
1045 /* Set the mtime nanoseconds to the sysname generation number.
1046 * This convinces NFS clients that all directories have changed
1047 * any time the sysname list changes.
1049 ip
->i_mtime
.tv_nsec
= afs_sysnamegen
;
1050 ip
->i_ctime
.tv_sec
= vp
->va_ctime
.tv_sec
;
1051 ip
->i_ctime
.tv_nsec
= 0;
1054 /* afs_notify_change
1055 * Linux version of setattr call. What to change is in the iattr struct.
1056 * We need to set bits in both the Linux inode as well as the vcache.
1059 afs_notify_change(struct dentry
*dp
, struct iattr
*iattrp
)
1061 struct vattr
*vattr
= NULL
;
1062 cred_t
*credp
= crref();
1063 struct inode
*ip
= dp
->d_inode
;
1067 code
= afs_CreateAttr(&vattr
);
1072 iattr2vattr(vattr
, iattrp
); /* Convert for AFS vnodeops call. */
1074 code
= afs_setattr(VTOAFS(ip
), vattr
, credp
);
1076 afs_getattr(VTOAFS(ip
), vattr
, credp
);
1077 vattr2inode(ip
, vattr
);
1079 afs_DestroyAttr(vattr
);
1084 return afs_convert_code(code
);
1087 #if defined(IOP_GETATTR_TAKES_PATH_STRUCT)
1089 afs_linux_getattr(const struct path
*path
, struct kstat
*stat
, u32 request_mask
, unsigned int sync_mode
)
1091 int err
= afs_linux_revalidate(path
->dentry
);
1093 generic_fillattr(path
->dentry
->d_inode
, stat
);
1099 afs_linux_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
1101 int err
= afs_linux_revalidate(dentry
);
1103 generic_fillattr(dentry
->d_inode
, stat
);
1110 parent_vcache_dv(struct inode
*inode
, cred_t
*credp
)
1113 struct vcache
*pvcp
;
1116 * If parent is a mount point and we are using fakestat, we may need
1117 * to look at the fake vcache entry instead of what the vfs is giving
1118 * us. The fake entry is the one with the useful DataVersion.
1120 pvcp
= VTOAFS(inode
);
1121 if (pvcp
->mvstat
== AFS_MVSTAT_MTPT
&& afs_fakestat_enable
) {
1122 struct vrequest treq
;
1123 struct afs_fakestat_state fakestate
;
1129 afs_InitReq(&treq
, credp
);
1130 afs_InitFakeStat(&fakestate
);
1131 afs_TryEvalFakeStat(&pvcp
, &fakestate
, &treq
);
1134 afs_PutFakeStat(&fakestate
);
1136 return hgetlo(pvcp
->f
.m
.DataVersion
);
1139 #ifdef D_SPLICE_ALIAS_RACE
1140 /* Leave some trace that this code is enabled; otherwise it's pretty hard to
1142 static __attribute__((used
)) const char dentry_race_marker
[] = "d_splice_alias race workaround enabled";
1145 check_dentry_race(struct dentry
*dp
)
1149 struct dentry
*parent
= dget_parent(dp
);
1151 /* In Linux, before commit 4919c5e45a91b5db5a41695fe0357fbdff0d5767,
1152 * d_splice_alias can momentarily hash a dentry before it's fully
1153 * populated. This only happens for a moment, since it's unhashed again
1154 * right after (in d_move), but this can make the dentry be found by
1155 * __d_lookup, and then given to us.
1157 * So check if the dentry is unhashed; if it is, then the dentry is not
1158 * valid. We lock the parent inode to ensure that d_splice_alias is no
1159 * longer running (the inode mutex will be held during
1160 * afs_linux_lookup). Locking d_lock is required to check the dentry's
1161 * flags, so lock that, too.
1163 afs_linux_lock_inode(parent
->d_inode
);
1164 spin_lock(&dp
->d_lock
);
1165 if (d_unhashed(dp
)) {
1168 spin_unlock(&dp
->d_lock
);
1169 afs_linux_unlock_inode(parent
->d_inode
);
1175 #endif /* D_SPLICE_ALIAS_RACE */
1177 /* Validate a dentry. Return 1 if unchanged, 0 if VFS layer should re-evaluate.
1178 * In kernels 2.2.10 and above, we are passed an additional flags var which
1179 * may have either the LOOKUP_FOLLOW OR LOOKUP_DIRECTORY set in which case
1180 * we are advised to follow the entry if it is a link or to make sure that
1181 * it is a directory. But since the kernel itself checks these possibilities
1182 * later on, we shouldn't have to do it until later. Perhaps in the future..
1184 * The code here assumes that on entry the global lock is not held
1187 #if defined(DOP_REVALIDATE_TAKES_UNSIGNED)
1188 afs_linux_dentry_revalidate(struct dentry
*dp
, unsigned int flags
)
1189 #elif defined(DOP_REVALIDATE_TAKES_NAMEIDATA)
1190 afs_linux_dentry_revalidate(struct dentry
*dp
, struct nameidata
*nd
)
1192 afs_linux_dentry_revalidate(struct dentry
*dp
, int flags
)
1195 cred_t
*credp
= NULL
;
1196 struct vcache
*vcp
, *pvcp
, *tvc
= NULL
;
1197 struct dentry
*parent
;
1199 struct afs_fakestat_state fakestate
;
1201 afs_uint32 parent_dv
;
1204 /* We don't support RCU path walking */
1205 # if defined(DOP_REVALIDATE_TAKES_UNSIGNED)
1206 if (flags
& LOOKUP_RCU
)
1208 if (nd
->flags
& LOOKUP_RCU
)
1213 #ifdef D_SPLICE_ALIAS_RACE
1214 if (check_dentry_race(dp
)) {
1221 afs_InitFakeStat(&fakestate
);
1224 vcp
= VTOAFS(dp
->d_inode
);
1226 if (vcp
== afs_globalVp
)
1229 if (vcp
->mvstat
== AFS_MVSTAT_MTPT
) {
1230 if (vcp
->mvid
.target_root
&& (vcp
->f
.states
& CMValid
)) {
1231 int tryEvalOnly
= 0;
1233 struct vrequest
*treq
= NULL
;
1237 code
= afs_CreateReq(&treq
, credp
);
1241 if ((strcmp(dp
->d_name
.name
, ".directory") == 0)) {
1245 code
= afs_TryEvalFakeStat(&vcp
, &fakestate
, treq
);
1247 code
= afs_EvalFakeStat(&vcp
, &fakestate
, treq
);
1248 afs_DestroyReq(treq
);
1249 if ((tryEvalOnly
&& vcp
->mvstat
== AFS_MVSTAT_MTPT
) || code
) {
1250 /* a mount point, not yet replaced by its directory */
1254 } else if (vcp
->mvstat
== AFS_MVSTAT_ROOT
&& *dp
->d_name
.name
!= '/') {
1255 osi_Assert(vcp
->mvid
.parent
!= NULL
);
1259 /* If the last looker changes, we should make sure the current
1260 * looker still has permission to examine this file. This would
1261 * always require a crref() which would be "slow".
1263 if (vcp
->last_looker
!= treq
.uid
) {
1264 if (!afs_AccessOK(vcp
, (vType(vcp
) == VREG
) ? PRSFS_READ
: PRSFS_LOOKUP
, &treq
, CHECK_MODE_BITS
)) {
1268 vcp
->last_looker
= treq
.uid
;
1272 parent
= dget_parent(dp
);
1273 pvcp
= VTOAFS(parent
->d_inode
);
1274 parent_dv
= parent_vcache_dv(parent
->d_inode
, credp
);
1276 /* If the parent's DataVersion has changed or the vnode
1277 * is longer valid, we need to do a full lookup. VerifyVCache
1278 * isn't enough since the vnode may have been renamed.
1281 if (parent_dv
> dp
->d_time
|| !(vcp
->f
.states
& CStatd
)) {
1282 struct vattr
*vattr
= NULL
;
1286 if (credp
== NULL
) {
1289 code
= afs_lookup(pvcp
, (char *)dp
->d_name
.name
, &tvc
, credp
);
1292 /* We couldn't perform the lookup, so we're not okay. */
1295 } else if (tvc
== vcp
) {
1296 /* We got back the same vcache, so we're good. */
1299 } else if (tvc
== VTOAFS(dp
->d_inode
)) {
1300 /* We got back the same vcache, so we're good. This is
1301 * different from the above case, because sometimes 'vcp' is
1302 * not the same as the vcache for dp->d_inode, if 'vcp' was a
1303 * mtpt and we evaluated it to a root dir. In rare cases,
1304 * afs_lookup might not evalute the mtpt when we do, or vice
1305 * versa, so the previous case will not succeed. But this is
1306 * still 'correct', so make sure not to mark the dentry as
1307 * invalid; it still points to the same thing! */
1311 /* We got back a different file, so we're definitely not
1318 /* Force unhash; the name doesn't point to this file
1321 if (code
&& code
!= ENOENT
) {
1322 /* ...except if we couldn't perform the actual lookup,
1323 * we don't know if the name points to this file or not. */
1329 code
= afs_CreateAttr(&vattr
);
1335 if (afs_getattr(vcp
, vattr
, credp
)) {
1337 afs_DestroyAttr(vattr
);
1341 vattr2inode(AFSTOV(vcp
), vattr
);
1342 dp
->d_time
= parent_dv
;
1344 afs_DestroyAttr(vattr
);
1347 /* should we always update the attributes at this point? */
1348 /* unlikely--the vcache entry hasn't changed */
1354 /* 'dp' represents a cached negative lookup. */
1356 parent
= dget_parent(dp
);
1357 pvcp
= VTOAFS(parent
->d_inode
);
1358 parent_dv
= parent_vcache_dv(parent
->d_inode
, credp
);
1360 if (parent_dv
> dp
->d_time
|| !(pvcp
->f
.states
& CStatd
)
1361 || afs_IsDynroot(pvcp
)) {
1375 #ifndef D_INVALIDATE_IS_VOID
1376 /* When (v3.18) d_invalidate was converted to void, it also started
1377 * being called automatically from revalidate, and automatically
1379 * - shrink_dcache_parent
1380 * - automatic detach of submounts
1382 * Therefore, after that point, OpenAFS revalidate logic no longer needs
1383 * to do any of those things itself for invalid dentry structs. We only need
1384 * to tell VFS it's invalid (by returning 0), and VFS will handle the rest.
1386 if (have_submounts(dp
))
1394 afs_PutFakeStat(&fakestate
);
1399 #ifndef D_INVALIDATE_IS_VOID
1402 * If we had a negative lookup for the name we want to forcibly
1403 * unhash the dentry.
1404 * Otherwise use d_invalidate which will not unhash it if still in use.
1407 shrink_dcache_parent(dp
);
1418 afs_dentry_iput(struct dentry
*dp
, struct inode
*ip
)
1420 struct vcache
*vcp
= VTOAFS(ip
);
1423 if (!AFS_IS_DISCONNECTED
|| (vcp
->f
.states
& CUnlinked
)) {
1424 (void) afs_InactiveVCache(vcp
, NULL
);
1427 afs_linux_clear_nfsfs_renamed(dp
);
1433 #if defined(DOP_D_DELETE_TAKES_CONST)
1434 afs_dentry_delete(const struct dentry
*dp
)
1436 afs_dentry_delete(struct dentry
*dp
)
1439 if (dp
->d_inode
&& (VTOAFS(dp
->d_inode
)->f
.states
& CUnlinked
))
1440 return 1; /* bad inode? */
1445 #ifdef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
1446 static struct vfsmount
*
1447 afs_dentry_automount(afs_linux_path_t
*path
)
1449 struct dentry
*target
;
1452 * Avoid symlink resolution limits when resolving; we cannot contribute to
1453 * an infinite symlink loop.
1455 * On newer kernels the field has moved to the private nameidata structure
1456 * so we can't adjust it here. This may cause ELOOP when using a path with
1457 * 40 or more directories that are not already in the dentry cache.
1459 #if defined(STRUCT_TASK_STRUCT_HAS_TOTAL_LINK_COUNT)
1460 current
->total_link_count
--;
1463 target
= canonical_dentry(path
->dentry
->d_inode
);
1465 if (target
== path
->dentry
) {
1472 path
->dentry
= target
;
1475 spin_lock(&path
->dentry
->d_lock
);
1476 path
->dentry
->d_flags
&= ~DCACHE_NEED_AUTOMOUNT
;
1477 spin_unlock(&path
->dentry
->d_lock
);
1482 #endif /* STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT */
1484 struct dentry_operations afs_dentry_operations
= {
1485 .d_revalidate
= afs_linux_dentry_revalidate
,
1486 .d_delete
= afs_dentry_delete
,
1487 .d_iput
= afs_dentry_iput
,
1488 #ifdef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
1489 .d_automount
= afs_dentry_automount
,
1490 #endif /* STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT */
1493 /**********************************************************************
1494 * AFS Linux inode operations
1495 **********************************************************************/
1499 * Merely need to set enough of vattr to get us through the create. Note
1500 * that the higher level code (open_namei) will take care of any tuncation
1501 * explicitly. Exclusive open is also taken care of in open_namei.
1503 * name is in kernel space at this point.
1506 #if defined(IOP_CREATE_TAKES_BOOL)
1507 afs_linux_create(struct inode
*dip
, struct dentry
*dp
, umode_t mode
,
1509 #elif defined(IOP_CREATE_TAKES_UMODE_T)
1510 afs_linux_create(struct inode
*dip
, struct dentry
*dp
, umode_t mode
,
1511 struct nameidata
*nd
)
1512 #elif defined(IOP_CREATE_TAKES_NAMEIDATA)
1513 afs_linux_create(struct inode
*dip
, struct dentry
*dp
, int mode
,
1514 struct nameidata
*nd
)
1516 afs_linux_create(struct inode
*dip
, struct dentry
*dp
, int mode
)
1519 struct vattr
*vattr
= NULL
;
1520 cred_t
*credp
= crref();
1521 const char *name
= dp
->d_name
.name
;
1527 code
= afs_CreateAttr(&vattr
);
1531 vattr
->va_mode
= mode
;
1532 vattr
->va_type
= mode
& S_IFMT
;
1534 code
= afs_create(VTOAFS(dip
), (char *)name
, vattr
, NONEXCL
, mode
,
1538 struct inode
*ip
= AFSTOV(vcp
);
1540 afs_getattr(vcp
, vattr
, credp
);
1541 afs_fill_inode(ip
, vattr
);
1542 insert_inode_hash(ip
);
1543 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
1544 dp
->d_op
= &afs_dentry_operations
;
1546 dp
->d_time
= parent_vcache_dv(dip
, credp
);
1547 d_instantiate(dp
, ip
);
1550 afs_DestroyAttr(vattr
);
1556 return afs_convert_code(code
);
1559 /* afs_linux_lookup */
1560 static struct dentry
*
1561 #if defined(IOP_LOOKUP_TAKES_UNSIGNED)
1562 afs_linux_lookup(struct inode
*dip
, struct dentry
*dp
,
1564 #elif defined(IOP_LOOKUP_TAKES_NAMEIDATA)
1565 afs_linux_lookup(struct inode
*dip
, struct dentry
*dp
,
1566 struct nameidata
*nd
)
1568 afs_linux_lookup(struct inode
*dip
, struct dentry
*dp
)
1571 cred_t
*credp
= crref();
1572 struct vcache
*vcp
= NULL
;
1573 const char *comp
= dp
->d_name
.name
;
1574 struct inode
*ip
= NULL
;
1575 struct dentry
*newdp
= NULL
;
1580 code
= afs_lookup(VTOAFS(dip
), (char *)comp
, &vcp
, credp
);
1581 if (code
== ENOENT
) {
1582 /* It's ok for the file to not be found. That's noted by the caller by
1583 * seeing that the dp->d_inode field is NULL (set by d_splice_alias or
1586 osi_Assert(vcp
== NULL
);
1594 struct vattr
*vattr
= NULL
;
1595 struct vcache
*parent_vc
= VTOAFS(dip
);
1597 if (parent_vc
== vcp
) {
1598 /* This is possible if the parent dir is a mountpoint to a volume,
1599 * and the dir entry we looked up is a mountpoint to the same
1600 * volume. Linux cannot cope with this, so return an error instead
1601 * of risking a deadlock or panic. */
1608 code
= afs_CreateAttr(&vattr
);
1616 afs_getattr(vcp
, vattr
, credp
);
1617 afs_fill_inode(ip
, vattr
);
1618 if (hlist_unhashed(&ip
->i_hash
))
1619 insert_inode_hash(ip
);
1621 afs_DestroyAttr(vattr
);
1623 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
1624 dp
->d_op
= &afs_dentry_operations
;
1626 dp
->d_time
= parent_vcache_dv(dip
, credp
);
1630 if (ip
&& S_ISDIR(ip
->i_mode
)) {
1631 d_prune_aliases(ip
);
1633 #ifdef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
1634 /* Only needed if this is a volume root */
1635 if (vcp
->mvstat
== 2)
1636 ip
->i_flags
|= S_AUTOMOUNT
;
1640 * Take an extra reference so the inode doesn't go away if
1641 * d_splice_alias drops our reference on error.
1644 #ifdef HAVE_LINUX_IHOLD
1650 newdp
= d_splice_alias(ip
, dp
);
1655 if (IS_ERR(newdp
)) {
1656 /* d_splice_alias can return an error (EIO) if there is an existing
1657 * connected directory alias for this dentry. Add our dentry manually
1658 * ourselves if this happens. */
1661 #if defined(D_SPLICE_ALIAS_LEAK_ON_ERROR)
1662 /* Depending on the kernel version, d_splice_alias may or may not drop
1663 * the inode reference on error. If it didn't, do it here. */
1672 return ERR_PTR(afs_convert_code(code
));
1680 afs_linux_link(struct dentry
*olddp
, struct inode
*dip
, struct dentry
*newdp
)
1683 cred_t
*credp
= crref();
1684 const char *name
= newdp
->d_name
.name
;
1685 struct inode
*oldip
= olddp
->d_inode
;
1687 /* If afs_link returned the vnode, we could instantiate the
1688 * dentry. Since it's not, we drop this one and do a new lookup.
1693 code
= afs_link(VTOAFS(oldip
), VTOAFS(dip
), (char *)name
, credp
);
1697 return afs_convert_code(code
);
1700 /* We have to have a Linux specific sillyrename function, because we
1701 * also have to keep the dcache up to date when we're doing a silly
1702 * rename - so we don't want the generic vnodeops doing this behind our
1707 afs_linux_sillyrename(struct inode
*dir
, struct dentry
*dentry
,
1710 struct vcache
*tvc
= VTOAFS(dentry
->d_inode
);
1711 struct dentry
*__dp
= NULL
;
1712 char *__name
= NULL
;
1715 if (afs_linux_nfsfs_renamed(dentry
))
1723 osi_FreeSmallSpace(__name
);
1724 __name
= afs_newname();
1727 __dp
= lookup_one_len(__name
, dentry
->d_parent
, strlen(__name
));
1730 osi_FreeSmallSpace(__name
);
1733 } while (__dp
->d_inode
!= NULL
);
1736 code
= afs_rename(VTOAFS(dir
), (char *)dentry
->d_name
.name
,
1737 VTOAFS(dir
), (char *)__dp
->d_name
.name
,
1740 tvc
->mvid
.silly_name
= __name
;
1743 crfree(tvc
->uncred
);
1745 tvc
->uncred
= credp
;
1746 tvc
->f
.states
|= CUnlinked
;
1747 afs_linux_set_nfsfs_renamed(dentry
);
1749 __dp
->d_time
= 0; /* force to revalidate */
1750 d_move(dentry
, __dp
);
1752 osi_FreeSmallSpace(__name
);
1763 afs_linux_unlink(struct inode
*dip
, struct dentry
*dp
)
1766 cred_t
*credp
= crref();
1767 const char *name
= dp
->d_name
.name
;
1768 struct vcache
*tvc
= VTOAFS(dp
->d_inode
);
1770 if (VREFCOUNT(tvc
) > 1 && tvc
->opens
> 0
1771 && !(tvc
->f
.states
& CUnlinked
)) {
1773 code
= afs_linux_sillyrename(dip
, dp
, credp
);
1776 code
= afs_remove(VTOAFS(dip
), (char *)name
, credp
);
1783 return afs_convert_code(code
);
1788 afs_linux_symlink(struct inode
*dip
, struct dentry
*dp
, const char *target
)
1791 cred_t
*credp
= crref();
1792 struct vattr
*vattr
= NULL
;
1793 const char *name
= dp
->d_name
.name
;
1795 /* If afs_symlink returned the vnode, we could instantiate the
1796 * dentry. Since it's not, we drop this one and do a new lookup.
1801 code
= afs_CreateAttr(&vattr
);
1806 code
= afs_symlink(VTOAFS(dip
), (char *)name
, vattr
, (char *)target
, NULL
,
1808 afs_DestroyAttr(vattr
);
1813 return afs_convert_code(code
);
1817 #if defined(IOP_MKDIR_TAKES_UMODE_T)
1818 afs_linux_mkdir(struct inode
*dip
, struct dentry
*dp
, umode_t mode
)
1820 afs_linux_mkdir(struct inode
*dip
, struct dentry
*dp
, int mode
)
1824 cred_t
*credp
= crref();
1825 struct vcache
*tvcp
= NULL
;
1826 struct vattr
*vattr
= NULL
;
1827 const char *name
= dp
->d_name
.name
;
1830 code
= afs_CreateAttr(&vattr
);
1835 vattr
->va_mask
= ATTR_MODE
;
1836 vattr
->va_mode
= mode
;
1838 code
= afs_mkdir(VTOAFS(dip
), (char *)name
, vattr
, &tvcp
, credp
);
1841 struct inode
*ip
= AFSTOV(tvcp
);
1843 afs_getattr(tvcp
, vattr
, credp
);
1844 afs_fill_inode(ip
, vattr
);
1846 #if !defined(STRUCT_SUPER_BLOCK_HAS_S_D_OP)
1847 dp
->d_op
= &afs_dentry_operations
;
1849 dp
->d_time
= parent_vcache_dv(dip
, credp
);
1850 d_instantiate(dp
, ip
);
1852 afs_DestroyAttr(vattr
);
1858 return afs_convert_code(code
);
1862 afs_linux_rmdir(struct inode
*dip
, struct dentry
*dp
)
1865 cred_t
*credp
= crref();
1866 const char *name
= dp
->d_name
.name
;
1868 /* locking kernel conflicts with glock? */
1871 code
= afs_rmdir(VTOAFS(dip
), (char *)name
, credp
);
1874 /* Linux likes to see ENOTEMPTY returned from an rmdir() syscall
1875 * that failed because a directory is not empty. So, we map
1876 * EEXIST to ENOTEMPTY on linux.
1878 if (code
== EEXIST
) {
1887 return afs_convert_code(code
);
1892 afs_linux_rename(struct inode
*oldip
, struct dentry
*olddp
,
1893 struct inode
*newip
, struct dentry
*newdp
1894 #ifdef HAVE_LINUX_INODE_OPERATIONS_RENAME_TAKES_FLAGS
1895 , unsigned int flags
1900 cred_t
*credp
= crref();
1901 const char *oldname
= olddp
->d_name
.name
;
1902 const char *newname
= newdp
->d_name
.name
;
1903 struct dentry
*rehash
= NULL
;
1905 #ifdef HAVE_LINUX_INODE_OPERATIONS_RENAME_TAKES_FLAGS
1907 return -EINVAL
; /* no support for new flags yet */
1910 /* Prevent any new references during rename operation. */
1912 if (!d_unhashed(newdp
)) {
1917 afs_maybe_shrink_dcache(olddp
);
1920 code
= afs_rename(VTOAFS(oldip
), (char *)oldname
, VTOAFS(newip
), (char *)newname
, credp
);
1924 olddp
->d_time
= 0; /* force to revalidate */
1930 return afs_convert_code(code
);
1934 /* afs_linux_ireadlink
1935 * Internal readlink which can return link contents to user or kernel space.
1936 * Note that the buffer is NOT supposed to be null-terminated.
1939 afs_linux_ireadlink(struct inode
*ip
, char *target
, int maxlen
, uio_seg_t seg
)
1942 cred_t
*credp
= crref();
1946 memset(&tuio
, 0, sizeof(tuio
));
1947 memset(&iov
, 0, sizeof(iov
));
1949 setup_uio(&tuio
, &iov
, target
, (afs_offs_t
) 0, maxlen
, UIO_READ
, seg
);
1950 code
= afs_readlink(VTOAFS(ip
), &tuio
, credp
);
1954 return maxlen
- tuio
.uio_resid
;
1956 return afs_convert_code(code
);
1959 #if !defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
1960 /* afs_linux_readlink
1961 * Fill target (which is in user space) with contents of symlink.
1964 afs_linux_readlink(struct dentry
*dp
, char *target
, int maxlen
)
1967 struct inode
*ip
= dp
->d_inode
;
1970 code
= afs_linux_ireadlink(ip
, target
, maxlen
, AFS_UIOUSER
);
1976 /* afs_linux_follow_link
1977 * a file system dependent link following routine.
1979 #if defined(HAVE_LINUX_INODE_OPERATIONS_FOLLOW_LINK_NO_NAMEIDATA)
1980 static const char *afs_linux_follow_link(struct dentry
*dentry
, void **link_data
)
1982 static int afs_linux_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1988 name
= kmalloc(PATH_MAX
, GFP_NOFS
);
1990 #if defined(HAVE_LINUX_INODE_OPERATIONS_FOLLOW_LINK_NO_NAMEIDATA)
1991 return ERR_PTR(-EIO
);
1998 code
= afs_linux_ireadlink(dentry
->d_inode
, name
, PATH_MAX
- 1, AFS_UIOSYS
);
2002 #if defined(HAVE_LINUX_INODE_OPERATIONS_FOLLOW_LINK_NO_NAMEIDATA)
2003 return ERR_PTR(code
);
2010 #if defined(HAVE_LINUX_INODE_OPERATIONS_FOLLOW_LINK_NO_NAMEIDATA)
2011 return *link_data
= name
;
2013 nd_set_link(nd
, name
);
2018 #if defined(HAVE_LINUX_INODE_OPERATIONS_PUT_LINK_NO_NAMEIDATA)
2020 afs_linux_put_link(struct inode
*inode
, void *link_data
)
2022 char *name
= link_data
;
2024 if (name
&& !IS_ERR(name
))
2029 afs_linux_put_link(struct dentry
*dentry
, struct nameidata
*nd
)
2031 char *name
= nd_get_link(nd
);
2033 if (name
&& !IS_ERR(name
))
2036 #endif /* HAVE_LINUX_INODE_OPERATIONS_PUT_LINK_NO_NAMEIDATA */
2038 #endif /* USABLE_KERNEL_PAGE_SYMLINK_CACHE */
2040 /* Populate a page by filling it from the cache file pointed at by cachefp
2041 * (which contains indicated chunk)
2042 * If task is NULL, the page copy occurs syncronously, and the routine
2043 * returns with page still locked. If task is non-NULL, then page copies
2044 * may occur in the background, and the page will be unlocked when it is
2048 afs_linux_read_cache(struct file
*cachefp
, struct page
*page
,
2049 int chunk
, struct pagevec
*lrupv
,
2050 struct afs_pagecopy_task
*task
) {
2051 loff_t offset
= page_offset(page
);
2052 struct inode
*cacheinode
= cachefp
->f_dentry
->d_inode
;
2053 struct page
*newpage
, *cachepage
;
2054 struct address_space
*cachemapping
;
2058 cachemapping
= cacheinode
->i_mapping
;
2062 /* If we're trying to read a page that's past the end of the disk
2063 * cache file, then just return a zeroed page */
2064 if (AFS_CHUNKOFFSET(offset
) >= i_size_read(cacheinode
)) {
2065 zero_user_segment(page
, 0, PAGE_SIZE
);
2066 SetPageUptodate(page
);
2072 /* From our offset, we now need to work out which page in the disk
2073 * file it corresponds to. This will be fun ... */
2074 pageindex
= (offset
- AFS_CHUNKTOBASE(chunk
)) >> PAGE_SHIFT
;
2076 while (cachepage
== NULL
) {
2077 cachepage
= find_get_page(cachemapping
, pageindex
);
2080 newpage
= page_cache_alloc_cold(cachemapping
);
2086 code
= add_to_page_cache(newpage
, cachemapping
,
2087 pageindex
, GFP_KERNEL
);
2089 cachepage
= newpage
;
2092 get_page(cachepage
);
2093 if (!pagevec_add(lrupv
, cachepage
))
2094 __pagevec_lru_add_file(lrupv
);
2099 if (code
!= -EEXIST
)
2103 lock_page(cachepage
);
2107 if (!PageUptodate(cachepage
)) {
2108 ClearPageError(cachepage
);
2109 code
= cachemapping
->a_ops
->readpage(NULL
, cachepage
);
2110 if (!code
&& !task
) {
2111 wait_on_page_locked(cachepage
);
2114 unlock_page(cachepage
);
2118 if (PageUptodate(cachepage
)) {
2119 copy_highpage(page
, cachepage
);
2120 flush_dcache_page(page
);
2121 SetPageUptodate(page
);
2126 afs_pagecopy_queue_page(task
, cachepage
, page
);
2138 put_page(cachepage
);
2144 afs_linux_readpage_fastpath(struct file
*fp
, struct page
*pp
, int *codep
)
2146 loff_t offset
= page_offset(pp
);
2147 struct inode
*ip
= FILE_INODE(fp
);
2148 struct vcache
*avc
= VTOAFS(ip
);
2150 struct file
*cacheFp
= NULL
;
2153 struct pagevec lrupv
;
2155 /* Not a UFS cache, don't do anything */
2156 if (cacheDiskType
!= AFS_FCACHE_TYPE_UFS
)
2159 /* No readpage (ex: tmpfs) , skip */
2160 if (cachefs_noreadpage
)
2163 /* Can't do anything if the vcache isn't statd , or if the read
2164 * crosses a chunk boundary.
2166 if (!(avc
->f
.states
& CStatd
) ||
2167 AFS_CHUNK(offset
) != AFS_CHUNK(offset
+ PAGE_SIZE
)) {
2171 ObtainWriteLock(&avc
->lock
, 911);
2173 /* XXX - See if hinting actually makes things faster !!! */
2175 /* See if we have a suitable entry already cached */
2179 /* We need to lock xdcache, then dcache, to handle situations where
2180 * the hint is on the free list. However, we can't safely do this
2181 * according to the locking hierarchy. So, use a non blocking lock.
2183 ObtainReadLock(&afs_xdcache
);
2184 dcLocked
= ( 0 == NBObtainReadLock(&tdc
->lock
));
2186 if (dcLocked
&& (tdc
->index
!= NULLIDX
)
2187 && !FidCmp(&tdc
->f
.fid
, &avc
->f
.fid
)
2188 && tdc
->f
.chunk
== AFS_CHUNK(offset
)
2189 && !(afs_indexFlags
[tdc
->index
] & (IFFree
| IFDiscarded
))) {
2190 /* Bonus - the hint was correct */
2193 /* Only destroy the hint if its actually invalid, not if there's
2194 * just been a locking failure */
2196 ReleaseReadLock(&tdc
->lock
);
2203 ReleaseReadLock(&afs_xdcache
);
2206 /* No hint, or hint is no longer valid - see if we can get something
2207 * directly from the dcache
2210 tdc
= afs_FindDCache(avc
, offset
);
2213 ReleaseWriteLock(&avc
->lock
);
2218 ObtainReadLock(&tdc
->lock
);
2220 /* Is the dcache we've been given currently up to date */
2221 if (!hsame(avc
->f
.m
.DataVersion
, tdc
->f
.versionNo
) ||
2222 (tdc
->dflags
& DFFetching
))
2225 /* Update our hint for future abuse */
2228 /* Okay, so we've now got a cache file that is up to date */
2230 /* XXX - I suspect we should be locking the inodes before we use them! */
2232 cacheFp
= afs_linux_raw_open(&tdc
->f
.inode
);
2233 if (!cacheFp
->f_dentry
->d_inode
->i_mapping
->a_ops
->readpage
) {
2234 cachefs_noreadpage
= 1;
2238 pagevec_init(&lrupv
, 0);
2240 code
= afs_linux_read_cache(cacheFp
, pp
, tdc
->f
.chunk
, &lrupv
, NULL
);
2242 if (pagevec_count(&lrupv
))
2243 __pagevec_lru_add_file(&lrupv
);
2245 filp_close(cacheFp
, NULL
);
2248 ReleaseReadLock(&tdc
->lock
);
2249 ReleaseWriteLock(&avc
->lock
);
2256 ReleaseWriteLock(&avc
->lock
);
2257 ReleaseReadLock(&tdc
->lock
);
2262 /* afs_linux_readpage
2264 * This function is split into two, because prepare_write/begin_write
2265 * require a readpage call which doesn't unlock the resulting page upon
2269 afs_linux_fillpage(struct file
*fp
, struct page
*pp
)
2274 struct iovec
*iovecp
;
2275 struct inode
*ip
= FILE_INODE(fp
);
2276 afs_int32 cnt
= page_count(pp
);
2277 struct vcache
*avc
= VTOAFS(ip
);
2278 afs_offs_t offset
= page_offset(pp
);
2282 if (afs_linux_readpage_fastpath(fp
, pp
, &code
)) {
2292 auio
= kmalloc(sizeof(struct uio
), GFP_NOFS
);
2293 iovecp
= kmalloc(sizeof(struct iovec
), GFP_NOFS
);
2295 setup_uio(auio
, iovecp
, (char *)address
, offset
, PAGE_SIZE
, UIO_READ
,
2300 afs_Trace4(afs_iclSetp
, CM_TRACE_READPAGE
, ICL_TYPE_POINTER
, ip
,
2301 ICL_TYPE_POINTER
, pp
, ICL_TYPE_INT32
, cnt
, ICL_TYPE_INT32
,
2302 99999); /* not a possible code value */
2304 code
= afs_rdwr(avc
, auio
, UIO_READ
, 0, credp
);
2306 afs_Trace4(afs_iclSetp
, CM_TRACE_READPAGE
, ICL_TYPE_POINTER
, ip
,
2307 ICL_TYPE_POINTER
, pp
, ICL_TYPE_INT32
, cnt
, ICL_TYPE_INT32
,
2309 AFS_DISCON_UNLOCK();
2312 /* XXX valid for no-cache also? Check last bits of files... :)
2313 * Cognate code goes in afs_NoCacheFetchProc. */
2314 if (auio
->uio_resid
) /* zero remainder of page */
2315 memset((void *)(address
+ (PAGE_SIZE
- auio
->uio_resid
)), 0,
2318 flush_dcache_page(pp
);
2319 SetPageUptodate(pp
);
2328 return afs_convert_code(code
);
2332 afs_linux_prefetch(struct file
*fp
, struct page
*pp
)
2335 struct vcache
*avc
= VTOAFS(FILE_INODE(fp
));
2336 afs_offs_t offset
= page_offset(pp
);
2338 if (AFS_CHUNKOFFSET(offset
) == 0) {
2340 struct vrequest
*treq
= NULL
;
2345 code
= afs_CreateReq(&treq
, credp
);
2346 if (!code
&& !NBObtainWriteLock(&avc
->lock
, 534)) {
2347 tdc
= afs_FindDCache(avc
, offset
);
2349 if (!(tdc
->mflags
& DFNextStarted
))
2350 afs_PrefetchChunk(avc
, tdc
, credp
, treq
);
2353 ReleaseWriteLock(&avc
->lock
);
2355 afs_DestroyReq(treq
);
2359 return afs_convert_code(code
);
2364 afs_linux_bypass_readpages(struct file
*fp
, struct address_space
*mapping
,
2365 struct list_head
*page_list
, unsigned num_pages
)
2370 struct iovec
* iovecp
;
2371 struct nocache_read_request
*ancr
;
2373 struct pagevec lrupv
;
2377 struct inode
*ip
= FILE_INODE(fp
);
2378 struct vcache
*avc
= VTOAFS(ip
);
2379 afs_int32 base_index
= 0;
2380 afs_int32 page_count
= 0;
2383 /* background thread must free: iovecp, auio, ancr */
2384 iovecp
= osi_Alloc(num_pages
* sizeof(struct iovec
));
2386 auio
= osi_Alloc(sizeof(struct uio
));
2387 auio
->uio_iov
= iovecp
;
2388 auio
->uio_iovcnt
= num_pages
;
2389 auio
->uio_flag
= UIO_READ
;
2390 auio
->uio_seg
= AFS_UIOSYS
;
2391 auio
->uio_resid
= num_pages
* PAGE_SIZE
;
2393 ancr
= osi_Alloc(sizeof(struct nocache_read_request
));
2395 ancr
->offset
= auio
->uio_offset
;
2396 ancr
->length
= auio
->uio_resid
;
2398 pagevec_init(&lrupv
, 0);
2400 for(page_ix
= 0; page_ix
< num_pages
; ++page_ix
) {
2402 if(list_empty(page_list
))
2405 pp
= list_entry(page_list
->prev
, struct page
, lru
);
2406 /* If we allocate a page and don't remove it from page_list,
2407 * the page cache gets upset. */
2409 isize
= (i_size_read(fp
->f_mapping
->host
) - 1) >> PAGE_SHIFT
;
2410 if(pp
->index
> isize
) {
2417 offset
= page_offset(pp
);
2418 ancr
->offset
= auio
->uio_offset
= offset
;
2419 base_index
= pp
->index
;
2421 iovecp
[page_ix
].iov_len
= PAGE_SIZE
;
2422 code
= add_to_page_cache(pp
, mapping
, pp
->index
, GFP_KERNEL
);
2423 if(base_index
!= pp
->index
) {
2427 iovecp
[page_ix
].iov_base
= (void *) 0;
2429 ancr
->length
-= PAGE_SIZE
;
2437 iovecp
[page_ix
].iov_base
= (void *) 0;
2440 if(!PageLocked(pp
)) {
2444 /* increment page refcount--our original design assumed
2445 * that locking it would effectively pin it; protect
2446 * ourselves from the possiblity that this assumption is
2447 * is faulty, at low cost (provided we do not fail to
2448 * do the corresponding decref on the other side) */
2451 /* save the page for background map */
2452 iovecp
[page_ix
].iov_base
= (void*) pp
;
2454 /* and put it on the LRU cache */
2455 if (!pagevec_add(&lrupv
, pp
))
2456 __pagevec_lru_add_file(&lrupv
);
2460 /* If there were useful pages in the page list, make sure all pages
2461 * are in the LRU cache, then schedule the read */
2463 if (pagevec_count(&lrupv
))
2464 __pagevec_lru_add_file(&lrupv
);
2466 code
= afs_ReadNoCache(avc
, ancr
, credp
);
2469 /* If there is nothing for the background thread to handle,
2470 * it won't be freeing the things that we never gave it */
2471 osi_Free(iovecp
, num_pages
* sizeof(struct iovec
));
2472 osi_Free(auio
, sizeof(struct uio
));
2473 osi_Free(ancr
, sizeof(struct nocache_read_request
));
2475 /* we do not flush, release, or unmap pages--that will be
2476 * done for us by the background thread as each page comes in
2477 * from the fileserver */
2478 return afs_convert_code(code
);
2483 afs_linux_bypass_readpage(struct file
*fp
, struct page
*pp
)
2485 cred_t
*credp
= NULL
;
2487 struct iovec
*iovecp
;
2488 struct nocache_read_request
*ancr
;
2492 * Special case: if page is at or past end of file, just zero it and set
2495 if (page_offset(pp
) >= i_size_read(fp
->f_mapping
->host
)) {
2496 zero_user_segment(pp
, 0, PAGE_SIZE
);
2497 SetPageUptodate(pp
);
2504 /* receiver frees */
2505 auio
= osi_Alloc(sizeof(struct uio
));
2506 iovecp
= osi_Alloc(sizeof(struct iovec
));
2508 /* address can be NULL, because we overwrite it with 'pp', below */
2509 setup_uio(auio
, iovecp
, NULL
, page_offset(pp
),
2510 PAGE_SIZE
, UIO_READ
, AFS_UIOSYS
);
2512 /* save the page for background map */
2513 get_page(pp
); /* see above */
2514 auio
->uio_iov
->iov_base
= (void*) pp
;
2515 /* the background thread will free this */
2516 ancr
= osi_Alloc(sizeof(struct nocache_read_request
));
2518 ancr
->offset
= page_offset(pp
);
2519 ancr
->length
= PAGE_SIZE
;
2522 code
= afs_ReadNoCache(VTOAFS(FILE_INODE(fp
)), ancr
, credp
);
2525 return afs_convert_code(code
);
2529 afs_linux_can_bypass(struct inode
*ip
) {
2531 switch(cache_bypass_strategy
) {
2532 case NEVER_BYPASS_CACHE
:
2534 case ALWAYS_BYPASS_CACHE
:
2536 case LARGE_FILES_BYPASS_CACHE
:
2537 if (i_size_read(ip
) > cache_bypass_threshold
)
2544 /* Check if a file is permitted to bypass the cache by policy, and modify
2545 * the cache bypass state recorded for that file */
2548 afs_linux_bypass_check(struct inode
*ip
) {
2551 int bypass
= afs_linux_can_bypass(ip
);
2554 trydo_cache_transition(VTOAFS(ip
), credp
, bypass
);
2562 afs_linux_readpage(struct file
*fp
, struct page
*pp
)
2566 if (afs_linux_bypass_check(FILE_INODE(fp
))) {
2567 code
= afs_linux_bypass_readpage(fp
, pp
);
2569 code
= afs_linux_fillpage(fp
, pp
);
2571 code
= afs_linux_prefetch(fp
, pp
);
2578 /* Readpages reads a number of pages for a particular file. We use
2579 * this to optimise the reading, by limiting the number of times upon which
2580 * we have to lookup, lock and open vcaches and dcaches
2584 afs_linux_readpages(struct file
*fp
, struct address_space
*mapping
,
2585 struct list_head
*page_list
, unsigned int num_pages
)
2587 struct inode
*inode
= mapping
->host
;
2588 struct vcache
*avc
= VTOAFS(inode
);
2590 struct file
*cacheFp
= NULL
;
2592 unsigned int page_idx
;
2594 struct pagevec lrupv
;
2595 struct afs_pagecopy_task
*task
;
2597 if (afs_linux_bypass_check(inode
))
2598 return afs_linux_bypass_readpages(fp
, mapping
, page_list
, num_pages
);
2600 if (cacheDiskType
== AFS_FCACHE_TYPE_MEM
)
2603 /* No readpage (ex: tmpfs) , skip */
2604 if (cachefs_noreadpage
)
2608 if ((code
= afs_linux_VerifyVCache(avc
, NULL
))) {
2613 ObtainWriteLock(&avc
->lock
, 912);
2616 task
= afs_pagecopy_init_task();
2619 pagevec_init(&lrupv
, 0);
2620 for (page_idx
= 0; page_idx
< num_pages
; page_idx
++) {
2621 struct page
*page
= list_entry(page_list
->prev
, struct page
, lru
);
2622 list_del(&page
->lru
);
2623 offset
= page_offset(page
);
2625 if (tdc
&& tdc
->f
.chunk
!= AFS_CHUNK(offset
)) {
2627 ReleaseReadLock(&tdc
->lock
);
2632 filp_close(cacheFp
, NULL
);
2637 if ((tdc
= afs_FindDCache(avc
, offset
))) {
2638 ObtainReadLock(&tdc
->lock
);
2639 if (!hsame(avc
->f
.m
.DataVersion
, tdc
->f
.versionNo
) ||
2640 (tdc
->dflags
& DFFetching
)) {
2641 ReleaseReadLock(&tdc
->lock
);
2648 cacheFp
= afs_linux_raw_open(&tdc
->f
.inode
);
2649 if (!cacheFp
->f_dentry
->d_inode
->i_mapping
->a_ops
->readpage
) {
2650 cachefs_noreadpage
= 1;
2656 if (tdc
&& !add_to_page_cache(page
, mapping
, page
->index
,
2659 if (!pagevec_add(&lrupv
, page
))
2660 __pagevec_lru_add_file(&lrupv
);
2662 afs_linux_read_cache(cacheFp
, page
, tdc
->f
.chunk
, &lrupv
, task
);
2666 if (pagevec_count(&lrupv
))
2667 __pagevec_lru_add_file(&lrupv
);
2671 filp_close(cacheFp
, NULL
);
2673 afs_pagecopy_put_task(task
);
2677 ReleaseReadLock(&tdc
->lock
);
2681 ReleaseWriteLock(&avc
->lock
);
2686 /* Prepare an AFS vcache for writeback. Should be called with the vcache
2689 afs_linux_prepare_writeback(struct vcache
*avc
) {
2691 struct pagewriter
*pw
;
2693 pid
= MyPidxx2Pid(MyPidxx
);
2694 /* Prevent recursion into the writeback code */
2695 spin_lock(&avc
->pagewriter_lock
);
2696 list_for_each_entry(pw
, &avc
->pagewriters
, link
) {
2697 if (pw
->writer
== pid
) {
2698 spin_unlock(&avc
->pagewriter_lock
);
2699 return AOP_WRITEPAGE_ACTIVATE
;
2702 spin_unlock(&avc
->pagewriter_lock
);
2704 /* Add ourselves to writer list */
2705 pw
= osi_Alloc(sizeof(struct pagewriter
));
2707 spin_lock(&avc
->pagewriter_lock
);
2708 list_add_tail(&pw
->link
, &avc
->pagewriters
);
2709 spin_unlock(&avc
->pagewriter_lock
);
2715 afs_linux_dopartialwrite(struct vcache
*avc
, cred_t
*credp
) {
2716 struct vrequest
*treq
= NULL
;
2719 if (!afs_CreateReq(&treq
, credp
)) {
2720 code
= afs_DoPartialWrite(avc
, treq
);
2721 afs_DestroyReq(treq
);
2724 return afs_convert_code(code
);
2728 afs_linux_complete_writeback(struct vcache
*avc
) {
2729 struct pagewriter
*pw
, *store
;
2731 struct list_head tofree
;
2733 INIT_LIST_HEAD(&tofree
);
2734 pid
= MyPidxx2Pid(MyPidxx
);
2735 /* Remove ourselves from writer list */
2736 spin_lock(&avc
->pagewriter_lock
);
2737 list_for_each_entry_safe(pw
, store
, &avc
->pagewriters
, link
) {
2738 if (pw
->writer
== pid
) {
2739 list_del(&pw
->link
);
2740 /* osi_Free may sleep so we need to defer it */
2741 list_add_tail(&pw
->link
, &tofree
);
2744 spin_unlock(&avc
->pagewriter_lock
);
2745 list_for_each_entry_safe(pw
, store
, &tofree
, link
) {
2746 list_del(&pw
->link
);
2747 osi_Free(pw
, sizeof(struct pagewriter
));
2751 /* Writeback a given page syncronously. Called with no AFS locks held */
2753 afs_linux_page_writeback(struct inode
*ip
, struct page
*pp
,
2754 unsigned long offset
, unsigned int count
,
2757 struct vcache
*vcp
= VTOAFS(ip
);
2765 memset(&tuio
, 0, sizeof(tuio
));
2766 memset(&iovec
, 0, sizeof(iovec
));
2768 buffer
= kmap(pp
) + offset
;
2769 base
= page_offset(pp
) + offset
;
2772 afs_Trace4(afs_iclSetp
, CM_TRACE_UPDATEPAGE
, ICL_TYPE_POINTER
, vcp
,
2773 ICL_TYPE_POINTER
, pp
, ICL_TYPE_INT32
, page_count(pp
),
2774 ICL_TYPE_INT32
, 99999);
2776 setup_uio(&tuio
, &iovec
, buffer
, base
, count
, UIO_WRITE
, AFS_UIOSYS
);
2778 code
= afs_write(vcp
, &tuio
, f_flags
, credp
, 0);
2780 i_size_write(ip
, vcp
->f
.m
.Length
);
2781 ip
->i_blocks
= ((vcp
->f
.m
.Length
+ 1023) >> 10) << 1;
2783 code
= code
? afs_convert_code(code
) : count
- tuio
.uio_resid
;
2785 afs_Trace4(afs_iclSetp
, CM_TRACE_UPDATEPAGE
, ICL_TYPE_POINTER
, vcp
,
2786 ICL_TYPE_POINTER
, pp
, ICL_TYPE_INT32
, page_count(pp
),
2787 ICL_TYPE_INT32
, code
);
2796 afs_linux_writepage_sync(struct inode
*ip
, struct page
*pp
,
2797 unsigned long offset
, unsigned int count
)
2801 struct vcache
*vcp
= VTOAFS(ip
);
2804 /* Catch recursive writeback. This occurs if the kernel decides
2805 * writeback is required whilst we are writing to the cache, or
2806 * flushing to the server. When we're running syncronously (as
2807 * opposed to from writepage) we can't actually do anything about
2808 * this case - as we can't return AOP_WRITEPAGE_ACTIVATE to write()
2811 ObtainWriteLock(&vcp
->lock
, 532);
2812 afs_linux_prepare_writeback(vcp
);
2813 ReleaseWriteLock(&vcp
->lock
);
2817 code
= afs_linux_page_writeback(ip
, pp
, offset
, count
, credp
);
2820 ObtainWriteLock(&vcp
->lock
, 533);
2822 code1
= afs_linux_dopartialwrite(vcp
, credp
);
2823 afs_linux_complete_writeback(vcp
);
2824 ReleaseWriteLock(&vcp
->lock
);
2835 #ifdef AOP_WRITEPAGE_TAKES_WRITEBACK_CONTROL
2836 afs_linux_writepage(struct page
*pp
, struct writeback_control
*wbc
)
2838 afs_linux_writepage(struct page
*pp
)
2841 struct address_space
*mapping
= pp
->mapping
;
2842 struct inode
*inode
;
2845 unsigned int to
= PAGE_SIZE
;
2852 inode
= mapping
->host
;
2853 vcp
= VTOAFS(inode
);
2854 isize
= i_size_read(inode
);
2856 /* Don't defeat an earlier truncate */
2857 if (page_offset(pp
) > isize
) {
2858 set_page_writeback(pp
);
2864 ObtainWriteLock(&vcp
->lock
, 537);
2865 code
= afs_linux_prepare_writeback(vcp
);
2866 if (code
== AOP_WRITEPAGE_ACTIVATE
) {
2867 /* WRITEPAGE_ACTIVATE is the only return value that permits us
2868 * to return with the page still locked */
2869 ReleaseWriteLock(&vcp
->lock
);
2874 /* Grab the creds structure currently held in the vnode, and
2875 * get a reference to it, in case it goes away ... */
2881 ReleaseWriteLock(&vcp
->lock
);
2884 set_page_writeback(pp
);
2886 SetPageUptodate(pp
);
2888 /* We can unlock the page here, because it's protected by the
2889 * page_writeback flag. This should make us less vulnerable to
2890 * deadlocking in afs_write and afs_DoPartialWrite
2894 /* If this is the final page, then just write the number of bytes that
2895 * are actually in it */
2896 if ((isize
- page_offset(pp
)) < to
)
2897 to
= isize
- page_offset(pp
);
2899 code
= afs_linux_page_writeback(inode
, pp
, 0, to
, credp
);
2902 ObtainWriteLock(&vcp
->lock
, 538);
2904 /* As much as we might like to ignore a file server error here,
2905 * and just try again when we close(), unfortunately StoreAllSegments
2906 * will invalidate our chunks if the server returns a permanent error,
2907 * so we need to at least try and get that error back to the user
2910 code1
= afs_linux_dopartialwrite(vcp
, credp
);
2912 afs_linux_complete_writeback(vcp
);
2913 ReleaseWriteLock(&vcp
->lock
);
2918 end_page_writeback(pp
);
2930 /* afs_linux_permission
2931 * Check access rights - returns error if can't check or permission denied.
2934 #if defined(IOP_PERMISSION_TAKES_FLAGS)
2935 afs_linux_permission(struct inode
*ip
, int mode
, unsigned int flags
)
2936 #elif defined(IOP_PERMISSION_TAKES_NAMEIDATA)
2937 afs_linux_permission(struct inode
*ip
, int mode
, struct nameidata
*nd
)
2939 afs_linux_permission(struct inode
*ip
, int mode
)
2946 /* Check for RCU path walking */
2947 #if defined(IOP_PERMISSION_TAKES_FLAGS)
2948 if (flags
& IPERM_FLAG_RCU
)
2950 #elif defined(MAY_NOT_BLOCK)
2951 if (mode
& MAY_NOT_BLOCK
)
2957 if (mode
& MAY_EXEC
)
2959 if (mode
& MAY_READ
)
2961 if (mode
& MAY_WRITE
)
2963 code
= afs_access(VTOAFS(ip
), tmp
, credp
);
2967 return afs_convert_code(code
);
2971 afs_linux_commit_write(struct file
*file
, struct page
*page
, unsigned offset
,
2975 struct inode
*inode
= FILE_INODE(file
);
2976 loff_t pagebase
= page_offset(page
);
2978 if (i_size_read(inode
) < (pagebase
+ offset
))
2979 i_size_write(inode
, pagebase
+ offset
);
2981 if (PageChecked(page
)) {
2982 SetPageUptodate(page
);
2983 ClearPageChecked(page
);
2986 code
= afs_linux_writepage_sync(inode
, page
, offset
, to
- offset
);
2992 afs_linux_prepare_write(struct file
*file
, struct page
*page
, unsigned from
,
2996 /* http://kerneltrap.org/node/4941 details the expected behaviour of
2997 * prepare_write. Essentially, if the page exists within the file,
2998 * and is not being fully written, then we should populate it.
3001 if (!PageUptodate(page
)) {
3002 loff_t pagebase
= page_offset(page
);
3003 loff_t isize
= i_size_read(page
->mapping
->host
);
3005 /* Is the location we are writing to beyond the end of the file? */
3006 if (pagebase
>= isize
||
3007 ((from
== 0) && (pagebase
+ to
) >= isize
)) {
3008 zero_user_segments(page
, 0, from
, to
, PAGE_SIZE
);
3009 SetPageChecked(page
);
3010 /* Are we we writing a full page */
3011 } else if (from
== 0 && to
== PAGE_SIZE
) {
3012 SetPageChecked(page
);
3013 /* Is the page readable, if it's wronly, we don't care, because we're
3014 * not actually going to read from it ... */
3015 } else if ((file
->f_flags
&& O_ACCMODE
) != O_WRONLY
) {
3016 /* We don't care if fillpage fails, because if it does the page
3017 * won't be marked as up to date
3019 afs_linux_fillpage(file
, page
);
3025 #if defined(STRUCT_ADDRESS_SPACE_OPERATIONS_HAS_WRITE_BEGIN)
3027 afs_linux_write_end(struct file
*file
, struct address_space
*mapping
,
3028 loff_t pos
, unsigned len
, unsigned copied
,
3029 struct page
*page
, void *fsdata
)
3032 unsigned int from
= pos
& (PAGE_SIZE
- 1);
3034 code
= afs_linux_commit_write(file
, page
, from
, from
+ copied
);
3042 afs_linux_write_begin(struct file
*file
, struct address_space
*mapping
,
3043 loff_t pos
, unsigned len
, unsigned flags
,
3044 struct page
**pagep
, void **fsdata
)
3047 pgoff_t index
= pos
>> PAGE_SHIFT
;
3048 unsigned int from
= pos
& (PAGE_SIZE
- 1);
3051 page
= grab_cache_page_write_begin(mapping
, index
, flags
);
3054 code
= afs_linux_prepare_write(file
, page
, from
, from
+ len
);
3064 #ifndef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
3066 afs_linux_dir_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
3068 struct dentry
**dpp
;
3069 struct dentry
*target
;
3071 if (current
->total_link_count
> 0) {
3072 /* avoid symlink resolution limits when resolving; we cannot contribute to
3073 * an infinite symlink loop */
3074 /* only do this for follow_link when total_link_count is positive to be
3075 * on the safe side; there is at least one code path in the Linux
3076 * kernel where it seems like it may be possible to get here without
3077 * total_link_count getting incremented. it is not clear on how that
3078 * path is actually reached, but guard against it just to be safe */
3079 current
->total_link_count
--;
3082 target
= canonical_dentry(dentry
->d_inode
);
3084 # ifdef STRUCT_NAMEIDATA_HAS_PATH
3085 dpp
= &nd
->path
.dentry
;
3095 *dpp
= dget(dentry
);
3098 nd
->last_type
= LAST_BIND
;
3102 #endif /* !STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT */
3105 static struct inode_operations afs_file_iops
= {
3106 .permission
= afs_linux_permission
,
3107 .getattr
= afs_linux_getattr
,
3108 .setattr
= afs_notify_change
,
3111 static struct address_space_operations afs_file_aops
= {
3112 .readpage
= afs_linux_readpage
,
3113 .readpages
= afs_linux_readpages
,
3114 .writepage
= afs_linux_writepage
,
3115 #if defined (STRUCT_ADDRESS_SPACE_OPERATIONS_HAS_WRITE_BEGIN)
3116 .write_begin
= afs_linux_write_begin
,
3117 .write_end
= afs_linux_write_end
,
3119 .commit_write
= afs_linux_commit_write
,
3120 .prepare_write
= afs_linux_prepare_write
,
3125 /* Separate ops vector for directories. Linux 2.2 tests type of inode
3126 * by what sort of operation is allowed.....
3129 static struct inode_operations afs_dir_iops
= {
3130 .setattr
= afs_notify_change
,
3131 .create
= afs_linux_create
,
3132 .lookup
= afs_linux_lookup
,
3133 .link
= afs_linux_link
,
3134 .unlink
= afs_linux_unlink
,
3135 .symlink
= afs_linux_symlink
,
3136 .mkdir
= afs_linux_mkdir
,
3137 .rmdir
= afs_linux_rmdir
,
3138 .rename
= afs_linux_rename
,
3139 .getattr
= afs_linux_getattr
,
3140 .permission
= afs_linux_permission
,
3141 #ifndef STRUCT_DENTRY_OPERATIONS_HAS_D_AUTOMOUNT
3142 .follow_link
= afs_linux_dir_follow_link
,
3146 /* We really need a separate symlink set of ops, since do_follow_link()
3147 * determines if it _is_ a link by checking if the follow_link op is set.
3149 #if defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
3151 afs_symlink_filler(struct file
*file
, struct page
*page
)
3153 struct inode
*ip
= (struct inode
*)page
->mapping
->host
;
3154 char *p
= (char *)kmap(page
);
3158 code
= afs_linux_ireadlink(ip
, p
, PAGE_SIZE
, AFS_UIOSYS
);
3163 p
[code
] = '\0'; /* null terminate? */
3165 SetPageUptodate(page
);
3177 static struct address_space_operations afs_symlink_aops
= {
3178 .readpage
= afs_symlink_filler
3180 #endif /* USABLE_KERNEL_PAGE_SYMLINK_CACHE */
3182 static struct inode_operations afs_symlink_iops
= {
3183 #if defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
3184 .readlink
= page_readlink
,
3185 # if defined(HAVE_LINUX_PAGE_GET_LINK)
3186 .get_link
= page_get_link
,
3187 # elif defined(HAVE_LINUX_PAGE_FOLLOW_LINK)
3188 .follow_link
= page_follow_link
,
3190 .follow_link
= page_follow_link_light
,
3191 .put_link
= page_put_link
,
3193 #else /* !defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE) */
3194 .readlink
= afs_linux_readlink
,
3195 .follow_link
= afs_linux_follow_link
,
3196 .put_link
= afs_linux_put_link
,
3197 #endif /* USABLE_KERNEL_PAGE_SYMLINK_CACHE */
3198 .setattr
= afs_notify_change
,
3202 afs_fill_inode(struct inode
*ip
, struct vattr
*vattr
)
3205 vattr2inode(ip
, vattr
);
3207 #ifdef STRUCT_ADDRESS_SPACE_HAS_BACKING_DEV_INFO
3208 ip
->i_mapping
->backing_dev_info
= afs_backing_dev_info
;
3210 /* Reset ops if symlink or directory. */
3211 if (S_ISREG(ip
->i_mode
)) {
3212 ip
->i_op
= &afs_file_iops
;
3213 ip
->i_fop
= &afs_file_fops
;
3214 ip
->i_data
.a_ops
= &afs_file_aops
;
3216 } else if (S_ISDIR(ip
->i_mode
)) {
3217 ip
->i_op
= &afs_dir_iops
;
3218 ip
->i_fop
= &afs_dir_fops
;
3220 } else if (S_ISLNK(ip
->i_mode
)) {
3221 ip
->i_op
= &afs_symlink_iops
;
3222 #if defined(HAVE_LINUX_INODE_NOHIGHMEM)
3223 inode_nohighmem(ip
);
3225 #if defined(USABLE_KERNEL_PAGE_SYMLINK_CACHE)
3226 ip
->i_data
.a_ops
= &afs_symlink_aops
;
3227 ip
->i_mapping
= &ip
->i_data
;