]> git.baikalelectronics.ru Git - kernel.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)
commit63573328d9e69daaff392985178249cbc5766d0a
tree0afe6371fd903b406173b8b5977cb47b9f59f09c
parente0c8b57bd7a02ccf1cc94504a9816fae778ad393
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