NFS: Optimise away unnecessary setattrs for open(O_TRUNC);
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / nfs / file.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/file.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
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.
11 *
12 * Expire cache on write to a file by Wai S Kok (Oct 1994).
13 *
14 * Total rewrite of read side for new NFS buffer cache.. Linus.
15 *
16 * nfs regular file handling functions
17 */
18
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>
26#include <linux/mm.h>
1da177e4 27#include <linux/pagemap.h>
e8edc6e0 28#include <linux/aio.h>
5a0e3ad6 29#include <linux/gfp.h>
b608b283 30#include <linux/swap.h>
1da177e4
LT
31
32#include <asm/uaccess.h>
33#include <asm/system.h>
34
35#include "delegation.h"
94387fb1 36#include "internal.h"
91d5b470 37#include "iostat.h"
545db45f 38#include "fscache.h"
e5e94017 39#include "pnfs.h"
1da177e4
LT
40
41#define NFSDBG_FACILITY NFSDBG_FILE
42
f0f37e2f 43static const struct vm_operations_struct nfs_file_vm_ops;
94387fb1 44
92e1d5be 45const struct inode_operations nfs_file_inode_operations = {
1da177e4
LT
46 .permission = nfs_permission,
47 .getattr = nfs_getattr,
48 .setattr = nfs_setattr,
49};
50
b7fa0554 51#ifdef CONFIG_NFS_V3
92e1d5be 52const struct inode_operations nfs3_file_inode_operations = {
b7fa0554
AG
53 .permission = nfs_permission,
54 .getattr = nfs_getattr,
55 .setattr = nfs_setattr,
56 .listxattr = nfs3_listxattr,
57 .getxattr = nfs3_getxattr,
58 .setxattr = nfs3_setxattr,
59 .removexattr = nfs3_removexattr,
60};
61#endif /* CONFIG_NFS_v3 */
62
1da177e4
LT
63/* Hack for future NFS swap support */
64#ifndef IS_SWAPFILE
65# define IS_SWAPFILE(inode) (0)
66#endif
67
68static int nfs_check_flags(int flags)
69{
70 if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
71 return -EINVAL;
72
73 return 0;
74}
75
76/*
77 * Open file
78 */
79static int
80nfs_file_open(struct inode *inode, struct file *filp)
81{
1da177e4
LT
82 int res;
83
6da24bc9 84 dprintk("NFS: open file(%s/%s)\n",
cc0dd2d1
CL
85 filp->f_path.dentry->d_parent->d_name.name,
86 filp->f_path.dentry->d_name.name);
87
c2459dc4 88 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
1da177e4
LT
89 res = nfs_check_flags(filp->f_flags);
90 if (res)
91 return res;
92
46cb650c 93 res = nfs_open(inode, filp);
1da177e4
LT
94 return res;
95}
96
97static int
98nfs_file_release(struct inode *inode, struct file *filp)
99{
6da24bc9 100 dprintk("NFS: release(%s/%s)\n",
6f276e49
RM
101 filp->f_path.dentry->d_parent->d_name.name,
102 filp->f_path.dentry->d_name.name);
6da24bc9 103
91d5b470 104 nfs_inc_stats(inode, NFSIOS_VFSRELEASE);
46cb650c 105 return nfs_release(inode, filp);
1da177e4
LT
106}
107
980802e3
TM
108/**
109 * nfs_revalidate_size - Revalidate the file size
110 * @inode - pointer to inode struct
111 * @file - pointer to struct file
112 *
113 * Revalidates the file length. This is basically a wrapper around
114 * nfs_revalidate_inode() that takes into account the fact that we may
115 * have cached writes (in which case we don't care about the server's
116 * idea of what the file length is), or O_DIRECT (in which case we
117 * shouldn't trust the cache).
118 */
119static int nfs_revalidate_file_size(struct inode *inode, struct file *filp)
120{
121 struct nfs_server *server = NFS_SERVER(inode);
122 struct nfs_inode *nfsi = NFS_I(inode);
123
d7cf8dd0
TM
124 if (nfs_have_delegated_attributes(inode))
125 goto out_noreval;
126
980802e3
TM
127 if (filp->f_flags & O_DIRECT)
128 goto force_reval;
d7cf8dd0
TM
129 if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
130 goto force_reval;
131 if (nfs_attribute_timeout(inode))
132 goto force_reval;
133out_noreval:
134 return 0;
980802e3
TM
135force_reval:
136 return __nfs_revalidate_inode(server, inode);
137}
138
139static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin)
140{
6da24bc9 141 dprintk("NFS: llseek file(%s/%s, %lld, %d)\n",
b84e06c5
CL
142 filp->f_path.dentry->d_parent->d_name.name,
143 filp->f_path.dentry->d_name.name,
144 offset, origin);
145
06222e49
JB
146 /*
147 * origin == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
148 * the cached file length
149 */
6c529617 150 if (origin != SEEK_SET && origin != SEEK_CUR) {
980802e3 151 struct inode *inode = filp->f_mapping->host;
d5e66348 152
980802e3
TM
153 int retval = nfs_revalidate_file_size(inode, filp);
154 if (retval < 0)
155 return (loff_t)retval;
79835a71 156 }
d5e66348 157
79835a71 158 return generic_file_llseek(filp, offset, origin);
980802e3
TM
159}
160
1da177e4
LT
161/*
162 * Flush all dirty pages, and check for write errors.
1da177e4
LT
163 */
164static int
75e1fcc0 165nfs_file_flush(struct file *file, fl_owner_t id)
1da177e4 166{
6da24bc9
CL
167 struct dentry *dentry = file->f_path.dentry;
168 struct inode *inode = dentry->d_inode;
1da177e4 169
6da24bc9
CL
170 dprintk("NFS: flush(%s/%s)\n",
171 dentry->d_parent->d_name.name,
172 dentry->d_name.name);
1da177e4 173
c2459dc4 174 nfs_inc_stats(inode, NFSIOS_VFSFLUSH);
1da177e4
LT
175 if ((file->f_mode & FMODE_WRITE) == 0)
176 return 0;
7b159fc1 177
7fe5c398 178 /* Flush writes to the server and return any errors */
af7fa165 179 return vfs_fsync(file, 0);
1da177e4
LT
180}
181
182static ssize_t
027445c3
BP
183nfs_file_read(struct kiocb *iocb, const struct iovec *iov,
184 unsigned long nr_segs, loff_t pos)
1da177e4 185{
01cce933 186 struct dentry * dentry = iocb->ki_filp->f_path.dentry;
1da177e4
LT
187 struct inode * inode = dentry->d_inode;
188 ssize_t result;
189
1da177e4 190 if (iocb->ki_filp->f_flags & O_DIRECT)
027445c3 191 return nfs_file_direct_read(iocb, iov, nr_segs, pos);
1da177e4 192
6da24bc9 193 dprintk("NFS: read(%s/%s, %lu@%lu)\n",
1da177e4 194 dentry->d_parent->d_name.name, dentry->d_name.name,
6f276e49 195 (unsigned long) iov_length(iov, nr_segs), (unsigned long) pos);
1da177e4 196
44b11874 197 result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping);
4184dcf2 198 if (!result) {
027445c3 199 result = generic_file_aio_read(iocb, iov, nr_segs, pos);
4184dcf2
CL
200 if (result > 0)
201 nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, result);
202 }
1da177e4
LT
203 return result;
204}
205
206static ssize_t
f0930fff
JA
207nfs_file_splice_read(struct file *filp, loff_t *ppos,
208 struct pipe_inode_info *pipe, size_t count,
209 unsigned int flags)
1da177e4 210{
01cce933 211 struct dentry *dentry = filp->f_path.dentry;
1da177e4
LT
212 struct inode *inode = dentry->d_inode;
213 ssize_t res;
214
6da24bc9 215 dprintk("NFS: splice_read(%s/%s, %lu@%Lu)\n",
1da177e4
LT
216 dentry->d_parent->d_name.name, dentry->d_name.name,
217 (unsigned long) count, (unsigned long long) *ppos);
218
44b11874 219 res = nfs_revalidate_mapping(inode, filp->f_mapping);
aa2f1ef1 220 if (!res) {
f0930fff 221 res = generic_file_splice_read(filp, ppos, pipe, count, flags);
aa2f1ef1
CL
222 if (res > 0)
223 nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, res);
224 }
1da177e4
LT
225 return res;
226}
227
228static int
229nfs_file_mmap(struct file * file, struct vm_area_struct * vma)
230{
01cce933 231 struct dentry *dentry = file->f_path.dentry;
1da177e4
LT
232 struct inode *inode = dentry->d_inode;
233 int status;
234
6da24bc9 235 dprintk("NFS: mmap(%s/%s)\n",
1da177e4
LT
236 dentry->d_parent->d_name.name, dentry->d_name.name);
237
e1ebfd33
TM
238 /* Note: generic_file_mmap() returns ENOSYS on nommu systems
239 * so we call that before revalidating the mapping
240 */
241 status = generic_file_mmap(file, vma);
94387fb1
TM
242 if (!status) {
243 vma->vm_ops = &nfs_file_vm_ops;
e1ebfd33 244 status = nfs_revalidate_mapping(inode, file->f_mapping);
94387fb1 245 }
1da177e4
LT
246 return status;
247}
248
249/*
250 * Flush any dirty pages for this process, and check for write errors.
251 * The return status from this call provides a reliable indication of
252 * whether any write errors occurred for this process.
af7fa165
TM
253 *
254 * Notice that it clears the NFS_CONTEXT_ERROR_WRITE before synching to
255 * disk, but it retrieves and clears ctx->error after synching, despite
256 * the two being set at the same time in nfs_context_set_write_error().
257 * This is because the former is used to notify the _next_ call to
25985edc 258 * nfs_file_write() that a write error occurred, and hence cause it to
af7fa165 259 * fall back to doing a synchronous write.
1da177e4
LT
260 */
261static int
02c24a82 262nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1da177e4 263{
7ea80859 264 struct dentry *dentry = file->f_path.dentry;
cd3758e3 265 struct nfs_open_context *ctx = nfs_file_open_context(file);
1da177e4 266 struct inode *inode = dentry->d_inode;
af7fa165
TM
267 int have_error, status;
268 int ret = 0;
269
6da24bc9 270 dprintk("NFS: fsync file(%s/%s) datasync %d\n",
54917786
CL
271 dentry->d_parent->d_name.name, dentry->d_name.name,
272 datasync);
1da177e4 273
02c24a82 274 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
02c24a82
JB
275 mutex_lock(&inode->i_mutex);
276
91d5b470 277 nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
af7fa165
TM
278 have_error = test_and_clear_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
279 status = nfs_commit_inode(inode, FLUSH_SYNC);
2edb6bc3
N
280 if (status >= 0 && ret < 0)
281 status = ret;
af7fa165
TM
282 have_error |= test_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
283 if (have_error)
284 ret = xchg(&ctx->error, 0);
0702099b 285 if (!ret && status < 0)
af7fa165 286 ret = status;
863a3c6c
AA
287 if (!ret && !datasync)
288 /* application has asked for meta-data sync */
ef311537 289 ret = pnfs_layoutcommit_inode(inode, true);
02c24a82 290 mutex_unlock(&inode->i_mutex);
af7fa165 291 return ret;
1da177e4
LT
292}
293
38c73044
PS
294/*
295 * Decide whether a read/modify/write cycle may be more efficient
296 * then a modify/write/read cycle when writing to a page in the
297 * page cache.
298 *
299 * The modify/write/read cycle may occur if a page is read before
300 * being completely filled by the writer. In this situation, the
301 * page must be completely written to stable storage on the server
302 * before it can be refilled by reading in the page from the server.
303 * This can lead to expensive, small, FILE_SYNC mode writes being
304 * done.
305 *
306 * It may be more efficient to read the page first if the file is
307 * open for reading in addition to writing, the page is not marked
308 * as Uptodate, it is not dirty or waiting to be committed,
309 * indicating that it was previously allocated and then modified,
310 * that there were valid bytes of data in that range of the file,
311 * and that the new data won't completely replace the old data in
312 * that range of the file.
313 */
314static int nfs_want_read_modify_write(struct file *file, struct page *page,
315 loff_t pos, unsigned len)
316{
317 unsigned int pglen = nfs_page_length(page);
318 unsigned int offset = pos & (PAGE_CACHE_SIZE - 1);
319 unsigned int end = offset + len;
320
321 if ((file->f_mode & FMODE_READ) && /* open for read? */
322 !PageUptodate(page) && /* Uptodate? */
323 !PagePrivate(page) && /* i/o request already? */
324 pglen && /* valid bytes of file? */
325 (end < pglen || offset)) /* replace all valid bytes? */
326 return 1;
327 return 0;
328}
329
1da177e4 330/*
4899f9c8
NP
331 * This does the "real" work of the write. We must allocate and lock the
332 * page to be sent back to the generic routine, which then copies the
333 * data from user space.
1da177e4
LT
334 *
335 * If the writer ends up delaying the write, the writer needs to
336 * increment the page use counts until he is done with the page.
337 */
4899f9c8
NP
338static int nfs_write_begin(struct file *file, struct address_space *mapping,
339 loff_t pos, unsigned len, unsigned flags,
340 struct page **pagep, void **fsdata)
1da177e4 341{
4899f9c8 342 int ret;
38c73044 343 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
4899f9c8 344 struct page *page;
38c73044 345 int once_thru = 0;
4899f9c8 346
b7eaefaa
CL
347 dfprintk(PAGECACHE, "NFS: write_begin(%s/%s(%ld), %u@%lld)\n",
348 file->f_path.dentry->d_parent->d_name.name,
349 file->f_path.dentry->d_name.name,
350 mapping->host->i_ino, len, (long long) pos);
351
38c73044 352start:
72cb77f4
TM
353 /*
354 * Prevent starvation issues if someone is doing a consistency
355 * sync-to-disk
356 */
357 ret = wait_on_bit(&NFS_I(mapping->host)->flags, NFS_INO_FLUSHING,
358 nfs_wait_bit_killable, TASK_KILLABLE);
359 if (ret)
360 return ret;
361
54566b2c 362 page = grab_cache_page_write_begin(mapping, index, flags);
4899f9c8
NP
363 if (!page)
364 return -ENOMEM;
365 *pagep = page;
366
367 ret = nfs_flush_incompatible(file, page);
368 if (ret) {
369 unlock_page(page);
370 page_cache_release(page);
38c73044
PS
371 } else if (!once_thru &&
372 nfs_want_read_modify_write(file, page, pos, len)) {
373 once_thru = 1;
374 ret = nfs_readpage(file, page);
375 page_cache_release(page);
376 if (!ret)
377 goto start;
4899f9c8
NP
378 }
379 return ret;
1da177e4
LT
380}
381
4899f9c8
NP
382static int nfs_write_end(struct file *file, struct address_space *mapping,
383 loff_t pos, unsigned len, unsigned copied,
384 struct page *page, void *fsdata)
1da177e4 385{
4899f9c8
NP
386 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
387 int status;
1da177e4 388
b7eaefaa
CL
389 dfprintk(PAGECACHE, "NFS: write_end(%s/%s(%ld), %u@%lld)\n",
390 file->f_path.dentry->d_parent->d_name.name,
391 file->f_path.dentry->d_name.name,
392 mapping->host->i_ino, len, (long long) pos);
393
efc91ed0
TM
394 /*
395 * Zero any uninitialised parts of the page, and then mark the page
396 * as up to date if it turns out that we're extending the file.
397 */
398 if (!PageUptodate(page)) {
399 unsigned pglen = nfs_page_length(page);
400 unsigned end = offset + len;
401
402 if (pglen == 0) {
403 zero_user_segments(page, 0, offset,
404 end, PAGE_CACHE_SIZE);
405 SetPageUptodate(page);
406 } else if (end >= pglen) {
407 zero_user_segment(page, end, PAGE_CACHE_SIZE);
408 if (offset == 0)
409 SetPageUptodate(page);
410 } else
411 zero_user_segment(page, pglen, PAGE_CACHE_SIZE);
412 }
413
4899f9c8 414 status = nfs_updatepage(file, page, offset, copied);
4899f9c8
NP
415
416 unlock_page(page);
417 page_cache_release(page);
418
3d509e54
CL
419 if (status < 0)
420 return status;
421 return copied;
1da177e4
LT
422}
423
6b9b3514
DH
424/*
425 * Partially or wholly invalidate a page
426 * - Release the private state associated with a page if undergoing complete
427 * page invalidation
545db45f 428 * - Called if either PG_private or PG_fscache is set on the page
6b9b3514
DH
429 * - Caller holds page lock
430 */
2ff28e22 431static void nfs_invalidate_page(struct page *page, unsigned long offset)
cd52ed35 432{
b7eaefaa
CL
433 dfprintk(PAGECACHE, "NFS: invalidate_page(%p, %lu)\n", page, offset);
434
1c75950b
TM
435 if (offset != 0)
436 return;
d2ccddf0 437 /* Cancel any unstarted writes on this page */
1b3b4a1a 438 nfs_wb_page_cancel(page->mapping->host, page);
545db45f
DH
439
440 nfs_fscache_invalidate_page(page, page->mapping->host);
cd52ed35
TM
441}
442
6b9b3514
DH
443/*
444 * Attempt to release the private state associated with a page
545db45f 445 * - Called if either PG_private or PG_fscache is set on the page
6b9b3514
DH
446 * - Caller holds page lock
447 * - Return true (may release page) or false (may not)
448 */
cd52ed35
TM
449static int nfs_release_page(struct page *page, gfp_t gfp)
450{
b608b283
TM
451 struct address_space *mapping = page->mapping;
452
b7eaefaa
CL
453 dfprintk(PAGECACHE, "NFS: release_page(%p)\n", page);
454
d812e575 455 /* Only do I/O if gfp is a superset of GFP_KERNEL */
b608b283
TM
456 if (mapping && (gfp & GFP_KERNEL) == GFP_KERNEL) {
457 int how = FLUSH_SYNC;
458
459 /* Don't let kswapd deadlock waiting for OOM RPC calls */
460 if (current_is_kswapd())
461 how = 0;
462 nfs_commit_inode(mapping->host, how);
463 }
e3db7691 464 /* If PagePrivate() is set, then the page is not freeable */
545db45f
DH
465 if (PagePrivate(page))
466 return 0;
467 return nfs_fscache_release_page(page, gfp);
e3db7691
TM
468}
469
6b9b3514
DH
470/*
471 * Attempt to clear the private state associated with a page when an error
472 * occurs that requires the cached contents of an inode to be written back or
473 * destroyed
545db45f 474 * - Called if either PG_private or fscache is set on the page
6b9b3514
DH
475 * - Caller holds page lock
476 * - Return 0 if successful, -error otherwise
477 */
e3db7691
TM
478static int nfs_launder_page(struct page *page)
479{
b7eaefaa 480 struct inode *inode = page->mapping->host;
545db45f 481 struct nfs_inode *nfsi = NFS_I(inode);
b7eaefaa
CL
482
483 dfprintk(PAGECACHE, "NFS: launder_page(%ld, %llu)\n",
484 inode->i_ino, (long long)page_offset(page));
485
545db45f 486 nfs_fscache_wait_on_page_write(nfsi, page);
b7eaefaa 487 return nfs_wb_page(inode, page);
cd52ed35
TM
488}
489
f5e54d6e 490const struct address_space_operations nfs_file_aops = {
1da177e4
LT
491 .readpage = nfs_readpage,
492 .readpages = nfs_readpages,
9cccef95 493 .set_page_dirty = __set_page_dirty_nobuffers,
1da177e4
LT
494 .writepage = nfs_writepage,
495 .writepages = nfs_writepages,
4899f9c8
NP
496 .write_begin = nfs_write_begin,
497 .write_end = nfs_write_end,
cd52ed35
TM
498 .invalidatepage = nfs_invalidate_page,
499 .releasepage = nfs_release_page,
1da177e4 500 .direct_IO = nfs_direct_IO,
074cc1de 501 .migratepage = nfs_migrate_page,
e3db7691 502 .launder_page = nfs_launder_page,
f590f333 503 .error_remove_page = generic_error_remove_page,
1da177e4
LT
504};
505
6b9b3514
DH
506/*
507 * Notification that a PTE pointing to an NFS page is about to be made
508 * writable, implying that someone is about to modify the page through a
509 * shared-writable mapping
510 */
c2ec175c 511static int nfs_vm_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
94387fb1 512{
c2ec175c 513 struct page *page = vmf->page;
94387fb1 514 struct file *filp = vma->vm_file;
b7eaefaa 515 struct dentry *dentry = filp->f_path.dentry;
94387fb1 516 unsigned pagelen;
bc4866b6 517 int ret = VM_FAULT_NOPAGE;
4899f9c8 518 struct address_space *mapping;
94387fb1 519
b7eaefaa
CL
520 dfprintk(PAGECACHE, "NFS: vm_page_mkwrite(%s/%s(%ld), offset %lld)\n",
521 dentry->d_parent->d_name.name, dentry->d_name.name,
522 filp->f_mapping->host->i_ino,
523 (long long)page_offset(page));
524
545db45f
DH
525 /* make sure the cache has finished storing the page */
526 nfs_fscache_wait_on_page_write(NFS_I(dentry->d_inode), page);
527
94387fb1 528 lock_page(page);
4899f9c8 529 mapping = page->mapping;
b7eaefaa 530 if (mapping != dentry->d_inode->i_mapping)
8b1f9ee5
TM
531 goto out_unlock;
532
94387fb1 533 pagelen = nfs_page_length(page);
8b1f9ee5
TM
534 if (pagelen == 0)
535 goto out_unlock;
4899f9c8 536
bc4866b6
TM
537 ret = VM_FAULT_LOCKED;
538 if (nfs_flush_incompatible(filp, page) == 0 &&
539 nfs_updatepage(filp, page, 0, pagelen) == 0)
540 goto out;
8b1f9ee5 541
bc4866b6 542 ret = VM_FAULT_SIGBUS;
8b1f9ee5
TM
543out_unlock:
544 unlock_page(page);
bc4866b6
TM
545out:
546 return ret;
94387fb1
TM
547}
548
f0f37e2f 549static const struct vm_operations_struct nfs_file_vm_ops = {
94387fb1
TM
550 .fault = filemap_fault,
551 .page_mkwrite = nfs_vm_page_mkwrite,
552};
553
7b159fc1
TM
554static int nfs_need_sync_write(struct file *filp, struct inode *inode)
555{
556 struct nfs_open_context *ctx;
557
6b2f3d1f 558 if (IS_SYNC(inode) || (filp->f_flags & O_DSYNC))
7b159fc1 559 return 1;
cd3758e3 560 ctx = nfs_file_open_context(filp);
7b159fc1
TM
561 if (test_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags))
562 return 1;
563 return 0;
564}
565
027445c3
BP
566static ssize_t nfs_file_write(struct kiocb *iocb, const struct iovec *iov,
567 unsigned long nr_segs, loff_t pos)
1da177e4 568{
01cce933 569 struct dentry * dentry = iocb->ki_filp->f_path.dentry;
1da177e4 570 struct inode * inode = dentry->d_inode;
7e381172 571 unsigned long written = 0;
1da177e4 572 ssize_t result;
027445c3 573 size_t count = iov_length(iov, nr_segs);
1da177e4 574
1da177e4 575 if (iocb->ki_filp->f_flags & O_DIRECT)
027445c3 576 return nfs_file_direct_write(iocb, iov, nr_segs, pos);
1da177e4 577
6da24bc9 578 dprintk("NFS: write(%s/%s, %lu@%Ld)\n",
1da177e4 579 dentry->d_parent->d_name.name, dentry->d_name.name,
6da24bc9 580 (unsigned long) count, (long long) pos);
1da177e4
LT
581
582 result = -EBUSY;
583 if (IS_SWAPFILE(inode))
584 goto out_swapfile;
7d52e862
TM
585 /*
586 * O_APPEND implies that we must revalidate the file length.
587 */
588 if (iocb->ki_filp->f_flags & O_APPEND) {
589 result = nfs_revalidate_file_size(inode, iocb->ki_filp);
590 if (result)
591 goto out;
fe51beec 592 }
1da177e4
LT
593
594 result = count;
595 if (!count)
596 goto out;
597
027445c3 598 result = generic_file_aio_write(iocb, iov, nr_segs, pos);
7e381172
CL
599 if (result > 0)
600 written = result;
601
6b2f3d1f 602 /* Return error values for O_DSYNC and IS_SYNC() */
7b159fc1 603 if (result >= 0 && nfs_need_sync_write(iocb->ki_filp, inode)) {
af7fa165 604 int err = vfs_fsync(iocb->ki_filp, 0);
200baa21
TM
605 if (err < 0)
606 result = err;
607 }
7e381172
CL
608 if (result > 0)
609 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
1da177e4
LT
610out:
611 return result;
612
613out_swapfile:
614 printk(KERN_INFO "NFS: attempt to write to active swap file!\n");
615 goto out;
616}
617
bf40d343
SJ
618static ssize_t nfs_file_splice_write(struct pipe_inode_info *pipe,
619 struct file *filp, loff_t *ppos,
620 size_t count, unsigned int flags)
621{
622 struct dentry *dentry = filp->f_path.dentry;
623 struct inode *inode = dentry->d_inode;
7e381172 624 unsigned long written = 0;
bf40d343
SJ
625 ssize_t ret;
626
627 dprintk("NFS splice_write(%s/%s, %lu@%llu)\n",
628 dentry->d_parent->d_name.name, dentry->d_name.name,
629 (unsigned long) count, (unsigned long long) *ppos);
630
631 /*
632 * The combination of splice and an O_APPEND destination is disallowed.
633 */
634
bf40d343 635 ret = generic_file_splice_write(pipe, filp, ppos, count, flags);
7e381172
CL
636 if (ret > 0)
637 written = ret;
638
bf40d343 639 if (ret >= 0 && nfs_need_sync_write(filp, inode)) {
af7fa165 640 int err = vfs_fsync(filp, 0);
bf40d343
SJ
641 if (err < 0)
642 ret = err;
643 }
7e381172
CL
644 if (ret > 0)
645 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
bf40d343
SJ
646 return ret;
647}
648
5eebde23
SJ
649static int
650do_getlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
1da177e4
LT
651{
652 struct inode *inode = filp->f_mapping->host;
653 int status = 0;
21ac19d4 654 unsigned int saved_type = fl->fl_type;
1da177e4 655
039c4d7a 656 /* Try local locking first */
6d34ac19
BF
657 posix_test_lock(filp, fl);
658 if (fl->fl_type != F_UNLCK) {
659 /* found a conflict */
039c4d7a 660 goto out;
1da177e4 661 }
21ac19d4 662 fl->fl_type = saved_type;
039c4d7a
TM
663
664 if (nfs_have_delegation(inode, FMODE_READ))
665 goto out_noconflict;
666
5eebde23 667 if (is_local)
039c4d7a
TM
668 goto out_noconflict;
669
670 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
671out:
1da177e4 672 return status;
039c4d7a
TM
673out_noconflict:
674 fl->fl_type = F_UNLCK;
675 goto out;
1da177e4
LT
676}
677
678static int do_vfs_lock(struct file *file, struct file_lock *fl)
679{
680 int res = 0;
681 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
682 case FL_POSIX:
683 res = posix_lock_file_wait(file, fl);
684 break;
685 case FL_FLOCK:
686 res = flock_lock_file_wait(file, fl);
687 break;
688 default:
689 BUG();
690 }
1da177e4
LT
691 return res;
692}
693
5eebde23
SJ
694static int
695do_unlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
1da177e4
LT
696{
697 struct inode *inode = filp->f_mapping->host;
1da177e4
LT
698 int status;
699
1da177e4
LT
700 /*
701 * Flush all pending writes before doing anything
702 * with locks..
703 */
29884df0 704 nfs_sync_mapping(filp->f_mapping);
1da177e4
LT
705
706 /* NOTE: special case
707 * If we're signalled while cleaning up locks on process exit, we
708 * still need to complete the unlock.
709 */
5eebde23
SJ
710 /*
711 * Use local locking if mounted with "-onolock" or with appropriate
712 * "-olocal_lock="
713 */
714 if (!is_local)
1da177e4
LT
715 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
716 else
717 status = do_vfs_lock(filp, fl);
1da177e4
LT
718 return status;
719}
720
6b96724e
RL
721static int
722is_time_granular(struct timespec *ts) {
723 return ((ts->tv_sec == 0) && (ts->tv_nsec <= 1000));
724}
725
5eebde23
SJ
726static int
727do_setlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
1da177e4
LT
728{
729 struct inode *inode = filp->f_mapping->host;
1da177e4
LT
730 int status;
731
1da177e4
LT
732 /*
733 * Flush all pending writes before doing anything
734 * with locks..
735 */
29884df0
TM
736 status = nfs_sync_mapping(filp->f_mapping);
737 if (status != 0)
1da177e4
LT
738 goto out;
739
5eebde23
SJ
740 /*
741 * Use local locking if mounted with "-onolock" or with appropriate
742 * "-olocal_lock="
743 */
744 if (!is_local)
1da177e4 745 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
c4d7c402 746 else
1da177e4 747 status = do_vfs_lock(filp, fl);
1da177e4
LT
748 if (status < 0)
749 goto out;
6b96724e 750
1da177e4 751 /*
6b96724e
RL
752 * Revalidate the cache if the server has time stamps granular
753 * enough to detect subsecond changes. Otherwise, clear the
754 * cache to prevent missing any changes.
755 *
1da177e4
LT
756 * This makes locking act as a cache coherency point.
757 */
29884df0 758 nfs_sync_mapping(filp->f_mapping);
6b96724e
RL
759 if (!nfs_have_delegation(inode, FMODE_READ)) {
760 if (is_time_granular(&NFS_SERVER(inode)->time_delta))
761 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
762 else
763 nfs_zap_caches(inode);
764 }
1da177e4 765out:
1da177e4
LT
766 return status;
767}
768
769/*
770 * Lock a (portion of) a file
771 */
772static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl)
773{
6da24bc9 774 struct inode *inode = filp->f_mapping->host;
2116271a 775 int ret = -ENOLCK;
5eebde23 776 int is_local = 0;
1da177e4 777
6da24bc9
CL
778 dprintk("NFS: lock(%s/%s, t=%x, fl=%x, r=%lld:%lld)\n",
779 filp->f_path.dentry->d_parent->d_name.name,
780 filp->f_path.dentry->d_name.name,
1da177e4
LT
781 fl->fl_type, fl->fl_flags,
782 (long long)fl->fl_start, (long long)fl->fl_end);
6da24bc9 783
91d5b470 784 nfs_inc_stats(inode, NFSIOS_VFSLOCK);
1da177e4
LT
785
786 /* No mandatory locks over NFS */
dfad9441 787 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
2116271a
TM
788 goto out_err;
789
5eebde23
SJ
790 if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FCNTL)
791 is_local = 1;
792
2116271a
TM
793 if (NFS_PROTO(inode)->lock_check_bounds != NULL) {
794 ret = NFS_PROTO(inode)->lock_check_bounds(fl);
795 if (ret < 0)
796 goto out_err;
797 }
1da177e4
LT
798
799 if (IS_GETLK(cmd))
5eebde23 800 ret = do_getlk(filp, cmd, fl, is_local);
2116271a 801 else if (fl->fl_type == F_UNLCK)
5eebde23 802 ret = do_unlk(filp, cmd, fl, is_local);
2116271a 803 else
5eebde23 804 ret = do_setlk(filp, cmd, fl, is_local);
2116271a
TM
805out_err:
806 return ret;
1da177e4
LT
807}
808
809/*
810 * Lock a (portion of) a file
811 */
812static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
813{
5eebde23
SJ
814 struct inode *inode = filp->f_mapping->host;
815 int is_local = 0;
816
6da24bc9
CL
817 dprintk("NFS: flock(%s/%s, t=%x, fl=%x)\n",
818 filp->f_path.dentry->d_parent->d_name.name,
819 filp->f_path.dentry->d_name.name,
1da177e4
LT
820 fl->fl_type, fl->fl_flags);
821
1da177e4
LT
822 if (!(fl->fl_flags & FL_FLOCK))
823 return -ENOLCK;
824
5eebde23
SJ
825 if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FLOCK)
826 is_local = 1;
827
1da177e4
LT
828 /* We're simulating flock() locks using posix locks on the server */
829 fl->fl_owner = (fl_owner_t)filp;
830 fl->fl_start = 0;
831 fl->fl_end = OFFSET_MAX;
832
833 if (fl->fl_type == F_UNLCK)
5eebde23
SJ
834 return do_unlk(filp, cmd, fl, is_local);
835 return do_setlk(filp, cmd, fl, is_local);
1da177e4 836}
370f6599 837
6da24bc9
CL
838/*
839 * There is no protocol support for leases, so we have no way to implement
840 * them correctly in the face of opens by other clients.
841 */
370f6599
BF
842static int nfs_setlease(struct file *file, long arg, struct file_lock **fl)
843{
6da24bc9
CL
844 dprintk("NFS: setlease(%s/%s, arg=%ld)\n",
845 file->f_path.dentry->d_parent->d_name.name,
846 file->f_path.dentry->d_name.name, arg);
370f6599
BF
847 return -EINVAL;
848}
1788ea6e 849
0486958f
JL
850const struct file_operations nfs_file_operations = {
851 .llseek = nfs_file_llseek,
852 .read = do_sync_read,
853 .write = do_sync_write,
854 .aio_read = nfs_file_read,
855 .aio_write = nfs_file_write,
856 .mmap = nfs_file_mmap,
857 .open = nfs_file_open,
858 .flush = nfs_file_flush,
859 .release = nfs_file_release,
860 .fsync = nfs_file_fsync,
861 .lock = nfs_lock,
862 .flock = nfs_flock,
863 .splice_read = nfs_file_splice_read,
864 .splice_write = nfs_file_splice_write,
865 .check_flags = nfs_check_flags,
866 .setlease = nfs_setlease,
867};
868
1788ea6e
JL
869#ifdef CONFIG_NFS_V4
870static int
871nfs4_file_open(struct inode *inode, struct file *filp)
872{
873 /*
874 * NFSv4 opens are handled in d_lookup and d_revalidate. If we get to
875 * this point, then something is very wrong
876 */
877 dprintk("NFS: %s called! inode=%p filp=%p\n", __func__, inode, filp);
878 return -ENOTDIR;
879}
880
881const struct file_operations nfs4_file_operations = {
882 .llseek = nfs_file_llseek,
883 .read = do_sync_read,
884 .write = do_sync_write,
885 .aio_read = nfs_file_read,
886 .aio_write = nfs_file_write,
887 .mmap = nfs_file_mmap,
888 .open = nfs4_file_open,
889 .flush = nfs_file_flush,
890 .release = nfs_file_release,
891 .fsync = nfs_file_fsync,
892 .lock = nfs_lock,
893 .flock = nfs_flock,
894 .splice_read = nfs_file_splice_read,
895 .splice_write = nfs_file_splice_write,
896 .check_flags = nfs_check_flags,
897 .setlease = nfs_setlease,
898};
899#endif /* CONFIG_NFS_V4 */