]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/linux/nsproxy.h
[PATCH] identifier to nsproxy
[linux-2.6-omap-h63xx.git] / include / linux / nsproxy.h
1 #ifndef _LINUX_NSPROXY_H
2 #define _LINUX_NSPROXY_H
3
4 #include <linux/spinlock.h>
5 #include <linux/sched.h>
6
7 struct mnt_namespace;
8 struct uts_namespace;
9 struct ipc_namespace;
10
11 /*
12  * A structure to contain pointers to all per-process
13  * namespaces - fs (mount), uts, network, sysvipc, etc.
14  *
15  * 'count' is the number of tasks holding a reference.
16  * The count for each namespace, then, will be the number
17  * of nsproxies pointing to it, not the number of tasks.
18  *
19  * The nsproxy is shared by tasks which share all namespaces.
20  * As soon as a single namespace is cloned or unshared, the
21  * nsproxy is copied.
22  */
23 struct nsproxy {
24         atomic_t count;
25         spinlock_t nslock;
26         unsigned long id;
27         struct uts_namespace *uts_ns;
28         struct ipc_namespace *ipc_ns;
29         struct mnt_namespace *mnt_ns;
30 };
31 extern struct nsproxy init_nsproxy;
32
33 struct nsproxy *dup_namespaces(struct nsproxy *orig);
34 int copy_namespaces(int flags, struct task_struct *tsk);
35 void get_task_namespaces(struct task_struct *tsk);
36 void free_nsproxy(struct nsproxy *ns);
37
38 static inline void put_nsproxy(struct nsproxy *ns)
39 {
40         if (atomic_dec_and_test(&ns->count)) {
41                 free_nsproxy(ns);
42         }
43 }
44
45 static inline void exit_task_namespaces(struct task_struct *p)
46 {
47         struct nsproxy *ns = p->nsproxy;
48         if (ns) {
49                 task_lock(p);
50                 p->nsproxy = NULL;
51                 task_unlock(p);
52                 put_nsproxy(ns);
53         }
54 }
55 #endif