blob: eb854f1f86e2eb10cd3ecf2a9b4559761f5027dc [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);
Trond Myklebust23431722020-01-06 15:25:08 -0500217 trace_nfs_initiate_read(hdr);
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);
Trond Myklebust23431722020-01-06 15:25:08 -0500250 trace_nfs_readpage_done(task, hdr);
Trond Myklebust0b671302006-11-14 16:12:23 -0500251
252 if (task->tk_status == -ESTALE) {
Trond Myklebust93ce4af2020-04-06 13:39:29 -0400253 nfs_set_inode_stale(inode);
Fred Isamancd841602012-04-20 14:47:44 -0400254 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500255 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500256 return 0;
257}
258
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400259static void nfs_readpage_retry(struct rpc_task *task,
260 struct nfs_pgio_header *hdr)
Trond Myklebust0b671302006-11-14 16:12:23 -0500261{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400262 struct nfs_pgio_args *argp = &hdr->args;
263 struct nfs_pgio_res *resp = &hdr->res;
Trond Myklebust0b671302006-11-14 16:12:23 -0500264
Trond Myklebust0b671302006-11-14 16:12:23 -0500265 /* This is a short read! */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400266 nfs_inc_stats(hdr->inode, NFSIOS_SHORTREAD);
Chuck Leverfd2b6122020-05-12 17:14:05 -0400267 trace_nfs_readpage_short(task, hdr);
268
Trond Myklebust0b671302006-11-14 16:12:23 -0500269 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400270 if (resp->count == 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400271 nfs_set_pgio_error(hdr, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500272 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400273 }
Kinglong Meef8417b482015-10-16 17:23:29 +0800274
275 /* For non rpc-based layout drivers, retry-through-MDS */
276 if (!task->tk_ops) {
277 hdr->pnfs_error = -EAGAIN;
278 return;
279 }
280
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400281 /* Yes, so retry the read at the end of the hdr */
282 hdr->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500283 argp->offset += resp->count;
284 argp->pgbase += resp->count;
285 argp->count -= resp->count;
Trond Myklebust8c9cb712020-01-06 15:25:13 -0500286 resp->count = 0;
287 resp->eof = 0;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700288 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500289}
290
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400291static void nfs_readpage_result(struct rpc_task *task,
292 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400294 if (hdr->res.eof) {
Trond Myklebust1c6c4b72018-09-25 12:34:43 -0400295 loff_t pos = hdr->args.offset + hdr->res.count;
296 unsigned int new = pos - hdr->io_start;
Trond Myklebust0b671302006-11-14 16:12:23 -0500297
Trond Myklebust1c6c4b72018-09-25 12:34:43 -0400298 if (hdr->good_bytes > new) {
299 hdr->good_bytes = new;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400300 set_bit(NFS_IOHDR_EOF, &hdr->flags);
301 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400302 }
Kinglong Meef8417b482015-10-16 17:23:29 +0800303 } else if (hdr->res.count < hdr->args.count)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400304 nfs_readpage_retry(task, hdr);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * Read a page over NFS.
309 * We read the page synchronously in the following case:
310 * - The error flag is set for this page. This happens only when a
311 * previous async read operation failed.
312 */
313int nfs_readpage(struct file *file, struct page *page)
314{
315 struct nfs_open_context *ctx;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700316 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int error;
318
319 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
Huang Ying8cd79782016-10-07 17:00:24 -0700320 page, PAGE_SIZE, page_index(page));
Chuck Lever91d5b472006-03-20 13:44:14 -0500321 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
Nicolas Iooss3708f842015-04-16 18:48:39 +0800322 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
Chuck Lever91d5b472006-03-20 13:44:14 -0500323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
325 * Try to flush any pending writes to the file..
326 *
327 * NOTE! Because we own the page lock, there cannot
328 * be any new pending writes generated at this point
329 * for this page (other pages can be written to).
330 */
331 error = nfs_wb_page(inode, page);
332 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400333 goto out_unlock;
334 if (PageUptodate(page))
335 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400337 error = -ESTALE;
338 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400339 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500342 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500343 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400345 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400347 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
David Howells9a9fc1c2009-04-03 16:42:44 +0100349 if (!IS_SYNC(inode)) {
350 error = nfs_readpage_from_fscache(ctx, inode, page);
351 if (error == 0)
352 goto out;
353 }
354
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400355 xchg(&ctx->error, 0);
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500356 error = nfs_readpage_async(ctx, inode, page);
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400357 if (!error) {
358 error = wait_on_page_locked_killable(page);
359 if (!PageUptodate(page) && !error)
360 error = xchg(&ctx->error, 0);
361 }
David Howells9a9fc1c2009-04-03 16:42:44 +0100362out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 put_nfs_open_context(ctx);
364 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400365out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 unlock_page(page);
367 return error;
368}
369
370struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400371 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct nfs_open_context *ctx;
373};
374
375static int
376readpage_async_filler(void *data, struct page *page)
377{
378 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct nfs_page *new;
380 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400381 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Trond Myklebust49a70f22006-12-05 00:35:38 -0500383 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (len == 0)
385 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400386
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400387 new = nfs_create_request(desc->ctx, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400388 if (IS_ERR(new))
389 goto out_error;
390
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300391 if (len < PAGE_SIZE)
392 zero_user_segment(page, len, PAGE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400393 if (!nfs_pageio_add_request(desc->pgio, new)) {
Peng Tao0bcbf032015-12-05 15:57:31 +0800394 nfs_list_remove_request(new);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400395 error = desc->pgio->pg_error;
Trond Myklebust8f54c7a2019-08-15 12:26:05 -0400396 nfs_readpage_release(new, error);
Trond Myklebustcbebaf82016-06-17 16:48:25 -0400397 goto out;
Fred Isamanf8512ad2008-03-19 11:24:39 -0400398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400400out_error:
401 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400402 unlock_page(page);
Trond Myklebustcbebaf82016-06-17 16:48:25 -0400403out:
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400404 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407int nfs_readpages(struct file *filp, struct address_space *mapping,
408 struct list_head *pages, unsigned nr_pages)
409{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400410 struct nfs_pageio_descriptor pgio;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400411 struct nfs_pgio_mirror *pgm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400413 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 };
415 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400416 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400417 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Niels de Vos1e8968c2013-12-17 18:20:16 +0100419 dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100421 (unsigned long long)NFS_FILEID(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500423 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400425 if (NFS_STALE(inode))
426 goto out;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500429 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (desc.ctx == NULL)
431 return -EBADF;
432 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400433 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100434
435 /* attempt to read as many of the pages as possible from the cache
436 * - this returns -ENOBUFS immediately if the cookie is negative
437 */
438 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
439 pages, &nr_pages);
440 if (ret == 0)
441 goto read_complete; /* all pages were read */
442
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200443 nfs_pageio_init_read(&pgio, inode, false,
444 &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400447 nfs_pageio_complete(&pgio);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400448
449 /* It doesn't make sense to do mirrored reads! */
450 WARN_ON_ONCE(pgio.pg_mirror_count != 1);
451
452 pgm = &pgio.pg_mirrors[0];
453 NFS_I(inode)->read_io += pgm->pg_bytes_written;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300454 npages = (pgm->pg_bytes_written + PAGE_SIZE - 1) >>
455 PAGE_SHIFT;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400456 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100457read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400459out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return ret;
461}
462
David Howellsf7b422b2006-06-09 09:34:33 -0400463int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -0400466 sizeof(struct nfs_pgio_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900468 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (nfs_rdata_cachep == NULL)
470 return -ENOMEM;
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 0;
473}
474
David Brownell266bee82006-06-27 12:59:15 -0700475void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700477 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
Anna Schumaker4a0de552014-05-06 09:12:30 -0400479
480static const struct nfs_rw_ops nfs_rw_read_ops = {
481 .rw_alloc_header = nfs_readhdr_alloc,
482 .rw_free_header = nfs_readhdr_free,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400483 .rw_done = nfs_readpage_done,
484 .rw_result = nfs_readpage_result,
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400485 .rw_initiate = nfs_initiate_read,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400486};