[PATCH 1/5] ax25: enforce CAP_NET_RAW for raw sockets
Tyler Hicks
tyhicks at canonical.com
Thu Oct 3 18:13:14 UTC 2019
From: Ori Nimron <orinimron123 at gmail.com>
When creating a raw AF_AX25 socket, CAP_NET_RAW needs to be checked
first.
Signed-off-by: Ori Nimron <orinimron123 at gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
Signed-off-by: David S. Miller <davem at davemloft.net>
CVE-2019-17052
(cherry picked from commit 0614e2b73768b502fc32a75349823356d98aae2c)
Signed-off-by: Tyler Hicks <tyhicks at canonical.com>
---
net/ax25/af_ax25.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/ax25/af_ax25.c b/net/ax25/af_ax25.c
index ca5207767dc2..bb222b882b67 100644
--- a/net/ax25/af_ax25.c
+++ b/net/ax25/af_ax25.c
@@ -855,6 +855,8 @@ static int ax25_create(struct net *net, struct socket *sock, int protocol,
break;
case SOCK_RAW:
+ if (!capable(CAP_NET_RAW))
+ return -EPERM;
break;
default:
return -ESOCKTNOSUPPORT;
--
2.17.1
More information about the kernel-team
mailing list