]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: remove unneeded file_remove_suid() from ext4_ioctl()
authorTheodore Ts'o <tytso@mit.edu>
Wed, 21 Dec 2011 19:14:31 +0000 (14:14 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 21 Dec 2011 19:14:31 +0000 (14:14 -0500)
commit2be6e777cb4d261dfac4aabd6951c75664f0bec0
tree1202eac61dc5a04027228f375d24cf025ed6b47d
parent7536233affc76ef0f3756d205b0ee4256120dd0e
ext4: remove unneeded file_remove_suid() from ext4_ioctl()

In the code to support EXT4_IOC_MOVE_EXT, ext4_ioctl calls
file_remove_suid() after the call to ext4_move_extents() if any
extents has been moved.  There are at least three things wrong with
this.  First, file_remove_suid() should be called with i_mutex down,
which is not here.  Second, it should be called before the donor file
has been modified, to avoid a potential race condition.  Third, and
most importantly, it's pointless, because ext4_file_extents() already
checks if the donor file has the setuid or setgid bit set, and will
return an error in that case.  So the first two objections don't
really matter, since file_remove_suid() will never need to modify the
inode in any case.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/ioctl.c