ext3: preserve i_mode if ext2_set_acl() fails
commitff8c7374e5b333918bed10a85eba73c39989843d
authorBen Hutchings <ben@decadent.org.uk>
Sun, 8 Oct 2017 13:48:44 +0000 (8 14:48 +0100)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 12 Oct 2017 14:28:07 +0000 (12 15:28 +0100)
tree54efc716109543aa387ce96bb0ef083ddb26d009
parentf651969ce7668b24cdeffb5a1e73fc7d2ef382ef
ext3: preserve i_mode if ext2_set_acl() fails

Based on Ernesto A. Fernández's fix for ext2 (commit fe26569eb919), from
which the following description is taken:

> When changing a file's acl mask, ext2_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.

Cc: Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
Cc: Jan Kara <jack@suse.cz>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/ext3/acl.c