]> git.baikalelectronics.ru Git - kernel.git/commit
gfs2: Fix inode height consistency check
authorAndreas Gruenbacher <agruenba@redhat.com>
Mon, 27 Mar 2023 22:43:16 +0000 (00:43 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 30 May 2023 11:44:03 +0000 (12:44 +0100)
commitf97806e1db201b3d41a35cd8d38a08b41e284c53
treef22f70e30aa8a9f459f242217fe9c49bf8a82688
parent444031ab065f6439d69604f988fcf4a4e5eccd78
gfs2: Fix inode height consistency check

[ Upstream commit cfcdb5bad34f600aed7613c3c1a5e618111f77b7 ]

The maximum allowed height of an inode's metadata tree depends on the
filesystem block size; it is lower for bigger-block filesystems.  When
reading in an inode, make sure that the height doesn't exceed the
maximum allowed height.

Arrays like sd_heightsize are sized to be big enough for any filesystem
block size; they will often be slightly bigger than what's needed for a
specific filesystem.

Reported-by: syzbot+45d4691b1ed3c48eba05@syzkaller.appspotmail.com
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/gfs2/glops.c