]> git.baikalelectronics.ru Git - kernel.git/commit
net: Fix permission check in netlink_connect()
authorMike Pecovnik <mike.pecovnik@gmail.com>
Mon, 24 Feb 2014 20:11:16 +0000 (21:11 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Feb 2014 23:35:14 +0000 (18:35 -0500)
commita38c68b67337839625f6c9190579cc716a021474
tree916be8a6ddfe6d2c6cdccb93d6c752927c16854b
parent47ca3c32cf7fcb566ed9598a5d87c4a541d4b4e8
net: Fix permission check in netlink_connect()

netlink_sendmsg() was changed to prevent non-root processes from sending
messages with dst_pid != 0.
netlink_connect() however still only checks if nladdr->nl_groups is set.
This patch modifies netlink_connect() to check for the same condition.

Signed-off-by: Mike Pecovnik <mike.pecovnik@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netlink/af_netlink.c