diff mbox series

net/bluetooth/bnep/sock.c: add CAP_NET_RAW check.

Message ID 20200818080703.GA31526@oppo
State Awaiting Upstream
Delegated to: David Miller
Headers show
Series net/bluetooth/bnep/sock.c: add CAP_NET_RAW check. | expand

Commit Message

Qingyu Li Aug. 18, 2020, 8:07 a.m. UTC
When creating a raw PF_BLUETOOTH socket,
CAP_NET_RAW needs to be checked first.

Signed-off-by: Qingyu Li <ieatmuttonchuan@gmail.com>
---
 net/bluetooth/bnep/sock.c | 3 +++
 1 file changed, 3 insertions(+)

--
2.17.1

Comments

Jesse Brandeburg Aug. 18, 2020, 6:29 p.m. UTC | #1
On Tue, 18 Aug 2020 16:07:03 +0800
Qingyu Li <ieatmuttonchuan@gmail.com> wrote:

> When creating a raw PF_BLUETOOTH socket,
> CAP_NET_RAW needs to be checked first.
> 

These changes should be part of a series (patch 0,1,2 at least), and all
my replies on your other patch apply to this one as well.
diff mbox series

Patch

diff --git a/net/bluetooth/bnep/sock.c b/net/bluetooth/bnep/sock.c
index d515571b2afb..e06787a3b5ce 100644
--- a/net/bluetooth/bnep/sock.c
+++ b/net/bluetooth/bnep/sock.c
@@ -204,6 +204,9 @@  static int bnep_sock_create(struct net *net, struct socket *sock, int protocol,
 	if (sock->type != SOCK_RAW)
 		return -ESOCKTNOSUPPORT;

+	if (!capable(CAP_NET_RAW))
+		return -EPERM;
+
 	sk = sk_alloc(net, PF_BLUETOOTH, GFP_ATOMIC, &bnep_proto, kern);
 	if (!sk)
 		return -ENOMEM;