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>
17 static bool fuse_use_readdirplus(struct inode
*dir
, struct file
*filp
)
19 struct fuse_conn
*fc
= get_fuse_conn(dir
);
20 struct fuse_inode
*fi
= get_fuse_inode(dir
);
22 if (!fc
->do_readdirplus
)
24 if (!fc
->readdirplus_auto
)
26 if (test_and_clear_bit(FUSE_I_ADVISE_RDPLUS
, &fi
->state
))
33 static void fuse_advise_use_readdirplus(struct inode
*dir
)
35 struct fuse_inode
*fi
= get_fuse_inode(dir
);
37 set_bit(FUSE_I_ADVISE_RDPLUS
, &fi
->state
);
40 #if BITS_PER_LONG >= 64
41 static inline void fuse_dentry_settime(struct dentry
*entry
, u64 time
)
46 static inline u64
fuse_dentry_time(struct dentry
*entry
)
52 * On 32 bit archs store the high 32 bits of time in d_fsdata
54 static void fuse_dentry_settime(struct dentry
*entry
, u64 time
)
57 entry
->d_fsdata
= (void *) (unsigned long) (time
>> 32);
60 static u64
fuse_dentry_time(struct dentry
*entry
)
62 return (u64
) entry
->d_time
+
63 ((u64
) (unsigned long) entry
->d_fsdata
<< 32);
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.
74 * Calculate the time in jiffies until a dentry/attributes are valid
76 static u64
time_to_jiffies(unsigned long sec
, unsigned long nsec
)
79 struct timespec ts
= {sec
, nsec
};
80 return get_jiffies_64() + timespec_to_jiffies(&ts
);
86 * Set dentry and possibly attribute timeouts from the lookup/mk*
89 static void fuse_change_entry_timeout(struct dentry
*entry
,
90 struct fuse_entry_out
*o
)
92 fuse_dentry_settime(entry
,
93 time_to_jiffies(o
->entry_valid
, o
->entry_valid_nsec
));
96 static u64
attr_timeout(struct fuse_attr_out
*o
)
98 return time_to_jiffies(o
->attr_valid
, o
->attr_valid_nsec
);
101 static u64
entry_attr_timeout(struct fuse_entry_out
*o
)
103 return time_to_jiffies(o
->attr_valid
, o
->attr_valid_nsec
);
107 * Mark the attributes as stale, so that at the next call to
108 * ->getattr() they will be fetched from userspace
110 void fuse_invalidate_attr(struct inode
*inode
)
112 get_fuse_inode(inode
)->i_time
= 0;
116 * Just mark the entry as stale, so that a next attempt to look it up
117 * will result in a new lookup call to userspace
119 * This is called when a dentry is about to become negative and the
120 * timeout is unknown (unlink, rmdir, rename and in some cases
123 void fuse_invalidate_entry_cache(struct dentry
*entry
)
125 fuse_dentry_settime(entry
, 0);
129 * Same as fuse_invalidate_entry_cache(), but also try to remove the
130 * dentry from the hash
132 static void fuse_invalidate_entry(struct dentry
*entry
)
135 fuse_invalidate_entry_cache(entry
);
138 static void fuse_lookup_init(struct fuse_conn
*fc
, struct fuse_req
*req
,
139 u64 nodeid
, struct qstr
*name
,
140 struct fuse_entry_out
*outarg
)
142 memset(outarg
, 0, sizeof(struct fuse_entry_out
));
143 req
->in
.h
.opcode
= FUSE_LOOKUP
;
144 req
->in
.h
.nodeid
= nodeid
;
146 req
->in
.args
[0].size
= name
->len
+ 1;
147 req
->in
.args
[0].value
= name
->name
;
148 req
->out
.numargs
= 1;
150 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
152 req
->out
.args
[0].size
= sizeof(struct fuse_entry_out
);
153 req
->out
.args
[0].value
= outarg
;
156 u64
fuse_get_attr_version(struct fuse_conn
*fc
)
161 * The spin lock isn't actually needed on 64bit archs, but we
162 * don't yet care too much about such optimizations.
164 spin_lock(&fc
->lock
);
165 curr_version
= fc
->attr_version
;
166 spin_unlock(&fc
->lock
);
172 * Check whether the dentry is still valid
174 * If the entry validity timeout has expired and the dentry is
175 * positive, try to redo the lookup. If the lookup results in a
176 * different inode, then let the VFS invalidate the dentry and redo
177 * the lookup once more. If the lookup results in the same inode,
178 * then refresh the attributes, timeouts and mark the dentry valid.
180 static int fuse_dentry_revalidate(struct dentry
*entry
, unsigned int flags
)
184 inode
= ACCESS_ONCE(entry
->d_inode
);
185 if (inode
&& is_bad_inode(inode
))
187 else if (fuse_dentry_time(entry
) < get_jiffies_64()) {
189 struct fuse_entry_out outarg
;
190 struct fuse_conn
*fc
;
191 struct fuse_req
*req
;
192 struct fuse_forget_link
*forget
;
193 struct dentry
*parent
;
196 /* For negative dentries, always do a fresh lookup */
200 if (flags
& LOOKUP_RCU
)
203 fc
= get_fuse_conn(inode
);
204 req
= fuse_get_req_nopages(fc
);
208 forget
= fuse_alloc_forget();
210 fuse_put_request(fc
, req
);
214 attr_version
= fuse_get_attr_version(fc
);
216 parent
= dget_parent(entry
);
217 fuse_lookup_init(fc
, req
, get_node_id(parent
->d_inode
),
218 &entry
->d_name
, &outarg
);
219 fuse_request_send(fc
, req
);
221 err
= req
->out
.h
.error
;
222 fuse_put_request(fc
, req
);
223 /* Zero nodeid is same as -ENOENT */
224 if (!err
&& !outarg
.nodeid
)
227 struct fuse_inode
*fi
= get_fuse_inode(inode
);
228 if (outarg
.nodeid
!= get_node_id(inode
)) {
229 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
232 spin_lock(&fc
->lock
);
234 spin_unlock(&fc
->lock
);
237 if (err
|| (outarg
.attr
.mode
^ inode
->i_mode
) & S_IFMT
)
240 fuse_change_attributes(inode
, &outarg
.attr
,
241 entry_attr_timeout(&outarg
),
243 fuse_change_entry_timeout(entry
, &outarg
);
245 fuse_advise_use_readdirplus(inode
);
249 static int invalid_nodeid(u64 nodeid
)
251 return !nodeid
|| nodeid
== FUSE_ROOT_ID
;
254 const struct dentry_operations fuse_dentry_operations
= {
255 .d_revalidate
= fuse_dentry_revalidate
,
258 int fuse_valid_type(int m
)
260 return S_ISREG(m
) || S_ISDIR(m
) || S_ISLNK(m
) || S_ISCHR(m
) ||
261 S_ISBLK(m
) || S_ISFIFO(m
) || S_ISSOCK(m
);
265 * Add a directory inode to a dentry, ensuring that no other dentry
266 * refers to this inode. Called with fc->inst_mutex.
268 static struct dentry
*fuse_d_add_directory(struct dentry
*entry
,
271 struct dentry
*alias
= d_find_alias(inode
);
272 if (alias
&& !(alias
->d_flags
& DCACHE_DISCONNECTED
)) {
273 /* This tries to shrink the subtree below alias */
274 fuse_invalidate_entry(alias
);
276 if (!hlist_empty(&inode
->i_dentry
))
277 return ERR_PTR(-EBUSY
);
281 return d_splice_alias(inode
, entry
);
284 int fuse_lookup_name(struct super_block
*sb
, u64 nodeid
, struct qstr
*name
,
285 struct fuse_entry_out
*outarg
, struct inode
**inode
)
287 struct fuse_conn
*fc
= get_fuse_conn_super(sb
);
288 struct fuse_req
*req
;
289 struct fuse_forget_link
*forget
;
295 if (name
->len
> FUSE_NAME_MAX
)
298 req
= fuse_get_req_nopages(fc
);
303 forget
= fuse_alloc_forget();
306 fuse_put_request(fc
, req
);
310 attr_version
= fuse_get_attr_version(fc
);
312 fuse_lookup_init(fc
, req
, nodeid
, name
, outarg
);
313 fuse_request_send(fc
, req
);
314 err
= req
->out
.h
.error
;
315 fuse_put_request(fc
, req
);
316 /* Zero nodeid is same as -ENOENT, but with valid timeout */
317 if (err
|| !outarg
->nodeid
)
323 if (!fuse_valid_type(outarg
->attr
.mode
))
326 *inode
= fuse_iget(sb
, outarg
->nodeid
, outarg
->generation
,
327 &outarg
->attr
, entry_attr_timeout(outarg
),
331 fuse_queue_forget(fc
, forget
, outarg
->nodeid
, 1);
342 static struct dentry
*fuse_lookup(struct inode
*dir
, struct dentry
*entry
,
346 struct fuse_entry_out outarg
;
348 struct dentry
*newent
;
349 struct fuse_conn
*fc
= get_fuse_conn(dir
);
350 bool outarg_valid
= true;
352 err
= fuse_lookup_name(dir
->i_sb
, get_node_id(dir
), &entry
->d_name
,
354 if (err
== -ENOENT
) {
355 outarg_valid
= false;
362 if (inode
&& get_node_id(inode
) == FUSE_ROOT_ID
)
365 if (inode
&& S_ISDIR(inode
->i_mode
)) {
366 mutex_lock(&fc
->inst_mutex
);
367 newent
= fuse_d_add_directory(entry
, inode
);
368 mutex_unlock(&fc
->inst_mutex
);
369 err
= PTR_ERR(newent
);
373 newent
= d_splice_alias(inode
, entry
);
376 entry
= newent
? newent
: entry
;
378 fuse_change_entry_timeout(entry
, &outarg
);
380 fuse_invalidate_entry_cache(entry
);
382 fuse_advise_use_readdirplus(dir
);
392 * Atomic create+open operation
394 * If the filesystem doesn't support this, then fall back to separate
395 * 'mknod' + 'open' requests.
397 static int fuse_create_open(struct inode
*dir
, struct dentry
*entry
,
398 struct file
*file
, unsigned flags
,
399 umode_t mode
, int *opened
)
403 struct fuse_conn
*fc
= get_fuse_conn(dir
);
404 struct fuse_req
*req
;
405 struct fuse_forget_link
*forget
;
406 struct fuse_create_in inarg
;
407 struct fuse_open_out outopen
;
408 struct fuse_entry_out outentry
;
409 struct fuse_file
*ff
;
411 /* Userspace expects S_IFREG in create mode */
412 BUG_ON((mode
& S_IFMT
) != S_IFREG
);
414 forget
= fuse_alloc_forget();
419 req
= fuse_get_req_nopages(fc
);
422 goto out_put_forget_req
;
425 ff
= fuse_file_alloc(fc
);
427 goto out_put_request
;
430 mode
&= ~current_umask();
433 memset(&inarg
, 0, sizeof(inarg
));
434 memset(&outentry
, 0, sizeof(outentry
));
437 inarg
.umask
= current_umask();
438 req
->in
.h
.opcode
= FUSE_CREATE
;
439 req
->in
.h
.nodeid
= get_node_id(dir
);
441 req
->in
.args
[0].size
= fc
->minor
< 12 ? sizeof(struct fuse_open_in
) :
443 req
->in
.args
[0].value
= &inarg
;
444 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
445 req
->in
.args
[1].value
= entry
->d_name
.name
;
446 req
->out
.numargs
= 2;
448 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
450 req
->out
.args
[0].size
= sizeof(outentry
);
451 req
->out
.args
[0].value
= &outentry
;
452 req
->out
.args
[1].size
= sizeof(outopen
);
453 req
->out
.args
[1].value
= &outopen
;
454 fuse_request_send(fc
, req
);
455 err
= req
->out
.h
.error
;
460 if (!S_ISREG(outentry
.attr
.mode
) || invalid_nodeid(outentry
.nodeid
))
463 fuse_put_request(fc
, req
);
465 ff
->nodeid
= outentry
.nodeid
;
466 ff
->open_flags
= outopen
.open_flags
;
467 inode
= fuse_iget(dir
->i_sb
, outentry
.nodeid
, outentry
.generation
,
468 &outentry
.attr
, entry_attr_timeout(&outentry
), 0);
470 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
471 fuse_sync_release(ff
, flags
);
472 fuse_queue_forget(fc
, forget
, outentry
.nodeid
, 1);
477 d_instantiate(entry
, inode
);
478 fuse_change_entry_timeout(entry
, &outentry
);
479 fuse_invalidate_attr(dir
);
480 err
= finish_open(file
, entry
, generic_file_open
, opened
);
482 fuse_sync_release(ff
, flags
);
484 file
->private_data
= fuse_file_get(ff
);
485 fuse_finish_open(inode
, file
);
492 fuse_put_request(fc
, req
);
499 static int fuse_mknod(struct inode
*, struct dentry
*, umode_t
, dev_t
);
500 static int fuse_atomic_open(struct inode
*dir
, struct dentry
*entry
,
501 struct file
*file
, unsigned flags
,
502 umode_t mode
, int *opened
)
505 struct fuse_conn
*fc
= get_fuse_conn(dir
);
506 struct dentry
*res
= NULL
;
508 if (d_unhashed(entry
)) {
509 res
= fuse_lookup(dir
, entry
, 0);
517 if (!(flags
& O_CREAT
) || entry
->d_inode
)
521 *opened
|= FILE_CREATED
;
526 err
= fuse_create_open(dir
, entry
, file
, flags
, mode
, opened
);
527 if (err
== -ENOSYS
) {
536 err
= fuse_mknod(dir
, entry
, mode
, 0);
540 return finish_no_open(file
, res
);
544 * Code shared between mknod, mkdir, symlink and link
546 static int create_new_entry(struct fuse_conn
*fc
, struct fuse_req
*req
,
547 struct inode
*dir
, struct dentry
*entry
,
550 struct fuse_entry_out outarg
;
553 struct fuse_forget_link
*forget
;
555 forget
= fuse_alloc_forget();
557 fuse_put_request(fc
, req
);
561 memset(&outarg
, 0, sizeof(outarg
));
562 req
->in
.h
.nodeid
= get_node_id(dir
);
563 req
->out
.numargs
= 1;
565 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
567 req
->out
.args
[0].size
= sizeof(outarg
);
568 req
->out
.args
[0].value
= &outarg
;
569 fuse_request_send(fc
, req
);
570 err
= req
->out
.h
.error
;
571 fuse_put_request(fc
, req
);
573 goto out_put_forget_req
;
576 if (invalid_nodeid(outarg
.nodeid
))
577 goto out_put_forget_req
;
579 if ((outarg
.attr
.mode
^ mode
) & S_IFMT
)
580 goto out_put_forget_req
;
582 inode
= fuse_iget(dir
->i_sb
, outarg
.nodeid
, outarg
.generation
,
583 &outarg
.attr
, entry_attr_timeout(&outarg
), 0);
585 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
590 if (S_ISDIR(inode
->i_mode
)) {
591 struct dentry
*alias
;
592 mutex_lock(&fc
->inst_mutex
);
593 alias
= d_find_alias(inode
);
595 /* New directory must have moved since mkdir */
596 mutex_unlock(&fc
->inst_mutex
);
601 d_instantiate(entry
, inode
);
602 mutex_unlock(&fc
->inst_mutex
);
604 d_instantiate(entry
, inode
);
606 fuse_change_entry_timeout(entry
, &outarg
);
607 fuse_invalidate_attr(dir
);
615 static int fuse_mknod(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
618 struct fuse_mknod_in inarg
;
619 struct fuse_conn
*fc
= get_fuse_conn(dir
);
620 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
625 mode
&= ~current_umask();
627 memset(&inarg
, 0, sizeof(inarg
));
629 inarg
.rdev
= new_encode_dev(rdev
);
630 inarg
.umask
= current_umask();
631 req
->in
.h
.opcode
= FUSE_MKNOD
;
633 req
->in
.args
[0].size
= fc
->minor
< 12 ? FUSE_COMPAT_MKNOD_IN_SIZE
:
635 req
->in
.args
[0].value
= &inarg
;
636 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
637 req
->in
.args
[1].value
= entry
->d_name
.name
;
638 return create_new_entry(fc
, req
, dir
, entry
, mode
);
641 static int fuse_create(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
644 return fuse_mknod(dir
, entry
, mode
, 0);
647 static int fuse_mkdir(struct inode
*dir
, struct dentry
*entry
, umode_t mode
)
649 struct fuse_mkdir_in inarg
;
650 struct fuse_conn
*fc
= get_fuse_conn(dir
);
651 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
656 mode
&= ~current_umask();
658 memset(&inarg
, 0, sizeof(inarg
));
660 inarg
.umask
= current_umask();
661 req
->in
.h
.opcode
= FUSE_MKDIR
;
663 req
->in
.args
[0].size
= sizeof(inarg
);
664 req
->in
.args
[0].value
= &inarg
;
665 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
666 req
->in
.args
[1].value
= entry
->d_name
.name
;
667 return create_new_entry(fc
, req
, dir
, entry
, S_IFDIR
);
670 static int fuse_symlink(struct inode
*dir
, struct dentry
*entry
,
673 struct fuse_conn
*fc
= get_fuse_conn(dir
);
674 unsigned len
= strlen(link
) + 1;
675 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
679 req
->in
.h
.opcode
= FUSE_SYMLINK
;
681 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
682 req
->in
.args
[0].value
= entry
->d_name
.name
;
683 req
->in
.args
[1].size
= len
;
684 req
->in
.args
[1].value
= link
;
685 return create_new_entry(fc
, req
, dir
, entry
, S_IFLNK
);
688 static int fuse_unlink(struct inode
*dir
, struct dentry
*entry
)
691 struct fuse_conn
*fc
= get_fuse_conn(dir
);
692 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
696 req
->in
.h
.opcode
= FUSE_UNLINK
;
697 req
->in
.h
.nodeid
= get_node_id(dir
);
699 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
700 req
->in
.args
[0].value
= entry
->d_name
.name
;
701 fuse_request_send(fc
, req
);
702 err
= req
->out
.h
.error
;
703 fuse_put_request(fc
, req
);
705 struct inode
*inode
= entry
->d_inode
;
706 struct fuse_inode
*fi
= get_fuse_inode(inode
);
708 spin_lock(&fc
->lock
);
709 fi
->attr_version
= ++fc
->attr_version
;
711 * If i_nlink == 0 then unlink doesn't make sense, yet this can
712 * happen if userspace filesystem is careless. It would be
713 * difficult to enforce correct nlink usage so just ignore this
716 if (inode
->i_nlink
> 0)
718 spin_unlock(&fc
->lock
);
719 fuse_invalidate_attr(inode
);
720 fuse_invalidate_attr(dir
);
721 fuse_invalidate_entry_cache(entry
);
722 } else if (err
== -EINTR
)
723 fuse_invalidate_entry(entry
);
727 static int fuse_rmdir(struct inode
*dir
, struct dentry
*entry
)
730 struct fuse_conn
*fc
= get_fuse_conn(dir
);
731 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
735 req
->in
.h
.opcode
= FUSE_RMDIR
;
736 req
->in
.h
.nodeid
= get_node_id(dir
);
738 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
739 req
->in
.args
[0].value
= entry
->d_name
.name
;
740 fuse_request_send(fc
, req
);
741 err
= req
->out
.h
.error
;
742 fuse_put_request(fc
, req
);
744 clear_nlink(entry
->d_inode
);
745 fuse_invalidate_attr(dir
);
746 fuse_invalidate_entry_cache(entry
);
747 } else if (err
== -EINTR
)
748 fuse_invalidate_entry(entry
);
752 static int fuse_rename(struct inode
*olddir
, struct dentry
*oldent
,
753 struct inode
*newdir
, struct dentry
*newent
)
756 struct fuse_rename_in inarg
;
757 struct fuse_conn
*fc
= get_fuse_conn(olddir
);
758 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
763 memset(&inarg
, 0, sizeof(inarg
));
764 inarg
.newdir
= get_node_id(newdir
);
765 req
->in
.h
.opcode
= FUSE_RENAME
;
766 req
->in
.h
.nodeid
= get_node_id(olddir
);
768 req
->in
.args
[0].size
= sizeof(inarg
);
769 req
->in
.args
[0].value
= &inarg
;
770 req
->in
.args
[1].size
= oldent
->d_name
.len
+ 1;
771 req
->in
.args
[1].value
= oldent
->d_name
.name
;
772 req
->in
.args
[2].size
= newent
->d_name
.len
+ 1;
773 req
->in
.args
[2].value
= newent
->d_name
.name
;
774 fuse_request_send(fc
, req
);
775 err
= req
->out
.h
.error
;
776 fuse_put_request(fc
, req
);
779 fuse_invalidate_attr(oldent
->d_inode
);
781 fuse_invalidate_attr(olddir
);
782 if (olddir
!= newdir
)
783 fuse_invalidate_attr(newdir
);
785 /* newent will end up negative */
786 if (newent
->d_inode
) {
787 fuse_invalidate_attr(newent
->d_inode
);
788 fuse_invalidate_entry_cache(newent
);
790 } else if (err
== -EINTR
) {
791 /* If request was interrupted, DEITY only knows if the
792 rename actually took place. If the invalidation
793 fails (e.g. some process has CWD under the renamed
794 directory), then there can be inconsistency between
795 the dcache and the real filesystem. Tough luck. */
796 fuse_invalidate_entry(oldent
);
798 fuse_invalidate_entry(newent
);
804 static int fuse_link(struct dentry
*entry
, struct inode
*newdir
,
805 struct dentry
*newent
)
808 struct fuse_link_in inarg
;
809 struct inode
*inode
= entry
->d_inode
;
810 struct fuse_conn
*fc
= get_fuse_conn(inode
);
811 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
815 memset(&inarg
, 0, sizeof(inarg
));
816 inarg
.oldnodeid
= get_node_id(inode
);
817 req
->in
.h
.opcode
= FUSE_LINK
;
819 req
->in
.args
[0].size
= sizeof(inarg
);
820 req
->in
.args
[0].value
= &inarg
;
821 req
->in
.args
[1].size
= newent
->d_name
.len
+ 1;
822 req
->in
.args
[1].value
= newent
->d_name
.name
;
823 err
= create_new_entry(fc
, req
, newdir
, newent
, inode
->i_mode
);
824 /* Contrary to "normal" filesystems it can happen that link
825 makes two "logical" inodes point to the same "physical"
826 inode. We invalidate the attributes of the old one, so it
827 will reflect changes in the backing inode (link count,
831 struct fuse_inode
*fi
= get_fuse_inode(inode
);
833 spin_lock(&fc
->lock
);
834 fi
->attr_version
= ++fc
->attr_version
;
836 spin_unlock(&fc
->lock
);
837 fuse_invalidate_attr(inode
);
838 } else if (err
== -EINTR
) {
839 fuse_invalidate_attr(inode
);
844 static void fuse_fillattr(struct inode
*inode
, struct fuse_attr
*attr
,
847 unsigned int blkbits
;
849 stat
->dev
= inode
->i_sb
->s_dev
;
850 stat
->ino
= attr
->ino
;
851 stat
->mode
= (inode
->i_mode
& S_IFMT
) | (attr
->mode
& 07777);
852 stat
->nlink
= attr
->nlink
;
853 stat
->uid
= make_kuid(&init_user_ns
, attr
->uid
);
854 stat
->gid
= make_kgid(&init_user_ns
, attr
->gid
);
855 stat
->rdev
= inode
->i_rdev
;
856 stat
->atime
.tv_sec
= attr
->atime
;
857 stat
->atime
.tv_nsec
= attr
->atimensec
;
858 stat
->mtime
.tv_sec
= attr
->mtime
;
859 stat
->mtime
.tv_nsec
= attr
->mtimensec
;
860 stat
->ctime
.tv_sec
= attr
->ctime
;
861 stat
->ctime
.tv_nsec
= attr
->ctimensec
;
862 stat
->size
= attr
->size
;
863 stat
->blocks
= attr
->blocks
;
865 if (attr
->blksize
!= 0)
866 blkbits
= ilog2(attr
->blksize
);
868 blkbits
= inode
->i_sb
->s_blocksize_bits
;
870 stat
->blksize
= 1 << blkbits
;
873 static int fuse_do_getattr(struct inode
*inode
, struct kstat
*stat
,
877 struct fuse_getattr_in inarg
;
878 struct fuse_attr_out outarg
;
879 struct fuse_conn
*fc
= get_fuse_conn(inode
);
880 struct fuse_req
*req
;
883 req
= fuse_get_req_nopages(fc
);
887 attr_version
= fuse_get_attr_version(fc
);
889 memset(&inarg
, 0, sizeof(inarg
));
890 memset(&outarg
, 0, sizeof(outarg
));
891 /* Directories have separate file-handle space */
892 if (file
&& S_ISREG(inode
->i_mode
)) {
893 struct fuse_file
*ff
= file
->private_data
;
895 inarg
.getattr_flags
|= FUSE_GETATTR_FH
;
898 req
->in
.h
.opcode
= FUSE_GETATTR
;
899 req
->in
.h
.nodeid
= get_node_id(inode
);
901 req
->in
.args
[0].size
= sizeof(inarg
);
902 req
->in
.args
[0].value
= &inarg
;
903 req
->out
.numargs
= 1;
905 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
907 req
->out
.args
[0].size
= sizeof(outarg
);
908 req
->out
.args
[0].value
= &outarg
;
909 fuse_request_send(fc
, req
);
910 err
= req
->out
.h
.error
;
911 fuse_put_request(fc
, req
);
913 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
914 make_bad_inode(inode
);
917 fuse_change_attributes(inode
, &outarg
.attr
,
918 attr_timeout(&outarg
),
921 fuse_fillattr(inode
, &outarg
.attr
, stat
);
927 int fuse_update_attributes(struct inode
*inode
, struct kstat
*stat
,
928 struct file
*file
, bool *refreshed
)
930 struct fuse_inode
*fi
= get_fuse_inode(inode
);
934 if (fi
->i_time
< get_jiffies_64()) {
936 err
= fuse_do_getattr(inode
, stat
, file
);
941 generic_fillattr(inode
, stat
);
942 stat
->mode
= fi
->orig_i_mode
;
943 stat
->ino
= fi
->orig_ino
;
947 if (refreshed
!= NULL
)
953 int fuse_reverse_inval_entry(struct super_block
*sb
, u64 parent_nodeid
,
954 u64 child_nodeid
, struct qstr
*name
)
957 struct inode
*parent
;
959 struct dentry
*entry
;
961 parent
= ilookup5(sb
, parent_nodeid
, fuse_inode_eq
, &parent_nodeid
);
965 mutex_lock(&parent
->i_mutex
);
966 if (!S_ISDIR(parent
->i_mode
))
970 dir
= d_find_alias(parent
);
974 entry
= d_lookup(dir
, name
);
979 fuse_invalidate_attr(parent
);
980 fuse_invalidate_entry(entry
);
982 if (child_nodeid
!= 0 && entry
->d_inode
) {
983 mutex_lock(&entry
->d_inode
->i_mutex
);
984 if (get_node_id(entry
->d_inode
) != child_nodeid
) {
988 if (d_mountpoint(entry
)) {
992 if (S_ISDIR(entry
->d_inode
->i_mode
)) {
993 shrink_dcache_parent(entry
);
994 if (!simple_empty(entry
)) {
998 entry
->d_inode
->i_flags
|= S_DEAD
;
1001 clear_nlink(entry
->d_inode
);
1004 mutex_unlock(&entry
->d_inode
->i_mutex
);
1013 mutex_unlock(&parent
->i_mutex
);
1019 * Calling into a user-controlled filesystem gives the filesystem
1020 * daemon ptrace-like capabilities over the current process. This
1021 * means, that the filesystem daemon is able to record the exact
1022 * filesystem operations performed, and can also control the behavior
1023 * of the requester process in otherwise impossible ways. For example
1024 * it can delay the operation for arbitrary length of time allowing
1025 * DoS against the requester.
1027 * For this reason only those processes can call into the filesystem,
1028 * for which the owner of the mount has ptrace privilege. This
1029 * excludes processes started by other users, suid or sgid processes.
1031 int fuse_allow_current_process(struct fuse_conn
*fc
)
1033 const struct cred
*cred
;
1035 if (fc
->flags
& FUSE_ALLOW_OTHER
)
1038 cred
= current_cred();
1039 if (uid_eq(cred
->euid
, fc
->user_id
) &&
1040 uid_eq(cred
->suid
, fc
->user_id
) &&
1041 uid_eq(cred
->uid
, fc
->user_id
) &&
1042 gid_eq(cred
->egid
, fc
->group_id
) &&
1043 gid_eq(cred
->sgid
, fc
->group_id
) &&
1044 gid_eq(cred
->gid
, fc
->group_id
))
1050 static int fuse_access(struct inode
*inode
, int mask
)
1052 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1053 struct fuse_req
*req
;
1054 struct fuse_access_in inarg
;
1060 req
= fuse_get_req_nopages(fc
);
1062 return PTR_ERR(req
);
1064 memset(&inarg
, 0, sizeof(inarg
));
1065 inarg
.mask
= mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
);
1066 req
->in
.h
.opcode
= FUSE_ACCESS
;
1067 req
->in
.h
.nodeid
= get_node_id(inode
);
1068 req
->in
.numargs
= 1;
1069 req
->in
.args
[0].size
= sizeof(inarg
);
1070 req
->in
.args
[0].value
= &inarg
;
1071 fuse_request_send(fc
, req
);
1072 err
= req
->out
.h
.error
;
1073 fuse_put_request(fc
, req
);
1074 if (err
== -ENOSYS
) {
1081 static int fuse_perm_getattr(struct inode
*inode
, int mask
)
1083 if (mask
& MAY_NOT_BLOCK
)
1086 return fuse_do_getattr(inode
, NULL
, NULL
);
1090 * Check permission. The two basic access models of FUSE are:
1092 * 1) Local access checking ('default_permissions' mount option) based
1093 * on file mode. This is the plain old disk filesystem permission
1096 * 2) "Remote" access checking, where server is responsible for
1097 * checking permission in each inode operation. An exception to this
1098 * is if ->permission() was invoked from sys_access() in which case an
1099 * access request is sent. Execute permission is still checked
1100 * locally based on file mode.
1102 static int fuse_permission(struct inode
*inode
, int mask
)
1104 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1105 bool refreshed
= false;
1108 if (!fuse_allow_current_process(fc
))
1112 * If attributes are needed, refresh them before proceeding
1114 if ((fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) ||
1115 ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
))) {
1116 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1118 if (fi
->i_time
< get_jiffies_64()) {
1121 err
= fuse_perm_getattr(inode
, mask
);
1127 if (fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) {
1128 err
= generic_permission(inode
, mask
);
1130 /* If permission is denied, try to refresh file
1131 attributes. This is also needed, because the root
1132 node will at first have no permissions */
1133 if (err
== -EACCES
&& !refreshed
) {
1134 err
= fuse_perm_getattr(inode
, mask
);
1136 err
= generic_permission(inode
, mask
);
1139 /* Note: the opposite of the above test does not
1140 exist. So if permissions are revoked this won't be
1141 noticed immediately, only after the attribute
1142 timeout has expired */
1143 } else if (mask
& (MAY_ACCESS
| MAY_CHDIR
)) {
1144 if (mask
& MAY_NOT_BLOCK
)
1147 err
= fuse_access(inode
, mask
);
1148 } else if ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
)) {
1149 if (!(inode
->i_mode
& S_IXUGO
)) {
1153 err
= fuse_perm_getattr(inode
, mask
);
1154 if (!err
&& !(inode
->i_mode
& S_IXUGO
))
1161 static int parse_dirfile(char *buf
, size_t nbytes
, struct file
*file
,
1162 void *dstbuf
, filldir_t filldir
)
1164 while (nbytes
>= FUSE_NAME_OFFSET
) {
1165 struct fuse_dirent
*dirent
= (struct fuse_dirent
*) buf
;
1166 size_t reclen
= FUSE_DIRENT_SIZE(dirent
);
1168 if (!dirent
->namelen
|| dirent
->namelen
> FUSE_NAME_MAX
)
1170 if (reclen
> nbytes
)
1173 over
= filldir(dstbuf
, dirent
->name
, dirent
->namelen
,
1174 file
->f_pos
, dirent
->ino
, dirent
->type
);
1180 file
->f_pos
= dirent
->off
;
1186 static int fuse_direntplus_link(struct file
*file
,
1187 struct fuse_direntplus
*direntplus
,
1191 struct fuse_entry_out
*o
= &direntplus
->entry_out
;
1192 struct fuse_dirent
*dirent
= &direntplus
->dirent
;
1193 struct dentry
*parent
= file
->f_path
.dentry
;
1194 struct qstr name
= QSTR_INIT(dirent
->name
, dirent
->namelen
);
1195 struct dentry
*dentry
;
1196 struct dentry
*alias
;
1197 struct inode
*dir
= parent
->d_inode
;
1198 struct fuse_conn
*fc
;
1199 struct inode
*inode
;
1203 * Unlike in the case of fuse_lookup, zero nodeid does not mean
1204 * ENOENT. Instead, it only means the userspace filesystem did
1205 * not want to return attributes/handle for this entry.
1212 if (name
.name
[0] == '.') {
1214 * We could potentially refresh the attributes of the directory
1219 if (name
.name
[1] == '.' && name
.len
== 2)
1222 fc
= get_fuse_conn(dir
);
1224 name
.hash
= full_name_hash(name
.name
, name
.len
);
1225 dentry
= d_lookup(parent
, &name
);
1226 if (dentry
&& dentry
->d_inode
) {
1227 inode
= dentry
->d_inode
;
1228 if (get_node_id(inode
) == o
->nodeid
) {
1229 struct fuse_inode
*fi
;
1230 fi
= get_fuse_inode(inode
);
1231 spin_lock(&fc
->lock
);
1233 spin_unlock(&fc
->lock
);
1236 * The other branch to 'found' comes via fuse_iget()
1237 * which bumps nlookup inside
1241 err
= d_invalidate(dentry
);
1248 dentry
= d_alloc(parent
, &name
);
1253 inode
= fuse_iget(dir
->i_sb
, o
->nodeid
, o
->generation
,
1254 &o
->attr
, entry_attr_timeout(o
), attr_version
);
1258 alias
= d_materialise_unique(dentry
, inode
);
1259 err
= PTR_ERR(alias
);
1268 fuse_change_attributes(inode
, &o
->attr
, entry_attr_timeout(o
),
1271 fuse_change_entry_timeout(dentry
, o
);
1280 static int parse_dirplusfile(char *buf
, size_t nbytes
, struct file
*file
,
1281 void *dstbuf
, filldir_t filldir
, u64 attr_version
)
1283 struct fuse_direntplus
*direntplus
;
1284 struct fuse_dirent
*dirent
;
1289 while (nbytes
>= FUSE_NAME_OFFSET_DIRENTPLUS
) {
1290 direntplus
= (struct fuse_direntplus
*) buf
;
1291 dirent
= &direntplus
->dirent
;
1292 reclen
= FUSE_DIRENTPLUS_SIZE(direntplus
);
1294 if (!dirent
->namelen
|| dirent
->namelen
> FUSE_NAME_MAX
)
1296 if (reclen
> nbytes
)
1300 /* We fill entries into dstbuf only as much as
1301 it can hold. But we still continue iterating
1302 over remaining entries to link them. If not,
1303 we need to send a FORGET for each of those
1304 which we did not link.
1306 over
= filldir(dstbuf
, dirent
->name
, dirent
->namelen
,
1307 file
->f_pos
, dirent
->ino
,
1309 file
->f_pos
= dirent
->off
;
1315 ret
= fuse_direntplus_link(file
, direntplus
, attr_version
);
1317 fuse_force_forget(file
, direntplus
->entry_out
.nodeid
);
1323 static int fuse_readdir(struct file
*file
, void *dstbuf
, filldir_t filldir
)
1328 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1329 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1330 struct fuse_req
*req
;
1331 u64 attr_version
= 0;
1333 if (is_bad_inode(inode
))
1336 req
= fuse_get_req(fc
, 1);
1338 return PTR_ERR(req
);
1340 page
= alloc_page(GFP_KERNEL
);
1342 fuse_put_request(fc
, req
);
1346 plus
= fuse_use_readdirplus(inode
, file
);
1347 req
->out
.argpages
= 1;
1349 req
->pages
[0] = page
;
1350 req
->page_descs
[0].length
= PAGE_SIZE
;
1352 attr_version
= fuse_get_attr_version(fc
);
1353 fuse_read_fill(req
, file
, file
->f_pos
, PAGE_SIZE
,
1356 fuse_read_fill(req
, file
, file
->f_pos
, PAGE_SIZE
,
1359 fuse_request_send(fc
, req
);
1360 nbytes
= req
->out
.args
[0].size
;
1361 err
= req
->out
.h
.error
;
1362 fuse_put_request(fc
, req
);
1365 err
= parse_dirplusfile(page_address(page
), nbytes
,
1366 file
, dstbuf
, filldir
,
1369 err
= parse_dirfile(page_address(page
), nbytes
, file
,
1375 fuse_invalidate_attr(inode
); /* atime changed */
1379 static char *read_link(struct dentry
*dentry
)
1381 struct inode
*inode
= dentry
->d_inode
;
1382 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1383 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
1387 return ERR_CAST(req
);
1389 link
= (char *) __get_free_page(GFP_KERNEL
);
1391 link
= ERR_PTR(-ENOMEM
);
1394 req
->in
.h
.opcode
= FUSE_READLINK
;
1395 req
->in
.h
.nodeid
= get_node_id(inode
);
1396 req
->out
.argvar
= 1;
1397 req
->out
.numargs
= 1;
1398 req
->out
.args
[0].size
= PAGE_SIZE
- 1;
1399 req
->out
.args
[0].value
= link
;
1400 fuse_request_send(fc
, req
);
1401 if (req
->out
.h
.error
) {
1402 free_page((unsigned long) link
);
1403 link
= ERR_PTR(req
->out
.h
.error
);
1405 link
[req
->out
.args
[0].size
] = '\0';
1407 fuse_put_request(fc
, req
);
1408 fuse_invalidate_attr(inode
); /* atime changed */
1412 static void free_link(char *link
)
1415 free_page((unsigned long) link
);
1418 static void *fuse_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1420 nd_set_link(nd
, read_link(dentry
));
1424 static void fuse_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *c
)
1426 free_link(nd_get_link(nd
));
1429 static int fuse_dir_open(struct inode
*inode
, struct file
*file
)
1431 return fuse_open_common(inode
, file
, true);
1434 static int fuse_dir_release(struct inode
*inode
, struct file
*file
)
1436 fuse_release_common(file
, FUSE_RELEASEDIR
);
1441 static int fuse_dir_fsync(struct file
*file
, loff_t start
, loff_t end
,
1444 return fuse_fsync_common(file
, start
, end
, datasync
, 1);
1447 static long fuse_dir_ioctl(struct file
*file
, unsigned int cmd
,
1450 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1452 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1456 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_DIR
);
1459 static long fuse_dir_compat_ioctl(struct file
*file
, unsigned int cmd
,
1462 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1467 return fuse_ioctl_common(file
, cmd
, arg
,
1468 FUSE_IOCTL_COMPAT
| FUSE_IOCTL_DIR
);
1471 static bool update_mtime(unsigned ivalid
)
1473 /* Always update if mtime is explicitly set */
1474 if (ivalid
& ATTR_MTIME_SET
)
1477 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1478 if ((ivalid
& ATTR_SIZE
) && (ivalid
& (ATTR_OPEN
| ATTR_FILE
)))
1481 /* In all other cases update */
1485 static void iattr_to_fattr(struct iattr
*iattr
, struct fuse_setattr_in
*arg
)
1487 unsigned ivalid
= iattr
->ia_valid
;
1489 if (ivalid
& ATTR_MODE
)
1490 arg
->valid
|= FATTR_MODE
, arg
->mode
= iattr
->ia_mode
;
1491 if (ivalid
& ATTR_UID
)
1492 arg
->valid
|= FATTR_UID
, arg
->uid
= from_kuid(&init_user_ns
, iattr
->ia_uid
);
1493 if (ivalid
& ATTR_GID
)
1494 arg
->valid
|= FATTR_GID
, arg
->gid
= from_kgid(&init_user_ns
, iattr
->ia_gid
);
1495 if (ivalid
& ATTR_SIZE
)
1496 arg
->valid
|= FATTR_SIZE
, arg
->size
= iattr
->ia_size
;
1497 if (ivalid
& ATTR_ATIME
) {
1498 arg
->valid
|= FATTR_ATIME
;
1499 arg
->atime
= iattr
->ia_atime
.tv_sec
;
1500 arg
->atimensec
= iattr
->ia_atime
.tv_nsec
;
1501 if (!(ivalid
& ATTR_ATIME_SET
))
1502 arg
->valid
|= FATTR_ATIME_NOW
;
1504 if ((ivalid
& ATTR_MTIME
) && update_mtime(ivalid
)) {
1505 arg
->valid
|= FATTR_MTIME
;
1506 arg
->mtime
= iattr
->ia_mtime
.tv_sec
;
1507 arg
->mtimensec
= iattr
->ia_mtime
.tv_nsec
;
1508 if (!(ivalid
& ATTR_MTIME_SET
))
1509 arg
->valid
|= FATTR_MTIME_NOW
;
1514 * Prevent concurrent writepages on inode
1516 * This is done by adding a negative bias to the inode write counter
1517 * and waiting for all pending writes to finish.
1519 void fuse_set_nowrite(struct inode
*inode
)
1521 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1522 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1524 BUG_ON(!mutex_is_locked(&inode
->i_mutex
));
1526 spin_lock(&fc
->lock
);
1527 BUG_ON(fi
->writectr
< 0);
1528 fi
->writectr
+= FUSE_NOWRITE
;
1529 spin_unlock(&fc
->lock
);
1530 wait_event(fi
->page_waitq
, fi
->writectr
== FUSE_NOWRITE
);
1534 * Allow writepages on inode
1536 * Remove the bias from the writecounter and send any queued
1539 static void __fuse_release_nowrite(struct inode
*inode
)
1541 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1543 BUG_ON(fi
->writectr
!= FUSE_NOWRITE
);
1545 fuse_flush_writepages(inode
);
1548 void fuse_release_nowrite(struct inode
*inode
)
1550 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1552 spin_lock(&fc
->lock
);
1553 __fuse_release_nowrite(inode
);
1554 spin_unlock(&fc
->lock
);
1558 * Set attributes, and at the same time refresh them.
1560 * Truncation is slightly complicated, because the 'truncate' request
1561 * may fail, in which case we don't want to touch the mapping.
1562 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1563 * and the actual truncation by hand.
1565 static int fuse_do_setattr(struct dentry
*entry
, struct iattr
*attr
,
1568 struct inode
*inode
= entry
->d_inode
;
1569 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1570 struct fuse_req
*req
;
1571 struct fuse_setattr_in inarg
;
1572 struct fuse_attr_out outarg
;
1573 bool is_truncate
= false;
1577 if (!fuse_allow_current_process(fc
))
1580 if (!(fc
->flags
& FUSE_DEFAULT_PERMISSIONS
))
1581 attr
->ia_valid
|= ATTR_FORCE
;
1583 err
= inode_change_ok(inode
, attr
);
1587 if (attr
->ia_valid
& ATTR_OPEN
) {
1588 if (fc
->atomic_o_trunc
)
1593 if (attr
->ia_valid
& ATTR_SIZE
)
1596 req
= fuse_get_req_nopages(fc
);
1598 return PTR_ERR(req
);
1601 fuse_set_nowrite(inode
);
1603 memset(&inarg
, 0, sizeof(inarg
));
1604 memset(&outarg
, 0, sizeof(outarg
));
1605 iattr_to_fattr(attr
, &inarg
);
1607 struct fuse_file
*ff
= file
->private_data
;
1608 inarg
.valid
|= FATTR_FH
;
1611 if (attr
->ia_valid
& ATTR_SIZE
) {
1612 /* For mandatory locking in truncate */
1613 inarg
.valid
|= FATTR_LOCKOWNER
;
1614 inarg
.lock_owner
= fuse_lock_owner_id(fc
, current
->files
);
1616 req
->in
.h
.opcode
= FUSE_SETATTR
;
1617 req
->in
.h
.nodeid
= get_node_id(inode
);
1618 req
->in
.numargs
= 1;
1619 req
->in
.args
[0].size
= sizeof(inarg
);
1620 req
->in
.args
[0].value
= &inarg
;
1621 req
->out
.numargs
= 1;
1623 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
1625 req
->out
.args
[0].size
= sizeof(outarg
);
1626 req
->out
.args
[0].value
= &outarg
;
1627 fuse_request_send(fc
, req
);
1628 err
= req
->out
.h
.error
;
1629 fuse_put_request(fc
, req
);
1632 fuse_invalidate_attr(inode
);
1636 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
1637 make_bad_inode(inode
);
1642 spin_lock(&fc
->lock
);
1643 fuse_change_attributes_common(inode
, &outarg
.attr
,
1644 attr_timeout(&outarg
));
1645 oldsize
= inode
->i_size
;
1646 i_size_write(inode
, outarg
.attr
.size
);
1649 /* NOTE: this may release/reacquire fc->lock */
1650 __fuse_release_nowrite(inode
);
1652 spin_unlock(&fc
->lock
);
1655 * Only call invalidate_inode_pages2() after removing
1656 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1658 if (S_ISREG(inode
->i_mode
) && oldsize
!= outarg
.attr
.size
) {
1659 truncate_pagecache(inode
, oldsize
, outarg
.attr
.size
);
1660 invalidate_inode_pages2(inode
->i_mapping
);
1667 fuse_release_nowrite(inode
);
1672 static int fuse_setattr(struct dentry
*entry
, struct iattr
*attr
)
1674 if (attr
->ia_valid
& ATTR_FILE
)
1675 return fuse_do_setattr(entry
, attr
, attr
->ia_file
);
1677 return fuse_do_setattr(entry
, attr
, NULL
);
1680 static int fuse_getattr(struct vfsmount
*mnt
, struct dentry
*entry
,
1683 struct inode
*inode
= entry
->d_inode
;
1684 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1686 if (!fuse_allow_current_process(fc
))
1689 return fuse_update_attributes(inode
, stat
, NULL
, NULL
);
1692 static int fuse_setxattr(struct dentry
*entry
, const char *name
,
1693 const void *value
, size_t size
, int flags
)
1695 struct inode
*inode
= entry
->d_inode
;
1696 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1697 struct fuse_req
*req
;
1698 struct fuse_setxattr_in inarg
;
1701 if (fc
->no_setxattr
)
1704 req
= fuse_get_req_nopages(fc
);
1706 return PTR_ERR(req
);
1708 memset(&inarg
, 0, sizeof(inarg
));
1710 inarg
.flags
= flags
;
1711 req
->in
.h
.opcode
= FUSE_SETXATTR
;
1712 req
->in
.h
.nodeid
= get_node_id(inode
);
1713 req
->in
.numargs
= 3;
1714 req
->in
.args
[0].size
= sizeof(inarg
);
1715 req
->in
.args
[0].value
= &inarg
;
1716 req
->in
.args
[1].size
= strlen(name
) + 1;
1717 req
->in
.args
[1].value
= name
;
1718 req
->in
.args
[2].size
= size
;
1719 req
->in
.args
[2].value
= value
;
1720 fuse_request_send(fc
, req
);
1721 err
= req
->out
.h
.error
;
1722 fuse_put_request(fc
, req
);
1723 if (err
== -ENOSYS
) {
1724 fc
->no_setxattr
= 1;
1730 static ssize_t
fuse_getxattr(struct dentry
*entry
, const char *name
,
1731 void *value
, size_t size
)
1733 struct inode
*inode
= entry
->d_inode
;
1734 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1735 struct fuse_req
*req
;
1736 struct fuse_getxattr_in inarg
;
1737 struct fuse_getxattr_out outarg
;
1740 if (fc
->no_getxattr
)
1743 req
= fuse_get_req_nopages(fc
);
1745 return PTR_ERR(req
);
1747 memset(&inarg
, 0, sizeof(inarg
));
1749 req
->in
.h
.opcode
= FUSE_GETXATTR
;
1750 req
->in
.h
.nodeid
= get_node_id(inode
);
1751 req
->in
.numargs
= 2;
1752 req
->in
.args
[0].size
= sizeof(inarg
);
1753 req
->in
.args
[0].value
= &inarg
;
1754 req
->in
.args
[1].size
= strlen(name
) + 1;
1755 req
->in
.args
[1].value
= name
;
1756 /* This is really two different operations rolled into one */
1757 req
->out
.numargs
= 1;
1759 req
->out
.argvar
= 1;
1760 req
->out
.args
[0].size
= size
;
1761 req
->out
.args
[0].value
= value
;
1763 req
->out
.args
[0].size
= sizeof(outarg
);
1764 req
->out
.args
[0].value
= &outarg
;
1766 fuse_request_send(fc
, req
);
1767 ret
= req
->out
.h
.error
;
1769 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1771 if (ret
== -ENOSYS
) {
1772 fc
->no_getxattr
= 1;
1776 fuse_put_request(fc
, req
);
1780 static ssize_t
fuse_listxattr(struct dentry
*entry
, char *list
, size_t size
)
1782 struct inode
*inode
= entry
->d_inode
;
1783 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1784 struct fuse_req
*req
;
1785 struct fuse_getxattr_in inarg
;
1786 struct fuse_getxattr_out outarg
;
1789 if (!fuse_allow_current_process(fc
))
1792 if (fc
->no_listxattr
)
1795 req
= fuse_get_req_nopages(fc
);
1797 return PTR_ERR(req
);
1799 memset(&inarg
, 0, sizeof(inarg
));
1801 req
->in
.h
.opcode
= FUSE_LISTXATTR
;
1802 req
->in
.h
.nodeid
= get_node_id(inode
);
1803 req
->in
.numargs
= 1;
1804 req
->in
.args
[0].size
= sizeof(inarg
);
1805 req
->in
.args
[0].value
= &inarg
;
1806 /* This is really two different operations rolled into one */
1807 req
->out
.numargs
= 1;
1809 req
->out
.argvar
= 1;
1810 req
->out
.args
[0].size
= size
;
1811 req
->out
.args
[0].value
= list
;
1813 req
->out
.args
[0].size
= sizeof(outarg
);
1814 req
->out
.args
[0].value
= &outarg
;
1816 fuse_request_send(fc
, req
);
1817 ret
= req
->out
.h
.error
;
1819 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1821 if (ret
== -ENOSYS
) {
1822 fc
->no_listxattr
= 1;
1826 fuse_put_request(fc
, req
);
1830 static int fuse_removexattr(struct dentry
*entry
, const char *name
)
1832 struct inode
*inode
= entry
->d_inode
;
1833 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1834 struct fuse_req
*req
;
1837 if (fc
->no_removexattr
)
1840 req
= fuse_get_req_nopages(fc
);
1842 return PTR_ERR(req
);
1844 req
->in
.h
.opcode
= FUSE_REMOVEXATTR
;
1845 req
->in
.h
.nodeid
= get_node_id(inode
);
1846 req
->in
.numargs
= 1;
1847 req
->in
.args
[0].size
= strlen(name
) + 1;
1848 req
->in
.args
[0].value
= name
;
1849 fuse_request_send(fc
, req
);
1850 err
= req
->out
.h
.error
;
1851 fuse_put_request(fc
, req
);
1852 if (err
== -ENOSYS
) {
1853 fc
->no_removexattr
= 1;
1859 static const struct inode_operations fuse_dir_inode_operations
= {
1860 .lookup
= fuse_lookup
,
1861 .mkdir
= fuse_mkdir
,
1862 .symlink
= fuse_symlink
,
1863 .unlink
= fuse_unlink
,
1864 .rmdir
= fuse_rmdir
,
1865 .rename
= fuse_rename
,
1867 .setattr
= fuse_setattr
,
1868 .create
= fuse_create
,
1869 .atomic_open
= fuse_atomic_open
,
1870 .mknod
= fuse_mknod
,
1871 .permission
= fuse_permission
,
1872 .getattr
= fuse_getattr
,
1873 .setxattr
= fuse_setxattr
,
1874 .getxattr
= fuse_getxattr
,
1875 .listxattr
= fuse_listxattr
,
1876 .removexattr
= fuse_removexattr
,
1879 static const struct file_operations fuse_dir_operations
= {
1880 .llseek
= generic_file_llseek
,
1881 .read
= generic_read_dir
,
1882 .readdir
= fuse_readdir
,
1883 .open
= fuse_dir_open
,
1884 .release
= fuse_dir_release
,
1885 .fsync
= fuse_dir_fsync
,
1886 .unlocked_ioctl
= fuse_dir_ioctl
,
1887 .compat_ioctl
= fuse_dir_compat_ioctl
,
1890 static const struct inode_operations fuse_common_inode_operations
= {
1891 .setattr
= fuse_setattr
,
1892 .permission
= fuse_permission
,
1893 .getattr
= fuse_getattr
,
1894 .setxattr
= fuse_setxattr
,
1895 .getxattr
= fuse_getxattr
,
1896 .listxattr
= fuse_listxattr
,
1897 .removexattr
= fuse_removexattr
,
1900 static const struct inode_operations fuse_symlink_inode_operations
= {
1901 .setattr
= fuse_setattr
,
1902 .follow_link
= fuse_follow_link
,
1903 .put_link
= fuse_put_link
,
1904 .readlink
= generic_readlink
,
1905 .getattr
= fuse_getattr
,
1906 .setxattr
= fuse_setxattr
,
1907 .getxattr
= fuse_getxattr
,
1908 .listxattr
= fuse_listxattr
,
1909 .removexattr
= fuse_removexattr
,
1912 void fuse_init_common(struct inode
*inode
)
1914 inode
->i_op
= &fuse_common_inode_operations
;
1917 void fuse_init_dir(struct inode
*inode
)
1919 inode
->i_op
= &fuse_dir_inode_operations
;
1920 inode
->i_fop
= &fuse_dir_operations
;
1923 void fuse_init_symlink(struct inode
*inode
)
1925 inode
->i_op
= &fuse_symlink_inode_operations
;