blob: cfe0b586eadd4d0ed5bae36a00bfabf85ea90fe9 [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/read.c
4 *
5 * Block I/O for NFS
6 *
7 * Partial copy of Linus' read cache modifications to fs/nfs/file.c
8 * modified for async RPC by okir@monad.swb.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/time.h>
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/fcntl.h>
15#include <linux/stat.h>
16#include <linux/mm.h>
17#include <linux/slab.h>
18#include <linux/pagemap.h>
19#include <linux/sunrpc/clnt.h>
20#include <linux/nfs_fs.h>
21#include <linux/nfs_page.h>
Andy Adamson64419a92011-03-01 01:34:16 +000022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Andy Adamsonf11c88a2009-04-01 09:22:25 -040024#include "nfs4_fs.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050025#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050026#include "iostat.h"
David Howells9a9fc1c2009-04-03 16:42:44 +010027#include "fscache.h"
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020028#include "pnfs.h"
Chuck Lever8224b272017-08-21 15:00:49 -040029#include "nfstrace.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define NFSDBG_FACILITY NFSDBG_PAGECACHE
32
Fred Isaman061ae2e2012-04-20 14:47:48 -040033static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops;
Anna Schumaker4a0de552014-05-06 09:12:30 -040034static const struct nfs_rw_ops nfs_rw_read_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Christoph Lametere18b8902006-12-06 20:33:20 -080036static struct kmem_cache *nfs_rdata_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -040038static struct nfs_pgio_header *nfs_readhdr_alloc(void)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050039{
Benjamin Coddingtonfbe77c32017-04-19 10:11:35 -040040 struct nfs_pgio_header *p = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
41
42 if (p)
43 p->rw_mode = FMODE_READ;
44 return p;
Fred Isaman4db6e0b2012-04-20 14:47:46 -040045}
46
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -040047static void nfs_readhdr_free(struct nfs_pgio_header *rhdr)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050048{
Fred Isamancd841602012-04-20 14:47:44 -040049 kmem_cache_free(nfs_rdata_cachep, rhdr);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050050}
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static
Linus Torvalds1da177e2005-04-16 15:20:36 -070053int nfs_return_empty_page(struct page *page)
54{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030055 zero_user(page, 0, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 SetPageUptodate(page);
57 unlock_page(page);
58 return 0;
59}
60
Bryan Schumaker1abb50882012-06-20 15:53:47 -040061void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020062 struct inode *inode, bool force_mds,
Fred Isaman061ae2e2012-04-20 14:47:48 -040063 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -040064{
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020065 struct nfs_server *server = NFS_SERVER(inode);
Anna Schumaker41d8d5b2014-05-06 09:12:40 -040066 const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020067
68#ifdef CONFIG_NFS_V4_1
69 if (server->pnfs_curr_ld && !force_mds)
70 pg_ops = server->pnfs_curr_ld->pg_read_ops;
71#endif
Anna Schumaker4a0de552014-05-06 09:12:30 -040072 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
Trond Myklebust3bde7af2017-08-20 11:33:25 -040073 server->rsize, 0);
Trond Myklebust1751c362011-06-10 13:30:23 -040074}
Bryan Schumakerddda8e02012-07-30 16:05:23 -040075EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
Trond Myklebust1751c362011-06-10 13:30:23 -040076
Trond Myklebust493292d2011-07-13 15:58:28 -040077void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
78{
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -040079 struct nfs_pgio_mirror *mirror;
80
Kinglong Mee6f29b9b2015-09-20 23:03:28 +080081 if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
82 pgio->pg_ops->pg_cleanup(pgio);
83
Anna Schumaker41d8d5b2014-05-06 09:12:40 -040084 pgio->pg_ops = &nfs_pgio_rw_ops;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -040085
86 /* read path should never have more than one mirror */
87 WARN_ON_ONCE(pgio->pg_mirror_count != 1);
88
89 mirror = &pgio->pg_mirrors[0];
90 mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
Trond Myklebust493292d2011-07-13 15:58:28 -040091}
Trond Myklebust1f945352011-07-13 15:59:57 -040092EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
Trond Myklebust493292d2011-07-13 15:58:28 -040093
Trond Myklebust8f54c7a2019-08-15 12:26:05 -040094static void nfs_readpage_release(struct nfs_page *req, int error)
Peng Tao0bcbf032015-12-05 15:57:31 +080095{
Trond Myklebust9fcd5962019-04-07 13:59:11 -040096 struct inode *inode = d_inode(nfs_req_openctx(req)->dentry);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -040097 struct page *page = req->wb_page;
Peng Tao0bcbf032015-12-05 15:57:31 +080098
99 dprintk("NFS: read done (%s/%llu %d@%lld)\n", inode->i_sb->s_id,
100 (unsigned long long)NFS_FILEID(inode), req->wb_bytes,
101 (long long)req_offset(req));
102
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400103 if (nfs_error_is_fatal_on_server(error) && error != -ETIMEDOUT)
104 SetPageError(page);
Peng Tao0bcbf032015-12-05 15:57:31 +0800105 if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400106 struct address_space *mapping = page_file_mapping(page);
Peng Tao0bcbf032015-12-05 15:57:31 +0800107
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400108 if (PageUptodate(page))
109 nfs_readpage_to_fscache(inode, page, 0);
110 else if (!PageError(page) && !PagePrivate(page))
111 generic_error_remove_page(mapping, page);
112 unlock_page(page);
Peng Tao0bcbf032015-12-05 15:57:31 +0800113 }
114 nfs_release_request(req);
115}
116
David Howellsf42b2932009-04-03 16:42:44 +0100117int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
118 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 struct nfs_page *new;
121 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +0000122 struct nfs_pageio_descriptor pgio;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400123 struct nfs_pgio_mirror *pgm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Trond Myklebust49a70f22006-12-05 00:35:38 -0500125 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (len == 0)
127 return nfs_return_empty_page(page);
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400128 new = nfs_create_request(ctx, page, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (IS_ERR(new)) {
130 unlock_page(page);
131 return PTR_ERR(new);
132 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300133 if (len < PAGE_SIZE)
134 zero_user_segment(page, len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200136 nfs_pageio_init_read(&pgio, inode, false,
137 &nfs_async_read_completion_ops);
Peng Tao0bcbf032015-12-05 15:57:31 +0800138 if (!nfs_pageio_add_request(&pgio, new)) {
139 nfs_list_remove_request(new);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400140 nfs_readpage_release(new, pgio.pg_error);
Peng Tao0bcbf032015-12-05 15:57:31 +0800141 }
Trond Myklebust1751c362011-06-10 13:30:23 -0400142 nfs_pageio_complete(&pgio);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400143
144 /* It doesn't make sense to do mirrored reads! */
145 WARN_ON_ONCE(pgio.pg_mirror_count != 1);
146
147 pgm = &pgio.pg_mirrors[0];
148 NFS_I(inode)->read_io += pgm->pg_bytes_written;
149
Peng Taod600ad12015-12-04 02:57:48 +0800150 return pgio.pg_error < 0 ? pgio.pg_error : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400153static void nfs_page_group_set_uptodate(struct nfs_page *req)
154{
155 if (nfs_page_group_sync_on_bit(req, PG_UPTODATE))
156 SetPageUptodate(req->wb_page);
157}
158
Fred Isaman061ae2e2012-04-20 14:47:48 -0400159static void nfs_read_completion(struct nfs_pgio_header *hdr)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400160{
161 unsigned long bytes = 0;
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400162 int error;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400163
164 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
165 goto out;
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400166 while (!list_empty(&hdr->pages)) {
167 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
168 struct page *page = req->wb_page;
Weston Andros Adamson68072992014-05-15 11:56:57 -0400169 unsigned long start = req->wb_pgbase;
170 unsigned long end = req->wb_pgbase + req->wb_bytes;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400171
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400172 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
Weston Andros Adamson68072992014-05-15 11:56:57 -0400173 /* note: regions of the page not covered by a
174 * request are zeroed in nfs_readpage_async /
175 * readpage_async_filler */
176 if (bytes > hdr->good_bytes) {
177 /* nothing in this request was good, so zero
178 * the full extent of the request */
179 zero_user_segment(page, start, end);
180
181 } else if (hdr->good_bytes - bytes < req->wb_bytes) {
182 /* part of this request has good bytes, but
183 * not all. zero the bad bytes */
184 start += hdr->good_bytes - bytes;
185 WARN_ON(start < req->wb_pgbase);
186 zero_user_segment(page, start, end);
187 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400188 }
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400189 error = 0;
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400190 bytes += req->wb_bytes;
191 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400192 if (bytes <= hdr->good_bytes)
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400193 nfs_page_group_set_uptodate(req);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400194 else {
195 error = hdr->error;
196 xchg(&nfs_req_openctx(req)->error, error);
197 }
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400198 } else
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400199 nfs_page_group_set_uptodate(req);
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400200 nfs_list_remove_request(req);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400201 nfs_readpage_release(req, error);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400202 }
203out:
204 hdr->release(hdr);
205}
206
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400207static void nfs_initiate_read(struct nfs_pgio_header *hdr,
208 struct rpc_message *msg,
Tom Haynesabde71f2014-06-09 13:12:20 -0700209 const struct nfs_rpc_ops *rpc_ops,
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400210 struct rpc_task_setup *task_setup_data, int how)
Andy Adamson64419a92011-03-01 01:34:16 +0000211{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400212 struct inode *inode = hdr->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000213 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
Andy Adamson64419a92011-03-01 01:34:16 +0000214
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400215 task_setup_data->flags |= swap_flags;
Tom Haynesabde71f2014-06-09 13:12:20 -0700216 rpc_ops->read_setup(hdr, msg);
Chuck Lever8224b272017-08-21 15:00:49 -0400217 trace_nfs_initiate_read(inode, hdr->io_start, hdr->good_bytes);
Andy Adamson64419a92011-03-01 01:34:16 +0000218}
219
Fred Isaman061ae2e2012-04-20 14:47:48 -0400220static void
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500221nfs_async_read_error(struct list_head *head, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct nfs_page *req;
224
225 while (!list_empty(head)) {
226 req = nfs_list_entry(head->next);
227 nfs_list_remove_request(req);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400228 nfs_readpage_release(req, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230}
231
Fred Isaman061ae2e2012-04-20 14:47:48 -0400232static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
233 .error_cleanup = nfs_async_read_error,
234 .completion = nfs_read_completion,
235};
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500238 * This is the callback from RPC telling us whether a reply was
239 * received or some error occurred (timeout or socket shutdown).
240 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400241static int nfs_readpage_done(struct rpc_task *task,
242 struct nfs_pgio_header *hdr,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400243 struct inode *inode)
Trond Myklebust0b671302006-11-14 16:12:23 -0500244{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400245 int status = NFS_PROTO(inode)->read_done(task, hdr);
Trond Myklebust0b671302006-11-14 16:12:23 -0500246 if (status != 0)
247 return status;
248
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400249 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, hdr->res.count);
Chuck Lever8224b272017-08-21 15:00:49 -0400250 trace_nfs_readpage_done(inode, task->tk_status,
251 hdr->args.offset, hdr->res.eof);
Trond Myklebust0b671302006-11-14 16:12:23 -0500252
253 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400254 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
255 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500256 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500257 return 0;
258}
259
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400260static void nfs_readpage_retry(struct rpc_task *task,
261 struct nfs_pgio_header *hdr)
Trond Myklebust0b671302006-11-14 16:12:23 -0500262{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400263 struct nfs_pgio_args *argp = &hdr->args;
264 struct nfs_pgio_res *resp = &hdr->res;
Trond Myklebust0b671302006-11-14 16:12:23 -0500265
Trond Myklebust0b671302006-11-14 16:12:23 -0500266 /* This is a short read! */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400267 nfs_inc_stats(hdr->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500268 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400269 if (resp->count == 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400270 nfs_set_pgio_error(hdr, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500271 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400272 }
Kinglong Meef8417b482015-10-16 17:23:29 +0800273
274 /* For non rpc-based layout drivers, retry-through-MDS */
275 if (!task->tk_ops) {
276 hdr->pnfs_error = -EAGAIN;
277 return;
278 }
279
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400280 /* Yes, so retry the read at the end of the hdr */
281 hdr->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500282 argp->offset += resp->count;
283 argp->pgbase += resp->count;
284 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700285 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500286}
287
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400288static void nfs_readpage_result(struct rpc_task *task,
289 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400291 if (hdr->res.eof) {
Trond Myklebust1c6c4b72018-09-25 12:34:43 -0400292 loff_t pos = hdr->args.offset + hdr->res.count;
293 unsigned int new = pos - hdr->io_start;
Trond Myklebust0b671302006-11-14 16:12:23 -0500294
Trond Myklebust1c6c4b72018-09-25 12:34:43 -0400295 if (hdr->good_bytes > new) {
296 hdr->good_bytes = new;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400297 set_bit(NFS_IOHDR_EOF, &hdr->flags);
298 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400299 }
Kinglong Meef8417b482015-10-16 17:23:29 +0800300 } else if (hdr->res.count < hdr->args.count)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400301 nfs_readpage_retry(task, hdr);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * Read a page over NFS.
306 * We read the page synchronously in the following case:
307 * - The error flag is set for this page. This happens only when a
308 * previous async read operation failed.
309 */
310int nfs_readpage(struct file *file, struct page *page)
311{
312 struct nfs_open_context *ctx;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700313 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 int error;
315
316 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
Huang Ying8cd79782016-10-07 17:00:24 -0700317 page, PAGE_SIZE, page_index(page));
Chuck Lever91d5b472006-03-20 13:44:14 -0500318 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
Nicolas Iooss3708f842015-04-16 18:48:39 +0800319 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
Chuck Lever91d5b472006-03-20 13:44:14 -0500320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /*
322 * Try to flush any pending writes to the file..
323 *
324 * NOTE! Because we own the page lock, there cannot
325 * be any new pending writes generated at this point
326 * for this page (other pages can be written to).
327 */
328 error = nfs_wb_page(inode, page);
329 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400330 goto out_unlock;
331 if (PageUptodate(page))
332 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400334 error = -ESTALE;
335 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400336 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500339 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500340 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400342 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400344 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
David Howells9a9fc1c2009-04-03 16:42:44 +0100346 if (!IS_SYNC(inode)) {
347 error = nfs_readpage_from_fscache(ctx, inode, page);
348 if (error == 0)
349 goto out;
350 }
351
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400352 xchg(&ctx->error, 0);
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500353 error = nfs_readpage_async(ctx, inode, page);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400354 if (!error) {
355 error = wait_on_page_locked_killable(page);
356 if (!PageUptodate(page) && !error)
357 error = xchg(&ctx->error, 0);
358 }
David Howells9a9fc1c2009-04-03 16:42:44 +0100359out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 put_nfs_open_context(ctx);
361 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400362out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 unlock_page(page);
364 return error;
365}
366
367struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400368 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 struct nfs_open_context *ctx;
370};
371
372static int
373readpage_async_filler(void *data, struct page *page)
374{
375 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct nfs_page *new;
377 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400378 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Trond Myklebust49a70f22006-12-05 00:35:38 -0500380 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (len == 0)
382 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400383
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400384 new = nfs_create_request(desc->ctx, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400385 if (IS_ERR(new))
386 goto out_error;
387
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300388 if (len < PAGE_SIZE)
389 zero_user_segment(page, len, PAGE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400390 if (!nfs_pageio_add_request(desc->pgio, new)) {
Peng Tao0bcbf032015-12-05 15:57:31 +0800391 nfs_list_remove_request(new);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400392 error = desc->pgio->pg_error;
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400393 nfs_readpage_release(new, error);
Trond Myklebustcbebaf82016-06-17 16:48:25 -0400394 goto out;
Fred Isamanf8512ad2008-03-19 11:24:39 -0400395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400397out_error:
398 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400399 unlock_page(page);
Trond Myklebustcbebaf82016-06-17 16:48:25 -0400400out:
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400401 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404int nfs_readpages(struct file *filp, struct address_space *mapping,
405 struct list_head *pages, unsigned nr_pages)
406{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400407 struct nfs_pageio_descriptor pgio;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400408 struct nfs_pgio_mirror *pgm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400410 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 };
412 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400413 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400414 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Niels de Vos1e8968c2013-12-17 18:20:16 +0100416 dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100418 (unsigned long long)NFS_FILEID(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500420 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400422 if (NFS_STALE(inode))
423 goto out;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500426 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (desc.ctx == NULL)
428 return -EBADF;
429 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400430 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100431
432 /* attempt to read as many of the pages as possible from the cache
433 * - this returns -ENOBUFS immediately if the cookie is negative
434 */
435 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
436 pages, &nr_pages);
437 if (ret == 0)
438 goto read_complete; /* all pages were read */
439
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200440 nfs_pageio_init_read(&pgio, inode, false,
441 &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400444 nfs_pageio_complete(&pgio);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400445
446 /* It doesn't make sense to do mirrored reads! */
447 WARN_ON_ONCE(pgio.pg_mirror_count != 1);
448
449 pgm = &pgio.pg_mirrors[0];
450 NFS_I(inode)->read_io += pgm->pg_bytes_written;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300451 npages = (pgm->pg_bytes_written + PAGE_SIZE - 1) >>
452 PAGE_SHIFT;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400453 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100454read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400456out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return ret;
458}
459
David Howellsf7b422b2006-06-09 09:34:33 -0400460int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -0400463 sizeof(struct nfs_pgio_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900465 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (nfs_rdata_cachep == NULL)
467 return -ENOMEM;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return 0;
470}
471
David Brownell266bee82006-06-27 12:59:15 -0700472void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700474 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
Anna Schumaker4a0de552014-05-06 09:12:30 -0400476
477static const struct nfs_rw_ops nfs_rw_read_ops = {
478 .rw_alloc_header = nfs_readhdr_alloc,
479 .rw_free_header = nfs_readhdr_free,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400480 .rw_done = nfs_readpage_done,
481 .rw_result = nfs_readpage_result,
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400482 .rw_initiate = nfs_initiate_read,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400483};