2 * Copyright (C) 2006 IBM Corporation
4 * Author: Serge Hallyn <serue@us.ibm.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2 of the
12 #include <linux/module.h>
13 #include <linux/version.h>
14 #include <linux/nsproxy.h>
15 #include <linux/init_task.h>
16 #include <linux/namespace.h>
17 #include <linux/utsname.h>
19 struct nsproxy init_nsproxy = INIT_NSPROXY(init_nsproxy);
21 static inline void get_nsproxy(struct nsproxy *ns)
23 atomic_inc(&ns->count);
26 void get_task_namespaces(struct task_struct *tsk)
28 struct nsproxy *ns = tsk->nsproxy;
35 * creates a copy of "orig" with refcount 1.
36 * This does not grab references to the contained namespaces,
37 * so that needs to be done by dup_namespaces.
39 static inline struct nsproxy *clone_namespaces(struct nsproxy *orig)
43 ns = kmalloc(sizeof(struct nsproxy), GFP_KERNEL);
45 memcpy(ns, orig, sizeof(struct nsproxy));
46 atomic_set(&ns->count, 1);
52 * copies the nsproxy, setting refcount to 1, and grabbing a
53 * reference to all contained namespaces. Called from
56 struct nsproxy *dup_namespaces(struct nsproxy *orig)
58 struct nsproxy *ns = clone_namespaces(orig);
62 get_namespace(ns->namespace);
64 get_uts_ns(ns->uts_ns);
71 * called from clone. This now handles copy for nsproxy and all
74 int copy_namespaces(int flags, struct task_struct *tsk)
76 struct nsproxy *old_ns = tsk->nsproxy;
77 struct nsproxy *new_ns;
85 if (!(flags & CLONE_NEWNS))
88 new_ns = clone_namespaces(old_ns);
94 tsk->nsproxy = new_ns;
96 err = copy_namespace(flags, tsk);
98 tsk->nsproxy = old_ns;
103 err = copy_utsname(flags, tsk);
105 if (new_ns->namespace)
106 put_namespace(new_ns->namespace);
107 tsk->nsproxy = old_ns;
117 void free_nsproxy(struct nsproxy *ns)
120 put_namespace(ns->namespace);
122 put_uts_ns(ns->uts_ns);