NFSv4: Fail I/O if the state recovery fails irrevocably
[linux-2.6-block.git] / fs / nfs / pagelist.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/pagelist.c
3 *
4 * A set of helper functions for managing NFS read and write requests.
5 * The main purpose of these routines is to provide support for the
6 * coalescing of several requests into a single RPC call.
7 *
8 * Copyright 2000, 2001 (c) Trond Myklebust <trond.myklebust@fys.uio.no>
9 *
10 */
11
1da177e4
LT
12#include <linux/slab.h>
13#include <linux/file.h>
e8edc6e0 14#include <linux/sched.h>
1da177e4 15#include <linux/sunrpc/clnt.h>
1313e603 16#include <linux/nfs.h>
1da177e4
LT
17#include <linux/nfs3.h>
18#include <linux/nfs4.h>
19#include <linux/nfs_page.h>
20#include <linux/nfs_fs.h>
21#include <linux/nfs_mount.h>
afeacc8c 22#include <linux/export.h>
1da177e4 23
8d5658c9 24#include "internal.h"
bae724ef 25#include "pnfs.h"
8d5658c9 26
e18b890b 27static struct kmem_cache *nfs_page_cachep;
1da177e4 28
30dd374f
FI
29bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount)
30{
31 p->npages = pagecount;
32 if (pagecount <= ARRAY_SIZE(p->page_array))
33 p->pagevec = p->page_array;
34 else {
35 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_KERNEL);
36 if (!p->pagevec)
37 p->npages = 0;
38 }
39 return p->pagevec != NULL;
40}
41
4db6e0b7
FI
42void nfs_pgheader_init(struct nfs_pageio_descriptor *desc,
43 struct nfs_pgio_header *hdr,
44 void (*release)(struct nfs_pgio_header *hdr))
45{
46 hdr->req = nfs_list_entry(desc->pg_list.next);
47 hdr->inode = desc->pg_inode;
48 hdr->cred = hdr->req->wb_context->cred;
49 hdr->io_start = req_offset(hdr->req);
50 hdr->good_bytes = desc->pg_count;
584aa810 51 hdr->dreq = desc->pg_dreq;
f6166384 52 hdr->layout_private = desc->pg_layout_private;
4db6e0b7 53 hdr->release = release;
061ae2ed 54 hdr->completion_ops = desc->pg_completion_ops;
584aa810
FI
55 if (hdr->completion_ops->init_hdr)
56 hdr->completion_ops->init_hdr(hdr);
4db6e0b7 57}
89d77c8f 58EXPORT_SYMBOL_GPL(nfs_pgheader_init);
4db6e0b7
FI
59
60void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos)
61{
62 spin_lock(&hdr->lock);
63 if (pos < hdr->io_start + hdr->good_bytes) {
64 set_bit(NFS_IOHDR_ERROR, &hdr->flags);
65 clear_bit(NFS_IOHDR_EOF, &hdr->flags);
66 hdr->good_bytes = pos - hdr->io_start;
67 hdr->error = error;
68 }
69 spin_unlock(&hdr->lock);
70}
71
1da177e4
LT
72static inline struct nfs_page *
73nfs_page_alloc(void)
74{
192e501b 75 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_NOIO);
72895b1a 76 if (p)
1da177e4 77 INIT_LIST_HEAD(&p->wb_list);
1da177e4
LT
78 return p;
79}
80
81static inline void
82nfs_page_free(struct nfs_page *p)
83{
84 kmem_cache_free(nfs_page_cachep, p);
85}
86
87/**
88 * nfs_create_request - Create an NFS read/write request.
c02f557d 89 * @ctx: open context to use
1da177e4
LT
90 * @inode: inode to which the request is attached
91 * @page: page to write
92 * @offset: starting offset within the page for the write
93 * @count: number of bytes to read/write
94 *
95 * The page must be locked by the caller. This makes sure we never
a19b89ca 96 * create two different requests for the same page.
1da177e4
LT
97 * User should ensure it is safe to sleep in this function.
98 */
99struct nfs_page *
100nfs_create_request(struct nfs_open_context *ctx, struct inode *inode,
101 struct page *page,
102 unsigned int offset, unsigned int count)
103{
1da177e4 104 struct nfs_page *req;
b3c54de6 105 struct nfs_lock_context *l_ctx;
1da177e4 106
18eb8842
TM
107 /* try to allocate the request struct */
108 req = nfs_page_alloc();
109 if (req == NULL)
110 return ERR_PTR(-ENOMEM);
1da177e4 111
015f0212 112 /* get lock context early so we can deal with alloc failures */
b3c54de6
TM
113 l_ctx = nfs_get_lock_context(ctx);
114 if (IS_ERR(l_ctx)) {
015f0212 115 nfs_page_free(req);
b3c54de6 116 return ERR_CAST(l_ctx);
015f0212 117 }
b3c54de6 118 req->wb_lock_context = l_ctx;
015f0212 119
1da177e4
LT
120 /* Initialize the request struct. Initially, we assume a
121 * long write-back delay. This will be adjusted in
122 * update_nfs_request below if the region is not locked. */
123 req->wb_page = page;
d56b4ddf 124 req->wb_index = page_file_index(page);
1da177e4
LT
125 page_cache_get(page);
126 req->wb_offset = offset;
127 req->wb_pgbase = offset;
128 req->wb_bytes = count;
1da177e4 129 req->wb_context = get_nfs_open_context(ctx);
c03b4024 130 kref_init(&req->wb_kref);
1da177e4
LT
131 return req;
132}
133
134/**
1d1afcbc 135 * nfs_unlock_request - Unlock request and wake up sleepers.
1da177e4
LT
136 * @req:
137 */
1d1afcbc 138void nfs_unlock_request(struct nfs_page *req)
1da177e4
LT
139{
140 if (!NFS_WBACK_BUSY(req)) {
141 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
142 BUG();
143 }
144 smp_mb__before_clear_bit();
145 clear_bit(PG_BUSY, &req->wb_flags);
146 smp_mb__after_clear_bit();
464a98bd 147 wake_up_bit(&req->wb_flags, PG_BUSY);
3aff4ebb
TM
148}
149
150/**
1d1afcbc
TM
151 * nfs_unlock_and_release_request - Unlock request and release the nfs_page
152 * @req:
3aff4ebb 153 */
1d1afcbc 154void nfs_unlock_and_release_request(struct nfs_page *req)
3aff4ebb 155{
1d1afcbc 156 nfs_unlock_request(req);
1da177e4
LT
157 nfs_release_request(req);
158}
159
4d65c520 160/*
1da177e4
LT
161 * nfs_clear_request - Free up all resources allocated to the request
162 * @req:
163 *
bb6fbc45
TM
164 * Release page and open context resources associated with a read/write
165 * request after it has completed.
1da177e4 166 */
4d65c520 167static void nfs_clear_request(struct nfs_page *req)
1da177e4 168{
cd52ed35 169 struct page *page = req->wb_page;
bb6fbc45 170 struct nfs_open_context *ctx = req->wb_context;
f11ac8db 171 struct nfs_lock_context *l_ctx = req->wb_lock_context;
bb6fbc45 172
cd52ed35 173 if (page != NULL) {
cd52ed35 174 page_cache_release(page);
1da177e4
LT
175 req->wb_page = NULL;
176 }
f11ac8db
TM
177 if (l_ctx != NULL) {
178 nfs_put_lock_context(l_ctx);
179 req->wb_lock_context = NULL;
180 }
bb6fbc45
TM
181 if (ctx != NULL) {
182 put_nfs_open_context(ctx);
183 req->wb_context = NULL;
184 }
1da177e4
LT
185}
186
187
188/**
189 * nfs_release_request - Release the count on an NFS read/write request
190 * @req: request to release
191 *
192 * Note: Should never be called with the spinlock held!
193 */
c03b4024 194static void nfs_free_request(struct kref *kref)
1da177e4 195{
c03b4024 196 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
1da177e4 197
bb6fbc45 198 /* Release struct file and open context */
1da177e4 199 nfs_clear_request(req);
1da177e4
LT
200 nfs_page_free(req);
201}
202
c03b4024
TM
203void nfs_release_request(struct nfs_page *req)
204{
205 kref_put(&req->wb_kref, nfs_free_request);
206}
207
9f557cd8
TM
208static int nfs_wait_bit_uninterruptible(void *word)
209{
210 io_schedule();
211 return 0;
212}
213
1da177e4
LT
214/**
215 * nfs_wait_on_request - Wait for a request to complete.
216 * @req: request to wait upon.
217 *
150030b7 218 * Interruptible by fatal signals only.
1da177e4
LT
219 * The user is responsible for holding a count on the request.
220 */
221int
222nfs_wait_on_request(struct nfs_page *req)
223{
9f557cd8
TM
224 return wait_on_bit(&req->wb_flags, PG_BUSY,
225 nfs_wait_bit_uninterruptible,
226 TASK_UNINTERRUPTIBLE);
1da177e4
LT
227}
228
19345cb2 229bool nfs_generic_pg_test(struct nfs_pageio_descriptor *desc, struct nfs_page *prev, struct nfs_page *req)
5b36c7dc
BH
230{
231 /*
232 * FIXME: ideally we should be able to coalesce all requests
233 * that are not block boundary aligned, but currently this
234 * is problematic for the case of bsize < PAGE_CACHE_SIZE,
235 * since nfs_flush_multi and nfs_pagein_multi assume you
236 * can have only one struct nfs_page.
237 */
238 if (desc->pg_bsize < PAGE_SIZE)
239 return 0;
240
241 return desc->pg_count + req->wb_bytes <= desc->pg_bsize;
242}
19345cb2 243EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
5b36c7dc 244
1da177e4 245/**
d8a5ad75
TM
246 * nfs_pageio_init - initialise a page io descriptor
247 * @desc: pointer to descriptor
bcb71bba
TM
248 * @inode: pointer to inode
249 * @doio: pointer to io function
250 * @bsize: io block size
251 * @io_flags: extra parameters for the io function
d8a5ad75 252 */
bcb71bba
TM
253void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
254 struct inode *inode,
1751c363 255 const struct nfs_pageio_ops *pg_ops,
061ae2ed 256 const struct nfs_pgio_completion_ops *compl_ops,
84dde76c 257 size_t bsize,
bcb71bba 258 int io_flags)
d8a5ad75
TM
259{
260 INIT_LIST_HEAD(&desc->pg_list);
bcb71bba 261 desc->pg_bytes_written = 0;
d8a5ad75
TM
262 desc->pg_count = 0;
263 desc->pg_bsize = bsize;
264 desc->pg_base = 0;
b31268ac 265 desc->pg_moreio = 0;
d9156f9f 266 desc->pg_recoalesce = 0;
bcb71bba 267 desc->pg_inode = inode;
1751c363 268 desc->pg_ops = pg_ops;
061ae2ed 269 desc->pg_completion_ops = compl_ops;
bcb71bba
TM
270 desc->pg_ioflags = io_flags;
271 desc->pg_error = 0;
94ad1c80 272 desc->pg_lseg = NULL;
584aa810 273 desc->pg_dreq = NULL;
f6166384 274 desc->pg_layout_private = NULL;
d8a5ad75 275}
89d77c8f 276EXPORT_SYMBOL_GPL(nfs_pageio_init);
d8a5ad75
TM
277
278/**
279 * nfs_can_coalesce_requests - test two requests for compatibility
280 * @prev: pointer to nfs_page
281 * @req: pointer to nfs_page
282 *
283 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
284 * page data area they describe is contiguous, and that their RPC
285 * credentials, NFSv4 open state, and lockowners are the same.
286 *
287 * Return 'true' if this is the case, else return 'false'.
288 */
18ad0a9f
BH
289static bool nfs_can_coalesce_requests(struct nfs_page *prev,
290 struct nfs_page *req,
291 struct nfs_pageio_descriptor *pgio)
d8a5ad75
TM
292{
293 if (req->wb_context->cred != prev->wb_context->cred)
18ad0a9f 294 return false;
2a369153
TM
295 if (req->wb_lock_context->lockowner.l_owner != prev->wb_lock_context->lockowner.l_owner)
296 return false;
297 if (req->wb_lock_context->lockowner.l_pid != prev->wb_lock_context->lockowner.l_pid)
18ad0a9f 298 return false;
d8a5ad75 299 if (req->wb_context->state != prev->wb_context->state)
18ad0a9f 300 return false;
d8a5ad75 301 if (req->wb_pgbase != 0)
18ad0a9f 302 return false;
d8a5ad75 303 if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE)
18ad0a9f 304 return false;
1825a0d0
FI
305 if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
306 return false;
1751c363 307 return pgio->pg_ops->pg_test(pgio, prev, req);
d8a5ad75
TM
308}
309
310/**
bcb71bba 311 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
d8a5ad75
TM
312 * @desc: destination io descriptor
313 * @req: request
314 *
315 * Returns true if the request 'req' was successfully coalesced into the
316 * existing list of pages 'desc'.
317 */
bcb71bba
TM
318static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
319 struct nfs_page *req)
d8a5ad75 320{
d8a5ad75
TM
321 if (desc->pg_count != 0) {
322 struct nfs_page *prev;
323
d8a5ad75 324 prev = nfs_list_entry(desc->pg_list.prev);
94ad1c80 325 if (!nfs_can_coalesce_requests(prev, req, desc))
d8a5ad75 326 return 0;
5b36c7dc 327 } else {
d8007d4d
TM
328 if (desc->pg_ops->pg_init)
329 desc->pg_ops->pg_init(desc, req);
d8a5ad75 330 desc->pg_base = req->wb_pgbase;
5b36c7dc 331 }
d8a5ad75
TM
332 nfs_list_remove_request(req);
333 nfs_list_add_request(req, &desc->pg_list);
5b36c7dc 334 desc->pg_count += req->wb_bytes;
d8a5ad75
TM
335 return 1;
336}
337
bcb71bba
TM
338/*
339 * Helper for nfs_pageio_add_request and nfs_pageio_complete
340 */
341static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
342{
343 if (!list_empty(&desc->pg_list)) {
1751c363 344 int error = desc->pg_ops->pg_doio(desc);
bcb71bba
TM
345 if (error < 0)
346 desc->pg_error = error;
347 else
348 desc->pg_bytes_written += desc->pg_count;
349 }
350 if (list_empty(&desc->pg_list)) {
351 desc->pg_count = 0;
352 desc->pg_base = 0;
353 }
354}
355
356/**
357 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
358 * @desc: destination io descriptor
359 * @req: request
360 *
361 * Returns true if the request 'req' was successfully coalesced into the
362 * existing list of pages 'desc'.
363 */
d9156f9f 364static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
8b09bee3 365 struct nfs_page *req)
bcb71bba
TM
366{
367 while (!nfs_pageio_do_add_request(desc, req)) {
b31268ac 368 desc->pg_moreio = 1;
bcb71bba
TM
369 nfs_pageio_doio(desc);
370 if (desc->pg_error < 0)
371 return 0;
b31268ac 372 desc->pg_moreio = 0;
d9156f9f
TM
373 if (desc->pg_recoalesce)
374 return 0;
bcb71bba
TM
375 }
376 return 1;
377}
378
d9156f9f
TM
379static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
380{
381 LIST_HEAD(head);
382
383 do {
384 list_splice_init(&desc->pg_list, &head);
385 desc->pg_bytes_written -= desc->pg_count;
386 desc->pg_count = 0;
387 desc->pg_base = 0;
388 desc->pg_recoalesce = 0;
389
390 while (!list_empty(&head)) {
391 struct nfs_page *req;
392
393 req = list_first_entry(&head, struct nfs_page, wb_list);
394 nfs_list_remove_request(req);
395 if (__nfs_pageio_add_request(desc, req))
396 continue;
397 if (desc->pg_error < 0)
398 return 0;
399 break;
400 }
401 } while (desc->pg_recoalesce);
402 return 1;
403}
404
405int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
406 struct nfs_page *req)
407{
408 int ret;
409
410 do {
411 ret = __nfs_pageio_add_request(desc, req);
412 if (ret)
413 break;
414 if (desc->pg_error < 0)
415 break;
416 ret = nfs_do_recoalesce(desc);
417 } while (ret);
418 return ret;
419}
89d77c8f 420EXPORT_SYMBOL_GPL(nfs_pageio_add_request);
d9156f9f 421
bcb71bba
TM
422/**
423 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
424 * @desc: pointer to io descriptor
425 */
426void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
427{
d9156f9f
TM
428 for (;;) {
429 nfs_pageio_doio(desc);
430 if (!desc->pg_recoalesce)
431 break;
432 if (!nfs_do_recoalesce(desc))
433 break;
434 }
bcb71bba 435}
89d77c8f 436EXPORT_SYMBOL_GPL(nfs_pageio_complete);
bcb71bba 437
7fe7f848
TM
438/**
439 * nfs_pageio_cond_complete - Conditional I/O completion
440 * @desc: pointer to io descriptor
441 * @index: page index
442 *
443 * It is important to ensure that processes don't try to take locks
444 * on non-contiguous ranges of pages as that might deadlock. This
445 * function should be called before attempting to wait on a locked
446 * nfs_page. It will complete the I/O if the page index 'index'
447 * is not contiguous with the existing list of pages in 'desc'.
448 */
449void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
450{
451 if (!list_empty(&desc->pg_list)) {
452 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
453 if (index != prev->wb_index + 1)
d9156f9f 454 nfs_pageio_complete(desc);
7fe7f848
TM
455 }
456}
457
f7b422b1 458int __init nfs_init_nfspagecache(void)
1da177e4
LT
459{
460 nfs_page_cachep = kmem_cache_create("nfs_page",
461 sizeof(struct nfs_page),
462 0, SLAB_HWCACHE_ALIGN,
20c2df83 463 NULL);
1da177e4
LT
464 if (nfs_page_cachep == NULL)
465 return -ENOMEM;
466
467 return 0;
468}
469
266bee88 470void nfs_destroy_nfspagecache(void)
1da177e4 471{
1a1d92c1 472 kmem_cache_destroy(nfs_page_cachep);
1da177e4
LT
473}
474