blob: 8b46389c4c5b814806979b66348121afe0590090 [file] [log] [blame]
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -04001/*
2 * linux/fs/nfs/file.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 */
Anna Schumakerf4ac1672014-11-25 13:18:15 -05006#include <linux/fs.h>
7#include <linux/falloc.h>
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -04008#include <linux/nfs_fs.h>
9#include "internal.h"
David Howellsa4ff1462012-12-05 16:31:49 +000010#include "fscache.h"
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040011#include "pnfs.h"
12
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -040013#ifdef CONFIG_NFS_V4_2
14#include "nfs42.h"
15#endif
16
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040017#define NFSDBG_FACILITY NFSDBG_FILE
18
19static int
20nfs4_file_open(struct inode *inode, struct file *filp)
21{
22 struct nfs_open_context *ctx;
23 struct dentry *dentry = filp->f_path.dentry;
24 struct dentry *parent = NULL;
25 struct inode *dir;
26 unsigned openflags = filp->f_flags;
27 struct iattr attr;
Trond Myklebust5bc2afc2013-09-23 18:01:28 -040028 int opened = 0;
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040029 int err;
30
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040031 /*
32 * If no cached dentry exists or if it's negative, NFSv4 handled the
33 * opens in ->lookup() or ->create().
34 *
35 * We only get this far for a cached positive dentry. We skipped
36 * revalidation, so handle it here by dropping the dentry and returning
37 * -EOPENSTALE. The VFS will retry the lookup/create/open.
38 */
39
Al Viro6de14722013-09-16 10:53:17 -040040 dprintk("NFS: open file(%pd2)\n", dentry);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040041
42 if ((openflags & O_ACCMODE) == 3)
43 openflags--;
44
45 /* We can't create new files here */
46 openflags &= ~(O_CREAT|O_EXCL);
47
48 parent = dget_parent(dentry);
49 dir = parent->d_inode;
50
51 ctx = alloc_nfs_open_context(filp->f_path.dentry, filp->f_mode);
52 err = PTR_ERR(ctx);
53 if (IS_ERR(ctx))
54 goto out;
55
56 attr.ia_valid = ATTR_OPEN;
57 if (openflags & O_TRUNC) {
58 attr.ia_valid |= ATTR_SIZE;
59 attr.ia_size = 0;
60 nfs_wb_all(inode);
61 }
62
Trond Myklebust5bc2afc2013-09-23 18:01:28 -040063 inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, &attr, &opened);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040064 if (IS_ERR(inode)) {
65 err = PTR_ERR(inode);
66 switch (err) {
67 case -EPERM:
68 case -EACCES:
69 case -EDQUOT:
70 case -ENOSPC:
71 case -EROFS:
72 goto out_put_ctx;
73 default:
74 goto out_drop;
75 }
76 }
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040077 if (inode != dentry->d_inode)
78 goto out_drop;
79
80 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
81 nfs_file_set_open_context(filp, ctx);
David Howellsf1fe29b2013-09-27 11:20:03 +010082 nfs_fscache_open_file(inode, filp);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -040083 err = 0;
84
85out_put_ctx:
86 put_nfs_open_context(ctx);
87out:
88 dput(parent);
89 return err;
90
91out_drop:
92 d_drop(dentry);
93 err = -EOPENSTALE;
94 goto out_put_ctx;
95}
96
97static int
98nfs4_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
99{
100 int ret;
Al Viro496ad9a2013-01-23 17:07:38 -0500101 struct inode *inode = file_inode(file);
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400102
Trond Myklebust05990d12012-09-11 16:01:22 -0400103 do {
104 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
105 if (ret != 0)
106 break;
107 mutex_lock(&inode->i_mutex);
108 ret = nfs_file_fsync_commit(file, start, end, datasync);
Christoph Hellwig1b338092014-04-21 10:29:17 -0700109 if (!ret)
Trond Myklebust05990d12012-09-11 16:01:22 -0400110 ret = pnfs_layoutcommit_inode(inode, true);
111 mutex_unlock(&inode->i_mutex);
Trond Myklebustdcfc4f22012-09-11 16:19:38 -0400112 /*
113 * If nfs_file_fsync_commit detected a server reboot, then
114 * resend all dirty pages that might have been covered by
115 * the NFS_CONTEXT_RESEND_WRITES flag
116 */
117 start = 0;
118 end = LLONG_MAX;
Trond Myklebust05990d12012-09-11 16:01:22 -0400119 } while (ret == -EAGAIN);
120
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400121 return ret;
122}
123
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400124#ifdef CONFIG_NFS_V4_2
125static loff_t nfs4_file_llseek(struct file *filep, loff_t offset, int whence)
126{
127 loff_t ret;
128
129 switch (whence) {
130 case SEEK_HOLE:
131 case SEEK_DATA:
132 ret = nfs42_proc_llseek(filep, offset, whence);
133 if (ret != -ENOTSUPP)
134 return ret;
135 default:
136 return nfs_file_llseek(filep, offset, whence);
137 }
138}
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500139
140static long nfs42_fallocate(struct file *filep, int mode, loff_t offset, loff_t len)
141{
142 struct inode *inode = file_inode(filep);
143 long ret;
144
145 if (!S_ISREG(inode->i_mode))
146 return -EOPNOTSUPP;
147
Anna Schumaker624bd5b2014-11-25 13:18:16 -0500148 if ((mode != 0) && (mode != (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE)))
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500149 return -EOPNOTSUPP;
150
151 ret = inode_newsize_ok(inode, offset + len);
152 if (ret < 0)
153 return ret;
154
155 mutex_lock(&inode->i_mutex);
Anna Schumaker624bd5b2014-11-25 13:18:16 -0500156 if (mode & FALLOC_FL_PUNCH_HOLE)
157 ret = nfs42_proc_deallocate(filep, offset, len);
158 else
159 ret = nfs42_proc_allocate(filep, offset, len);
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500160 mutex_unlock(&inode->i_mutex);
161
162 nfs_zap_caches(inode);
163 return ret;
164}
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400165#endif /* CONFIG_NFS_V4_2 */
166
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400167const struct file_operations nfs4_file_operations = {
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400168#ifdef CONFIG_NFS_V4_2
169 .llseek = nfs4_file_llseek,
170#else
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400171 .llseek = nfs_file_llseek,
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400172#endif
Al Viro3aa2d192014-04-02 20:14:12 -0400173 .read = new_sync_read,
Al Viroedaf4362014-04-03 14:07:25 -0400174 .write = new_sync_write,
Al Viro3aa2d192014-04-02 20:14:12 -0400175 .read_iter = nfs_file_read,
Al Viroedaf4362014-04-03 14:07:25 -0400176 .write_iter = nfs_file_write,
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400177 .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 Viro4da54c22014-04-05 04:37:17 -0400185 .splice_write = iter_file_splice_write,
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500186#ifdef CONFIG_NFS_V4_2
187 .fallocate = nfs42_fallocate,
188#endif /* CONFIG_NFS_V4_2 */
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400189 .check_flags = nfs_check_flags,
Jeff Layton1c994a02014-08-27 06:49:41 -0400190 .setlease = simple_nosetlease,
Bryan Schumakerce4ef7c2012-07-16 16:39:15 -0400191};