mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
ext4: fix fencepost error in check for inode count overflow during resize
commit4f2f76f751upstream. 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:3f8a6411fbReported-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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e236c837fb
commit
a96a0ca18e
@@ -1933,7 +1933,7 @@ retry:
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
n_group = ext4_get_group_number(sb, n_blocks_count - 1);
|
n_group = ext4_get_group_number(sb, n_blocks_count - 1);
|
||||||
if (n_group > (0xFFFFFFFFUL / EXT4_INODES_PER_GROUP(sb))) {
|
if (n_group >= (0xFFFFFFFFUL / EXT4_INODES_PER_GROUP(sb))) {
|
||||||
ext4_warning(sb, "resize would cause inodes_count overflow");
|
ext4_warning(sb, "resize would cause inodes_count overflow");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user