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 dir_context
*ctx
)
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
)
183 struct dentry
*parent
;
184 struct fuse_conn
*fc
;
187 inode
= ACCESS_ONCE(entry
->d_inode
);
188 if (inode
&& is_bad_inode(inode
))
190 else if (fuse_dentry_time(entry
) < get_jiffies_64()) {
192 struct fuse_entry_out outarg
;
193 struct fuse_req
*req
;
194 struct fuse_forget_link
*forget
;
197 /* For negative dentries, always do a fresh lookup */
202 if (flags
& LOOKUP_RCU
)
205 fc
= get_fuse_conn(inode
);
206 req
= fuse_get_req_nopages(fc
);
211 forget
= fuse_alloc_forget();
213 fuse_put_request(fc
, req
);
218 attr_version
= fuse_get_attr_version(fc
);
220 parent
= dget_parent(entry
);
221 fuse_lookup_init(fc
, req
, get_node_id(parent
->d_inode
),
222 &entry
->d_name
, &outarg
);
223 fuse_request_send(fc
, req
);
225 err
= req
->out
.h
.error
;
226 fuse_put_request(fc
, req
);
227 /* Zero nodeid is same as -ENOENT */
228 if (!err
&& !outarg
.nodeid
)
231 struct fuse_inode
*fi
= get_fuse_inode(inode
);
232 if (outarg
.nodeid
!= get_node_id(inode
)) {
233 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
236 spin_lock(&fc
->lock
);
238 spin_unlock(&fc
->lock
);
241 if (err
|| (outarg
.attr
.mode
^ inode
->i_mode
) & S_IFMT
)
244 fuse_change_attributes(inode
, &outarg
.attr
,
245 entry_attr_timeout(&outarg
),
247 fuse_change_entry_timeout(entry
, &outarg
);
249 fc
= get_fuse_conn(inode
);
250 if (fc
->readdirplus_auto
) {
251 parent
= dget_parent(entry
);
252 fuse_advise_use_readdirplus(parent
->d_inode
);
262 if (check_submounts_and_drop(entry
) != 0)
267 static int invalid_nodeid(u64 nodeid
)
269 return !nodeid
|| nodeid
== FUSE_ROOT_ID
;
272 const struct dentry_operations fuse_dentry_operations
= {
273 .d_revalidate
= fuse_dentry_revalidate
,
276 int fuse_valid_type(int m
)
278 return S_ISREG(m
) || S_ISDIR(m
) || S_ISLNK(m
) || S_ISCHR(m
) ||
279 S_ISBLK(m
) || S_ISFIFO(m
) || S_ISSOCK(m
);
282 int fuse_lookup_name(struct super_block
*sb
, u64 nodeid
, struct qstr
*name
,
283 struct fuse_entry_out
*outarg
, struct inode
**inode
)
285 struct fuse_conn
*fc
= get_fuse_conn_super(sb
);
286 struct fuse_req
*req
;
287 struct fuse_forget_link
*forget
;
293 if (name
->len
> FUSE_NAME_MAX
)
296 req
= fuse_get_req_nopages(fc
);
301 forget
= fuse_alloc_forget();
304 fuse_put_request(fc
, req
);
308 attr_version
= fuse_get_attr_version(fc
);
310 fuse_lookup_init(fc
, req
, nodeid
, name
, outarg
);
311 fuse_request_send(fc
, req
);
312 err
= req
->out
.h
.error
;
313 fuse_put_request(fc
, req
);
314 /* Zero nodeid is same as -ENOENT, but with valid timeout */
315 if (err
|| !outarg
->nodeid
)
321 if (!fuse_valid_type(outarg
->attr
.mode
))
324 *inode
= fuse_iget(sb
, outarg
->nodeid
, outarg
->generation
,
325 &outarg
->attr
, entry_attr_timeout(outarg
),
329 fuse_queue_forget(fc
, forget
, outarg
->nodeid
, 1);
340 static struct dentry
*fuse_materialise_dentry(struct dentry
*dentry
,
343 struct dentry
*newent
;
345 if (inode
&& S_ISDIR(inode
->i_mode
)) {
346 struct fuse_conn
*fc
= get_fuse_conn(inode
);
348 mutex_lock(&fc
->inst_mutex
);
349 newent
= d_materialise_unique(dentry
, inode
);
350 mutex_unlock(&fc
->inst_mutex
);
352 newent
= d_materialise_unique(dentry
, inode
);
358 static struct dentry
*fuse_lookup(struct inode
*dir
, struct dentry
*entry
,
362 struct fuse_entry_out outarg
;
364 struct dentry
*newent
;
365 bool outarg_valid
= true;
367 err
= fuse_lookup_name(dir
->i_sb
, get_node_id(dir
), &entry
->d_name
,
369 if (err
== -ENOENT
) {
370 outarg_valid
= false;
377 if (inode
&& get_node_id(inode
) == FUSE_ROOT_ID
)
380 newent
= fuse_materialise_dentry(entry
, inode
);
381 err
= PTR_ERR(newent
);
385 entry
= newent
? newent
: entry
;
387 fuse_change_entry_timeout(entry
, &outarg
);
389 fuse_invalidate_entry_cache(entry
);
391 fuse_advise_use_readdirplus(dir
);
401 * Atomic create+open operation
403 * If the filesystem doesn't support this, then fall back to separate
404 * 'mknod' + 'open' requests.
406 static int fuse_create_open(struct inode
*dir
, struct dentry
*entry
,
407 struct file
*file
, unsigned flags
,
408 umode_t mode
, int *opened
)
412 struct fuse_conn
*fc
= get_fuse_conn(dir
);
413 struct fuse_req
*req
;
414 struct fuse_forget_link
*forget
;
415 struct fuse_create_in inarg
;
416 struct fuse_open_out outopen
;
417 struct fuse_entry_out outentry
;
418 struct fuse_file
*ff
;
420 /* Userspace expects S_IFREG in create mode */
421 BUG_ON((mode
& S_IFMT
) != S_IFREG
);
423 forget
= fuse_alloc_forget();
428 req
= fuse_get_req_nopages(fc
);
431 goto out_put_forget_req
;
434 ff
= fuse_file_alloc(fc
);
436 goto out_put_request
;
439 mode
&= ~current_umask();
442 memset(&inarg
, 0, sizeof(inarg
));
443 memset(&outentry
, 0, sizeof(outentry
));
446 inarg
.umask
= current_umask();
447 req
->in
.h
.opcode
= FUSE_CREATE
;
448 req
->in
.h
.nodeid
= get_node_id(dir
);
450 req
->in
.args
[0].size
= fc
->minor
< 12 ? sizeof(struct fuse_open_in
) :
452 req
->in
.args
[0].value
= &inarg
;
453 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
454 req
->in
.args
[1].value
= entry
->d_name
.name
;
455 req
->out
.numargs
= 2;
457 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
459 req
->out
.args
[0].size
= sizeof(outentry
);
460 req
->out
.args
[0].value
= &outentry
;
461 req
->out
.args
[1].size
= sizeof(outopen
);
462 req
->out
.args
[1].value
= &outopen
;
463 fuse_request_send(fc
, req
);
464 err
= req
->out
.h
.error
;
469 if (!S_ISREG(outentry
.attr
.mode
) || invalid_nodeid(outentry
.nodeid
))
472 fuse_put_request(fc
, req
);
474 ff
->nodeid
= outentry
.nodeid
;
475 ff
->open_flags
= outopen
.open_flags
;
476 inode
= fuse_iget(dir
->i_sb
, outentry
.nodeid
, outentry
.generation
,
477 &outentry
.attr
, entry_attr_timeout(&outentry
), 0);
479 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
480 fuse_sync_release(ff
, flags
);
481 fuse_queue_forget(fc
, forget
, outentry
.nodeid
, 1);
486 d_instantiate(entry
, inode
);
487 fuse_change_entry_timeout(entry
, &outentry
);
488 fuse_invalidate_attr(dir
);
489 err
= finish_open(file
, entry
, generic_file_open
, opened
);
491 fuse_sync_release(ff
, flags
);
493 file
->private_data
= fuse_file_get(ff
);
494 fuse_finish_open(inode
, file
);
501 fuse_put_request(fc
, req
);
508 static int fuse_mknod(struct inode
*, struct dentry
*, umode_t
, dev_t
);
509 static int fuse_atomic_open(struct inode
*dir
, struct dentry
*entry
,
510 struct file
*file
, unsigned flags
,
511 umode_t mode
, int *opened
)
514 struct fuse_conn
*fc
= get_fuse_conn(dir
);
515 struct dentry
*res
= NULL
;
517 if (d_unhashed(entry
)) {
518 res
= fuse_lookup(dir
, entry
, 0);
526 if (!(flags
& O_CREAT
) || entry
->d_inode
)
530 *opened
|= FILE_CREATED
;
535 err
= fuse_create_open(dir
, entry
, file
, flags
, mode
, opened
);
536 if (err
== -ENOSYS
) {
545 err
= fuse_mknod(dir
, entry
, mode
, 0);
549 return finish_no_open(file
, res
);
553 * Code shared between mknod, mkdir, symlink and link
555 static int create_new_entry(struct fuse_conn
*fc
, struct fuse_req
*req
,
556 struct inode
*dir
, struct dentry
*entry
,
559 struct fuse_entry_out outarg
;
562 struct fuse_forget_link
*forget
;
564 forget
= fuse_alloc_forget();
566 fuse_put_request(fc
, req
);
570 memset(&outarg
, 0, sizeof(outarg
));
571 req
->in
.h
.nodeid
= get_node_id(dir
);
572 req
->out
.numargs
= 1;
574 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
576 req
->out
.args
[0].size
= sizeof(outarg
);
577 req
->out
.args
[0].value
= &outarg
;
578 fuse_request_send(fc
, req
);
579 err
= req
->out
.h
.error
;
580 fuse_put_request(fc
, req
);
582 goto out_put_forget_req
;
585 if (invalid_nodeid(outarg
.nodeid
))
586 goto out_put_forget_req
;
588 if ((outarg
.attr
.mode
^ mode
) & S_IFMT
)
589 goto out_put_forget_req
;
591 inode
= fuse_iget(dir
->i_sb
, outarg
.nodeid
, outarg
.generation
,
592 &outarg
.attr
, entry_attr_timeout(&outarg
), 0);
594 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
599 if (S_ISDIR(inode
->i_mode
)) {
600 struct dentry
*alias
;
601 mutex_lock(&fc
->inst_mutex
);
602 alias
= d_find_alias(inode
);
604 /* New directory must have moved since mkdir */
605 mutex_unlock(&fc
->inst_mutex
);
610 d_instantiate(entry
, inode
);
611 mutex_unlock(&fc
->inst_mutex
);
613 d_instantiate(entry
, inode
);
615 fuse_change_entry_timeout(entry
, &outarg
);
616 fuse_invalidate_attr(dir
);
624 static int fuse_mknod(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
627 struct fuse_mknod_in inarg
;
628 struct fuse_conn
*fc
= get_fuse_conn(dir
);
629 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
634 mode
&= ~current_umask();
636 memset(&inarg
, 0, sizeof(inarg
));
638 inarg
.rdev
= new_encode_dev(rdev
);
639 inarg
.umask
= current_umask();
640 req
->in
.h
.opcode
= FUSE_MKNOD
;
642 req
->in
.args
[0].size
= fc
->minor
< 12 ? FUSE_COMPAT_MKNOD_IN_SIZE
:
644 req
->in
.args
[0].value
= &inarg
;
645 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
646 req
->in
.args
[1].value
= entry
->d_name
.name
;
647 return create_new_entry(fc
, req
, 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
);
660 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
665 mode
&= ~current_umask();
667 memset(&inarg
, 0, sizeof(inarg
));
669 inarg
.umask
= current_umask();
670 req
->in
.h
.opcode
= FUSE_MKDIR
;
672 req
->in
.args
[0].size
= sizeof(inarg
);
673 req
->in
.args
[0].value
= &inarg
;
674 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
675 req
->in
.args
[1].value
= entry
->d_name
.name
;
676 return create_new_entry(fc
, req
, dir
, entry
, S_IFDIR
);
679 static int fuse_symlink(struct inode
*dir
, struct dentry
*entry
,
682 struct fuse_conn
*fc
= get_fuse_conn(dir
);
683 unsigned len
= strlen(link
) + 1;
684 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
688 req
->in
.h
.opcode
= FUSE_SYMLINK
;
690 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
691 req
->in
.args
[0].value
= entry
->d_name
.name
;
692 req
->in
.args
[1].size
= len
;
693 req
->in
.args
[1].value
= link
;
694 return create_new_entry(fc
, req
, dir
, entry
, S_IFLNK
);
697 static int fuse_unlink(struct inode
*dir
, struct dentry
*entry
)
700 struct fuse_conn
*fc
= get_fuse_conn(dir
);
701 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
705 req
->in
.h
.opcode
= FUSE_UNLINK
;
706 req
->in
.h
.nodeid
= get_node_id(dir
);
708 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
709 req
->in
.args
[0].value
= entry
->d_name
.name
;
710 fuse_request_send(fc
, req
);
711 err
= req
->out
.h
.error
;
712 fuse_put_request(fc
, req
);
714 struct inode
*inode
= entry
->d_inode
;
715 struct fuse_inode
*fi
= get_fuse_inode(inode
);
717 spin_lock(&fc
->lock
);
718 fi
->attr_version
= ++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(&fc
->lock
);
728 fuse_invalidate_attr(inode
);
729 fuse_invalidate_attr(dir
);
730 fuse_invalidate_entry_cache(entry
);
731 } else if (err
== -EINTR
)
732 fuse_invalidate_entry(entry
);
736 static int fuse_rmdir(struct inode
*dir
, struct dentry
*entry
)
739 struct fuse_conn
*fc
= get_fuse_conn(dir
);
740 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
744 req
->in
.h
.opcode
= FUSE_RMDIR
;
745 req
->in
.h
.nodeid
= get_node_id(dir
);
747 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
748 req
->in
.args
[0].value
= entry
->d_name
.name
;
749 fuse_request_send(fc
, req
);
750 err
= req
->out
.h
.error
;
751 fuse_put_request(fc
, req
);
753 clear_nlink(entry
->d_inode
);
754 fuse_invalidate_attr(dir
);
755 fuse_invalidate_entry_cache(entry
);
756 } else if (err
== -EINTR
)
757 fuse_invalidate_entry(entry
);
761 static int fuse_rename(struct inode
*olddir
, struct dentry
*oldent
,
762 struct inode
*newdir
, struct dentry
*newent
)
765 struct fuse_rename_in inarg
;
766 struct fuse_conn
*fc
= get_fuse_conn(olddir
);
767 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
772 memset(&inarg
, 0, sizeof(inarg
));
773 inarg
.newdir
= get_node_id(newdir
);
774 req
->in
.h
.opcode
= FUSE_RENAME
;
775 req
->in
.h
.nodeid
= get_node_id(olddir
);
777 req
->in
.args
[0].size
= sizeof(inarg
);
778 req
->in
.args
[0].value
= &inarg
;
779 req
->in
.args
[1].size
= oldent
->d_name
.len
+ 1;
780 req
->in
.args
[1].value
= oldent
->d_name
.name
;
781 req
->in
.args
[2].size
= newent
->d_name
.len
+ 1;
782 req
->in
.args
[2].value
= newent
->d_name
.name
;
783 fuse_request_send(fc
, req
);
784 err
= req
->out
.h
.error
;
785 fuse_put_request(fc
, req
);
788 fuse_invalidate_attr(oldent
->d_inode
);
790 fuse_invalidate_attr(olddir
);
791 if (olddir
!= newdir
)
792 fuse_invalidate_attr(newdir
);
794 /* newent will end up negative */
795 if (newent
->d_inode
) {
796 fuse_invalidate_attr(newent
->d_inode
);
797 fuse_invalidate_entry_cache(newent
);
799 } else if (err
== -EINTR
) {
800 /* If request was interrupted, DEITY only knows if the
801 rename actually took place. If the invalidation
802 fails (e.g. some process has CWD under the renamed
803 directory), then there can be inconsistency between
804 the dcache and the real filesystem. Tough luck. */
805 fuse_invalidate_entry(oldent
);
807 fuse_invalidate_entry(newent
);
813 static int fuse_link(struct dentry
*entry
, struct inode
*newdir
,
814 struct dentry
*newent
)
817 struct fuse_link_in inarg
;
818 struct inode
*inode
= entry
->d_inode
;
819 struct fuse_conn
*fc
= get_fuse_conn(inode
);
820 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
824 memset(&inarg
, 0, sizeof(inarg
));
825 inarg
.oldnodeid
= get_node_id(inode
);
826 req
->in
.h
.opcode
= FUSE_LINK
;
828 req
->in
.args
[0].size
= sizeof(inarg
);
829 req
->in
.args
[0].value
= &inarg
;
830 req
->in
.args
[1].size
= newent
->d_name
.len
+ 1;
831 req
->in
.args
[1].value
= newent
->d_name
.name
;
832 err
= create_new_entry(fc
, req
, newdir
, newent
, inode
->i_mode
);
833 /* Contrary to "normal" filesystems it can happen that link
834 makes two "logical" inodes point to the same "physical"
835 inode. We invalidate the attributes of the old one, so it
836 will reflect changes in the backing inode (link count,
840 struct fuse_inode
*fi
= get_fuse_inode(inode
);
842 spin_lock(&fc
->lock
);
843 fi
->attr_version
= ++fc
->attr_version
;
845 spin_unlock(&fc
->lock
);
846 fuse_invalidate_attr(inode
);
847 } else if (err
== -EINTR
) {
848 fuse_invalidate_attr(inode
);
853 static void fuse_fillattr(struct inode
*inode
, struct fuse_attr
*attr
,
856 unsigned int blkbits
;
858 stat
->dev
= inode
->i_sb
->s_dev
;
859 stat
->ino
= attr
->ino
;
860 stat
->mode
= (inode
->i_mode
& S_IFMT
) | (attr
->mode
& 07777);
861 stat
->nlink
= attr
->nlink
;
862 stat
->uid
= make_kuid(&init_user_ns
, attr
->uid
);
863 stat
->gid
= make_kgid(&init_user_ns
, attr
->gid
);
864 stat
->rdev
= inode
->i_rdev
;
865 stat
->atime
.tv_sec
= attr
->atime
;
866 stat
->atime
.tv_nsec
= attr
->atimensec
;
867 stat
->mtime
.tv_sec
= attr
->mtime
;
868 stat
->mtime
.tv_nsec
= attr
->mtimensec
;
869 stat
->ctime
.tv_sec
= attr
->ctime
;
870 stat
->ctime
.tv_nsec
= attr
->ctimensec
;
871 stat
->size
= attr
->size
;
872 stat
->blocks
= attr
->blocks
;
874 if (attr
->blksize
!= 0)
875 blkbits
= ilog2(attr
->blksize
);
877 blkbits
= inode
->i_sb
->s_blocksize_bits
;
879 stat
->blksize
= 1 << blkbits
;
882 static int fuse_do_getattr(struct inode
*inode
, struct kstat
*stat
,
886 struct fuse_getattr_in inarg
;
887 struct fuse_attr_out outarg
;
888 struct fuse_conn
*fc
= get_fuse_conn(inode
);
889 struct fuse_req
*req
;
892 req
= fuse_get_req_nopages(fc
);
896 attr_version
= fuse_get_attr_version(fc
);
898 memset(&inarg
, 0, sizeof(inarg
));
899 memset(&outarg
, 0, sizeof(outarg
));
900 /* Directories have separate file-handle space */
901 if (file
&& S_ISREG(inode
->i_mode
)) {
902 struct fuse_file
*ff
= file
->private_data
;
904 inarg
.getattr_flags
|= FUSE_GETATTR_FH
;
907 req
->in
.h
.opcode
= FUSE_GETATTR
;
908 req
->in
.h
.nodeid
= get_node_id(inode
);
910 req
->in
.args
[0].size
= sizeof(inarg
);
911 req
->in
.args
[0].value
= &inarg
;
912 req
->out
.numargs
= 1;
914 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
916 req
->out
.args
[0].size
= sizeof(outarg
);
917 req
->out
.args
[0].value
= &outarg
;
918 fuse_request_send(fc
, req
);
919 err
= req
->out
.h
.error
;
920 fuse_put_request(fc
, req
);
922 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
923 make_bad_inode(inode
);
926 fuse_change_attributes(inode
, &outarg
.attr
,
927 attr_timeout(&outarg
),
930 fuse_fillattr(inode
, &outarg
.attr
, stat
);
936 int fuse_update_attributes(struct inode
*inode
, struct kstat
*stat
,
937 struct file
*file
, bool *refreshed
)
939 struct fuse_inode
*fi
= get_fuse_inode(inode
);
943 if (fi
->i_time
< get_jiffies_64()) {
945 err
= fuse_do_getattr(inode
, stat
, file
);
950 generic_fillattr(inode
, stat
);
951 stat
->mode
= fi
->orig_i_mode
;
952 stat
->ino
= fi
->orig_ino
;
956 if (refreshed
!= NULL
)
962 int fuse_reverse_inval_entry(struct super_block
*sb
, u64 parent_nodeid
,
963 u64 child_nodeid
, struct qstr
*name
)
966 struct inode
*parent
;
968 struct dentry
*entry
;
970 parent
= ilookup5(sb
, parent_nodeid
, fuse_inode_eq
, &parent_nodeid
);
974 mutex_lock(&parent
->i_mutex
);
975 if (!S_ISDIR(parent
->i_mode
))
979 dir
= d_find_alias(parent
);
983 entry
= d_lookup(dir
, name
);
988 fuse_invalidate_attr(parent
);
989 fuse_invalidate_entry(entry
);
991 if (child_nodeid
!= 0 && entry
->d_inode
) {
992 mutex_lock(&entry
->d_inode
->i_mutex
);
993 if (get_node_id(entry
->d_inode
) != child_nodeid
) {
997 if (d_mountpoint(entry
)) {
1001 if (S_ISDIR(entry
->d_inode
->i_mode
)) {
1002 shrink_dcache_parent(entry
);
1003 if (!simple_empty(entry
)) {
1007 entry
->d_inode
->i_flags
|= S_DEAD
;
1010 clear_nlink(entry
->d_inode
);
1013 mutex_unlock(&entry
->d_inode
->i_mutex
);
1022 mutex_unlock(&parent
->i_mutex
);
1028 * Calling into a user-controlled filesystem gives the filesystem
1029 * daemon ptrace-like capabilities over the current process. This
1030 * means, that the filesystem daemon is able to record the exact
1031 * filesystem operations performed, and can also control the behavior
1032 * of the requester process in otherwise impossible ways. For example
1033 * it can delay the operation for arbitrary length of time allowing
1034 * DoS against the requester.
1036 * For this reason only those processes can call into the filesystem,
1037 * for which the owner of the mount has ptrace privilege. This
1038 * excludes processes started by other users, suid or sgid processes.
1040 int fuse_allow_current_process(struct fuse_conn
*fc
)
1042 const struct cred
*cred
;
1044 if (fc
->flags
& FUSE_ALLOW_OTHER
)
1047 cred
= current_cred();
1048 if (uid_eq(cred
->euid
, fc
->user_id
) &&
1049 uid_eq(cred
->suid
, fc
->user_id
) &&
1050 uid_eq(cred
->uid
, fc
->user_id
) &&
1051 gid_eq(cred
->egid
, fc
->group_id
) &&
1052 gid_eq(cred
->sgid
, fc
->group_id
) &&
1053 gid_eq(cred
->gid
, fc
->group_id
))
1059 static int fuse_access(struct inode
*inode
, int mask
)
1061 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1062 struct fuse_req
*req
;
1063 struct fuse_access_in inarg
;
1069 req
= fuse_get_req_nopages(fc
);
1071 return PTR_ERR(req
);
1073 memset(&inarg
, 0, sizeof(inarg
));
1074 inarg
.mask
= mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
);
1075 req
->in
.h
.opcode
= FUSE_ACCESS
;
1076 req
->in
.h
.nodeid
= get_node_id(inode
);
1077 req
->in
.numargs
= 1;
1078 req
->in
.args
[0].size
= sizeof(inarg
);
1079 req
->in
.args
[0].value
= &inarg
;
1080 fuse_request_send(fc
, req
);
1081 err
= req
->out
.h
.error
;
1082 fuse_put_request(fc
, req
);
1083 if (err
== -ENOSYS
) {
1090 static int fuse_perm_getattr(struct inode
*inode
, int mask
)
1092 if (mask
& MAY_NOT_BLOCK
)
1095 return fuse_do_getattr(inode
, NULL
, NULL
);
1099 * Check permission. The two basic access models of FUSE are:
1101 * 1) Local access checking ('default_permissions' mount option) based
1102 * on file mode. This is the plain old disk filesystem permission
1105 * 2) "Remote" access checking, where server is responsible for
1106 * checking permission in each inode operation. An exception to this
1107 * is if ->permission() was invoked from sys_access() in which case an
1108 * access request is sent. Execute permission is still checked
1109 * locally based on file mode.
1111 static int fuse_permission(struct inode
*inode
, int mask
)
1113 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1114 bool refreshed
= false;
1117 if (!fuse_allow_current_process(fc
))
1121 * If attributes are needed, refresh them before proceeding
1123 if ((fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) ||
1124 ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
))) {
1125 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1127 if (fi
->i_time
< get_jiffies_64()) {
1130 err
= fuse_perm_getattr(inode
, mask
);
1136 if (fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) {
1137 err
= generic_permission(inode
, mask
);
1139 /* If permission is denied, try to refresh file
1140 attributes. This is also needed, because the root
1141 node will at first have no permissions */
1142 if (err
== -EACCES
&& !refreshed
) {
1143 err
= fuse_perm_getattr(inode
, mask
);
1145 err
= generic_permission(inode
, mask
);
1148 /* Note: the opposite of the above test does not
1149 exist. So if permissions are revoked this won't be
1150 noticed immediately, only after the attribute
1151 timeout has expired */
1152 } else if (mask
& (MAY_ACCESS
| MAY_CHDIR
)) {
1153 if (mask
& MAY_NOT_BLOCK
)
1156 err
= fuse_access(inode
, mask
);
1157 } else if ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
)) {
1158 if (!(inode
->i_mode
& S_IXUGO
)) {
1162 err
= fuse_perm_getattr(inode
, mask
);
1163 if (!err
&& !(inode
->i_mode
& S_IXUGO
))
1170 static int parse_dirfile(char *buf
, size_t nbytes
, struct file
*file
,
1171 struct dir_context
*ctx
)
1173 while (nbytes
>= FUSE_NAME_OFFSET
) {
1174 struct fuse_dirent
*dirent
= (struct fuse_dirent
*) buf
;
1175 size_t reclen
= FUSE_DIRENT_SIZE(dirent
);
1176 if (!dirent
->namelen
|| dirent
->namelen
> FUSE_NAME_MAX
)
1178 if (reclen
> nbytes
)
1180 if (memchr(dirent
->name
, '/', dirent
->namelen
) != NULL
)
1183 if (!dir_emit(ctx
, dirent
->name
, dirent
->namelen
,
1184 dirent
->ino
, dirent
->type
))
1189 ctx
->pos
= dirent
->off
;
1195 static int fuse_direntplus_link(struct file
*file
,
1196 struct fuse_direntplus
*direntplus
,
1200 struct fuse_entry_out
*o
= &direntplus
->entry_out
;
1201 struct fuse_dirent
*dirent
= &direntplus
->dirent
;
1202 struct dentry
*parent
= file
->f_path
.dentry
;
1203 struct qstr name
= QSTR_INIT(dirent
->name
, dirent
->namelen
);
1204 struct dentry
*dentry
;
1205 struct dentry
*alias
;
1206 struct inode
*dir
= parent
->d_inode
;
1207 struct fuse_conn
*fc
;
1208 struct inode
*inode
;
1212 * Unlike in the case of fuse_lookup, zero nodeid does not mean
1213 * ENOENT. Instead, it only means the userspace filesystem did
1214 * not want to return attributes/handle for this entry.
1221 if (name
.name
[0] == '.') {
1223 * We could potentially refresh the attributes of the directory
1228 if (name
.name
[1] == '.' && name
.len
== 2)
1232 if (invalid_nodeid(o
->nodeid
))
1234 if (!fuse_valid_type(o
->attr
.mode
))
1237 fc
= get_fuse_conn(dir
);
1239 name
.hash
= full_name_hash(name
.name
, name
.len
);
1240 dentry
= d_lookup(parent
, &name
);
1242 inode
= dentry
->d_inode
;
1245 } else if (get_node_id(inode
) != o
->nodeid
||
1246 ((o
->attr
.mode
^ inode
->i_mode
) & S_IFMT
)) {
1247 err
= d_invalidate(dentry
);
1250 } else if (is_bad_inode(inode
)) {
1254 struct fuse_inode
*fi
;
1255 fi
= get_fuse_inode(inode
);
1256 spin_lock(&fc
->lock
);
1258 spin_unlock(&fc
->lock
);
1260 fuse_change_attributes(inode
, &o
->attr
,
1261 entry_attr_timeout(o
),
1265 * The other branch to 'found' comes via fuse_iget()
1266 * which bumps nlookup inside
1273 dentry
= d_alloc(parent
, &name
);
1278 inode
= fuse_iget(dir
->i_sb
, o
->nodeid
, o
->generation
,
1279 &o
->attr
, entry_attr_timeout(o
), attr_version
);
1283 alias
= fuse_materialise_dentry(dentry
, inode
);
1284 err
= PTR_ERR(alias
);
1294 fuse_change_entry_timeout(dentry
, o
);
1302 static int parse_dirplusfile(char *buf
, size_t nbytes
, struct file
*file
,
1303 struct dir_context
*ctx
, u64 attr_version
)
1305 struct fuse_direntplus
*direntplus
;
1306 struct fuse_dirent
*dirent
;
1311 while (nbytes
>= FUSE_NAME_OFFSET_DIRENTPLUS
) {
1312 direntplus
= (struct fuse_direntplus
*) buf
;
1313 dirent
= &direntplus
->dirent
;
1314 reclen
= FUSE_DIRENTPLUS_SIZE(direntplus
);
1316 if (!dirent
->namelen
|| dirent
->namelen
> FUSE_NAME_MAX
)
1318 if (reclen
> nbytes
)
1320 if (memchr(dirent
->name
, '/', dirent
->namelen
) != NULL
)
1324 /* We fill entries into dstbuf only as much as
1325 it can hold. But we still continue iterating
1326 over remaining entries to link them. If not,
1327 we need to send a FORGET for each of those
1328 which we did not link.
1330 over
= !dir_emit(ctx
, dirent
->name
, dirent
->namelen
,
1331 dirent
->ino
, dirent
->type
);
1332 ctx
->pos
= dirent
->off
;
1338 ret
= fuse_direntplus_link(file
, direntplus
, attr_version
);
1340 fuse_force_forget(file
, direntplus
->entry_out
.nodeid
);
1346 static int fuse_readdir(struct file
*file
, struct dir_context
*ctx
)
1351 struct inode
*inode
= file_inode(file
);
1352 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1353 struct fuse_req
*req
;
1354 u64 attr_version
= 0;
1356 if (is_bad_inode(inode
))
1359 req
= fuse_get_req(fc
, 1);
1361 return PTR_ERR(req
);
1363 page
= alloc_page(GFP_KERNEL
);
1365 fuse_put_request(fc
, req
);
1369 plus
= fuse_use_readdirplus(inode
, ctx
);
1370 req
->out
.argpages
= 1;
1372 req
->pages
[0] = page
;
1373 req
->page_descs
[0].length
= PAGE_SIZE
;
1375 attr_version
= fuse_get_attr_version(fc
);
1376 fuse_read_fill(req
, file
, ctx
->pos
, PAGE_SIZE
,
1379 fuse_read_fill(req
, file
, ctx
->pos
, PAGE_SIZE
,
1382 fuse_request_send(fc
, req
);
1383 nbytes
= req
->out
.args
[0].size
;
1384 err
= req
->out
.h
.error
;
1385 fuse_put_request(fc
, req
);
1388 err
= parse_dirplusfile(page_address(page
), nbytes
,
1392 err
= parse_dirfile(page_address(page
), nbytes
, file
,
1398 fuse_invalidate_attr(inode
); /* atime changed */
1402 static char *read_link(struct dentry
*dentry
)
1404 struct inode
*inode
= dentry
->d_inode
;
1405 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1406 struct fuse_req
*req
= fuse_get_req_nopages(fc
);
1410 return ERR_CAST(req
);
1412 link
= (char *) __get_free_page(GFP_KERNEL
);
1414 link
= ERR_PTR(-ENOMEM
);
1417 req
->in
.h
.opcode
= FUSE_READLINK
;
1418 req
->in
.h
.nodeid
= get_node_id(inode
);
1419 req
->out
.argvar
= 1;
1420 req
->out
.numargs
= 1;
1421 req
->out
.args
[0].size
= PAGE_SIZE
- 1;
1422 req
->out
.args
[0].value
= link
;
1423 fuse_request_send(fc
, req
);
1424 if (req
->out
.h
.error
) {
1425 free_page((unsigned long) link
);
1426 link
= ERR_PTR(req
->out
.h
.error
);
1428 link
[req
->out
.args
[0].size
] = '\0';
1430 fuse_put_request(fc
, req
);
1431 fuse_invalidate_attr(inode
); /* atime changed */
1435 static void free_link(char *link
)
1438 free_page((unsigned long) link
);
1441 static void *fuse_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1443 nd_set_link(nd
, read_link(dentry
));
1447 static void fuse_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *c
)
1449 free_link(nd_get_link(nd
));
1452 static int fuse_dir_open(struct inode
*inode
, struct file
*file
)
1454 return fuse_open_common(inode
, file
, true);
1457 static int fuse_dir_release(struct inode
*inode
, struct file
*file
)
1459 fuse_release_common(file
, FUSE_RELEASEDIR
);
1464 static int fuse_dir_fsync(struct file
*file
, loff_t start
, loff_t end
,
1467 return fuse_fsync_common(file
, start
, end
, datasync
, 1);
1470 static long fuse_dir_ioctl(struct file
*file
, unsigned int cmd
,
1473 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1475 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1479 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_DIR
);
1482 static long fuse_dir_compat_ioctl(struct file
*file
, unsigned int cmd
,
1485 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1490 return fuse_ioctl_common(file
, cmd
, arg
,
1491 FUSE_IOCTL_COMPAT
| FUSE_IOCTL_DIR
);
1494 static bool update_mtime(unsigned ivalid
)
1496 /* Always update if mtime is explicitly set */
1497 if (ivalid
& ATTR_MTIME_SET
)
1500 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1501 if ((ivalid
& ATTR_SIZE
) && (ivalid
& (ATTR_OPEN
| ATTR_FILE
)))
1504 /* In all other cases update */
1508 static void iattr_to_fattr(struct iattr
*iattr
, struct fuse_setattr_in
*arg
)
1510 unsigned ivalid
= iattr
->ia_valid
;
1512 if (ivalid
& ATTR_MODE
)
1513 arg
->valid
|= FATTR_MODE
, arg
->mode
= iattr
->ia_mode
;
1514 if (ivalid
& ATTR_UID
)
1515 arg
->valid
|= FATTR_UID
, arg
->uid
= from_kuid(&init_user_ns
, iattr
->ia_uid
);
1516 if (ivalid
& ATTR_GID
)
1517 arg
->valid
|= FATTR_GID
, arg
->gid
= from_kgid(&init_user_ns
, iattr
->ia_gid
);
1518 if (ivalid
& ATTR_SIZE
)
1519 arg
->valid
|= FATTR_SIZE
, arg
->size
= iattr
->ia_size
;
1520 if (ivalid
& ATTR_ATIME
) {
1521 arg
->valid
|= FATTR_ATIME
;
1522 arg
->atime
= iattr
->ia_atime
.tv_sec
;
1523 arg
->atimensec
= iattr
->ia_atime
.tv_nsec
;
1524 if (!(ivalid
& ATTR_ATIME_SET
))
1525 arg
->valid
|= FATTR_ATIME_NOW
;
1527 if ((ivalid
& ATTR_MTIME
) && update_mtime(ivalid
)) {
1528 arg
->valid
|= FATTR_MTIME
;
1529 arg
->mtime
= iattr
->ia_mtime
.tv_sec
;
1530 arg
->mtimensec
= iattr
->ia_mtime
.tv_nsec
;
1531 if (!(ivalid
& ATTR_MTIME_SET
))
1532 arg
->valid
|= FATTR_MTIME_NOW
;
1537 * Prevent concurrent writepages on inode
1539 * This is done by adding a negative bias to the inode write counter
1540 * and waiting for all pending writes to finish.
1542 void fuse_set_nowrite(struct inode
*inode
)
1544 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1545 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1547 BUG_ON(!mutex_is_locked(&inode
->i_mutex
));
1549 spin_lock(&fc
->lock
);
1550 BUG_ON(fi
->writectr
< 0);
1551 fi
->writectr
+= FUSE_NOWRITE
;
1552 spin_unlock(&fc
->lock
);
1553 wait_event(fi
->page_waitq
, fi
->writectr
== FUSE_NOWRITE
);
1557 * Allow writepages on inode
1559 * Remove the bias from the writecounter and send any queued
1562 static void __fuse_release_nowrite(struct inode
*inode
)
1564 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1566 BUG_ON(fi
->writectr
!= FUSE_NOWRITE
);
1568 fuse_flush_writepages(inode
);
1571 void fuse_release_nowrite(struct inode
*inode
)
1573 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1575 spin_lock(&fc
->lock
);
1576 __fuse_release_nowrite(inode
);
1577 spin_unlock(&fc
->lock
);
1581 * Set attributes, and at the same time refresh them.
1583 * Truncation is slightly complicated, because the 'truncate' request
1584 * may fail, in which case we don't want to touch the mapping.
1585 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1586 * and the actual truncation by hand.
1588 int fuse_do_setattr(struct inode
*inode
, struct iattr
*attr
,
1591 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1592 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1593 struct fuse_req
*req
;
1594 struct fuse_setattr_in inarg
;
1595 struct fuse_attr_out outarg
;
1596 bool is_truncate
= false;
1600 if (!(fc
->flags
& FUSE_DEFAULT_PERMISSIONS
))
1601 attr
->ia_valid
|= ATTR_FORCE
;
1603 err
= inode_change_ok(inode
, attr
);
1607 if (attr
->ia_valid
& ATTR_OPEN
) {
1608 if (fc
->atomic_o_trunc
)
1613 if (attr
->ia_valid
& ATTR_SIZE
)
1616 req
= fuse_get_req_nopages(fc
);
1618 return PTR_ERR(req
);
1621 fuse_set_nowrite(inode
);
1622 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1625 memset(&inarg
, 0, sizeof(inarg
));
1626 memset(&outarg
, 0, sizeof(outarg
));
1627 iattr_to_fattr(attr
, &inarg
);
1629 struct fuse_file
*ff
= file
->private_data
;
1630 inarg
.valid
|= FATTR_FH
;
1633 if (attr
->ia_valid
& ATTR_SIZE
) {
1634 /* For mandatory locking in truncate */
1635 inarg
.valid
|= FATTR_LOCKOWNER
;
1636 inarg
.lock_owner
= fuse_lock_owner_id(fc
, current
->files
);
1638 req
->in
.h
.opcode
= FUSE_SETATTR
;
1639 req
->in
.h
.nodeid
= get_node_id(inode
);
1640 req
->in
.numargs
= 1;
1641 req
->in
.args
[0].size
= sizeof(inarg
);
1642 req
->in
.args
[0].value
= &inarg
;
1643 req
->out
.numargs
= 1;
1645 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
1647 req
->out
.args
[0].size
= sizeof(outarg
);
1648 req
->out
.args
[0].value
= &outarg
;
1649 fuse_request_send(fc
, req
);
1650 err
= req
->out
.h
.error
;
1651 fuse_put_request(fc
, req
);
1654 fuse_invalidate_attr(inode
);
1658 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
1659 make_bad_inode(inode
);
1664 spin_lock(&fc
->lock
);
1665 fuse_change_attributes_common(inode
, &outarg
.attr
,
1666 attr_timeout(&outarg
));
1667 oldsize
= inode
->i_size
;
1668 i_size_write(inode
, outarg
.attr
.size
);
1671 /* NOTE: this may release/reacquire fc->lock */
1672 __fuse_release_nowrite(inode
);
1674 spin_unlock(&fc
->lock
);
1677 * Only call invalidate_inode_pages2() after removing
1678 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1680 if (S_ISREG(inode
->i_mode
) && oldsize
!= outarg
.attr
.size
) {
1681 truncate_pagecache(inode
, outarg
.attr
.size
);
1682 invalidate_inode_pages2(inode
->i_mapping
);
1685 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1690 fuse_release_nowrite(inode
);
1692 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1696 static int fuse_setattr(struct dentry
*entry
, struct iattr
*attr
)
1698 struct inode
*inode
= entry
->d_inode
;
1700 if (!fuse_allow_current_process(get_fuse_conn(inode
)))
1703 if (attr
->ia_valid
& ATTR_FILE
)
1704 return fuse_do_setattr(inode
, attr
, attr
->ia_file
);
1706 return fuse_do_setattr(inode
, attr
, NULL
);
1709 static int fuse_getattr(struct vfsmount
*mnt
, struct dentry
*entry
,
1712 struct inode
*inode
= entry
->d_inode
;
1713 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1715 if (!fuse_allow_current_process(fc
))
1718 return fuse_update_attributes(inode
, stat
, NULL
, NULL
);
1721 static int fuse_setxattr(struct dentry
*entry
, const char *name
,
1722 const void *value
, size_t size
, int flags
)
1724 struct inode
*inode
= entry
->d_inode
;
1725 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1726 struct fuse_req
*req
;
1727 struct fuse_setxattr_in inarg
;
1730 if (fc
->no_setxattr
)
1733 req
= fuse_get_req_nopages(fc
);
1735 return PTR_ERR(req
);
1737 memset(&inarg
, 0, sizeof(inarg
));
1739 inarg
.flags
= flags
;
1740 req
->in
.h
.opcode
= FUSE_SETXATTR
;
1741 req
->in
.h
.nodeid
= get_node_id(inode
);
1742 req
->in
.numargs
= 3;
1743 req
->in
.args
[0].size
= sizeof(inarg
);
1744 req
->in
.args
[0].value
= &inarg
;
1745 req
->in
.args
[1].size
= strlen(name
) + 1;
1746 req
->in
.args
[1].value
= name
;
1747 req
->in
.args
[2].size
= size
;
1748 req
->in
.args
[2].value
= value
;
1749 fuse_request_send(fc
, req
);
1750 err
= req
->out
.h
.error
;
1751 fuse_put_request(fc
, req
);
1752 if (err
== -ENOSYS
) {
1753 fc
->no_setxattr
= 1;
1757 fuse_invalidate_attr(inode
);
1761 static ssize_t
fuse_getxattr(struct dentry
*entry
, const char *name
,
1762 void *value
, size_t size
)
1764 struct inode
*inode
= entry
->d_inode
;
1765 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1766 struct fuse_req
*req
;
1767 struct fuse_getxattr_in inarg
;
1768 struct fuse_getxattr_out outarg
;
1771 if (fc
->no_getxattr
)
1774 req
= fuse_get_req_nopages(fc
);
1776 return PTR_ERR(req
);
1778 memset(&inarg
, 0, sizeof(inarg
));
1780 req
->in
.h
.opcode
= FUSE_GETXATTR
;
1781 req
->in
.h
.nodeid
= get_node_id(inode
);
1782 req
->in
.numargs
= 2;
1783 req
->in
.args
[0].size
= sizeof(inarg
);
1784 req
->in
.args
[0].value
= &inarg
;
1785 req
->in
.args
[1].size
= strlen(name
) + 1;
1786 req
->in
.args
[1].value
= name
;
1787 /* This is really two different operations rolled into one */
1788 req
->out
.numargs
= 1;
1790 req
->out
.argvar
= 1;
1791 req
->out
.args
[0].size
= size
;
1792 req
->out
.args
[0].value
= value
;
1794 req
->out
.args
[0].size
= sizeof(outarg
);
1795 req
->out
.args
[0].value
= &outarg
;
1797 fuse_request_send(fc
, req
);
1798 ret
= req
->out
.h
.error
;
1800 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1802 if (ret
== -ENOSYS
) {
1803 fc
->no_getxattr
= 1;
1807 fuse_put_request(fc
, req
);
1811 static ssize_t
fuse_listxattr(struct dentry
*entry
, char *list
, size_t size
)
1813 struct inode
*inode
= entry
->d_inode
;
1814 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1815 struct fuse_req
*req
;
1816 struct fuse_getxattr_in inarg
;
1817 struct fuse_getxattr_out outarg
;
1820 if (!fuse_allow_current_process(fc
))
1823 if (fc
->no_listxattr
)
1826 req
= fuse_get_req_nopages(fc
);
1828 return PTR_ERR(req
);
1830 memset(&inarg
, 0, sizeof(inarg
));
1832 req
->in
.h
.opcode
= FUSE_LISTXATTR
;
1833 req
->in
.h
.nodeid
= get_node_id(inode
);
1834 req
->in
.numargs
= 1;
1835 req
->in
.args
[0].size
= sizeof(inarg
);
1836 req
->in
.args
[0].value
= &inarg
;
1837 /* This is really two different operations rolled into one */
1838 req
->out
.numargs
= 1;
1840 req
->out
.argvar
= 1;
1841 req
->out
.args
[0].size
= size
;
1842 req
->out
.args
[0].value
= list
;
1844 req
->out
.args
[0].size
= sizeof(outarg
);
1845 req
->out
.args
[0].value
= &outarg
;
1847 fuse_request_send(fc
, req
);
1848 ret
= req
->out
.h
.error
;
1850 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1852 if (ret
== -ENOSYS
) {
1853 fc
->no_listxattr
= 1;
1857 fuse_put_request(fc
, req
);
1861 static int fuse_removexattr(struct dentry
*entry
, const char *name
)
1863 struct inode
*inode
= entry
->d_inode
;
1864 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1865 struct fuse_req
*req
;
1868 if (fc
->no_removexattr
)
1871 req
= fuse_get_req_nopages(fc
);
1873 return PTR_ERR(req
);
1875 req
->in
.h
.opcode
= FUSE_REMOVEXATTR
;
1876 req
->in
.h
.nodeid
= get_node_id(inode
);
1877 req
->in
.numargs
= 1;
1878 req
->in
.args
[0].size
= strlen(name
) + 1;
1879 req
->in
.args
[0].value
= name
;
1880 fuse_request_send(fc
, req
);
1881 err
= req
->out
.h
.error
;
1882 fuse_put_request(fc
, req
);
1883 if (err
== -ENOSYS
) {
1884 fc
->no_removexattr
= 1;
1888 fuse_invalidate_attr(inode
);
1892 static const struct inode_operations fuse_dir_inode_operations
= {
1893 .lookup
= fuse_lookup
,
1894 .mkdir
= fuse_mkdir
,
1895 .symlink
= fuse_symlink
,
1896 .unlink
= fuse_unlink
,
1897 .rmdir
= fuse_rmdir
,
1898 .rename
= fuse_rename
,
1900 .setattr
= fuse_setattr
,
1901 .create
= fuse_create
,
1902 .atomic_open
= fuse_atomic_open
,
1903 .mknod
= fuse_mknod
,
1904 .permission
= fuse_permission
,
1905 .getattr
= fuse_getattr
,
1906 .setxattr
= fuse_setxattr
,
1907 .getxattr
= fuse_getxattr
,
1908 .listxattr
= fuse_listxattr
,
1909 .removexattr
= fuse_removexattr
,
1912 static const struct file_operations fuse_dir_operations
= {
1913 .llseek
= generic_file_llseek
,
1914 .read
= generic_read_dir
,
1915 .iterate
= fuse_readdir
,
1916 .open
= fuse_dir_open
,
1917 .release
= fuse_dir_release
,
1918 .fsync
= fuse_dir_fsync
,
1919 .unlocked_ioctl
= fuse_dir_ioctl
,
1920 .compat_ioctl
= fuse_dir_compat_ioctl
,
1923 static const struct inode_operations fuse_common_inode_operations
= {
1924 .setattr
= fuse_setattr
,
1925 .permission
= fuse_permission
,
1926 .getattr
= fuse_getattr
,
1927 .setxattr
= fuse_setxattr
,
1928 .getxattr
= fuse_getxattr
,
1929 .listxattr
= fuse_listxattr
,
1930 .removexattr
= fuse_removexattr
,
1933 static const struct inode_operations fuse_symlink_inode_operations
= {
1934 .setattr
= fuse_setattr
,
1935 .follow_link
= fuse_follow_link
,
1936 .put_link
= fuse_put_link
,
1937 .readlink
= generic_readlink
,
1938 .getattr
= fuse_getattr
,
1939 .setxattr
= fuse_setxattr
,
1940 .getxattr
= fuse_getxattr
,
1941 .listxattr
= fuse_listxattr
,
1942 .removexattr
= fuse_removexattr
,
1945 void fuse_init_common(struct inode
*inode
)
1947 inode
->i_op
= &fuse_common_inode_operations
;
1950 void fuse_init_dir(struct inode
*inode
)
1952 inode
->i_op
= &fuse_dir_inode_operations
;
1953 inode
->i_fop
= &fuse_dir_operations
;
1956 void fuse_init_symlink(struct inode
*inode
)
1958 inode
->i_op
= &fuse_symlink_inode_operations
;