[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <176169811312.1426070.16457653864288378906.stgit@frogsfrogsfrogs>
Date: Tue, 28 Oct 2025 17:53:49 -0700
From: "Darrick J. Wong" <djwong@...nel.org>
To: djwong@...nel.org, miklos@...redi.hu
Cc: joannelkoong@...il.com, bernd@...ernd.com, neal@...pa.dev,
linux-ext4@...r.kernel.org, linux-fsdevel@...r.kernel.org
Subject: [PATCH 3/3] fuse: allow setting of root nodeid
From: Darrick J. Wong <djwong@...nel.org>
Provide a new mount option so that fuse servers can actually set the
root nodeid.
Signed-off-by: "Darrick J. Wong" <djwong@...nel.org>
---
fs/fuse/fuse_i.h | 2 ++
fs/fuse/inode.c | 11 +++++++++++
2 files changed, 13 insertions(+)
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index 4157dba6cba27c..b599e467146d33 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -626,6 +626,7 @@ struct fuse_fs_context {
int fd;
struct file *file;
unsigned int rootmode;
+ u64 root_nodeid;
kuid_t user_id;
kgid_t group_id;
bool is_bdev:1;
@@ -639,6 +640,7 @@ struct fuse_fs_context {
bool no_control:1;
bool no_force_umount:1;
bool legacy_opts_show:1;
+ bool root_nodeid_present:1;
enum fuse_dax_mode dax_mode;
unsigned int max_read;
unsigned int blksize;
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 5f0c7032e691a6..955c1b23b1f9cb 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -802,6 +802,7 @@ enum {
OPT_ALLOW_OTHER,
OPT_MAX_READ,
OPT_BLKSIZE,
+ OPT_ROOT_NODEID,
OPT_ERR
};
@@ -816,6 +817,7 @@ static const struct fs_parameter_spec fuse_fs_parameters[] = {
fsparam_u32 ("max_read", OPT_MAX_READ),
fsparam_u32 ("blksize", OPT_BLKSIZE),
fsparam_string ("subtype", OPT_SUBTYPE),
+ fsparam_u64 ("root_nodeid", OPT_ROOT_NODEID),
{}
};
@@ -911,6 +913,11 @@ static int fuse_parse_param(struct fs_context *fsc, struct fs_parameter *param)
ctx->blksize = result.uint_32;
break;
+ case OPT_ROOT_NODEID:
+ ctx->root_nodeid = result.uint_64;
+ ctx->root_nodeid_present = true;
+ break;
+
default:
return -EINVAL;
}
@@ -946,6 +953,8 @@ static int fuse_show_options(struct seq_file *m, struct dentry *root)
seq_printf(m, ",max_read=%u", fc->max_read);
if (sb->s_bdev && sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
seq_printf(m, ",blksize=%lu", sb->s_blocksize);
+ if (fc->root_nodeid && fc->root_nodeid != FUSE_ROOT_ID)
+ seq_printf(m, ",root_nodeid=%llu", fc->root_nodeid);
}
#ifdef CONFIG_FUSE_DAX
if (fc->dax_mode == FUSE_DAX_ALWAYS)
@@ -2002,6 +2011,8 @@ int fuse_fill_super_common(struct super_block *sb, struct fuse_fs_context *ctx)
sb->s_flags |= SB_POSIXACL;
fc->default_permissions = ctx->default_permissions;
+ if (ctx->root_nodeid_present)
+ fc->root_nodeid = ctx->root_nodeid;
fc->allow_other = ctx->allow_other;
fc->user_id = ctx->user_id;
fc->group_id = ctx->group_id;
Powered by blists - more mailing lists