]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ext4: mark inode dirty after converting inline directory
authorEric Biggers <ebiggers@google.com>
Wed, 15 Mar 2017 18:52:02 +0000 (14:52 -0400)
committerWilly Tarreau <w@1wt.eu>
Wed, 7 Jun 2017 22:47:05 +0000 (00:47 +0200)
commit3f102dc505e05b1b0944a94faab788c82d0aa01c
tree839c4ea28f3e2bc0b57cda3ae020f83389e368d0
parente32d76a4d5e7d4fe3bf50c248a16163a5d1847c4
ext4: mark inode dirty after converting inline directory

commit b9cf625d6ecde0d372e23ae022feead72b4228a6 upstream.

If ext4_convert_inline_data() was called on a directory with inline
data, the filesystem was left in an inconsistent state (as considered by
e2fsck) because the file size was not increased to cover the new block.
This happened because the inode was not marked dirty after i_disksize
was updated.  Fix this by marking the inode dirty at the end of
ext4_finish_convert_inline_dir().

This bug was probably not noticed before because most users mark the
inode dirty afterwards for other reasons.  But if userspace executed
FS_IOC_SET_ENCRYPTION_POLICY with invalid parameters, as exercised by
'kvm-xfstests -c adv generic/396', then the inode was never marked dirty
after updating i_disksize.

Fixes: 3c47d54170b6a678875566b1b8d6dcf57904e49b
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Willy Tarreau <w@1wt.eu>
fs/ext4/inline.c