blob: 6267b873bbcbc8f4b13ec887a29d5e5cdbae06d6 [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"
Chuck Lever91d5b472006-03-20 13:44:14 -050027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define NFSDBG_FACILITY NFSDBG_PAGECACHE
29
Trond Myklebust1751c362011-06-10 13:30:23 -040030static const struct nfs_pageio_ops nfs_pageio_read_ops;
Fred Isaman4db6e0b2012-04-20 14:47:46 -040031static const struct rpc_call_ops nfs_read_common_ops;
Fred Isaman061ae2e2012-04-20 14:47:48 -040032static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Christoph Lametere18b8902006-12-06 20:33:20 -080034static struct kmem_cache *nfs_rdata_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Trond Myklebust1385b812012-05-04 13:54:24 -040036struct nfs_read_header *nfs_readhdr_alloc(void)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050037{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040038 struct nfs_read_header *rhdr;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050039
Fred Isaman4db6e0b2012-04-20 14:47:46 -040040 rhdr = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
41 if (rhdr) {
42 struct nfs_pgio_header *hdr = &rhdr->header;
Fred Isamancd841602012-04-20 14:47:44 -040043
44 INIT_LIST_HEAD(&hdr->pages);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040045 INIT_LIST_HEAD(&hdr->rpc_list);
46 spin_lock_init(&hdr->lock);
47 atomic_set(&hdr->refcnt, 0);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050048 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -040049 return rhdr;
50}
51
Fred Isaman584aa812012-04-20 14:47:51 -040052static struct nfs_read_data *nfs_readdata_alloc(struct nfs_pgio_header *hdr,
53 unsigned int pagecount)
Fred Isaman4db6e0b2012-04-20 14:47:46 -040054{
55 struct nfs_read_data *data, *prealloc;
56
57 prealloc = &container_of(hdr, struct nfs_read_header, header)->rpc_data;
58 if (prealloc->header == NULL)
59 data = prealloc;
60 else
61 data = kzalloc(sizeof(*data), GFP_KERNEL);
62 if (!data)
63 goto out;
64
65 if (nfs_pgarray_set(&data->pages, pagecount)) {
66 data->header = hdr;
67 atomic_inc(&hdr->refcnt);
68 } else {
69 if (data != prealloc)
70 kfree(data);
71 data = NULL;
72 }
73out:
74 return data;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050075}
76
Fred Isamancd841602012-04-20 14:47:44 -040077void nfs_readhdr_free(struct nfs_pgio_header *hdr)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050078{
Fred Isamancd841602012-04-20 14:47:44 -040079 struct nfs_read_header *rhdr = container_of(hdr, struct nfs_read_header, header);
80
81 kmem_cache_free(nfs_rdata_cachep, rhdr);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050082}
83
Trond Myklebust493292d2011-07-13 15:58:28 -040084void nfs_readdata_release(struct nfs_read_data *rdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Fred Isaman4db6e0b2012-04-20 14:47:46 -040086 struct nfs_pgio_header *hdr = rdata->header;
87 struct nfs_read_header *read_header = container_of(hdr, struct nfs_read_header, header);
88
Trond Myklebust383ba712008-02-19 20:04:20 -050089 put_nfs_open_context(rdata->args.context);
Fred Isaman30dd3742012-04-20 14:47:45 -040090 if (rdata->pages.pagevec != rdata->pages.page_array)
91 kfree(rdata->pages.pagevec);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040092 if (rdata != &read_header->rpc_data)
93 kfree(rdata);
94 else
95 rdata->header = NULL;
96 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -040097 hdr->completion_ops->completion(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101int nfs_return_empty_page(struct page *page)
102{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800103 zero_user(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 SetPageUptodate(page);
105 unlock_page(page);
106 return 0;
107}
108
Bryan Schumaker1abb50882012-06-20 15:53:47 -0400109void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400110 struct inode *inode,
111 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -0400112{
Fred Isaman061ae2e2012-04-20 14:47:48 -0400113 nfs_pageio_init(pgio, inode, &nfs_pageio_read_ops, compl_ops,
Trond Myklebust1751c362011-06-10 13:30:23 -0400114 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
David Howellsf42b2932009-04-03 16:42:44 +0100124int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
125 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct nfs_page *new;
128 unsigned int len;
Fred Isamanc76069b2011-03-03 15:13:48 +0000129 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Trond Myklebust49a70f22006-12-05 00:35:38 -0500131 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (len == 0)
133 return nfs_return_empty_page(page);
134 new = nfs_create_request(ctx, inode, page, 0, len);
135 if (IS_ERR(new)) {
136 unlock_page(page);
137 return PTR_ERR(new);
138 }
139 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800140 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Bryan Schumaker1abb50882012-06-20 15:53:47 -0400142 NFS_PROTO(inode)->read_pageio_init(&pgio, inode, &nfs_async_read_completion_ops);
Trond Myklebustd8007d42011-06-10 13:30:23 -0400143 nfs_pageio_add_request(&pgio, new);
Trond Myklebust1751c362011-06-10 13:30:23 -0400144 nfs_pageio_complete(&pgio);
Andy Adamson2701d082012-05-24 13:13:24 -0400145 NFS_I(inode)->read_io += pgio.pg_bytes_written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147}
148
149static void nfs_readpage_release(struct nfs_page *req)
150{
Al Viro3d4ff432011-06-22 18:40:12 -0400151 struct inode *d_inode = req->wb_context->dentry->d_inode;
David Howells7f8e05f2009-04-03 16:42:45 +0100152
153 if (PageUptodate(req->wb_page))
154 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 unlock_page(req->wb_page);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
Al Viro3d4ff432011-06-22 18:40:12 -0400159 req->wb_context->dentry->d_inode->i_sb->s_id,
160 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 req->wb_bytes,
162 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700163 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400166/* Note io was page aligned */
Fred Isaman061ae2e2012-04-20 14:47:48 -0400167static void nfs_read_completion(struct nfs_pgio_header *hdr)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400168{
169 unsigned long bytes = 0;
170
171 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
172 goto out;
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400173 while (!list_empty(&hdr->pages)) {
174 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
175 struct page *page = req->wb_page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400176
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400177 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
178 if (bytes > hdr->good_bytes)
179 zero_user(page, 0, PAGE_SIZE);
180 else if (hdr->good_bytes - bytes < PAGE_SIZE)
181 zero_user_segment(page,
182 hdr->good_bytes & ~PAGE_MASK,
183 PAGE_SIZE);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400184 }
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400185 bytes += req->wb_bytes;
186 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400187 if (bytes <= hdr->good_bytes)
Trond Myklebust4bd8b012012-05-01 12:49:58 -0400188 SetPageUptodate(page);
189 } else
190 SetPageUptodate(page);
191 nfs_list_remove_request(req);
192 nfs_readpage_release(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400193 }
194out:
195 hdr->release(hdr);
196}
197
Fred Isamanc5996c42012-04-20 14:47:41 -0400198int nfs_initiate_read(struct rpc_clnt *clnt,
199 struct nfs_read_data *data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400200 const struct rpc_call_ops *call_ops, int flags)
Andy Adamson64419a92011-03-01 01:34:16 +0000201{
Fred Isamancd841602012-04-20 14:47:44 -0400202 struct inode *inode = data->header->inode;
Andy Adamson64419a92011-03-01 01:34:16 +0000203 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
204 struct rpc_task *task;
205 struct rpc_message msg = {
206 .rpc_argp = &data->args,
207 .rpc_resp = &data->res,
Fred Isamancd841602012-04-20 14:47:44 -0400208 .rpc_cred = data->header->cred,
Andy Adamson64419a92011-03-01 01:34:16 +0000209 };
210 struct rpc_task_setup task_setup_data = {
211 .task = &data->task,
212 .rpc_client = clnt,
213 .rpc_message = &msg,
214 .callback_ops = call_ops,
215 .callback_data = data,
216 .workqueue = nfsiod_workqueue,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400217 .flags = RPC_TASK_ASYNC | swap_flags | flags,
Andy Adamson64419a92011-03-01 01:34:16 +0000218 };
219
220 /* Set up the initial task struct. */
221 NFS_PROTO(inode)->read_setup(data, &msg);
222
223 dprintk("NFS: %5u initiated read call (req %s/%lld, %u bytes @ "
224 "offset %llu)\n",
225 data->task.tk_pid,
226 inode->i_sb->s_id,
227 (long long)NFS_FILEID(inode),
228 data->args.count,
229 (unsigned long long)data->args.offset);
230
231 task = rpc_run_task(&task_setup_data);
232 if (IS_ERR(task))
233 return PTR_ERR(task);
234 rpc_put_task(task);
235 return 0;
236}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000237EXPORT_SYMBOL_GPL(nfs_initiate_read);
Andy Adamson64419a92011-03-01 01:34:16 +0000238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * Set up the NFS read request struct
241 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400242static void nfs_read_rpcsetup(struct nfs_read_data *data,
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400243 unsigned int count, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400245 struct nfs_page *req = data->header->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400247 data->args.fh = NFS_FH(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 data->args.offset = req_offset(req) + offset;
249 data->args.pgbase = req->wb_pgbase + offset;
Fred Isaman30dd3742012-04-20 14:47:45 -0400250 data->args.pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500252 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400253 data->args.lock_context = req->wb_lock_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 data->res.fattr = &data->fattr;
256 data->res.count = count;
257 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400258 nfs_fattr_init(&data->fattr);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400261static int nfs_do_read(struct nfs_read_data *data,
Trond Myklebust493292d2011-07-13 15:58:28 -0400262 const struct rpc_call_ops *call_ops)
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400263{
Fred Isamancd841602012-04-20 14:47:44 -0400264 struct inode *inode = data->header->inode;
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400265
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400266 return nfs_initiate_read(NFS_CLIENT(inode), data, call_ops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Trond Myklebust275acaa2011-07-12 13:42:02 -0400269static int
270nfs_do_multiple_reads(struct list_head *head,
Trond Myklebust493292d2011-07-13 15:58:28 -0400271 const struct rpc_call_ops *call_ops)
Trond Myklebust275acaa2011-07-12 13:42:02 -0400272{
273 struct nfs_read_data *data;
274 int ret = 0;
275
276 while (!list_empty(head)) {
277 int ret2;
278
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400279 data = list_first_entry(head, struct nfs_read_data, list);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400280 list_del_init(&data->list);
281
Trond Myklebust493292d2011-07-13 15:58:28 -0400282 ret2 = nfs_do_read(data, call_ops);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400283 if (ret == 0)
284 ret = ret2;
285 }
286 return ret;
287}
288
Fred Isaman061ae2e2012-04-20 14:47:48 -0400289static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290nfs_async_read_error(struct list_head *head)
291{
292 struct nfs_page *req;
293
294 while (!list_empty(head)) {
295 req = nfs_list_entry(head->next);
296 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 nfs_readpage_release(req);
298 }
299}
300
Fred Isaman061ae2e2012-04-20 14:47:48 -0400301static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
302 .error_cleanup = nfs_async_read_error,
303 .completion = nfs_read_completion,
304};
305
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400306static void nfs_pagein_error(struct nfs_pageio_descriptor *desc,
307 struct nfs_pgio_header *hdr)
308{
309 set_bit(NFS_IOHDR_REDO, &hdr->flags);
310 while (!list_empty(&hdr->rpc_list)) {
311 struct nfs_read_data *data = list_first_entry(&hdr->rpc_list,
312 struct nfs_read_data, list);
313 list_del(&data->list);
314 nfs_readdata_release(data);
315 }
316 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * Generate multiple requests to fill a single page.
321 *
322 * We optimize to reduce the number of read operations on the wire. If we
323 * detect that we're reading a page, or an area of a page, that is past the
324 * end of file, we do not generate NFS read operations but just clear the
325 * parts of the page that would have come back zero from the server anyway.
326 *
327 * We rely on the cached value of i_size to make this determination; another
328 * client can fill pages on the server past our cached end-of-file, but we
329 * won't see the new data until our attribute cache is updated. This is more
330 * or less conventional NFS client behavior.
331 */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400332static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc,
333 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400335 struct nfs_page *req = hdr->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 struct page *page = req->wb_page;
337 struct nfs_read_data *data;
Trond Myklebustd0979712011-07-12 13:42:02 -0400338 size_t rsize = desc->pg_bsize, nbytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700339 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Trond Myklebust275acaa2011-07-12 13:42:02 -0400341 offset = 0;
Fred Isamanc76069b2011-03-03 15:13:48 +0000342 nbytes = desc->pg_count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700343 do {
344 size_t len = min(nbytes,rsize);
345
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400346 data = nfs_readdata_alloc(hdr, 1);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400347 if (!data) {
348 nfs_pagein_error(desc, hdr);
349 return -ENOMEM;
350 }
Fred Isaman30dd3742012-04-20 14:47:45 -0400351 data->pages.pagevec[0] = page;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400352 nfs_read_rpcsetup(data, len, offset);
353 list_add(&data->list, &hdr->rpc_list);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700354 nbytes -= len;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400355 offset += len;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400356 } while (nbytes != 0);
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400357
358 nfs_list_remove_request(req);
359 nfs_list_add_request(req, &hdr->pages);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400360 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400361 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400364static int nfs_pagein_one(struct nfs_pageio_descriptor *desc,
365 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct nfs_page *req;
368 struct page **pages;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400369 struct nfs_read_data *data;
Fred Isamanc76069b2011-03-03 15:13:48 +0000370 struct list_head *head = &desc->pg_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400372 data = nfs_readdata_alloc(hdr, nfs_page_array_len(desc->pg_base,
373 desc->pg_count));
374 if (!data) {
Trond Myklebust25b11dc2012-05-01 12:07:22 -0400375 nfs_pagein_error(desc, hdr);
Trond Myklebust9146ab52012-05-01 11:21:43 -0400376 return -ENOMEM;
Fred Isamanbae724e2011-03-01 01:34:15 +0000377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Fred Isaman30dd3742012-04-20 14:47:45 -0400379 pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 while (!list_empty(head)) {
381 req = nfs_list_entry(head->next);
382 nfs_list_remove_request(req);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400383 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400387 nfs_read_rpcsetup(data, desc->pg_count, 0);
388 list_add(&data->list, &hdr->rpc_list);
389 desc->pg_rpc_callops = &nfs_read_common_ops;
Trond Myklebust9146ab52012-05-01 11:21:43 -0400390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400393int nfs_generic_pagein(struct nfs_pageio_descriptor *desc,
394 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -0400395{
396 if (desc->pg_bsize < PAGE_CACHE_SIZE)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400397 return nfs_pagein_multi(desc, hdr);
398 return nfs_pagein_one(desc, hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -0400399}
400
401static int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
Trond Myklebust1751c362011-06-10 13:30:23 -0400402{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400403 struct nfs_read_header *rhdr;
404 struct nfs_pgio_header *hdr;
Trond Myklebust275acaa2011-07-12 13:42:02 -0400405 int ret;
406
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400407 rhdr = nfs_readhdr_alloc();
408 if (!rhdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -0400409 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400410 return -ENOMEM;
411 }
412 hdr = &rhdr->header;
413 nfs_pgheader_init(desc, hdr, nfs_readhdr_free);
414 atomic_inc(&hdr->refcnt);
415 ret = nfs_generic_pagein(desc, hdr);
Trond Myklebust50828d72011-07-12 13:42:02 -0400416 if (ret == 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400417 ret = nfs_do_multiple_reads(&hdr->rpc_list,
418 desc->pg_rpc_callops);
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400419 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -0400420 hdr->completion_ops->completion(hdr);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400421 return ret;
Trond Myklebust1751c362011-06-10 13:30:23 -0400422}
Trond Myklebust1751c362011-06-10 13:30:23 -0400423
424static const struct nfs_pageio_ops nfs_pageio_read_ops = {
425 .pg_test = nfs_generic_pg_test,
426 .pg_doio = nfs_generic_pg_readpages,
427};
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500430 * This is the callback from RPC telling us whether a reply was
431 * received or some error occurred (timeout or socket shutdown).
432 */
433int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
434{
Fred Isamancd841602012-04-20 14:47:44 -0400435 struct inode *inode = data->header->inode;
Trond Myklebust0b671302006-11-14 16:12:23 -0500436 int status;
437
Harvey Harrison3110ff82008-05-02 13:42:44 -0700438 dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid,
Trond Myklebust0b671302006-11-14 16:12:23 -0500439 task->tk_status);
440
Fred Isamancd841602012-04-20 14:47:44 -0400441 status = NFS_PROTO(inode)->read_done(task, data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500442 if (status != 0)
443 return status;
444
Fred Isamancd841602012-04-20 14:47:44 -0400445 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count);
Trond Myklebust0b671302006-11-14 16:12:23 -0500446
447 if (task->tk_status == -ESTALE) {
Fred Isamancd841602012-04-20 14:47:44 -0400448 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
449 nfs_mark_for_revalidate(inode);
Trond Myklebust0b671302006-11-14 16:12:23 -0500450 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500451 return 0;
452}
453
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400454static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
Trond Myklebust0b671302006-11-14 16:12:23 -0500455{
456 struct nfs_readargs *argp = &data->args;
457 struct nfs_readres *resp = &data->res;
458
Trond Myklebust0b671302006-11-14 16:12:23 -0500459 /* This is a short read! */
Fred Isamancd841602012-04-20 14:47:44 -0400460 nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD);
Trond Myklebust0b671302006-11-14 16:12:23 -0500461 /* Has the server at least made some progress? */
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400462 if (resp->count == 0) {
463 nfs_set_pgio_error(data->header, -EIO, argp->offset);
Trond Myklebustd61e6122009-12-05 19:32:19 -0500464 return;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400465 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500466 /* Yes, so retry the read at the end of the data */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000467 data->mds_offset += resp->count;
Trond Myklebust0b671302006-11-14 16:12:23 -0500468 argp->offset += resp->count;
469 argp->pgbase += resp->count;
470 argp->count -= resp->count;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700471 rpc_restart_call_prepare(task);
Trond Myklebust0b671302006-11-14 16:12:23 -0500472}
473
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400474static void nfs_readpage_result_common(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Trond Myklebustec06c092006-03-20 13:44:27 -0500476 struct nfs_read_data *data = calldata;
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400477 struct nfs_pgio_header *hdr = data->header;
478
479 /* Note the only returns of nfs_readpage_result are 0 and -EAGAIN */
Trond Myklebustec06c092006-03-20 13:44:27 -0500480 if (nfs_readpage_result(task, data) != 0)
481 return;
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400482 if (task->tk_status < 0)
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400483 nfs_set_pgio_error(hdr, task->tk_status, data->args.offset);
484 else if (data->res.eof) {
485 loff_t bound;
Trond Myklebust0b671302006-11-14 16:12:23 -0500486
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400487 bound = data->args.offset + data->res.count;
488 spin_lock(&hdr->lock);
489 if (bound < hdr->io_start + hdr->good_bytes) {
490 set_bit(NFS_IOHDR_EOF, &hdr->flags);
491 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
492 hdr->good_bytes = bound - hdr->io_start;
493 }
494 spin_unlock(&hdr->lock);
495 } else if (data->res.count != data->args.count)
496 nfs_readpage_retry(task, data);
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400497}
498
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400499static void nfs_readpage_release_common(void *calldata)
Trond Myklebustfdd1e742008-04-15 16:33:58 -0400500{
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400501 nfs_readdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400504void nfs_read_prepare(struct rpc_task *task, void *calldata)
505{
506 struct nfs_read_data *data = calldata;
Fred Isamancd841602012-04-20 14:47:44 -0400507 NFS_PROTO(data->header->inode)->read_rpc_prepare(task, data);
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400508}
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400509
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400510static const struct rpc_call_ops nfs_read_common_ops = {
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400511 .rpc_call_prepare = nfs_read_prepare,
Fred Isaman4db6e0b2012-04-20 14:47:46 -0400512 .rpc_call_done = nfs_readpage_result_common,
513 .rpc_release = nfs_readpage_release_common,
Trond Myklebustec06c092006-03-20 13:44:27 -0500514};
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * Read a page over NFS.
518 * We read the page synchronously in the following case:
519 * - The error flag is set for this page. This happens only when a
520 * previous async read operation failed.
521 */
522int nfs_readpage(struct file *file, struct page *page)
523{
524 struct nfs_open_context *ctx;
525 struct inode *inode = page->mapping->host;
526 int error;
527
528 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
529 page, PAGE_CACHE_SIZE, page->index);
Chuck Lever91d5b472006-03-20 13:44:14 -0500530 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
531 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /*
534 * Try to flush any pending writes to the file..
535 *
536 * NOTE! Because we own the page lock, there cannot
537 * be any new pending writes generated at this point
538 * for this page (other pages can be written to).
539 */
540 error = nfs_wb_page(inode, page);
541 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400542 goto out_unlock;
543 if (PageUptodate(page))
544 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400546 error = -ESTALE;
547 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400548 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500551 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500552 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400554 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400556 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
David Howells9a9fc1c2009-04-03 16:42:44 +0100558 if (!IS_SYNC(inode)) {
559 error = nfs_readpage_from_fscache(ctx, inode, page);
560 if (error == 0)
561 goto out;
562 }
563
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500564 error = nfs_readpage_async(ctx, inode, page);
565
David Howells9a9fc1c2009-04-03 16:42:44 +0100566out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 put_nfs_open_context(ctx);
568 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400569out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unlock_page(page);
571 return error;
572}
573
574struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400575 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct nfs_open_context *ctx;
577};
578
579static int
580readpage_async_filler(void *data, struct page *page)
581{
582 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
583 struct inode *inode = page->mapping->host;
584 struct nfs_page *new;
585 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400586 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Trond Myklebust49a70f22006-12-05 00:35:38 -0500588 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (len == 0)
590 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400593 if (IS_ERR(new))
594 goto out_error;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800597 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Fred Isamanf8512ad2008-03-19 11:24:39 -0400598 if (!nfs_pageio_add_request(desc->pgio, new)) {
599 error = desc->pgio->pg_error;
600 goto out_unlock;
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400603out_error:
604 error = PTR_ERR(new);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400605out_unlock:
606 unlock_page(page);
607 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610int nfs_readpages(struct file *filp, struct address_space *mapping,
611 struct list_head *pages, unsigned nr_pages)
612{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400613 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400615 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 };
617 struct inode *inode = mapping->host;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400618 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400619 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
622 inode->i_sb->s_id,
623 (long long)NFS_FILEID(inode),
624 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500625 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400627 if (NFS_STALE(inode))
628 goto out;
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500631 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (desc.ctx == NULL)
633 return -EBADF;
634 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400635 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
David Howells9a9fc1c2009-04-03 16:42:44 +0100636
637 /* attempt to read as many of the pages as possible from the cache
638 * - this returns -ENOBUFS immediately if the cookie is negative
639 */
640 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
641 pages, &nr_pages);
642 if (ret == 0)
643 goto read_complete; /* all pages were read */
644
Bryan Schumaker1abb50882012-06-20 15:53:47 -0400645 NFS_PROTO(inode)->read_pageio_init(&pgio, inode, &nfs_async_read_completion_ops);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400648
649 nfs_pageio_complete(&pgio);
Andy Adamson2701d082012-05-24 13:13:24 -0400650 NFS_I(inode)->read_io += pgio.pg_bytes_written;
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400651 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
652 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
David Howells9a9fc1c2009-04-03 16:42:44 +0100653read_complete:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400655out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return ret;
657}
658
David Howellsf7b422b2006-06-09 09:34:33 -0400659int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
Fred Isamancd841602012-04-20 14:47:44 -0400662 sizeof(struct nfs_read_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900664 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (nfs_rdata_cachep == NULL)
666 return -ENOMEM;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 0;
669}
670
David Brownell266bee82006-06-27 12:59:15 -0700671void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700673 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}