ext4: fix inode checksum calculation problem if i_extra_size is small
authorDaeho Jeong <daeho.jeong@samsung.com>
Thu, 1 Dec 2016 16:49:12 +0000 (11:49 -0500)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Jun 2017 06:02:37 +0000 (08:02 +0200)
commitcd0d925440c191543502b5fa5cc6c6243e601aca
tree4ad5387e0a79fc3eb18ee969fb3267114e274109
parent48a5889bfdf956a7426df6c07f6eda8602e6a918
ext4: fix inode checksum calculation problem if i_extra_size is small

commit 05ac5aa18abd7db341e54df4ae2b4c98ea0e43b7 upstream.

We've fixed the race condition problem in calculating ext4 checksum
value in commit b47820edd163 ("ext4: avoid modifying checksum fields
directly during checksum veficationon"). However, by this change,
when calculating the checksum value of inode whose i_extra_size is
less than 4, we couldn't calculate the checksum value in a proper way.
This problem was found and reported by Nix, Thank you.

Reported-by: Nix <nix@esperi.org.uk>
Signed-off-by: Daeho Jeong <daeho.jeong@samsung.com>
Signed-off-by: Youngjin Gil <youngjin.gil@samsung.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Willy Tarreau <w@1wt.eu>
fs/ext4/inode.c