diff options
author | Daeho Jeong <daeho.jeong@samsung.com> | 2016-09-05 22:56:10 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-09-05 22:56:10 -0400 |
commit | 93e3b4e6631d2a74a8cf7429138096862ff9f452 (patch) | |
tree | 722cba8354e1cdae0752583a9b23e820d500b159 /fs/ext4 | |
parent | 8913f343cdb568222c95afe3cad78aee1a4df56b (diff) |
ext4: reinforce check of i_dtime when clearing high fields of uid and gid
Now, ext4_do_update_inode() clears high 16-bit fields of uid/gid
of deleted and evicted inode to fix up interoperability with old
kernels. However, it checks only i_dtime of an inode to determine
whether the inode was deleted and evicted, and this is very risky,
because i_dtime can be used for the pointer maintaining orphan inode
list, too. We need to further check whether the i_dtime is being
used for the orphan inode list even if the i_dtime is not NULL.
We found that high 16-bit fields of uid/gid of inode are unintentionally
and permanently cleared when the inode truncation is just triggered,
but not finished, and the inode metadata, whose high uid/gid bits are
cleared, is written on disk, and the sudden power-off follows that
in order.
Cc: stable@vger.kernel.org
Signed-off-by: Daeho Jeong <daeho.jeong@samsung.com>
Signed-off-by: Hobin Woo <hobin.woo@samsung.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/inode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index c6ea25a190f8..15d4b4182ac7 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -4814,14 +4814,14 @@ static int ext4_do_update_inode(handle_t *handle, | |||
4814 | * Fix up interoperability with old kernels. Otherwise, old inodes get | 4814 | * Fix up interoperability with old kernels. Otherwise, old inodes get |
4815 | * re-used with the upper 16 bits of the uid/gid intact | 4815 | * re-used with the upper 16 bits of the uid/gid intact |
4816 | */ | 4816 | */ |
4817 | if (!ei->i_dtime) { | 4817 | if (ei->i_dtime && list_empty(&ei->i_orphan)) { |
4818 | raw_inode->i_uid_high = 0; | ||
4819 | raw_inode->i_gid_high = 0; | ||
4820 | } else { | ||
4818 | raw_inode->i_uid_high = | 4821 | raw_inode->i_uid_high = |
4819 | cpu_to_le16(high_16_bits(i_uid)); | 4822 | cpu_to_le16(high_16_bits(i_uid)); |
4820 | raw_inode->i_gid_high = | 4823 | raw_inode->i_gid_high = |
4821 | cpu_to_le16(high_16_bits(i_gid)); | 4824 | cpu_to_le16(high_16_bits(i_gid)); |
4822 | } else { | ||
4823 | raw_inode->i_uid_high = 0; | ||
4824 | raw_inode->i_gid_high = 0; | ||
4825 | } | 4825 | } |
4826 | } else { | 4826 | } else { |
4827 | raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); | 4827 | raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); |