]> git.baikalelectronics.ru Git - kernel.git/commit
net: xfrm: fix shift-out-of-bounds in xfrm_get_default
authorPavel Skripkin <paskripkin@gmail.com>
Thu, 2 Sep 2021 19:04:00 +0000 (22:04 +0300)
committerSteffen Klassert <steffen.klassert@secunet.com>
Thu, 9 Sep 2021 10:12:17 +0000 (12:12 +0200)
commitf5c8254fe299c04d15483c145720985e2a857f26
tree7af23af0a5764faae0f99988c410e224cbaf44dc
parent439c0bb3a0e601c5110c12449eb3a4c0357edc4e
net: xfrm: fix shift-out-of-bounds in xfrm_get_default

Syzbot hit shift-out-of-bounds in xfrm_get_default. The problem was in
missing validation check for user data.

up->dirmask comes from user-space, so we need to check if this value
is less than XFRM_USERPOLICY_DIRMASK_MAX to avoid shift-out-of-bounds bugs.

Fixes: 2623135c3771 ("xfrm: Add possibility to set the default to block if we have no policy")
Reported-and-tested-by: syzbot+b2be9dd8ca6f6c73ee2d@syzkaller.appspotmail.com
Signed-off-by: Pavel Skripkin <paskripkin@gmail.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
net/xfrm/xfrm_user.c