blob: 7f87461be3a9d60184bfd47d5adcb96e7df58060 [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;
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
Trond Myklebust1385b812012-05-04 13:54:24 -040037struct nfs_read_header *nfs_readhdr_alloc(void)
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}
Bryan Schumaker89d77c82012-07-30 16:05:25 -040052EXPORT_SYMBOL_GPL(nfs_readhdr_alloc);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040053
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}
Bryan Schumaker89d77c82012-07-30 16:05:25 -040085EXPORT_SYMBOL_GPL(nfs_readhdr_free);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050086
Trond Myklebust493292d2011-07-13 15:58:28 -040087void nfs_readdata_release(struct nfs_read_data *rdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040089 struct nfs_pgio_header *hdr = rdata->header;
90 struct nfs_read_header *read_header = container_of(hdr, struct nfs_read_header, header);
91
Trond Myklebust383ba712008-02-19 20:04:20 -050092 put_nfs_open_context(rdata->args.context);
Fred Isaman30dd3742012-04-20 14:47:45 -040093 if (rdata->pages.pagevec != rdata->pages.page_array)
94 kfree(rdata->pages.pagevec);
Trond Myklebust6db6dd72013-01-04 12:47:04 -050095 if (rdata == &read_header->rpc_data) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -040096 rdata->header = NULL;
Trond Myklebust6db6dd72013-01-04 12:47:04 -050097 rdata = NULL;
98 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -040099 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -0400100 hdr->completion_ops->completion(hdr);
Trond Myklebust6db6dd72013-01-04 12:47:04 -0500101 /* Note: we only free the rpc_task after callbacks are done.
102 * See the comment in rpc_free_task() for why
103 */
104 kfree(rdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400106EXPORT_SYMBOL_GPL(nfs_readdata_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109int nfs_return_empty_page(struct page *page)
110{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800111 zero_user(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SetPageUptodate(page);
113 unlock_page(page);
114 return 0;
115}
116
Bryan Schumaker1abb50882012-06-20 15:53:47 -0400117void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200118 struct inode *inode, bool force_mds,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400119 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -0400120{
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200121 struct nfs_server *server = NFS_SERVER(inode);
122 const struct nfs_pageio_ops *pg_ops = &nfs_pageio_read_ops;
123
124#ifdef CONFIG_NFS_V4_1
125 if (server->pnfs_curr_ld && !force_mds)
126 pg_ops = server->pnfs_curr_ld->pg_read_ops;
127#endif
128 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, server->rsize, 0);
Trond Myklebust1751c362011-06-10 13:30:23 -0400129}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400130EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
Trond Myklebust1751c362011-06-10 13:30:23 -0400131
Trond Myklebust493292d2011-07-13 15:58:28 -0400132void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
133{
134 pgio->pg_ops = &nfs_pageio_read_ops;
135 pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
136}
Trond Myklebust1f945352011-07-13 15:59:57 -0400137EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
Trond Myklebust493292d2011-07-13 15:58:28 -0400138
David Howellsf42b2932009-04-03 16:42:44 +0100139int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
140 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct nfs_page *new;
143 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +0000144 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Trond Myklebust49a70f22006-12-05 00:35:38 -0500146 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (len == 0)
148 return nfs_return_empty_page(page);
149 new = nfs_create_request(ctx, inode, page, 0, len);
150 if (IS_ERR(new)) {
151 unlock_page(page);
152 return PTR_ERR(new);
153 }
154 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800155 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200157 nfs_pageio_init_read(&pgio, inode, false,
158 &nfs_async_read_completion_ops);
Trond Myklebustd8007d42011-06-10 13:30:23 -0400159 nfs_pageio_add_request(&pgio, new);
Trond Myklebust1751c362011-06-10 13:30:23 -0400160 nfs_pageio_complete(&pgio);
Andy Adamson2701d082012-05-24 13:13:24 -0400161 NFS_I(inode)->read_io += pgio.pg_bytes_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return 0;
163}
164
165static void nfs_readpage_release(struct nfs_page *req)
166{
Al Viro3d4ff432011-06-22 18:40:12 -0400167 struct inode *d_inode = req->wb_context->dentry->d_inode;
David Howells7f8e05f2009-04-03 16:42:45 +0100168
169 if (PageUptodate(req->wb_page))
170 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 unlock_page(req->wb_page);
173
Niels de Vos1e8968c2013-12-17 18:20:16 +0100174 dprintk("NFS: read done (%s/%Lu %d@%Ld)\n",
Al Viro3d4ff432011-06-22 18:40:12 -0400175 req->wb_context->dentry->d_inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100176 (unsigned long long)NFS_FILEID(req->wb_context->dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 req->wb_bytes,
178 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700179 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400182/* Note io was page aligned */
Fred Isaman061ae2e2012-04-20 14:47:48 -0400183static void nfs_read_completion(struct nfs_pgio_header *hdr)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400184{
185 unsigned long bytes = 0;
186
187 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
188 goto out;
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400189 while (!list_empty(&hdr->pages)) {
190 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
191 struct page *page = req->wb_page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400192
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400193 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
194 if (bytes > hdr->good_bytes)
195 zero_user(page, 0, PAGE_SIZE);
196 else if (hdr->good_bytes - bytes < PAGE_SIZE)
197 zero_user_segment(page,
198 hdr->good_bytes & ~PAGE_MASK,
199 PAGE_SIZE);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400200 }
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400201 bytes += req->wb_bytes;
202 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400203 if (bytes <= hdr->good_bytes)
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400204 SetPageUptodate(page);
205 } else
206 SetPageUptodate(page);
207 nfs_list_remove_request(req);
208 nfs_readpage_release(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400209 }
210out:
211 hdr->release(hdr);
212}
213
Fred Isamanc5996c42012-04-20 14:47:41 -0400214int nfs_initiate_read(struct rpc_clnt *clnt,
215 struct nfs_read_data *data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400216 const struct rpc_call_ops *call_ops, int flags)
Andy Adamson64419a92011-03-01 01:34:16 +0000217{
Fred Isamancd841602012-04-20 14:47:44 -0400218 struct inode *inode = data->header->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000219 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
220 struct rpc_task *task;
221 struct rpc_message msg = {
222 .rpc_argp = &data->args,
223 .rpc_resp = &data->res,
Fred Isamancd841602012-04-20 14:47:44 -0400224 .rpc_cred = data->header->cred,
Andy Adamson64419a92011-03-01 01:34:16 +0000225 };
226 struct rpc_task_setup task_setup_data = {
227 .task = &data->task,
228 .rpc_client = clnt,
229 .rpc_message = &msg,
230 .callback_ops = call_ops,
231 .callback_data = data,
232 .workqueue = nfsiod_workqueue,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400233 .flags = RPC_TASK_ASYNC | swap_flags | flags,
Andy Adamson64419a92011-03-01 01:34:16 +0000234 };
235
236 /* Set up the initial task struct. */
237 NFS_PROTO(inode)->read_setup(data, &msg);
238
Niels de Vos1e8968c2013-12-17 18:20:16 +0100239 dprintk("NFS: %5u initiated read call (req %s/%llu, %u bytes @ "
Andy Adamson64419a92011-03-01 01:34:16 +0000240 "offset %llu)\n",
241 data->task.tk_pid,
242 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100243 (unsigned long long)NFS_FILEID(inode),
Andy Adamson64419a92011-03-01 01:34:16 +0000244 data->args.count,
245 (unsigned long long)data->args.offset);
246
247 task = rpc_run_task(&task_setup_data);
248 if (IS_ERR(task))
249 return PTR_ERR(task);
250 rpc_put_task(task);
251 return 0;
252}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000253EXPORT_SYMBOL_GPL(nfs_initiate_read);
Andy Adamson64419a92011-03-01 01:34:16 +0000254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/*
256 * Set up the NFS read request struct
257 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400258static void nfs_read_rpcsetup(struct nfs_read_data *data,
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400259 unsigned int count, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400261 struct nfs_page *req = data->header->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400263 data->args.fh = NFS_FH(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 data->args.offset = req_offset(req) + offset;
265 data->args.pgbase = req->wb_pgbase + offset;
Fred Isaman30dd3742012-04-20 14:47:45 -0400266 data->args.pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500268 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400269 data->args.lock_context = req->wb_lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 data->res.fattr = &data->fattr;
272 data->res.count = count;
273 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400274 nfs_fattr_init(&data->fattr);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400275}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400277static int nfs_do_read(struct nfs_read_data *data,
Trond Myklebust493292d2011-07-13 15:58:28 -0400278 const struct rpc_call_ops *call_ops)
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400279{
Fred Isamancd841602012-04-20 14:47:44 -0400280 struct inode *inode = data->header->inode;
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400281
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400282 return nfs_initiate_read(NFS_CLIENT(inode), data, call_ops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Trond Myklebust275acaa2011-07-12 13:42:02 -0400285static int
286nfs_do_multiple_reads(struct list_head *head,
Trond Myklebust493292d2011-07-13 15:58:28 -0400287 const struct rpc_call_ops *call_ops)
Trond Myklebust275acaa2011-07-12 13:42:02 -0400288{
289 struct nfs_read_data *data;
290 int ret = 0;
291
292 while (!list_empty(head)) {
293 int ret2;
294
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400295 data = list_first_entry(head, struct nfs_read_data, list);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400296 list_del_init(&data->list);
297
Trond Myklebust493292d2011-07-13 15:58:28 -0400298 ret2 = nfs_do_read(data, call_ops);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400299 if (ret == 0)
300 ret = ret2;
301 }
302 return ret;
303}
304
Fred Isaman061ae2e2012-04-20 14:47:48 -0400305static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306nfs_async_read_error(struct list_head *head)
307{
308 struct nfs_page *req;
309
310 while (!list_empty(head)) {
311 req = nfs_list_entry(head->next);
312 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 nfs_readpage_release(req);
314 }
315}
316
Fred Isaman061ae2e2012-04-20 14:47:48 -0400317static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
318 .error_cleanup = nfs_async_read_error,
319 .completion = nfs_read_completion,
320};
321
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400322static void nfs_pagein_error(struct nfs_pageio_descriptor *desc,
323 struct nfs_pgio_header *hdr)
324{
325 set_bit(NFS_IOHDR_REDO, &hdr->flags);
326 while (!list_empty(&hdr->rpc_list)) {
327 struct nfs_read_data *data = list_first_entry(&hdr->rpc_list,
328 struct nfs_read_data, list);
329 list_del(&data->list);
330 nfs_readdata_release(data);
331 }
332 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * Generate multiple requests to fill a single page.
337 *
338 * We optimize to reduce the number of read operations on the wire. If we
339 * detect that we're reading a page, or an area of a page, that is past the
340 * end of file, we do not generate NFS read operations but just clear the
341 * parts of the page that would have come back zero from the server anyway.
342 *
343 * We rely on the cached value of i_size to make this determination; another
344 * client can fill pages on the server past our cached end-of-file, but we
345 * won't see the new data until our attribute cache is updated. This is more
346 * or less conventional NFS client behavior.
347 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400348static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc,
349 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400351 struct nfs_page *req = hdr->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct page *page = req->wb_page;
353 struct nfs_read_data *data;
Trond Myklebustd0979712011-07-12 13:42:02 -0400354 size_t rsize = desc->pg_bsize, nbytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700355 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Trond Myklebust275acaa2011-07-12 13:42:02 -0400357 offset = 0;
Fred Isamanc76069b2011-03-03 15:13:48 +0000358 nbytes = desc->pg_count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700359 do {
360 size_t len = min(nbytes,rsize);
361
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400362 data = nfs_readdata_alloc(hdr, 1);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400363 if (!data) {
364 nfs_pagein_error(desc, hdr);
365 return -ENOMEM;
366 }
Fred Isaman30dd3742012-04-20 14:47:45 -0400367 data->pages.pagevec[0] = page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400368 nfs_read_rpcsetup(data, len, offset);
369 list_add(&data->list, &hdr->rpc_list);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700370 nbytes -= len;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400371 offset += len;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400372 } while (nbytes != 0);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400373
374 nfs_list_remove_request(req);
375 nfs_list_add_request(req, &hdr->pages);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400376 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400380static int nfs_pagein_one(struct nfs_pageio_descriptor *desc,
381 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct nfs_page *req;
384 struct page **pages;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400385 struct nfs_read_data *data;
Fred Isamanc76069b2011-03-03 15:13:48 +0000386 struct list_head *head = &desc->pg_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400388 data = nfs_readdata_alloc(hdr, nfs_page_array_len(desc->pg_base,
389 desc->pg_count));
390 if (!data) {
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400391 nfs_pagein_error(desc, hdr);
Trond Myklebust9146ab52012-05-01 11:21:43 -0400392 return -ENOMEM;
Fred Isamanbae724e2011-03-01 01:34:15 +0000393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Fred Isaman30dd3742012-04-20 14:47:45 -0400395 pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 while (!list_empty(head)) {
397 req = nfs_list_entry(head->next);
398 nfs_list_remove_request(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400399 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400403 nfs_read_rpcsetup(data, desc->pg_count, 0);
404 list_add(&data->list, &hdr->rpc_list);
405 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400409int nfs_generic_pagein(struct nfs_pageio_descriptor *desc,
410 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -0400411{
412 if (desc->pg_bsize < PAGE_CACHE_SIZE)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400413 return nfs_pagein_multi(desc, hdr);
414 return nfs_pagein_one(desc, hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -0400415}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400416EXPORT_SYMBOL_GPL(nfs_generic_pagein);
Trond Myklebust493292d2011-07-13 15:58:28 -0400417
418static int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
Trond Myklebust1751c362011-06-10 13:30:23 -0400419{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400420 struct nfs_read_header *rhdr;
421 struct nfs_pgio_header *hdr;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400422 int ret;
423
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400424 rhdr = nfs_readhdr_alloc();
425 if (!rhdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -0400426 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400427 return -ENOMEM;
428 }
429 hdr = &rhdr->header;
430 nfs_pgheader_init(desc, hdr, nfs_readhdr_free);
431 atomic_inc(&hdr->refcnt);
432 ret = nfs_generic_pagein(desc, hdr);
Trond Myklebust50828d72011-07-12 13:42:02 -0400433 if (ret == 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400434 ret = nfs_do_multiple_reads(&hdr->rpc_list,
435 desc->pg_rpc_callops);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400436 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -0400437 hdr->completion_ops->completion(hdr);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400438 return ret;
Trond Myklebust1751c362011-06-10 13:30:23 -0400439}
Trond Myklebust1751c362011-06-10 13:30:23 -0400440
441static const struct nfs_pageio_ops nfs_pageio_read_ops = {
442 .pg_test = nfs_generic_pg_test,
443 .pg_doio = nfs_generic_pg_readpages,
444};
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500447 * This is the callback from RPC telling us whether a reply was
448 * received or some error occurred (timeout or socket shutdown).
449 */
450int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
451{
Fred Isamancd841602012-04-20 14:47:44 -0400452 struct inode *inode = data->header->inode;
Trond Myklebust0b671302006-11-14 16:12:23 -0500453 int status;
454
Harvey Harrison3110ff82008-05-02 13:42:44 -0700455 dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid,
Trond Myklebust0b671302006-11-14 16:12:23 -0500456 task->tk_status);
457
Fred Isamancd841602012-04-20 14:47:44 -0400458 status = NFS_PROTO(inode)->read_done(task, data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500459 if (status != 0)
460 return status;
461
Fred Isamancd841602012-04-20 14:47:44 -0400462 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count);
Trond Myklebust0b671302006-11-14 16:12:23 -0500463
464 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400465 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
466 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500467 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500468 return 0;
469}
470
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400471static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
Trond Myklebust0b671302006-11-14 16:12:23 -0500472{
473 struct nfs_readargs *argp = &data->args;
474 struct nfs_readres *resp = &data->res;
475
Trond Myklebust0b671302006-11-14 16:12:23 -0500476 /* This is a short read! */
Fred Isamancd841602012-04-20 14:47:44 -0400477 nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500478 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400479 if (resp->count == 0) {
480 nfs_set_pgio_error(data->header, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500481 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400482 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500483 /* Yes, so retry the read at the end of the data */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000484 data->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500485 argp->offset += resp->count;
486 argp->pgbase += resp->count;
487 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700488 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500489}
490
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400491static void nfs_readpage_result_common(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Trond Myklebustec06c092006-03-20 13:44:27 -0500493 struct nfs_read_data *data = calldata;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400494 struct nfs_pgio_header *hdr = data->header;
495
496 /* Note the only returns of nfs_readpage_result are 0 and -EAGAIN */
Trond Myklebustec06c092006-03-20 13:44:27 -0500497 if (nfs_readpage_result(task, data) != 0)
498 return;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400499 if (task->tk_status < 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400500 nfs_set_pgio_error(hdr, task->tk_status, data->args.offset);
501 else if (data->res.eof) {
502 loff_t bound;
Trond Myklebust0b671302006-11-14 16:12:23 -0500503
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400504 bound = data->args.offset + data->res.count;
505 spin_lock(&hdr->lock);
506 if (bound < hdr->io_start + hdr->good_bytes) {
507 set_bit(NFS_IOHDR_EOF, &hdr->flags);
508 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
509 hdr->good_bytes = bound - hdr->io_start;
510 }
511 spin_unlock(&hdr->lock);
512 } else if (data->res.count != data->args.count)
513 nfs_readpage_retry(task, data);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400514}
515
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400516static void nfs_readpage_release_common(void *calldata)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400517{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400518 nfs_readdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400521void nfs_read_prepare(struct rpc_task *task, void *calldata)
522{
523 struct nfs_read_data *data = calldata;
NeilBrownef1820f2013-09-04 17:04:49 +1000524 int err;
525 err = NFS_PROTO(data->header->inode)->read_rpc_prepare(task, data);
526 if (err)
527 rpc_exit(task, err);
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400528}
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400529
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400530static const struct rpc_call_ops nfs_read_common_ops = {
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400531 .rpc_call_prepare = nfs_read_prepare,
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400532 .rpc_call_done = nfs_readpage_result_common,
533 .rpc_release = nfs_readpage_release_common,
Trond Myklebustec06c092006-03-20 13:44:27 -0500534};
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * Read a page over NFS.
538 * We read the page synchronously in the following case:
539 * - The error flag is set for this page. This happens only when a
540 * previous async read operation failed.
541 */
542int nfs_readpage(struct file *file, struct page *page)
543{
544 struct nfs_open_context *ctx;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700545 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int error;
547
548 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
Mel Gormand56b4dd2012-07-31 16:45:06 -0700549 page, PAGE_CACHE_SIZE, page_file_index(page));
Chuck Lever91d5b472006-03-20 13:44:14 -0500550 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
551 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /*
554 * Try to flush any pending writes to the file..
555 *
556 * NOTE! Because we own the page lock, there cannot
557 * be any new pending writes generated at this point
558 * for this page (other pages can be written to).
559 */
560 error = nfs_wb_page(inode, page);
561 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400562 goto out_unlock;
563 if (PageUptodate(page))
564 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400566 error = -ESTALE;
567 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400568 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500571 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500572 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400574 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400576 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
David Howells9a9fc1c2009-04-03 16:42:44 +0100578 if (!IS_SYNC(inode)) {
579 error = nfs_readpage_from_fscache(ctx, inode, page);
580 if (error == 0)
581 goto out;
582 }
583
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500584 error = nfs_readpage_async(ctx, inode, page);
585
David Howells9a9fc1c2009-04-03 16:42:44 +0100586out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 put_nfs_open_context(ctx);
588 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400589out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 unlock_page(page);
591 return error;
592}
593
594struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400595 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct nfs_open_context *ctx;
597};
598
599static int
600readpage_async_filler(void *data, struct page *page)
601{
602 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700603 struct inode *inode = page_file_mapping(page)->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct nfs_page *new;
605 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400606 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Trond Myklebust49a70f22006-12-05 00:35:38 -0500608 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (len == 0)
610 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400613 if (IS_ERR(new))
614 goto out_error;
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800617 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400618 if (!nfs_pageio_add_request(desc->pgio, new)) {
619 error = desc->pgio->pg_error;
620 goto out_unlock;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400623out_error:
624 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400625out_unlock:
626 unlock_page(page);
627 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630int nfs_readpages(struct file *filp, struct address_space *mapping,
631 struct list_head *pages, unsigned nr_pages)
632{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400633 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400635 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 };
637 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400638 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400639 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Niels de Vos1e8968c2013-12-17 18:20:16 +0100641 dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100643 (unsigned long long)NFS_FILEID(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500645 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400647 if (NFS_STALE(inode))
648 goto out;
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500651 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (desc.ctx == NULL)
653 return -EBADF;
654 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400655 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100656
657 /* attempt to read as many of the pages as possible from the cache
658 * - this returns -ENOBUFS immediately if the cookie is negative
659 */
660 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
661 pages, &nr_pages);
662 if (ret == 0)
663 goto read_complete; /* all pages were read */
664
Christoph Hellwigfab5fc22014-04-16 15:07:22 +0200665 nfs_pageio_init_read(&pgio, inode, false,
666 &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400669
670 nfs_pageio_complete(&pgio);
Andy Adamson2701d082012-05-24 13:13:24 -0400671 NFS_I(inode)->read_io += pgio.pg_bytes_written;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400672 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
673 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100674read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400676out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return ret;
678}
679
David Howellsf7b422b2006-06-09 09:34:33 -0400680int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Fred Isamancd841602012-04-20 14:47:44 -0400683 sizeof(struct nfs_read_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900685 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (nfs_rdata_cachep == NULL)
687 return -ENOMEM;
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return 0;
690}
691
David Brownell266bee82006-06-27 12:59:15 -0700692void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700694 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}