aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/acl.c
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2016-09-19 11:39:09 -0400
committerJan Kara <jack@suse.cz>2016-09-22 04:55:32 -0400
commit073931017b49d9458aa351605b43a7e34598caef (patch)
tree8c4374e82e5cad92bdb589e5be417f1a94870399 /fs/f2fs/acl.c
parent5d3ddd84eaefffd23c028bce5610dac8726f71c1 (diff)
posix_acl: Clear SGID bit when setting file permissions
When file permissions are modified via chmod(2) and the user is not in the owning group or capable of CAP_FSETID, the setgid bit is cleared in inode_change_ok(). Setting a POSIX ACL via setxattr(2) sets the file permissions as well as the new ACL, but doesn't clear the setgid bit in a similar way; this allows to bypass the check in chmod(2). Fix that. References: CVE-2016-7097 Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/f2fs/acl.c')
-rw-r--r--fs/f2fs/acl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c
index 4dcc9e28dc5c..31344247ce89 100644
--- a/fs/f2fs/acl.c
+++ b/fs/f2fs/acl.c
@@ -210,12 +210,10 @@ static int __f2fs_set_acl(struct inode *inode, int type,
210 case ACL_TYPE_ACCESS: 210 case ACL_TYPE_ACCESS:
211 name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS; 211 name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS;
212 if (acl) { 212 if (acl) {
213 error = posix_acl_equiv_mode(acl, &inode->i_mode); 213 error = posix_acl_update_mode(inode, &inode->i_mode, &acl);
214 if (error < 0) 214 if (error)
215 return error; 215 return error;
216 set_acl_inode(inode, inode->i_mode); 216 set_acl_inode(inode, inode->i_mode);
217 if (error == 0)
218 acl = NULL;
219 } 217 }
220 break; 218 break;
221 219