diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2014-04-23 14:26:56 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-06-26 15:15:38 -0400 |
commit | 2eeb40639c9aa350f67a612c3b9fdeaead3ceb81 (patch) | |
tree | 36f504b5caca6feb8440c4c3e97e8b1165892d6f /include | |
parent | 286a056788f863a2abe103a0efa46f6c412eb850 (diff) | |
download | lwn-2eeb40639c9aa350f67a612c3b9fdeaead3ceb81.tar.gz lwn-2eeb40639c9aa350f67a612c3b9fdeaead3ceb81.zip |
net: Add variants of capable for use on on sockets
[ Upstream commit a3b299da869d6e78cf42ae0b1b41797bcb8c5e4b ]
sk_net_capable - The common case, operations that are safe in a network namespace.
sk_capable - Operations that are not known to be safe in a network namespace
sk_ns_capable - The general case for special cases.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/sock.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index b9586a137cad..57c31dd15e64 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -2278,6 +2278,11 @@ int sock_get_timestampns(struct sock *, struct timespec __user *); int sock_recv_errqueue(struct sock *sk, struct msghdr *msg, int len, int level, int type); +bool sk_ns_capable(const struct sock *sk, + struct user_namespace *user_ns, int cap); +bool sk_capable(const struct sock *sk, int cap); +bool sk_net_capable(const struct sock *sk, int cap); + /* * Enable debug/info messages */ |