NFS: Switch from intr mount option to TASK_KILLABLE
[safe/jmp/linux-2.6] / fs / nfs / read.c
1 /*
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
8  */
9
10 #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>
21 #include <linux/smp_lock.h>
22
23 #include <asm/system.h>
24
25 #include "internal.h"
26 #include "iostat.h"
27
28 #define NFSDBG_FACILITY         NFSDBG_PAGECACHE
29
30 static int nfs_pagein_multi(struct inode *, struct list_head *, unsigned int, size_t, int);
31 static int nfs_pagein_one(struct inode *, struct list_head *, unsigned int, size_t, int);
32 static const struct rpc_call_ops nfs_read_partial_ops;
33 static const struct rpc_call_ops nfs_read_full_ops;
34
35 static struct kmem_cache *nfs_rdata_cachep;
36 static mempool_t *nfs_rdata_mempool;
37
38 #define MIN_POOL_READ   (32)
39
40 struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount)
41 {
42         struct nfs_read_data *p = mempool_alloc(nfs_rdata_mempool, GFP_NOFS);
43
44         if (p) {
45                 memset(p, 0, sizeof(*p));
46                 INIT_LIST_HEAD(&p->pages);
47                 p->npages = pagecount;
48                 if (pagecount <= ARRAY_SIZE(p->page_array))
49                         p->pagevec = p->page_array;
50                 else {
51                         p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
52                         if (!p->pagevec) {
53                                 mempool_free(p, nfs_rdata_mempool);
54                                 p = NULL;
55                         }
56                 }
57         }
58         return p;
59 }
60
61 static void nfs_readdata_rcu_free(struct rcu_head *head)
62 {
63         struct nfs_read_data *p = container_of(head, struct nfs_read_data, task.u.tk_rcu);
64         if (p && (p->pagevec != &p->page_array[0]))
65                 kfree(p->pagevec);
66         mempool_free(p, nfs_rdata_mempool);
67 }
68
69 static void nfs_readdata_free(struct nfs_read_data *rdata)
70 {
71         call_rcu_bh(&rdata->task.u.tk_rcu, nfs_readdata_rcu_free);
72 }
73
74 void nfs_readdata_release(void *data)
75 {
76         nfs_readdata_free(data);
77 }
78
79 static
80 int nfs_return_empty_page(struct page *page)
81 {
82         zero_user_page(page, 0, PAGE_CACHE_SIZE, KM_USER0);
83         SetPageUptodate(page);
84         unlock_page(page);
85         return 0;
86 }
87
88 static void nfs_readpage_truncate_uninitialised_page(struct nfs_read_data *data)
89 {
90         unsigned int remainder = data->args.count - data->res.count;
91         unsigned int base = data->args.pgbase + data->res.count;
92         unsigned int pglen;
93         struct page **pages;
94
95         if (data->res.eof == 0 || remainder == 0)
96                 return;
97         /*
98          * Note: "remainder" can never be negative, since we check for
99          *      this in the XDR code.
100          */
101         pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
102         base &= ~PAGE_CACHE_MASK;
103         pglen = PAGE_CACHE_SIZE - base;
104         for (;;) {
105                 if (remainder <= pglen) {
106                         zero_user_page(*pages, base, remainder, KM_USER0);
107                         break;
108                 }
109                 zero_user_page(*pages, base, pglen, KM_USER0);
110                 pages++;
111                 remainder -= pglen;
112                 pglen = PAGE_CACHE_SIZE;
113                 base = 0;
114         }
115 }
116
117 static int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
118                 struct page *page)
119 {
120         LIST_HEAD(one_request);
121         struct nfs_page *new;
122         unsigned int len;
123
124         len = nfs_page_length(page);
125         if (len == 0)
126                 return nfs_return_empty_page(page);
127         new = nfs_create_request(ctx, inode, page, 0, len);
128         if (IS_ERR(new)) {
129                 unlock_page(page);
130                 return PTR_ERR(new);
131         }
132         if (len < PAGE_CACHE_SIZE)
133                 zero_user_page(page, len, PAGE_CACHE_SIZE - len, KM_USER0);
134
135         nfs_list_add_request(new, &one_request);
136         if (NFS_SERVER(inode)->rsize < PAGE_CACHE_SIZE)
137                 nfs_pagein_multi(inode, &one_request, 1, len, 0);
138         else
139                 nfs_pagein_one(inode, &one_request, 1, len, 0);
140         return 0;
141 }
142
143 static void nfs_readpage_release(struct nfs_page *req)
144 {
145         unlock_page(req->wb_page);
146
147         dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
148                         req->wb_context->path.dentry->d_inode->i_sb->s_id,
149                         (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
150                         req->wb_bytes,
151                         (long long)req_offset(req));
152         nfs_clear_request(req);
153         nfs_release_request(req);
154 }
155
156 /*
157  * Set up the NFS read request struct
158  */
159 static void nfs_read_rpcsetup(struct nfs_page *req, struct nfs_read_data *data,
160                 const struct rpc_call_ops *call_ops,
161                 unsigned int count, unsigned int offset)
162 {
163         struct inode            *inode;
164         int flags;
165
166         data->req         = req;
167         data->inode       = inode = req->wb_context->path.dentry->d_inode;
168         data->cred        = req->wb_context->cred;
169
170         data->args.fh     = NFS_FH(inode);
171         data->args.offset = req_offset(req) + offset;
172         data->args.pgbase = req->wb_pgbase + offset;
173         data->args.pages  = data->pagevec;
174         data->args.count  = count;
175         data->args.context = req->wb_context;
176
177         data->res.fattr   = &data->fattr;
178         data->res.count   = count;
179         data->res.eof     = 0;
180         nfs_fattr_init(&data->fattr);
181
182         /* Set up the initial task struct. */
183         flags = RPC_TASK_ASYNC | (IS_SWAPFILE(inode)? NFS_RPC_SWAPFLAGS : 0);
184         rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
185         NFS_PROTO(inode)->read_setup(data);
186
187         data->task.tk_cookie = (unsigned long)inode;
188
189         dprintk("NFS: %5u initiated read call (req %s/%Ld, %u bytes @ offset %Lu)\n",
190                         data->task.tk_pid,
191                         inode->i_sb->s_id,
192                         (long long)NFS_FILEID(inode),
193                         count,
194                         (unsigned long long)data->args.offset);
195 }
196
197 static void
198 nfs_async_read_error(struct list_head *head)
199 {
200         struct nfs_page *req;
201
202         while (!list_empty(head)) {
203                 req = nfs_list_entry(head->next);
204                 nfs_list_remove_request(req);
205                 SetPageError(req->wb_page);
206                 nfs_readpage_release(req);
207         }
208 }
209
210 /*
211  * Start an async read operation
212  */
213 static void nfs_execute_read(struct nfs_read_data *data)
214 {
215         rpc_execute(&data->task);
216 }
217
218 /*
219  * Generate multiple requests to fill a single page.
220  *
221  * We optimize to reduce the number of read operations on the wire.  If we
222  * detect that we're reading a page, or an area of a page, that is past the
223  * end of file, we do not generate NFS read operations but just clear the
224  * parts of the page that would have come back zero from the server anyway.
225  *
226  * We rely on the cached value of i_size to make this determination; another
227  * client can fill pages on the server past our cached end-of-file, but we
228  * won't see the new data until our attribute cache is updated.  This is more
229  * or less conventional NFS client behavior.
230  */
231 static int nfs_pagein_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags)
232 {
233         struct nfs_page *req = nfs_list_entry(head->next);
234         struct page *page = req->wb_page;
235         struct nfs_read_data *data;
236         size_t rsize = NFS_SERVER(inode)->rsize, nbytes;
237         unsigned int offset;
238         int requests = 0;
239         LIST_HEAD(list);
240
241         nfs_list_remove_request(req);
242
243         nbytes = count;
244         do {
245                 size_t len = min(nbytes,rsize);
246
247                 data = nfs_readdata_alloc(1);
248                 if (!data)
249                         goto out_bad;
250                 INIT_LIST_HEAD(&data->pages);
251                 list_add(&data->pages, &list);
252                 requests++;
253                 nbytes -= len;
254         } while(nbytes != 0);
255         atomic_set(&req->wb_complete, requests);
256
257         ClearPageError(page);
258         offset = 0;
259         nbytes = count;
260         do {
261                 data = list_entry(list.next, struct nfs_read_data, pages);
262                 list_del_init(&data->pages);
263
264                 data->pagevec[0] = page;
265
266                 if (nbytes < rsize)
267                         rsize = nbytes;
268                 nfs_read_rpcsetup(req, data, &nfs_read_partial_ops,
269                                   rsize, offset);
270                 offset += rsize;
271                 nbytes -= rsize;
272                 nfs_execute_read(data);
273         } while (nbytes != 0);
274
275         return 0;
276
277 out_bad:
278         while (!list_empty(&list)) {
279                 data = list_entry(list.next, struct nfs_read_data, pages);
280                 list_del(&data->pages);
281                 nfs_readdata_free(data);
282         }
283         SetPageError(page);
284         nfs_readpage_release(req);
285         return -ENOMEM;
286 }
287
288 static int nfs_pagein_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags)
289 {
290         struct nfs_page         *req;
291         struct page             **pages;
292         struct nfs_read_data    *data;
293
294         data = nfs_readdata_alloc(npages);
295         if (!data)
296                 goto out_bad;
297
298         INIT_LIST_HEAD(&data->pages);
299         pages = data->pagevec;
300         while (!list_empty(head)) {
301                 req = nfs_list_entry(head->next);
302                 nfs_list_remove_request(req);
303                 nfs_list_add_request(req, &data->pages);
304                 ClearPageError(req->wb_page);
305                 *pages++ = req->wb_page;
306         }
307         req = nfs_list_entry(data->pages.next);
308
309         nfs_read_rpcsetup(req, data, &nfs_read_full_ops, count, 0);
310
311         nfs_execute_read(data);
312         return 0;
313 out_bad:
314         nfs_async_read_error(head);
315         return -ENOMEM;
316 }
317
318 /*
319  * This is the callback from RPC telling us whether a reply was
320  * received or some error occurred (timeout or socket shutdown).
321  */
322 int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
323 {
324         int status;
325
326         dprintk("NFS: %s: %5u, (status %d)\n", __FUNCTION__, task->tk_pid,
327                         task->tk_status);
328
329         status = NFS_PROTO(data->inode)->read_done(task, data);
330         if (status != 0)
331                 return status;
332
333         nfs_add_stats(data->inode, NFSIOS_SERVERREADBYTES, data->res.count);
334
335         if (task->tk_status == -ESTALE) {
336                 set_bit(NFS_INO_STALE, &NFS_FLAGS(data->inode));
337                 nfs_mark_for_revalidate(data->inode);
338         }
339         return 0;
340 }
341
342 static int nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
343 {
344         struct nfs_readargs *argp = &data->args;
345         struct nfs_readres *resp = &data->res;
346
347         if (resp->eof || resp->count == argp->count)
348                 return 0;
349
350         /* This is a short read! */
351         nfs_inc_stats(data->inode, NFSIOS_SHORTREAD);
352         /* Has the server at least made some progress? */
353         if (resp->count == 0)
354                 return 0;
355
356         /* Yes, so retry the read at the end of the data */
357         argp->offset += resp->count;
358         argp->pgbase += resp->count;
359         argp->count -= resp->count;
360         rpc_restart_call(task);
361         return -EAGAIN;
362 }
363
364 /*
365  * Handle a read reply that fills part of a page.
366  */
367 static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata)
368 {
369         struct nfs_read_data *data = calldata;
370         struct nfs_page *req = data->req;
371         struct page *page = req->wb_page;
372  
373         if (nfs_readpage_result(task, data) != 0)
374                 return;
375
376         if (likely(task->tk_status >= 0)) {
377                 nfs_readpage_truncate_uninitialised_page(data);
378                 if (nfs_readpage_retry(task, data) != 0)
379                         return;
380         }
381         if (unlikely(task->tk_status < 0))
382                 SetPageError(page);
383         if (atomic_dec_and_test(&req->wb_complete)) {
384                 if (!PageError(page))
385                         SetPageUptodate(page);
386                 nfs_readpage_release(req);
387         }
388 }
389
390 static const struct rpc_call_ops nfs_read_partial_ops = {
391         .rpc_call_done = nfs_readpage_result_partial,
392         .rpc_release = nfs_readdata_release,
393 };
394
395 static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data)
396 {
397         unsigned int count = data->res.count;
398         unsigned int base = data->args.pgbase;
399         struct page **pages;
400
401         if (data->res.eof)
402                 count = data->args.count;
403         if (unlikely(count == 0))
404                 return;
405         pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
406         base &= ~PAGE_CACHE_MASK;
407         count += base;
408         for (;count >= PAGE_CACHE_SIZE; count -= PAGE_CACHE_SIZE, pages++)
409                 SetPageUptodate(*pages);
410         if (count == 0)
411                 return;
412         /* Was this a short read? */
413         if (data->res.eof || data->res.count == data->args.count)
414                 SetPageUptodate(*pages);
415 }
416
417 /*
418  * This is the callback from RPC telling us whether a reply was
419  * received or some error occurred (timeout or socket shutdown).
420  */
421 static void nfs_readpage_result_full(struct rpc_task *task, void *calldata)
422 {
423         struct nfs_read_data *data = calldata;
424
425         if (nfs_readpage_result(task, data) != 0)
426                 return;
427         /*
428          * Note: nfs_readpage_retry may change the values of
429          * data->args. In the multi-page case, we therefore need
430          * to ensure that we call nfs_readpage_set_pages_uptodate()
431          * first.
432          */
433         if (likely(task->tk_status >= 0)) {
434                 nfs_readpage_truncate_uninitialised_page(data);
435                 nfs_readpage_set_pages_uptodate(data);
436                 if (nfs_readpage_retry(task, data) != 0)
437                         return;
438         }
439         while (!list_empty(&data->pages)) {
440                 struct nfs_page *req = nfs_list_entry(data->pages.next);
441
442                 nfs_list_remove_request(req);
443                 nfs_readpage_release(req);
444         }
445 }
446
447 static const struct rpc_call_ops nfs_read_full_ops = {
448         .rpc_call_done = nfs_readpage_result_full,
449         .rpc_release = nfs_readdata_release,
450 };
451
452 /*
453  * Read a page over NFS.
454  * We read the page synchronously in the following case:
455  *  -   The error flag is set for this page. This happens only when a
456  *      previous async read operation failed.
457  */
458 int nfs_readpage(struct file *file, struct page *page)
459 {
460         struct nfs_open_context *ctx;
461         struct inode *inode = page->mapping->host;
462         int             error;
463
464         dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
465                 page, PAGE_CACHE_SIZE, page->index);
466         nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
467         nfs_add_stats(inode, NFSIOS_READPAGES, 1);
468
469         /*
470          * Try to flush any pending writes to the file..
471          *
472          * NOTE! Because we own the page lock, there cannot
473          * be any new pending writes generated at this point
474          * for this page (other pages can be written to).
475          */
476         error = nfs_wb_page(inode, page);
477         if (error)
478                 goto out_unlock;
479         if (PageUptodate(page))
480                 goto out_unlock;
481
482         error = -ESTALE;
483         if (NFS_STALE(inode))
484                 goto out_unlock;
485
486         if (file == NULL) {
487                 error = -EBADF;
488                 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
489                 if (ctx == NULL)
490                         goto out_unlock;
491         } else
492                 ctx = get_nfs_open_context(nfs_file_open_context(file));
493
494         error = nfs_readpage_async(ctx, inode, page);
495
496         put_nfs_open_context(ctx);
497         return error;
498 out_unlock:
499         unlock_page(page);
500         return error;
501 }
502
503 struct nfs_readdesc {
504         struct nfs_pageio_descriptor *pgio;
505         struct nfs_open_context *ctx;
506 };
507
508 static int
509 readpage_async_filler(void *data, struct page *page)
510 {
511         struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
512         struct inode *inode = page->mapping->host;
513         struct nfs_page *new;
514         unsigned int len;
515         int error;
516
517         error = nfs_wb_page(inode, page);
518         if (error)
519                 goto out_unlock;
520         if (PageUptodate(page))
521                 goto out_unlock;
522
523         len = nfs_page_length(page);
524         if (len == 0)
525                 return nfs_return_empty_page(page);
526
527         new = nfs_create_request(desc->ctx, inode, page, 0, len);
528         if (IS_ERR(new))
529                 goto out_error;
530
531         if (len < PAGE_CACHE_SIZE)
532                 zero_user_page(page, len, PAGE_CACHE_SIZE - len, KM_USER0);
533         nfs_pageio_add_request(desc->pgio, new);
534         return 0;
535 out_error:
536         error = PTR_ERR(new);
537         SetPageError(page);
538 out_unlock:
539         unlock_page(page);
540         return error;
541 }
542
543 int nfs_readpages(struct file *filp, struct address_space *mapping,
544                 struct list_head *pages, unsigned nr_pages)
545 {
546         struct nfs_pageio_descriptor pgio;
547         struct nfs_readdesc desc = {
548                 .pgio = &pgio,
549         };
550         struct inode *inode = mapping->host;
551         struct nfs_server *server = NFS_SERVER(inode);
552         size_t rsize = server->rsize;
553         unsigned long npages;
554         int ret = -ESTALE;
555
556         dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
557                         inode->i_sb->s_id,
558                         (long long)NFS_FILEID(inode),
559                         nr_pages);
560         nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
561
562         if (NFS_STALE(inode))
563                 goto out;
564
565         if (filp == NULL) {
566                 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
567                 if (desc.ctx == NULL)
568                         return -EBADF;
569         } else
570                 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
571         if (rsize < PAGE_CACHE_SIZE)
572                 nfs_pageio_init(&pgio, inode, nfs_pagein_multi, rsize, 0);
573         else
574                 nfs_pageio_init(&pgio, inode, nfs_pagein_one, rsize, 0);
575
576         ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
577
578         nfs_pageio_complete(&pgio);
579         npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
580         nfs_add_stats(inode, NFSIOS_READPAGES, npages);
581         put_nfs_open_context(desc.ctx);
582 out:
583         return ret;
584 }
585
586 int __init nfs_init_readpagecache(void)
587 {
588         nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
589                                              sizeof(struct nfs_read_data),
590                                              0, SLAB_HWCACHE_ALIGN,
591                                              NULL);
592         if (nfs_rdata_cachep == NULL)
593                 return -ENOMEM;
594
595         nfs_rdata_mempool = mempool_create_slab_pool(MIN_POOL_READ,
596                                                      nfs_rdata_cachep);
597         if (nfs_rdata_mempool == NULL)
598                 return -ENOMEM;
599
600         return 0;
601 }
602
603 void nfs_destroy_readpagecache(void)
604 {
605         mempool_destroy(nfs_rdata_mempool);
606         kmem_cache_destroy(nfs_rdata_cachep);
607 }