blob: c19841c82b6a3213203d1e964e5fcd85e8c96e1a [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
Peng Tao0bcbf032015-12-05 15:57:31 +080094static void nfs_readpage_release(struct nfs_page *req)
95{
Trond Myklebust9fcd5962019-04-07 13:59:11 -040096 struct inode *inode = d_inode(nfs_req_openctx(req)->dentry);
Peng Tao0bcbf032015-12-05 15:57:31 +080097
98 dprintk("NFS: read done (%s/%llu %d@%lld)\n", inode->i_sb->s_id,
99 (unsigned long long)NFS_FILEID(inode), req->wb_bytes,
100 (long long)req_offset(req));
101
102 if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
103 if (PageUptodate(req->wb_page))
104 nfs_readpage_to_fscache(inode, req->wb_page, 0);
105
106 unlock_page(req->wb_page);
107 }
108 nfs_release_request(req);
109}
110
David Howellsf42b2932009-04-03 16:42:44 +0100111int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
112 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct nfs_page *new;
115 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +0000116 struct nfs_pageio_descriptor pgio;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400117 struct nfs_pgio_mirror *pgm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Trond Myklebust49a70f22006-12-05 00:35:38 -0500119 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (len == 0)
121 return nfs_return_empty_page(page);
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400122 new = nfs_create_request(ctx, page, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (IS_ERR(new)) {
124 unlock_page(page);
125 return PTR_ERR(new);
126 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300127 if (len < PAGE_SIZE)
128 zero_user_segment(page, len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200130 nfs_pageio_init_read(&pgio, inode, false,
131 &nfs_async_read_completion_ops);
Peng Tao0bcbf032015-12-05 15:57:31 +0800132 if (!nfs_pageio_add_request(&pgio, new)) {
133 nfs_list_remove_request(new);
134 nfs_readpage_release(new);
135 }
Trond Myklebust1751c362011-06-10 13:30:23 -0400136 nfs_pageio_complete(&pgio);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400137
138 /* It doesn't make sense to do mirrored reads! */
139 WARN_ON_ONCE(pgio.pg_mirror_count != 1);
140
141 pgm = &pgio.pg_mirrors[0];
142 NFS_I(inode)->read_io += pgm->pg_bytes_written;
143
Peng Taod600ad12015-12-04 02:57:48 +0800144 return pgio.pg_error < 0 ? pgio.pg_error : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400147static void nfs_page_group_set_uptodate(struct nfs_page *req)
148{
149 if (nfs_page_group_sync_on_bit(req, PG_UPTODATE))
150 SetPageUptodate(req->wb_page);
151}
152
Fred Isaman061ae2e2012-04-20 14:47:48 -0400153static void nfs_read_completion(struct nfs_pgio_header *hdr)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400154{
155 unsigned long bytes = 0;
156
157 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
158 goto out;
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400159 while (!list_empty(&hdr->pages)) {
160 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
161 struct page *page = req->wb_page;
Weston Andros Adamson68072992014-05-15 11:56:57 -0400162 unsigned long start = req->wb_pgbase;
163 unsigned long end = req->wb_pgbase + req->wb_bytes;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400164
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400165 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
Weston Andros Adamson68072992014-05-15 11:56:57 -0400166 /* note: regions of the page not covered by a
167 * request are zeroed in nfs_readpage_async /
168 * readpage_async_filler */
169 if (bytes > hdr->good_bytes) {
170 /* nothing in this request was good, so zero
171 * the full extent of the request */
172 zero_user_segment(page, start, end);
173
174 } else if (hdr->good_bytes - bytes < req->wb_bytes) {
175 /* part of this request has good bytes, but
176 * not all. zero the bad bytes */
177 start += hdr->good_bytes - bytes;
178 WARN_ON(start < req->wb_pgbase);
179 zero_user_segment(page, start, end);
180 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400181 }
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400182 bytes += req->wb_bytes;
183 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400184 if (bytes <= hdr->good_bytes)
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400185 nfs_page_group_set_uptodate(req);
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400186 } else
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400187 nfs_page_group_set_uptodate(req);
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400188 nfs_list_remove_request(req);
189 nfs_readpage_release(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400190 }
191out:
192 hdr->release(hdr);
193}
194
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400195static void nfs_initiate_read(struct nfs_pgio_header *hdr,
196 struct rpc_message *msg,
Tom Haynesabde71f2014-06-09 13:12:20 -0700197 const struct nfs_rpc_ops *rpc_ops,
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400198 struct rpc_task_setup *task_setup_data, int how)
Andy Adamson64419a92011-03-01 01:34:16 +0000199{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400200 struct inode *inode = hdr->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000201 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
Andy Adamson64419a92011-03-01 01:34:16 +0000202
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400203 task_setup_data->flags |= swap_flags;
Tom Haynesabde71f2014-06-09 13:12:20 -0700204 rpc_ops->read_setup(hdr, msg);
Chuck Lever8224b272017-08-21 15:00:49 -0400205 trace_nfs_initiate_read(inode, hdr->io_start, hdr->good_bytes);
Andy Adamson64419a92011-03-01 01:34:16 +0000206}
207
Fred Isaman061ae2e2012-04-20 14:47:48 -0400208static void
Trond Myklebustdf3accb2019-02-13 10:39:39 -0500209nfs_async_read_error(struct list_head *head, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct nfs_page *req;
212
213 while (!list_empty(head)) {
214 req = nfs_list_entry(head->next);
215 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 nfs_readpage_release(req);
217 }
218}
219
Fred Isaman061ae2e2012-04-20 14:47:48 -0400220static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
221 .error_cleanup = nfs_async_read_error,
222 .completion = nfs_read_completion,
223};
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500226 * This is the callback from RPC telling us whether a reply was
227 * received or some error occurred (timeout or socket shutdown).
228 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400229static int nfs_readpage_done(struct rpc_task *task,
230 struct nfs_pgio_header *hdr,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400231 struct inode *inode)
Trond Myklebust0b671302006-11-14 16:12:23 -0500232{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400233 int status = NFS_PROTO(inode)->read_done(task, hdr);
Trond Myklebust0b671302006-11-14 16:12:23 -0500234 if (status != 0)
235 return status;
236
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400237 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, hdr->res.count);
Chuck Lever8224b272017-08-21 15:00:49 -0400238 trace_nfs_readpage_done(inode, task->tk_status,
239 hdr->args.offset, hdr->res.eof);
Trond Myklebust0b671302006-11-14 16:12:23 -0500240
241 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400242 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
243 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500244 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500245 return 0;
246}
247
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400248static void nfs_readpage_retry(struct rpc_task *task,
249 struct nfs_pgio_header *hdr)
Trond Myklebust0b671302006-11-14 16:12:23 -0500250{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400251 struct nfs_pgio_args *argp = &hdr->args;
252 struct nfs_pgio_res *resp = &hdr->res;
Trond Myklebust0b671302006-11-14 16:12:23 -0500253
Trond Myklebust0b671302006-11-14 16:12:23 -0500254 /* This is a short read! */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400255 nfs_inc_stats(hdr->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500256 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400257 if (resp->count == 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400258 nfs_set_pgio_error(hdr, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500259 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400260 }
Kinglong Meef8417b482015-10-16 17:23:29 +0800261
262 /* For non rpc-based layout drivers, retry-through-MDS */
263 if (!task->tk_ops) {
264 hdr->pnfs_error = -EAGAIN;
265 return;
266 }
267
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400268 /* Yes, so retry the read at the end of the hdr */
269 hdr->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500270 argp->offset += resp->count;
271 argp->pgbase += resp->count;
272 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700273 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500274}
275
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400276static void nfs_readpage_result(struct rpc_task *task,
277 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400279 if (hdr->res.eof) {
Trond Myklebust1c6c4b72018-09-25 12:34:43 -0400280 loff_t pos = hdr->args.offset + hdr->res.count;
281 unsigned int new = pos - hdr->io_start;
Trond Myklebust0b671302006-11-14 16:12:23 -0500282
Trond Myklebust1c6c4b72018-09-25 12:34:43 -0400283 if (hdr->good_bytes > new) {
284 hdr->good_bytes = new;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400285 set_bit(NFS_IOHDR_EOF, &hdr->flags);
286 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400287 }
Kinglong Meef8417b482015-10-16 17:23:29 +0800288 } else if (hdr->res.count < hdr->args.count)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400289 nfs_readpage_retry(task, hdr);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * Read a page over NFS.
294 * We read the page synchronously in the following case:
295 * - The error flag is set for this page. This happens only when a
296 * previous async read operation failed.
297 */
298int nfs_readpage(struct file *file, struct page *page)
299{
300 struct nfs_open_context *ctx;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700301 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 int error;
303
304 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
Huang Ying8cd79782016-10-07 17:00:24 -0700305 page, PAGE_SIZE, page_index(page));
Chuck Lever91d5b472006-03-20 13:44:14 -0500306 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
Nicolas Iooss3708f842015-04-16 18:48:39 +0800307 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
Chuck Lever91d5b472006-03-20 13:44:14 -0500308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /*
310 * Try to flush any pending writes to the file..
311 *
312 * NOTE! Because we own the page lock, there cannot
313 * be any new pending writes generated at this point
314 * for this page (other pages can be written to).
315 */
316 error = nfs_wb_page(inode, page);
317 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400318 goto out_unlock;
319 if (PageUptodate(page))
320 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400322 error = -ESTALE;
323 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400324 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500327 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500328 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400330 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400332 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
David Howells9a9fc1c2009-04-03 16:42:44 +0100334 if (!IS_SYNC(inode)) {
335 error = nfs_readpage_from_fscache(ctx, inode, page);
336 if (error == 0)
337 goto out;
338 }
339
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500340 error = nfs_readpage_async(ctx, inode, page);
341
David Howells9a9fc1c2009-04-03 16:42:44 +0100342out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 put_nfs_open_context(ctx);
344 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400345out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 unlock_page(page);
347 return error;
348}
349
350struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400351 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct nfs_open_context *ctx;
353};
354
355static int
356readpage_async_filler(void *data, struct page *page)
357{
358 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct nfs_page *new;
360 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400361 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Trond Myklebust49a70f22006-12-05 00:35:38 -0500363 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (len == 0)
365 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400366
Trond Myklebust28b1d3f2019-04-07 13:59:07 -0400367 new = nfs_create_request(desc->ctx, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400368 if (IS_ERR(new))
369 goto out_error;
370
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300371 if (len < PAGE_SIZE)
372 zero_user_segment(page, len, PAGE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400373 if (!nfs_pageio_add_request(desc->pgio, new)) {
Peng Tao0bcbf032015-12-05 15:57:31 +0800374 nfs_list_remove_request(new);
375 nfs_readpage_release(new);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400376 error = desc->pgio->pg_error;
Trond Myklebustcbebaf82016-06-17 16:48:25 -0400377 goto out;
Fred Isamanf8512ad2008-03-19 11:24:39 -0400378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400380out_error:
381 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400382 unlock_page(page);
Trond Myklebustcbebaf82016-06-17 16:48:25 -0400383out:
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400384 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387int nfs_readpages(struct file *filp, struct address_space *mapping,
388 struct list_head *pages, unsigned nr_pages)
389{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400390 struct nfs_pageio_descriptor pgio;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400391 struct nfs_pgio_mirror *pgm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400393 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 };
395 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400396 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400397 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Niels de Vos1e8968c2013-12-17 18:20:16 +0100399 dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100401 (unsigned long long)NFS_FILEID(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500403 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400405 if (NFS_STALE(inode))
406 goto out;
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500409 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (desc.ctx == NULL)
411 return -EBADF;
412 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400413 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100414
415 /* attempt to read as many of the pages as possible from the cache
416 * - this returns -ENOBUFS immediately if the cookie is negative
417 */
418 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
419 pages, &nr_pages);
420 if (ret == 0)
421 goto read_complete; /* all pages were read */
422
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200423 nfs_pageio_init_read(&pgio, inode, false,
424 &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400427 nfs_pageio_complete(&pgio);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400428
429 /* It doesn't make sense to do mirrored reads! */
430 WARN_ON_ONCE(pgio.pg_mirror_count != 1);
431
432 pgm = &pgio.pg_mirrors[0];
433 NFS_I(inode)->read_io += pgm->pg_bytes_written;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300434 npages = (pgm->pg_bytes_written + PAGE_SIZE - 1) >>
435 PAGE_SHIFT;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400436 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100437read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400439out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return ret;
441}
442
David Howellsf7b422b2006-06-09 09:34:33 -0400443int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -0400446 sizeof(struct nfs_pgio_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900448 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (nfs_rdata_cachep == NULL)
450 return -ENOMEM;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return 0;
453}
454
David Brownell266bee82006-06-27 12:59:15 -0700455void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700457 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
Anna Schumaker4a0de552014-05-06 09:12:30 -0400459
460static const struct nfs_rw_ops nfs_rw_read_ops = {
461 .rw_alloc_header = nfs_readhdr_alloc,
462 .rw_free_header = nfs_readhdr_free,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400463 .rw_done = nfs_readpage_done,
464 .rw_result = nfs_readpage_result,
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400465 .rw_initiate = nfs_initiate_read,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400466};