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