]> git.baikalelectronics.ru Git - kernel.git/commit
netlink: Don't shift with UB on nlk->ngroups
authorDmitry Safonov <dima@arista.com>
Mon, 30 Jul 2018 17:32:36 +0000 (18:32 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 30 Jul 2018 19:42:22 +0000 (12:42 -0700)
commit2b03f21530ab90724f2bb9931f7d3e91abb304f2
tree14625a2389a9357a44870604c3bff5f80ee3edcd
parentb4ac2acfa0275f56292e8e848d748a903b7f6505
netlink: Don't shift with UB on nlk->ngroups

On i386 nlk->ngroups might be 32 or 0. Which leads to UB, resulting in
hang during boot.
Check for 0 ngroups and use (unsigned long long) as a type to shift.

Fixes: 91443078896f ("netlink: Do not subscribe to non-existent groups").
Reported-by: kernel test robot <rong.a.chen@intel.com>
Signed-off-by: Dmitry Safonov <dima@arista.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netlink/af_netlink.c