diff options
author | Jan Kara <jack@suse.cz> | 2016-09-19 11:39:09 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2016-09-22 04:55:32 -0400 |
commit | 073931017b49d9458aa351605b43a7e34598caef (patch) | |
tree | 8c4374e82e5cad92bdb589e5be417f1a94870399 /fs/jffs2/acl.c | |
parent | 5d3ddd84eaefffd23c028bce5610dac8726f71c1 (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/jffs2/acl.c')
-rw-r--r-- | fs/jffs2/acl.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/jffs2/acl.c b/fs/jffs2/acl.c index bc2693d56298..2a0f2a1044c1 100644 --- a/fs/jffs2/acl.c +++ b/fs/jffs2/acl.c | |||
@@ -233,9 +233,10 @@ int jffs2_set_acl(struct inode *inode, struct posix_acl *acl, int type) | |||
233 | case ACL_TYPE_ACCESS: | 233 | case ACL_TYPE_ACCESS: |
234 | xprefix = JFFS2_XPREFIX_ACL_ACCESS; | 234 | xprefix = JFFS2_XPREFIX_ACL_ACCESS; |
235 | if (acl) { | 235 | if (acl) { |
236 | umode_t mode = inode->i_mode; | 236 | umode_t mode; |
237 | rc = posix_acl_equiv_mode(acl, &mode); | 237 | |
238 | if (rc < 0) | 238 | rc = posix_acl_update_mode(inode, &mode, &acl); |
239 | if (rc) | ||
239 | return rc; | 240 | return rc; |
240 | if (inode->i_mode != mode) { | 241 | if (inode->i_mode != mode) { |
241 | struct iattr attr; | 242 | struct iattr attr; |
@@ -247,8 +248,6 @@ int jffs2_set_acl(struct inode *inode, struct posix_acl *acl, int type) | |||
247 | if (rc < 0) | 248 | if (rc < 0) |
248 | return rc; | 249 | return rc; |
249 | } | 250 | } |
250 | if (rc == 0) | ||
251 | acl = NULL; | ||
252 | } | 251 | } |
253 | break; | 252 | break; |
254 | case ACL_TYPE_DEFAULT: | 253 | case ACL_TYPE_DEFAULT: |