summaryrefslogtreecommitdiff
path: root/net/nfc
diff options
context:
space:
mode:
authorJeimon <jjjinmeng.zhou@gmail.com>2021-05-08 11:52:30 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-06-16 11:59:33 +0200
commitf3ed12af6bbbaf79eddb0ae14656b8ecacea74f0 (patch)
tree6db0cee9ac6a06abd035086ef41383a5dfd8efc1 /net/nfc
parent3e7c190475d98099231ee8ae486d31b1e2e7535a (diff)
net/nfc/rawsock.c: fix a permission check bug
[ Upstream commit 8ab78863e9eff11910e1ac8bcf478060c29b379e ] The function rawsock_create() calls a privileged function sk_alloc(), which requires a ns-aware check to check net->user_ns, i.e., ns_capable(). However, the original code checks the init_user_ns using capable(). So we replace the capable() with ns_capable(). Signed-off-by: Jeimon <jjjinmeng.zhou@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/nfc')
-rw-r--r--net/nfc/rawsock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nfc/rawsock.c b/net/nfc/rawsock.c
index 23d5e56306a4..8d649f4aee79 100644
--- a/net/nfc/rawsock.c
+++ b/net/nfc/rawsock.c
@@ -333,7 +333,7 @@ static int rawsock_create(struct net *net, struct socket *sock,
return -ESOCKTNOSUPPORT;
if (sock->type == SOCK_RAW) {
- if (!capable(CAP_NET_RAW))
+ if (!ns_capable(net->user_ns, CAP_NET_RAW))
return -EPERM;
sock->ops = &rawsock_raw_ops;
} else {