blob: c9633b2501bd4dbb094ea8789d0844904c749086 [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
Fred Isamanbae724e2011-03-01 01:34:15 +000023#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Andy Adamsonf11c88a2009-04-01 09:22:25 -040025#include "nfs4_fs.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050026#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050027#include "iostat.h"
David Howells9a9fc1c2009-04-03 16:42:44 +010028#include "fscache.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define NFSDBG_FACILITY NFSDBG_PAGECACHE
31
Trond Myklebust1751c362011-06-10 13:30:23 -040032static const struct nfs_pageio_ops nfs_pageio_read_ops;
Fred Isaman4db6e0b2012-04-20 14:47:46 -040033static const struct rpc_call_ops nfs_read_common_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Christoph Lametere18b8902006-12-06 20:33:20 -080035static struct kmem_cache *nfs_rdata_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Fred Isaman4db6e0b2012-04-20 14:47:46 -040037struct nfs_read_header *nfs_readhdr_alloc()
Trond Myklebust3feb2d42006-03-20 13:44:37 -050038{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040039 struct nfs_read_header *rhdr;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050040
Fred Isaman4db6e0b2012-04-20 14:47:46 -040041 rhdr = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
42 if (rhdr) {
43 struct nfs_pgio_header *hdr = &rhdr->header;
Fred Isamancd841602012-04-20 14:47:44 -040044
45 INIT_LIST_HEAD(&hdr->pages);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040046 INIT_LIST_HEAD(&hdr->rpc_list);
47 spin_lock_init(&hdr->lock);
48 atomic_set(&hdr->refcnt, 0);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050049 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -040050 return rhdr;
51}
52
53struct nfs_read_data *nfs_readdata_alloc(struct nfs_pgio_header *hdr,
54 unsigned int pagecount)
55{
56 struct nfs_read_data *data, *prealloc;
57
58 prealloc = &container_of(hdr, struct nfs_read_header, header)->rpc_data;
59 if (prealloc->header == NULL)
60 data = prealloc;
61 else
62 data = kzalloc(sizeof(*data), GFP_KERNEL);
63 if (!data)
64 goto out;
65
66 if (nfs_pgarray_set(&data->pages, pagecount)) {
67 data->header = hdr;
68 atomic_inc(&hdr->refcnt);
69 } else {
70 if (data != prealloc)
71 kfree(data);
72 data = NULL;
73 }
74out:
75 return data;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050076}
77
Fred Isamancd841602012-04-20 14:47:44 -040078void nfs_readhdr_free(struct nfs_pgio_header *hdr)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050079{
Fred Isamancd841602012-04-20 14:47:44 -040080 struct nfs_read_header *rhdr = container_of(hdr, struct nfs_read_header, header);
81
82 kmem_cache_free(nfs_rdata_cachep, rhdr);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050083}
84
Trond Myklebust493292d2011-07-13 15:58:28 -040085void nfs_readdata_release(struct nfs_read_data *rdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040087 struct nfs_pgio_header *hdr = rdata->header;
88 struct nfs_read_header *read_header = container_of(hdr, struct nfs_read_header, header);
89
Trond Myklebust383ba712008-02-19 20:04:20 -050090 put_nfs_open_context(rdata->args.context);
Fred Isaman30dd3742012-04-20 14:47:45 -040091 if (rdata->pages.pagevec != rdata->pages.page_array)
92 kfree(rdata->pages.pagevec);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040093 if (rdata != &read_header->rpc_data)
94 kfree(rdata);
95 else
96 rdata->header = NULL;
97 if (atomic_dec_and_test(&hdr->refcnt))
98 nfs_read_completion(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102int nfs_return_empty_page(struct page *page)
103{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800104 zero_user(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 SetPageUptodate(page);
106 unlock_page(page);
107 return 0;
108}
109
Trond Myklebust62e4a762011-11-10 14:30:37 -0500110void nfs_pageio_init_read_mds(struct nfs_pageio_descriptor *pgio,
Trond Myklebust1751c362011-06-10 13:30:23 -0400111 struct inode *inode)
112{
113 nfs_pageio_init(pgio, inode, &nfs_pageio_read_ops,
114 NFS_SERVER(inode)->rsize, 0);
115}
116
Trond Myklebust493292d2011-07-13 15:58:28 -0400117void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
118{
119 pgio->pg_ops = &nfs_pageio_read_ops;
120 pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
121}
Trond Myklebust1f945352011-07-13 15:59:57 -0400122EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
Trond Myklebust493292d2011-07-13 15:58:28 -0400123
Trond Myklebust1751c362011-06-10 13:30:23 -0400124static void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
125 struct inode *inode)
126{
127 if (!pnfs_pageio_init_read(pgio, inode))
128 nfs_pageio_init_read_mds(pgio, inode);
129}
130
David Howellsf42b2932009-04-03 16:42:44 +0100131int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
132 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 struct nfs_page *new;
135 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +0000136 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Trond Myklebust49a70f22006-12-05 00:35:38 -0500138 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (len == 0)
140 return nfs_return_empty_page(page);
141 new = nfs_create_request(ctx, inode, page, 0, len);
142 if (IS_ERR(new)) {
143 unlock_page(page);
144 return PTR_ERR(new);
145 }
146 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800147 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Trond Myklebust1751c362011-06-10 13:30:23 -0400149 nfs_pageio_init_read(&pgio, inode);
Trond Myklebustd8007d42011-06-10 13:30:23 -0400150 nfs_pageio_add_request(&pgio, new);
Trond Myklebust1751c362011-06-10 13:30:23 -0400151 nfs_pageio_complete(&pgio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return 0;
153}
154
155static void nfs_readpage_release(struct nfs_page *req)
156{
Al Viro3d4ff432011-06-22 18:40:12 -0400157 struct inode *d_inode = req->wb_context->dentry->d_inode;
David Howells7f8e05f2009-04-03 16:42:45 +0100158
159 if (PageUptodate(req->wb_page))
160 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 unlock_page(req->wb_page);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
Al Viro3d4ff432011-06-22 18:40:12 -0400165 req->wb_context->dentry->d_inode->i_sb->s_id,
166 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 req->wb_bytes,
168 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700169 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400172/* Note io was page aligned */
173void nfs_read_completion(struct nfs_pgio_header *hdr)
174{
175 unsigned long bytes = 0;
176
177 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
178 goto out;
179 if (!test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
180 while (!list_empty(&hdr->pages)) {
181 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
182 struct page *page = req->wb_page;
183
184 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
185 if (bytes > hdr->good_bytes)
186 zero_user(page, 0, PAGE_SIZE);
187 else if (hdr->good_bytes - bytes < PAGE_SIZE)
188 zero_user_segment(page,
189 hdr->good_bytes & ~PAGE_MASK,
190 PAGE_SIZE);
191 }
192 SetPageUptodate(page);
193 nfs_list_remove_request(req);
194 nfs_readpage_release(req);
195 bytes += PAGE_SIZE;
196 }
197 } else {
198 while (!list_empty(&hdr->pages)) {
199 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
200
201 bytes += req->wb_bytes;
202 if (bytes <= hdr->good_bytes)
203 SetPageUptodate(req->wb_page);
204 nfs_list_remove_request(req);
205 nfs_readpage_release(req);
206 }
207 }
208out:
209 hdr->release(hdr);
210}
211
Fred Isamanc5996c42012-04-20 14:47:41 -0400212int nfs_initiate_read(struct rpc_clnt *clnt,
213 struct nfs_read_data *data,
Andy Adamson64419a92011-03-01 01:34:16 +0000214 const struct rpc_call_ops *call_ops)
215{
Fred Isamancd841602012-04-20 14:47:44 -0400216 struct inode *inode = data->header->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000217 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
218 struct rpc_task *task;
219 struct rpc_message msg = {
220 .rpc_argp = &data->args,
221 .rpc_resp = &data->res,
Fred Isamancd841602012-04-20 14:47:44 -0400222 .rpc_cred = data->header->cred,
Andy Adamson64419a92011-03-01 01:34:16 +0000223 };
224 struct rpc_task_setup task_setup_data = {
225 .task = &data->task,
226 .rpc_client = clnt,
227 .rpc_message = &msg,
228 .callback_ops = call_ops,
229 .callback_data = data,
230 .workqueue = nfsiod_workqueue,
231 .flags = RPC_TASK_ASYNC | swap_flags,
232 };
233
234 /* Set up the initial task struct. */
235 NFS_PROTO(inode)->read_setup(data, &msg);
236
237 dprintk("NFS: %5u initiated read call (req %s/%lld, %u bytes @ "
238 "offset %llu)\n",
239 data->task.tk_pid,
240 inode->i_sb->s_id,
241 (long long)NFS_FILEID(inode),
242 data->args.count,
243 (unsigned long long)data->args.offset);
244
245 task = rpc_run_task(&task_setup_data);
246 if (IS_ERR(task))
247 return PTR_ERR(task);
248 rpc_put_task(task);
249 return 0;
250}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000251EXPORT_SYMBOL_GPL(nfs_initiate_read);
Andy Adamson64419a92011-03-01 01:34:16 +0000252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/*
254 * Set up the NFS read request struct
255 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400256static void nfs_read_rpcsetup(struct nfs_read_data *data,
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400257 unsigned int count, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400259 struct nfs_page *req = data->header->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400261 data->args.fh = NFS_FH(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 data->args.offset = req_offset(req) + offset;
263 data->args.pgbase = req->wb_pgbase + offset;
Fred Isaman30dd3742012-04-20 14:47:45 -0400264 data->args.pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500266 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400267 data->args.lock_context = req->wb_lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 data->res.fattr = &data->fattr;
270 data->res.count = count;
271 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400272 nfs_fattr_init(&data->fattr);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400273}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400275static int nfs_do_read(struct nfs_read_data *data,
Trond Myklebust493292d2011-07-13 15:58:28 -0400276 const struct rpc_call_ops *call_ops)
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400277{
Fred Isamancd841602012-04-20 14:47:44 -0400278 struct inode *inode = data->header->inode;
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400279
Fred Isamanc5996c42012-04-20 14:47:41 -0400280 return nfs_initiate_read(NFS_CLIENT(inode), data, call_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Trond Myklebust275acaa2011-07-12 13:42:02 -0400283static int
284nfs_do_multiple_reads(struct list_head *head,
Trond Myklebust493292d2011-07-13 15:58:28 -0400285 const struct rpc_call_ops *call_ops)
Trond Myklebust275acaa2011-07-12 13:42:02 -0400286{
287 struct nfs_read_data *data;
288 int ret = 0;
289
290 while (!list_empty(head)) {
291 int ret2;
292
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400293 data = list_first_entry(head, struct nfs_read_data, list);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400294 list_del_init(&data->list);
295
Trond Myklebust493292d2011-07-13 15:58:28 -0400296 ret2 = nfs_do_read(data, call_ops);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400297 if (ret == 0)
298 ret = ret2;
299 }
300 return ret;
301}
302
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400303void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304nfs_async_read_error(struct list_head *head)
305{
306 struct nfs_page *req;
307
308 while (!list_empty(head)) {
309 req = nfs_list_entry(head->next);
310 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 nfs_readpage_release(req);
312 }
313}
314
315/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * Generate multiple requests to fill a single page.
317 *
318 * We optimize to reduce the number of read operations on the wire. If we
319 * detect that we're reading a page, or an area of a page, that is past the
320 * end of file, we do not generate NFS read operations but just clear the
321 * parts of the page that would have come back zero from the server anyway.
322 *
323 * We rely on the cached value of i_size to make this determination; another
324 * client can fill pages on the server past our cached end-of-file, but we
325 * won't see the new data until our attribute cache is updated. This is more
326 * or less conventional NFS client behavior.
327 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400328static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc,
329 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400331 struct nfs_page *req = hdr->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct page *page = req->wb_page;
333 struct nfs_read_data *data;
Trond Myklebustd0979712011-07-12 13:42:02 -0400334 size_t rsize = desc->pg_bsize, nbytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700335 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 int requests = 0;
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400337 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
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
Trond Myklebust275acaa2011-07-12 13:42:02 -0400342 offset = 0;
Fred Isamanc76069b2011-03-03 15:13:48 +0000343 nbytes = desc->pg_count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700344 do {
345 size_t len = min(nbytes,rsize);
346
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400347 data = nfs_readdata_alloc(hdr, 1);
348 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 goto out_bad;
Fred Isaman30dd3742012-04-20 14:47:45 -0400350 data->pages.pagevec[0] = page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400351 nfs_read_rpcsetup(data, len, offset);
352 list_add(&data->list, &hdr->rpc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700354 nbytes -= len;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400355 offset += len;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700356 } while(nbytes != 0);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400357 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359out_bad:
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400360 while (!list_empty(&hdr->rpc_list)) {
361 data = list_first_entry(&hdr->rpc_list, struct nfs_read_data, list);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400362 list_del(&data->list);
Fred Isaman73fb7bc2012-04-20 14:47:34 -0400363 nfs_readdata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400365 nfs_async_read_error(&hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return -ENOMEM;
367}
368
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400369static int nfs_pagein_one(struct nfs_pageio_descriptor *desc,
370 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct nfs_page *req;
373 struct page **pages;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400374 struct nfs_read_data *data;
Fred Isamanc76069b2011-03-03 15:13:48 +0000375 struct list_head *head = &desc->pg_list;
Peng Tao3b609182011-07-15 03:33:42 -0400376 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400378 data = nfs_readdata_alloc(hdr, nfs_page_array_len(desc->pg_base,
379 desc->pg_count));
380 if (!data) {
Fred Isamanbae724e2011-03-01 01:34:15 +0000381 nfs_async_read_error(head);
Peng Tao3b609182011-07-15 03:33:42 -0400382 ret = -ENOMEM;
Fred Isamanbae724e2011-03-01 01:34:15 +0000383 goto out;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Fred Isaman30dd3742012-04-20 14:47:45 -0400386 pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 while (!list_empty(head)) {
388 req = nfs_list_entry(head->next);
389 nfs_list_remove_request(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400390 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400394 nfs_read_rpcsetup(data, desc->pg_count, 0);
395 list_add(&data->list, &hdr->rpc_list);
396 desc->pg_rpc_callops = &nfs_read_common_ops;
Fred Isamanbae724e2011-03-01 01:34:15 +0000397out:
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400398 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400401int nfs_generic_pagein(struct nfs_pageio_descriptor *desc,
402 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -0400403{
404 if (desc->pg_bsize < PAGE_CACHE_SIZE)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400405 return nfs_pagein_multi(desc, hdr);
406 return nfs_pagein_one(desc, hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -0400407}
408
409static int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
Trond Myklebust1751c362011-06-10 13:30:23 -0400410{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400411 struct nfs_read_header *rhdr;
412 struct nfs_pgio_header *hdr;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400413 int ret;
414
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400415 rhdr = nfs_readhdr_alloc();
416 if (!rhdr) {
417 nfs_async_read_error(&desc->pg_list);
418 return -ENOMEM;
419 }
420 hdr = &rhdr->header;
421 nfs_pgheader_init(desc, hdr, nfs_readhdr_free);
422 atomic_inc(&hdr->refcnt);
423 ret = nfs_generic_pagein(desc, hdr);
Trond Myklebust50828d72011-07-12 13:42:02 -0400424 if (ret == 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400425 ret = nfs_do_multiple_reads(&hdr->rpc_list,
426 desc->pg_rpc_callops);
427 else
428 set_bit(NFS_IOHDR_REDO, &hdr->flags);
429 if (atomic_dec_and_test(&hdr->refcnt))
430 nfs_read_completion(hdr);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400431 return ret;
Trond Myklebust1751c362011-06-10 13:30:23 -0400432}
Trond Myklebust1751c362011-06-10 13:30:23 -0400433
434static const struct nfs_pageio_ops nfs_pageio_read_ops = {
435 .pg_test = nfs_generic_pg_test,
436 .pg_doio = nfs_generic_pg_readpages,
437};
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500440 * This is the callback from RPC telling us whether a reply was
441 * received or some error occurred (timeout or socket shutdown).
442 */
443int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
444{
Fred Isamancd841602012-04-20 14:47:44 -0400445 struct inode *inode = data->header->inode;
Trond Myklebust0b671302006-11-14 16:12:23 -0500446 int status;
447
Harvey Harrison3110ff82008-05-02 13:42:44 -0700448 dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid,
Trond Myklebust0b671302006-11-14 16:12:23 -0500449 task->tk_status);
450
Fred Isamancd841602012-04-20 14:47:44 -0400451 status = NFS_PROTO(inode)->read_done(task, data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500452 if (status != 0)
453 return status;
454
Fred Isamancd841602012-04-20 14:47:44 -0400455 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count);
Trond Myklebust0b671302006-11-14 16:12:23 -0500456
457 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400458 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
459 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500460 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500461 return 0;
462}
463
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400464static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
Trond Myklebust0b671302006-11-14 16:12:23 -0500465{
466 struct nfs_readargs *argp = &data->args;
467 struct nfs_readres *resp = &data->res;
468
Trond Myklebust0b671302006-11-14 16:12:23 -0500469 /* This is a short read! */
Fred Isamancd841602012-04-20 14:47:44 -0400470 nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500471 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400472 if (resp->count == 0) {
473 nfs_set_pgio_error(data->header, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500474 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400475 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500476 /* Yes, so retry the read at the end of the data */
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000477 data->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500478 argp->offset += resp->count;
479 argp->pgbase += resp->count;
480 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700481 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500482}
483
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400484static void nfs_readpage_result_common(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Trond Myklebustec06c092006-03-20 13:44:27 -0500486 struct nfs_read_data *data = calldata;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400487 struct nfs_pgio_header *hdr = data->header;
488
489 /* Note the only returns of nfs_readpage_result are 0 and -EAGAIN */
Trond Myklebustec06c092006-03-20 13:44:27 -0500490 if (nfs_readpage_result(task, data) != 0)
491 return;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400492 if (task->tk_status < 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400493 nfs_set_pgio_error(hdr, task->tk_status, data->args.offset);
494 else if (data->res.eof) {
495 loff_t bound;
Trond Myklebust0b671302006-11-14 16:12:23 -0500496
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400497 bound = data->args.offset + data->res.count;
498 spin_lock(&hdr->lock);
499 if (bound < hdr->io_start + hdr->good_bytes) {
500 set_bit(NFS_IOHDR_EOF, &hdr->flags);
501 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
502 hdr->good_bytes = bound - hdr->io_start;
503 }
504 spin_unlock(&hdr->lock);
505 } else if (data->res.count != data->args.count)
506 nfs_readpage_retry(task, data);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400507}
508
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400509static void nfs_readpage_release_common(void *calldata)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400510{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400511 nfs_readdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400514void nfs_read_prepare(struct rpc_task *task, void *calldata)
515{
516 struct nfs_read_data *data = calldata;
Fred Isamancd841602012-04-20 14:47:44 -0400517 NFS_PROTO(data->header->inode)->read_rpc_prepare(task, data);
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400518}
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400519
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400520static const struct rpc_call_ops nfs_read_common_ops = {
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400521 .rpc_call_prepare = nfs_read_prepare,
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400522 .rpc_call_done = nfs_readpage_result_common,
523 .rpc_release = nfs_readpage_release_common,
Trond Myklebustec06c092006-03-20 13:44:27 -0500524};
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 * Read a page over NFS.
528 * We read the page synchronously in the following case:
529 * - The error flag is set for this page. This happens only when a
530 * previous async read operation failed.
531 */
532int nfs_readpage(struct file *file, struct page *page)
533{
534 struct nfs_open_context *ctx;
535 struct inode *inode = page->mapping->host;
536 int error;
537
538 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
539 page, PAGE_CACHE_SIZE, page->index);
Chuck Lever91d5b472006-03-20 13:44:14 -0500540 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
541 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /*
544 * Try to flush any pending writes to the file..
545 *
546 * NOTE! Because we own the page lock, there cannot
547 * be any new pending writes generated at this point
548 * for this page (other pages can be written to).
549 */
550 error = nfs_wb_page(inode, page);
551 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400552 goto out_unlock;
553 if (PageUptodate(page))
554 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400556 error = -ESTALE;
557 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400558 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500561 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500562 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400564 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400566 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
David Howells9a9fc1c2009-04-03 16:42:44 +0100568 if (!IS_SYNC(inode)) {
569 error = nfs_readpage_from_fscache(ctx, inode, page);
570 if (error == 0)
571 goto out;
572 }
573
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500574 error = nfs_readpage_async(ctx, inode, page);
575
David Howells9a9fc1c2009-04-03 16:42:44 +0100576out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 put_nfs_open_context(ctx);
578 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400579out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 unlock_page(page);
581 return error;
582}
583
584struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400585 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct nfs_open_context *ctx;
587};
588
589static int
590readpage_async_filler(void *data, struct page *page)
591{
592 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
593 struct inode *inode = page->mapping->host;
594 struct nfs_page *new;
595 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400596 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Trond Myklebust49a70f22006-12-05 00:35:38 -0500598 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (len == 0)
600 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400603 if (IS_ERR(new))
604 goto out_error;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800607 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400608 if (!nfs_pageio_add_request(desc->pgio, new)) {
609 error = desc->pgio->pg_error;
610 goto out_unlock;
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400613out_error:
614 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400615out_unlock:
616 unlock_page(page);
617 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620int nfs_readpages(struct file *filp, struct address_space *mapping,
621 struct list_head *pages, unsigned nr_pages)
622{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400623 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400625 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 };
627 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400628 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400629 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
632 inode->i_sb->s_id,
633 (long long)NFS_FILEID(inode),
634 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500635 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400637 if (NFS_STALE(inode))
638 goto out;
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500641 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (desc.ctx == NULL)
643 return -EBADF;
644 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400645 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100646
647 /* attempt to read as many of the pages as possible from the cache
648 * - this returns -ENOBUFS immediately if the cookie is negative
649 */
650 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
651 pages, &nr_pages);
652 if (ret == 0)
653 goto read_complete; /* all pages were read */
654
Trond Myklebust1751c362011-06-10 13:30:23 -0400655 nfs_pageio_init_read(&pgio, inode);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400658
659 nfs_pageio_complete(&pgio);
660 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
661 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100662read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400664out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return ret;
666}
667
David Howellsf7b422b2006-06-09 09:34:33 -0400668int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Fred Isamancd841602012-04-20 14:47:44 -0400671 sizeof(struct nfs_read_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900673 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (nfs_rdata_cachep == NULL)
675 return -ENOMEM;
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return 0;
678}
679
David Brownell266bee82006-06-27 12:59:15 -0700680void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700682 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}