4 * Copyright (C) 1992 Rick Sladkey
6 * Changes Copyright (C) 1994 by Florian La Roche
7 * - Do not copy data too often around in the kernel.
8 * - In nfs_file_read the return value of kmalloc wasn't checked.
9 * - Put in a better version of read look-ahead buffering. Original idea
10 * and implementation by Wai S Kok elekokws@ee.nus.sg.
12 * Expire cache on write to a file by Wai S Kok (Oct 1994).
14 * Total rewrite of read side for new NFS buffer cache.. Linus.
16 * nfs regular file handling functions
19 #include <linux/time.h>
20 #include <linux/kernel.h>
21 #include <linux/errno.h>
22 #include <linux/fcntl.h>
23 #include <linux/stat.h>
24 #include <linux/nfs_fs.h>
25 #include <linux/nfs_mount.h>
27 #include <linux/slab.h>
28 #include <linux/pagemap.h>
29 #include <linux/smp_lock.h>
31 #include <asm/uaccess.h>
32 #include <asm/system.h>
34 #include "delegation.h"
37 #define NFSDBG_FACILITY NFSDBG_FILE
39 static int nfs_file_open(struct inode
*, struct file
*);
40 static int nfs_file_release(struct inode
*, struct file
*);
41 static loff_t
nfs_file_llseek(struct file
*file
, loff_t offset
, int origin
);
42 static int nfs_file_mmap(struct file
*, struct vm_area_struct
*);
43 static ssize_t
nfs_file_sendfile(struct file
*, loff_t
*, size_t, read_actor_t
, void *);
44 static ssize_t
nfs_file_read(struct kiocb
*, char __user
*, size_t, loff_t
);
45 static ssize_t
nfs_file_write(struct kiocb
*, const char __user
*, size_t, loff_t
);
46 static int nfs_file_flush(struct file
*);
47 static int nfs_fsync(struct file
*, struct dentry
*dentry
, int datasync
);
48 static int nfs_check_flags(int flags
);
49 static int nfs_lock(struct file
*filp
, int cmd
, struct file_lock
*fl
);
50 static int nfs_flock(struct file
*filp
, int cmd
, struct file_lock
*fl
);
52 const struct file_operations nfs_file_operations
= {
53 .llseek
= nfs_file_llseek
,
55 .write
= do_sync_write
,
56 .aio_read
= nfs_file_read
,
57 .aio_write
= nfs_file_write
,
58 .mmap
= nfs_file_mmap
,
59 .open
= nfs_file_open
,
60 .flush
= nfs_file_flush
,
61 .release
= nfs_file_release
,
65 .sendfile
= nfs_file_sendfile
,
66 .check_flags
= nfs_check_flags
,
69 struct inode_operations nfs_file_inode_operations
= {
70 .permission
= nfs_permission
,
71 .getattr
= nfs_getattr
,
72 .setattr
= nfs_setattr
,
76 struct inode_operations nfs3_file_inode_operations
= {
77 .permission
= nfs_permission
,
78 .getattr
= nfs_getattr
,
79 .setattr
= nfs_setattr
,
80 .listxattr
= nfs3_listxattr
,
81 .getxattr
= nfs3_getxattr
,
82 .setxattr
= nfs3_setxattr
,
83 .removexattr
= nfs3_removexattr
,
85 #endif /* CONFIG_NFS_v3 */
87 /* Hack for future NFS swap support */
89 # define IS_SWAPFILE(inode) (0)
92 static int nfs_check_flags(int flags
)
94 if ((flags
& (O_APPEND
| O_DIRECT
)) == (O_APPEND
| O_DIRECT
))
104 nfs_file_open(struct inode
*inode
, struct file
*filp
)
108 res
= nfs_check_flags(filp
->f_flags
);
112 nfs_inc_stats(inode
, NFSIOS_VFSOPEN
);
114 res
= NFS_SERVER(inode
)->rpc_ops
->file_open(inode
, filp
);
120 nfs_file_release(struct inode
*inode
, struct file
*filp
)
122 /* Ensure that dirty pages are flushed out with the right creds */
123 if (filp
->f_mode
& FMODE_WRITE
)
124 filemap_fdatawrite(filp
->f_mapping
);
125 nfs_inc_stats(inode
, NFSIOS_VFSRELEASE
);
126 return NFS_PROTO(inode
)->file_release(inode
, filp
);
130 * nfs_revalidate_file - Revalidate the page cache & related metadata
131 * @inode - pointer to inode struct
132 * @file - pointer to file
134 static int nfs_revalidate_file(struct inode
*inode
, struct file
*filp
)
136 struct nfs_inode
*nfsi
= NFS_I(inode
);
139 if ((nfsi
->cache_validity
& (NFS_INO_REVAL_PAGECACHE
|NFS_INO_INVALID_ATTR
))
140 || nfs_attribute_timeout(inode
))
141 retval
= __nfs_revalidate_inode(NFS_SERVER(inode
), inode
);
142 nfs_revalidate_mapping(inode
, filp
->f_mapping
);
147 * nfs_revalidate_size - Revalidate the file size
148 * @inode - pointer to inode struct
149 * @file - pointer to struct file
151 * Revalidates the file length. This is basically a wrapper around
152 * nfs_revalidate_inode() that takes into account the fact that we may
153 * have cached writes (in which case we don't care about the server's
154 * idea of what the file length is), or O_DIRECT (in which case we
155 * shouldn't trust the cache).
157 static int nfs_revalidate_file_size(struct inode
*inode
, struct file
*filp
)
159 struct nfs_server
*server
= NFS_SERVER(inode
);
160 struct nfs_inode
*nfsi
= NFS_I(inode
);
162 if (server
->flags
& NFS_MOUNT_NOAC
)
164 if (filp
->f_flags
& O_DIRECT
)
166 if (nfsi
->npages
!= 0)
168 if (!(nfsi
->cache_validity
& NFS_INO_REVAL_PAGECACHE
) && !nfs_attribute_timeout(inode
))
171 return __nfs_revalidate_inode(server
, inode
);
174 static loff_t
nfs_file_llseek(struct file
*filp
, loff_t offset
, int origin
)
176 /* origin == SEEK_END => we must revalidate the cached file length */
178 struct inode
*inode
= filp
->f_mapping
->host
;
179 int retval
= nfs_revalidate_file_size(inode
, filp
);
181 return (loff_t
)retval
;
183 return remote_llseek(filp
, offset
, origin
);
187 * Flush all dirty pages, and check for write errors.
191 nfs_file_flush(struct file
*file
)
193 struct nfs_open_context
*ctx
= (struct nfs_open_context
*)file
->private_data
;
194 struct inode
*inode
= file
->f_dentry
->d_inode
;
197 dfprintk(VFS
, "nfs: flush(%s/%ld)\n", inode
->i_sb
->s_id
, inode
->i_ino
);
199 if ((file
->f_mode
& FMODE_WRITE
) == 0)
201 nfs_inc_stats(inode
, NFSIOS_VFSFLUSH
);
203 /* Ensure that data+attribute caches are up to date after close() */
204 status
= nfs_wb_all(inode
);
209 nfs_revalidate_inode(NFS_SERVER(inode
), inode
);
216 nfs_file_read(struct kiocb
*iocb
, char __user
* buf
, size_t count
, loff_t pos
)
218 struct dentry
* dentry
= iocb
->ki_filp
->f_dentry
;
219 struct inode
* inode
= dentry
->d_inode
;
222 #ifdef CONFIG_NFS_DIRECTIO
223 if (iocb
->ki_filp
->f_flags
& O_DIRECT
)
224 return nfs_file_direct_read(iocb
, buf
, count
, pos
);
227 dfprintk(VFS
, "nfs: read(%s/%s, %lu@%lu)\n",
228 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
229 (unsigned long) count
, (unsigned long) pos
);
231 result
= nfs_revalidate_file(inode
, iocb
->ki_filp
);
232 nfs_add_stats(inode
, NFSIOS_NORMALREADBYTES
, count
);
234 result
= generic_file_aio_read(iocb
, buf
, count
, pos
);
239 nfs_file_sendfile(struct file
*filp
, loff_t
*ppos
, size_t count
,
240 read_actor_t actor
, void *target
)
242 struct dentry
*dentry
= filp
->f_dentry
;
243 struct inode
*inode
= dentry
->d_inode
;
246 dfprintk(VFS
, "nfs: sendfile(%s/%s, %lu@%Lu)\n",
247 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
248 (unsigned long) count
, (unsigned long long) *ppos
);
250 res
= nfs_revalidate_file(inode
, filp
);
252 res
= generic_file_sendfile(filp
, ppos
, count
, actor
, target
);
257 nfs_file_mmap(struct file
* file
, struct vm_area_struct
* vma
)
259 struct dentry
*dentry
= file
->f_dentry
;
260 struct inode
*inode
= dentry
->d_inode
;
263 dfprintk(VFS
, "nfs: mmap(%s/%s)\n",
264 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
266 status
= nfs_revalidate_file(inode
, file
);
268 status
= generic_file_mmap(file
, vma
);
273 * Flush any dirty pages for this process, and check for write errors.
274 * The return status from this call provides a reliable indication of
275 * whether any write errors occurred for this process.
278 nfs_fsync(struct file
*file
, struct dentry
*dentry
, int datasync
)
280 struct nfs_open_context
*ctx
= (struct nfs_open_context
*)file
->private_data
;
281 struct inode
*inode
= dentry
->d_inode
;
284 dfprintk(VFS
, "nfs: fsync(%s/%ld)\n", inode
->i_sb
->s_id
, inode
->i_ino
);
286 nfs_inc_stats(inode
, NFSIOS_VFSFSYNC
);
288 status
= nfs_wb_all(inode
);
298 * This does the "real" work of the write. The generic routine has
299 * allocated the page, locked it, done all the page alignment stuff
300 * calculations etc. Now we should just copy the data from user
301 * space and write it back to the real medium..
303 * If the writer ends up delaying the write, the writer needs to
304 * increment the page use counts until he is done with the page.
306 static int nfs_prepare_write(struct file
*file
, struct page
*page
, unsigned offset
, unsigned to
)
308 return nfs_flush_incompatible(file
, page
);
311 static int nfs_commit_write(struct file
*file
, struct page
*page
, unsigned offset
, unsigned to
)
316 status
= nfs_updatepage(file
, page
, offset
, to
-offset
);
321 static void nfs_invalidate_page(struct page
*page
, unsigned long offset
)
323 /* FIXME: we really should cancel any unstarted writes on this page */
326 static int nfs_release_page(struct page
*page
, gfp_t gfp
)
328 return !nfs_wb_page(page
->mapping
->host
, page
);
331 struct address_space_operations nfs_file_aops
= {
332 .readpage
= nfs_readpage
,
333 .readpages
= nfs_readpages
,
334 .set_page_dirty
= __set_page_dirty_nobuffers
,
335 .writepage
= nfs_writepage
,
336 .writepages
= nfs_writepages
,
337 .prepare_write
= nfs_prepare_write
,
338 .commit_write
= nfs_commit_write
,
339 .invalidatepage
= nfs_invalidate_page
,
340 .releasepage
= nfs_release_page
,
341 #ifdef CONFIG_NFS_DIRECTIO
342 .direct_IO
= nfs_direct_IO
,
347 * Write to a file (through the page cache).
350 nfs_file_write(struct kiocb
*iocb
, const char __user
*buf
, size_t count
, loff_t pos
)
352 struct dentry
* dentry
= iocb
->ki_filp
->f_dentry
;
353 struct inode
* inode
= dentry
->d_inode
;
356 #ifdef CONFIG_NFS_DIRECTIO
357 if (iocb
->ki_filp
->f_flags
& O_DIRECT
)
358 return nfs_file_direct_write(iocb
, buf
, count
, pos
);
361 dfprintk(VFS
, "nfs: write(%s/%s(%ld), %lu@%lu)\n",
362 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
363 inode
->i_ino
, (unsigned long) count
, (unsigned long) pos
);
366 if (IS_SWAPFILE(inode
))
369 * O_APPEND implies that we must revalidate the file length.
371 if (iocb
->ki_filp
->f_flags
& O_APPEND
) {
372 result
= nfs_revalidate_file_size(inode
, iocb
->ki_filp
);
376 nfs_revalidate_mapping(inode
, iocb
->ki_filp
->f_mapping
);
382 nfs_add_stats(inode
, NFSIOS_NORMALWRITTENBYTES
, count
);
383 result
= generic_file_aio_write(iocb
, buf
, count
, pos
);
388 printk(KERN_INFO
"NFS: attempt to write to active swap file!\n");
392 static int do_getlk(struct file
*filp
, int cmd
, struct file_lock
*fl
)
394 struct file_lock cfl
;
395 struct inode
*inode
= filp
->f_mapping
->host
;
399 /* Try local locking first */
400 if (posix_test_lock(filp
, fl
, &cfl
)) {
401 fl
->fl_start
= cfl
.fl_start
;
402 fl
->fl_end
= cfl
.fl_end
;
403 fl
->fl_type
= cfl
.fl_type
;
404 fl
->fl_pid
= cfl
.fl_pid
;
408 if (nfs_have_delegation(inode
, FMODE_READ
))
411 if (NFS_SERVER(inode
)->flags
& NFS_MOUNT_NONLM
)
414 status
= NFS_PROTO(inode
)->lock(filp
, cmd
, fl
);
419 fl
->fl_type
= F_UNLCK
;
423 static int do_vfs_lock(struct file
*file
, struct file_lock
*fl
)
426 switch (fl
->fl_flags
& (FL_POSIX
|FL_FLOCK
)) {
428 res
= posix_lock_file_wait(file
, fl
);
431 res
= flock_lock_file_wait(file
, fl
);
437 printk(KERN_WARNING
"%s: VFS is out of sync with lock manager!\n",
442 static int do_unlk(struct file
*filp
, int cmd
, struct file_lock
*fl
)
444 struct inode
*inode
= filp
->f_mapping
->host
;
448 * Flush all pending writes before doing anything
451 nfs_sync_mapping(filp
->f_mapping
);
453 /* NOTE: special case
454 * If we're signalled while cleaning up locks on process exit, we
455 * still need to complete the unlock.
458 /* Use local locking if mounted with "-onolock" */
459 if (!(NFS_SERVER(inode
)->flags
& NFS_MOUNT_NONLM
))
460 status
= NFS_PROTO(inode
)->lock(filp
, cmd
, fl
);
462 status
= do_vfs_lock(filp
, fl
);
467 static int do_setlk(struct file
*filp
, int cmd
, struct file_lock
*fl
)
469 struct inode
*inode
= filp
->f_mapping
->host
;
473 * Flush all pending writes before doing anything
476 status
= nfs_sync_mapping(filp
->f_mapping
);
481 /* Use local locking if mounted with "-onolock" */
482 if (!(NFS_SERVER(inode
)->flags
& NFS_MOUNT_NONLM
)) {
483 status
= NFS_PROTO(inode
)->lock(filp
, cmd
, fl
);
484 /* If we were signalled we still need to ensure that
485 * we clean up any state on the server. We therefore
486 * record the lock call as having succeeded in order to
487 * ensure that locks_remove_posix() cleans it out when
490 if (status
== -EINTR
|| status
== -ERESTARTSYS
)
491 do_vfs_lock(filp
, fl
);
493 status
= do_vfs_lock(filp
, fl
);
498 * Make sure we clear the cache whenever we try to get the lock.
499 * This makes locking act as a cache coherency point.
501 nfs_sync_mapping(filp
->f_mapping
);
502 nfs_zap_caches(inode
);
508 * Lock a (portion of) a file
510 static int nfs_lock(struct file
*filp
, int cmd
, struct file_lock
*fl
)
512 struct inode
* inode
= filp
->f_mapping
->host
;
514 dprintk("NFS: nfs_lock(f=%s/%ld, t=%x, fl=%x, r=%Ld:%Ld)\n",
515 inode
->i_sb
->s_id
, inode
->i_ino
,
516 fl
->fl_type
, fl
->fl_flags
,
517 (long long)fl
->fl_start
, (long long)fl
->fl_end
);
518 nfs_inc_stats(inode
, NFSIOS_VFSLOCK
);
520 /* No mandatory locks over NFS */
521 if ((inode
->i_mode
& (S_ISGID
| S_IXGRP
)) == S_ISGID
&&
522 fl
->fl_type
!= F_UNLCK
)
526 return do_getlk(filp
, cmd
, fl
);
527 if (fl
->fl_type
== F_UNLCK
)
528 return do_unlk(filp
, cmd
, fl
);
529 return do_setlk(filp
, cmd
, fl
);
533 * Lock a (portion of) a file
535 static int nfs_flock(struct file
*filp
, int cmd
, struct file_lock
*fl
)
537 struct inode
* inode
= filp
->f_mapping
->host
;
539 dprintk("NFS: nfs_flock(f=%s/%ld, t=%x, fl=%x)\n",
540 inode
->i_sb
->s_id
, inode
->i_ino
,
541 fl
->fl_type
, fl
->fl_flags
);
544 * No BSD flocks over NFS allowed.
545 * Note: we could try to fake a POSIX lock request here by
546 * using ((u32) filp | 0x80000000) or some such as the pid.
547 * Not sure whether that would be unique, though, or whether
548 * that would break in other places.
550 if (!(fl
->fl_flags
& FL_FLOCK
))
553 /* We're simulating flock() locks using posix locks on the server */
554 fl
->fl_owner
= (fl_owner_t
)filp
;
556 fl
->fl_end
= OFFSET_MAX
;
558 if (fl
->fl_type
== F_UNLCK
)
559 return do_unlk(filp
, cmd
, fl
);
560 return do_setlk(filp
, cmd
, fl
);