blob: 51ab4627c4d6688afbaf631ef84a8fd61499cfb5 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/nfs/direct.c
4 *
5 * Copyright (C) 2003 by Chuck Lever <cel@netapp.com>
6 *
7 * High-performance uncached I/O for the Linux NFS client
8 *
9 * There are important applications whose performance or correctness
10 * depends on uncached access to file data. Database clusters
Chuck Lever88467052006-03-20 13:44:34 -050011 * (multiple copies of the same instance running on separate hosts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * implement their own cache coherency protocol that subsumes file
Chuck Lever88467052006-03-20 13:44:34 -050013 * system cache protocols. Applications that process datasets
14 * considerably larger than the client's memory do not always benefit
15 * from a local cache. A streaming video server, for instance, has no
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * need to cache the contents of a file.
17 *
18 * When an application requests uncached I/O, all read and write requests
19 * are made directly to the server; data stored or fetched via these
20 * requests is not cached in the Linux page cache. The client does not
21 * correct unaligned requests from applications. All requested bytes are
22 * held on permanent storage before a direct write system call returns to
23 * an application.
24 *
25 * Solaris implements an uncached I/O facility called directio() that
26 * is used for backups and sequential I/O to very large files. Solaris
27 * also supports uncaching whole NFS partitions with "-o forcedirectio,"
28 * an undocumented mount option.
29 *
30 * Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with
31 * help from Andrew Morton.
32 *
33 * 18 Dec 2001 Initial implementation for 2.4 --cel
34 * 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy
35 * 08 Jun 2003 Port to 2.5 APIs --cel
36 * 31 Mar 2004 Handle direct I/O without VFS support --cel
37 * 15 Sep 2004 Parallel async reads --cel
Chuck Lever88467052006-03-20 13:44:34 -050038 * 04 May 2005 support O_DIRECT with aio --cel
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 *
40 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/errno.h>
43#include <linux/sched.h>
44#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/file.h>
46#include <linux/pagemap.h>
47#include <linux/kref.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Konstantin Khlebnikov7ec10f22011-02-22 00:28:34 +030049#include <linux/task_io_accounting_ops.h>
Peng Tao62965562012-09-25 14:55:57 +080050#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <linux/nfs_fs.h>
53#include <linux/nfs_page.h>
54#include <linux/sunrpc/clnt.h>
55
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080056#include <linux/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070057#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Trond Myklebust8d5658c2007-04-10 09:26:35 -040059#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050060#include "iostat.h"
Fred Isaman1763da12012-04-20 14:47:57 -040061#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define NFSDBG_FACILITY NFSDBG_VFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Christoph Lametere18b8902006-12-06 20:33:20 -080065static struct kmem_cache *nfs_direct_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067struct nfs_direct_req {
68 struct kref kref; /* release manager */
Chuck Lever15ce4a02006-03-20 13:44:34 -050069
70 /* I/O parameters */
Trond Myklebusta8881f52006-03-20 13:44:36 -050071 struct nfs_open_context *ctx; /* file open context info */
Trond Myklebustf11ac8d2010-06-25 16:35:53 -040072 struct nfs_lock_context *l_ctx; /* Lock context info */
Chuck Lever99514f82006-03-20 13:44:30 -050073 struct kiocb * iocb; /* controlling i/o request */
Chuck Lever88467052006-03-20 13:44:34 -050074 struct inode * inode; /* target file of i/o */
Chuck Lever15ce4a02006-03-20 13:44:34 -050075
76 /* completion state */
Trond Myklebust607f31e2006-06-28 16:52:45 -040077 atomic_t io_count; /* i/os we're waiting for */
Chuck Lever15ce4a02006-03-20 13:44:34 -050078 spinlock_t lock; /* protect completion state */
Weston Andros Adamson0a00b772014-09-19 12:48:33 -040079
Trond Myklebustd9ee6552018-03-06 12:47:08 -050080 loff_t io_start; /* Start offset for I/O */
Chuck Lever15ce4a02006-03-20 13:44:34 -050081 ssize_t count, /* bytes actually processed */
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -040082 max_count, /* max expected count */
Peng Tao35754bc2012-09-25 14:55:57 +080083 bytes_left, /* bytes left to be sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 error; /* any reported error */
Trond Myklebustd72b7a62006-03-20 13:44:43 -050085 struct completion completion; /* wait for i/o completion */
Trond Myklebustfad61492006-03-20 13:44:36 -050086
87 /* commit state */
Fred Isaman1763da12012-04-20 14:47:57 -040088 struct nfs_mds_commit_info mds_cinfo; /* Storage for cinfo */
89 struct pnfs_ds_commit_info ds_cinfo; /* Storage for cinfo */
90 struct work_struct work;
Trond Myklebustfad61492006-03-20 13:44:36 -050091 int flags;
Dave Kleikampad3cba22018-11-27 19:31:30 +000092 /* for write */
Trond Myklebustfad61492006-03-20 13:44:36 -050093#define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */
94#define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */
Dave Kleikampad3cba22018-11-27 19:31:30 +000095 /* for read */
96#define NFS_ODIRECT_SHOULD_DIRTY (3) /* dirty user-space page after read */
Trond Myklebustfb5f7f22020-03-21 09:36:13 -040097#define NFS_ODIRECT_DONE INT_MAX /* write verification failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
Fred Isaman1763da12012-04-20 14:47:57 -0400100static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops;
101static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops;
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500102static void nfs_direct_write_complete(struct nfs_direct_req *dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400103static void nfs_direct_write_schedule_work(struct work_struct *work);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400104
105static inline void get_dreq(struct nfs_direct_req *dreq)
106{
107 atomic_inc(&dreq->io_count);
108}
109
110static inline int put_dreq(struct nfs_direct_req *dreq)
111{
112 return atomic_dec_and_test(&dreq->io_count);
113}
114
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400115static void
Trond Myklebust031d73e2019-09-30 14:02:56 -0400116nfs_direct_handle_truncated(struct nfs_direct_req *dreq,
117 const struct nfs_pgio_header *hdr,
118 ssize_t dreq_len)
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400119{
Trond Myklebust031d73e2019-09-30 14:02:56 -0400120 if (!(test_bit(NFS_IOHDR_ERROR, &hdr->flags) ||
121 test_bit(NFS_IOHDR_EOF, &hdr->flags)))
122 return;
123 if (dreq->max_count >= dreq_len) {
124 dreq->max_count = dreq_len;
125 if (dreq->count > dreq_len)
126 dreq->count = dreq_len;
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -0400127
Trond Myklebust031d73e2019-09-30 14:02:56 -0400128 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags))
129 dreq->error = hdr->error;
130 else /* Clear outstanding error if this is EOF */
131 dreq->error = 0;
Peng Tao5fadeb42015-01-19 12:41:16 +0800132 }
Trond Myklebust031d73e2019-09-30 14:02:56 -0400133}
134
135static void
136nfs_direct_count_bytes(struct nfs_direct_req *dreq,
137 const struct nfs_pgio_header *hdr)
138{
Trond Myklebust031d73e2019-09-30 14:02:56 -0400139 loff_t hdr_end = hdr->io_start + hdr->good_bytes;
140 ssize_t dreq_len = 0;
141
142 if (hdr_end > dreq->io_start)
143 dreq_len = hdr_end - dreq->io_start;
144
145 nfs_direct_handle_truncated(dreq, hdr, dreq_len);
146
147 if (dreq_len > dreq->max_count)
148 dreq_len = dreq->max_count;
149
Trond Myklebust031d73e2019-09-30 14:02:56 -0400150 if (dreq->count < dreq_len)
151 dreq->count = dreq_len;
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/**
Chuck Leverb8a32e22006-03-20 13:44:28 -0500155 * nfs_direct_IO - NFS address space operation for direct I/O
Chuck Leverb8a32e22006-03-20 13:44:28 -0500156 * @iocb: target I/O control block
Al Viro90090ae2016-05-29 19:05:03 -0400157 * @iter: I/O buffer
Chuck Leverb8a32e22006-03-20 13:44:28 -0500158 *
159 * The presence of this routine in the address space ops vector means
Mel Gormana564b8f2012-07-31 16:45:12 -0700160 * the NFS client supports direct I/O. However, for most direct IO, we
161 * shunt off direct read and write requests before the VFS gets them,
162 * so this method is only ever called for swap.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700164ssize_t nfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chuck Leverb8a32e22006-03-20 13:44:28 -0500165{
Peng Taoee8a1a82015-01-20 07:44:29 +0800166 struct inode *inode = iocb->ki_filp->f_mapping->host;
167
168 /* we only support swap file calling nfs_direct_IO */
169 if (!IS_SWAPFILE(inode))
170 return 0;
171
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100172 VM_BUG_ON(iov_iter_count(iter) != PAGE_SIZE);
Mel Gormana564b8f2012-07-31 16:45:12 -0700173
Omar Sandoval6f673762015-03-16 04:33:52 -0700174 if (iov_iter_rw(iter) == READ)
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700175 return nfs_file_direct_read(iocb, iter);
Al Viro65a4a1c2015-04-09 14:11:08 -0400176 return nfs_file_direct_write(iocb, iter);
Chuck Leverb8a32e22006-03-20 13:44:28 -0500177}
178
Chuck Lever749e1462007-05-19 17:22:46 -0400179static void nfs_direct_release_pages(struct page **pages, unsigned int npages)
Chuck Lever9c93ab72006-06-20 12:56:31 -0400180{
Chuck Lever749e1462007-05-19 17:22:46 -0400181 unsigned int i;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400182 for (i = 0; i < npages; i++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300183 put_page(pages[i]);
Trond Myklebust6b45d852006-03-20 13:44:43 -0500184}
185
Fred Isaman1763da12012-04-20 14:47:57 -0400186void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo,
187 struct nfs_direct_req *dreq)
188{
Dave Wysochanskife238e62016-04-01 13:45:09 -0400189 cinfo->inode = dreq->inode;
Fred Isaman1763da12012-04-20 14:47:57 -0400190 cinfo->mds = &dreq->mds_cinfo;
191 cinfo->ds = &dreq->ds_cinfo;
192 cinfo->dreq = dreq;
193 cinfo->completion_ops = &nfs_direct_commit_completion_ops;
194}
195
Chuck Lever93619e52006-03-20 13:44:31 -0500196static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct nfs_direct_req *dreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Trond Myklebust292f3ee2012-04-30 18:31:49 -0400200 dreq = kmem_cache_zalloc(nfs_direct_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (!dreq)
202 return NULL;
203
204 kref_init(&dreq->kref);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400205 kref_get(&dreq->kref);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500206 init_completion(&dreq->completion);
Fred Isaman1763da12012-04-20 14:47:57 -0400207 INIT_LIST_HEAD(&dreq->mds_cinfo.list);
Trond Myklebustc21e7162020-03-19 13:36:36 -0400208 pnfs_init_ds_commit_info(&dreq->ds_cinfo);
Fred Isaman1763da12012-04-20 14:47:57 -0400209 INIT_WORK(&dreq->work, nfs_direct_write_schedule_work);
Chuck Lever15ce4a02006-03-20 13:44:34 -0500210 spin_lock_init(&dreq->lock);
Chuck Lever93619e52006-03-20 13:44:31 -0500211
212 return dreq;
213}
214
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400215static void nfs_direct_req_free(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500218
Trond Myklebust18f41292020-03-20 17:08:02 -0400219 pnfs_release_ds_info(&dreq->ds_cinfo, dreq->inode);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400220 if (dreq->l_ctx != NULL)
221 nfs_put_lock_context(dreq->l_ctx);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500222 if (dreq->ctx != NULL)
223 put_nfs_open_context(dreq->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 kmem_cache_free(nfs_direct_cachep, dreq);
225}
226
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400227static void nfs_direct_req_release(struct nfs_direct_req *dreq)
228{
229 kref_put(&dreq->kref, nfs_direct_req_free);
230}
231
Peng Tao62965562012-09-25 14:55:57 +0800232ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq)
233{
234 return dreq->bytes_left;
235}
236EXPORT_SYMBOL_GPL(nfs_dreq_bytes_left);
237
Chuck Leverd4cc9482006-03-20 13:44:28 -0500238/*
Chuck Leverbc0fb202006-03-20 13:44:31 -0500239 * Collects and returns the final error value/byte-count.
240 */
241static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
242{
Chuck Lever15ce4a02006-03-20 13:44:34 -0500243 ssize_t result = -EIOCBQUEUED;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500244
245 /* Async requests don't wait here */
246 if (dreq->iocb)
247 goto out;
248
Matthew Wilcox150030b2007-12-06 16:24:39 -0500249 result = wait_for_completion_killable(&dreq->completion);
Chuck Leverbc0fb202006-03-20 13:44:31 -0500250
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400251 if (!result) {
252 result = dreq->count;
253 WARN_ON_ONCE(dreq->count < 0);
254 }
Chuck Leverbc0fb202006-03-20 13:44:31 -0500255 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500256 result = dreq->error;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500257
258out:
Chuck Leverbc0fb202006-03-20 13:44:31 -0500259 return (ssize_t) result;
260}
261
262/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400263 * Synchronous I/O uses a stack-allocated iocb. Thus we can't trust
264 * the iocb is still valid here if this is a synchronous request.
Chuck Lever63ab46a2006-03-20 13:44:31 -0500265 */
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400266static void nfs_direct_complete(struct nfs_direct_req *dreq)
Chuck Lever63ab46a2006-03-20 13:44:31 -0500267{
Christoph Hellwig9811cd52013-11-14 08:50:28 -0800268 struct inode *inode = dreq->inode;
269
Jens Axboefe0f07d2015-04-15 17:05:48 -0600270 inode_dio_end(inode);
Christoph Hellwig2a009ec2013-11-14 08:50:29 -0800271
272 if (dreq->iocb) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500273 long res = (long) dreq->error;
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400274 if (dreq->count != 0) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500275 res = (long) dreq->count;
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400276 WARN_ON_ONCE(dreq->count < 0);
277 }
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100278 dreq->iocb->ki_complete(dreq->iocb, res, 0);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500279 }
Christoph Hellwig2a009ec2013-11-14 08:50:29 -0800280
Daniel Wagner024de8f2016-09-22 13:54:28 +0200281 complete(&dreq->completion);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500282
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400283 nfs_direct_req_release(dreq);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500284}
285
Fred Isaman584aa812012-04-20 14:47:51 -0400286static void nfs_direct_read_completion(struct nfs_pgio_header *hdr)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400287{
Fred Isaman584aa812012-04-20 14:47:51 -0400288 unsigned long bytes = 0;
289 struct nfs_direct_req *dreq = hdr->dreq;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400290
Chuck Lever15ce4a02006-03-20 13:44:34 -0500291 spin_lock(&dreq->lock);
Trond Myklebusteb2c50d2019-08-12 18:04:36 -0400292 if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) {
293 spin_unlock(&dreq->lock);
294 goto out_put;
295 }
296
Trond Myklebust031d73e2019-09-30 14:02:56 -0400297 nfs_direct_count_bytes(dreq, hdr);
Fred Isaman584aa812012-04-20 14:47:51 -0400298 spin_unlock(&dreq->lock);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400299
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400300 while (!list_empty(&hdr->pages)) {
301 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
302 struct page *page = req->wb_page;
Fred Isaman584aa812012-04-20 14:47:51 -0400303
Dave Kleikampad3cba22018-11-27 19:31:30 +0000304 if (!PageCompound(page) && bytes < hdr->good_bytes &&
305 (dreq->flags == NFS_ODIRECT_SHOULD_DIRTY))
Jeff Laytonbe7e9852012-12-12 12:36:31 -0500306 set_page_dirty(page);
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400307 bytes += req->wb_bytes;
308 nfs_list_remove_request(req);
Anna Schumakerbeeb5332017-04-07 14:15:07 -0400309 nfs_release_request(req);
Fred Isaman584aa812012-04-20 14:47:51 -0400310 }
311out_put:
Trond Myklebust607f31e2006-06-28 16:52:45 -0400312 if (put_dreq(dreq))
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400313 nfs_direct_complete(dreq);
Fred Isaman584aa812012-04-20 14:47:51 -0400314 hdr->release(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500317static void nfs_read_sync_pgio_error(struct list_head *head, int error)
Fred Isamancd841602012-04-20 14:47:44 -0400318{
Fred Isaman584aa812012-04-20 14:47:51 -0400319 struct nfs_page *req;
Fred Isamancd841602012-04-20 14:47:44 -0400320
Fred Isaman584aa812012-04-20 14:47:51 -0400321 while (!list_empty(head)) {
322 req = nfs_list_entry(head->next);
323 nfs_list_remove_request(req);
324 nfs_release_request(req);
325 }
Fred Isamancd841602012-04-20 14:47:44 -0400326}
327
Fred Isaman584aa812012-04-20 14:47:51 -0400328static void nfs_direct_pgio_init(struct nfs_pgio_header *hdr)
329{
330 get_dreq(hdr->dreq);
331}
332
333static const struct nfs_pgio_completion_ops nfs_direct_read_completion_ops = {
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400334 .error_cleanup = nfs_read_sync_pgio_error,
Fred Isaman584aa812012-04-20 14:47:51 -0400335 .init_hdr = nfs_direct_pgio_init,
336 .completion = nfs_direct_read_completion,
337};
338
Chuck Leverd4cc9482006-03-20 13:44:28 -0500339/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400340 * For each rsize'd chunk of the user's buffer, dispatch an NFS READ
341 * operation. If nfs_readdata_alloc() or get_user_pages() fails,
342 * bail and stop sending more reads. Read length accounting is
343 * handled automatically by nfs_direct_read_result(). Otherwise, if
344 * no requests have been sent, just return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 */
Al Viro91f79c42014-03-21 04:58:33 -0400346
347static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq,
348 struct iov_iter *iter,
349 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Al Viro91f79c42014-03-21 04:58:33 -0400351 struct nfs_pageio_descriptor desc;
352 struct inode *inode = dreq->inode;
353 ssize_t result = -EINVAL;
354 size_t requested_bytes = 0;
355 size_t rsize = max_t(size_t, NFS_SERVER(inode)->rsize, PAGE_SIZE);
Chuck Lever82b145c2006-06-20 12:57:03 -0400356
Linus Torvalds16b90572014-06-12 10:30:18 -0700357 nfs_pageio_init_read(&desc, dreq->inode, false,
Al Viro91f79c42014-03-21 04:58:33 -0400358 &nfs_direct_read_completion_ops);
359 get_dreq(dreq);
360 desc.pg_dreq = dreq;
Jens Axboefe0f07d2015-04-15 17:05:48 -0600361 inode_dio_begin(inode);
Al Viro91f79c42014-03-21 04:58:33 -0400362
363 while (iov_iter_count(iter)) {
364 struct page **pagevec;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500365 size_t bytes;
Al Viro91f79c42014-03-21 04:58:33 -0400366 size_t pgbase;
367 unsigned npages, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Al Viro91f79c42014-03-21 04:58:33 -0400369 result = iov_iter_get_pages_alloc(iter, &pagevec,
370 rsize, &pgbase);
371 if (result < 0)
Trond Myklebust607f31e2006-06-28 16:52:45 -0400372 break;
Al Viro91f79c42014-03-21 04:58:33 -0400373
374 bytes = result;
375 iov_iter_advance(iter, bytes);
376 npages = (result + pgbase + PAGE_SIZE - 1) / PAGE_SIZE;
Fred Isaman584aa812012-04-20 14:47:51 -0400377 for (i = 0; i < npages; i++) {
378 struct nfs_page *req;
Trond Myklebustbf5fc402012-05-04 13:47:16 -0400379 unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
Fred Isaman584aa812012-04-20 14:47:51 -0400380 /* XXX do we need to do the eof zeroing found in async_filler? */
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400381 req = nfs_create_request(dreq->ctx, pagevec[i],
Fred Isaman584aa812012-04-20 14:47:51 -0400382 pgbase, req_len);
383 if (IS_ERR(req)) {
Fred Isaman584aa812012-04-20 14:47:51 -0400384 result = PTR_ERR(req);
385 break;
386 }
387 req->wb_index = pos >> PAGE_SHIFT;
388 req->wb_offset = pos & ~PAGE_MASK;
Al Viro91f79c42014-03-21 04:58:33 -0400389 if (!nfs_pageio_add_request(&desc, req)) {
390 result = desc.pg_error;
Fred Isaman584aa812012-04-20 14:47:51 -0400391 nfs_release_request(req);
Fred Isaman584aa812012-04-20 14:47:51 -0400392 break;
393 }
394 pgbase = 0;
395 bytes -= req_len;
Al Viro91f79c42014-03-21 04:58:33 -0400396 requested_bytes += req_len;
Fred Isaman584aa812012-04-20 14:47:51 -0400397 pos += req_len;
Peng Tao35754bc2012-09-25 14:55:57 +0800398 dreq->bytes_left -= req_len;
Fred Isaman584aa812012-04-20 14:47:51 -0400399 }
Trond Myklebust6d747432012-04-30 13:27:31 -0400400 nfs_direct_release_pages(pagevec, npages);
Al Viro91f79c42014-03-21 04:58:33 -0400401 kvfree(pagevec);
Chuck Lever19f73782007-11-12 12:16:47 -0500402 if (result < 0)
403 break;
Chuck Lever19f73782007-11-12 12:16:47 -0500404 }
405
Fred Isaman584aa812012-04-20 14:47:51 -0400406 nfs_pageio_complete(&desc);
407
Chuck Lever839f7ad2011-01-21 15:54:57 +0000408 /*
409 * If no bytes were started, return the error, and let the
410 * generic layer handle the completion.
411 */
412 if (requested_bytes == 0) {
Jens Axboefe0f07d2015-04-15 17:05:48 -0600413 inode_dio_end(inode);
Chuck Lever839f7ad2011-01-21 15:54:57 +0000414 nfs_direct_req_release(dreq);
415 return result < 0 ? result : -EIO;
416 }
417
Chuck Lever19f73782007-11-12 12:16:47 -0500418 if (put_dreq(dreq))
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400419 nfs_direct_complete(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400420 return requested_bytes;
Chuck Lever19f73782007-11-12 12:16:47 -0500421}
422
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800423/**
424 * nfs_file_direct_read - file direct read operation for NFS files
425 * @iocb: target I/O control block
Al Viro619d30b2014-03-04 21:53:33 -0500426 * @iter: vector of user buffers into which to read data
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800427 *
428 * We use this function for direct reads instead of calling
429 * generic_file_aio_read() in order to avoid gfar's check to see if
430 * the request starts before the end of the file. For that check
431 * to work, we must generate a GETATTR before each direct read, and
432 * even then there is a window between the GETATTR and the subsequent
433 * READ where the file size could change. Our preference is simply
434 * to do all reads the application wants, and the server will take
435 * care of managing the end of file boundary.
436 *
437 * This function also eliminates unnecessarily updating the file's
438 * atime locally, as the NFS server sets the file's atime, and this
439 * client must read the updated atime from the server back into its
440 * cache.
441 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700442ssize_t nfs_file_direct_read(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800444 struct file *file = iocb->ki_filp;
445 struct address_space *mapping = file->f_mapping;
446 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct nfs_direct_req *dreq;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400448 struct nfs_lock_context *l_ctx;
Al Viro85128b22017-04-13 09:31:51 -0400449 ssize_t result = -EINVAL, requested;
Al Viroa6cbcd42014-03-04 22:38:00 -0500450 size_t count = iov_iter_count(iter);
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800451 nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count);
452
453 dfprintk(FILE, "NFS: direct read(%pD2, %zd@%Ld)\n",
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700454 file, count, (long long) iocb->ki_pos);
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800455
456 result = 0;
457 if (!count)
458 goto out;
459
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800460 task_io_account_read(count);
461
462 result = -ENOMEM;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400463 dreq = nfs_direct_req_alloc();
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400464 if (dreq == NULL)
Trond Myklebusta5864c92016-06-03 17:07:19 -0400465 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Chuck Lever91d5b472006-03-20 13:44:14 -0500467 dreq->inode = inode;
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -0400468 dreq->bytes_left = dreq->max_count = count;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700469 dreq->io_start = iocb->ki_pos;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400470 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400471 l_ctx = nfs_get_lock_context(dreq->ctx);
472 if (IS_ERR(l_ctx)) {
473 result = PTR_ERR(l_ctx);
Misono Tomohiro8605cf02019-08-28 17:01:22 +0900474 nfs_direct_req_release(dreq);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400475 goto out_release;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400476 }
477 dreq->l_ctx = l_ctx;
Chuck Lever487b8372006-03-20 13:44:30 -0500478 if (!is_sync_kiocb(iocb))
479 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Dave Kleikampad3cba22018-11-27 19:31:30 +0000481 if (iter_is_iovec(iter))
482 dreq->flags = NFS_ODIRECT_SHOULD_DIRTY;
483
Trond Myklebusta5864c92016-06-03 17:07:19 -0400484 nfs_start_io_direct(inode);
485
Al Viro619d30b2014-03-04 21:53:33 -0500486 NFS_I(inode)->read_io += count;
Al Viro85128b22017-04-13 09:31:51 -0400487 requested = nfs_direct_read_schedule_iovec(dreq, iter, iocb->ki_pos);
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800488
Trond Myklebusta5864c92016-06-03 17:07:19 -0400489 nfs_end_io_direct(inode);
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800490
Al Viro85128b22017-04-13 09:31:51 -0400491 if (requested > 0) {
Trond Myklebust607f31e2006-06-28 16:52:45 -0400492 result = nfs_direct_wait(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400493 if (result > 0) {
494 requested -= result;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700495 iocb->ki_pos += result;
Al Viro85128b22017-04-13 09:31:51 -0400496 }
497 iov_iter_revert(iter, requested);
498 } else {
499 result = requested;
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800500 }
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800501
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400502out_release:
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400503 nfs_direct_req_release(dreq);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400504out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return result;
506}
507
Tom Haynes085d1e32014-12-11 13:04:55 -0500508static void
509nfs_direct_write_scan_commit_list(struct inode *inode,
510 struct list_head *list,
511 struct nfs_commit_info *cinfo)
512{
Trond Myklebuste824f992017-08-01 11:53:49 -0400513 mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
Trond Myklebust9c455a82020-03-21 11:13:05 -0400514 pnfs_recover_commit_reqs(list, cinfo);
Tom Haynes085d1e32014-12-11 13:04:55 -0500515 nfs_scan_commit_list(&cinfo->mds->list, list, cinfo, 0);
Trond Myklebuste824f992017-08-01 11:53:49 -0400516 mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
Tom Haynes085d1e32014-12-11 13:04:55 -0500517}
518
Trond Myklebustfad61492006-03-20 13:44:36 -0500519static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Fred Isaman1763da12012-04-20 14:47:57 -0400521 struct nfs_pageio_descriptor desc;
522 struct nfs_page *req, *tmp;
523 LIST_HEAD(reqs);
524 struct nfs_commit_info cinfo;
525 LIST_HEAD(failed);
526
527 nfs_init_cinfo_from_dreq(&cinfo, dreq);
Tom Haynes085d1e32014-12-11 13:04:55 -0500528 nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Trond Myklebustfad61492006-03-20 13:44:36 -0500530 dreq->count = 0;
Trond Myklebust031d73e2019-09-30 14:02:56 -0400531 dreq->max_count = 0;
532 list_for_each_entry(req, &reqs, wb_list)
533 dreq->max_count += req->wb_bytes;
Trond Myklebusta5314a72016-06-01 21:42:32 -0400534 nfs_clear_pnfs_ds_commit_verifiers(&dreq->ds_cinfo);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400535 get_dreq(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500536
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200537 nfs_pageio_init_write(&desc, dreq->inode, FLUSH_STABLE, false,
Fred Isaman1763da12012-04-20 14:47:57 -0400538 &nfs_direct_write_completion_ops);
539 desc.pg_dreq = dreq;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400540
Fred Isaman1763da12012-04-20 14:47:57 -0400541 list_for_each_entry_safe(req, tmp, &reqs, wb_list) {
Trond Myklebust33344e02019-04-07 13:59:08 -0400542 /* Bump the transmission count */
543 req->wb_nio++;
Fred Isaman1763da12012-04-20 14:47:57 -0400544 if (!nfs_pageio_add_request(&desc, req)) {
Trond Myklebust078b5fd2019-02-18 11:35:54 -0500545 nfs_list_move_request(req, &failed);
Dave Wysochanskife238e62016-04-01 13:45:09 -0400546 spin_lock(&cinfo.inode->i_lock);
Fred Isaman1763da12012-04-20 14:47:57 -0400547 dreq->flags = 0;
Peng Taod600ad12015-12-04 02:57:48 +0800548 if (desc.pg_error < 0)
549 dreq->error = desc.pg_error;
550 else
551 dreq->error = -EIO;
Dave Wysochanskife238e62016-04-01 13:45:09 -0400552 spin_unlock(&cinfo.inode->i_lock);
Fred Isaman1763da12012-04-20 14:47:57 -0400553 }
Trond Myklebust5a695da2012-06-19 13:39:14 -0400554 nfs_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400555 }
556 nfs_pageio_complete(&desc);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400557
Trond Myklebust4035c242012-07-08 10:24:10 -0400558 while (!list_empty(&failed)) {
559 req = nfs_list_entry(failed.next);
560 nfs_list_remove_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400561 nfs_unlock_and_release_request(req);
Trond Myklebust4035c242012-07-08 10:24:10 -0400562 }
Trond Myklebust607f31e2006-06-28 16:52:45 -0400563
564 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500565 nfs_direct_write_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500566}
567
Fred Isaman1763da12012-04-20 14:47:57 -0400568static void nfs_direct_commit_complete(struct nfs_commit_data *data)
Trond Myklebustfad61492006-03-20 13:44:36 -0500569{
Trond Myklebust1f284762020-03-21 09:27:46 -0400570 const struct nfs_writeverf *verf = data->res.verf;
Fred Isaman0b7c0152012-04-20 14:47:39 -0400571 struct nfs_direct_req *dreq = data->dreq;
Fred Isaman1763da12012-04-20 14:47:57 -0400572 struct nfs_commit_info cinfo;
573 struct nfs_page *req;
Trond Myklebustc9d8f892008-04-15 16:56:39 -0400574 int status = data->task.tk_status;
575
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400576 if (status < 0) {
577 /* Errors in commit are fatal */
578 dreq->error = status;
579 dreq->max_count = 0;
580 dreq->count = 0;
581 dreq->flags = NFS_ODIRECT_DONE;
582 } else if (dreq->flags == NFS_ODIRECT_DONE)
583 status = dreq->error;
584
Fred Isaman1763da12012-04-20 14:47:57 -0400585 nfs_init_cinfo_from_dreq(&cinfo, dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500586
Fred Isaman1763da12012-04-20 14:47:57 -0400587 while (!list_empty(&data->pages)) {
588 req = nfs_list_entry(data->pages.next);
589 nfs_list_remove_request(req);
Trond Myklebust1f284762020-03-21 09:27:46 -0400590 if (status >= 0 && !nfs_write_match_verf(verf, req)) {
591 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
Trond Myklebust33344e02019-04-07 13:59:08 -0400592 /*
593 * Despite the reboot, the write was successful,
594 * so reset wb_nio.
595 */
596 req->wb_nio = 0;
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400597 nfs_mark_request_commit(req, NULL, &cinfo, 0);
Trond Myklebust1f284762020-03-21 09:27:46 -0400598 } else /* Error or match */
Fred Isaman906369e2012-06-08 16:48:33 -0400599 nfs_release_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400600 nfs_unlock_and_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400601 }
602
603 if (atomic_dec_and_test(&cinfo.mds->rpcs_out))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500604 nfs_direct_write_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500605}
606
Trond Myklebustb20135d2015-12-31 09:28:06 -0500607static void nfs_direct_resched_write(struct nfs_commit_info *cinfo,
608 struct nfs_page *req)
Fred Isaman1763da12012-04-20 14:47:57 -0400609{
Trond Myklebustb20135d2015-12-31 09:28:06 -0500610 struct nfs_direct_req *dreq = cinfo->dreq;
611
612 spin_lock(&dreq->lock);
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400613 if (dreq->flags != NFS_ODIRECT_DONE)
614 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
Trond Myklebustb20135d2015-12-31 09:28:06 -0500615 spin_unlock(&dreq->lock);
616 nfs_mark_request_commit(req, NULL, cinfo, 0);
Fred Isaman1763da12012-04-20 14:47:57 -0400617}
618
619static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops = {
620 .completion = nfs_direct_commit_complete,
Trond Myklebustb20135d2015-12-31 09:28:06 -0500621 .resched_write = nfs_direct_resched_write,
Trond Myklebustfad61492006-03-20 13:44:36 -0500622};
623
624static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq)
625{
Fred Isaman1763da12012-04-20 14:47:57 -0400626 int res;
627 struct nfs_commit_info cinfo;
628 LIST_HEAD(mds_list);
Trond Myklebustfad61492006-03-20 13:44:36 -0500629
Fred Isaman1763da12012-04-20 14:47:57 -0400630 nfs_init_cinfo_from_dreq(&cinfo, dreq);
631 nfs_scan_commit(dreq->inode, &mds_list, &cinfo);
632 res = nfs_generic_commit_list(dreq->inode, &mds_list, 0, &cinfo);
633 if (res < 0) /* res == -ENOMEM */
634 nfs_direct_write_reschedule(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500635}
636
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400637static void nfs_direct_write_clear_reqs(struct nfs_direct_req *dreq)
638{
639 struct nfs_commit_info cinfo;
640 struct nfs_page *req;
641 LIST_HEAD(reqs);
642
643 nfs_init_cinfo_from_dreq(&cinfo, dreq);
644 nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo);
645
646 while (!list_empty(&reqs)) {
647 req = nfs_list_entry(reqs.next);
648 nfs_list_remove_request(req);
649 nfs_unlock_and_release_request(req);
650 }
651}
652
Fred Isaman1763da12012-04-20 14:47:57 -0400653static void nfs_direct_write_schedule_work(struct work_struct *work)
Trond Myklebustfad61492006-03-20 13:44:36 -0500654{
Fred Isaman1763da12012-04-20 14:47:57 -0400655 struct nfs_direct_req *dreq = container_of(work, struct nfs_direct_req, work);
Trond Myklebustfad61492006-03-20 13:44:36 -0500656 int flags = dreq->flags;
657
658 dreq->flags = 0;
659 switch (flags) {
660 case NFS_ODIRECT_DO_COMMIT:
661 nfs_direct_commit_schedule(dreq);
662 break;
663 case NFS_ODIRECT_RESCHED_WRITES:
664 nfs_direct_write_reschedule(dreq);
665 break;
666 default:
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400667 nfs_direct_write_clear_reqs(dreq);
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400668 nfs_zap_mapping(dreq->inode, dreq->inode->i_mapping);
669 nfs_direct_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500670 }
671}
672
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500673static void nfs_direct_write_complete(struct nfs_direct_req *dreq)
Trond Myklebustfad61492006-03-20 13:44:36 -0500674{
NeilBrown46483c22018-08-08 09:20:02 +1000675 queue_work(nfsiod_workqueue, &dreq->work); /* Calls nfs_direct_write_schedule_work */
Trond Myklebustfad61492006-03-20 13:44:36 -0500676}
Fred Isaman1763da12012-04-20 14:47:57 -0400677
Fred Isaman1763da12012-04-20 14:47:57 -0400678static void nfs_direct_write_completion(struct nfs_pgio_header *hdr)
679{
680 struct nfs_direct_req *dreq = hdr->dreq;
681 struct nfs_commit_info cinfo;
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400682 bool request_commit = false;
Fred Isaman1763da12012-04-20 14:47:57 -0400683 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
684
Fred Isaman1763da12012-04-20 14:47:57 -0400685 nfs_init_cinfo_from_dreq(&cinfo, dreq);
686
687 spin_lock(&dreq->lock);
Trond Myklebusteb2c50d2019-08-12 18:04:36 -0400688 if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) {
689 spin_unlock(&dreq->lock);
690 goto out_put;
691 }
692
Trond Myklebust031d73e2019-09-30 14:02:56 -0400693 nfs_direct_count_bytes(dreq, hdr);
Trond Myklebust1f284762020-03-21 09:27:46 -0400694 if (hdr->good_bytes != 0 && nfs_write_need_commit(hdr)) {
695 switch (dreq->flags) {
696 case 0:
697 dreq->flags = NFS_ODIRECT_DO_COMMIT;
698 request_commit = true;
699 break;
700 case NFS_ODIRECT_RESCHED_WRITES:
701 case NFS_ODIRECT_DO_COMMIT:
702 request_commit = true;
Fred Isaman1763da12012-04-20 14:47:57 -0400703 }
704 }
705 spin_unlock(&dreq->lock);
706
707 while (!list_empty(&hdr->pages)) {
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400708
Fred Isaman1763da12012-04-20 14:47:57 -0400709 req = nfs_list_entry(hdr->pages.next);
710 nfs_list_remove_request(req);
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400711 if (request_commit) {
Trond Myklebust04277082012-05-09 13:54:53 -0400712 kref_get(&req->wb_kref);
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400713 nfs_mark_request_commit(req, hdr->lseg, &cinfo,
714 hdr->ds_commit_idx);
Fred Isaman1763da12012-04-20 14:47:57 -0400715 }
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400716 nfs_unlock_and_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400717 }
718
719out_put:
720 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500721 nfs_direct_write_complete(dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400722 hdr->release(hdr);
723}
724
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500725static void nfs_write_sync_pgio_error(struct list_head *head, int error)
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400726{
727 struct nfs_page *req;
728
729 while (!list_empty(head)) {
730 req = nfs_list_entry(head->next);
731 nfs_list_remove_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400732 nfs_unlock_and_release_request(req);
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400733 }
734}
735
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500736static void nfs_direct_write_reschedule_io(struct nfs_pgio_header *hdr)
737{
738 struct nfs_direct_req *dreq = hdr->dreq;
739
740 spin_lock(&dreq->lock);
741 if (dreq->error == 0) {
742 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
743 /* fake unstable write to let common nfs resend pages */
744 hdr->verf.committed = NFS_UNSTABLE;
Trond Myklebust4daaeba2020-01-06 15:25:14 -0500745 hdr->good_bytes = hdr->args.offset + hdr->args.count -
746 hdr->io_start;
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500747 }
748 spin_unlock(&dreq->lock);
749}
750
Fred Isaman1763da12012-04-20 14:47:57 -0400751static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops = {
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400752 .error_cleanup = nfs_write_sync_pgio_error,
Fred Isaman1763da12012-04-20 14:47:57 -0400753 .init_hdr = nfs_direct_pgio_init,
754 .completion = nfs_direct_write_completion,
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500755 .reschedule_io = nfs_direct_write_reschedule_io,
Fred Isaman1763da12012-04-20 14:47:57 -0400756};
757
Al Viro91f79c42014-03-21 04:58:33 -0400758
759/*
760 * NB: Return the value of the first error return code. Subsequent
761 * errors after the first one are ignored.
762 */
763/*
764 * For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE
765 * operation. If nfs_writedata_alloc() or get_user_pages() fails,
766 * bail and stop sending more writes. Write length accounting is
767 * handled automatically by nfs_direct_write_result(). Otherwise, if
768 * no requests have been sent, just return an error.
769 */
Chuck Lever19f73782007-11-12 12:16:47 -0500770static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq,
Al Viro619d30b2014-03-04 21:53:33 -0500771 struct iov_iter *iter,
Al Viro91f79c42014-03-21 04:58:33 -0400772 loff_t pos)
Chuck Lever19f73782007-11-12 12:16:47 -0500773{
Fred Isaman1763da12012-04-20 14:47:57 -0400774 struct nfs_pageio_descriptor desc;
Trond Myklebust1d59d612012-05-31 12:22:33 -0400775 struct inode *inode = dreq->inode;
Chuck Lever19f73782007-11-12 12:16:47 -0500776 ssize_t result = 0;
777 size_t requested_bytes = 0;
Al Viro91f79c42014-03-21 04:58:33 -0400778 size_t wsize = max_t(size_t, NFS_SERVER(inode)->wsize, PAGE_SIZE);
Chuck Lever19f73782007-11-12 12:16:47 -0500779
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200780 nfs_pageio_init_write(&desc, inode, FLUSH_COND_STABLE, false,
Fred Isaman1763da12012-04-20 14:47:57 -0400781 &nfs_direct_write_completion_ops);
782 desc.pg_dreq = dreq;
Chuck Lever19f73782007-11-12 12:16:47 -0500783 get_dreq(dreq);
Jens Axboefe0f07d2015-04-15 17:05:48 -0600784 inode_dio_begin(inode);
Chuck Lever19f73782007-11-12 12:16:47 -0500785
Al Viro91f79c42014-03-21 04:58:33 -0400786 NFS_I(inode)->write_io += iov_iter_count(iter);
787 while (iov_iter_count(iter)) {
788 struct page **pagevec;
789 size_t bytes;
790 size_t pgbase;
791 unsigned npages, i;
792
793 result = iov_iter_get_pages_alloc(iter, &pagevec,
794 wsize, &pgbase);
Chuck Lever19f73782007-11-12 12:16:47 -0500795 if (result < 0)
796 break;
Al Viro91f79c42014-03-21 04:58:33 -0400797
798 bytes = result;
799 iov_iter_advance(iter, bytes);
800 npages = (result + pgbase + PAGE_SIZE - 1) / PAGE_SIZE;
801 for (i = 0; i < npages; i++) {
802 struct nfs_page *req;
803 unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
804
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400805 req = nfs_create_request(dreq->ctx, pagevec[i],
Al Viro91f79c42014-03-21 04:58:33 -0400806 pgbase, req_len);
807 if (IS_ERR(req)) {
808 result = PTR_ERR(req);
809 break;
810 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400811
Peng Taod600ad12015-12-04 02:57:48 +0800812 if (desc.pg_error < 0) {
813 nfs_free_request(req);
814 result = desc.pg_error;
815 break;
816 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400817
Al Viro91f79c42014-03-21 04:58:33 -0400818 nfs_lock_request(req);
819 req->wb_index = pos >> PAGE_SHIFT;
820 req->wb_offset = pos & ~PAGE_MASK;
821 if (!nfs_pageio_add_request(&desc, req)) {
822 result = desc.pg_error;
823 nfs_unlock_and_release_request(req);
824 break;
825 }
826 pgbase = 0;
827 bytes -= req_len;
828 requested_bytes += req_len;
829 pos += req_len;
830 dreq->bytes_left -= req_len;
831 }
832 nfs_direct_release_pages(pagevec, npages);
833 kvfree(pagevec);
834 if (result < 0)
Chuck Lever19f73782007-11-12 12:16:47 -0500835 break;
Chuck Lever19f73782007-11-12 12:16:47 -0500836 }
Fred Isaman1763da12012-04-20 14:47:57 -0400837 nfs_pageio_complete(&desc);
Chuck Lever19f73782007-11-12 12:16:47 -0500838
Chuck Lever839f7ad2011-01-21 15:54:57 +0000839 /*
840 * If no bytes were started, return the error, and let the
841 * generic layer handle the completion.
842 */
843 if (requested_bytes == 0) {
Jens Axboefe0f07d2015-04-15 17:05:48 -0600844 inode_dio_end(inode);
Chuck Lever839f7ad2011-01-21 15:54:57 +0000845 nfs_direct_req_release(dreq);
846 return result < 0 ? result : -EIO;
847 }
848
Chuck Lever19f73782007-11-12 12:16:47 -0500849 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500850 nfs_direct_write_complete(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400851 return requested_bytes;
Chuck Lever19f73782007-11-12 12:16:47 -0500852}
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 * nfs_file_direct_write - file direct write operation for NFS files
856 * @iocb: target I/O control block
Al Viro619d30b2014-03-04 21:53:33 -0500857 * @iter: vector of user buffers from which to write data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 *
859 * We use this function for direct writes instead of calling
860 * generic_file_aio_write() in order to avoid taking the inode
861 * semaphore and updating the i_size. The NFS server will set
862 * the new i_size and this client must read the updated size
863 * back into its cache. We let the server do generic write
864 * parameter checking and report problems.
865 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 * We eliminate local atime updates, see direct read above.
867 *
868 * We avoid unnecessary page cache invalidations for normal cached
869 * readers of this file.
870 *
871 * Note that O_APPEND is not supported for NFS direct writes, as there
872 * is no atomic O_APPEND write facility in the NFS protocol.
873 */
Al Viro65a4a1c2015-04-09 14:11:08 -0400874ssize_t nfs_file_direct_write(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Al Viro85128b22017-04-13 09:31:51 -0400876 ssize_t result = -EINVAL, requested;
Trond Myklebust89698b22016-06-23 10:35:48 -0400877 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 struct address_space *mapping = file->f_mapping;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800880 struct inode *inode = mapping->host;
881 struct nfs_direct_req *dreq;
882 struct nfs_lock_context *l_ctx;
Al Viro65a4a1c2015-04-09 14:11:08 -0400883 loff_t pos, end;
Chuck Leverc216fd72007-11-12 12:16:52 -0500884
Al Viro6de14722013-09-16 10:53:17 -0400885 dfprintk(FILE, "NFS: direct write(%pD2, %zd@%Ld)\n",
Al Viro3309dd02015-04-09 12:55:47 -0400886 file, iov_iter_count(iter), (long long) iocb->ki_pos);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700887
Trond Myklebust89698b22016-06-23 10:35:48 -0400888 result = generic_write_checks(iocb, iter);
889 if (result <= 0)
890 return result;
891 count = result;
892 nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count);
Al Viro3309dd02015-04-09 12:55:47 -0400893
894 pos = iocb->ki_pos;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300895 end = (pos + iov_iter_count(iter) - 1) >> PAGE_SHIFT;
Chuck Leverce1a8e62005-11-30 18:08:17 -0500896
Trond Myklebust89698b22016-06-23 10:35:48 -0400897 task_io_account_write(count);
Konstantin Khlebnikov7ec10f22011-02-22 00:28:34 +0300898
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800899 result = -ENOMEM;
900 dreq = nfs_direct_req_alloc();
901 if (!dreq)
Trond Myklebusta5864c92016-06-03 17:07:19 -0400902 goto out;
Chuck Lever9eafa8c2006-03-20 13:44:33 -0500903
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800904 dreq->inode = inode;
Trond Myklebust89698b22016-06-23 10:35:48 -0400905 dreq->bytes_left = dreq->max_count = count;
Peng Tao5fadeb42015-01-19 12:41:16 +0800906 dreq->io_start = pos;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800907 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
908 l_ctx = nfs_get_lock_context(dreq->ctx);
909 if (IS_ERR(l_ctx)) {
910 result = PTR_ERR(l_ctx);
Misono Tomohiro8605cf02019-08-28 17:01:22 +0900911 nfs_direct_req_release(dreq);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800912 goto out_release;
Fred Isaman1763da12012-04-20 14:47:57 -0400913 }
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800914 dreq->l_ctx = l_ctx;
915 if (!is_sync_kiocb(iocb))
916 dreq->iocb = iocb;
Trond Myklebust9c455a82020-03-21 11:13:05 -0400917 pnfs_init_ds_commit_info_ops(&dreq->ds_cinfo, inode);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800918
Trond Myklebusta5864c92016-06-03 17:07:19 -0400919 nfs_start_io_direct(inode);
920
Al Viro85128b22017-04-13 09:31:51 -0400921 requested = nfs_direct_write_schedule_iovec(dreq, iter, pos);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -0800922
923 if (mapping->nrpages) {
924 invalidate_inode_pages2_range(mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300925 pos >> PAGE_SHIFT, end);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -0800926 }
927
Trond Myklebusta5864c92016-06-03 17:07:19 -0400928 nfs_end_io_direct(inode);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -0800929
Al Viro85128b22017-04-13 09:31:51 -0400930 if (requested > 0) {
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800931 result = nfs_direct_wait(dreq);
932 if (result > 0) {
Al Viro85128b22017-04-13 09:31:51 -0400933 requested -= result;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800934 iocb->ki_pos = pos + result;
Christoph Hellwige2592212016-04-07 08:52:01 -0700935 /* XXX: should check the generic_write_sync retval */
936 generic_write_sync(iocb, result);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800937 }
Al Viro85128b22017-04-13 09:31:51 -0400938 iov_iter_revert(iter, requested);
939 } else {
940 result = requested;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800941 }
942out_release:
943 nfs_direct_req_release(dreq);
Trond Myklebusta5864c92016-06-03 17:07:19 -0400944out:
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800945 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Chuck Lever88467052006-03-20 13:44:34 -0500948/**
949 * nfs_init_directcache - create a slab cache for nfs_direct_req structures
950 *
951 */
David Howellsf7b422b2006-06-09 09:34:33 -0400952int __init nfs_init_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
955 sizeof(struct nfs_direct_req),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800956 0, (SLAB_RECLAIM_ACCOUNT|
957 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900958 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (nfs_direct_cachep == NULL)
960 return -ENOMEM;
961
962 return 0;
963}
964
Chuck Lever88467052006-03-20 13:44:34 -0500965/**
David Howellsf7b422b2006-06-09 09:34:33 -0400966 * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures
Chuck Lever88467052006-03-20 13:44:34 -0500967 *
968 */
David Brownell266bee82006-06-27 12:59:15 -0700969void nfs_destroy_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700971 kmem_cache_destroy(nfs_direct_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}