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/slab.h>
13 #include <linux/file.h>
14 #include <linux/seq_file.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/fs_context.h>
19 #include <linux/fs_parser.h>
20 #include <linux/statfs.h>
21 #include <linux/random.h>
22 #include <linux/sched.h>
23 #include <linux/exportfs.h>
24 #include <linux/posix_acl.h>
25 #include <linux/pid_namespace.h>
26 #include <uapi/linux/magic.h>
29 MODULE_DESCRIPTION("Filesystem in Userspace");
30 MODULE_LICENSE("GPL");
32 static struct kmem_cache *fuse_inode_cachep;
33 struct list_head fuse_conn_list;
34 DEFINE_MUTEX(fuse_mutex);
36 static int set_global_limit(const char *val, const struct kernel_param *kp);
38 unsigned max_user_bgreq;
39 module_param_call(max_user_bgreq, set_global_limit, param_get_uint,
40 &max_user_bgreq, 0644);
41 __MODULE_PARM_TYPE(max_user_bgreq, "uint");
42 MODULE_PARM_DESC(max_user_bgreq,
43 "Global limit for the maximum number of backgrounded requests an "
44 "unprivileged user can set");
46 unsigned max_user_congthresh;
47 module_param_call(max_user_congthresh, set_global_limit, param_get_uint,
48 &max_user_congthresh, 0644);
49 __MODULE_PARM_TYPE(max_user_congthresh, "uint");
50 MODULE_PARM_DESC(max_user_congthresh,
51 "Global limit for the maximum congestion threshold an "
52 "unprivileged user can set");
54 #define FUSE_DEFAULT_BLKSIZE 512
56 /** Maximum number of outstanding background requests */
57 #define FUSE_DEFAULT_MAX_BACKGROUND 12
59 /** Congestion starts at 75% of maximum */
60 #define FUSE_DEFAULT_CONGESTION_THRESHOLD (FUSE_DEFAULT_MAX_BACKGROUND * 3 / 4)
63 static struct file_system_type fuseblk_fs_type;
66 struct fuse_forget_link *fuse_alloc_forget(void)
68 return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL_ACCOUNT);
71 static struct fuse_submount_lookup *fuse_alloc_submount_lookup(void)
73 struct fuse_submount_lookup *sl;
75 sl = kzalloc(sizeof(struct fuse_submount_lookup), GFP_KERNEL_ACCOUNT);
78 sl->forget = fuse_alloc_forget();
89 static struct inode *fuse_alloc_inode(struct super_block *sb)
91 struct fuse_inode *fi;
93 fi = alloc_inode_sb(sb, fuse_inode_cachep, GFP_KERNEL);
101 fi->attr_version = 0;
104 fi->submount_lookup = NULL;
105 mutex_init(&fi->mutex);
106 spin_lock_init(&fi->lock);
107 fi->forget = fuse_alloc_forget();
111 if (IS_ENABLED(CONFIG_FUSE_DAX) && !fuse_dax_inode_alloc(sb, fi))
112 goto out_free_forget;
114 if (IS_ENABLED(CONFIG_FUSE_PASSTHROUGH))
115 fuse_inode_backing_set(fi, NULL);
122 kmem_cache_free(fuse_inode_cachep, fi);
126 static void fuse_free_inode(struct inode *inode)
128 struct fuse_inode *fi = get_fuse_inode(inode);
130 mutex_destroy(&fi->mutex);
132 #ifdef CONFIG_FUSE_DAX
135 if (IS_ENABLED(CONFIG_FUSE_PASSTHROUGH))
136 fuse_backing_put(fuse_inode_backing(fi));
138 kmem_cache_free(fuse_inode_cachep, fi);
141 static void fuse_cleanup_submount_lookup(struct fuse_conn *fc,
142 struct fuse_submount_lookup *sl)
144 if (!refcount_dec_and_test(&sl->count))
147 fuse_queue_forget(fc, sl->forget, sl->nodeid, 1);
152 static void fuse_evict_inode(struct inode *inode)
154 struct fuse_inode *fi = get_fuse_inode(inode);
156 /* Will write inode on close/munmap and in all other dirtiers */
157 WARN_ON(inode->i_state & I_DIRTY_INODE);
159 truncate_inode_pages_final(&inode->i_data);
161 if (inode->i_sb->s_flags & SB_ACTIVE) {
162 struct fuse_conn *fc = get_fuse_conn(inode);
164 if (FUSE_IS_DAX(inode))
165 fuse_dax_inode_cleanup(inode);
167 fuse_queue_forget(fc, fi->forget, fi->nodeid,
172 if (fi->submount_lookup) {
173 fuse_cleanup_submount_lookup(fc, fi->submount_lookup);
174 fi->submount_lookup = NULL;
177 if (S_ISREG(inode->i_mode) && !fuse_is_bad(inode)) {
178 WARN_ON(!list_empty(&fi->write_files));
179 WARN_ON(!list_empty(&fi->queued_writes));
183 static int fuse_reconfigure(struct fs_context *fsc)
185 struct super_block *sb = fsc->root->d_sb;
188 if (fsc->sb_flags & SB_MANDLOCK)
195 * ino_t is 32-bits on 32-bit arch. We have to squash the 64-bit value down
196 * so that it will fit.
198 static ino_t fuse_squash_ino(u64 ino64)
200 ino_t ino = (ino_t) ino64;
201 if (sizeof(ino_t) < sizeof(u64))
202 ino ^= ino64 >> (sizeof(u64) - sizeof(ino_t)) * 8;
206 void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
207 struct fuse_statx *sx,
208 u64 attr_valid, u32 cache_mask)
210 struct fuse_conn *fc = get_fuse_conn(inode);
211 struct fuse_inode *fi = get_fuse_inode(inode);
213 lockdep_assert_held(&fi->lock);
215 fi->attr_version = atomic64_inc_return(&fc->attr_version);
216 fi->i_time = attr_valid;
217 /* Clear basic stats from invalid mask */
218 set_mask_bits(&fi->inval_mask, STATX_BASIC_STATS, 0);
220 inode->i_ino = fuse_squash_ino(attr->ino);
221 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
222 set_nlink(inode, attr->nlink);
223 inode->i_uid = make_kuid(fc->user_ns, attr->uid);
224 inode->i_gid = make_kgid(fc->user_ns, attr->gid);
225 inode->i_blocks = attr->blocks;
228 attr->atimensec = min_t(u32, attr->atimensec, NSEC_PER_SEC - 1);
229 attr->mtimensec = min_t(u32, attr->mtimensec, NSEC_PER_SEC - 1);
230 attr->ctimensec = min_t(u32, attr->ctimensec, NSEC_PER_SEC - 1);
232 inode_set_atime(inode, attr->atime, attr->atimensec);
233 /* mtime from server may be stale due to local buffered write */
234 if (!(cache_mask & STATX_MTIME)) {
235 inode_set_mtime(inode, attr->mtime, attr->mtimensec);
237 if (!(cache_mask & STATX_CTIME)) {
238 inode_set_ctime(inode, attr->ctime, attr->ctimensec);
243 min_t(u32, sx->btime.tv_nsec, NSEC_PER_SEC - 1);
246 * Btime has been queried, cache is valid (whether or not btime
247 * is available or not) so clear STATX_BTIME from inval_mask.
249 * Availability of the btime attribute is indicated in
252 set_mask_bits(&fi->inval_mask, STATX_BTIME, 0);
253 if (sx->mask & STATX_BTIME) {
254 set_bit(FUSE_I_BTIME, &fi->state);
255 fi->i_btime.tv_sec = sx->btime.tv_sec;
256 fi->i_btime.tv_nsec = sx->btime.tv_nsec;
260 if (attr->blksize != 0)
261 inode->i_blkbits = ilog2(attr->blksize);
263 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
266 * Don't set the sticky bit in i_mode, unless we want the VFS
267 * to check permissions. This prevents failures due to the
268 * check in may_delete().
270 fi->orig_i_mode = inode->i_mode;
271 if (!fc->default_permissions)
272 inode->i_mode &= ~S_ISVTX;
274 fi->orig_ino = attr->ino;
277 * We are refreshing inode data and it is possible that another
278 * client set suid/sgid or security.capability xattr. So clear
279 * S_NOSEC. Ideally, we could have cleared it only if suid/sgid
280 * was set or if security.capability xattr was set. But we don't
281 * know if security.capability has been set or not. So clear it
282 * anyway. Its less efficient but should be safe.
284 inode->i_flags &= ~S_NOSEC;
287 u32 fuse_get_cache_mask(struct inode *inode)
289 struct fuse_conn *fc = get_fuse_conn(inode);
291 if (!fc->writeback_cache || !S_ISREG(inode->i_mode))
294 return STATX_MTIME | STATX_CTIME | STATX_SIZE;
297 void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
298 struct fuse_statx *sx,
299 u64 attr_valid, u64 attr_version)
301 struct fuse_conn *fc = get_fuse_conn(inode);
302 struct fuse_inode *fi = get_fuse_inode(inode);
305 struct timespec64 old_mtime;
307 spin_lock(&fi->lock);
309 * In case of writeback_cache enabled, writes update mtime, ctime and
310 * may update i_size. In these cases trust the cached value in the
313 cache_mask = fuse_get_cache_mask(inode);
314 if (cache_mask & STATX_SIZE)
315 attr->size = i_size_read(inode);
317 if (cache_mask & STATX_MTIME) {
318 attr->mtime = inode_get_mtime_sec(inode);
319 attr->mtimensec = inode_get_mtime_nsec(inode);
321 if (cache_mask & STATX_CTIME) {
322 attr->ctime = inode_get_ctime_sec(inode);
323 attr->ctimensec = inode_get_ctime_nsec(inode);
326 if ((attr_version != 0 && fi->attr_version > attr_version) ||
327 test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
328 spin_unlock(&fi->lock);
332 old_mtime = inode_get_mtime(inode);
333 fuse_change_attributes_common(inode, attr, sx, attr_valid, cache_mask);
335 oldsize = inode->i_size;
337 * In case of writeback_cache enabled, the cached writes beyond EOF
338 * extend local i_size without keeping userspace server in sync. So,
339 * attr->size coming from server can be stale. We cannot trust it.
341 if (!(cache_mask & STATX_SIZE))
342 i_size_write(inode, attr->size);
343 spin_unlock(&fi->lock);
345 if (!cache_mask && S_ISREG(inode->i_mode)) {
348 if (oldsize != attr->size) {
349 truncate_pagecache(inode, attr->size);
350 if (!fc->explicit_inval_data)
352 } else if (fc->auto_inval_data) {
353 struct timespec64 new_mtime = {
354 .tv_sec = attr->mtime,
355 .tv_nsec = attr->mtimensec,
359 * Auto inval mode also checks and invalidates if mtime
362 if (!timespec64_equal(&old_mtime, &new_mtime))
367 invalidate_inode_pages2(inode->i_mapping);
370 if (IS_ENABLED(CONFIG_FUSE_DAX))
371 fuse_dax_dontcache(inode, attr->flags);
374 static void fuse_init_submount_lookup(struct fuse_submount_lookup *sl,
378 refcount_set(&sl->count, 1);
381 static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr,
382 struct fuse_conn *fc)
384 inode->i_mode = attr->mode & S_IFMT;
385 inode->i_size = attr->size;
386 inode_set_mtime(inode, attr->mtime, attr->mtimensec);
387 inode_set_ctime(inode, attr->ctime, attr->ctimensec);
388 if (S_ISREG(inode->i_mode)) {
389 fuse_init_common(inode);
390 fuse_init_file_inode(inode, attr->flags);
391 } else if (S_ISDIR(inode->i_mode))
392 fuse_init_dir(inode);
393 else if (S_ISLNK(inode->i_mode))
394 fuse_init_symlink(inode);
395 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
396 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
397 fuse_init_common(inode);
398 init_special_inode(inode, inode->i_mode,
399 new_decode_dev(attr->rdev));
403 * Ensure that we don't cache acls for daemons without FUSE_POSIX_ACL
404 * so they see the exact same behavior as before.
407 inode->i_acl = inode->i_default_acl = ACL_DONT_CACHE;
410 static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
412 u64 nodeid = *(u64 *) _nodeidp;
413 if (get_node_id(inode) == nodeid)
419 static int fuse_inode_set(struct inode *inode, void *_nodeidp)
421 u64 nodeid = *(u64 *) _nodeidp;
422 get_fuse_inode(inode)->nodeid = nodeid;
426 struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
427 int generation, struct fuse_attr *attr,
428 u64 attr_valid, u64 attr_version)
431 struct fuse_inode *fi;
432 struct fuse_conn *fc = get_fuse_conn_super(sb);
435 * Auto mount points get their node id from the submount root, which is
436 * not a unique identifier within this filesystem.
438 * To avoid conflicts, do not place submount points into the inode hash
441 if (fc->auto_submounts && (attr->flags & FUSE_ATTR_SUBMOUNT) &&
442 S_ISDIR(attr->mode)) {
443 struct fuse_inode *fi;
445 inode = new_inode(sb);
449 fuse_init_inode(inode, attr, fc);
450 fi = get_fuse_inode(inode);
452 fi->submount_lookup = fuse_alloc_submount_lookup();
453 if (!fi->submount_lookup) {
457 /* Sets nlookup = 1 on fi->submount_lookup->nlookup */
458 fuse_init_submount_lookup(fi->submount_lookup, nodeid);
459 inode->i_flags |= S_AUTOMOUNT;
464 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
468 if ((inode->i_state & I_NEW)) {
469 inode->i_flags |= S_NOATIME;
470 if (!fc->writeback_cache || !S_ISREG(attr->mode))
471 inode->i_flags |= S_NOCMTIME;
472 inode->i_generation = generation;
473 fuse_init_inode(inode, attr, fc);
474 unlock_new_inode(inode);
475 } else if (fuse_stale_inode(inode, generation, attr)) {
476 /* nodeid was reused, any I/O on the old inode should fail */
477 fuse_make_bad(inode);
478 if (inode != d_inode(sb->s_root)) {
479 remove_inode_hash(inode);
484 fi = get_fuse_inode(inode);
485 spin_lock(&fi->lock);
487 spin_unlock(&fi->lock);
489 fuse_change_attributes(inode, attr, NULL, attr_valid, attr_version);
494 struct inode *fuse_ilookup(struct fuse_conn *fc, u64 nodeid,
495 struct fuse_mount **fm)
497 struct fuse_mount *fm_iter;
500 WARN_ON(!rwsem_is_locked(&fc->killsb));
501 list_for_each_entry(fm_iter, &fc->mounts, fc_entry) {
505 inode = ilookup5(fm_iter->sb, nodeid, fuse_inode_eq, &nodeid);
516 int fuse_reverse_inval_inode(struct fuse_conn *fc, u64 nodeid,
517 loff_t offset, loff_t len)
519 struct fuse_inode *fi;
524 inode = fuse_ilookup(fc, nodeid, NULL);
528 fi = get_fuse_inode(inode);
529 spin_lock(&fi->lock);
530 fi->attr_version = atomic64_inc_return(&fc->attr_version);
531 spin_unlock(&fi->lock);
533 fuse_invalidate_attr(inode);
534 forget_all_cached_acls(inode);
536 pg_start = offset >> PAGE_SHIFT;
540 pg_end = (offset + len - 1) >> PAGE_SHIFT;
541 invalidate_inode_pages2_range(inode->i_mapping,
548 bool fuse_lock_inode(struct inode *inode)
552 if (!get_fuse_conn(inode)->parallel_dirops) {
553 mutex_lock(&get_fuse_inode(inode)->mutex);
560 void fuse_unlock_inode(struct inode *inode, bool locked)
563 mutex_unlock(&get_fuse_inode(inode)->mutex);
566 static void fuse_umount_begin(struct super_block *sb)
568 struct fuse_conn *fc = get_fuse_conn_super(sb);
570 if (fc->no_force_umount)
575 // Only retire block-device-based superblocks.
576 if (sb->s_bdev != NULL)
580 static void fuse_send_destroy(struct fuse_mount *fm)
582 if (fm->fc->conn_init) {
585 args.opcode = FUSE_DESTROY;
588 fuse_simple_request(fm, &args);
592 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
594 stbuf->f_type = FUSE_SUPER_MAGIC;
595 stbuf->f_bsize = attr->bsize;
596 stbuf->f_frsize = attr->frsize;
597 stbuf->f_blocks = attr->blocks;
598 stbuf->f_bfree = attr->bfree;
599 stbuf->f_bavail = attr->bavail;
600 stbuf->f_files = attr->files;
601 stbuf->f_ffree = attr->ffree;
602 stbuf->f_namelen = attr->namelen;
603 /* fsid is left zero */
606 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
608 struct super_block *sb = dentry->d_sb;
609 struct fuse_mount *fm = get_fuse_mount_super(sb);
611 struct fuse_statfs_out outarg;
614 if (!fuse_allow_current_process(fm->fc)) {
615 buf->f_type = FUSE_SUPER_MAGIC;
619 memset(&outarg, 0, sizeof(outarg));
621 args.opcode = FUSE_STATFS;
622 args.nodeid = get_node_id(d_inode(dentry));
623 args.out_numargs = 1;
624 args.out_args[0].size = sizeof(outarg);
625 args.out_args[0].value = &outarg;
626 err = fuse_simple_request(fm, &args);
628 convert_fuse_statfs(buf, &outarg.st);
632 static struct fuse_sync_bucket *fuse_sync_bucket_alloc(void)
634 struct fuse_sync_bucket *bucket;
636 bucket = kzalloc(sizeof(*bucket), GFP_KERNEL | __GFP_NOFAIL);
638 init_waitqueue_head(&bucket->waitq);
639 /* Initial active count */
640 atomic_set(&bucket->count, 1);
645 static void fuse_sync_fs_writes(struct fuse_conn *fc)
647 struct fuse_sync_bucket *bucket, *new_bucket;
650 new_bucket = fuse_sync_bucket_alloc();
651 spin_lock(&fc->lock);
652 bucket = rcu_dereference_protected(fc->curr_bucket, 1);
653 count = atomic_read(&bucket->count);
655 /* No outstanding writes? */
657 spin_unlock(&fc->lock);
663 * Completion of new bucket depends on completion of this bucket, so add
666 atomic_inc(&new_bucket->count);
667 rcu_assign_pointer(fc->curr_bucket, new_bucket);
668 spin_unlock(&fc->lock);
670 * Drop initial active count. At this point if all writes in this and
671 * ancestor buckets complete, the count will go to zero and this task
674 atomic_dec(&bucket->count);
676 wait_event(bucket->waitq, atomic_read(&bucket->count) == 0);
678 /* Drop temp count on descendant bucket */
679 fuse_sync_bucket_dec(new_bucket);
680 kfree_rcu(bucket, rcu);
683 static int fuse_sync_fs(struct super_block *sb, int wait)
685 struct fuse_mount *fm = get_fuse_mount_super(sb);
686 struct fuse_conn *fc = fm->fc;
687 struct fuse_syncfs_in inarg;
692 * Userspace cannot handle the wait == 0 case. Avoid a
693 * gratuitous roundtrip.
698 /* The filesystem is being unmounted. Nothing to do. */
705 fuse_sync_fs_writes(fc);
707 memset(&inarg, 0, sizeof(inarg));
709 args.in_args[0].size = sizeof(inarg);
710 args.in_args[0].value = &inarg;
711 args.opcode = FUSE_SYNCFS;
712 args.nodeid = get_node_id(sb->s_root->d_inode);
713 args.out_numargs = 0;
715 err = fuse_simple_request(fm, &args);
716 if (err == -ENOSYS) {
731 OPT_DEFAULT_PERMISSIONS,
738 static const struct fs_parameter_spec fuse_fs_parameters[] = {
739 fsparam_string ("source", OPT_SOURCE),
740 fsparam_u32 ("fd", OPT_FD),
741 fsparam_u32oct ("rootmode", OPT_ROOTMODE),
742 fsparam_u32 ("user_id", OPT_USER_ID),
743 fsparam_u32 ("group_id", OPT_GROUP_ID),
744 fsparam_flag ("default_permissions", OPT_DEFAULT_PERMISSIONS),
745 fsparam_flag ("allow_other", OPT_ALLOW_OTHER),
746 fsparam_u32 ("max_read", OPT_MAX_READ),
747 fsparam_u32 ("blksize", OPT_BLKSIZE),
748 fsparam_string ("subtype", OPT_SUBTYPE),
752 static int fuse_parse_param(struct fs_context *fsc, struct fs_parameter *param)
754 struct fs_parse_result result;
755 struct fuse_fs_context *ctx = fsc->fs_private;
758 if (fsc->purpose == FS_CONTEXT_FOR_RECONFIGURE) {
760 * Ignore options coming from mount(MS_REMOUNT) for backward
766 return invalfc(fsc, "No changes allowed in reconfigure");
769 opt = fs_parse(fsc, fuse_fs_parameters, param, &result);
776 return invalfc(fsc, "Multiple sources specified");
777 fsc->source = param->string;
778 param->string = NULL;
783 return invalfc(fsc, "Multiple subtypes specified");
784 ctx->subtype = param->string;
785 param->string = NULL;
789 ctx->fd = result.uint_32;
790 ctx->fd_present = true;
794 if (!fuse_valid_type(result.uint_32))
795 return invalfc(fsc, "Invalid rootmode");
796 ctx->rootmode = result.uint_32;
797 ctx->rootmode_present = true;
801 ctx->user_id = make_kuid(fsc->user_ns, result.uint_32);
802 if (!uid_valid(ctx->user_id))
803 return invalfc(fsc, "Invalid user_id");
804 ctx->user_id_present = true;
808 ctx->group_id = make_kgid(fsc->user_ns, result.uint_32);
809 if (!gid_valid(ctx->group_id))
810 return invalfc(fsc, "Invalid group_id");
811 ctx->group_id_present = true;
814 case OPT_DEFAULT_PERMISSIONS:
815 ctx->default_permissions = true;
818 case OPT_ALLOW_OTHER:
819 ctx->allow_other = true;
823 ctx->max_read = result.uint_32;
828 return invalfc(fsc, "blksize only supported for fuseblk");
829 ctx->blksize = result.uint_32;
839 static void fuse_free_fsc(struct fs_context *fsc)
841 struct fuse_fs_context *ctx = fsc->fs_private;
849 static int fuse_show_options(struct seq_file *m, struct dentry *root)
851 struct super_block *sb = root->d_sb;
852 struct fuse_conn *fc = get_fuse_conn_super(sb);
854 if (fc->legacy_opts_show) {
855 seq_printf(m, ",user_id=%u",
856 from_kuid_munged(fc->user_ns, fc->user_id));
857 seq_printf(m, ",group_id=%u",
858 from_kgid_munged(fc->user_ns, fc->group_id));
859 if (fc->default_permissions)
860 seq_puts(m, ",default_permissions");
862 seq_puts(m, ",allow_other");
863 if (fc->max_read != ~0)
864 seq_printf(m, ",max_read=%u", fc->max_read);
865 if (sb->s_bdev && sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
866 seq_printf(m, ",blksize=%lu", sb->s_blocksize);
868 #ifdef CONFIG_FUSE_DAX
869 if (fc->dax_mode == FUSE_DAX_ALWAYS)
870 seq_puts(m, ",dax=always");
871 else if (fc->dax_mode == FUSE_DAX_NEVER)
872 seq_puts(m, ",dax=never");
873 else if (fc->dax_mode == FUSE_DAX_INODE_USER)
874 seq_puts(m, ",dax=inode");
880 static void fuse_iqueue_init(struct fuse_iqueue *fiq,
881 const struct fuse_iqueue_ops *ops,
884 memset(fiq, 0, sizeof(struct fuse_iqueue));
885 spin_lock_init(&fiq->lock);
886 init_waitqueue_head(&fiq->waitq);
887 INIT_LIST_HEAD(&fiq->pending);
888 INIT_LIST_HEAD(&fiq->interrupts);
889 fiq->forget_list_tail = &fiq->forget_list_head;
895 static void fuse_pqueue_init(struct fuse_pqueue *fpq)
899 spin_lock_init(&fpq->lock);
900 for (i = 0; i < FUSE_PQ_HASH_SIZE; i++)
901 INIT_LIST_HEAD(&fpq->processing[i]);
902 INIT_LIST_HEAD(&fpq->io);
906 void fuse_conn_init(struct fuse_conn *fc, struct fuse_mount *fm,
907 struct user_namespace *user_ns,
908 const struct fuse_iqueue_ops *fiq_ops, void *fiq_priv)
910 memset(fc, 0, sizeof(*fc));
911 spin_lock_init(&fc->lock);
912 spin_lock_init(&fc->bg_lock);
913 init_rwsem(&fc->killsb);
914 refcount_set(&fc->count, 1);
915 atomic_set(&fc->dev_count, 1);
916 init_waitqueue_head(&fc->blocked_waitq);
917 fuse_iqueue_init(&fc->iq, fiq_ops, fiq_priv);
918 INIT_LIST_HEAD(&fc->bg_queue);
919 INIT_LIST_HEAD(&fc->entry);
920 INIT_LIST_HEAD(&fc->devices);
921 atomic_set(&fc->num_waiting, 0);
922 fc->max_background = FUSE_DEFAULT_MAX_BACKGROUND;
923 fc->congestion_threshold = FUSE_DEFAULT_CONGESTION_THRESHOLD;
924 atomic64_set(&fc->khctr, 0);
925 fc->polled_files = RB_ROOT;
929 atomic64_set(&fc->attr_version, 1);
930 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
931 fc->pid_ns = get_pid_ns(task_active_pid_ns(current));
932 fc->user_ns = get_user_ns(user_ns);
933 fc->max_pages = FUSE_DEFAULT_MAX_PAGES_PER_REQ;
934 fc->max_pages_limit = FUSE_MAX_MAX_PAGES;
936 if (IS_ENABLED(CONFIG_FUSE_PASSTHROUGH))
937 fuse_backing_files_init(fc);
939 INIT_LIST_HEAD(&fc->mounts);
940 list_add(&fm->fc_entry, &fc->mounts);
943 EXPORT_SYMBOL_GPL(fuse_conn_init);
945 static void delayed_release(struct rcu_head *p)
947 struct fuse_conn *fc = container_of(p, struct fuse_conn, rcu);
949 put_user_ns(fc->user_ns);
953 void fuse_conn_put(struct fuse_conn *fc)
955 if (refcount_dec_and_test(&fc->count)) {
956 struct fuse_iqueue *fiq = &fc->iq;
957 struct fuse_sync_bucket *bucket;
959 if (IS_ENABLED(CONFIG_FUSE_DAX))
960 fuse_dax_conn_free(fc);
961 if (fiq->ops->release)
962 fiq->ops->release(fiq);
963 put_pid_ns(fc->pid_ns);
964 bucket = rcu_dereference_protected(fc->curr_bucket, 1);
966 WARN_ON(atomic_read(&bucket->count) != 1);
969 if (IS_ENABLED(CONFIG_FUSE_PASSTHROUGH))
970 fuse_backing_files_free(fc);
971 call_rcu(&fc->rcu, delayed_release);
974 EXPORT_SYMBOL_GPL(fuse_conn_put);
976 struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
978 refcount_inc(&fc->count);
981 EXPORT_SYMBOL_GPL(fuse_conn_get);
983 static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned mode)
985 struct fuse_attr attr;
986 memset(&attr, 0, sizeof(attr));
989 attr.ino = FUSE_ROOT_ID;
991 return fuse_iget(sb, FUSE_ROOT_ID, 0, &attr, 0, 0);
994 struct fuse_inode_handle {
999 static struct dentry *fuse_get_dentry(struct super_block *sb,
1000 struct fuse_inode_handle *handle)
1002 struct fuse_conn *fc = get_fuse_conn_super(sb);
1003 struct inode *inode;
1004 struct dentry *entry;
1007 if (handle->nodeid == 0)
1010 inode = ilookup5(sb, handle->nodeid, fuse_inode_eq, &handle->nodeid);
1012 struct fuse_entry_out outarg;
1013 const struct qstr name = QSTR_INIT(".", 1);
1015 if (!fc->export_support)
1018 err = fuse_lookup_name(sb, handle->nodeid, &name, &outarg,
1020 if (err && err != -ENOENT)
1022 if (err || !inode) {
1027 if (get_node_id(inode) != handle->nodeid)
1031 if (inode->i_generation != handle->generation)
1034 entry = d_obtain_alias(inode);
1035 if (!IS_ERR(entry) && get_node_id(inode) != FUSE_ROOT_ID)
1036 fuse_invalidate_entry_cache(entry);
1043 return ERR_PTR(err);
1046 static int fuse_encode_fh(struct inode *inode, u32 *fh, int *max_len,
1047 struct inode *parent)
1049 int len = parent ? 6 : 3;
1053 if (*max_len < len) {
1055 return FILEID_INVALID;
1058 nodeid = get_fuse_inode(inode)->nodeid;
1059 generation = inode->i_generation;
1061 fh[0] = (u32)(nodeid >> 32);
1062 fh[1] = (u32)(nodeid & 0xffffffff);
1066 nodeid = get_fuse_inode(parent)->nodeid;
1067 generation = parent->i_generation;
1069 fh[3] = (u32)(nodeid >> 32);
1070 fh[4] = (u32)(nodeid & 0xffffffff);
1075 return parent ? FILEID_INO64_GEN_PARENT : FILEID_INO64_GEN;
1078 static struct dentry *fuse_fh_to_dentry(struct super_block *sb,
1079 struct fid *fid, int fh_len, int fh_type)
1081 struct fuse_inode_handle handle;
1083 if ((fh_type != FILEID_INO64_GEN &&
1084 fh_type != FILEID_INO64_GEN_PARENT) || fh_len < 3)
1087 handle.nodeid = (u64) fid->raw[0] << 32;
1088 handle.nodeid |= (u64) fid->raw[1];
1089 handle.generation = fid->raw[2];
1090 return fuse_get_dentry(sb, &handle);
1093 static struct dentry *fuse_fh_to_parent(struct super_block *sb,
1094 struct fid *fid, int fh_len, int fh_type)
1096 struct fuse_inode_handle parent;
1098 if (fh_type != FILEID_INO64_GEN_PARENT || fh_len < 6)
1101 parent.nodeid = (u64) fid->raw[3] << 32;
1102 parent.nodeid |= (u64) fid->raw[4];
1103 parent.generation = fid->raw[5];
1104 return fuse_get_dentry(sb, &parent);
1107 static struct dentry *fuse_get_parent(struct dentry *child)
1109 struct inode *child_inode = d_inode(child);
1110 struct fuse_conn *fc = get_fuse_conn(child_inode);
1111 struct inode *inode;
1112 struct dentry *parent;
1113 struct fuse_entry_out outarg;
1116 if (!fc->export_support)
1117 return ERR_PTR(-ESTALE);
1119 err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode),
1120 &dotdot_name, &outarg, &inode);
1123 return ERR_PTR(-ESTALE);
1124 return ERR_PTR(err);
1127 parent = d_obtain_alias(inode);
1128 if (!IS_ERR(parent) && get_node_id(inode) != FUSE_ROOT_ID)
1129 fuse_invalidate_entry_cache(parent);
1134 /* only for fid encoding; no support for file handle */
1135 static const struct export_operations fuse_export_fid_operations = {
1136 .encode_fh = fuse_encode_fh,
1139 static const struct export_operations fuse_export_operations = {
1140 .fh_to_dentry = fuse_fh_to_dentry,
1141 .fh_to_parent = fuse_fh_to_parent,
1142 .encode_fh = fuse_encode_fh,
1143 .get_parent = fuse_get_parent,
1146 static const struct super_operations fuse_super_operations = {
1147 .alloc_inode = fuse_alloc_inode,
1148 .free_inode = fuse_free_inode,
1149 .evict_inode = fuse_evict_inode,
1150 .write_inode = fuse_write_inode,
1151 .drop_inode = generic_delete_inode,
1152 .umount_begin = fuse_umount_begin,
1153 .statfs = fuse_statfs,
1154 .sync_fs = fuse_sync_fs,
1155 .show_options = fuse_show_options,
1158 static void sanitize_global_limit(unsigned *limit)
1161 * The default maximum number of async requests is calculated to consume
1162 * 1/2^13 of the total memory, assuming 392 bytes per request.
1165 *limit = ((totalram_pages() << PAGE_SHIFT) >> 13) / 392;
1167 if (*limit >= 1 << 16)
1168 *limit = (1 << 16) - 1;
1171 static int set_global_limit(const char *val, const struct kernel_param *kp)
1175 rv = param_set_uint(val, kp);
1179 sanitize_global_limit((unsigned *)kp->arg);
1184 static void process_init_limits(struct fuse_conn *fc, struct fuse_init_out *arg)
1186 int cap_sys_admin = capable(CAP_SYS_ADMIN);
1188 if (arg->minor < 13)
1191 sanitize_global_limit(&max_user_bgreq);
1192 sanitize_global_limit(&max_user_congthresh);
1194 spin_lock(&fc->bg_lock);
1195 if (arg->max_background) {
1196 fc->max_background = arg->max_background;
1198 if (!cap_sys_admin && fc->max_background > max_user_bgreq)
1199 fc->max_background = max_user_bgreq;
1201 if (arg->congestion_threshold) {
1202 fc->congestion_threshold = arg->congestion_threshold;
1204 if (!cap_sys_admin &&
1205 fc->congestion_threshold > max_user_congthresh)
1206 fc->congestion_threshold = max_user_congthresh;
1208 spin_unlock(&fc->bg_lock);
1211 struct fuse_init_args {
1212 struct fuse_args args;
1213 struct fuse_init_in in;
1214 struct fuse_init_out out;
1217 static void process_init_reply(struct fuse_mount *fm, struct fuse_args *args,
1220 struct fuse_conn *fc = fm->fc;
1221 struct fuse_init_args *ia = container_of(args, typeof(*ia), args);
1222 struct fuse_init_out *arg = &ia->out;
1225 if (error || arg->major != FUSE_KERNEL_VERSION)
1228 unsigned long ra_pages;
1230 process_init_limits(fc, arg);
1232 if (arg->minor >= 6) {
1233 u64 flags = arg->flags;
1235 if (flags & FUSE_INIT_EXT)
1236 flags |= (u64) arg->flags2 << 32;
1238 ra_pages = arg->max_readahead / PAGE_SIZE;
1239 if (flags & FUSE_ASYNC_READ)
1241 if (!(flags & FUSE_POSIX_LOCKS))
1243 if (arg->minor >= 17) {
1244 if (!(flags & FUSE_FLOCK_LOCKS))
1247 if (!(flags & FUSE_POSIX_LOCKS))
1250 if (flags & FUSE_ATOMIC_O_TRUNC)
1251 fc->atomic_o_trunc = 1;
1252 if (arg->minor >= 9) {
1253 /* LOOKUP has dependency on proto version */
1254 if (flags & FUSE_EXPORT_SUPPORT)
1255 fc->export_support = 1;
1257 if (flags & FUSE_BIG_WRITES)
1259 if (flags & FUSE_DONT_MASK)
1261 if (flags & FUSE_AUTO_INVAL_DATA)
1262 fc->auto_inval_data = 1;
1263 else if (flags & FUSE_EXPLICIT_INVAL_DATA)
1264 fc->explicit_inval_data = 1;
1265 if (flags & FUSE_DO_READDIRPLUS) {
1266 fc->do_readdirplus = 1;
1267 if (flags & FUSE_READDIRPLUS_AUTO)
1268 fc->readdirplus_auto = 1;
1270 if (flags & FUSE_ASYNC_DIO)
1272 if (flags & FUSE_WRITEBACK_CACHE)
1273 fc->writeback_cache = 1;
1274 if (flags & FUSE_PARALLEL_DIROPS)
1275 fc->parallel_dirops = 1;
1276 if (flags & FUSE_HANDLE_KILLPRIV)
1277 fc->handle_killpriv = 1;
1278 if (arg->time_gran && arg->time_gran <= 1000000000)
1279 fm->sb->s_time_gran = arg->time_gran;
1280 if ((flags & FUSE_POSIX_ACL)) {
1281 fc->default_permissions = 1;
1284 if (flags & FUSE_CACHE_SYMLINKS)
1285 fc->cache_symlinks = 1;
1286 if (flags & FUSE_ABORT_ERROR)
1288 if (flags & FUSE_MAX_PAGES) {
1290 min_t(unsigned int, fc->max_pages_limit,
1291 max_t(unsigned int, arg->max_pages, 1));
1293 if (IS_ENABLED(CONFIG_FUSE_DAX)) {
1294 if (flags & FUSE_MAP_ALIGNMENT &&
1295 !fuse_dax_check_alignment(fc, arg->map_alignment)) {
1298 if (flags & FUSE_HAS_INODE_DAX)
1301 if (flags & FUSE_HANDLE_KILLPRIV_V2) {
1302 fc->handle_killpriv_v2 = 1;
1303 fm->sb->s_flags |= SB_NOSEC;
1305 if (flags & FUSE_SETXATTR_EXT)
1306 fc->setxattr_ext = 1;
1307 if (flags & FUSE_SECURITY_CTX)
1308 fc->init_security = 1;
1309 if (flags & FUSE_CREATE_SUPP_GROUP)
1310 fc->create_supp_group = 1;
1311 if (flags & FUSE_DIRECT_IO_ALLOW_MMAP)
1312 fc->direct_io_allow_mmap = 1;
1314 * max_stack_depth is the max stack depth of FUSE fs,
1315 * so it has to be at least 1 to support passthrough
1318 * with max_stack_depth > 1, the backing files can be
1319 * on a stacked fs (e.g. overlayfs) themselves and with
1320 * max_stack_depth == 1, FUSE fs can be stacked as the
1321 * underlying fs of a stacked fs (e.g. overlayfs).
1323 if (IS_ENABLED(CONFIG_FUSE_PASSTHROUGH) &&
1324 (flags & FUSE_PASSTHROUGH) &&
1325 arg->max_stack_depth > 0 &&
1326 arg->max_stack_depth <= FILESYSTEM_MAX_STACK_DEPTH) {
1327 fc->passthrough = 1;
1328 fc->max_stack_depth = arg->max_stack_depth;
1329 fm->sb->s_stack_depth = arg->max_stack_depth;
1331 if (flags & FUSE_NO_EXPORT_SUPPORT)
1332 fm->sb->s_export_op = &fuse_export_fid_operations;
1334 ra_pages = fc->max_read / PAGE_SIZE;
1339 fm->sb->s_bdi->ra_pages =
1340 min(fm->sb->s_bdi->ra_pages, ra_pages);
1341 fc->minor = arg->minor;
1342 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
1343 fc->max_write = max_t(unsigned, 4096, fc->max_write);
1353 fuse_set_initialized(fc);
1354 wake_up_all(&fc->blocked_waitq);
1357 void fuse_send_init(struct fuse_mount *fm)
1359 struct fuse_init_args *ia;
1362 ia = kzalloc(sizeof(*ia), GFP_KERNEL | __GFP_NOFAIL);
1364 ia->in.major = FUSE_KERNEL_VERSION;
1365 ia->in.minor = FUSE_KERNEL_MINOR_VERSION;
1366 ia->in.max_readahead = fm->sb->s_bdi->ra_pages * PAGE_SIZE;
1368 FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
1369 FUSE_EXPORT_SUPPORT | FUSE_BIG_WRITES | FUSE_DONT_MASK |
1370 FUSE_SPLICE_WRITE | FUSE_SPLICE_MOVE | FUSE_SPLICE_READ |
1371 FUSE_FLOCK_LOCKS | FUSE_HAS_IOCTL_DIR | FUSE_AUTO_INVAL_DATA |
1372 FUSE_DO_READDIRPLUS | FUSE_READDIRPLUS_AUTO | FUSE_ASYNC_DIO |
1373 FUSE_WRITEBACK_CACHE | FUSE_NO_OPEN_SUPPORT |
1374 FUSE_PARALLEL_DIROPS | FUSE_HANDLE_KILLPRIV | FUSE_POSIX_ACL |
1375 FUSE_ABORT_ERROR | FUSE_MAX_PAGES | FUSE_CACHE_SYMLINKS |
1376 FUSE_NO_OPENDIR_SUPPORT | FUSE_EXPLICIT_INVAL_DATA |
1377 FUSE_HANDLE_KILLPRIV_V2 | FUSE_SETXATTR_EXT | FUSE_INIT_EXT |
1378 FUSE_SECURITY_CTX | FUSE_CREATE_SUPP_GROUP |
1379 FUSE_HAS_EXPIRE_ONLY | FUSE_DIRECT_IO_ALLOW_MMAP |
1380 FUSE_NO_EXPORT_SUPPORT | FUSE_HAS_RESEND;
1381 #ifdef CONFIG_FUSE_DAX
1383 flags |= FUSE_MAP_ALIGNMENT;
1384 if (fuse_is_inode_dax_mode(fm->fc->dax_mode))
1385 flags |= FUSE_HAS_INODE_DAX;
1387 if (fm->fc->auto_submounts)
1388 flags |= FUSE_SUBMOUNTS;
1389 if (IS_ENABLED(CONFIG_FUSE_PASSTHROUGH))
1390 flags |= FUSE_PASSTHROUGH;
1392 ia->in.flags = flags;
1393 ia->in.flags2 = flags >> 32;
1395 ia->args.opcode = FUSE_INIT;
1396 ia->args.in_numargs = 1;
1397 ia->args.in_args[0].size = sizeof(ia->in);
1398 ia->args.in_args[0].value = &ia->in;
1399 ia->args.out_numargs = 1;
1400 /* Variable length argument used for backward compatibility
1401 with interface version < 7.5. Rest of init_out is zeroed
1402 by do_get_request(), so a short reply is not a problem */
1403 ia->args.out_argvar = true;
1404 ia->args.out_args[0].size = sizeof(ia->out);
1405 ia->args.out_args[0].value = &ia->out;
1406 ia->args.force = true;
1407 ia->args.nocreds = true;
1408 ia->args.end = process_init_reply;
1410 if (fuse_simple_background(fm, &ia->args, GFP_KERNEL) != 0)
1411 process_init_reply(fm, &ia->args, -ENOTCONN);
1413 EXPORT_SYMBOL_GPL(fuse_send_init);
1415 void fuse_free_conn(struct fuse_conn *fc)
1417 WARN_ON(!list_empty(&fc->devices));
1420 EXPORT_SYMBOL_GPL(fuse_free_conn);
1422 static int fuse_bdi_init(struct fuse_conn *fc, struct super_block *sb)
1428 suffix = "-fuseblk";
1430 * sb->s_bdi points to blkdev's bdi however we want to redirect
1431 * it to our private bdi...
1434 sb->s_bdi = &noop_backing_dev_info;
1436 err = super_setup_bdi_name(sb, "%u:%u%s", MAJOR(fc->dev),
1437 MINOR(fc->dev), suffix);
1441 /* fuse does it's own writeback accounting */
1442 sb->s_bdi->capabilities &= ~BDI_CAP_WRITEBACK_ACCT;
1443 sb->s_bdi->capabilities |= BDI_CAP_STRICTLIMIT;
1446 * For a single fuse filesystem use max 1% of dirty +
1447 * writeback threshold.
1449 * This gives about 1M of write buffer for memory maps on a
1450 * machine with 1G and 10% dirty_ratio, which should be more
1453 * Privileged users can raise it by writing to
1455 * /sys/class/bdi/<bdi>/max_ratio
1457 bdi_set_max_ratio(sb->s_bdi, 1);
1462 struct fuse_dev *fuse_dev_alloc(void)
1464 struct fuse_dev *fud;
1465 struct list_head *pq;
1467 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL);
1471 pq = kcalloc(FUSE_PQ_HASH_SIZE, sizeof(struct list_head), GFP_KERNEL);
1477 fud->pq.processing = pq;
1478 fuse_pqueue_init(&fud->pq);
1482 EXPORT_SYMBOL_GPL(fuse_dev_alloc);
1484 void fuse_dev_install(struct fuse_dev *fud, struct fuse_conn *fc)
1486 fud->fc = fuse_conn_get(fc);
1487 spin_lock(&fc->lock);
1488 list_add_tail(&fud->entry, &fc->devices);
1489 spin_unlock(&fc->lock);
1491 EXPORT_SYMBOL_GPL(fuse_dev_install);
1493 struct fuse_dev *fuse_dev_alloc_install(struct fuse_conn *fc)
1495 struct fuse_dev *fud;
1497 fud = fuse_dev_alloc();
1501 fuse_dev_install(fud, fc);
1504 EXPORT_SYMBOL_GPL(fuse_dev_alloc_install);
1506 void fuse_dev_free(struct fuse_dev *fud)
1508 struct fuse_conn *fc = fud->fc;
1511 spin_lock(&fc->lock);
1512 list_del(&fud->entry);
1513 spin_unlock(&fc->lock);
1517 kfree(fud->pq.processing);
1520 EXPORT_SYMBOL_GPL(fuse_dev_free);
1522 static void fuse_fill_attr_from_inode(struct fuse_attr *attr,
1523 const struct fuse_inode *fi)
1525 struct timespec64 atime = inode_get_atime(&fi->inode);
1526 struct timespec64 mtime = inode_get_mtime(&fi->inode);
1527 struct timespec64 ctime = inode_get_ctime(&fi->inode);
1529 *attr = (struct fuse_attr){
1530 .ino = fi->inode.i_ino,
1531 .size = fi->inode.i_size,
1532 .blocks = fi->inode.i_blocks,
1533 .atime = atime.tv_sec,
1534 .mtime = mtime.tv_sec,
1535 .ctime = ctime.tv_sec,
1536 .atimensec = atime.tv_nsec,
1537 .mtimensec = mtime.tv_nsec,
1538 .ctimensec = ctime.tv_nsec,
1539 .mode = fi->inode.i_mode,
1540 .nlink = fi->inode.i_nlink,
1541 .uid = __kuid_val(fi->inode.i_uid),
1542 .gid = __kgid_val(fi->inode.i_gid),
1543 .rdev = fi->inode.i_rdev,
1544 .blksize = 1u << fi->inode.i_blkbits,
1548 static void fuse_sb_defaults(struct super_block *sb)
1550 sb->s_magic = FUSE_SUPER_MAGIC;
1551 sb->s_op = &fuse_super_operations;
1552 sb->s_xattr = fuse_xattr_handlers;
1553 sb->s_maxbytes = MAX_LFS_FILESIZE;
1554 sb->s_time_gran = 1;
1555 sb->s_export_op = &fuse_export_operations;
1556 sb->s_iflags |= SB_I_IMA_UNVERIFIABLE_SIGNATURE;
1557 if (sb->s_user_ns != &init_user_ns)
1558 sb->s_iflags |= SB_I_UNTRUSTED_MOUNTER;
1559 sb->s_flags &= ~(SB_NOSEC | SB_I_VERSION);
1562 static int fuse_fill_super_submount(struct super_block *sb,
1563 struct fuse_inode *parent_fi)
1565 struct fuse_mount *fm = get_fuse_mount_super(sb);
1566 struct super_block *parent_sb = parent_fi->inode.i_sb;
1567 struct fuse_attr root_attr;
1569 struct fuse_submount_lookup *sl;
1570 struct fuse_inode *fi;
1572 fuse_sb_defaults(sb);
1575 WARN_ON(sb->s_bdi != &noop_backing_dev_info);
1576 sb->s_bdi = bdi_get(parent_sb->s_bdi);
1578 sb->s_xattr = parent_sb->s_xattr;
1579 sb->s_export_op = parent_sb->s_export_op;
1580 sb->s_time_gran = parent_sb->s_time_gran;
1581 sb->s_blocksize = parent_sb->s_blocksize;
1582 sb->s_blocksize_bits = parent_sb->s_blocksize_bits;
1583 sb->s_subtype = kstrdup(parent_sb->s_subtype, GFP_KERNEL);
1584 if (parent_sb->s_subtype && !sb->s_subtype)
1587 fuse_fill_attr_from_inode(&root_attr, parent_fi);
1588 root = fuse_iget(sb, parent_fi->nodeid, 0, &root_attr, 0, 0);
1590 * This inode is just a duplicate, so it is not looked up and
1591 * its nlookup should not be incremented. fuse_iget() does
1592 * that, though, so undo it here.
1594 fi = get_fuse_inode(root);
1597 sb->s_d_op = &fuse_dentry_operations;
1598 sb->s_root = d_make_root(root);
1603 * Grab the parent's submount_lookup pointer and take a
1604 * reference on the shared nlookup from the parent. This is to
1605 * prevent the last forget for this nodeid from getting
1606 * triggered until all users have finished with it.
1608 sl = parent_fi->submount_lookup;
1611 refcount_inc(&sl->count);
1612 fi->submount_lookup = sl;
1618 /* Filesystem context private data holds the FUSE inode of the mount point */
1619 static int fuse_get_tree_submount(struct fs_context *fsc)
1621 struct fuse_mount *fm;
1622 struct fuse_inode *mp_fi = fsc->fs_private;
1623 struct fuse_conn *fc = get_fuse_conn(&mp_fi->inode);
1624 struct super_block *sb;
1627 fm = kzalloc(sizeof(struct fuse_mount), GFP_KERNEL);
1631 fm->fc = fuse_conn_get(fc);
1632 fsc->s_fs_info = fm;
1633 sb = sget_fc(fsc, NULL, set_anon_super_fc);
1635 fuse_mount_destroy(fm);
1639 /* Initialize superblock, making @mp_fi its root */
1640 err = fuse_fill_super_submount(sb, mp_fi);
1642 deactivate_locked_super(sb);
1646 down_write(&fc->killsb);
1647 list_add_tail(&fm->fc_entry, &fc->mounts);
1648 up_write(&fc->killsb);
1650 sb->s_flags |= SB_ACTIVE;
1651 fsc->root = dget(sb->s_root);
1656 static const struct fs_context_operations fuse_context_submount_ops = {
1657 .get_tree = fuse_get_tree_submount,
1660 int fuse_init_fs_context_submount(struct fs_context *fsc)
1662 fsc->ops = &fuse_context_submount_ops;
1665 EXPORT_SYMBOL_GPL(fuse_init_fs_context_submount);
1667 int fuse_fill_super_common(struct super_block *sb, struct fuse_fs_context *ctx)
1669 struct fuse_dev *fud = NULL;
1670 struct fuse_mount *fm = get_fuse_mount_super(sb);
1671 struct fuse_conn *fc = fm->fc;
1673 struct dentry *root_dentry;
1677 if (sb->s_flags & SB_MANDLOCK)
1680 rcu_assign_pointer(fc->curr_bucket, fuse_sync_bucket_alloc());
1681 fuse_sb_defaults(sb);
1686 if (!sb_set_blocksize(sb, ctx->blksize))
1690 sb->s_blocksize = PAGE_SIZE;
1691 sb->s_blocksize_bits = PAGE_SHIFT;
1694 sb->s_subtype = ctx->subtype;
1695 ctx->subtype = NULL;
1696 if (IS_ENABLED(CONFIG_FUSE_DAX)) {
1697 err = fuse_dax_conn_alloc(fc, ctx->dax_mode, ctx->dax_dev);
1704 fud = fuse_dev_alloc_install(fc);
1709 fc->dev = sb->s_dev;
1711 err = fuse_bdi_init(fc, sb);
1715 /* Handle umasking inside the fuse code */
1716 if (sb->s_flags & SB_POSIXACL)
1718 sb->s_flags |= SB_POSIXACL;
1720 fc->default_permissions = ctx->default_permissions;
1721 fc->allow_other = ctx->allow_other;
1722 fc->user_id = ctx->user_id;
1723 fc->group_id = ctx->group_id;
1724 fc->legacy_opts_show = ctx->legacy_opts_show;
1725 fc->max_read = max_t(unsigned int, 4096, ctx->max_read);
1726 fc->destroy = ctx->destroy;
1727 fc->no_control = ctx->no_control;
1728 fc->no_force_umount = ctx->no_force_umount;
1731 root = fuse_get_root_inode(sb, ctx->rootmode);
1732 sb->s_d_op = &fuse_root_dentry_operations;
1733 root_dentry = d_make_root(root);
1736 /* Root dentry doesn't have .d_revalidate */
1737 sb->s_d_op = &fuse_dentry_operations;
1739 mutex_lock(&fuse_mutex);
1741 if (ctx->fudptr && *ctx->fudptr)
1744 err = fuse_ctl_add_conn(fc);
1748 list_add_tail(&fc->entry, &fuse_conn_list);
1749 sb->s_root = root_dentry;
1752 mutex_unlock(&fuse_mutex);
1756 mutex_unlock(&fuse_mutex);
1762 if (IS_ENABLED(CONFIG_FUSE_DAX))
1763 fuse_dax_conn_free(fc);
1767 EXPORT_SYMBOL_GPL(fuse_fill_super_common);
1769 static int fuse_fill_super(struct super_block *sb, struct fs_context *fsc)
1771 struct fuse_fs_context *ctx = fsc->fs_private;
1774 if (!ctx->file || !ctx->rootmode_present ||
1775 !ctx->user_id_present || !ctx->group_id_present)
1779 * Require mount to happen from the same user namespace which
1780 * opened /dev/fuse to prevent potential attacks.
1782 if ((ctx->file->f_op != &fuse_dev_operations) ||
1783 (ctx->file->f_cred->user_ns != sb->s_user_ns))
1785 ctx->fudptr = &ctx->file->private_data;
1787 err = fuse_fill_super_common(sb, ctx);
1790 /* file->private_data shall be visible on all CPUs after this */
1792 fuse_send_init(get_fuse_mount_super(sb));
1797 * This is the path where user supplied an already initialized fuse dev. In
1798 * this case never create a new super if the old one is gone.
1800 static int fuse_set_no_super(struct super_block *sb, struct fs_context *fsc)
1805 static int fuse_test_super(struct super_block *sb, struct fs_context *fsc)
1808 return fsc->sget_key == get_fuse_conn_super(sb);
1811 static int fuse_get_tree(struct fs_context *fsc)
1813 struct fuse_fs_context *ctx = fsc->fs_private;
1814 struct fuse_dev *fud;
1815 struct fuse_conn *fc;
1816 struct fuse_mount *fm;
1817 struct super_block *sb;
1820 fc = kmalloc(sizeof(*fc), GFP_KERNEL);
1824 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
1830 fuse_conn_init(fc, fm, fsc->user_ns, &fuse_dev_fiq_ops, NULL);
1831 fc->release = fuse_free_conn;
1833 fsc->s_fs_info = fm;
1835 if (ctx->fd_present)
1836 ctx->file = fget(ctx->fd);
1838 if (IS_ENABLED(CONFIG_BLOCK) && ctx->is_bdev) {
1839 err = get_tree_bdev(fsc, fuse_fill_super);
1843 * While block dev mount can be initialized with a dummy device fd
1844 * (found by device name), normal fuse mounts can't
1851 * Allow creating a fuse mount with an already initialized fuse
1854 fud = READ_ONCE(ctx->file->private_data);
1855 if (ctx->file->f_op == &fuse_dev_operations && fud) {
1856 fsc->sget_key = fud->fc;
1857 sb = sget_fc(fsc, fuse_test_super, fuse_set_no_super);
1858 err = PTR_ERR_OR_ZERO(sb);
1860 fsc->root = dget(sb->s_root);
1862 err = get_tree_nodev(fsc, fuse_fill_super);
1866 fuse_mount_destroy(fm);
1872 static const struct fs_context_operations fuse_context_ops = {
1873 .free = fuse_free_fsc,
1874 .parse_param = fuse_parse_param,
1875 .reconfigure = fuse_reconfigure,
1876 .get_tree = fuse_get_tree,
1880 * Set up the filesystem mount context.
1882 static int fuse_init_fs_context(struct fs_context *fsc)
1884 struct fuse_fs_context *ctx;
1886 ctx = kzalloc(sizeof(struct fuse_fs_context), GFP_KERNEL);
1891 ctx->blksize = FUSE_DEFAULT_BLKSIZE;
1892 ctx->legacy_opts_show = true;
1895 if (fsc->fs_type == &fuseblk_fs_type) {
1896 ctx->is_bdev = true;
1897 ctx->destroy = true;
1901 fsc->fs_private = ctx;
1902 fsc->ops = &fuse_context_ops;
1906 bool fuse_mount_remove(struct fuse_mount *fm)
1908 struct fuse_conn *fc = fm->fc;
1911 down_write(&fc->killsb);
1912 list_del_init(&fm->fc_entry);
1913 if (list_empty(&fc->mounts))
1915 up_write(&fc->killsb);
1919 EXPORT_SYMBOL_GPL(fuse_mount_remove);
1921 void fuse_conn_destroy(struct fuse_mount *fm)
1923 struct fuse_conn *fc = fm->fc;
1926 fuse_send_destroy(fm);
1928 fuse_abort_conn(fc);
1929 fuse_wait_aborted(fc);
1931 if (!list_empty(&fc->entry)) {
1932 mutex_lock(&fuse_mutex);
1933 list_del(&fc->entry);
1934 fuse_ctl_remove_conn(fc);
1935 mutex_unlock(&fuse_mutex);
1938 EXPORT_SYMBOL_GPL(fuse_conn_destroy);
1940 static void fuse_sb_destroy(struct super_block *sb)
1942 struct fuse_mount *fm = get_fuse_mount_super(sb);
1946 last = fuse_mount_remove(fm);
1948 fuse_conn_destroy(fm);
1952 void fuse_mount_destroy(struct fuse_mount *fm)
1954 fuse_conn_put(fm->fc);
1957 EXPORT_SYMBOL(fuse_mount_destroy);
1959 static void fuse_kill_sb_anon(struct super_block *sb)
1961 fuse_sb_destroy(sb);
1962 kill_anon_super(sb);
1963 fuse_mount_destroy(get_fuse_mount_super(sb));
1966 static struct file_system_type fuse_fs_type = {
1967 .owner = THIS_MODULE,
1969 .fs_flags = FS_HAS_SUBTYPE | FS_USERNS_MOUNT,
1970 .init_fs_context = fuse_init_fs_context,
1971 .parameters = fuse_fs_parameters,
1972 .kill_sb = fuse_kill_sb_anon,
1974 MODULE_ALIAS_FS("fuse");
1977 static void fuse_kill_sb_blk(struct super_block *sb)
1979 fuse_sb_destroy(sb);
1980 kill_block_super(sb);
1981 fuse_mount_destroy(get_fuse_mount_super(sb));
1984 static struct file_system_type fuseblk_fs_type = {
1985 .owner = THIS_MODULE,
1987 .init_fs_context = fuse_init_fs_context,
1988 .parameters = fuse_fs_parameters,
1989 .kill_sb = fuse_kill_sb_blk,
1990 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
1992 MODULE_ALIAS_FS("fuseblk");
1994 static inline int register_fuseblk(void)
1996 return register_filesystem(&fuseblk_fs_type);
1999 static inline void unregister_fuseblk(void)
2001 unregister_filesystem(&fuseblk_fs_type);
2004 static inline int register_fuseblk(void)
2009 static inline void unregister_fuseblk(void)
2014 static void fuse_inode_init_once(void *foo)
2016 struct inode *inode = foo;
2018 inode_init_once(inode);
2021 static int __init fuse_fs_init(void)
2025 fuse_inode_cachep = kmem_cache_create("fuse_inode",
2026 sizeof(struct fuse_inode), 0,
2027 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT|SLAB_RECLAIM_ACCOUNT,
2028 fuse_inode_init_once);
2030 if (!fuse_inode_cachep)
2033 err = register_fuseblk();
2037 err = register_filesystem(&fuse_fs_type);
2044 unregister_fuseblk();
2046 kmem_cache_destroy(fuse_inode_cachep);
2051 static void fuse_fs_cleanup(void)
2053 unregister_filesystem(&fuse_fs_type);
2054 unregister_fuseblk();
2057 * Make sure all delayed rcu free inodes are flushed before we
2061 kmem_cache_destroy(fuse_inode_cachep);
2064 static struct kobject *fuse_kobj;
2066 static int fuse_sysfs_init(void)
2070 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
2076 err = sysfs_create_mount_point(fuse_kobj, "connections");
2078 goto out_fuse_unregister;
2082 out_fuse_unregister:
2083 kobject_put(fuse_kobj);
2088 static void fuse_sysfs_cleanup(void)
2090 sysfs_remove_mount_point(fuse_kobj, "connections");
2091 kobject_put(fuse_kobj);
2094 static int __init fuse_init(void)
2098 pr_info("init (API version %i.%i)\n",
2099 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
2101 INIT_LIST_HEAD(&fuse_conn_list);
2102 res = fuse_fs_init();
2106 res = fuse_dev_init();
2108 goto err_fs_cleanup;
2110 res = fuse_sysfs_init();
2112 goto err_dev_cleanup;
2114 res = fuse_ctl_init();
2116 goto err_sysfs_cleanup;
2118 sanitize_global_limit(&max_user_bgreq);
2119 sanitize_global_limit(&max_user_congthresh);
2124 fuse_sysfs_cleanup();
2133 static void __exit fuse_exit(void)
2138 fuse_sysfs_cleanup();
2143 module_init(fuse_init);
2144 module_exit(fuse_exit);