aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCedric Le Goater <clg@fr.ibm.com>2006-12-08 05:37:59 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-08 11:28:52 -0500
commit9a575a92db3312a40cdf0b0406d88de88ad9741e (patch)
tree0b789528da13cd31f7fb206f184cfa123cc0ba42 /include
parent61a58c6c238cc81f7742b8cc84212cc55fb57747 (diff)
[PATCH] to nsproxy
Add the pid namespace framework to the nsproxy object. The copy of the pid namespace only increases the refcount on the global pid namespace, init_pid_ns, and unshare is not implemented. There is no configuration option to activate or deactivate this feature because this not relevant for the moment. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Cc: Kirill Korotaev <dev@openvz.org> Cc: Eric W. Biederman <ebiederm@xmission.com> Cc: Herbert Poetzl <herbert@13thfloor.at> Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/init_task.h2
-rw-r--r--include/linux/nsproxy.h2
-rw-r--r--include/linux/pid_namespace.h20
3 files changed, 22 insertions, 2 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h
index 90c5f9a07730..7272ff9ee77c 100644
--- a/include/linux/init_task.h
+++ b/include/linux/init_task.h
@@ -7,6 +7,7 @@
7#include <linux/utsname.h> 7#include <linux/utsname.h>
8#include <linux/lockdep.h> 8#include <linux/lockdep.h>
9#include <linux/ipc.h> 9#include <linux/ipc.h>
10#include <linux/pid_namespace.h>
10 11
11#define INIT_FDTABLE \ 12#define INIT_FDTABLE \
12{ \ 13{ \
@@ -73,6 +74,7 @@
73 74
74extern struct nsproxy init_nsproxy; 75extern struct nsproxy init_nsproxy;
75#define INIT_NSPROXY(nsproxy) { \ 76#define INIT_NSPROXY(nsproxy) { \
77 .pid_ns = &init_pid_ns, \
76 .count = ATOMIC_INIT(1), \ 78 .count = ATOMIC_INIT(1), \
77 .nslock = __SPIN_LOCK_UNLOCKED(nsproxy.nslock), \ 79 .nslock = __SPIN_LOCK_UNLOCKED(nsproxy.nslock), \
78 .id = 0, \ 80 .id = 0, \
diff --git a/include/linux/nsproxy.h b/include/linux/nsproxy.h
index 27f37c1ec1d9..fdfb0e44912f 100644
--- a/include/linux/nsproxy.h
+++ b/include/linux/nsproxy.h
@@ -7,6 +7,7 @@
7struct mnt_namespace; 7struct mnt_namespace;
8struct uts_namespace; 8struct uts_namespace;
9struct ipc_namespace; 9struct ipc_namespace;
10struct pid_namespace;
10 11
11/* 12/*
12 * A structure to contain pointers to all per-process 13 * A structure to contain pointers to all per-process
@@ -27,6 +28,7 @@ struct nsproxy {
27 struct uts_namespace *uts_ns; 28 struct uts_namespace *uts_ns;
28 struct ipc_namespace *ipc_ns; 29 struct ipc_namespace *ipc_ns;
29 struct mnt_namespace *mnt_ns; 30 struct mnt_namespace *mnt_ns;
31 struct pid_namespace *pid_ns;
30}; 32};
31extern struct nsproxy init_nsproxy; 33extern struct nsproxy init_nsproxy;
32 34
diff --git a/include/linux/pid_namespace.h b/include/linux/pid_namespace.h
index 54d79095e295..76e7c6b2cf33 100644
--- a/include/linux/pid_namespace.h
+++ b/include/linux/pid_namespace.h
@@ -5,6 +5,8 @@
5#include <linux/mm.h> 5#include <linux/mm.h>
6#include <linux/threads.h> 6#include <linux/threads.h>
7#include <linux/pid.h> 7#include <linux/pid.h>
8#include <linux/nsproxy.h>
9#include <linux/kref.h>
8 10
9struct pidmap { 11struct pidmap {
10 atomic_t nr_free; 12 atomic_t nr_free;
@@ -14,10 +16,24 @@ struct pidmap {
14#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8) 16#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
15 17
16struct pid_namespace { 18struct pid_namespace {
17 struct pidmap pidmap[PIDMAP_ENTRIES]; 19 struct kref kref;
18 int last_pid; 20 struct pidmap pidmap[PIDMAP_ENTRIES];
21 int last_pid;
19}; 22};
20 23
21extern struct pid_namespace init_pid_ns; 24extern struct pid_namespace init_pid_ns;
22 25
26static inline void get_pid_ns(struct pid_namespace *ns)
27{
28 kref_get(&ns->kref);
29}
30
31extern int copy_pid_ns(int flags, struct task_struct *tsk);
32extern void free_pid_ns(struct kref *kref);
33
34static inline void put_pid_ns(struct pid_namespace *ns)
35{
36 kref_put(&ns->kref, free_pid_ns);
37}
38
23#endif /* _LINUX_PID_NS_H */ 39#endif /* _LINUX_PID_NS_H */