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 * Mark the attributes as stale due to an atime change. Avoid the invalidate if
119 void fuse_invalidate_atime(struct inode *inode)
121 if (!IS_RDONLY(inode))
122 fuse_invalidate_attr(inode);
126 * Just mark the entry as stale, so that a next attempt to look it up
127 * will result in a new lookup call to userspace
129 * This is called when a dentry is about to become negative and the
130 * timeout is unknown (unlink, rmdir, rename and in some cases
133 void fuse_invalidate_entry_cache(struct dentry *entry)
135 fuse_dentry_settime(entry, 0);
139 * Same as fuse_invalidate_entry_cache(), but also try to remove the
140 * dentry from the hash
142 static void fuse_invalidate_entry(struct dentry *entry)
145 fuse_invalidate_entry_cache(entry);
148 static void fuse_lookup_init(struct fuse_conn *fc, struct fuse_req *req,
149 u64 nodeid, struct qstr *name,
150 struct fuse_entry_out *outarg)
152 memset(outarg, 0, sizeof(struct fuse_entry_out));
153 req->in.h.opcode = FUSE_LOOKUP;
154 req->in.h.nodeid = nodeid;
156 req->in.args[0].size = name->len + 1;
157 req->in.args[0].value = name->name;
158 req->out.numargs = 1;
160 req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
162 req->out.args[0].size = sizeof(struct fuse_entry_out);
163 req->out.args[0].value = outarg;
166 u64 fuse_get_attr_version(struct fuse_conn *fc)
171 * The spin lock isn't actually needed on 64bit archs, but we
172 * don't yet care too much about such optimizations.
174 spin_lock(&fc->lock);
175 curr_version = fc->attr_version;
176 spin_unlock(&fc->lock);
182 * Check whether the dentry is still valid
184 * If the entry validity timeout has expired and the dentry is
185 * positive, try to redo the lookup. If the lookup results in a
186 * different inode, then let the VFS invalidate the dentry and redo
187 * the lookup once more. If the lookup results in the same inode,
188 * then refresh the attributes, timeouts and mark the dentry valid.
190 static int fuse_dentry_revalidate(struct dentry *entry, unsigned int flags)
193 struct dentry *parent;
194 struct fuse_conn *fc;
195 struct fuse_inode *fi;
198 inode = ACCESS_ONCE(entry->d_inode);
199 if (inode && is_bad_inode(inode))
201 else if (time_before64(fuse_dentry_time(entry), get_jiffies_64()) ||
202 (flags & LOOKUP_REVAL)) {
204 struct fuse_entry_out outarg;
205 struct fuse_req *req;
206 struct fuse_forget_link *forget;
209 /* For negative dentries, always do a fresh lookup */
214 if (flags & LOOKUP_RCU)
217 fc = get_fuse_conn(inode);
218 req = fuse_get_req_nopages(fc);
223 forget = fuse_alloc_forget();
225 fuse_put_request(fc, req);
230 attr_version = fuse_get_attr_version(fc);
232 parent = dget_parent(entry);
233 fuse_lookup_init(fc, req, get_node_id(parent->d_inode),
234 &entry->d_name, &outarg);
235 fuse_request_send(fc, req);
237 err = req->out.h.error;
238 fuse_put_request(fc, req);
239 /* Zero nodeid is same as -ENOENT */
240 if (!err && !outarg.nodeid)
243 fi = get_fuse_inode(inode);
244 if (outarg.nodeid != get_node_id(inode)) {
245 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
248 spin_lock(&fc->lock);
250 spin_unlock(&fc->lock);
253 if (err || (outarg.attr.mode ^ inode->i_mode) & S_IFMT)
256 fuse_change_attributes(inode, &outarg.attr,
257 entry_attr_timeout(&outarg),
259 fuse_change_entry_timeout(entry, &outarg);
261 fi = get_fuse_inode(inode);
262 if (flags & LOOKUP_RCU) {
263 if (test_bit(FUSE_I_INIT_RDPLUS, &fi->state))
265 } else if (test_and_clear_bit(FUSE_I_INIT_RDPLUS, &fi->state)) {
266 parent = dget_parent(entry);
267 fuse_advise_use_readdirplus(parent->d_inode);
278 if (!(flags & LOOKUP_RCU) && check_submounts_and_drop(entry) != 0)
283 static int invalid_nodeid(u64 nodeid)
285 return !nodeid || nodeid == FUSE_ROOT_ID;
288 const struct dentry_operations fuse_dentry_operations = {
289 .d_revalidate = fuse_dentry_revalidate,
292 int fuse_valid_type(int m)
294 return S_ISREG(m) || S_ISDIR(m) || S_ISLNK(m) || S_ISCHR(m) ||
295 S_ISBLK(m) || S_ISFIFO(m) || S_ISSOCK(m);
298 int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name,
299 struct fuse_entry_out *outarg, struct inode **inode)
301 struct fuse_conn *fc = get_fuse_conn_super(sb);
302 struct fuse_req *req;
303 struct fuse_forget_link *forget;
309 if (name->len > FUSE_NAME_MAX)
312 req = fuse_get_req_nopages(fc);
317 forget = fuse_alloc_forget();
320 fuse_put_request(fc, req);
324 attr_version = fuse_get_attr_version(fc);
326 fuse_lookup_init(fc, req, nodeid, name, outarg);
327 fuse_request_send(fc, req);
328 err = req->out.h.error;
329 fuse_put_request(fc, req);
330 /* Zero nodeid is same as -ENOENT, but with valid timeout */
331 if (err || !outarg->nodeid)
337 if (!fuse_valid_type(outarg->attr.mode))
340 *inode = fuse_iget(sb, outarg->nodeid, outarg->generation,
341 &outarg->attr, entry_attr_timeout(outarg),
345 fuse_queue_forget(fc, forget, outarg->nodeid, 1);
356 static struct dentry *fuse_lookup(struct inode *dir, struct dentry *entry,
360 struct fuse_entry_out outarg;
362 struct dentry *newent;
363 bool outarg_valid = true;
365 err = fuse_lookup_name(dir->i_sb, get_node_id(dir), &entry->d_name,
367 if (err == -ENOENT) {
368 outarg_valid = false;
375 if (inode && get_node_id(inode) == FUSE_ROOT_ID)
378 newent = d_materialise_unique(entry, inode);
379 err = PTR_ERR(newent);
383 entry = newent ? newent : entry;
385 fuse_change_entry_timeout(entry, &outarg);
387 fuse_invalidate_entry_cache(entry);
389 fuse_advise_use_readdirplus(dir);
399 * Atomic create+open operation
401 * If the filesystem doesn't support this, then fall back to separate
402 * 'mknod' + 'open' requests.
404 static int fuse_create_open(struct inode *dir, struct dentry *entry,
405 struct file *file, unsigned flags,
406 umode_t mode, int *opened)
410 struct fuse_conn *fc = get_fuse_conn(dir);
411 struct fuse_req *req;
412 struct fuse_forget_link *forget;
413 struct fuse_create_in inarg;
414 struct fuse_open_out outopen;
415 struct fuse_entry_out outentry;
416 struct fuse_file *ff;
418 /* Userspace expects S_IFREG in create mode */
419 BUG_ON((mode & S_IFMT) != S_IFREG);
421 forget = fuse_alloc_forget();
426 req = fuse_get_req_nopages(fc);
429 goto out_put_forget_req;
432 ff = fuse_file_alloc(fc);
434 goto out_put_request;
437 mode &= ~current_umask();
440 memset(&inarg, 0, sizeof(inarg));
441 memset(&outentry, 0, sizeof(outentry));
444 inarg.umask = current_umask();
445 req->in.h.opcode = FUSE_CREATE;
446 req->in.h.nodeid = get_node_id(dir);
448 req->in.args[0].size = fc->minor < 12 ? sizeof(struct fuse_open_in) :
450 req->in.args[0].value = &inarg;
451 req->in.args[1].size = entry->d_name.len + 1;
452 req->in.args[1].value = entry->d_name.name;
453 req->out.numargs = 2;
455 req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
457 req->out.args[0].size = sizeof(outentry);
458 req->out.args[0].value = &outentry;
459 req->out.args[1].size = sizeof(outopen);
460 req->out.args[1].value = &outopen;
461 fuse_request_send(fc, req);
462 err = req->out.h.error;
467 if (!S_ISREG(outentry.attr.mode) || invalid_nodeid(outentry.nodeid))
470 fuse_put_request(fc, req);
472 ff->nodeid = outentry.nodeid;
473 ff->open_flags = outopen.open_flags;
474 inode = fuse_iget(dir->i_sb, outentry.nodeid, outentry.generation,
475 &outentry.attr, entry_attr_timeout(&outentry), 0);
477 flags &= ~(O_CREAT | O_EXCL | O_TRUNC);
478 fuse_sync_release(ff, flags);
479 fuse_queue_forget(fc, forget, outentry.nodeid, 1);
484 d_instantiate(entry, inode);
485 fuse_change_entry_timeout(entry, &outentry);
486 fuse_invalidate_attr(dir);
487 err = finish_open(file, entry, generic_file_open, opened);
489 fuse_sync_release(ff, flags);
491 file->private_data = fuse_file_get(ff);
492 fuse_finish_open(inode, file);
499 fuse_put_request(fc, req);
506 static int fuse_mknod(struct inode *, struct dentry *, umode_t, dev_t);
507 static int fuse_atomic_open(struct inode *dir, struct dentry *entry,
508 struct file *file, unsigned flags,
509 umode_t mode, int *opened)
512 struct fuse_conn *fc = get_fuse_conn(dir);
513 struct dentry *res = NULL;
515 if (d_unhashed(entry)) {
516 res = fuse_lookup(dir, entry, 0);
524 if (!(flags & O_CREAT) || entry->d_inode)
528 *opened |= FILE_CREATED;
533 err = fuse_create_open(dir, entry, file, flags, mode, opened);
534 if (err == -ENOSYS) {
543 err = fuse_mknod(dir, entry, mode, 0);
547 return finish_no_open(file, res);
551 * Code shared between mknod, mkdir, symlink and link
553 static int create_new_entry(struct fuse_conn *fc, struct fuse_req *req,
554 struct inode *dir, struct dentry *entry,
557 struct fuse_entry_out outarg;
560 struct fuse_forget_link *forget;
562 forget = fuse_alloc_forget();
564 fuse_put_request(fc, req);
568 memset(&outarg, 0, sizeof(outarg));
569 req->in.h.nodeid = get_node_id(dir);
570 req->out.numargs = 1;
572 req->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
574 req->out.args[0].size = sizeof(outarg);
575 req->out.args[0].value = &outarg;
576 fuse_request_send(fc, req);
577 err = req->out.h.error;
578 fuse_put_request(fc, req);
580 goto out_put_forget_req;
583 if (invalid_nodeid(outarg.nodeid))
584 goto out_put_forget_req;
586 if ((outarg.attr.mode ^ mode) & S_IFMT)
587 goto out_put_forget_req;
589 inode = fuse_iget(dir->i_sb, outarg.nodeid, outarg.generation,
590 &outarg.attr, entry_attr_timeout(&outarg), 0);
592 fuse_queue_forget(fc, forget, outarg.nodeid, 1);
597 err = d_instantiate_no_diralias(entry, inode);
601 fuse_change_entry_timeout(entry, &outarg);
602 fuse_invalidate_attr(dir);
610 static int fuse_mknod(struct inode *dir, struct dentry *entry, umode_t mode,
613 struct fuse_mknod_in inarg;
614 struct fuse_conn *fc = get_fuse_conn(dir);
615 struct fuse_req *req = fuse_get_req_nopages(fc);
620 mode &= ~current_umask();
622 memset(&inarg, 0, sizeof(inarg));
624 inarg.rdev = new_encode_dev(rdev);
625 inarg.umask = current_umask();
626 req->in.h.opcode = FUSE_MKNOD;
628 req->in.args[0].size = fc->minor < 12 ? FUSE_COMPAT_MKNOD_IN_SIZE :
630 req->in.args[0].value = &inarg;
631 req->in.args[1].size = entry->d_name.len + 1;
632 req->in.args[1].value = entry->d_name.name;
633 return create_new_entry(fc, req, dir, entry, mode);
636 static int fuse_create(struct inode *dir, struct dentry *entry, umode_t mode,
639 return fuse_mknod(dir, entry, mode, 0);
642 static int fuse_mkdir(struct inode *dir, struct dentry *entry, umode_t mode)
644 struct fuse_mkdir_in inarg;
645 struct fuse_conn *fc = get_fuse_conn(dir);
646 struct fuse_req *req = fuse_get_req_nopages(fc);
651 mode &= ~current_umask();
653 memset(&inarg, 0, sizeof(inarg));
655 inarg.umask = current_umask();
656 req->in.h.opcode = FUSE_MKDIR;
658 req->in.args[0].size = sizeof(inarg);
659 req->in.args[0].value = &inarg;
660 req->in.args[1].size = entry->d_name.len + 1;
661 req->in.args[1].value = entry->d_name.name;
662 return create_new_entry(fc, req, dir, entry, S_IFDIR);
665 static int fuse_symlink(struct inode *dir, struct dentry *entry,
668 struct fuse_conn *fc = get_fuse_conn(dir);
669 unsigned len = strlen(link) + 1;
670 struct fuse_req *req = fuse_get_req_nopages(fc);
674 req->in.h.opcode = FUSE_SYMLINK;
676 req->in.args[0].size = entry->d_name.len + 1;
677 req->in.args[0].value = entry->d_name.name;
678 req->in.args[1].size = len;
679 req->in.args[1].value = link;
680 return create_new_entry(fc, req, dir, entry, S_IFLNK);
683 static inline void fuse_update_ctime(struct inode *inode)
685 if (!IS_NOCMTIME(inode)) {
686 inode->i_ctime = current_fs_time(inode->i_sb);
687 mark_inode_dirty_sync(inode);
691 static int fuse_unlink(struct inode *dir, struct dentry *entry)
694 struct fuse_conn *fc = get_fuse_conn(dir);
695 struct fuse_req *req = fuse_get_req_nopages(fc);
699 req->in.h.opcode = FUSE_UNLINK;
700 req->in.h.nodeid = get_node_id(dir);
702 req->in.args[0].size = entry->d_name.len + 1;
703 req->in.args[0].value = entry->d_name.name;
704 fuse_request_send(fc, req);
705 err = req->out.h.error;
706 fuse_put_request(fc, req);
708 struct inode *inode = entry->d_inode;
709 struct fuse_inode *fi = get_fuse_inode(inode);
711 spin_lock(&fc->lock);
712 fi->attr_version = ++fc->attr_version;
714 * If i_nlink == 0 then unlink doesn't make sense, yet this can
715 * happen if userspace filesystem is careless. It would be
716 * difficult to enforce correct nlink usage so just ignore this
719 if (inode->i_nlink > 0)
721 spin_unlock(&fc->lock);
722 fuse_invalidate_attr(inode);
723 fuse_invalidate_attr(dir);
724 fuse_invalidate_entry_cache(entry);
725 fuse_update_ctime(inode);
726 } else if (err == -EINTR)
727 fuse_invalidate_entry(entry);
731 static int fuse_rmdir(struct inode *dir, struct dentry *entry)
734 struct fuse_conn *fc = get_fuse_conn(dir);
735 struct fuse_req *req = fuse_get_req_nopages(fc);
739 req->in.h.opcode = FUSE_RMDIR;
740 req->in.h.nodeid = get_node_id(dir);
742 req->in.args[0].size = entry->d_name.len + 1;
743 req->in.args[0].value = entry->d_name.name;
744 fuse_request_send(fc, req);
745 err = req->out.h.error;
746 fuse_put_request(fc, req);
748 clear_nlink(entry->d_inode);
749 fuse_invalidate_attr(dir);
750 fuse_invalidate_entry_cache(entry);
751 } else if (err == -EINTR)
752 fuse_invalidate_entry(entry);
756 static int fuse_rename_common(struct inode *olddir, struct dentry *oldent,
757 struct inode *newdir, struct dentry *newent,
758 unsigned int flags, int opcode, size_t argsize)
761 struct fuse_rename2_in inarg;
762 struct fuse_conn *fc = get_fuse_conn(olddir);
763 struct fuse_req *req;
765 req = fuse_get_req_nopages(fc);
769 memset(&inarg, 0, argsize);
770 inarg.newdir = get_node_id(newdir);
772 req->in.h.opcode = opcode;
773 req->in.h.nodeid = get_node_id(olddir);
775 req->in.args[0].size = argsize;
776 req->in.args[0].value = &inarg;
777 req->in.args[1].size = oldent->d_name.len + 1;
778 req->in.args[1].value = oldent->d_name.name;
779 req->in.args[2].size = newent->d_name.len + 1;
780 req->in.args[2].value = newent->d_name.name;
781 fuse_request_send(fc, req);
782 err = req->out.h.error;
783 fuse_put_request(fc, req);
786 fuse_invalidate_attr(oldent->d_inode);
787 fuse_update_ctime(oldent->d_inode);
789 if (flags & RENAME_EXCHANGE) {
790 fuse_invalidate_attr(newent->d_inode);
791 fuse_update_ctime(newent->d_inode);
794 fuse_invalidate_attr(olddir);
795 if (olddir != newdir)
796 fuse_invalidate_attr(newdir);
798 /* newent will end up negative */
799 if (!(flags & RENAME_EXCHANGE) && newent->d_inode) {
800 fuse_invalidate_attr(newent->d_inode);
801 fuse_invalidate_entry_cache(newent);
802 fuse_update_ctime(newent->d_inode);
804 } else if (err == -EINTR) {
805 /* If request was interrupted, DEITY only knows if the
806 rename actually took place. If the invalidation
807 fails (e.g. some process has CWD under the renamed
808 directory), then there can be inconsistency between
809 the dcache and the real filesystem. Tough luck. */
810 fuse_invalidate_entry(oldent);
812 fuse_invalidate_entry(newent);
818 static int fuse_rename2(struct inode *olddir, struct dentry *oldent,
819 struct inode *newdir, struct dentry *newent,
822 struct fuse_conn *fc = get_fuse_conn(olddir);
825 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
829 if (fc->no_rename2 || fc->minor < 23)
832 err = fuse_rename_common(olddir, oldent, newdir, newent, flags,
834 sizeof(struct fuse_rename2_in));
835 if (err == -ENOSYS) {
840 err = fuse_rename_common(olddir, oldent, newdir, newent, 0,
842 sizeof(struct fuse_rename_in));
848 static int fuse_link(struct dentry *entry, struct inode *newdir,
849 struct dentry *newent)
852 struct fuse_link_in inarg;
853 struct inode *inode = entry->d_inode;
854 struct fuse_conn *fc = get_fuse_conn(inode);
855 struct fuse_req *req = fuse_get_req_nopages(fc);
859 memset(&inarg, 0, sizeof(inarg));
860 inarg.oldnodeid = get_node_id(inode);
861 req->in.h.opcode = FUSE_LINK;
863 req->in.args[0].size = sizeof(inarg);
864 req->in.args[0].value = &inarg;
865 req->in.args[1].size = newent->d_name.len + 1;
866 req->in.args[1].value = newent->d_name.name;
867 err = create_new_entry(fc, req, newdir, newent, inode->i_mode);
868 /* Contrary to "normal" filesystems it can happen that link
869 makes two "logical" inodes point to the same "physical"
870 inode. We invalidate the attributes of the old one, so it
871 will reflect changes in the backing inode (link count,
875 struct fuse_inode *fi = get_fuse_inode(inode);
877 spin_lock(&fc->lock);
878 fi->attr_version = ++fc->attr_version;
880 spin_unlock(&fc->lock);
881 fuse_invalidate_attr(inode);
882 fuse_update_ctime(inode);
883 } else if (err == -EINTR) {
884 fuse_invalidate_attr(inode);
889 static void fuse_fillattr(struct inode *inode, struct fuse_attr *attr,
892 unsigned int blkbits;
893 struct fuse_conn *fc = get_fuse_conn(inode);
895 /* see the comment in fuse_change_attributes() */
896 if (fc->writeback_cache && S_ISREG(inode->i_mode)) {
897 attr->size = i_size_read(inode);
898 attr->mtime = inode->i_mtime.tv_sec;
899 attr->mtimensec = inode->i_mtime.tv_nsec;
900 attr->ctime = inode->i_ctime.tv_sec;
901 attr->ctimensec = inode->i_ctime.tv_nsec;
904 stat->dev = inode->i_sb->s_dev;
905 stat->ino = attr->ino;
906 stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
907 stat->nlink = attr->nlink;
908 stat->uid = make_kuid(&init_user_ns, attr->uid);
909 stat->gid = make_kgid(&init_user_ns, attr->gid);
910 stat->rdev = inode->i_rdev;
911 stat->atime.tv_sec = attr->atime;
912 stat->atime.tv_nsec = attr->atimensec;
913 stat->mtime.tv_sec = attr->mtime;
914 stat->mtime.tv_nsec = attr->mtimensec;
915 stat->ctime.tv_sec = attr->ctime;
916 stat->ctime.tv_nsec = attr->ctimensec;
917 stat->size = attr->size;
918 stat->blocks = attr->blocks;
920 if (attr->blksize != 0)
921 blkbits = ilog2(attr->blksize);
923 blkbits = inode->i_sb->s_blocksize_bits;
925 stat->blksize = 1 << blkbits;
928 static int fuse_do_getattr(struct inode *inode, struct kstat *stat,
932 struct fuse_getattr_in inarg;
933 struct fuse_attr_out outarg;
934 struct fuse_conn *fc = get_fuse_conn(inode);
935 struct fuse_req *req;
938 req = fuse_get_req_nopages(fc);
942 attr_version = fuse_get_attr_version(fc);
944 memset(&inarg, 0, sizeof(inarg));
945 memset(&outarg, 0, sizeof(outarg));
946 /* Directories have separate file-handle space */
947 if (file && S_ISREG(inode->i_mode)) {
948 struct fuse_file *ff = file->private_data;
950 inarg.getattr_flags |= FUSE_GETATTR_FH;
953 req->in.h.opcode = FUSE_GETATTR;
954 req->in.h.nodeid = get_node_id(inode);
956 req->in.args[0].size = sizeof(inarg);
957 req->in.args[0].value = &inarg;
958 req->out.numargs = 1;
960 req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
962 req->out.args[0].size = sizeof(outarg);
963 req->out.args[0].value = &outarg;
964 fuse_request_send(fc, req);
965 err = req->out.h.error;
966 fuse_put_request(fc, req);
968 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
969 make_bad_inode(inode);
972 fuse_change_attributes(inode, &outarg.attr,
973 attr_timeout(&outarg),
976 fuse_fillattr(inode, &outarg.attr, stat);
982 int fuse_update_attributes(struct inode *inode, struct kstat *stat,
983 struct file *file, bool *refreshed)
985 struct fuse_inode *fi = get_fuse_inode(inode);
989 if (time_before64(fi->i_time, get_jiffies_64())) {
991 err = fuse_do_getattr(inode, stat, file);
996 generic_fillattr(inode, stat);
997 stat->mode = fi->orig_i_mode;
998 stat->ino = fi->orig_ino;
1002 if (refreshed != NULL)
1008 int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid,
1009 u64 child_nodeid, struct qstr *name)
1012 struct inode *parent;
1014 struct dentry *entry;
1016 parent = ilookup5(sb, parent_nodeid, fuse_inode_eq, &parent_nodeid);
1020 mutex_lock(&parent->i_mutex);
1021 if (!S_ISDIR(parent->i_mode))
1025 dir = d_find_alias(parent);
1029 entry = d_lookup(dir, name);
1034 fuse_invalidate_attr(parent);
1035 fuse_invalidate_entry(entry);
1037 if (child_nodeid != 0 && entry->d_inode) {
1038 mutex_lock(&entry->d_inode->i_mutex);
1039 if (get_node_id(entry->d_inode) != child_nodeid) {
1043 if (d_mountpoint(entry)) {
1047 if (S_ISDIR(entry->d_inode->i_mode)) {
1048 shrink_dcache_parent(entry);
1049 if (!simple_empty(entry)) {
1053 entry->d_inode->i_flags |= S_DEAD;
1056 clear_nlink(entry->d_inode);
1059 mutex_unlock(&entry->d_inode->i_mutex);
1068 mutex_unlock(&parent->i_mutex);
1074 * Calling into a user-controlled filesystem gives the filesystem
1075 * daemon ptrace-like capabilities over the current process. This
1076 * means, that the filesystem daemon is able to record the exact
1077 * filesystem operations performed, and can also control the behavior
1078 * of the requester process in otherwise impossible ways. For example
1079 * it can delay the operation for arbitrary length of time allowing
1080 * DoS against the requester.
1082 * For this reason only those processes can call into the filesystem,
1083 * for which the owner of the mount has ptrace privilege. This
1084 * excludes processes started by other users, suid or sgid processes.
1086 int fuse_allow_current_process(struct fuse_conn *fc)
1088 const struct cred *cred;
1090 if (fc->flags & FUSE_ALLOW_OTHER)
1093 cred = current_cred();
1094 if (uid_eq(cred->euid, fc->user_id) &&
1095 uid_eq(cred->suid, fc->user_id) &&
1096 uid_eq(cred->uid, fc->user_id) &&
1097 gid_eq(cred->egid, fc->group_id) &&
1098 gid_eq(cred->sgid, fc->group_id) &&
1099 gid_eq(cred->gid, fc->group_id))
1105 static int fuse_access(struct inode *inode, int mask)
1107 struct fuse_conn *fc = get_fuse_conn(inode);
1108 struct fuse_req *req;
1109 struct fuse_access_in inarg;
1112 BUG_ON(mask & MAY_NOT_BLOCK);
1117 req = fuse_get_req_nopages(fc);
1119 return PTR_ERR(req);
1121 memset(&inarg, 0, sizeof(inarg));
1122 inarg.mask = mask & (MAY_READ | MAY_WRITE | MAY_EXEC);
1123 req->in.h.opcode = FUSE_ACCESS;
1124 req->in.h.nodeid = get_node_id(inode);
1125 req->in.numargs = 1;
1126 req->in.args[0].size = sizeof(inarg);
1127 req->in.args[0].value = &inarg;
1128 fuse_request_send(fc, req);
1129 err = req->out.h.error;
1130 fuse_put_request(fc, req);
1131 if (err == -ENOSYS) {
1138 static int fuse_perm_getattr(struct inode *inode, int mask)
1140 if (mask & MAY_NOT_BLOCK)
1143 return fuse_do_getattr(inode, NULL, NULL);
1147 * Check permission. The two basic access models of FUSE are:
1149 * 1) Local access checking ('default_permissions' mount option) based
1150 * on file mode. This is the plain old disk filesystem permission
1153 * 2) "Remote" access checking, where server is responsible for
1154 * checking permission in each inode operation. An exception to this
1155 * is if ->permission() was invoked from sys_access() in which case an
1156 * access request is sent. Execute permission is still checked
1157 * locally based on file mode.
1159 static int fuse_permission(struct inode *inode, int mask)
1161 struct fuse_conn *fc = get_fuse_conn(inode);
1162 bool refreshed = false;
1165 if (!fuse_allow_current_process(fc))
1169 * If attributes are needed, refresh them before proceeding
1171 if ((fc->flags & FUSE_DEFAULT_PERMISSIONS) ||
1172 ((mask & MAY_EXEC) && S_ISREG(inode->i_mode))) {
1173 struct fuse_inode *fi = get_fuse_inode(inode);
1175 if (time_before64(fi->i_time, get_jiffies_64())) {
1178 err = fuse_perm_getattr(inode, mask);
1184 if (fc->flags & FUSE_DEFAULT_PERMISSIONS) {
1185 err = generic_permission(inode, mask);
1187 /* If permission is denied, try to refresh file
1188 attributes. This is also needed, because the root
1189 node will at first have no permissions */
1190 if (err == -EACCES && !refreshed) {
1191 err = fuse_perm_getattr(inode, mask);
1193 err = generic_permission(inode, mask);
1196 /* Note: the opposite of the above test does not
1197 exist. So if permissions are revoked this won't be
1198 noticed immediately, only after the attribute
1199 timeout has expired */
1200 } else if (mask & (MAY_ACCESS | MAY_CHDIR)) {
1201 err = fuse_access(inode, mask);
1202 } else if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
1203 if (!(inode->i_mode & S_IXUGO)) {
1207 err = fuse_perm_getattr(inode, mask);
1208 if (!err && !(inode->i_mode & S_IXUGO))
1215 static int parse_dirfile(char *buf, size_t nbytes, struct file *file,
1216 struct dir_context *ctx)
1218 while (nbytes >= FUSE_NAME_OFFSET) {
1219 struct fuse_dirent *dirent = (struct fuse_dirent *) buf;
1220 size_t reclen = FUSE_DIRENT_SIZE(dirent);
1221 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1223 if (reclen > nbytes)
1225 if (memchr(dirent->name, '/', dirent->namelen) != NULL)
1228 if (!dir_emit(ctx, dirent->name, dirent->namelen,
1229 dirent->ino, dirent->type))
1234 ctx->pos = dirent->off;
1240 static int fuse_direntplus_link(struct file *file,
1241 struct fuse_direntplus *direntplus,
1245 struct fuse_entry_out *o = &direntplus->entry_out;
1246 struct fuse_dirent *dirent = &direntplus->dirent;
1247 struct dentry *parent = file->f_path.dentry;
1248 struct qstr name = QSTR_INIT(dirent->name, dirent->namelen);
1249 struct dentry *dentry;
1250 struct dentry *alias;
1251 struct inode *dir = parent->d_inode;
1252 struct fuse_conn *fc;
1253 struct inode *inode;
1257 * Unlike in the case of fuse_lookup, zero nodeid does not mean
1258 * ENOENT. Instead, it only means the userspace filesystem did
1259 * not want to return attributes/handle for this entry.
1266 if (name.name[0] == '.') {
1268 * We could potentially refresh the attributes of the directory
1273 if (name.name[1] == '.' && name.len == 2)
1277 if (invalid_nodeid(o->nodeid))
1279 if (!fuse_valid_type(o->attr.mode))
1282 fc = get_fuse_conn(dir);
1284 name.hash = full_name_hash(name.name, name.len);
1285 dentry = d_lookup(parent, &name);
1287 inode = dentry->d_inode;
1290 } else if (get_node_id(inode) != o->nodeid ||
1291 ((o->attr.mode ^ inode->i_mode) & S_IFMT)) {
1292 err = d_invalidate(dentry);
1295 } else if (is_bad_inode(inode)) {
1299 struct fuse_inode *fi;
1300 fi = get_fuse_inode(inode);
1301 spin_lock(&fc->lock);
1303 spin_unlock(&fc->lock);
1305 fuse_change_attributes(inode, &o->attr,
1306 entry_attr_timeout(o),
1310 * The other branch to 'found' comes via fuse_iget()
1311 * which bumps nlookup inside
1318 dentry = d_alloc(parent, &name);
1323 inode = fuse_iget(dir->i_sb, o->nodeid, o->generation,
1324 &o->attr, entry_attr_timeout(o), attr_version);
1328 alias = d_materialise_unique(dentry, inode);
1329 err = PTR_ERR(alias);
1339 if (fc->readdirplus_auto)
1340 set_bit(FUSE_I_INIT_RDPLUS, &get_fuse_inode(inode)->state);
1341 fuse_change_entry_timeout(dentry, o);
1349 static int parse_dirplusfile(char *buf, size_t nbytes, struct file *file,
1350 struct dir_context *ctx, u64 attr_version)
1352 struct fuse_direntplus *direntplus;
1353 struct fuse_dirent *dirent;
1358 while (nbytes >= FUSE_NAME_OFFSET_DIRENTPLUS) {
1359 direntplus = (struct fuse_direntplus *) buf;
1360 dirent = &direntplus->dirent;
1361 reclen = FUSE_DIRENTPLUS_SIZE(direntplus);
1363 if (!dirent->namelen || dirent->namelen > FUSE_NAME_MAX)
1365 if (reclen > nbytes)
1367 if (memchr(dirent->name, '/', dirent->namelen) != NULL)
1371 /* We fill entries into dstbuf only as much as
1372 it can hold. But we still continue iterating
1373 over remaining entries to link them. If not,
1374 we need to send a FORGET for each of those
1375 which we did not link.
1377 over = !dir_emit(ctx, dirent->name, dirent->namelen,
1378 dirent->ino, dirent->type);
1379 ctx->pos = dirent->off;
1385 ret = fuse_direntplus_link(file, direntplus, attr_version);
1387 fuse_force_forget(file, direntplus->entry_out.nodeid);
1393 static int fuse_readdir(struct file *file, struct dir_context *ctx)
1398 struct inode *inode = file_inode(file);
1399 struct fuse_conn *fc = get_fuse_conn(inode);
1400 struct fuse_req *req;
1401 u64 attr_version = 0;
1403 if (is_bad_inode(inode))
1406 req = fuse_get_req(fc, 1);
1408 return PTR_ERR(req);
1410 page = alloc_page(GFP_KERNEL);
1412 fuse_put_request(fc, req);
1416 plus = fuse_use_readdirplus(inode, ctx);
1417 req->out.argpages = 1;
1419 req->pages[0] = page;
1420 req->page_descs[0].length = PAGE_SIZE;
1422 attr_version = fuse_get_attr_version(fc);
1423 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
1426 fuse_read_fill(req, file, ctx->pos, PAGE_SIZE,
1429 fuse_request_send(fc, req);
1430 nbytes = req->out.args[0].size;
1431 err = req->out.h.error;
1432 fuse_put_request(fc, req);
1435 err = parse_dirplusfile(page_address(page), nbytes,
1439 err = parse_dirfile(page_address(page), nbytes, file,
1445 fuse_invalidate_atime(inode);
1449 static char *read_link(struct dentry *dentry)
1451 struct inode *inode = dentry->d_inode;
1452 struct fuse_conn *fc = get_fuse_conn(inode);
1453 struct fuse_req *req = fuse_get_req_nopages(fc);
1457 return ERR_CAST(req);
1459 link = (char *) __get_free_page(GFP_KERNEL);
1461 link = ERR_PTR(-ENOMEM);
1464 req->in.h.opcode = FUSE_READLINK;
1465 req->in.h.nodeid = get_node_id(inode);
1466 req->out.argvar = 1;
1467 req->out.numargs = 1;
1468 req->out.args[0].size = PAGE_SIZE - 1;
1469 req->out.args[0].value = link;
1470 fuse_request_send(fc, req);
1471 if (req->out.h.error) {
1472 free_page((unsigned long) link);
1473 link = ERR_PTR(req->out.h.error);
1475 link[req->out.args[0].size] = '\0';
1477 fuse_put_request(fc, req);
1478 fuse_invalidate_atime(inode);
1482 static void free_link(char *link)
1485 free_page((unsigned long) link);
1488 static void *fuse_follow_link(struct dentry *dentry, struct nameidata *nd)
1490 nd_set_link(nd, read_link(dentry));
1494 static void fuse_put_link(struct dentry *dentry, struct nameidata *nd, void *c)
1496 free_link(nd_get_link(nd));
1499 static int fuse_dir_open(struct inode *inode, struct file *file)
1501 return fuse_open_common(inode, file, true);
1504 static int fuse_dir_release(struct inode *inode, struct file *file)
1506 fuse_release_common(file, FUSE_RELEASEDIR);
1511 static int fuse_dir_fsync(struct file *file, loff_t start, loff_t end,
1514 return fuse_fsync_common(file, start, end, datasync, 1);
1517 static long fuse_dir_ioctl(struct file *file, unsigned int cmd,
1520 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1522 /* FUSE_IOCTL_DIR only supported for API version >= 7.18 */
1526 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_DIR);
1529 static long fuse_dir_compat_ioctl(struct file *file, unsigned int cmd,
1532 struct fuse_conn *fc = get_fuse_conn(file->f_mapping->host);
1537 return fuse_ioctl_common(file, cmd, arg,
1538 FUSE_IOCTL_COMPAT | FUSE_IOCTL_DIR);
1541 static bool update_mtime(unsigned ivalid, bool trust_local_mtime)
1543 /* Always update if mtime is explicitly set */
1544 if (ivalid & ATTR_MTIME_SET)
1547 /* Or if kernel i_mtime is the official one */
1548 if (trust_local_mtime)
1551 /* If it's an open(O_TRUNC) or an ftruncate(), don't update */
1552 if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE)))
1555 /* In all other cases update */
1559 static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg,
1560 bool trust_local_cmtime)
1562 unsigned ivalid = iattr->ia_valid;
1564 if (ivalid & ATTR_MODE)
1565 arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode;
1566 if (ivalid & ATTR_UID)
1567 arg->valid |= FATTR_UID, arg->uid = from_kuid(&init_user_ns, iattr->ia_uid);
1568 if (ivalid & ATTR_GID)
1569 arg->valid |= FATTR_GID, arg->gid = from_kgid(&init_user_ns, iattr->ia_gid);
1570 if (ivalid & ATTR_SIZE)
1571 arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size;
1572 if (ivalid & ATTR_ATIME) {
1573 arg->valid |= FATTR_ATIME;
1574 arg->atime = iattr->ia_atime.tv_sec;
1575 arg->atimensec = iattr->ia_atime.tv_nsec;
1576 if (!(ivalid & ATTR_ATIME_SET))
1577 arg->valid |= FATTR_ATIME_NOW;
1579 if ((ivalid & ATTR_MTIME) && update_mtime(ivalid, trust_local_cmtime)) {
1580 arg->valid |= FATTR_MTIME;
1581 arg->mtime = iattr->ia_mtime.tv_sec;
1582 arg->mtimensec = iattr->ia_mtime.tv_nsec;
1583 if (!(ivalid & ATTR_MTIME_SET) && !trust_local_cmtime)
1584 arg->valid |= FATTR_MTIME_NOW;
1586 if ((ivalid & ATTR_CTIME) && trust_local_cmtime) {
1587 arg->valid |= FATTR_CTIME;
1588 arg->ctime = iattr->ia_ctime.tv_sec;
1589 arg->ctimensec = iattr->ia_ctime.tv_nsec;
1594 * Prevent concurrent writepages on inode
1596 * This is done by adding a negative bias to the inode write counter
1597 * and waiting for all pending writes to finish.
1599 void fuse_set_nowrite(struct inode *inode)
1601 struct fuse_conn *fc = get_fuse_conn(inode);
1602 struct fuse_inode *fi = get_fuse_inode(inode);
1604 BUG_ON(!mutex_is_locked(&inode->i_mutex));
1606 spin_lock(&fc->lock);
1607 BUG_ON(fi->writectr < 0);
1608 fi->writectr += FUSE_NOWRITE;
1609 spin_unlock(&fc->lock);
1610 wait_event(fi->page_waitq, fi->writectr == FUSE_NOWRITE);
1614 * Allow writepages on inode
1616 * Remove the bias from the writecounter and send any queued
1619 static void __fuse_release_nowrite(struct inode *inode)
1621 struct fuse_inode *fi = get_fuse_inode(inode);
1623 BUG_ON(fi->writectr != FUSE_NOWRITE);
1625 fuse_flush_writepages(inode);
1628 void fuse_release_nowrite(struct inode *inode)
1630 struct fuse_conn *fc = get_fuse_conn(inode);
1632 spin_lock(&fc->lock);
1633 __fuse_release_nowrite(inode);
1634 spin_unlock(&fc->lock);
1637 static void fuse_setattr_fill(struct fuse_conn *fc, struct fuse_req *req,
1638 struct inode *inode,
1639 struct fuse_setattr_in *inarg_p,
1640 struct fuse_attr_out *outarg_p)
1642 req->in.h.opcode = FUSE_SETATTR;
1643 req->in.h.nodeid = get_node_id(inode);
1644 req->in.numargs = 1;
1645 req->in.args[0].size = sizeof(*inarg_p);
1646 req->in.args[0].value = inarg_p;
1647 req->out.numargs = 1;
1649 req->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
1651 req->out.args[0].size = sizeof(*outarg_p);
1652 req->out.args[0].value = outarg_p;
1656 * Flush inode->i_mtime to the server
1658 int fuse_flush_times(struct inode *inode, struct fuse_file *ff)
1660 struct fuse_conn *fc = get_fuse_conn(inode);
1661 struct fuse_req *req;
1662 struct fuse_setattr_in inarg;
1663 struct fuse_attr_out outarg;
1666 req = fuse_get_req_nopages(fc);
1668 return PTR_ERR(req);
1670 memset(&inarg, 0, sizeof(inarg));
1671 memset(&outarg, 0, sizeof(outarg));
1673 inarg.valid = FATTR_MTIME;
1674 inarg.mtime = inode->i_mtime.tv_sec;
1675 inarg.mtimensec = inode->i_mtime.tv_nsec;
1676 if (fc->minor >= 23) {
1677 inarg.valid |= FATTR_CTIME;
1678 inarg.ctime = inode->i_ctime.tv_sec;
1679 inarg.ctimensec = inode->i_ctime.tv_nsec;
1682 inarg.valid |= FATTR_FH;
1685 fuse_setattr_fill(fc, req, inode, &inarg, &outarg);
1686 fuse_request_send(fc, req);
1687 err = req->out.h.error;
1688 fuse_put_request(fc, req);
1694 * Set attributes, and at the same time refresh them.
1696 * Truncation is slightly complicated, because the 'truncate' request
1697 * may fail, in which case we don't want to touch the mapping.
1698 * vmtruncate() doesn't allow for this case, so do the rlimit checking
1699 * and the actual truncation by hand.
1701 int fuse_do_setattr(struct inode *inode, struct iattr *attr,
1704 struct fuse_conn *fc = get_fuse_conn(inode);
1705 struct fuse_inode *fi = get_fuse_inode(inode);
1706 struct fuse_req *req;
1707 struct fuse_setattr_in inarg;
1708 struct fuse_attr_out outarg;
1709 bool is_truncate = false;
1710 bool is_wb = fc->writeback_cache;
1713 bool trust_local_cmtime = is_wb && S_ISREG(inode->i_mode);
1715 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
1716 attr->ia_valid |= ATTR_FORCE;
1718 err = inode_change_ok(inode, attr);
1722 if (attr->ia_valid & ATTR_OPEN) {
1723 if (fc->atomic_o_trunc)
1728 if (attr->ia_valid & ATTR_SIZE)
1731 req = fuse_get_req_nopages(fc);
1733 return PTR_ERR(req);
1736 fuse_set_nowrite(inode);
1737 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1738 if (trust_local_cmtime && attr->ia_size != inode->i_size)
1739 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1742 memset(&inarg, 0, sizeof(inarg));
1743 memset(&outarg, 0, sizeof(outarg));
1744 iattr_to_fattr(attr, &inarg, trust_local_cmtime);
1746 struct fuse_file *ff = file->private_data;
1747 inarg.valid |= FATTR_FH;
1750 if (attr->ia_valid & ATTR_SIZE) {
1751 /* For mandatory locking in truncate */
1752 inarg.valid |= FATTR_LOCKOWNER;
1753 inarg.lock_owner = fuse_lock_owner_id(fc, current->files);
1755 fuse_setattr_fill(fc, req, inode, &inarg, &outarg);
1756 fuse_request_send(fc, req);
1757 err = req->out.h.error;
1758 fuse_put_request(fc, req);
1761 fuse_invalidate_attr(inode);
1765 if ((inode->i_mode ^ outarg.attr.mode) & S_IFMT) {
1766 make_bad_inode(inode);
1771 spin_lock(&fc->lock);
1772 /* the kernel maintains i_mtime locally */
1773 if (trust_local_cmtime) {
1774 if (attr->ia_valid & ATTR_MTIME)
1775 inode->i_mtime = attr->ia_mtime;
1776 if (attr->ia_valid & ATTR_CTIME)
1777 inode->i_ctime = attr->ia_ctime;
1778 /* FIXME: clear I_DIRTY_SYNC? */
1781 fuse_change_attributes_common(inode, &outarg.attr,
1782 attr_timeout(&outarg));
1783 oldsize = inode->i_size;
1784 /* see the comment in fuse_change_attributes() */
1785 if (!is_wb || is_truncate || !S_ISREG(inode->i_mode))
1786 i_size_write(inode, outarg.attr.size);
1789 /* NOTE: this may release/reacquire fc->lock */
1790 __fuse_release_nowrite(inode);
1792 spin_unlock(&fc->lock);
1795 * Only call invalidate_inode_pages2() after removing
1796 * FUSE_NOWRITE, otherwise fuse_launder_page() would deadlock.
1798 if ((is_truncate || !is_wb) &&
1799 S_ISREG(inode->i_mode) && oldsize != outarg.attr.size) {
1800 truncate_pagecache(inode, outarg.attr.size);
1801 invalidate_inode_pages2(inode->i_mapping);
1804 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1809 fuse_release_nowrite(inode);
1811 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1815 static int fuse_setattr(struct dentry *entry, struct iattr *attr)
1817 struct inode *inode = entry->d_inode;
1819 if (!fuse_allow_current_process(get_fuse_conn(inode)))
1822 if (attr->ia_valid & ATTR_FILE)
1823 return fuse_do_setattr(inode, attr, attr->ia_file);
1825 return fuse_do_setattr(inode, attr, NULL);
1828 static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry,
1831 struct inode *inode = entry->d_inode;
1832 struct fuse_conn *fc = get_fuse_conn(inode);
1834 if (!fuse_allow_current_process(fc))
1837 return fuse_update_attributes(inode, stat, NULL, NULL);
1840 static int fuse_setxattr(struct dentry *entry, const char *name,
1841 const void *value, size_t size, int flags)
1843 struct inode *inode = entry->d_inode;
1844 struct fuse_conn *fc = get_fuse_conn(inode);
1845 struct fuse_req *req;
1846 struct fuse_setxattr_in inarg;
1849 if (fc->no_setxattr)
1852 req = fuse_get_req_nopages(fc);
1854 return PTR_ERR(req);
1856 memset(&inarg, 0, sizeof(inarg));
1858 inarg.flags = flags;
1859 req->in.h.opcode = FUSE_SETXATTR;
1860 req->in.h.nodeid = get_node_id(inode);
1861 req->in.numargs = 3;
1862 req->in.args[0].size = sizeof(inarg);
1863 req->in.args[0].value = &inarg;
1864 req->in.args[1].size = strlen(name) + 1;
1865 req->in.args[1].value = name;
1866 req->in.args[2].size = size;
1867 req->in.args[2].value = value;
1868 fuse_request_send(fc, req);
1869 err = req->out.h.error;
1870 fuse_put_request(fc, req);
1871 if (err == -ENOSYS) {
1872 fc->no_setxattr = 1;
1876 fuse_invalidate_attr(inode);
1877 fuse_update_ctime(inode);
1882 static ssize_t fuse_getxattr(struct dentry *entry, const char *name,
1883 void *value, size_t size)
1885 struct inode *inode = entry->d_inode;
1886 struct fuse_conn *fc = get_fuse_conn(inode);
1887 struct fuse_req *req;
1888 struct fuse_getxattr_in inarg;
1889 struct fuse_getxattr_out outarg;
1892 if (fc->no_getxattr)
1895 req = fuse_get_req_nopages(fc);
1897 return PTR_ERR(req);
1899 memset(&inarg, 0, sizeof(inarg));
1901 req->in.h.opcode = FUSE_GETXATTR;
1902 req->in.h.nodeid = get_node_id(inode);
1903 req->in.numargs = 2;
1904 req->in.args[0].size = sizeof(inarg);
1905 req->in.args[0].value = &inarg;
1906 req->in.args[1].size = strlen(name) + 1;
1907 req->in.args[1].value = name;
1908 /* This is really two different operations rolled into one */
1909 req->out.numargs = 1;
1911 req->out.argvar = 1;
1912 req->out.args[0].size = size;
1913 req->out.args[0].value = value;
1915 req->out.args[0].size = sizeof(outarg);
1916 req->out.args[0].value = &outarg;
1918 fuse_request_send(fc, req);
1919 ret = req->out.h.error;
1921 ret = size ? req->out.args[0].size : outarg.size;
1923 if (ret == -ENOSYS) {
1924 fc->no_getxattr = 1;
1928 fuse_put_request(fc, req);
1932 static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size)
1934 struct inode *inode = entry->d_inode;
1935 struct fuse_conn *fc = get_fuse_conn(inode);
1936 struct fuse_req *req;
1937 struct fuse_getxattr_in inarg;
1938 struct fuse_getxattr_out outarg;
1941 if (!fuse_allow_current_process(fc))
1944 if (fc->no_listxattr)
1947 req = fuse_get_req_nopages(fc);
1949 return PTR_ERR(req);
1951 memset(&inarg, 0, sizeof(inarg));
1953 req->in.h.opcode = FUSE_LISTXATTR;
1954 req->in.h.nodeid = get_node_id(inode);
1955 req->in.numargs = 1;
1956 req->in.args[0].size = sizeof(inarg);
1957 req->in.args[0].value = &inarg;
1958 /* This is really two different operations rolled into one */
1959 req->out.numargs = 1;
1961 req->out.argvar = 1;
1962 req->out.args[0].size = size;
1963 req->out.args[0].value = list;
1965 req->out.args[0].size = sizeof(outarg);
1966 req->out.args[0].value = &outarg;
1968 fuse_request_send(fc, req);
1969 ret = req->out.h.error;
1971 ret = size ? req->out.args[0].size : outarg.size;
1973 if (ret == -ENOSYS) {
1974 fc->no_listxattr = 1;
1978 fuse_put_request(fc, req);
1982 static int fuse_removexattr(struct dentry *entry, const char *name)
1984 struct inode *inode = entry->d_inode;
1985 struct fuse_conn *fc = get_fuse_conn(inode);
1986 struct fuse_req *req;
1989 if (fc->no_removexattr)
1992 req = fuse_get_req_nopages(fc);
1994 return PTR_ERR(req);
1996 req->in.h.opcode = FUSE_REMOVEXATTR;
1997 req->in.h.nodeid = get_node_id(inode);
1998 req->in.numargs = 1;
1999 req->in.args[0].size = strlen(name) + 1;
2000 req->in.args[0].value = name;
2001 fuse_request_send(fc, req);
2002 err = req->out.h.error;
2003 fuse_put_request(fc, req);
2004 if (err == -ENOSYS) {
2005 fc->no_removexattr = 1;
2009 fuse_invalidate_attr(inode);
2010 fuse_update_ctime(inode);
2015 static const struct inode_operations fuse_dir_inode_operations = {
2016 .lookup = fuse_lookup,
2017 .mkdir = fuse_mkdir,
2018 .symlink = fuse_symlink,
2019 .unlink = fuse_unlink,
2020 .rmdir = fuse_rmdir,
2021 .rename2 = fuse_rename2,
2023 .setattr = fuse_setattr,
2024 .create = fuse_create,
2025 .atomic_open = fuse_atomic_open,
2026 .mknod = fuse_mknod,
2027 .permission = fuse_permission,
2028 .getattr = fuse_getattr,
2029 .setxattr = fuse_setxattr,
2030 .getxattr = fuse_getxattr,
2031 .listxattr = fuse_listxattr,
2032 .removexattr = fuse_removexattr,
2035 static const struct file_operations fuse_dir_operations = {
2036 .llseek = generic_file_llseek,
2037 .read = generic_read_dir,
2038 .iterate = fuse_readdir,
2039 .open = fuse_dir_open,
2040 .release = fuse_dir_release,
2041 .fsync = fuse_dir_fsync,
2042 .unlocked_ioctl = fuse_dir_ioctl,
2043 .compat_ioctl = fuse_dir_compat_ioctl,
2046 static const struct inode_operations fuse_common_inode_operations = {
2047 .setattr = fuse_setattr,
2048 .permission = fuse_permission,
2049 .getattr = fuse_getattr,
2050 .setxattr = fuse_setxattr,
2051 .getxattr = fuse_getxattr,
2052 .listxattr = fuse_listxattr,
2053 .removexattr = fuse_removexattr,
2056 static const struct inode_operations fuse_symlink_inode_operations = {
2057 .setattr = fuse_setattr,
2058 .follow_link = fuse_follow_link,
2059 .put_link = fuse_put_link,
2060 .readlink = generic_readlink,
2061 .getattr = fuse_getattr,
2062 .setxattr = fuse_setxattr,
2063 .getxattr = fuse_getxattr,
2064 .listxattr = fuse_listxattr,
2065 .removexattr = fuse_removexattr,
2068 void fuse_init_common(struct inode *inode)
2070 inode->i_op = &fuse_common_inode_operations;
2073 void fuse_init_dir(struct inode *inode)
2075 inode->i_op = &fuse_dir_inode_operations;
2076 inode->i_fop = &fuse_dir_operations;
2079 void fuse_init_symlink(struct inode *inode)
2081 inode->i_op = &fuse_symlink_inode_operations;