diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2022-11-10 15:46:33 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2023-01-26 17:10:38 +0100 |
commit | 8ed7cb3f279fe67a93f407ee2ec3ea661a483a65 (patch) | |
tree | cdce22c462eab384ddfa139affcedfd28b7e93c8 /fs/fuse/fuse_i.h | |
parent | 15d937d7ca8c55d2b0ce9116e20c780fdd0b67cc (diff) | |
download | lwn-8ed7cb3f279fe67a93f407ee2ec3ea661a483a65.tar.gz lwn-8ed7cb3f279fe67a93f407ee2ec3ea661a483a65.zip |
fuse: optional supplementary group in create requests
Permission to create an object (create, mkdir, symlink, mknod) needs to
take supplementary groups into account.
Add a supplementary group request extension. This can contain an arbitrary
number of group IDs and can be added to any request. This extension is not
added to any request by default.
Add FUSE_CREATE_SUPP_GROUP init flag to enable supplementary group info in
creation requests. This adds just a single supplementary group that
matches the parent group in the case described above. In other cases the
extension is not added.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index ac300f14aa2d..e13a8eff2e3d 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -783,6 +783,9 @@ struct fuse_conn { /* Initialize security xattrs when creating a new inode */ unsigned int init_security:1; + /* Add supplementary group info when creating a new inode */ + unsigned int create_supp_group:1; + /* Does the filesystem support per inode DAX? */ unsigned int inode_dax:1; |