Merge remote-tracking branch 'renesas/next'
[deliverable/linux.git] / fs / fuse / dir.c
CommitLineData
e5e5558e
MS
1/*
2 FUSE: Filesystem in Userspace
1729a16c 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
e5e5558e
MS
4
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>
e5e5558e
MS
13#include <linux/sched.h>
14#include <linux/namei.h>
07e77dca 15#include <linux/slab.h>
e5e5558e 16
8d3af7f3 17static bool fuse_use_readdirplus(struct inode *dir, struct dir_context *ctx)
4582a4ab
FS
18{
19 struct fuse_conn *fc = get_fuse_conn(dir);
20 struct fuse_inode *fi = get_fuse_inode(dir);
21
22 if (!fc->do_readdirplus)
23 return false;
634734b6
EW
24 if (!fc->readdirplus_auto)
25 return true;
4582a4ab
FS
26 if (test_and_clear_bit(FUSE_I_ADVISE_RDPLUS, &fi->state))
27 return true;
8d3af7f3 28 if (ctx->pos == 0)
4582a4ab
FS
29 return true;
30 return false;
31}
32
33static void fuse_advise_use_readdirplus(struct inode *dir)
34{
35 struct fuse_inode *fi = get_fuse_inode(dir);
36
37 set_bit(FUSE_I_ADVISE_RDPLUS, &fi->state);
38}
39
0a0898cf
MS
40#if BITS_PER_LONG >= 64
41static inline void fuse_dentry_settime(struct dentry *entry, u64 time)
42{
43 entry->d_time = time;
44}
45
46static inline u64 fuse_dentry_time(struct dentry *entry)
47{
48 return entry->d_time;
49}
50#else
51/*
52 * On 32 bit archs store the high 32 bits of time in d_fsdata
53 */
54static void fuse_dentry_settime(struct dentry *entry, u64 time)
55{
56 entry->d_time = time;
57 entry->d_fsdata = (void *) (unsigned long) (time >> 32);
58}
59
60static u64 fuse_dentry_time(struct dentry *entry)
61{
62 return (u64) entry->d_time +
63 ((u64) (unsigned long) entry->d_fsdata << 32);
64}
65#endif
66
6f9f1180
MS
67/*
68 * FUSE caches dentries and attributes with separate timeout. The
69 * time in jiffies until the dentry/attributes are valid is stored in
70 * dentry->d_time and fuse_inode->i_time respectively.
71 */
72
73/*
74 * Calculate the time in jiffies until a dentry/attributes are valid
75 */
0a0898cf 76static u64 time_to_jiffies(unsigned long sec, unsigned long nsec)
e5e5558e 77{
685d16dd
MS
78 if (sec || nsec) {
79 struct timespec ts = {sec, nsec};
0a0898cf 80 return get_jiffies_64() + timespec_to_jiffies(&ts);
685d16dd 81 } else
0a0898cf 82 return 0;
e5e5558e
MS
83}
84
6f9f1180
MS
85/*
86 * Set dentry and possibly attribute timeouts from the lookup/mk*
87 * replies
88 */
1fb69e78
MS
89static void fuse_change_entry_timeout(struct dentry *entry,
90 struct fuse_entry_out *o)
0aa7c699 91{
0a0898cf
MS
92 fuse_dentry_settime(entry,
93 time_to_jiffies(o->entry_valid, o->entry_valid_nsec));
1fb69e78
MS
94}
95
96static u64 attr_timeout(struct fuse_attr_out *o)
97{
98 return time_to_jiffies(o->attr_valid, o->attr_valid_nsec);
99}
100
101static u64 entry_attr_timeout(struct fuse_entry_out *o)
102{
103 return time_to_jiffies(o->attr_valid, o->attr_valid_nsec);
8cbdf1e6
MS
104}
105
6f9f1180
MS
106/*
107 * Mark the attributes as stale, so that at the next call to
108 * ->getattr() they will be fetched from userspace
109 */
8cbdf1e6
MS
110void fuse_invalidate_attr(struct inode *inode)
111{
0a0898cf 112 get_fuse_inode(inode)->i_time = 0;
8cbdf1e6
MS
113}
114
451418fc
AG
115/**
116 * Mark the attributes as stale due to an atime change. Avoid the invalidate if
117 * atime is not used.
118 */
119void fuse_invalidate_atime(struct inode *inode)
120{
121 if (!IS_RDONLY(inode))
122 fuse_invalidate_attr(inode);
123}
124
6f9f1180
MS
125/*
126 * Just mark the entry as stale, so that a next attempt to look it up
127 * will result in a new lookup call to userspace
128 *
129 * This is called when a dentry is about to become negative and the
130 * timeout is unknown (unlink, rmdir, rename and in some cases
131 * lookup)
132 */
dbd561d2 133void fuse_invalidate_entry_cache(struct dentry *entry)
8cbdf1e6 134{
0a0898cf 135 fuse_dentry_settime(entry, 0);
8cbdf1e6
MS
136}
137
6f9f1180
MS
138/*
139 * Same as fuse_invalidate_entry_cache(), but also try to remove the
140 * dentry from the hash
141 */
8cbdf1e6
MS
142static void fuse_invalidate_entry(struct dentry *entry)
143{
144 d_invalidate(entry);
145 fuse_invalidate_entry_cache(entry);
0aa7c699
MS
146}
147
7078187a 148static void fuse_lookup_init(struct fuse_conn *fc, struct fuse_args *args,
13983d06 149 u64 nodeid, const struct qstr *name,
e5e5558e
MS
150 struct fuse_entry_out *outarg)
151{
0e9663ee 152 memset(outarg, 0, sizeof(struct fuse_entry_out));
7078187a
MS
153 args->in.h.opcode = FUSE_LOOKUP;
154 args->in.h.nodeid = nodeid;
155 args->in.numargs = 1;
156 args->in.args[0].size = name->len + 1;
157 args->in.args[0].value = name->name;
158 args->out.numargs = 1;
21f62174 159 args->out.args[0].size = sizeof(struct fuse_entry_out);
7078187a 160 args->out.args[0].value = outarg;
e5e5558e
MS
161}
162
5c5c5e51 163u64 fuse_get_attr_version(struct fuse_conn *fc)
7dca9fd3
MS
164{
165 u64 curr_version;
166
167 /*
168 * The spin lock isn't actually needed on 64bit archs, but we
169 * don't yet care too much about such optimizations.
170 */
171 spin_lock(&fc->lock);
172 curr_version = fc->attr_version;
173 spin_unlock(&fc->lock);
174
175 return curr_version;
176}
177
6f9f1180
MS
178/*
179 * Check whether the dentry is still valid
180 *
181 * If the entry validity timeout has expired and the dentry is
182 * positive, try to redo the lookup. If the lookup results in a
183 * different inode, then let the VFS invalidate the dentry and redo
184 * the lookup once more. If the lookup results in the same inode,
185 * then refresh the attributes, timeouts and mark the dentry valid.
186 */
0b728e19 187static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags)
e5e5558e 188{
34286d66 189 struct inode *inode;
28420dad
MS
190 struct dentry *parent;
191 struct fuse_conn *fc;
6314efee 192 struct fuse_inode *fi;
e2a6b952 193 int ret;
8cbdf1e6 194
2b0143b5 195 inode = d_inode_rcu(entry);
8cbdf1e6 196 if (inode && is_bad_inode(inode))
e2a6b952 197 goto invalid;
154210cc
AA
198 else if (time_before64(fuse_dentry_time(entry), get_jiffies_64()) ||
199 (flags & LOOKUP_REVAL)) {
e5e5558e 200 struct fuse_entry_out outarg;
7078187a 201 FUSE_ARGS(args);
07e77dca 202 struct fuse_forget_link *forget;
1fb69e78 203 u64 attr_version;
8cbdf1e6 204
50322fe7 205 /* For negative dentries, always do a fresh lookup */
8cbdf1e6 206 if (!inode)
e2a6b952 207 goto invalid;
8cbdf1e6 208
e2a6b952 209 ret = -ECHILD;
0b728e19 210 if (flags & LOOKUP_RCU)
e2a6b952 211 goto out;
e7c0a167 212
8cbdf1e6 213 fc = get_fuse_conn(inode);
e5e5558e 214
07e77dca 215 forget = fuse_alloc_forget();
7078187a
MS
216 ret = -ENOMEM;
217 if (!forget)
e2a6b952 218 goto out;
2d51013e 219
7dca9fd3 220 attr_version = fuse_get_attr_version(fc);
1fb69e78 221
e956edd0 222 parent = dget_parent(entry);
2b0143b5 223 fuse_lookup_init(fc, &args, get_node_id(d_inode(parent)),
c180eebe 224 &entry->d_name, &outarg);
7078187a 225 ret = fuse_simple_request(fc, &args);
e956edd0 226 dput(parent);
50322fe7 227 /* Zero nodeid is same as -ENOENT */
7078187a
MS
228 if (!ret && !outarg.nodeid)
229 ret = -ENOENT;
230 if (!ret) {
6314efee 231 fi = get_fuse_inode(inode);
9e6268db 232 if (outarg.nodeid != get_node_id(inode)) {
07e77dca 233 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
e2a6b952 234 goto invalid;
9e6268db 235 }
8da5ff23 236 spin_lock(&fc->lock);
1729a16c 237 fi->nlookup++;
8da5ff23 238 spin_unlock(&fc->lock);
9e6268db 239 }
07e77dca 240 kfree(forget);
7078187a
MS
241 if (ret == -ENOMEM)
242 goto out;
243 if (ret || (outarg.attr.mode ^ inode->i_mode) & S_IFMT)
e2a6b952 244 goto invalid;
e5e5558e 245
1fb69e78
MS
246 fuse_change_attributes(inode, &outarg.attr,
247 entry_attr_timeout(&outarg),
248 attr_version);
249 fuse_change_entry_timeout(entry, &outarg);
28420dad 250 } else if (inode) {
6314efee
MS
251 fi = get_fuse_inode(inode);
252 if (flags & LOOKUP_RCU) {
253 if (test_bit(FUSE_I_INIT_RDPLUS, &fi->state))
254 return -ECHILD;
255 } else if (test_and_clear_bit(FUSE_I_INIT_RDPLUS, &fi->state)) {
28420dad 256 parent = dget_parent(entry);
2b0143b5 257 fuse_advise_use_readdirplus(d_inode(parent));
28420dad
MS
258 dput(parent);
259 }
e5e5558e 260 }
e2a6b952
MS
261 ret = 1;
262out:
263 return ret;
264
265invalid:
266 ret = 0;
267 goto out;
e5e5558e
MS
268}
269
8bfc016d 270static int invalid_nodeid(u64 nodeid)
2827d0b2
MS
271{
272 return !nodeid || nodeid == FUSE_ROOT_ID;
273}
274
4269590a 275const struct dentry_operations fuse_dentry_operations = {
e5e5558e
MS
276 .d_revalidate = fuse_dentry_revalidate,
277};
278
a5bfffac 279int fuse_valid_type(int m)
39ee059a
MS
280{
281 return S_ISREG(m) || S_ISDIR(m) || S_ISLNK(m) || S_ISCHR(m) ||
282 S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m);
283}
284
13983d06 285int fuse_lookup_name(struct super_block *sb, u64 nodeid, const struct qstr *name,
c180eebe 286 struct fuse_entry_out *outarg, struct inode **inode)
e5e5558e 287{
c180eebe 288 struct fuse_conn *fc = get_fuse_conn_super(sb);
7078187a 289 FUSE_ARGS(args);
07e77dca 290 struct fuse_forget_link *forget;
1fb69e78 291 u64 attr_version;
c180eebe 292 int err;
e5e5558e 293
c180eebe
MS
294 *inode = NULL;
295 err = -ENAMETOOLONG;
296 if (name->len > FUSE_NAME_MAX)
297 goto out;
e5e5558e 298
e5e5558e 299
07e77dca
MS
300 forget = fuse_alloc_forget();
301 err = -ENOMEM;
7078187a 302 if (!forget)
c180eebe 303 goto out;
2d51013e 304
7dca9fd3 305 attr_version = fuse_get_attr_version(fc);
1fb69e78 306
7078187a
MS
307 fuse_lookup_init(fc, &args, nodeid, name, outarg);
308 err = fuse_simple_request(fc, &args);
50322fe7 309 /* Zero nodeid is same as -ENOENT, but with valid timeout */
c180eebe
MS
310 if (err || !outarg->nodeid)
311 goto out_put_forget;
312
313 err = -EIO;
314 if (!outarg->nodeid)
315 goto out_put_forget;
316 if (!fuse_valid_type(outarg->attr.mode))
317 goto out_put_forget;
318
319 *inode = fuse_iget(sb, outarg->nodeid, outarg->generation,
320 &outarg->attr, entry_attr_timeout(outarg),
321 attr_version);
322 err = -ENOMEM;
323 if (!*inode) {
07e77dca 324 fuse_queue_forget(fc, forget, outarg->nodeid, 1);
c180eebe 325 goto out;
e5e5558e 326 }
c180eebe
MS
327 err = 0;
328
329 out_put_forget:
07e77dca 330 kfree(forget);
c180eebe
MS
331 out:
332 return err;
333}
334
335static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry,
00cd8dd3 336 unsigned int flags)
c180eebe
MS
337{
338 int err;
339 struct fuse_entry_out outarg;
340 struct inode *inode;
341 struct dentry *newent;
c180eebe
MS
342 bool outarg_valid = true;
343
5c672ab3 344 fuse_lock_inode(dir);
c180eebe
MS
345 err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name,
346 &outarg, &inode);
5c672ab3 347 fuse_unlock_inode(dir);
c180eebe
MS
348 if (err == -ENOENT) {
349 outarg_valid = false;
350 err = 0;
351 }
352 if (err)
353 goto out_err;
354
355 err = -EIO;
356 if (inode && get_node_id(inode) == FUSE_ROOT_ID)
357 goto out_iput;
e5e5558e 358
41d28bca 359 newent = d_splice_alias(inode, entry);
5835f339
MS
360 err = PTR_ERR(newent);
361 if (IS_ERR(newent))
362 goto out_err;
d2a85164 363
0de6256d 364 entry = newent ? newent : entry;
c180eebe 365 if (outarg_valid)
1fb69e78 366 fuse_change_entry_timeout(entry, &outarg);
8cbdf1e6
MS
367 else
368 fuse_invalidate_entry_cache(entry);
c180eebe 369
4582a4ab 370 fuse_advise_use_readdirplus(dir);
0de6256d 371 return newent;
c180eebe
MS
372
373 out_iput:
374 iput(inode);
375 out_err:
376 return ERR_PTR(err);
e5e5558e
MS
377}
378
6f9f1180
MS
379/*
380 * Atomic create+open operation
381 *
382 * If the filesystem doesn't support this, then fall back to separate
383 * 'mknod' + 'open' requests.
384 */
d9585277 385static int fuse_create_open(struct inode *dir, struct dentry *entry,
30d90494 386 struct file *file, unsigned flags,
d9585277 387 umode_t mode, int *opened)
fd72faac
MS
388{
389 int err;
390 struct inode *inode;
391 struct fuse_conn *fc = get_fuse_conn(dir);
7078187a 392 FUSE_ARGS(args);
07e77dca 393 struct fuse_forget_link *forget;
e0a43ddc 394 struct fuse_create_in inarg;
fd72faac
MS
395 struct fuse_open_out outopen;
396 struct fuse_entry_out outentry;
fd72faac 397 struct fuse_file *ff;
fd72faac 398
af109bca
MS
399 /* Userspace expects S_IFREG in create mode */
400 BUG_ON((mode & S_IFMT) != S_IFREG);
401
07e77dca 402 forget = fuse_alloc_forget();
c8ccbe03 403 err = -ENOMEM;
07e77dca 404 if (!forget)
c8ccbe03 405 goto out_err;
51eb01e7 406
ce1d5a49 407 err = -ENOMEM;
acf99433 408 ff = fuse_file_alloc(fc);
fd72faac 409 if (!ff)
7078187a 410 goto out_put_forget_req;
fd72faac 411
e0a43ddc
MS
412 if (!fc->dont_mask)
413 mode &= ~current_umask();
414
fd72faac
MS
415 flags &= ~O_NOCTTY;
416 memset(&inarg, 0, sizeof(inarg));
0e9663ee 417 memset(&outentry, 0, sizeof(outentry));
fd72faac
MS
418 inarg.flags = flags;
419 inarg.mode = mode;
e0a43ddc 420 inarg.umask = current_umask();
7078187a
MS
421 args.in.h.opcode = FUSE_CREATE;
422 args.in.h.nodeid = get_node_id(dir);
423 args.in.numargs = 2;
21f62174 424 args.in.args[0].size = sizeof(inarg);
7078187a
MS
425 args.in.args[0].value = &inarg;
426 args.in.args[1].size = entry->d_name.len + 1;
427 args.in.args[1].value = entry->d_name.name;
428 args.out.numargs = 2;
21f62174 429 args.out.args[0].size = sizeof(outentry);
7078187a
MS
430 args.out.args[0].value = &outentry;
431 args.out.args[1].size = sizeof(outopen);
432 args.out.args[1].value = &outopen;
433 err = fuse_simple_request(fc, &args);
c8ccbe03 434 if (err)
fd72faac 435 goto out_free_ff;
fd72faac
MS
436
437 err = -EIO;
2827d0b2 438 if (!S_ISREG(outentry.attr.mode) || invalid_nodeid(outentry.nodeid))
fd72faac
MS
439 goto out_free_ff;
440
c7b7143c
MS
441 ff->fh = outopen.fh;
442 ff->nodeid = outentry.nodeid;
443 ff->open_flags = outopen.open_flags;
fd72faac 444 inode = fuse_iget(dir->i_sb, outentry.nodeid, outentry.generation,
1fb69e78 445 &outentry.attr, entry_attr_timeout(&outentry), 0);
fd72faac
MS
446 if (!inode) {
447 flags &= ~(O_CREAT | O_EXCL | O_TRUNC);
8b0797a4 448 fuse_sync_release(ff, flags);
07e77dca 449 fuse_queue_forget(fc, forget, outentry.nodeid, 1);
c8ccbe03
MS
450 err = -ENOMEM;
451 goto out_err;
fd72faac 452 }
07e77dca 453 kfree(forget);
fd72faac 454 d_instantiate(entry, inode);
1fb69e78 455 fuse_change_entry_timeout(entry, &outentry);
0952b2a4 456 fuse_invalidate_attr(dir);
30d90494
AV
457 err = finish_open(file, entry, generic_file_open, opened);
458 if (err) {
8b0797a4 459 fuse_sync_release(ff, flags);
c8ccbe03
MS
460 } else {
461 file->private_data = fuse_file_get(ff);
462 fuse_finish_open(inode, file);
fd72faac 463 }
d9585277 464 return err;
fd72faac 465
c8ccbe03 466out_free_ff:
fd72faac 467 fuse_file_free(ff);
c8ccbe03 468out_put_forget_req:
07e77dca 469 kfree(forget);
c8ccbe03 470out_err:
d9585277 471 return err;
c8ccbe03
MS
472}
473
474static int fuse_mknod(struct inode *, struct dentry *, umode_t, dev_t);
d9585277 475static int fuse_atomic_open(struct inode *dir, struct dentry *entry,
30d90494 476 struct file *file, unsigned flags,
d9585277 477 umode_t mode, int *opened)
c8ccbe03
MS
478{
479 int err;
480 struct fuse_conn *fc = get_fuse_conn(dir);
c8ccbe03
MS
481 struct dentry *res = NULL;
482
00699ad8 483 if (d_in_lookup(entry)) {
00cd8dd3 484 res = fuse_lookup(dir, entry, 0);
c8ccbe03 485 if (IS_ERR(res))
d9585277 486 return PTR_ERR(res);
c8ccbe03
MS
487
488 if (res)
489 entry = res;
490 }
491
2b0143b5 492 if (!(flags & O_CREAT) || d_really_is_positive(entry))
c8ccbe03
MS
493 goto no_open;
494
495 /* Only creates */
47237687 496 *opened |= FILE_CREATED;
c8ccbe03
MS
497
498 if (fc->no_create)
499 goto mknod;
500
30d90494 501 err = fuse_create_open(dir, entry, file, flags, mode, opened);
d9585277 502 if (err == -ENOSYS) {
c8ccbe03
MS
503 fc->no_create = 1;
504 goto mknod;
505 }
506out_dput:
507 dput(res);
d9585277 508 return err;
c8ccbe03
MS
509
510mknod:
511 err = fuse_mknod(dir, entry, mode, 0);
d9585277 512 if (err)
c8ccbe03 513 goto out_dput;
c8ccbe03 514no_open:
e45198a6 515 return finish_no_open(file, res);
fd72faac
MS
516}
517
6f9f1180
MS
518/*
519 * Code shared between mknod, mkdir, symlink and link
520 */
7078187a 521static int create_new_entry(struct fuse_conn *fc, struct fuse_args *args,
9e6268db 522 struct inode *dir, struct dentry *entry,
541af6a0 523 umode_t mode)
9e6268db
MS
524{
525 struct fuse_entry_out outarg;
526 struct inode *inode;
9e6268db 527 int err;
07e77dca 528 struct fuse_forget_link *forget;
2d51013e 529
07e77dca 530 forget = fuse_alloc_forget();
7078187a 531 if (!forget)
07e77dca 532 return -ENOMEM;
9e6268db 533
0e9663ee 534 memset(&outarg, 0, sizeof(outarg));
7078187a
MS
535 args->in.h.nodeid = get_node_id(dir);
536 args->out.numargs = 1;
21f62174 537 args->out.args[0].size = sizeof(outarg);
7078187a
MS
538 args->out.args[0].value = &outarg;
539 err = fuse_simple_request(fc, args);
2d51013e
MS
540 if (err)
541 goto out_put_forget_req;
542
39ee059a
MS
543 err = -EIO;
544 if (invalid_nodeid(outarg.nodeid))
2d51013e 545 goto out_put_forget_req;
39ee059a
MS
546
547 if ((outarg.attr.mode ^ mode) & S_IFMT)
2d51013e 548 goto out_put_forget_req;
39ee059a 549
9e6268db 550 inode = fuse_iget(dir->i_sb, outarg.nodeid, outarg.generation,
1fb69e78 551 &outarg.attr, entry_attr_timeout(&outarg), 0);
9e6268db 552 if (!inode) {
07e77dca 553 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
9e6268db
MS
554 return -ENOMEM;
555 }
07e77dca 556 kfree(forget);
9e6268db 557
b70a80e7
MS
558 err = d_instantiate_no_diralias(entry, inode);
559 if (err)
560 return err;
9e6268db 561
1fb69e78 562 fuse_change_entry_timeout(entry, &outarg);
9e6268db
MS
563 fuse_invalidate_attr(dir);
564 return 0;
39ee059a 565
2d51013e 566 out_put_forget_req:
07e77dca 567 kfree(forget);
39ee059a 568 return err;
9e6268db
MS
569}
570
1a67aafb 571static int fuse_mknod(struct inode *dir, struct dentry *entry, umode_t mode,
9e6268db
MS
572 dev_t rdev)
573{
574 struct fuse_mknod_in inarg;
575 struct fuse_conn *fc = get_fuse_conn(dir);
7078187a 576 FUSE_ARGS(args);
9e6268db 577
e0a43ddc
MS
578 if (!fc->dont_mask)
579 mode &= ~current_umask();
580
9e6268db
MS
581 memset(&inarg, 0, sizeof(inarg));
582 inarg.mode = mode;
583 inarg.rdev = new_encode_dev(rdev);
e0a43ddc 584 inarg.umask = current_umask();
7078187a
MS
585 args.in.h.opcode = FUSE_MKNOD;
586 args.in.numargs = 2;
21f62174 587 args.in.args[0].size = sizeof(inarg);
7078187a
MS
588 args.in.args[0].value = &inarg;
589 args.in.args[1].size = entry->d_name.len + 1;
590 args.in.args[1].value = entry->d_name.name;
591 return create_new_entry(fc, &args, dir, entry, mode);
9e6268db
MS
592}
593
4acdaf27 594static int fuse_create(struct inode *dir, struct dentry *entry, umode_t mode,
ebfc3b49 595 bool excl)
9e6268db
MS
596{
597 return fuse_mknod(dir, entry, mode, 0);
598}
599
18bb1db3 600static int fuse_mkdir(struct inode *dir, struct dentry *entry, umode_t mode)
9e6268db
MS
601{
602 struct fuse_mkdir_in inarg;
603 struct fuse_conn *fc = get_fuse_conn(dir);
7078187a 604 FUSE_ARGS(args);
9e6268db 605
e0a43ddc
MS
606 if (!fc->dont_mask)
607 mode &= ~current_umask();
608
9e6268db
MS
609 memset(&inarg, 0, sizeof(inarg));
610 inarg.mode = mode;
e0a43ddc 611 inarg.umask = current_umask();
7078187a
MS
612 args.in.h.opcode = FUSE_MKDIR;
613 args.in.numargs = 2;
614 args.in.args[0].size = sizeof(inarg);
615 args.in.args[0].value = &inarg;
616 args.in.args[1].size = entry->d_name.len + 1;
617 args.in.args[1].value = entry->d_name.name;
618 return create_new_entry(fc, &args, dir, entry, S_IFDIR);
9e6268db
MS
619}
620
621static int fuse_symlink(struct inode *dir, struct dentry *entry,
622 const char *link)
623{
624 struct fuse_conn *fc = get_fuse_conn(dir);
625 unsigned len = strlen(link) + 1;
7078187a 626 FUSE_ARGS(args);
9e6268db 627
7078187a
MS
628 args.in.h.opcode = FUSE_SYMLINK;
629 args.in.numargs = 2;
630 args.in.args[0].size = entry->d_name.len + 1;
631 args.in.args[0].value = entry->d_name.name;
632 args.in.args[1].size = len;
633 args.in.args[1].value = link;
634 return create_new_entry(fc, &args, dir, entry, S_IFLNK);
9e6268db
MS
635}
636
31f3267b
MP
637static inline void fuse_update_ctime(struct inode *inode)
638{
639 if (!IS_NOCMTIME(inode)) {
640 inode->i_ctime = current_fs_time(inode->i_sb);
641 mark_inode_dirty_sync(inode);
642 }
643}
644
9e6268db
MS
645static int fuse_unlink(struct inode *dir, struct dentry *entry)
646{
647 int err;
648 struct fuse_conn *fc = get_fuse_conn(dir);
7078187a
MS
649 FUSE_ARGS(args);
650
651 args.in.h.opcode = FUSE_UNLINK;
652 args.in.h.nodeid = get_node_id(dir);
653 args.in.numargs = 1;
654 args.in.args[0].size = entry->d_name.len + 1;
655 args.in.args[0].value = entry->d_name.name;
656 err = fuse_simple_request(fc, &args);
9e6268db 657 if (!err) {
2b0143b5 658 struct inode *inode = d_inode(entry);
ac45d613 659 struct fuse_inode *fi = get_fuse_inode(inode);
9e6268db 660
ac45d613
MS
661 spin_lock(&fc->lock);
662 fi->attr_version = ++fc->attr_version;
dfca7ceb
MS
663 /*
664 * If i_nlink == 0 then unlink doesn't make sense, yet this can
665 * happen if userspace filesystem is careless. It would be
666 * difficult to enforce correct nlink usage so just ignore this
667 * condition here
668 */
669 if (inode->i_nlink > 0)
670 drop_nlink(inode);
ac45d613 671 spin_unlock(&fc->lock);
9e6268db
MS
672 fuse_invalidate_attr(inode);
673 fuse_invalidate_attr(dir);
8cbdf1e6 674 fuse_invalidate_entry_cache(entry);
31f3267b 675 fuse_update_ctime(inode);
9e6268db
MS
676 } else if (err == -EINTR)
677 fuse_invalidate_entry(entry);
678 return err;
679}
680
681static int fuse_rmdir(struct inode *dir, struct dentry *entry)
682{
683 int err;
684 struct fuse_conn *fc = get_fuse_conn(dir);
7078187a
MS
685 FUSE_ARGS(args);
686
687 args.in.h.opcode = FUSE_RMDIR;
688 args.in.h.nodeid = get_node_id(dir);
689 args.in.numargs = 1;
690 args.in.args[0].size = entry->d_name.len + 1;
691 args.in.args[0].value = entry->d_name.name;
692 err = fuse_simple_request(fc, &args);
9e6268db 693 if (!err) {
2b0143b5 694 clear_nlink(d_inode(entry));
9e6268db 695 fuse_invalidate_attr(dir);
8cbdf1e6 696 fuse_invalidate_entry_cache(entry);
9e6268db
MS
697 } else if (err == -EINTR)
698 fuse_invalidate_entry(entry);
699 return err;
700}
701
1560c974
MS
702static int fuse_rename_common(struct inode *olddir, struct dentry *oldent,
703 struct inode *newdir, struct dentry *newent,
704 unsigned int flags, int opcode, size_t argsize)
9e6268db
MS
705{
706 int err;
1560c974 707 struct fuse_rename2_in inarg;
9e6268db 708 struct fuse_conn *fc = get_fuse_conn(olddir);
7078187a 709 FUSE_ARGS(args);
9e6268db 710
1560c974 711 memset(&inarg, 0, argsize);
9e6268db 712 inarg.newdir = get_node_id(newdir);
1560c974 713 inarg.flags = flags;
7078187a
MS
714 args.in.h.opcode = opcode;
715 args.in.h.nodeid = get_node_id(olddir);
716 args.in.numargs = 3;
717 args.in.args[0].size = argsize;
718 args.in.args[0].value = &inarg;
719 args.in.args[1].size = oldent->d_name.len + 1;
720 args.in.args[1].value = oldent->d_name.name;
721 args.in.args[2].size = newent->d_name.len + 1;
722 args.in.args[2].value = newent->d_name.name;
723 err = fuse_simple_request(fc, &args);
9e6268db 724 if (!err) {
08b63307 725 /* ctime changes */
2b0143b5
DH
726 fuse_invalidate_attr(d_inode(oldent));
727 fuse_update_ctime(d_inode(oldent));
08b63307 728
1560c974 729 if (flags & RENAME_EXCHANGE) {
2b0143b5
DH
730 fuse_invalidate_attr(d_inode(newent));
731 fuse_update_ctime(d_inode(newent));
1560c974
MS
732 }
733
9e6268db
MS
734 fuse_invalidate_attr(olddir);
735 if (olddir != newdir)
736 fuse_invalidate_attr(newdir);
8cbdf1e6
MS
737
738 /* newent will end up negative */
2b0143b5
DH
739 if (!(flags & RENAME_EXCHANGE) && d_really_is_positive(newent)) {
740 fuse_invalidate_attr(d_inode(newent));
8cbdf1e6 741 fuse_invalidate_entry_cache(newent);
2b0143b5 742 fuse_update_ctime(d_inode(newent));
5219f346 743 }
9e6268db
MS
744 } else if (err == -EINTR) {
745 /* If request was interrupted, DEITY only knows if the
746 rename actually took place. If the invalidation
747 fails (e.g. some process has CWD under the renamed
748 directory), then there can be inconsistency between
749 the dcache and the real filesystem. Tough luck. */
750 fuse_invalidate_entry(oldent);
2b0143b5 751 if (d_really_is_positive(newent))
9e6268db
MS
752 fuse_invalidate_entry(newent);
753 }
754
755 return err;
756}
757
1560c974
MS
758static int fuse_rename2(struct inode *olddir, struct dentry *oldent,
759 struct inode *newdir, struct dentry *newent,
760 unsigned int flags)
761{
762 struct fuse_conn *fc = get_fuse_conn(olddir);
763 int err;
764
765 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
766 return -EINVAL;
767
4237ba43
MS
768 if (flags) {
769 if (fc->no_rename2 || fc->minor < 23)
770 return -EINVAL;
1560c974 771
4237ba43
MS
772 err = fuse_rename_common(olddir, oldent, newdir, newent, flags,
773 FUSE_RENAME2,
774 sizeof(struct fuse_rename2_in));
775 if (err == -ENOSYS) {
776 fc->no_rename2 = 1;
777 err = -EINVAL;
778 }
779 } else {
780 err = fuse_rename_common(olddir, oldent, newdir, newent, 0,
781 FUSE_RENAME,
782 sizeof(struct fuse_rename_in));
1560c974 783 }
4237ba43 784
1560c974 785 return err;
4237ba43 786}
1560c974 787
9e6268db
MS
788static int fuse_link(struct dentry *entry, struct inode *newdir,
789 struct dentry *newent)
790{
791 int err;
792 struct fuse_link_in inarg;
2b0143b5 793 struct inode *inode = d_inode(entry);
9e6268db 794 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 795 FUSE_ARGS(args);
9e6268db
MS
796
797 memset(&inarg, 0, sizeof(inarg));
798 inarg.oldnodeid = get_node_id(inode);
7078187a
MS
799 args.in.h.opcode = FUSE_LINK;
800 args.in.numargs = 2;
801 args.in.args[0].size = sizeof(inarg);
802 args.in.args[0].value = &inarg;
803 args.in.args[1].size = newent->d_name.len + 1;
804 args.in.args[1].value = newent->d_name.name;
805 err = create_new_entry(fc, &args, newdir, newent, inode->i_mode);
9e6268db
MS
806 /* Contrary to "normal" filesystems it can happen that link
807 makes two "logical" inodes point to the same "physical"
808 inode. We invalidate the attributes of the old one, so it
809 will reflect changes in the backing inode (link count,
810 etc.)
811 */
ac45d613
MS
812 if (!err) {
813 struct fuse_inode *fi = get_fuse_inode(inode);
814
815 spin_lock(&fc->lock);
816 fi->attr_version = ++fc->attr_version;
817 inc_nlink(inode);
818 spin_unlock(&fc->lock);
9e6268db 819 fuse_invalidate_attr(inode);
31f3267b 820 fuse_update_ctime(inode);
ac45d613
MS
821 } else if (err == -EINTR) {
822 fuse_invalidate_attr(inode);
823 }
9e6268db
MS
824 return err;
825}
826
1fb69e78
MS
827static void fuse_fillattr(struct inode *inode, struct fuse_attr *attr,
828 struct kstat *stat)
829{
203627bb 830 unsigned int blkbits;
8373200b
PE
831 struct fuse_conn *fc = get_fuse_conn(inode);
832
833 /* see the comment in fuse_change_attributes() */
b0aa7606 834 if (fc->writeback_cache && S_ISREG(inode->i_mode)) {
8373200b 835 attr->size = i_size_read(inode);
b0aa7606
MP
836 attr->mtime = inode->i_mtime.tv_sec;
837 attr->mtimensec = inode->i_mtime.tv_nsec;
31f3267b
MP
838 attr->ctime = inode->i_ctime.tv_sec;
839 attr->ctimensec = inode->i_ctime.tv_nsec;
b0aa7606 840 }
203627bb 841
1fb69e78
MS
842 stat->dev = inode->i_sb->s_dev;
843 stat->ino = attr->ino;
844 stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
845 stat->nlink = attr->nlink;
499dcf20
EB
846 stat->uid = make_kuid(&init_user_ns, attr->uid);
847 stat->gid = make_kgid(&init_user_ns, attr->gid);
1fb69e78
MS
848 stat->rdev = inode->i_rdev;
849 stat->atime.tv_sec = attr->atime;
850 stat->atime.tv_nsec = attr->atimensec;
851 stat->mtime.tv_sec = attr->mtime;
852 stat->mtime.tv_nsec = attr->mtimensec;
853 stat->ctime.tv_sec = attr->ctime;
854 stat->ctime.tv_nsec = attr->ctimensec;
855 stat->size = attr->size;
856 stat->blocks = attr->blocks;
203627bb
MS
857
858 if (attr->blksize != 0)
859 blkbits = ilog2(attr->blksize);
860 else
861 blkbits = inode->i_sb->s_blocksize_bits;
862
863 stat->blksize = 1 << blkbits;
1fb69e78
MS
864}
865
c79e322f
MS
866static int fuse_do_getattr(struct inode *inode, struct kstat *stat,
867 struct file *file)
e5e5558e
MS
868{
869 int err;
c79e322f
MS
870 struct fuse_getattr_in inarg;
871 struct fuse_attr_out outarg;
e5e5558e 872 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 873 FUSE_ARGS(args);
1fb69e78
MS
874 u64 attr_version;
875
7dca9fd3 876 attr_version = fuse_get_attr_version(fc);
1fb69e78 877
c79e322f 878 memset(&inarg, 0, sizeof(inarg));
0e9663ee 879 memset(&outarg, 0, sizeof(outarg));
c79e322f
MS
880 /* Directories have separate file-handle space */
881 if (file && S_ISREG(inode->i_mode)) {
882 struct fuse_file *ff = file->private_data;
883
884 inarg.getattr_flags |= FUSE_GETATTR_FH;
885 inarg.fh = ff->fh;
886 }
7078187a
MS
887 args.in.h.opcode = FUSE_GETATTR;
888 args.in.h.nodeid = get_node_id(inode);
889 args.in.numargs = 1;
890 args.in.args[0].size = sizeof(inarg);
891 args.in.args[0].value = &inarg;
892 args.out.numargs = 1;
21f62174 893 args.out.args[0].size = sizeof(outarg);
7078187a
MS
894 args.out.args[0].value = &outarg;
895 err = fuse_simple_request(fc, &args);
e5e5558e 896 if (!err) {
c79e322f 897 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
e5e5558e
MS
898 make_bad_inode(inode);
899 err = -EIO;
900 } else {
c79e322f
MS
901 fuse_change_attributes(inode, &outarg.attr,
902 attr_timeout(&outarg),
1fb69e78
MS
903 attr_version);
904 if (stat)
c79e322f 905 fuse_fillattr(inode, &outarg.attr, stat);
e5e5558e
MS
906 }
907 }
908 return err;
909}
910
bcb4be80
MS
911int fuse_update_attributes(struct inode *inode, struct kstat *stat,
912 struct file *file, bool *refreshed)
913{
914 struct fuse_inode *fi = get_fuse_inode(inode);
915 int err;
916 bool r;
917
126b9d43 918 if (time_before64(fi->i_time, get_jiffies_64())) {
bcb4be80
MS
919 r = true;
920 err = fuse_do_getattr(inode, stat, file);
921 } else {
922 r = false;
923 err = 0;
924 if (stat) {
925 generic_fillattr(inode, stat);
926 stat->mode = fi->orig_i_mode;
45c72cd7 927 stat->ino = fi->orig_ino;
bcb4be80
MS
928 }
929 }
930
931 if (refreshed != NULL)
932 *refreshed = r;
933
934 return err;
935}
936
3b463ae0 937int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid,
451d0f59 938 u64 child_nodeid, struct qstr *name)
3b463ae0
JM
939{
940 int err = -ENOTDIR;
941 struct inode *parent;
942 struct dentry *dir;
943 struct dentry *entry;
944
945 parent = ilookup5(sb, parent_nodeid, fuse_inode_eq, &parent_nodeid);
946 if (!parent)
947 return -ENOENT;
948
5955102c 949 inode_lock(parent);
3b463ae0
JM
950 if (!S_ISDIR(parent->i_mode))
951 goto unlock;
952
953 err = -ENOENT;
954 dir = d_find_alias(parent);
955 if (!dir)
956 goto unlock;
957
8387ff25 958 name->hash = full_name_hash(dir, name->name, name->len);
3b463ae0
JM
959 entry = d_lookup(dir, name);
960 dput(dir);
961 if (!entry)
962 goto unlock;
963
964 fuse_invalidate_attr(parent);
965 fuse_invalidate_entry(entry);
451d0f59 966
2b0143b5 967 if (child_nodeid != 0 && d_really_is_positive(entry)) {
5955102c 968 inode_lock(d_inode(entry));
2b0143b5 969 if (get_node_id(d_inode(entry)) != child_nodeid) {
451d0f59
JM
970 err = -ENOENT;
971 goto badentry;
972 }
973 if (d_mountpoint(entry)) {
974 err = -EBUSY;
975 goto badentry;
976 }
e36cb0b8 977 if (d_is_dir(entry)) {
451d0f59
JM
978 shrink_dcache_parent(entry);
979 if (!simple_empty(entry)) {
980 err = -ENOTEMPTY;
981 goto badentry;
982 }
2b0143b5 983 d_inode(entry)->i_flags |= S_DEAD;
451d0f59
JM
984 }
985 dont_mount(entry);
2b0143b5 986 clear_nlink(d_inode(entry));
451d0f59
JM
987 err = 0;
988 badentry:
5955102c 989 inode_unlock(d_inode(entry));
451d0f59
JM
990 if (!err)
991 d_delete(entry);
992 } else {
993 err = 0;
994 }
3b463ae0 995 dput(entry);
3b463ae0
JM
996
997 unlock:
5955102c 998 inode_unlock(parent);
3b463ae0
JM
999 iput(parent);
1000 return err;
1001}
1002
87729a55
MS
1003/*
1004 * Calling into a user-controlled filesystem gives the filesystem
c2132c1b 1005 * daemon ptrace-like capabilities over the current process. This
87729a55
MS
1006 * means, that the filesystem daemon is able to record the exact
1007 * filesystem operations performed, and can also control the behavior
1008 * of the requester process in otherwise impossible ways. For example
1009 * it can delay the operation for arbitrary length of time allowing
1010 * DoS against the requester.
1011 *
1012 * For this reason only those processes can call into the filesystem,
1013 * for which the owner of the mount has ptrace privilege. This
1014 * excludes processes started by other users, suid or sgid processes.
1015 */
c2132c1b 1016int fuse_allow_current_process(struct fuse_conn *fc)
87729a55 1017{
c69e8d9c 1018 const struct cred *cred;
87729a55 1019
c69e8d9c 1020 if (fc->flags & FUSE_ALLOW_OTHER)
87729a55
MS
1021 return 1;
1022
c2132c1b 1023 cred = current_cred();
499dcf20
EB
1024 if (uid_eq(cred->euid, fc->user_id) &&
1025 uid_eq(cred->suid, fc->user_id) &&
1026 uid_eq(cred->uid, fc->user_id) &&
1027 gid_eq(cred->egid, fc->group_id) &&
1028 gid_eq(cred->sgid, fc->group_id) &&
1029 gid_eq(cred->gid, fc->group_id))
c2132c1b 1030 return 1;
c69e8d9c 1031
c2132c1b 1032 return 0;
87729a55
MS
1033}
1034
31d40d74
MS
1035static int fuse_access(struct inode *inode, int mask)
1036{
1037 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1038 FUSE_ARGS(args);
31d40d74
MS
1039 struct fuse_access_in inarg;
1040 int err;
1041
698fa1d1
MS
1042 BUG_ON(mask & MAY_NOT_BLOCK);
1043
31d40d74
MS
1044 if (fc->no_access)
1045 return 0;
1046
31d40d74 1047 memset(&inarg, 0, sizeof(inarg));
e6305c43 1048 inarg.mask = mask & (MAY_READ | MAY_WRITE | MAY_EXEC);
7078187a
MS
1049 args.in.h.opcode = FUSE_ACCESS;
1050 args.in.h.nodeid = get_node_id(inode);
1051 args.in.numargs = 1;
1052 args.in.args[0].size = sizeof(inarg);
1053 args.in.args[0].value = &inarg;
1054 err = fuse_simple_request(fc, &args);
31d40d74
MS
1055 if (err == -ENOSYS) {
1056 fc->no_access = 1;
1057 err = 0;
1058 }
1059 return err;
1060}
1061
10556cb2 1062static int fuse_perm_getattr(struct inode *inode, int mask)
19690ddb 1063{
10556cb2 1064 if (mask & MAY_NOT_BLOCK)
19690ddb
MS
1065 return -ECHILD;
1066
1067 return fuse_do_getattr(inode, NULL, NULL);
1068}
1069
6f9f1180
MS
1070/*
1071 * Check permission. The two basic access models of FUSE are:
1072 *
1073 * 1) Local access checking ('default_permissions' mount option) based
1074 * on file mode. This is the plain old disk filesystem permission
1075 * modell.
1076 *
1077 * 2) "Remote" access checking, where server is responsible for
1078 * checking permission in each inode operation. An exception to this
1079 * is if ->permission() was invoked from sys_access() in which case an
1080 * access request is sent. Execute permission is still checked
1081 * locally based on file mode.
1082 */
10556cb2 1083static int fuse_permission(struct inode *inode, int mask)
e5e5558e
MS
1084{
1085 struct fuse_conn *fc = get_fuse_conn(inode);
244f6385
MS
1086 bool refreshed = false;
1087 int err = 0;
e5e5558e 1088
c2132c1b 1089 if (!fuse_allow_current_process(fc))
e5e5558e 1090 return -EACCES;
244f6385
MS
1091
1092 /*
e8e96157 1093 * If attributes are needed, refresh them before proceeding
244f6385 1094 */
e8e96157
MS
1095 if ((fc->flags & FUSE_DEFAULT_PERMISSIONS) ||
1096 ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))) {
19690ddb
MS
1097 struct fuse_inode *fi = get_fuse_inode(inode);
1098
126b9d43 1099 if (time_before64(fi->i_time, get_jiffies_64())) {
19690ddb
MS
1100 refreshed = true;
1101
10556cb2 1102 err = fuse_perm_getattr(inode, mask);
19690ddb
MS
1103 if (err)
1104 return err;
1105 }
244f6385
MS
1106 }
1107
1108 if (fc->flags & FUSE_DEFAULT_PERMISSIONS) {
2830ba7f 1109 err = generic_permission(inode, mask);
1e9a4ed9
MS
1110
1111 /* If permission is denied, try to refresh file
1112 attributes. This is also needed, because the root
1113 node will at first have no permissions */
244f6385 1114 if (err == -EACCES && !refreshed) {
10556cb2 1115 err = fuse_perm_getattr(inode, mask);
1e9a4ed9 1116 if (!err)
2830ba7f 1117 err = generic_permission(inode, mask);
1e9a4ed9
MS
1118 }
1119
6f9f1180
MS
1120 /* Note: the opposite of the above test does not
1121 exist. So if permissions are revoked this won't be
1122 noticed immediately, only after the attribute
1123 timeout has expired */
9cfcac81 1124 } else if (mask & (MAY_ACCESS | MAY_CHDIR)) {
e8e96157
MS
1125 err = fuse_access(inode, mask);
1126 } else if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
1127 if (!(inode->i_mode & S_IXUGO)) {
1128 if (refreshed)
1129 return -EACCES;
1130
10556cb2 1131 err = fuse_perm_getattr(inode, mask);
e8e96157
MS
1132 if (!err && !(inode->i_mode & S_IXUGO))
1133 return -EACCES;
1134 }
e5e5558e 1135 }
244f6385 1136 return err;
e5e5558e
MS
1137}
1138
1139static int parse_dirfile(char *buf, size_t nbytes, struct file *file,
8d3af7f3 1140 struct dir_context *ctx)
e5e5558e
MS
1141{
1142 while (nbytes >= FUSE_NAME_OFFSET) {
1143 struct fuse_dirent *dirent = (struct fuse_dirent *) buf;
1144 size_t reclen = FUSE_DIRENT_SIZE(dirent);
e5e5558e
MS
1145 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1146 return -EIO;
1147 if (reclen > nbytes)
1148 break;
efeb9e60
MS
1149 if (memchr(dirent->name, '/', dirent->namelen) != NULL)
1150 return -EIO;
e5e5558e 1151
8d3af7f3
AV
1152 if (!dir_emit(ctx, dirent->name, dirent->namelen,
1153 dirent->ino, dirent->type))
e5e5558e
MS
1154 break;
1155
1156 buf += reclen;
1157 nbytes -= reclen;
8d3af7f3 1158 ctx->pos = dirent->off;
e5e5558e
MS
1159 }
1160
1161 return 0;
1162}
1163
0b05b183
AA
1164static int fuse_direntplus_link(struct file *file,
1165 struct fuse_direntplus *direntplus,
1166 u64 attr_version)
1167{
0b05b183
AA
1168 struct fuse_entry_out *o = &direntplus->entry_out;
1169 struct fuse_dirent *dirent = &direntplus->dirent;
1170 struct dentry *parent = file->f_path.dentry;
1171 struct qstr name = QSTR_INIT(dirent->name, dirent->namelen);
1172 struct dentry *dentry;
1173 struct dentry *alias;
2b0143b5 1174 struct inode *dir = d_inode(parent);
0b05b183
AA
1175 struct fuse_conn *fc;
1176 struct inode *inode;
d9b3dbdc 1177 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
0b05b183
AA
1178
1179 if (!o->nodeid) {
1180 /*
1181 * Unlike in the case of fuse_lookup, zero nodeid does not mean
1182 * ENOENT. Instead, it only means the userspace filesystem did
1183 * not want to return attributes/handle for this entry.
1184 *
1185 * So do nothing.
1186 */
1187 return 0;
1188 }
1189
1190 if (name.name[0] == '.') {
1191 /*
1192 * We could potentially refresh the attributes of the directory
1193 * and its parent?
1194 */
1195 if (name.len == 1)
1196 return 0;
1197 if (name.name[1] == '.' && name.len == 2)
1198 return 0;
1199 }
a28ef45c
MS
1200
1201 if (invalid_nodeid(o->nodeid))
1202 return -EIO;
1203 if (!fuse_valid_type(o->attr.mode))
1204 return -EIO;
1205
0b05b183
AA
1206 fc = get_fuse_conn(dir);
1207
8387ff25 1208 name.hash = full_name_hash(parent, name.name, name.len);
0b05b183 1209 dentry = d_lookup(parent, &name);
d9b3dbdc
AV
1210 if (!dentry) {
1211retry:
1212 dentry = d_alloc_parallel(parent, &name, &wq);
1213 if (IS_ERR(dentry))
1214 return PTR_ERR(dentry);
1215 }
1216 if (!d_in_lookup(dentry)) {
1217 struct fuse_inode *fi;
2b0143b5 1218 inode = d_inode(dentry);
d9b3dbdc
AV
1219 if (!inode ||
1220 get_node_id(inode) != o->nodeid ||
1221 ((o->attr.mode ^ inode->i_mode) & S_IFMT)) {
5542aa2f 1222 d_invalidate(dentry);
d9b3dbdc
AV
1223 dput(dentry);
1224 goto retry;
1225 }
1226 if (is_bad_inode(inode)) {
1227 dput(dentry);
1228 return -EIO;
0b05b183 1229 }
0b05b183 1230
d9b3dbdc
AV
1231 fi = get_fuse_inode(inode);
1232 spin_lock(&fc->lock);
1233 fi->nlookup++;
1234 spin_unlock(&fc->lock);
0b05b183 1235
d9b3dbdc
AV
1236 fuse_change_attributes(inode, &o->attr,
1237 entry_attr_timeout(o),
1238 attr_version);
1239 /*
1240 * The other branch comes via fuse_iget()
1241 * which bumps nlookup inside
1242 */
1243 } else {
1244 inode = fuse_iget(dir->i_sb, o->nodeid, o->generation,
1245 &o->attr, entry_attr_timeout(o),
1246 attr_version);
1247 if (!inode)
1248 inode = ERR_PTR(-ENOMEM);
2914941e 1249
d9b3dbdc
AV
1250 alias = d_splice_alias(inode, dentry);
1251 d_lookup_done(dentry);
1252 if (alias) {
1253 dput(dentry);
1254 dentry = alias;
1255 }
1256 if (IS_ERR(dentry))
1257 return PTR_ERR(dentry);
0b05b183 1258 }
6314efee
MS
1259 if (fc->readdirplus_auto)
1260 set_bit(FUSE_I_INIT_RDPLUS, &get_fuse_inode(inode)->state);
0b05b183
AA
1261 fuse_change_entry_timeout(dentry, o);
1262
c7263bcd 1263 dput(dentry);
d9b3dbdc 1264 return 0;
0b05b183
AA
1265}
1266
1267static int parse_dirplusfile(char *buf, size_t nbytes, struct file *file,
8d3af7f3 1268 struct dir_context *ctx, u64 attr_version)
0b05b183
AA
1269{
1270 struct fuse_direntplus *direntplus;
1271 struct fuse_dirent *dirent;
1272 size_t reclen;
1273 int over = 0;
1274 int ret;
1275
1276 while (nbytes >= FUSE_NAME_OFFSET_DIRENTPLUS) {
1277 direntplus = (struct fuse_direntplus *) buf;
1278 dirent = &direntplus->dirent;
1279 reclen = FUSE_DIRENTPLUS_SIZE(direntplus);
1280
1281 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1282 return -EIO;
1283 if (reclen > nbytes)
1284 break;
efeb9e60
MS
1285 if (memchr(dirent->name, '/', dirent->namelen) != NULL)
1286 return -EIO;
0b05b183
AA
1287
1288 if (!over) {
1289 /* We fill entries into dstbuf only as much as
1290 it can hold. But we still continue iterating
1291 over remaining entries to link them. If not,
1292 we need to send a FORGET for each of those
1293 which we did not link.
1294 */
8d3af7f3
AV
1295 over = !dir_emit(ctx, dirent->name, dirent->namelen,
1296 dirent->ino, dirent->type);
1297 ctx->pos = dirent->off;
0b05b183
AA
1298 }
1299
1300 buf += reclen;
1301 nbytes -= reclen;
1302
1303 ret = fuse_direntplus_link(file, direntplus, attr_version);
1304 if (ret)
1305 fuse_force_forget(file, direntplus->entry_out.nodeid);
1306 }
1307
1308 return 0;
1309}
1310
8d3af7f3 1311static int fuse_readdir(struct file *file, struct dir_context *ctx)
e5e5558e 1312{
4582a4ab 1313 int plus, err;
04730fef
MS
1314 size_t nbytes;
1315 struct page *page;
496ad9aa 1316 struct inode *inode = file_inode(file);
e5e5558e 1317 struct fuse_conn *fc = get_fuse_conn(inode);
248d86e8 1318 struct fuse_req *req;
0b05b183 1319 u64 attr_version = 0;
248d86e8
MS
1320
1321 if (is_bad_inode(inode))
1322 return -EIO;
1323
b111c8c0 1324 req = fuse_get_req(fc, 1);
ce1d5a49
MS
1325 if (IS_ERR(req))
1326 return PTR_ERR(req);
e5e5558e 1327
04730fef
MS
1328 page = alloc_page(GFP_KERNEL);
1329 if (!page) {
1330 fuse_put_request(fc, req);
1331 return -ENOMEM;
1332 }
4582a4ab 1333
8d3af7f3 1334 plus = fuse_use_readdirplus(inode, ctx);
f4975c67 1335 req->out.argpages = 1;
04730fef
MS
1336 req->num_pages = 1;
1337 req->pages[0] = page;
85f40aec 1338 req->page_descs[0].length = PAGE_SIZE;
4582a4ab 1339 if (plus) {
0b05b183 1340 attr_version = fuse_get_attr_version(fc);
8d3af7f3 1341 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
0b05b183
AA
1342 FUSE_READDIRPLUS);
1343 } else {
8d3af7f3 1344 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
0b05b183
AA
1345 FUSE_READDIR);
1346 }
5c672ab3 1347 fuse_lock_inode(inode);
b93f858a 1348 fuse_request_send(fc, req);
5c672ab3 1349 fuse_unlock_inode(inode);
361b1eb5 1350 nbytes = req->out.args[0].size;
e5e5558e
MS
1351 err = req->out.h.error;
1352 fuse_put_request(fc, req);
0b05b183 1353 if (!err) {
4582a4ab 1354 if (plus) {
0b05b183 1355 err = parse_dirplusfile(page_address(page), nbytes,
8d3af7f3 1356 file, ctx,
0b05b183
AA
1357 attr_version);
1358 } else {
1359 err = parse_dirfile(page_address(page), nbytes, file,
8d3af7f3 1360 ctx);
0b05b183
AA
1361 }
1362 }
e5e5558e 1363
04730fef 1364 __free_page(page);
451418fc 1365 fuse_invalidate_atime(inode);
04730fef 1366 return err;
e5e5558e
MS
1367}
1368
6b255391 1369static const char *fuse_get_link(struct dentry *dentry,
fceef393
AV
1370 struct inode *inode,
1371 struct delayed_call *done)
e5e5558e 1372{
e5e5558e 1373 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1374 FUSE_ARGS(args);
e5e5558e 1375 char *link;
7078187a 1376 ssize_t ret;
e5e5558e 1377
6b255391
AV
1378 if (!dentry)
1379 return ERR_PTR(-ECHILD);
1380
cd3417c8 1381 link = kmalloc(PAGE_SIZE, GFP_KERNEL);
7078187a
MS
1382 if (!link)
1383 return ERR_PTR(-ENOMEM);
1384
1385 args.in.h.opcode = FUSE_READLINK;
1386 args.in.h.nodeid = get_node_id(inode);
1387 args.out.argvar = 1;
1388 args.out.numargs = 1;
1389 args.out.args[0].size = PAGE_SIZE - 1;
1390 args.out.args[0].value = link;
1391 ret = fuse_simple_request(fc, &args);
1392 if (ret < 0) {
cd3417c8 1393 kfree(link);
7078187a
MS
1394 link = ERR_PTR(ret);
1395 } else {
1396 link[ret] = '\0';
fceef393 1397 set_delayed_call(done, kfree_link, link);
7078187a 1398 }
451418fc 1399 fuse_invalidate_atime(inode);
e5e5558e
MS
1400 return link;
1401}
1402
e5e5558e
MS
1403static int fuse_dir_open(struct inode *inode, struct file *file)
1404{
91fe96b4 1405 return fuse_open_common(inode, file, true);
e5e5558e
MS
1406}
1407
1408static int fuse_dir_release(struct inode *inode, struct file *file)
1409{
8b0797a4
MS
1410 fuse_release_common(file, FUSE_RELEASEDIR);
1411
1412 return 0;
e5e5558e
MS
1413}
1414
02c24a82
JB
1415static int fuse_dir_fsync(struct file *file, loff_t start, loff_t end,
1416 int datasync)
82547981 1417{
02c24a82 1418 return fuse_fsync_common(file, start, end, datasync, 1);
82547981
MS
1419}
1420
b18da0c5
MS
1421static long fuse_dir_ioctl(struct file *file, unsigned int cmd,
1422 unsigned long arg)
1423{
1424 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1425
1426 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1427 if (fc->minor < 18)
1428 return -ENOTTY;
1429
1430 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_DIR);
1431}
1432
1433static long fuse_dir_compat_ioctl(struct file *file, unsigned int cmd,
1434 unsigned long arg)
1435{
1436 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1437
1438 if (fc->minor < 18)
1439 return -ENOTTY;
1440
1441 return fuse_ioctl_common(file, cmd, arg,
1442 FUSE_IOCTL_COMPAT | FUSE_IOCTL_DIR);
1443}
1444
b0aa7606 1445static bool update_mtime(unsigned ivalid, bool trust_local_mtime)
17637cba
MS
1446{
1447 /* Always update if mtime is explicitly set */
1448 if (ivalid & ATTR_MTIME_SET)
1449 return true;
1450
b0aa7606
MP
1451 /* Or if kernel i_mtime is the official one */
1452 if (trust_local_mtime)
1453 return true;
1454
17637cba
MS
1455 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1456 if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE)))
1457 return false;
1458
1459 /* In all other cases update */
1460 return true;
1461}
1462
b0aa7606 1463static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg,
3ad22c62 1464 bool trust_local_cmtime)
9e6268db
MS
1465{
1466 unsigned ivalid = iattr->ia_valid;
9e6268db
MS
1467
1468 if (ivalid & ATTR_MODE)
befc649c 1469 arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode;
9e6268db 1470 if (ivalid & ATTR_UID)
499dcf20 1471 arg->valid |= FATTR_UID, arg->uid = from_kuid(&init_user_ns, iattr->ia_uid);
9e6268db 1472 if (ivalid & ATTR_GID)
499dcf20 1473 arg->valid |= FATTR_GID, arg->gid = from_kgid(&init_user_ns, iattr->ia_gid);
9e6268db 1474 if (ivalid & ATTR_SIZE)
befc649c 1475 arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size;
17637cba
MS
1476 if (ivalid & ATTR_ATIME) {
1477 arg->valid |= FATTR_ATIME;
befc649c 1478 arg->atime = iattr->ia_atime.tv_sec;
17637cba
MS
1479 arg->atimensec = iattr->ia_atime.tv_nsec;
1480 if (!(ivalid & ATTR_ATIME_SET))
1481 arg->valid |= FATTR_ATIME_NOW;
1482 }
3ad22c62 1483 if ((ivalid & ATTR_MTIME) && update_mtime(ivalid, trust_local_cmtime)) {
17637cba 1484 arg->valid |= FATTR_MTIME;
befc649c 1485 arg->mtime = iattr->ia_mtime.tv_sec;
17637cba 1486 arg->mtimensec = iattr->ia_mtime.tv_nsec;
3ad22c62 1487 if (!(ivalid & ATTR_MTIME_SET) && !trust_local_cmtime)
17637cba 1488 arg->valid |= FATTR_MTIME_NOW;
befc649c 1489 }
3ad22c62
MP
1490 if ((ivalid & ATTR_CTIME) && trust_local_cmtime) {
1491 arg->valid |= FATTR_CTIME;
1492 arg->ctime = iattr->ia_ctime.tv_sec;
1493 arg->ctimensec = iattr->ia_ctime.tv_nsec;
1494 }
9e6268db
MS
1495}
1496
3be5a52b
MS
1497/*
1498 * Prevent concurrent writepages on inode
1499 *
1500 * This is done by adding a negative bias to the inode write counter
1501 * and waiting for all pending writes to finish.
1502 */
1503void fuse_set_nowrite(struct inode *inode)
1504{
1505 struct fuse_conn *fc = get_fuse_conn(inode);
1506 struct fuse_inode *fi = get_fuse_inode(inode);
1507
5955102c 1508 BUG_ON(!inode_is_locked(inode));
3be5a52b
MS
1509
1510 spin_lock(&fc->lock);
1511 BUG_ON(fi->writectr < 0);
1512 fi->writectr += FUSE_NOWRITE;
1513 spin_unlock(&fc->lock);
1514 wait_event(fi->page_waitq, fi->writectr == FUSE_NOWRITE);
1515}
1516
1517/*
1518 * Allow writepages on inode
1519 *
1520 * Remove the bias from the writecounter and send any queued
1521 * writepages.
1522 */
1523static void __fuse_release_nowrite(struct inode *inode)
1524{
1525 struct fuse_inode *fi = get_fuse_inode(inode);
1526
1527 BUG_ON(fi->writectr != FUSE_NOWRITE);
1528 fi->writectr = 0;
1529 fuse_flush_writepages(inode);
1530}
1531
1532void fuse_release_nowrite(struct inode *inode)
1533{
1534 struct fuse_conn *fc = get_fuse_conn(inode);
1535
1536 spin_lock(&fc->lock);
1537 __fuse_release_nowrite(inode);
1538 spin_unlock(&fc->lock);
1539}
1540
7078187a 1541static void fuse_setattr_fill(struct fuse_conn *fc, struct fuse_args *args,
b0aa7606
MP
1542 struct inode *inode,
1543 struct fuse_setattr_in *inarg_p,
1544 struct fuse_attr_out *outarg_p)
1545{
7078187a
MS
1546 args->in.h.opcode = FUSE_SETATTR;
1547 args->in.h.nodeid = get_node_id(inode);
1548 args->in.numargs = 1;
1549 args->in.args[0].size = sizeof(*inarg_p);
1550 args->in.args[0].value = inarg_p;
1551 args->out.numargs = 1;
21f62174 1552 args->out.args[0].size = sizeof(*outarg_p);
7078187a 1553 args->out.args[0].value = outarg_p;
b0aa7606
MP
1554}
1555
1556/*
1557 * Flush inode->i_mtime to the server
1558 */
ab9e13f7 1559int fuse_flush_times(struct inode *inode, struct fuse_file *ff)
b0aa7606 1560{
b0aa7606 1561 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1562 FUSE_ARGS(args);
b0aa7606
MP
1563 struct fuse_setattr_in inarg;
1564 struct fuse_attr_out outarg;
b0aa7606
MP
1565
1566 memset(&inarg, 0, sizeof(inarg));
1567 memset(&outarg, 0, sizeof(outarg));
1568
ab9e13f7 1569 inarg.valid = FATTR_MTIME;
b0aa7606
MP
1570 inarg.mtime = inode->i_mtime.tv_sec;
1571 inarg.mtimensec = inode->i_mtime.tv_nsec;
ab9e13f7
MP
1572 if (fc->minor >= 23) {
1573 inarg.valid |= FATTR_CTIME;
1574 inarg.ctime = inode->i_ctime.tv_sec;
1575 inarg.ctimensec = inode->i_ctime.tv_nsec;
1576 }
1e18bda8
MS
1577 if (ff) {
1578 inarg.valid |= FATTR_FH;
1579 inarg.fh = ff->fh;
1580 }
7078187a 1581 fuse_setattr_fill(fc, &args, inode, &inarg, &outarg);
b0aa7606 1582
7078187a 1583 return fuse_simple_request(fc, &args);
b0aa7606
MP
1584}
1585
6f9f1180
MS
1586/*
1587 * Set attributes, and at the same time refresh them.
1588 *
1589 * Truncation is slightly complicated, because the 'truncate' request
1590 * may fail, in which case we don't want to touch the mapping.
9ffbb916
MS
1591 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1592 * and the actual truncation by hand.
6f9f1180 1593 */
efb9fa9e
MP
1594int fuse_do_setattr(struct inode *inode, struct iattr *attr,
1595 struct file *file)
9e6268db 1596{
9e6268db 1597 struct fuse_conn *fc = get_fuse_conn(inode);
06a7c3c2 1598 struct fuse_inode *fi = get_fuse_inode(inode);
7078187a 1599 FUSE_ARGS(args);
9e6268db
MS
1600 struct fuse_setattr_in inarg;
1601 struct fuse_attr_out outarg;
3be5a52b 1602 bool is_truncate = false;
8373200b 1603 bool is_wb = fc->writeback_cache;
3be5a52b 1604 loff_t oldsize;
9e6268db 1605 int err;
3ad22c62 1606 bool trust_local_cmtime = is_wb && S_ISREG(inode->i_mode);
9e6268db 1607
db78b877
CH
1608 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
1609 attr->ia_valid |= ATTR_FORCE;
1610
1611 err = inode_change_ok(inode, attr);
1612 if (err)
1613 return err;
1e9a4ed9 1614
8d56addd
MS
1615 if (attr->ia_valid & ATTR_OPEN) {
1616 if (fc->atomic_o_trunc)
1617 return 0;
1618 file = NULL;
1619 }
6ff958ed 1620
2c27c65e 1621 if (attr->ia_valid & ATTR_SIZE)
3be5a52b 1622 is_truncate = true;
9e6268db 1623
06a7c3c2 1624 if (is_truncate) {
3be5a52b 1625 fuse_set_nowrite(inode);
06a7c3c2 1626 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3ad22c62
MP
1627 if (trust_local_cmtime && attr->ia_size != inode->i_size)
1628 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
06a7c3c2 1629 }
3be5a52b 1630
9e6268db 1631 memset(&inarg, 0, sizeof(inarg));
0e9663ee 1632 memset(&outarg, 0, sizeof(outarg));
3ad22c62 1633 iattr_to_fattr(attr, &inarg, trust_local_cmtime);
49d4914f
MS
1634 if (file) {
1635 struct fuse_file *ff = file->private_data;
1636 inarg.valid |= FATTR_FH;
1637 inarg.fh = ff->fh;
1638 }
f3332114
MS
1639 if (attr->ia_valid & ATTR_SIZE) {
1640 /* For mandatory locking in truncate */
1641 inarg.valid |= FATTR_LOCKOWNER;
1642 inarg.lock_owner = fuse_lock_owner_id(fc, current->files);
1643 }
7078187a
MS
1644 fuse_setattr_fill(fc, &args, inode, &inarg, &outarg);
1645 err = fuse_simple_request(fc, &args);
e00d2c2d
MS
1646 if (err) {
1647 if (err == -EINTR)
1648 fuse_invalidate_attr(inode);
3be5a52b 1649 goto error;
e00d2c2d 1650 }
9e6268db 1651
e00d2c2d
MS
1652 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
1653 make_bad_inode(inode);
3be5a52b
MS
1654 err = -EIO;
1655 goto error;
1656 }
1657
1658 spin_lock(&fc->lock);
b0aa7606 1659 /* the kernel maintains i_mtime locally */
3ad22c62
MP
1660 if (trust_local_cmtime) {
1661 if (attr->ia_valid & ATTR_MTIME)
1662 inode->i_mtime = attr->ia_mtime;
1663 if (attr->ia_valid & ATTR_CTIME)
1664 inode->i_ctime = attr->ia_ctime;
1e18bda8 1665 /* FIXME: clear I_DIRTY_SYNC? */
b0aa7606
MP
1666 }
1667
3be5a52b
MS
1668 fuse_change_attributes_common(inode, &outarg.attr,
1669 attr_timeout(&outarg));
1670 oldsize = inode->i_size;
8373200b
PE
1671 /* see the comment in fuse_change_attributes() */
1672 if (!is_wb || is_truncate || !S_ISREG(inode->i_mode))
1673 i_size_write(inode, outarg.attr.size);
3be5a52b
MS
1674
1675 if (is_truncate) {
1676 /* NOTE: this may release/reacquire fc->lock */
1677 __fuse_release_nowrite(inode);
1678 }
1679 spin_unlock(&fc->lock);
1680
1681 /*
1682 * Only call invalidate_inode_pages2() after removing
1683 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1684 */
8373200b
PE
1685 if ((is_truncate || !is_wb) &&
1686 S_ISREG(inode->i_mode) && oldsize != outarg.attr.size) {
7caef267 1687 truncate_pagecache(inode, outarg.attr.size);
3be5a52b 1688 invalidate_inode_pages2(inode->i_mapping);
e00d2c2d
MS
1689 }
1690
06a7c3c2 1691 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
e00d2c2d 1692 return 0;
3be5a52b
MS
1693
1694error:
1695 if (is_truncate)
1696 fuse_release_nowrite(inode);
1697
06a7c3c2 1698 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3be5a52b 1699 return err;
9e6268db
MS
1700}
1701
49d4914f
MS
1702static int fuse_setattr(struct dentry *entry, struct iattr *attr)
1703{
2b0143b5 1704 struct inode *inode = d_inode(entry);
efb9fa9e
MP
1705
1706 if (!fuse_allow_current_process(get_fuse_conn(inode)))
1707 return -EACCES;
1708
49d4914f 1709 if (attr->ia_valid & ATTR_FILE)
efb9fa9e 1710 return fuse_do_setattr(inode, attr, attr->ia_file);
49d4914f 1711 else
efb9fa9e 1712 return fuse_do_setattr(inode, attr, NULL);
49d4914f
MS
1713}
1714
e5e5558e
MS
1715static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry,
1716 struct kstat *stat)
1717{
2b0143b5 1718 struct inode *inode = d_inode(entry);
244f6385 1719 struct fuse_conn *fc = get_fuse_conn(inode);
244f6385 1720
c2132c1b 1721 if (!fuse_allow_current_process(fc))
244f6385
MS
1722 return -EACCES;
1723
bcb4be80 1724 return fuse_update_attributes(inode, stat, NULL, NULL);
e5e5558e
MS
1725}
1726
3767e255
AV
1727static int fuse_setxattr(struct dentry *unused, struct inode *inode,
1728 const char *name, const void *value,
1729 size_t size, int flags)
92a8780e 1730{
92a8780e 1731 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1732 FUSE_ARGS(args);
92a8780e
MS
1733 struct fuse_setxattr_in inarg;
1734 int err;
1735
92a8780e
MS
1736 if (fc->no_setxattr)
1737 return -EOPNOTSUPP;
1738
92a8780e
MS
1739 memset(&inarg, 0, sizeof(inarg));
1740 inarg.size = size;
1741 inarg.flags = flags;
7078187a
MS
1742 args.in.h.opcode = FUSE_SETXATTR;
1743 args.in.h.nodeid = get_node_id(inode);
1744 args.in.numargs = 3;
1745 args.in.args[0].size = sizeof(inarg);
1746 args.in.args[0].value = &inarg;
1747 args.in.args[1].size = strlen(name) + 1;
1748 args.in.args[1].value = name;
1749 args.in.args[2].size = size;
1750 args.in.args[2].value = value;
1751 err = fuse_simple_request(fc, &args);
92a8780e
MS
1752 if (err == -ENOSYS) {
1753 fc->no_setxattr = 1;
1754 err = -EOPNOTSUPP;
1755 }
31f3267b 1756 if (!err) {
d331a415 1757 fuse_invalidate_attr(inode);
31f3267b
MP
1758 fuse_update_ctime(inode);
1759 }
92a8780e
MS
1760 return err;
1761}
1762
ce23e640
AV
1763static ssize_t fuse_getxattr(struct dentry *entry, struct inode *inode,
1764 const char *name, void *value, size_t size)
92a8780e 1765{
92a8780e 1766 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1767 FUSE_ARGS(args);
92a8780e
MS
1768 struct fuse_getxattr_in inarg;
1769 struct fuse_getxattr_out outarg;
1770 ssize_t ret;
1771
1772 if (fc->no_getxattr)
1773 return -EOPNOTSUPP;
1774
92a8780e
MS
1775 memset(&inarg, 0, sizeof(inarg));
1776 inarg.size = size;
7078187a
MS
1777 args.in.h.opcode = FUSE_GETXATTR;
1778 args.in.h.nodeid = get_node_id(inode);
1779 args.in.numargs = 2;
1780 args.in.args[0].size = sizeof(inarg);
1781 args.in.args[0].value = &inarg;
1782 args.in.args[1].size = strlen(name) + 1;
1783 args.in.args[1].value = name;
92a8780e 1784 /* This is really two different operations rolled into one */
7078187a 1785 args.out.numargs = 1;
92a8780e 1786 if (size) {
7078187a
MS
1787 args.out.argvar = 1;
1788 args.out.args[0].size = size;
1789 args.out.args[0].value = value;
92a8780e 1790 } else {
7078187a
MS
1791 args.out.args[0].size = sizeof(outarg);
1792 args.out.args[0].value = &outarg;
92a8780e 1793 }
7078187a
MS
1794 ret = fuse_simple_request(fc, &args);
1795 if (!ret && !size)
1796 ret = outarg.size;
1797 if (ret == -ENOSYS) {
1798 fc->no_getxattr = 1;
1799 ret = -EOPNOTSUPP;
92a8780e 1800 }
92a8780e
MS
1801 return ret;
1802}
1803
1804static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size)
1805{
2b0143b5 1806 struct inode *inode = d_inode(entry);
92a8780e 1807 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1808 FUSE_ARGS(args);
92a8780e
MS
1809 struct fuse_getxattr_in inarg;
1810 struct fuse_getxattr_out outarg;
1811 ssize_t ret;
1812
c2132c1b 1813 if (!fuse_allow_current_process(fc))
e57ac683
MS
1814 return -EACCES;
1815
92a8780e
MS
1816 if (fc->no_listxattr)
1817 return -EOPNOTSUPP;
1818
92a8780e
MS
1819 memset(&inarg, 0, sizeof(inarg));
1820 inarg.size = size;
7078187a
MS
1821 args.in.h.opcode = FUSE_LISTXATTR;
1822 args.in.h.nodeid = get_node_id(inode);
1823 args.in.numargs = 1;
1824 args.in.args[0].size = sizeof(inarg);
1825 args.in.args[0].value = &inarg;
92a8780e 1826 /* This is really two different operations rolled into one */
7078187a 1827 args.out.numargs = 1;
92a8780e 1828 if (size) {
7078187a
MS
1829 args.out.argvar = 1;
1830 args.out.args[0].size = size;
1831 args.out.args[0].value = list;
92a8780e 1832 } else {
7078187a
MS
1833 args.out.args[0].size = sizeof(outarg);
1834 args.out.args[0].value = &outarg;
92a8780e 1835 }
7078187a
MS
1836 ret = fuse_simple_request(fc, &args);
1837 if (!ret && !size)
1838 ret = outarg.size;
1839 if (ret == -ENOSYS) {
1840 fc->no_listxattr = 1;
1841 ret = -EOPNOTSUPP;
92a8780e 1842 }
92a8780e
MS
1843 return ret;
1844}
1845
1846static int fuse_removexattr(struct dentry *entry, const char *name)
1847{
2b0143b5 1848 struct inode *inode = d_inode(entry);
92a8780e 1849 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 1850 FUSE_ARGS(args);
92a8780e
MS
1851 int err;
1852
1853 if (fc->no_removexattr)
1854 return -EOPNOTSUPP;
1855
7078187a
MS
1856 args.in.h.opcode = FUSE_REMOVEXATTR;
1857 args.in.h.nodeid = get_node_id(inode);
1858 args.in.numargs = 1;
1859 args.in.args[0].size = strlen(name) + 1;
1860 args.in.args[0].value = name;
1861 err = fuse_simple_request(fc, &args);
92a8780e
MS
1862 if (err == -ENOSYS) {
1863 fc->no_removexattr = 1;
1864 err = -EOPNOTSUPP;
1865 }
31f3267b 1866 if (!err) {
d331a415 1867 fuse_invalidate_attr(inode);
31f3267b
MP
1868 fuse_update_ctime(inode);
1869 }
92a8780e
MS
1870 return err;
1871}
1872
754661f1 1873static const struct inode_operations fuse_dir_inode_operations = {
e5e5558e 1874 .lookup = fuse_lookup,
9e6268db
MS
1875 .mkdir = fuse_mkdir,
1876 .symlink = fuse_symlink,
1877 .unlink = fuse_unlink,
1878 .rmdir = fuse_rmdir,
1560c974 1879 .rename2 = fuse_rename2,
9e6268db
MS
1880 .link = fuse_link,
1881 .setattr = fuse_setattr,
1882 .create = fuse_create,
c8ccbe03 1883 .atomic_open = fuse_atomic_open,
9e6268db 1884 .mknod = fuse_mknod,
e5e5558e
MS
1885 .permission = fuse_permission,
1886 .getattr = fuse_getattr,
92a8780e
MS
1887 .setxattr = fuse_setxattr,
1888 .getxattr = fuse_getxattr,
1889 .listxattr = fuse_listxattr,
1890 .removexattr = fuse_removexattr,
e5e5558e
MS
1891};
1892
4b6f5d20 1893static const struct file_operations fuse_dir_operations = {
b6aeaded 1894 .llseek = generic_file_llseek,
e5e5558e 1895 .read = generic_read_dir,
d9b3dbdc 1896 .iterate_shared = fuse_readdir,
e5e5558e
MS
1897 .open = fuse_dir_open,
1898 .release = fuse_dir_release,
82547981 1899 .fsync = fuse_dir_fsync,
b18da0c5
MS
1900 .unlocked_ioctl = fuse_dir_ioctl,
1901 .compat_ioctl = fuse_dir_compat_ioctl,
e5e5558e
MS
1902};
1903
754661f1 1904static const struct inode_operations fuse_common_inode_operations = {
9e6268db 1905 .setattr = fuse_setattr,
e5e5558e
MS
1906 .permission = fuse_permission,
1907 .getattr = fuse_getattr,
92a8780e
MS
1908 .setxattr = fuse_setxattr,
1909 .getxattr = fuse_getxattr,
1910 .listxattr = fuse_listxattr,
1911 .removexattr = fuse_removexattr,
e5e5558e
MS
1912};
1913
754661f1 1914static const struct inode_operations fuse_symlink_inode_operations = {
9e6268db 1915 .setattr = fuse_setattr,
6b255391 1916 .get_link = fuse_get_link,
e5e5558e
MS
1917 .readlink = generic_readlink,
1918 .getattr = fuse_getattr,
92a8780e
MS
1919 .setxattr = fuse_setxattr,
1920 .getxattr = fuse_getxattr,
1921 .listxattr = fuse_listxattr,
1922 .removexattr = fuse_removexattr,
e5e5558e
MS
1923};
1924
1925void fuse_init_common(struct inode *inode)
1926{
1927 inode->i_op = &fuse_common_inode_operations;
1928}
1929
1930void fuse_init_dir(struct inode *inode)
1931{
1932 inode->i_op = &fuse_dir_inode_operations;
1933 inode->i_fop = &fuse_dir_operations;
1934}
1935
1936void fuse_init_symlink(struct inode *inode)
1937{
1938 inode->i_op = &fuse_symlink_inode_operations;
1939}
This page took 0.876136 seconds and 5 git commands to generate.