From: Dmitry Safonov Date: Fri, 27 Jul 2018 15:54:44 +0000 (+0100) Subject: netlink: Do not subscribe to non-existent groups X-Git-Tag: v4.14.60~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e208cda5f10e131f149e59d7de4ceb943382f4c6;p=platform%2Fkernel%2Flinux-exynos.git netlink: Do not subscribe to non-existent groups [ Upstream commit 7acf9d4237c46894e0fa0492dd96314a41742e84 ] Make ABI more strict about subscribing to group > ngroups. Code doesn't check for that and it looks bogus. (one can subscribe to non-existing group) Still, it's possible to bind() to all possible groups with (-1) Cc: "David S. Miller" Cc: Herbert Xu Cc: Steffen Klassert Cc: netdev@vger.kernel.org Signed-off-by: Dmitry Safonov Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index b3932846f6c4..143d9001e87d 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -976,6 +976,7 @@ static int netlink_bind(struct socket *sock, struct sockaddr *addr, if (err) return err; } + groups &= (1UL << nlk->ngroups) - 1; bound = nlk->bound; if (bound) {