diff options
author | Andrey Vagin <avagin@openvz.org> | 2016-10-25 04:29:13 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-10-31 17:56:36 +0300 |
commit | c62cce2caee558e18aa05c01c2fd3b40f07174f2 (patch) | |
tree | f652d443eb8394c24772bcee4cf15f3a1a6586f1 /include/linux/proc_fs.h | |
parent | 2a43ca0aa9084c41aaa1006fbf22155b2e94babf (diff) | |
download | linux-c62cce2caee558e18aa05c01c2fd3b40f07174f2.tar.xz |
net: add an ioctl to get a socket network namespace
Each socket operates in a network namespace where it has been created,
so if we want to dump and restore a socket, we have to know its network
namespace.
We have a socket_diag to get information about sockets, it doesn't
report sockets which are not bound or connected.
This patch introduces a new socket ioctl, which is called SIOCGSKNS
and used to get a file descriptor for a socket network namespace.
A task must have CAP_NET_ADMIN in a target network namespace to
use this ioctl.
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Andrei Vagin <avagin@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/proc_fs.h')
-rw-r--r-- | include/linux/proc_fs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index b97bf2ef996e..368c7ad06ae5 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h @@ -82,4 +82,8 @@ static inline struct proc_dir_entry *proc_net_mkdir( return proc_mkdir_data(name, 0, parent, net); } +struct ns_common; +int open_related_ns(struct ns_common *ns, + struct ns_common *(*get_ns)(struct ns_common *ns)); + #endif /* _LINUX_PROC_FS_H */ |