[PATCH] namespaces: add nsproxy
[safe/jmp/linux-2.6] / kernel / nsproxy.c
1 /*
2  *  Copyright (C) 2006 IBM Corporation
3  *
4  *  Author: Serge Hallyn <serue@us.ibm.com>
5  *
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
9  *  License.
10  */
11
12 #include <linux/module.h>
13 #include <linux/version.h>
14 #include <linux/nsproxy.h>
15
16 static inline void get_nsproxy(struct nsproxy *ns)
17 {
18         atomic_inc(&ns->count);
19 }
20
21 void get_task_namespaces(struct task_struct *tsk)
22 {
23         struct nsproxy *ns = tsk->nsproxy;
24         if (ns) {
25                 get_nsproxy(ns);
26         }
27 }
28
29 /*
30  * creates a copy of "orig" with refcount 1.
31  * This does not grab references to the contained namespaces,
32  * so that needs to be done by dup_namespaces.
33  */
34 static inline struct nsproxy *clone_namespaces(struct nsproxy *orig)
35 {
36         struct nsproxy *ns;
37
38         ns = kmalloc(sizeof(struct nsproxy), GFP_KERNEL);
39         if (ns) {
40                 memcpy(ns, orig, sizeof(struct nsproxy));
41                 atomic_set(&ns->count, 1);
42         }
43         return ns;
44 }
45
46 /*
47  * copies the nsproxy, setting refcount to 1, and grabbing a
48  * reference to all contained namespaces.  Called from
49  * sys_unshare()
50  */
51 struct nsproxy *dup_namespaces(struct nsproxy *orig)
52 {
53         struct nsproxy *ns = clone_namespaces(orig);
54
55         return ns;
56 }
57
58 /*
59  * called from clone.  This now handles copy for nsproxy and all
60  * namespaces therein.
61  */
62 int copy_namespaces(int flags, struct task_struct *tsk)
63 {
64         struct nsproxy *old_ns = tsk->nsproxy;
65
66         if (!old_ns)
67                 return 0;
68
69         get_nsproxy(old_ns);
70
71         return 0;
72 }
73
74 void free_nsproxy(struct nsproxy *ns)
75 {
76                 kfree(ns);
77 }