NFS: create common routine for handling direct I/O completion
[linux-2.6/sactl.git] / fs / nfs / direct.c
blob4df21ce28e176b165fff72f3339256a17b2e0252
1 /*
2 * linux/fs/nfs/direct.c
4 * Copyright (C) 2003 by Chuck Lever <cel@netapp.com>
6 * High-performance uncached I/O for the Linux NFS client
8 * There are important applications whose performance or correctness
9 * depends on uncached access to file data. Database clusters
10 * (multiple copies of the same instance running on separate hosts)
11 * implement their own cache coherency protocol that subsumes file
12 * system cache protocols. Applications that process datasets
13 * considerably larger than the client's memory do not always benefit
14 * from a local cache. A streaming video server, for instance, has no
15 * need to cache the contents of a file.
17 * When an application requests uncached I/O, all read and write requests
18 * are made directly to the server; data stored or fetched via these
19 * requests is not cached in the Linux page cache. The client does not
20 * correct unaligned requests from applications. All requested bytes are
21 * held on permanent storage before a direct write system call returns to
22 * an application.
24 * Solaris implements an uncached I/O facility called directio() that
25 * is used for backups and sequential I/O to very large files. Solaris
26 * also supports uncaching whole NFS partitions with "-o forcedirectio,"
27 * an undocumented mount option.
29 * Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with
30 * help from Andrew Morton.
32 * 18 Dec 2001 Initial implementation for 2.4 --cel
33 * 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy
34 * 08 Jun 2003 Port to 2.5 APIs --cel
35 * 31 Mar 2004 Handle direct I/O without VFS support --cel
36 * 15 Sep 2004 Parallel async reads --cel
40 #include <linux/config.h>
41 #include <linux/errno.h>
42 #include <linux/sched.h>
43 #include <linux/kernel.h>
44 #include <linux/smp_lock.h>
45 #include <linux/file.h>
46 #include <linux/pagemap.h>
47 #include <linux/kref.h>
49 #include <linux/nfs_fs.h>
50 #include <linux/nfs_page.h>
51 #include <linux/sunrpc/clnt.h>
53 #include <asm/system.h>
54 #include <asm/uaccess.h>
55 #include <asm/atomic.h>
57 #include "iostat.h"
59 #define NFSDBG_FACILITY NFSDBG_VFS
60 #define MAX_DIRECTIO_SIZE (4096UL << PAGE_SHIFT)
62 static void nfs_free_user_pages(struct page **pages, int npages, int do_dirty);
63 static kmem_cache_t *nfs_direct_cachep;
66 * This represents a set of asynchronous requests that we're waiting on
68 struct nfs_direct_req {
69 struct kref kref; /* release manager */
70 struct list_head list; /* nfs_read_data structs */
71 struct file * filp; /* file descriptor */
72 struct kiocb * iocb; /* controlling i/o request */
73 wait_queue_head_t wait; /* wait for i/o completion */
74 struct inode * inode; /* target file of I/O */
75 struct page ** pages; /* pages in our buffer */
76 unsigned int npages; /* count of pages */
77 atomic_t complete, /* i/os we're waiting for */
78 count, /* bytes actually processed */
79 error; /* any reported error */
83 /**
84 * nfs_direct_IO - NFS address space operation for direct I/O
85 * @rw: direction (read or write)
86 * @iocb: target I/O control block
87 * @iov: array of vectors that define I/O buffer
88 * @pos: offset in file to begin the operation
89 * @nr_segs: size of iovec array
91 * The presence of this routine in the address space ops vector means
92 * the NFS client supports direct I/O. However, we shunt off direct
93 * read and write requests before the VFS gets them, so this method
94 * should never be called.
96 ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_t pos, unsigned long nr_segs)
98 struct dentry *dentry = iocb->ki_filp->f_dentry;
100 dprintk("NFS: nfs_direct_IO (%s) off/no(%Ld/%lu) EINVAL\n",
101 dentry->d_name.name, (long long) pos, nr_segs);
103 return -EINVAL;
106 static inline int nfs_get_user_pages(int rw, unsigned long user_addr, size_t size, struct page ***pages)
108 int result = -ENOMEM;
109 unsigned long page_count;
110 size_t array_size;
112 /* set an arbitrary limit to prevent type overflow */
113 /* XXX: this can probably be as large as INT_MAX */
114 if (size > MAX_DIRECTIO_SIZE) {
115 *pages = NULL;
116 return -EFBIG;
119 page_count = (user_addr + size + PAGE_SIZE - 1) >> PAGE_SHIFT;
120 page_count -= user_addr >> PAGE_SHIFT;
122 array_size = (page_count * sizeof(struct page *));
123 *pages = kmalloc(array_size, GFP_KERNEL);
124 if (*pages) {
125 down_read(&current->mm->mmap_sem);
126 result = get_user_pages(current, current->mm, user_addr,
127 page_count, (rw == READ), 0,
128 *pages, NULL);
129 up_read(&current->mm->mmap_sem);
131 * If we got fewer pages than expected from get_user_pages(),
132 * the user buffer runs off the end of a mapping; return EFAULT.
134 if (result >= 0 && result < page_count) {
135 nfs_free_user_pages(*pages, result, 0);
136 *pages = NULL;
137 result = -EFAULT;
140 return result;
143 static void nfs_free_user_pages(struct page **pages, int npages, int do_dirty)
145 int i;
146 for (i = 0; i < npages; i++) {
147 struct page *page = pages[i];
148 if (do_dirty && !PageCompound(page))
149 set_page_dirty_lock(page);
150 page_cache_release(page);
152 kfree(pages);
155 static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
157 struct nfs_direct_req *dreq;
159 dreq = kmem_cache_alloc(nfs_direct_cachep, SLAB_KERNEL);
160 if (!dreq)
161 return NULL;
163 kref_init(&dreq->kref);
164 init_waitqueue_head(&dreq->wait);
165 INIT_LIST_HEAD(&dreq->list);
166 dreq->iocb = NULL;
167 atomic_set(&dreq->count, 0);
168 atomic_set(&dreq->error, 0);
170 return dreq;
173 static void nfs_direct_req_release(struct kref *kref)
175 struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
176 kmem_cache_free(nfs_direct_cachep, dreq);
180 * Collects and returns the final error value/byte-count.
182 static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
184 int result = -EIOCBQUEUED;
186 /* Async requests don't wait here */
187 if (dreq->iocb)
188 goto out;
190 result = wait_event_interruptible(dreq->wait,
191 (atomic_read(&dreq->complete) == 0));
193 if (!result)
194 result = atomic_read(&dreq->error);
195 if (!result)
196 result = atomic_read(&dreq->count);
198 out:
199 kref_put(&dreq->kref, nfs_direct_req_release);
200 return (ssize_t) result;
204 * We must hold a reference to all the pages in this direct read request
205 * until the RPCs complete. This could be long *after* we are woken up in
206 * nfs_direct_wait (for instance, if someone hits ^C on a slow server).
208 * In addition, synchronous I/O uses a stack-allocated iocb. Thus we
209 * can't trust the iocb is still valid here if this is a synchronous
210 * request. If the waiter is woken prematurely, the iocb is long gone.
212 static void nfs_direct_complete(struct nfs_direct_req *dreq)
214 nfs_free_user_pages(dreq->pages, dreq->npages, 1);
216 if (dreq->iocb) {
217 long res = atomic_read(&dreq->error);
218 if (!res)
219 res = atomic_read(&dreq->count);
220 aio_complete(dreq->iocb, res, 0);
221 } else
222 wake_up(&dreq->wait);
224 kref_put(&dreq->kref, nfs_direct_req_release);
228 * Note we also set the number of requests we have in the dreq when we are
229 * done. This prevents races with I/O completion so we will always wait
230 * until all requests have been dispatched and completed.
232 static struct nfs_direct_req *nfs_direct_read_alloc(size_t nbytes, size_t rsize)
234 struct list_head *list;
235 struct nfs_direct_req *dreq;
236 unsigned int reads = 0;
237 unsigned int rpages = (rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
239 dreq = nfs_direct_req_alloc();
240 if (!dreq)
241 return NULL;
243 list = &dreq->list;
244 for(;;) {
245 struct nfs_read_data *data = nfs_readdata_alloc(rpages);
247 if (unlikely(!data)) {
248 while (!list_empty(list)) {
249 data = list_entry(list->next,
250 struct nfs_read_data, pages);
251 list_del(&data->pages);
252 nfs_readdata_free(data);
254 kref_put(&dreq->kref, nfs_direct_req_release);
255 return NULL;
258 INIT_LIST_HEAD(&data->pages);
259 list_add(&data->pages, list);
261 data->req = (struct nfs_page *) dreq;
262 reads++;
263 if (nbytes <= rsize)
264 break;
265 nbytes -= rsize;
267 kref_get(&dreq->kref);
268 atomic_set(&dreq->complete, reads);
269 return dreq;
272 static void nfs_direct_read_result(struct rpc_task *task, void *calldata)
274 struct nfs_read_data *data = calldata;
275 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
277 if (nfs_readpage_result(task, data) != 0)
278 return;
279 if (likely(task->tk_status >= 0))
280 atomic_add(data->res.count, &dreq->count);
281 else
282 atomic_set(&dreq->error, task->tk_status);
284 if (unlikely(atomic_dec_and_test(&dreq->complete)))
285 nfs_direct_complete(dreq);
288 static const struct rpc_call_ops nfs_read_direct_ops = {
289 .rpc_call_done = nfs_direct_read_result,
290 .rpc_release = nfs_readdata_release,
294 * For each nfs_read_data struct that was allocated on the list, dispatch
295 * an NFS READ operation
297 static void nfs_direct_read_schedule(struct nfs_direct_req *dreq, unsigned long user_addr, size_t count, loff_t file_offset)
299 struct file *file = dreq->filp;
300 struct inode *inode = file->f_mapping->host;
301 struct nfs_open_context *ctx = (struct nfs_open_context *)
302 file->private_data;
303 struct list_head *list = &dreq->list;
304 struct page **pages = dreq->pages;
305 size_t rsize = NFS_SERVER(inode)->rsize;
306 unsigned int curpage, pgbase;
308 curpage = 0;
309 pgbase = user_addr & ~PAGE_MASK;
310 do {
311 struct nfs_read_data *data;
312 size_t bytes;
314 bytes = rsize;
315 if (count < rsize)
316 bytes = count;
318 data = list_entry(list->next, struct nfs_read_data, pages);
319 list_del_init(&data->pages);
321 data->inode = inode;
322 data->cred = ctx->cred;
323 data->args.fh = NFS_FH(inode);
324 data->args.context = ctx;
325 data->args.offset = file_offset;
326 data->args.pgbase = pgbase;
327 data->args.pages = &pages[curpage];
328 data->args.count = bytes;
329 data->res.fattr = &data->fattr;
330 data->res.eof = 0;
331 data->res.count = bytes;
333 rpc_init_task(&data->task, NFS_CLIENT(inode), RPC_TASK_ASYNC,
334 &nfs_read_direct_ops, data);
335 NFS_PROTO(inode)->read_setup(data);
337 data->task.tk_cookie = (unsigned long) inode;
339 lock_kernel();
340 rpc_execute(&data->task);
341 unlock_kernel();
343 dfprintk(VFS, "NFS: %4d initiated direct read call (req %s/%Ld, %u bytes @ offset %Lu)\n",
344 data->task.tk_pid,
345 inode->i_sb->s_id,
346 (long long)NFS_FILEID(inode),
347 bytes,
348 (unsigned long long)data->args.offset);
350 file_offset += bytes;
351 pgbase += bytes;
352 curpage += pgbase >> PAGE_SHIFT;
353 pgbase &= ~PAGE_MASK;
355 count -= bytes;
356 } while (count != 0);
359 static ssize_t nfs_direct_read(struct kiocb *iocb, unsigned long user_addr, size_t count, loff_t file_offset, struct page **pages, unsigned int nr_pages)
361 ssize_t result;
362 sigset_t oldset;
363 struct inode *inode = iocb->ki_filp->f_mapping->host;
364 struct rpc_clnt *clnt = NFS_CLIENT(inode);
365 struct nfs_direct_req *dreq;
367 dreq = nfs_direct_read_alloc(count, NFS_SERVER(inode)->rsize);
368 if (!dreq)
369 return -ENOMEM;
371 dreq->pages = pages;
372 dreq->npages = nr_pages;
373 dreq->inode = inode;
374 dreq->filp = iocb->ki_filp;
375 if (!is_sync_kiocb(iocb))
376 dreq->iocb = iocb;
378 nfs_add_stats(inode, NFSIOS_DIRECTREADBYTES, count);
379 rpc_clnt_sigmask(clnt, &oldset);
380 nfs_direct_read_schedule(dreq, user_addr, count, file_offset);
381 result = nfs_direct_wait(dreq);
382 rpc_clnt_sigunmask(clnt, &oldset);
384 return result;
387 static ssize_t nfs_direct_write_seg(struct inode *inode, struct nfs_open_context *ctx, unsigned long user_addr, size_t count, loff_t file_offset, struct page **pages, int nr_pages)
389 const unsigned int wsize = NFS_SERVER(inode)->wsize;
390 size_t request;
391 int curpage, need_commit;
392 ssize_t result, tot_bytes;
393 struct nfs_writeverf first_verf;
394 struct nfs_write_data *wdata;
396 wdata = nfs_writedata_alloc(NFS_SERVER(inode)->wpages);
397 if (!wdata)
398 return -ENOMEM;
400 wdata->inode = inode;
401 wdata->cred = ctx->cred;
402 wdata->args.fh = NFS_FH(inode);
403 wdata->args.context = ctx;
404 wdata->args.stable = NFS_UNSTABLE;
405 if (IS_SYNC(inode) || NFS_PROTO(inode)->version == 2 || count <= wsize)
406 wdata->args.stable = NFS_FILE_SYNC;
407 wdata->res.fattr = &wdata->fattr;
408 wdata->res.verf = &wdata->verf;
410 nfs_begin_data_update(inode);
411 retry:
412 need_commit = 0;
413 tot_bytes = 0;
414 curpage = 0;
415 request = count;
416 wdata->args.pgbase = user_addr & ~PAGE_MASK;
417 wdata->args.offset = file_offset;
418 do {
419 wdata->args.count = request;
420 if (wdata->args.count > wsize)
421 wdata->args.count = wsize;
422 wdata->args.pages = &pages[curpage];
424 dprintk("NFS: direct write: c=%u o=%Ld ua=%lu, pb=%u, cp=%u\n",
425 wdata->args.count, (long long) wdata->args.offset,
426 user_addr + tot_bytes, wdata->args.pgbase, curpage);
428 lock_kernel();
429 result = NFS_PROTO(inode)->write(wdata);
430 unlock_kernel();
432 if (result <= 0) {
433 if (tot_bytes > 0)
434 break;
435 goto out;
438 if (tot_bytes == 0)
439 memcpy(&first_verf.verifier, &wdata->verf.verifier,
440 sizeof(first_verf.verifier));
441 if (wdata->verf.committed != NFS_FILE_SYNC) {
442 need_commit = 1;
443 if (memcmp(&first_verf.verifier, &wdata->verf.verifier,
444 sizeof(first_verf.verifier)))
445 goto sync_retry;
448 tot_bytes += result;
450 /* in case of a short write: stop now, let the app recover */
451 if (result < wdata->args.count)
452 break;
454 wdata->args.offset += result;
455 wdata->args.pgbase += result;
456 curpage += wdata->args.pgbase >> PAGE_SHIFT;
457 wdata->args.pgbase &= ~PAGE_MASK;
458 request -= result;
459 } while (request != 0);
462 * Commit data written so far, even in the event of an error
464 if (need_commit) {
465 wdata->args.count = tot_bytes;
466 wdata->args.offset = file_offset;
468 lock_kernel();
469 result = NFS_PROTO(inode)->commit(wdata);
470 unlock_kernel();
472 if (result < 0 || memcmp(&first_verf.verifier,
473 &wdata->verf.verifier,
474 sizeof(first_verf.verifier)) != 0)
475 goto sync_retry;
477 result = tot_bytes;
479 out:
480 nfs_end_data_update(inode);
481 nfs_writedata_free(wdata);
482 return result;
484 sync_retry:
485 wdata->args.stable = NFS_FILE_SYNC;
486 goto retry;
490 * Upon return, generic_file_direct_IO invalidates any cached pages
491 * that non-direct readers might access, so they will pick up these
492 * writes immediately.
494 static ssize_t nfs_direct_write(struct inode *inode, struct nfs_open_context *ctx, const struct iovec *iov, loff_t file_offset, unsigned long nr_segs)
496 ssize_t tot_bytes = 0;
497 unsigned long seg = 0;
499 while ((seg < nr_segs) && (tot_bytes >= 0)) {
500 ssize_t result;
501 int page_count;
502 struct page **pages;
503 const struct iovec *vec = &iov[seg++];
504 unsigned long user_addr = (unsigned long) vec->iov_base;
505 size_t size = vec->iov_len;
507 page_count = nfs_get_user_pages(WRITE, user_addr, size, &pages);
508 if (page_count < 0) {
509 nfs_free_user_pages(pages, 0, 0);
510 if (tot_bytes > 0)
511 break;
512 return page_count;
515 nfs_add_stats(inode, NFSIOS_DIRECTWRITTENBYTES, size);
516 result = nfs_direct_write_seg(inode, ctx, user_addr, size,
517 file_offset, pages, page_count);
518 nfs_free_user_pages(pages, page_count, 0);
520 if (result <= 0) {
521 if (tot_bytes > 0)
522 break;
523 return result;
525 nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, result);
526 tot_bytes += result;
527 file_offset += result;
528 if (result < size)
529 break;
531 return tot_bytes;
535 * nfs_file_direct_read - file direct read operation for NFS files
536 * @iocb: target I/O control block
537 * @buf: user's buffer into which to read data
538 * count: number of bytes to read
539 * pos: byte offset in file where reading starts
541 * We use this function for direct reads instead of calling
542 * generic_file_aio_read() in order to avoid gfar's check to see if
543 * the request starts before the end of the file. For that check
544 * to work, we must generate a GETATTR before each direct read, and
545 * even then there is a window between the GETATTR and the subsequent
546 * READ where the file size could change. So our preference is simply
547 * to do all reads the application wants, and the server will take
548 * care of managing the end of file boundary.
550 * This function also eliminates unnecessarily updating the file's
551 * atime locally, as the NFS server sets the file's atime, and this
552 * client must read the updated atime from the server back into its
553 * cache.
555 ssize_t nfs_file_direct_read(struct kiocb *iocb, char __user *buf, size_t count, loff_t pos)
557 ssize_t retval = -EINVAL;
558 int page_count;
559 struct page **pages;
560 struct file *file = iocb->ki_filp;
561 struct address_space *mapping = file->f_mapping;
563 dprintk("nfs: direct read(%s/%s, %lu@%Ld)\n",
564 file->f_dentry->d_parent->d_name.name,
565 file->f_dentry->d_name.name,
566 (unsigned long) count, (long long) pos);
568 if (count < 0)
569 goto out;
570 retval = -EFAULT;
571 if (!access_ok(VERIFY_WRITE, buf, count))
572 goto out;
573 retval = 0;
574 if (!count)
575 goto out;
577 retval = nfs_sync_mapping(mapping);
578 if (retval)
579 goto out;
581 page_count = nfs_get_user_pages(READ, (unsigned long) buf,
582 count, &pages);
583 if (page_count < 0) {
584 nfs_free_user_pages(pages, 0, 0);
585 retval = page_count;
586 goto out;
589 retval = nfs_direct_read(iocb, (unsigned long) buf, count, pos,
590 pages, page_count);
591 if (retval > 0)
592 iocb->ki_pos = pos + retval;
594 out:
595 return retval;
599 * nfs_file_direct_write - file direct write operation for NFS files
600 * @iocb: target I/O control block
601 * @buf: user's buffer from which to write data
602 * count: number of bytes to write
603 * pos: byte offset in file where writing starts
605 * We use this function for direct writes instead of calling
606 * generic_file_aio_write() in order to avoid taking the inode
607 * semaphore and updating the i_size. The NFS server will set
608 * the new i_size and this client must read the updated size
609 * back into its cache. We let the server do generic write
610 * parameter checking and report problems.
612 * We also avoid an unnecessary invocation of generic_osync_inode(),
613 * as it is fairly meaningless to sync the metadata of an NFS file.
615 * We eliminate local atime updates, see direct read above.
617 * We avoid unnecessary page cache invalidations for normal cached
618 * readers of this file.
620 * Note that O_APPEND is not supported for NFS direct writes, as there
621 * is no atomic O_APPEND write facility in the NFS protocol.
623 ssize_t nfs_file_direct_write(struct kiocb *iocb, const char __user *buf, size_t count, loff_t pos)
625 ssize_t retval;
626 struct file *file = iocb->ki_filp;
627 struct nfs_open_context *ctx =
628 (struct nfs_open_context *) file->private_data;
629 struct address_space *mapping = file->f_mapping;
630 struct inode *inode = mapping->host;
631 struct iovec iov = {
632 .iov_base = (char __user *)buf,
635 dfprintk(VFS, "nfs: direct write(%s/%s, %lu@%Ld)\n",
636 file->f_dentry->d_parent->d_name.name,
637 file->f_dentry->d_name.name,
638 (unsigned long) count, (long long) pos);
640 retval = -EINVAL;
641 if (!is_sync_kiocb(iocb))
642 goto out;
644 retval = generic_write_checks(file, &pos, &count, 0);
645 if (retval)
646 goto out;
648 retval = -EINVAL;
649 if ((ssize_t) count < 0)
650 goto out;
651 retval = 0;
652 if (!count)
653 goto out;
654 iov.iov_len = count,
656 retval = -EFAULT;
657 if (!access_ok(VERIFY_READ, iov.iov_base, iov.iov_len))
658 goto out;
660 retval = nfs_sync_mapping(mapping);
661 if (retval)
662 goto out;
664 retval = nfs_direct_write(inode, ctx, &iov, pos, 1);
665 if (mapping->nrpages)
666 invalidate_inode_pages2(mapping);
667 if (retval > 0)
668 iocb->ki_pos = pos + retval;
670 out:
671 return retval;
674 int nfs_init_directcache(void)
676 nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
677 sizeof(struct nfs_direct_req),
678 0, SLAB_RECLAIM_ACCOUNT,
679 NULL, NULL);
680 if (nfs_direct_cachep == NULL)
681 return -ENOMEM;
683 return 0;
686 void nfs_destroy_directcache(void)
688 if (kmem_cache_destroy(nfs_direct_cachep))
689 printk(KERN_INFO "nfs_direct_cache: not all structures were freed\n");