Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/file.c |
| 3 | * |
| 4 | * Copyright (C) 1992 Rick Sladkey |
| 5 | */ |
Anna Schumaker | f4ac167 | 2014-11-25 13:18:15 -0500 | [diff] [blame] | 6 | #include <linux/fs.h> |
| 7 | #include <linux/falloc.h> |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 8 | #include <linux/nfs_fs.h> |
| 9 | #include "internal.h" |
David Howells | a4ff146 | 2012-12-05 16:31:49 +0000 | [diff] [blame] | 10 | #include "fscache.h" |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 11 | #include "pnfs.h" |
| 12 | |
Trond Myklebust | 81b79af | 2015-03-25 19:09:08 -0400 | [diff] [blame] | 13 | #include "nfstrace.h" |
| 14 | |
Anna Schumaker | 1c6dcbe | 2014-09-26 13:58:48 -0400 | [diff] [blame] | 15 | #ifdef CONFIG_NFS_V4_2 |
| 16 | #include "nfs42.h" |
| 17 | #endif |
| 18 | |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 19 | #define NFSDBG_FACILITY NFSDBG_FILE |
| 20 | |
| 21 | static int |
| 22 | nfs4_file_open(struct inode *inode, struct file *filp) |
| 23 | { |
| 24 | struct nfs_open_context *ctx; |
| 25 | struct dentry *dentry = filp->f_path.dentry; |
| 26 | struct dentry *parent = NULL; |
| 27 | struct inode *dir; |
| 28 | unsigned openflags = filp->f_flags; |
| 29 | struct iattr attr; |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 30 | int opened = 0; |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 31 | int err; |
| 32 | |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 33 | /* |
| 34 | * If no cached dentry exists or if it's negative, NFSv4 handled the |
| 35 | * opens in ->lookup() or ->create(). |
| 36 | * |
| 37 | * We only get this far for a cached positive dentry. We skipped |
| 38 | * revalidation, so handle it here by dropping the dentry and returning |
| 39 | * -EOPENSTALE. The VFS will retry the lookup/create/open. |
| 40 | */ |
| 41 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 42 | dprintk("NFS: open file(%pd2)\n", dentry); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 43 | |
| 44 | if ((openflags & O_ACCMODE) == 3) |
| 45 | openflags--; |
| 46 | |
| 47 | /* We can't create new files here */ |
| 48 | openflags &= ~(O_CREAT|O_EXCL); |
| 49 | |
| 50 | parent = dget_parent(dentry); |
| 51 | dir = parent->d_inode; |
| 52 | |
| 53 | ctx = alloc_nfs_open_context(filp->f_path.dentry, filp->f_mode); |
| 54 | err = PTR_ERR(ctx); |
| 55 | if (IS_ERR(ctx)) |
| 56 | goto out; |
| 57 | |
| 58 | attr.ia_valid = ATTR_OPEN; |
| 59 | if (openflags & O_TRUNC) { |
| 60 | attr.ia_valid |= ATTR_SIZE; |
| 61 | attr.ia_size = 0; |
Trond Myklebust | 9e1681c | 2015-03-25 17:23:31 -0400 | [diff] [blame] | 62 | nfs_sync_inode(inode); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 63 | } |
| 64 | |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 65 | inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, &attr, &opened); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 66 | if (IS_ERR(inode)) { |
| 67 | err = PTR_ERR(inode); |
| 68 | switch (err) { |
| 69 | case -EPERM: |
| 70 | case -EACCES: |
| 71 | case -EDQUOT: |
| 72 | case -ENOSPC: |
| 73 | case -EROFS: |
| 74 | goto out_put_ctx; |
| 75 | default: |
| 76 | goto out_drop; |
| 77 | } |
| 78 | } |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 79 | if (inode != dentry->d_inode) |
| 80 | goto out_drop; |
| 81 | |
| 82 | nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); |
| 83 | nfs_file_set_open_context(filp, ctx); |
David Howells | f1fe29b | 2013-09-27 11:20:03 +0100 | [diff] [blame] | 84 | nfs_fscache_open_file(inode, filp); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 85 | err = 0; |
| 86 | |
| 87 | out_put_ctx: |
| 88 | put_nfs_open_context(ctx); |
| 89 | out: |
| 90 | dput(parent); |
| 91 | return err; |
| 92 | |
| 93 | out_drop: |
| 94 | d_drop(dentry); |
| 95 | err = -EOPENSTALE; |
| 96 | goto out_put_ctx; |
| 97 | } |
| 98 | |
| 99 | static int |
| 100 | nfs4_file_fsync(struct file *file, loff_t start, loff_t end, int datasync) |
| 101 | { |
| 102 | int ret; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 103 | struct inode *inode = file_inode(file); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 104 | |
Trond Myklebust | 81b79af | 2015-03-25 19:09:08 -0400 | [diff] [blame] | 105 | trace_nfs_fsync_enter(inode); |
| 106 | |
Trond Myklebust | a0815d5 | 2015-03-25 18:58:53 -0400 | [diff] [blame] | 107 | nfs_inode_dio_wait(inode); |
Trond Myklebust | 05990d1 | 2012-09-11 16:01:22 -0400 | [diff] [blame] | 108 | do { |
| 109 | ret = filemap_write_and_wait_range(inode->i_mapping, start, end); |
| 110 | if (ret != 0) |
| 111 | break; |
| 112 | mutex_lock(&inode->i_mutex); |
| 113 | ret = nfs_file_fsync_commit(file, start, end, datasync); |
Christoph Hellwig | 1b33809 | 2014-04-21 10:29:17 -0700 | [diff] [blame] | 114 | if (!ret) |
Trond Myklebust | 5bb89b4 | 2015-03-25 14:14:42 -0400 | [diff] [blame] | 115 | ret = pnfs_sync_inode(inode, !!datasync); |
Trond Myklebust | 05990d1 | 2012-09-11 16:01:22 -0400 | [diff] [blame] | 116 | mutex_unlock(&inode->i_mutex); |
Trond Myklebust | dcfc4f2 | 2012-09-11 16:19:38 -0400 | [diff] [blame] | 117 | /* |
| 118 | * If nfs_file_fsync_commit detected a server reboot, then |
| 119 | * resend all dirty pages that might have been covered by |
| 120 | * the NFS_CONTEXT_RESEND_WRITES flag |
| 121 | */ |
| 122 | start = 0; |
| 123 | end = LLONG_MAX; |
Trond Myklebust | 05990d1 | 2012-09-11 16:01:22 -0400 | [diff] [blame] | 124 | } while (ret == -EAGAIN); |
| 125 | |
Trond Myklebust | 81b79af | 2015-03-25 19:09:08 -0400 | [diff] [blame] | 126 | trace_nfs_fsync_exit(inode, ret); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 127 | return ret; |
| 128 | } |
| 129 | |
Anna Schumaker | 1c6dcbe | 2014-09-26 13:58:48 -0400 | [diff] [blame] | 130 | #ifdef CONFIG_NFS_V4_2 |
| 131 | static loff_t nfs4_file_llseek(struct file *filep, loff_t offset, int whence) |
| 132 | { |
| 133 | loff_t ret; |
| 134 | |
| 135 | switch (whence) { |
| 136 | case SEEK_HOLE: |
| 137 | case SEEK_DATA: |
| 138 | ret = nfs42_proc_llseek(filep, offset, whence); |
| 139 | if (ret != -ENOTSUPP) |
| 140 | return ret; |
| 141 | default: |
| 142 | return nfs_file_llseek(filep, offset, whence); |
| 143 | } |
| 144 | } |
Anna Schumaker | f4ac167 | 2014-11-25 13:18:15 -0500 | [diff] [blame] | 145 | |
| 146 | static long nfs42_fallocate(struct file *filep, int mode, loff_t offset, loff_t len) |
| 147 | { |
| 148 | struct inode *inode = file_inode(filep); |
| 149 | long ret; |
| 150 | |
| 151 | if (!S_ISREG(inode->i_mode)) |
| 152 | return -EOPNOTSUPP; |
| 153 | |
Anna Schumaker | 624bd5b | 2014-11-25 13:18:16 -0500 | [diff] [blame] | 154 | if ((mode != 0) && (mode != (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE))) |
Anna Schumaker | f4ac167 | 2014-11-25 13:18:15 -0500 | [diff] [blame] | 155 | return -EOPNOTSUPP; |
| 156 | |
| 157 | ret = inode_newsize_ok(inode, offset + len); |
| 158 | if (ret < 0) |
| 159 | return ret; |
| 160 | |
Anna Schumaker | 624bd5b | 2014-11-25 13:18:16 -0500 | [diff] [blame] | 161 | if (mode & FALLOC_FL_PUNCH_HOLE) |
Anna Schumaker | f830f7d | 2015-03-16 14:06:24 -0400 | [diff] [blame^] | 162 | return nfs42_proc_deallocate(filep, offset, len); |
| 163 | return nfs42_proc_allocate(filep, offset, len); |
Anna Schumaker | f4ac167 | 2014-11-25 13:18:15 -0500 | [diff] [blame] | 164 | } |
Anna Schumaker | 1c6dcbe | 2014-09-26 13:58:48 -0400 | [diff] [blame] | 165 | #endif /* CONFIG_NFS_V4_2 */ |
| 166 | |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 167 | const struct file_operations nfs4_file_operations = { |
Anna Schumaker | 1c6dcbe | 2014-09-26 13:58:48 -0400 | [diff] [blame] | 168 | #ifdef CONFIG_NFS_V4_2 |
| 169 | .llseek = nfs4_file_llseek, |
| 170 | #else |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 171 | .llseek = nfs_file_llseek, |
Anna Schumaker | 1c6dcbe | 2014-09-26 13:58:48 -0400 | [diff] [blame] | 172 | #endif |
Al Viro | 3aa2d19 | 2014-04-02 20:14:12 -0400 | [diff] [blame] | 173 | .read = new_sync_read, |
Al Viro | edaf436 | 2014-04-03 14:07:25 -0400 | [diff] [blame] | 174 | .write = new_sync_write, |
Al Viro | 3aa2d19 | 2014-04-02 20:14:12 -0400 | [diff] [blame] | 175 | .read_iter = nfs_file_read, |
Al Viro | edaf436 | 2014-04-03 14:07:25 -0400 | [diff] [blame] | 176 | .write_iter = nfs_file_write, |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 177 | .mmap = nfs_file_mmap, |
| 178 | .open = nfs4_file_open, |
| 179 | .flush = nfs_file_flush, |
| 180 | .release = nfs_file_release, |
| 181 | .fsync = nfs4_file_fsync, |
| 182 | .lock = nfs_lock, |
| 183 | .flock = nfs_flock, |
| 184 | .splice_read = nfs_file_splice_read, |
Al Viro | 4da54c2 | 2014-04-05 04:37:17 -0400 | [diff] [blame] | 185 | .splice_write = iter_file_splice_write, |
Anna Schumaker | f4ac167 | 2014-11-25 13:18:15 -0500 | [diff] [blame] | 186 | #ifdef CONFIG_NFS_V4_2 |
| 187 | .fallocate = nfs42_fallocate, |
| 188 | #endif /* CONFIG_NFS_V4_2 */ |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 189 | .check_flags = nfs_check_flags, |
Jeff Layton | 1c994a0 | 2014-08-27 06:49:41 -0400 | [diff] [blame] | 190 | .setlease = simple_nosetlease, |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 191 | }; |