net: netlink: cap max groups which will be considered in netlink_bind()
authorNikolay Aleksandrov <nikolay@cumulusnetworks.com>
Thu, 20 Feb 2020 14:42:13 +0000 (16:42 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 21 Feb 2020 00:02:08 +0000 (16:02 -0800)
commit3a20773beeeeadec41477a5ba872175b778ff752
treee6bf9989b00065892e06d785ceb4e198cdcbd914
parent971617c3b761c876d686a2188220a33898c90e99
net: netlink: cap max groups which will be considered in netlink_bind()

Since nl_groups is a u32 we can't bind more groups via ->bind
(netlink_bind) call, but netlink has supported more groups via
setsockopt() for a long time and thus nlk->ngroups could be over 32.
Recently I added support for per-vlan notifications and increased the
groups to 33 for NETLINK_ROUTE which exposed an old bug in the
netlink_bind() code causing out-of-bounds access on archs where unsigned
long is 32 bits via test_bit() on a local variable. Fix this by capping the
maximum groups in netlink_bind() to BITS_PER_TYPE(u32), effectively
capping them at 32 which is the minimum of allocated groups and the
maximum groups which can be bound via netlink_bind().

CC: Christophe Leroy <christophe.leroy@c-s.fr>
CC: Richard Guy Briggs <rgb@redhat.com>
Fixes: 4f520900522f ("netlink: have netlink per-protocol bind function return an error code.")
Reported-by: Erhard F. <erhard_f@mailbox.org>
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netlink/af_netlink.c