11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * linux/fs/nfs/direct.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 2003 by Chuck Lever <cel@netapp.com> 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * High-performance uncached I/O for the Linux NFS client 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * There are important applications whose performance or correctness 91da177e4SLinus Torvalds * depends on uncached access to file data. Database clusters 101da177e4SLinus Torvalds * (multiple copies of the same instance running on separate hosts) 111da177e4SLinus Torvalds * implement their own cache coherency protocol that subsumes file 121da177e4SLinus Torvalds * system cache protocols. Applications that process datasets 131da177e4SLinus Torvalds * considerably larger than the client's memory do not always benefit 141da177e4SLinus Torvalds * from a local cache. A streaming video server, for instance, has no 151da177e4SLinus Torvalds * need to cache the contents of a file. 161da177e4SLinus Torvalds * 171da177e4SLinus Torvalds * When an application requests uncached I/O, all read and write requests 181da177e4SLinus Torvalds * are made directly to the server; data stored or fetched via these 191da177e4SLinus Torvalds * requests is not cached in the Linux page cache. The client does not 201da177e4SLinus Torvalds * correct unaligned requests from applications. All requested bytes are 211da177e4SLinus Torvalds * held on permanent storage before a direct write system call returns to 221da177e4SLinus Torvalds * an application. 231da177e4SLinus Torvalds * 241da177e4SLinus Torvalds * Solaris implements an uncached I/O facility called directio() that 251da177e4SLinus Torvalds * is used for backups and sequential I/O to very large files. Solaris 261da177e4SLinus Torvalds * also supports uncaching whole NFS partitions with "-o forcedirectio," 271da177e4SLinus Torvalds * an undocumented mount option. 281da177e4SLinus Torvalds * 291da177e4SLinus Torvalds * Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with 301da177e4SLinus Torvalds * help from Andrew Morton. 311da177e4SLinus Torvalds * 321da177e4SLinus Torvalds * 18 Dec 2001 Initial implementation for 2.4 --cel 331da177e4SLinus Torvalds * 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy 341da177e4SLinus Torvalds * 08 Jun 2003 Port to 2.5 APIs --cel 351da177e4SLinus Torvalds * 31 Mar 2004 Handle direct I/O without VFS support --cel 361da177e4SLinus Torvalds * 15 Sep 2004 Parallel async reads --cel 3788467055SChuck Lever * 04 May 2005 support O_DIRECT with aio --cel 381da177e4SLinus Torvalds * 391da177e4SLinus Torvalds */ 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds #include <linux/errno.h> 421da177e4SLinus Torvalds #include <linux/sched.h> 431da177e4SLinus Torvalds #include <linux/kernel.h> 441da177e4SLinus Torvalds #include <linux/file.h> 451da177e4SLinus Torvalds #include <linux/pagemap.h> 461da177e4SLinus Torvalds #include <linux/kref.h> 471da177e4SLinus Torvalds 481da177e4SLinus Torvalds #include <linux/nfs_fs.h> 491da177e4SLinus Torvalds #include <linux/nfs_page.h> 501da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h> 511da177e4SLinus Torvalds 521da177e4SLinus Torvalds #include <asm/system.h> 531da177e4SLinus Torvalds #include <asm/uaccess.h> 541da177e4SLinus Torvalds #include <asm/atomic.h> 551da177e4SLinus Torvalds 568d5658c9STrond Myklebust #include "internal.h" 5791d5b470SChuck Lever #include "iostat.h" 581da177e4SLinus Torvalds 591da177e4SLinus Torvalds #define NFSDBG_FACILITY NFSDBG_VFS 601da177e4SLinus Torvalds 61e18b890bSChristoph Lameter static struct kmem_cache *nfs_direct_cachep; 621da177e4SLinus Torvalds 631da177e4SLinus Torvalds /* 641da177e4SLinus Torvalds * This represents a set of asynchronous requests that we're waiting on 651da177e4SLinus Torvalds */ 661da177e4SLinus Torvalds struct nfs_direct_req { 671da177e4SLinus Torvalds struct kref kref; /* release manager */ 6815ce4a0cSChuck Lever 6915ce4a0cSChuck Lever /* I/O parameters */ 70a8881f5aSTrond Myklebust struct nfs_open_context *ctx; /* file open context info */ 7199514f8fSChuck Lever struct kiocb * iocb; /* controlling i/o request */ 7288467055SChuck Lever struct inode * inode; /* target file of i/o */ 7315ce4a0cSChuck Lever 7415ce4a0cSChuck Lever /* completion state */ 75607f31e8STrond Myklebust atomic_t io_count; /* i/os we're waiting for */ 7615ce4a0cSChuck Lever spinlock_t lock; /* protect completion state */ 7715ce4a0cSChuck Lever ssize_t count, /* bytes actually processed */ 781da177e4SLinus Torvalds error; /* any reported error */ 79d72b7a6bSTrond Myklebust struct completion completion; /* wait for i/o completion */ 80fad61490STrond Myklebust 81fad61490STrond Myklebust /* commit state */ 82607f31e8STrond Myklebust struct list_head rewrite_list; /* saved nfs_write_data structs */ 83fad61490STrond Myklebust struct nfs_write_data * commit_data; /* special write_data for commits */ 84fad61490STrond Myklebust int flags; 85fad61490STrond Myklebust #define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */ 86fad61490STrond Myklebust #define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */ 87fad61490STrond Myklebust struct nfs_writeverf verf; /* unstable write verifier */ 881da177e4SLinus Torvalds }; 891da177e4SLinus Torvalds 90fad61490STrond Myklebust static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode); 91607f31e8STrond Myklebust static const struct rpc_call_ops nfs_write_direct_ops; 92607f31e8STrond Myklebust 93607f31e8STrond Myklebust static inline void get_dreq(struct nfs_direct_req *dreq) 94607f31e8STrond Myklebust { 95607f31e8STrond Myklebust atomic_inc(&dreq->io_count); 96607f31e8STrond Myklebust } 97607f31e8STrond Myklebust 98607f31e8STrond Myklebust static inline int put_dreq(struct nfs_direct_req *dreq) 99607f31e8STrond Myklebust { 100607f31e8STrond Myklebust return atomic_dec_and_test(&dreq->io_count); 101607f31e8STrond Myklebust } 102607f31e8STrond Myklebust 1031da177e4SLinus Torvalds /** 104b8a32e2bSChuck Lever * nfs_direct_IO - NFS address space operation for direct I/O 105b8a32e2bSChuck Lever * @rw: direction (read or write) 106b8a32e2bSChuck Lever * @iocb: target I/O control block 107b8a32e2bSChuck Lever * @iov: array of vectors that define I/O buffer 108b8a32e2bSChuck Lever * @pos: offset in file to begin the operation 109b8a32e2bSChuck Lever * @nr_segs: size of iovec array 110b8a32e2bSChuck Lever * 111b8a32e2bSChuck Lever * The presence of this routine in the address space ops vector means 112b8a32e2bSChuck Lever * the NFS client supports direct I/O. However, we shunt off direct 113b8a32e2bSChuck Lever * read and write requests before the VFS gets them, so this method 114b8a32e2bSChuck Lever * should never be called. 1151da177e4SLinus Torvalds */ 116b8a32e2bSChuck Lever ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_t pos, unsigned long nr_segs) 117b8a32e2bSChuck Lever { 118b8a32e2bSChuck Lever dprintk("NFS: nfs_direct_IO (%s) off/no(%Ld/%lu) EINVAL\n", 11901cce933SJosef "Jeff" Sipek iocb->ki_filp->f_path.dentry->d_name.name, 120e99170ffSTrond Myklebust (long long) pos, nr_segs); 121b8a32e2bSChuck Lever 122b8a32e2bSChuck Lever return -EINVAL; 123b8a32e2bSChuck Lever } 124b8a32e2bSChuck Lever 125d4a8f367STrond Myklebust static void nfs_direct_dirty_pages(struct page **pages, unsigned int pgbase, size_t count) 1266b45d858STrond Myklebust { 127d4a8f367STrond Myklebust unsigned int npages; 128749e146eSChuck Lever unsigned int i; 129d4a8f367STrond Myklebust 130d4a8f367STrond Myklebust if (count == 0) 131d4a8f367STrond Myklebust return; 132d4a8f367STrond Myklebust pages += (pgbase >> PAGE_SHIFT); 133d4a8f367STrond Myklebust npages = (count + (pgbase & ~PAGE_MASK) + PAGE_SIZE - 1) >> PAGE_SHIFT; 1346b45d858STrond Myklebust for (i = 0; i < npages; i++) { 1356b45d858STrond Myklebust struct page *page = pages[i]; 136607f31e8STrond Myklebust if (!PageCompound(page)) 137d4a8f367STrond Myklebust set_page_dirty(page); 1386b45d858STrond Myklebust } 1399c93ab7dSChuck Lever } 1409c93ab7dSChuck Lever 141749e146eSChuck Lever static void nfs_direct_release_pages(struct page **pages, unsigned int npages) 1429c93ab7dSChuck Lever { 143749e146eSChuck Lever unsigned int i; 144607f31e8STrond Myklebust for (i = 0; i < npages; i++) 145607f31e8STrond Myklebust page_cache_release(pages[i]); 1466b45d858STrond Myklebust } 1476b45d858STrond Myklebust 14893619e59SChuck Lever static inline struct nfs_direct_req *nfs_direct_req_alloc(void) 1491da177e4SLinus Torvalds { 1501da177e4SLinus Torvalds struct nfs_direct_req *dreq; 1511da177e4SLinus Torvalds 152e94b1766SChristoph Lameter dreq = kmem_cache_alloc(nfs_direct_cachep, GFP_KERNEL); 1531da177e4SLinus Torvalds if (!dreq) 1541da177e4SLinus Torvalds return NULL; 1551da177e4SLinus Torvalds 1561da177e4SLinus Torvalds kref_init(&dreq->kref); 157607f31e8STrond Myklebust kref_get(&dreq->kref); 158d72b7a6bSTrond Myklebust init_completion(&dreq->completion); 159fad61490STrond Myklebust INIT_LIST_HEAD(&dreq->rewrite_list); 16093619e59SChuck Lever dreq->iocb = NULL; 161a8881f5aSTrond Myklebust dreq->ctx = NULL; 16215ce4a0cSChuck Lever spin_lock_init(&dreq->lock); 163607f31e8STrond Myklebust atomic_set(&dreq->io_count, 0); 16415ce4a0cSChuck Lever dreq->count = 0; 16515ce4a0cSChuck Lever dreq->error = 0; 166fad61490STrond Myklebust dreq->flags = 0; 16793619e59SChuck Lever 16893619e59SChuck Lever return dreq; 16993619e59SChuck Lever } 17093619e59SChuck Lever 171b4946ffbSTrond Myklebust static void nfs_direct_req_free(struct kref *kref) 1721da177e4SLinus Torvalds { 1731da177e4SLinus Torvalds struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref); 174a8881f5aSTrond Myklebust 175a8881f5aSTrond Myklebust if (dreq->ctx != NULL) 176a8881f5aSTrond Myklebust put_nfs_open_context(dreq->ctx); 1771da177e4SLinus Torvalds kmem_cache_free(nfs_direct_cachep, dreq); 1781da177e4SLinus Torvalds } 1791da177e4SLinus Torvalds 180b4946ffbSTrond Myklebust static void nfs_direct_req_release(struct nfs_direct_req *dreq) 181b4946ffbSTrond Myklebust { 182b4946ffbSTrond Myklebust kref_put(&dreq->kref, nfs_direct_req_free); 183b4946ffbSTrond Myklebust } 184b4946ffbSTrond Myklebust 185d4cc948bSChuck Lever /* 186bc0fb201SChuck Lever * Collects and returns the final error value/byte-count. 187bc0fb201SChuck Lever */ 188bc0fb201SChuck Lever static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq) 189bc0fb201SChuck Lever { 19015ce4a0cSChuck Lever ssize_t result = -EIOCBQUEUED; 191bc0fb201SChuck Lever 192bc0fb201SChuck Lever /* Async requests don't wait here */ 193bc0fb201SChuck Lever if (dreq->iocb) 194bc0fb201SChuck Lever goto out; 195bc0fb201SChuck Lever 196d72b7a6bSTrond Myklebust result = wait_for_completion_interruptible(&dreq->completion); 197bc0fb201SChuck Lever 198bc0fb201SChuck Lever if (!result) 19915ce4a0cSChuck Lever result = dreq->error; 200bc0fb201SChuck Lever if (!result) 20115ce4a0cSChuck Lever result = dreq->count; 202bc0fb201SChuck Lever 203bc0fb201SChuck Lever out: 204bc0fb201SChuck Lever return (ssize_t) result; 205bc0fb201SChuck Lever } 206bc0fb201SChuck Lever 207bc0fb201SChuck Lever /* 208607f31e8STrond Myklebust * Synchronous I/O uses a stack-allocated iocb. Thus we can't trust 209607f31e8STrond Myklebust * the iocb is still valid here if this is a synchronous request. 21063ab46abSChuck Lever */ 21163ab46abSChuck Lever static void nfs_direct_complete(struct nfs_direct_req *dreq) 21263ab46abSChuck Lever { 21363ab46abSChuck Lever if (dreq->iocb) { 21415ce4a0cSChuck Lever long res = (long) dreq->error; 21563ab46abSChuck Lever if (!res) 21615ce4a0cSChuck Lever res = (long) dreq->count; 21763ab46abSChuck Lever aio_complete(dreq->iocb, res, 0); 218d72b7a6bSTrond Myklebust } 219d72b7a6bSTrond Myklebust complete_all(&dreq->completion); 22063ab46abSChuck Lever 221b4946ffbSTrond Myklebust nfs_direct_req_release(dreq); 22263ab46abSChuck Lever } 22363ab46abSChuck Lever 22463ab46abSChuck Lever /* 225607f31e8STrond Myklebust * We must hold a reference to all the pages in this direct read request 226607f31e8STrond Myklebust * until the RPCs complete. This could be long *after* we are woken up in 227607f31e8STrond Myklebust * nfs_direct_wait (for instance, if someone hits ^C on a slow server). 22806cf6f2eSChuck Lever */ 229ec06c096STrond Myklebust static void nfs_direct_read_result(struct rpc_task *task, void *calldata) 2301da177e4SLinus Torvalds { 231ec06c096STrond Myklebust struct nfs_read_data *data = calldata; 2321da177e4SLinus Torvalds struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; 2331da177e4SLinus Torvalds 234ec06c096STrond Myklebust if (nfs_readpage_result(task, data) != 0) 235ec06c096STrond Myklebust return; 2361da177e4SLinus Torvalds 23715ce4a0cSChuck Lever spin_lock(&dreq->lock); 238d4a8f367STrond Myklebust if (unlikely(task->tk_status < 0)) { 23915ce4a0cSChuck Lever dreq->error = task->tk_status; 24015ce4a0cSChuck Lever spin_unlock(&dreq->lock); 241d4a8f367STrond Myklebust } else { 242d4a8f367STrond Myklebust dreq->count += data->res.count; 243d4a8f367STrond Myklebust spin_unlock(&dreq->lock); 244d4a8f367STrond Myklebust nfs_direct_dirty_pages(data->pagevec, 245d4a8f367STrond Myklebust data->args.pgbase, 246d4a8f367STrond Myklebust data->res.count); 247d4a8f367STrond Myklebust } 248d4a8f367STrond Myklebust nfs_direct_release_pages(data->pagevec, data->npages); 2491da177e4SLinus Torvalds 250607f31e8STrond Myklebust if (put_dreq(dreq)) 25163ab46abSChuck Lever nfs_direct_complete(dreq); 2521da177e4SLinus Torvalds } 2531da177e4SLinus Torvalds 254ec06c096STrond Myklebust static const struct rpc_call_ops nfs_read_direct_ops = { 255ec06c096STrond Myklebust .rpc_call_done = nfs_direct_read_result, 256ec06c096STrond Myklebust .rpc_release = nfs_readdata_release, 257ec06c096STrond Myklebust }; 258ec06c096STrond Myklebust 259d4cc948bSChuck Lever /* 260607f31e8STrond Myklebust * For each rsize'd chunk of the user's buffer, dispatch an NFS READ 261607f31e8STrond Myklebust * operation. If nfs_readdata_alloc() or get_user_pages() fails, 262607f31e8STrond Myklebust * bail and stop sending more reads. Read length accounting is 263607f31e8STrond Myklebust * handled automatically by nfs_direct_read_result(). Otherwise, if 264607f31e8STrond Myklebust * no requests have been sent, just return an error. 2651da177e4SLinus Torvalds */ 266*02fe4946SChuck Lever static ssize_t nfs_direct_read_schedule_segment(struct nfs_direct_req *dreq, 267*02fe4946SChuck Lever const struct iovec *iov, 268*02fe4946SChuck Lever loff_t pos) 2691da177e4SLinus Torvalds { 270a8881f5aSTrond Myklebust struct nfs_open_context *ctx = dreq->ctx; 27188be9f99STrond Myklebust struct inode *inode = ctx->path.dentry->d_inode; 272*02fe4946SChuck Lever unsigned long user_addr = (unsigned long)iov->iov_base; 273*02fe4946SChuck Lever size_t count = iov->iov_len; 2745dd602f2SChuck Lever size_t rsize = NFS_SERVER(inode)->rsize; 275607f31e8STrond Myklebust unsigned int pgbase; 276607f31e8STrond Myklebust int result; 277607f31e8STrond Myklebust ssize_t started = 0; 27882b145c5SChuck Lever 2791da177e4SLinus Torvalds do { 28082b145c5SChuck Lever struct nfs_read_data *data; 2815dd602f2SChuck Lever size_t bytes; 2821da177e4SLinus Torvalds 283e9f7bee1STrond Myklebust pgbase = user_addr & ~PAGE_MASK; 284e9f7bee1STrond Myklebust bytes = min(rsize,count); 285e9f7bee1STrond Myklebust 286607f31e8STrond Myklebust result = -ENOMEM; 2878d5658c9STrond Myklebust data = nfs_readdata_alloc(nfs_page_array_len(pgbase, bytes)); 288607f31e8STrond Myklebust if (unlikely(!data)) 289607f31e8STrond Myklebust break; 290607f31e8STrond Myklebust 291607f31e8STrond Myklebust down_read(¤t->mm->mmap_sem); 292607f31e8STrond Myklebust result = get_user_pages(current, current->mm, user_addr, 293607f31e8STrond Myklebust data->npages, 1, 0, data->pagevec, NULL); 294607f31e8STrond Myklebust up_read(¤t->mm->mmap_sem); 295749e146eSChuck Lever if (result < 0) { 296749e146eSChuck Lever nfs_readdata_release(data); 297749e146eSChuck Lever break; 298749e146eSChuck Lever } 299749e146eSChuck Lever if ((unsigned)result < data->npages) { 300d9df8d6bSTrond Myklebust bytes = result * PAGE_SIZE; 301d9df8d6bSTrond Myklebust if (bytes <= pgbase) { 302607f31e8STrond Myklebust nfs_direct_release_pages(data->pagevec, result); 303607f31e8STrond Myklebust nfs_readdata_release(data); 304607f31e8STrond Myklebust break; 305607f31e8STrond Myklebust } 306d9df8d6bSTrond Myklebust bytes -= pgbase; 307d9df8d6bSTrond Myklebust data->npages = result; 308d9df8d6bSTrond Myklebust } 30906cf6f2eSChuck Lever 310607f31e8STrond Myklebust get_dreq(dreq); 311607f31e8STrond Myklebust 312607f31e8STrond Myklebust data->req = (struct nfs_page *) dreq; 3131da177e4SLinus Torvalds data->inode = inode; 3141da177e4SLinus Torvalds data->cred = ctx->cred; 3151da177e4SLinus Torvalds data->args.fh = NFS_FH(inode); 3161da177e4SLinus Torvalds data->args.context = ctx; 31788467055SChuck Lever data->args.offset = pos; 3181da177e4SLinus Torvalds data->args.pgbase = pgbase; 319607f31e8STrond Myklebust data->args.pages = data->pagevec; 3201da177e4SLinus Torvalds data->args.count = bytes; 3211da177e4SLinus Torvalds data->res.fattr = &data->fattr; 3221da177e4SLinus Torvalds data->res.eof = 0; 3231da177e4SLinus Torvalds data->res.count = bytes; 3241da177e4SLinus Torvalds 325ec06c096STrond Myklebust rpc_init_task(&data->task, NFS_CLIENT(inode), RPC_TASK_ASYNC, 326ec06c096STrond Myklebust &nfs_read_direct_ops, data); 3271da177e4SLinus Torvalds NFS_PROTO(inode)->read_setup(data); 3281da177e4SLinus Torvalds 3291da177e4SLinus Torvalds data->task.tk_cookie = (unsigned long) inode; 3301da177e4SLinus Torvalds 3311da177e4SLinus Torvalds rpc_execute(&data->task); 3321da177e4SLinus Torvalds 333a3f565b1SChuck Lever dprintk("NFS: %5u initiated direct read call " 334a3f565b1SChuck Lever "(req %s/%Ld, %zu bytes @ offset %Lu)\n", 3351da177e4SLinus Torvalds data->task.tk_pid, 3361da177e4SLinus Torvalds inode->i_sb->s_id, 3371da177e4SLinus Torvalds (long long)NFS_FILEID(inode), 3381da177e4SLinus Torvalds bytes, 3391da177e4SLinus Torvalds (unsigned long long)data->args.offset); 3401da177e4SLinus Torvalds 341607f31e8STrond Myklebust started += bytes; 342607f31e8STrond Myklebust user_addr += bytes; 34388467055SChuck Lever pos += bytes; 344e9f7bee1STrond Myklebust /* FIXME: Remove this unnecessary math from final patch */ 3451da177e4SLinus Torvalds pgbase += bytes; 3461da177e4SLinus Torvalds pgbase &= ~PAGE_MASK; 347e9f7bee1STrond Myklebust BUG_ON(pgbase != (user_addr & ~PAGE_MASK)); 3481da177e4SLinus Torvalds 3491da177e4SLinus Torvalds count -= bytes; 3501da177e4SLinus Torvalds } while (count != 0); 351607f31e8STrond Myklebust 352607f31e8STrond Myklebust if (started) 353c216fd70SChuck Lever return started; 354607f31e8STrond Myklebust return result < 0 ? (ssize_t) result : -EFAULT; 35506cf6f2eSChuck Lever } 35606cf6f2eSChuck Lever 35719f73787SChuck Lever static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq, 35819f73787SChuck Lever const struct iovec *iov, 35919f73787SChuck Lever unsigned long nr_segs, 36019f73787SChuck Lever loff_t pos) 36119f73787SChuck Lever { 36219f73787SChuck Lever ssize_t result = -EINVAL; 36319f73787SChuck Lever size_t requested_bytes = 0; 36419f73787SChuck Lever unsigned long seg; 36519f73787SChuck Lever 36619f73787SChuck Lever get_dreq(dreq); 36719f73787SChuck Lever 36819f73787SChuck Lever for (seg = 0; seg < nr_segs; seg++) { 36919f73787SChuck Lever const struct iovec *vec = &iov[seg]; 370*02fe4946SChuck Lever result = nfs_direct_read_schedule_segment(dreq, vec, pos); 37119f73787SChuck Lever if (result < 0) 37219f73787SChuck Lever break; 37319f73787SChuck Lever requested_bytes += result; 37419f73787SChuck Lever if ((size_t)result < vec->iov_len) 37519f73787SChuck Lever break; 37619f73787SChuck Lever pos += vec->iov_len; 37719f73787SChuck Lever } 37819f73787SChuck Lever 37919f73787SChuck Lever if (put_dreq(dreq)) 38019f73787SChuck Lever nfs_direct_complete(dreq); 38119f73787SChuck Lever 38219f73787SChuck Lever if (requested_bytes != 0) 38319f73787SChuck Lever return 0; 38419f73787SChuck Lever 38519f73787SChuck Lever if (result < 0) 38619f73787SChuck Lever return result; 38719f73787SChuck Lever return -EIO; 38819f73787SChuck Lever } 38919f73787SChuck Lever 390c216fd70SChuck Lever static ssize_t nfs_direct_read(struct kiocb *iocb, const struct iovec *iov, 391c216fd70SChuck Lever unsigned long nr_segs, loff_t pos) 3921da177e4SLinus Torvalds { 393607f31e8STrond Myklebust ssize_t result = 0; 3941da177e4SLinus Torvalds sigset_t oldset; 39599514f8fSChuck Lever struct inode *inode = iocb->ki_filp->f_mapping->host; 3961da177e4SLinus Torvalds struct rpc_clnt *clnt = NFS_CLIENT(inode); 3971da177e4SLinus Torvalds struct nfs_direct_req *dreq; 3981da177e4SLinus Torvalds 399607f31e8STrond Myklebust dreq = nfs_direct_req_alloc(); 4001da177e4SLinus Torvalds if (!dreq) 4011da177e4SLinus Torvalds return -ENOMEM; 4021da177e4SLinus Torvalds 40391d5b470SChuck Lever dreq->inode = inode; 404cd3758e3STrond Myklebust dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp)); 405487b8372SChuck Lever if (!is_sync_kiocb(iocb)) 406487b8372SChuck Lever dreq->iocb = iocb; 4071da177e4SLinus Torvalds 4081da177e4SLinus Torvalds rpc_clnt_sigmask(clnt, &oldset); 409c216fd70SChuck Lever result = nfs_direct_read_schedule_iovec(dreq, iov, nr_segs, pos); 410607f31e8STrond Myklebust if (!result) 411bc0fb201SChuck Lever result = nfs_direct_wait(dreq); 4121da177e4SLinus Torvalds rpc_clnt_sigunmask(clnt, &oldset); 413b4946ffbSTrond Myklebust nfs_direct_req_release(dreq); 4141da177e4SLinus Torvalds 4151da177e4SLinus Torvalds return result; 4161da177e4SLinus Torvalds } 4171da177e4SLinus Torvalds 418fad61490STrond Myklebust static void nfs_direct_free_writedata(struct nfs_direct_req *dreq) 4191da177e4SLinus Torvalds { 420607f31e8STrond Myklebust while (!list_empty(&dreq->rewrite_list)) { 421607f31e8STrond Myklebust struct nfs_write_data *data = list_entry(dreq->rewrite_list.next, struct nfs_write_data, pages); 422fad61490STrond Myklebust list_del(&data->pages); 423607f31e8STrond Myklebust nfs_direct_release_pages(data->pagevec, data->npages); 424fad61490STrond Myklebust nfs_writedata_release(data); 425fad61490STrond Myklebust } 4261da177e4SLinus Torvalds } 4271da177e4SLinus Torvalds 428fad61490STrond Myklebust #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) 429fad61490STrond Myklebust static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq) 4301da177e4SLinus Torvalds { 431607f31e8STrond Myklebust struct inode *inode = dreq->inode; 432607f31e8STrond Myklebust struct list_head *p; 433607f31e8STrond Myklebust struct nfs_write_data *data; 4341da177e4SLinus Torvalds 435fad61490STrond Myklebust dreq->count = 0; 436607f31e8STrond Myklebust get_dreq(dreq); 4371da177e4SLinus Torvalds 438607f31e8STrond Myklebust list_for_each(p, &dreq->rewrite_list) { 439607f31e8STrond Myklebust data = list_entry(p, struct nfs_write_data, pages); 440607f31e8STrond Myklebust 441607f31e8STrond Myklebust get_dreq(dreq); 442607f31e8STrond Myklebust 443607f31e8STrond Myklebust /* 444607f31e8STrond Myklebust * Reset data->res. 445607f31e8STrond Myklebust */ 446607f31e8STrond Myklebust nfs_fattr_init(&data->fattr); 447607f31e8STrond Myklebust data->res.count = data->args.count; 448607f31e8STrond Myklebust memset(&data->verf, 0, sizeof(data->verf)); 449607f31e8STrond Myklebust 450607f31e8STrond Myklebust /* 451607f31e8STrond Myklebust * Reuse data->task; data->args should not have changed 452607f31e8STrond Myklebust * since the original request was sent. 453607f31e8STrond Myklebust */ 454607f31e8STrond Myklebust rpc_init_task(&data->task, NFS_CLIENT(inode), RPC_TASK_ASYNC, 455607f31e8STrond Myklebust &nfs_write_direct_ops, data); 456607f31e8STrond Myklebust NFS_PROTO(inode)->write_setup(data, FLUSH_STABLE); 457607f31e8STrond Myklebust 458607f31e8STrond Myklebust data->task.tk_priority = RPC_PRIORITY_NORMAL; 459607f31e8STrond Myklebust data->task.tk_cookie = (unsigned long) inode; 460607f31e8STrond Myklebust 461607f31e8STrond Myklebust /* 462607f31e8STrond Myklebust * We're called via an RPC callback, so BKL is already held. 463607f31e8STrond Myklebust */ 464607f31e8STrond Myklebust rpc_execute(&data->task); 465607f31e8STrond Myklebust 466607f31e8STrond Myklebust dprintk("NFS: %5u rescheduled direct write call (req %s/%Ld, %u bytes @ offset %Lu)\n", 467607f31e8STrond Myklebust data->task.tk_pid, 468607f31e8STrond Myklebust inode->i_sb->s_id, 469607f31e8STrond Myklebust (long long)NFS_FILEID(inode), 470607f31e8STrond Myklebust data->args.count, 471607f31e8STrond Myklebust (unsigned long long)data->args.offset); 472607f31e8STrond Myklebust } 473607f31e8STrond Myklebust 474607f31e8STrond Myklebust if (put_dreq(dreq)) 475607f31e8STrond Myklebust nfs_direct_write_complete(dreq, inode); 476fad61490STrond Myklebust } 4771da177e4SLinus Torvalds 478fad61490STrond Myklebust static void nfs_direct_commit_result(struct rpc_task *task, void *calldata) 479fad61490STrond Myklebust { 480fad61490STrond Myklebust struct nfs_write_data *data = calldata; 481fad61490STrond Myklebust struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; 4821da177e4SLinus Torvalds 483fad61490STrond Myklebust /* Call the NFS version-specific code */ 484fad61490STrond Myklebust if (NFS_PROTO(data->inode)->commit_done(task, data) != 0) 485fad61490STrond Myklebust return; 486fad61490STrond Myklebust if (unlikely(task->tk_status < 0)) { 48760fa3f76STrond Myklebust dprintk("NFS: %5u commit failed with error %d.\n", 48860fa3f76STrond Myklebust task->tk_pid, task->tk_status); 489fad61490STrond Myklebust dreq->flags = NFS_ODIRECT_RESCHED_WRITES; 49060fa3f76STrond Myklebust } else if (memcmp(&dreq->verf, &data->verf, sizeof(data->verf))) { 491fad61490STrond Myklebust dprintk("NFS: %5u commit verify failed\n", task->tk_pid); 492fad61490STrond Myklebust dreq->flags = NFS_ODIRECT_RESCHED_WRITES; 493fad61490STrond Myklebust } 494fad61490STrond Myklebust 495fad61490STrond Myklebust dprintk("NFS: %5u commit returned %d\n", task->tk_pid, task->tk_status); 496fad61490STrond Myklebust nfs_direct_write_complete(dreq, data->inode); 497fad61490STrond Myklebust } 498fad61490STrond Myklebust 499fad61490STrond Myklebust static const struct rpc_call_ops nfs_commit_direct_ops = { 500fad61490STrond Myklebust .rpc_call_done = nfs_direct_commit_result, 501fad61490STrond Myklebust .rpc_release = nfs_commit_release, 502fad61490STrond Myklebust }; 503fad61490STrond Myklebust 504fad61490STrond Myklebust static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq) 505fad61490STrond Myklebust { 506fad61490STrond Myklebust struct nfs_write_data *data = dreq->commit_data; 507fad61490STrond Myklebust 508fad61490STrond Myklebust data->inode = dreq->inode; 509a8881f5aSTrond Myklebust data->cred = dreq->ctx->cred; 510fad61490STrond Myklebust 511fad61490STrond Myklebust data->args.fh = NFS_FH(data->inode); 512607f31e8STrond Myklebust data->args.offset = 0; 513607f31e8STrond Myklebust data->args.count = 0; 514fad61490STrond Myklebust data->res.count = 0; 515fad61490STrond Myklebust data->res.fattr = &data->fattr; 516fad61490STrond Myklebust data->res.verf = &data->verf; 517fad61490STrond Myklebust 518fad61490STrond Myklebust rpc_init_task(&data->task, NFS_CLIENT(dreq->inode), RPC_TASK_ASYNC, 519fad61490STrond Myklebust &nfs_commit_direct_ops, data); 520fad61490STrond Myklebust NFS_PROTO(data->inode)->commit_setup(data, 0); 521fad61490STrond Myklebust 522fad61490STrond Myklebust data->task.tk_priority = RPC_PRIORITY_NORMAL; 523fad61490STrond Myklebust data->task.tk_cookie = (unsigned long)data->inode; 524fad61490STrond Myklebust /* Note: task.tk_ops->rpc_release will free dreq->commit_data */ 525fad61490STrond Myklebust dreq->commit_data = NULL; 526fad61490STrond Myklebust 527e99170ffSTrond Myklebust dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid); 5281da177e4SLinus Torvalds 529fad61490STrond Myklebust rpc_execute(&data->task); 5301da177e4SLinus Torvalds } 5311da177e4SLinus Torvalds 532fad61490STrond Myklebust static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode) 5331da177e4SLinus Torvalds { 534fad61490STrond Myklebust int flags = dreq->flags; 5351da177e4SLinus Torvalds 536fad61490STrond Myklebust dreq->flags = 0; 537fad61490STrond Myklebust switch (flags) { 538fad61490STrond Myklebust case NFS_ODIRECT_DO_COMMIT: 539fad61490STrond Myklebust nfs_direct_commit_schedule(dreq); 5401da177e4SLinus Torvalds break; 541fad61490STrond Myklebust case NFS_ODIRECT_RESCHED_WRITES: 542fad61490STrond Myklebust nfs_direct_write_reschedule(dreq); 5431da177e4SLinus Torvalds break; 5441da177e4SLinus Torvalds default: 545fad61490STrond Myklebust if (dreq->commit_data != NULL) 546fad61490STrond Myklebust nfs_commit_free(dreq->commit_data); 547fad61490STrond Myklebust nfs_direct_free_writedata(dreq); 548cd9ae2b6STrond Myklebust nfs_zap_mapping(inode, inode->i_mapping); 549fad61490STrond Myklebust nfs_direct_complete(dreq); 5501da177e4SLinus Torvalds } 551fad61490STrond Myklebust } 552fad61490STrond Myklebust 553fad61490STrond Myklebust static void nfs_alloc_commit_data(struct nfs_direct_req *dreq) 554fad61490STrond Myklebust { 555e9f7bee1STrond Myklebust dreq->commit_data = nfs_commit_alloc(); 556fad61490STrond Myklebust if (dreq->commit_data != NULL) 557fad61490STrond Myklebust dreq->commit_data->req = (struct nfs_page *) dreq; 558fad61490STrond Myklebust } 559fad61490STrond Myklebust #else 560fad61490STrond Myklebust static inline void nfs_alloc_commit_data(struct nfs_direct_req *dreq) 561fad61490STrond Myklebust { 562fad61490STrond Myklebust dreq->commit_data = NULL; 563fad61490STrond Myklebust } 564fad61490STrond Myklebust 565fad61490STrond Myklebust static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode) 566fad61490STrond Myklebust { 567fad61490STrond Myklebust nfs_direct_free_writedata(dreq); 568cd9ae2b6STrond Myklebust nfs_zap_mapping(inode, inode->i_mapping); 569fad61490STrond Myklebust nfs_direct_complete(dreq); 570fad61490STrond Myklebust } 571fad61490STrond Myklebust #endif 572fad61490STrond Myklebust 573462d5b32SChuck Lever static void nfs_direct_write_result(struct rpc_task *task, void *calldata) 574462d5b32SChuck Lever { 575462d5b32SChuck Lever struct nfs_write_data *data = calldata; 576462d5b32SChuck Lever struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; 577462d5b32SChuck Lever int status = task->tk_status; 578462d5b32SChuck Lever 579462d5b32SChuck Lever if (nfs_writeback_done(task, data) != 0) 580462d5b32SChuck Lever return; 581462d5b32SChuck Lever 58215ce4a0cSChuck Lever spin_lock(&dreq->lock); 583462d5b32SChuck Lever 58460fa3f76STrond Myklebust if (unlikely(status < 0)) { 585432409eeSNeil Brown /* An error has occurred, so we should not commit */ 58660fa3f76STrond Myklebust dreq->flags = 0; 58760fa3f76STrond Myklebust dreq->error = status; 588eda3cef8STrond Myklebust } 589432409eeSNeil Brown if (unlikely(dreq->error != 0)) 590432409eeSNeil Brown goto out_unlock; 591eda3cef8STrond Myklebust 59215ce4a0cSChuck Lever dreq->count += data->res.count; 59315ce4a0cSChuck Lever 594fad61490STrond Myklebust if (data->res.verf->committed != NFS_FILE_SYNC) { 595fad61490STrond Myklebust switch (dreq->flags) { 596fad61490STrond Myklebust case 0: 597fad61490STrond Myklebust memcpy(&dreq->verf, &data->verf, sizeof(dreq->verf)); 598fad61490STrond Myklebust dreq->flags = NFS_ODIRECT_DO_COMMIT; 599fad61490STrond Myklebust break; 600fad61490STrond Myklebust case NFS_ODIRECT_DO_COMMIT: 601fad61490STrond Myklebust if (memcmp(&dreq->verf, &data->verf, sizeof(dreq->verf))) { 602fad61490STrond Myklebust dprintk("NFS: %5u write verify failed\n", task->tk_pid); 603fad61490STrond Myklebust dreq->flags = NFS_ODIRECT_RESCHED_WRITES; 604fad61490STrond Myklebust } 605fad61490STrond Myklebust } 606fad61490STrond Myklebust } 607eda3cef8STrond Myklebust out_unlock: 608fad61490STrond Myklebust spin_unlock(&dreq->lock); 609fad61490STrond Myklebust } 610fad61490STrond Myklebust 611fad61490STrond Myklebust /* 612fad61490STrond Myklebust * NB: Return the value of the first error return code. Subsequent 613fad61490STrond Myklebust * errors after the first one are ignored. 614fad61490STrond Myklebust */ 615fad61490STrond Myklebust static void nfs_direct_write_release(void *calldata) 616fad61490STrond Myklebust { 617fad61490STrond Myklebust struct nfs_write_data *data = calldata; 618fad61490STrond Myklebust struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; 619fad61490STrond Myklebust 620607f31e8STrond Myklebust if (put_dreq(dreq)) 621fad61490STrond Myklebust nfs_direct_write_complete(dreq, data->inode); 622462d5b32SChuck Lever } 623462d5b32SChuck Lever 624462d5b32SChuck Lever static const struct rpc_call_ops nfs_write_direct_ops = { 625462d5b32SChuck Lever .rpc_call_done = nfs_direct_write_result, 626fad61490STrond Myklebust .rpc_release = nfs_direct_write_release, 627462d5b32SChuck Lever }; 628462d5b32SChuck Lever 629462d5b32SChuck Lever /* 630607f31e8STrond Myklebust * For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE 631607f31e8STrond Myklebust * operation. If nfs_writedata_alloc() or get_user_pages() fails, 632607f31e8STrond Myklebust * bail and stop sending more writes. Write length accounting is 633607f31e8STrond Myklebust * handled automatically by nfs_direct_write_result(). Otherwise, if 634607f31e8STrond Myklebust * no requests have been sent, just return an error. 635462d5b32SChuck Lever */ 636*02fe4946SChuck Lever static ssize_t nfs_direct_write_schedule_segment(struct nfs_direct_req *dreq, 637*02fe4946SChuck Lever const struct iovec *iov, 638*02fe4946SChuck Lever loff_t pos, int sync) 639462d5b32SChuck Lever { 640a8881f5aSTrond Myklebust struct nfs_open_context *ctx = dreq->ctx; 64188be9f99STrond Myklebust struct inode *inode = ctx->path.dentry->d_inode; 642*02fe4946SChuck Lever unsigned long user_addr = (unsigned long)iov->iov_base; 643*02fe4946SChuck Lever size_t count = iov->iov_len; 644462d5b32SChuck Lever size_t wsize = NFS_SERVER(inode)->wsize; 645607f31e8STrond Myklebust unsigned int pgbase; 646607f31e8STrond Myklebust int result; 647607f31e8STrond Myklebust ssize_t started = 0; 64882b145c5SChuck Lever 649462d5b32SChuck Lever do { 65082b145c5SChuck Lever struct nfs_write_data *data; 651462d5b32SChuck Lever size_t bytes; 652462d5b32SChuck Lever 653e9f7bee1STrond Myklebust pgbase = user_addr & ~PAGE_MASK; 654e9f7bee1STrond Myklebust bytes = min(wsize,count); 655e9f7bee1STrond Myklebust 656607f31e8STrond Myklebust result = -ENOMEM; 6578d5658c9STrond Myklebust data = nfs_writedata_alloc(nfs_page_array_len(pgbase, bytes)); 658607f31e8STrond Myklebust if (unlikely(!data)) 659607f31e8STrond Myklebust break; 660607f31e8STrond Myklebust 661607f31e8STrond Myklebust down_read(¤t->mm->mmap_sem); 662607f31e8STrond Myklebust result = get_user_pages(current, current->mm, user_addr, 663607f31e8STrond Myklebust data->npages, 0, 0, data->pagevec, NULL); 664607f31e8STrond Myklebust up_read(¤t->mm->mmap_sem); 665749e146eSChuck Lever if (result < 0) { 666749e146eSChuck Lever nfs_writedata_release(data); 667749e146eSChuck Lever break; 668749e146eSChuck Lever } 669749e146eSChuck Lever if ((unsigned)result < data->npages) { 670d9df8d6bSTrond Myklebust bytes = result * PAGE_SIZE; 671d9df8d6bSTrond Myklebust if (bytes <= pgbase) { 672607f31e8STrond Myklebust nfs_direct_release_pages(data->pagevec, result); 673607f31e8STrond Myklebust nfs_writedata_release(data); 674607f31e8STrond Myklebust break; 675607f31e8STrond Myklebust } 676d9df8d6bSTrond Myklebust bytes -= pgbase; 677d9df8d6bSTrond Myklebust data->npages = result; 678d9df8d6bSTrond Myklebust } 679607f31e8STrond Myklebust 680607f31e8STrond Myklebust get_dreq(dreq); 681607f31e8STrond Myklebust 682fad61490STrond Myklebust list_move_tail(&data->pages, &dreq->rewrite_list); 683462d5b32SChuck Lever 684607f31e8STrond Myklebust data->req = (struct nfs_page *) dreq; 685462d5b32SChuck Lever data->inode = inode; 686462d5b32SChuck Lever data->cred = ctx->cred; 687462d5b32SChuck Lever data->args.fh = NFS_FH(inode); 688462d5b32SChuck Lever data->args.context = ctx; 68988467055SChuck Lever data->args.offset = pos; 690462d5b32SChuck Lever data->args.pgbase = pgbase; 691607f31e8STrond Myklebust data->args.pages = data->pagevec; 692462d5b32SChuck Lever data->args.count = bytes; 693462d5b32SChuck Lever data->res.fattr = &data->fattr; 694462d5b32SChuck Lever data->res.count = bytes; 69547989d74SChuck Lever data->res.verf = &data->verf; 696462d5b32SChuck Lever 697462d5b32SChuck Lever rpc_init_task(&data->task, NFS_CLIENT(inode), RPC_TASK_ASYNC, 698462d5b32SChuck Lever &nfs_write_direct_ops, data); 699fad61490STrond Myklebust NFS_PROTO(inode)->write_setup(data, sync); 700462d5b32SChuck Lever 701462d5b32SChuck Lever data->task.tk_priority = RPC_PRIORITY_NORMAL; 702462d5b32SChuck Lever data->task.tk_cookie = (unsigned long) inode; 7031da177e4SLinus Torvalds 704462d5b32SChuck Lever rpc_execute(&data->task); 7051da177e4SLinus Torvalds 706a3f565b1SChuck Lever dprintk("NFS: %5u initiated direct write call " 707a3f565b1SChuck Lever "(req %s/%Ld, %zu bytes @ offset %Lu)\n", 708462d5b32SChuck Lever data->task.tk_pid, 709462d5b32SChuck Lever inode->i_sb->s_id, 710462d5b32SChuck Lever (long long)NFS_FILEID(inode), 711462d5b32SChuck Lever bytes, 712462d5b32SChuck Lever (unsigned long long)data->args.offset); 713462d5b32SChuck Lever 714607f31e8STrond Myklebust started += bytes; 715607f31e8STrond Myklebust user_addr += bytes; 71688467055SChuck Lever pos += bytes; 717e9f7bee1STrond Myklebust 718e9f7bee1STrond Myklebust /* FIXME: Remove this useless math from the final patch */ 719462d5b32SChuck Lever pgbase += bytes; 720462d5b32SChuck Lever pgbase &= ~PAGE_MASK; 721e9f7bee1STrond Myklebust BUG_ON(pgbase != (user_addr & ~PAGE_MASK)); 722462d5b32SChuck Lever 723462d5b32SChuck Lever count -= bytes; 724462d5b32SChuck Lever } while (count != 0); 725607f31e8STrond Myklebust 726607f31e8STrond Myklebust if (started) 727c216fd70SChuck Lever return started; 728607f31e8STrond Myklebust return result < 0 ? (ssize_t) result : -EFAULT; 72906cf6f2eSChuck Lever } 73006cf6f2eSChuck Lever 73119f73787SChuck Lever static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq, 73219f73787SChuck Lever const struct iovec *iov, 73319f73787SChuck Lever unsigned long nr_segs, 73419f73787SChuck Lever loff_t pos, int sync) 73519f73787SChuck Lever { 73619f73787SChuck Lever ssize_t result = 0; 73719f73787SChuck Lever size_t requested_bytes = 0; 73819f73787SChuck Lever unsigned long seg; 73919f73787SChuck Lever 74019f73787SChuck Lever get_dreq(dreq); 74119f73787SChuck Lever 74219f73787SChuck Lever for (seg = 0; seg < nr_segs; seg++) { 74319f73787SChuck Lever const struct iovec *vec = &iov[seg]; 744*02fe4946SChuck Lever result = nfs_direct_write_schedule_segment(dreq, vec, 74519f73787SChuck Lever pos, sync); 74619f73787SChuck Lever if (result < 0) 74719f73787SChuck Lever break; 74819f73787SChuck Lever requested_bytes += result; 74919f73787SChuck Lever if ((size_t)result < vec->iov_len) 75019f73787SChuck Lever break; 75119f73787SChuck Lever pos += vec->iov_len; 75219f73787SChuck Lever } 75319f73787SChuck Lever 75419f73787SChuck Lever if (put_dreq(dreq)) 75519f73787SChuck Lever nfs_direct_write_complete(dreq, dreq->inode); 75619f73787SChuck Lever 75719f73787SChuck Lever if (requested_bytes != 0) 75819f73787SChuck Lever return 0; 75919f73787SChuck Lever 76019f73787SChuck Lever if (result < 0) 76119f73787SChuck Lever return result; 76219f73787SChuck Lever return -EIO; 76319f73787SChuck Lever } 76419f73787SChuck Lever 765c216fd70SChuck Lever static ssize_t nfs_direct_write(struct kiocb *iocb, const struct iovec *iov, 766c216fd70SChuck Lever unsigned long nr_segs, loff_t pos, 767c216fd70SChuck Lever size_t count) 768462d5b32SChuck Lever { 769607f31e8STrond Myklebust ssize_t result = 0; 770462d5b32SChuck Lever sigset_t oldset; 771c89f2ee5SChuck Lever struct inode *inode = iocb->ki_filp->f_mapping->host; 772462d5b32SChuck Lever struct rpc_clnt *clnt = NFS_CLIENT(inode); 773462d5b32SChuck Lever struct nfs_direct_req *dreq; 774fad61490STrond Myklebust size_t wsize = NFS_SERVER(inode)->wsize; 775fad61490STrond Myklebust int sync = 0; 776462d5b32SChuck Lever 777607f31e8STrond Myklebust dreq = nfs_direct_req_alloc(); 778462d5b32SChuck Lever if (!dreq) 779462d5b32SChuck Lever return -ENOMEM; 780607f31e8STrond Myklebust nfs_alloc_commit_data(dreq); 781607f31e8STrond Myklebust 782fad61490STrond Myklebust if (dreq->commit_data == NULL || count < wsize) 783fad61490STrond Myklebust sync = FLUSH_STABLE; 784462d5b32SChuck Lever 785c89f2ee5SChuck Lever dreq->inode = inode; 786cd3758e3STrond Myklebust dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp)); 787c89f2ee5SChuck Lever if (!is_sync_kiocb(iocb)) 788c89f2ee5SChuck Lever dreq->iocb = iocb; 789462d5b32SChuck Lever 790462d5b32SChuck Lever rpc_clnt_sigmask(clnt, &oldset); 791c216fd70SChuck Lever result = nfs_direct_write_schedule_iovec(dreq, iov, nr_segs, pos, sync); 792607f31e8STrond Myklebust if (!result) 793c89f2ee5SChuck Lever result = nfs_direct_wait(dreq); 794462d5b32SChuck Lever rpc_clnt_sigunmask(clnt, &oldset); 795b4946ffbSTrond Myklebust nfs_direct_req_release(dreq); 796462d5b32SChuck Lever 7971da177e4SLinus Torvalds return result; 7981da177e4SLinus Torvalds } 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvalds /** 8011da177e4SLinus Torvalds * nfs_file_direct_read - file direct read operation for NFS files 8021da177e4SLinus Torvalds * @iocb: target I/O control block 803027445c3SBadari Pulavarty * @iov: vector of user buffers into which to read data 804027445c3SBadari Pulavarty * @nr_segs: size of iov vector 80588467055SChuck Lever * @pos: byte offset in file where reading starts 8061da177e4SLinus Torvalds * 8071da177e4SLinus Torvalds * We use this function for direct reads instead of calling 8081da177e4SLinus Torvalds * generic_file_aio_read() in order to avoid gfar's check to see if 8091da177e4SLinus Torvalds * the request starts before the end of the file. For that check 8101da177e4SLinus Torvalds * to work, we must generate a GETATTR before each direct read, and 8111da177e4SLinus Torvalds * even then there is a window between the GETATTR and the subsequent 81288467055SChuck Lever * READ where the file size could change. Our preference is simply 8131da177e4SLinus Torvalds * to do all reads the application wants, and the server will take 8141da177e4SLinus Torvalds * care of managing the end of file boundary. 8151da177e4SLinus Torvalds * 8161da177e4SLinus Torvalds * This function also eliminates unnecessarily updating the file's 8171da177e4SLinus Torvalds * atime locally, as the NFS server sets the file's atime, and this 8181da177e4SLinus Torvalds * client must read the updated atime from the server back into its 8191da177e4SLinus Torvalds * cache. 8201da177e4SLinus Torvalds */ 821027445c3SBadari Pulavarty ssize_t nfs_file_direct_read(struct kiocb *iocb, const struct iovec *iov, 822027445c3SBadari Pulavarty unsigned long nr_segs, loff_t pos) 8231da177e4SLinus Torvalds { 8241da177e4SLinus Torvalds ssize_t retval = -EINVAL; 8251da177e4SLinus Torvalds struct file *file = iocb->ki_filp; 8261da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 827c216fd70SChuck Lever size_t count; 8281da177e4SLinus Torvalds 829c216fd70SChuck Lever count = iov_length(iov, nr_segs); 830c216fd70SChuck Lever nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count); 831c216fd70SChuck Lever 832c216fd70SChuck Lever dprintk("nfs: direct read(%s/%s, %zd@%Ld)\n", 83301cce933SJosef "Jeff" Sipek file->f_path.dentry->d_parent->d_name.name, 83401cce933SJosef "Jeff" Sipek file->f_path.dentry->d_name.name, 835c216fd70SChuck Lever count, (long long) pos); 8361da177e4SLinus Torvalds 8371da177e4SLinus Torvalds retval = 0; 8381da177e4SLinus Torvalds if (!count) 8391da177e4SLinus Torvalds goto out; 8401da177e4SLinus Torvalds 84129884df0STrond Myklebust retval = nfs_sync_mapping(mapping); 8421da177e4SLinus Torvalds if (retval) 8431da177e4SLinus Torvalds goto out; 8441da177e4SLinus Torvalds 845c216fd70SChuck Lever retval = nfs_direct_read(iocb, iov, nr_segs, pos); 8461da177e4SLinus Torvalds if (retval > 0) 8470cdd80d0SChuck Lever iocb->ki_pos = pos + retval; 8481da177e4SLinus Torvalds 8491da177e4SLinus Torvalds out: 8501da177e4SLinus Torvalds return retval; 8511da177e4SLinus Torvalds } 8521da177e4SLinus Torvalds 8531da177e4SLinus Torvalds /** 8541da177e4SLinus Torvalds * nfs_file_direct_write - file direct write operation for NFS files 8551da177e4SLinus Torvalds * @iocb: target I/O control block 856027445c3SBadari Pulavarty * @iov: vector of user buffers from which to write data 857027445c3SBadari Pulavarty * @nr_segs: size of iov vector 85888467055SChuck Lever * @pos: byte offset in file where writing starts 8591da177e4SLinus Torvalds * 8601da177e4SLinus Torvalds * We use this function for direct writes instead of calling 8611da177e4SLinus Torvalds * generic_file_aio_write() in order to avoid taking the inode 8621da177e4SLinus Torvalds * semaphore and updating the i_size. The NFS server will set 8631da177e4SLinus Torvalds * the new i_size and this client must read the updated size 8641da177e4SLinus Torvalds * back into its cache. We let the server do generic write 8651da177e4SLinus Torvalds * parameter checking and report problems. 8661da177e4SLinus Torvalds * 8671da177e4SLinus Torvalds * We also avoid an unnecessary invocation of generic_osync_inode(), 8681da177e4SLinus Torvalds * as it is fairly meaningless to sync the metadata of an NFS file. 8691da177e4SLinus Torvalds * 8701da177e4SLinus Torvalds * We eliminate local atime updates, see direct read above. 8711da177e4SLinus Torvalds * 8721da177e4SLinus Torvalds * We avoid unnecessary page cache invalidations for normal cached 8731da177e4SLinus Torvalds * readers of this file. 8741da177e4SLinus Torvalds * 8751da177e4SLinus Torvalds * Note that O_APPEND is not supported for NFS direct writes, as there 8761da177e4SLinus Torvalds * is no atomic O_APPEND write facility in the NFS protocol. 8771da177e4SLinus Torvalds */ 878027445c3SBadari Pulavarty ssize_t nfs_file_direct_write(struct kiocb *iocb, const struct iovec *iov, 879027445c3SBadari Pulavarty unsigned long nr_segs, loff_t pos) 8801da177e4SLinus Torvalds { 881070ea602SChuck Lever ssize_t retval = -EINVAL; 8821da177e4SLinus Torvalds struct file *file = iocb->ki_filp; 8831da177e4SLinus Torvalds struct address_space *mapping = file->f_mapping; 884c216fd70SChuck Lever size_t count; 8851da177e4SLinus Torvalds 886c216fd70SChuck Lever count = iov_length(iov, nr_segs); 887c216fd70SChuck Lever nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count); 888c216fd70SChuck Lever 889c216fd70SChuck Lever dfprintk(VFS, "nfs: direct write(%s/%s, %zd@%Ld)\n", 89001cce933SJosef "Jeff" Sipek file->f_path.dentry->d_parent->d_name.name, 89101cce933SJosef "Jeff" Sipek file->f_path.dentry->d_name.name, 892c216fd70SChuck Lever count, (long long) pos); 893027445c3SBadari Pulavarty 894ce1a8e67SChuck Lever retval = generic_write_checks(file, &pos, &count, 0); 895ce1a8e67SChuck Lever if (retval) 8961da177e4SLinus Torvalds goto out; 897b9148c6bSChuck Lever if (!count) 898b9148c6bSChuck Lever goto out; /* return 0 */ 899ce1a8e67SChuck Lever 900ce1a8e67SChuck Lever retval = -EINVAL; 901ce1a8e67SChuck Lever if ((ssize_t) count < 0) 9021da177e4SLinus Torvalds goto out; 9031da177e4SLinus Torvalds retval = 0; 9041da177e4SLinus Torvalds if (!count) 9051da177e4SLinus Torvalds goto out; 906ce1a8e67SChuck Lever 90729884df0STrond Myklebust retval = nfs_sync_mapping(mapping); 9081da177e4SLinus Torvalds if (retval) 9091da177e4SLinus Torvalds goto out; 9101da177e4SLinus Torvalds 911c216fd70SChuck Lever retval = nfs_direct_write(iocb, iov, nr_segs, pos, count); 9129eafa8ccSChuck Lever 9131da177e4SLinus Torvalds if (retval > 0) 914ce1a8e67SChuck Lever iocb->ki_pos = pos + retval; 9151da177e4SLinus Torvalds 9161da177e4SLinus Torvalds out: 9171da177e4SLinus Torvalds return retval; 9181da177e4SLinus Torvalds } 9191da177e4SLinus Torvalds 92088467055SChuck Lever /** 92188467055SChuck Lever * nfs_init_directcache - create a slab cache for nfs_direct_req structures 92288467055SChuck Lever * 92388467055SChuck Lever */ 924f7b422b1SDavid Howells int __init nfs_init_directcache(void) 9251da177e4SLinus Torvalds { 9261da177e4SLinus Torvalds nfs_direct_cachep = kmem_cache_create("nfs_direct_cache", 9271da177e4SLinus Torvalds sizeof(struct nfs_direct_req), 928fffb60f9SPaul Jackson 0, (SLAB_RECLAIM_ACCOUNT| 929fffb60f9SPaul Jackson SLAB_MEM_SPREAD), 93020c2df83SPaul Mundt NULL); 9311da177e4SLinus Torvalds if (nfs_direct_cachep == NULL) 9321da177e4SLinus Torvalds return -ENOMEM; 9331da177e4SLinus Torvalds 9341da177e4SLinus Torvalds return 0; 9351da177e4SLinus Torvalds } 9361da177e4SLinus Torvalds 93788467055SChuck Lever /** 938f7b422b1SDavid Howells * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures 93988467055SChuck Lever * 94088467055SChuck Lever */ 941266bee88SDavid Brownell void nfs_destroy_directcache(void) 9421da177e4SLinus Torvalds { 9431a1d92c1SAlexey Dobriyan kmem_cache_destroy(nfs_direct_cachep); 9441da177e4SLinus Torvalds } 945