kernel_samsung_a53x/fs/ext4
Maximilian Heyne 32529f365f ext4: fix corruption during on-line resize
[ Upstream commit a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc ]

We observed a corruption during on-line resize of a file system that is
larger than 16 TiB with 4k block size. With having more then 2^32 blocks
resize_inode is turned off by default by mke2fs. The issue can be
reproduced on a smaller file system for convenience by explicitly
turning off resize_inode. An on-line resize across an 8 GiB boundary (the
size of a meta block group in this setup) then leads to a corruption:

  dev=/dev/<some_dev> # should be >= 16 GiB
  mkdir -p /corruption
  /sbin/mke2fs -t ext4 -b 4096 -O ^resize_inode $dev $((2 * 2**21 - 2**15))
  mount -t ext4 $dev /corruption

  dd if=/dev/zero bs=4096 of=/corruption/test count=$((2*2**21 - 4*2**15))
  sha1sum /corruption/test
  # 79d2658b39dcfd77274e435b0934028adafaab11  /corruption/test

  /sbin/resize2fs $dev $((2*2**21))
  # drop page cache to force reload the block from disk
  echo 1 > /proc/sys/vm/drop_caches

  sha1sum /corruption/test
  # 3c2abc63cbf1a94c9e6977e0fbd72cd832c4d5c3  /corruption/test

2^21 = 2^15*2^6 equals 8 GiB whereof 2^15 is the number of blocks per
block group and 2^6 are the number of block groups that make a meta
block group.

The last checksum might be different depending on how the file is laid
out across the physical blocks. The actual corruption occurs at physical
block 63*2^15 = 2064384 which would be the location of the backup of the
meta block group's block descriptor. During the on-line resize the file
system will be converted to meta_bg starting at s_first_meta_bg which is
2 in the example - meaning all block groups after 16 GiB. However, in
ext4_flex_group_add we might add block groups that are not part of the
first meta block group yet. In the reproducer we achieved this by
substracting the size of a whole block group from the point where the
meta block group would start. This must be considered when updating the
backup block group descriptors to follow the non-meta_bg layout. The fix
is to add a test whether the group to add is already part of the meta
block group or not.

Fixes: 01f795f9e0d67 ("ext4: add online resizing support for meta_bg and 64-bit file systems")
Cc:  <stable@vger.kernel.org>
Signed-off-by: Maximilian Heyne <mheyne@amazon.de>
Tested-by: Srivathsa Dara <srivathsa.d.dara@oracle.com>
Reviewed-by: Srivathsa Dara <srivathsa.d.dara@oracle.com>
Link: https://lore.kernel.org/r/20240215155009.94493-1-mheyne@amazon.de
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-11-19 09:22:34 +01:00
..
acl.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
acl.h ext4: apply umask if ACL support is disabled 2024-11-18 11:43:31 +01:00
balloc.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitmap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
block_validity.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dir.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ext4.h ext4: Add no_sehash_xattr mount option 2024-11-17 17:43:35 +01:00
ext4_extents.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ext4_jbd2.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ext4_jbd2.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
extents.c ext4: make ext4_es_insert_extent() return void 2024-11-18 23:19:51 +01:00
extents_status.c ext4: make ext4_es_insert_extent() return void 2024-11-18 23:19:51 +01:00
extents_status.h ext4: make ext4_es_insert_extent() return void 2024-11-18 23:19:51 +01:00
fast_commit.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fast_commit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
file.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsmap.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsmap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsync.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hash.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ialloc.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
indirect.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inline.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inode-test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inode.c ext4: convert to exclusive lock while inserting delalloc extents 2024-11-18 23:19:52 +01:00
ioctl.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Makefile Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mballoc.c ext4: correct best extent lstart adjustment logic 2024-11-19 09:22:15 +01:00
mballoc.h ext4: add two helper functions extent_logical_end() and pa_logical_end() 2024-11-18 10:58:45 +01:00
migrate.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmp.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
move_extent.c ext4: fix double-free of blocks due to wrong extents moved_len 2024-11-18 12:13:30 +01:00
namei.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page-io.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
readpage.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
resize.c ext4: fix corruption during on-line resize 2024-11-19 09:22:34 +01:00
super.c ext4: Add no_sehash_xattr mount option 2024-11-17 17:43:35 +01:00
symlink.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sysfs.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
truncate.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
verity.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xattr.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xattr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xattr_hurd.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xattr_security.c ext4: Add no_sehash_xattr mount option 2024-11-17 17:43:35 +01:00
xattr_trusted.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xattr_user.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00