mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
netlink: make sure nladdr has correct size in netlink_connect()
[ Upstream commit7880287981] KMSAN reports use of uninitialized memory in the case when |alen| is smaller than sizeof(struct sockaddr_nl), and therefore |nladdr| isn't fully copied from the userspace. Signed-off-by: Alexander Potapenko <glider@google.com> Fixes:1da177e4c3("Linux-2.6.12-rc2") Reviewed-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bd01e762a3
commit
bbced83a1b
|
|
@ -1054,6 +1054,9 @@ static int netlink_connect(struct socket *sock, struct sockaddr *addr,
|
|||
if (addr->sa_family != AF_NETLINK)
|
||||
return -EINVAL;
|
||||
|
||||
if (alen < sizeof(struct sockaddr_nl))
|
||||
return -EINVAL;
|
||||
|
||||
if ((nladdr->nl_groups || nladdr->nl_pid) &&
|
||||
!netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
|
||||
return -EPERM;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user