]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: fix unjournaled inode bitmap modification
authorEric Sandeen <sandeen@redhat.com>
Mon, 29 Oct 2012 02:24:57 +0000 (22:24 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 29 Oct 2012 02:24:57 +0000 (22:24 -0400)
commiteeafd093e645a087311344058bc1d47d5e134345
treeb4e444479eada05eb93c3f1b2099a018c5aef116
parent47e9b4f8d477fa4aee4b58e1afe93ce35e1d294e
ext4: fix unjournaled inode bitmap modification

commit a7a46612b29bf3bc570014186826a8bab321ae7f changed
ext4_new_inode() such that the inode bitmap was being modified
outside a transaction, which could lead to corruption, and was
discovered when journal_checksum found a bad checksum in the
journal during log replay.

Nix ran into this when using the journal_async_commit mount
option, which enables journal checksumming.  The ensuing
journal replay failures due to the bad checksums led to
filesystem corruption reported as the now infamous
"Apparent serious progressive ext4 data corruption bug"

[ Changed by tytso to only call ext4_journal_get_write_access() only
  when we're fairly certain that we're going to allocate the inode. ]

I've tested this by mounting with journal_checksum and
running fsstress then dropping power; I've also tested by
hacking DM to create snapshots w/o first quiescing, which
allows me to test journal replay repeatedly w/o actually
power-cycling the box.  Without the patch I hit a journal
checksum error every time.  With this fix it survives
many iterations.

Reported-by: Nix <nix@esperi.org.uk>
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: stable@vger.kernel.org
fs/ext4/ialloc.c