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 forget
= fuse_alloc_forget();
394 req
= fuse_get_req(fc
);
397 goto out_put_forget_req
;
400 ff
= fuse_file_alloc(fc
);
402 goto out_put_request
;
405 mode
&= ~current_umask();
408 memset(&inarg
, 0, sizeof(inarg
));
409 memset(&outentry
, 0, sizeof(outentry
));
412 inarg
.umask
= current_umask();
413 req
->in
.h
.opcode
= FUSE_CREATE
;
414 req
->in
.h
.nodeid
= get_node_id(dir
);
416 req
->in
.args
[0].size
= fc
->minor
< 12 ? sizeof(struct fuse_open_in
) :
418 req
->in
.args
[0].value
= &inarg
;
419 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
420 req
->in
.args
[1].value
= entry
->d_name
.name
;
421 req
->out
.numargs
= 2;
423 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
425 req
->out
.args
[0].size
= sizeof(outentry
);
426 req
->out
.args
[0].value
= &outentry
;
427 req
->out
.args
[1].size
= sizeof(outopen
);
428 req
->out
.args
[1].value
= &outopen
;
429 fuse_request_send(fc
, req
);
430 err
= req
->out
.h
.error
;
438 if (!S_ISREG(outentry
.attr
.mode
) || invalid_nodeid(outentry
.nodeid
))
441 fuse_put_request(fc
, req
);
443 ff
->nodeid
= outentry
.nodeid
;
444 ff
->open_flags
= outopen
.open_flags
;
445 inode
= fuse_iget(dir
->i_sb
, outentry
.nodeid
, outentry
.generation
,
446 &outentry
.attr
, entry_attr_timeout(&outentry
), 0);
448 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
449 fuse_sync_release(ff
, flags
);
450 fuse_queue_forget(fc
, forget
, outentry
.nodeid
, 1);
454 d_instantiate(entry
, inode
);
455 fuse_change_entry_timeout(entry
, &outentry
);
456 fuse_invalidate_attr(dir
);
457 file
= lookup_instantiate_filp(nd
, entry
, generic_file_open
);
459 fuse_sync_release(ff
, flags
);
460 return PTR_ERR(file
);
462 file
->private_data
= fuse_file_get(ff
);
463 fuse_finish_open(inode
, file
);
469 fuse_put_request(fc
, req
);
476 * Code shared between mknod, mkdir, symlink and link
478 static int create_new_entry(struct fuse_conn
*fc
, struct fuse_req
*req
,
479 struct inode
*dir
, struct dentry
*entry
,
482 struct fuse_entry_out outarg
;
485 struct fuse_forget_link
*forget
;
487 forget
= fuse_alloc_forget();
489 fuse_put_request(fc
, req
);
493 memset(&outarg
, 0, sizeof(outarg
));
494 req
->in
.h
.nodeid
= get_node_id(dir
);
495 req
->out
.numargs
= 1;
497 req
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
499 req
->out
.args
[0].size
= sizeof(outarg
);
500 req
->out
.args
[0].value
= &outarg
;
501 fuse_request_send(fc
, req
);
502 err
= req
->out
.h
.error
;
503 fuse_put_request(fc
, req
);
505 goto out_put_forget_req
;
508 if (invalid_nodeid(outarg
.nodeid
))
509 goto out_put_forget_req
;
511 if ((outarg
.attr
.mode
^ mode
) & S_IFMT
)
512 goto out_put_forget_req
;
514 inode
= fuse_iget(dir
->i_sb
, outarg
.nodeid
, outarg
.generation
,
515 &outarg
.attr
, entry_attr_timeout(&outarg
), 0);
517 fuse_queue_forget(fc
, forget
, outarg
.nodeid
, 1);
522 if (S_ISDIR(inode
->i_mode
)) {
523 struct dentry
*alias
;
524 mutex_lock(&fc
->inst_mutex
);
525 alias
= d_find_alias(inode
);
527 /* New directory must have moved since mkdir */
528 mutex_unlock(&fc
->inst_mutex
);
533 d_instantiate(entry
, inode
);
534 mutex_unlock(&fc
->inst_mutex
);
536 d_instantiate(entry
, inode
);
538 fuse_change_entry_timeout(entry
, &outarg
);
539 fuse_invalidate_attr(dir
);
547 static int fuse_mknod(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
550 struct fuse_mknod_in inarg
;
551 struct fuse_conn
*fc
= get_fuse_conn(dir
);
552 struct fuse_req
*req
= fuse_get_req(fc
);
557 mode
&= ~current_umask();
559 memset(&inarg
, 0, sizeof(inarg
));
561 inarg
.rdev
= new_encode_dev(rdev
);
562 inarg
.umask
= current_umask();
563 req
->in
.h
.opcode
= FUSE_MKNOD
;
565 req
->in
.args
[0].size
= fc
->minor
< 12 ? FUSE_COMPAT_MKNOD_IN_SIZE
:
567 req
->in
.args
[0].value
= &inarg
;
568 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
569 req
->in
.args
[1].value
= entry
->d_name
.name
;
570 return create_new_entry(fc
, req
, dir
, entry
, mode
);
573 static int fuse_create(struct inode
*dir
, struct dentry
*entry
, umode_t mode
,
574 struct nameidata
*nd
)
577 int err
= fuse_create_open(dir
, entry
, mode
, nd
);
580 /* Fall back on mknod */
582 return fuse_mknod(dir
, entry
, mode
, 0);
585 static int fuse_mkdir(struct inode
*dir
, struct dentry
*entry
, umode_t mode
)
587 struct fuse_mkdir_in inarg
;
588 struct fuse_conn
*fc
= get_fuse_conn(dir
);
589 struct fuse_req
*req
= fuse_get_req(fc
);
594 mode
&= ~current_umask();
596 memset(&inarg
, 0, sizeof(inarg
));
598 inarg
.umask
= current_umask();
599 req
->in
.h
.opcode
= FUSE_MKDIR
;
601 req
->in
.args
[0].size
= sizeof(inarg
);
602 req
->in
.args
[0].value
= &inarg
;
603 req
->in
.args
[1].size
= entry
->d_name
.len
+ 1;
604 req
->in
.args
[1].value
= entry
->d_name
.name
;
605 return create_new_entry(fc
, req
, dir
, entry
, S_IFDIR
);
608 static int fuse_symlink(struct inode
*dir
, struct dentry
*entry
,
611 struct fuse_conn
*fc
= get_fuse_conn(dir
);
612 unsigned len
= strlen(link
) + 1;
613 struct fuse_req
*req
= fuse_get_req(fc
);
617 req
->in
.h
.opcode
= FUSE_SYMLINK
;
619 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
620 req
->in
.args
[0].value
= entry
->d_name
.name
;
621 req
->in
.args
[1].size
= len
;
622 req
->in
.args
[1].value
= link
;
623 return create_new_entry(fc
, req
, dir
, entry
, S_IFLNK
);
626 static int fuse_unlink(struct inode
*dir
, struct dentry
*entry
)
629 struct fuse_conn
*fc
= get_fuse_conn(dir
);
630 struct fuse_req
*req
= fuse_get_req(fc
);
634 req
->in
.h
.opcode
= FUSE_UNLINK
;
635 req
->in
.h
.nodeid
= get_node_id(dir
);
637 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
638 req
->in
.args
[0].value
= entry
->d_name
.name
;
639 fuse_request_send(fc
, req
);
640 err
= req
->out
.h
.error
;
641 fuse_put_request(fc
, req
);
643 struct inode
*inode
= entry
->d_inode
;
644 struct fuse_inode
*fi
= get_fuse_inode(inode
);
646 spin_lock(&fc
->lock
);
647 fi
->attr_version
= ++fc
->attr_version
;
649 spin_unlock(&fc
->lock
);
650 fuse_invalidate_attr(inode
);
651 fuse_invalidate_attr(dir
);
652 fuse_invalidate_entry_cache(entry
);
653 } else if (err
== -EINTR
)
654 fuse_invalidate_entry(entry
);
658 static int fuse_rmdir(struct inode
*dir
, struct dentry
*entry
)
661 struct fuse_conn
*fc
= get_fuse_conn(dir
);
662 struct fuse_req
*req
= fuse_get_req(fc
);
666 req
->in
.h
.opcode
= FUSE_RMDIR
;
667 req
->in
.h
.nodeid
= get_node_id(dir
);
669 req
->in
.args
[0].size
= entry
->d_name
.len
+ 1;
670 req
->in
.args
[0].value
= entry
->d_name
.name
;
671 fuse_request_send(fc
, req
);
672 err
= req
->out
.h
.error
;
673 fuse_put_request(fc
, req
);
675 clear_nlink(entry
->d_inode
);
676 fuse_invalidate_attr(dir
);
677 fuse_invalidate_entry_cache(entry
);
678 } else if (err
== -EINTR
)
679 fuse_invalidate_entry(entry
);
683 static int fuse_rename(struct inode
*olddir
, struct dentry
*oldent
,
684 struct inode
*newdir
, struct dentry
*newent
)
687 struct fuse_rename_in inarg
;
688 struct fuse_conn
*fc
= get_fuse_conn(olddir
);
689 struct fuse_req
*req
= fuse_get_req(fc
);
694 memset(&inarg
, 0, sizeof(inarg
));
695 inarg
.newdir
= get_node_id(newdir
);
696 req
->in
.h
.opcode
= FUSE_RENAME
;
697 req
->in
.h
.nodeid
= get_node_id(olddir
);
699 req
->in
.args
[0].size
= sizeof(inarg
);
700 req
->in
.args
[0].value
= &inarg
;
701 req
->in
.args
[1].size
= oldent
->d_name
.len
+ 1;
702 req
->in
.args
[1].value
= oldent
->d_name
.name
;
703 req
->in
.args
[2].size
= newent
->d_name
.len
+ 1;
704 req
->in
.args
[2].value
= newent
->d_name
.name
;
705 fuse_request_send(fc
, req
);
706 err
= req
->out
.h
.error
;
707 fuse_put_request(fc
, req
);
710 fuse_invalidate_attr(oldent
->d_inode
);
712 fuse_invalidate_attr(olddir
);
713 if (olddir
!= newdir
)
714 fuse_invalidate_attr(newdir
);
716 /* newent will end up negative */
717 if (newent
->d_inode
) {
718 fuse_invalidate_attr(newent
->d_inode
);
719 fuse_invalidate_entry_cache(newent
);
721 } else if (err
== -EINTR
) {
722 /* If request was interrupted, DEITY only knows if the
723 rename actually took place. If the invalidation
724 fails (e.g. some process has CWD under the renamed
725 directory), then there can be inconsistency between
726 the dcache and the real filesystem. Tough luck. */
727 fuse_invalidate_entry(oldent
);
729 fuse_invalidate_entry(newent
);
735 static int fuse_link(struct dentry
*entry
, struct inode
*newdir
,
736 struct dentry
*newent
)
739 struct fuse_link_in inarg
;
740 struct inode
*inode
= entry
->d_inode
;
741 struct fuse_conn
*fc
= get_fuse_conn(inode
);
742 struct fuse_req
*req
= fuse_get_req(fc
);
746 memset(&inarg
, 0, sizeof(inarg
));
747 inarg
.oldnodeid
= get_node_id(inode
);
748 req
->in
.h
.opcode
= FUSE_LINK
;
750 req
->in
.args
[0].size
= sizeof(inarg
);
751 req
->in
.args
[0].value
= &inarg
;
752 req
->in
.args
[1].size
= newent
->d_name
.len
+ 1;
753 req
->in
.args
[1].value
= newent
->d_name
.name
;
754 err
= create_new_entry(fc
, req
, newdir
, newent
, inode
->i_mode
);
755 /* Contrary to "normal" filesystems it can happen that link
756 makes two "logical" inodes point to the same "physical"
757 inode. We invalidate the attributes of the old one, so it
758 will reflect changes in the backing inode (link count,
762 struct fuse_inode
*fi
= get_fuse_inode(inode
);
764 spin_lock(&fc
->lock
);
765 fi
->attr_version
= ++fc
->attr_version
;
767 spin_unlock(&fc
->lock
);
768 fuse_invalidate_attr(inode
);
769 } else if (err
== -EINTR
) {
770 fuse_invalidate_attr(inode
);
775 static void fuse_fillattr(struct inode
*inode
, struct fuse_attr
*attr
,
778 stat
->dev
= inode
->i_sb
->s_dev
;
779 stat
->ino
= attr
->ino
;
780 stat
->mode
= (inode
->i_mode
& S_IFMT
) | (attr
->mode
& 07777);
781 stat
->nlink
= attr
->nlink
;
782 stat
->uid
= attr
->uid
;
783 stat
->gid
= attr
->gid
;
784 stat
->rdev
= inode
->i_rdev
;
785 stat
->atime
.tv_sec
= attr
->atime
;
786 stat
->atime
.tv_nsec
= attr
->atimensec
;
787 stat
->mtime
.tv_sec
= attr
->mtime
;
788 stat
->mtime
.tv_nsec
= attr
->mtimensec
;
789 stat
->ctime
.tv_sec
= attr
->ctime
;
790 stat
->ctime
.tv_nsec
= attr
->ctimensec
;
791 stat
->size
= attr
->size
;
792 stat
->blocks
= attr
->blocks
;
793 stat
->blksize
= (1 << inode
->i_blkbits
);
796 static int fuse_do_getattr(struct inode
*inode
, struct kstat
*stat
,
800 struct fuse_getattr_in inarg
;
801 struct fuse_attr_out outarg
;
802 struct fuse_conn
*fc
= get_fuse_conn(inode
);
803 struct fuse_req
*req
;
806 req
= fuse_get_req(fc
);
810 attr_version
= fuse_get_attr_version(fc
);
812 memset(&inarg
, 0, sizeof(inarg
));
813 memset(&outarg
, 0, sizeof(outarg
));
814 /* Directories have separate file-handle space */
815 if (file
&& S_ISREG(inode
->i_mode
)) {
816 struct fuse_file
*ff
= file
->private_data
;
818 inarg
.getattr_flags
|= FUSE_GETATTR_FH
;
821 req
->in
.h
.opcode
= FUSE_GETATTR
;
822 req
->in
.h
.nodeid
= get_node_id(inode
);
824 req
->in
.args
[0].size
= sizeof(inarg
);
825 req
->in
.args
[0].value
= &inarg
;
826 req
->out
.numargs
= 1;
828 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
830 req
->out
.args
[0].size
= sizeof(outarg
);
831 req
->out
.args
[0].value
= &outarg
;
832 fuse_request_send(fc
, req
);
833 err
= req
->out
.h
.error
;
834 fuse_put_request(fc
, req
);
836 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
837 make_bad_inode(inode
);
840 fuse_change_attributes(inode
, &outarg
.attr
,
841 attr_timeout(&outarg
),
844 fuse_fillattr(inode
, &outarg
.attr
, stat
);
850 int fuse_update_attributes(struct inode
*inode
, struct kstat
*stat
,
851 struct file
*file
, bool *refreshed
)
853 struct fuse_inode
*fi
= get_fuse_inode(inode
);
857 if (fi
->i_time
< get_jiffies_64()) {
859 err
= fuse_do_getattr(inode
, stat
, file
);
864 generic_fillattr(inode
, stat
);
865 stat
->mode
= fi
->orig_i_mode
;
869 if (refreshed
!= NULL
)
875 int fuse_reverse_inval_entry(struct super_block
*sb
, u64 parent_nodeid
,
876 u64 child_nodeid
, struct qstr
*name
)
879 struct inode
*parent
;
881 struct dentry
*entry
;
883 parent
= ilookup5(sb
, parent_nodeid
, fuse_inode_eq
, &parent_nodeid
);
887 mutex_lock(&parent
->i_mutex
);
888 if (!S_ISDIR(parent
->i_mode
))
892 dir
= d_find_alias(parent
);
896 entry
= d_lookup(dir
, name
);
901 fuse_invalidate_attr(parent
);
902 fuse_invalidate_entry(entry
);
904 if (child_nodeid
!= 0 && entry
->d_inode
) {
905 mutex_lock(&entry
->d_inode
->i_mutex
);
906 if (get_node_id(entry
->d_inode
) != child_nodeid
) {
910 if (d_mountpoint(entry
)) {
914 if (S_ISDIR(entry
->d_inode
->i_mode
)) {
915 shrink_dcache_parent(entry
);
916 if (!simple_empty(entry
)) {
920 entry
->d_inode
->i_flags
|= S_DEAD
;
923 clear_nlink(entry
->d_inode
);
926 mutex_unlock(&entry
->d_inode
->i_mutex
);
935 mutex_unlock(&parent
->i_mutex
);
941 * Calling into a user-controlled filesystem gives the filesystem
942 * daemon ptrace-like capabilities over the requester process. This
943 * means, that the filesystem daemon is able to record the exact
944 * filesystem operations performed, and can also control the behavior
945 * of the requester process in otherwise impossible ways. For example
946 * it can delay the operation for arbitrary length of time allowing
947 * DoS against the requester.
949 * For this reason only those processes can call into the filesystem,
950 * for which the owner of the mount has ptrace privilege. This
951 * excludes processes started by other users, suid or sgid processes.
953 int fuse_allow_task(struct fuse_conn
*fc
, struct task_struct
*task
)
955 const struct cred
*cred
;
958 if (fc
->flags
& FUSE_ALLOW_OTHER
)
963 cred
= __task_cred(task
);
964 if (cred
->euid
== fc
->user_id
&&
965 cred
->suid
== fc
->user_id
&&
966 cred
->uid
== fc
->user_id
&&
967 cred
->egid
== fc
->group_id
&&
968 cred
->sgid
== fc
->group_id
&&
969 cred
->gid
== fc
->group_id
)
976 static int fuse_access(struct inode
*inode
, int mask
)
978 struct fuse_conn
*fc
= get_fuse_conn(inode
);
979 struct fuse_req
*req
;
980 struct fuse_access_in inarg
;
986 req
= fuse_get_req(fc
);
990 memset(&inarg
, 0, sizeof(inarg
));
991 inarg
.mask
= mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
);
992 req
->in
.h
.opcode
= FUSE_ACCESS
;
993 req
->in
.h
.nodeid
= get_node_id(inode
);
995 req
->in
.args
[0].size
= sizeof(inarg
);
996 req
->in
.args
[0].value
= &inarg
;
997 fuse_request_send(fc
, req
);
998 err
= req
->out
.h
.error
;
999 fuse_put_request(fc
, req
);
1000 if (err
== -ENOSYS
) {
1007 static int fuse_perm_getattr(struct inode
*inode
, int mask
)
1009 if (mask
& MAY_NOT_BLOCK
)
1012 return fuse_do_getattr(inode
, NULL
, NULL
);
1016 * Check permission. The two basic access models of FUSE are:
1018 * 1) Local access checking ('default_permissions' mount option) based
1019 * on file mode. This is the plain old disk filesystem permission
1022 * 2) "Remote" access checking, where server is responsible for
1023 * checking permission in each inode operation. An exception to this
1024 * is if ->permission() was invoked from sys_access() in which case an
1025 * access request is sent. Execute permission is still checked
1026 * locally based on file mode.
1028 static int fuse_permission(struct inode
*inode
, int mask
)
1030 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1031 bool refreshed
= false;
1034 if (!fuse_allow_task(fc
, current
))
1038 * If attributes are needed, refresh them before proceeding
1040 if ((fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) ||
1041 ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
))) {
1042 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1044 if (fi
->i_time
< get_jiffies_64()) {
1047 err
= fuse_perm_getattr(inode
, mask
);
1053 if (fc
->flags
& FUSE_DEFAULT_PERMISSIONS
) {
1054 err
= generic_permission(inode
, mask
);
1056 /* If permission is denied, try to refresh file
1057 attributes. This is also needed, because the root
1058 node will at first have no permissions */
1059 if (err
== -EACCES
&& !refreshed
) {
1060 err
= fuse_perm_getattr(inode
, mask
);
1062 err
= generic_permission(inode
, mask
);
1065 /* Note: the opposite of the above test does not
1066 exist. So if permissions are revoked this won't be
1067 noticed immediately, only after the attribute
1068 timeout has expired */
1069 } else if (mask
& (MAY_ACCESS
| MAY_CHDIR
)) {
1070 if (mask
& MAY_NOT_BLOCK
)
1073 err
= fuse_access(inode
, mask
);
1074 } else if ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
)) {
1075 if (!(inode
->i_mode
& S_IXUGO
)) {
1079 err
= fuse_perm_getattr(inode
, mask
);
1080 if (!err
&& !(inode
->i_mode
& S_IXUGO
))
1087 static int parse_dirfile(char *buf
, size_t nbytes
, struct file
*file
,
1088 void *dstbuf
, filldir_t filldir
)
1090 while (nbytes
>= FUSE_NAME_OFFSET
) {
1091 struct fuse_dirent
*dirent
= (struct fuse_dirent
*) buf
;
1092 size_t reclen
= FUSE_DIRENT_SIZE(dirent
);
1094 if (!dirent
->namelen
|| dirent
->namelen
> FUSE_NAME_MAX
)
1096 if (reclen
> nbytes
)
1099 over
= filldir(dstbuf
, dirent
->name
, dirent
->namelen
,
1100 file
->f_pos
, dirent
->ino
, dirent
->type
);
1106 file
->f_pos
= dirent
->off
;
1112 static int fuse_readdir(struct file
*file
, void *dstbuf
, filldir_t filldir
)
1117 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1118 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1119 struct fuse_req
*req
;
1121 if (is_bad_inode(inode
))
1124 req
= fuse_get_req(fc
);
1126 return PTR_ERR(req
);
1128 page
= alloc_page(GFP_KERNEL
);
1130 fuse_put_request(fc
, req
);
1133 req
->out
.argpages
= 1;
1135 req
->pages
[0] = page
;
1136 fuse_read_fill(req
, file
, file
->f_pos
, PAGE_SIZE
, FUSE_READDIR
);
1137 fuse_request_send(fc
, req
);
1138 nbytes
= req
->out
.args
[0].size
;
1139 err
= req
->out
.h
.error
;
1140 fuse_put_request(fc
, req
);
1142 err
= parse_dirfile(page_address(page
), nbytes
, file
, dstbuf
,
1146 fuse_invalidate_attr(inode
); /* atime changed */
1150 static char *read_link(struct dentry
*dentry
)
1152 struct inode
*inode
= dentry
->d_inode
;
1153 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1154 struct fuse_req
*req
= fuse_get_req(fc
);
1158 return ERR_CAST(req
);
1160 link
= (char *) __get_free_page(GFP_KERNEL
);
1162 link
= ERR_PTR(-ENOMEM
);
1165 req
->in
.h
.opcode
= FUSE_READLINK
;
1166 req
->in
.h
.nodeid
= get_node_id(inode
);
1167 req
->out
.argvar
= 1;
1168 req
->out
.numargs
= 1;
1169 req
->out
.args
[0].size
= PAGE_SIZE
- 1;
1170 req
->out
.args
[0].value
= link
;
1171 fuse_request_send(fc
, req
);
1172 if (req
->out
.h
.error
) {
1173 free_page((unsigned long) link
);
1174 link
= ERR_PTR(req
->out
.h
.error
);
1176 link
[req
->out
.args
[0].size
] = '\0';
1178 fuse_put_request(fc
, req
);
1179 fuse_invalidate_attr(inode
); /* atime changed */
1183 static void free_link(char *link
)
1186 free_page((unsigned long) link
);
1189 static void *fuse_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1191 nd_set_link(nd
, read_link(dentry
));
1195 static void fuse_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *c
)
1197 free_link(nd_get_link(nd
));
1200 static int fuse_dir_open(struct inode
*inode
, struct file
*file
)
1202 return fuse_open_common(inode
, file
, true);
1205 static int fuse_dir_release(struct inode
*inode
, struct file
*file
)
1207 fuse_release_common(file
, FUSE_RELEASEDIR
);
1212 static int fuse_dir_fsync(struct file
*file
, loff_t start
, loff_t end
,
1215 return fuse_fsync_common(file
, start
, end
, datasync
, 1);
1218 static long fuse_dir_ioctl(struct file
*file
, unsigned int cmd
,
1221 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1223 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1227 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_DIR
);
1230 static long fuse_dir_compat_ioctl(struct file
*file
, unsigned int cmd
,
1233 struct fuse_conn
*fc
= get_fuse_conn(file
->f_mapping
->host
);
1238 return fuse_ioctl_common(file
, cmd
, arg
,
1239 FUSE_IOCTL_COMPAT
| FUSE_IOCTL_DIR
);
1242 static bool update_mtime(unsigned ivalid
)
1244 /* Always update if mtime is explicitly set */
1245 if (ivalid
& ATTR_MTIME_SET
)
1248 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1249 if ((ivalid
& ATTR_SIZE
) && (ivalid
& (ATTR_OPEN
| ATTR_FILE
)))
1252 /* In all other cases update */
1256 static void iattr_to_fattr(struct iattr
*iattr
, struct fuse_setattr_in
*arg
)
1258 unsigned ivalid
= iattr
->ia_valid
;
1260 if (ivalid
& ATTR_MODE
)
1261 arg
->valid
|= FATTR_MODE
, arg
->mode
= iattr
->ia_mode
;
1262 if (ivalid
& ATTR_UID
)
1263 arg
->valid
|= FATTR_UID
, arg
->uid
= iattr
->ia_uid
;
1264 if (ivalid
& ATTR_GID
)
1265 arg
->valid
|= FATTR_GID
, arg
->gid
= iattr
->ia_gid
;
1266 if (ivalid
& ATTR_SIZE
)
1267 arg
->valid
|= FATTR_SIZE
, arg
->size
= iattr
->ia_size
;
1268 if (ivalid
& ATTR_ATIME
) {
1269 arg
->valid
|= FATTR_ATIME
;
1270 arg
->atime
= iattr
->ia_atime
.tv_sec
;
1271 arg
->atimensec
= iattr
->ia_atime
.tv_nsec
;
1272 if (!(ivalid
& ATTR_ATIME_SET
))
1273 arg
->valid
|= FATTR_ATIME_NOW
;
1275 if ((ivalid
& ATTR_MTIME
) && update_mtime(ivalid
)) {
1276 arg
->valid
|= FATTR_MTIME
;
1277 arg
->mtime
= iattr
->ia_mtime
.tv_sec
;
1278 arg
->mtimensec
= iattr
->ia_mtime
.tv_nsec
;
1279 if (!(ivalid
& ATTR_MTIME_SET
))
1280 arg
->valid
|= FATTR_MTIME_NOW
;
1285 * Prevent concurrent writepages on inode
1287 * This is done by adding a negative bias to the inode write counter
1288 * and waiting for all pending writes to finish.
1290 void fuse_set_nowrite(struct inode
*inode
)
1292 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1293 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1295 BUG_ON(!mutex_is_locked(&inode
->i_mutex
));
1297 spin_lock(&fc
->lock
);
1298 BUG_ON(fi
->writectr
< 0);
1299 fi
->writectr
+= FUSE_NOWRITE
;
1300 spin_unlock(&fc
->lock
);
1301 wait_event(fi
->page_waitq
, fi
->writectr
== FUSE_NOWRITE
);
1305 * Allow writepages on inode
1307 * Remove the bias from the writecounter and send any queued
1310 static void __fuse_release_nowrite(struct inode
*inode
)
1312 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1314 BUG_ON(fi
->writectr
!= FUSE_NOWRITE
);
1316 fuse_flush_writepages(inode
);
1319 void fuse_release_nowrite(struct inode
*inode
)
1321 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1323 spin_lock(&fc
->lock
);
1324 __fuse_release_nowrite(inode
);
1325 spin_unlock(&fc
->lock
);
1329 * Set attributes, and at the same time refresh them.
1331 * Truncation is slightly complicated, because the 'truncate' request
1332 * may fail, in which case we don't want to touch the mapping.
1333 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1334 * and the actual truncation by hand.
1336 static int fuse_do_setattr(struct dentry
*entry
, struct iattr
*attr
,
1339 struct inode
*inode
= entry
->d_inode
;
1340 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1341 struct fuse_req
*req
;
1342 struct fuse_setattr_in inarg
;
1343 struct fuse_attr_out outarg
;
1344 bool is_truncate
= false;
1348 if (!fuse_allow_task(fc
, current
))
1351 if (!(fc
->flags
& FUSE_DEFAULT_PERMISSIONS
))
1352 attr
->ia_valid
|= ATTR_FORCE
;
1354 err
= inode_change_ok(inode
, attr
);
1358 if (attr
->ia_valid
& ATTR_OPEN
) {
1359 if (fc
->atomic_o_trunc
)
1364 if (attr
->ia_valid
& ATTR_SIZE
)
1367 req
= fuse_get_req(fc
);
1369 return PTR_ERR(req
);
1372 fuse_set_nowrite(inode
);
1374 memset(&inarg
, 0, sizeof(inarg
));
1375 memset(&outarg
, 0, sizeof(outarg
));
1376 iattr_to_fattr(attr
, &inarg
);
1378 struct fuse_file
*ff
= file
->private_data
;
1379 inarg
.valid
|= FATTR_FH
;
1382 if (attr
->ia_valid
& ATTR_SIZE
) {
1383 /* For mandatory locking in truncate */
1384 inarg
.valid
|= FATTR_LOCKOWNER
;
1385 inarg
.lock_owner
= fuse_lock_owner_id(fc
, current
->files
);
1387 req
->in
.h
.opcode
= FUSE_SETATTR
;
1388 req
->in
.h
.nodeid
= get_node_id(inode
);
1389 req
->in
.numargs
= 1;
1390 req
->in
.args
[0].size
= sizeof(inarg
);
1391 req
->in
.args
[0].value
= &inarg
;
1392 req
->out
.numargs
= 1;
1394 req
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
1396 req
->out
.args
[0].size
= sizeof(outarg
);
1397 req
->out
.args
[0].value
= &outarg
;
1398 fuse_request_send(fc
, req
);
1399 err
= req
->out
.h
.error
;
1400 fuse_put_request(fc
, req
);
1403 fuse_invalidate_attr(inode
);
1407 if ((inode
->i_mode
^ outarg
.attr
.mode
) & S_IFMT
) {
1408 make_bad_inode(inode
);
1413 spin_lock(&fc
->lock
);
1414 fuse_change_attributes_common(inode
, &outarg
.attr
,
1415 attr_timeout(&outarg
));
1416 oldsize
= inode
->i_size
;
1417 i_size_write(inode
, outarg
.attr
.size
);
1420 /* NOTE: this may release/reacquire fc->lock */
1421 __fuse_release_nowrite(inode
);
1423 spin_unlock(&fc
->lock
);
1426 * Only call invalidate_inode_pages2() after removing
1427 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1429 if (S_ISREG(inode
->i_mode
) && oldsize
!= outarg
.attr
.size
) {
1430 truncate_pagecache(inode
, oldsize
, outarg
.attr
.size
);
1431 invalidate_inode_pages2(inode
->i_mapping
);
1438 fuse_release_nowrite(inode
);
1443 static int fuse_setattr(struct dentry
*entry
, struct iattr
*attr
)
1445 if (attr
->ia_valid
& ATTR_FILE
)
1446 return fuse_do_setattr(entry
, attr
, attr
->ia_file
);
1448 return fuse_do_setattr(entry
, attr
, NULL
);
1451 static int fuse_getattr(struct vfsmount
*mnt
, struct dentry
*entry
,
1454 struct inode
*inode
= entry
->d_inode
;
1455 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1457 if (!fuse_allow_task(fc
, current
))
1460 return fuse_update_attributes(inode
, stat
, NULL
, NULL
);
1463 static int fuse_setxattr(struct dentry
*entry
, const char *name
,
1464 const void *value
, size_t size
, int flags
)
1466 struct inode
*inode
= entry
->d_inode
;
1467 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1468 struct fuse_req
*req
;
1469 struct fuse_setxattr_in inarg
;
1472 if (fc
->no_setxattr
)
1475 req
= fuse_get_req(fc
);
1477 return PTR_ERR(req
);
1479 memset(&inarg
, 0, sizeof(inarg
));
1481 inarg
.flags
= flags
;
1482 req
->in
.h
.opcode
= FUSE_SETXATTR
;
1483 req
->in
.h
.nodeid
= get_node_id(inode
);
1484 req
->in
.numargs
= 3;
1485 req
->in
.args
[0].size
= sizeof(inarg
);
1486 req
->in
.args
[0].value
= &inarg
;
1487 req
->in
.args
[1].size
= strlen(name
) + 1;
1488 req
->in
.args
[1].value
= name
;
1489 req
->in
.args
[2].size
= size
;
1490 req
->in
.args
[2].value
= value
;
1491 fuse_request_send(fc
, req
);
1492 err
= req
->out
.h
.error
;
1493 fuse_put_request(fc
, req
);
1494 if (err
== -ENOSYS
) {
1495 fc
->no_setxattr
= 1;
1501 static ssize_t
fuse_getxattr(struct dentry
*entry
, const char *name
,
1502 void *value
, size_t size
)
1504 struct inode
*inode
= entry
->d_inode
;
1505 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1506 struct fuse_req
*req
;
1507 struct fuse_getxattr_in inarg
;
1508 struct fuse_getxattr_out outarg
;
1511 if (fc
->no_getxattr
)
1514 req
= fuse_get_req(fc
);
1516 return PTR_ERR(req
);
1518 memset(&inarg
, 0, sizeof(inarg
));
1520 req
->in
.h
.opcode
= FUSE_GETXATTR
;
1521 req
->in
.h
.nodeid
= get_node_id(inode
);
1522 req
->in
.numargs
= 2;
1523 req
->in
.args
[0].size
= sizeof(inarg
);
1524 req
->in
.args
[0].value
= &inarg
;
1525 req
->in
.args
[1].size
= strlen(name
) + 1;
1526 req
->in
.args
[1].value
= name
;
1527 /* This is really two different operations rolled into one */
1528 req
->out
.numargs
= 1;
1530 req
->out
.argvar
= 1;
1531 req
->out
.args
[0].size
= size
;
1532 req
->out
.args
[0].value
= value
;
1534 req
->out
.args
[0].size
= sizeof(outarg
);
1535 req
->out
.args
[0].value
= &outarg
;
1537 fuse_request_send(fc
, req
);
1538 ret
= req
->out
.h
.error
;
1540 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1542 if (ret
== -ENOSYS
) {
1543 fc
->no_getxattr
= 1;
1547 fuse_put_request(fc
, req
);
1551 static ssize_t
fuse_listxattr(struct dentry
*entry
, char *list
, size_t size
)
1553 struct inode
*inode
= entry
->d_inode
;
1554 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1555 struct fuse_req
*req
;
1556 struct fuse_getxattr_in inarg
;
1557 struct fuse_getxattr_out outarg
;
1560 if (!fuse_allow_task(fc
, current
))
1563 if (fc
->no_listxattr
)
1566 req
= fuse_get_req(fc
);
1568 return PTR_ERR(req
);
1570 memset(&inarg
, 0, sizeof(inarg
));
1572 req
->in
.h
.opcode
= FUSE_LISTXATTR
;
1573 req
->in
.h
.nodeid
= get_node_id(inode
);
1574 req
->in
.numargs
= 1;
1575 req
->in
.args
[0].size
= sizeof(inarg
);
1576 req
->in
.args
[0].value
= &inarg
;
1577 /* This is really two different operations rolled into one */
1578 req
->out
.numargs
= 1;
1580 req
->out
.argvar
= 1;
1581 req
->out
.args
[0].size
= size
;
1582 req
->out
.args
[0].value
= list
;
1584 req
->out
.args
[0].size
= sizeof(outarg
);
1585 req
->out
.args
[0].value
= &outarg
;
1587 fuse_request_send(fc
, req
);
1588 ret
= req
->out
.h
.error
;
1590 ret
= size
? req
->out
.args
[0].size
: outarg
.size
;
1592 if (ret
== -ENOSYS
) {
1593 fc
->no_listxattr
= 1;
1597 fuse_put_request(fc
, req
);
1601 static int fuse_removexattr(struct dentry
*entry
, const char *name
)
1603 struct inode
*inode
= entry
->d_inode
;
1604 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1605 struct fuse_req
*req
;
1608 if (fc
->no_removexattr
)
1611 req
= fuse_get_req(fc
);
1613 return PTR_ERR(req
);
1615 req
->in
.h
.opcode
= FUSE_REMOVEXATTR
;
1616 req
->in
.h
.nodeid
= get_node_id(inode
);
1617 req
->in
.numargs
= 1;
1618 req
->in
.args
[0].size
= strlen(name
) + 1;
1619 req
->in
.args
[0].value
= name
;
1620 fuse_request_send(fc
, req
);
1621 err
= req
->out
.h
.error
;
1622 fuse_put_request(fc
, req
);
1623 if (err
== -ENOSYS
) {
1624 fc
->no_removexattr
= 1;
1630 static const struct inode_operations fuse_dir_inode_operations
= {
1631 .lookup
= fuse_lookup
,
1632 .mkdir
= fuse_mkdir
,
1633 .symlink
= fuse_symlink
,
1634 .unlink
= fuse_unlink
,
1635 .rmdir
= fuse_rmdir
,
1636 .rename
= fuse_rename
,
1638 .setattr
= fuse_setattr
,
1639 .create
= fuse_create
,
1640 .mknod
= fuse_mknod
,
1641 .permission
= fuse_permission
,
1642 .getattr
= fuse_getattr
,
1643 .setxattr
= fuse_setxattr
,
1644 .getxattr
= fuse_getxattr
,
1645 .listxattr
= fuse_listxattr
,
1646 .removexattr
= fuse_removexattr
,
1649 static const struct file_operations fuse_dir_operations
= {
1650 .llseek
= generic_file_llseek
,
1651 .read
= generic_read_dir
,
1652 .readdir
= fuse_readdir
,
1653 .open
= fuse_dir_open
,
1654 .release
= fuse_dir_release
,
1655 .fsync
= fuse_dir_fsync
,
1656 .unlocked_ioctl
= fuse_dir_ioctl
,
1657 .compat_ioctl
= fuse_dir_compat_ioctl
,
1660 static const struct inode_operations fuse_common_inode_operations
= {
1661 .setattr
= fuse_setattr
,
1662 .permission
= fuse_permission
,
1663 .getattr
= fuse_getattr
,
1664 .setxattr
= fuse_setxattr
,
1665 .getxattr
= fuse_getxattr
,
1666 .listxattr
= fuse_listxattr
,
1667 .removexattr
= fuse_removexattr
,
1670 static const struct inode_operations fuse_symlink_inode_operations
= {
1671 .setattr
= fuse_setattr
,
1672 .follow_link
= fuse_follow_link
,
1673 .put_link
= fuse_put_link
,
1674 .readlink
= generic_readlink
,
1675 .getattr
= fuse_getattr
,
1676 .setxattr
= fuse_setxattr
,
1677 .getxattr
= fuse_getxattr
,
1678 .listxattr
= fuse_listxattr
,
1679 .removexattr
= fuse_removexattr
,
1682 void fuse_init_common(struct inode
*inode
)
1684 inode
->i_op
= &fuse_common_inode_operations
;
1687 void fuse_init_dir(struct inode
*inode
)
1689 inode
->i_op
= &fuse_dir_inode_operations
;
1690 inode
->i_fop
= &fuse_dir_operations
;
1693 void fuse_init_symlink(struct inode
*inode
)
1695 inode
->i_op
= &fuse_symlink_inode_operations
;