blob: eabfdab543c8cd406d4e80764ffb515e1522519c [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"
Dave Wysochanskia6b5a282020-11-14 13:43:54 -050062#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define NFSDBG_FACILITY NFSDBG_VFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Christoph Lametere18b8902006-12-06 20:33:20 -080066static struct kmem_cache *nfs_direct_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct nfs_direct_req {
69 struct kref kref; /* release manager */
Chuck Lever15ce4a02006-03-20 13:44:34 -050070
71 /* I/O parameters */
Trond Myklebusta8881f52006-03-20 13:44:36 -050072 struct nfs_open_context *ctx; /* file open context info */
Trond Myklebustf11ac8d2010-06-25 16:35:53 -040073 struct nfs_lock_context *l_ctx; /* Lock context info */
Chuck Lever99514f82006-03-20 13:44:30 -050074 struct kiocb * iocb; /* controlling i/o request */
Chuck Lever88467052006-03-20 13:44:34 -050075 struct inode * inode; /* target file of i/o */
Chuck Lever15ce4a02006-03-20 13:44:34 -050076
77 /* completion state */
Trond Myklebust607f31e2006-06-28 16:52:45 -040078 atomic_t io_count; /* i/os we're waiting for */
Chuck Lever15ce4a02006-03-20 13:44:34 -050079 spinlock_t lock; /* protect completion state */
Weston Andros Adamson0a00b772014-09-19 12:48:33 -040080
Trond Myklebustd9ee6552018-03-06 12:47:08 -050081 loff_t io_start; /* Start offset for I/O */
Chuck Lever15ce4a02006-03-20 13:44:34 -050082 ssize_t count, /* bytes actually processed */
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -040083 max_count, /* max expected count */
Peng Tao35754bc2012-09-25 14:55:57 +080084 bytes_left, /* bytes left to be sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 error; /* any reported error */
Trond Myklebustd72b7a62006-03-20 13:44:43 -050086 struct completion completion; /* wait for i/o completion */
Trond Myklebustfad61492006-03-20 13:44:36 -050087
88 /* commit state */
Fred Isaman1763da12012-04-20 14:47:57 -040089 struct nfs_mds_commit_info mds_cinfo; /* Storage for cinfo */
90 struct pnfs_ds_commit_info ds_cinfo; /* Storage for cinfo */
91 struct work_struct work;
Trond Myklebustfad61492006-03-20 13:44:36 -050092 int flags;
Dave Kleikampad3cba22018-11-27 19:31:30 +000093 /* for write */
Trond Myklebustfad61492006-03-20 13:44:36 -050094#define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */
95#define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */
Dave Kleikampad3cba22018-11-27 19:31:30 +000096 /* for read */
97#define NFS_ODIRECT_SHOULD_DIRTY (3) /* dirty user-space page after read */
Trond Myklebustfb5f7f22020-03-21 09:36:13 -040098#define NFS_ODIRECT_DONE INT_MAX /* write verification failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
Fred Isaman1763da12012-04-20 14:47:57 -0400101static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops;
102static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops;
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500103static void nfs_direct_write_complete(struct nfs_direct_req *dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400104static void nfs_direct_write_schedule_work(struct work_struct *work);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400105
106static inline void get_dreq(struct nfs_direct_req *dreq)
107{
108 atomic_inc(&dreq->io_count);
109}
110
111static inline int put_dreq(struct nfs_direct_req *dreq)
112{
113 return atomic_dec_and_test(&dreq->io_count);
114}
115
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400116static void
Trond Myklebust031d73e2019-09-30 14:02:56 -0400117nfs_direct_handle_truncated(struct nfs_direct_req *dreq,
118 const struct nfs_pgio_header *hdr,
119 ssize_t dreq_len)
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400120{
Trond Myklebust031d73e2019-09-30 14:02:56 -0400121 if (!(test_bit(NFS_IOHDR_ERROR, &hdr->flags) ||
122 test_bit(NFS_IOHDR_EOF, &hdr->flags)))
123 return;
124 if (dreq->max_count >= dreq_len) {
125 dreq->max_count = dreq_len;
126 if (dreq->count > dreq_len)
127 dreq->count = dreq_len;
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -0400128
Trond Myklebust031d73e2019-09-30 14:02:56 -0400129 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags))
130 dreq->error = hdr->error;
131 else /* Clear outstanding error if this is EOF */
132 dreq->error = 0;
Peng Tao5fadeb42015-01-19 12:41:16 +0800133 }
Trond Myklebust031d73e2019-09-30 14:02:56 -0400134}
135
136static void
137nfs_direct_count_bytes(struct nfs_direct_req *dreq,
138 const struct nfs_pgio_header *hdr)
139{
Trond Myklebust031d73e2019-09-30 14:02:56 -0400140 loff_t hdr_end = hdr->io_start + hdr->good_bytes;
141 ssize_t dreq_len = 0;
142
143 if (hdr_end > dreq->io_start)
144 dreq_len = hdr_end - dreq->io_start;
145
146 nfs_direct_handle_truncated(dreq, hdr, dreq_len);
147
148 if (dreq_len > dreq->max_count)
149 dreq_len = dreq->max_count;
150
Trond Myklebust031d73e2019-09-30 14:02:56 -0400151 if (dreq->count < dreq_len)
152 dreq->count = dreq_len;
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/**
Chuck Leverb8a32e22006-03-20 13:44:28 -0500156 * nfs_direct_IO - NFS address space operation for direct I/O
Chuck Leverb8a32e22006-03-20 13:44:28 -0500157 * @iocb: target I/O control block
Al Viro90090ae2016-05-29 19:05:03 -0400158 * @iter: I/O buffer
Chuck Leverb8a32e22006-03-20 13:44:28 -0500159 *
160 * The presence of this routine in the address space ops vector means
Mel Gormana564b8f2012-07-31 16:45:12 -0700161 * the NFS client supports direct I/O. However, for most direct IO, we
162 * shunt off direct read and write requests before the VFS gets them,
163 * so this method is only ever called for swap.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700165ssize_t nfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chuck Leverb8a32e22006-03-20 13:44:28 -0500166{
Peng Taoee8a1a82015-01-20 07:44:29 +0800167 struct inode *inode = iocb->ki_filp->f_mapping->host;
168
169 /* we only support swap file calling nfs_direct_IO */
170 if (!IS_SWAPFILE(inode))
171 return 0;
172
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100173 VM_BUG_ON(iov_iter_count(iter) != PAGE_SIZE);
Mel Gormana564b8f2012-07-31 16:45:12 -0700174
Omar Sandoval6f673762015-03-16 04:33:52 -0700175 if (iov_iter_rw(iter) == READ)
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700176 return nfs_file_direct_read(iocb, iter);
Al Viro65a4a1c2015-04-09 14:11:08 -0400177 return nfs_file_direct_write(iocb, iter);
Chuck Leverb8a32e22006-03-20 13:44:28 -0500178}
179
Chuck Lever749e1462007-05-19 17:22:46 -0400180static void nfs_direct_release_pages(struct page **pages, unsigned int npages)
Chuck Lever9c93ab72006-06-20 12:56:31 -0400181{
Chuck Lever749e1462007-05-19 17:22:46 -0400182 unsigned int i;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400183 for (i = 0; i < npages; i++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300184 put_page(pages[i]);
Trond Myklebust6b45d852006-03-20 13:44:43 -0500185}
186
Fred Isaman1763da12012-04-20 14:47:57 -0400187void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo,
188 struct nfs_direct_req *dreq)
189{
Dave Wysochanskife238e62016-04-01 13:45:09 -0400190 cinfo->inode = dreq->inode;
Fred Isaman1763da12012-04-20 14:47:57 -0400191 cinfo->mds = &dreq->mds_cinfo;
192 cinfo->ds = &dreq->ds_cinfo;
193 cinfo->dreq = dreq;
194 cinfo->completion_ops = &nfs_direct_commit_completion_ops;
195}
196
Chuck Lever93619e52006-03-20 13:44:31 -0500197static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct nfs_direct_req *dreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Trond Myklebust292f3ee2012-04-30 18:31:49 -0400201 dreq = kmem_cache_zalloc(nfs_direct_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (!dreq)
203 return NULL;
204
205 kref_init(&dreq->kref);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400206 kref_get(&dreq->kref);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500207 init_completion(&dreq->completion);
Fred Isaman1763da12012-04-20 14:47:57 -0400208 INIT_LIST_HEAD(&dreq->mds_cinfo.list);
Trond Myklebustc21e7162020-03-19 13:36:36 -0400209 pnfs_init_ds_commit_info(&dreq->ds_cinfo);
Fred Isaman1763da12012-04-20 14:47:57 -0400210 INIT_WORK(&dreq->work, nfs_direct_write_schedule_work);
Chuck Lever15ce4a02006-03-20 13:44:34 -0500211 spin_lock_init(&dreq->lock);
Chuck Lever93619e52006-03-20 13:44:31 -0500212
213 return dreq;
214}
215
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400216static void nfs_direct_req_free(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500219
Trond Myklebust18f41292020-03-20 17:08:02 -0400220 pnfs_release_ds_info(&dreq->ds_cinfo, dreq->inode);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400221 if (dreq->l_ctx != NULL)
222 nfs_put_lock_context(dreq->l_ctx);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500223 if (dreq->ctx != NULL)
224 put_nfs_open_context(dreq->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 kmem_cache_free(nfs_direct_cachep, dreq);
226}
227
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400228static void nfs_direct_req_release(struct nfs_direct_req *dreq)
229{
230 kref_put(&dreq->kref, nfs_direct_req_free);
231}
232
Peng Tao62965562012-09-25 14:55:57 +0800233ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq)
234{
235 return dreq->bytes_left;
236}
237EXPORT_SYMBOL_GPL(nfs_dreq_bytes_left);
238
Chuck Leverd4cc9482006-03-20 13:44:28 -0500239/*
Chuck Leverbc0fb202006-03-20 13:44:31 -0500240 * Collects and returns the final error value/byte-count.
241 */
242static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
243{
Chuck Lever15ce4a02006-03-20 13:44:34 -0500244 ssize_t result = -EIOCBQUEUED;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500245
246 /* Async requests don't wait here */
247 if (dreq->iocb)
248 goto out;
249
Matthew Wilcox150030b2007-12-06 16:24:39 -0500250 result = wait_for_completion_killable(&dreq->completion);
Chuck Leverbc0fb202006-03-20 13:44:31 -0500251
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400252 if (!result) {
253 result = dreq->count;
254 WARN_ON_ONCE(dreq->count < 0);
255 }
Chuck Leverbc0fb202006-03-20 13:44:31 -0500256 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500257 result = dreq->error;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500258
259out:
Chuck Leverbc0fb202006-03-20 13:44:31 -0500260 return (ssize_t) result;
261}
262
263/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400264 * Synchronous I/O uses a stack-allocated iocb. Thus we can't trust
265 * the iocb is still valid here if this is a synchronous request.
Chuck Lever63ab46a2006-03-20 13:44:31 -0500266 */
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400267static void nfs_direct_complete(struct nfs_direct_req *dreq)
Chuck Lever63ab46a2006-03-20 13:44:31 -0500268{
Christoph Hellwig9811cd52013-11-14 08:50:28 -0800269 struct inode *inode = dreq->inode;
270
Olga Kornievskaia65caafd2020-07-15 13:04:15 -0400271 inode_dio_end(inode);
272
Christoph Hellwig2a009ec2013-11-14 08:50:29 -0800273 if (dreq->iocb) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500274 long res = (long) dreq->error;
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400275 if (dreq->count != 0) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500276 res = (long) dreq->count;
Trond Myklebustd2a7de02016-06-17 16:48:22 -0400277 WARN_ON_ONCE(dreq->count < 0);
278 }
Jens Axboe6b19b762021-10-21 09:22:35 -0600279 dreq->iocb->ki_complete(dreq->iocb, res);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500280 }
Christoph Hellwig2a009ec2013-11-14 08:50:29 -0800281
Daniel Wagner024de8f2016-09-22 13:54:28 +0200282 complete(&dreq->completion);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500283
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400284 nfs_direct_req_release(dreq);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500285}
286
Fred Isaman584aa812012-04-20 14:47:51 -0400287static void nfs_direct_read_completion(struct nfs_pgio_header *hdr)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400288{
Fred Isaman584aa812012-04-20 14:47:51 -0400289 unsigned long bytes = 0;
290 struct nfs_direct_req *dreq = hdr->dreq;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400291
Chuck Lever15ce4a02006-03-20 13:44:34 -0500292 spin_lock(&dreq->lock);
Trond Myklebusteb2c50d2019-08-12 18:04:36 -0400293 if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) {
294 spin_unlock(&dreq->lock);
295 goto out_put;
296 }
297
Trond Myklebust031d73e2019-09-30 14:02:56 -0400298 nfs_direct_count_bytes(dreq, hdr);
Fred Isaman584aa812012-04-20 14:47:51 -0400299 spin_unlock(&dreq->lock);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400300
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400301 while (!list_empty(&hdr->pages)) {
302 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
303 struct page *page = req->wb_page;
Fred Isaman584aa812012-04-20 14:47:51 -0400304
Dave Kleikampad3cba22018-11-27 19:31:30 +0000305 if (!PageCompound(page) && bytes < hdr->good_bytes &&
306 (dreq->flags == NFS_ODIRECT_SHOULD_DIRTY))
Jeff Laytonbe7e9852012-12-12 12:36:31 -0500307 set_page_dirty(page);
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400308 bytes += req->wb_bytes;
309 nfs_list_remove_request(req);
Anna Schumakerbeeb5332017-04-07 14:15:07 -0400310 nfs_release_request(req);
Fred Isaman584aa812012-04-20 14:47:51 -0400311 }
312out_put:
Trond Myklebust607f31e2006-06-28 16:52:45 -0400313 if (put_dreq(dreq))
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400314 nfs_direct_complete(dreq);
Fred Isaman584aa812012-04-20 14:47:51 -0400315 hdr->release(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500318static void nfs_read_sync_pgio_error(struct list_head *head, int error)
Fred Isamancd841602012-04-20 14:47:44 -0400319{
Fred Isaman584aa812012-04-20 14:47:51 -0400320 struct nfs_page *req;
Fred Isamancd841602012-04-20 14:47:44 -0400321
Fred Isaman584aa812012-04-20 14:47:51 -0400322 while (!list_empty(head)) {
323 req = nfs_list_entry(head->next);
324 nfs_list_remove_request(req);
325 nfs_release_request(req);
326 }
Fred Isamancd841602012-04-20 14:47:44 -0400327}
328
Fred Isaman584aa812012-04-20 14:47:51 -0400329static void nfs_direct_pgio_init(struct nfs_pgio_header *hdr)
330{
331 get_dreq(hdr->dreq);
332}
333
334static const struct nfs_pgio_completion_ops nfs_direct_read_completion_ops = {
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400335 .error_cleanup = nfs_read_sync_pgio_error,
Fred Isaman584aa812012-04-20 14:47:51 -0400336 .init_hdr = nfs_direct_pgio_init,
337 .completion = nfs_direct_read_completion,
338};
339
Chuck Leverd4cc9482006-03-20 13:44:28 -0500340/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400341 * For each rsize'd chunk of the user's buffer, dispatch an NFS READ
342 * operation. If nfs_readdata_alloc() or get_user_pages() fails,
343 * bail and stop sending more reads. Read length accounting is
344 * handled automatically by nfs_direct_read_result(). Otherwise, if
345 * no requests have been sent, just return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 */
Al Viro91f79c42014-03-21 04:58:33 -0400347
348static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq,
349 struct iov_iter *iter,
350 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Al Viro91f79c42014-03-21 04:58:33 -0400352 struct nfs_pageio_descriptor desc;
353 struct inode *inode = dreq->inode;
354 ssize_t result = -EINVAL;
355 size_t requested_bytes = 0;
356 size_t rsize = max_t(size_t, NFS_SERVER(inode)->rsize, PAGE_SIZE);
Chuck Lever82b145c2006-06-20 12:57:03 -0400357
Linus Torvalds16b90572014-06-12 10:30:18 -0700358 nfs_pageio_init_read(&desc, dreq->inode, false,
Al Viro91f79c42014-03-21 04:58:33 -0400359 &nfs_direct_read_completion_ops);
360 get_dreq(dreq);
361 desc.pg_dreq = dreq;
Jens Axboefe0f07d2015-04-15 17:05:48 -0600362 inode_dio_begin(inode);
Al Viro91f79c42014-03-21 04:58:33 -0400363
364 while (iov_iter_count(iter)) {
365 struct page **pagevec;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500366 size_t bytes;
Al Viro91f79c42014-03-21 04:58:33 -0400367 size_t pgbase;
368 unsigned npages, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Al Viro91f79c42014-03-21 04:58:33 -0400370 result = iov_iter_get_pages_alloc(iter, &pagevec,
371 rsize, &pgbase);
372 if (result < 0)
Trond Myklebust607f31e2006-06-28 16:52:45 -0400373 break;
Al Viro91f79c42014-03-21 04:58:33 -0400374
375 bytes = result;
376 iov_iter_advance(iter, bytes);
377 npages = (result + pgbase + PAGE_SIZE - 1) / PAGE_SIZE;
Fred Isaman584aa812012-04-20 14:47:51 -0400378 for (i = 0; i < npages; i++) {
379 struct nfs_page *req;
Trond Myklebustbf5fc402012-05-04 13:47:16 -0400380 unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
Fred Isaman584aa812012-04-20 14:47:51 -0400381 /* XXX do we need to do the eof zeroing found in async_filler? */
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400382 req = nfs_create_request(dreq->ctx, pagevec[i],
Fred Isaman584aa812012-04-20 14:47:51 -0400383 pgbase, req_len);
384 if (IS_ERR(req)) {
Fred Isaman584aa812012-04-20 14:47:51 -0400385 result = PTR_ERR(req);
386 break;
387 }
388 req->wb_index = pos >> PAGE_SHIFT;
389 req->wb_offset = pos & ~PAGE_MASK;
Al Viro91f79c42014-03-21 04:58:33 -0400390 if (!nfs_pageio_add_request(&desc, req)) {
391 result = desc.pg_error;
Fred Isaman584aa812012-04-20 14:47:51 -0400392 nfs_release_request(req);
Fred Isaman584aa812012-04-20 14:47:51 -0400393 break;
394 }
395 pgbase = 0;
396 bytes -= req_len;
Al Viro91f79c42014-03-21 04:58:33 -0400397 requested_bytes += req_len;
Fred Isaman584aa812012-04-20 14:47:51 -0400398 pos += req_len;
Peng Tao35754bc2012-09-25 14:55:57 +0800399 dreq->bytes_left -= req_len;
Fred Isaman584aa812012-04-20 14:47:51 -0400400 }
Trond Myklebust6d747432012-04-30 13:27:31 -0400401 nfs_direct_release_pages(pagevec, npages);
Al Viro91f79c42014-03-21 04:58:33 -0400402 kvfree(pagevec);
Chuck Lever19f73782007-11-12 12:16:47 -0500403 if (result < 0)
404 break;
Chuck Lever19f73782007-11-12 12:16:47 -0500405 }
406
Fred Isaman584aa812012-04-20 14:47:51 -0400407 nfs_pageio_complete(&desc);
408
Chuck Lever839f7ad2011-01-21 15:54:57 +0000409 /*
410 * If no bytes were started, return the error, and let the
411 * generic layer handle the completion.
412 */
413 if (requested_bytes == 0) {
Olga Kornievskaiad03727b2020-06-24 13:54:08 -0400414 inode_dio_end(inode);
Olga Kornievskaia65caafd2020-07-15 13:04:15 -0400415 nfs_direct_req_release(dreq);
Chuck Lever839f7ad2011-01-21 15:54:57 +0000416 return result < 0 ? result : -EIO;
417 }
418
Chuck Lever19f73782007-11-12 12:16:47 -0500419 if (put_dreq(dreq))
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400420 nfs_direct_complete(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400421 return requested_bytes;
Chuck Lever19f73782007-11-12 12:16:47 -0500422}
423
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800424/**
425 * nfs_file_direct_read - file direct read operation for NFS files
426 * @iocb: target I/O control block
Al Viro619d30b2014-03-04 21:53:33 -0500427 * @iter: vector of user buffers into which to read data
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800428 *
429 * We use this function for direct reads instead of calling
430 * generic_file_aio_read() in order to avoid gfar's check to see if
431 * the request starts before the end of the file. For that check
432 * to work, we must generate a GETATTR before each direct read, and
433 * even then there is a window between the GETATTR and the subsequent
434 * READ where the file size could change. Our preference is simply
435 * to do all reads the application wants, and the server will take
436 * care of managing the end of file boundary.
437 *
438 * This function also eliminates unnecessarily updating the file's
439 * atime locally, as the NFS server sets the file's atime, and this
440 * client must read the updated atime from the server back into its
441 * cache.
442 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700443ssize_t nfs_file_direct_read(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800445 struct file *file = iocb->ki_filp;
446 struct address_space *mapping = file->f_mapping;
447 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct nfs_direct_req *dreq;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400449 struct nfs_lock_context *l_ctx;
Colin Ian King86b93662020-05-27 13:56:11 +0100450 ssize_t result, requested;
Al Viroa6cbcd42014-03-04 22:38:00 -0500451 size_t count = iov_iter_count(iter);
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800452 nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count);
453
454 dfprintk(FILE, "NFS: direct read(%pD2, %zd@%Ld)\n",
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700455 file, count, (long long) iocb->ki_pos);
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800456
457 result = 0;
458 if (!count)
459 goto out;
460
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800461 task_io_account_read(count);
462
463 result = -ENOMEM;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400464 dreq = nfs_direct_req_alloc();
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400465 if (dreq == NULL)
Trond Myklebusta5864c92016-06-03 17:07:19 -0400466 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Chuck Lever91d5b472006-03-20 13:44:14 -0500468 dreq->inode = inode;
Weston Andros Adamsoned3743a2016-04-01 11:42:29 -0400469 dreq->bytes_left = dreq->max_count = count;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700470 dreq->io_start = iocb->ki_pos;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400471 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400472 l_ctx = nfs_get_lock_context(dreq->ctx);
473 if (IS_ERR(l_ctx)) {
474 result = PTR_ERR(l_ctx);
Misono Tomohiro8605cf02019-08-28 17:01:22 +0900475 nfs_direct_req_release(dreq);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400476 goto out_release;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400477 }
478 dreq->l_ctx = l_ctx;
Chuck Lever487b8372006-03-20 13:44:30 -0500479 if (!is_sync_kiocb(iocb))
480 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Dave Kleikampad3cba22018-11-27 19:31:30 +0000482 if (iter_is_iovec(iter))
483 dreq->flags = NFS_ODIRECT_SHOULD_DIRTY;
484
Trond Myklebusta5864c92016-06-03 17:07:19 -0400485 nfs_start_io_direct(inode);
486
Al Viro619d30b2014-03-04 21:53:33 -0500487 NFS_I(inode)->read_io += count;
Al Viro85128b22017-04-13 09:31:51 -0400488 requested = nfs_direct_read_schedule_iovec(dreq, iter, iocb->ki_pos);
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800489
Trond Myklebusta5864c92016-06-03 17:07:19 -0400490 nfs_end_io_direct(inode);
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800491
Al Viro85128b22017-04-13 09:31:51 -0400492 if (requested > 0) {
Trond Myklebust607f31e2006-06-28 16:52:45 -0400493 result = nfs_direct_wait(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400494 if (result > 0) {
495 requested -= result;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700496 iocb->ki_pos += result;
Al Viro85128b22017-04-13 09:31:51 -0400497 }
498 iov_iter_revert(iter, requested);
499 } else {
500 result = requested;
Christoph Hellwig14a3ec792013-11-14 08:50:31 -0800501 }
Christoph Hellwigd0b98752013-11-14 08:50:33 -0800502
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400503out_release:
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400504 nfs_direct_req_release(dreq);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400505out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return result;
507}
508
Tom Haynes085d1e32014-12-11 13:04:55 -0500509static void
Trond Myklebusted5d5882020-03-30 20:57:49 -0400510nfs_direct_join_group(struct list_head *list, struct inode *inode)
511{
512 struct nfs_page *req, *next;
513
514 list_for_each_entry(req, list, wb_list) {
515 if (req->wb_head != req || req->wb_this_page == req)
516 continue;
517 for (next = req->wb_this_page;
518 next != req->wb_head;
519 next = next->wb_this_page) {
520 nfs_list_remove_request(next);
521 nfs_release_request(next);
522 }
523 nfs_join_page_group(req, inode);
524 }
525}
526
527static void
Tom Haynes085d1e32014-12-11 13:04:55 -0500528nfs_direct_write_scan_commit_list(struct inode *inode,
529 struct list_head *list,
530 struct nfs_commit_info *cinfo)
531{
Trond Myklebuste824f992017-08-01 11:53:49 -0400532 mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
Trond Myklebust9c455a82020-03-21 11:13:05 -0400533 pnfs_recover_commit_reqs(list, cinfo);
Tom Haynes085d1e32014-12-11 13:04:55 -0500534 nfs_scan_commit_list(&cinfo->mds->list, list, cinfo, 0);
Trond Myklebuste824f992017-08-01 11:53:49 -0400535 mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
Tom Haynes085d1e32014-12-11 13:04:55 -0500536}
537
Trond Myklebustfad61492006-03-20 13:44:36 -0500538static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Fred Isaman1763da12012-04-20 14:47:57 -0400540 struct nfs_pageio_descriptor desc;
541 struct nfs_page *req, *tmp;
542 LIST_HEAD(reqs);
543 struct nfs_commit_info cinfo;
544 LIST_HEAD(failed);
545
546 nfs_init_cinfo_from_dreq(&cinfo, dreq);
Tom Haynes085d1e32014-12-11 13:04:55 -0500547 nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Trond Myklebusted5d5882020-03-30 20:57:49 -0400549 nfs_direct_join_group(&reqs, dreq->inode);
550
Trond Myklebustfad61492006-03-20 13:44:36 -0500551 dreq->count = 0;
Trond Myklebust031d73e2019-09-30 14:02:56 -0400552 dreq->max_count = 0;
553 list_for_each_entry(req, &reqs, wb_list)
554 dreq->max_count += req->wb_bytes;
Trond Myklebusta5314a72016-06-01 21:42:32 -0400555 nfs_clear_pnfs_ds_commit_verifiers(&dreq->ds_cinfo);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400556 get_dreq(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500557
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200558 nfs_pageio_init_write(&desc, dreq->inode, FLUSH_STABLE, false,
Fred Isaman1763da12012-04-20 14:47:57 -0400559 &nfs_direct_write_completion_ops);
560 desc.pg_dreq = dreq;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400561
Fred Isaman1763da12012-04-20 14:47:57 -0400562 list_for_each_entry_safe(req, tmp, &reqs, wb_list) {
Trond Myklebust33344e02019-04-07 13:59:08 -0400563 /* Bump the transmission count */
564 req->wb_nio++;
Fred Isaman1763da12012-04-20 14:47:57 -0400565 if (!nfs_pageio_add_request(&desc, req)) {
Trond Myklebust078b5fd2019-02-18 11:35:54 -0500566 nfs_list_move_request(req, &failed);
Dave Wysochanskife238e62016-04-01 13:45:09 -0400567 spin_lock(&cinfo.inode->i_lock);
Fred Isaman1763da12012-04-20 14:47:57 -0400568 dreq->flags = 0;
Peng Taod600ad12015-12-04 02:57:48 +0800569 if (desc.pg_error < 0)
570 dreq->error = desc.pg_error;
571 else
572 dreq->error = -EIO;
Dave Wysochanskife238e62016-04-01 13:45:09 -0400573 spin_unlock(&cinfo.inode->i_lock);
Fred Isaman1763da12012-04-20 14:47:57 -0400574 }
Trond Myklebust5a695da2012-06-19 13:39:14 -0400575 nfs_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400576 }
577 nfs_pageio_complete(&desc);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400578
Trond Myklebust4035c242012-07-08 10:24:10 -0400579 while (!list_empty(&failed)) {
580 req = nfs_list_entry(failed.next);
581 nfs_list_remove_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400582 nfs_unlock_and_release_request(req);
Trond Myklebust4035c242012-07-08 10:24:10 -0400583 }
Trond Myklebust607f31e2006-06-28 16:52:45 -0400584
585 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500586 nfs_direct_write_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500587}
588
Fred Isaman1763da12012-04-20 14:47:57 -0400589static void nfs_direct_commit_complete(struct nfs_commit_data *data)
Trond Myklebustfad61492006-03-20 13:44:36 -0500590{
Trond Myklebust1f284762020-03-21 09:27:46 -0400591 const struct nfs_writeverf *verf = data->res.verf;
Fred Isaman0b7c0152012-04-20 14:47:39 -0400592 struct nfs_direct_req *dreq = data->dreq;
Fred Isaman1763da12012-04-20 14:47:57 -0400593 struct nfs_commit_info cinfo;
594 struct nfs_page *req;
Trond Myklebustc9d8f892008-04-15 16:56:39 -0400595 int status = data->task.tk_status;
596
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400597 if (status < 0) {
598 /* Errors in commit are fatal */
599 dreq->error = status;
600 dreq->max_count = 0;
601 dreq->count = 0;
602 dreq->flags = NFS_ODIRECT_DONE;
603 } else if (dreq->flags == NFS_ODIRECT_DONE)
604 status = dreq->error;
605
Fred Isaman1763da12012-04-20 14:47:57 -0400606 nfs_init_cinfo_from_dreq(&cinfo, dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500607
Fred Isaman1763da12012-04-20 14:47:57 -0400608 while (!list_empty(&data->pages)) {
609 req = nfs_list_entry(data->pages.next);
610 nfs_list_remove_request(req);
Trond Myklebust1f284762020-03-21 09:27:46 -0400611 if (status >= 0 && !nfs_write_match_verf(verf, req)) {
612 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
Trond Myklebust33344e02019-04-07 13:59:08 -0400613 /*
614 * Despite the reboot, the write was successful,
615 * so reset wb_nio.
616 */
617 req->wb_nio = 0;
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400618 nfs_mark_request_commit(req, NULL, &cinfo, 0);
Trond Myklebust1f284762020-03-21 09:27:46 -0400619 } else /* Error or match */
Fred Isaman906369e2012-06-08 16:48:33 -0400620 nfs_release_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400621 nfs_unlock_and_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400622 }
623
Trond Myklebust133a48a2021-10-04 15:37:42 -0400624 if (nfs_commit_end(cinfo.mds))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500625 nfs_direct_write_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500626}
627
Trond Myklebustb20135d2015-12-31 09:28:06 -0500628static void nfs_direct_resched_write(struct nfs_commit_info *cinfo,
629 struct nfs_page *req)
Fred Isaman1763da12012-04-20 14:47:57 -0400630{
Trond Myklebustb20135d2015-12-31 09:28:06 -0500631 struct nfs_direct_req *dreq = cinfo->dreq;
632
633 spin_lock(&dreq->lock);
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400634 if (dreq->flags != NFS_ODIRECT_DONE)
635 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
Trond Myklebustb20135d2015-12-31 09:28:06 -0500636 spin_unlock(&dreq->lock);
637 nfs_mark_request_commit(req, NULL, cinfo, 0);
Fred Isaman1763da12012-04-20 14:47:57 -0400638}
639
640static const struct nfs_commit_completion_ops nfs_direct_commit_completion_ops = {
641 .completion = nfs_direct_commit_complete,
Trond Myklebustb20135d2015-12-31 09:28:06 -0500642 .resched_write = nfs_direct_resched_write,
Trond Myklebustfad61492006-03-20 13:44:36 -0500643};
644
645static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq)
646{
Fred Isaman1763da12012-04-20 14:47:57 -0400647 int res;
648 struct nfs_commit_info cinfo;
649 LIST_HEAD(mds_list);
Trond Myklebustfad61492006-03-20 13:44:36 -0500650
Fred Isaman1763da12012-04-20 14:47:57 -0400651 nfs_init_cinfo_from_dreq(&cinfo, dreq);
652 nfs_scan_commit(dreq->inode, &mds_list, &cinfo);
653 res = nfs_generic_commit_list(dreq->inode, &mds_list, 0, &cinfo);
654 if (res < 0) /* res == -ENOMEM */
655 nfs_direct_write_reschedule(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500656}
657
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400658static void nfs_direct_write_clear_reqs(struct nfs_direct_req *dreq)
659{
660 struct nfs_commit_info cinfo;
661 struct nfs_page *req;
662 LIST_HEAD(reqs);
663
664 nfs_init_cinfo_from_dreq(&cinfo, dreq);
665 nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo);
666
667 while (!list_empty(&reqs)) {
668 req = nfs_list_entry(reqs.next);
669 nfs_list_remove_request(req);
Trond Myklebustf02cec92020-03-30 20:13:48 -0400670 nfs_release_request(req);
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400671 nfs_unlock_and_release_request(req);
672 }
673}
674
Fred Isaman1763da12012-04-20 14:47:57 -0400675static void nfs_direct_write_schedule_work(struct work_struct *work)
Trond Myklebustfad61492006-03-20 13:44:36 -0500676{
Fred Isaman1763da12012-04-20 14:47:57 -0400677 struct nfs_direct_req *dreq = container_of(work, struct nfs_direct_req, work);
Trond Myklebustfad61492006-03-20 13:44:36 -0500678 int flags = dreq->flags;
679
680 dreq->flags = 0;
681 switch (flags) {
682 case NFS_ODIRECT_DO_COMMIT:
683 nfs_direct_commit_schedule(dreq);
684 break;
685 case NFS_ODIRECT_RESCHED_WRITES:
686 nfs_direct_write_reschedule(dreq);
687 break;
688 default:
Trond Myklebustfb5f7f22020-03-21 09:36:13 -0400689 nfs_direct_write_clear_reqs(dreq);
Trond Myklebustf7b5c342016-06-23 09:29:47 -0400690 nfs_zap_mapping(dreq->inode, dreq->inode->i_mapping);
691 nfs_direct_complete(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500692 }
693}
694
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500695static void nfs_direct_write_complete(struct nfs_direct_req *dreq)
Trond Myklebustfad61492006-03-20 13:44:36 -0500696{
NeilBrown46483c22018-08-08 09:20:02 +1000697 queue_work(nfsiod_workqueue, &dreq->work); /* Calls nfs_direct_write_schedule_work */
Trond Myklebustfad61492006-03-20 13:44:36 -0500698}
Fred Isaman1763da12012-04-20 14:47:57 -0400699
Fred Isaman1763da12012-04-20 14:47:57 -0400700static void nfs_direct_write_completion(struct nfs_pgio_header *hdr)
701{
702 struct nfs_direct_req *dreq = hdr->dreq;
703 struct nfs_commit_info cinfo;
Fred Isaman1763da12012-04-20 14:47:57 -0400704 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
Trond Myklebust3731d442021-06-11 13:40:55 -0400705 int flags = NFS_ODIRECT_DONE;
Fred Isaman1763da12012-04-20 14:47:57 -0400706
Fred Isaman1763da12012-04-20 14:47:57 -0400707 nfs_init_cinfo_from_dreq(&cinfo, dreq);
708
709 spin_lock(&dreq->lock);
Trond Myklebusteb2c50d2019-08-12 18:04:36 -0400710 if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) {
711 spin_unlock(&dreq->lock);
712 goto out_put;
713 }
714
Trond Myklebust031d73e2019-09-30 14:02:56 -0400715 nfs_direct_count_bytes(dreq, hdr);
Trond Myklebust1f284762020-03-21 09:27:46 -0400716 if (hdr->good_bytes != 0 && nfs_write_need_commit(hdr)) {
Trond Myklebust3731d442021-06-11 13:40:55 -0400717 if (!dreq->flags)
Trond Myklebust1f284762020-03-21 09:27:46 -0400718 dreq->flags = NFS_ODIRECT_DO_COMMIT;
Trond Myklebust3731d442021-06-11 13:40:55 -0400719 flags = dreq->flags;
Fred Isaman1763da12012-04-20 14:47:57 -0400720 }
721 spin_unlock(&dreq->lock);
722
723 while (!list_empty(&hdr->pages)) {
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400724
Fred Isaman1763da12012-04-20 14:47:57 -0400725 req = nfs_list_entry(hdr->pages.next);
726 nfs_list_remove_request(req);
Trond Myklebust3731d442021-06-11 13:40:55 -0400727 if (flags == NFS_ODIRECT_DO_COMMIT) {
Trond Myklebust04277082012-05-09 13:54:53 -0400728 kref_get(&req->wb_kref);
Chuck Leverba838a72020-05-29 14:14:40 -0400729 memcpy(&req->wb_verf, &hdr->verf.verifier,
730 sizeof(req->wb_verf));
Weston Andros Adamsonb57ff132014-09-05 18:20:21 -0400731 nfs_mark_request_commit(req, hdr->lseg, &cinfo,
732 hdr->ds_commit_idx);
Trond Myklebust3731d442021-06-11 13:40:55 -0400733 } else if (flags == NFS_ODIRECT_RESCHED_WRITES) {
734 kref_get(&req->wb_kref);
735 nfs_mark_request_commit(req, NULL, &cinfo, 0);
Fred Isaman1763da12012-04-20 14:47:57 -0400736 }
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400737 nfs_unlock_and_release_request(req);
Fred Isaman1763da12012-04-20 14:47:57 -0400738 }
739
740out_put:
741 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500742 nfs_direct_write_complete(dreq);
Fred Isaman1763da12012-04-20 14:47:57 -0400743 hdr->release(hdr);
744}
745
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500746static void nfs_write_sync_pgio_error(struct list_head *head, int error)
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400747{
748 struct nfs_page *req;
749
750 while (!list_empty(head)) {
751 req = nfs_list_entry(head->next);
752 nfs_list_remove_request(req);
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400753 nfs_unlock_and_release_request(req);
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400754 }
755}
756
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500757static void nfs_direct_write_reschedule_io(struct nfs_pgio_header *hdr)
758{
759 struct nfs_direct_req *dreq = hdr->dreq;
760
761 spin_lock(&dreq->lock);
762 if (dreq->error == 0) {
763 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
764 /* fake unstable write to let common nfs resend pages */
765 hdr->verf.committed = NFS_UNSTABLE;
Trond Myklebust4daaeba2020-01-06 15:25:14 -0500766 hdr->good_bytes = hdr->args.offset + hdr->args.count -
767 hdr->io_start;
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500768 }
769 spin_unlock(&dreq->lock);
770}
771
Fred Isaman1763da12012-04-20 14:47:57 -0400772static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops = {
Trond Myklebust3e9e0ca32012-04-30 13:40:06 -0400773 .error_cleanup = nfs_write_sync_pgio_error,
Fred Isaman1763da12012-04-20 14:47:57 -0400774 .init_hdr = nfs_direct_pgio_init,
775 .completion = nfs_direct_write_completion,
Trond Myklebustdc602dd2015-12-31 11:44:06 -0500776 .reschedule_io = nfs_direct_write_reschedule_io,
Fred Isaman1763da12012-04-20 14:47:57 -0400777};
778
Al Viro91f79c42014-03-21 04:58:33 -0400779
780/*
781 * NB: Return the value of the first error return code. Subsequent
782 * errors after the first one are ignored.
783 */
784/*
785 * For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE
786 * operation. If nfs_writedata_alloc() or get_user_pages() fails,
787 * bail and stop sending more writes. Write length accounting is
788 * handled automatically by nfs_direct_write_result(). Otherwise, if
789 * no requests have been sent, just return an error.
790 */
Chuck Lever19f73782007-11-12 12:16:47 -0500791static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq,
Al Viro619d30b2014-03-04 21:53:33 -0500792 struct iov_iter *iter,
Al Viro91f79c42014-03-21 04:58:33 -0400793 loff_t pos)
Chuck Lever19f73782007-11-12 12:16:47 -0500794{
Fred Isaman1763da12012-04-20 14:47:57 -0400795 struct nfs_pageio_descriptor desc;
Trond Myklebust1d59d612012-05-31 12:22:33 -0400796 struct inode *inode = dreq->inode;
Chuck Lever19f73782007-11-12 12:16:47 -0500797 ssize_t result = 0;
798 size_t requested_bytes = 0;
Al Viro91f79c42014-03-21 04:58:33 -0400799 size_t wsize = max_t(size_t, NFS_SERVER(inode)->wsize, PAGE_SIZE);
Chuck Lever19f73782007-11-12 12:16:47 -0500800
Christoph Hellwiga20c93e2014-04-16 15:07:21 +0200801 nfs_pageio_init_write(&desc, inode, FLUSH_COND_STABLE, false,
Fred Isaman1763da12012-04-20 14:47:57 -0400802 &nfs_direct_write_completion_ops);
803 desc.pg_dreq = dreq;
Chuck Lever19f73782007-11-12 12:16:47 -0500804 get_dreq(dreq);
Jens Axboefe0f07d2015-04-15 17:05:48 -0600805 inode_dio_begin(inode);
Chuck Lever19f73782007-11-12 12:16:47 -0500806
Al Viro91f79c42014-03-21 04:58:33 -0400807 NFS_I(inode)->write_io += iov_iter_count(iter);
808 while (iov_iter_count(iter)) {
809 struct page **pagevec;
810 size_t bytes;
811 size_t pgbase;
812 unsigned npages, i;
813
814 result = iov_iter_get_pages_alloc(iter, &pagevec,
815 wsize, &pgbase);
Chuck Lever19f73782007-11-12 12:16:47 -0500816 if (result < 0)
817 break;
Al Viro91f79c42014-03-21 04:58:33 -0400818
819 bytes = result;
820 iov_iter_advance(iter, bytes);
821 npages = (result + pgbase + PAGE_SIZE - 1) / PAGE_SIZE;
822 for (i = 0; i < npages; i++) {
823 struct nfs_page *req;
824 unsigned int req_len = min_t(size_t, bytes, PAGE_SIZE - pgbase);
825
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400826 req = nfs_create_request(dreq->ctx, pagevec[i],
Al Viro91f79c42014-03-21 04:58:33 -0400827 pgbase, req_len);
828 if (IS_ERR(req)) {
829 result = PTR_ERR(req);
830 break;
831 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400832
Peng Taod600ad12015-12-04 02:57:48 +0800833 if (desc.pg_error < 0) {
834 nfs_free_request(req);
835 result = desc.pg_error;
836 break;
837 }
Weston Andros Adamson0a00b772014-09-19 12:48:33 -0400838
Al Viro91f79c42014-03-21 04:58:33 -0400839 nfs_lock_request(req);
840 req->wb_index = pos >> PAGE_SHIFT;
841 req->wb_offset = pos & ~PAGE_MASK;
842 if (!nfs_pageio_add_request(&desc, req)) {
843 result = desc.pg_error;
844 nfs_unlock_and_release_request(req);
845 break;
846 }
847 pgbase = 0;
848 bytes -= req_len;
849 requested_bytes += req_len;
850 pos += req_len;
851 dreq->bytes_left -= req_len;
852 }
853 nfs_direct_release_pages(pagevec, npages);
854 kvfree(pagevec);
855 if (result < 0)
Chuck Lever19f73782007-11-12 12:16:47 -0500856 break;
Chuck Lever19f73782007-11-12 12:16:47 -0500857 }
Fred Isaman1763da12012-04-20 14:47:57 -0400858 nfs_pageio_complete(&desc);
Chuck Lever19f73782007-11-12 12:16:47 -0500859
Chuck Lever839f7ad2011-01-21 15:54:57 +0000860 /*
861 * If no bytes were started, return the error, and let the
862 * generic layer handle the completion.
863 */
864 if (requested_bytes == 0) {
Olga Kornievskaiad03727b2020-06-24 13:54:08 -0400865 inode_dio_end(inode);
Olga Kornievskaia65caafd2020-07-15 13:04:15 -0400866 nfs_direct_req_release(dreq);
Chuck Lever839f7ad2011-01-21 15:54:57 +0000867 return result < 0 ? result : -EIO;
868 }
869
Chuck Lever19f73782007-11-12 12:16:47 -0500870 if (put_dreq(dreq))
Anna Schumaker4d3b55d2016-11-23 13:49:38 -0500871 nfs_direct_write_complete(dreq);
Al Viro85128b22017-04-13 09:31:51 -0400872 return requested_bytes;
Chuck Lever19f73782007-11-12 12:16:47 -0500873}
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * nfs_file_direct_write - file direct write operation for NFS files
877 * @iocb: target I/O control block
Al Viro619d30b2014-03-04 21:53:33 -0500878 * @iter: vector of user buffers from which to write data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 *
880 * We use this function for direct writes instead of calling
881 * generic_file_aio_write() in order to avoid taking the inode
882 * semaphore and updating the i_size. The NFS server will set
883 * the new i_size and this client must read the updated size
884 * back into its cache. We let the server do generic write
885 * parameter checking and report problems.
886 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * We eliminate local atime updates, see direct read above.
888 *
889 * We avoid unnecessary page cache invalidations for normal cached
890 * readers of this file.
891 *
892 * Note that O_APPEND is not supported for NFS direct writes, as there
893 * is no atomic O_APPEND write facility in the NFS protocol.
894 */
Al Viro65a4a1c2015-04-09 14:11:08 -0400895ssize_t nfs_file_direct_write(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Colin Ian King9a74a2b2020-07-24 11:44:41 +0100897 ssize_t result, requested;
Trond Myklebust89698b22016-06-23 10:35:48 -0400898 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct address_space *mapping = file->f_mapping;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800901 struct inode *inode = mapping->host;
902 struct nfs_direct_req *dreq;
903 struct nfs_lock_context *l_ctx;
Al Viro65a4a1c2015-04-09 14:11:08 -0400904 loff_t pos, end;
Chuck Leverc216fd72007-11-12 12:16:52 -0500905
Al Viro6de14722013-09-16 10:53:17 -0400906 dfprintk(FILE, "NFS: direct write(%pD2, %zd@%Ld)\n",
Al Viro3309dd02015-04-09 12:55:47 -0400907 file, iov_iter_count(iter), (long long) iocb->ki_pos);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700908
Trond Myklebust89698b22016-06-23 10:35:48 -0400909 result = generic_write_checks(iocb, iter);
910 if (result <= 0)
911 return result;
912 count = result;
913 nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count);
Al Viro3309dd02015-04-09 12:55:47 -0400914
915 pos = iocb->ki_pos;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300916 end = (pos + iov_iter_count(iter) - 1) >> PAGE_SHIFT;
Chuck Leverce1a8e62005-11-30 18:08:17 -0500917
Trond Myklebust89698b22016-06-23 10:35:48 -0400918 task_io_account_write(count);
Konstantin Khlebnikov7ec10f22011-02-22 00:28:34 +0300919
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800920 result = -ENOMEM;
921 dreq = nfs_direct_req_alloc();
922 if (!dreq)
Trond Myklebusta5864c92016-06-03 17:07:19 -0400923 goto out;
Chuck Lever9eafa8c2006-03-20 13:44:33 -0500924
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800925 dreq->inode = inode;
Trond Myklebust89698b22016-06-23 10:35:48 -0400926 dreq->bytes_left = dreq->max_count = count;
Peng Tao5fadeb42015-01-19 12:41:16 +0800927 dreq->io_start = pos;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800928 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
929 l_ctx = nfs_get_lock_context(dreq->ctx);
930 if (IS_ERR(l_ctx)) {
931 result = PTR_ERR(l_ctx);
Misono Tomohiro8605cf02019-08-28 17:01:22 +0900932 nfs_direct_req_release(dreq);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800933 goto out_release;
Fred Isaman1763da12012-04-20 14:47:57 -0400934 }
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800935 dreq->l_ctx = l_ctx;
936 if (!is_sync_kiocb(iocb))
937 dreq->iocb = iocb;
Trond Myklebust9c455a82020-03-21 11:13:05 -0400938 pnfs_init_ds_commit_info_ops(&dreq->ds_cinfo, inode);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800939
Trond Myklebusta5864c92016-06-03 17:07:19 -0400940 nfs_start_io_direct(inode);
941
Al Viro85128b22017-04-13 09:31:51 -0400942 requested = nfs_direct_write_schedule_iovec(dreq, iter, pos);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -0800943
944 if (mapping->nrpages) {
945 invalidate_inode_pages2_range(mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300946 pos >> PAGE_SHIFT, end);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -0800947 }
948
Trond Myklebusta5864c92016-06-03 17:07:19 -0400949 nfs_end_io_direct(inode);
Christoph Hellwiga9ab5e82013-11-14 08:50:34 -0800950
Al Viro85128b22017-04-13 09:31:51 -0400951 if (requested > 0) {
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800952 result = nfs_direct_wait(dreq);
953 if (result > 0) {
Al Viro85128b22017-04-13 09:31:51 -0400954 requested -= result;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800955 iocb->ki_pos = pos + result;
Christoph Hellwige2592212016-04-07 08:52:01 -0700956 /* XXX: should check the generic_write_sync retval */
957 generic_write_sync(iocb, result);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800958 }
Al Viro85128b22017-04-13 09:31:51 -0400959 iov_iter_revert(iter, requested);
960 } else {
961 result = requested;
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800962 }
Dave Wysochanskia6b5a282020-11-14 13:43:54 -0500963 nfs_fscache_invalidate(inode, FSCACHE_INVAL_DIO_WRITE);
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800964out_release:
965 nfs_direct_req_release(dreq);
Trond Myklebusta5864c92016-06-03 17:07:19 -0400966out:
Christoph Hellwig22cd1bf2013-11-14 08:50:32 -0800967 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Chuck Lever88467052006-03-20 13:44:34 -0500970/**
971 * nfs_init_directcache - create a slab cache for nfs_direct_req structures
972 *
973 */
David Howellsf7b422b2006-06-09 09:34:33 -0400974int __init nfs_init_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
977 sizeof(struct nfs_direct_req),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800978 0, (SLAB_RECLAIM_ACCOUNT|
979 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900980 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (nfs_direct_cachep == NULL)
982 return -ENOMEM;
983
984 return 0;
985}
986
Chuck Lever88467052006-03-20 13:44:34 -0500987/**
David Howellsf7b422b2006-06-09 09:34:33 -0400988 * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures
Chuck Lever88467052006-03-20 13:44:34 -0500989 *
990 */
David Brownell266bee82006-06-27 12:59:15 -0700991void nfs_destroy_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700993 kmem_cache_destroy(nfs_direct_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}