Commit 2d631698 authored by Trond Myklebust's avatar Trond Myklebust Committed by Linus Torvalds

[PATCH] NFS: Fix O_DIRECT code

  - Support synchronous directio only. Defer asynchronous directio until
    it can be made safe.
  - If read/write exits due to an error, return number of bytes read/written
    prior to occurrence of the error.
  - Make sure we mark read pages as dirty in case we're doing zero-copy tricks.
    Export set_page_dirty_lock() for use by NFS directio.
  - Ensure we revalidate stale attribute info.
parent cd21f96e
/* /*
* linux/fs/nfs/direct.c * linux/fs/nfs/direct.c
* *
* Copyright (C) 2001 by Chuck Lever <cel@netapp.com> * Copyright (C) 2003 by Chuck Lever <cel@netapp.com>
* *
* High-performance uncached I/O for the Linux NFS client * High-performance uncached I/O for the Linux NFS client
* *
...@@ -26,19 +26,23 @@ ...@@ -26,19 +26,23 @@
* also supports uncaching whole NFS partitions with "-o forcedirectio," * also supports uncaching whole NFS partitions with "-o forcedirectio,"
* an undocumented mount option. * an undocumented mount option.
* *
* Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust. * Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with
* help from Andrew Morton.
* *
* 18 Dec 2001 Initial implementation for 2.4 --cel * 18 Dec 2001 Initial implementation for 2.4 --cel
* 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy * 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy
* 24 Sep 2002 Rewrite to use asynchronous RPCs, port to 2.5 --cel * 08 Jun 2003 Port to 2.5 APIs --cel
* *
*/ */
#include <linux/config.h> #include <linux/config.h>
#include <linux/errno.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/smp_lock.h>
#include <linux/file.h> #include <linux/file.h>
#include <linux/errno.h> #include <linux/pagemap.h>
#include <linux/nfs_fs.h> #include <linux/nfs_fs.h>
#include <linux/nfs_page.h> #include <linux/nfs_page.h>
#include <linux/sunrpc/clnt.h> #include <linux/sunrpc/clnt.h>
...@@ -46,35 +50,41 @@ ...@@ -46,35 +50,41 @@
#include <asm/system.h> #include <asm/system.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#define NFSDBG_FACILITY (NFSDBG_PAGECACHE | NFSDBG_VFS) #define NFSDBG_FACILITY NFSDBG_VFS
#define VERF_SIZE (2 * sizeof(__u32)) #define VERF_SIZE (2 * sizeof(__u32))
#define MAX_DIRECTIO_SIZE (4096UL << PAGE_SHIFT)
/** /**
* nfs_get_user_pages - find and set up page representing user buffer * nfs_get_user_pages - find and set up pages underlying user's buffer
* addr: user-space address of target buffer * rw: direction (read or write)
* size: total size in bytes of target buffer * user_addr: starting address of this segment of user's buffer
* @pages: returned array of page struct pointers underlying target buffer * count: size of this segment
* write: whether or not buffer is target of a write operation * @pages: returned array of page struct pointers underlying user's buffer
*/ */
static inline int static inline int
nfs_get_user_pages(unsigned long addr, size_t size, nfs_get_user_pages(int rw, unsigned long user_addr, size_t size,
struct page ***pages, int rw) struct page ***pages)
{ {
int result = -ENOMEM; int result = -ENOMEM;
unsigned page_count = (unsigned) size >> PAGE_SHIFT; unsigned long page_count;
unsigned array_size = (page_count * sizeof(struct page *)) + 2U; size_t array_size;
/* set an arbitrary limit to prevent arithmetic overflow */
if (size > MAX_DIRECTIO_SIZE)
return -EFBIG;
page_count = (user_addr + size + PAGE_SIZE - 1) >> PAGE_SHIFT;
page_count -= user_addr >> PAGE_SHIFT;
*pages = (struct page **) kmalloc(array_size, GFP_KERNEL); array_size = (page_count * sizeof(struct page *));
*pages = kmalloc(array_size, GFP_KERNEL);
if (*pages) { if (*pages) {
down_read(&current->mm->mmap_sem); down_read(&current->mm->mmap_sem);
result = get_user_pages(current, current->mm, addr, result = get_user_pages(current, current->mm, user_addr,
page_count, (rw == WRITE), 0, page_count, (rw == READ), 0,
*pages, NULL); *pages, NULL);
up_read(&current->mm->mmap_sem); up_read(&current->mm->mmap_sem);
if (result < 0)
printk(KERN_ERR "%s: get_user_pages result %d\n",
__FUNCTION__, result);
} }
return result; return result;
} }
...@@ -83,175 +93,366 @@ nfs_get_user_pages(unsigned long addr, size_t size, ...@@ -83,175 +93,366 @@ nfs_get_user_pages(unsigned long addr, size_t size,
* nfs_free_user_pages - tear down page struct array * nfs_free_user_pages - tear down page struct array
* @pages: array of page struct pointers underlying target buffer * @pages: array of page struct pointers underlying target buffer
*/ */
static inline void static void
nfs_free_user_pages(struct page **pages, unsigned count) nfs_free_user_pages(struct page **pages, int npages, int do_dirty)
{ {
unsigned page = 0; int i;
for (i = 0; i < npages; i++) {
if (do_dirty)
set_page_dirty_lock(pages[i]);
page_cache_release(pages[i]);
}
kfree(pages);
}
while (count--) /**
page_cache_release(pages[page++]); * nfs_direct_read_seg - Read in one iov segment. Generate separate
* read RPCs for each "rsize" bytes.
* @inode: target inode
* @file: target file (may be NULL)
* user_addr: starting address of this segment of user's buffer
* count: size of this segment
* file_offset: offset in file to begin the operation
* @pages: array of addresses of page structs defining user's buffer
* nr_pages: size of pages array
*/
static int
nfs_direct_read_seg(struct inode *inode, struct file *file,
unsigned long user_addr, size_t count, loff_t file_offset,
struct page **pages, int nr_pages)
{
const unsigned int rsize = NFS_SERVER(inode)->rsize;
int tot_bytes = 0;
int curpage = 0;
struct nfs_read_data rdata = {
.inode = inode,
.args = {
.fh = NFS_FH(inode),
},
.res = {
.fattr = &rdata.fattr,
},
};
kfree(pages); rdata.args.pgbase = user_addr & ~PAGE_MASK;
rdata.args.offset = file_offset;
do {
int result;
rdata.args.count = count;
if (rdata.args.count > rsize)
rdata.args.count = rsize;
rdata.args.pages = &pages[curpage];
dprintk("NFS: direct read: c=%u o=%Ld ua=%lu, pb=%u, cp=%u\n",
rdata.args.count, (long long) rdata.args.offset,
user_addr + tot_bytes, rdata.args.pgbase, curpage);
lock_kernel();
result = NFS_PROTO(inode)->read(&rdata, file);
unlock_kernel();
if (result <= 0) {
if (tot_bytes > 0)
break;
if (result == -EISDIR)
result = -EINVAL;
return result;
}
tot_bytes += result;
if (rdata.res.eof)
break;
rdata.args.offset += result;
rdata.args.pgbase += result;
curpage += rdata.args.pgbase >> PAGE_SHIFT;
rdata.args.pgbase &= ~PAGE_MASK;
count -= result;
} while (count != 0);
/* XXX: should we zero the rest of the user's buffer if we
* hit eof? */
return tot_bytes;
} }
/** /**
* nfs_iov2pagelist - convert an array of iovecs to a list of page requests * nfs_direct_read - For each iov segment, map the user's buffer
* @inode: inode of target file * then generate read RPCs.
* @cred: credentials of user who requested I/O * @inode: target inode
* @file: target file (may be NULL)
* @iov: array of vectors that define I/O buffer * @iov: array of vectors that define I/O buffer
* offset: where in file to begin the read * file_offset: offset in file to begin the operation
* nr_segs: size of iovec array * nr_segs: size of iovec array
* @requests: append new page requests to this list head *
* generic_file_direct_IO has already pushed out any non-direct
* writes so that this read will see them when we read from the
* server.
*/ */
static int static int
nfs_iov2pagelist(int rw, const struct inode *inode, nfs_direct_read(struct inode *inode, struct file *file,
const struct rpc_cred *cred, const struct iovec *iov, loff_t file_offset,
const struct iovec *iov, loff_t offset, unsigned long nr_segs)
unsigned long nr_segs, struct list_head *requests)
{ {
unsigned seg;
int tot_bytes = 0; int tot_bytes = 0;
struct page **pages; unsigned long seg = 0;
/* for each iovec in the array... */ while ((seg < nr_segs) && (tot_bytes >= 0)) {
for (seg = 0; seg < nr_segs; seg++) { int result, page_count;
const unsigned long user_addr = struct page **pages;
(unsigned long) iov[seg].iov_base; const struct iovec *vec = &iov[seg++];
size_t bytes = iov[seg].iov_len; unsigned long user_addr = (unsigned long) vec->iov_base;
unsigned int pg_offset = (user_addr & ~PAGE_MASK); size_t size = vec->iov_len;
int page_count, page = 0;
page_count = nfs_get_user_pages(READ, user_addr, size, &pages);
page_count = nfs_get_user_pages(user_addr, bytes, &pages, rw); if (page_count < 0) {
if (page_count < 0) { nfs_free_user_pages(pages, 0, 0);
return page_count; if (tot_bytes > 0)
break;
return page_count;
}
result = nfs_direct_read_seg(inode, file, user_addr, size,
file_offset, pages, page_count);
nfs_free_user_pages(pages, page_count, 1);
if (result <= 0) {
if (tot_bytes > 0)
break;
return result;
} }
tot_bytes += result;
file_offset += result;
if (result < size)
break;
}
return tot_bytes;
}
/**
* nfs_direct_write_seg - Write out one iov segment. Generate separate
* write RPCs for each "wsize" bytes, then commit.
* @inode: target inode
* @file: target file (may be NULL)
* user_addr: starting address of this segment of user's buffer
* count: size of this segment
* file_offset: offset in file to begin the operation
* @pages: array of addresses of page structs defining user's buffer
* nr_pages: size of pages array
*/
static int
nfs_direct_write_seg(struct inode *inode, struct file *file,
unsigned long user_addr, size_t count, loff_t file_offset,
struct page **pages, int nr_pages)
{
const unsigned int wsize = NFS_SERVER(inode)->wsize;
size_t request;
int need_commit;
int tot_bytes;
int curpage;
struct nfs_writeverf first_verf;
struct nfs_write_data wdata = {
.inode = inode,
.args = {
.fh = NFS_FH(inode),
},
.res = {
.fattr = &wdata.fattr,
.verf = &wdata.verf,
},
};
/* ...build as many page requests as required */ wdata.args.stable = NFS_UNSTABLE;
while (bytes > 0) { if (IS_SYNC(inode) || NFS_PROTO(inode)->version == 2 || count <= wsize)
struct nfs_page *new; wdata.args.stable = NFS_FILE_SYNC;
const unsigned int pg_bytes = (bytes > PAGE_SIZE) ?
PAGE_SIZE : bytes; retry:
need_commit = 0;
new = nfs_create_request((struct rpc_cred *) cred, tot_bytes = 0;
(struct inode *) inode, curpage = 0;
pages[page], request = count;
pg_offset, pg_bytes); wdata.args.pgbase = user_addr & ~PAGE_MASK;
if (IS_ERR(new)) { wdata.args.offset = file_offset;
nfs_free_user_pages(pages, page_count); do {
nfs_release_list(requests); int result;
return PTR_ERR(new);
} wdata.args.count = request;
new->wb_index = offset; if (wdata.args.count > wsize)
nfs_list_add_request(new, requests); wdata.args.count = wsize;
wdata.args.pages = &pages[curpage];
/* after the first page */
pg_offset = 0; dprintk("NFS: direct write: c=%u o=%Ld ua=%lu, pb=%u, cp=%u\n",
offset += PAGE_SIZE; wdata.args.count, (long long) wdata.args.offset,
tot_bytes += pg_bytes; user_addr + tot_bytes, wdata.args.pgbase, curpage);
bytes -= pg_bytes;
page++; lock_kernel();
result = NFS_PROTO(inode)->write(&wdata, file);
unlock_kernel();
if (result <= 0) {
if (tot_bytes > 0)
break;
return result;
} }
/* don't release pages here -- I/O completion will do that */ if (tot_bytes == 0)
nfs_free_user_pages(pages, 0); memcpy(&first_verf.verifier, &wdata.verf.verifier,
VERF_SIZE);
if (wdata.verf.committed != NFS_FILE_SYNC) {
need_commit = 1;
if (memcmp(&first_verf.verifier,
&wdata.verf.verifier, VERF_SIZE))
goto sync_retry;
}
tot_bytes += result;
wdata.args.offset += result;
wdata.args.pgbase += result;
curpage += wdata.args.pgbase >> PAGE_SHIFT;
wdata.args.pgbase &= ~PAGE_MASK;
request -= result;
} while (request != 0);
/*
* Commit data written so far, even in the event of an error
*/
if (need_commit) {
int result;
wdata.args.count = tot_bytes;
wdata.args.offset = file_offset;
lock_kernel();
result = NFS_PROTO(inode)->commit(&wdata, file);
unlock_kernel();
if (result < 0 || memcmp(&first_verf.verifier,
&wdata.verf.verifier,
VERF_SIZE) != 0)
goto sync_retry;
} }
return tot_bytes; return tot_bytes;
sync_retry:
wdata.args.stable = NFS_FILE_SYNC;
goto retry;
} }
/** /**
* do_nfs_direct_IO - Read or write data without caching * nfs_direct_write - For each iov segment, map the user's buffer
* @inode: inode of target file * then generate write and commit RPCs.
* @cred: credentials of user who requested I/O * @inode: target inode
* @file: target file (may be NULL)
* @iov: array of vectors that define I/O buffer * @iov: array of vectors that define I/O buffer
* offset: where in file to begin the read * file_offset: offset in file to begin the operation
* nr_segs: size of iovec array * nr_segs: size of iovec array
* *
* Break the passed-in iovec into a series of page-sized or smaller * Upon return, generic_file_direct_IO invalidates any cached pages
* requests, where each page is mapped for direct user-land I/O. * that non-direct readers might access, so they will pick up these
* * writes immediately.
* For each of these pages, create an NFS page request and
* append it to an automatic list of page requests.
*
* When all page requests have been queued, start the I/O on the
* whole list. The underlying routines coalesce the pages on the
* list into a bunch of asynchronous "r/wsize" network requests.
*
* I/O completion automatically unmaps and releases the pages.
*/ */
static int static int
do_nfs_direct_IO(int rw, const struct inode *inode, nfs_direct_write(struct inode *inode, struct file *file,
const struct rpc_cred *cred, const struct iovec *iov, const struct iovec *iov, loff_t file_offset,
loff_t offset, unsigned long nr_segs) unsigned long nr_segs)
{ {
LIST_HEAD(requests); int tot_bytes = 0;
int result, tot_bytes; unsigned long seg = 0;
result = nfs_iov2pagelist(rw, inode, cred, iov, offset, nr_segs, while ((seg < nr_segs) && (tot_bytes >= 0)) {
&requests); int result, page_count;
if (result < 0) struct page **pages;
return result; const struct iovec *vec = &iov[seg++];
tot_bytes = result; unsigned long user_addr = (unsigned long) vec->iov_base;
size_t size = vec->iov_len;
switch (rw) { page_count = nfs_get_user_pages(WRITE, user_addr, size, &pages);
case READ: if (page_count < 0) {
if (IS_SYNC(inode) || (NFS_SERVER(inode)->rsize < PAGE_SIZE)) { nfs_free_user_pages(pages, 0, 0);
result = nfs_direct_read_sync(inode, cred, iov, offset, nr_segs); if (tot_bytes > 0)
break; break;
return page_count;
}
result = nfs_direct_write_seg(inode, file, user_addr, size,
file_offset, pages, page_count);
nfs_free_user_pages(pages, page_count, 0);
if (result <= 0) {
if (tot_bytes > 0)
break;
return result;
} }
result = nfs_pagein_list(&requests, NFS_SERVER(inode)->rpages); tot_bytes += result;
break; file_offset += result;
case WRITE: if (result < size)
if (IS_SYNC(inode) || (NFS_SERVER(inode)->wsize < PAGE_SIZE)) break;
result = nfs_direct_write_sync(inode, cred, iov, offset, nr_segs);
else
result = nfs_flush_list(&requests,
NFS_SERVER(inode)->wpages, FLUSH_WAIT);
/* invalidate cache so non-direct readers pick up changes */
invalidate_inode_pages((struct inode *) inode);
break;
default:
result = -EINVAL;
break;
} }
/* Zap the page cache if we managed to write */
if (tot_bytes > 0)
invalidate_remote_inode(inode);
if (result < 0)
return result;
return tot_bytes; return tot_bytes;
} }
/** /**
* nfs_direct_IO - NFS address space operation for direct I/O * nfs_direct_IO - NFS address space operation for direct I/O
* rw: direction (read or write) * rw: direction (read or write)
* @file: file struct of target file * @iocb: target I/O control block
* @iov: array of vectors that define I/O buffer * @iov: array of vectors that define I/O buffer
* offset: offset in file to begin the operation * file_offset: offset in file to begin the operation
* nr_segs: size of iovec array * nr_segs: size of iovec array
* *
* Usually a file system implements direct I/O by calling out to
* blockdev_direct_IO. The NFS client doesn't have a backing block
* device, so we do everything by hand instead.
*
* The inode's i_sem is no longer held by the VFS layer before it calls * The inode's i_sem is no longer held by the VFS layer before it calls
* this function to do a write. * this function to do a write.
*/ */
int int
nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
loff_t offset, unsigned long nr_segs) loff_t file_offset, unsigned long nr_segs)
{ {
/* None of this works yet, so prevent it from compiling. */ int result = -EINVAL;
#if 0 struct file *file = iocb->ki_filp;
int result;
struct dentry *dentry = file->f_dentry; struct dentry *dentry = file->f_dentry;
const struct inode *inode = dentry->d_inode->i_mapping->host; struct inode *inode = dentry->d_inode;
const struct rpc_cred *cred = nfs_file_cred(file);
#endif /*
* No support for async yet
*/
if (!is_sync_kiocb(iocb))
goto out;
dfprintk(VFS, "NFS: direct_IO(%s) (%s/%s) off/no(%Lu/%lu)\n", result = nfs_revalidate_inode(NFS_SERVER(inode), inode);
((rw == READ) ? "READ" : "WRITE"), if (result < 0)
dentry->d_parent->d_name.name, goto out;
dentry->d_name.name, offset, nr_segs);
result = do_nfs_direct_IO(rw, inode, cred, iov, offset, nr_segs); switch (rw) {
case READ:
dprintk("NFS: direct_IO(read) (%s) off/no(%Lu/%lu)\n",
dentry->d_name.name, file_offset, nr_segs);
result = nfs_direct_read(inode, file, iov,
file_offset, nr_segs);
break;
case WRITE:
dprintk("NFS: direct_IO(write) (%s) off/no(%Lu/%lu)\n",
dentry->d_name.name, file_offset, nr_segs);
dfprintk(VFS, "NFS: direct_IO result = %d\n", result); result = nfs_direct_write(inode, file, iov,
file_offset, nr_segs);
break;
default:
break;
}
out:
dprintk("NFS: direct_IO result=%d\n", result);
return result; return result;
} }
...@@ -549,6 +549,7 @@ int set_page_dirty_lock(struct page *page) ...@@ -549,6 +549,7 @@ int set_page_dirty_lock(struct page *page)
unlock_page(page); unlock_page(page);
return ret; return ret;
} }
EXPORT_SYMBOL(set_page_dirty_lock);
/* /*
* Clear a page's dirty flag, while caring for dirty memory accounting. * Clear a page's dirty flag, while caring for dirty memory accounting.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment