blob: 0cb44240616889f62616f7804be7dd909c3b9de1 [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
67/*
68 * This represents a set of asynchronous requests that we're waiting on
69 */
Weston Andros Adamson0a00b772014-09-19 12:48:33 -040070struct nfs_direct_mirror {
71 ssize_t count;
72};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074struct nfs_direct_req {
75 struct kref kref; /* release manager */
Chuck Lever15ce4a02006-03-20 13:44:34 -050076
77 /* I/O parameters */
Trond Myklebusta8881f52006-03-20 13:44:36 -050078 struct nfs_open_context *ctx; /* file open context info */
Trond Myklebustf11ac8d2010-06-25 16:35:53 -040079 struct nfs_lock_context *l_ctx; /* Lock context info */
Chuck Lever99514f82006-03-20 13:44:30 -050080 struct kiocb * iocb; /* controlling i/o request */
Chuck Lever88467052006-03-20 13:44:34 -050081 struct inode * inode; /* target file of i/o */
Chuck Lever15ce4a02006-03-20 13:44:34 -050082
83 /* completion state */
Trond Myklebust607f31e2006-06-28 16:52:45 -040084 atomic_t io_count; /* i/os we're waiting for */
Chuck Lever15ce4a02006-03-20 13:44:34 -050085 spinlock_t lock; /* protect completion state */
Weston Andros Adamson0a00b772014-09-19 12:48:33 -040086
87 struct nfs_direct_mirror mirrors[NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX];
88 int mirror_count;
89
Trond Myklebustd9ee6552018-03-06 12:47:08 -050090 loff_t io_start; /* Start offset for I/O */
Chuck Lever15ce4a02006-03-20 13:44:34 -050091 ssize_t count, /* bytes actually processed */
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -040092 max_count, /* max expected count */
Peng Tao35754bc2012-09-25 14:55:57 +080093 bytes_left, /* bytes left to be sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 error; /* any reported error */
Trond Myklebustd72b7a62006-03-20 13:44:43 -050095 struct completion completion; /* wait for i/o completion */
Trond Myklebustfad61492006-03-20 13:44:36 -050096
97 /* commit state */
Fred Isaman1763da12012-04-20 14:47:57 -040098 struct nfs_mds_commit_info mds_cinfo; /* Storage for cinfo */
99 struct pnfs_ds_commit_info ds_cinfo; /* Storage for cinfo */
100 struct work_struct work;
Trond Myklebustfad61492006-03-20 13:44:36 -0500101 int flags;
Dave Kleikampad3cba22018-11-27 19:31:30 +0000102 /* for write */
Trond Myklebustfad61492006-03-20 13:44:36 -0500103#define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */
104#define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */
Dave Kleikampad3cba22018-11-27 19:31:30 +0000105 /* for read */
106#define NFS_ODIRECT_SHOULD_DIRTY (3) /* dirty user-space page after read */
Trond Myklebustfad61492006-03-20 13:44:36 -0500107 struct nfs_writeverf verf; /* unstable write verifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Fred Isaman1763da12012-04-20 14:47:57 -0400110static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops;
111static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops;
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500112static void nfs_direct_write_complete(struct nfs_direct_req *dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400113static void nfs_direct_write_schedule_work(struct work_struct *work);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400114
115static inline void get_dreq(struct nfs_direct_req *dreq)
116{
117 atomic_inc(&dreq->io_count);
118}
119
120static inline int put_dreq(struct nfs_direct_req *dreq)
121{
122 return atomic_dec_and_test(&dreq->io_count);
123}
124
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400125static void
126nfs_direct_good_bytes(struct nfs_direct_req *dreq, struct nfs_pgio_header *hdr)
127{
128 int i;
129 ssize_t count;
130
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -0400131 WARN_ON_ONCE(dreq->count >= dreq->max_count);
132
Peng Tao1ccbad92015-04-09 23:02:16 +0800133 if (dreq->mirror_count == 1) {
134 dreq->mirrors[hdr->pgio_mirror_idx].count += hdr->good_bytes;
135 dreq->count += hdr->good_bytes;
136 } else {
137 /* mirrored writes */
138 count = dreq->mirrors[hdr->pgio_mirror_idx].count;
139 if (count + dreq->io_start < hdr->io_start + hdr->good_bytes) {
140 count = hdr->io_start + hdr->good_bytes - dreq->io_start;
141 dreq->mirrors[hdr->pgio_mirror_idx].count = count;
142 }
143 /* update the dreq->count by finding the minimum agreed count from all
144 * mirrors */
145 count = dreq->mirrors[0].count;
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400146
Peng Tao1ccbad92015-04-09 23:02:16 +0800147 for (i = 1; i < dreq->mirror_count; i++)
148 count = min(count, dreq->mirrors[i].count);
149
150 dreq->count = count;
Peng Tao5fadeb42015-01-19 12:41:16 +0800151 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400152}
153
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400154/*
155 * nfs_direct_select_verf - select the right verifier
156 * @dreq - direct request possibly spanning multiple servers
157 * @ds_clp - nfs_client of data server or NULL if MDS / non-pnfs
Weston Andros Adamson6cccbb62014-09-16 17:35:51 -0400158 * @commit_idx - commit bucket index for the DS
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400159 *
160 * returns the correct verifier to use given the role of the server
161 */
162static struct nfs_writeverf *
163nfs_direct_select_verf(struct nfs_direct_req *dreq,
164 struct nfs_client *ds_clp,
Weston Andros Adamson6cccbb62014-09-16 17:35:51 -0400165 int commit_idx)
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400166{
167 struct nfs_writeverf *verfp = &dreq->verf;
168
169#ifdef CONFIG_NFS_V4_1
Kinglong Mee834e4652015-09-22 06:54:47 +0800170 /*
171 * pNFS is in use, use the DS verf except commit_through_mds is set
172 * for layout segment where nbuckets is zero.
173 */
174 if (ds_clp && dreq->ds_cinfo.nbuckets > 0) {
Weston Andros Adamson6cccbb62014-09-16 17:35:51 -0400175 if (commit_idx >= 0 && commit_idx < dreq->ds_cinfo.nbuckets)
176 verfp = &dreq->ds_cinfo.buckets[commit_idx].direct_verf;
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400177 else
178 WARN_ON_ONCE(1);
179 }
180#endif
181 return verfp;
182}
183
184
185/*
186 * nfs_direct_set_hdr_verf - set the write/commit verifier
187 * @dreq - direct request possibly spanning multiple servers
188 * @hdr - pageio header to validate against previously seen verfs
189 *
190 * Set the server's (MDS or DS) "seen" verifier
191 */
192static void nfs_direct_set_hdr_verf(struct nfs_direct_req *dreq,
193 struct nfs_pgio_header *hdr)
194{
195 struct nfs_writeverf *verfp;
196
Weston Andros Adamson6cccbb62014-09-16 17:35:51 -0400197 verfp = nfs_direct_select_verf(dreq, hdr->ds_clp, hdr->ds_commit_idx);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400198 WARN_ON_ONCE(verfp->committed >= 0);
199 memcpy(verfp, &hdr->verf, sizeof(struct nfs_writeverf));
200 WARN_ON_ONCE(verfp->committed < 0);
201}
202
Trond Myklebust8fc3c382016-06-01 21:32:24 -0400203static int nfs_direct_cmp_verf(const struct nfs_writeverf *v1,
204 const struct nfs_writeverf *v2)
205{
206 return nfs_write_verifier_cmp(&v1->verifier, &v2->verifier);
207}
208
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400209/*
210 * nfs_direct_cmp_hdr_verf - compare verifier for pgio header
211 * @dreq - direct request possibly spanning multiple servers
212 * @hdr - pageio header to validate against previously seen verf
213 *
214 * set the server's "seen" verf if not initialized.
215 * returns result of comparison between @hdr->verf and the "seen"
216 * verf of the server used by @hdr (DS or MDS)
217 */
218static int nfs_direct_set_or_cmp_hdr_verf(struct nfs_direct_req *dreq,
219 struct nfs_pgio_header *hdr)
220{
221 struct nfs_writeverf *verfp;
222
Weston Andros Adamson6cccbb62014-09-16 17:35:51 -0400223 verfp = nfs_direct_select_verf(dreq, hdr->ds_clp, hdr->ds_commit_idx);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400224 if (verfp->committed < 0) {
225 nfs_direct_set_hdr_verf(dreq, hdr);
226 return 0;
227 }
Trond Myklebust8fc3c382016-06-01 21:32:24 -0400228 return nfs_direct_cmp_verf(verfp, &hdr->verf);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400229}
230
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400231/*
232 * nfs_direct_cmp_commit_data_verf - compare verifier for commit data
233 * @dreq - direct request possibly spanning multiple servers
234 * @data - commit data to validate against previously seen verf
235 *
236 * returns result of comparison between @data->verf and the verf of
237 * the server used by @data (DS or MDS)
238 */
239static int nfs_direct_cmp_commit_data_verf(struct nfs_direct_req *dreq,
240 struct nfs_commit_data *data)
241{
242 struct nfs_writeverf *verfp;
243
244 verfp = nfs_direct_select_verf(dreq, data->ds_clp,
245 data->ds_commit_index);
Weston Andros Adamson80c76fe2014-10-01 12:58:25 -0400246
247 /* verifier not set so always fail */
248 if (verfp->committed < 0)
249 return 1;
250
Trond Myklebust8fc3c382016-06-01 21:32:24 -0400251 return nfs_direct_cmp_verf(verfp, &data->verf);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400252}
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/**
Chuck Leverb8a32e22006-03-20 13:44:28 -0500255 * nfs_direct_IO - NFS address space operation for direct I/O
Chuck Leverb8a32e22006-03-20 13:44:28 -0500256 * @iocb: target I/O control block
Al Viro90090ae2016-05-29 19:05:03 -0400257 * @iter: I/O buffer
Chuck Leverb8a32e22006-03-20 13:44:28 -0500258 *
259 * The presence of this routine in the address space ops vector means
Mel Gormana564b8f2012-07-31 16:45:12 -0700260 * the NFS client supports direct I/O. However, for most direct IO, we
261 * shunt off direct read and write requests before the VFS gets them,
262 * so this method is only ever called for swap.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700264ssize_t nfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chuck Leverb8a32e22006-03-20 13:44:28 -0500265{
Peng Taoee8a1a82015-01-20 07:44:29 +0800266 struct inode *inode = iocb->ki_filp->f_mapping->host;
267
268 /* we only support swap file calling nfs_direct_IO */
269 if (!IS_SWAPFILE(inode))
270 return 0;
271
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100272 VM_BUG_ON(iov_iter_count(iter) != PAGE_SIZE);
Mel Gormana564b8f2012-07-31 16:45:12 -0700273
Omar Sandoval6f673762015-03-16 04:33:52 -0700274 if (iov_iter_rw(iter) == READ)
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700275 return nfs_file_direct_read(iocb, iter);
Al Viro65a4a1c2015-04-09 14:11:08 -0400276 return nfs_file_direct_write(iocb, iter);
Chuck Leverb8a32e22006-03-20 13:44:28 -0500277}
278
Chuck Lever749e1462007-05-19 17:22:46 -0400279static void nfs_direct_release_pages(struct page **pages, unsigned int npages)
Chuck Lever9c93ab72006-06-20 12:56:31 -0400280{
Chuck Lever749e1462007-05-19 17:22:46 -0400281 unsigned int i;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400282 for (i = 0; i < npages; i++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300283 put_page(pages[i]);
Trond Myklebust6b45d852006-03-20 13:44:43 -0500284}
285
Fred Isaman1763da12012-04-20 14:47:57 -0400286void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo,
287 struct nfs_direct_req *dreq)
288{
Dave Wysochanskife238e62016-04-01 13:45:09 -0400289 cinfo->inode = dreq->inode;
Fred Isaman1763da12012-04-20 14:47:57 -0400290 cinfo->mds = &dreq->mds_cinfo;
291 cinfo->ds = &dreq->ds_cinfo;
292 cinfo->dreq = dreq;
293 cinfo->completion_ops = &nfs_direct_commit_completion_ops;
294}
295
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400296static inline void nfs_direct_setup_mirroring(struct nfs_direct_req *dreq,
297 struct nfs_pageio_descriptor *pgio,
298 struct nfs_page *req)
299{
300 int mirror_count = 1;
301
302 if (pgio->pg_ops->pg_get_mirror_count)
303 mirror_count = pgio->pg_ops->pg_get_mirror_count(pgio, req);
304
305 dreq->mirror_count = mirror_count;
306}
307
Chuck Lever93619e52006-03-20 13:44:31 -0500308static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct nfs_direct_req *dreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Trond Myklebust292f3ee2012-04-30 18:31:49 -0400312 dreq = kmem_cache_zalloc(nfs_direct_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!dreq)
314 return NULL;
315
316 kref_init(&dreq->kref);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400317 kref_get(&dreq->kref);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500318 init_completion(&dreq->completion);
Fred Isaman1763da12012-04-20 14:47:57 -0400319 INIT_LIST_HEAD(&dreq->mds_cinfo.list);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400320 dreq->verf.committed = NFS_INVALID_STABLE_HOW; /* not set yet */
Fred Isaman1763da12012-04-20 14:47:57 -0400321 INIT_WORK(&dreq->work, nfs_direct_write_schedule_work);
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400322 dreq->mirror_count = 1;
Chuck Lever15ce4a02006-03-20 13:44:34 -0500323 spin_lock_init(&dreq->lock);
Chuck Lever93619e52006-03-20 13:44:31 -0500324
325 return dreq;
326}
327
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400328static void nfs_direct_req_free(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500331
Peng Tao8c393f92014-11-05 22:36:50 +0800332 nfs_free_pnfs_ds_cinfo(&dreq->ds_cinfo);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400333 if (dreq->l_ctx != NULL)
334 nfs_put_lock_context(dreq->l_ctx);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500335 if (dreq->ctx != NULL)
336 put_nfs_open_context(dreq->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 kmem_cache_free(nfs_direct_cachep, dreq);
338}
339
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400340static void nfs_direct_req_release(struct nfs_direct_req *dreq)
341{
342 kref_put(&dreq->kref, nfs_direct_req_free);
343}
344
Peng Tao62965562012-09-25 14:55:57 +0800345ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq)
346{
347 return dreq->bytes_left;
348}
349EXPORT_SYMBOL_GPL(nfs_dreq_bytes_left);
350
Chuck Leverd4cc9482006-03-20 13:44:28 -0500351/*
Chuck Leverbc0fb202006-03-20 13:44:31 -0500352 * Collects and returns the final error value/byte-count.
353 */
354static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
355{
Chuck Lever15ce4a02006-03-20 13:44:34 -0500356 ssize_t result = -EIOCBQUEUED;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500357
358 /* Async requests don't wait here */
359 if (dreq->iocb)
360 goto out;
361
Matthew Wilcox150030b2007-12-06 16:24:39 -0500362 result = wait_for_completion_killable(&dreq->completion);
Chuck Leverbc0fb202006-03-20 13:44:31 -0500363
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400364 if (!result) {
365 result = dreq->count;
366 WARN_ON_ONCE(dreq->count < 0);
367 }
Chuck Leverbc0fb202006-03-20 13:44:31 -0500368 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500369 result = dreq->error;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500370
371out:
Chuck Leverbc0fb202006-03-20 13:44:31 -0500372 return (ssize_t) result;
373}
374
375/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400376 * Synchronous I/O uses a stack-allocated iocb. Thus we can't trust
377 * the iocb is still valid here if this is a synchronous request.
Chuck Lever63ab46a2006-03-20 13:44:31 -0500378 */
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400379static void nfs_direct_complete(struct nfs_direct_req *dreq)
Chuck Lever63ab46a2006-03-20 13:44:31 -0500380{
Christoph Hellwig9811cd52013-11-14 08:50:28 -0800381 struct inode *inode = dreq->inode;
382
Jens Axboefe0f07d2015-04-15 17:05:48 -0600383 inode_dio_end(inode);
Christoph Hellwig2a009ec2013-11-14 08:50:29 -0800384
385 if (dreq->iocb) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500386 long res = (long) dreq->error;
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400387 if (dreq->count != 0) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500388 res = (long) dreq->count;
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400389 WARN_ON_ONCE(dreq->count < 0);
390 }
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100391 dreq->iocb->ki_complete(dreq->iocb, res, 0);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500392 }
Christoph Hellwig2a009ec2013-11-14 08:50:29 -0800393
Daniel Wagner024de8f2016-09-22 13:54:28 +0200394 complete(&dreq->completion);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500395
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400396 nfs_direct_req_release(dreq);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500397}
398
Fred Isaman584aa812012-04-20 14:47:51 -0400399static void nfs_direct_read_completion(struct nfs_pgio_header *hdr)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400400{
Fred Isaman584aa812012-04-20 14:47:51 -0400401 unsigned long bytes = 0;
402 struct nfs_direct_req *dreq = hdr->dreq;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400403
Fred Isaman584aa812012-04-20 14:47:51 -0400404 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
405 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Chuck Lever15ce4a02006-03-20 13:44:34 -0500407 spin_lock(&dreq->lock);
Fred Isaman584aa812012-04-20 14:47:51 -0400408 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) && (hdr->good_bytes == 0))
409 dreq->error = hdr->error;
410 else
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400411 nfs_direct_good_bytes(dreq, hdr);
412
Fred Isaman584aa812012-04-20 14:47:51 -0400413 spin_unlock(&dreq->lock);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400414
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400415 while (!list_empty(&hdr->pages)) {
416 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
417 struct page *page = req->wb_page;
Fred Isaman584aa812012-04-20 14:47:51 -0400418
Dave Kleikampad3cba22018-11-27 19:31:30 +0000419 if (!PageCompound(page) && bytes < hdr->good_bytes &&
420 (dreq->flags == NFS_ODIRECT_SHOULD_DIRTY))
Jeff Laytonbe7e9852012-12-12 12:36:31 -0500421 set_page_dirty(page);
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400422 bytes += req->wb_bytes;
423 nfs_list_remove_request(req);
Anna Schumakerbeeb5332017-04-07 14:15:07 -0400424 nfs_release_request(req);
Fred Isaman584aa812012-04-20 14:47:51 -0400425 }
426out_put:
Trond Myklebust607f31e2006-06-28 16:52:45 -0400427 if (put_dreq(dreq))
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400428 nfs_direct_complete(dreq);
Fred Isaman584aa812012-04-20 14:47:51 -0400429 hdr->release(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500432static void nfs_read_sync_pgio_error(struct list_head *head, int error)
Fred Isamancd841602012-04-20 14:47:44 -0400433{
Fred Isaman584aa812012-04-20 14:47:51 -0400434 struct nfs_page *req;
Fred Isamancd841602012-04-20 14:47:44 -0400435
Fred Isaman584aa812012-04-20 14:47:51 -0400436 while (!list_empty(head)) {
437 req = nfs_list_entry(head->next);
438 nfs_list_remove_request(req);
439 nfs_release_request(req);
440 }
Fred Isamancd841602012-04-20 14:47:44 -0400441}
442
Fred Isaman584aa812012-04-20 14:47:51 -0400443static void nfs_direct_pgio_init(struct nfs_pgio_header *hdr)
444{
445 get_dreq(hdr->dreq);
446}
447
448static const struct nfs_pgio_completion_ops nfs_direct_read_completion_ops = {
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400449 .error_cleanup = nfs_read_sync_pgio_error,
Fred Isaman584aa812012-04-20 14:47:51 -0400450 .init_hdr = nfs_direct_pgio_init,
451 .completion = nfs_direct_read_completion,
452};
453
Chuck Leverd4cc9482006-03-20 13:44:28 -0500454/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400455 * For each rsize'd chunk of the user's buffer, dispatch an NFS READ
456 * operation. If nfs_readdata_alloc() or get_user_pages() fails,
457 * bail and stop sending more reads. Read length accounting is
458 * handled automatically by nfs_direct_read_result(). Otherwise, if
459 * no requests have been sent, just return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
Al Viro91f79c42014-03-21 04:58:33 -0400461
462static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq,
463 struct iov_iter *iter,
464 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Al Viro91f79c42014-03-21 04:58:33 -0400466 struct nfs_pageio_descriptor desc;
467 struct inode *inode = dreq->inode;
468 ssize_t result = -EINVAL;
469 size_t requested_bytes = 0;
470 size_t rsize = max_t(size_t, NFS_SERVER(inode)->rsize, PAGE_SIZE);
Chuck Lever82b145c2006-06-20 12:57:03 -0400471
Linus Torvalds16b90572014-06-12 10:30:18 -0700472 nfs_pageio_init_read(&desc, dreq->inode, false,
Al Viro91f79c42014-03-21 04:58:33 -0400473 &nfs_direct_read_completion_ops);
474 get_dreq(dreq);
475 desc.pg_dreq = dreq;
Jens Axboefe0f07d2015-04-15 17:05:48 -0600476 inode_dio_begin(inode);
Al Viro91f79c42014-03-21 04:58:33 -0400477
478 while (iov_iter_count(iter)) {
479 struct page **pagevec;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500480 size_t bytes;
Al Viro91f79c42014-03-21 04:58:33 -0400481 size_t pgbase;
482 unsigned npages, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Al Viro91f79c42014-03-21 04:58:33 -0400484 result = iov_iter_get_pages_alloc(iter, &pagevec,
485 rsize, &pgbase);
486 if (result < 0)
Trond Myklebust607f31e2006-06-28 16:52:45 -0400487 break;
Al Viro91f79c42014-03-21 04:58:33 -0400488
489 bytes = result;
490 iov_iter_advance(iter, bytes);
491 npages = (result + pgbase + PAGE_SIZE - 1) / PAGE_SIZE;
Fred Isaman584aa812012-04-20 14:47:51 -0400492 for (i = 0; i < npages; i++) {
493 struct nfs_page *req;
Trond Myklebustbf5fc402012-05-04 13:47:16 -0400494 unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
Fred Isaman584aa812012-04-20 14:47:51 -0400495 /* XXX do we need to do the eof zeroing found in async_filler? */
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400496 req = nfs_create_request(dreq->ctx, pagevec[i],
Fred Isaman584aa812012-04-20 14:47:51 -0400497 pgbase, req_len);
498 if (IS_ERR(req)) {
Fred Isaman584aa812012-04-20 14:47:51 -0400499 result = PTR_ERR(req);
500 break;
501 }
502 req->wb_index = pos >> PAGE_SHIFT;
503 req->wb_offset = pos & ~PAGE_MASK;
Al Viro91f79c42014-03-21 04:58:33 -0400504 if (!nfs_pageio_add_request(&desc, req)) {
505 result = desc.pg_error;
Fred Isaman584aa812012-04-20 14:47:51 -0400506 nfs_release_request(req);
Fred Isaman584aa812012-04-20 14:47:51 -0400507 break;
508 }
509 pgbase = 0;
510 bytes -= req_len;
Al Viro91f79c42014-03-21 04:58:33 -0400511 requested_bytes += req_len;
Fred Isaman584aa812012-04-20 14:47:51 -0400512 pos += req_len;
Peng Tao35754bc2012-09-25 14:55:57 +0800513 dreq->bytes_left -= req_len;
Fred Isaman584aa812012-04-20 14:47:51 -0400514 }
Trond Myklebust6d747432012-04-30 13:27:31 -0400515 nfs_direct_release_pages(pagevec, npages);
Al Viro91f79c42014-03-21 04:58:33 -0400516 kvfree(pagevec);
Chuck Lever19f73782007-11-12 12:16:47 -0500517 if (result < 0)
518 break;
Chuck Lever19f73782007-11-12 12:16:47 -0500519 }
520
Fred Isaman584aa812012-04-20 14:47:51 -0400521 nfs_pageio_complete(&desc);
522
Chuck Lever839f7ad2011-01-21 15:54:57 +0000523 /*
524 * If no bytes were started, return the error, and let the
525 * generic layer handle the completion.
526 */
527 if (requested_bytes == 0) {
Jens Axboefe0f07d2015-04-15 17:05:48 -0600528 inode_dio_end(inode);
Chuck Lever839f7ad2011-01-21 15:54:57 +0000529 nfs_direct_req_release(dreq);
530 return result < 0 ? result : -EIO;
531 }
532
Chuck Lever19f73782007-11-12 12:16:47 -0500533 if (put_dreq(dreq))
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400534 nfs_direct_complete(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400535 return requested_bytes;
Chuck Lever19f73782007-11-12 12:16:47 -0500536}
537
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800538/**
539 * nfs_file_direct_read - file direct read operation for NFS files
540 * @iocb: target I/O control block
Al Viro619d30b2014-03-04 21:53:33 -0500541 * @iter: vector of user buffers into which to read data
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800542 *
543 * We use this function for direct reads instead of calling
544 * generic_file_aio_read() in order to avoid gfar's check to see if
545 * the request starts before the end of the file. For that check
546 * to work, we must generate a GETATTR before each direct read, and
547 * even then there is a window between the GETATTR and the subsequent
548 * READ where the file size could change. Our preference is simply
549 * to do all reads the application wants, and the server will take
550 * care of managing the end of file boundary.
551 *
552 * This function also eliminates unnecessarily updating the file's
553 * atime locally, as the NFS server sets the file's atime, and this
554 * client must read the updated atime from the server back into its
555 * cache.
556 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700557ssize_t nfs_file_direct_read(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800559 struct file *file = iocb->ki_filp;
560 struct address_space *mapping = file->f_mapping;
561 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct nfs_direct_req *dreq;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400563 struct nfs_lock_context *l_ctx;
Al Viro85128b22017-04-13 09:31:51 -0400564 ssize_t result = -EINVAL, requested;
Al Viroa6cbcd42014-03-04 22:38:00 -0500565 size_t count = iov_iter_count(iter);
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800566 nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count);
567
568 dfprintk(FILE, "NFS: direct read(%pD2, %zd@%Ld)\n",
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700569 file, count, (long long) iocb->ki_pos);
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800570
571 result = 0;
572 if (!count)
573 goto out;
574
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800575 task_io_account_read(count);
576
577 result = -ENOMEM;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400578 dreq = nfs_direct_req_alloc();
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400579 if (dreq == NULL)
Trond Myklebusta5864c92016-06-03 17:07:19 -0400580 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Chuck Lever91d5b472006-03-20 13:44:14 -0500582 dreq->inode = inode;
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -0400583 dreq->bytes_left = dreq->max_count = count;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700584 dreq->io_start = iocb->ki_pos;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400585 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400586 l_ctx = nfs_get_lock_context(dreq->ctx);
587 if (IS_ERR(l_ctx)) {
588 result = PTR_ERR(l_ctx);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400589 goto out_release;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400590 }
591 dreq->l_ctx = l_ctx;
Chuck Lever487b8372006-03-20 13:44:30 -0500592 if (!is_sync_kiocb(iocb))
593 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Dave Kleikampad3cba22018-11-27 19:31:30 +0000595 if (iter_is_iovec(iter))
596 dreq->flags = NFS_ODIRECT_SHOULD_DIRTY;
597
Trond Myklebusta5864c92016-06-03 17:07:19 -0400598 nfs_start_io_direct(inode);
599
Al Viro619d30b2014-03-04 21:53:33 -0500600 NFS_I(inode)->read_io += count;
Al Viro85128b22017-04-13 09:31:51 -0400601 requested = nfs_direct_read_schedule_iovec(dreq, iter, iocb->ki_pos);
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800602
Trond Myklebusta5864c92016-06-03 17:07:19 -0400603 nfs_end_io_direct(inode);
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800604
Al Viro85128b22017-04-13 09:31:51 -0400605 if (requested > 0) {
Trond Myklebust607f31e2006-06-28 16:52:45 -0400606 result = nfs_direct_wait(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400607 if (result > 0) {
608 requested -= result;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700609 iocb->ki_pos += result;
Al Viro85128b22017-04-13 09:31:51 -0400610 }
611 iov_iter_revert(iter, requested);
612 } else {
613 result = requested;
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800614 }
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800615
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400616out_release:
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400617 nfs_direct_req_release(dreq);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400618out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return result;
620}
621
Tom Haynes085d1e32014-12-11 13:04:55 -0500622static void
623nfs_direct_write_scan_commit_list(struct inode *inode,
624 struct list_head *list,
625 struct nfs_commit_info *cinfo)
626{
Trond Myklebuste824f992017-08-01 11:53:49 -0400627 mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
Tom Haynes085d1e32014-12-11 13:04:55 -0500628#ifdef CONFIG_NFS_V4_1
629 if (cinfo->ds != NULL && cinfo->ds->nwritten != 0)
630 NFS_SERVER(inode)->pnfs_curr_ld->recover_commit_reqs(list, cinfo);
631#endif
632 nfs_scan_commit_list(&cinfo->mds->list, list, cinfo, 0);
Trond Myklebuste824f992017-08-01 11:53:49 -0400633 mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
Tom Haynes085d1e32014-12-11 13:04:55 -0500634}
635
Trond Myklebustfad61492006-03-20 13:44:36 -0500636static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Fred Isaman1763da12012-04-20 14:47:57 -0400638 struct nfs_pageio_descriptor desc;
639 struct nfs_page *req, *tmp;
640 LIST_HEAD(reqs);
641 struct nfs_commit_info cinfo;
642 LIST_HEAD(failed);
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400643 int i;
Fred Isaman1763da12012-04-20 14:47:57 -0400644
645 nfs_init_cinfo_from_dreq(&cinfo, dreq);
Tom Haynes085d1e32014-12-11 13:04:55 -0500646 nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Trond Myklebustfad61492006-03-20 13:44:36 -0500648 dreq->count = 0;
Trond Myklebusta5314a72016-06-01 21:42:32 -0400649 dreq->verf.committed = NFS_INVALID_STABLE_HOW;
650 nfs_clear_pnfs_ds_commit_verifiers(&dreq->ds_cinfo);
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400651 for (i = 0; i < dreq->mirror_count; i++)
652 dreq->mirrors[i].count = 0;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400653 get_dreq(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500654
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200655 nfs_pageio_init_write(&desc, dreq->inode, FLUSH_STABLE, false,
Fred Isaman1763da12012-04-20 14:47:57 -0400656 &nfs_direct_write_completion_ops);
657 desc.pg_dreq = dreq;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400658
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400659 req = nfs_list_entry(reqs.next);
660 nfs_direct_setup_mirroring(dreq, &desc, req);
Peng Taod600ad12015-12-04 02:57:48 +0800661 if (desc.pg_error < 0) {
662 list_splice_init(&reqs, &failed);
663 goto out_failed;
664 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400665
Fred Isaman1763da12012-04-20 14:47:57 -0400666 list_for_each_entry_safe(req, tmp, &reqs, wb_list) {
Trond Myklebust33344e02019-04-07 13:59:08 -0400667 /* Bump the transmission count */
668 req->wb_nio++;
Fred Isaman1763da12012-04-20 14:47:57 -0400669 if (!nfs_pageio_add_request(&desc, req)) {
Trond Myklebust078b5fd2019-02-18 11:35:54 -0500670 nfs_list_move_request(req, &failed);
Dave Wysochanskife238e62016-04-01 13:45:09 -0400671 spin_lock(&cinfo.inode->i_lock);
Fred Isaman1763da12012-04-20 14:47:57 -0400672 dreq->flags = 0;
Peng Taod600ad12015-12-04 02:57:48 +0800673 if (desc.pg_error < 0)
674 dreq->error = desc.pg_error;
675 else
676 dreq->error = -EIO;
Dave Wysochanskife238e62016-04-01 13:45:09 -0400677 spin_unlock(&cinfo.inode->i_lock);
Fred Isaman1763da12012-04-20 14:47:57 -0400678 }
Trond Myklebust5a695da2012-06-19 13:39:14 -0400679 nfs_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400680 }
681 nfs_pageio_complete(&desc);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400682
Peng Taod600ad12015-12-04 02:57:48 +0800683out_failed:
Trond Myklebust4035c242012-07-08 10:24:10 -0400684 while (!list_empty(&failed)) {
685 req = nfs_list_entry(failed.next);
686 nfs_list_remove_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400687 nfs_unlock_and_release_request(req);
Trond Myklebust4035c242012-07-08 10:24:10 -0400688 }
Trond Myklebust607f31e2006-06-28 16:52:45 -0400689
690 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500691 nfs_direct_write_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500692}
693
Fred Isaman1763da12012-04-20 14:47:57 -0400694static void nfs_direct_commit_complete(struct nfs_commit_data *data)
Trond Myklebustfad61492006-03-20 13:44:36 -0500695{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400696 struct nfs_direct_req *dreq = data->dreq;
Fred Isaman1763da12012-04-20 14:47:57 -0400697 struct nfs_commit_info cinfo;
698 struct nfs_page *req;
Trond Myklebustc9d8f892008-04-15 16:56:39 -0400699 int status = data->task.tk_status;
700
Fred Isaman1763da12012-04-20 14:47:57 -0400701 nfs_init_cinfo_from_dreq(&cinfo, dreq);
Anna Schumakerfe4f8442017-04-07 14:15:08 -0400702 if (status < 0 || nfs_direct_cmp_commit_data_verf(dreq, data))
Trond Myklebustfad61492006-03-20 13:44:36 -0500703 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
Trond Myklebustfad61492006-03-20 13:44:36 -0500704
Fred Isaman1763da12012-04-20 14:47:57 -0400705 while (!list_empty(&data->pages)) {
706 req = nfs_list_entry(data->pages.next);
707 nfs_list_remove_request(req);
708 if (dreq->flags == NFS_ODIRECT_RESCHED_WRITES) {
Trond Myklebust33344e02019-04-07 13:59:08 -0400709 /*
710 * Despite the reboot, the write was successful,
711 * so reset wb_nio.
712 */
713 req->wb_nio = 0;
Fred Isaman1763da12012-04-20 14:47:57 -0400714 /* Note the rewrite will go through mds */
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400715 nfs_mark_request_commit(req, NULL, &cinfo, 0);
Fred Isaman906369e2012-06-08 16:48:33 -0400716 } else
717 nfs_release_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400718 nfs_unlock_and_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400719 }
720
721 if (atomic_dec_and_test(&cinfo.mds->rpcs_out))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500722 nfs_direct_write_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500723}
724
Trond Myklebustb20135d2015-12-31 09:28:06 -0500725static void nfs_direct_resched_write(struct nfs_commit_info *cinfo,
726 struct nfs_page *req)
Fred Isaman1763da12012-04-20 14:47:57 -0400727{
Trond Myklebustb20135d2015-12-31 09:28:06 -0500728 struct nfs_direct_req *dreq = cinfo->dreq;
729
730 spin_lock(&dreq->lock);
731 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
732 spin_unlock(&dreq->lock);
733 nfs_mark_request_commit(req, NULL, cinfo, 0);
Fred Isaman1763da12012-04-20 14:47:57 -0400734}
735
736static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops = {
737 .completion = nfs_direct_commit_complete,
Trond Myklebustb20135d2015-12-31 09:28:06 -0500738 .resched_write = nfs_direct_resched_write,
Trond Myklebustfad61492006-03-20 13:44:36 -0500739};
740
741static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq)
742{
Fred Isaman1763da12012-04-20 14:47:57 -0400743 int res;
744 struct nfs_commit_info cinfo;
745 LIST_HEAD(mds_list);
Trond Myklebustfad61492006-03-20 13:44:36 -0500746
Fred Isaman1763da12012-04-20 14:47:57 -0400747 nfs_init_cinfo_from_dreq(&cinfo, dreq);
748 nfs_scan_commit(dreq->inode, &mds_list, &cinfo);
749 res = nfs_generic_commit_list(dreq->inode, &mds_list, 0, &cinfo);
750 if (res < 0) /* res == -ENOMEM */
751 nfs_direct_write_reschedule(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500752}
753
Fred Isaman1763da12012-04-20 14:47:57 -0400754static void nfs_direct_write_schedule_work(struct work_struct *work)
Trond Myklebustfad61492006-03-20 13:44:36 -0500755{
Fred Isaman1763da12012-04-20 14:47:57 -0400756 struct nfs_direct_req *dreq = container_of(work, struct nfs_direct_req, work);
Trond Myklebustfad61492006-03-20 13:44:36 -0500757 int flags = dreq->flags;
758
759 dreq->flags = 0;
760 switch (flags) {
761 case NFS_ODIRECT_DO_COMMIT:
762 nfs_direct_commit_schedule(dreq);
763 break;
764 case NFS_ODIRECT_RESCHED_WRITES:
765 nfs_direct_write_reschedule(dreq);
766 break;
767 default:
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400768 nfs_zap_mapping(dreq->inode, dreq->inode->i_mapping);
769 nfs_direct_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500770 }
771}
772
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500773static void nfs_direct_write_complete(struct nfs_direct_req *dreq)
Trond Myklebustfad61492006-03-20 13:44:36 -0500774{
NeilBrown46483c22018-08-08 09:20:02 +1000775 queue_work(nfsiod_workqueue, &dreq->work); /* Calls nfs_direct_write_schedule_work */
Trond Myklebustfad61492006-03-20 13:44:36 -0500776}
Fred Isaman1763da12012-04-20 14:47:57 -0400777
Fred Isaman1763da12012-04-20 14:47:57 -0400778static void nfs_direct_write_completion(struct nfs_pgio_header *hdr)
779{
780 struct nfs_direct_req *dreq = hdr->dreq;
781 struct nfs_commit_info cinfo;
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400782 bool request_commit = false;
Fred Isaman1763da12012-04-20 14:47:57 -0400783 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
784
785 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
786 goto out_put;
787
788 nfs_init_cinfo_from_dreq(&cinfo, dreq);
789
790 spin_lock(&dreq->lock);
791
J. Bruce Fields1b8d97b2018-01-16 10:08:00 -0500792 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags))
Fred Isaman1763da12012-04-20 14:47:57 -0400793 dreq->error = hdr->error;
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400794 if (dreq->error == 0) {
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400795 nfs_direct_good_bytes(dreq, hdr);
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400796 if (nfs_write_need_commit(hdr)) {
Fred Isaman1763da12012-04-20 14:47:57 -0400797 if (dreq->flags == NFS_ODIRECT_RESCHED_WRITES)
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400798 request_commit = true;
Fred Isaman1763da12012-04-20 14:47:57 -0400799 else if (dreq->flags == 0) {
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400800 nfs_direct_set_hdr_verf(dreq, hdr);
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400801 request_commit = true;
Fred Isaman1763da12012-04-20 14:47:57 -0400802 dreq->flags = NFS_ODIRECT_DO_COMMIT;
803 } else if (dreq->flags == NFS_ODIRECT_DO_COMMIT) {
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400804 request_commit = true;
805 if (nfs_direct_set_or_cmp_hdr_verf(dreq, hdr))
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400806 dreq->flags =
807 NFS_ODIRECT_RESCHED_WRITES;
Fred Isaman1763da12012-04-20 14:47:57 -0400808 }
809 }
810 }
811 spin_unlock(&dreq->lock);
812
813 while (!list_empty(&hdr->pages)) {
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400814
Fred Isaman1763da12012-04-20 14:47:57 -0400815 req = nfs_list_entry(hdr->pages.next);
816 nfs_list_remove_request(req);
Weston Andros Adamsonc65e6252014-06-09 11:48:36 -0400817 if (request_commit) {
Trond Myklebust04277082012-05-09 13:54:53 -0400818 kref_get(&req->wb_kref);
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400819 nfs_mark_request_commit(req, hdr->lseg, &cinfo,
820 hdr->ds_commit_idx);
Fred Isaman1763da12012-04-20 14:47:57 -0400821 }
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400822 nfs_unlock_and_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400823 }
824
825out_put:
826 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500827 nfs_direct_write_complete(dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400828 hdr->release(hdr);
829}
830
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500831static void nfs_write_sync_pgio_error(struct list_head *head, int error)
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400832{
833 struct nfs_page *req;
834
835 while (!list_empty(head)) {
836 req = nfs_list_entry(head->next);
837 nfs_list_remove_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400838 nfs_unlock_and_release_request(req);
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400839 }
840}
841
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500842static void nfs_direct_write_reschedule_io(struct nfs_pgio_header *hdr)
843{
844 struct nfs_direct_req *dreq = hdr->dreq;
845
846 spin_lock(&dreq->lock);
847 if (dreq->error == 0) {
848 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
849 /* fake unstable write to let common nfs resend pages */
850 hdr->verf.committed = NFS_UNSTABLE;
851 hdr->good_bytes = hdr->args.count;
852 }
853 spin_unlock(&dreq->lock);
854}
855
Fred Isaman1763da12012-04-20 14:47:57 -0400856static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops = {
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400857 .error_cleanup = nfs_write_sync_pgio_error,
Fred Isaman1763da12012-04-20 14:47:57 -0400858 .init_hdr = nfs_direct_pgio_init,
859 .completion = nfs_direct_write_completion,
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500860 .reschedule_io = nfs_direct_write_reschedule_io,
Fred Isaman1763da12012-04-20 14:47:57 -0400861};
862
Al Viro91f79c42014-03-21 04:58:33 -0400863
864/*
865 * NB: Return the value of the first error return code. Subsequent
866 * errors after the first one are ignored.
867 */
868/*
869 * For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE
870 * operation. If nfs_writedata_alloc() or get_user_pages() fails,
871 * bail and stop sending more writes. Write length accounting is
872 * handled automatically by nfs_direct_write_result(). Otherwise, if
873 * no requests have been sent, just return an error.
874 */
Chuck Lever19f73782007-11-12 12:16:47 -0500875static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq,
Al Viro619d30b2014-03-04 21:53:33 -0500876 struct iov_iter *iter,
Al Viro91f79c42014-03-21 04:58:33 -0400877 loff_t pos)
Chuck Lever19f73782007-11-12 12:16:47 -0500878{
Fred Isaman1763da12012-04-20 14:47:57 -0400879 struct nfs_pageio_descriptor desc;
Trond Myklebust1d59d612012-05-31 12:22:33 -0400880 struct inode *inode = dreq->inode;
Chuck Lever19f73782007-11-12 12:16:47 -0500881 ssize_t result = 0;
882 size_t requested_bytes = 0;
Al Viro91f79c42014-03-21 04:58:33 -0400883 size_t wsize = max_t(size_t, NFS_SERVER(inode)->wsize, PAGE_SIZE);
Chuck Lever19f73782007-11-12 12:16:47 -0500884
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200885 nfs_pageio_init_write(&desc, inode, FLUSH_COND_STABLE, false,
Fred Isaman1763da12012-04-20 14:47:57 -0400886 &nfs_direct_write_completion_ops);
887 desc.pg_dreq = dreq;
Chuck Lever19f73782007-11-12 12:16:47 -0500888 get_dreq(dreq);
Jens Axboefe0f07d2015-04-15 17:05:48 -0600889 inode_dio_begin(inode);
Chuck Lever19f73782007-11-12 12:16:47 -0500890
Al Viro91f79c42014-03-21 04:58:33 -0400891 NFS_I(inode)->write_io += iov_iter_count(iter);
892 while (iov_iter_count(iter)) {
893 struct page **pagevec;
894 size_t bytes;
895 size_t pgbase;
896 unsigned npages, i;
897
898 result = iov_iter_get_pages_alloc(iter, &pagevec,
899 wsize, &pgbase);
Chuck Lever19f73782007-11-12 12:16:47 -0500900 if (result < 0)
901 break;
Al Viro91f79c42014-03-21 04:58:33 -0400902
903 bytes = result;
904 iov_iter_advance(iter, bytes);
905 npages = (result + pgbase + PAGE_SIZE - 1) / PAGE_SIZE;
906 for (i = 0; i < npages; i++) {
907 struct nfs_page *req;
908 unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
909
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400910 req = nfs_create_request(dreq->ctx, pagevec[i],
Al Viro91f79c42014-03-21 04:58:33 -0400911 pgbase, req_len);
912 if (IS_ERR(req)) {
913 result = PTR_ERR(req);
914 break;
915 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400916
917 nfs_direct_setup_mirroring(dreq, &desc, req);
Peng Taod600ad12015-12-04 02:57:48 +0800918 if (desc.pg_error < 0) {
919 nfs_free_request(req);
920 result = desc.pg_error;
921 break;
922 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400923
Al Viro91f79c42014-03-21 04:58:33 -0400924 nfs_lock_request(req);
925 req->wb_index = pos >> PAGE_SHIFT;
926 req->wb_offset = pos & ~PAGE_MASK;
927 if (!nfs_pageio_add_request(&desc, req)) {
928 result = desc.pg_error;
929 nfs_unlock_and_release_request(req);
930 break;
931 }
932 pgbase = 0;
933 bytes -= req_len;
934 requested_bytes += req_len;
935 pos += req_len;
936 dreq->bytes_left -= req_len;
937 }
938 nfs_direct_release_pages(pagevec, npages);
939 kvfree(pagevec);
940 if (result < 0)
Chuck Lever19f73782007-11-12 12:16:47 -0500941 break;
Chuck Lever19f73782007-11-12 12:16:47 -0500942 }
Fred Isaman1763da12012-04-20 14:47:57 -0400943 nfs_pageio_complete(&desc);
Chuck Lever19f73782007-11-12 12:16:47 -0500944
Chuck Lever839f7ad2011-01-21 15:54:57 +0000945 /*
946 * If no bytes were started, return the error, and let the
947 * generic layer handle the completion.
948 */
949 if (requested_bytes == 0) {
Jens Axboefe0f07d2015-04-15 17:05:48 -0600950 inode_dio_end(inode);
Chuck Lever839f7ad2011-01-21 15:54:57 +0000951 nfs_direct_req_release(dreq);
952 return result < 0 ? result : -EIO;
953 }
954
Chuck Lever19f73782007-11-12 12:16:47 -0500955 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500956 nfs_direct_write_complete(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400957 return requested_bytes;
Chuck Lever19f73782007-11-12 12:16:47 -0500958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * nfs_file_direct_write - file direct write operation for NFS files
962 * @iocb: target I/O control block
Al Viro619d30b2014-03-04 21:53:33 -0500963 * @iter: vector of user buffers from which to write data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 *
965 * We use this function for direct writes instead of calling
966 * generic_file_aio_write() in order to avoid taking the inode
967 * semaphore and updating the i_size. The NFS server will set
968 * the new i_size and this client must read the updated size
969 * back into its cache. We let the server do generic write
970 * parameter checking and report problems.
971 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 * We eliminate local atime updates, see direct read above.
973 *
974 * We avoid unnecessary page cache invalidations for normal cached
975 * readers of this file.
976 *
977 * Note that O_APPEND is not supported for NFS direct writes, as there
978 * is no atomic O_APPEND write facility in the NFS protocol.
979 */
Al Viro65a4a1c2015-04-09 14:11:08 -0400980ssize_t nfs_file_direct_write(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Al Viro85128b22017-04-13 09:31:51 -0400982 ssize_t result = -EINVAL, requested;
Trond Myklebust89698b22016-06-23 10:35:48 -0400983 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 struct address_space *mapping = file->f_mapping;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800986 struct inode *inode = mapping->host;
987 struct nfs_direct_req *dreq;
988 struct nfs_lock_context *l_ctx;
Al Viro65a4a1c2015-04-09 14:11:08 -0400989 loff_t pos, end;
Chuck Leverc216fd72007-11-12 12:16:52 -0500990
Al Viro6de14722013-09-16 10:53:17 -0400991 dfprintk(FILE, "NFS: direct write(%pD2, %zd@%Ld)\n",
Al Viro3309dd02015-04-09 12:55:47 -0400992 file, iov_iter_count(iter), (long long) iocb->ki_pos);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700993
Trond Myklebust89698b22016-06-23 10:35:48 -0400994 result = generic_write_checks(iocb, iter);
995 if (result <= 0)
996 return result;
997 count = result;
998 nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count);
Al Viro3309dd02015-04-09 12:55:47 -0400999
1000 pos = iocb->ki_pos;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001001 end = (pos + iov_iter_count(iter) - 1) >> PAGE_SHIFT;
Chuck Leverce1a8e62005-11-30 18:08:17 -05001002
Trond Myklebust89698b22016-06-23 10:35:48 -04001003 task_io_account_write(count);
Konstantin Khlebnikov7ec10f22011-02-22 00:28:34 +03001004
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001005 result = -ENOMEM;
1006 dreq = nfs_direct_req_alloc();
1007 if (!dreq)
Trond Myklebusta5864c92016-06-03 17:07:19 -04001008 goto out;
Chuck Lever9eafa8c2006-03-20 13:44:33 -05001009
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001010 dreq->inode = inode;
Trond Myklebust89698b22016-06-23 10:35:48 -04001011 dreq->bytes_left = dreq->max_count = count;
Peng Tao5fadeb42015-01-19 12:41:16 +08001012 dreq->io_start = pos;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001013 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
1014 l_ctx = nfs_get_lock_context(dreq->ctx);
1015 if (IS_ERR(l_ctx)) {
1016 result = PTR_ERR(l_ctx);
1017 goto out_release;
Fred Isaman1763da12012-04-20 14:47:57 -04001018 }
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001019 dreq->l_ctx = l_ctx;
1020 if (!is_sync_kiocb(iocb))
1021 dreq->iocb = iocb;
1022
Trond Myklebusta5864c92016-06-03 17:07:19 -04001023 nfs_start_io_direct(inode);
1024
Al Viro85128b22017-04-13 09:31:51 -04001025 requested = nfs_direct_write_schedule_iovec(dreq, iter, pos);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -08001026
1027 if (mapping->nrpages) {
1028 invalidate_inode_pages2_range(mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001029 pos >> PAGE_SHIFT, end);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -08001030 }
1031
Trond Myklebusta5864c92016-06-03 17:07:19 -04001032 nfs_end_io_direct(inode);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -08001033
Al Viro85128b22017-04-13 09:31:51 -04001034 if (requested > 0) {
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001035 result = nfs_direct_wait(dreq);
1036 if (result > 0) {
Al Viro85128b22017-04-13 09:31:51 -04001037 requested -= result;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001038 iocb->ki_pos = pos + result;
Christoph Hellwige2592212016-04-07 08:52:01 -07001039 /* XXX: should check the generic_write_sync retval */
1040 generic_write_sync(iocb, result);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001041 }
Al Viro85128b22017-04-13 09:31:51 -04001042 iov_iter_revert(iter, requested);
1043 } else {
1044 result = requested;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001045 }
1046out_release:
1047 nfs_direct_req_release(dreq);
Trond Myklebusta5864c92016-06-03 17:07:19 -04001048out:
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -08001049 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Chuck Lever88467052006-03-20 13:44:34 -05001052/**
1053 * nfs_init_directcache - create a slab cache for nfs_direct_req structures
1054 *
1055 */
David Howellsf7b422b2006-06-09 09:34:33 -04001056int __init nfs_init_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
1059 sizeof(struct nfs_direct_req),
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001060 0, (SLAB_RECLAIM_ACCOUNT|
1061 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001062 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (nfs_direct_cachep == NULL)
1064 return -ENOMEM;
1065
1066 return 0;
1067}
1068
Chuck Lever88467052006-03-20 13:44:34 -05001069/**
David Howellsf7b422b2006-06-09 09:34:33 -04001070 * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures
Chuck Lever88467052006-03-20 13:44:34 -05001071 *
1072 */
David Brownell266bee82006-06-27 12:59:15 -07001073void nfs_destroy_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001075 kmem_cache_destroy(nfs_direct_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}