blob: f8e165c7d5a637de762e619e1ddd1a7db4436fb7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/direct.c
3 *
4 * Copyright (C) 2003 by Chuck Lever <cel@netapp.com>
5 *
6 * High-performance uncached I/O for the Linux NFS client
7 *
8 * There are important applications whose performance or correctness
9 * depends on uncached access to file data. Database clusters
Chuck Lever88467052006-03-20 13:44:34 -050010 * (multiple copies of the same instance running on separate hosts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * implement their own cache coherency protocol that subsumes file
Chuck Lever88467052006-03-20 13:44:34 -050012 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * need to cache the contents of a file.
16 *
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.
23 *
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.
28 *
29 * Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with
30 * help from Andrew Morton.
31 *
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
Chuck Lever88467052006-03-20 13:44:34 -050037 * 04 May 2005 support O_DIRECT with aio --cel
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 *
39 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/errno.h>
42#include <linux/sched.h>
43#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/file.h>
45#include <linux/pagemap.h>
46#include <linux/kref.h>
47
48#include <linux/nfs_fs.h>
49#include <linux/nfs_page.h>
50#include <linux/sunrpc/clnt.h>
51
52#include <asm/system.h>
53#include <asm/uaccess.h>
54#include <asm/atomic.h>
55
Trond Myklebust8d5658c2007-04-10 09:26:35 -040056#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050057#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define NFSDBG_FACILITY NFSDBG_VFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Christoph Lametere18b8902006-12-06 20:33:20 -080061static struct kmem_cache *nfs_direct_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * This represents a set of asynchronous requests that we're waiting on
65 */
66struct nfs_direct_req {
67 struct kref kref; /* release manager */
Chuck Lever15ce4a02006-03-20 13:44:34 -050068
69 /* I/O parameters */
Trond Myklebusta8881f52006-03-20 13:44:36 -050070 struct nfs_open_context *ctx; /* file open context info */
Chuck Lever99514f82006-03-20 13:44:30 -050071 struct kiocb * iocb; /* controlling i/o request */
Chuck Lever88467052006-03-20 13:44:34 -050072 struct inode * inode; /* target file of i/o */
Chuck Lever15ce4a02006-03-20 13:44:34 -050073
74 /* completion state */
Trond Myklebust607f31e2006-06-28 16:52:45 -040075 atomic_t io_count; /* i/os we're waiting for */
Chuck Lever15ce4a02006-03-20 13:44:34 -050076 spinlock_t lock; /* protect completion state */
Chuck Lever15ce4a02006-03-20 13:44:34 -050077 ssize_t count, /* bytes actually processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 error; /* any reported error */
Trond Myklebustd72b7a62006-03-20 13:44:43 -050079 struct completion completion; /* wait for i/o completion */
Trond Myklebustfad61492006-03-20 13:44:36 -050080
81 /* commit state */
Trond Myklebust607f31e2006-06-28 16:52:45 -040082 struct list_head rewrite_list; /* saved nfs_write_data structs */
Trond Myklebustfad61492006-03-20 13:44:36 -050083 struct nfs_write_data * commit_data; /* special write_data for commits */
84 int flags;
85#define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */
86#define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */
87 struct nfs_writeverf verf; /* unstable write verifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
Trond Myklebustfad61492006-03-20 13:44:36 -050090static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode);
Trond Myklebust607f31e2006-06-28 16:52:45 -040091static const struct rpc_call_ops nfs_write_direct_ops;
92
93static inline void get_dreq(struct nfs_direct_req *dreq)
94{
95 atomic_inc(&dreq->io_count);
96}
97
98static inline int put_dreq(struct nfs_direct_req *dreq)
99{
100 return atomic_dec_and_test(&dreq->io_count);
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/**
Chuck Leverb8a32e22006-03-20 13:44:28 -0500104 * nfs_direct_IO - NFS address space operation for direct I/O
105 * @rw: direction (read or write)
106 * @iocb: target I/O control block
107 * @iov: array of vectors that define I/O buffer
108 * @pos: offset in file to begin the operation
109 * @nr_segs: size of iovec array
110 *
111 * The presence of this routine in the address space ops vector means
112 * the NFS client supports direct I/O. However, we shunt off direct
113 * read and write requests before the VFS gets them, so this method
114 * should never be called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
Chuck Leverb8a32e22006-03-20 13:44:28 -0500116ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_t pos, unsigned long nr_segs)
117{
Chuck Leverb8a32e22006-03-20 13:44:28 -0500118 dprintk("NFS: nfs_direct_IO (%s) off/no(%Ld/%lu) EINVAL\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800119 iocb->ki_filp->f_path.dentry->d_name.name,
Trond Myklebuste99170f2006-04-18 13:21:42 -0400120 (long long) pos, nr_segs);
Chuck Leverb8a32e22006-03-20 13:44:28 -0500121
122 return -EINVAL;
123}
124
Trond Myklebustd4a8f362007-05-22 10:22:27 -0400125static void nfs_direct_dirty_pages(struct page **pages, unsigned int pgbase, size_t count)
Trond Myklebust6b45d852006-03-20 13:44:43 -0500126{
Trond Myklebustd4a8f362007-05-22 10:22:27 -0400127 unsigned int npages;
Chuck Lever749e1462007-05-19 17:22:46 -0400128 unsigned int i;
Trond Myklebustd4a8f362007-05-22 10:22:27 -0400129
130 if (count == 0)
131 return;
132 pages += (pgbase >> PAGE_SHIFT);
133 npages = (count + (pgbase & ~PAGE_MASK) + PAGE_SIZE - 1) >> PAGE_SHIFT;
Trond Myklebust6b45d852006-03-20 13:44:43 -0500134 for (i = 0; i < npages; i++) {
135 struct page *page = pages[i];
Trond Myklebust607f31e2006-06-28 16:52:45 -0400136 if (!PageCompound(page))
Trond Myklebustd4a8f362007-05-22 10:22:27 -0400137 set_page_dirty(page);
Trond Myklebust6b45d852006-03-20 13:44:43 -0500138 }
Chuck Lever9c93ab72006-06-20 12:56:31 -0400139}
140
Chuck Lever749e1462007-05-19 17:22:46 -0400141static void nfs_direct_release_pages(struct page **pages, unsigned int npages)
Chuck Lever9c93ab72006-06-20 12:56:31 -0400142{
Chuck Lever749e1462007-05-19 17:22:46 -0400143 unsigned int i;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400144 for (i = 0; i < npages; i++)
145 page_cache_release(pages[i]);
Trond Myklebust6b45d852006-03-20 13:44:43 -0500146}
147
Chuck Lever93619e52006-03-20 13:44:31 -0500148static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct nfs_direct_req *dreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Christoph Lametere94b1762006-12-06 20:33:17 -0800152 dreq = kmem_cache_alloc(nfs_direct_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!dreq)
154 return NULL;
155
156 kref_init(&dreq->kref);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400157 kref_get(&dreq->kref);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500158 init_completion(&dreq->completion);
Trond Myklebustfad61492006-03-20 13:44:36 -0500159 INIT_LIST_HEAD(&dreq->rewrite_list);
Chuck Lever93619e52006-03-20 13:44:31 -0500160 dreq->iocb = NULL;
Trond Myklebusta8881f52006-03-20 13:44:36 -0500161 dreq->ctx = NULL;
Chuck Lever15ce4a02006-03-20 13:44:34 -0500162 spin_lock_init(&dreq->lock);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400163 atomic_set(&dreq->io_count, 0);
Chuck Lever15ce4a02006-03-20 13:44:34 -0500164 dreq->count = 0;
165 dreq->error = 0;
Trond Myklebustfad61492006-03-20 13:44:36 -0500166 dreq->flags = 0;
Chuck Lever93619e52006-03-20 13:44:31 -0500167
168 return dreq;
169}
170
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400171static void nfs_direct_req_free(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500174
175 if (dreq->ctx != NULL)
176 put_nfs_open_context(dreq->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 kmem_cache_free(nfs_direct_cachep, dreq);
178}
179
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400180static void nfs_direct_req_release(struct nfs_direct_req *dreq)
181{
182 kref_put(&dreq->kref, nfs_direct_req_free);
183}
184
Chuck Leverd4cc9482006-03-20 13:44:28 -0500185/*
Chuck Leverbc0fb202006-03-20 13:44:31 -0500186 * Collects and returns the final error value/byte-count.
187 */
188static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
189{
Chuck Lever15ce4a02006-03-20 13:44:34 -0500190 ssize_t result = -EIOCBQUEUED;
Trond Myklebustf3c391e2008-01-15 14:17:12 -0500191 struct rpc_clnt *clnt;
192 sigset_t oldset;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500193
194 /* Async requests don't wait here */
195 if (dreq->iocb)
196 goto out;
197
Trond Myklebustf3c391e2008-01-15 14:17:12 -0500198 clnt = NFS_CLIENT(dreq->inode);
199 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500200 result = wait_for_completion_interruptible(&dreq->completion);
Trond Myklebustf3c391e2008-01-15 14:17:12 -0500201 rpc_clnt_sigunmask(clnt, &oldset);
Chuck Leverbc0fb202006-03-20 13:44:31 -0500202
203 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500204 result = dreq->error;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500205 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500206 result = dreq->count;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500207
208out:
Chuck Leverbc0fb202006-03-20 13:44:31 -0500209 return (ssize_t) result;
210}
211
212/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400213 * Synchronous I/O uses a stack-allocated iocb. Thus we can't trust
214 * the iocb is still valid here if this is a synchronous request.
Chuck Lever63ab46a2006-03-20 13:44:31 -0500215 */
216static void nfs_direct_complete(struct nfs_direct_req *dreq)
217{
Chuck Lever63ab46a2006-03-20 13:44:31 -0500218 if (dreq->iocb) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500219 long res = (long) dreq->error;
Chuck Lever63ab46a2006-03-20 13:44:31 -0500220 if (!res)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500221 res = (long) dreq->count;
Chuck Lever63ab46a2006-03-20 13:44:31 -0500222 aio_complete(dreq->iocb, res, 0);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500223 }
224 complete_all(&dreq->completion);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500225
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400226 nfs_direct_req_release(dreq);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500227}
228
229/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400230 * We must hold a reference to all the pages in this direct read request
231 * until the RPCs complete. This could be long *after* we are woken up in
232 * nfs_direct_wait (for instance, if someone hits ^C on a slow server).
Chuck Lever06cf6f22006-06-20 12:56:49 -0400233 */
Trond Myklebustec06c092006-03-20 13:44:27 -0500234static void nfs_direct_read_result(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Trond Myklebustec06c092006-03-20 13:44:27 -0500236 struct nfs_read_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
238
Trond Myklebustec06c092006-03-20 13:44:27 -0500239 if (nfs_readpage_result(task, data) != 0)
240 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Chuck Lever15ce4a02006-03-20 13:44:34 -0500242 spin_lock(&dreq->lock);
Trond Myklebustd4a8f362007-05-22 10:22:27 -0400243 if (unlikely(task->tk_status < 0)) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500244 dreq->error = task->tk_status;
Trond Myklebustd4a8f362007-05-22 10:22:27 -0400245 spin_unlock(&dreq->lock);
246 } else {
247 dreq->count += data->res.count;
248 spin_unlock(&dreq->lock);
249 nfs_direct_dirty_pages(data->pagevec,
250 data->args.pgbase,
251 data->res.count);
252 }
253 nfs_direct_release_pages(data->pagevec, data->npages);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400254
255 if (put_dreq(dreq))
256 nfs_direct_complete(dreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Trond Myklebustec06c092006-03-20 13:44:27 -0500259static const struct rpc_call_ops nfs_read_direct_ops = {
260 .rpc_call_done = nfs_direct_read_result,
261 .rpc_release = nfs_readdata_release,
262};
263
Chuck Leverd4cc9482006-03-20 13:44:28 -0500264/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400265 * For each rsize'd chunk of the user's buffer, dispatch an NFS READ
266 * operation. If nfs_readdata_alloc() or get_user_pages() fails,
267 * bail and stop sending more reads. Read length accounting is
268 * handled automatically by nfs_direct_read_result(). Otherwise, if
269 * no requests have been sent, just return an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
Chuck Lever02fe4942007-11-12 12:17:03 -0500271static ssize_t nfs_direct_read_schedule_segment(struct nfs_direct_req *dreq,
272 const struct iovec *iov,
273 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Trond Myklebusta8881f52006-03-20 13:44:36 -0500275 struct nfs_open_context *ctx = dreq->ctx;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400276 struct inode *inode = ctx->path.dentry->d_inode;
Chuck Lever02fe4942007-11-12 12:17:03 -0500277 unsigned long user_addr = (unsigned long)iov->iov_base;
278 size_t count = iov->iov_len;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500279 size_t rsize = NFS_SERVER(inode)->rsize;
Trond Myklebust07737692007-10-25 18:42:54 -0400280 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400281 struct rpc_message msg = {
282 .rpc_cred = ctx->cred,
283 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400284 struct rpc_task_setup task_setup_data = {
285 .rpc_client = NFS_CLIENT(inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400286 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400287 .callback_ops = &nfs_read_direct_ops,
288 .flags = RPC_TASK_ASYNC,
289 };
Trond Myklebust607f31e2006-06-28 16:52:45 -0400290 unsigned int pgbase;
291 int result;
292 ssize_t started = 0;
Chuck Lever82b145c2006-06-20 12:57:03 -0400293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 do {
Chuck Lever82b145c2006-06-20 12:57:03 -0400295 struct nfs_read_data *data;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500296 size_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700298 pgbase = user_addr & ~PAGE_MASK;
299 bytes = min(rsize,count);
300
Trond Myklebust607f31e2006-06-28 16:52:45 -0400301 result = -ENOMEM;
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400302 data = nfs_readdata_alloc(nfs_page_array_len(pgbase, bytes));
Trond Myklebust607f31e2006-06-28 16:52:45 -0400303 if (unlikely(!data))
304 break;
305
Trond Myklebust607f31e2006-06-28 16:52:45 -0400306 down_read(&current->mm->mmap_sem);
307 result = get_user_pages(current, current->mm, user_addr,
308 data->npages, 1, 0, data->pagevec, NULL);
309 up_read(&current->mm->mmap_sem);
Chuck Lever749e1462007-05-19 17:22:46 -0400310 if (result < 0) {
311 nfs_readdata_release(data);
312 break;
313 }
314 if ((unsigned)result < data->npages) {
Trond Myklebustd9df8d62007-05-22 10:22:20 -0400315 bytes = result * PAGE_SIZE;
316 if (bytes <= pgbase) {
317 nfs_direct_release_pages(data->pagevec, result);
318 nfs_readdata_release(data);
319 break;
320 }
321 bytes -= pgbase;
322 data->npages = result;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400323 }
Chuck Lever06cf6f22006-06-20 12:56:49 -0400324
Trond Myklebust607f31e2006-06-28 16:52:45 -0400325 get_dreq(dreq);
326
327 data->req = (struct nfs_page *) dreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 data->inode = inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400329 data->cred = msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 data->args.fh = NFS_FH(inode);
331 data->args.context = ctx;
Chuck Lever88467052006-03-20 13:44:34 -0500332 data->args.offset = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 data->args.pgbase = pgbase;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400334 data->args.pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 data->args.count = bytes;
336 data->res.fattr = &data->fattr;
337 data->res.eof = 0;
338 data->res.count = bytes;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400339 msg.rpc_argp = &data->args;
340 msg.rpc_resp = &data->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Trond Myklebust07737692007-10-25 18:42:54 -0400342 task_setup_data.task = &data->task;
Trond Myklebust84115e12007-07-14 15:39:59 -0400343 task_setup_data.callback_data = data;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400344 NFS_PROTO(inode)->read_setup(data, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Trond Myklebust07737692007-10-25 18:42:54 -0400346 task = rpc_run_task(&task_setup_data);
347 if (!IS_ERR(task))
348 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Chuck Levera3f565b2007-01-31 12:14:01 -0500350 dprintk("NFS: %5u initiated direct read call "
351 "(req %s/%Ld, %zu bytes @ offset %Lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 data->task.tk_pid,
353 inode->i_sb->s_id,
354 (long long)NFS_FILEID(inode),
355 bytes,
356 (unsigned long long)data->args.offset);
357
Trond Myklebust607f31e2006-06-28 16:52:45 -0400358 started += bytes;
359 user_addr += bytes;
Chuck Lever88467052006-03-20 13:44:34 -0500360 pos += bytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700361 /* FIXME: Remove this unnecessary math from final patch */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 pgbase += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 pgbase &= ~PAGE_MASK;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700364 BUG_ON(pgbase != (user_addr & ~PAGE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 count -= bytes;
367 } while (count != 0);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400368
Trond Myklebust607f31e2006-06-28 16:52:45 -0400369 if (started)
Chuck Leverc216fd72007-11-12 12:16:52 -0500370 return started;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400371 return result < 0 ? (ssize_t) result : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Chuck Lever19f73782007-11-12 12:16:47 -0500374static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq,
375 const struct iovec *iov,
376 unsigned long nr_segs,
377 loff_t pos)
378{
379 ssize_t result = -EINVAL;
380 size_t requested_bytes = 0;
381 unsigned long seg;
382
383 get_dreq(dreq);
384
385 for (seg = 0; seg < nr_segs; seg++) {
386 const struct iovec *vec = &iov[seg];
Chuck Lever02fe4942007-11-12 12:17:03 -0500387 result = nfs_direct_read_schedule_segment(dreq, vec, pos);
Chuck Lever19f73782007-11-12 12:16:47 -0500388 if (result < 0)
389 break;
390 requested_bytes += result;
391 if ((size_t)result < vec->iov_len)
392 break;
393 pos += vec->iov_len;
394 }
395
396 if (put_dreq(dreq))
397 nfs_direct_complete(dreq);
398
399 if (requested_bytes != 0)
400 return 0;
401
402 if (result < 0)
403 return result;
404 return -EIO;
405}
406
Chuck Leverc216fd72007-11-12 12:16:52 -0500407static ssize_t nfs_direct_read(struct kiocb *iocb, const struct iovec *iov,
408 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Trond Myklebust607f31e2006-06-28 16:52:45 -0400410 ssize_t result = 0;
Chuck Lever99514f82006-03-20 13:44:30 -0500411 struct inode *inode = iocb->ki_filp->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 struct nfs_direct_req *dreq;
413
Trond Myklebust607f31e2006-06-28 16:52:45 -0400414 dreq = nfs_direct_req_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (!dreq)
416 return -ENOMEM;
417
Chuck Lever91d5b472006-03-20 13:44:14 -0500418 dreq->inode = inode;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400419 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
Chuck Lever487b8372006-03-20 13:44:30 -0500420 if (!is_sync_kiocb(iocb))
421 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Chuck Leverc216fd72007-11-12 12:16:52 -0500423 result = nfs_direct_read_schedule_iovec(dreq, iov, nr_segs, pos);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400424 if (!result)
425 result = nfs_direct_wait(dreq);
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400426 nfs_direct_req_release(dreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 return result;
429}
430
Trond Myklebustfad61492006-03-20 13:44:36 -0500431static void nfs_direct_free_writedata(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Trond Myklebust607f31e2006-06-28 16:52:45 -0400433 while (!list_empty(&dreq->rewrite_list)) {
434 struct nfs_write_data *data = list_entry(dreq->rewrite_list.next, struct nfs_write_data, pages);
Trond Myklebustfad61492006-03-20 13:44:36 -0500435 list_del(&data->pages);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400436 nfs_direct_release_pages(data->pagevec, data->npages);
Trond Myklebustfad61492006-03-20 13:44:36 -0500437 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Trond Myklebustfad61492006-03-20 13:44:36 -0500441#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
442static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Trond Myklebust607f31e2006-06-28 16:52:45 -0400444 struct inode *inode = dreq->inode;
445 struct list_head *p;
446 struct nfs_write_data *data;
Trond Myklebust07737692007-10-25 18:42:54 -0400447 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400448 struct rpc_message msg = {
449 .rpc_cred = dreq->ctx->cred,
450 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400451 struct rpc_task_setup task_setup_data = {
452 .rpc_client = NFS_CLIENT(inode),
453 .callback_ops = &nfs_write_direct_ops,
454 .flags = RPC_TASK_ASYNC,
455 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Trond Myklebustfad61492006-03-20 13:44:36 -0500457 dreq->count = 0;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400458 get_dreq(dreq);
Trond Myklebustfad61492006-03-20 13:44:36 -0500459
Trond Myklebust607f31e2006-06-28 16:52:45 -0400460 list_for_each(p, &dreq->rewrite_list) {
461 data = list_entry(p, struct nfs_write_data, pages);
462
463 get_dreq(dreq);
464
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400465 /* Use stable writes */
466 data->args.stable = NFS_FILE_SYNC;
467
Trond Myklebust607f31e2006-06-28 16:52:45 -0400468 /*
469 * Reset data->res.
470 */
471 nfs_fattr_init(&data->fattr);
472 data->res.count = data->args.count;
473 memset(&data->verf, 0, sizeof(data->verf));
474
475 /*
476 * Reuse data->task; data->args should not have changed
477 * since the original request was sent.
478 */
Trond Myklebust07737692007-10-25 18:42:54 -0400479 task_setup_data.task = &data->task;
Trond Myklebust84115e12007-07-14 15:39:59 -0400480 task_setup_data.callback_data = data;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400481 msg.rpc_argp = &data->args;
482 msg.rpc_resp = &data->res;
483 NFS_PROTO(inode)->write_setup(data, &msg);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400484
Trond Myklebust607f31e2006-06-28 16:52:45 -0400485 /*
486 * We're called via an RPC callback, so BKL is already held.
487 */
Trond Myklebust07737692007-10-25 18:42:54 -0400488 task = rpc_run_task(&task_setup_data);
489 if (!IS_ERR(task))
490 rpc_put_task(task);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400491
492 dprintk("NFS: %5u rescheduled direct write call (req %s/%Ld, %u bytes @ offset %Lu)\n",
493 data->task.tk_pid,
494 inode->i_sb->s_id,
495 (long long)NFS_FILEID(inode),
496 data->args.count,
497 (unsigned long long)data->args.offset);
498 }
499
500 if (put_dreq(dreq))
501 nfs_direct_write_complete(dreq, inode);
Trond Myklebustfad61492006-03-20 13:44:36 -0500502}
503
504static void nfs_direct_commit_result(struct rpc_task *task, void *calldata)
505{
506 struct nfs_write_data *data = calldata;
507 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
508
509 /* Call the NFS version-specific code */
510 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
511 return;
512 if (unlikely(task->tk_status < 0)) {
Trond Myklebust60fa3f72007-04-14 19:11:52 -0400513 dprintk("NFS: %5u commit failed with error %d.\n",
514 task->tk_pid, task->tk_status);
Trond Myklebustfad61492006-03-20 13:44:36 -0500515 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
Trond Myklebust60fa3f72007-04-14 19:11:52 -0400516 } else if (memcmp(&dreq->verf, &data->verf, sizeof(data->verf))) {
Trond Myklebustfad61492006-03-20 13:44:36 -0500517 dprintk("NFS: %5u commit verify failed\n", task->tk_pid);
518 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
519 }
520
521 dprintk("NFS: %5u commit returned %d\n", task->tk_pid, task->tk_status);
522 nfs_direct_write_complete(dreq, data->inode);
523}
524
525static const struct rpc_call_ops nfs_commit_direct_ops = {
526 .rpc_call_done = nfs_direct_commit_result,
527 .rpc_release = nfs_commit_release,
528};
529
530static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq)
531{
Trond Myklebustfad61492006-03-20 13:44:36 -0500532 struct nfs_write_data *data = dreq->commit_data;
Trond Myklebust07737692007-10-25 18:42:54 -0400533 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400534 struct rpc_message msg = {
535 .rpc_argp = &data->args,
536 .rpc_resp = &data->res,
537 .rpc_cred = dreq->ctx->cred,
538 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400539 struct rpc_task_setup task_setup_data = {
Trond Myklebust07737692007-10-25 18:42:54 -0400540 .task = &data->task,
Trond Myklebust84115e12007-07-14 15:39:59 -0400541 .rpc_client = NFS_CLIENT(dreq->inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400542 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400543 .callback_ops = &nfs_commit_direct_ops,
544 .callback_data = data,
545 .flags = RPC_TASK_ASYNC,
546 };
Trond Myklebustfad61492006-03-20 13:44:36 -0500547
548 data->inode = dreq->inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400549 data->cred = msg.rpc_cred;
Trond Myklebustfad61492006-03-20 13:44:36 -0500550
551 data->args.fh = NFS_FH(data->inode);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400552 data->args.offset = 0;
553 data->args.count = 0;
Trond Myklebustfad61492006-03-20 13:44:36 -0500554 data->res.count = 0;
555 data->res.fattr = &data->fattr;
556 data->res.verf = &data->verf;
557
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400558 NFS_PROTO(data->inode)->commit_setup(data, &msg);
Trond Myklebustfad61492006-03-20 13:44:36 -0500559
Trond Myklebustfad61492006-03-20 13:44:36 -0500560 /* Note: task.tk_ops->rpc_release will free dreq->commit_data */
561 dreq->commit_data = NULL;
562
Trond Myklebuste99170f2006-04-18 13:21:42 -0400563 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Trond Myklebustfad61492006-03-20 13:44:36 -0500564
Trond Myklebust07737692007-10-25 18:42:54 -0400565 task = rpc_run_task(&task_setup_data);
566 if (!IS_ERR(task))
567 rpc_put_task(task);
Trond Myklebustfad61492006-03-20 13:44:36 -0500568}
569
570static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode)
571{
572 int flags = dreq->flags;
573
574 dreq->flags = 0;
575 switch (flags) {
576 case NFS_ODIRECT_DO_COMMIT:
577 nfs_direct_commit_schedule(dreq);
578 break;
579 case NFS_ODIRECT_RESCHED_WRITES:
580 nfs_direct_write_reschedule(dreq);
581 break;
582 default:
Trond Myklebustfad61492006-03-20 13:44:36 -0500583 if (dreq->commit_data != NULL)
584 nfs_commit_free(dreq->commit_data);
585 nfs_direct_free_writedata(dreq);
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700586 nfs_zap_mapping(inode, inode->i_mapping);
Trond Myklebustfad61492006-03-20 13:44:36 -0500587 nfs_direct_complete(dreq);
588 }
589}
590
591static void nfs_alloc_commit_data(struct nfs_direct_req *dreq)
592{
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700593 dreq->commit_data = nfs_commit_alloc();
Trond Myklebustfad61492006-03-20 13:44:36 -0500594 if (dreq->commit_data != NULL)
595 dreq->commit_data->req = (struct nfs_page *) dreq;
596}
597#else
598static inline void nfs_alloc_commit_data(struct nfs_direct_req *dreq)
599{
600 dreq->commit_data = NULL;
601}
602
603static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode)
604{
Trond Myklebustfad61492006-03-20 13:44:36 -0500605 nfs_direct_free_writedata(dreq);
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700606 nfs_zap_mapping(inode, inode->i_mapping);
Trond Myklebustfad61492006-03-20 13:44:36 -0500607 nfs_direct_complete(dreq);
608}
609#endif
610
Chuck Lever462d5b32006-03-20 13:44:32 -0500611static void nfs_direct_write_result(struct rpc_task *task, void *calldata)
612{
613 struct nfs_write_data *data = calldata;
614 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
615 int status = task->tk_status;
616
617 if (nfs_writeback_done(task, data) != 0)
618 return;
Chuck Lever462d5b32006-03-20 13:44:32 -0500619
Chuck Lever15ce4a02006-03-20 13:44:34 -0500620 spin_lock(&dreq->lock);
Chuck Lever462d5b32006-03-20 13:44:32 -0500621
Trond Myklebust60fa3f72007-04-14 19:11:52 -0400622 if (unlikely(status < 0)) {
Neil Brown432409e2007-10-23 17:09:13 -0400623 /* An error has occurred, so we should not commit */
Trond Myklebust60fa3f72007-04-14 19:11:52 -0400624 dreq->flags = 0;
625 dreq->error = status;
Trond Myklebusteda3cef2006-10-19 23:28:38 -0700626 }
Neil Brown432409e2007-10-23 17:09:13 -0400627 if (unlikely(dreq->error != 0))
628 goto out_unlock;
Trond Myklebusteda3cef2006-10-19 23:28:38 -0700629
630 dreq->count += data->res.count;
Chuck Lever15ce4a02006-03-20 13:44:34 -0500631
Trond Myklebustfad61492006-03-20 13:44:36 -0500632 if (data->res.verf->committed != NFS_FILE_SYNC) {
633 switch (dreq->flags) {
634 case 0:
635 memcpy(&dreq->verf, &data->verf, sizeof(dreq->verf));
636 dreq->flags = NFS_ODIRECT_DO_COMMIT;
637 break;
638 case NFS_ODIRECT_DO_COMMIT:
639 if (memcmp(&dreq->verf, &data->verf, sizeof(dreq->verf))) {
640 dprintk("NFS: %5u write verify failed\n", task->tk_pid);
641 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
642 }
643 }
644 }
Trond Myklebusteda3cef2006-10-19 23:28:38 -0700645out_unlock:
Trond Myklebustfad61492006-03-20 13:44:36 -0500646 spin_unlock(&dreq->lock);
647}
648
649/*
650 * NB: Return the value of the first error return code. Subsequent
651 * errors after the first one are ignored.
652 */
653static void nfs_direct_write_release(void *calldata)
654{
655 struct nfs_write_data *data = calldata;
656 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
657
Trond Myklebust607f31e2006-06-28 16:52:45 -0400658 if (put_dreq(dreq))
659 nfs_direct_write_complete(dreq, data->inode);
Chuck Lever462d5b32006-03-20 13:44:32 -0500660}
661
662static const struct rpc_call_ops nfs_write_direct_ops = {
663 .rpc_call_done = nfs_direct_write_result,
Trond Myklebustfad61492006-03-20 13:44:36 -0500664 .rpc_release = nfs_direct_write_release,
Chuck Lever462d5b32006-03-20 13:44:32 -0500665};
666
667/*
Trond Myklebust607f31e2006-06-28 16:52:45 -0400668 * For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE
669 * operation. If nfs_writedata_alloc() or get_user_pages() fails,
670 * bail and stop sending more writes. Write length accounting is
671 * handled automatically by nfs_direct_write_result(). Otherwise, if
672 * no requests have been sent, just return an error.
Chuck Lever462d5b32006-03-20 13:44:32 -0500673 */
Chuck Lever02fe4942007-11-12 12:17:03 -0500674static ssize_t nfs_direct_write_schedule_segment(struct nfs_direct_req *dreq,
675 const struct iovec *iov,
676 loff_t pos, int sync)
Chuck Lever462d5b32006-03-20 13:44:32 -0500677{
Trond Myklebusta8881f52006-03-20 13:44:36 -0500678 struct nfs_open_context *ctx = dreq->ctx;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400679 struct inode *inode = ctx->path.dentry->d_inode;
Chuck Lever02fe4942007-11-12 12:17:03 -0500680 unsigned long user_addr = (unsigned long)iov->iov_base;
681 size_t count = iov->iov_len;
Trond Myklebust07737692007-10-25 18:42:54 -0400682 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400683 struct rpc_message msg = {
684 .rpc_cred = ctx->cred,
685 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400686 struct rpc_task_setup task_setup_data = {
687 .rpc_client = NFS_CLIENT(inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400688 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400689 .callback_ops = &nfs_write_direct_ops,
690 .flags = RPC_TASK_ASYNC,
691 };
Chuck Lever462d5b32006-03-20 13:44:32 -0500692 size_t wsize = NFS_SERVER(inode)->wsize;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400693 unsigned int pgbase;
694 int result;
695 ssize_t started = 0;
Chuck Lever82b145c2006-06-20 12:57:03 -0400696
Chuck Lever462d5b32006-03-20 13:44:32 -0500697 do {
Chuck Lever82b145c2006-06-20 12:57:03 -0400698 struct nfs_write_data *data;
Chuck Lever462d5b32006-03-20 13:44:32 -0500699 size_t bytes;
700
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700701 pgbase = user_addr & ~PAGE_MASK;
702 bytes = min(wsize,count);
703
Trond Myklebust607f31e2006-06-28 16:52:45 -0400704 result = -ENOMEM;
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400705 data = nfs_writedata_alloc(nfs_page_array_len(pgbase, bytes));
Trond Myklebust607f31e2006-06-28 16:52:45 -0400706 if (unlikely(!data))
707 break;
708
Trond Myklebust607f31e2006-06-28 16:52:45 -0400709 down_read(&current->mm->mmap_sem);
710 result = get_user_pages(current, current->mm, user_addr,
711 data->npages, 0, 0, data->pagevec, NULL);
712 up_read(&current->mm->mmap_sem);
Chuck Lever749e1462007-05-19 17:22:46 -0400713 if (result < 0) {
714 nfs_writedata_release(data);
715 break;
716 }
717 if ((unsigned)result < data->npages) {
Trond Myklebustd9df8d62007-05-22 10:22:20 -0400718 bytes = result * PAGE_SIZE;
719 if (bytes <= pgbase) {
720 nfs_direct_release_pages(data->pagevec, result);
721 nfs_writedata_release(data);
722 break;
723 }
724 bytes -= pgbase;
725 data->npages = result;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400726 }
727
728 get_dreq(dreq);
729
Trond Myklebustfad61492006-03-20 13:44:36 -0500730 list_move_tail(&data->pages, &dreq->rewrite_list);
Chuck Lever462d5b32006-03-20 13:44:32 -0500731
Trond Myklebust607f31e2006-06-28 16:52:45 -0400732 data->req = (struct nfs_page *) dreq;
Chuck Lever462d5b32006-03-20 13:44:32 -0500733 data->inode = inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400734 data->cred = msg.rpc_cred;
Chuck Lever462d5b32006-03-20 13:44:32 -0500735 data->args.fh = NFS_FH(inode);
736 data->args.context = ctx;
Chuck Lever88467052006-03-20 13:44:34 -0500737 data->args.offset = pos;
Chuck Lever462d5b32006-03-20 13:44:32 -0500738 data->args.pgbase = pgbase;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400739 data->args.pages = data->pagevec;
Chuck Lever462d5b32006-03-20 13:44:32 -0500740 data->args.count = bytes;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400741 data->args.stable = sync;
Chuck Lever462d5b32006-03-20 13:44:32 -0500742 data->res.fattr = &data->fattr;
743 data->res.count = bytes;
Chuck Lever47989d72006-03-20 13:44:32 -0500744 data->res.verf = &data->verf;
Chuck Lever462d5b32006-03-20 13:44:32 -0500745
Trond Myklebust07737692007-10-25 18:42:54 -0400746 task_setup_data.task = &data->task;
Trond Myklebust84115e12007-07-14 15:39:59 -0400747 task_setup_data.callback_data = data;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400748 msg.rpc_argp = &data->args;
749 msg.rpc_resp = &data->res;
750 NFS_PROTO(inode)->write_setup(data, &msg);
Chuck Lever462d5b32006-03-20 13:44:32 -0500751
Trond Myklebust07737692007-10-25 18:42:54 -0400752 task = rpc_run_task(&task_setup_data);
753 if (!IS_ERR(task))
754 rpc_put_task(task);
Chuck Lever462d5b32006-03-20 13:44:32 -0500755
Chuck Levera3f565b2007-01-31 12:14:01 -0500756 dprintk("NFS: %5u initiated direct write call "
757 "(req %s/%Ld, %zu bytes @ offset %Lu)\n",
Chuck Lever462d5b32006-03-20 13:44:32 -0500758 data->task.tk_pid,
759 inode->i_sb->s_id,
760 (long long)NFS_FILEID(inode),
761 bytes,
762 (unsigned long long)data->args.offset);
763
Trond Myklebust607f31e2006-06-28 16:52:45 -0400764 started += bytes;
765 user_addr += bytes;
Chuck Lever88467052006-03-20 13:44:34 -0500766 pos += bytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700767
768 /* FIXME: Remove this useless math from the final patch */
Chuck Lever462d5b32006-03-20 13:44:32 -0500769 pgbase += bytes;
Chuck Lever462d5b32006-03-20 13:44:32 -0500770 pgbase &= ~PAGE_MASK;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700771 BUG_ON(pgbase != (user_addr & ~PAGE_MASK));
Chuck Lever462d5b32006-03-20 13:44:32 -0500772
773 count -= bytes;
774 } while (count != 0);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400775
Trond Myklebust607f31e2006-06-28 16:52:45 -0400776 if (started)
Chuck Leverc216fd72007-11-12 12:16:52 -0500777 return started;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400778 return result < 0 ? (ssize_t) result : -EFAULT;
Chuck Lever462d5b32006-03-20 13:44:32 -0500779}
780
Chuck Lever19f73782007-11-12 12:16:47 -0500781static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq,
782 const struct iovec *iov,
783 unsigned long nr_segs,
784 loff_t pos, int sync)
785{
786 ssize_t result = 0;
787 size_t requested_bytes = 0;
788 unsigned long seg;
789
790 get_dreq(dreq);
791
792 for (seg = 0; seg < nr_segs; seg++) {
793 const struct iovec *vec = &iov[seg];
Chuck Lever02fe4942007-11-12 12:17:03 -0500794 result = nfs_direct_write_schedule_segment(dreq, vec,
795 pos, sync);
Chuck Lever19f73782007-11-12 12:16:47 -0500796 if (result < 0)
797 break;
798 requested_bytes += result;
799 if ((size_t)result < vec->iov_len)
800 break;
801 pos += vec->iov_len;
802 }
803
804 if (put_dreq(dreq))
805 nfs_direct_write_complete(dreq, dreq->inode);
806
807 if (requested_bytes != 0)
808 return 0;
809
810 if (result < 0)
811 return result;
812 return -EIO;
813}
814
Chuck Leverc216fd72007-11-12 12:16:52 -0500815static ssize_t nfs_direct_write(struct kiocb *iocb, const struct iovec *iov,
816 unsigned long nr_segs, loff_t pos,
817 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Trond Myklebust607f31e2006-06-28 16:52:45 -0400819 ssize_t result = 0;
Chuck Leverc89f2ee2006-03-20 13:44:33 -0500820 struct inode *inode = iocb->ki_filp->f_mapping->host;
Chuck Lever462d5b32006-03-20 13:44:32 -0500821 struct nfs_direct_req *dreq;
Trond Myklebustfad61492006-03-20 13:44:36 -0500822 size_t wsize = NFS_SERVER(inode)->wsize;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400823 int sync = NFS_UNSTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Trond Myklebust607f31e2006-06-28 16:52:45 -0400825 dreq = nfs_direct_req_alloc();
Chuck Lever462d5b32006-03-20 13:44:32 -0500826 if (!dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return -ENOMEM;
Trond Myklebust607f31e2006-06-28 16:52:45 -0400828 nfs_alloc_commit_data(dreq);
829
Trond Myklebustfad61492006-03-20 13:44:36 -0500830 if (dreq->commit_data == NULL || count < wsize)
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400831 sync = NFS_FILE_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Chuck Leverc89f2ee2006-03-20 13:44:33 -0500833 dreq->inode = inode;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400834 dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp));
Chuck Leverc89f2ee2006-03-20 13:44:33 -0500835 if (!is_sync_kiocb(iocb))
836 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Chuck Leverc216fd72007-11-12 12:16:52 -0500838 result = nfs_direct_write_schedule_iovec(dreq, iov, nr_segs, pos, sync);
Trond Myklebust607f31e2006-06-28 16:52:45 -0400839 if (!result)
840 result = nfs_direct_wait(dreq);
Trond Myklebustb4946ff2007-05-30 12:58:00 -0400841 nfs_direct_req_release(dreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return result;
844}
845
846/**
847 * nfs_file_direct_read - file direct read operation for NFS files
848 * @iocb: target I/O control block
Badari Pulavarty027445c2006-09-30 23:28:46 -0700849 * @iov: vector of user buffers into which to read data
850 * @nr_segs: size of iov vector
Chuck Lever88467052006-03-20 13:44:34 -0500851 * @pos: byte offset in file where reading starts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 *
853 * We use this function for direct reads instead of calling
854 * generic_file_aio_read() in order to avoid gfar's check to see if
855 * the request starts before the end of the file. For that check
856 * to work, we must generate a GETATTR before each direct read, and
857 * even then there is a window between the GETATTR and the subsequent
Chuck Lever88467052006-03-20 13:44:34 -0500858 * READ where the file size could change. Our preference is simply
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * to do all reads the application wants, and the server will take
860 * care of managing the end of file boundary.
Chuck Lever88467052006-03-20 13:44:34 -0500861 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 * This function also eliminates unnecessarily updating the file's
863 * atime locally, as the NFS server sets the file's atime, and this
864 * client must read the updated atime from the server back into its
865 * cache.
866 */
Badari Pulavarty027445c2006-09-30 23:28:46 -0700867ssize_t nfs_file_direct_read(struct kiocb *iocb, const struct iovec *iov,
868 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
870 ssize_t retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 struct address_space *mapping = file->f_mapping;
Chuck Leverc216fd72007-11-12 12:16:52 -0500873 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Chuck Leverc216fd72007-11-12 12:16:52 -0500875 count = iov_length(iov, nr_segs);
876 nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count);
877
878 dprintk("nfs: direct read(%s/%s, %zd@%Ld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800879 file->f_path.dentry->d_parent->d_name.name,
880 file->f_path.dentry->d_name.name,
Chuck Leverc216fd72007-11-12 12:16:52 -0500881 count, (long long) pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 retval = 0;
884 if (!count)
885 goto out;
886
Trond Myklebust29884df2005-12-13 16:13:54 -0500887 retval = nfs_sync_mapping(mapping);
888 if (retval)
889 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Chuck Leverc216fd72007-11-12 12:16:52 -0500891 retval = nfs_direct_read(iocb, iov, nr_segs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (retval > 0)
Chuck Lever0cdd80d2006-03-20 13:44:29 -0500893 iocb->ki_pos = pos + retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895out:
896 return retval;
897}
898
899/**
900 * nfs_file_direct_write - file direct write operation for NFS files
901 * @iocb: target I/O control block
Badari Pulavarty027445c2006-09-30 23:28:46 -0700902 * @iov: vector of user buffers from which to write data
903 * @nr_segs: size of iov vector
Chuck Lever88467052006-03-20 13:44:34 -0500904 * @pos: byte offset in file where writing starts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 *
906 * We use this function for direct writes instead of calling
907 * generic_file_aio_write() in order to avoid taking the inode
908 * semaphore and updating the i_size. The NFS server will set
909 * the new i_size and this client must read the updated size
910 * back into its cache. We let the server do generic write
911 * parameter checking and report problems.
912 *
913 * We also avoid an unnecessary invocation of generic_osync_inode(),
914 * as it is fairly meaningless to sync the metadata of an NFS file.
915 *
916 * We eliminate local atime updates, see direct read above.
917 *
918 * We avoid unnecessary page cache invalidations for normal cached
919 * readers of this file.
920 *
921 * Note that O_APPEND is not supported for NFS direct writes, as there
922 * is no atomic O_APPEND write facility in the NFS protocol.
923 */
Badari Pulavarty027445c2006-09-30 23:28:46 -0700924ssize_t nfs_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
925 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Chuck Lever070ea602007-05-19 17:22:52 -0400927 ssize_t retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct address_space *mapping = file->f_mapping;
Chuck Leverc216fd72007-11-12 12:16:52 -0500930 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Chuck Leverc216fd72007-11-12 12:16:52 -0500932 count = iov_length(iov, nr_segs);
933 nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count);
934
935 dfprintk(VFS, "nfs: direct write(%s/%s, %zd@%Ld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800936 file->f_path.dentry->d_parent->d_name.name,
937 file->f_path.dentry->d_name.name,
Chuck Leverc216fd72007-11-12 12:16:52 -0500938 count, (long long) pos);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700939
Chuck Leverce1a8e62005-11-30 18:08:17 -0500940 retval = generic_write_checks(file, &pos, &count, 0);
941 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 goto out;
Chuck Leverce1a8e62005-11-30 18:08:17 -0500943
944 retval = -EINVAL;
945 if ((ssize_t) count < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 retval = 0;
948 if (!count)
949 goto out;
Chuck Leverce1a8e62005-11-30 18:08:17 -0500950
Trond Myklebust29884df2005-12-13 16:13:54 -0500951 retval = nfs_sync_mapping(mapping);
952 if (retval)
953 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Chuck Leverc216fd72007-11-12 12:16:52 -0500955 retval = nfs_direct_write(iocb, iov, nr_segs, pos, count);
Chuck Lever9eafa8c2006-03-20 13:44:33 -0500956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (retval > 0)
Chuck Leverce1a8e62005-11-30 18:08:17 -0500958 iocb->ki_pos = pos + retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960out:
961 return retval;
962}
963
Chuck Lever88467052006-03-20 13:44:34 -0500964/**
965 * nfs_init_directcache - create a slab cache for nfs_direct_req structures
966 *
967 */
David Howellsf7b422b2006-06-09 09:34:33 -0400968int __init nfs_init_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
971 sizeof(struct nfs_direct_req),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800972 0, (SLAB_RECLAIM_ACCOUNT|
973 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900974 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (nfs_direct_cachep == NULL)
976 return -ENOMEM;
977
978 return 0;
979}
980
Chuck Lever88467052006-03-20 13:44:34 -0500981/**
David Howellsf7b422b2006-06-09 09:34:33 -0400982 * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures
Chuck Lever88467052006-03-20 13:44:34 -0500983 *
984 */
David Brownell266bee82006-06-27 12:59:15 -0700985void nfs_destroy_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700987 kmem_cache_destroy(nfs_direct_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}