]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: fix fencepost error in check for inode count overflow during resize
authorJan Kara <jack@suse.cz>
Fri, 25 May 2018 16:51:25 +0000 (12:51 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 25 May 2018 16:51:25 +0000 (12:51 -0400)
commita4b4c6d1fa4b803a3bf95aab9acbc3c02de3bbaa
tree0b46191e9c1550811dbe0b02aa7818c04244d3bb
parent22656f1d9c6782de224afe44a126b390afeb759f
ext4: fix fencepost error in check for inode count overflow during resize

ext4_resize_fs() has an off-by-one bug when checking whether growing of
a filesystem will not overflow inode count. As a result it allows a
filesystem with 8192 inodes per group to grow to 64TB which overflows
inode count to 0 and makes filesystem unusable. Fix it.

Cc: stable@vger.kernel.org
Fixes: 02c6bfb3908c7c480055b2424c93fe4d21897bb3
Reported-by: Jaco Kroon <jaco@uls.co.za>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Andreas Dilger <adilger@dilger.ca>
fs/ext4/resize.c