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 #if BITS_PER_LONG >= 64
18 static inline void fuse_dentry_settime(struct dentry
*entry
, u64 time
)
23 static inline u64
fuse_dentry_time(struct dentry
*entry
)
29 * On 32 bit archs store the high 32 bits of time in d_fsdata
31 static void fuse_dentry_settime(struct dentry
*entry
, u64 time
)
34 entry
->d_fsdata
= (void *) (unsigned long) (time
>> 32);
37 static u64
fuse_dentry_time(struct dentry
*entry
)
39 return (u64
) entry
->d_time
+
40 ((u64
) (unsigned long) entry
->d_fsdata
<< 32);
45 * FUSE caches dentries and attributes with separate timeout. The
46 * time in jiffies until the dentry/attributes are valid is stored in
47 * dentry->d_time and fuse_inode->i_time respectively.
51 * Calculate the time in jiffies until a dentry/attributes are valid
53 static u64
time_to_jiffies(unsigned long sec
, unsigned long nsec
)
56 struct timespec ts
= {sec
, nsec
};
57 return get_jiffies_64() + timespec_to_jiffies(&ts
);
63 * Set dentry and possibly attribute timeouts from the lookup/mk*
66 static void fuse_change_entry_timeout(struct dentry
*entry
,
67 struct fuse_entry_out
*o
)
69 fuse_dentry_settime(entry
,
70 time_to_jiffies(o
->entry_valid
, o
->entry_valid_nsec
));
73 static u64
attr_timeout(struct fuse_attr_out
*o
)
75 return time_to_jiffies(o
->attr_valid
, o
->attr_valid_nsec
);
78 static u64
entry_attr_timeout(struct fuse_entry_out
*o
)
80 return time_to_jiffies(o
->attr_valid
, o
->attr_valid_nsec
);
84 * Mark the attributes as stale, so that at the next call to
85 * ->getattr() they will be fetched from userspace
87 void fuse_invalidate_attr(struct inode
*inode
)
89 get_fuse_inode(inode
)->i_time
= 0;
93 * Just mark the entry as stale, so that a next attempt to look it up
94 * will result in a new lookup call to userspace
96 * This is called when a dentry is about to become negative and the
97 * timeout is unknown (unlink, rmdir, rename and in some cases
100 void fuse_invalidate_entry_cache(struct dentry
*entry
)
102 fuse_dentry_settime(entry
, 0);
106 * Same as fuse_invalidate_entry_cache(), but also try to remove the
107 * dentry from the hash
109 static void fuse_invalidate_entry(struct dentry
*entry
)
112 fuse_invalidate_entry_cache(entry
);
115 static void fuse_lookup_init(struct fuse_conn
*fc
, struct fuse_req
*req
,
116 u64 nodeid
, struct qstr
*name
,
117 struct fuse_entry_out
*outarg
)
119 memset(outarg
, 0, sizeof(struct fuse_entry_out
));
120 req
->in
.h
.opcode
= FUSE_LOOKUP
;
121 req
->in
.h
.nodeid
= nodeid
;
123 req
->in
.args
[0].size
= name
->len
+ 1;
124 req
->in
.args
[0].value
= name
->name
;
125 req
->out
.numargs
= 1;
127 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
129 req
->out
.args
[0].size
= sizeof(struct fuse_entry_out
);
130 req
->out
.args
[0].value
= outarg
;
133 u64
fuse_get_attr_version(struct fuse_conn
*fc
)
138 * The spin lock isn't actually needed on 64bit archs, but we
139 * don't yet care too much about such optimizations.
141 spin_lock(&fc
->lock
);
142 curr_version
= fc
->attr_version
;
143 spin_unlock(&fc
->lock
);
149 * Check whether the dentry is still valid
151 * If the entry validity timeout has expired and the dentry is
152 * positive, try to redo the lookup. If the lookup results in a
153 * different inode, then let the VFS invalidate the dentry and redo
154 * the lookup once more. If the lookup results in the same inode,
155 * then refresh the attributes, timeouts and mark the dentry valid.
157 static int fuse_dentry_revalidate(struct dentry
*entry
, struct nameidata
*nd
)
161 inode
= ACCESS_ONCE(entry
->d_inode
);
162 if (inode
&& is_bad_inode(inode
))
164 else if (fuse_dentry_time(entry
) < get_jiffies_64()) {
166 struct fuse_entry_out outarg
;
167 struct fuse_conn
*fc
;
168 struct fuse_req
*req
;
169 struct fuse_forget_link
*forget
;
170 struct dentry
*parent
;
173 /* For negative dentries, always do a fresh lookup */
177 if (nd
&& (nd
->flags
& LOOKUP_RCU
))
180 fc
= get_fuse_conn(inode
);
181 req
= fuse_get_req(fc
);
185 forget
= fuse_alloc_forget();
187 fuse_put_request(fc
, req
);
191 attr_version
= fuse_get_attr_version(fc
);
193 parent
= dget_parent(entry
);
194 fuse_lookup_init(fc
, req
, get_node_id(parent
->d_inode
),
195 &entry
->d_name
, &outarg
);
196 fuse_request_send(fc
, req
);
198 err
= req
->out
.h
.error
;
199 fuse_put_request(fc
, req
);
200 /* Zero nodeid is same as -ENOENT */
201 if (!err
&& !outarg
.nodeid
)
204 struct fuse_inode
*fi
= get_fuse_inode(inode
);
205 if (outarg
.nodeid
!= get_node_id(inode
)) {
206 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
209 spin_lock(&fc
->lock
);
211 spin_unlock(&fc
->lock
);
214 if (err
|| (outarg
.attr
.mode
^ inode
->i_mode
) & S_IFMT
)
217 fuse_change_attributes(inode
, &outarg
.attr
,
218 entry_attr_timeout(&outarg
),
220 fuse_change_entry_timeout(entry
, &outarg
);
225 static int invalid_nodeid(u64 nodeid
)
227 return !nodeid
|| nodeid
== FUSE_ROOT_ID
;
230 const struct dentry_operations fuse_dentry_operations
= {
231 .d_revalidate
= fuse_dentry_revalidate
,
234 int fuse_valid_type(int m
)
236 return S_ISREG(m
) || S_ISDIR(m
) || S_ISLNK(m
) || S_ISCHR(m
) ||
237 S_ISBLK(m
) || S_ISFIFO(m
) || S_ISSOCK(m
);
241 * Add a directory inode to a dentry, ensuring that no other dentry
242 * refers to this inode. Called with fc->inst_mutex.
244 static struct dentry
*fuse_d_add_directory(struct dentry
*entry
,
247 struct dentry
*alias
= d_find_alias(inode
);
248 if (alias
&& !(alias
->d_flags
& DCACHE_DISCONNECTED
)) {
249 /* This tries to shrink the subtree below alias */
250 fuse_invalidate_entry(alias
);
252 if (!list_empty(&inode
->i_dentry
))
253 return ERR_PTR(-EBUSY
);
257 return d_splice_alias(inode
, entry
);
260 int fuse_lookup_name(struct super_block
*sb
, u64 nodeid
, struct qstr
*name
,
261 struct fuse_entry_out
*outarg
, struct inode
**inode
)
263 struct fuse_conn
*fc
= get_fuse_conn_super(sb
);
264 struct fuse_req
*req
;
265 struct fuse_forget_link
*forget
;
271 if (name
->len
> FUSE_NAME_MAX
)
274 req
= fuse_get_req(fc
);
279 forget
= fuse_alloc_forget();
282 fuse_put_request(fc
, req
);
286 attr_version
= fuse_get_attr_version(fc
);
288 fuse_lookup_init(fc
, req
, nodeid
, name
, outarg
);
289 fuse_request_send(fc
, req
);
290 err
= req
->out
.h
.error
;
291 fuse_put_request(fc
, req
);
292 /* Zero nodeid is same as -ENOENT, but with valid timeout */
293 if (err
|| !outarg
->nodeid
)
299 if (!fuse_valid_type(outarg
->attr
.mode
))
302 *inode
= fuse_iget(sb
, outarg
->nodeid
, outarg
->generation
,
303 &outarg
->attr
, entry_attr_timeout(outarg
),
307 fuse_queue_forget(fc
, forget
, outarg
->nodeid
, 1);
318 static struct dentry
*fuse_lookup(struct inode
*dir
, struct dentry
*entry
,
319 struct nameidata
*nd
)
322 struct fuse_entry_out outarg
;
324 struct dentry
*newent
;
325 struct fuse_conn
*fc
= get_fuse_conn(dir
);
326 bool outarg_valid
= true;
328 err
= fuse_lookup_name(dir
->i_sb
, get_node_id(dir
), &entry
->d_name
,
330 if (err
== -ENOENT
) {
331 outarg_valid
= false;
338 if (inode
&& get_node_id(inode
) == FUSE_ROOT_ID
)
341 if (inode
&& S_ISDIR(inode
->i_mode
)) {
342 mutex_lock(&fc
->inst_mutex
);
343 newent
= fuse_d_add_directory(entry
, inode
);
344 mutex_unlock(&fc
->inst_mutex
);
345 err
= PTR_ERR(newent
);
349 newent
= d_splice_alias(inode
, entry
);
352 entry
= newent
? newent
: entry
;
354 fuse_change_entry_timeout(entry
, &outarg
);
356 fuse_invalidate_entry_cache(entry
);
367 * Atomic create+open operation
369 * If the filesystem doesn't support this, then fall back to separate
370 * 'mknod' + 'open' requests.
372 static int fuse_create_open(struct inode
*dir
, struct dentry
*entry
,
373 umode_t mode
, struct nameidata
*nd
)
377 struct fuse_conn
*fc
= get_fuse_conn(dir
);
378 struct fuse_req
*req
;
379 struct fuse_forget_link
*forget
;
380 struct fuse_create_in inarg
;
381 struct fuse_open_out outopen
;
382 struct fuse_entry_out outentry
;
383 struct fuse_file
*ff
;
385 int flags
= nd
->intent
.open
.flags
;
390 if (flags
& O_DIRECT
)
393 forget
= fuse_alloc_forget();
397 req
= fuse_get_req(fc
);
400 goto out_put_forget_req
;
403 ff
= fuse_file_alloc(fc
);
405 goto out_put_request
;
408 mode
&= ~current_umask();
411 memset(&inarg
, 0, sizeof(inarg
));
412 memset(&outentry
, 0, sizeof(outentry
));
415 inarg
.umask
= current_umask();
416 req
->in
.h
.opcode
= FUSE_CREATE
;
417 req
->in
.h
.nodeid
= get_node_id(dir
);
419 req
->in
.args
[0].size
= fc
->minor
< 12 ? sizeof(struct fuse_open_in
) :
421 req
->in
.args
[0].value
= &inarg
;
422 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
423 req
->in
.args
[1].value
= entry
->d_name
.name
;
424 req
->out
.numargs
= 2;
426 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
428 req
->out
.args
[0].size
= sizeof(outentry
);
429 req
->out
.args
[0].value
= &outentry
;
430 req
->out
.args
[1].size
= sizeof(outopen
);
431 req
->out
.args
[1].value
= &outopen
;
432 fuse_request_send(fc
, req
);
433 err
= req
->out
.h
.error
;
441 if (!S_ISREG(outentry
.attr
.mode
) || invalid_nodeid(outentry
.nodeid
))
444 fuse_put_request(fc
, req
);
446 ff
->nodeid
= outentry
.nodeid
;
447 ff
->open_flags
= outopen
.open_flags
;
448 inode
= fuse_iget(dir
->i_sb
, outentry
.nodeid
, outentry
.generation
,
449 &outentry
.attr
, entry_attr_timeout(&outentry
), 0);
451 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
452 fuse_sync_release(ff
, flags
);
453 fuse_queue_forget(fc
, forget
, outentry
.nodeid
, 1);
457 d_instantiate(entry
, inode
);
458 fuse_change_entry_timeout(entry
, &outentry
);
459 fuse_invalidate_attr(dir
);
460 file
= lookup_instantiate_filp(nd
, entry
, generic_file_open
);
462 fuse_sync_release(ff
, flags
);
463 return PTR_ERR(file
);
465 file
->private_data
= fuse_file_get(ff
);
466 fuse_finish_open(inode
, file
);
472 fuse_put_request(fc
, req
);
479 * Code shared between mknod, mkdir, symlink and link
481 static int create_new_entry(struct fuse_conn
*fc
, struct fuse_req
*req
,
482 struct inode
*dir
, struct dentry
*entry
,
485 struct fuse_entry_out outarg
;
488 struct fuse_forget_link
*forget
;
490 forget
= fuse_alloc_forget();
492 fuse_put_request(fc
, req
);
496 memset(&outarg
, 0, sizeof(outarg
));
497 req
->in
.h
.nodeid
= get_node_id(dir
);
498 req
->out
.numargs
= 1;
500 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
502 req
->out
.args
[0].size
= sizeof(outarg
);
503 req
->out
.args
[0].value
= &outarg
;
504 fuse_request_send(fc
, req
);
505 err
= req
->out
.h
.error
;
506 fuse_put_request(fc
, req
);
508 goto out_put_forget_req
;
511 if (invalid_nodeid(outarg
.nodeid
))
512 goto out_put_forget_req
;
514 if ((outarg
.attr
.mode
^ mode
) & S_IFMT
)
515 goto out_put_forget_req
;
517 inode
= fuse_iget(dir
->i_sb
, outarg
.nodeid
, outarg
.generation
,
518 &outarg
.attr
, entry_attr_timeout(&outarg
), 0);
520 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
525 if (S_ISDIR(inode
->i_mode
)) {
526 struct dentry
*alias
;
527 mutex_lock(&fc
->inst_mutex
);
528 alias
= d_find_alias(inode
);
530 /* New directory must have moved since mkdir */
531 mutex_unlock(&fc
->inst_mutex
);
536 d_instantiate(entry
, inode
);
537 mutex_unlock(&fc
->inst_mutex
);
539 d_instantiate(entry
, inode
);
541 fuse_change_entry_timeout(entry
, &outarg
);
542 fuse_invalidate_attr(dir
);
550 static int fuse_mknod(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
553 struct fuse_mknod_in inarg
;
554 struct fuse_conn
*fc
= get_fuse_conn(dir
);
555 struct fuse_req
*req
= fuse_get_req(fc
);
560 mode
&= ~current_umask();
562 memset(&inarg
, 0, sizeof(inarg
));
564 inarg
.rdev
= new_encode_dev(rdev
);
565 inarg
.umask
= current_umask();
566 req
->in
.h
.opcode
= FUSE_MKNOD
;
568 req
->in
.args
[0].size
= fc
->minor
< 12 ? FUSE_COMPAT_MKNOD_IN_SIZE
:
570 req
->in
.args
[0].value
= &inarg
;
571 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
572 req
->in
.args
[1].value
= entry
->d_name
.name
;
573 return create_new_entry(fc
, req
, dir
, entry
, mode
);
576 static int fuse_create(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
577 struct nameidata
*nd
)
580 int err
= fuse_create_open(dir
, entry
, mode
, nd
);
583 /* Fall back on mknod */
585 return fuse_mknod(dir
, entry
, mode
, 0);
588 static int fuse_mkdir(struct inode
*dir
, struct dentry
*entry
, umode_t mode
)
590 struct fuse_mkdir_in inarg
;
591 struct fuse_conn
*fc
= get_fuse_conn(dir
);
592 struct fuse_req
*req
= fuse_get_req(fc
);
597 mode
&= ~current_umask();
599 memset(&inarg
, 0, sizeof(inarg
));
601 inarg
.umask
= current_umask();
602 req
->in
.h
.opcode
= FUSE_MKDIR
;
604 req
->in
.args
[0].size
= sizeof(inarg
);
605 req
->in
.args
[0].value
= &inarg
;
606 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
607 req
->in
.args
[1].value
= entry
->d_name
.name
;
608 return create_new_entry(fc
, req
, dir
, entry
, S_IFDIR
);
611 static int fuse_symlink(struct inode
*dir
, struct dentry
*entry
,
614 struct fuse_conn
*fc
= get_fuse_conn(dir
);
615 unsigned len
= strlen(link
) + 1;
616 struct fuse_req
*req
= fuse_get_req(fc
);
620 req
->in
.h
.opcode
= FUSE_SYMLINK
;
622 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
623 req
->in
.args
[0].value
= entry
->d_name
.name
;
624 req
->in
.args
[1].size
= len
;
625 req
->in
.args
[1].value
= link
;
626 return create_new_entry(fc
, req
, dir
, entry
, S_IFLNK
);
629 static int fuse_unlink(struct inode
*dir
, struct dentry
*entry
)
632 struct fuse_conn
*fc
= get_fuse_conn(dir
);
633 struct fuse_req
*req
= fuse_get_req(fc
);
637 req
->in
.h
.opcode
= FUSE_UNLINK
;
638 req
->in
.h
.nodeid
= get_node_id(dir
);
640 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
641 req
->in
.args
[0].value
= entry
->d_name
.name
;
642 fuse_request_send(fc
, req
);
643 err
= req
->out
.h
.error
;
644 fuse_put_request(fc
, req
);
646 struct inode
*inode
= entry
->d_inode
;
649 * Set nlink to zero so the inode can be cleared, if the inode
650 * does have more links this will be discovered at the next
654 fuse_invalidate_attr(inode
);
655 fuse_invalidate_attr(dir
);
656 fuse_invalidate_entry_cache(entry
);
657 } else if (err
== -EINTR
)
658 fuse_invalidate_entry(entry
);
662 static int fuse_rmdir(struct inode
*dir
, struct dentry
*entry
)
665 struct fuse_conn
*fc
= get_fuse_conn(dir
);
666 struct fuse_req
*req
= fuse_get_req(fc
);
670 req
->in
.h
.opcode
= FUSE_RMDIR
;
671 req
->in
.h
.nodeid
= get_node_id(dir
);
673 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
674 req
->in
.args
[0].value
= entry
->d_name
.name
;
675 fuse_request_send(fc
, req
);
676 err
= req
->out
.h
.error
;
677 fuse_put_request(fc
, req
);
679 clear_nlink(entry
->d_inode
);
680 fuse_invalidate_attr(dir
);
681 fuse_invalidate_entry_cache(entry
);
682 } else if (err
== -EINTR
)
683 fuse_invalidate_entry(entry
);
687 static int fuse_rename(struct inode
*olddir
, struct dentry
*oldent
,
688 struct inode
*newdir
, struct dentry
*newent
)
691 struct fuse_rename_in inarg
;
692 struct fuse_conn
*fc
= get_fuse_conn(olddir
);
693 struct fuse_req
*req
= fuse_get_req(fc
);
698 memset(&inarg
, 0, sizeof(inarg
));
699 inarg
.newdir
= get_node_id(newdir
);
700 req
->in
.h
.opcode
= FUSE_RENAME
;
701 req
->in
.h
.nodeid
= get_node_id(olddir
);
703 req
->in
.args
[0].size
= sizeof(inarg
);
704 req
->in
.args
[0].value
= &inarg
;
705 req
->in
.args
[1].size
= oldent
->d_name
.len
+ 1;
706 req
->in
.args
[1].value
= oldent
->d_name
.name
;
707 req
->in
.args
[2].size
= newent
->d_name
.len
+ 1;
708 req
->in
.args
[2].value
= newent
->d_name
.name
;
709 fuse_request_send(fc
, req
);
710 err
= req
->out
.h
.error
;
711 fuse_put_request(fc
, req
);
714 fuse_invalidate_attr(oldent
->d_inode
);
716 fuse_invalidate_attr(olddir
);
717 if (olddir
!= newdir
)
718 fuse_invalidate_attr(newdir
);
720 /* newent will end up negative */
721 if (newent
->d_inode
) {
722 fuse_invalidate_attr(newent
->d_inode
);
723 fuse_invalidate_entry_cache(newent
);
725 } else if (err
== -EINTR
) {
726 /* If request was interrupted, DEITY only knows if the
727 rename actually took place. If the invalidation
728 fails (e.g. some process has CWD under the renamed
729 directory), then there can be inconsistency between
730 the dcache and the real filesystem. Tough luck. */
731 fuse_invalidate_entry(oldent
);
733 fuse_invalidate_entry(newent
);
739 static int fuse_link(struct dentry
*entry
, struct inode
*newdir
,
740 struct dentry
*newent
)
743 struct fuse_link_in inarg
;
744 struct inode
*inode
= entry
->d_inode
;
745 struct fuse_conn
*fc
= get_fuse_conn(inode
);
746 struct fuse_req
*req
= fuse_get_req(fc
);
750 memset(&inarg
, 0, sizeof(inarg
));
751 inarg
.oldnodeid
= get_node_id(inode
);
752 req
->in
.h
.opcode
= FUSE_LINK
;
754 req
->in
.args
[0].size
= sizeof(inarg
);
755 req
->in
.args
[0].value
= &inarg
;
756 req
->in
.args
[1].size
= newent
->d_name
.len
+ 1;
757 req
->in
.args
[1].value
= newent
->d_name
.name
;
758 err
= create_new_entry(fc
, req
, newdir
, newent
, inode
->i_mode
);
759 /* Contrary to "normal" filesystems it can happen that link
760 makes two "logical" inodes point to the same "physical"
761 inode. We invalidate the attributes of the old one, so it
762 will reflect changes in the backing inode (link count,
765 if (!err
|| err
== -EINTR
)
766 fuse_invalidate_attr(inode
);
770 static void fuse_fillattr(struct inode
*inode
, struct fuse_attr
*attr
,
773 stat
->dev
= inode
->i_sb
->s_dev
;
774 stat
->ino
= attr
->ino
;
775 stat
->mode
= (inode
->i_mode
& S_IFMT
) | (attr
->mode
& 07777);
776 stat
->nlink
= attr
->nlink
;
777 stat
->uid
= attr
->uid
;
778 stat
->gid
= attr
->gid
;
779 stat
->rdev
= inode
->i_rdev
;
780 stat
->atime
.tv_sec
= attr
->atime
;
781 stat
->atime
.tv_nsec
= attr
->atimensec
;
782 stat
->mtime
.tv_sec
= attr
->mtime
;
783 stat
->mtime
.tv_nsec
= attr
->mtimensec
;
784 stat
->ctime
.tv_sec
= attr
->ctime
;
785 stat
->ctime
.tv_nsec
= attr
->ctimensec
;
786 stat
->size
= attr
->size
;
787 stat
->blocks
= attr
->blocks
;
788 stat
->blksize
= (1 << inode
->i_blkbits
);
791 static int fuse_do_getattr(struct inode
*inode
, struct kstat
*stat
,
795 struct fuse_getattr_in inarg
;
796 struct fuse_attr_out outarg
;
797 struct fuse_conn
*fc
= get_fuse_conn(inode
);
798 struct fuse_req
*req
;
801 req
= fuse_get_req(fc
);
805 attr_version
= fuse_get_attr_version(fc
);
807 memset(&inarg
, 0, sizeof(inarg
));
808 memset(&outarg
, 0, sizeof(outarg
));
809 /* Directories have separate file-handle space */
810 if (file
&& S_ISREG(inode
->i_mode
)) {
811 struct fuse_file
*ff
= file
->private_data
;
813 inarg
.getattr_flags
|= FUSE_GETATTR_FH
;
816 req
->in
.h
.opcode
= FUSE_GETATTR
;
817 req
->in
.h
.nodeid
= get_node_id(inode
);
819 req
->in
.args
[0].size
= sizeof(inarg
);
820 req
->in
.args
[0].value
= &inarg
;
821 req
->out
.numargs
= 1;
823 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
825 req
->out
.args
[0].size
= sizeof(outarg
);
826 req
->out
.args
[0].value
= &outarg
;
827 fuse_request_send(fc
, req
);
828 err
= req
->out
.h
.error
;
829 fuse_put_request(fc
, req
);
831 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
832 make_bad_inode(inode
);
835 fuse_change_attributes(inode
, &outarg
.attr
,
836 attr_timeout(&outarg
),
839 fuse_fillattr(inode
, &outarg
.attr
, stat
);
845 int fuse_update_attributes(struct inode
*inode
, struct kstat
*stat
,
846 struct file
*file
, bool *refreshed
)
848 struct fuse_inode
*fi
= get_fuse_inode(inode
);
852 if (fi
->i_time
< get_jiffies_64()) {
854 err
= fuse_do_getattr(inode
, stat
, file
);
859 generic_fillattr(inode
, stat
);
860 stat
->mode
= fi
->orig_i_mode
;
864 if (refreshed
!= NULL
)
870 int fuse_reverse_inval_entry(struct super_block
*sb
, u64 parent_nodeid
,
871 u64 child_nodeid
, struct qstr
*name
)
874 struct inode
*parent
;
876 struct dentry
*entry
;
878 parent
= ilookup5(sb
, parent_nodeid
, fuse_inode_eq
, &parent_nodeid
);
882 mutex_lock(&parent
->i_mutex
);
883 if (!S_ISDIR(parent
->i_mode
))
887 dir
= d_find_alias(parent
);
891 entry
= d_lookup(dir
, name
);
896 fuse_invalidate_attr(parent
);
897 fuse_invalidate_entry(entry
);
899 if (child_nodeid
!= 0 && entry
->d_inode
) {
900 mutex_lock(&entry
->d_inode
->i_mutex
);
901 if (get_node_id(entry
->d_inode
) != child_nodeid
) {
905 if (d_mountpoint(entry
)) {
909 if (S_ISDIR(entry
->d_inode
->i_mode
)) {
910 shrink_dcache_parent(entry
);
911 if (!simple_empty(entry
)) {
915 entry
->d_inode
->i_flags
|= S_DEAD
;
918 clear_nlink(entry
->d_inode
);
921 mutex_unlock(&entry
->d_inode
->i_mutex
);
930 mutex_unlock(&parent
->i_mutex
);
936 * Calling into a user-controlled filesystem gives the filesystem
937 * daemon ptrace-like capabilities over the requester process. This
938 * means, that the filesystem daemon is able to record the exact
939 * filesystem operations performed, and can also control the behavior
940 * of the requester process in otherwise impossible ways. For example
941 * it can delay the operation for arbitrary length of time allowing
942 * DoS against the requester.
944 * For this reason only those processes can call into the filesystem,
945 * for which the owner of the mount has ptrace privilege. This
946 * excludes processes started by other users, suid or sgid processes.
948 int fuse_allow_task(struct fuse_conn
*fc
, struct task_struct
*task
)
950 const struct cred
*cred
;
953 if (fc
->flags
& FUSE_ALLOW_OTHER
)
958 cred
= __task_cred(task
);
959 if (cred
->euid
== fc
->user_id
&&
960 cred
->suid
== fc
->user_id
&&
961 cred
->uid
== fc
->user_id
&&
962 cred
->egid
== fc
->group_id
&&
963 cred
->sgid
== fc
->group_id
&&
964 cred
->gid
== fc
->group_id
)
971 static int fuse_access(struct inode
*inode
, int mask
)
973 struct fuse_conn
*fc
= get_fuse_conn(inode
);
974 struct fuse_req
*req
;
975 struct fuse_access_in inarg
;
981 req
= fuse_get_req(fc
);
985 memset(&inarg
, 0, sizeof(inarg
));
986 inarg
.mask
= mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
);
987 req
->in
.h
.opcode
= FUSE_ACCESS
;
988 req
->in
.h
.nodeid
= get_node_id(inode
);
990 req
->in
.args
[0].size
= sizeof(inarg
);
991 req
->in
.args
[0].value
= &inarg
;
992 fuse_request_send(fc
, req
);
993 err
= req
->out
.h
.error
;
994 fuse_put_request(fc
, req
);
995 if (err
== -ENOSYS
) {
1002 static int fuse_perm_getattr(struct inode
*inode
, int mask
)
1004 if (mask
& MAY_NOT_BLOCK
)
1007 return fuse_do_getattr(inode
, NULL
, NULL
);
1011 * Check permission. The two basic access models of FUSE are:
1013 * 1) Local access checking ('default_permissions' mount option) based
1014 * on file mode. This is the plain old disk filesystem permission
1017 * 2) "Remote" access checking, where server is responsible for
1018 * checking permission in each inode operation. An exception to this
1019 * is if ->permission() was invoked from sys_access() in which case an
1020 * access request is sent. Execute permission is still checked
1021 * locally based on file mode.
1023 static int fuse_permission(struct inode
*inode
, int mask
)
1025 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1026 bool refreshed
= false;
1029 if (!fuse_allow_task(fc
, current
))
1033 * If attributes are needed, refresh them before proceeding
1035 if ((fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) ||
1036 ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
))) {
1037 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1039 if (fi
->i_time
< get_jiffies_64()) {
1042 err
= fuse_perm_getattr(inode
, mask
);
1048 if (fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) {
1049 err
= generic_permission(inode
, mask
);
1051 /* If permission is denied, try to refresh file
1052 attributes. This is also needed, because the root
1053 node will at first have no permissions */
1054 if (err
== -EACCES
&& !refreshed
) {
1055 err
= fuse_perm_getattr(inode
, mask
);
1057 err
= generic_permission(inode
, mask
);
1060 /* Note: the opposite of the above test does not
1061 exist. So if permissions are revoked this won't be
1062 noticed immediately, only after the attribute
1063 timeout has expired */
1064 } else if (mask
& (MAY_ACCESS
| MAY_CHDIR
)) {
1065 if (mask
& MAY_NOT_BLOCK
)
1068 err
= fuse_access(inode
, mask
);
1069 } else if ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
)) {
1070 if (!(inode
->i_mode
& S_IXUGO
)) {
1074 err
= fuse_perm_getattr(inode
, mask
);
1075 if (!err
&& !(inode
->i_mode
& S_IXUGO
))
1082 static int parse_dirfile(char *buf
, size_t nbytes
, struct file
*file
,
1083 void *dstbuf
, filldir_t filldir
)
1085 while (nbytes
>= FUSE_NAME_OFFSET
) {
1086 struct fuse_dirent
*dirent
= (struct fuse_dirent
*) buf
;
1087 size_t reclen
= FUSE_DIRENT_SIZE(dirent
);
1089 if (!dirent
->namelen
|| dirent
->namelen
> FUSE_NAME_MAX
)
1091 if (reclen
> nbytes
)
1094 over
= filldir(dstbuf
, dirent
->name
, dirent
->namelen
,
1095 file
->f_pos
, dirent
->ino
, dirent
->type
);
1101 file
->f_pos
= dirent
->off
;
1107 static int fuse_readdir(struct file
*file
, void *dstbuf
, filldir_t filldir
)
1112 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1113 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1114 struct fuse_req
*req
;
1116 if (is_bad_inode(inode
))
1119 req
= fuse_get_req(fc
);
1121 return PTR_ERR(req
);
1123 page
= alloc_page(GFP_KERNEL
);
1125 fuse_put_request(fc
, req
);
1128 req
->out
.argpages
= 1;
1130 req
->pages
[0] = page
;
1131 fuse_read_fill(req
, file
, file
->f_pos
, PAGE_SIZE
, FUSE_READDIR
);
1132 fuse_request_send(fc
, req
);
1133 nbytes
= req
->out
.args
[0].size
;
1134 err
= req
->out
.h
.error
;
1135 fuse_put_request(fc
, req
);
1137 err
= parse_dirfile(page_address(page
), nbytes
, file
, dstbuf
,
1141 fuse_invalidate_attr(inode
); /* atime changed */
1145 static char *read_link(struct dentry
*dentry
)
1147 struct inode
*inode
= dentry
->d_inode
;
1148 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1149 struct fuse_req
*req
= fuse_get_req(fc
);
1153 return ERR_CAST(req
);
1155 link
= (char *) __get_free_page(GFP_KERNEL
);
1157 link
= ERR_PTR(-ENOMEM
);
1160 req
->in
.h
.opcode
= FUSE_READLINK
;
1161 req
->in
.h
.nodeid
= get_node_id(inode
);
1162 req
->out
.argvar
= 1;
1163 req
->out
.numargs
= 1;
1164 req
->out
.args
[0].size
= PAGE_SIZE
- 1;
1165 req
->out
.args
[0].value
= link
;
1166 fuse_request_send(fc
, req
);
1167 if (req
->out
.h
.error
) {
1168 free_page((unsigned long) link
);
1169 link
= ERR_PTR(req
->out
.h
.error
);
1171 link
[req
->out
.args
[0].size
] = '\0';
1173 fuse_put_request(fc
, req
);
1174 fuse_invalidate_attr(inode
); /* atime changed */
1178 static void free_link(char *link
)
1181 free_page((unsigned long) link
);
1184 static void *fuse_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1186 nd_set_link(nd
, read_link(dentry
));
1190 static void fuse_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *c
)
1192 free_link(nd_get_link(nd
));
1195 static int fuse_dir_open(struct inode
*inode
, struct file
*file
)
1197 return fuse_open_common(inode
, file
, true);
1200 static int fuse_dir_release(struct inode
*inode
, struct file
*file
)
1202 fuse_release_common(file
, FUSE_RELEASEDIR
);
1207 static int fuse_dir_fsync(struct file
*file
, loff_t start
, loff_t end
,
1210 return fuse_fsync_common(file
, start
, end
, datasync
, 1);
1213 static long fuse_dir_ioctl(struct file
*file
, unsigned int cmd
,
1216 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1218 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1222 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_DIR
);
1225 static long fuse_dir_compat_ioctl(struct file
*file
, unsigned int cmd
,
1228 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1233 return fuse_ioctl_common(file
, cmd
, arg
,
1234 FUSE_IOCTL_COMPAT
| FUSE_IOCTL_DIR
);
1237 static bool update_mtime(unsigned ivalid
)
1239 /* Always update if mtime is explicitly set */
1240 if (ivalid
& ATTR_MTIME_SET
)
1243 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1244 if ((ivalid
& ATTR_SIZE
) && (ivalid
& (ATTR_OPEN
| ATTR_FILE
)))
1247 /* In all other cases update */
1251 static void iattr_to_fattr(struct iattr
*iattr
, struct fuse_setattr_in
*arg
)
1253 unsigned ivalid
= iattr
->ia_valid
;
1255 if (ivalid
& ATTR_MODE
)
1256 arg
->valid
|= FATTR_MODE
, arg
->mode
= iattr
->ia_mode
;
1257 if (ivalid
& ATTR_UID
)
1258 arg
->valid
|= FATTR_UID
, arg
->uid
= iattr
->ia_uid
;
1259 if (ivalid
& ATTR_GID
)
1260 arg
->valid
|= FATTR_GID
, arg
->gid
= iattr
->ia_gid
;
1261 if (ivalid
& ATTR_SIZE
)
1262 arg
->valid
|= FATTR_SIZE
, arg
->size
= iattr
->ia_size
;
1263 if (ivalid
& ATTR_ATIME
) {
1264 arg
->valid
|= FATTR_ATIME
;
1265 arg
->atime
= iattr
->ia_atime
.tv_sec
;
1266 arg
->atimensec
= iattr
->ia_atime
.tv_nsec
;
1267 if (!(ivalid
& ATTR_ATIME_SET
))
1268 arg
->valid
|= FATTR_ATIME_NOW
;
1270 if ((ivalid
& ATTR_MTIME
) && update_mtime(ivalid
)) {
1271 arg
->valid
|= FATTR_MTIME
;
1272 arg
->mtime
= iattr
->ia_mtime
.tv_sec
;
1273 arg
->mtimensec
= iattr
->ia_mtime
.tv_nsec
;
1274 if (!(ivalid
& ATTR_MTIME_SET
))
1275 arg
->valid
|= FATTR_MTIME_NOW
;
1280 * Prevent concurrent writepages on inode
1282 * This is done by adding a negative bias to the inode write counter
1283 * and waiting for all pending writes to finish.
1285 void fuse_set_nowrite(struct inode
*inode
)
1287 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1288 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1290 BUG_ON(!mutex_is_locked(&inode
->i_mutex
));
1292 spin_lock(&fc
->lock
);
1293 BUG_ON(fi
->writectr
< 0);
1294 fi
->writectr
+= FUSE_NOWRITE
;
1295 spin_unlock(&fc
->lock
);
1296 wait_event(fi
->page_waitq
, fi
->writectr
== FUSE_NOWRITE
);
1300 * Allow writepages on inode
1302 * Remove the bias from the writecounter and send any queued
1305 static void __fuse_release_nowrite(struct inode
*inode
)
1307 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1309 BUG_ON(fi
->writectr
!= FUSE_NOWRITE
);
1311 fuse_flush_writepages(inode
);
1314 void fuse_release_nowrite(struct inode
*inode
)
1316 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1318 spin_lock(&fc
->lock
);
1319 __fuse_release_nowrite(inode
);
1320 spin_unlock(&fc
->lock
);
1324 * Set attributes, and at the same time refresh them.
1326 * Truncation is slightly complicated, because the 'truncate' request
1327 * may fail, in which case we don't want to touch the mapping.
1328 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1329 * and the actual truncation by hand.
1331 static int fuse_do_setattr(struct dentry
*entry
, struct iattr
*attr
,
1334 struct inode
*inode
= entry
->d_inode
;
1335 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1336 struct fuse_req
*req
;
1337 struct fuse_setattr_in inarg
;
1338 struct fuse_attr_out outarg
;
1339 bool is_truncate
= false;
1343 if (!fuse_allow_task(fc
, current
))
1346 if (!(fc
->flags
& FUSE_DEFAULT_PERMISSIONS
))
1347 attr
->ia_valid
|= ATTR_FORCE
;
1349 err
= inode_change_ok(inode
, attr
);
1353 if (attr
->ia_valid
& ATTR_OPEN
) {
1354 if (fc
->atomic_o_trunc
)
1359 if (attr
->ia_valid
& ATTR_SIZE
)
1362 req
= fuse_get_req(fc
);
1364 return PTR_ERR(req
);
1367 fuse_set_nowrite(inode
);
1369 memset(&inarg
, 0, sizeof(inarg
));
1370 memset(&outarg
, 0, sizeof(outarg
));
1371 iattr_to_fattr(attr
, &inarg
);
1373 struct fuse_file
*ff
= file
->private_data
;
1374 inarg
.valid
|= FATTR_FH
;
1377 if (attr
->ia_valid
& ATTR_SIZE
) {
1378 /* For mandatory locking in truncate */
1379 inarg
.valid
|= FATTR_LOCKOWNER
;
1380 inarg
.lock_owner
= fuse_lock_owner_id(fc
, current
->files
);
1382 req
->in
.h
.opcode
= FUSE_SETATTR
;
1383 req
->in
.h
.nodeid
= get_node_id(inode
);
1384 req
->in
.numargs
= 1;
1385 req
->in
.args
[0].size
= sizeof(inarg
);
1386 req
->in
.args
[0].value
= &inarg
;
1387 req
->out
.numargs
= 1;
1389 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
1391 req
->out
.args
[0].size
= sizeof(outarg
);
1392 req
->out
.args
[0].value
= &outarg
;
1393 fuse_request_send(fc
, req
);
1394 err
= req
->out
.h
.error
;
1395 fuse_put_request(fc
, req
);
1398 fuse_invalidate_attr(inode
);
1402 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
1403 make_bad_inode(inode
);
1408 spin_lock(&fc
->lock
);
1409 fuse_change_attributes_common(inode
, &outarg
.attr
,
1410 attr_timeout(&outarg
));
1411 oldsize
= inode
->i_size
;
1412 i_size_write(inode
, outarg
.attr
.size
);
1415 /* NOTE: this may release/reacquire fc->lock */
1416 __fuse_release_nowrite(inode
);
1418 spin_unlock(&fc
->lock
);
1421 * Only call invalidate_inode_pages2() after removing
1422 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1424 if (S_ISREG(inode
->i_mode
) && oldsize
!= outarg
.attr
.size
) {
1425 truncate_pagecache(inode
, oldsize
, outarg
.attr
.size
);
1426 invalidate_inode_pages2(inode
->i_mapping
);
1433 fuse_release_nowrite(inode
);
1438 static int fuse_setattr(struct dentry
*entry
, struct iattr
*attr
)
1440 if (attr
->ia_valid
& ATTR_FILE
)
1441 return fuse_do_setattr(entry
, attr
, attr
->ia_file
);
1443 return fuse_do_setattr(entry
, attr
, NULL
);
1446 static int fuse_getattr(struct vfsmount
*mnt
, struct dentry
*entry
,
1449 struct inode
*inode
= entry
->d_inode
;
1450 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1452 if (!fuse_allow_task(fc
, current
))
1455 return fuse_update_attributes(inode
, stat
, NULL
, NULL
);
1458 static int fuse_setxattr(struct dentry
*entry
, const char *name
,
1459 const void *value
, size_t size
, int flags
)
1461 struct inode
*inode
= entry
->d_inode
;
1462 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1463 struct fuse_req
*req
;
1464 struct fuse_setxattr_in inarg
;
1467 if (fc
->no_setxattr
)
1470 req
= fuse_get_req(fc
);
1472 return PTR_ERR(req
);
1474 memset(&inarg
, 0, sizeof(inarg
));
1476 inarg
.flags
= flags
;
1477 req
->in
.h
.opcode
= FUSE_SETXATTR
;
1478 req
->in
.h
.nodeid
= get_node_id(inode
);
1479 req
->in
.numargs
= 3;
1480 req
->in
.args
[0].size
= sizeof(inarg
);
1481 req
->in
.args
[0].value
= &inarg
;
1482 req
->in
.args
[1].size
= strlen(name
) + 1;
1483 req
->in
.args
[1].value
= name
;
1484 req
->in
.args
[2].size
= size
;
1485 req
->in
.args
[2].value
= value
;
1486 fuse_request_send(fc
, req
);
1487 err
= req
->out
.h
.error
;
1488 fuse_put_request(fc
, req
);
1489 if (err
== -ENOSYS
) {
1490 fc
->no_setxattr
= 1;
1496 static ssize_t
fuse_getxattr(struct dentry
*entry
, const char *name
,
1497 void *value
, size_t size
)
1499 struct inode
*inode
= entry
->d_inode
;
1500 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1501 struct fuse_req
*req
;
1502 struct fuse_getxattr_in inarg
;
1503 struct fuse_getxattr_out outarg
;
1506 if (fc
->no_getxattr
)
1509 req
= fuse_get_req(fc
);
1511 return PTR_ERR(req
);
1513 memset(&inarg
, 0, sizeof(inarg
));
1515 req
->in
.h
.opcode
= FUSE_GETXATTR
;
1516 req
->in
.h
.nodeid
= get_node_id(inode
);
1517 req
->in
.numargs
= 2;
1518 req
->in
.args
[0].size
= sizeof(inarg
);
1519 req
->in
.args
[0].value
= &inarg
;
1520 req
->in
.args
[1].size
= strlen(name
) + 1;
1521 req
->in
.args
[1].value
= name
;
1522 /* This is really two different operations rolled into one */
1523 req
->out
.numargs
= 1;
1525 req
->out
.argvar
= 1;
1526 req
->out
.args
[0].size
= size
;
1527 req
->out
.args
[0].value
= value
;
1529 req
->out
.args
[0].size
= sizeof(outarg
);
1530 req
->out
.args
[0].value
= &outarg
;
1532 fuse_request_send(fc
, req
);
1533 ret
= req
->out
.h
.error
;
1535 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1537 if (ret
== -ENOSYS
) {
1538 fc
->no_getxattr
= 1;
1542 fuse_put_request(fc
, req
);
1546 static ssize_t
fuse_listxattr(struct dentry
*entry
, char *list
, size_t size
)
1548 struct inode
*inode
= entry
->d_inode
;
1549 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1550 struct fuse_req
*req
;
1551 struct fuse_getxattr_in inarg
;
1552 struct fuse_getxattr_out outarg
;
1555 if (!fuse_allow_task(fc
, current
))
1558 if (fc
->no_listxattr
)
1561 req
= fuse_get_req(fc
);
1563 return PTR_ERR(req
);
1565 memset(&inarg
, 0, sizeof(inarg
));
1567 req
->in
.h
.opcode
= FUSE_LISTXATTR
;
1568 req
->in
.h
.nodeid
= get_node_id(inode
);
1569 req
->in
.numargs
= 1;
1570 req
->in
.args
[0].size
= sizeof(inarg
);
1571 req
->in
.args
[0].value
= &inarg
;
1572 /* This is really two different operations rolled into one */
1573 req
->out
.numargs
= 1;
1575 req
->out
.argvar
= 1;
1576 req
->out
.args
[0].size
= size
;
1577 req
->out
.args
[0].value
= list
;
1579 req
->out
.args
[0].size
= sizeof(outarg
);
1580 req
->out
.args
[0].value
= &outarg
;
1582 fuse_request_send(fc
, req
);
1583 ret
= req
->out
.h
.error
;
1585 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1587 if (ret
== -ENOSYS
) {
1588 fc
->no_listxattr
= 1;
1592 fuse_put_request(fc
, req
);
1596 static int fuse_removexattr(struct dentry
*entry
, const char *name
)
1598 struct inode
*inode
= entry
->d_inode
;
1599 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1600 struct fuse_req
*req
;
1603 if (fc
->no_removexattr
)
1606 req
= fuse_get_req(fc
);
1608 return PTR_ERR(req
);
1610 req
->in
.h
.opcode
= FUSE_REMOVEXATTR
;
1611 req
->in
.h
.nodeid
= get_node_id(inode
);
1612 req
->in
.numargs
= 1;
1613 req
->in
.args
[0].size
= strlen(name
) + 1;
1614 req
->in
.args
[0].value
= name
;
1615 fuse_request_send(fc
, req
);
1616 err
= req
->out
.h
.error
;
1617 fuse_put_request(fc
, req
);
1618 if (err
== -ENOSYS
) {
1619 fc
->no_removexattr
= 1;
1625 static const struct inode_operations fuse_dir_inode_operations
= {
1626 .lookup
= fuse_lookup
,
1627 .mkdir
= fuse_mkdir
,
1628 .symlink
= fuse_symlink
,
1629 .unlink
= fuse_unlink
,
1630 .rmdir
= fuse_rmdir
,
1631 .rename
= fuse_rename
,
1633 .setattr
= fuse_setattr
,
1634 .create
= fuse_create
,
1635 .mknod
= fuse_mknod
,
1636 .permission
= fuse_permission
,
1637 .getattr
= fuse_getattr
,
1638 .setxattr
= fuse_setxattr
,
1639 .getxattr
= fuse_getxattr
,
1640 .listxattr
= fuse_listxattr
,
1641 .removexattr
= fuse_removexattr
,
1644 static const struct file_operations fuse_dir_operations
= {
1645 .llseek
= generic_file_llseek
,
1646 .read
= generic_read_dir
,
1647 .readdir
= fuse_readdir
,
1648 .open
= fuse_dir_open
,
1649 .release
= fuse_dir_release
,
1650 .fsync
= fuse_dir_fsync
,
1651 .unlocked_ioctl
= fuse_dir_ioctl
,
1652 .compat_ioctl
= fuse_dir_compat_ioctl
,
1655 static const struct inode_operations fuse_common_inode_operations
= {
1656 .setattr
= fuse_setattr
,
1657 .permission
= fuse_permission
,
1658 .getattr
= fuse_getattr
,
1659 .setxattr
= fuse_setxattr
,
1660 .getxattr
= fuse_getxattr
,
1661 .listxattr
= fuse_listxattr
,
1662 .removexattr
= fuse_removexattr
,
1665 static const struct inode_operations fuse_symlink_inode_operations
= {
1666 .setattr
= fuse_setattr
,
1667 .follow_link
= fuse_follow_link
,
1668 .put_link
= fuse_put_link
,
1669 .readlink
= generic_readlink
,
1670 .getattr
= fuse_getattr
,
1671 .setxattr
= fuse_setxattr
,
1672 .getxattr
= fuse_getxattr
,
1673 .listxattr
= fuse_listxattr
,
1674 .removexattr
= fuse_removexattr
,
1677 void fuse_init_common(struct inode
*inode
)
1679 inode
->i_op
= &fuse_common_inode_operations
;
1682 void fuse_init_dir(struct inode
*inode
)
1684 inode
->i_op
= &fuse_dir_inode_operations
;
1685 inode
->i_fop
= &fuse_dir_operations
;
1688 void fuse_init_symlink(struct inode
*inode
)
1690 inode
->i_op
= &fuse_symlink_inode_operations
;