diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 21:10:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 21:10:16 -0400 |
commit | 14d74e0cab7a7779a7ff0c3863c04c8a8e507106 (patch) | |
tree | 5e27d7495f8f7ce178b637d588ec42bd7b4173d8 /net | |
parent | 49a78d085fa6b44d6ed791923c7172a6433589c2 (diff) | |
parent | 956c920786694f51601a0ef7ee12956fd6aa216e (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/linux-2.6-nsfd
* git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/linux-2.6-nsfd:
net: fix get_net_ns_by_fd for !CONFIG_NET_NS
ns proc: Return -ENOENT for a nonexistent /proc/self/ns/ entry.
ns: Declare sys_setns in syscalls.h
net: Allow setting the network namespace by fd
ns proc: Add support for the ipc namespace
ns proc: Add support for the uts namespace
ns proc: Add support for the network namespace.
ns: Introduce the setns syscall
ns: proc files for namespace naming policy.
Diffstat (limited to 'net')
-rw-r--r-- | net/core/net_namespace.c | 65 | ||||
-rw-r--r-- | net/core/rtnetlink.c | 5 |
2 files changed, 69 insertions, 1 deletions
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c index 2e2dce6583e1..6c6b86d0da15 100644 --- a/net/core/net_namespace.c +++ b/net/core/net_namespace.c | |||
@@ -8,6 +8,8 @@ | |||
8 | #include <linux/idr.h> | 8 | #include <linux/idr.h> |
9 | #include <linux/rculist.h> | 9 | #include <linux/rculist.h> |
10 | #include <linux/nsproxy.h> | 10 | #include <linux/nsproxy.h> |
11 | #include <linux/proc_fs.h> | ||
12 | #include <linux/file.h> | ||
11 | #include <net/net_namespace.h> | 13 | #include <net/net_namespace.h> |
12 | #include <net/netns/generic.h> | 14 | #include <net/netns/generic.h> |
13 | 15 | ||
@@ -302,6 +304,28 @@ void __put_net(struct net *net) | |||
302 | } | 304 | } |
303 | EXPORT_SYMBOL_GPL(__put_net); | 305 | EXPORT_SYMBOL_GPL(__put_net); |
304 | 306 | ||
307 | struct net *get_net_ns_by_fd(int fd) | ||
308 | { | ||
309 | struct proc_inode *ei; | ||
310 | struct file *file; | ||
311 | struct net *net; | ||
312 | |||
313 | net = ERR_PTR(-EINVAL); | ||
314 | file = proc_ns_fget(fd); | ||
315 | if (!file) | ||
316 | goto out; | ||
317 | |||
318 | ei = PROC_I(file->f_dentry->d_inode); | ||
319 | if (ei->ns_ops != &netns_operations) | ||
320 | goto out; | ||
321 | |||
322 | net = get_net(ei->ns); | ||
323 | out: | ||
324 | if (file) | ||
325 | fput(file); | ||
326 | return net; | ||
327 | } | ||
328 | |||
305 | #else | 329 | #else |
306 | struct net *copy_net_ns(unsigned long flags, struct net *old_net) | 330 | struct net *copy_net_ns(unsigned long flags, struct net *old_net) |
307 | { | 331 | { |
@@ -309,6 +333,11 @@ struct net *copy_net_ns(unsigned long flags, struct net *old_net) | |||
309 | return ERR_PTR(-EINVAL); | 333 | return ERR_PTR(-EINVAL); |
310 | return old_net; | 334 | return old_net; |
311 | } | 335 | } |
336 | |||
337 | struct net *get_net_ns_by_fd(int fd) | ||
338 | { | ||
339 | return ERR_PTR(-EINVAL); | ||
340 | } | ||
312 | #endif | 341 | #endif |
313 | 342 | ||
314 | struct net *get_net_ns_by_pid(pid_t pid) | 343 | struct net *get_net_ns_by_pid(pid_t pid) |
@@ -561,3 +590,39 @@ void unregister_pernet_device(struct pernet_operations *ops) | |||
561 | mutex_unlock(&net_mutex); | 590 | mutex_unlock(&net_mutex); |
562 | } | 591 | } |
563 | EXPORT_SYMBOL_GPL(unregister_pernet_device); | 592 | EXPORT_SYMBOL_GPL(unregister_pernet_device); |
593 | |||
594 | #ifdef CONFIG_NET_NS | ||
595 | static void *netns_get(struct task_struct *task) | ||
596 | { | ||
597 | struct net *net = NULL; | ||
598 | struct nsproxy *nsproxy; | ||
599 | |||
600 | rcu_read_lock(); | ||
601 | nsproxy = task_nsproxy(task); | ||
602 | if (nsproxy) | ||
603 | net = get_net(nsproxy->net_ns); | ||
604 | rcu_read_unlock(); | ||
605 | |||
606 | return net; | ||
607 | } | ||
608 | |||
609 | static void netns_put(void *ns) | ||
610 | { | ||
611 | put_net(ns); | ||
612 | } | ||
613 | |||
614 | static int netns_install(struct nsproxy *nsproxy, void *ns) | ||
615 | { | ||
616 | put_net(nsproxy->net_ns); | ||
617 | nsproxy->net_ns = get_net(ns); | ||
618 | return 0; | ||
619 | } | ||
620 | |||
621 | const struct proc_ns_operations netns_operations = { | ||
622 | .name = "net", | ||
623 | .type = CLONE_NEWNET, | ||
624 | .get = netns_get, | ||
625 | .put = netns_put, | ||
626 | .install = netns_install, | ||
627 | }; | ||
628 | #endif | ||
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index 2d56cb9b0b94..abd936d8a716 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c | |||
@@ -1046,6 +1046,7 @@ const struct nla_policy ifla_policy[IFLA_MAX+1] = { | |||
1046 | [IFLA_LINKMODE] = { .type = NLA_U8 }, | 1046 | [IFLA_LINKMODE] = { .type = NLA_U8 }, |
1047 | [IFLA_LINKINFO] = { .type = NLA_NESTED }, | 1047 | [IFLA_LINKINFO] = { .type = NLA_NESTED }, |
1048 | [IFLA_NET_NS_PID] = { .type = NLA_U32 }, | 1048 | [IFLA_NET_NS_PID] = { .type = NLA_U32 }, |
1049 | [IFLA_NET_NS_FD] = { .type = NLA_U32 }, | ||
1049 | [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 }, | 1050 | [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 }, |
1050 | [IFLA_VFINFO_LIST] = {. type = NLA_NESTED }, | 1051 | [IFLA_VFINFO_LIST] = {. type = NLA_NESTED }, |
1051 | [IFLA_VF_PORTS] = { .type = NLA_NESTED }, | 1052 | [IFLA_VF_PORTS] = { .type = NLA_NESTED }, |
@@ -1094,6 +1095,8 @@ struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[]) | |||
1094 | */ | 1095 | */ |
1095 | if (tb[IFLA_NET_NS_PID]) | 1096 | if (tb[IFLA_NET_NS_PID]) |
1096 | net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID])); | 1097 | net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID])); |
1098 | else if (tb[IFLA_NET_NS_FD]) | ||
1099 | net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD])); | ||
1097 | else | 1100 | else |
1098 | net = get_net(src_net); | 1101 | net = get_net(src_net); |
1099 | return net; | 1102 | return net; |
@@ -1224,7 +1227,7 @@ static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm, | |||
1224 | int send_addr_notify = 0; | 1227 | int send_addr_notify = 0; |
1225 | int err; | 1228 | int err; |
1226 | 1229 | ||
1227 | if (tb[IFLA_NET_NS_PID]) { | 1230 | if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) { |
1228 | struct net *net = rtnl_link_get_net(dev_net(dev), tb); | 1231 | struct net *net = rtnl_link_get_net(dev_net(dev), tb); |
1229 | if (IS_ERR(net)) { | 1232 | if (IS_ERR(net)) { |
1230 | err = PTR_ERR(net); | 1233 | err = PTR_ERR(net); |