Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP4:Update
xfsprogs.34579
xfsprogs-mkfs-don-t-trample-the-gid-set-in-the-...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File xfsprogs-mkfs-don-t-trample-the-gid-set-in-the-protofile.patch of Package xfsprogs.34579
From 79511c6abf13b0ee11050867c817841aaeaa154a Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" <djwong@kernel.org> Date: Tue, 17 May 2022 22:48:13 -0400 Subject: [PATCH] mkfs: don't trample the gid set in the protofile Git-commit: 79511c6abf13b0ee11050867c817841aaeaa154a Patch-mainline: v5.18.0-rc1 References: bsc#1205266 Catherine's recent changes to xfs/019 exposed a bug in how libxfs handles setgid bits. mkfs reads the desired gid in from the protofile, but if the parent directory is setgid, it will override the user's setting and (re)set the child's gid to the parent's gid. Overriding user settings is (probably) not the desired mode of operation, so create a flag to struct cred to force the gid in the protofile. It looks like this has been broken since ~2005. Cc: Catherine Hoang <catherine.hoang@oracle.com> Fixes: 9f064b7e ("Provide mkfs options to easily exercise all inheritable attributes, esp. the extsize allocator hint. Merge of master-melb:xfs-cmds:24370a by kenmcd.") Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Catherine Hoang <catherine.hoang@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Acked-by: Anthony Iliopoulos <ailiop@suse.com> --- include/xfs_inode.h | 11 +++++++---- libxfs/util.c | 3 ++- mkfs/proto.c | 3 ++- 3 files changed, 11 insertions(+), 6 deletions(-) Index: xfsprogs-5.13.0/include/xfs_inode.h =================================================================== --- xfsprogs-5.13.0.orig/include/xfs_inode.h +++ xfsprogs-5.13.0/include/xfs_inode.h @@ -163,10 +163,13 @@ static inline bool xfs_inode_has_bigtime return ip->i_diflags2 & XFS_DIFLAG2_BIGTIME; } -typedef struct cred { - uid_t cr_uid; - gid_t cr_gid; -} cred_t; +/* Always set the child's GID to this value, even if the parent is setgid. */ +#define CRED_FORCE_GID (1U << 0) +struct cred { + uid_t cr_uid; + gid_t cr_gid; + unsigned int cr_flags; +}; extern int libxfs_dir_ialloc (struct xfs_trans **, struct xfs_inode *, mode_t, nlink_t, xfs_dev_t, struct cred *, Index: xfsprogs-5.13.0/libxfs/util.c =================================================================== --- xfsprogs-5.13.0.orig/libxfs/util.c +++ xfsprogs-5.13.0/libxfs/util.c @@ -271,7 +271,8 @@ libxfs_init_new_inode( xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG | XFS_ICHGTIME_MOD); if (pip && (VFS_I(pip)->i_mode & S_ISGID)) { - VFS_I(ip)->i_gid = VFS_I(pip)->i_gid; + if (!(cr->cr_flags & CRED_FORCE_GID)) + VFS_I(ip)->i_gid = VFS_I(pip)->i_gid; if ((VFS_I(pip)->i_mode & S_ISGID) && (mode & S_IFMT) == S_IFDIR) VFS_I(ip)->i_mode |= S_ISGID; } Index: xfsprogs-5.13.0/mkfs/proto.c =================================================================== --- xfsprogs-5.13.0.orig/mkfs/proto.c +++ xfsprogs-5.13.0/mkfs/proto.c @@ -377,7 +377,7 @@ parseproto( xfs_trans_t *tp; int val; int isroot = 0; - cred_t creds; + struct cred creds; char *value; struct xfs_name xname; @@ -445,6 +445,7 @@ parseproto( mode |= val; creds.cr_uid = (int)getnum(getstr(pp), 0, 0, false); creds.cr_gid = (int)getnum(getstr(pp), 0, 0, false); + creds.cr_flags = CRED_FORCE_GID; xname.name = (unsigned char *)name; xname.len = name ? strlen(name) : 0; xname.type = 0;
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor