xref: /openbmc/linux/fs/nfs/file.c (revision 5970e15dbcfeb0ed3a0bf1954f35bbe60a048754)
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>
34*5970e15dSJeff Layton #include <linux/filelock.h>
351da177e4SLinus Torvalds 
361da177e4SLinus Torvalds #include "delegation.h"
3794387fb1STrond Myklebust #include "internal.h"
3891d5b470SChuck Lever #include "iostat.h"
39545db45fSDavid Howells #include "fscache.h"
40612aa983SChristoph Hellwig #include "pnfs.h"
411da177e4SLinus Torvalds 
42f4ce1299STrond Myklebust #include "nfstrace.h"
43f4ce1299STrond Myklebust 
441da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_FILE
451da177e4SLinus Torvalds 
46f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct nfs_file_vm_ops;
4794387fb1STrond Myklebust 
48ce4ef7c0SBryan Schumaker int nfs_check_flags(int flags)
491da177e4SLinus Torvalds {
501da177e4SLinus Torvalds 	if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
511da177e4SLinus Torvalds 		return -EINVAL;
521da177e4SLinus Torvalds 
531da177e4SLinus Torvalds 	return 0;
541da177e4SLinus Torvalds }
5589d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_check_flags);
561da177e4SLinus Torvalds 
571da177e4SLinus Torvalds /*
581da177e4SLinus Torvalds  * Open file
591da177e4SLinus Torvalds  */
601da177e4SLinus Torvalds static int
611da177e4SLinus Torvalds nfs_file_open(struct inode *inode, struct file *filp)
621da177e4SLinus Torvalds {
631da177e4SLinus Torvalds 	int res;
641da177e4SLinus Torvalds 
656de1472fSAl Viro 	dprintk("NFS: open file(%pD2)\n", filp);
66cc0dd2d1SChuck Lever 
67c2459dc4SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSOPEN);
681da177e4SLinus Torvalds 	res = nfs_check_flags(filp->f_flags);
691da177e4SLinus Torvalds 	if (res)
701da177e4SLinus Torvalds 		return res;
711da177e4SLinus Torvalds 
7246cb650cSTrond Myklebust 	res = nfs_open(inode, filp);
73a2ad63daSNeilBrown 	if (res == 0)
74a2ad63daSNeilBrown 		filp->f_mode |= FMODE_CAN_ODIRECT;
751da177e4SLinus Torvalds 	return res;
761da177e4SLinus Torvalds }
771da177e4SLinus Torvalds 
78ce4ef7c0SBryan Schumaker int
791da177e4SLinus Torvalds nfs_file_release(struct inode *inode, struct file *filp)
801da177e4SLinus Torvalds {
816de1472fSAl Viro 	dprintk("NFS: release(%pD2)\n", filp);
826da24bc9SChuck Lever 
8391d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSRELEASE);
84aff8d8dcSAnna Schumaker 	nfs_file_clear_open_context(filp);
85a6b5a28eSDave Wysochanski 	nfs_fscache_release_file(inode, filp);
86aff8d8dcSAnna Schumaker 	return 0;
871da177e4SLinus Torvalds }
8889d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_release);
891da177e4SLinus Torvalds 
90980802e3STrond Myklebust /**
9137eaeed1STrond Myklebust  * nfs_revalidate_file_size - Revalidate the file size
92302fad7bSTrond Myklebust  * @inode: pointer to inode struct
93302fad7bSTrond Myklebust  * @filp: pointer to struct file
94980802e3STrond Myklebust  *
95980802e3STrond Myklebust  * Revalidates the file length. This is basically a wrapper around
96980802e3STrond Myklebust  * nfs_revalidate_inode() that takes into account the fact that we may
97980802e3STrond Myklebust  * have cached writes (in which case we don't care about the server's
98980802e3STrond Myklebust  * idea of what the file length is), or O_DIRECT (in which case we
99980802e3STrond Myklebust  * shouldn't trust the cache).
100980802e3STrond Myklebust  */
101980802e3STrond Myklebust static int nfs_revalidate_file_size(struct inode *inode, struct file *filp)
102980802e3STrond Myklebust {
103980802e3STrond Myklebust 	struct nfs_server *server = NFS_SERVER(inode);
104d7cf8dd0STrond Myklebust 
105980802e3STrond Myklebust 	if (filp->f_flags & O_DIRECT)
106980802e3STrond Myklebust 		goto force_reval;
10713c0b082STrond Myklebust 	if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_SIZE))
108d7cf8dd0STrond Myklebust 		goto force_reval;
109fe51beecSTrond Myklebust 	return 0;
110980802e3STrond Myklebust force_reval:
111980802e3STrond Myklebust 	return __nfs_revalidate_inode(server, inode);
112980802e3STrond Myklebust }
113980802e3STrond Myklebust 
114965c8e59SAndrew Morton loff_t nfs_file_llseek(struct file *filp, loff_t offset, int whence)
115980802e3STrond Myklebust {
1166de1472fSAl Viro 	dprintk("NFS: llseek file(%pD2, %lld, %d)\n",
1176de1472fSAl Viro 			filp, offset, whence);
118b84e06c5SChuck Lever 
11906222e49SJosef Bacik 	/*
120965c8e59SAndrew Morton 	 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
12106222e49SJosef Bacik 	 * the cached file length
12206222e49SJosef Bacik 	 */
123965c8e59SAndrew Morton 	if (whence != SEEK_SET && whence != SEEK_CUR) {
124980802e3STrond Myklebust 		struct inode *inode = filp->f_mapping->host;
125d5e66348STrond Myklebust 
126980802e3STrond Myklebust 		int retval = nfs_revalidate_file_size(inode, filp);
127980802e3STrond Myklebust 		if (retval < 0)
128980802e3STrond Myklebust 			return (loff_t)retval;
12979835a71SAndi Kleen 	}
130d5e66348STrond Myklebust 
131965c8e59SAndrew Morton 	return generic_file_llseek(filp, offset, whence);
132980802e3STrond Myklebust }
13389d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_llseek);
134980802e3STrond Myklebust 
1351da177e4SLinus Torvalds /*
1361da177e4SLinus Torvalds  * Flush all dirty pages, and check for write errors.
1371da177e4SLinus Torvalds  */
1385445b1fbSTrond Myklebust static int
13975e1fcc0SMiklos Szeredi nfs_file_flush(struct file *file, fl_owner_t id)
1401da177e4SLinus Torvalds {
1416de1472fSAl Viro 	struct inode	*inode = file_inode(file);
14267dd23f9SScott Mayhew 	errseq_t since;
1431da177e4SLinus Torvalds 
1446de1472fSAl Viro 	dprintk("NFS: flush(%pD2)\n", file);
1451da177e4SLinus Torvalds 
146c2459dc4SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSFLUSH);
1471da177e4SLinus Torvalds 	if ((file->f_mode & FMODE_WRITE) == 0)
1481da177e4SLinus Torvalds 		return 0;
1497b159fc1STrond Myklebust 
1507fe5c398STrond Myklebust 	/* Flush writes to the server and return any errors */
15167dd23f9SScott Mayhew 	since = filemap_sample_wb_err(file->f_mapping);
15267dd23f9SScott Mayhew 	nfs_wb_all(inode);
15367dd23f9SScott Mayhew 	return filemap_check_wb_err(file->f_mapping, since);
1541da177e4SLinus Torvalds }
1551da177e4SLinus Torvalds 
156ce4ef7c0SBryan Schumaker ssize_t
1573aa2d199SAl Viro nfs_file_read(struct kiocb *iocb, struct iov_iter *to)
1581da177e4SLinus Torvalds {
1596de1472fSAl Viro 	struct inode *inode = file_inode(iocb->ki_filp);
1601da177e4SLinus Torvalds 	ssize_t result;
1611da177e4SLinus Torvalds 
1622ba48ce5SAl Viro 	if (iocb->ki_flags & IOCB_DIRECT)
16364158668SNeilBrown 		return nfs_file_direct_read(iocb, to, false);
1641da177e4SLinus Torvalds 
165619d30b4SAl Viro 	dprintk("NFS: read(%pD2, %zu@%lu)\n",
1666de1472fSAl Viro 		iocb->ki_filp,
1673aa2d199SAl Viro 		iov_iter_count(to), (unsigned long) iocb->ki_pos);
1681da177e4SLinus Torvalds 
169a5864c99STrond Myklebust 	nfs_start_io_read(inode);
170a5864c99STrond Myklebust 	result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping);
1714184dcf2SChuck Lever 	if (!result) {
1723aa2d199SAl Viro 		result = generic_file_read_iter(iocb, to);
1734184dcf2SChuck Lever 		if (result > 0)
1744184dcf2SChuck Lever 			nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, result);
1754184dcf2SChuck Lever 	}
176a5864c99STrond Myklebust 	nfs_end_io_read(inode);
1771da177e4SLinus Torvalds 	return result;
1781da177e4SLinus Torvalds }
17989d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_read);
1801da177e4SLinus Torvalds 
181ce4ef7c0SBryan Schumaker int
1821da177e4SLinus Torvalds nfs_file_mmap(struct file * file, struct vm_area_struct * vma)
1831da177e4SLinus Torvalds {
1846de1472fSAl Viro 	struct inode *inode = file_inode(file);
1851da177e4SLinus Torvalds 	int	status;
1861da177e4SLinus Torvalds 
1876de1472fSAl Viro 	dprintk("NFS: mmap(%pD2)\n", file);
1881da177e4SLinus Torvalds 
189e1ebfd33STrond Myklebust 	/* Note: generic_file_mmap() returns ENOSYS on nommu systems
190e1ebfd33STrond Myklebust 	 *       so we call that before revalidating the mapping
191e1ebfd33STrond Myklebust 	 */
192e1ebfd33STrond Myklebust 	status = generic_file_mmap(file, vma);
19394387fb1STrond Myklebust 	if (!status) {
19494387fb1STrond Myklebust 		vma->vm_ops = &nfs_file_vm_ops;
195e1ebfd33STrond Myklebust 		status = nfs_revalidate_mapping(inode, file->f_mapping);
19694387fb1STrond Myklebust 	}
1971da177e4SLinus Torvalds 	return status;
1981da177e4SLinus Torvalds }
19989d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_mmap);
2001da177e4SLinus Torvalds 
2011da177e4SLinus Torvalds /*
2021da177e4SLinus Torvalds  * Flush any dirty pages for this process, and check for write errors.
2031da177e4SLinus Torvalds  * The return status from this call provides a reliable indication of
2041da177e4SLinus Torvalds  * whether any write errors occurred for this process.
2051da177e4SLinus Torvalds  */
2064ff79bc7SChristoph Hellwig static int
207bf4b4905SNeilBrown nfs_file_fsync_commit(struct file *file, int datasync)
2081da177e4SLinus Torvalds {
2096de1472fSAl Viro 	struct inode *inode = file_inode(file);
2109641d9bcSTrond Myklebust 	int ret, ret2;
211af7fa165STrond Myklebust 
2126de1472fSAl Viro 	dprintk("NFS: fsync file(%pD2) datasync %d\n", file, datasync);
2131da177e4SLinus Torvalds 
21491d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
2152197e9b0STrond Myklebust 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
2169641d9bcSTrond Myklebust 	ret2 = file_check_and_advance_wb_err(file);
2179641d9bcSTrond Myklebust 	if (ret2 < 0)
2189641d9bcSTrond Myklebust 		return ret2;
219a5c58892SBryan Schumaker 	return ret;
220a5c58892SBryan Schumaker }
221a5c58892SBryan Schumaker 
2224ff79bc7SChristoph Hellwig int
223a5c58892SBryan Schumaker nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
224a5c58892SBryan Schumaker {
225496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
22667f4b5dcSTrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
22767f4b5dcSTrond Myklebust 	long save_nredirtied = atomic_long_read(&nfsi->redirtied_pages);
22867f4b5dcSTrond Myklebust 	long nredirtied;
2292197e9b0STrond Myklebust 	int ret;
230a5c58892SBryan Schumaker 
231f4ce1299STrond Myklebust 	trace_nfs_fsync_enter(inode);
232f4ce1299STrond Myklebust 
2332197e9b0STrond Myklebust 	for (;;) {
2346fbda89bSTrond Myklebust 		ret = file_write_and_wait_range(file, start, end);
2357b281ee0STrond Myklebust 		if (ret != 0)
23605990d1bSTrond Myklebust 			break;
237bf4b4905SNeilBrown 		ret = nfs_file_fsync_commit(file, datasync);
2382197e9b0STrond Myklebust 		if (ret != 0)
2392197e9b0STrond Myklebust 			break;
2404ff79bc7SChristoph Hellwig 		ret = pnfs_sync_inode(inode, !!datasync);
2412197e9b0STrond Myklebust 		if (ret != 0)
2422197e9b0STrond Myklebust 			break;
24367f4b5dcSTrond Myklebust 		nredirtied = atomic_long_read(&nfsi->redirtied_pages);
24467f4b5dcSTrond Myklebust 		if (nredirtied == save_nredirtied)
2452197e9b0STrond Myklebust 			break;
24667f4b5dcSTrond Myklebust 		save_nredirtied = nredirtied;
2472197e9b0STrond Myklebust 	}
24805990d1bSTrond Myklebust 
249f4ce1299STrond Myklebust 	trace_nfs_fsync_exit(inode, ret);
250af7fa165STrond Myklebust 	return ret;
2511da177e4SLinus Torvalds }
2524ff79bc7SChristoph Hellwig EXPORT_SYMBOL_GPL(nfs_file_fsync);
2531da177e4SLinus Torvalds 
2541da177e4SLinus Torvalds /*
25538c73044SPeter Staubach  * Decide whether a read/modify/write cycle may be more efficient
25638c73044SPeter Staubach  * then a modify/write/read cycle when writing to a page in the
25738c73044SPeter Staubach  * page cache.
25838c73044SPeter Staubach  *
2592cde04e9SKazuo Ito  * Some pNFS layout drivers can only read/write at a certain block
2602cde04e9SKazuo Ito  * granularity like all block devices and therefore we must perform
2612cde04e9SKazuo Ito  * read/modify/write whenever a page hasn't read yet and the data
2622cde04e9SKazuo Ito  * to be written there is not aligned to a block boundary and/or
2632cde04e9SKazuo Ito  * smaller than the block size.
2642cde04e9SKazuo Ito  *
26538c73044SPeter Staubach  * The modify/write/read cycle may occur if a page is read before
26638c73044SPeter Staubach  * being completely filled by the writer.  In this situation, the
26738c73044SPeter Staubach  * page must be completely written to stable storage on the server
26838c73044SPeter Staubach  * before it can be refilled by reading in the page from the server.
26938c73044SPeter Staubach  * This can lead to expensive, small, FILE_SYNC mode writes being
27038c73044SPeter Staubach  * done.
27138c73044SPeter Staubach  *
27238c73044SPeter Staubach  * It may be more efficient to read the page first if the file is
27338c73044SPeter Staubach  * open for reading in addition to writing, the page is not marked
27438c73044SPeter Staubach  * as Uptodate, it is not dirty or waiting to be committed,
27538c73044SPeter Staubach  * indicating that it was previously allocated and then modified,
27638c73044SPeter Staubach  * that there were valid bytes of data in that range of the file,
27738c73044SPeter Staubach  * and that the new data won't completely replace the old data in
27838c73044SPeter Staubach  * that range of the file.
27938c73044SPeter Staubach  */
2802cde04e9SKazuo Ito static bool nfs_full_page_write(struct page *page, loff_t pos, unsigned int len)
28138c73044SPeter Staubach {
28238c73044SPeter Staubach 	unsigned int pglen = nfs_page_length(page);
28309cbfeafSKirill A. Shutemov 	unsigned int offset = pos & (PAGE_SIZE - 1);
28438c73044SPeter Staubach 	unsigned int end = offset + len;
28538c73044SPeter Staubach 
2862cde04e9SKazuo Ito 	return !pglen || (end >= pglen && !offset);
287612aa983SChristoph Hellwig }
288612aa983SChristoph Hellwig 
2892cde04e9SKazuo Ito static bool nfs_want_read_modify_write(struct file *file, struct page *page,
2902cde04e9SKazuo Ito 			loff_t pos, unsigned int len)
2912cde04e9SKazuo Ito {
2922cde04e9SKazuo Ito 	/*
2932cde04e9SKazuo Ito 	 * Up-to-date pages, those with ongoing or full-page write
2942cde04e9SKazuo Ito 	 * don't need read/modify/write
2952cde04e9SKazuo Ito 	 */
2962cde04e9SKazuo Ito 	if (PageUptodate(page) || PagePrivate(page) ||
2972cde04e9SKazuo Ito 	    nfs_full_page_write(page, pos, len))
2982cde04e9SKazuo Ito 		return false;
2992cde04e9SKazuo Ito 
3002cde04e9SKazuo Ito 	if (pnfs_ld_read_whole_page(file->f_mapping->host))
3012cde04e9SKazuo Ito 		return true;
3022cde04e9SKazuo Ito 	/* Open for reading too? */
3032cde04e9SKazuo Ito 	if (file->f_mode & FMODE_READ)
3042cde04e9SKazuo Ito 		return true;
3052cde04e9SKazuo Ito 	return false;
30638c73044SPeter Staubach }
30738c73044SPeter Staubach 
30838c73044SPeter Staubach /*
3094899f9c8SNick Piggin  * This does the "real" work of the write. We must allocate and lock the
3104899f9c8SNick Piggin  * page to be sent back to the generic routine, which then copies the
3114899f9c8SNick Piggin  * data from user space.
3121da177e4SLinus Torvalds  *
3131da177e4SLinus Torvalds  * If the writer ends up delaying the write, the writer needs to
3141da177e4SLinus Torvalds  * increment the page use counts until he is done with the page.
3151da177e4SLinus Torvalds  */
3164899f9c8SNick Piggin static int nfs_write_begin(struct file *file, struct address_space *mapping,
3179d6b0cd7SMatthew Wilcox (Oracle) 			loff_t pos, unsigned len,
3184899f9c8SNick Piggin 			struct page **pagep, void **fsdata)
3191da177e4SLinus Torvalds {
3204899f9c8SNick Piggin 	int ret;
32109cbfeafSKirill A. Shutemov 	pgoff_t index = pos >> PAGE_SHIFT;
3224899f9c8SNick Piggin 	struct page *page;
32338c73044SPeter Staubach 	int once_thru = 0;
3244899f9c8SNick Piggin 
3251e8968c5SNiels de Vos 	dfprintk(PAGECACHE, "NFS: write_begin(%pD2(%lu), %u@%lld)\n",
3266de1472fSAl Viro 		file, mapping->host->i_ino, len, (long long) pos);
327b7eaefaaSChuck Lever 
32838c73044SPeter Staubach start:
329b7446e7cSMatthew Wilcox (Oracle) 	page = grab_cache_page_write_begin(mapping, index);
3304899f9c8SNick Piggin 	if (!page)
3314899f9c8SNick Piggin 		return -ENOMEM;
3324899f9c8SNick Piggin 	*pagep = page;
3334899f9c8SNick Piggin 
3344899f9c8SNick Piggin 	ret = nfs_flush_incompatible(file, page);
3354899f9c8SNick Piggin 	if (ret) {
3364899f9c8SNick Piggin 		unlock_page(page);
33709cbfeafSKirill A. Shutemov 		put_page(page);
33838c73044SPeter Staubach 	} else if (!once_thru &&
33938c73044SPeter Staubach 		   nfs_want_read_modify_write(file, page, pos, len)) {
34038c73044SPeter Staubach 		once_thru = 1;
34165d023afSMatthew Wilcox (Oracle) 		ret = nfs_read_folio(file, page_folio(page));
34209cbfeafSKirill A. Shutemov 		put_page(page);
34338c73044SPeter Staubach 		if (!ret)
34438c73044SPeter Staubach 			goto start;
3454899f9c8SNick Piggin 	}
3464899f9c8SNick Piggin 	return ret;
3471da177e4SLinus Torvalds }
3481da177e4SLinus Torvalds 
3494899f9c8SNick Piggin static int nfs_write_end(struct file *file, struct address_space *mapping,
3504899f9c8SNick Piggin 			loff_t pos, unsigned len, unsigned copied,
3514899f9c8SNick Piggin 			struct page *page, void *fsdata)
3521da177e4SLinus Torvalds {
35309cbfeafSKirill A. Shutemov 	unsigned offset = pos & (PAGE_SIZE - 1);
354dc24826bSAndy Adamson 	struct nfs_open_context *ctx = nfs_file_open_context(file);
3554899f9c8SNick Piggin 	int status;
3561da177e4SLinus Torvalds 
3571e8968c5SNiels de Vos 	dfprintk(PAGECACHE, "NFS: write_end(%pD2(%lu), %u@%lld)\n",
3586de1472fSAl Viro 		file, mapping->host->i_ino, len, (long long) pos);
359b7eaefaaSChuck Lever 
360efc91ed0STrond Myklebust 	/*
361efc91ed0STrond Myklebust 	 * Zero any uninitialised parts of the page, and then mark the page
362efc91ed0STrond Myklebust 	 * as up to date if it turns out that we're extending the file.
363efc91ed0STrond Myklebust 	 */
364efc91ed0STrond Myklebust 	if (!PageUptodate(page)) {
365efc91ed0STrond Myklebust 		unsigned pglen = nfs_page_length(page);
366c0cf3ef5SAl Viro 		unsigned end = offset + copied;
367efc91ed0STrond Myklebust 
368efc91ed0STrond Myklebust 		if (pglen == 0) {
369efc91ed0STrond Myklebust 			zero_user_segments(page, 0, offset,
37009cbfeafSKirill A. Shutemov 					end, PAGE_SIZE);
371efc91ed0STrond Myklebust 			SetPageUptodate(page);
372efc91ed0STrond Myklebust 		} else if (end >= pglen) {
37309cbfeafSKirill A. Shutemov 			zero_user_segment(page, end, PAGE_SIZE);
374efc91ed0STrond Myklebust 			if (offset == 0)
375efc91ed0STrond Myklebust 				SetPageUptodate(page);
376efc91ed0STrond Myklebust 		} else
37709cbfeafSKirill A. Shutemov 			zero_user_segment(page, pglen, PAGE_SIZE);
378efc91ed0STrond Myklebust 	}
379efc91ed0STrond Myklebust 
3804899f9c8SNick Piggin 	status = nfs_updatepage(file, page, offset, copied);
3814899f9c8SNick Piggin 
3824899f9c8SNick Piggin 	unlock_page(page);
38309cbfeafSKirill A. Shutemov 	put_page(page);
3844899f9c8SNick Piggin 
3853d509e54SChuck Lever 	if (status < 0)
3863d509e54SChuck Lever 		return status;
3872701d086SAndy Adamson 	NFS_I(mapping->host)->write_io += copied;
388dc24826bSAndy Adamson 
389d95b2665STrond Myklebust 	if (nfs_ctx_key_to_expire(ctx, mapping->host))
390d95b2665STrond Myklebust 		nfs_wb_all(mapping->host);
391dc24826bSAndy Adamson 
3923d509e54SChuck Lever 	return copied;
3931da177e4SLinus Torvalds }
3941da177e4SLinus Torvalds 
3956b9b3514SDavid Howells /*
3966b9b3514SDavid Howells  * Partially or wholly invalidate a page
3976b9b3514SDavid Howells  * - Release the private state associated with a page if undergoing complete
3986b9b3514SDavid Howells  *   page invalidation
399545db45fSDavid Howells  * - Called if either PG_private or PG_fscache is set on the page
4006b9b3514SDavid Howells  * - Caller holds page lock
4016b9b3514SDavid Howells  */
4026d740c76SMatthew Wilcox (Oracle) static void nfs_invalidate_folio(struct folio *folio, size_t offset,
4036d740c76SMatthew Wilcox (Oracle) 				size_t length)
404cd52ed35STrond Myklebust {
4056d740c76SMatthew Wilcox (Oracle) 	dfprintk(PAGECACHE, "NFS: invalidate_folio(%lu, %zu, %zu)\n",
4066d740c76SMatthew Wilcox (Oracle) 		 folio->index, offset, length);
407b7eaefaaSChuck Lever 
4086d740c76SMatthew Wilcox (Oracle) 	if (offset != 0 || length < folio_size(folio))
4091c75950bSTrond Myklebust 		return;
410d2ccddf0STrond Myklebust 	/* Cancel any unstarted writes on this page */
4116d740c76SMatthew Wilcox (Oracle) 	nfs_wb_folio_cancel(folio->mapping->host, folio);
4126d740c76SMatthew Wilcox (Oracle) 	folio_wait_fscache(folio);
413cd52ed35STrond Myklebust }
414cd52ed35STrond Myklebust 
4156b9b3514SDavid Howells /*
4163577da4aSMatthew Wilcox (Oracle)  * Attempt to release the private state associated with a folio
4173577da4aSMatthew Wilcox (Oracle)  * - Called if either private or fscache flags are set on the folio
4183577da4aSMatthew Wilcox (Oracle)  * - Caller holds folio lock
4193577da4aSMatthew Wilcox (Oracle)  * - Return true (may release folio) or false (may not)
4206b9b3514SDavid Howells  */
4213577da4aSMatthew Wilcox (Oracle) static bool nfs_release_folio(struct folio *folio, gfp_t gfp)
422cd52ed35STrond Myklebust {
4233577da4aSMatthew Wilcox (Oracle) 	dfprintk(PAGECACHE, "NFS: release_folio(%p)\n", folio);
424b7eaefaaSChuck Lever 
4253577da4aSMatthew Wilcox (Oracle) 	/* If the private flag is set, then the folio is not freeable */
4263577da4aSMatthew Wilcox (Oracle) 	if (folio_test_private(folio))
4273577da4aSMatthew Wilcox (Oracle) 		return false;
4283577da4aSMatthew Wilcox (Oracle) 	return nfs_fscache_release_folio(folio, gfp);
429e3db7691STrond Myklebust }
430e3db7691STrond Myklebust 
431520f301cSMatthew Wilcox (Oracle) static void nfs_check_dirty_writeback(struct folio *folio,
432f919b196SMel Gorman 				bool *dirty, bool *writeback)
433f919b196SMel Gorman {
434f919b196SMel Gorman 	struct nfs_inode *nfsi;
435520f301cSMatthew Wilcox (Oracle) 	struct address_space *mapping = folio->mapping;
436f919b196SMel Gorman 
437f919b196SMel Gorman 	/*
438520f301cSMatthew Wilcox (Oracle) 	 * Check if an unstable folio is currently being committed and
439520f301cSMatthew Wilcox (Oracle) 	 * if so, have the VM treat it as if the folio is under writeback
440520f301cSMatthew Wilcox (Oracle) 	 * so it will not block due to folios that will shortly be freeable.
441f919b196SMel Gorman 	 */
442f919b196SMel Gorman 	nfsi = NFS_I(mapping->host);
443af7cf057STrond Myklebust 	if (atomic_read(&nfsi->commit_info.rpcs_out)) {
444f919b196SMel Gorman 		*writeback = true;
445f919b196SMel Gorman 		return;
446f919b196SMel Gorman 	}
447f919b196SMel Gorman 
448f919b196SMel Gorman 	/*
449520f301cSMatthew Wilcox (Oracle) 	 * If the private flag is set, then the folio is not freeable
450520f301cSMatthew Wilcox (Oracle) 	 * and as the inode is not being committed, it's not going to
451520f301cSMatthew Wilcox (Oracle) 	 * be cleaned in the near future so treat it as dirty
452f919b196SMel Gorman 	 */
453520f301cSMatthew Wilcox (Oracle) 	if (folio_test_private(folio))
454f919b196SMel Gorman 		*dirty = true;
455f919b196SMel Gorman }
456f919b196SMel Gorman 
4576b9b3514SDavid Howells /*
4586b9b3514SDavid Howells  * Attempt to clear the private state associated with a page when an error
4596b9b3514SDavid Howells  * occurs that requires the cached contents of an inode to be written back or
4606b9b3514SDavid Howells  * destroyed
461545db45fSDavid Howells  * - Called if either PG_private or fscache is set on the page
4626b9b3514SDavid Howells  * - Caller holds page lock
4636b9b3514SDavid Howells  * - Return 0 if successful, -error otherwise
4646b9b3514SDavid Howells  */
46515a30ab2SMatthew Wilcox (Oracle) static int nfs_launder_folio(struct folio *folio)
466e3db7691STrond Myklebust {
46715a30ab2SMatthew Wilcox (Oracle) 	struct inode *inode = folio->mapping->host;
468b7eaefaaSChuck Lever 
46915a30ab2SMatthew Wilcox (Oracle) 	dfprintk(PAGECACHE, "NFS: launder_folio(%ld, %llu)\n",
47015a30ab2SMatthew Wilcox (Oracle) 		inode->i_ino, folio_pos(folio));
471b7eaefaaSChuck Lever 
47215a30ab2SMatthew Wilcox (Oracle) 	folio_wait_fscache(folio);
47315a30ab2SMatthew Wilcox (Oracle) 	return nfs_wb_page(inode, &folio->page);
474cd52ed35STrond Myklebust }
475cd52ed35STrond Myklebust 
476a564b8f0SMel Gorman static int nfs_swap_activate(struct swap_info_struct *sis, struct file *file,
477a564b8f0SMel Gorman 						sector_t *span)
478a564b8f0SMel Gorman {
479bd89bc67SMurphy Zhou 	unsigned long blocks;
480bd89bc67SMurphy Zhou 	long long isize;
4814b60c0ffSNeilBrown 	int ret;
4824dc73c67SNeilBrown 	struct inode *inode = file_inode(file);
4834dc73c67SNeilBrown 	struct rpc_clnt *clnt = NFS_CLIENT(inode);
4844dc73c67SNeilBrown 	struct nfs_client *cl = NFS_SERVER(inode)->nfs_client;
485bd89bc67SMurphy Zhou 
486bd89bc67SMurphy Zhou 	spin_lock(&inode->i_lock);
487bd89bc67SMurphy Zhou 	blocks = inode->i_blocks;
488bd89bc67SMurphy Zhou 	isize = inode->i_size;
489bd89bc67SMurphy Zhou 	spin_unlock(&inode->i_lock);
490bd89bc67SMurphy Zhou 	if (blocks*512 < isize) {
491bd89bc67SMurphy Zhou 		pr_warn("swap activate: swapfile has holes\n");
492bd89bc67SMurphy Zhou 		return -EINVAL;
493bd89bc67SMurphy Zhou 	}
494dad2b015SJeff Layton 
4954b60c0ffSNeilBrown 	ret = rpc_clnt_swap_activate(clnt);
4964b60c0ffSNeilBrown 	if (ret)
4974b60c0ffSNeilBrown 		return ret;
4984b60c0ffSNeilBrown 	ret = add_swap_extent(sis, 0, sis->max, 0);
4994b60c0ffSNeilBrown 	if (ret < 0) {
5004b60c0ffSNeilBrown 		rpc_clnt_swap_deactivate(clnt);
5014b60c0ffSNeilBrown 		return ret;
5024b60c0ffSNeilBrown 	}
503dad2b015SJeff Layton 
5044b60c0ffSNeilBrown 	*span = sis->pages;
5054dc73c67SNeilBrown 
5064dc73c67SNeilBrown 	if (cl->rpc_ops->enable_swap)
5074dc73c67SNeilBrown 		cl->rpc_ops->enable_swap(inode);
5084dc73c67SNeilBrown 
5094b60c0ffSNeilBrown 	sis->flags |= SWP_FS_OPS;
5104b60c0ffSNeilBrown 	return ret;
511a564b8f0SMel Gorman }
512a564b8f0SMel Gorman 
513a564b8f0SMel Gorman static void nfs_swap_deactivate(struct file *file)
514a564b8f0SMel Gorman {
5154dc73c67SNeilBrown 	struct inode *inode = file_inode(file);
5164dc73c67SNeilBrown 	struct rpc_clnt *clnt = NFS_CLIENT(inode);
5174dc73c67SNeilBrown 	struct nfs_client *cl = NFS_SERVER(inode)->nfs_client;
518dad2b015SJeff Layton 
5193c87ef6eSJeff Layton 	rpc_clnt_swap_deactivate(clnt);
5204dc73c67SNeilBrown 	if (cl->rpc_ops->disable_swap)
5214dc73c67SNeilBrown 		cl->rpc_ops->disable_swap(file_inode(file));
522a564b8f0SMel Gorman }
523a564b8f0SMel Gorman 
524f5e54d6eSChristoph Hellwig const struct address_space_operations nfs_file_aops = {
52565d023afSMatthew Wilcox (Oracle) 	.read_folio = nfs_read_folio,
5268786fde8SMatthew Wilcox (Oracle) 	.readahead = nfs_readahead,
527187c82cbSMatthew Wilcox (Oracle) 	.dirty_folio = filemap_dirty_folio,
5281da177e4SLinus Torvalds 	.writepage = nfs_writepage,
5291da177e4SLinus Torvalds 	.writepages = nfs_writepages,
5304899f9c8SNick Piggin 	.write_begin = nfs_write_begin,
5314899f9c8SNick Piggin 	.write_end = nfs_write_end,
5326d740c76SMatthew Wilcox (Oracle) 	.invalidate_folio = nfs_invalidate_folio,
5333577da4aSMatthew Wilcox (Oracle) 	.release_folio = nfs_release_folio,
5344ae84a80SMatthew Wilcox (Oracle) 	.migrate_folio = nfs_migrate_folio,
53515a30ab2SMatthew Wilcox (Oracle) 	.launder_folio = nfs_launder_folio,
536f919b196SMel Gorman 	.is_dirty_writeback = nfs_check_dirty_writeback,
537f590f333SAndi Kleen 	.error_remove_page = generic_error_remove_page,
538a564b8f0SMel Gorman 	.swap_activate = nfs_swap_activate,
539a564b8f0SMel Gorman 	.swap_deactivate = nfs_swap_deactivate,
540eb79f3afSNeilBrown 	.swap_rw = nfs_swap_rw,
5411da177e4SLinus Torvalds };
5421da177e4SLinus Torvalds 
5436b9b3514SDavid Howells /*
5446b9b3514SDavid Howells  * Notification that a PTE pointing to an NFS page is about to be made
5456b9b3514SDavid Howells  * writable, implying that someone is about to modify the page through a
5466b9b3514SDavid Howells  * shared-writable mapping
5476b9b3514SDavid Howells  */
54801a36844SSouptick Joarder static vm_fault_t nfs_vm_page_mkwrite(struct vm_fault *vmf)
54994387fb1STrond Myklebust {
550c2ec175cSNick Piggin 	struct page *page = vmf->page;
55111bac800SDave Jiang 	struct file *filp = vmf->vma->vm_file;
5526de1472fSAl Viro 	struct inode *inode = file_inode(filp);
55394387fb1STrond Myklebust 	unsigned pagelen;
55401a36844SSouptick Joarder 	vm_fault_t ret = VM_FAULT_NOPAGE;
5554899f9c8SNick Piggin 	struct address_space *mapping;
55694387fb1STrond Myklebust 
5571e8968c5SNiels de Vos 	dfprintk(PAGECACHE, "NFS: vm_page_mkwrite(%pD2(%lu), offset %lld)\n",
5586de1472fSAl Viro 		filp, filp->f_mapping->host->i_ino,
559b7eaefaaSChuck Lever 		(long long)page_offset(page));
560b7eaefaaSChuck Lever 
5619a773e7cSTrond Myklebust 	sb_start_pagefault(inode->i_sb);
5629a773e7cSTrond Myklebust 
563545db45fSDavid Howells 	/* make sure the cache has finished storing the page */
564a6b5a28eSDave Wysochanski 	if (PageFsCache(page) &&
565a6b5a28eSDave Wysochanski 	    wait_on_page_fscache_killable(vmf->page) < 0) {
566a6b5a28eSDave Wysochanski 		ret = VM_FAULT_RETRY;
567a6b5a28eSDave Wysochanski 		goto out;
568a6b5a28eSDave Wysochanski 	}
569545db45fSDavid Howells 
570ef070dcbSTrond Myklebust 	wait_on_bit_action(&NFS_I(inode)->flags, NFS_INO_INVALIDATING,
571f5d39b02SPeter Zijlstra 			   nfs_wait_bit_killable,
572f5d39b02SPeter Zijlstra 			   TASK_KILLABLE|TASK_FREEZABLE_UNSAFE);
573ef070dcbSTrond Myklebust 
57494387fb1STrond Myklebust 	lock_page(page);
575d56b4ddfSMel Gorman 	mapping = page_file_mapping(page);
5766de1472fSAl Viro 	if (mapping != inode->i_mapping)
5778b1f9ee5STrond Myklebust 		goto out_unlock;
5788b1f9ee5STrond Myklebust 
5792aeb98f4STrond Myklebust 	wait_on_page_writeback(page);
5802aeb98f4STrond Myklebust 
5814899f9c8SNick Piggin 	pagelen = nfs_page_length(page);
5828b1f9ee5STrond Myklebust 	if (pagelen == 0)
5838b1f9ee5STrond Myklebust 		goto out_unlock;
5848b1f9ee5STrond Myklebust 
585bc4866b6STrond Myklebust 	ret = VM_FAULT_LOCKED;
586bc4866b6STrond Myklebust 	if (nfs_flush_incompatible(filp, page) == 0 &&
587bc4866b6STrond Myklebust 	    nfs_updatepage(filp, page, 0, pagelen) == 0)
588bc4866b6STrond Myklebust 		goto out;
5898b1f9ee5STrond Myklebust 
590bc4866b6STrond Myklebust 	ret = VM_FAULT_SIGBUS;
5918b1f9ee5STrond Myklebust out_unlock:
5924899f9c8SNick Piggin 	unlock_page(page);
593bc4866b6STrond Myklebust out:
5949a773e7cSTrond Myklebust 	sb_end_pagefault(inode->i_sb);
595bc4866b6STrond Myklebust 	return ret;
59694387fb1STrond Myklebust }
59794387fb1STrond Myklebust 
598f0f37e2fSAlexey Dobriyan static const struct vm_operations_struct nfs_file_vm_ops = {
59994387fb1STrond Myklebust 	.fault = filemap_fault,
600f1820361SKirill A. Shutemov 	.map_pages = filemap_map_pages,
60194387fb1STrond Myklebust 	.page_mkwrite = nfs_vm_page_mkwrite,
60294387fb1STrond Myklebust };
60394387fb1STrond Myklebust 
604edaf4369SAl Viro ssize_t nfs_file_write(struct kiocb *iocb, struct iov_iter *from)
6051da177e4SLinus Torvalds {
6066de1472fSAl Viro 	struct file *file = iocb->ki_filp;
6076de1472fSAl Viro 	struct inode *inode = file_inode(file);
608ed7bcdb3STrond Myklebust 	unsigned int mntflags = NFS_SERVER(inode)->flags;
609ed7bcdb3STrond Myklebust 	ssize_t result, written;
610ce368536SScott Mayhew 	errseq_t since;
611ce368536SScott Mayhew 	int error;
6121da177e4SLinus Torvalds 
6136de1472fSAl Viro 	result = nfs_key_timeout_notify(file, inode);
614dc24826bSAndy Adamson 	if (result)
615dc24826bSAndy Adamson 		return result;
616dc24826bSAndy Adamson 
61789698b24STrond Myklebust 	if (iocb->ki_flags & IOCB_DIRECT)
61864158668SNeilBrown 		return nfs_file_direct_write(iocb, from, false);
6191da177e4SLinus Torvalds 
620619d30b4SAl Viro 	dprintk("NFS: write(%pD2, %zu@%Ld)\n",
62118290650STrond Myklebust 		file, iov_iter_count(from), (long long) iocb->ki_pos);
6221da177e4SLinus Torvalds 
6231da177e4SLinus Torvalds 	if (IS_SWAPFILE(inode))
6241da177e4SLinus Torvalds 		goto out_swapfile;
6257d52e862STrond Myklebust 	/*
6267d52e862STrond Myklebust 	 * O_APPEND implies that we must revalidate the file length.
6277d52e862STrond Myklebust 	 */
628fc9dc401STrond Myklebust 	if (iocb->ki_flags & IOCB_APPEND || iocb->ki_pos > i_size_read(inode)) {
6296de1472fSAl Viro 		result = nfs_revalidate_file_size(inode, file);
6301da177e4SLinus Torvalds 		if (result)
631e6005436STrond Myklebust 			return result;
632fe51beecSTrond Myklebust 	}
6331da177e4SLinus Torvalds 
63428aa2f9eSTrond Myklebust 	nfs_clear_invalid_mapping(file->f_mapping);
63528aa2f9eSTrond Myklebust 
636ce368536SScott Mayhew 	since = filemap_sample_wb_err(file->f_mapping);
637a5864c99STrond Myklebust 	nfs_start_io_write(inode);
63818290650STrond Myklebust 	result = generic_write_checks(iocb, from);
63918290650STrond Myklebust 	if (result > 0) {
64018290650STrond Myklebust 		current->backing_dev_info = inode_to_bdi(inode);
641800ba295SMatthew Wilcox (Oracle) 		result = generic_perform_write(iocb, from);
64218290650STrond Myklebust 		current->backing_dev_info = NULL;
64318290650STrond Myklebust 	}
644a5864c99STrond Myklebust 	nfs_end_io_write(inode);
64518290650STrond Myklebust 	if (result <= 0)
6461da177e4SLinus Torvalds 		goto out;
6471da177e4SLinus Torvalds 
648c49edecdSTrond Myklebust 	written = result;
64918290650STrond Myklebust 	iocb->ki_pos += written;
650e6005436STrond Myklebust 	nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
651ed7bcdb3STrond Myklebust 
652ed7bcdb3STrond Myklebust 	if (mntflags & NFS_MOUNT_WRITE_EAGER) {
653ed7bcdb3STrond Myklebust 		result = filemap_fdatawrite_range(file->f_mapping,
654ed7bcdb3STrond Myklebust 						  iocb->ki_pos - written,
655ed7bcdb3STrond Myklebust 						  iocb->ki_pos - 1);
656ed7bcdb3STrond Myklebust 		if (result < 0)
657ed7bcdb3STrond Myklebust 			goto out;
658ed7bcdb3STrond Myklebust 	}
659ed7bcdb3STrond Myklebust 	if (mntflags & NFS_MOUNT_WRITE_WAIT) {
660384edeb4SLukas Bulwahn 		filemap_fdatawait_range(file->f_mapping,
661ed7bcdb3STrond Myklebust 					iocb->ki_pos - written,
662ed7bcdb3STrond Myklebust 					iocb->ki_pos - 1);
663ed7bcdb3STrond Myklebust 	}
664e973b1a5Starangg@amazon.com 	result = generic_write_sync(iocb, written);
665e973b1a5Starangg@amazon.com 	if (result < 0)
666e6005436STrond Myklebust 		return result;
6677e381172SChuck Lever 
668e6005436STrond Myklebust out:
6697e94d6c4STrond Myklebust 	/* Return error values */
670ce368536SScott Mayhew 	error = filemap_check_wb_err(file->f_mapping, since);
671e6005436STrond Myklebust 	switch (error) {
672e6005436STrond Myklebust 	default:
673e6005436STrond Myklebust 		break;
674e6005436STrond Myklebust 	case -EDQUOT:
675e6005436STrond Myklebust 	case -EFBIG:
676e6005436STrond Myklebust 	case -ENOSPC:
677e6005436STrond Myklebust 		nfs_wb_all(inode);
678e6005436STrond Myklebust 		error = file_check_and_advance_wb_err(file);
679e6005436STrond Myklebust 		if (error < 0)
680e6005436STrond Myklebust 			result = error;
681200baa21STrond Myklebust 	}
6821da177e4SLinus Torvalds 	return result;
6831da177e4SLinus Torvalds 
6841da177e4SLinus Torvalds out_swapfile:
6851da177e4SLinus Torvalds 	printk(KERN_INFO "NFS: attempt to write to active swap file!\n");
68689658c4dSAnna Schumaker 	return -ETXTBSY;
6871da177e4SLinus Torvalds }
68889d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_write);
6891da177e4SLinus Torvalds 
6905eebde23SSuresh Jayaraman static int
6915eebde23SSuresh Jayaraman do_getlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
6921da177e4SLinus Torvalds {
6931da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
6941da177e4SLinus Torvalds 	int status = 0;
69521ac19d4SSergey Vlasov 	unsigned int saved_type = fl->fl_type;
6961da177e4SLinus Torvalds 
697039c4d7aSTrond Myklebust 	/* Try local locking first */
6986d34ac19SJ. Bruce Fields 	posix_test_lock(filp, fl);
6996d34ac19SJ. Bruce Fields 	if (fl->fl_type != F_UNLCK) {
7006d34ac19SJ. Bruce Fields 		/* found a conflict */
701039c4d7aSTrond Myklebust 		goto out;
7021da177e4SLinus Torvalds 	}
70321ac19d4SSergey Vlasov 	fl->fl_type = saved_type;
704039c4d7aSTrond Myklebust 
705011e2a7fSBryan Schumaker 	if (NFS_PROTO(inode)->have_delegation(inode, FMODE_READ))
706039c4d7aSTrond Myklebust 		goto out_noconflict;
707039c4d7aSTrond Myklebust 
7085eebde23SSuresh Jayaraman 	if (is_local)
709039c4d7aSTrond Myklebust 		goto out_noconflict;
710039c4d7aSTrond Myklebust 
711039c4d7aSTrond Myklebust 	status = NFS_PROTO(inode)->lock(filp, cmd, fl);
712039c4d7aSTrond Myklebust out:
7131da177e4SLinus Torvalds 	return status;
714039c4d7aSTrond Myklebust out_noconflict:
715039c4d7aSTrond Myklebust 	fl->fl_type = F_UNLCK;
716039c4d7aSTrond Myklebust 	goto out;
7171da177e4SLinus Torvalds }
7181da177e4SLinus Torvalds 
7195eebde23SSuresh Jayaraman static int
7205eebde23SSuresh Jayaraman do_unlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
7211da177e4SLinus Torvalds {
7221da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
7237a8203d8STrond Myklebust 	struct nfs_lock_context *l_ctx;
7241da177e4SLinus Torvalds 	int status;
7251da177e4SLinus Torvalds 
7261da177e4SLinus Torvalds 	/*
7271da177e4SLinus Torvalds 	 * Flush all pending writes before doing anything
7281da177e4SLinus Torvalds 	 * with locks..
7291da177e4SLinus Torvalds 	 */
730aded8d7bSTrond Myklebust 	nfs_wb_all(inode);
7311da177e4SLinus Torvalds 
7327a8203d8STrond Myklebust 	l_ctx = nfs_get_lock_context(nfs_file_open_context(filp));
7337a8203d8STrond Myklebust 	if (!IS_ERR(l_ctx)) {
734210c7c17SBenjamin Coddington 		status = nfs_iocounter_wait(l_ctx);
7357a8203d8STrond Myklebust 		nfs_put_lock_context(l_ctx);
7361da177e4SLinus Torvalds 		/*  NOTE: special case
7371da177e4SLinus Torvalds 		 * 	If we're signalled while cleaning up locks on process exit, we
7381da177e4SLinus Torvalds 		 * 	still need to complete the unlock.
7391da177e4SLinus Torvalds 		 */
740f30cb757SBenjamin Coddington 		if (status < 0 && !(fl->fl_flags & FL_CLOSE))
741f30cb757SBenjamin Coddington 			return status;
742f30cb757SBenjamin Coddington 	}
743f30cb757SBenjamin Coddington 
7445eebde23SSuresh Jayaraman 	/*
7455eebde23SSuresh Jayaraman 	 * Use local locking if mounted with "-onolock" or with appropriate
7465eebde23SSuresh Jayaraman 	 * "-olocal_lock="
7475eebde23SSuresh Jayaraman 	 */
7485eebde23SSuresh Jayaraman 	if (!is_local)
7491da177e4SLinus Torvalds 		status = NFS_PROTO(inode)->lock(filp, cmd, fl);
7501da177e4SLinus Torvalds 	else
75175575ddfSJeff Layton 		status = locks_lock_file_wait(filp, fl);
7521da177e4SLinus Torvalds 	return status;
7531da177e4SLinus Torvalds }
7541da177e4SLinus Torvalds 
7555eebde23SSuresh Jayaraman static int
7565eebde23SSuresh Jayaraman do_setlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
7571da177e4SLinus Torvalds {
7581da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
7591da177e4SLinus Torvalds 	int status;
7601da177e4SLinus Torvalds 
7611da177e4SLinus Torvalds 	/*
7621da177e4SLinus Torvalds 	 * Flush all pending writes before doing anything
7631da177e4SLinus Torvalds 	 * with locks..
7641da177e4SLinus Torvalds 	 */
76529884df0STrond Myklebust 	status = nfs_sync_mapping(filp->f_mapping);
76629884df0STrond Myklebust 	if (status != 0)
7671da177e4SLinus Torvalds 		goto out;
7681da177e4SLinus Torvalds 
7695eebde23SSuresh Jayaraman 	/*
7705eebde23SSuresh Jayaraman 	 * Use local locking if mounted with "-onolock" or with appropriate
7715eebde23SSuresh Jayaraman 	 * "-olocal_lock="
7725eebde23SSuresh Jayaraman 	 */
7735eebde23SSuresh Jayaraman 	if (!is_local)
7741da177e4SLinus Torvalds 		status = NFS_PROTO(inode)->lock(filp, cmd, fl);
775c4d7c402STrond Myklebust 	else
77675575ddfSJeff Layton 		status = locks_lock_file_wait(filp, fl);
7771da177e4SLinus Torvalds 	if (status < 0)
7781da177e4SLinus Torvalds 		goto out;
7796b96724eSRicardo Labiaga 
7801da177e4SLinus Torvalds 	/*
781779eafabSNeilBrown 	 * Invalidate cache to prevent missing any changes.  If
782779eafabSNeilBrown 	 * the file is mapped, clear the page cache as well so
783779eafabSNeilBrown 	 * those mappings will be loaded.
7846b96724eSRicardo Labiaga 	 *
7851da177e4SLinus Torvalds 	 * This makes locking act as a cache coherency point.
7861da177e4SLinus Torvalds 	 */
78729884df0STrond Myklebust 	nfs_sync_mapping(filp->f_mapping);
788779eafabSNeilBrown 	if (!NFS_PROTO(inode)->have_delegation(inode, FMODE_READ)) {
789442ce049SNeilBrown 		nfs_zap_caches(inode);
790779eafabSNeilBrown 		if (mapping_mapped(filp->f_mapping))
791779eafabSNeilBrown 			nfs_revalidate_mapping(inode, filp->f_mapping);
792779eafabSNeilBrown 	}
7931da177e4SLinus Torvalds out:
7941da177e4SLinus Torvalds 	return status;
7951da177e4SLinus Torvalds }
7961da177e4SLinus Torvalds 
7971da177e4SLinus Torvalds /*
7981da177e4SLinus Torvalds  * Lock a (portion of) a file
7991da177e4SLinus Torvalds  */
800ce4ef7c0SBryan Schumaker int nfs_lock(struct file *filp, int cmd, struct file_lock *fl)
8011da177e4SLinus Torvalds {
8021da177e4SLinus Torvalds 	struct inode *inode = filp->f_mapping->host;
8032116271aSTrond Myklebust 	int ret = -ENOLCK;
8045eebde23SSuresh Jayaraman 	int is_local = 0;
8051da177e4SLinus Torvalds 
8066de1472fSAl Viro 	dprintk("NFS: lock(%pD2, t=%x, fl=%x, r=%lld:%lld)\n",
8076de1472fSAl Viro 			filp, fl->fl_type, fl->fl_flags,
8081da177e4SLinus Torvalds 			(long long)fl->fl_start, (long long)fl->fl_end);
8096da24bc9SChuck Lever 
81091d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSLOCK);
8111da177e4SLinus Torvalds 
812bb0a55bbSJ. Bruce Fields 	if (fl->fl_flags & FL_RECLAIM)
813bb0a55bbSJ. Bruce Fields 		return -ENOGRACE;
814bb0a55bbSJ. Bruce Fields 
8155eebde23SSuresh Jayaraman 	if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FCNTL)
8165eebde23SSuresh Jayaraman 		is_local = 1;
8175eebde23SSuresh Jayaraman 
8182116271aSTrond Myklebust 	if (NFS_PROTO(inode)->lock_check_bounds != NULL) {
8192116271aSTrond Myklebust 		ret = NFS_PROTO(inode)->lock_check_bounds(fl);
8202116271aSTrond Myklebust 		if (ret < 0)
8212116271aSTrond Myklebust 			goto out_err;
8222116271aSTrond Myklebust 	}
8231da177e4SLinus Torvalds 
8241da177e4SLinus Torvalds 	if (IS_GETLK(cmd))
8255eebde23SSuresh Jayaraman 		ret = do_getlk(filp, cmd, fl, is_local);
8262116271aSTrond Myklebust 	else if (fl->fl_type == F_UNLCK)
8275eebde23SSuresh Jayaraman 		ret = do_unlk(filp, cmd, fl, is_local);
8282116271aSTrond Myklebust 	else
8295eebde23SSuresh Jayaraman 		ret = do_setlk(filp, cmd, fl, is_local);
8302116271aSTrond Myklebust out_err:
8312116271aSTrond Myklebust 	return ret;
8321da177e4SLinus Torvalds }
83389d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_lock);
8341da177e4SLinus Torvalds 
8351da177e4SLinus Torvalds /*
8361da177e4SLinus Torvalds  * Lock a (portion of) a file
8371da177e4SLinus Torvalds  */
838ce4ef7c0SBryan Schumaker int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
8391da177e4SLinus Torvalds {
8405eebde23SSuresh Jayaraman 	struct inode *inode = filp->f_mapping->host;
8415eebde23SSuresh Jayaraman 	int is_local = 0;
8425eebde23SSuresh Jayaraman 
8436de1472fSAl Viro 	dprintk("NFS: flock(%pD2, t=%x, fl=%x)\n",
8446de1472fSAl Viro 			filp, fl->fl_type, fl->fl_flags);
8451da177e4SLinus Torvalds 
8461da177e4SLinus Torvalds 	if (!(fl->fl_flags & FL_FLOCK))
8471da177e4SLinus Torvalds 		return -ENOLCK;
8481da177e4SLinus Torvalds 
8495eebde23SSuresh Jayaraman 	if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FLOCK)
8505eebde23SSuresh Jayaraman 		is_local = 1;
8515eebde23SSuresh Jayaraman 
852fcfa4470SBenjamin Coddington 	/* We're simulating flock() locks using posix locks on the server */
853fcfa4470SBenjamin Coddington 	if (fl->fl_type == F_UNLCK)
8545eebde23SSuresh Jayaraman 		return do_unlk(filp, cmd, fl, is_local);
8555eebde23SSuresh Jayaraman 	return do_setlk(filp, cmd, fl, is_local);
8561da177e4SLinus Torvalds }
85789d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_flock);
858370f6599SJ. Bruce Fields 
8590486958fSJeff Layton const struct file_operations nfs_file_operations = {
8600486958fSJeff Layton 	.llseek		= nfs_file_llseek,
8613aa2d199SAl Viro 	.read_iter	= nfs_file_read,
862edaf4369SAl Viro 	.write_iter	= nfs_file_write,
8630486958fSJeff Layton 	.mmap		= nfs_file_mmap,
8640486958fSJeff Layton 	.open		= nfs_file_open,
8650486958fSJeff Layton 	.flush		= nfs_file_flush,
8660486958fSJeff Layton 	.release	= nfs_file_release,
8670486958fSJeff Layton 	.fsync		= nfs_file_fsync,
8680486958fSJeff Layton 	.lock		= nfs_lock,
8690486958fSJeff Layton 	.flock		= nfs_flock,
87082c156f8SAl Viro 	.splice_read	= generic_file_splice_read,
8714da54c21SAl Viro 	.splice_write	= iter_file_splice_write,
8720486958fSJeff Layton 	.check_flags	= nfs_check_flags,
8731c994a09SJeff Layton 	.setlease	= simple_nosetlease,
8740486958fSJeff Layton };
875ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_file_operations);
876