blob: 45f704aaa57f6e3134abf0129cc8a371612ce086 [file] [log] [blame]
Miklos Szeredie5e55582005-09-09 13:10:28 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredie5e55582005-09-09 13:10:28 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/pagemap.h>
12#include <linux/file.h>
Miklos Szeredie5e55582005-09-09 13:10:28 -070013#include <linux/sched.h>
14#include <linux/namei.h>
Miklos Szeredi07e77dc2010-12-07 20:16:56 +010015#include <linux/slab.h>
Seth Forshee703c7362016-08-29 08:46:36 -050016#include <linux/xattr.h>
Seth Forshee60bcc882016-08-29 08:46:37 -050017#include <linux/posix_acl.h>
Miklos Szeredie5e55582005-09-09 13:10:28 -070018
Al Viro8d3af7f2013-05-18 03:03:58 -040019static bool fuse_use_readdirplus(struct inode *dir, struct dir_context *ctx)
Feng Shuo4582a4a2013-01-15 11:23:28 +080020{
21 struct fuse_conn *fc = get_fuse_conn(dir);
22 struct fuse_inode *fi = get_fuse_inode(dir);
23
24 if (!fc->do_readdirplus)
25 return false;
Eric Wong634734b2013-02-06 22:29:01 +000026 if (!fc->readdirplus_auto)
27 return true;
Feng Shuo4582a4a2013-01-15 11:23:28 +080028 if (test_and_clear_bit(FUSE_I_ADVISE_RDPLUS, &fi->state))
29 return true;
Al Viro8d3af7f2013-05-18 03:03:58 -040030 if (ctx->pos == 0)
Feng Shuo4582a4a2013-01-15 11:23:28 +080031 return true;
32 return false;
33}
34
35static void fuse_advise_use_readdirplus(struct inode *dir)
36{
37 struct fuse_inode *fi = get_fuse_inode(dir);
38
39 set_bit(FUSE_I_ADVISE_RDPLUS, &fi->state);
40}
41
Miklos Szeredif75fdf22016-10-01 07:32:32 +020042union fuse_dentry {
43 u64 time;
44 struct rcu_head rcu;
45};
46
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070047static inline void fuse_dentry_settime(struct dentry *entry, u64 time)
48{
Miklos Szeredif75fdf22016-10-01 07:32:32 +020049 ((union fuse_dentry *) entry->d_fsdata)->time = time;
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070050}
51
52static inline u64 fuse_dentry_time(struct dentry *entry)
53{
Miklos Szeredif75fdf22016-10-01 07:32:32 +020054 return ((union fuse_dentry *) entry->d_fsdata)->time;
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070055}
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070056
Miklos Szeredi6f9f1182006-01-06 00:19:39 -080057/*
58 * FUSE caches dentries and attributes with separate timeout. The
59 * time in jiffies until the dentry/attributes are valid is stored in
Miklos Szeredif75fdf22016-10-01 07:32:32 +020060 * dentry->d_fsdata and fuse_inode->i_time respectively.
Miklos Szeredi6f9f1182006-01-06 00:19:39 -080061 */
62
63/*
64 * Calculate the time in jiffies until a dentry/attributes are valid
65 */
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070066static u64 time_to_jiffies(unsigned long sec, unsigned long nsec)
Miklos Szeredie5e55582005-09-09 13:10:28 -070067{
Miklos Szeredi685d16d2006-07-30 03:04:08 -070068 if (sec || nsec) {
69 struct timespec ts = {sec, nsec};
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070070 return get_jiffies_64() + timespec_to_jiffies(&ts);
Miklos Szeredi685d16d2006-07-30 03:04:08 -070071 } else
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070072 return 0;
Miklos Szeredie5e55582005-09-09 13:10:28 -070073}
74
Miklos Szeredi6f9f1182006-01-06 00:19:39 -080075/*
76 * Set dentry and possibly attribute timeouts from the lookup/mk*
77 * replies
78 */
Miklos Szeredi1fb69e72007-10-18 03:06:58 -070079static void fuse_change_entry_timeout(struct dentry *entry,
80 struct fuse_entry_out *o)
Miklos Szeredi0aa7c692006-01-06 00:19:34 -080081{
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070082 fuse_dentry_settime(entry,
83 time_to_jiffies(o->entry_valid, o->entry_valid_nsec));
Miklos Szeredi1fb69e72007-10-18 03:06:58 -070084}
85
86static u64 attr_timeout(struct fuse_attr_out *o)
87{
88 return time_to_jiffies(o->attr_valid, o->attr_valid_nsec);
89}
90
91static u64 entry_attr_timeout(struct fuse_entry_out *o)
92{
93 return time_to_jiffies(o->attr_valid, o->attr_valid_nsec);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -080094}
95
Miklos Szeredi6f9f1182006-01-06 00:19:39 -080096/*
97 * Mark the attributes as stale, so that at the next call to
98 * ->getattr() they will be fetched from userspace
99 */
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800100void fuse_invalidate_attr(struct inode *inode)
101{
Miklos Szeredi0a0898c2006-07-30 03:04:10 -0700102 get_fuse_inode(inode)->i_time = 0;
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800103}
104
Andrew Gallagher451418f2013-11-05 03:55:43 -0800105/**
106 * Mark the attributes as stale due to an atime change. Avoid the invalidate if
107 * atime is not used.
108 */
109void fuse_invalidate_atime(struct inode *inode)
110{
111 if (!IS_RDONLY(inode))
112 fuse_invalidate_attr(inode);
113}
114
Miklos Szeredi6f9f1182006-01-06 00:19:39 -0800115/*
116 * Just mark the entry as stale, so that a next attempt to look it up
117 * will result in a new lookup call to userspace
118 *
119 * This is called when a dentry is about to become negative and the
120 * timeout is unknown (unlink, rmdir, rename and in some cases
121 * lookup)
122 */
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700123void fuse_invalidate_entry_cache(struct dentry *entry)
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800124{
Miklos Szeredi0a0898c2006-07-30 03:04:10 -0700125 fuse_dentry_settime(entry, 0);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800126}
127
Miklos Szeredi6f9f1182006-01-06 00:19:39 -0800128/*
129 * Same as fuse_invalidate_entry_cache(), but also try to remove the
130 * dentry from the hash
131 */
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800132static void fuse_invalidate_entry(struct dentry *entry)
133{
134 d_invalidate(entry);
135 fuse_invalidate_entry_cache(entry);
Miklos Szeredi0aa7c692006-01-06 00:19:34 -0800136}
137
Miklos Szeredi70781872014-12-12 09:49:05 +0100138static void fuse_lookup_init(struct fuse_conn *fc, struct fuse_args *args,
Al Viro13983d02016-07-20 22:34:44 -0400139 u64 nodeid, const struct qstr *name,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700140 struct fuse_entry_out *outarg)
141{
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700142 memset(outarg, 0, sizeof(struct fuse_entry_out));
Miklos Szeredi70781872014-12-12 09:49:05 +0100143 args->in.h.opcode = FUSE_LOOKUP;
144 args->in.h.nodeid = nodeid;
145 args->in.numargs = 1;
146 args->in.args[0].size = name->len + 1;
147 args->in.args[0].value = name->name;
148 args->out.numargs = 1;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100149 args->out.args[0].size = sizeof(struct fuse_entry_out);
Miklos Szeredi70781872014-12-12 09:49:05 +0100150 args->out.args[0].value = outarg;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700151}
152
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700153u64 fuse_get_attr_version(struct fuse_conn *fc)
Miklos Szeredi7dca9fd2007-11-28 16:21:59 -0800154{
155 u64 curr_version;
156
157 /*
158 * The spin lock isn't actually needed on 64bit archs, but we
159 * don't yet care too much about such optimizations.
160 */
161 spin_lock(&fc->lock);
162 curr_version = fc->attr_version;
163 spin_unlock(&fc->lock);
164
165 return curr_version;
166}
167
Miklos Szeredi6f9f1182006-01-06 00:19:39 -0800168/*
169 * Check whether the dentry is still valid
170 *
171 * If the entry validity timeout has expired and the dentry is
172 * positive, try to redo the lookup. If the lookup results in a
173 * different inode, then let the VFS invalidate the dentry and redo
174 * the lookup once more. If the lookup results in the same inode,
175 * then refresh the attributes, timeouts and mark the dentry valid.
176 */
Al Viro0b728e12012-06-10 16:03:43 -0400177static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700178{
Nick Piggin34286d62011-01-07 17:49:57 +1100179 struct inode *inode;
Miklos Szeredi28420da2013-06-03 14:40:22 +0200180 struct dentry *parent;
181 struct fuse_conn *fc;
Miklos Szeredi6314efe2013-10-01 16:41:22 +0200182 struct fuse_inode *fi;
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200183 int ret;
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800184
David Howells2b0143b2015-03-17 22:25:59 +0000185 inode = d_inode_rcu(entry);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800186 if (inode && is_bad_inode(inode))
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200187 goto invalid;
Anand Avati154210c2014-06-26 20:21:57 -0400188 else if (time_before64(fuse_dentry_time(entry), get_jiffies_64()) ||
189 (flags & LOOKUP_REVAL)) {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700190 struct fuse_entry_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +0100191 FUSE_ARGS(args);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100192 struct fuse_forget_link *forget;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700193 u64 attr_version;
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800194
Miklos Szeredi50322fe2006-02-28 16:59:03 -0800195 /* For negative dentries, always do a fresh lookup */
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800196 if (!inode)
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200197 goto invalid;
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800198
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200199 ret = -ECHILD;
Al Viro0b728e12012-06-10 16:03:43 -0400200 if (flags & LOOKUP_RCU)
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200201 goto out;
Miklos Szeredie7c0a162011-03-21 13:58:06 +0100202
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800203 fc = get_fuse_conn(inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700204
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100205 forget = fuse_alloc_forget();
Miklos Szeredi70781872014-12-12 09:49:05 +0100206 ret = -ENOMEM;
207 if (!forget)
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200208 goto out;
Miklos Szeredi2d510132006-11-25 11:09:20 -0800209
Miklos Szeredi7dca9fd2007-11-28 16:21:59 -0800210 attr_version = fuse_get_attr_version(fc);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700211
Miklos Szeredie956edd2006-10-17 00:10:12 -0700212 parent = dget_parent(entry);
David Howells2b0143b2015-03-17 22:25:59 +0000213 fuse_lookup_init(fc, &args, get_node_id(d_inode(parent)),
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700214 &entry->d_name, &outarg);
Miklos Szeredi70781872014-12-12 09:49:05 +0100215 ret = fuse_simple_request(fc, &args);
Miklos Szeredie956edd2006-10-17 00:10:12 -0700216 dput(parent);
Miklos Szeredi50322fe2006-02-28 16:59:03 -0800217 /* Zero nodeid is same as -ENOENT */
Miklos Szeredi70781872014-12-12 09:49:05 +0100218 if (!ret && !outarg.nodeid)
219 ret = -ENOENT;
220 if (!ret) {
Miklos Szeredi6314efe2013-10-01 16:41:22 +0200221 fi = get_fuse_inode(inode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700222 if (outarg.nodeid != get_node_id(inode)) {
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100223 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200224 goto invalid;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700225 }
Miklos Szeredi8da5ff22006-10-17 00:10:08 -0700226 spin_lock(&fc->lock);
Miklos Szeredi1729a162008-11-26 12:03:54 +0100227 fi->nlookup++;
Miklos Szeredi8da5ff22006-10-17 00:10:08 -0700228 spin_unlock(&fc->lock);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700229 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100230 kfree(forget);
Miklos Szeredi70781872014-12-12 09:49:05 +0100231 if (ret == -ENOMEM)
232 goto out;
233 if (ret || (outarg.attr.mode ^ inode->i_mode) & S_IFMT)
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200234 goto invalid;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700235
Seth Forshee60bcc882016-08-29 08:46:37 -0500236 forget_all_cached_acls(inode);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700237 fuse_change_attributes(inode, &outarg.attr,
238 entry_attr_timeout(&outarg),
239 attr_version);
240 fuse_change_entry_timeout(entry, &outarg);
Miklos Szeredi28420da2013-06-03 14:40:22 +0200241 } else if (inode) {
Miklos Szeredi6314efe2013-10-01 16:41:22 +0200242 fi = get_fuse_inode(inode);
243 if (flags & LOOKUP_RCU) {
244 if (test_bit(FUSE_I_INIT_RDPLUS, &fi->state))
245 return -ECHILD;
246 } else if (test_and_clear_bit(FUSE_I_INIT_RDPLUS, &fi->state)) {
Miklos Szeredi28420da2013-06-03 14:40:22 +0200247 parent = dget_parent(entry);
David Howells2b0143b2015-03-17 22:25:59 +0000248 fuse_advise_use_readdirplus(d_inode(parent));
Miklos Szeredi28420da2013-06-03 14:40:22 +0200249 dput(parent);
250 }
Miklos Szeredie5e55582005-09-09 13:10:28 -0700251 }
Miklos Szeredie2a6b952013-09-05 11:44:43 +0200252 ret = 1;
253out:
254 return ret;
255
256invalid:
257 ret = 0;
258 goto out;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700259}
260
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800261static int invalid_nodeid(u64 nodeid)
Miklos Szeredi2827d0b22005-11-28 13:44:16 -0800262{
263 return !nodeid || nodeid == FUSE_ROOT_ID;
264}
265
Miklos Szeredif75fdf22016-10-01 07:32:32 +0200266static int fuse_dentry_init(struct dentry *dentry)
267{
268 dentry->d_fsdata = kzalloc(sizeof(union fuse_dentry), GFP_KERNEL);
269
270 return dentry->d_fsdata ? 0 : -ENOMEM;
271}
272static void fuse_dentry_release(struct dentry *dentry)
273{
274 union fuse_dentry *fd = dentry->d_fsdata;
275
276 kfree_rcu(fd, rcu);
277}
278
Al Viro42695902009-02-20 05:59:13 +0000279const struct dentry_operations fuse_dentry_operations = {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700280 .d_revalidate = fuse_dentry_revalidate,
Miklos Szeredif75fdf22016-10-01 07:32:32 +0200281 .d_init = fuse_dentry_init,
282 .d_release = fuse_dentry_release,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700283};
284
Timo Savolaa5bfffac2007-04-08 16:04:00 -0700285int fuse_valid_type(int m)
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800286{
287 return S_ISREG(m) || S_ISDIR(m) || S_ISLNK(m) || S_ISCHR(m) ||
288 S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m);
289}
290
Al Viro13983d02016-07-20 22:34:44 -0400291int fuse_lookup_name(struct super_block *sb, u64 nodeid, const struct qstr *name,
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700292 struct fuse_entry_out *outarg, struct inode **inode)
293{
294 struct fuse_conn *fc = get_fuse_conn_super(sb);
Miklos Szeredi70781872014-12-12 09:49:05 +0100295 FUSE_ARGS(args);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100296 struct fuse_forget_link *forget;
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700297 u64 attr_version;
298 int err;
299
300 *inode = NULL;
301 err = -ENAMETOOLONG;
302 if (name->len > FUSE_NAME_MAX)
303 goto out;
304
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700305
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100306 forget = fuse_alloc_forget();
307 err = -ENOMEM;
Miklos Szeredi70781872014-12-12 09:49:05 +0100308 if (!forget)
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700309 goto out;
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700310
311 attr_version = fuse_get_attr_version(fc);
312
Miklos Szeredi70781872014-12-12 09:49:05 +0100313 fuse_lookup_init(fc, &args, nodeid, name, outarg);
314 err = fuse_simple_request(fc, &args);
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700315 /* Zero nodeid is same as -ENOENT, but with valid timeout */
316 if (err || !outarg->nodeid)
317 goto out_put_forget;
318
319 err = -EIO;
320 if (!outarg->nodeid)
321 goto out_put_forget;
322 if (!fuse_valid_type(outarg->attr.mode))
323 goto out_put_forget;
324
325 *inode = fuse_iget(sb, outarg->nodeid, outarg->generation,
326 &outarg->attr, entry_attr_timeout(outarg),
327 attr_version);
328 err = -ENOMEM;
329 if (!*inode) {
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100330 fuse_queue_forget(fc, forget, outarg->nodeid, 1);
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700331 goto out;
332 }
333 err = 0;
334
335 out_put_forget:
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100336 kfree(forget);
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700337 out:
338 return err;
339}
340
Miklos Szeredi0aa7c692006-01-06 00:19:34 -0800341static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400342 unsigned int flags)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700343{
344 int err;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700345 struct fuse_entry_out outarg;
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700346 struct inode *inode;
Miklos Szeredi0de62562008-07-25 01:48:59 -0700347 struct dentry *newent;
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700348 bool outarg_valid = true;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700349
Miklos Szeredi5c672ab2016-06-30 13:10:49 +0200350 fuse_lock_inode(dir);
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700351 err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name,
352 &outarg, &inode);
Miklos Szeredi5c672ab2016-06-30 13:10:49 +0200353 fuse_unlock_inode(dir);
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700354 if (err == -ENOENT) {
355 outarg_valid = false;
356 err = 0;
Miklos Szeredi2d510132006-11-25 11:09:20 -0800357 }
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700358 if (err)
359 goto out_err;
Miklos Szeredi2d510132006-11-25 11:09:20 -0800360
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700361 err = -EIO;
362 if (inode && get_node_id(inode) == FUSE_ROOT_ID)
363 goto out_iput;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700364
Al Viro41d28bc2014-10-12 22:24:21 -0400365 newent = d_splice_alias(inode, entry);
Miklos Szeredi5835f332013-09-05 11:44:42 +0200366 err = PTR_ERR(newent);
367 if (IS_ERR(newent))
368 goto out_err;
Miklos Szeredid2a85162006-10-17 00:10:11 -0700369
Miklos Szeredi0de62562008-07-25 01:48:59 -0700370 entry = newent ? newent : entry;
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700371 if (outarg_valid)
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700372 fuse_change_entry_timeout(entry, &outarg);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800373 else
374 fuse_invalidate_entry_cache(entry);
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700375
Feng Shuo4582a4a2013-01-15 11:23:28 +0800376 fuse_advise_use_readdirplus(dir);
Miklos Szeredi0de62562008-07-25 01:48:59 -0700377 return newent;
Miklos Szeredic180eeb2008-07-25 01:49:01 -0700378
379 out_iput:
380 iput(inode);
381 out_err:
382 return ERR_PTR(err);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700383}
384
Miklos Szeredi6f9f1182006-01-06 00:19:39 -0800385/*
386 * Atomic create+open operation
387 *
388 * If the filesystem doesn't support this, then fall back to separate
389 * 'mknod' + 'open' requests.
390 */
Al Virod9585272012-06-22 12:39:14 +0400391static int fuse_create_open(struct inode *dir, struct dentry *entry,
Al Viro30d90492012-06-22 12:40:19 +0400392 struct file *file, unsigned flags,
Al Virod9585272012-06-22 12:39:14 +0400393 umode_t mode, int *opened)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800394{
395 int err;
396 struct inode *inode;
397 struct fuse_conn *fc = get_fuse_conn(dir);
Miklos Szeredi70781872014-12-12 09:49:05 +0100398 FUSE_ARGS(args);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100399 struct fuse_forget_link *forget;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200400 struct fuse_create_in inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800401 struct fuse_open_out outopen;
402 struct fuse_entry_out outentry;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800403 struct fuse_file *ff;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800404
Miklos Szerediaf109bc2012-08-15 13:01:24 +0200405 /* Userspace expects S_IFREG in create mode */
406 BUG_ON((mode & S_IFMT) != S_IFREG);
407
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100408 forget = fuse_alloc_forget();
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200409 err = -ENOMEM;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100410 if (!forget)
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200411 goto out_err;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700412
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700413 err = -ENOMEM;
Tejun Heoacf99432008-11-26 12:03:55 +0100414 ff = fuse_file_alloc(fc);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800415 if (!ff)
Miklos Szeredi70781872014-12-12 09:49:05 +0100416 goto out_put_forget_req;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800417
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200418 if (!fc->dont_mask)
419 mode &= ~current_umask();
420
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800421 flags &= ~O_NOCTTY;
422 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700423 memset(&outentry, 0, sizeof(outentry));
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800424 inarg.flags = flags;
425 inarg.mode = mode;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200426 inarg.umask = current_umask();
Miklos Szeredi70781872014-12-12 09:49:05 +0100427 args.in.h.opcode = FUSE_CREATE;
428 args.in.h.nodeid = get_node_id(dir);
429 args.in.numargs = 2;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100430 args.in.args[0].size = sizeof(inarg);
Miklos Szeredi70781872014-12-12 09:49:05 +0100431 args.in.args[0].value = &inarg;
432 args.in.args[1].size = entry->d_name.len + 1;
433 args.in.args[1].value = entry->d_name.name;
434 args.out.numargs = 2;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100435 args.out.args[0].size = sizeof(outentry);
Miklos Szeredi70781872014-12-12 09:49:05 +0100436 args.out.args[0].value = &outentry;
437 args.out.args[1].size = sizeof(outopen);
438 args.out.args[1].value = &outopen;
439 err = fuse_simple_request(fc, &args);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200440 if (err)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800441 goto out_free_ff;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800442
443 err = -EIO;
Miklos Szeredi2827d0b22005-11-28 13:44:16 -0800444 if (!S_ISREG(outentry.attr.mode) || invalid_nodeid(outentry.nodeid))
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800445 goto out_free_ff;
446
Miklos Szeredic7b71432009-04-28 16:56:37 +0200447 ff->fh = outopen.fh;
448 ff->nodeid = outentry.nodeid;
449 ff->open_flags = outopen.open_flags;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800450 inode = fuse_iget(dir->i_sb, outentry.nodeid, outentry.generation,
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700451 &outentry.attr, entry_attr_timeout(&outentry), 0);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800452 if (!inode) {
453 flags &= ~(O_CREAT | O_EXCL | O_TRUNC);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200454 fuse_sync_release(ff, flags);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100455 fuse_queue_forget(fc, forget, outentry.nodeid, 1);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200456 err = -ENOMEM;
457 goto out_err;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800458 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100459 kfree(forget);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800460 d_instantiate(entry, inode);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700461 fuse_change_entry_timeout(entry, &outentry);
Miklos Szeredi0952b2a2008-02-06 01:38:38 -0800462 fuse_invalidate_attr(dir);
Al Viro30d90492012-06-22 12:40:19 +0400463 err = finish_open(file, entry, generic_file_open, opened);
464 if (err) {
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200465 fuse_sync_release(ff, flags);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200466 } else {
467 file->private_data = fuse_file_get(ff);
468 fuse_finish_open(inode, file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800469 }
Al Virod9585272012-06-22 12:39:14 +0400470 return err;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800471
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200472out_free_ff:
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800473 fuse_file_free(ff);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200474out_put_forget_req:
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100475 kfree(forget);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200476out_err:
Al Virod9585272012-06-22 12:39:14 +0400477 return err;
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200478}
479
480static int fuse_mknod(struct inode *, struct dentry *, umode_t, dev_t);
Al Virod9585272012-06-22 12:39:14 +0400481static int fuse_atomic_open(struct inode *dir, struct dentry *entry,
Al Viro30d90492012-06-22 12:40:19 +0400482 struct file *file, unsigned flags,
Al Virod9585272012-06-22 12:39:14 +0400483 umode_t mode, int *opened)
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200484{
485 int err;
486 struct fuse_conn *fc = get_fuse_conn(dir);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200487 struct dentry *res = NULL;
488
Al Viro00699ad2016-07-05 09:44:53 -0400489 if (d_in_lookup(entry)) {
Al Viro00cd8dd2012-06-10 17:13:09 -0400490 res = fuse_lookup(dir, entry, 0);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200491 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400492 return PTR_ERR(res);
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200493
494 if (res)
495 entry = res;
496 }
497
David Howells2b0143b2015-03-17 22:25:59 +0000498 if (!(flags & O_CREAT) || d_really_is_positive(entry))
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200499 goto no_open;
500
501 /* Only creates */
Al Viro47237682012-06-10 05:01:45 -0400502 *opened |= FILE_CREATED;
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200503
504 if (fc->no_create)
505 goto mknod;
506
Al Viro30d90492012-06-22 12:40:19 +0400507 err = fuse_create_open(dir, entry, file, flags, mode, opened);
Al Virod9585272012-06-22 12:39:14 +0400508 if (err == -ENOSYS) {
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200509 fc->no_create = 1;
510 goto mknod;
511 }
512out_dput:
513 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400514 return err;
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200515
516mknod:
517 err = fuse_mknod(dir, entry, mode, 0);
Al Virod9585272012-06-22 12:39:14 +0400518 if (err)
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200519 goto out_dput;
Miklos Szeredic8ccbe02012-06-05 15:10:22 +0200520no_open:
Al Viroe45198a2012-06-10 06:48:09 -0400521 return finish_no_open(file, res);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800522}
523
Miklos Szeredi6f9f1182006-01-06 00:19:39 -0800524/*
525 * Code shared between mknod, mkdir, symlink and link
526 */
Miklos Szeredi70781872014-12-12 09:49:05 +0100527static int create_new_entry(struct fuse_conn *fc, struct fuse_args *args,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700528 struct inode *dir, struct dentry *entry,
Al Viro541af6a2011-07-26 03:17:33 -0400529 umode_t mode)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700530{
531 struct fuse_entry_out outarg;
532 struct inode *inode;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700533 int err;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100534 struct fuse_forget_link *forget;
Miklos Szeredi2d510132006-11-25 11:09:20 -0800535
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100536 forget = fuse_alloc_forget();
Miklos Szeredi70781872014-12-12 09:49:05 +0100537 if (!forget)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100538 return -ENOMEM;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700539
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700540 memset(&outarg, 0, sizeof(outarg));
Miklos Szeredi70781872014-12-12 09:49:05 +0100541 args->in.h.nodeid = get_node_id(dir);
542 args->out.numargs = 1;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100543 args->out.args[0].size = sizeof(outarg);
Miklos Szeredi70781872014-12-12 09:49:05 +0100544 args->out.args[0].value = &outarg;
545 err = fuse_simple_request(fc, args);
Miklos Szeredi2d510132006-11-25 11:09:20 -0800546 if (err)
547 goto out_put_forget_req;
548
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800549 err = -EIO;
550 if (invalid_nodeid(outarg.nodeid))
Miklos Szeredi2d510132006-11-25 11:09:20 -0800551 goto out_put_forget_req;
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800552
553 if ((outarg.attr.mode ^ mode) & S_IFMT)
Miklos Szeredi2d510132006-11-25 11:09:20 -0800554 goto out_put_forget_req;
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800555
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700556 inode = fuse_iget(dir->i_sb, outarg.nodeid, outarg.generation,
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700557 &outarg.attr, entry_attr_timeout(&outarg), 0);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700558 if (!inode) {
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100559 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700560 return -ENOMEM;
561 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100562 kfree(forget);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700563
Miklos Szeredib70a80e2013-10-01 16:44:54 +0200564 err = d_instantiate_no_diralias(entry, inode);
565 if (err)
566 return err;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700567
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700568 fuse_change_entry_timeout(entry, &outarg);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700569 fuse_invalidate_attr(dir);
570 return 0;
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800571
Miklos Szeredi2d510132006-11-25 11:09:20 -0800572 out_put_forget_req:
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100573 kfree(forget);
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800574 return err;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700575}
576
Al Viro1a67aaf2011-07-26 01:52:52 -0400577static int fuse_mknod(struct inode *dir, struct dentry *entry, umode_t mode,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700578 dev_t rdev)
579{
580 struct fuse_mknod_in inarg;
581 struct fuse_conn *fc = get_fuse_conn(dir);
Miklos Szeredi70781872014-12-12 09:49:05 +0100582 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700583
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200584 if (!fc->dont_mask)
585 mode &= ~current_umask();
586
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700587 memset(&inarg, 0, sizeof(inarg));
588 inarg.mode = mode;
589 inarg.rdev = new_encode_dev(rdev);
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200590 inarg.umask = current_umask();
Miklos Szeredi70781872014-12-12 09:49:05 +0100591 args.in.h.opcode = FUSE_MKNOD;
592 args.in.numargs = 2;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100593 args.in.args[0].size = sizeof(inarg);
Miklos Szeredi70781872014-12-12 09:49:05 +0100594 args.in.args[0].value = &inarg;
595 args.in.args[1].size = entry->d_name.len + 1;
596 args.in.args[1].value = entry->d_name.name;
597 return create_new_entry(fc, &args, dir, entry, mode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700598}
599
Al Viro4acdaf22011-07-26 01:42:34 -0400600static int fuse_create(struct inode *dir, struct dentry *entry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400601 bool excl)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700602{
603 return fuse_mknod(dir, entry, mode, 0);
604}
605
Al Viro18bb1db2011-07-26 01:41:39 -0400606static int fuse_mkdir(struct inode *dir, struct dentry *entry, umode_t mode)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700607{
608 struct fuse_mkdir_in inarg;
609 struct fuse_conn *fc = get_fuse_conn(dir);
Miklos Szeredi70781872014-12-12 09:49:05 +0100610 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700611
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200612 if (!fc->dont_mask)
613 mode &= ~current_umask();
614
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700615 memset(&inarg, 0, sizeof(inarg));
616 inarg.mode = mode;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200617 inarg.umask = current_umask();
Miklos Szeredi70781872014-12-12 09:49:05 +0100618 args.in.h.opcode = FUSE_MKDIR;
619 args.in.numargs = 2;
620 args.in.args[0].size = sizeof(inarg);
621 args.in.args[0].value = &inarg;
622 args.in.args[1].size = entry->d_name.len + 1;
623 args.in.args[1].value = entry->d_name.name;
624 return create_new_entry(fc, &args, dir, entry, S_IFDIR);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700625}
626
627static int fuse_symlink(struct inode *dir, struct dentry *entry,
628 const char *link)
629{
630 struct fuse_conn *fc = get_fuse_conn(dir);
631 unsigned len = strlen(link) + 1;
Miklos Szeredi70781872014-12-12 09:49:05 +0100632 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700633
Miklos Szeredi70781872014-12-12 09:49:05 +0100634 args.in.h.opcode = FUSE_SYMLINK;
635 args.in.numargs = 2;
636 args.in.args[0].size = entry->d_name.len + 1;
637 args.in.args[0].value = entry->d_name.name;
638 args.in.args[1].size = len;
639 args.in.args[1].value = link;
640 return create_new_entry(fc, &args, dir, entry, S_IFLNK);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700641}
642
Seth Forshee703c7362016-08-29 08:46:36 -0500643void fuse_update_ctime(struct inode *inode)
Maxim Patlasov31f32672014-04-28 14:19:24 +0200644{
645 if (!IS_NOCMTIME(inode)) {
646 inode->i_ctime = current_fs_time(inode->i_sb);
647 mark_inode_dirty_sync(inode);
648 }
649}
650
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700651static int fuse_unlink(struct inode *dir, struct dentry *entry)
652{
653 int err;
654 struct fuse_conn *fc = get_fuse_conn(dir);
Miklos Szeredi70781872014-12-12 09:49:05 +0100655 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700656
Miklos Szeredi70781872014-12-12 09:49:05 +0100657 args.in.h.opcode = FUSE_UNLINK;
658 args.in.h.nodeid = get_node_id(dir);
659 args.in.numargs = 1;
660 args.in.args[0].size = entry->d_name.len + 1;
661 args.in.args[0].value = entry->d_name.name;
662 err = fuse_simple_request(fc, &args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700663 if (!err) {
David Howells2b0143b2015-03-17 22:25:59 +0000664 struct inode *inode = d_inode(entry);
Miklos Szerediac45d612012-03-05 15:48:11 +0100665 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700666
Miklos Szerediac45d612012-03-05 15:48:11 +0100667 spin_lock(&fc->lock);
668 fi->attr_version = ++fc->attr_version;
Miklos Szeredidfca7ce2013-02-04 15:57:42 +0100669 /*
670 * If i_nlink == 0 then unlink doesn't make sense, yet this can
671 * happen if userspace filesystem is careless. It would be
672 * difficult to enforce correct nlink usage so just ignore this
673 * condition here
674 */
675 if (inode->i_nlink > 0)
676 drop_nlink(inode);
Miklos Szerediac45d612012-03-05 15:48:11 +0100677 spin_unlock(&fc->lock);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700678 fuse_invalidate_attr(inode);
679 fuse_invalidate_attr(dir);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800680 fuse_invalidate_entry_cache(entry);
Maxim Patlasov31f32672014-04-28 14:19:24 +0200681 fuse_update_ctime(inode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700682 } else if (err == -EINTR)
683 fuse_invalidate_entry(entry);
684 return err;
685}
686
687static int fuse_rmdir(struct inode *dir, struct dentry *entry)
688{
689 int err;
690 struct fuse_conn *fc = get_fuse_conn(dir);
Miklos Szeredi70781872014-12-12 09:49:05 +0100691 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700692
Miklos Szeredi70781872014-12-12 09:49:05 +0100693 args.in.h.opcode = FUSE_RMDIR;
694 args.in.h.nodeid = get_node_id(dir);
695 args.in.numargs = 1;
696 args.in.args[0].size = entry->d_name.len + 1;
697 args.in.args[0].value = entry->d_name.name;
698 err = fuse_simple_request(fc, &args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700699 if (!err) {
David Howells2b0143b2015-03-17 22:25:59 +0000700 clear_nlink(d_inode(entry));
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700701 fuse_invalidate_attr(dir);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800702 fuse_invalidate_entry_cache(entry);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700703 } else if (err == -EINTR)
704 fuse_invalidate_entry(entry);
705 return err;
706}
707
Miklos Szeredi1560c972014-04-28 16:43:44 +0200708static int fuse_rename_common(struct inode *olddir, struct dentry *oldent,
709 struct inode *newdir, struct dentry *newent,
710 unsigned int flags, int opcode, size_t argsize)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700711{
712 int err;
Miklos Szeredi1560c972014-04-28 16:43:44 +0200713 struct fuse_rename2_in inarg;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700714 struct fuse_conn *fc = get_fuse_conn(olddir);
Miklos Szeredi70781872014-12-12 09:49:05 +0100715 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700716
Miklos Szeredi1560c972014-04-28 16:43:44 +0200717 memset(&inarg, 0, argsize);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700718 inarg.newdir = get_node_id(newdir);
Miklos Szeredi1560c972014-04-28 16:43:44 +0200719 inarg.flags = flags;
Miklos Szeredi70781872014-12-12 09:49:05 +0100720 args.in.h.opcode = opcode;
721 args.in.h.nodeid = get_node_id(olddir);
722 args.in.numargs = 3;
723 args.in.args[0].size = argsize;
724 args.in.args[0].value = &inarg;
725 args.in.args[1].size = oldent->d_name.len + 1;
726 args.in.args[1].value = oldent->d_name.name;
727 args.in.args[2].size = newent->d_name.len + 1;
728 args.in.args[2].value = newent->d_name.name;
729 err = fuse_simple_request(fc, &args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700730 if (!err) {
Miklos Szeredi08b63302007-11-28 16:22:03 -0800731 /* ctime changes */
David Howells2b0143b2015-03-17 22:25:59 +0000732 fuse_invalidate_attr(d_inode(oldent));
733 fuse_update_ctime(d_inode(oldent));
Miklos Szeredi08b63302007-11-28 16:22:03 -0800734
Miklos Szeredi1560c972014-04-28 16:43:44 +0200735 if (flags & RENAME_EXCHANGE) {
David Howells2b0143b2015-03-17 22:25:59 +0000736 fuse_invalidate_attr(d_inode(newent));
737 fuse_update_ctime(d_inode(newent));
Miklos Szeredi1560c972014-04-28 16:43:44 +0200738 }
739
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700740 fuse_invalidate_attr(olddir);
741 if (olddir != newdir)
742 fuse_invalidate_attr(newdir);
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800743
744 /* newent will end up negative */
David Howells2b0143b2015-03-17 22:25:59 +0000745 if (!(flags & RENAME_EXCHANGE) && d_really_is_positive(newent)) {
746 fuse_invalidate_attr(d_inode(newent));
Miklos Szeredi8cbdf1e2006-01-06 00:19:38 -0800747 fuse_invalidate_entry_cache(newent);
David Howells2b0143b2015-03-17 22:25:59 +0000748 fuse_update_ctime(d_inode(newent));
Miklos Szeredi5219f342009-11-04 10:24:52 +0100749 }
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700750 } else if (err == -EINTR) {
751 /* If request was interrupted, DEITY only knows if the
752 rename actually took place. If the invalidation
753 fails (e.g. some process has CWD under the renamed
754 directory), then there can be inconsistency between
755 the dcache and the real filesystem. Tough luck. */
756 fuse_invalidate_entry(oldent);
David Howells2b0143b2015-03-17 22:25:59 +0000757 if (d_really_is_positive(newent))
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700758 fuse_invalidate_entry(newent);
759 }
760
761 return err;
762}
763
Miklos Szeredi1560c972014-04-28 16:43:44 +0200764static int fuse_rename2(struct inode *olddir, struct dentry *oldent,
765 struct inode *newdir, struct dentry *newent,
766 unsigned int flags)
767{
768 struct fuse_conn *fc = get_fuse_conn(olddir);
769 int err;
770
771 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
772 return -EINVAL;
773
Miklos Szeredi4237ba42014-07-10 10:50:19 +0200774 if (flags) {
775 if (fc->no_rename2 || fc->minor < 23)
776 return -EINVAL;
Miklos Szeredi1560c972014-04-28 16:43:44 +0200777
Miklos Szeredi4237ba42014-07-10 10:50:19 +0200778 err = fuse_rename_common(olddir, oldent, newdir, newent, flags,
779 FUSE_RENAME2,
780 sizeof(struct fuse_rename2_in));
781 if (err == -ENOSYS) {
782 fc->no_rename2 = 1;
783 err = -EINVAL;
784 }
785 } else {
786 err = fuse_rename_common(olddir, oldent, newdir, newent, 0,
787 FUSE_RENAME,
788 sizeof(struct fuse_rename_in));
Miklos Szeredi1560c972014-04-28 16:43:44 +0200789 }
Miklos Szeredi1560c972014-04-28 16:43:44 +0200790
Miklos Szeredi4237ba42014-07-10 10:50:19 +0200791 return err;
792}
793
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700794static int fuse_link(struct dentry *entry, struct inode *newdir,
795 struct dentry *newent)
796{
797 int err;
798 struct fuse_link_in inarg;
David Howells2b0143b2015-03-17 22:25:59 +0000799 struct inode *inode = d_inode(entry);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700800 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +0100801 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700802
803 memset(&inarg, 0, sizeof(inarg));
804 inarg.oldnodeid = get_node_id(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +0100805 args.in.h.opcode = FUSE_LINK;
806 args.in.numargs = 2;
807 args.in.args[0].size = sizeof(inarg);
808 args.in.args[0].value = &inarg;
809 args.in.args[1].size = newent->d_name.len + 1;
810 args.in.args[1].value = newent->d_name.name;
811 err = create_new_entry(fc, &args, newdir, newent, inode->i_mode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700812 /* Contrary to "normal" filesystems it can happen that link
813 makes two "logical" inodes point to the same "physical"
814 inode. We invalidate the attributes of the old one, so it
815 will reflect changes in the backing inode (link count,
816 etc.)
817 */
Miklos Szerediac45d612012-03-05 15:48:11 +0100818 if (!err) {
819 struct fuse_inode *fi = get_fuse_inode(inode);
820
821 spin_lock(&fc->lock);
822 fi->attr_version = ++fc->attr_version;
823 inc_nlink(inode);
824 spin_unlock(&fc->lock);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700825 fuse_invalidate_attr(inode);
Maxim Patlasov31f32672014-04-28 14:19:24 +0200826 fuse_update_ctime(inode);
Miklos Szerediac45d612012-03-05 15:48:11 +0100827 } else if (err == -EINTR) {
828 fuse_invalidate_attr(inode);
829 }
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700830 return err;
831}
832
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700833static void fuse_fillattr(struct inode *inode, struct fuse_attr *attr,
834 struct kstat *stat)
835{
Miklos Szeredi203627b2012-05-10 19:49:38 +0400836 unsigned int blkbits;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400837 struct fuse_conn *fc = get_fuse_conn(inode);
838
839 /* see the comment in fuse_change_attributes() */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400840 if (fc->writeback_cache && S_ISREG(inode->i_mode)) {
Pavel Emelyanov83732002013-10-10 17:10:46 +0400841 attr->size = i_size_read(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400842 attr->mtime = inode->i_mtime.tv_sec;
843 attr->mtimensec = inode->i_mtime.tv_nsec;
Maxim Patlasov31f32672014-04-28 14:19:24 +0200844 attr->ctime = inode->i_ctime.tv_sec;
845 attr->ctimensec = inode->i_ctime.tv_nsec;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400846 }
Miklos Szeredi203627b2012-05-10 19:49:38 +0400847
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700848 stat->dev = inode->i_sb->s_dev;
849 stat->ino = attr->ino;
850 stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
851 stat->nlink = attr->nlink;
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800852 stat->uid = make_kuid(&init_user_ns, attr->uid);
853 stat->gid = make_kgid(&init_user_ns, attr->gid);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700854 stat->rdev = inode->i_rdev;
855 stat->atime.tv_sec = attr->atime;
856 stat->atime.tv_nsec = attr->atimensec;
857 stat->mtime.tv_sec = attr->mtime;
858 stat->mtime.tv_nsec = attr->mtimensec;
859 stat->ctime.tv_sec = attr->ctime;
860 stat->ctime.tv_nsec = attr->ctimensec;
861 stat->size = attr->size;
862 stat->blocks = attr->blocks;
Miklos Szeredi203627b2012-05-10 19:49:38 +0400863
864 if (attr->blksize != 0)
865 blkbits = ilog2(attr->blksize);
866 else
867 blkbits = inode->i_sb->s_blocksize_bits;
868
869 stat->blksize = 1 << blkbits;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700870}
871
Miklos Szeredic79e3222007-10-18 03:06:59 -0700872static int fuse_do_getattr(struct inode *inode, struct kstat *stat,
873 struct file *file)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700874{
875 int err;
Miklos Szeredic79e3222007-10-18 03:06:59 -0700876 struct fuse_getattr_in inarg;
877 struct fuse_attr_out outarg;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700878 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +0100879 FUSE_ARGS(args);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700880 u64 attr_version;
881
Miklos Szeredi7dca9fd2007-11-28 16:21:59 -0800882 attr_version = fuse_get_attr_version(fc);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700883
Miklos Szeredic79e3222007-10-18 03:06:59 -0700884 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700885 memset(&outarg, 0, sizeof(outarg));
Miklos Szeredic79e3222007-10-18 03:06:59 -0700886 /* Directories have separate file-handle space */
887 if (file && S_ISREG(inode->i_mode)) {
888 struct fuse_file *ff = file->private_data;
889
890 inarg.getattr_flags |= FUSE_GETATTR_FH;
891 inarg.fh = ff->fh;
892 }
Miklos Szeredi70781872014-12-12 09:49:05 +0100893 args.in.h.opcode = FUSE_GETATTR;
894 args.in.h.nodeid = get_node_id(inode);
895 args.in.numargs = 1;
896 args.in.args[0].size = sizeof(inarg);
897 args.in.args[0].value = &inarg;
898 args.out.numargs = 1;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100899 args.out.args[0].size = sizeof(outarg);
Miklos Szeredi70781872014-12-12 09:49:05 +0100900 args.out.args[0].value = &outarg;
901 err = fuse_simple_request(fc, &args);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700902 if (!err) {
Miklos Szeredic79e3222007-10-18 03:06:59 -0700903 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700904 make_bad_inode(inode);
905 err = -EIO;
906 } else {
Miklos Szeredic79e3222007-10-18 03:06:59 -0700907 fuse_change_attributes(inode, &outarg.attr,
908 attr_timeout(&outarg),
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700909 attr_version);
910 if (stat)
Miklos Szeredic79e3222007-10-18 03:06:59 -0700911 fuse_fillattr(inode, &outarg.attr, stat);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700912 }
913 }
914 return err;
915}
916
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800917int fuse_update_attributes(struct inode *inode, struct kstat *stat,
918 struct file *file, bool *refreshed)
919{
920 struct fuse_inode *fi = get_fuse_inode(inode);
921 int err;
922 bool r;
923
Miklos Szeredi126b9d42014-07-07 15:28:50 +0200924 if (time_before64(fi->i_time, get_jiffies_64())) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800925 r = true;
Seth Forshee60bcc882016-08-29 08:46:37 -0500926 forget_all_cached_acls(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800927 err = fuse_do_getattr(inode, stat, file);
928 } else {
929 r = false;
930 err = 0;
931 if (stat) {
932 generic_fillattr(inode, stat);
933 stat->mode = fi->orig_i_mode;
Pavel Shilovsky45c72cd2012-05-10 19:49:38 +0400934 stat->ino = fi->orig_ino;
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800935 }
936 }
937
938 if (refreshed != NULL)
939 *refreshed = r;
940
941 return err;
942}
943
John Muir3b463ae2009-05-31 11:13:57 -0400944int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid,
John Muir451d0f52011-12-06 21:50:06 +0100945 u64 child_nodeid, struct qstr *name)
John Muir3b463ae2009-05-31 11:13:57 -0400946{
947 int err = -ENOTDIR;
948 struct inode *parent;
949 struct dentry *dir;
950 struct dentry *entry;
951
952 parent = ilookup5(sb, parent_nodeid, fuse_inode_eq, &parent_nodeid);
953 if (!parent)
954 return -ENOENT;
955
Al Viro59551022016-01-22 15:40:57 -0500956 inode_lock(parent);
John Muir3b463ae2009-05-31 11:13:57 -0400957 if (!S_ISDIR(parent->i_mode))
958 goto unlock;
959
960 err = -ENOENT;
961 dir = d_find_alias(parent);
962 if (!dir)
963 goto unlock;
964
Linus Torvalds8387ff22016-06-10 07:51:30 -0700965 name->hash = full_name_hash(dir, name->name, name->len);
John Muir3b463ae2009-05-31 11:13:57 -0400966 entry = d_lookup(dir, name);
967 dput(dir);
968 if (!entry)
969 goto unlock;
970
971 fuse_invalidate_attr(parent);
972 fuse_invalidate_entry(entry);
John Muir451d0f52011-12-06 21:50:06 +0100973
David Howells2b0143b2015-03-17 22:25:59 +0000974 if (child_nodeid != 0 && d_really_is_positive(entry)) {
Al Viro59551022016-01-22 15:40:57 -0500975 inode_lock(d_inode(entry));
David Howells2b0143b2015-03-17 22:25:59 +0000976 if (get_node_id(d_inode(entry)) != child_nodeid) {
John Muir451d0f52011-12-06 21:50:06 +0100977 err = -ENOENT;
978 goto badentry;
979 }
980 if (d_mountpoint(entry)) {
981 err = -EBUSY;
982 goto badentry;
983 }
David Howellse36cb0b2015-01-29 12:02:35 +0000984 if (d_is_dir(entry)) {
John Muir451d0f52011-12-06 21:50:06 +0100985 shrink_dcache_parent(entry);
986 if (!simple_empty(entry)) {
987 err = -ENOTEMPTY;
988 goto badentry;
989 }
David Howells2b0143b2015-03-17 22:25:59 +0000990 d_inode(entry)->i_flags |= S_DEAD;
John Muir451d0f52011-12-06 21:50:06 +0100991 }
992 dont_mount(entry);
David Howells2b0143b2015-03-17 22:25:59 +0000993 clear_nlink(d_inode(entry));
John Muir451d0f52011-12-06 21:50:06 +0100994 err = 0;
995 badentry:
Al Viro59551022016-01-22 15:40:57 -0500996 inode_unlock(d_inode(entry));
John Muir451d0f52011-12-06 21:50:06 +0100997 if (!err)
998 d_delete(entry);
999 } else {
1000 err = 0;
1001 }
John Muir3b463ae2009-05-31 11:13:57 -04001002 dput(entry);
John Muir3b463ae2009-05-31 11:13:57 -04001003
1004 unlock:
Al Viro59551022016-01-22 15:40:57 -05001005 inode_unlock(parent);
John Muir3b463ae2009-05-31 11:13:57 -04001006 iput(parent);
1007 return err;
1008}
1009
Miklos Szeredi87729a52005-09-09 13:10:34 -07001010/*
1011 * Calling into a user-controlled filesystem gives the filesystem
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001012 * daemon ptrace-like capabilities over the current process. This
Miklos Szeredi87729a52005-09-09 13:10:34 -07001013 * means, that the filesystem daemon is able to record the exact
1014 * filesystem operations performed, and can also control the behavior
1015 * of the requester process in otherwise impossible ways. For example
1016 * it can delay the operation for arbitrary length of time allowing
1017 * DoS against the requester.
1018 *
1019 * For this reason only those processes can call into the filesystem,
1020 * for which the owner of the mount has ptrace privilege. This
1021 * excludes processes started by other users, suid or sgid processes.
1022 */
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001023int fuse_allow_current_process(struct fuse_conn *fc)
Miklos Szeredi87729a52005-09-09 13:10:34 -07001024{
David Howellsc69e8d92008-11-14 10:39:19 +11001025 const struct cred *cred;
David Howellsc69e8d92008-11-14 10:39:19 +11001026
Miklos Szeredi87729a52005-09-09 13:10:34 -07001027 if (fc->flags & FUSE_ALLOW_OTHER)
1028 return 1;
1029
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001030 cred = current_cred();
Eric W. Biederman499dcf22012-02-07 16:26:03 -08001031 if (uid_eq(cred->euid, fc->user_id) &&
1032 uid_eq(cred->suid, fc->user_id) &&
1033 uid_eq(cred->uid, fc->user_id) &&
1034 gid_eq(cred->egid, fc->group_id) &&
1035 gid_eq(cred->sgid, fc->group_id) &&
1036 gid_eq(cred->gid, fc->group_id))
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001037 return 1;
Miklos Szeredi87729a52005-09-09 13:10:34 -07001038
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001039 return 0;
Miklos Szeredi87729a52005-09-09 13:10:34 -07001040}
1041
Miklos Szeredi31d40d72005-11-07 00:59:50 -08001042static int fuse_access(struct inode *inode, int mask)
1043{
1044 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01001045 FUSE_ARGS(args);
Miklos Szeredi31d40d72005-11-07 00:59:50 -08001046 struct fuse_access_in inarg;
1047 int err;
1048
Miklos Szeredi698fa1d2013-10-01 16:41:23 +02001049 BUG_ON(mask & MAY_NOT_BLOCK);
1050
Miklos Szeredi31d40d72005-11-07 00:59:50 -08001051 if (fc->no_access)
1052 return 0;
1053
Miklos Szeredi31d40d72005-11-07 00:59:50 -08001054 memset(&inarg, 0, sizeof(inarg));
Al Viroe6305c42008-07-15 21:03:57 -04001055 inarg.mask = mask & (MAY_READ | MAY_WRITE | MAY_EXEC);
Miklos Szeredi70781872014-12-12 09:49:05 +01001056 args.in.h.opcode = FUSE_ACCESS;
1057 args.in.h.nodeid = get_node_id(inode);
1058 args.in.numargs = 1;
1059 args.in.args[0].size = sizeof(inarg);
1060 args.in.args[0].value = &inarg;
1061 err = fuse_simple_request(fc, &args);
Miklos Szeredi31d40d72005-11-07 00:59:50 -08001062 if (err == -ENOSYS) {
1063 fc->no_access = 1;
1064 err = 0;
1065 }
1066 return err;
1067}
1068
Al Viro10556cb2011-06-20 19:28:19 -04001069static int fuse_perm_getattr(struct inode *inode, int mask)
Miklos Szeredi19690dd2011-03-21 13:58:06 +01001070{
Al Viro10556cb2011-06-20 19:28:19 -04001071 if (mask & MAY_NOT_BLOCK)
Miklos Szeredi19690dd2011-03-21 13:58:06 +01001072 return -ECHILD;
1073
Seth Forshee60bcc882016-08-29 08:46:37 -05001074 forget_all_cached_acls(inode);
Miklos Szeredi19690dd2011-03-21 13:58:06 +01001075 return fuse_do_getattr(inode, NULL, NULL);
1076}
1077
Miklos Szeredi6f9f1182006-01-06 00:19:39 -08001078/*
1079 * Check permission. The two basic access models of FUSE are:
1080 *
1081 * 1) Local access checking ('default_permissions' mount option) based
1082 * on file mode. This is the plain old disk filesystem permission
1083 * modell.
1084 *
1085 * 2) "Remote" access checking, where server is responsible for
1086 * checking permission in each inode operation. An exception to this
1087 * is if ->permission() was invoked from sys_access() in which case an
1088 * access request is sent. Execute permission is still checked
1089 * locally based on file mode.
1090 */
Al Viro10556cb2011-06-20 19:28:19 -04001091static int fuse_permission(struct inode *inode, int mask)
Miklos Szeredie5e55582005-09-09 13:10:28 -07001092{
1093 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi244f6382007-10-16 23:31:02 -07001094 bool refreshed = false;
1095 int err = 0;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001096
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001097 if (!fuse_allow_current_process(fc))
Miklos Szeredie5e55582005-09-09 13:10:28 -07001098 return -EACCES;
Miklos Szeredi244f6382007-10-16 23:31:02 -07001099
1100 /*
Miklos Szeredie8e96152007-10-16 23:31:06 -07001101 * If attributes are needed, refresh them before proceeding
Miklos Szeredi244f6382007-10-16 23:31:02 -07001102 */
Miklos Szeredie8e96152007-10-16 23:31:06 -07001103 if ((fc->flags & FUSE_DEFAULT_PERMISSIONS) ||
1104 ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))) {
Miklos Szeredi19690dd2011-03-21 13:58:06 +01001105 struct fuse_inode *fi = get_fuse_inode(inode);
1106
Miklos Szeredi126b9d42014-07-07 15:28:50 +02001107 if (time_before64(fi->i_time, get_jiffies_64())) {
Miklos Szeredi19690dd2011-03-21 13:58:06 +01001108 refreshed = true;
1109
Al Viro10556cb2011-06-20 19:28:19 -04001110 err = fuse_perm_getattr(inode, mask);
Miklos Szeredi19690dd2011-03-21 13:58:06 +01001111 if (err)
1112 return err;
1113 }
Miklos Szeredi244f6382007-10-16 23:31:02 -07001114 }
1115
1116 if (fc->flags & FUSE_DEFAULT_PERMISSIONS) {
Al Viro2830ba72011-06-20 19:16:29 -04001117 err = generic_permission(inode, mask);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07001118
1119 /* If permission is denied, try to refresh file
1120 attributes. This is also needed, because the root
1121 node will at first have no permissions */
Miklos Szeredi244f6382007-10-16 23:31:02 -07001122 if (err == -EACCES && !refreshed) {
Al Viro10556cb2011-06-20 19:28:19 -04001123 err = fuse_perm_getattr(inode, mask);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07001124 if (!err)
Al Viro2830ba72011-06-20 19:16:29 -04001125 err = generic_permission(inode, mask);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07001126 }
1127
Miklos Szeredi6f9f1182006-01-06 00:19:39 -08001128 /* Note: the opposite of the above test does not
1129 exist. So if permissions are revoked this won't be
1130 noticed immediately, only after the attribute
1131 timeout has expired */
Eric Paris9cfcac82010-07-23 11:43:51 -04001132 } else if (mask & (MAY_ACCESS | MAY_CHDIR)) {
Miklos Szeredie8e96152007-10-16 23:31:06 -07001133 err = fuse_access(inode, mask);
1134 } else if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
1135 if (!(inode->i_mode & S_IXUGO)) {
1136 if (refreshed)
1137 return -EACCES;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07001138
Al Viro10556cb2011-06-20 19:28:19 -04001139 err = fuse_perm_getattr(inode, mask);
Miklos Szeredie8e96152007-10-16 23:31:06 -07001140 if (!err && !(inode->i_mode & S_IXUGO))
1141 return -EACCES;
1142 }
Miklos Szeredie5e55582005-09-09 13:10:28 -07001143 }
Miklos Szeredi244f6382007-10-16 23:31:02 -07001144 return err;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001145}
1146
1147static int parse_dirfile(char *buf, size_t nbytes, struct file *file,
Al Viro8d3af7f2013-05-18 03:03:58 -04001148 struct dir_context *ctx)
Miklos Szeredie5e55582005-09-09 13:10:28 -07001149{
1150 while (nbytes >= FUSE_NAME_OFFSET) {
1151 struct fuse_dirent *dirent = (struct fuse_dirent *) buf;
1152 size_t reclen = FUSE_DIRENT_SIZE(dirent);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001153 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1154 return -EIO;
1155 if (reclen > nbytes)
1156 break;
Miklos Szerediefeb9e62013-09-03 14:28:38 +02001157 if (memchr(dirent->name, '/', dirent->namelen) != NULL)
1158 return -EIO;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001159
Al Viro8d3af7f2013-05-18 03:03:58 -04001160 if (!dir_emit(ctx, dirent->name, dirent->namelen,
1161 dirent->ino, dirent->type))
Miklos Szeredie5e55582005-09-09 13:10:28 -07001162 break;
1163
1164 buf += reclen;
1165 nbytes -= reclen;
Al Viro8d3af7f2013-05-18 03:03:58 -04001166 ctx->pos = dirent->off;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001167 }
1168
1169 return 0;
1170}
1171
Anand V. Avati0b05b182012-08-19 08:53:23 -04001172static int fuse_direntplus_link(struct file *file,
1173 struct fuse_direntplus *direntplus,
1174 u64 attr_version)
1175{
Anand V. Avati0b05b182012-08-19 08:53:23 -04001176 struct fuse_entry_out *o = &direntplus->entry_out;
1177 struct fuse_dirent *dirent = &direntplus->dirent;
1178 struct dentry *parent = file->f_path.dentry;
1179 struct qstr name = QSTR_INIT(dirent->name, dirent->namelen);
1180 struct dentry *dentry;
1181 struct dentry *alias;
David Howells2b0143b2015-03-17 22:25:59 +00001182 struct inode *dir = d_inode(parent);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001183 struct fuse_conn *fc;
1184 struct inode *inode;
Al Virod9b3dbd2016-04-20 17:30:32 -04001185 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001186
1187 if (!o->nodeid) {
1188 /*
1189 * Unlike in the case of fuse_lookup, zero nodeid does not mean
1190 * ENOENT. Instead, it only means the userspace filesystem did
1191 * not want to return attributes/handle for this entry.
1192 *
1193 * So do nothing.
1194 */
1195 return 0;
1196 }
1197
1198 if (name.name[0] == '.') {
1199 /*
1200 * We could potentially refresh the attributes of the directory
1201 * and its parent?
1202 */
1203 if (name.len == 1)
1204 return 0;
1205 if (name.name[1] == '.' && name.len == 2)
1206 return 0;
1207 }
Miklos Szeredia28ef452013-07-17 14:53:53 +02001208
1209 if (invalid_nodeid(o->nodeid))
1210 return -EIO;
1211 if (!fuse_valid_type(o->attr.mode))
1212 return -EIO;
1213
Anand V. Avati0b05b182012-08-19 08:53:23 -04001214 fc = get_fuse_conn(dir);
1215
Linus Torvalds8387ff22016-06-10 07:51:30 -07001216 name.hash = full_name_hash(parent, name.name, name.len);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001217 dentry = d_lookup(parent, &name);
Al Virod9b3dbd2016-04-20 17:30:32 -04001218 if (!dentry) {
1219retry:
1220 dentry = d_alloc_parallel(parent, &name, &wq);
1221 if (IS_ERR(dentry))
1222 return PTR_ERR(dentry);
1223 }
1224 if (!d_in_lookup(dentry)) {
1225 struct fuse_inode *fi;
David Howells2b0143b2015-03-17 22:25:59 +00001226 inode = d_inode(dentry);
Al Virod9b3dbd2016-04-20 17:30:32 -04001227 if (!inode ||
1228 get_node_id(inode) != o->nodeid ||
1229 ((o->attr.mode ^ inode->i_mode) & S_IFMT)) {
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001230 d_invalidate(dentry);
Al Virod9b3dbd2016-04-20 17:30:32 -04001231 dput(dentry);
1232 goto retry;
Anand V. Avati0b05b182012-08-19 08:53:23 -04001233 }
Al Virod9b3dbd2016-04-20 17:30:32 -04001234 if (is_bad_inode(inode)) {
1235 dput(dentry);
1236 return -EIO;
1237 }
1238
1239 fi = get_fuse_inode(inode);
1240 spin_lock(&fc->lock);
1241 fi->nlookup++;
1242 spin_unlock(&fc->lock);
1243
Seth Forshee60bcc882016-08-29 08:46:37 -05001244 forget_all_cached_acls(inode);
Al Virod9b3dbd2016-04-20 17:30:32 -04001245 fuse_change_attributes(inode, &o->attr,
1246 entry_attr_timeout(o),
1247 attr_version);
1248 /*
1249 * The other branch comes via fuse_iget()
1250 * which bumps nlookup inside
1251 */
1252 } else {
1253 inode = fuse_iget(dir->i_sb, o->nodeid, o->generation,
1254 &o->attr, entry_attr_timeout(o),
1255 attr_version);
1256 if (!inode)
1257 inode = ERR_PTR(-ENOMEM);
1258
1259 alias = d_splice_alias(inode, dentry);
1260 d_lookup_done(dentry);
1261 if (alias) {
1262 dput(dentry);
1263 dentry = alias;
1264 }
1265 if (IS_ERR(dentry))
1266 return PTR_ERR(dentry);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001267 }
Miklos Szeredi6314efe2013-10-01 16:41:22 +02001268 if (fc->readdirplus_auto)
1269 set_bit(FUSE_I_INIT_RDPLUS, &get_fuse_inode(inode)->state);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001270 fuse_change_entry_timeout(dentry, o);
1271
Miklos Szeredic7263bc2013-07-17 14:53:54 +02001272 dput(dentry);
Al Virod9b3dbd2016-04-20 17:30:32 -04001273 return 0;
Anand V. Avati0b05b182012-08-19 08:53:23 -04001274}
1275
1276static int parse_dirplusfile(char *buf, size_t nbytes, struct file *file,
Al Viro8d3af7f2013-05-18 03:03:58 -04001277 struct dir_context *ctx, u64 attr_version)
Anand V. Avati0b05b182012-08-19 08:53:23 -04001278{
1279 struct fuse_direntplus *direntplus;
1280 struct fuse_dirent *dirent;
1281 size_t reclen;
1282 int over = 0;
1283 int ret;
1284
1285 while (nbytes >= FUSE_NAME_OFFSET_DIRENTPLUS) {
1286 direntplus = (struct fuse_direntplus *) buf;
1287 dirent = &direntplus->dirent;
1288 reclen = FUSE_DIRENTPLUS_SIZE(direntplus);
1289
1290 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1291 return -EIO;
1292 if (reclen > nbytes)
1293 break;
Miklos Szerediefeb9e62013-09-03 14:28:38 +02001294 if (memchr(dirent->name, '/', dirent->namelen) != NULL)
1295 return -EIO;
Anand V. Avati0b05b182012-08-19 08:53:23 -04001296
1297 if (!over) {
1298 /* We fill entries into dstbuf only as much as
1299 it can hold. But we still continue iterating
1300 over remaining entries to link them. If not,
1301 we need to send a FORGET for each of those
1302 which we did not link.
1303 */
Al Viro8d3af7f2013-05-18 03:03:58 -04001304 over = !dir_emit(ctx, dirent->name, dirent->namelen,
1305 dirent->ino, dirent->type);
1306 ctx->pos = dirent->off;
Anand V. Avati0b05b182012-08-19 08:53:23 -04001307 }
1308
1309 buf += reclen;
1310 nbytes -= reclen;
1311
1312 ret = fuse_direntplus_link(file, direntplus, attr_version);
1313 if (ret)
1314 fuse_force_forget(file, direntplus->entry_out.nodeid);
1315 }
1316
1317 return 0;
1318}
1319
Al Viro8d3af7f2013-05-18 03:03:58 -04001320static int fuse_readdir(struct file *file, struct dir_context *ctx)
Miklos Szeredie5e55582005-09-09 13:10:28 -07001321{
Feng Shuo4582a4a2013-01-15 11:23:28 +08001322 int plus, err;
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001323 size_t nbytes;
1324 struct page *page;
Al Viro496ad9a2013-01-23 17:07:38 -05001325 struct inode *inode = file_inode(file);
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001326 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001327 struct fuse_req *req;
Anand V. Avati0b05b182012-08-19 08:53:23 -04001328 u64 attr_version = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001329
1330 if (is_bad_inode(inode))
1331 return -EIO;
1332
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04001333 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001334 if (IS_ERR(req))
1335 return PTR_ERR(req);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001336
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001337 page = alloc_page(GFP_KERNEL);
1338 if (!page) {
1339 fuse_put_request(fc, req);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001340 return -ENOMEM;
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001341 }
Feng Shuo4582a4a2013-01-15 11:23:28 +08001342
Al Viro8d3af7f2013-05-18 03:03:58 -04001343 plus = fuse_use_readdirplus(inode, ctx);
Miklos Szeredif4975c62009-04-02 14:25:34 +02001344 req->out.argpages = 1;
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001345 req->num_pages = 1;
1346 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001347 req->page_descs[0].length = PAGE_SIZE;
Feng Shuo4582a4a2013-01-15 11:23:28 +08001348 if (plus) {
Anand V. Avati0b05b182012-08-19 08:53:23 -04001349 attr_version = fuse_get_attr_version(fc);
Al Viro8d3af7f2013-05-18 03:03:58 -04001350 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
Anand V. Avati0b05b182012-08-19 08:53:23 -04001351 FUSE_READDIRPLUS);
1352 } else {
Al Viro8d3af7f2013-05-18 03:03:58 -04001353 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
Anand V. Avati0b05b182012-08-19 08:53:23 -04001354 FUSE_READDIR);
1355 }
Miklos Szeredi5c672ab2016-06-30 13:10:49 +02001356 fuse_lock_inode(inode);
Tejun Heob93f8582008-11-26 12:03:55 +01001357 fuse_request_send(fc, req);
Miklos Szeredi5c672ab2016-06-30 13:10:49 +02001358 fuse_unlock_inode(inode);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -08001359 nbytes = req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001360 err = req->out.h.error;
1361 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001362 if (!err) {
Feng Shuo4582a4a2013-01-15 11:23:28 +08001363 if (plus) {
Anand V. Avati0b05b182012-08-19 08:53:23 -04001364 err = parse_dirplusfile(page_address(page), nbytes,
Al Viro8d3af7f2013-05-18 03:03:58 -04001365 file, ctx,
Anand V. Avati0b05b182012-08-19 08:53:23 -04001366 attr_version);
1367 } else {
1368 err = parse_dirfile(page_address(page), nbytes, file,
Al Viro8d3af7f2013-05-18 03:03:58 -04001369 ctx);
Anand V. Avati0b05b182012-08-19 08:53:23 -04001370 }
1371 }
Miklos Szeredie5e55582005-09-09 13:10:28 -07001372
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001373 __free_page(page);
Andrew Gallagher451418f2013-11-05 03:55:43 -08001374 fuse_invalidate_atime(inode);
Miklos Szeredi04730fe2005-09-09 13:10:36 -07001375 return err;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001376}
1377
Al Viro6b255392015-11-17 10:20:54 -05001378static const char *fuse_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001379 struct inode *inode,
1380 struct delayed_call *done)
Miklos Szeredie5e55582005-09-09 13:10:28 -07001381{
Miklos Szeredie5e55582005-09-09 13:10:28 -07001382 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01001383 FUSE_ARGS(args);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001384 char *link;
Miklos Szeredi70781872014-12-12 09:49:05 +01001385 ssize_t ret;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001386
Al Viro6b255392015-11-17 10:20:54 -05001387 if (!dentry)
1388 return ERR_PTR(-ECHILD);
1389
Al Virocd3417c2015-12-29 16:03:53 -05001390 link = kmalloc(PAGE_SIZE, GFP_KERNEL);
Miklos Szeredi70781872014-12-12 09:49:05 +01001391 if (!link)
1392 return ERR_PTR(-ENOMEM);
1393
1394 args.in.h.opcode = FUSE_READLINK;
1395 args.in.h.nodeid = get_node_id(inode);
1396 args.out.argvar = 1;
1397 args.out.numargs = 1;
1398 args.out.args[0].size = PAGE_SIZE - 1;
1399 args.out.args[0].value = link;
1400 ret = fuse_simple_request(fc, &args);
1401 if (ret < 0) {
Al Virocd3417c2015-12-29 16:03:53 -05001402 kfree(link);
Miklos Szeredi70781872014-12-12 09:49:05 +01001403 link = ERR_PTR(ret);
1404 } else {
1405 link[ret] = '\0';
Al Virofceef392015-12-29 15:58:39 -05001406 set_delayed_call(done, kfree_link, link);
Miklos Szeredi70781872014-12-12 09:49:05 +01001407 }
Andrew Gallagher451418f2013-11-05 03:55:43 -08001408 fuse_invalidate_atime(inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001409 return link;
1410}
1411
Miklos Szeredie5e55582005-09-09 13:10:28 -07001412static int fuse_dir_open(struct inode *inode, struct file *file)
1413{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +02001414 return fuse_open_common(inode, file, true);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001415}
1416
1417static int fuse_dir_release(struct inode *inode, struct file *file)
1418{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +02001419 fuse_release_common(file, FUSE_RELEASEDIR);
1420
1421 return 0;
Miklos Szeredie5e55582005-09-09 13:10:28 -07001422}
1423
Josef Bacik02c24a82011-07-16 20:44:56 -04001424static int fuse_dir_fsync(struct file *file, loff_t start, loff_t end,
1425 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -07001426{
Josef Bacik02c24a82011-07-16 20:44:56 -04001427 return fuse_fsync_common(file, start, end, datasync, 1);
Miklos Szeredi82547982005-09-09 13:10:38 -07001428}
1429
Miklos Szeredib18da0c2011-12-13 11:58:49 +01001430static long fuse_dir_ioctl(struct file *file, unsigned int cmd,
1431 unsigned long arg)
1432{
1433 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1434
1435 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1436 if (fc->minor < 18)
1437 return -ENOTTY;
1438
1439 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_DIR);
1440}
1441
1442static long fuse_dir_compat_ioctl(struct file *file, unsigned int cmd,
1443 unsigned long arg)
1444{
1445 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1446
1447 if (fc->minor < 18)
1448 return -ENOTTY;
1449
1450 return fuse_ioctl_common(file, cmd, arg,
1451 FUSE_IOCTL_COMPAT | FUSE_IOCTL_DIR);
1452}
1453
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001454static bool update_mtime(unsigned ivalid, bool trust_local_mtime)
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001455{
1456 /* Always update if mtime is explicitly set */
1457 if (ivalid & ATTR_MTIME_SET)
1458 return true;
1459
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001460 /* Or if kernel i_mtime is the official one */
1461 if (trust_local_mtime)
1462 return true;
1463
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001464 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1465 if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE)))
1466 return false;
1467
1468 /* In all other cases update */
1469 return true;
1470}
1471
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001472static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg,
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001473 bool trust_local_cmtime)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001474{
1475 unsigned ivalid = iattr->ia_valid;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001476
1477 if (ivalid & ATTR_MODE)
Miklos Szeredibefc6492005-11-07 00:59:52 -08001478 arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001479 if (ivalid & ATTR_UID)
Eric W. Biederman499dcf22012-02-07 16:26:03 -08001480 arg->valid |= FATTR_UID, arg->uid = from_kuid(&init_user_ns, iattr->ia_uid);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001481 if (ivalid & ATTR_GID)
Eric W. Biederman499dcf22012-02-07 16:26:03 -08001482 arg->valid |= FATTR_GID, arg->gid = from_kgid(&init_user_ns, iattr->ia_gid);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001483 if (ivalid & ATTR_SIZE)
Miklos Szeredibefc6492005-11-07 00:59:52 -08001484 arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size;
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001485 if (ivalid & ATTR_ATIME) {
1486 arg->valid |= FATTR_ATIME;
Miklos Szeredibefc6492005-11-07 00:59:52 -08001487 arg->atime = iattr->ia_atime.tv_sec;
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001488 arg->atimensec = iattr->ia_atime.tv_nsec;
1489 if (!(ivalid & ATTR_ATIME_SET))
1490 arg->valid |= FATTR_ATIME_NOW;
1491 }
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001492 if ((ivalid & ATTR_MTIME) && update_mtime(ivalid, trust_local_cmtime)) {
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001493 arg->valid |= FATTR_MTIME;
Miklos Szeredibefc6492005-11-07 00:59:52 -08001494 arg->mtime = iattr->ia_mtime.tv_sec;
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001495 arg->mtimensec = iattr->ia_mtime.tv_nsec;
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001496 if (!(ivalid & ATTR_MTIME_SET) && !trust_local_cmtime)
Miklos Szeredi17637cb2007-10-18 03:07:01 -07001497 arg->valid |= FATTR_MTIME_NOW;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001498 }
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001499 if ((ivalid & ATTR_CTIME) && trust_local_cmtime) {
1500 arg->valid |= FATTR_CTIME;
1501 arg->ctime = iattr->ia_ctime.tv_sec;
1502 arg->ctimensec = iattr->ia_ctime.tv_nsec;
1503 }
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001504}
1505
Miklos Szeredi6f9f1182006-01-06 00:19:39 -08001506/*
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001507 * Prevent concurrent writepages on inode
1508 *
1509 * This is done by adding a negative bias to the inode write counter
1510 * and waiting for all pending writes to finish.
1511 */
1512void fuse_set_nowrite(struct inode *inode)
1513{
1514 struct fuse_conn *fc = get_fuse_conn(inode);
1515 struct fuse_inode *fi = get_fuse_inode(inode);
1516
Al Viro59551022016-01-22 15:40:57 -05001517 BUG_ON(!inode_is_locked(inode));
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001518
1519 spin_lock(&fc->lock);
1520 BUG_ON(fi->writectr < 0);
1521 fi->writectr += FUSE_NOWRITE;
1522 spin_unlock(&fc->lock);
1523 wait_event(fi->page_waitq, fi->writectr == FUSE_NOWRITE);
1524}
1525
1526/*
1527 * Allow writepages on inode
1528 *
1529 * Remove the bias from the writecounter and send any queued
1530 * writepages.
1531 */
1532static void __fuse_release_nowrite(struct inode *inode)
1533{
1534 struct fuse_inode *fi = get_fuse_inode(inode);
1535
1536 BUG_ON(fi->writectr != FUSE_NOWRITE);
1537 fi->writectr = 0;
1538 fuse_flush_writepages(inode);
1539}
1540
1541void fuse_release_nowrite(struct inode *inode)
1542{
1543 struct fuse_conn *fc = get_fuse_conn(inode);
1544
1545 spin_lock(&fc->lock);
1546 __fuse_release_nowrite(inode);
1547 spin_unlock(&fc->lock);
1548}
1549
Miklos Szeredi70781872014-12-12 09:49:05 +01001550static void fuse_setattr_fill(struct fuse_conn *fc, struct fuse_args *args,
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001551 struct inode *inode,
1552 struct fuse_setattr_in *inarg_p,
1553 struct fuse_attr_out *outarg_p)
1554{
Miklos Szeredi70781872014-12-12 09:49:05 +01001555 args->in.h.opcode = FUSE_SETATTR;
1556 args->in.h.nodeid = get_node_id(inode);
1557 args->in.numargs = 1;
1558 args->in.args[0].size = sizeof(*inarg_p);
1559 args->in.args[0].value = inarg_p;
1560 args->out.numargs = 1;
Miklos Szeredi21f62172015-01-06 10:45:35 +01001561 args->out.args[0].size = sizeof(*outarg_p);
Miklos Szeredi70781872014-12-12 09:49:05 +01001562 args->out.args[0].value = outarg_p;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001563}
1564
1565/*
1566 * Flush inode->i_mtime to the server
1567 */
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001568int fuse_flush_times(struct inode *inode, struct fuse_file *ff)
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001569{
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001570 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01001571 FUSE_ARGS(args);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001572 struct fuse_setattr_in inarg;
1573 struct fuse_attr_out outarg;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001574
1575 memset(&inarg, 0, sizeof(inarg));
1576 memset(&outarg, 0, sizeof(outarg));
1577
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001578 inarg.valid = FATTR_MTIME;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001579 inarg.mtime = inode->i_mtime.tv_sec;
1580 inarg.mtimensec = inode->i_mtime.tv_nsec;
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001581 if (fc->minor >= 23) {
1582 inarg.valid |= FATTR_CTIME;
1583 inarg.ctime = inode->i_ctime.tv_sec;
1584 inarg.ctimensec = inode->i_ctime.tv_nsec;
1585 }
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001586 if (ff) {
1587 inarg.valid |= FATTR_FH;
1588 inarg.fh = ff->fh;
1589 }
Miklos Szeredi70781872014-12-12 09:49:05 +01001590 fuse_setattr_fill(fc, &args, inode, &inarg, &outarg);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001591
Miklos Szeredi70781872014-12-12 09:49:05 +01001592 return fuse_simple_request(fc, &args);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001593}
1594
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001595/*
Miklos Szeredi6f9f1182006-01-06 00:19:39 -08001596 * Set attributes, and at the same time refresh them.
1597 *
1598 * Truncation is slightly complicated, because the 'truncate' request
1599 * may fail, in which case we don't want to touch the mapping.
Miklos Szeredi9ffbb912006-10-17 00:10:06 -07001600 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1601 * and the actual truncation by hand.
Miklos Szeredi6f9f1182006-01-06 00:19:39 -08001602 */
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04001603int fuse_do_setattr(struct inode *inode, struct iattr *attr,
1604 struct file *file)
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001605{
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001606 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001607 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01001608 FUSE_ARGS(args);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001609 struct fuse_setattr_in inarg;
1610 struct fuse_attr_out outarg;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001611 bool is_truncate = false;
Pavel Emelyanov83732002013-10-10 17:10:46 +04001612 bool is_wb = fc->writeback_cache;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001613 loff_t oldsize;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001614 int err;
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001615 bool trust_local_cmtime = is_wb && S_ISREG(inode->i_mode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001616
Christoph Hellwigdb78b872010-06-04 11:30:03 +02001617 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
1618 attr->ia_valid |= ATTR_FORCE;
1619
1620 err = inode_change_ok(inode, attr);
1621 if (err)
1622 return err;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07001623
Miklos Szeredi8d56add2011-02-25 14:44:58 +01001624 if (attr->ia_valid & ATTR_OPEN) {
1625 if (fc->atomic_o_trunc)
1626 return 0;
1627 file = NULL;
1628 }
Miklos Szeredi6ff958e2007-10-18 03:07:02 -07001629
Christoph Hellwig2c27c652010-06-04 11:30:04 +02001630 if (attr->ia_valid & ATTR_SIZE)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001631 is_truncate = true;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001632
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001633 if (is_truncate) {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001634 fuse_set_nowrite(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001635 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001636 if (trust_local_cmtime && attr->ia_size != inode->i_size)
1637 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001638 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001639
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001640 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi0e9663e2007-10-18 03:07:05 -07001641 memset(&outarg, 0, sizeof(outarg));
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001642 iattr_to_fattr(attr, &inarg, trust_local_cmtime);
Miklos Szeredi49d49142007-10-18 03:07:00 -07001643 if (file) {
1644 struct fuse_file *ff = file->private_data;
1645 inarg.valid |= FATTR_FH;
1646 inarg.fh = ff->fh;
1647 }
Miklos Szeredif3332112007-10-18 03:07:04 -07001648 if (attr->ia_valid & ATTR_SIZE) {
1649 /* For mandatory locking in truncate */
1650 inarg.valid |= FATTR_LOCKOWNER;
1651 inarg.lock_owner = fuse_lock_owner_id(fc, current->files);
1652 }
Miklos Szeredi70781872014-12-12 09:49:05 +01001653 fuse_setattr_fill(fc, &args, inode, &inarg, &outarg);
1654 err = fuse_simple_request(fc, &args);
Miklos Szeredie00d2c22007-10-16 23:31:01 -07001655 if (err) {
1656 if (err == -EINTR)
1657 fuse_invalidate_attr(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001658 goto error;
Miklos Szeredie00d2c22007-10-16 23:31:01 -07001659 }
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001660
Miklos Szeredie00d2c22007-10-16 23:31:01 -07001661 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
1662 make_bad_inode(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001663 err = -EIO;
1664 goto error;
Miklos Szeredie00d2c22007-10-16 23:31:01 -07001665 }
1666
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001667 spin_lock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001668 /* the kernel maintains i_mtime locally */
Maxim Patlasov3ad22c62014-04-28 14:19:25 +02001669 if (trust_local_cmtime) {
1670 if (attr->ia_valid & ATTR_MTIME)
1671 inode->i_mtime = attr->ia_mtime;
1672 if (attr->ia_valid & ATTR_CTIME)
1673 inode->i_ctime = attr->ia_ctime;
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001674 /* FIXME: clear I_DIRTY_SYNC? */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001675 }
1676
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001677 fuse_change_attributes_common(inode, &outarg.attr,
1678 attr_timeout(&outarg));
1679 oldsize = inode->i_size;
Pavel Emelyanov83732002013-10-10 17:10:46 +04001680 /* see the comment in fuse_change_attributes() */
1681 if (!is_wb || is_truncate || !S_ISREG(inode->i_mode))
1682 i_size_write(inode, outarg.attr.size);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001683
1684 if (is_truncate) {
1685 /* NOTE: this may release/reacquire fc->lock */
1686 __fuse_release_nowrite(inode);
1687 }
1688 spin_unlock(&fc->lock);
1689
1690 /*
1691 * Only call invalidate_inode_pages2() after removing
1692 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1693 */
Pavel Emelyanov83732002013-10-10 17:10:46 +04001694 if ((is_truncate || !is_wb) &&
1695 S_ISREG(inode->i_mode) && oldsize != outarg.attr.size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07001696 truncate_pagecache(inode, outarg.attr.size);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001697 invalidate_inode_pages2(inode->i_mapping);
1698 }
1699
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001700 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Miklos Szeredie00d2c22007-10-16 23:31:01 -07001701 return 0;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001702
1703error:
1704 if (is_truncate)
1705 fuse_release_nowrite(inode);
1706
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001707 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001708 return err;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001709}
1710
Miklos Szeredi49d49142007-10-18 03:07:00 -07001711static int fuse_setattr(struct dentry *entry, struct iattr *attr)
1712{
David Howells2b0143b2015-03-17 22:25:59 +00001713 struct inode *inode = d_inode(entry);
Miklos Szeredi5e940c12016-10-01 07:32:32 +02001714 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredia09f99e2016-10-01 07:32:32 +02001715 struct file *file = (attr->ia_valid & ATTR_FILE) ? attr->ia_file : NULL;
Miklos Szeredi5e2b8822016-10-01 07:32:32 +02001716 int ret;
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04001717
1718 if (!fuse_allow_current_process(get_fuse_conn(inode)))
1719 return -EACCES;
1720
Miklos Szeredia09f99e2016-10-01 07:32:32 +02001721 if (attr->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID)) {
Miklos Szeredia09f99e2016-10-01 07:32:32 +02001722 attr->ia_valid &= ~(ATTR_KILL_SUID | ATTR_KILL_SGID |
1723 ATTR_MODE);
Miklos Szeredia09f99e2016-10-01 07:32:32 +02001724
Miklos Szeredi5e940c12016-10-01 07:32:32 +02001725 /*
1726 * The only sane way to reliably kill suid/sgid is to do it in
1727 * the userspace filesystem
1728 *
1729 * This should be done on write(), truncate() and chown().
1730 */
1731 if (!fc->handle_killpriv) {
1732 int kill;
1733
1734 /*
1735 * ia_mode calculation may have used stale i_mode.
1736 * Refresh and recalculate.
1737 */
1738 ret = fuse_do_getattr(inode, NULL, file);
1739 if (ret)
1740 return ret;
1741
1742 attr->ia_mode = inode->i_mode;
1743 kill = should_remove_suid(entry);
1744 if (kill & ATTR_KILL_SUID) {
1745 attr->ia_valid |= ATTR_MODE;
1746 attr->ia_mode &= ~S_ISUID;
1747 }
1748 if (kill & ATTR_KILL_SGID) {
1749 attr->ia_valid |= ATTR_MODE;
1750 attr->ia_mode &= ~S_ISGID;
1751 }
Miklos Szeredia09f99e2016-10-01 07:32:32 +02001752 }
1753 }
1754 if (!attr->ia_valid)
1755 return 0;
1756
1757 ret = fuse_do_setattr(inode, attr, file);
Miklos Szeredi5e2b8822016-10-01 07:32:32 +02001758 if (!ret) {
Seth Forshee60bcc882016-08-29 08:46:37 -05001759 /*
1760 * If filesystem supports acls it may have updated acl xattrs in
1761 * the filesystem, so forget cached acls for the inode.
1762 */
1763 if (fc->posix_acl)
1764 forget_all_cached_acls(inode);
1765
Miklos Szeredi5e2b8822016-10-01 07:32:32 +02001766 /* Directory mode changed, may need to revalidate access */
1767 if (d_is_dir(entry) && (attr->ia_valid & ATTR_MODE))
1768 fuse_invalidate_entry_cache(entry);
1769 }
1770 return ret;
Miklos Szeredi49d49142007-10-18 03:07:00 -07001771}
1772
Miklos Szeredie5e55582005-09-09 13:10:28 -07001773static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry,
1774 struct kstat *stat)
1775{
David Howells2b0143b2015-03-17 22:25:59 +00001776 struct inode *inode = d_inode(entry);
Miklos Szeredi244f6382007-10-16 23:31:02 -07001777 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi244f6382007-10-16 23:31:02 -07001778
Anatol Pomozovc2132c12013-01-14 22:30:00 -08001779 if (!fuse_allow_current_process(fc))
Miklos Szeredi244f6382007-10-16 23:31:02 -07001780 return -EACCES;
1781
Miklos Szeredibcb4be82007-11-28 16:21:59 -08001782 return fuse_update_attributes(inode, stat, NULL, NULL);
Miklos Szeredie5e55582005-09-09 13:10:28 -07001783}
1784
Arjan van de Ven754661f2007-02-12 00:55:38 -08001785static const struct inode_operations fuse_dir_inode_operations = {
Miklos Szeredie5e55582005-09-09 13:10:28 -07001786 .lookup = fuse_lookup,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001787 .mkdir = fuse_mkdir,
1788 .symlink = fuse_symlink,
1789 .unlink = fuse_unlink,
1790 .rmdir = fuse_rmdir,
Miklos Szeredi1560c972014-04-28 16:43:44 +02001791 .rename2 = fuse_rename2,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001792 .link = fuse_link,
1793 .setattr = fuse_setattr,
1794 .create = fuse_create,
Miklos Szeredic8ccbe02012-06-05 15:10:22 +02001795 .atomic_open = fuse_atomic_open,
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001796 .mknod = fuse_mknod,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001797 .permission = fuse_permission,
1798 .getattr = fuse_getattr,
Seth Forshee703c7362016-08-29 08:46:36 -05001799 .setxattr = generic_setxattr,
1800 .getxattr = generic_getxattr,
Miklos Szeredi92a87802005-09-09 13:10:31 -07001801 .listxattr = fuse_listxattr,
Seth Forshee703c7362016-08-29 08:46:36 -05001802 .removexattr = generic_removexattr,
Seth Forshee60bcc882016-08-29 08:46:37 -05001803 .get_acl = fuse_get_acl,
1804 .set_acl = fuse_set_acl,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001805};
1806
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001807static const struct file_operations fuse_dir_operations = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001808 .llseek = generic_file_llseek,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001809 .read = generic_read_dir,
Al Virod9b3dbd2016-04-20 17:30:32 -04001810 .iterate_shared = fuse_readdir,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001811 .open = fuse_dir_open,
1812 .release = fuse_dir_release,
Miklos Szeredi82547982005-09-09 13:10:38 -07001813 .fsync = fuse_dir_fsync,
Miklos Szeredib18da0c2011-12-13 11:58:49 +01001814 .unlocked_ioctl = fuse_dir_ioctl,
1815 .compat_ioctl = fuse_dir_compat_ioctl,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001816};
1817
Arjan van de Ven754661f2007-02-12 00:55:38 -08001818static const struct inode_operations fuse_common_inode_operations = {
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001819 .setattr = fuse_setattr,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001820 .permission = fuse_permission,
1821 .getattr = fuse_getattr,
Seth Forshee703c7362016-08-29 08:46:36 -05001822 .setxattr = generic_setxattr,
1823 .getxattr = generic_getxattr,
Miklos Szeredi92a87802005-09-09 13:10:31 -07001824 .listxattr = fuse_listxattr,
Seth Forshee703c7362016-08-29 08:46:36 -05001825 .removexattr = generic_removexattr,
Seth Forshee60bcc882016-08-29 08:46:37 -05001826 .get_acl = fuse_get_acl,
1827 .set_acl = fuse_set_acl,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001828};
1829
Arjan van de Ven754661f2007-02-12 00:55:38 -08001830static const struct inode_operations fuse_symlink_inode_operations = {
Miklos Szeredi9e6268d2005-09-09 13:10:29 -07001831 .setattr = fuse_setattr,
Al Viro6b255392015-11-17 10:20:54 -05001832 .get_link = fuse_get_link,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001833 .readlink = generic_readlink,
1834 .getattr = fuse_getattr,
Seth Forshee703c7362016-08-29 08:46:36 -05001835 .setxattr = generic_setxattr,
1836 .getxattr = generic_getxattr,
Miklos Szeredi92a87802005-09-09 13:10:31 -07001837 .listxattr = fuse_listxattr,
Seth Forshee703c7362016-08-29 08:46:36 -05001838 .removexattr = generic_removexattr,
Miklos Szeredie5e55582005-09-09 13:10:28 -07001839};
1840
1841void fuse_init_common(struct inode *inode)
1842{
1843 inode->i_op = &fuse_common_inode_operations;
1844}
1845
1846void fuse_init_dir(struct inode *inode)
1847{
1848 inode->i_op = &fuse_dir_inode_operations;
1849 inode->i_fop = &fuse_dir_operations;
1850}
1851
1852void fuse_init_symlink(struct inode *inode)
1853{
1854 inode->i_op = &fuse_symlink_inode_operations;
1855}