]> asedeno.scripts.mit.edu Git - linux.git/commit
jfs: preserve i_mode if __jfs_set_acl() fails
authorErnesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
Wed, 12 Jul 2017 09:55:35 +0000 (06:55 -0300)
committerDave Kleikamp <dave.kleikamp@oracle.com>
Tue, 18 Jul 2017 19:28:06 +0000 (14:28 -0500)
commitf070e5ac9bc7de71c34402048ce5526dccbd347c
tree0afe6371fd903b406173b8b5977cb47b9f59f09c
parent9bcf66c72d726322441ec82962994e69157613e4
jfs: preserve i_mode if __jfs_set_acl() fails

When changing a file's acl mask, __jfs_set_acl() will first set the group
bits of i_mode to the value of the mask, and only then set the actual
extended attribute representing the new acl.

If the second part fails (due to lack of space, for example) and the file
had no acl attribute to begin with, the system will from now on assume
that the mask permission bits are actual group permission bits, potentially
granting access to the wrong users.

Prevent this by only changing the inode mode after the acl has been set.

Signed-off-by: Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
fs/jfs/acl.c