mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
ieee802154: enforce CAP_NET_RAW for raw sockets
[ Upstream commit e69dbd4619 ]
When creating a raw AF_IEEE802154 socket, CAP_NET_RAW needs to be
checked first.
Signed-off-by: Ori Nimron <orinimron123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6f0f18e532
commit
dd651ab7a1
@@ -1018,6 +1018,9 @@ static int ieee802154_create(struct net *net, struct socket *sock,
|
||||
|
||||
switch (sock->type) {
|
||||
case SOCK_RAW:
|
||||
rc = -EPERM;
|
||||
if (!capable(CAP_NET_RAW))
|
||||
goto out;
|
||||
proto = &ieee802154_raw_prot;
|
||||
ops = &ieee802154_raw_ops;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user