]> git.ipfire.org Git - thirdparty/linux.git/commit
jfs: Fix shift-out-of-bounds in dbDiscardAG
authorPei Li <peili.dev@gmail.com>
Tue, 25 Jun 2024 16:42:05 +0000 (09:42 -0700)
committerDave Kleikamp <dave.kleikamp@oracle.com>
Wed, 26 Jun 2024 17:57:32 +0000 (12:57 -0500)
commit7063b80268e2593e58bee8a8d709c2f3ff93e2f2
tree65e7d5757a64c1997eb1b340444d14622f9fa69d
parentf73f969b2eb39ad8056f6c7f3a295fa2f85e313a
jfs: Fix shift-out-of-bounds in dbDiscardAG

When searching for the next smaller log2 block, BLKSTOL2() returned 0,
causing shift exponent -1 to be negative.

This patch fixes the issue by exiting the loop directly when negative
shift is found.

Reported-by: syzbot+61be3359d2ee3467e7e4@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=61be3359d2ee3467e7e4
Signed-off-by: Pei Li <peili.dev@gmail.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
fs/jfs/jfs_dmap.c