2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
5 This program can be distributed under the terms of the GNU GPL.
11 #include <linux/pagemap.h>
12 #include <linux/file.h>
13 #include <linux/sched.h>
14 #include <linux/namei.h>
15 #include <linux/slab.h>
16 #include <linux/xattr.h>
17 #include <linux/iversion.h>
18 #include <linux/posix_acl.h>
20 static void fuse_advise_use_readdirplus(struct inode
*dir
)
22 struct fuse_inode
*fi
= get_fuse_inode(dir
);
24 set_bit(FUSE_I_ADVISE_RDPLUS
, &fi
->state
);
27 #if BITS_PER_LONG >= 64
28 static inline void __fuse_dentry_settime(struct dentry
*entry
, u64 time
)
30 entry
->d_fsdata
= (void *) time
;
33 static inline u64
fuse_dentry_time(const struct dentry
*entry
)
35 return (u64
)entry
->d_fsdata
;
44 static inline void __fuse_dentry_settime(struct dentry
*dentry
, u64 time
)
46 ((union fuse_dentry
*) dentry
->d_fsdata
)->time
= time
;
49 static inline u64
fuse_dentry_time(const struct dentry
*entry
)
51 return ((union fuse_dentry
*) entry
->d_fsdata
)->time
;
55 static void fuse_dentry_settime(struct dentry
*dentry
, u64 time
)
57 struct fuse_conn
*fc
= get_fuse_conn_super(dentry
->d_sb
);
58 bool delete = !time
&& fc
->delete_stale
;
60 * Mess with DCACHE_OP_DELETE because dput() will be faster without it.
61 * Don't care about races, either way it's just an optimization
63 if ((!delete && (dentry
->d_flags
& DCACHE_OP_DELETE
)) ||
64 (delete && !(dentry
->d_flags
& DCACHE_OP_DELETE
))) {
65 spin_lock(&dentry
->d_lock
);
67 dentry
->d_flags
&= ~DCACHE_OP_DELETE
;
69 dentry
->d_flags
|= DCACHE_OP_DELETE
;
70 spin_unlock(&dentry
->d_lock
);
73 __fuse_dentry_settime(dentry
, time
);
77 * FUSE caches dentries and attributes with separate timeout. The
78 * time in jiffies until the dentry/attributes are valid is stored in
79 * dentry->d_fsdata and fuse_inode->i_time respectively.
83 * Calculate the time in jiffies until a dentry/attributes are valid
85 static u64
time_to_jiffies(u64 sec
, u32 nsec
)
88 struct timespec64 ts
= {
90 min_t(u32
, nsec
, NSEC_PER_SEC
- 1)
93 return get_jiffies_64() + timespec64_to_jiffies(&ts
);
99 * Set dentry and possibly attribute timeouts from the lookup/mk*
102 void fuse_change_entry_timeout(struct dentry
*entry
, struct fuse_entry_out
*o
)
104 fuse_dentry_settime(entry
,
105 time_to_jiffies(o
->entry_valid
, o
->entry_valid_nsec
));
108 static u64
attr_timeout(struct fuse_attr_out
*o
)
110 return time_to_jiffies(o
->attr_valid
, o
->attr_valid_nsec
);
113 u64
entry_attr_timeout(struct fuse_entry_out
*o
)
115 return time_to_jiffies(o
->attr_valid
, o
->attr_valid_nsec
);
118 static void fuse_invalidate_attr_mask(struct inode
*inode
, u32 mask
)
120 set_mask_bits(&get_fuse_inode(inode
)->inval_mask
, 0, mask
);
124 * Mark the attributes as stale, so that at the next call to
125 * ->getattr() they will be fetched from userspace
127 void fuse_invalidate_attr(struct inode
*inode
)
129 fuse_invalidate_attr_mask(inode
, STATX_BASIC_STATS
);
132 static void fuse_dir_changed(struct inode
*dir
)
134 fuse_invalidate_attr(dir
);
135 inode_maybe_inc_iversion(dir
, false);
139 * Mark the attributes as stale due to an atime change. Avoid the invalidate if
142 void fuse_invalidate_atime(struct inode
*inode
)
144 if (!IS_RDONLY(inode
))
145 fuse_invalidate_attr_mask(inode
, STATX_ATIME
);
149 * Just mark the entry as stale, so that a next attempt to look it up
150 * will result in a new lookup call to userspace
152 * This is called when a dentry is about to become negative and the
153 * timeout is unknown (unlink, rmdir, rename and in some cases
156 void fuse_invalidate_entry_cache(struct dentry
*entry
)
158 fuse_dentry_settime(entry
, 0);
162 * Same as fuse_invalidate_entry_cache(), but also try to remove the
163 * dentry from the hash
165 static void fuse_invalidate_entry(struct dentry
*entry
)
168 fuse_invalidate_entry_cache(entry
);
171 static void fuse_lookup_init(struct fuse_conn
*fc
, struct fuse_args
*args
,
172 u64 nodeid
, const struct qstr
*name
,
173 struct fuse_entry_out
*outarg
)
175 memset(outarg
, 0, sizeof(struct fuse_entry_out
));
176 args
->opcode
= FUSE_LOOKUP
;
177 args
->nodeid
= nodeid
;
178 args
->in_numargs
= 1;
179 args
->in_args
[0].size
= name
->len
+ 1;
180 args
->in_args
[0].value
= name
->name
;
181 args
->out_numargs
= 1;
182 args
->out_args
[0].size
= sizeof(struct fuse_entry_out
);
183 args
->out_args
[0].value
= outarg
;
187 * Check whether the dentry is still valid
189 * If the entry validity timeout has expired and the dentry is
190 * positive, try to redo the lookup. If the lookup results in a
191 * different inode, then let the VFS invalidate the dentry and redo
192 * the lookup once more. If the lookup results in the same inode,
193 * then refresh the attributes, timeouts and mark the dentry valid.
195 static int fuse_dentry_revalidate(struct dentry
*entry
, unsigned int flags
)
198 struct dentry
*parent
;
199 struct fuse_conn
*fc
;
200 struct fuse_inode
*fi
;
203 inode
= d_inode_rcu(entry
);
204 if (inode
&& is_bad_inode(inode
))
206 else if (time_before64(fuse_dentry_time(entry
), get_jiffies_64()) ||
207 (flags
& LOOKUP_REVAL
)) {
208 struct fuse_entry_out outarg
;
210 struct fuse_forget_link
*forget
;
213 /* For negative dentries, always do a fresh lookup */
218 if (flags
& LOOKUP_RCU
)
221 fc
= get_fuse_conn(inode
);
223 forget
= fuse_alloc_forget();
228 attr_version
= fuse_get_attr_version(fc
);
230 parent
= dget_parent(entry
);
231 fuse_lookup_init(fc
, &args
, get_node_id(d_inode(parent
)),
232 &entry
->d_name
, &outarg
);
233 ret
= fuse_simple_request(fc
, &args
);
235 /* Zero nodeid is same as -ENOENT */
236 if (!ret
&& !outarg
.nodeid
)
239 fi
= get_fuse_inode(inode
);
240 if (outarg
.nodeid
!= get_node_id(inode
)) {
241 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
244 spin_lock(&fi
->lock
);
246 spin_unlock(&fi
->lock
);
251 if (ret
|| fuse_invalid_attr(&outarg
.attr
) ||
252 (outarg
.attr
.mode
^ inode
->i_mode
) & S_IFMT
)
255 forget_all_cached_acls(inode
);
256 fuse_change_attributes(inode
, &outarg
.attr
,
257 entry_attr_timeout(&outarg
),
259 fuse_change_entry_timeout(entry
, &outarg
);
261 fi
= get_fuse_inode(inode
);
262 if (flags
& LOOKUP_RCU
) {
263 if (test_bit(FUSE_I_INIT_RDPLUS
, &fi
->state
))
265 } else if (test_and_clear_bit(FUSE_I_INIT_RDPLUS
, &fi
->state
)) {
266 parent
= dget_parent(entry
);
267 fuse_advise_use_readdirplus(d_inode(parent
));
280 #if BITS_PER_LONG < 64
281 static int fuse_dentry_init(struct dentry
*dentry
)
283 dentry
->d_fsdata
= kzalloc(sizeof(union fuse_dentry
),
284 GFP_KERNEL_ACCOUNT
| __GFP_RECLAIMABLE
);
286 return dentry
->d_fsdata
? 0 : -ENOMEM
;
288 static void fuse_dentry_release(struct dentry
*dentry
)
290 union fuse_dentry
*fd
= dentry
->d_fsdata
;
296 static int fuse_dentry_delete(const struct dentry
*dentry
)
298 return time_before64(fuse_dentry_time(dentry
), get_jiffies_64());
301 const struct dentry_operations fuse_dentry_operations
= {
302 .d_revalidate
= fuse_dentry_revalidate
,
303 .d_delete
= fuse_dentry_delete
,
304 #if BITS_PER_LONG < 64
305 .d_init
= fuse_dentry_init
,
306 .d_release
= fuse_dentry_release
,
310 const struct dentry_operations fuse_root_dentry_operations
= {
311 #if BITS_PER_LONG < 64
312 .d_init
= fuse_dentry_init
,
313 .d_release
= fuse_dentry_release
,
317 int fuse_valid_type(int m
)
319 return S_ISREG(m
) || S_ISDIR(m
) || S_ISLNK(m
) || S_ISCHR(m
) ||
320 S_ISBLK(m
) || S_ISFIFO(m
) || S_ISSOCK(m
);
323 bool fuse_invalid_attr(struct fuse_attr
*attr
)
325 return !fuse_valid_type(attr
->mode
) ||
326 attr
->size
> LLONG_MAX
;
329 int fuse_lookup_name(struct super_block
*sb
, u64 nodeid
, const struct qstr
*name
,
330 struct fuse_entry_out
*outarg
, struct inode
**inode
)
332 struct fuse_conn
*fc
= get_fuse_conn_super(sb
);
334 struct fuse_forget_link
*forget
;
340 if (name
->len
> FUSE_NAME_MAX
)
344 forget
= fuse_alloc_forget();
349 attr_version
= fuse_get_attr_version(fc
);
351 fuse_lookup_init(fc
, &args
, nodeid
, name
, outarg
);
352 err
= fuse_simple_request(fc
, &args
);
353 /* Zero nodeid is same as -ENOENT, but with valid timeout */
354 if (err
|| !outarg
->nodeid
)
360 if (fuse_invalid_attr(&outarg
->attr
))
363 *inode
= fuse_iget(sb
, outarg
->nodeid
, outarg
->generation
,
364 &outarg
->attr
, entry_attr_timeout(outarg
),
368 fuse_queue_forget(fc
, forget
, outarg
->nodeid
, 1);
379 static struct dentry
*fuse_lookup(struct inode
*dir
, struct dentry
*entry
,
383 struct fuse_entry_out outarg
;
385 struct dentry
*newent
;
386 bool outarg_valid
= true;
389 locked
= fuse_lock_inode(dir
);
390 err
= fuse_lookup_name(dir
->i_sb
, get_node_id(dir
), &entry
->d_name
,
392 fuse_unlock_inode(dir
, locked
);
393 if (err
== -ENOENT
) {
394 outarg_valid
= false;
401 if (inode
&& get_node_id(inode
) == FUSE_ROOT_ID
)
404 newent
= d_splice_alias(inode
, entry
);
405 err
= PTR_ERR(newent
);
409 entry
= newent
? newent
: entry
;
411 fuse_change_entry_timeout(entry
, &outarg
);
413 fuse_invalidate_entry_cache(entry
);
416 fuse_advise_use_readdirplus(dir
);
426 * Atomic create+open operation
428 * If the filesystem doesn't support this, then fall back to separate
429 * 'mknod' + 'open' requests.
431 static int fuse_create_open(struct inode
*dir
, struct dentry
*entry
,
432 struct file
*file
, unsigned flags
,
437 struct fuse_conn
*fc
= get_fuse_conn(dir
);
439 struct fuse_forget_link
*forget
;
440 struct fuse_create_in inarg
;
441 struct fuse_open_out outopen
;
442 struct fuse_entry_out outentry
;
443 struct fuse_inode
*fi
;
444 struct fuse_file
*ff
;
446 /* Userspace expects S_IFREG in create mode */
447 BUG_ON((mode
& S_IFMT
) != S_IFREG
);
449 forget
= fuse_alloc_forget();
455 ff
= fuse_file_alloc(fc
);
457 goto out_put_forget_req
;
460 mode
&= ~current_umask();
463 memset(&inarg
, 0, sizeof(inarg
));
464 memset(&outentry
, 0, sizeof(outentry
));
467 inarg
.umask
= current_umask();
468 args
.opcode
= FUSE_CREATE
;
469 args
.nodeid
= get_node_id(dir
);
471 args
.in_args
[0].size
= sizeof(inarg
);
472 args
.in_args
[0].value
= &inarg
;
473 args
.in_args
[1].size
= entry
->d_name
.len
+ 1;
474 args
.in_args
[1].value
= entry
->d_name
.name
;
475 args
.out_numargs
= 2;
476 args
.out_args
[0].size
= sizeof(outentry
);
477 args
.out_args
[0].value
= &outentry
;
478 args
.out_args
[1].size
= sizeof(outopen
);
479 args
.out_args
[1].value
= &outopen
;
480 err
= fuse_simple_request(fc
, &args
);
485 if (!S_ISREG(outentry
.attr
.mode
) || invalid_nodeid(outentry
.nodeid
) ||
486 fuse_invalid_attr(&outentry
.attr
))
490 ff
->nodeid
= outentry
.nodeid
;
491 ff
->open_flags
= outopen
.open_flags
;
492 inode
= fuse_iget(dir
->i_sb
, outentry
.nodeid
, outentry
.generation
,
493 &outentry
.attr
, entry_attr_timeout(&outentry
), 0);
495 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
496 fuse_sync_release(NULL
, ff
, flags
);
497 fuse_queue_forget(fc
, forget
, outentry
.nodeid
, 1);
502 d_instantiate(entry
, inode
);
503 fuse_change_entry_timeout(entry
, &outentry
);
504 fuse_dir_changed(dir
);
505 err
= finish_open(file
, entry
, generic_file_open
);
507 fi
= get_fuse_inode(inode
);
508 fuse_sync_release(fi
, ff
, flags
);
510 file
->private_data
= ff
;
511 fuse_finish_open(inode
, file
);
523 static int fuse_mknod(struct inode
*, struct dentry
*, umode_t
, dev_t
);
524 static int fuse_atomic_open(struct inode
*dir
, struct dentry
*entry
,
525 struct file
*file
, unsigned flags
,
529 struct fuse_conn
*fc
= get_fuse_conn(dir
);
530 struct dentry
*res
= NULL
;
532 if (d_in_lookup(entry
)) {
533 res
= fuse_lookup(dir
, entry
, 0);
541 if (!(flags
& O_CREAT
) || d_really_is_positive(entry
))
545 file
->f_mode
|= FMODE_CREATED
;
550 err
= fuse_create_open(dir
, entry
, file
, flags
, mode
);
551 if (err
== -ENOSYS
) {
560 err
= fuse_mknod(dir
, entry
, mode
, 0);
564 return finish_no_open(file
, res
);
568 * Code shared between mknod, mkdir, symlink and link
570 static int create_new_entry(struct fuse_conn
*fc
, struct fuse_args
*args
,
571 struct inode
*dir
, struct dentry
*entry
,
574 struct fuse_entry_out outarg
;
578 struct fuse_forget_link
*forget
;
580 forget
= fuse_alloc_forget();
584 memset(&outarg
, 0, sizeof(outarg
));
585 args
->nodeid
= get_node_id(dir
);
586 args
->out_numargs
= 1;
587 args
->out_args
[0].size
= sizeof(outarg
);
588 args
->out_args
[0].value
= &outarg
;
589 err
= fuse_simple_request(fc
, args
);
591 goto out_put_forget_req
;
594 if (invalid_nodeid(outarg
.nodeid
) || fuse_invalid_attr(&outarg
.attr
))
595 goto out_put_forget_req
;
597 if ((outarg
.attr
.mode
^ mode
) & S_IFMT
)
598 goto out_put_forget_req
;
600 inode
= fuse_iget(dir
->i_sb
, outarg
.nodeid
, outarg
.generation
,
601 &outarg
.attr
, entry_attr_timeout(&outarg
), 0);
603 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
609 d
= d_splice_alias(inode
, entry
);
614 fuse_change_entry_timeout(d
, &outarg
);
617 fuse_change_entry_timeout(entry
, &outarg
);
619 fuse_dir_changed(dir
);
627 static int fuse_mknod(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
630 struct fuse_mknod_in inarg
;
631 struct fuse_conn
*fc
= get_fuse_conn(dir
);
635 mode
&= ~current_umask();
637 memset(&inarg
, 0, sizeof(inarg
));
639 inarg
.rdev
= new_encode_dev(rdev
);
640 inarg
.umask
= current_umask();
641 args
.opcode
= FUSE_MKNOD
;
643 args
.in_args
[0].size
= sizeof(inarg
);
644 args
.in_args
[0].value
= &inarg
;
645 args
.in_args
[1].size
= entry
->d_name
.len
+ 1;
646 args
.in_args
[1].value
= entry
->d_name
.name
;
647 return create_new_entry(fc
, &args
, dir
, entry
, mode
);
650 static int fuse_create(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
653 return fuse_mknod(dir
, entry
, mode
, 0);
656 static int fuse_mkdir(struct inode
*dir
, struct dentry
*entry
, umode_t mode
)
658 struct fuse_mkdir_in inarg
;
659 struct fuse_conn
*fc
= get_fuse_conn(dir
);
663 mode
&= ~current_umask();
665 memset(&inarg
, 0, sizeof(inarg
));
667 inarg
.umask
= current_umask();
668 args
.opcode
= FUSE_MKDIR
;
670 args
.in_args
[0].size
= sizeof(inarg
);
671 args
.in_args
[0].value
= &inarg
;
672 args
.in_args
[1].size
= entry
->d_name
.len
+ 1;
673 args
.in_args
[1].value
= entry
->d_name
.name
;
674 return create_new_entry(fc
, &args
, dir
, entry
, S_IFDIR
);
677 static int fuse_symlink(struct inode
*dir
, struct dentry
*entry
,
680 struct fuse_conn
*fc
= get_fuse_conn(dir
);
681 unsigned len
= strlen(link
) + 1;
684 args
.opcode
= FUSE_SYMLINK
;
686 args
.in_args
[0].size
= entry
->d_name
.len
+ 1;
687 args
.in_args
[0].value
= entry
->d_name
.name
;
688 args
.in_args
[1].size
= len
;
689 args
.in_args
[1].value
= link
;
690 return create_new_entry(fc
, &args
, dir
, entry
, S_IFLNK
);
693 void fuse_update_ctime(struct inode
*inode
)
695 if (!IS_NOCMTIME(inode
)) {
696 inode
->i_ctime
= current_time(inode
);
697 mark_inode_dirty_sync(inode
);
701 static int fuse_unlink(struct inode
*dir
, struct dentry
*entry
)
704 struct fuse_conn
*fc
= get_fuse_conn(dir
);
707 args
.opcode
= FUSE_UNLINK
;
708 args
.nodeid
= get_node_id(dir
);
710 args
.in_args
[0].size
= entry
->d_name
.len
+ 1;
711 args
.in_args
[0].value
= entry
->d_name
.name
;
712 err
= fuse_simple_request(fc
, &args
);
714 struct inode
*inode
= d_inode(entry
);
715 struct fuse_inode
*fi
= get_fuse_inode(inode
);
717 spin_lock(&fi
->lock
);
718 fi
->attr_version
= atomic64_inc_return(&fc
->attr_version
);
720 * If i_nlink == 0 then unlink doesn't make sense, yet this can
721 * happen if userspace filesystem is careless. It would be
722 * difficult to enforce correct nlink usage so just ignore this
725 if (inode
->i_nlink
> 0)
727 spin_unlock(&fi
->lock
);
728 fuse_invalidate_attr(inode
);
729 fuse_dir_changed(dir
);
730 fuse_invalidate_entry_cache(entry
);
731 fuse_update_ctime(inode
);
732 } else if (err
== -EINTR
)
733 fuse_invalidate_entry(entry
);
737 static int fuse_rmdir(struct inode
*dir
, struct dentry
*entry
)
740 struct fuse_conn
*fc
= get_fuse_conn(dir
);
743 args
.opcode
= FUSE_RMDIR
;
744 args
.nodeid
= get_node_id(dir
);
746 args
.in_args
[0].size
= entry
->d_name
.len
+ 1;
747 args
.in_args
[0].value
= entry
->d_name
.name
;
748 err
= fuse_simple_request(fc
, &args
);
750 clear_nlink(d_inode(entry
));
751 fuse_dir_changed(dir
);
752 fuse_invalidate_entry_cache(entry
);
753 } else if (err
== -EINTR
)
754 fuse_invalidate_entry(entry
);
758 static int fuse_rename_common(struct inode
*olddir
, struct dentry
*oldent
,
759 struct inode
*newdir
, struct dentry
*newent
,
760 unsigned int flags
, int opcode
, size_t argsize
)
763 struct fuse_rename2_in inarg
;
764 struct fuse_conn
*fc
= get_fuse_conn(olddir
);
767 memset(&inarg
, 0, argsize
);
768 inarg
.newdir
= get_node_id(newdir
);
770 args
.opcode
= opcode
;
771 args
.nodeid
= get_node_id(olddir
);
773 args
.in_args
[0].size
= argsize
;
774 args
.in_args
[0].value
= &inarg
;
775 args
.in_args
[1].size
= oldent
->d_name
.len
+ 1;
776 args
.in_args
[1].value
= oldent
->d_name
.name
;
777 args
.in_args
[2].size
= newent
->d_name
.len
+ 1;
778 args
.in_args
[2].value
= newent
->d_name
.name
;
779 err
= fuse_simple_request(fc
, &args
);
782 fuse_invalidate_attr(d_inode(oldent
));
783 fuse_update_ctime(d_inode(oldent
));
785 if (flags
& RENAME_EXCHANGE
) {
786 fuse_invalidate_attr(d_inode(newent
));
787 fuse_update_ctime(d_inode(newent
));
790 fuse_dir_changed(olddir
);
791 if (olddir
!= newdir
)
792 fuse_dir_changed(newdir
);
794 /* newent will end up negative */
795 if (!(flags
& RENAME_EXCHANGE
) && d_really_is_positive(newent
)) {
796 fuse_invalidate_attr(d_inode(newent
));
797 fuse_invalidate_entry_cache(newent
);
798 fuse_update_ctime(d_inode(newent
));
800 } else if (err
== -EINTR
) {
801 /* If request was interrupted, DEITY only knows if the
802 rename actually took place. If the invalidation
803 fails (e.g. some process has CWD under the renamed
804 directory), then there can be inconsistency between
805 the dcache and the real filesystem. Tough luck. */
806 fuse_invalidate_entry(oldent
);
807 if (d_really_is_positive(newent
))
808 fuse_invalidate_entry(newent
);
814 static int fuse_rename2(struct inode
*olddir
, struct dentry
*oldent
,
815 struct inode
*newdir
, struct dentry
*newent
,
818 struct fuse_conn
*fc
= get_fuse_conn(olddir
);
821 if (flags
& ~(RENAME_NOREPLACE
| RENAME_EXCHANGE
| RENAME_WHITEOUT
))
825 if (fc
->no_rename2
|| fc
->minor
< 23)
828 err
= fuse_rename_common(olddir
, oldent
, newdir
, newent
, flags
,
830 sizeof(struct fuse_rename2_in
));
831 if (err
== -ENOSYS
) {
836 err
= fuse_rename_common(olddir
, oldent
, newdir
, newent
, 0,
838 sizeof(struct fuse_rename_in
));
844 static int fuse_link(struct dentry
*entry
, struct inode
*newdir
,
845 struct dentry
*newent
)
848 struct fuse_link_in inarg
;
849 struct inode
*inode
= d_inode(entry
);
850 struct fuse_conn
*fc
= get_fuse_conn(inode
);
853 memset(&inarg
, 0, sizeof(inarg
));
854 inarg
.oldnodeid
= get_node_id(inode
);
855 args
.opcode
= FUSE_LINK
;
857 args
.in_args
[0].size
= sizeof(inarg
);
858 args
.in_args
[0].value
= &inarg
;
859 args
.in_args
[1].size
= newent
->d_name
.len
+ 1;
860 args
.in_args
[1].value
= newent
->d_name
.name
;
861 err
= create_new_entry(fc
, &args
, newdir
, newent
, inode
->i_mode
);
862 /* Contrary to "normal" filesystems it can happen that link
863 makes two "logical" inodes point to the same "physical"
864 inode. We invalidate the attributes of the old one, so it
865 will reflect changes in the backing inode (link count,
869 struct fuse_inode
*fi
= get_fuse_inode(inode
);
871 spin_lock(&fi
->lock
);
872 fi
->attr_version
= atomic64_inc_return(&fc
->attr_version
);
873 if (likely(inode
->i_nlink
< UINT_MAX
))
875 spin_unlock(&fi
->lock
);
876 fuse_invalidate_attr(inode
);
877 fuse_update_ctime(inode
);
878 } else if (err
== -EINTR
) {
879 fuse_invalidate_attr(inode
);
884 static void fuse_fillattr(struct inode
*inode
, struct fuse_attr
*attr
,
887 unsigned int blkbits
;
888 struct fuse_conn
*fc
= get_fuse_conn(inode
);
890 /* see the comment in fuse_change_attributes() */
891 if (fc
->writeback_cache
&& S_ISREG(inode
->i_mode
)) {
892 attr
->size
= i_size_read(inode
);
893 attr
->mtime
= inode
->i_mtime
.tv_sec
;
894 attr
->mtimensec
= inode
->i_mtime
.tv_nsec
;
895 attr
->ctime
= inode
->i_ctime
.tv_sec
;
896 attr
->ctimensec
= inode
->i_ctime
.tv_nsec
;
899 stat
->dev
= inode
->i_sb
->s_dev
;
900 stat
->ino
= attr
->ino
;
901 stat
->mode
= (inode
->i_mode
& S_IFMT
) | (attr
->mode
& 07777);
902 stat
->nlink
= attr
->nlink
;
903 stat
->uid
= make_kuid(fc
->user_ns
, attr
->uid
);
904 stat
->gid
= make_kgid(fc
->user_ns
, attr
->gid
);
905 stat
->rdev
= inode
->i_rdev
;
906 stat
->atime
.tv_sec
= attr
->atime
;
907 stat
->atime
.tv_nsec
= attr
->atimensec
;
908 stat
->mtime
.tv_sec
= attr
->mtime
;
909 stat
->mtime
.tv_nsec
= attr
->mtimensec
;
910 stat
->ctime
.tv_sec
= attr
->ctime
;
911 stat
->ctime
.tv_nsec
= attr
->ctimensec
;
912 stat
->size
= attr
->size
;
913 stat
->blocks
= attr
->blocks
;
915 if (attr
->blksize
!= 0)
916 blkbits
= ilog2(attr
->blksize
);
918 blkbits
= inode
->i_sb
->s_blocksize_bits
;
920 stat
->blksize
= 1 << blkbits
;
923 static int fuse_do_getattr(struct inode
*inode
, struct kstat
*stat
,
927 struct fuse_getattr_in inarg
;
928 struct fuse_attr_out outarg
;
929 struct fuse_conn
*fc
= get_fuse_conn(inode
);
933 attr_version
= fuse_get_attr_version(fc
);
935 memset(&inarg
, 0, sizeof(inarg
));
936 memset(&outarg
, 0, sizeof(outarg
));
937 /* Directories have separate file-handle space */
938 if (file
&& S_ISREG(inode
->i_mode
)) {
939 struct fuse_file
*ff
= file
->private_data
;
941 inarg
.getattr_flags
|= FUSE_GETATTR_FH
;
944 args
.opcode
= FUSE_GETATTR
;
945 args
.nodeid
= get_node_id(inode
);
947 args
.in_args
[0].size
= sizeof(inarg
);
948 args
.in_args
[0].value
= &inarg
;
949 args
.out_numargs
= 1;
950 args
.out_args
[0].size
= sizeof(outarg
);
951 args
.out_args
[0].value
= &outarg
;
952 err
= fuse_simple_request(fc
, &args
);
954 if (fuse_invalid_attr(&outarg
.attr
) ||
955 (inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
956 make_bad_inode(inode
);
959 fuse_change_attributes(inode
, &outarg
.attr
,
960 attr_timeout(&outarg
),
963 fuse_fillattr(inode
, &outarg
.attr
, stat
);
969 static int fuse_update_get_attr(struct inode
*inode
, struct file
*file
,
970 struct kstat
*stat
, u32 request_mask
,
973 struct fuse_inode
*fi
= get_fuse_inode(inode
);
977 if (flags
& AT_STATX_FORCE_SYNC
)
979 else if (flags
& AT_STATX_DONT_SYNC
)
981 else if (request_mask
& READ_ONCE(fi
->inval_mask
))
984 sync
= time_before64(fi
->i_time
, get_jiffies_64());
987 forget_all_cached_acls(inode
);
988 err
= fuse_do_getattr(inode
, stat
, file
);
990 generic_fillattr(inode
, stat
);
991 stat
->mode
= fi
->orig_i_mode
;
992 stat
->ino
= fi
->orig_ino
;
998 int fuse_update_attributes(struct inode
*inode
, struct file
*file
)
1000 /* Do *not* need to get atime for internal purposes */
1001 return fuse_update_get_attr(inode
, file
, NULL
,
1002 STATX_BASIC_STATS
& ~STATX_ATIME
, 0);
1005 int fuse_reverse_inval_entry(struct super_block
*sb
, u64 parent_nodeid
,
1006 u64 child_nodeid
, struct qstr
*name
)
1009 struct inode
*parent
;
1011 struct dentry
*entry
;
1013 parent
= ilookup5(sb
, parent_nodeid
, fuse_inode_eq
, &parent_nodeid
);
1018 if (!S_ISDIR(parent
->i_mode
))
1022 dir
= d_find_alias(parent
);
1026 name
->hash
= full_name_hash(dir
, name
->name
, name
->len
);
1027 entry
= d_lookup(dir
, name
);
1032 fuse_dir_changed(parent
);
1033 fuse_invalidate_entry(entry
);
1035 if (child_nodeid
!= 0 && d_really_is_positive(entry
)) {
1036 inode_lock(d_inode(entry
));
1037 if (get_node_id(d_inode(entry
)) != child_nodeid
) {
1041 if (d_mountpoint(entry
)) {
1045 if (d_is_dir(entry
)) {
1046 shrink_dcache_parent(entry
);
1047 if (!simple_empty(entry
)) {
1051 d_inode(entry
)->i_flags
|= S_DEAD
;
1054 clear_nlink(d_inode(entry
));
1057 inode_unlock(d_inode(entry
));
1066 inode_unlock(parent
);
1072 * Calling into a user-controlled filesystem gives the filesystem
1073 * daemon ptrace-like capabilities over the current process. This
1074 * means, that the filesystem daemon is able to record the exact
1075 * filesystem operations performed, and can also control the behavior
1076 * of the requester process in otherwise impossible ways. For example
1077 * it can delay the operation for arbitrary length of time allowing
1078 * DoS against the requester.
1080 * For this reason only those processes can call into the filesystem,
1081 * for which the owner of the mount has ptrace privilege. This
1082 * excludes processes started by other users, suid or sgid processes.
1084 int fuse_allow_current_process(struct fuse_conn
*fc
)
1086 const struct cred
*cred
;
1088 if (fc
->allow_other
)
1089 return current_in_userns(fc
->user_ns
);
1091 cred
= current_cred();
1092 if (uid_eq(cred
->euid
, fc
->user_id
) &&
1093 uid_eq(cred
->suid
, fc
->user_id
) &&
1094 uid_eq(cred
->uid
, fc
->user_id
) &&
1095 gid_eq(cred
->egid
, fc
->group_id
) &&
1096 gid_eq(cred
->sgid
, fc
->group_id
) &&
1097 gid_eq(cred
->gid
, fc
->group_id
))
1103 static int fuse_access(struct inode
*inode
, int mask
)
1105 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1107 struct fuse_access_in inarg
;
1110 BUG_ON(mask
& MAY_NOT_BLOCK
);
1115 memset(&inarg
, 0, sizeof(inarg
));
1116 inarg
.mask
= mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
);
1117 args
.opcode
= FUSE_ACCESS
;
1118 args
.nodeid
= get_node_id(inode
);
1119 args
.in_numargs
= 1;
1120 args
.in_args
[0].size
= sizeof(inarg
);
1121 args
.in_args
[0].value
= &inarg
;
1122 err
= fuse_simple_request(fc
, &args
);
1123 if (err
== -ENOSYS
) {
1130 static int fuse_perm_getattr(struct inode
*inode
, int mask
)
1132 if (mask
& MAY_NOT_BLOCK
)
1135 forget_all_cached_acls(inode
);
1136 return fuse_do_getattr(inode
, NULL
, NULL
);
1140 * Check permission. The two basic access models of FUSE are:
1142 * 1) Local access checking ('default_permissions' mount option) based
1143 * on file mode. This is the plain old disk filesystem permission
1146 * 2) "Remote" access checking, where server is responsible for
1147 * checking permission in each inode operation. An exception to this
1148 * is if ->permission() was invoked from sys_access() in which case an
1149 * access request is sent. Execute permission is still checked
1150 * locally based on file mode.
1152 static int fuse_permission(struct inode
*inode
, int mask
)
1154 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1155 bool refreshed
= false;
1158 if (!fuse_allow_current_process(fc
))
1162 * If attributes are needed, refresh them before proceeding
1164 if (fc
->default_permissions
||
1165 ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
))) {
1166 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1167 u32 perm_mask
= STATX_MODE
| STATX_UID
| STATX_GID
;
1169 if (perm_mask
& READ_ONCE(fi
->inval_mask
) ||
1170 time_before64(fi
->i_time
, get_jiffies_64())) {
1173 err
= fuse_perm_getattr(inode
, mask
);
1179 if (fc
->default_permissions
) {
1180 err
= generic_permission(inode
, mask
);
1182 /* If permission is denied, try to refresh file
1183 attributes. This is also needed, because the root
1184 node will at first have no permissions */
1185 if (err
== -EACCES
&& !refreshed
) {
1186 err
= fuse_perm_getattr(inode
, mask
);
1188 err
= generic_permission(inode
, mask
);
1191 /* Note: the opposite of the above test does not
1192 exist. So if permissions are revoked this won't be
1193 noticed immediately, only after the attribute
1194 timeout has expired */
1195 } else if (mask
& (MAY_ACCESS
| MAY_CHDIR
)) {
1196 err
= fuse_access(inode
, mask
);
1197 } else if ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
)) {
1198 if (!(inode
->i_mode
& S_IXUGO
)) {
1202 err
= fuse_perm_getattr(inode
, mask
);
1203 if (!err
&& !(inode
->i_mode
& S_IXUGO
))
1210 static int fuse_readlink_page(struct inode
*inode
, struct page
*page
)
1212 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1213 struct fuse_page_desc desc
= { .length
= PAGE_SIZE
- 1 };
1214 struct fuse_args_pages ap
= {
1222 ap
.args
.opcode
= FUSE_READLINK
;
1223 ap
.args
.nodeid
= get_node_id(inode
);
1224 ap
.args
.out_pages
= true;
1225 ap
.args
.out_argvar
= true;
1226 ap
.args
.page_zeroing
= true;
1227 ap
.args
.out_numargs
= 1;
1228 ap
.args
.out_args
[0].size
= desc
.length
;
1229 res
= fuse_simple_request(fc
, &ap
.args
);
1231 fuse_invalidate_atime(inode
);
1236 if (WARN_ON(res
>= PAGE_SIZE
))
1239 link
= page_address(page
);
1245 static const char *fuse_get_link(struct dentry
*dentry
, struct inode
*inode
,
1246 struct delayed_call
*callback
)
1248 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1253 if (is_bad_inode(inode
))
1256 if (fc
->cache_symlinks
)
1257 return page_get_link(dentry
, inode
, callback
);
1263 page
= alloc_page(GFP_KERNEL
);
1268 err
= fuse_readlink_page(inode
, page
);
1274 set_delayed_call(callback
, page_put_link
, page
);
1276 return page_address(page
);
1279 return ERR_PTR(err
);
1282 static int fuse_dir_open(struct inode
*inode
, struct file
*file
)
1284 return fuse_open_common(inode
, file
, true);
1287 static int fuse_dir_release(struct inode
*inode
, struct file
*file
)
1289 fuse_release_common(file
, true);
1294 static int fuse_dir_fsync(struct file
*file
, loff_t start
, loff_t end
,
1297 struct inode
*inode
= file
->f_mapping
->host
;
1298 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1301 if (is_bad_inode(inode
))
1304 if (fc
->no_fsyncdir
)
1308 err
= fuse_fsync_common(file
, start
, end
, datasync
, FUSE_FSYNCDIR
);
1309 if (err
== -ENOSYS
) {
1310 fc
->no_fsyncdir
= 1;
1313 inode_unlock(inode
);
1318 static long fuse_dir_ioctl(struct file
*file
, unsigned int cmd
,
1321 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1323 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1327 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_DIR
);
1330 static long fuse_dir_compat_ioctl(struct file
*file
, unsigned int cmd
,
1333 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1338 return fuse_ioctl_common(file
, cmd
, arg
,
1339 FUSE_IOCTL_COMPAT
| FUSE_IOCTL_DIR
);
1342 static bool update_mtime(unsigned ivalid
, bool trust_local_mtime
)
1344 /* Always update if mtime is explicitly set */
1345 if (ivalid
& ATTR_MTIME_SET
)
1348 /* Or if kernel i_mtime is the official one */
1349 if (trust_local_mtime
)
1352 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1353 if ((ivalid
& ATTR_SIZE
) && (ivalid
& (ATTR_OPEN
| ATTR_FILE
)))
1356 /* In all other cases update */
1360 static void iattr_to_fattr(struct fuse_conn
*fc
, struct iattr
*iattr
,
1361 struct fuse_setattr_in
*arg
, bool trust_local_cmtime
)
1363 unsigned ivalid
= iattr
->ia_valid
;
1365 if (ivalid
& ATTR_MODE
)
1366 arg
->valid
|= FATTR_MODE
, arg
->mode
= iattr
->ia_mode
;
1367 if (ivalid
& ATTR_UID
)
1368 arg
->valid
|= FATTR_UID
, arg
->uid
= from_kuid(fc
->user_ns
, iattr
->ia_uid
);
1369 if (ivalid
& ATTR_GID
)
1370 arg
->valid
|= FATTR_GID
, arg
->gid
= from_kgid(fc
->user_ns
, iattr
->ia_gid
);
1371 if (ivalid
& ATTR_SIZE
)
1372 arg
->valid
|= FATTR_SIZE
, arg
->size
= iattr
->ia_size
;
1373 if (ivalid
& ATTR_ATIME
) {
1374 arg
->valid
|= FATTR_ATIME
;
1375 arg
->atime
= iattr
->ia_atime
.tv_sec
;
1376 arg
->atimensec
= iattr
->ia_atime
.tv_nsec
;
1377 if (!(ivalid
& ATTR_ATIME_SET
))
1378 arg
->valid
|= FATTR_ATIME_NOW
;
1380 if ((ivalid
& ATTR_MTIME
) && update_mtime(ivalid
, trust_local_cmtime
)) {
1381 arg
->valid
|= FATTR_MTIME
;
1382 arg
->mtime
= iattr
->ia_mtime
.tv_sec
;
1383 arg
->mtimensec
= iattr
->ia_mtime
.tv_nsec
;
1384 if (!(ivalid
& ATTR_MTIME_SET
) && !trust_local_cmtime
)
1385 arg
->valid
|= FATTR_MTIME_NOW
;
1387 if ((ivalid
& ATTR_CTIME
) && trust_local_cmtime
) {
1388 arg
->valid
|= FATTR_CTIME
;
1389 arg
->ctime
= iattr
->ia_ctime
.tv_sec
;
1390 arg
->ctimensec
= iattr
->ia_ctime
.tv_nsec
;
1395 * Prevent concurrent writepages on inode
1397 * This is done by adding a negative bias to the inode write counter
1398 * and waiting for all pending writes to finish.
1400 void fuse_set_nowrite(struct inode
*inode
)
1402 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1404 BUG_ON(!inode_is_locked(inode
));
1406 spin_lock(&fi
->lock
);
1407 BUG_ON(fi
->writectr
< 0);
1408 fi
->writectr
+= FUSE_NOWRITE
;
1409 spin_unlock(&fi
->lock
);
1410 wait_event(fi
->page_waitq
, fi
->writectr
== FUSE_NOWRITE
);
1414 * Allow writepages on inode
1416 * Remove the bias from the writecounter and send any queued
1419 static void __fuse_release_nowrite(struct inode
*inode
)
1421 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1423 BUG_ON(fi
->writectr
!= FUSE_NOWRITE
);
1425 fuse_flush_writepages(inode
);
1428 void fuse_release_nowrite(struct inode
*inode
)
1430 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1432 spin_lock(&fi
->lock
);
1433 __fuse_release_nowrite(inode
);
1434 spin_unlock(&fi
->lock
);
1437 static void fuse_setattr_fill(struct fuse_conn
*fc
, struct fuse_args
*args
,
1438 struct inode
*inode
,
1439 struct fuse_setattr_in
*inarg_p
,
1440 struct fuse_attr_out
*outarg_p
)
1442 args
->opcode
= FUSE_SETATTR
;
1443 args
->nodeid
= get_node_id(inode
);
1444 args
->in_numargs
= 1;
1445 args
->in_args
[0].size
= sizeof(*inarg_p
);
1446 args
->in_args
[0].value
= inarg_p
;
1447 args
->out_numargs
= 1;
1448 args
->out_args
[0].size
= sizeof(*outarg_p
);
1449 args
->out_args
[0].value
= outarg_p
;
1453 * Flush inode->i_mtime to the server
1455 int fuse_flush_times(struct inode
*inode
, struct fuse_file
*ff
)
1457 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1459 struct fuse_setattr_in inarg
;
1460 struct fuse_attr_out outarg
;
1462 memset(&inarg
, 0, sizeof(inarg
));
1463 memset(&outarg
, 0, sizeof(outarg
));
1465 inarg
.valid
= FATTR_MTIME
;
1466 inarg
.mtime
= inode
->i_mtime
.tv_sec
;
1467 inarg
.mtimensec
= inode
->i_mtime
.tv_nsec
;
1468 if (fc
->minor
>= 23) {
1469 inarg
.valid
|= FATTR_CTIME
;
1470 inarg
.ctime
= inode
->i_ctime
.tv_sec
;
1471 inarg
.ctimensec
= inode
->i_ctime
.tv_nsec
;
1474 inarg
.valid
|= FATTR_FH
;
1477 fuse_setattr_fill(fc
, &args
, inode
, &inarg
, &outarg
);
1479 return fuse_simple_request(fc
, &args
);
1483 * Set attributes, and at the same time refresh them.
1485 * Truncation is slightly complicated, because the 'truncate' request
1486 * may fail, in which case we don't want to touch the mapping.
1487 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1488 * and the actual truncation by hand.
1490 int fuse_do_setattr(struct dentry
*dentry
, struct iattr
*attr
,
1493 struct inode
*inode
= d_inode(dentry
);
1494 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1495 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1497 struct fuse_setattr_in inarg
;
1498 struct fuse_attr_out outarg
;
1499 bool is_truncate
= false;
1500 bool is_wb
= fc
->writeback_cache
;
1503 bool trust_local_cmtime
= is_wb
&& S_ISREG(inode
->i_mode
);
1505 if (!fc
->default_permissions
)
1506 attr
->ia_valid
|= ATTR_FORCE
;
1508 err
= setattr_prepare(dentry
, attr
);
1512 if (attr
->ia_valid
& ATTR_OPEN
) {
1513 /* This is coming from open(..., ... | O_TRUNC); */
1514 WARN_ON(!(attr
->ia_valid
& ATTR_SIZE
));
1515 WARN_ON(attr
->ia_size
!= 0);
1516 if (fc
->atomic_o_trunc
) {
1518 * No need to send request to userspace, since actual
1519 * truncation has already been done by OPEN. But still
1520 * need to truncate page cache.
1522 i_size_write(inode
, 0);
1523 truncate_pagecache(inode
, 0);
1529 if (attr
->ia_valid
& ATTR_SIZE
) {
1530 if (WARN_ON(!S_ISREG(inode
->i_mode
)))
1535 /* Flush dirty data/metadata before non-truncate SETATTR */
1536 if (is_wb
&& S_ISREG(inode
->i_mode
) &&
1538 (ATTR_MODE
| ATTR_UID
| ATTR_GID
| ATTR_MTIME_SET
|
1540 err
= write_inode_now(inode
, true);
1544 fuse_set_nowrite(inode
);
1545 fuse_release_nowrite(inode
);
1549 fuse_set_nowrite(inode
);
1550 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1551 if (trust_local_cmtime
&& attr
->ia_size
!= inode
->i_size
)
1552 attr
->ia_valid
|= ATTR_MTIME
| ATTR_CTIME
;
1555 memset(&inarg
, 0, sizeof(inarg
));
1556 memset(&outarg
, 0, sizeof(outarg
));
1557 iattr_to_fattr(fc
, attr
, &inarg
, trust_local_cmtime
);
1559 struct fuse_file
*ff
= file
->private_data
;
1560 inarg
.valid
|= FATTR_FH
;
1563 if (attr
->ia_valid
& ATTR_SIZE
) {
1564 /* For mandatory locking in truncate */
1565 inarg
.valid
|= FATTR_LOCKOWNER
;
1566 inarg
.lock_owner
= fuse_lock_owner_id(fc
, current
->files
);
1568 fuse_setattr_fill(fc
, &args
, inode
, &inarg
, &outarg
);
1569 err
= fuse_simple_request(fc
, &args
);
1572 fuse_invalidate_attr(inode
);
1576 if (fuse_invalid_attr(&outarg
.attr
) ||
1577 (inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
1578 make_bad_inode(inode
);
1583 spin_lock(&fi
->lock
);
1584 /* the kernel maintains i_mtime locally */
1585 if (trust_local_cmtime
) {
1586 if (attr
->ia_valid
& ATTR_MTIME
)
1587 inode
->i_mtime
= attr
->ia_mtime
;
1588 if (attr
->ia_valid
& ATTR_CTIME
)
1589 inode
->i_ctime
= attr
->ia_ctime
;
1590 /* FIXME: clear I_DIRTY_SYNC? */
1593 fuse_change_attributes_common(inode
, &outarg
.attr
,
1594 attr_timeout(&outarg
));
1595 oldsize
= inode
->i_size
;
1596 /* see the comment in fuse_change_attributes() */
1597 if (!is_wb
|| is_truncate
|| !S_ISREG(inode
->i_mode
))
1598 i_size_write(inode
, outarg
.attr
.size
);
1601 /* NOTE: this may release/reacquire fi->lock */
1602 __fuse_release_nowrite(inode
);
1604 spin_unlock(&fi
->lock
);
1607 * Only call invalidate_inode_pages2() after removing
1608 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1610 if ((is_truncate
|| !is_wb
) &&
1611 S_ISREG(inode
->i_mode
) && oldsize
!= outarg
.attr
.size
) {
1612 truncate_pagecache(inode
, outarg
.attr
.size
);
1613 invalidate_inode_pages2(inode
->i_mapping
);
1616 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1621 fuse_release_nowrite(inode
);
1623 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1627 static int fuse_setattr(struct dentry
*entry
, struct iattr
*attr
)
1629 struct inode
*inode
= d_inode(entry
);
1630 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1631 struct file
*file
= (attr
->ia_valid
& ATTR_FILE
) ? attr
->ia_file
: NULL
;
1634 if (!fuse_allow_current_process(get_fuse_conn(inode
)))
1637 if (attr
->ia_valid
& (ATTR_KILL_SUID
| ATTR_KILL_SGID
)) {
1638 attr
->ia_valid
&= ~(ATTR_KILL_SUID
| ATTR_KILL_SGID
|
1642 * The only sane way to reliably kill suid/sgid is to do it in
1643 * the userspace filesystem
1645 * This should be done on write(), truncate() and chown().
1647 if (!fc
->handle_killpriv
) {
1649 * ia_mode calculation may have used stale i_mode.
1650 * Refresh and recalculate.
1652 ret
= fuse_do_getattr(inode
, NULL
, file
);
1656 attr
->ia_mode
= inode
->i_mode
;
1657 if (inode
->i_mode
& S_ISUID
) {
1658 attr
->ia_valid
|= ATTR_MODE
;
1659 attr
->ia_mode
&= ~S_ISUID
;
1661 if ((inode
->i_mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
)) {
1662 attr
->ia_valid
|= ATTR_MODE
;
1663 attr
->ia_mode
&= ~S_ISGID
;
1667 if (!attr
->ia_valid
)
1670 ret
= fuse_do_setattr(entry
, attr
, file
);
1673 * If filesystem supports acls it may have updated acl xattrs in
1674 * the filesystem, so forget cached acls for the inode.
1677 forget_all_cached_acls(inode
);
1679 /* Directory mode changed, may need to revalidate access */
1680 if (d_is_dir(entry
) && (attr
->ia_valid
& ATTR_MODE
))
1681 fuse_invalidate_entry_cache(entry
);
1686 static int fuse_getattr(const struct path
*path
, struct kstat
*stat
,
1687 u32 request_mask
, unsigned int flags
)
1689 struct inode
*inode
= d_inode(path
->dentry
);
1690 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1692 if (!fuse_allow_current_process(fc
))
1695 return fuse_update_get_attr(inode
, NULL
, stat
, request_mask
, flags
);
1698 static const struct inode_operations fuse_dir_inode_operations
= {
1699 .lookup
= fuse_lookup
,
1700 .mkdir
= fuse_mkdir
,
1701 .symlink
= fuse_symlink
,
1702 .unlink
= fuse_unlink
,
1703 .rmdir
= fuse_rmdir
,
1704 .rename
= fuse_rename2
,
1706 .setattr
= fuse_setattr
,
1707 .create
= fuse_create
,
1708 .atomic_open
= fuse_atomic_open
,
1709 .mknod
= fuse_mknod
,
1710 .permission
= fuse_permission
,
1711 .getattr
= fuse_getattr
,
1712 .listxattr
= fuse_listxattr
,
1713 .get_acl
= fuse_get_acl
,
1714 .set_acl
= fuse_set_acl
,
1717 static const struct file_operations fuse_dir_operations
= {
1718 .llseek
= generic_file_llseek
,
1719 .read
= generic_read_dir
,
1720 .iterate_shared
= fuse_readdir
,
1721 .open
= fuse_dir_open
,
1722 .release
= fuse_dir_release
,
1723 .fsync
= fuse_dir_fsync
,
1724 .unlocked_ioctl
= fuse_dir_ioctl
,
1725 .compat_ioctl
= fuse_dir_compat_ioctl
,
1728 static const struct inode_operations fuse_common_inode_operations
= {
1729 .setattr
= fuse_setattr
,
1730 .permission
= fuse_permission
,
1731 .getattr
= fuse_getattr
,
1732 .listxattr
= fuse_listxattr
,
1733 .get_acl
= fuse_get_acl
,
1734 .set_acl
= fuse_set_acl
,
1737 static const struct inode_operations fuse_symlink_inode_operations
= {
1738 .setattr
= fuse_setattr
,
1739 .get_link
= fuse_get_link
,
1740 .getattr
= fuse_getattr
,
1741 .listxattr
= fuse_listxattr
,
1744 void fuse_init_common(struct inode
*inode
)
1746 inode
->i_op
= &fuse_common_inode_operations
;
1749 void fuse_init_dir(struct inode
*inode
)
1751 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1753 inode
->i_op
= &fuse_dir_inode_operations
;
1754 inode
->i_fop
= &fuse_dir_operations
;
1756 spin_lock_init(&fi
->rdc
.lock
);
1757 fi
->rdc
.cached
= false;
1760 fi
->rdc
.version
= 0;
1763 static int fuse_symlink_readpage(struct file
*null
, struct page
*page
)
1765 int err
= fuse_readlink_page(page
->mapping
->host
, page
);
1768 SetPageUptodate(page
);
1775 static const struct address_space_operations fuse_symlink_aops
= {
1776 .readpage
= fuse_symlink_readpage
,
1779 void fuse_init_symlink(struct inode
*inode
)
1781 inode
->i_op
= &fuse_symlink_inode_operations
;
1782 inode
->i_data
.a_ops
= &fuse_symlink_aops
;
1783 inode_nohighmem(inode
);