xref: /openbmc/linux/fs/nfs/file.c (revision 4dc73c679114a2f408567e2e44770ed934190db2)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *  linux/fs/nfs/file.c
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *  Copyright (C) 1992  Rick Sladkey
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  *  Changes Copyright (C) 1994 by Florian La Roche
81da177e4SLinus Torvalds  *   - Do not copy data too often around in the kernel.
91da177e4SLinus Torvalds  *   - In nfs_file_read the return value of kmalloc wasn't checked.
101da177e4SLinus Torvalds  *   - Put in a better version of read look-ahead buffering. Original idea
111da177e4SLinus Torvalds  *     and implementation by Wai S Kok elekokws@ee.nus.sg.
121da177e4SLinus Torvalds  *
131da177e4SLinus Torvalds  *  Expire cache on write to a file by Wai S Kok (Oct 1994).
141da177e4SLinus Torvalds  *
151da177e4SLinus Torvalds  *  Total rewrite of read side for new NFS buffer cache.. Linus.
161da177e4SLinus Torvalds  *
171da177e4SLinus Torvalds  *  nfs regular file handling functions
181da177e4SLinus Torvalds  */
191da177e4SLinus Torvalds 
20ddda8e0aSBryan Schumaker #include <linux/module.h>
211da177e4SLinus Torvalds #include <linux/time.h>
221da177e4SLinus Torvalds #include <linux/kernel.h>
231da177e4SLinus Torvalds #include <linux/errno.h>
241da177e4SLinus Torvalds #include <linux/fcntl.h>
251da177e4SLinus Torvalds #include <linux/stat.h>
261da177e4SLinus Torvalds #include <linux/nfs_fs.h>
271da177e4SLinus Torvalds #include <linux/nfs_mount.h>
281da177e4SLinus Torvalds #include <linux/mm.h>
291da177e4SLinus Torvalds #include <linux/pagemap.h>
305a0e3ad6STejun Heo #include <linux/gfp.h>
31b608b283STrond Myklebust #include <linux/swap.h>
321da177e4SLinus Torvalds 
337c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
341da177e4SLinus Torvalds 
351da177e4SLinus Torvalds #include "delegation.h"
3694387fb1STrond Myklebust #include "internal.h"
3791d5b470SChuck Lever #include "iostat.h"
38545db45fSDavid Howells #include "fscache.h"
39612aa983SChristoph Hellwig #include "pnfs.h"
401da177e4SLinus Torvalds 
41f4ce1299STrond Myklebust #include "nfstrace.h"
42f4ce1299STrond Myklebust 
431da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_FILE
441da177e4SLinus Torvalds 
45f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct nfs_file_vm_ops;
4694387fb1STrond Myklebust 
47ce4ef7c0SBryan Schumaker int nfs_check_flags(int flags)
481da177e4SLinus Torvalds {
491da177e4SLinus Torvalds 	if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
501da177e4SLinus Torvalds 		return -EINVAL;
511da177e4SLinus Torvalds 
521da177e4SLinus Torvalds 	return 0;
531da177e4SLinus Torvalds }
5489d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_check_flags);
551da177e4SLinus Torvalds 
561da177e4SLinus Torvalds /*
571da177e4SLinus Torvalds  * Open file
581da177e4SLinus Torvalds  */
591da177e4SLinus Torvalds static int
601da177e4SLinus Torvalds nfs_file_open(struct inode *inode, struct file *filp)
611da177e4SLinus Torvalds {
621da177e4SLinus Torvalds 	int res;
631da177e4SLinus Torvalds 
646de1472fSAl Viro 	dprintk("NFS: open file(%pD2)\n", filp);
65cc0dd2d1SChuck Lever 
66c2459dc4SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSOPEN);
671da177e4SLinus Torvalds 	res = nfs_check_flags(filp->f_flags);
681da177e4SLinus Torvalds 	if (res)
691da177e4SLinus Torvalds 		return res;
701da177e4SLinus Torvalds 
7146cb650cSTrond Myklebust 	res = nfs_open(inode, filp);
721da177e4SLinus Torvalds 	return res;
731da177e4SLinus Torvalds }
741da177e4SLinus Torvalds 
75ce4ef7c0SBryan Schumaker int
761da177e4SLinus Torvalds nfs_file_release(struct inode *inode, struct file *filp)
771da177e4SLinus Torvalds {
786de1472fSAl Viro 	dprintk("NFS: release(%pD2)\n", filp);
796da24bc9SChuck Lever 
8091d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSRELEASE);
81aff8d8dcSAnna Schumaker 	nfs_file_clear_open_context(filp);
82a6b5a28eSDave Wysochanski 	nfs_fscache_release_file(inode, filp);
83aff8d8dcSAnna Schumaker 	return 0;
841da177e4SLinus Torvalds }
8589d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_release);
861da177e4SLinus Torvalds 
87980802e3STrond Myklebust /**
8837eaeed1STrond Myklebust  * nfs_revalidate_file_size - Revalidate the file size
89302fad7bSTrond Myklebust  * @inode: pointer to inode struct
90302fad7bSTrond Myklebust  * @filp: pointer to struct file
91980802e3STrond Myklebust  *
92980802e3STrond Myklebust  * Revalidates the file length. This is basically a wrapper around
93980802e3STrond Myklebust  * nfs_revalidate_inode() that takes into account the fact that we may
94980802e3STrond Myklebust  * have cached writes (in which case we don't care about the server's
95980802e3STrond Myklebust  * idea of what the file length is), or O_DIRECT (in which case we
96980802e3STrond Myklebust  * shouldn't trust the cache).
97980802e3STrond Myklebust  */
98980802e3STrond Myklebust static int nfs_revalidate_file_size(struct inode *inode, struct file *filp)
99980802e3STrond Myklebust {
100980802e3STrond Myklebust 	struct nfs_server *server = NFS_SERVER(inode);
101d7cf8dd0STrond Myklebust 
102980802e3STrond Myklebust 	if (filp->f_flags & O_DIRECT)
103980802e3STrond Myklebust 		goto force_reval;
10413c0b082STrond Myklebust 	if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_SIZE))
105d7cf8dd0STrond Myklebust 		goto force_reval;
106fe51beecSTrond Myklebust 	return 0;
107980802e3STrond Myklebust force_reval:
108980802e3STrond Myklebust 	return __nfs_revalidate_inode(server, inode);
109980802e3STrond Myklebust }
110980802e3STrond Myklebust 
111965c8e59SAndrew Morton loff_t nfs_file_llseek(struct file *filp, loff_t offset, int whence)
112980802e3STrond Myklebust {
1136de1472fSAl Viro 	dprintk("NFS: llseek file(%pD2, %lld, %d)\n",
1146de1472fSAl Viro 			filp, offset, whence);
115b84e06c5SChuck Lever 
11606222e49SJosef Bacik 	/*
117965c8e59SAndrew Morton 	 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
11806222e49SJosef Bacik 	 * the cached file length
11906222e49SJosef Bacik 	 */
120965c8e59SAndrew Morton 	if (whence != SEEK_SET && whence != SEEK_CUR) {
121980802e3STrond Myklebust 		struct inode *inode = filp->f_mapping->host;
122d5e66348STrond Myklebust 
123980802e3STrond Myklebust 		int retval = nfs_revalidate_file_size(inode, filp);
124980802e3STrond Myklebust 		if (retval < 0)
125980802e3STrond Myklebust 			return (loff_t)retval;
12679835a71SAndi Kleen 	}
127d5e66348STrond Myklebust 
128965c8e59SAndrew Morton 	return generic_file_llseek(filp, offset, whence);
129980802e3STrond Myklebust }
13089d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_llseek);
131980802e3STrond Myklebust 
1321da177e4SLinus Torvalds /*
1331da177e4SLinus Torvalds  * Flush all dirty pages, and check for write errors.
1341da177e4SLinus Torvalds  */
1355445b1fbSTrond Myklebust static int
13675e1fcc0SMiklos Szeredi nfs_file_flush(struct file *file, fl_owner_t id)
1371da177e4SLinus Torvalds {
1386de1472fSAl Viro 	struct inode	*inode = file_inode(file);
13967dd23f9SScott Mayhew 	errseq_t since;
1401da177e4SLinus Torvalds 
1416de1472fSAl Viro 	dprintk("NFS: flush(%pD2)\n", file);
1421da177e4SLinus Torvalds 
143c2459dc4SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSFLUSH);
1441da177e4SLinus Torvalds 	if ((file->f_mode & FMODE_WRITE) == 0)
1451da177e4SLinus Torvalds 		return 0;
1467b159fc1STrond Myklebust 
1477fe5c398STrond Myklebust 	/* Flush writes to the server and return any errors */
14867dd23f9SScott Mayhew 	since = filemap_sample_wb_err(file->f_mapping);
14967dd23f9SScott Mayhew 	nfs_wb_all(inode);
15067dd23f9SScott Mayhew 	return filemap_check_wb_err(file->f_mapping, since);
1511da177e4SLinus Torvalds }
1521da177e4SLinus Torvalds 
153ce4ef7c0SBryan Schumaker ssize_t
1543aa2d199SAl Viro nfs_file_read(struct kiocb *iocb, struct iov_iter *to)
1551da177e4SLinus Torvalds {
1566de1472fSAl Viro 	struct inode *inode = file_inode(iocb->ki_filp);
1571da177e4SLinus Torvalds 	ssize_t result;
1581da177e4SLinus Torvalds 
1592ba48ce5SAl Viro 	if (iocb->ki_flags & IOCB_DIRECT)
160c8b8e32dSChristoph Hellwig 		return nfs_file_direct_read(iocb, to);
1611da177e4SLinus Torvalds 
162619d30b4SAl Viro 	dprintk("NFS: read(%pD2, %zu@%lu)\n",
1636de1472fSAl Viro 		iocb->ki_filp,
1643aa2d199SAl Viro 		iov_iter_count(to), (unsigned long) iocb->ki_pos);
1651da177e4SLinus Torvalds 
166a5864c99STrond Myklebust 	nfs_start_io_read(inode);
167a5864c99STrond Myklebust 	result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping);
1684184dcf2SChuck Lever 	if (!result) {
1693aa2d199SAl Viro 		result = generic_file_read_iter(iocb, to);
1704184dcf2SChuck Lever 		if (result > 0)
1714184dcf2SChuck Lever 			nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, result);
1724184dcf2SChuck Lever 	}
173a5864c99STrond Myklebust 	nfs_end_io_read(inode);
1741da177e4SLinus Torvalds 	return result;
1751da177e4SLinus Torvalds }
17689d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_read);
1771da177e4SLinus Torvalds 
178ce4ef7c0SBryan Schumaker int
1791da177e4SLinus Torvalds nfs_file_mmap(struct file * file, struct vm_area_struct * vma)
1801da177e4SLinus Torvalds {
1816de1472fSAl Viro 	struct inode *inode = file_inode(file);
1821da177e4SLinus Torvalds 	int	status;
1831da177e4SLinus Torvalds 
1846de1472fSAl Viro 	dprintk("NFS: mmap(%pD2)\n", file);
1851da177e4SLinus Torvalds 
186e1ebfd33STrond Myklebust 	/* Note: generic_file_mmap() returns ENOSYS on nommu systems
187e1ebfd33STrond Myklebust 	 *       so we call that before revalidating the mapping
188e1ebfd33STrond Myklebust 	 */
189e1ebfd33STrond Myklebust 	status = generic_file_mmap(file, vma);
19094387fb1STrond Myklebust 	if (!status) {
19194387fb1STrond Myklebust 		vma->vm_ops = &nfs_file_vm_ops;
192e1ebfd33STrond Myklebust 		status = nfs_revalidate_mapping(inode, file->f_mapping);
19394387fb1STrond Myklebust 	}
1941da177e4SLinus Torvalds 	return status;
1951da177e4SLinus Torvalds }
19689d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_mmap);
1971da177e4SLinus Torvalds 
1981da177e4SLinus Torvalds /*
1991da177e4SLinus Torvalds  * Flush any dirty pages for this process, and check for write errors.
2001da177e4SLinus Torvalds  * The return status from this call provides a reliable indication of
2011da177e4SLinus Torvalds  * whether any write errors occurred for this process.
2021da177e4SLinus Torvalds  */
2034ff79bc7SChristoph Hellwig static int
204bf4b4905SNeilBrown nfs_file_fsync_commit(struct file *file, int datasync)
2051da177e4SLinus Torvalds {
2066de1472fSAl Viro 	struct inode *inode = file_inode(file);
2072197e9b0STrond Myklebust 	int ret;
208af7fa165STrond Myklebust 
2096de1472fSAl Viro 	dprintk("NFS: fsync file(%pD2) datasync %d\n", file, datasync);
2101da177e4SLinus Torvalds 
21191d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
2122197e9b0STrond Myklebust 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
2132197e9b0STrond Myklebust 	if (ret < 0)
214a5c58892SBryan Schumaker 		return ret;
2152197e9b0STrond Myklebust 	return file_check_and_advance_wb_err(file);
216a5c58892SBryan Schumaker }
217a5c58892SBryan Schumaker 
2184ff79bc7SChristoph Hellwig int
219a5c58892SBryan Schumaker nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
220a5c58892SBryan Schumaker {
2212197e9b0STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
222496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
2232197e9b0STrond Myklebust 	int ret;
224a5c58892SBryan Schumaker 
225f4ce1299STrond Myklebust 	trace_nfs_fsync_enter(inode);
226f4ce1299STrond Myklebust 
2272197e9b0STrond Myklebust 	for (;;) {
2286fbda89bSTrond Myklebust 		ret = file_write_and_wait_range(file, start, end);
2297b281ee0STrond Myklebust 		if (ret != 0)
23005990d1bSTrond Myklebust 			break;
231bf4b4905SNeilBrown 		ret = nfs_file_fsync_commit(file, datasync);
2322197e9b0STrond Myklebust 		if (ret != 0)
2332197e9b0STrond Myklebust 			break;
2344ff79bc7SChristoph Hellwig 		ret = pnfs_sync_inode(inode, !!datasync);
2352197e9b0STrond Myklebust 		if (ret != 0)
2362197e9b0STrond Myklebust 			break;
2372197e9b0STrond Myklebust 		if (!test_and_clear_bit(NFS_CONTEXT_RESEND_WRITES, &ctx->flags))
2382197e9b0STrond Myklebust 			break;
239dcfc4f25STrond Myklebust 		/*
240dcfc4f25STrond Myklebust 		 * If nfs_file_fsync_commit detected a server reboot, then
241dcfc4f25STrond Myklebust 		 * resend all dirty pages that might have been covered by
242dcfc4f25STrond Myklebust 		 * the NFS_CONTEXT_RESEND_WRITES flag
243dcfc4f25STrond Myklebust 		 */
244dcfc4f25STrond Myklebust 		start = 0;
245dcfc4f25STrond Myklebust 		end = LLONG_MAX;
2462197e9b0STrond Myklebust 	}
24705990d1bSTrond Myklebust 
248f4ce1299STrond Myklebust 	trace_nfs_fsync_exit(inode, ret);
249af7fa165STrond Myklebust 	return ret;
2501da177e4SLinus Torvalds }
2514ff79bc7SChristoph Hellwig EXPORT_SYMBOL_GPL(nfs_file_fsync);
2521da177e4SLinus Torvalds 
2531da177e4SLinus Torvalds /*
25438c73044SPeter Staubach  * Decide whether a read/modify/write cycle may be more efficient
25538c73044SPeter Staubach  * then a modify/write/read cycle when writing to a page in the
25638c73044SPeter Staubach  * page cache.
25738c73044SPeter Staubach  *
2582cde04e9SKazuo Ito  * Some pNFS layout drivers can only read/write at a certain block
2592cde04e9SKazuo Ito  * granularity like all block devices and therefore we must perform
2602cde04e9SKazuo Ito  * read/modify/write whenever a page hasn't read yet and the data
2612cde04e9SKazuo Ito  * to be written there is not aligned to a block boundary and/or
2622cde04e9SKazuo Ito  * smaller than the block size.
2632cde04e9SKazuo Ito  *
26438c73044SPeter Staubach  * The modify/write/read cycle may occur if a page is read before
26538c73044SPeter Staubach  * being completely filled by the writer.  In this situation, the
26638c73044SPeter Staubach  * page must be completely written to stable storage on the server
26738c73044SPeter Staubach  * before it can be refilled by reading in the page from the server.
26838c73044SPeter Staubach  * This can lead to expensive, small, FILE_SYNC mode writes being
26938c73044SPeter Staubach  * done.
27038c73044SPeter Staubach  *
27138c73044SPeter Staubach  * It may be more efficient to read the page first if the file is
27238c73044SPeter Staubach  * open for reading in addition to writing, the page is not marked
27338c73044SPeter Staubach  * as Uptodate, it is not dirty or waiting to be committed,
27438c73044SPeter Staubach  * indicating that it was previously allocated and then modified,
27538c73044SPeter Staubach  * that there were valid bytes of data in that range of the file,
27638c73044SPeter Staubach  * and that the new data won't completely replace the old data in
27738c73044SPeter Staubach  * that range of the file.
27838c73044SPeter Staubach  */
2792cde04e9SKazuo Ito static bool nfs_full_page_write(struct page *page, loff_t pos, unsigned int len)
28038c73044SPeter Staubach {
28138c73044SPeter Staubach 	unsigned int pglen = nfs_page_length(page);
28209cbfeafSKirill A. Shutemov 	unsigned int offset = pos & (PAGE_SIZE - 1);
28338c73044SPeter Staubach 	unsigned int end = offset + len;
28438c73044SPeter Staubach 
2852cde04e9SKazuo Ito 	return !pglen || (end >= pglen && !offset);
286612aa983SChristoph Hellwig }
287612aa983SChristoph Hellwig 
2882cde04e9SKazuo Ito static bool nfs_want_read_modify_write(struct file *file, struct page *page,
2892cde04e9SKazuo Ito 			loff_t pos, unsigned int len)
2902cde04e9SKazuo Ito {
2912cde04e9SKazuo Ito 	/*
2922cde04e9SKazuo Ito 	 * Up-to-date pages, those with ongoing or full-page write
2932cde04e9SKazuo Ito 	 * don't need read/modify/write
2942cde04e9SKazuo Ito 	 */
2952cde04e9SKazuo Ito 	if (PageUptodate(page) || PagePrivate(page) ||
2962cde04e9SKazuo Ito 	    nfs_full_page_write(page, pos, len))
2972cde04e9SKazuo Ito 		return false;
2982cde04e9SKazuo Ito 
2992cde04e9SKazuo Ito 	if (pnfs_ld_read_whole_page(file->f_mapping->host))
3002cde04e9SKazuo Ito 		return true;
3012cde04e9SKazuo Ito 	/* Open for reading too? */
3022cde04e9SKazuo Ito 	if (file->f_mode & FMODE_READ)
3032cde04e9SKazuo Ito 		return true;
3042cde04e9SKazuo Ito 	return false;
30538c73044SPeter Staubach }
30638c73044SPeter Staubach 
30738c73044SPeter Staubach /*
3084899f9c8SNick Piggin  * This does the "real" work of the write. We must allocate and lock the
3094899f9c8SNick Piggin  * page to be sent back to the generic routine, which then copies the
3104899f9c8SNick Piggin  * data from user space.
3111da177e4SLinus Torvalds  *
3121da177e4SLinus Torvalds  * If the writer ends up delaying the write, the writer needs to
3131da177e4SLinus Torvalds  * increment the page use counts until he is done with the page.
3141da177e4SLinus Torvalds  */
3154899f9c8SNick Piggin static int nfs_write_begin(struct file *file, struct address_space *mapping,
3164899f9c8SNick Piggin 			loff_t pos, unsigned len, unsigned flags,
3174899f9c8SNick Piggin 			struct page **pagep, void **fsdata)
3181da177e4SLinus Torvalds {
3194899f9c8SNick Piggin 	int ret;
32009cbfeafSKirill A. Shutemov 	pgoff_t index = pos >> PAGE_SHIFT;
3214899f9c8SNick Piggin 	struct page *page;
32238c73044SPeter Staubach 	int once_thru = 0;
3234899f9c8SNick Piggin 
3241e8968c5SNiels de Vos 	dfprintk(PAGECACHE, "NFS: write_begin(%pD2(%lu), %u@%lld)\n",
3256de1472fSAl Viro 		file, mapping->host->i_ino, len, (long long) pos);
326b7eaefaaSChuck Lever 
32738c73044SPeter Staubach start:
32854566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
3294899f9c8SNick Piggin 	if (!page)
3304899f9c8SNick Piggin 		return -ENOMEM;
3314899f9c8SNick Piggin 	*pagep = page;
3324899f9c8SNick Piggin 
3334899f9c8SNick Piggin 	ret = nfs_flush_incompatible(file, page);
3344899f9c8SNick Piggin 	if (ret) {
3354899f9c8SNick Piggin 		unlock_page(page);
33609cbfeafSKirill A. Shutemov 		put_page(page);
33738c73044SPeter Staubach 	} else if (!once_thru &&
33838c73044SPeter Staubach 		   nfs_want_read_modify_write(file, page, pos, len)) {
33938c73044SPeter Staubach 		once_thru = 1;
34038c73044SPeter Staubach 		ret = nfs_readpage(file, page);
34109cbfeafSKirill A. Shutemov 		put_page(page);
34238c73044SPeter Staubach 		if (!ret)
34338c73044SPeter Staubach 			goto start;
3444899f9c8SNick Piggin 	}
3454899f9c8SNick Piggin 	return ret;
3461da177e4SLinus Torvalds }
3471da177e4SLinus Torvalds 
3484899f9c8SNick Piggin static int nfs_write_end(struct file *file, struct address_space *mapping,
3494899f9c8SNick Piggin 			loff_t pos, unsigned len, unsigned copied,
3504899f9c8SNick Piggin 			struct page *page, void *fsdata)
3511da177e4SLinus Torvalds {
35209cbfeafSKirill A. Shutemov 	unsigned offset = pos & (PAGE_SIZE - 1);
353dc24826bSAndy Adamson 	struct nfs_open_context *ctx = nfs_file_open_context(file);
3544899f9c8SNick Piggin 	int status;
3551da177e4SLinus Torvalds 
3561e8968c5SNiels de Vos 	dfprintk(PAGECACHE, "NFS: write_end(%pD2(%lu), %u@%lld)\n",
3576de1472fSAl Viro 		file, mapping->host->i_ino, len, (long long) pos);
358b7eaefaaSChuck Lever 
359efc91ed0STrond Myklebust 	/*
360efc91ed0STrond Myklebust 	 * Zero any uninitialised parts of the page, and then mark the page
361efc91ed0STrond Myklebust 	 * as up to date if it turns out that we're extending the file.
362efc91ed0STrond Myklebust 	 */
363efc91ed0STrond Myklebust 	if (!PageUptodate(page)) {
364efc91ed0STrond Myklebust 		unsigned pglen = nfs_page_length(page);
365c0cf3ef5SAl Viro 		unsigned end = offset + copied;
366efc91ed0STrond Myklebust 
367efc91ed0STrond Myklebust 		if (pglen == 0) {
368efc91ed0STrond Myklebust 			zero_user_segments(page, 0, offset,
36909cbfeafSKirill A. Shutemov 					end, PAGE_SIZE);
370efc91ed0STrond Myklebust 			SetPageUptodate(page);
371efc91ed0STrond Myklebust 		} else if (end >= pglen) {
37209cbfeafSKirill A. Shutemov 			zero_user_segment(page, end, PAGE_SIZE);
373efc91ed0STrond Myklebust 			if (offset == 0)
374efc91ed0STrond Myklebust 				SetPageUptodate(page);
375efc91ed0STrond Myklebust 		} else
37609cbfeafSKirill A. Shutemov 			zero_user_segment(page, pglen, PAGE_SIZE);
377efc91ed0STrond Myklebust 	}
378efc91ed0STrond Myklebust 
3794899f9c8SNick Piggin 	status = nfs_updatepage(file, page, offset, copied);
3804899f9c8SNick Piggin 
3814899f9c8SNick Piggin 	unlock_page(page);
38209cbfeafSKirill A. Shutemov 	put_page(page);
3834899f9c8SNick Piggin 
3843d509e54SChuck Lever 	if (status < 0)
3853d509e54SChuck Lever 		return status;
3862701d086SAndy Adamson 	NFS_I(mapping->host)->write_io += copied;
387dc24826bSAndy Adamson 
388ce52914eSScott Mayhew 	if (nfs_ctx_key_to_expire(ctx, mapping->host)) {
389dc24826bSAndy Adamson 		status = nfs_wb_all(mapping->host);
390dc24826bSAndy Adamson 		if (status < 0)
391dc24826bSAndy Adamson 			return status;
392dc24826bSAndy Adamson 	}
393dc24826bSAndy Adamson 
3943d509e54SChuck Lever 	return copied;
3951da177e4SLinus Torvalds }
3961da177e4SLinus Torvalds 
3976b9b3514SDavid Howells /*
3986b9b3514SDavid Howells  * Partially or wholly invalidate a page
3996b9b3514SDavid Howells  * - Release the private state associated with a page if undergoing complete
4006b9b3514SDavid Howells  *   page invalidation
401545db45fSDavid Howells  * - Called if either PG_private or PG_fscache is set on the page
4026b9b3514SDavid Howells  * - Caller holds page lock
4036b9b3514SDavid Howells  */
404d47992f8SLukas Czerner static void nfs_invalidate_page(struct page *page, unsigned int offset,
405d47992f8SLukas Czerner 				unsigned int length)
406cd52ed35STrond Myklebust {
407d47992f8SLukas Czerner 	dfprintk(PAGECACHE, "NFS: invalidate_page(%p, %u, %u)\n",
408d47992f8SLukas Czerner 		 page, offset, length);
409b7eaefaaSChuck Lever 
41009cbfeafSKirill A. Shutemov 	if (offset != 0 || length < PAGE_SIZE)
4111c75950bSTrond Myklebust 		return;
412d2ccddf0STrond Myklebust 	/* Cancel any unstarted writes on this page */
413d56b4ddfSMel Gorman 	nfs_wb_page_cancel(page_file_mapping(page)->host, page);
414a6b5a28eSDave Wysochanski 	wait_on_page_fscache(page);
415cd52ed35STrond Myklebust }
416cd52ed35STrond Myklebust 
4176b9b3514SDavid Howells /*
4186b9b3514SDavid Howells  * Attempt to release the private state associated with a page
419545db45fSDavid Howells  * - Called if either PG_private or PG_fscache is set on the page
4206b9b3514SDavid Howells  * - Caller holds page lock
4216b9b3514SDavid Howells  * - Return true (may release page) or false (may not)
4226b9b3514SDavid Howells  */
423cd52ed35STrond Myklebust static int nfs_release_page(struct page *page, gfp_t gfp)
424cd52ed35STrond Myklebust {
425b7eaefaaSChuck Lever 	dfprintk(PAGECACHE, "NFS: release_page(%p)\n", page);
426b7eaefaaSChuck Lever 
427e3db7691STrond Myklebust 	/* If PagePrivate() is set, then the page is not freeable */
428545db45fSDavid Howells 	if (PagePrivate(page))
429ddeff520SNikita Danilov 		return 0;
430545db45fSDavid Howells 	return nfs_fscache_release_page(page, gfp);
431e3db7691STrond Myklebust }
432e3db7691STrond Myklebust 
433f919b196SMel Gorman static void nfs_check_dirty_writeback(struct page *page,
434f919b196SMel Gorman 				bool *dirty, bool *writeback)
435f919b196SMel Gorman {
436f919b196SMel Gorman 	struct nfs_inode *nfsi;
437f919b196SMel Gorman 	struct address_space *mapping = page_file_mapping(page);
438f919b196SMel Gorman 
439f919b196SMel Gorman 	if (!mapping || PageSwapCache(page))
440f919b196SMel Gorman 		return;
441f919b196SMel Gorman 
442f919b196SMel Gorman 	/*
443f919b196SMel Gorman 	 * Check if an unstable page is currently being committed and
444f919b196SMel Gorman 	 * if so, have the VM treat it as if the page is under writeback
445f919b196SMel Gorman 	 * so it will not block due to pages that will shortly be freeable.
446f919b196SMel Gorman 	 */
447f919b196SMel Gorman 	nfsi = NFS_I(mapping->host);
448af7cf057STrond Myklebust 	if (atomic_read(&nfsi->commit_info.rpcs_out)) {
449f919b196SMel Gorman 		*writeback = true;
450f919b196SMel Gorman 		return;
451f919b196SMel Gorman 	}
452f919b196SMel Gorman 
453f919b196SMel Gorman 	/*
454f919b196SMel Gorman 	 * If PagePrivate() is set, then the page is not freeable and as the
455f919b196SMel Gorman 	 * inode is not being committed, it's not going to be cleaned in the
456f919b196SMel Gorman 	 * near future so treat it as dirty
457f919b196SMel Gorman 	 */
458f919b196SMel Gorman 	if (PagePrivate(page))
459f919b196SMel Gorman 		*dirty = true;
460f919b196SMel Gorman }
461f919b196SMel Gorman 
4626b9b3514SDavid Howells /*
4636b9b3514SDavid Howells  * Attempt to clear the private state associated with a page when an error
4646b9b3514SDavid Howells  * occurs that requires the cached contents of an inode to be written back or
4656b9b3514SDavid Howells  * destroyed
466545db45fSDavid Howells  * - Called if either PG_private or fscache is set on the page
4676b9b3514SDavid Howells  * - Caller holds page lock
4686b9b3514SDavid Howells  * - Return 0 if successful, -error otherwise
4696b9b3514SDavid Howells  */
470e3db7691STrond Myklebust static int nfs_launder_page(struct page *page)
471e3db7691STrond Myklebust {
472d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
473b7eaefaaSChuck Lever 
474b7eaefaaSChuck Lever 	dfprintk(PAGECACHE, "NFS: launder_page(%ld, %llu)\n",
475b7eaefaaSChuck Lever 		inode->i_ino, (long long)page_offset(page));
476b7eaefaaSChuck Lever 
477a6b5a28eSDave Wysochanski 	wait_on_page_fscache(page);
478c373fff7STrond Myklebust 	return nfs_wb_page(inode, page);
479cd52ed35STrond Myklebust }
480cd52ed35STrond Myklebust 
481a564b8f0SMel Gorman static int nfs_swap_activate(struct swap_info_struct *sis, struct file *file,
482a564b8f0SMel Gorman 						sector_t *span)
483a564b8f0SMel Gorman {
484bd89bc67SMurphy Zhou 	unsigned long blocks;
485bd89bc67SMurphy Zhou 	long long isize;
486*4dc73c67SNeilBrown 	struct inode *inode = file_inode(file);
487*4dc73c67SNeilBrown 	struct rpc_clnt *clnt = NFS_CLIENT(inode);
488*4dc73c67SNeilBrown 	struct nfs_client *cl = NFS_SERVER(inode)->nfs_client;
489bd89bc67SMurphy Zhou 
490bd89bc67SMurphy Zhou 	spin_lock(&inode->i_lock);
491bd89bc67SMurphy Zhou 	blocks = inode->i_blocks;
492bd89bc67SMurphy Zhou 	isize = inode->i_size;
493bd89bc67SMurphy Zhou 	spin_unlock(&inode->i_lock);
494bd89bc67SMurphy Zhou 	if (blocks*512 < isize) {
495bd89bc67SMurphy Zhou 		pr_warn("swap activate: swapfile has holes\n");
496bd89bc67SMurphy Zhou 		return -EINVAL;
497bd89bc67SMurphy Zhou 	}
498dad2b015SJeff Layton 
499a564b8f0SMel Gorman 	*span = sis->pages;
500dad2b015SJeff Layton 
501*4dc73c67SNeilBrown 
502*4dc73c67SNeilBrown 	if (cl->rpc_ops->enable_swap)
503*4dc73c67SNeilBrown 		cl->rpc_ops->enable_swap(inode);
504*4dc73c67SNeilBrown 
5053c87ef6eSJeff Layton 	return rpc_clnt_swap_activate(clnt);
506a564b8f0SMel Gorman }
507a564b8f0SMel Gorman 
508a564b8f0SMel Gorman static void nfs_swap_deactivate(struct file *file)
509a564b8f0SMel Gorman {
510*4dc73c67SNeilBrown 	struct inode *inode = file_inode(file);
511*4dc73c67SNeilBrown 	struct rpc_clnt *clnt = NFS_CLIENT(inode);
512*4dc73c67SNeilBrown 	struct nfs_client *cl = NFS_SERVER(inode)->nfs_client;
513dad2b015SJeff Layton 
5143c87ef6eSJeff Layton 	rpc_clnt_swap_deactivate(clnt);
515*4dc73c67SNeilBrown 	if (cl->rpc_ops->disable_swap)
516*4dc73c67SNeilBrown 		cl->rpc_ops->disable_swap(file_inode(file));
517a564b8f0SMel Gorman }
518a564b8f0SMel Gorman 
519f5e54d6eSChristoph Hellwig const struct address_space_operations nfs_file_aops = {
5201da177e4SLinus Torvalds 	.readpage = nfs_readpage,
5218786fde8SMatthew Wilcox (Oracle) 	.readahead = nfs_readahead,
5229cccef95STrond Myklebust 	.set_page_dirty = __set_page_dirty_nobuffers,
5231da177e4SLinus Torvalds 	.writepage = nfs_writepage,
5241da177e4SLinus Torvalds 	.writepages = nfs_writepages,
5254899f9c8SNick Piggin 	.write_begin = nfs_write_begin,
5264899f9c8SNick Piggin 	.write_end = nfs_write_end,
527cd52ed35STrond Myklebust 	.invalidatepage = nfs_invalidate_page,
528cd52ed35STrond Myklebust 	.releasepage = nfs_release_page,
5291da177e4SLinus Torvalds 	.direct_IO = nfs_direct_IO,
530f844cd0dSChao Yu #ifdef CONFIG_MIGRATION
531074cc1deSTrond Myklebust 	.migratepage = nfs_migrate_page,
532f844cd0dSChao Yu #endif
533e3db7691STrond Myklebust 	.launder_page = nfs_launder_page,
534f919b196SMel Gorman 	.is_dirty_writeback = nfs_check_dirty_writeback,
535f590f333SAndi Kleen 	.error_remove_page = generic_error_remove_page,
536a564b8f0SMel Gorman 	.swap_activate = nfs_swap_activate,
537a564b8f0SMel Gorman 	.swap_deactivate = nfs_swap_deactivate,
5381da177e4SLinus Torvalds };
5391da177e4SLinus Torvalds 
5406b9b3514SDavid Howells /*
5416b9b3514SDavid Howells  * Notification that a PTE pointing to an NFS page is about to be made
5426b9b3514SDavid Howells  * writable, implying that someone is about to modify the page through a
5436b9b3514SDavid Howells  * shared-writable mapping
5446b9b3514SDavid Howells  */
54501a36844SSouptick Joarder static vm_fault_t nfs_vm_page_mkwrite(struct vm_fault *vmf)
54694387fb1STrond Myklebust {
547c2ec175cSNick Piggin 	struct page *page = vmf->page;
54811bac800SDave Jiang 	struct file *filp = vmf->vma->vm_file;
5496de1472fSAl Viro 	struct inode *inode = file_inode(filp);
55094387fb1STrond Myklebust 	unsigned pagelen;
55101a36844SSouptick Joarder 	vm_fault_t ret = VM_FAULT_NOPAGE;
5524899f9c8SNick Piggin 	struct address_space *mapping;
55394387fb1STrond Myklebust 
5541e8968c5SNiels de Vos 	dfprintk(PAGECACHE, "NFS: vm_page_mkwrite(%pD2(%lu), offset %lld)\n",
5556de1472fSAl Viro 		filp, filp->f_mapping->host->i_ino,
556b7eaefaaSChuck Lever 		(long long)page_offset(page));
557b7eaefaaSChuck Lever 
5589a773e7cSTrond Myklebust 	sb_start_pagefault(inode->i_sb);
5599a773e7cSTrond Myklebust 
560545db45fSDavid Howells 	/* make sure the cache has finished storing the page */
561a6b5a28eSDave Wysochanski 	if (PageFsCache(page) &&
562a6b5a28eSDave Wysochanski 	    wait_on_page_fscache_killable(vmf->page) < 0) {
563a6b5a28eSDave Wysochanski 		ret = VM_FAULT_RETRY;
564a6b5a28eSDave Wysochanski 		goto out;
565a6b5a28eSDave Wysochanski 	}
566545db45fSDavid Howells 
567ef070dcbSTrond Myklebust 	wait_on_bit_action(&NFS_I(inode)->flags, NFS_INO_INVALIDATING,
568ef070dcbSTrond Myklebust 			nfs_wait_bit_killable, TASK_KILLABLE);
569ef070dcbSTrond Myklebust 
57094387fb1STrond Myklebust 	lock_page(page);
571d56b4ddfSMel Gorman 	mapping = page_file_mapping(page);
5726de1472fSAl Viro 	if (mapping != inode->i_mapping)
5738b1f9ee5STrond Myklebust 		goto out_unlock;
5748b1f9ee5STrond Myklebust 
5752aeb98f4STrond Myklebust 	wait_on_page_writeback(page);
5762aeb98f4STrond Myklebust 
5774899f9c8SNick Piggin 	pagelen = nfs_page_length(page);
5788b1f9ee5STrond Myklebust 	if (pagelen == 0)
5798b1f9ee5STrond Myklebust 		goto out_unlock;
5808b1f9ee5STrond Myklebust 
581bc4866b6STrond Myklebust 	ret = VM_FAULT_LOCKED;
582bc4866b6STrond Myklebust 	if (nfs_flush_incompatible(filp, page) == 0 &&
583bc4866b6STrond Myklebust 	    nfs_updatepage(filp, page, 0, pagelen) == 0)
584bc4866b6STrond Myklebust 		goto out;
5858b1f9ee5STrond Myklebust 
586bc4866b6STrond Myklebust 	ret = VM_FAULT_SIGBUS;
5878b1f9ee5STrond Myklebust out_unlock:
5884899f9c8SNick Piggin 	unlock_page(page);
589bc4866b6STrond Myklebust out:
5909a773e7cSTrond Myklebust 	sb_end_pagefault(inode->i_sb);
591bc4866b6STrond Myklebust 	return ret;
59294387fb1STrond Myklebust }
59394387fb1STrond Myklebust 
594f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct nfs_file_vm_ops = {
59594387fb1STrond Myklebust 	.fault = filemap_fault,
596f1820361SKirill A. Shutemov 	.map_pages = filemap_map_pages,
59794387fb1STrond Myklebust 	.page_mkwrite = nfs_vm_page_mkwrite,
59894387fb1STrond Myklebust };
59994387fb1STrond Myklebust 
600ce368536SScott Mayhew static int nfs_need_check_write(struct file *filp, struct inode *inode,
601ce368536SScott Mayhew 				int error)
6027b159fc1STrond Myklebust {
6037b159fc1STrond Myklebust 	struct nfs_open_context *ctx;
6047b159fc1STrond Myklebust 
605cd3758e3STrond Myklebust 	ctx = nfs_file_open_context(filp);
606ce368536SScott Mayhew 	if (nfs_error_is_fatal_on_server(error) ||
607ce368536SScott Mayhew 	    nfs_ctx_key_to_expire(ctx, inode))
6087b159fc1STrond Myklebust 		return 1;
6097b159fc1STrond Myklebust 	return 0;
6107b159fc1STrond Myklebust }
6117b159fc1STrond Myklebust 
612edaf4369SAl Viro ssize_t nfs_file_write(struct kiocb *iocb, struct iov_iter *from)
6131da177e4SLinus Torvalds {
6146de1472fSAl Viro 	struct file *file = iocb->ki_filp;
6156de1472fSAl Viro 	struct inode *inode = file_inode(file);
616ed7bcdb3STrond Myklebust 	unsigned int mntflags = NFS_SERVER(inode)->flags;
617ed7bcdb3STrond Myklebust 	ssize_t result, written;
618ce368536SScott Mayhew 	errseq_t since;
619ce368536SScott Mayhew 	int error;
6201da177e4SLinus Torvalds 
6216de1472fSAl Viro 	result = nfs_key_timeout_notify(file, inode);
622dc24826bSAndy Adamson 	if (result)
623dc24826bSAndy Adamson 		return result;
624dc24826bSAndy Adamson 
62589698b24STrond Myklebust 	if (iocb->ki_flags & IOCB_DIRECT)
62665a4a1caSAl Viro 		return nfs_file_direct_write(iocb, from);
6271da177e4SLinus Torvalds 
628619d30b4SAl Viro 	dprintk("NFS: write(%pD2, %zu@%Ld)\n",
62918290650STrond Myklebust 		file, iov_iter_count(from), (long long) iocb->ki_pos);
6301da177e4SLinus Torvalds 
6311da177e4SLinus Torvalds 	if (IS_SWAPFILE(inode))
6321da177e4SLinus Torvalds 		goto out_swapfile;
6337d52e862STrond Myklebust 	/*
6347d52e862STrond Myklebust 	 * O_APPEND implies that we must revalidate the file length.
6357d52e862STrond Myklebust 	 */
636fc9dc401STrond Myklebust 	if (iocb->ki_flags & IOCB_APPEND || iocb->ki_pos > i_size_read(inode)) {
6376de1472fSAl Viro 		result = nfs_revalidate_file_size(inode, file);
6381da177e4SLinus Torvalds 		if (result)
6391da177e4SLinus Torvalds 			goto out;
640fe51beecSTrond Myklebust 	}
6411da177e4SLinus Torvalds 
64228aa2f9eSTrond Myklebust 	nfs_clear_invalid_mapping(file->f_mapping);
64328aa2f9eSTrond Myklebust 
644ce368536SScott Mayhew 	since = filemap_sample_wb_err(file->f_mapping);
645a5864c99STrond Myklebust 	nfs_start_io_write(inode);
64618290650STrond Myklebust 	result = generic_write_checks(iocb, from);
64718290650STrond Myklebust 	if (result > 0) {
64818290650STrond Myklebust 		current->backing_dev_info = inode_to_bdi(inode);
64918290650STrond Myklebust 		result = generic_perform_write(file, from, iocb->ki_pos);
65018290650STrond Myklebust 		current->backing_dev_info = NULL;
65118290650STrond Myklebust 	}
652a5864c99STrond Myklebust 	nfs_end_io_write(inode);
65318290650STrond Myklebust 	if (result <= 0)
6541da177e4SLinus Torvalds 		goto out;
6551da177e4SLinus Torvalds 
656c49edecdSTrond Myklebust 	written = result;
65718290650STrond Myklebust 	iocb->ki_pos += written;
658ed7bcdb3STrond Myklebust 
659ed7bcdb3STrond Myklebust 	if (mntflags & NFS_MOUNT_WRITE_EAGER) {
660ed7bcdb3STrond Myklebust 		result = filemap_fdatawrite_range(file->f_mapping,
661ed7bcdb3STrond Myklebust 						  iocb->ki_pos - written,
662ed7bcdb3STrond Myklebust 						  iocb->ki_pos - 1);
663ed7bcdb3STrond Myklebust 		if (result < 0)
664ed7bcdb3STrond Myklebust 			goto out;
665ed7bcdb3STrond Myklebust 	}
666ed7bcdb3STrond Myklebust 	if (mntflags & NFS_MOUNT_WRITE_WAIT) {
667ed7bcdb3STrond Myklebust 		result = filemap_fdatawait_range(file->f_mapping,
668ed7bcdb3STrond Myklebust 						 iocb->ki_pos - written,
669ed7bcdb3STrond Myklebust 						 iocb->ki_pos - 1);
670ed7bcdb3STrond Myklebust 		if (result < 0)
671ed7bcdb3STrond Myklebust 			goto out;
672ed7bcdb3STrond Myklebust 	}
673e973b1a5Starangg@amazon.com 	result = generic_write_sync(iocb, written);
674e973b1a5Starangg@amazon.com 	if (result < 0)
675e973b1a5Starangg@amazon.com 		goto out;
6767e381172SChuck Lever 
6777e94d6c4STrond Myklebust 	/* Return error values */
678ce368536SScott Mayhew 	error = filemap_check_wb_err(file->f_mapping, since);
679ce368536SScott Mayhew 	if (nfs_need_check_write(file, inode, error)) {
680aded8d7bSTrond Myklebust 		int err = nfs_wb_all(inode);
681200baa21STrond Myklebust 		if (err < 0)
682200baa21STrond Myklebust 			result = err;
683200baa21STrond Myklebust 	}
6847e381172SChuck Lever 	nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
6851da177e4SLinus Torvalds out:
6861da177e4SLinus Torvalds 	return result;
6871da177e4SLinus Torvalds 
6881da177e4SLinus Torvalds out_swapfile:
6891da177e4SLinus Torvalds 	printk(KERN_INFO "NFS: attempt to write to active swap file!\n");
69089658c4dSAnna Schumaker 	return -ETXTBSY;
6911da177e4SLinus Torvalds }
69289d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_write);
6931da177e4SLinus Torvalds 
6945eebde23SSuresh Jayaraman static int
6955eebde23SSuresh Jayaraman do_getlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
6961da177e4SLinus Torvalds {
6971da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
6981da177e4SLinus Torvalds 	int status = 0;
69921ac19d4SSergey Vlasov 	unsigned int saved_type = fl->fl_type;
7001da177e4SLinus Torvalds 
701039c4d7aSTrond Myklebust 	/* Try local locking first */
7026d34ac19SJ. Bruce Fields 	posix_test_lock(filp, fl);
7036d34ac19SJ. Bruce Fields 	if (fl->fl_type != F_UNLCK) {
7046d34ac19SJ. Bruce Fields 		/* found a conflict */
705039c4d7aSTrond Myklebust 		goto out;
7061da177e4SLinus Torvalds 	}
70721ac19d4SSergey Vlasov 	fl->fl_type = saved_type;
708039c4d7aSTrond Myklebust 
709011e2a7fSBryan Schumaker 	if (NFS_PROTO(inode)->have_delegation(inode, FMODE_READ))
710039c4d7aSTrond Myklebust 		goto out_noconflict;
711039c4d7aSTrond Myklebust 
7125eebde23SSuresh Jayaraman 	if (is_local)
713039c4d7aSTrond Myklebust 		goto out_noconflict;
714039c4d7aSTrond Myklebust 
715039c4d7aSTrond Myklebust 	status = NFS_PROTO(inode)->lock(filp, cmd, fl);
716039c4d7aSTrond Myklebust out:
7171da177e4SLinus Torvalds 	return status;
718039c4d7aSTrond Myklebust out_noconflict:
719039c4d7aSTrond Myklebust 	fl->fl_type = F_UNLCK;
720039c4d7aSTrond Myklebust 	goto out;
7211da177e4SLinus Torvalds }
7221da177e4SLinus Torvalds 
7235eebde23SSuresh Jayaraman static int
7245eebde23SSuresh Jayaraman do_unlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
7251da177e4SLinus Torvalds {
7261da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
7277a8203d8STrond Myklebust 	struct nfs_lock_context *l_ctx;
7281da177e4SLinus Torvalds 	int status;
7291da177e4SLinus Torvalds 
7301da177e4SLinus Torvalds 	/*
7311da177e4SLinus Torvalds 	 * Flush all pending writes before doing anything
7321da177e4SLinus Torvalds 	 * with locks..
7331da177e4SLinus Torvalds 	 */
734aded8d7bSTrond Myklebust 	nfs_wb_all(inode);
7351da177e4SLinus Torvalds 
7367a8203d8STrond Myklebust 	l_ctx = nfs_get_lock_context(nfs_file_open_context(filp));
7377a8203d8STrond Myklebust 	if (!IS_ERR(l_ctx)) {
738210c7c17SBenjamin Coddington 		status = nfs_iocounter_wait(l_ctx);
7397a8203d8STrond Myklebust 		nfs_put_lock_context(l_ctx);
7401da177e4SLinus Torvalds 		/*  NOTE: special case
7411da177e4SLinus Torvalds 		 * 	If we're signalled while cleaning up locks on process exit, we
7421da177e4SLinus Torvalds 		 * 	still need to complete the unlock.
7431da177e4SLinus Torvalds 		 */
744f30cb757SBenjamin Coddington 		if (status < 0 && !(fl->fl_flags & FL_CLOSE))
745f30cb757SBenjamin Coddington 			return status;
746f30cb757SBenjamin Coddington 	}
747f30cb757SBenjamin Coddington 
7485eebde23SSuresh Jayaraman 	/*
7495eebde23SSuresh Jayaraman 	 * Use local locking if mounted with "-onolock" or with appropriate
7505eebde23SSuresh Jayaraman 	 * "-olocal_lock="
7515eebde23SSuresh Jayaraman 	 */
7525eebde23SSuresh Jayaraman 	if (!is_local)
7531da177e4SLinus Torvalds 		status = NFS_PROTO(inode)->lock(filp, cmd, fl);
7541da177e4SLinus Torvalds 	else
75575575ddfSJeff Layton 		status = locks_lock_file_wait(filp, fl);
7561da177e4SLinus Torvalds 	return status;
7571da177e4SLinus Torvalds }
7581da177e4SLinus Torvalds 
7595eebde23SSuresh Jayaraman static int
7605eebde23SSuresh Jayaraman do_setlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
7611da177e4SLinus Torvalds {
7621da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
7631da177e4SLinus Torvalds 	int status;
7641da177e4SLinus Torvalds 
7651da177e4SLinus Torvalds 	/*
7661da177e4SLinus Torvalds 	 * Flush all pending writes before doing anything
7671da177e4SLinus Torvalds 	 * with locks..
7681da177e4SLinus Torvalds 	 */
76929884df0STrond Myklebust 	status = nfs_sync_mapping(filp->f_mapping);
77029884df0STrond Myklebust 	if (status != 0)
7711da177e4SLinus Torvalds 		goto out;
7721da177e4SLinus Torvalds 
7735eebde23SSuresh Jayaraman 	/*
7745eebde23SSuresh Jayaraman 	 * Use local locking if mounted with "-onolock" or with appropriate
7755eebde23SSuresh Jayaraman 	 * "-olocal_lock="
7765eebde23SSuresh Jayaraman 	 */
7775eebde23SSuresh Jayaraman 	if (!is_local)
7781da177e4SLinus Torvalds 		status = NFS_PROTO(inode)->lock(filp, cmd, fl);
779c4d7c402STrond Myklebust 	else
78075575ddfSJeff Layton 		status = locks_lock_file_wait(filp, fl);
7811da177e4SLinus Torvalds 	if (status < 0)
7821da177e4SLinus Torvalds 		goto out;
7836b96724eSRicardo Labiaga 
7841da177e4SLinus Torvalds 	/*
785779eafabSNeilBrown 	 * Invalidate cache to prevent missing any changes.  If
786779eafabSNeilBrown 	 * the file is mapped, clear the page cache as well so
787779eafabSNeilBrown 	 * those mappings will be loaded.
7886b96724eSRicardo Labiaga 	 *
7891da177e4SLinus Torvalds 	 * This makes locking act as a cache coherency point.
7901da177e4SLinus Torvalds 	 */
79129884df0STrond Myklebust 	nfs_sync_mapping(filp->f_mapping);
792779eafabSNeilBrown 	if (!NFS_PROTO(inode)->have_delegation(inode, FMODE_READ)) {
793442ce049SNeilBrown 		nfs_zap_caches(inode);
794779eafabSNeilBrown 		if (mapping_mapped(filp->f_mapping))
795779eafabSNeilBrown 			nfs_revalidate_mapping(inode, filp->f_mapping);
796779eafabSNeilBrown 	}
7971da177e4SLinus Torvalds out:
7981da177e4SLinus Torvalds 	return status;
7991da177e4SLinus Torvalds }
8001da177e4SLinus Torvalds 
8011da177e4SLinus Torvalds /*
8021da177e4SLinus Torvalds  * Lock a (portion of) a file
8031da177e4SLinus Torvalds  */
804ce4ef7c0SBryan Schumaker int nfs_lock(struct file *filp, int cmd, struct file_lock *fl)
8051da177e4SLinus Torvalds {
8061da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
8072116271aSTrond Myklebust 	int ret = -ENOLCK;
8085eebde23SSuresh Jayaraman 	int is_local = 0;
8091da177e4SLinus Torvalds 
8106de1472fSAl Viro 	dprintk("NFS: lock(%pD2, t=%x, fl=%x, r=%lld:%lld)\n",
8116de1472fSAl Viro 			filp, fl->fl_type, fl->fl_flags,
8121da177e4SLinus Torvalds 			(long long)fl->fl_start, (long long)fl->fl_end);
8136da24bc9SChuck Lever 
81491d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSLOCK);
8151da177e4SLinus Torvalds 
816bb0a55bbSJ. Bruce Fields 	if (fl->fl_flags & FL_RECLAIM)
817bb0a55bbSJ. Bruce Fields 		return -ENOGRACE;
818bb0a55bbSJ. Bruce Fields 
8195eebde23SSuresh Jayaraman 	if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FCNTL)
8205eebde23SSuresh Jayaraman 		is_local = 1;
8215eebde23SSuresh Jayaraman 
8222116271aSTrond Myklebust 	if (NFS_PROTO(inode)->lock_check_bounds != NULL) {
8232116271aSTrond Myklebust 		ret = NFS_PROTO(inode)->lock_check_bounds(fl);
8242116271aSTrond Myklebust 		if (ret < 0)
8252116271aSTrond Myklebust 			goto out_err;
8262116271aSTrond Myklebust 	}
8271da177e4SLinus Torvalds 
8281da177e4SLinus Torvalds 	if (IS_GETLK(cmd))
8295eebde23SSuresh Jayaraman 		ret = do_getlk(filp, cmd, fl, is_local);
8302116271aSTrond Myklebust 	else if (fl->fl_type == F_UNLCK)
8315eebde23SSuresh Jayaraman 		ret = do_unlk(filp, cmd, fl, is_local);
8322116271aSTrond Myklebust 	else
8335eebde23SSuresh Jayaraman 		ret = do_setlk(filp, cmd, fl, is_local);
8342116271aSTrond Myklebust out_err:
8352116271aSTrond Myklebust 	return ret;
8361da177e4SLinus Torvalds }
83789d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_lock);
8381da177e4SLinus Torvalds 
8391da177e4SLinus Torvalds /*
8401da177e4SLinus Torvalds  * Lock a (portion of) a file
8411da177e4SLinus Torvalds  */
842ce4ef7c0SBryan Schumaker int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
8431da177e4SLinus Torvalds {
8445eebde23SSuresh Jayaraman 	struct inode *inode = filp->f_mapping->host;
8455eebde23SSuresh Jayaraman 	int is_local = 0;
8465eebde23SSuresh Jayaraman 
8476de1472fSAl Viro 	dprintk("NFS: flock(%pD2, t=%x, fl=%x)\n",
8486de1472fSAl Viro 			filp, fl->fl_type, fl->fl_flags);
8491da177e4SLinus Torvalds 
8501da177e4SLinus Torvalds 	if (!(fl->fl_flags & FL_FLOCK))
8511da177e4SLinus Torvalds 		return -ENOLCK;
8521da177e4SLinus Torvalds 
8535eebde23SSuresh Jayaraman 	if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FLOCK)
8545eebde23SSuresh Jayaraman 		is_local = 1;
8555eebde23SSuresh Jayaraman 
856fcfa4470SBenjamin Coddington 	/* We're simulating flock() locks using posix locks on the server */
857fcfa4470SBenjamin Coddington 	if (fl->fl_type == F_UNLCK)
8585eebde23SSuresh Jayaraman 		return do_unlk(filp, cmd, fl, is_local);
8595eebde23SSuresh Jayaraman 	return do_setlk(filp, cmd, fl, is_local);
8601da177e4SLinus Torvalds }
86189d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_flock);
862370f6599SJ. Bruce Fields 
8630486958fSJeff Layton const struct file_operations nfs_file_operations = {
8640486958fSJeff Layton 	.llseek		= nfs_file_llseek,
8653aa2d199SAl Viro 	.read_iter	= nfs_file_read,
866edaf4369SAl Viro 	.write_iter	= nfs_file_write,
8670486958fSJeff Layton 	.mmap		= nfs_file_mmap,
8680486958fSJeff Layton 	.open		= nfs_file_open,
8690486958fSJeff Layton 	.flush		= nfs_file_flush,
8700486958fSJeff Layton 	.release	= nfs_file_release,
8710486958fSJeff Layton 	.fsync		= nfs_file_fsync,
8720486958fSJeff Layton 	.lock		= nfs_lock,
8730486958fSJeff Layton 	.flock		= nfs_flock,
87482c156f8SAl Viro 	.splice_read	= generic_file_splice_read,
8754da54c21SAl Viro 	.splice_write	= iter_file_splice_write,
8760486958fSJeff Layton 	.check_flags	= nfs_check_flags,
8771c994a09SJeff Layton 	.setlease	= simple_nosetlease,
8780486958fSJeff Layton };
879ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_operations);
880