blob: 0aba1b1a39c750bee9a9b528688d17cf2891a87f [file] [log] [blame]
Serge E. Hallynab516012006-10-02 02:18:06 -07001#ifndef _LINUX_NSPROXY_H
2#define _LINUX_NSPROXY_H
3
4#include <linux/spinlock.h>
5#include <linux/sched.h>
6
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08007struct mnt_namespace;
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -07008struct uts_namespace;
Kirill Korotaev25b21cb2006-10-02 02:18:19 -07009struct ipc_namespace;
Serge E. Hallyn1651e142006-10-02 02:18:08 -070010
Serge E. Hallynab516012006-10-02 02:18:06 -070011/*
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 */
23struct nsproxy {
24 atomic_t count;
25 spinlock_t nslock;
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070026 struct uts_namespace *uts_ns;
Kirill Korotaev25b21cb2006-10-02 02:18:19 -070027 struct ipc_namespace *ipc_ns;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080028 struct mnt_namespace *mnt_ns;
Serge E. Hallynab516012006-10-02 02:18:06 -070029};
30extern struct nsproxy init_nsproxy;
31
32struct nsproxy *dup_namespaces(struct nsproxy *orig);
33int copy_namespaces(int flags, struct task_struct *tsk);
34void get_task_namespaces(struct task_struct *tsk);
35void free_nsproxy(struct nsproxy *ns);
36
37static inline void put_nsproxy(struct nsproxy *ns)
38{
39 if (atomic_dec_and_test(&ns->count)) {
40 free_nsproxy(ns);
41 }
42}
43
44static inline void exit_task_namespaces(struct task_struct *p)
45{
46 struct nsproxy *ns = p->nsproxy;
47 if (ns) {
Vasily Tarasov701e0542006-11-25 11:09:22 -080048 task_lock(p);
Serge E. Hallynab516012006-10-02 02:18:06 -070049 p->nsproxy = NULL;
Vasily Tarasov701e0542006-11-25 11:09:22 -080050 task_unlock(p);
51 put_nsproxy(ns);
Serge E. Hallynab516012006-10-02 02:18:06 -070052 }
53}
54#endif