]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commit
resize2fs: update checksums in the extent tree's relocated block
authorTheodore Ts'o <tytso@mit.edu>
Sat, 20 Oct 2018 13:14:48 +0000 (09:14 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 20 Oct 2018 14:11:06 +0000 (10:11 -0400)
commit4b3038134baf81c6f9bd36dbbf565ea66e46331f
treeffeb31c6146b53136e624b5e8efadfbb9027d99a
parent4dda2315104c4f6abc0cd6e3284fef32b7b59d2c
resize2fs: update checksums in the extent tree's relocated block

When shrinking an file system, and we need to relocate an inode, the
checksums in its extent tree must get updated to reflect its new inode
number.  When doing this, we need to do this *after* we update the
extent tree to reflect any blocks which need to be relocated due to
the file system shrink operation.

Otherwise, in the case where only an interior node of the extent tree
needs to get relocated, and none of the entries in that node need to
be adjusted, the checksum for that interior node is updated in the old
copy of that block, and then after the extent tree is updated to use
the new copy of that interior node, the extent tree is left with an
invalid checksum.

This is a relatively rare case, since it requires the following
conditions to be true:

*)  The metadata checksum feature must be enabled.
*)  An inode needs to be relocated.
*)  The inode needs to have an interior node.
*)  The block for that interior node needs to be relocated.
*)  None of blocks addressed by entries in that interior node needs
    to be relocated.

When all of these conditions are true, though, the file system is left
with corrupted with bad checksum for the extent tree block.

Addresses-Launchpad-Bug: 1798562

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reported-by: Jean-Baptiste Lallement <jean-baptiste.lallement@ubuntu.com>
resize/resize2fs.c