blob: 20a0293240605bdb2d5e8ac1e4eb7d6a755fa027 [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;
Fred Isaman061ae2e2012-04-20 14:47:48 -040034static const struct nfs_pgio_completion_ops nfs_async_read_completion_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
Fred Isaman4db6e0b2012-04-20 14:47:46 -040038struct nfs_read_header *nfs_readhdr_alloc()
Trond Myklebust3feb2d42006-03-20 13:44:37 -050039{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040040 struct nfs_read_header *rhdr;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050041
Fred Isaman4db6e0b2012-04-20 14:47:46 -040042 rhdr = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
43 if (rhdr) {
44 struct nfs_pgio_header *hdr = &rhdr->header;
Fred Isamancd841602012-04-20 14:47:44 -040045
46 INIT_LIST_HEAD(&hdr->pages);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040047 INIT_LIST_HEAD(&hdr->rpc_list);
48 spin_lock_init(&hdr->lock);
49 atomic_set(&hdr->refcnt, 0);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050050 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -040051 return rhdr;
52}
53
Fred Isaman584aa812012-04-20 14:47:51 -040054static struct nfs_read_data *nfs_readdata_alloc(struct nfs_pgio_header *hdr,
55 unsigned int pagecount)
Fred Isaman4db6e0b2012-04-20 14:47:46 -040056{
57 struct nfs_read_data *data, *prealloc;
58
59 prealloc = &container_of(hdr, struct nfs_read_header, header)->rpc_data;
60 if (prealloc->header == NULL)
61 data = prealloc;
62 else
63 data = kzalloc(sizeof(*data), GFP_KERNEL);
64 if (!data)
65 goto out;
66
67 if (nfs_pgarray_set(&data->pages, pagecount)) {
68 data->header = hdr;
69 atomic_inc(&hdr->refcnt);
70 } else {
71 if (data != prealloc)
72 kfree(data);
73 data = NULL;
74 }
75out:
76 return data;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050077}
78
Fred Isamancd841602012-04-20 14:47:44 -040079void nfs_readhdr_free(struct nfs_pgio_header *hdr)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050080{
Fred Isamancd841602012-04-20 14:47:44 -040081 struct nfs_read_header *rhdr = container_of(hdr, struct nfs_read_header, header);
82
83 kmem_cache_free(nfs_rdata_cachep, rhdr);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050084}
85
Trond Myklebust493292d2011-07-13 15:58:28 -040086void nfs_readdata_release(struct nfs_read_data *rdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040088 struct nfs_pgio_header *hdr = rdata->header;
89 struct nfs_read_header *read_header = container_of(hdr, struct nfs_read_header, header);
90
Trond Myklebust383ba712008-02-19 20:04:20 -050091 put_nfs_open_context(rdata->args.context);
Fred Isaman30dd3742012-04-20 14:47:45 -040092 if (rdata->pages.pagevec != rdata->pages.page_array)
93 kfree(rdata->pages.pagevec);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040094 if (rdata != &read_header->rpc_data)
95 kfree(rdata);
96 else
97 rdata->header = NULL;
98 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -040099 hdr->completion_ops->completion(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103int nfs_return_empty_page(struct page *page)
104{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800105 zero_user(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 SetPageUptodate(page);
107 unlock_page(page);
108 return 0;
109}
110
Trond Myklebust62e4a762011-11-10 14:30:37 -0500111void nfs_pageio_init_read_mds(struct nfs_pageio_descriptor *pgio,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400112 struct inode *inode,
113 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -0400114{
Fred Isaman061ae2e2012-04-20 14:47:48 -0400115 nfs_pageio_init(pgio, inode, &nfs_pageio_read_ops, compl_ops,
Trond Myklebust1751c362011-06-10 13:30:23 -0400116 NFS_SERVER(inode)->rsize, 0);
117}
118
Trond Myklebust493292d2011-07-13 15:58:28 -0400119void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
120{
121 pgio->pg_ops = &nfs_pageio_read_ops;
122 pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
123}
Trond Myklebust1f945352011-07-13 15:59:57 -0400124EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
Trond Myklebust493292d2011-07-13 15:58:28 -0400125
Fred Isaman584aa812012-04-20 14:47:51 -0400126void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
127 struct inode *inode,
128 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -0400129{
Fred Isaman061ae2e2012-04-20 14:47:48 -0400130 if (!pnfs_pageio_init_read(pgio, inode, compl_ops))
131 nfs_pageio_init_read_mds(pgio, inode, compl_ops);
Trond Myklebust1751c362011-06-10 13:30:23 -0400132}
133
David Howellsf42b2932009-04-03 16:42:44 +0100134int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
135 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct nfs_page *new;
138 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +0000139 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Trond Myklebust49a70f22006-12-05 00:35:38 -0500141 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (len == 0)
143 return nfs_return_empty_page(page);
144 new = nfs_create_request(ctx, inode, page, 0, len);
145 if (IS_ERR(new)) {
146 unlock_page(page);
147 return PTR_ERR(new);
148 }
149 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800150 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Fred Isaman061ae2e2012-04-20 14:47:48 -0400152 nfs_pageio_init_read(&pgio, inode, &nfs_async_read_completion_ops);
Trond Myklebustd8007d42011-06-10 13:30:23 -0400153 nfs_pageio_add_request(&pgio, new);
Trond Myklebust1751c362011-06-10 13:30:23 -0400154 nfs_pageio_complete(&pgio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return 0;
156}
157
158static void nfs_readpage_release(struct nfs_page *req)
159{
Al Viro3d4ff432011-06-22 18:40:12 -0400160 struct inode *d_inode = req->wb_context->dentry->d_inode;
David Howells7f8e05f2009-04-03 16:42:45 +0100161
162 if (PageUptodate(req->wb_page))
163 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 unlock_page(req->wb_page);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
Al Viro3d4ff432011-06-22 18:40:12 -0400168 req->wb_context->dentry->d_inode->i_sb->s_id,
169 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 req->wb_bytes,
171 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700172 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400175/* Note io was page aligned */
Fred Isaman061ae2e2012-04-20 14:47:48 -0400176static void nfs_read_completion(struct nfs_pgio_header *hdr)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400177{
178 unsigned long bytes = 0;
179
180 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
181 goto out;
182 if (!test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
183 while (!list_empty(&hdr->pages)) {
184 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
185 struct page *page = req->wb_page;
186
187 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
188 if (bytes > hdr->good_bytes)
189 zero_user(page, 0, PAGE_SIZE);
190 else if (hdr->good_bytes - bytes < PAGE_SIZE)
191 zero_user_segment(page,
192 hdr->good_bytes & ~PAGE_MASK,
193 PAGE_SIZE);
194 }
195 SetPageUptodate(page);
196 nfs_list_remove_request(req);
197 nfs_readpage_release(req);
198 bytes += PAGE_SIZE;
199 }
200 } else {
201 while (!list_empty(&hdr->pages)) {
202 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
203
204 bytes += req->wb_bytes;
205 if (bytes <= hdr->good_bytes)
206 SetPageUptodate(req->wb_page);
207 nfs_list_remove_request(req);
208 nfs_readpage_release(req);
209 }
210 }
211out:
212 hdr->release(hdr);
213}
214
Fred Isamanc5996c42012-04-20 14:47:41 -0400215int nfs_initiate_read(struct rpc_clnt *clnt,
216 struct nfs_read_data *data,
Andy Adamson64419a92011-03-01 01:34:16 +0000217 const struct rpc_call_ops *call_ops)
218{
Fred Isamancd841602012-04-20 14:47:44 -0400219 struct inode *inode = data->header->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000220 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
221 struct rpc_task *task;
222 struct rpc_message msg = {
223 .rpc_argp = &data->args,
224 .rpc_resp = &data->res,
Fred Isamancd841602012-04-20 14:47:44 -0400225 .rpc_cred = data->header->cred,
Andy Adamson64419a92011-03-01 01:34:16 +0000226 };
227 struct rpc_task_setup task_setup_data = {
228 .task = &data->task,
229 .rpc_client = clnt,
230 .rpc_message = &msg,
231 .callback_ops = call_ops,
232 .callback_data = data,
233 .workqueue = nfsiod_workqueue,
234 .flags = RPC_TASK_ASYNC | swap_flags,
235 };
236
237 /* Set up the initial task struct. */
238 NFS_PROTO(inode)->read_setup(data, &msg);
239
240 dprintk("NFS: %5u initiated read call (req %s/%lld, %u bytes @ "
241 "offset %llu)\n",
242 data->task.tk_pid,
243 inode->i_sb->s_id,
244 (long long)NFS_FILEID(inode),
245 data->args.count,
246 (unsigned long long)data->args.offset);
247
248 task = rpc_run_task(&task_setup_data);
249 if (IS_ERR(task))
250 return PTR_ERR(task);
251 rpc_put_task(task);
252 return 0;
253}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000254EXPORT_SYMBOL_GPL(nfs_initiate_read);
Andy Adamson64419a92011-03-01 01:34:16 +0000255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*
257 * Set up the NFS read request struct
258 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400259static void nfs_read_rpcsetup(struct nfs_read_data *data,
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400260 unsigned int count, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400262 struct nfs_page *req = data->header->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400264 data->args.fh = NFS_FH(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 data->args.offset = req_offset(req) + offset;
266 data->args.pgbase = req->wb_pgbase + offset;
Fred Isaman30dd3742012-04-20 14:47:45 -0400267 data->args.pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500269 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400270 data->args.lock_context = req->wb_lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 data->res.fattr = &data->fattr;
273 data->res.count = count;
274 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400275 nfs_fattr_init(&data->fattr);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400278static int nfs_do_read(struct nfs_read_data *data,
Trond Myklebust493292d2011-07-13 15:58:28 -0400279 const struct rpc_call_ops *call_ops)
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400280{
Fred Isamancd841602012-04-20 14:47:44 -0400281 struct inode *inode = data->header->inode;
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400282
Fred Isamanc5996c42012-04-20 14:47:41 -0400283 return nfs_initiate_read(NFS_CLIENT(inode), data, call_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Trond Myklebust275acaa2011-07-12 13:42:02 -0400286static int
287nfs_do_multiple_reads(struct list_head *head,
Trond Myklebust493292d2011-07-13 15:58:28 -0400288 const struct rpc_call_ops *call_ops)
Trond Myklebust275acaa2011-07-12 13:42:02 -0400289{
290 struct nfs_read_data *data;
291 int ret = 0;
292
293 while (!list_empty(head)) {
294 int ret2;
295
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400296 data = list_first_entry(head, struct nfs_read_data, list);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400297 list_del_init(&data->list);
298
Trond Myklebust493292d2011-07-13 15:58:28 -0400299 ret2 = nfs_do_read(data, call_ops);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400300 if (ret == 0)
301 ret = ret2;
302 }
303 return ret;
304}
305
Fred Isaman061ae2e2012-04-20 14:47:48 -0400306static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307nfs_async_read_error(struct list_head *head)
308{
309 struct nfs_page *req;
310
311 while (!list_empty(head)) {
312 req = nfs_list_entry(head->next);
313 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 nfs_readpage_release(req);
315 }
316}
317
Fred Isaman061ae2e2012-04-20 14:47:48 -0400318static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
319 .error_cleanup = nfs_async_read_error,
320 .completion = nfs_read_completion,
321};
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * Generate multiple requests to fill a single page.
325 *
326 * We optimize to reduce the number of read operations on the wire. If we
327 * detect that we're reading a page, or an area of a page, that is past the
328 * end of file, we do not generate NFS read operations but just clear the
329 * parts of the page that would have come back zero from the server anyway.
330 *
331 * We rely on the cached value of i_size to make this determination; another
332 * client can fill pages on the server past our cached end-of-file, but we
333 * won't see the new data until our attribute cache is updated. This is more
334 * or less conventional NFS client behavior.
335 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400336static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc,
337 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400339 struct nfs_page *req = hdr->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct page *page = req->wb_page;
341 struct nfs_read_data *data;
Trond Myklebustd0979712011-07-12 13:42:02 -0400342 size_t rsize = desc->pg_bsize, nbytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700343 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 nfs_list_remove_request(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400346 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Trond Myklebust275acaa2011-07-12 13:42:02 -0400348 offset = 0;
Fred Isamanc76069b2011-03-03 15:13:48 +0000349 nbytes = desc->pg_count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700350 do {
351 size_t len = min(nbytes,rsize);
352
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400353 data = nfs_readdata_alloc(hdr, 1);
354 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto out_bad;
Fred Isaman30dd3742012-04-20 14:47:45 -0400356 data->pages.pagevec[0] = page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400357 nfs_read_rpcsetup(data, len, offset);
358 list_add(&data->list, &hdr->rpc_list);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700359 nbytes -= len;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400360 offset += len;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400361 } while (nbytes != 0);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400362 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364out_bad:
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400365 while (!list_empty(&hdr->rpc_list)) {
366 data = list_first_entry(&hdr->rpc_list, struct nfs_read_data, list);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400367 list_del(&data->list);
Fred Isaman73fb7bc2012-04-20 14:47:34 -0400368 nfs_readdata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Fred Isaman061ae2e2012-04-20 14:47:48 -0400370 desc->pg_completion_ops->error_cleanup(&hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return -ENOMEM;
372}
373
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400374static int nfs_pagein_one(struct nfs_pageio_descriptor *desc,
375 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 struct nfs_page *req;
378 struct page **pages;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400379 struct nfs_read_data *data;
Fred Isamanc76069b2011-03-03 15:13:48 +0000380 struct list_head *head = &desc->pg_list;
Peng Tao3b609182011-07-15 03:33:42 -0400381 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400383 data = nfs_readdata_alloc(hdr, nfs_page_array_len(desc->pg_base,
384 desc->pg_count));
385 if (!data) {
Fred Isaman061ae2e2012-04-20 14:47:48 -0400386 desc->pg_completion_ops->error_cleanup(head);
Trond Myklebust9146ab52012-05-01 11:21:43 -0400387 return -ENOMEM;
Fred Isamanbae724e2011-03-01 01:34:15 +0000388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Fred Isaman30dd3742012-04-20 14:47:45 -0400390 pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 while (!list_empty(head)) {
392 req = nfs_list_entry(head->next);
393 nfs_list_remove_request(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400394 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400398 nfs_read_rpcsetup(data, desc->pg_count, 0);
399 list_add(&data->list, &hdr->rpc_list);
400 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400404int nfs_generic_pagein(struct nfs_pageio_descriptor *desc,
405 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -0400406{
407 if (desc->pg_bsize < PAGE_CACHE_SIZE)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400408 return nfs_pagein_multi(desc, hdr);
409 return nfs_pagein_one(desc, hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -0400410}
411
412static int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
Trond Myklebust1751c362011-06-10 13:30:23 -0400413{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400414 struct nfs_read_header *rhdr;
415 struct nfs_pgio_header *hdr;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400416 int ret;
417
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400418 rhdr = nfs_readhdr_alloc();
419 if (!rhdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -0400420 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400421 return -ENOMEM;
422 }
423 hdr = &rhdr->header;
424 nfs_pgheader_init(desc, hdr, nfs_readhdr_free);
425 atomic_inc(&hdr->refcnt);
426 ret = nfs_generic_pagein(desc, hdr);
Trond Myklebust50828d72011-07-12 13:42:02 -0400427 if (ret == 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400428 ret = nfs_do_multiple_reads(&hdr->rpc_list,
429 desc->pg_rpc_callops);
430 else
431 set_bit(NFS_IOHDR_REDO, &hdr->flags);
432 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -0400433 hdr->completion_ops->completion(hdr);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400434 return ret;
Trond Myklebust1751c362011-06-10 13:30:23 -0400435}
Trond Myklebust1751c362011-06-10 13:30:23 -0400436
437static const struct nfs_pageio_ops nfs_pageio_read_ops = {
438 .pg_test = nfs_generic_pg_test,
439 .pg_doio = nfs_generic_pg_readpages,
440};
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500443 * This is the callback from RPC telling us whether a reply was
444 * received or some error occurred (timeout or socket shutdown).
445 */
446int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
447{
Fred Isamancd841602012-04-20 14:47:44 -0400448 struct inode *inode = data->header->inode;
Trond Myklebust0b671302006-11-14 16:12:23 -0500449 int status;
450
Harvey Harrison3110ff82008-05-02 13:42:44 -0700451 dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid,
Trond Myklebust0b671302006-11-14 16:12:23 -0500452 task->tk_status);
453
Fred Isamancd841602012-04-20 14:47:44 -0400454 status = NFS_PROTO(inode)->read_done(task, data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500455 if (status != 0)
456 return status;
457
Fred Isamancd841602012-04-20 14:47:44 -0400458 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count);
Trond Myklebust0b671302006-11-14 16:12:23 -0500459
460 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400461 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
462 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500463 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500464 return 0;
465}
466
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400467static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
Trond Myklebust0b671302006-11-14 16:12:23 -0500468{
469 struct nfs_readargs *argp = &data->args;
470 struct nfs_readres *resp = &data->res;
471
Trond Myklebust0b671302006-11-14 16:12:23 -0500472 /* This is a short read! */
Fred Isamancd841602012-04-20 14:47:44 -0400473 nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500474 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400475 if (resp->count == 0) {
476 nfs_set_pgio_error(data->header, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500477 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400478 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500479 /* Yes, so retry the read at the end of the data */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000480 data->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500481 argp->offset += resp->count;
482 argp->pgbase += resp->count;
483 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700484 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500485}
486
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400487static void nfs_readpage_result_common(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Trond Myklebustec06c092006-03-20 13:44:27 -0500489 struct nfs_read_data *data = calldata;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400490 struct nfs_pgio_header *hdr = data->header;
491
492 /* Note the only returns of nfs_readpage_result are 0 and -EAGAIN */
Trond Myklebustec06c092006-03-20 13:44:27 -0500493 if (nfs_readpage_result(task, data) != 0)
494 return;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400495 if (task->tk_status < 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400496 nfs_set_pgio_error(hdr, task->tk_status, data->args.offset);
497 else if (data->res.eof) {
498 loff_t bound;
Trond Myklebust0b671302006-11-14 16:12:23 -0500499
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400500 bound = data->args.offset + data->res.count;
501 spin_lock(&hdr->lock);
502 if (bound < hdr->io_start + hdr->good_bytes) {
503 set_bit(NFS_IOHDR_EOF, &hdr->flags);
504 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
505 hdr->good_bytes = bound - hdr->io_start;
506 }
507 spin_unlock(&hdr->lock);
508 } else if (data->res.count != data->args.count)
509 nfs_readpage_retry(task, data);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400510}
511
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400512static void nfs_readpage_release_common(void *calldata)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400513{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400514 nfs_readdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400517void nfs_read_prepare(struct rpc_task *task, void *calldata)
518{
519 struct nfs_read_data *data = calldata;
Fred Isamancd841602012-04-20 14:47:44 -0400520 NFS_PROTO(data->header->inode)->read_rpc_prepare(task, data);
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400521}
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400522
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400523static const struct rpc_call_ops nfs_read_common_ops = {
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400524 .rpc_call_prepare = nfs_read_prepare,
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400525 .rpc_call_done = nfs_readpage_result_common,
526 .rpc_release = nfs_readpage_release_common,
Trond Myklebustec06c092006-03-20 13:44:27 -0500527};
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * Read a page over NFS.
531 * We read the page synchronously in the following case:
532 * - The error flag is set for this page. This happens only when a
533 * previous async read operation failed.
534 */
535int nfs_readpage(struct file *file, struct page *page)
536{
537 struct nfs_open_context *ctx;
538 struct inode *inode = page->mapping->host;
539 int error;
540
541 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
542 page, PAGE_CACHE_SIZE, page->index);
Chuck Lever91d5b472006-03-20 13:44:14 -0500543 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
544 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /*
547 * Try to flush any pending writes to the file..
548 *
549 * NOTE! Because we own the page lock, there cannot
550 * be any new pending writes generated at this point
551 * for this page (other pages can be written to).
552 */
553 error = nfs_wb_page(inode, page);
554 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400555 goto out_unlock;
556 if (PageUptodate(page))
557 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400559 error = -ESTALE;
560 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400561 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500564 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500565 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400567 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400569 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
David Howells9a9fc1c2009-04-03 16:42:44 +0100571 if (!IS_SYNC(inode)) {
572 error = nfs_readpage_from_fscache(ctx, inode, page);
573 if (error == 0)
574 goto out;
575 }
576
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500577 error = nfs_readpage_async(ctx, inode, page);
578
David Howells9a9fc1c2009-04-03 16:42:44 +0100579out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 put_nfs_open_context(ctx);
581 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400582out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 unlock_page(page);
584 return error;
585}
586
587struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400588 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 struct nfs_open_context *ctx;
590};
591
592static int
593readpage_async_filler(void *data, struct page *page)
594{
595 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
596 struct inode *inode = page->mapping->host;
597 struct nfs_page *new;
598 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400599 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Trond Myklebust49a70f22006-12-05 00:35:38 -0500601 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (len == 0)
603 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400606 if (IS_ERR(new))
607 goto out_error;
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800610 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400611 if (!nfs_pageio_add_request(desc->pgio, new)) {
612 error = desc->pgio->pg_error;
613 goto out_unlock;
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400616out_error:
617 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400618out_unlock:
619 unlock_page(page);
620 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623int nfs_readpages(struct file *filp, struct address_space *mapping,
624 struct list_head *pages, unsigned nr_pages)
625{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400626 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400628 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 };
630 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400631 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400632 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
635 inode->i_sb->s_id,
636 (long long)NFS_FILEID(inode),
637 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500638 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400640 if (NFS_STALE(inode))
641 goto out;
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500644 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (desc.ctx == NULL)
646 return -EBADF;
647 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400648 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100649
650 /* attempt to read as many of the pages as possible from the cache
651 * - this returns -ENOBUFS immediately if the cookie is negative
652 */
653 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
654 pages, &nr_pages);
655 if (ret == 0)
656 goto read_complete; /* all pages were read */
657
Fred Isaman061ae2e2012-04-20 14:47:48 -0400658 nfs_pageio_init_read(&pgio, inode, &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400661
662 nfs_pageio_complete(&pgio);
663 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
664 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100665read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400667out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return ret;
669}
670
David Howellsf7b422b2006-06-09 09:34:33 -0400671int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Fred Isamancd841602012-04-20 14:47:44 -0400674 sizeof(struct nfs_read_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900676 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (nfs_rdata_cachep == NULL)
678 return -ENOMEM;
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return 0;
681}
682
David Brownell266bee82006-06-27 12:59:15 -0700683void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700685 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}