blob: bc78bd248eb82559efcae6f761095429430b3981 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/read.c
3 *
4 * Block I/O for NFS
5 *
6 * Partial copy of Linus' read cache modifications to fs/nfs/file.c
7 * modified for async RPC by okir@monad.swb.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/time.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/fcntl.h>
14#include <linux/stat.h>
15#include <linux/mm.h>
16#include <linux/slab.h>
17#include <linux/pagemap.h>
18#include <linux/sunrpc/clnt.h>
19#include <linux/nfs_fs.h>
20#include <linux/nfs_page.h>
Andy Adamson64419a92011-03-01 01:34:16 +000021#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Andy Adamsonf11c88a2009-04-01 09:22:25 -040023#include "nfs4_fs.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050024#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050025#include "iostat.h"
David Howells9a9fc1c2009-04-03 16:42:44 +010026#include "fscache.h"
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020027#include "pnfs.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define NFSDBG_FACILITY NFSDBG_PAGECACHE
30
Trond Myklebust1751c362011-06-10 13:30:23 -040031static const struct nfs_pageio_ops nfs_pageio_read_ops;
Fred Isaman4db6e0b2012-04-20 14:47:46 -040032static const struct rpc_call_ops nfs_read_common_ops;
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
Anna Schumaker4a0de552014-05-06 09:12:30 -040038static struct nfs_rw_header *nfs_readhdr_alloc(void)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050039{
Anna Schumaker4a0de552014-05-06 09:12:30 -040040 return kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040041}
42
Anna Schumaker4a0de552014-05-06 09:12:30 -040043static void nfs_readhdr_free(struct nfs_rw_header *rhdr)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050044{
Fred Isamancd841602012-04-20 14:47:44 -040045 kmem_cache_free(nfs_rdata_cachep, rhdr);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050046}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static
Linus Torvalds1da177e2005-04-16 15:20:36 -070049int nfs_return_empty_page(struct page *page)
50{
Christoph Lametereebd2aa2008-02-04 22:28:29 -080051 zero_user(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 SetPageUptodate(page);
53 unlock_page(page);
54 return 0;
55}
56
Bryan Schumaker1abb50882012-06-20 15:53:47 -040057void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020058 struct inode *inode, bool force_mds,
Fred Isaman061ae2e2012-04-20 14:47:48 -040059 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -040060{
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020061 struct nfs_server *server = NFS_SERVER(inode);
62 const struct nfs_pageio_ops *pg_ops = &nfs_pageio_read_ops;
63
64#ifdef CONFIG_NFS_V4_1
65 if (server->pnfs_curr_ld && !force_mds)
66 pg_ops = server->pnfs_curr_ld->pg_read_ops;
67#endif
Anna Schumaker4a0de552014-05-06 09:12:30 -040068 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
69 server->rsize, 0);
Trond Myklebust1751c362011-06-10 13:30:23 -040070}
Bryan Schumakerddda8e02012-07-30 16:05:23 -040071EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
Trond Myklebust1751c362011-06-10 13:30:23 -040072
Trond Myklebust493292d2011-07-13 15:58:28 -040073void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
74{
75 pgio->pg_ops = &nfs_pageio_read_ops;
76 pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
77}
Trond Myklebust1f945352011-07-13 15:59:57 -040078EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
Trond Myklebust493292d2011-07-13 15:58:28 -040079
David Howellsf42b2932009-04-03 16:42:44 +010080int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
81 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct nfs_page *new;
84 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +000085 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Trond Myklebust49a70f22006-12-05 00:35:38 -050087 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (len == 0)
89 return nfs_return_empty_page(page);
90 new = nfs_create_request(ctx, inode, page, 0, len);
91 if (IS_ERR(new)) {
92 unlock_page(page);
93 return PTR_ERR(new);
94 }
95 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -080096 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Christoph Hellwigfab5fc22014-04-16 15:07:22 +020098 nfs_pageio_init_read(&pgio, inode, false,
99 &nfs_async_read_completion_ops);
Trond Myklebustd8007d42011-06-10 13:30:23 -0400100 nfs_pageio_add_request(&pgio, new);
Trond Myklebust1751c362011-06-10 13:30:23 -0400101 nfs_pageio_complete(&pgio);
Andy Adamson2701d082012-05-24 13:13:24 -0400102 NFS_I(inode)->read_io += pgio.pg_bytes_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return 0;
104}
105
106static void nfs_readpage_release(struct nfs_page *req)
107{
Al Viro3d4ff432011-06-22 18:40:12 -0400108 struct inode *d_inode = req->wb_context->dentry->d_inode;
David Howells7f8e05f2009-04-03 16:42:45 +0100109
110 if (PageUptodate(req->wb_page))
111 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unlock_page(req->wb_page);
114
Niels de Vos1e8968c2013-12-17 18:20:16 +0100115 dprintk("NFS: read done (%s/%Lu %d@%Ld)\n",
Al Viro3d4ff432011-06-22 18:40:12 -0400116 req->wb_context->dentry->d_inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100117 (unsigned long long)NFS_FILEID(req->wb_context->dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 req->wb_bytes,
119 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700120 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400123/* Note io was page aligned */
Fred Isaman061ae2e2012-04-20 14:47:48 -0400124static void nfs_read_completion(struct nfs_pgio_header *hdr)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400125{
126 unsigned long bytes = 0;
127
128 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
129 goto out;
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400130 while (!list_empty(&hdr->pages)) {
131 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
132 struct page *page = req->wb_page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400133
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400134 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
135 if (bytes > hdr->good_bytes)
136 zero_user(page, 0, PAGE_SIZE);
137 else if (hdr->good_bytes - bytes < PAGE_SIZE)
138 zero_user_segment(page,
139 hdr->good_bytes & ~PAGE_MASK,
140 PAGE_SIZE);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400141 }
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400142 bytes += req->wb_bytes;
143 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400144 if (bytes <= hdr->good_bytes)
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400145 SetPageUptodate(page);
146 } else
147 SetPageUptodate(page);
148 nfs_list_remove_request(req);
149 nfs_readpage_release(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400150 }
151out:
152 hdr->release(hdr);
153}
154
Fred Isamanc5996c42012-04-20 14:47:41 -0400155int nfs_initiate_read(struct rpc_clnt *clnt,
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400156 struct nfs_pgio_data *data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400157 const struct rpc_call_ops *call_ops, int flags)
Andy Adamson64419a92011-03-01 01:34:16 +0000158{
Fred Isamancd841602012-04-20 14:47:44 -0400159 struct inode *inode = data->header->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000160 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
161 struct rpc_task *task;
162 struct rpc_message msg = {
163 .rpc_argp = &data->args,
164 .rpc_resp = &data->res,
Fred Isamancd841602012-04-20 14:47:44 -0400165 .rpc_cred = data->header->cred,
Andy Adamson64419a92011-03-01 01:34:16 +0000166 };
167 struct rpc_task_setup task_setup_data = {
168 .task = &data->task,
169 .rpc_client = clnt,
170 .rpc_message = &msg,
171 .callback_ops = call_ops,
172 .callback_data = data,
173 .workqueue = nfsiod_workqueue,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400174 .flags = RPC_TASK_ASYNC | swap_flags | flags,
Andy Adamson64419a92011-03-01 01:34:16 +0000175 };
176
177 /* Set up the initial task struct. */
178 NFS_PROTO(inode)->read_setup(data, &msg);
179
Niels de Vos1e8968c2013-12-17 18:20:16 +0100180 dprintk("NFS: %5u initiated read call (req %s/%llu, %u bytes @ "
Andy Adamson64419a92011-03-01 01:34:16 +0000181 "offset %llu)\n",
182 data->task.tk_pid,
183 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100184 (unsigned long long)NFS_FILEID(inode),
Andy Adamson64419a92011-03-01 01:34:16 +0000185 data->args.count,
186 (unsigned long long)data->args.offset);
187
188 task = rpc_run_task(&task_setup_data);
189 if (IS_ERR(task))
190 return PTR_ERR(task);
191 rpc_put_task(task);
192 return 0;
193}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000194EXPORT_SYMBOL_GPL(nfs_initiate_read);
Andy Adamson64419a92011-03-01 01:34:16 +0000195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * Set up the NFS read request struct
198 */
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400199static void nfs_read_rpcsetup(struct nfs_pgio_data *data,
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400200 unsigned int count, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400202 struct nfs_page *req = data->header->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400204 data->args.fh = NFS_FH(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 data->args.offset = req_offset(req) + offset;
206 data->args.pgbase = req->wb_pgbase + offset;
Fred Isaman30dd3742012-04-20 14:47:45 -0400207 data->args.pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500209 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400210 data->args.lock_context = req->wb_lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 data->res.fattr = &data->fattr;
213 data->res.count = count;
214 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400215 nfs_fattr_init(&data->fattr);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400218static int nfs_do_read(struct nfs_pgio_data *data,
Trond Myklebust493292d2011-07-13 15:58:28 -0400219 const struct rpc_call_ops *call_ops)
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400220{
Fred Isamancd841602012-04-20 14:47:44 -0400221 struct inode *inode = data->header->inode;
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400222
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400223 return nfs_initiate_read(NFS_CLIENT(inode), data, call_ops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Trond Myklebust275acaa2011-07-12 13:42:02 -0400226static int
227nfs_do_multiple_reads(struct list_head *head,
Trond Myklebust493292d2011-07-13 15:58:28 -0400228 const struct rpc_call_ops *call_ops)
Trond Myklebust275acaa2011-07-12 13:42:02 -0400229{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400230 struct nfs_pgio_data *data;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400231 int ret = 0;
232
233 while (!list_empty(head)) {
234 int ret2;
235
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400236 data = list_first_entry(head, struct nfs_pgio_data, list);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400237 list_del_init(&data->list);
238
Trond Myklebust493292d2011-07-13 15:58:28 -0400239 ret2 = nfs_do_read(data, call_ops);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400240 if (ret == 0)
241 ret = ret2;
242 }
243 return ret;
244}
245
Fred Isaman061ae2e2012-04-20 14:47:48 -0400246static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247nfs_async_read_error(struct list_head *head)
248{
249 struct nfs_page *req;
250
251 while (!list_empty(head)) {
252 req = nfs_list_entry(head->next);
253 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 nfs_readpage_release(req);
255 }
256}
257
Fred Isaman061ae2e2012-04-20 14:47:48 -0400258static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
259 .error_cleanup = nfs_async_read_error,
260 .completion = nfs_read_completion,
261};
262
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400263static void nfs_pagein_error(struct nfs_pageio_descriptor *desc,
264 struct nfs_pgio_header *hdr)
265{
266 set_bit(NFS_IOHDR_REDO, &hdr->flags);
267 while (!list_empty(&hdr->rpc_list)) {
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400268 struct nfs_pgio_data *data = list_first_entry(&hdr->rpc_list,
269 struct nfs_pgio_data, list);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400270 list_del(&data->list);
Anna Schumaker00bfa302014-05-06 09:12:29 -0400271 nfs_pgio_data_release(data);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400272 }
273 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * Generate multiple requests to fill a single page.
278 *
279 * We optimize to reduce the number of read operations on the wire. If we
280 * detect that we're reading a page, or an area of a page, that is past the
281 * end of file, we do not generate NFS read operations but just clear the
282 * parts of the page that would have come back zero from the server anyway.
283 *
284 * We rely on the cached value of i_size to make this determination; another
285 * client can fill pages on the server past our cached end-of-file, but we
286 * won't see the new data until our attribute cache is updated. This is more
287 * or less conventional NFS client behavior.
288 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400289static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc,
290 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400292 struct nfs_page *req = hdr->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct page *page = req->wb_page;
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400294 struct nfs_pgio_data *data;
Trond Myklebustd0979712011-07-12 13:42:02 -0400295 size_t rsize = desc->pg_bsize, nbytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700296 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Trond Myklebust275acaa2011-07-12 13:42:02 -0400298 offset = 0;
Fred Isamanc76069b2011-03-03 15:13:48 +0000299 nbytes = desc->pg_count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700300 do {
301 size_t len = min(nbytes,rsize);
302
Anna Schumaker00bfa302014-05-06 09:12:29 -0400303 data = nfs_pgio_data_alloc(hdr, 1);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400304 if (!data) {
305 nfs_pagein_error(desc, hdr);
306 return -ENOMEM;
307 }
Fred Isaman30dd3742012-04-20 14:47:45 -0400308 data->pages.pagevec[0] = page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400309 nfs_read_rpcsetup(data, len, offset);
310 list_add(&data->list, &hdr->rpc_list);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700311 nbytes -= len;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400312 offset += len;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400313 } while (nbytes != 0);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400314
315 nfs_list_remove_request(req);
316 nfs_list_add_request(req, &hdr->pages);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400317 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400321static int nfs_pagein_one(struct nfs_pageio_descriptor *desc,
322 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct nfs_page *req;
325 struct page **pages;
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400326 struct nfs_pgio_data *data;
Fred Isamanc76069b2011-03-03 15:13:48 +0000327 struct list_head *head = &desc->pg_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Anna Schumaker00bfa302014-05-06 09:12:29 -0400329 data = nfs_pgio_data_alloc(hdr, nfs_page_array_len(desc->pg_base,
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400330 desc->pg_count));
331 if (!data) {
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400332 nfs_pagein_error(desc, hdr);
Trond Myklebust9146ab52012-05-01 11:21:43 -0400333 return -ENOMEM;
Fred Isamanbae724e2011-03-01 01:34:15 +0000334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Fred Isaman30dd3742012-04-20 14:47:45 -0400336 pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 while (!list_empty(head)) {
338 req = nfs_list_entry(head->next);
339 nfs_list_remove_request(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400340 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400344 nfs_read_rpcsetup(data, desc->pg_count, 0);
345 list_add(&data->list, &hdr->rpc_list);
346 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400350int nfs_generic_pagein(struct nfs_pageio_descriptor *desc,
351 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -0400352{
353 if (desc->pg_bsize < PAGE_CACHE_SIZE)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400354 return nfs_pagein_multi(desc, hdr);
355 return nfs_pagein_one(desc, hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -0400356}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400357EXPORT_SYMBOL_GPL(nfs_generic_pagein);
Trond Myklebust493292d2011-07-13 15:58:28 -0400358
359static int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
Trond Myklebust1751c362011-06-10 13:30:23 -0400360{
Anna Schumakerc0752cd2014-05-06 09:12:27 -0400361 struct nfs_rw_header *rhdr;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400362 struct nfs_pgio_header *hdr;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400363 int ret;
364
Anna Schumaker4a0de552014-05-06 09:12:30 -0400365 rhdr = nfs_rw_header_alloc(desc->pg_rw_ops);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400366 if (!rhdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -0400367 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400368 return -ENOMEM;
369 }
370 hdr = &rhdr->header;
Anna Schumaker4a0de552014-05-06 09:12:30 -0400371 nfs_pgheader_init(desc, hdr, nfs_rw_header_free);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400372 atomic_inc(&hdr->refcnt);
373 ret = nfs_generic_pagein(desc, hdr);
Trond Myklebust50828d72011-07-12 13:42:02 -0400374 if (ret == 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400375 ret = nfs_do_multiple_reads(&hdr->rpc_list,
376 desc->pg_rpc_callops);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400377 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -0400378 hdr->completion_ops->completion(hdr);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400379 return ret;
Trond Myklebust1751c362011-06-10 13:30:23 -0400380}
Trond Myklebust1751c362011-06-10 13:30:23 -0400381
382static const struct nfs_pageio_ops nfs_pageio_read_ops = {
383 .pg_test = nfs_generic_pg_test,
384 .pg_doio = nfs_generic_pg_readpages,
385};
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500388 * This is the callback from RPC telling us whether a reply was
389 * received or some error occurred (timeout or socket shutdown).
390 */
Anna Schumaker0eecb212014-05-06 09:12:32 -0400391static int nfs_readpage_done(struct rpc_task *task, struct nfs_pgio_data *data,
392 struct inode *inode)
Trond Myklebust0b671302006-11-14 16:12:23 -0500393{
Anna Schumaker0eecb212014-05-06 09:12:32 -0400394 int status = NFS_PROTO(inode)->read_done(task, data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500395 if (status != 0)
396 return status;
397
Fred Isamancd841602012-04-20 14:47:44 -0400398 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count);
Trond Myklebust0b671302006-11-14 16:12:23 -0500399
400 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400401 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
402 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500403 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500404 return 0;
405}
406
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400407static void nfs_readpage_retry(struct rpc_task *task, struct nfs_pgio_data *data)
Trond Myklebust0b671302006-11-14 16:12:23 -0500408{
Anna Schumaker3c6b8992014-05-06 09:12:24 -0400409 struct nfs_pgio_args *argp = &data->args;
Anna Schumaker9137bdf2014-05-06 09:12:25 -0400410 struct nfs_pgio_res *resp = &data->res;
Trond Myklebust0b671302006-11-14 16:12:23 -0500411
Trond Myklebust0b671302006-11-14 16:12:23 -0500412 /* This is a short read! */
Fred Isamancd841602012-04-20 14:47:44 -0400413 nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500414 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400415 if (resp->count == 0) {
416 nfs_set_pgio_error(data->header, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500417 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400418 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500419 /* Yes, so retry the read at the end of the data */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000420 data->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500421 argp->offset += resp->count;
422 argp->pgbase += resp->count;
423 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700424 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500425}
426
Anna Schumaker0eecb212014-05-06 09:12:32 -0400427static void nfs_readpage_result(struct rpc_task *task, struct nfs_pgio_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400429 struct nfs_pgio_header *hdr = data->header;
430
Anna Schumaker0eecb212014-05-06 09:12:32 -0400431 if (data->res.eof) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400432 loff_t bound;
Trond Myklebust0b671302006-11-14 16:12:23 -0500433
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400434 bound = data->args.offset + data->res.count;
435 spin_lock(&hdr->lock);
436 if (bound < hdr->io_start + hdr->good_bytes) {
437 set_bit(NFS_IOHDR_EOF, &hdr->flags);
438 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
439 hdr->good_bytes = bound - hdr->io_start;
440 }
441 spin_unlock(&hdr->lock);
442 } else if (data->res.count != data->args.count)
443 nfs_readpage_retry(task, data);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400444}
445
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400446static const struct rpc_call_ops nfs_read_common_ops = {
Anna Schumakera4cdda52014-05-06 09:12:31 -0400447 .rpc_call_prepare = nfs_pgio_prepare,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400448 .rpc_call_done = nfs_pgio_result,
Anna Schumakera4cdda52014-05-06 09:12:31 -0400449 .rpc_release = nfs_pgio_release,
Trond Myklebustec06c092006-03-20 13:44:27 -0500450};
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * Read a page over NFS.
454 * We read the page synchronously in the following case:
455 * - The error flag is set for this page. This happens only when a
456 * previous async read operation failed.
457 */
458int nfs_readpage(struct file *file, struct page *page)
459{
460 struct nfs_open_context *ctx;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700461 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int error;
463
464 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
Mel Gormand56b4dd2012-07-31 16:45:06 -0700465 page, PAGE_CACHE_SIZE, page_file_index(page));
Chuck Lever91d5b472006-03-20 13:44:14 -0500466 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
467 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /*
470 * Try to flush any pending writes to the file..
471 *
472 * NOTE! Because we own the page lock, there cannot
473 * be any new pending writes generated at this point
474 * for this page (other pages can be written to).
475 */
476 error = nfs_wb_page(inode, page);
477 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400478 goto out_unlock;
479 if (PageUptodate(page))
480 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400482 error = -ESTALE;
483 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400484 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500487 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500488 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400490 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400492 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
David Howells9a9fc1c2009-04-03 16:42:44 +0100494 if (!IS_SYNC(inode)) {
495 error = nfs_readpage_from_fscache(ctx, inode, page);
496 if (error == 0)
497 goto out;
498 }
499
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500500 error = nfs_readpage_async(ctx, inode, page);
501
David Howells9a9fc1c2009-04-03 16:42:44 +0100502out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 put_nfs_open_context(ctx);
504 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400505out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 unlock_page(page);
507 return error;
508}
509
510struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400511 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct nfs_open_context *ctx;
513};
514
515static int
516readpage_async_filler(void *data, struct page *page)
517{
518 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700519 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 struct nfs_page *new;
521 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400522 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Trond Myklebust49a70f22006-12-05 00:35:38 -0500524 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (len == 0)
526 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400529 if (IS_ERR(new))
530 goto out_error;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800533 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400534 if (!nfs_pageio_add_request(desc->pgio, new)) {
535 error = desc->pgio->pg_error;
536 goto out_unlock;
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400539out_error:
540 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400541out_unlock:
542 unlock_page(page);
543 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546int nfs_readpages(struct file *filp, struct address_space *mapping,
547 struct list_head *pages, unsigned nr_pages)
548{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400549 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400551 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 };
553 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400554 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400555 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Niels de Vos1e8968c2013-12-17 18:20:16 +0100557 dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100559 (unsigned long long)NFS_FILEID(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500561 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400563 if (NFS_STALE(inode))
564 goto out;
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500567 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (desc.ctx == NULL)
569 return -EBADF;
570 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400571 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100572
573 /* attempt to read as many of the pages as possible from the cache
574 * - this returns -ENOBUFS immediately if the cookie is negative
575 */
576 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
577 pages, &nr_pages);
578 if (ret == 0)
579 goto read_complete; /* all pages were read */
580
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200581 nfs_pageio_init_read(&pgio, inode, false,
582 &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400585
586 nfs_pageio_complete(&pgio);
Andy Adamson2701d082012-05-24 13:13:24 -0400587 NFS_I(inode)->read_io += pgio.pg_bytes_written;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400588 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
589 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100590read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400592out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return ret;
594}
595
David Howellsf7b422b2006-06-09 09:34:33 -0400596int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Anna Schumakerc0752cd2014-05-06 09:12:27 -0400599 sizeof(struct nfs_rw_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900601 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (nfs_rdata_cachep == NULL)
603 return -ENOMEM;
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return 0;
606}
607
David Brownell266bee82006-06-27 12:59:15 -0700608void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700610 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
Anna Schumaker4a0de552014-05-06 09:12:30 -0400612
613static const struct nfs_rw_ops nfs_rw_read_ops = {
Anna Schumakera4cdda52014-05-06 09:12:31 -0400614 .rw_mode = FMODE_READ,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400615 .rw_alloc_header = nfs_readhdr_alloc,
616 .rw_free_header = nfs_readhdr_free,
Anna Schumaker0eecb212014-05-06 09:12:32 -0400617 .rw_done = nfs_readpage_done,
618 .rw_result = nfs_readpage_result,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400619};