mirror of
https://gitee.com/bianbu-linux/linux-6.6-fh
synced 2025-04-25 04:17:06 -04:00
jfs: fix shift-out-of-bounds in dbJoin
[ Upstream commit cca974daeb6c43ea971f8ceff5a7080d7d49ee30 ] Currently while joining the leaf in a buddy system there is shift out of bound error in calculation of BUDSIZE. Added the required check to the BUDSIZE and fixed the documentation as well. Reported-by: syzbot+411debe54d318eaed386@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=411debe54d318eaed386 Signed-off-by: Manas Ghandat <ghandatmanas@gmail.com> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3999d26986
commit
0b24b79410
1 changed files with 7 additions and 1 deletions
|
@ -2763,7 +2763,9 @@ static int dbBackSplit(dmtree_t *tp, int leafno, bool is_ctl)
|
||||||
* leafno - the number of the leaf to be updated.
|
* leafno - the number of the leaf to be updated.
|
||||||
* newval - the new value for the leaf.
|
* newval - the new value for the leaf.
|
||||||
*
|
*
|
||||||
* RETURN VALUES: none
|
* RETURN VALUES:
|
||||||
|
* 0 - success
|
||||||
|
* -EIO - i/o error
|
||||||
*/
|
*/
|
||||||
static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl)
|
static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl)
|
||||||
{
|
{
|
||||||
|
@ -2790,6 +2792,10 @@ static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl)
|
||||||
* get the buddy size (number of words covered) of
|
* get the buddy size (number of words covered) of
|
||||||
* the new value.
|
* the new value.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if ((newval - tp->dmt_budmin) > BUDMIN)
|
||||||
|
return -EIO;
|
||||||
|
|
||||||
budsz = BUDSIZE(newval, tp->dmt_budmin);
|
budsz = BUDSIZE(newval, tp->dmt_budmin);
|
||||||
|
|
||||||
/* try to join.
|
/* try to join.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue