From: Jeimon Date: Sat, 8 May 2021 03:52:30 +0000 (+0800) Subject: net/nfc/rawsock.c: fix a permission check bug X-Git-Tag: accepted/tizen/unified/20230118.172025~7163^2~92 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ab78863e9eff11910e1ac8bcf478060c29b379e;p=platform%2Fkernel%2Flinux-rpi.git net/nfc/rawsock.c: fix a permission check bug 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 Signed-off-by: David S. Miller --- diff --git a/net/nfc/rawsock.c b/net/nfc/rawsock.c index 9c7eb84..5f1d438 100644 --- a/net/nfc/rawsock.c +++ b/net/nfc/rawsock.c @@ -329,7 +329,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 {