mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
fs: jfs: fix shift-out-of-bounds in dbDiscardAG
This should be applied to most URSAN bugs found recently by syzbot, by guarding the dbMount. As syzbot feeding rubbish into the bmap descriptor. Signed-off-by: Hoi Pok Wu <wuhoipok@gmail.com> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
This commit is contained in:
parent
ebe060369f
commit
25e70c6162
1 changed files with 5 additions and 0 deletions
|
@ -198,6 +198,11 @@ int dbMount(struct inode *ipbmap)
|
|||
goto err_release_metapage;
|
||||
}
|
||||
|
||||
if (((bmp->db_mapsize - 1) >> bmp->db_agl2size) > MAXAG) {
|
||||
err = -EINVAL;
|
||||
goto err_release_metapage;
|
||||
}
|
||||
|
||||
for (i = 0; i < MAXAG; i++)
|
||||
bmp->db_agfree[i] = le64_to_cpu(dbmp_le->dn_agfree[i]);
|
||||
bmp->db_agsize = le64_to_cpu(dbmp_le->dn_agsize);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue