2 FUSE: Filesystem in Userspace
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;
186 inode = ACCESS_ONCE(entry->d_inode);
187 if (inode && is_bad_inode(inode))
189 else if (fuse_dentry_time(entry) < get_jiffies_64()) {
191 struct fuse_entry_out outarg;
192 struct fuse_req *req;
193 struct fuse_forget_link *forget;
196 /* For negative dentries, always do a fresh lookup */
200 if (flags & LOOKUP_RCU)
203 fc = get_fuse_conn(inode);
204 req = fuse_get_req_nopages(fc);
208 forget = fuse_alloc_forget();
210 fuse_put_request(fc, req);
214 attr_version = fuse_get_attr_version(fc);
216 parent = dget_parent(entry);
217 fuse_lookup_init(fc, req, get_node_id(parent->d_inode),
218 &entry->d_name, &outarg);
219 fuse_request_send(fc, req);
221 err = req->out.h.error;
222 fuse_put_request(fc, req);
223 /* Zero nodeid is same as -ENOENT */
224 if (!err && !outarg.nodeid)
227 struct fuse_inode *fi = get_fuse_inode(inode);
228 if (outarg.nodeid != get_node_id(inode)) {
229 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
232 spin_lock(&fc->lock);
234 spin_unlock(&fc->lock);
237 if (err || (outarg.attr.mode ^ inode->i_mode) & S_IFMT)
240 fuse_change_attributes(inode, &outarg.attr,
241 entry_attr_timeout(&outarg),
243 fuse_change_entry_timeout(entry, &outarg);
245 fc = get_fuse_conn(inode);
246 if (fc->readdirplus_auto) {
247 parent = dget_parent(entry);
248 fuse_advise_use_readdirplus(parent->d_inode);
255 static int invalid_nodeid(u64 nodeid)
257 return !nodeid || nodeid == FUSE_ROOT_ID;
260 const struct dentry_operations fuse_dentry_operations = {
261 .d_revalidate = fuse_dentry_revalidate,
264 int fuse_valid_type(int m)
266 return S_ISREG(m) || S_ISDIR(m) || S_ISLNK(m) || S_ISCHR(m) ||
267 S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m);
271 * Add a directory inode to a dentry, ensuring that no other dentry
272 * refers to this inode. Called with fc->inst_mutex.
274 static struct dentry *fuse_d_add_directory(struct dentry *entry,
277 struct dentry *alias = d_find_alias(inode);
278 if (alias && !(alias->d_flags & DCACHE_DISCONNECTED)) {
279 /* This tries to shrink the subtree below alias */
280 fuse_invalidate_entry(alias);
282 if (!hlist_empty(&inode->i_dentry))
283 return ERR_PTR(-EBUSY);
287 return d_splice_alias(inode, entry);
290 int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name,
291 struct fuse_entry_out *outarg, struct inode **inode)
293 struct fuse_conn *fc = get_fuse_conn_super(sb);
294 struct fuse_req *req;
295 struct fuse_forget_link *forget;
301 if (name->len > FUSE_NAME_MAX)
304 req = fuse_get_req_nopages(fc);
309 forget = fuse_alloc_forget();
312 fuse_put_request(fc, req);
316 attr_version = fuse_get_attr_version(fc);
318 fuse_lookup_init(fc, req, nodeid, name, outarg);
319 fuse_request_send(fc, req);
320 err = req->out.h.error;
321 fuse_put_request(fc, req);
322 /* Zero nodeid is same as -ENOENT, but with valid timeout */
323 if (err || !outarg->nodeid)
329 if (!fuse_valid_type(outarg->attr.mode))
332 *inode = fuse_iget(sb, outarg->nodeid, outarg->generation,
333 &outarg->attr, entry_attr_timeout(outarg),
337 fuse_queue_forget(fc, forget, outarg->nodeid, 1);
348 static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry,
352 struct fuse_entry_out outarg;
354 struct dentry *newent;
355 struct fuse_conn *fc = get_fuse_conn(dir);
356 bool outarg_valid = true;
358 err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name,
360 if (err == -ENOENT) {
361 outarg_valid = false;
368 if (inode && get_node_id(inode) == FUSE_ROOT_ID)
371 if (inode && S_ISDIR(inode->i_mode)) {
372 mutex_lock(&fc->inst_mutex);
373 newent = fuse_d_add_directory(entry, inode);
374 mutex_unlock(&fc->inst_mutex);
375 err = PTR_ERR(newent);
379 newent = d_splice_alias(inode, entry);
382 entry = newent ? newent : entry;
384 fuse_change_entry_timeout(entry, &outarg);
386 fuse_invalidate_entry_cache(entry);
388 fuse_advise_use_readdirplus(dir);
398 * Atomic create+open operation
400 * If the filesystem doesn't support this, then fall back to separate
401 * 'mknod' + 'open' requests.
403 static int fuse_create_open(struct inode *dir, struct dentry *entry,
404 struct file *file, unsigned flags,
405 umode_t mode, int *opened)
409 struct fuse_conn *fc = get_fuse_conn(dir);
410 struct fuse_req *req;
411 struct fuse_forget_link *forget;
412 struct fuse_create_in inarg;
413 struct fuse_open_out outopen;
414 struct fuse_entry_out outentry;
415 struct fuse_file *ff;
417 /* Userspace expects S_IFREG in create mode */
418 BUG_ON((mode & S_IFMT) != S_IFREG);
420 forget = fuse_alloc_forget();
425 req = fuse_get_req_nopages(fc);
428 goto out_put_forget_req;
431 ff = fuse_file_alloc(fc);
433 goto out_put_request;
436 mode &= ~current_umask();
439 memset(&inarg, 0, sizeof(inarg));
440 memset(&outentry, 0, sizeof(outentry));
443 inarg.umask = current_umask();
444 req->in.h.opcode = FUSE_CREATE;
445 req->in.h.nodeid = get_node_id(dir);
447 req->in.args[0].size = fc->minor < 12 ? sizeof(struct fuse_open_in) :
449 req->in.args[0].value = &inarg;
450 req->in.args[1].size = entry->d_name.len + 1;
451 req->in.args[1].value = entry->d_name.name;
452 req->out.numargs = 2;
454 req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
456 req->out.args[0].size = sizeof(outentry);
457 req->out.args[0].value = &outentry;
458 req->out.args[1].size = sizeof(outopen);
459 req->out.args[1].value = &outopen;
460 fuse_request_send(fc, req);
461 err = req->out.h.error;
466 if (!S_ISREG(outentry.attr.mode) || invalid_nodeid(outentry.nodeid))
469 fuse_put_request(fc, req);
471 ff->nodeid = outentry.nodeid;
472 ff->open_flags = outopen.open_flags;
473 inode = fuse_iget(dir->i_sb, outentry.nodeid, outentry.generation,
474 &outentry.attr, entry_attr_timeout(&outentry), 0);
476 flags &= ~(O_CREAT | O_EXCL | O_TRUNC);
477 fuse_sync_release(ff, flags);
478 fuse_queue_forget(fc, forget, outentry.nodeid, 1);
483 d_instantiate(entry, inode);
484 fuse_change_entry_timeout(entry, &outentry);
485 fuse_invalidate_attr(dir);
486 err = finish_open(file, entry, generic_file_open, opened);
488 fuse_sync_release(ff, flags);
490 file->private_data = fuse_file_get(ff);
491 fuse_finish_open(inode, file);
498 fuse_put_request(fc, req);
505 static int fuse_mknod(struct inode *, struct dentry *, umode_t, dev_t);
506 static int fuse_atomic_open(struct inode *dir, struct dentry *entry,
507 struct file *file, unsigned flags,
508 umode_t mode, int *opened)
511 struct fuse_conn *fc = get_fuse_conn(dir);
512 struct dentry *res = NULL;
514 if (d_unhashed(entry)) {
515 res = fuse_lookup(dir, entry, 0);
523 if (!(flags & O_CREAT) || entry->d_inode)
527 *opened |= FILE_CREATED;
532 err = fuse_create_open(dir, entry, file, flags, mode, opened);
533 if (err == -ENOSYS) {
542 err = fuse_mknod(dir, entry, mode, 0);
546 return finish_no_open(file, res);
550 * Code shared between mknod, mkdir, symlink and link
552 static int create_new_entry(struct fuse_conn *fc, struct fuse_req *req,
553 struct inode *dir, struct dentry *entry,
556 struct fuse_entry_out outarg;
559 struct fuse_forget_link *forget;
561 forget = fuse_alloc_forget();
563 fuse_put_request(fc, req);
567 memset(&outarg, 0, sizeof(outarg));
568 req->in.h.nodeid = get_node_id(dir);
569 req->out.numargs = 1;
571 req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
573 req->out.args[0].size = sizeof(outarg);
574 req->out.args[0].value = &outarg;
575 fuse_request_send(fc, req);
576 err = req->out.h.error;
577 fuse_put_request(fc, req);
579 goto out_put_forget_req;
582 if (invalid_nodeid(outarg.nodeid))
583 goto out_put_forget_req;
585 if ((outarg.attr.mode ^ mode) & S_IFMT)
586 goto out_put_forget_req;
588 inode = fuse_iget(dir->i_sb, outarg.nodeid, outarg.generation,
589 &outarg.attr, entry_attr_timeout(&outarg), 0);
591 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
596 if (S_ISDIR(inode->i_mode)) {
597 struct dentry *alias;
598 mutex_lock(&fc->inst_mutex);
599 alias = d_find_alias(inode);
601 /* New directory must have moved since mkdir */
602 mutex_unlock(&fc->inst_mutex);
607 d_instantiate(entry, inode);
608 mutex_unlock(&fc->inst_mutex);
610 d_instantiate(entry, inode);
612 fuse_change_entry_timeout(entry, &outarg);
613 fuse_invalidate_attr(dir);
621 static int fuse_mknod(struct inode *dir, struct dentry *entry, umode_t mode,
624 struct fuse_mknod_in inarg;
625 struct fuse_conn *fc = get_fuse_conn(dir);
626 struct fuse_req *req = fuse_get_req_nopages(fc);
631 mode &= ~current_umask();
633 memset(&inarg, 0, sizeof(inarg));
635 inarg.rdev = new_encode_dev(rdev);
636 inarg.umask = current_umask();
637 req->in.h.opcode = FUSE_MKNOD;
639 req->in.args[0].size = fc->minor < 12 ? FUSE_COMPAT_MKNOD_IN_SIZE :
641 req->in.args[0].value = &inarg;
642 req->in.args[1].size = entry->d_name.len + 1;
643 req->in.args[1].value = entry->d_name.name;
644 return create_new_entry(fc, req, dir, entry, mode);
647 static int fuse_create(struct inode *dir, struct dentry *entry, umode_t mode,
650 return fuse_mknod(dir, entry, mode, 0);
653 static int fuse_mkdir(struct inode *dir, struct dentry *entry, umode_t mode)
655 struct fuse_mkdir_in inarg;
656 struct fuse_conn *fc = get_fuse_conn(dir);
657 struct fuse_req *req = fuse_get_req_nopages(fc);
662 mode &= ~current_umask();
664 memset(&inarg, 0, sizeof(inarg));
666 inarg.umask = current_umask();
667 req->in.h.opcode = FUSE_MKDIR;
669 req->in.args[0].size = sizeof(inarg);
670 req->in.args[0].value = &inarg;
671 req->in.args[1].size = entry->d_name.len + 1;
672 req->in.args[1].value = entry->d_name.name;
673 return create_new_entry(fc, req, dir, entry, S_IFDIR);
676 static int fuse_symlink(struct inode *dir, struct dentry *entry,
679 struct fuse_conn *fc = get_fuse_conn(dir);
680 unsigned len = strlen(link) + 1;
681 struct fuse_req *req = fuse_get_req_nopages(fc);
685 req->in.h.opcode = FUSE_SYMLINK;
687 req->in.args[0].size = entry->d_name.len + 1;
688 req->in.args[0].value = entry->d_name.name;
689 req->in.args[1].size = len;
690 req->in.args[1].value = link;
691 return create_new_entry(fc, req, dir, entry, S_IFLNK);
694 static int fuse_unlink(struct inode *dir, struct dentry *entry)
697 struct fuse_conn *fc = get_fuse_conn(dir);
698 struct fuse_req *req = fuse_get_req_nopages(fc);
702 req->in.h.opcode = FUSE_UNLINK;
703 req->in.h.nodeid = get_node_id(dir);
705 req->in.args[0].size = entry->d_name.len + 1;
706 req->in.args[0].value = entry->d_name.name;
707 fuse_request_send(fc, req);
708 err = req->out.h.error;
709 fuse_put_request(fc, req);
711 struct inode *inode = entry->d_inode;
712 struct fuse_inode *fi = get_fuse_inode(inode);
714 spin_lock(&fc->lock);
715 fi->attr_version = ++fc->attr_version;
717 * If i_nlink == 0 then unlink doesn't make sense, yet this can
718 * happen if userspace filesystem is careless. It would be
719 * difficult to enforce correct nlink usage so just ignore this
722 if (inode->i_nlink > 0)
724 spin_unlock(&fc->lock);
725 fuse_invalidate_attr(inode);
726 fuse_invalidate_attr(dir);
727 fuse_invalidate_entry_cache(entry);
728 } else if (err == -EINTR)
729 fuse_invalidate_entry(entry);
733 static int fuse_rmdir(struct inode *dir, struct dentry *entry)
736 struct fuse_conn *fc = get_fuse_conn(dir);
737 struct fuse_req *req = fuse_get_req_nopages(fc);
741 req->in.h.opcode = FUSE_RMDIR;
742 req->in.h.nodeid = get_node_id(dir);
744 req->in.args[0].size = entry->d_name.len + 1;
745 req->in.args[0].value = entry->d_name.name;
746 fuse_request_send(fc, req);
747 err = req->out.h.error;
748 fuse_put_request(fc, req);
750 clear_nlink(entry->d_inode);
751 fuse_invalidate_attr(dir);
752 fuse_invalidate_entry_cache(entry);
753 } else if (err == -EINTR)
754 fuse_invalidate_entry(entry);
758 static int fuse_rename(struct inode *olddir, struct dentry *oldent,
759 struct inode *newdir, struct dentry *newent)
762 struct fuse_rename_in inarg;
763 struct fuse_conn *fc = get_fuse_conn(olddir);
764 struct fuse_req *req = fuse_get_req_nopages(fc);
769 memset(&inarg, 0, sizeof(inarg));
770 inarg.newdir = get_node_id(newdir);
771 req->in.h.opcode = FUSE_RENAME;
772 req->in.h.nodeid = get_node_id(olddir);
774 req->in.args[0].size = sizeof(inarg);
775 req->in.args[0].value = &inarg;
776 req->in.args[1].size = oldent->d_name.len + 1;
777 req->in.args[1].value = oldent->d_name.name;
778 req->in.args[2].size = newent->d_name.len + 1;
779 req->in.args[2].value = newent->d_name.name;
780 fuse_request_send(fc, req);
781 err = req->out.h.error;
782 fuse_put_request(fc, req);
785 fuse_invalidate_attr(oldent->d_inode);
787 fuse_invalidate_attr(olddir);
788 if (olddir != newdir)
789 fuse_invalidate_attr(newdir);
791 /* newent will end up negative */
792 if (newent->d_inode) {
793 fuse_invalidate_attr(newent->d_inode);
794 fuse_invalidate_entry_cache(newent);
796 } else if (err == -EINTR) {
797 /* If request was interrupted, DEITY only knows if the
798 rename actually took place. If the invalidation
799 fails (e.g. some process has CWD under the renamed
800 directory), then there can be inconsistency between
801 the dcache and the real filesystem. Tough luck. */
802 fuse_invalidate_entry(oldent);
804 fuse_invalidate_entry(newent);
810 static int fuse_link(struct dentry *entry, struct inode *newdir,
811 struct dentry *newent)
814 struct fuse_link_in inarg;
815 struct inode *inode = entry->d_inode;
816 struct fuse_conn *fc = get_fuse_conn(inode);
817 struct fuse_req *req = fuse_get_req_nopages(fc);
821 memset(&inarg, 0, sizeof(inarg));
822 inarg.oldnodeid = get_node_id(inode);
823 req->in.h.opcode = FUSE_LINK;
825 req->in.args[0].size = sizeof(inarg);
826 req->in.args[0].value = &inarg;
827 req->in.args[1].size = newent->d_name.len + 1;
828 req->in.args[1].value = newent->d_name.name;
829 err = create_new_entry(fc, req, newdir, newent, inode->i_mode);
830 /* Contrary to "normal" filesystems it can happen that link
831 makes two "logical" inodes point to the same "physical"
832 inode. We invalidate the attributes of the old one, so it
833 will reflect changes in the backing inode (link count,
837 struct fuse_inode *fi = get_fuse_inode(inode);
839 spin_lock(&fc->lock);
840 fi->attr_version = ++fc->attr_version;
842 spin_unlock(&fc->lock);
843 fuse_invalidate_attr(inode);
844 } else if (err == -EINTR) {
845 fuse_invalidate_attr(inode);
850 static void fuse_fillattr(struct inode *inode, struct fuse_attr *attr,
853 unsigned int blkbits;
855 stat->dev = inode->i_sb->s_dev;
856 stat->ino = attr->ino;
857 stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
858 stat->nlink = attr->nlink;
859 stat->uid = make_kuid(&init_user_ns, attr->uid);
860 stat->gid = make_kgid(&init_user_ns, attr->gid);
861 stat->rdev = inode->i_rdev;
862 stat->atime.tv_sec = attr->atime;
863 stat->atime.tv_nsec = attr->atimensec;
864 stat->mtime.tv_sec = attr->mtime;
865 stat->mtime.tv_nsec = attr->mtimensec;
866 stat->ctime.tv_sec = attr->ctime;
867 stat->ctime.tv_nsec = attr->ctimensec;
868 stat->size = attr->size;
869 stat->blocks = attr->blocks;
871 if (attr->blksize != 0)
872 blkbits = ilog2(attr->blksize);
874 blkbits = inode->i_sb->s_blocksize_bits;
876 stat->blksize = 1 << blkbits;
879 static int fuse_do_getattr(struct inode *inode, struct kstat *stat,
883 struct fuse_getattr_in inarg;
884 struct fuse_attr_out outarg;
885 struct fuse_conn *fc = get_fuse_conn(inode);
886 struct fuse_req *req;
889 req = fuse_get_req_nopages(fc);
893 attr_version = fuse_get_attr_version(fc);
895 memset(&inarg, 0, sizeof(inarg));
896 memset(&outarg, 0, sizeof(outarg));
897 /* Directories have separate file-handle space */
898 if (file && S_ISREG(inode->i_mode)) {
899 struct fuse_file *ff = file->private_data;
901 inarg.getattr_flags |= FUSE_GETATTR_FH;
904 req->in.h.opcode = FUSE_GETATTR;
905 req->in.h.nodeid = get_node_id(inode);
907 req->in.args[0].size = sizeof(inarg);
908 req->in.args[0].value = &inarg;
909 req->out.numargs = 1;
911 req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
913 req->out.args[0].size = sizeof(outarg);
914 req->out.args[0].value = &outarg;
915 fuse_request_send(fc, req);
916 err = req->out.h.error;
917 fuse_put_request(fc, req);
919 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
920 make_bad_inode(inode);
923 fuse_change_attributes(inode, &outarg.attr,
924 attr_timeout(&outarg),
927 fuse_fillattr(inode, &outarg.attr, stat);
933 int fuse_update_attributes(struct inode *inode, struct kstat *stat,
934 struct file *file, bool *refreshed)
936 struct fuse_inode *fi = get_fuse_inode(inode);
940 if (fi->i_time < get_jiffies_64()) {
942 err = fuse_do_getattr(inode, stat, file);
947 generic_fillattr(inode, stat);
948 stat->mode = fi->orig_i_mode;
949 stat->ino = fi->orig_ino;
953 if (refreshed != NULL)
959 int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid,
960 u64 child_nodeid, struct qstr *name)
963 struct inode *parent;
965 struct dentry *entry;
967 parent = ilookup5(sb, parent_nodeid, fuse_inode_eq, &parent_nodeid);
971 mutex_lock(&parent->i_mutex);
972 if (!S_ISDIR(parent->i_mode))
976 dir = d_find_alias(parent);
980 entry = d_lookup(dir, name);
985 fuse_invalidate_attr(parent);
986 fuse_invalidate_entry(entry);
988 if (child_nodeid != 0 && entry->d_inode) {
989 mutex_lock(&entry->d_inode->i_mutex);
990 if (get_node_id(entry->d_inode) != child_nodeid) {
994 if (d_mountpoint(entry)) {
998 if (S_ISDIR(entry->d_inode->i_mode)) {
999 shrink_dcache_parent(entry);
1000 if (!simple_empty(entry)) {
1004 entry->d_inode->i_flags |= S_DEAD;
1007 clear_nlink(entry->d_inode);
1010 mutex_unlock(&entry->d_inode->i_mutex);
1019 mutex_unlock(&parent->i_mutex);
1025 * Calling into a user-controlled filesystem gives the filesystem
1026 * daemon ptrace-like capabilities over the current process. This
1027 * means, that the filesystem daemon is able to record the exact
1028 * filesystem operations performed, and can also control the behavior
1029 * of the requester process in otherwise impossible ways. For example
1030 * it can delay the operation for arbitrary length of time allowing
1031 * DoS against the requester.
1033 * For this reason only those processes can call into the filesystem,
1034 * for which the owner of the mount has ptrace privilege. This
1035 * excludes processes started by other users, suid or sgid processes.
1037 int fuse_allow_current_process(struct fuse_conn *fc)
1039 const struct cred *cred;
1041 if (fc->flags & FUSE_ALLOW_OTHER)
1044 cred = current_cred();
1045 if (uid_eq(cred->euid, fc->user_id) &&
1046 uid_eq(cred->suid, fc->user_id) &&
1047 uid_eq(cred->uid, fc->user_id) &&
1048 gid_eq(cred->egid, fc->group_id) &&
1049 gid_eq(cred->sgid, fc->group_id) &&
1050 gid_eq(cred->gid, fc->group_id))
1056 static int fuse_access(struct inode *inode, int mask)
1058 struct fuse_conn *fc = get_fuse_conn(inode);
1059 struct fuse_req *req;
1060 struct fuse_access_in inarg;
1066 req = fuse_get_req_nopages(fc);
1068 return PTR_ERR(req);
1070 memset(&inarg, 0, sizeof(inarg));
1071 inarg.mask = mask & (MAY_READ | MAY_WRITE | MAY_EXEC);
1072 req->in.h.opcode = FUSE_ACCESS;
1073 req->in.h.nodeid = get_node_id(inode);
1074 req->in.numargs = 1;
1075 req->in.args[0].size = sizeof(inarg);
1076 req->in.args[0].value = &inarg;
1077 fuse_request_send(fc, req);
1078 err = req->out.h.error;
1079 fuse_put_request(fc, req);
1080 if (err == -ENOSYS) {
1087 static int fuse_perm_getattr(struct inode *inode, int mask)
1089 if (mask & MAY_NOT_BLOCK)
1092 return fuse_do_getattr(inode, NULL, NULL);
1096 * Check permission. The two basic access models of FUSE are:
1098 * 1) Local access checking ('default_permissions' mount option) based
1099 * on file mode. This is the plain old disk filesystem permission
1102 * 2) "Remote" access checking, where server is responsible for
1103 * checking permission in each inode operation. An exception to this
1104 * is if ->permission() was invoked from sys_access() in which case an
1105 * access request is sent. Execute permission is still checked
1106 * locally based on file mode.
1108 static int fuse_permission(struct inode *inode, int mask)
1110 struct fuse_conn *fc = get_fuse_conn(inode);
1111 bool refreshed = false;
1114 if (!fuse_allow_current_process(fc))
1118 * If attributes are needed, refresh them before proceeding
1120 if ((fc->flags & FUSE_DEFAULT_PERMISSIONS) ||
1121 ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))) {
1122 struct fuse_inode *fi = get_fuse_inode(inode);
1124 if (fi->i_time < get_jiffies_64()) {
1127 err = fuse_perm_getattr(inode, mask);
1133 if (fc->flags & FUSE_DEFAULT_PERMISSIONS) {
1134 err = generic_permission(inode, mask);
1136 /* If permission is denied, try to refresh file
1137 attributes. This is also needed, because the root
1138 node will at first have no permissions */
1139 if (err == -EACCES && !refreshed) {
1140 err = fuse_perm_getattr(inode, mask);
1142 err = generic_permission(inode, mask);
1145 /* Note: the opposite of the above test does not
1146 exist. So if permissions are revoked this won't be
1147 noticed immediately, only after the attribute
1148 timeout has expired */
1149 } else if (mask & (MAY_ACCESS | MAY_CHDIR)) {
1150 if (mask & MAY_NOT_BLOCK)
1153 err = fuse_access(inode, mask);
1154 } else if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
1155 if (!(inode->i_mode & S_IXUGO)) {
1159 err = fuse_perm_getattr(inode, mask);
1160 if (!err && !(inode->i_mode & S_IXUGO))
1167 static int parse_dirfile(char *buf, size_t nbytes, struct file *file,
1168 struct dir_context *ctx)
1170 while (nbytes >= FUSE_NAME_OFFSET) {
1171 struct fuse_dirent *dirent = (struct fuse_dirent *) buf;
1172 size_t reclen = FUSE_DIRENT_SIZE(dirent);
1173 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1175 if (reclen > nbytes)
1178 if (!dir_emit(ctx, dirent->name, dirent->namelen,
1179 dirent->ino, dirent->type))
1184 ctx->pos = dirent->off;
1190 static int fuse_direntplus_link(struct file *file,
1191 struct fuse_direntplus *direntplus,
1195 struct fuse_entry_out *o = &direntplus->entry_out;
1196 struct fuse_dirent *dirent = &direntplus->dirent;
1197 struct dentry *parent = file->f_path.dentry;
1198 struct qstr name = QSTR_INIT(dirent->name, dirent->namelen);
1199 struct dentry *dentry;
1200 struct dentry *alias;
1201 struct inode *dir = parent->d_inode;
1202 struct fuse_conn *fc;
1203 struct inode *inode;
1207 * Unlike in the case of fuse_lookup, zero nodeid does not mean
1208 * ENOENT. Instead, it only means the userspace filesystem did
1209 * not want to return attributes/handle for this entry.
1216 if (name.name[0] == '.') {
1218 * We could potentially refresh the attributes of the directory
1223 if (name.name[1] == '.' && name.len == 2)
1226 fc = get_fuse_conn(dir);
1228 name.hash = full_name_hash(name.name, name.len);
1229 dentry = d_lookup(parent, &name);
1230 if (dentry && dentry->d_inode) {
1231 inode = dentry->d_inode;
1232 if (get_node_id(inode) == o->nodeid) {
1233 struct fuse_inode *fi;
1234 fi = get_fuse_inode(inode);
1235 spin_lock(&fc->lock);
1237 spin_unlock(&fc->lock);
1240 * The other branch to 'found' comes via fuse_iget()
1241 * which bumps nlookup inside
1245 err = d_invalidate(dentry);
1252 dentry = d_alloc(parent, &name);
1257 inode = fuse_iget(dir->i_sb, o->nodeid, o->generation,
1258 &o->attr, entry_attr_timeout(o), attr_version);
1262 alias = d_materialise_unique(dentry, inode);
1263 err = PTR_ERR(alias);
1272 fuse_change_attributes(inode, &o->attr, entry_attr_timeout(o),
1275 fuse_change_entry_timeout(dentry, o);
1284 static int parse_dirplusfile(char *buf, size_t nbytes, struct file *file,
1285 struct dir_context *ctx, u64 attr_version)
1287 struct fuse_direntplus *direntplus;
1288 struct fuse_dirent *dirent;
1293 while (nbytes >= FUSE_NAME_OFFSET_DIRENTPLUS) {
1294 direntplus = (struct fuse_direntplus *) buf;
1295 dirent = &direntplus->dirent;
1296 reclen = FUSE_DIRENTPLUS_SIZE(direntplus);
1298 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1300 if (reclen > nbytes)
1304 /* We fill entries into dstbuf only as much as
1305 it can hold. But we still continue iterating
1306 over remaining entries to link them. If not,
1307 we need to send a FORGET for each of those
1308 which we did not link.
1310 over = !dir_emit(ctx, dirent->name, dirent->namelen,
1311 dirent->ino, dirent->type);
1312 ctx->pos = dirent->off;
1318 ret = fuse_direntplus_link(file, direntplus, attr_version);
1320 fuse_force_forget(file, direntplus->entry_out.nodeid);
1326 static int fuse_readdir(struct file *file, struct dir_context *ctx)
1331 struct inode *inode = file_inode(file);
1332 struct fuse_conn *fc = get_fuse_conn(inode);
1333 struct fuse_req *req;
1334 u64 attr_version = 0;
1336 if (is_bad_inode(inode))
1339 req = fuse_get_req(fc, 1);
1341 return PTR_ERR(req);
1343 page = alloc_page(GFP_KERNEL);
1345 fuse_put_request(fc, req);
1349 plus = fuse_use_readdirplus(inode, ctx);
1350 req->out.argpages = 1;
1352 req->pages[0] = page;
1353 req->page_descs[0].length = PAGE_SIZE;
1355 attr_version = fuse_get_attr_version(fc);
1356 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
1359 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
1362 fuse_request_send(fc, req);
1363 nbytes = req->out.args[0].size;
1364 err = req->out.h.error;
1365 fuse_put_request(fc, req);
1368 err = parse_dirplusfile(page_address(page), nbytes,
1372 err = parse_dirfile(page_address(page), nbytes, file,
1378 fuse_invalidate_attr(inode); /* atime changed */
1382 static char *read_link(struct dentry *dentry)
1384 struct inode *inode = dentry->d_inode;
1385 struct fuse_conn *fc = get_fuse_conn(inode);
1386 struct fuse_req *req = fuse_get_req_nopages(fc);
1390 return ERR_CAST(req);
1392 link = (char *) __get_free_page(GFP_KERNEL);
1394 link = ERR_PTR(-ENOMEM);
1397 req->in.h.opcode = FUSE_READLINK;
1398 req->in.h.nodeid = get_node_id(inode);
1399 req->out.argvar = 1;
1400 req->out.numargs = 1;
1401 req->out.args[0].size = PAGE_SIZE - 1;
1402 req->out.args[0].value = link;
1403 fuse_request_send(fc, req);
1404 if (req->out.h.error) {
1405 free_page((unsigned long) link);
1406 link = ERR_PTR(req->out.h.error);
1408 link[req->out.args[0].size] = '\0';
1410 fuse_put_request(fc, req);
1411 fuse_invalidate_attr(inode); /* atime changed */
1415 static void free_link(char *link)
1418 free_page((unsigned long) link);
1421 static void *fuse_follow_link(struct dentry *dentry, struct nameidata *nd)
1423 nd_set_link(nd, read_link(dentry));
1427 static void fuse_put_link(struct dentry *dentry, struct nameidata *nd, void *c)
1429 free_link(nd_get_link(nd));
1432 static int fuse_dir_open(struct inode *inode, struct file *file)
1434 return fuse_open_common(inode, file, true);
1437 static int fuse_dir_release(struct inode *inode, struct file *file)
1439 fuse_release_common(file, FUSE_RELEASEDIR);
1444 static int fuse_dir_fsync(struct file *file, loff_t start, loff_t end,
1447 return fuse_fsync_common(file, start, end, datasync, 1);
1450 static long fuse_dir_ioctl(struct file *file, unsigned int cmd,
1453 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1455 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1459 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_DIR);
1462 static long fuse_dir_compat_ioctl(struct file *file, unsigned int cmd,
1465 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1470 return fuse_ioctl_common(file, cmd, arg,
1471 FUSE_IOCTL_COMPAT | FUSE_IOCTL_DIR);
1474 static bool update_mtime(unsigned ivalid)
1476 /* Always update if mtime is explicitly set */
1477 if (ivalid & ATTR_MTIME_SET)
1480 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1481 if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE)))
1484 /* In all other cases update */
1488 static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg)
1490 unsigned ivalid = iattr->ia_valid;
1492 if (ivalid & ATTR_MODE)
1493 arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode;
1494 if (ivalid & ATTR_UID)
1495 arg->valid |= FATTR_UID, arg->uid = from_kuid(&init_user_ns, iattr->ia_uid);
1496 if (ivalid & ATTR_GID)
1497 arg->valid |= FATTR_GID, arg->gid = from_kgid(&init_user_ns, iattr->ia_gid);
1498 if (ivalid & ATTR_SIZE)
1499 arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size;
1500 if (ivalid & ATTR_ATIME) {
1501 arg->valid |= FATTR_ATIME;
1502 arg->atime = iattr->ia_atime.tv_sec;
1503 arg->atimensec = iattr->ia_atime.tv_nsec;
1504 if (!(ivalid & ATTR_ATIME_SET))
1505 arg->valid |= FATTR_ATIME_NOW;
1507 if ((ivalid & ATTR_MTIME) && update_mtime(ivalid)) {
1508 arg->valid |= FATTR_MTIME;
1509 arg->mtime = iattr->ia_mtime.tv_sec;
1510 arg->mtimensec = iattr->ia_mtime.tv_nsec;
1511 if (!(ivalid & ATTR_MTIME_SET))
1512 arg->valid |= FATTR_MTIME_NOW;
1517 * Prevent concurrent writepages on inode
1519 * This is done by adding a negative bias to the inode write counter
1520 * and waiting for all pending writes to finish.
1522 void fuse_set_nowrite(struct inode *inode)
1524 struct fuse_conn *fc = get_fuse_conn(inode);
1525 struct fuse_inode *fi = get_fuse_inode(inode);
1527 BUG_ON(!mutex_is_locked(&inode->i_mutex));
1529 spin_lock(&fc->lock);
1530 BUG_ON(fi->writectr < 0);
1531 fi->writectr += FUSE_NOWRITE;
1532 spin_unlock(&fc->lock);
1533 wait_event(fi->page_waitq, fi->writectr == FUSE_NOWRITE);
1537 * Allow writepages on inode
1539 * Remove the bias from the writecounter and send any queued
1542 static void __fuse_release_nowrite(struct inode *inode)
1544 struct fuse_inode *fi = get_fuse_inode(inode);
1546 BUG_ON(fi->writectr != FUSE_NOWRITE);
1548 fuse_flush_writepages(inode);
1551 void fuse_release_nowrite(struct inode *inode)
1553 struct fuse_conn *fc = get_fuse_conn(inode);
1555 spin_lock(&fc->lock);
1556 __fuse_release_nowrite(inode);
1557 spin_unlock(&fc->lock);
1561 * Set attributes, and at the same time refresh them.
1563 * Truncation is slightly complicated, because the 'truncate' request
1564 * may fail, in which case we don't want to touch the mapping.
1565 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1566 * and the actual truncation by hand.
1568 int fuse_do_setattr(struct inode *inode, struct iattr *attr,
1571 struct fuse_conn *fc = get_fuse_conn(inode);
1572 struct fuse_req *req;
1573 struct fuse_setattr_in inarg;
1574 struct fuse_attr_out outarg;
1575 bool is_truncate = false;
1579 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
1580 attr->ia_valid |= ATTR_FORCE;
1582 err = inode_change_ok(inode, attr);
1586 if (attr->ia_valid & ATTR_OPEN) {
1587 if (fc->atomic_o_trunc)
1592 if (attr->ia_valid & ATTR_SIZE)
1595 req = fuse_get_req_nopages(fc);
1597 return PTR_ERR(req);
1600 fuse_set_nowrite(inode);
1602 memset(&inarg, 0, sizeof(inarg));
1603 memset(&outarg, 0, sizeof(outarg));
1604 iattr_to_fattr(attr, &inarg);
1606 struct fuse_file *ff = file->private_data;
1607 inarg.valid |= FATTR_FH;
1610 if (attr->ia_valid & ATTR_SIZE) {
1611 /* For mandatory locking in truncate */
1612 inarg.valid |= FATTR_LOCKOWNER;
1613 inarg.lock_owner = fuse_lock_owner_id(fc, current->files);
1615 req->in.h.opcode = FUSE_SETATTR;
1616 req->in.h.nodeid = get_node_id(inode);
1617 req->in.numargs = 1;
1618 req->in.args[0].size = sizeof(inarg);
1619 req->in.args[0].value = &inarg;
1620 req->out.numargs = 1;
1622 req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
1624 req->out.args[0].size = sizeof(outarg);
1625 req->out.args[0].value = &outarg;
1626 fuse_request_send(fc, req);
1627 err = req->out.h.error;
1628 fuse_put_request(fc, req);
1631 fuse_invalidate_attr(inode);
1635 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
1636 make_bad_inode(inode);
1641 spin_lock(&fc->lock);
1642 fuse_change_attributes_common(inode, &outarg.attr,
1643 attr_timeout(&outarg));
1644 oldsize = inode->i_size;
1645 i_size_write(inode, outarg.attr.size);
1648 /* NOTE: this may release/reacquire fc->lock */
1649 __fuse_release_nowrite(inode);
1651 spin_unlock(&fc->lock);
1654 * Only call invalidate_inode_pages2() after removing
1655 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1657 if (S_ISREG(inode->i_mode) && oldsize != outarg.attr.size) {
1658 truncate_pagecache(inode, oldsize, outarg.attr.size);
1659 invalidate_inode_pages2(inode->i_mapping);
1666 fuse_release_nowrite(inode);
1671 static int fuse_setattr(struct dentry *entry, struct iattr *attr)
1673 struct inode *inode = entry->d_inode;
1675 if (!fuse_allow_current_process(get_fuse_conn(inode)))
1678 if (attr->ia_valid & ATTR_FILE)
1679 return fuse_do_setattr(inode, attr, attr->ia_file);
1681 return fuse_do_setattr(inode, attr, NULL);
1684 static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry,
1687 struct inode *inode = entry->d_inode;
1688 struct fuse_conn *fc = get_fuse_conn(inode);
1690 if (!fuse_allow_current_process(fc))
1693 return fuse_update_attributes(inode, stat, NULL, NULL);
1696 static int fuse_setxattr(struct dentry *entry, const char *name,
1697 const void *value, size_t size, int flags)
1699 struct inode *inode = entry->d_inode;
1700 struct fuse_conn *fc = get_fuse_conn(inode);
1701 struct fuse_req *req;
1702 struct fuse_setxattr_in inarg;
1705 if (fc->no_setxattr)
1708 req = fuse_get_req_nopages(fc);
1710 return PTR_ERR(req);
1712 memset(&inarg, 0, sizeof(inarg));
1714 inarg.flags = flags;
1715 req->in.h.opcode = FUSE_SETXATTR;
1716 req->in.h.nodeid = get_node_id(inode);
1717 req->in.numargs = 3;
1718 req->in.args[0].size = sizeof(inarg);
1719 req->in.args[0].value = &inarg;
1720 req->in.args[1].size = strlen(name) + 1;
1721 req->in.args[1].value = name;
1722 req->in.args[2].size = size;
1723 req->in.args[2].value = value;
1724 fuse_request_send(fc, req);
1725 err = req->out.h.error;
1726 fuse_put_request(fc, req);
1727 if (err == -ENOSYS) {
1728 fc->no_setxattr = 1;
1734 static ssize_t fuse_getxattr(struct dentry *entry, const char *name,
1735 void *value, size_t size)
1737 struct inode *inode = entry->d_inode;
1738 struct fuse_conn *fc = get_fuse_conn(inode);
1739 struct fuse_req *req;
1740 struct fuse_getxattr_in inarg;
1741 struct fuse_getxattr_out outarg;
1744 if (fc->no_getxattr)
1747 req = fuse_get_req_nopages(fc);
1749 return PTR_ERR(req);
1751 memset(&inarg, 0, sizeof(inarg));
1753 req->in.h.opcode = FUSE_GETXATTR;
1754 req->in.h.nodeid = get_node_id(inode);
1755 req->in.numargs = 2;
1756 req->in.args[0].size = sizeof(inarg);
1757 req->in.args[0].value = &inarg;
1758 req->in.args[1].size = strlen(name) + 1;
1759 req->in.args[1].value = name;
1760 /* This is really two different operations rolled into one */
1761 req->out.numargs = 1;
1763 req->out.argvar = 1;
1764 req->out.args[0].size = size;
1765 req->out.args[0].value = value;
1767 req->out.args[0].size = sizeof(outarg);
1768 req->out.args[0].value = &outarg;
1770 fuse_request_send(fc, req);
1771 ret = req->out.h.error;
1773 ret = size ? req->out.args[0].size : outarg.size;
1775 if (ret == -ENOSYS) {
1776 fc->no_getxattr = 1;
1780 fuse_put_request(fc, req);
1784 static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size)
1786 struct inode *inode = entry->d_inode;
1787 struct fuse_conn *fc = get_fuse_conn(inode);
1788 struct fuse_req *req;
1789 struct fuse_getxattr_in inarg;
1790 struct fuse_getxattr_out outarg;
1793 if (!fuse_allow_current_process(fc))
1796 if (fc->no_listxattr)
1799 req = fuse_get_req_nopages(fc);
1801 return PTR_ERR(req);
1803 memset(&inarg, 0, sizeof(inarg));
1805 req->in.h.opcode = FUSE_LISTXATTR;
1806 req->in.h.nodeid = get_node_id(inode);
1807 req->in.numargs = 1;
1808 req->in.args[0].size = sizeof(inarg);
1809 req->in.args[0].value = &inarg;
1810 /* This is really two different operations rolled into one */
1811 req->out.numargs = 1;
1813 req->out.argvar = 1;
1814 req->out.args[0].size = size;
1815 req->out.args[0].value = list;
1817 req->out.args[0].size = sizeof(outarg);
1818 req->out.args[0].value = &outarg;
1820 fuse_request_send(fc, req);
1821 ret = req->out.h.error;
1823 ret = size ? req->out.args[0].size : outarg.size;
1825 if (ret == -ENOSYS) {
1826 fc->no_listxattr = 1;
1830 fuse_put_request(fc, req);
1834 static int fuse_removexattr(struct dentry *entry, const char *name)
1836 struct inode *inode = entry->d_inode;
1837 struct fuse_conn *fc = get_fuse_conn(inode);
1838 struct fuse_req *req;
1841 if (fc->no_removexattr)
1844 req = fuse_get_req_nopages(fc);
1846 return PTR_ERR(req);
1848 req->in.h.opcode = FUSE_REMOVEXATTR;
1849 req->in.h.nodeid = get_node_id(inode);
1850 req->in.numargs = 1;
1851 req->in.args[0].size = strlen(name) + 1;
1852 req->in.args[0].value = name;
1853 fuse_request_send(fc, req);
1854 err = req->out.h.error;
1855 fuse_put_request(fc, req);
1856 if (err == -ENOSYS) {
1857 fc->no_removexattr = 1;
1863 static const struct inode_operations fuse_dir_inode_operations = {
1864 .lookup = fuse_lookup,
1865 .mkdir = fuse_mkdir,
1866 .symlink = fuse_symlink,
1867 .unlink = fuse_unlink,
1868 .rmdir = fuse_rmdir,
1869 .rename = fuse_rename,
1871 .setattr = fuse_setattr,
1872 .create = fuse_create,
1873 .atomic_open = fuse_atomic_open,
1874 .mknod = fuse_mknod,
1875 .permission = fuse_permission,
1876 .getattr = fuse_getattr,
1877 .setxattr = fuse_setxattr,
1878 .getxattr = fuse_getxattr,
1879 .listxattr = fuse_listxattr,
1880 .removexattr = fuse_removexattr,
1883 static const struct file_operations fuse_dir_operations = {
1884 .llseek = generic_file_llseek,
1885 .read = generic_read_dir,
1886 .iterate = fuse_readdir,
1887 .open = fuse_dir_open,
1888 .release = fuse_dir_release,
1889 .fsync = fuse_dir_fsync,
1890 .unlocked_ioctl = fuse_dir_ioctl,
1891 .compat_ioctl = fuse_dir_compat_ioctl,
1894 static const struct inode_operations fuse_common_inode_operations = {
1895 .setattr = fuse_setattr,
1896 .permission = fuse_permission,
1897 .getattr = fuse_getattr,
1898 .setxattr = fuse_setxattr,
1899 .getxattr = fuse_getxattr,
1900 .listxattr = fuse_listxattr,
1901 .removexattr = fuse_removexattr,
1904 static const struct inode_operations fuse_symlink_inode_operations = {
1905 .setattr = fuse_setattr,
1906 .follow_link = fuse_follow_link,
1907 .put_link = fuse_put_link,
1908 .readlink = generic_readlink,
1909 .getattr = fuse_getattr,
1910 .setxattr = fuse_setxattr,
1911 .getxattr = fuse_getxattr,
1912 .listxattr = fuse_listxattr,
1913 .removexattr = fuse_removexattr,
1916 void fuse_init_common(struct inode *inode)
1918 inode->i_op = &fuse_common_inode_operations;
1921 void fuse_init_dir(struct inode *inode)
1923 inode->i_op = &fuse_dir_inode_operations;
1924 inode->i_fop = &fuse_dir_operations;
1927 void fuse_init_symlink(struct inode *inode)
1929 inode->i_op = &fuse_symlink_inode_operations;