1 #ifndef _LINUX_PID_NS_H
2 #define _LINUX_PID_NS_H
4 #include <linux/sched.h>
6 #include <linux/threads.h>
7 #include <linux/nsproxy.h>
8 #include <linux/kref.h>
15 #define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
17 struct pid_namespace
{
19 struct pidmap pidmap
[PIDMAP_ENTRIES
];
21 struct task_struct
*child_reaper
;
22 struct kmem_cache
*pid_cachep
;
24 struct pid_namespace
*parent
;
26 struct vfsmount
*proc_mnt
;
30 extern struct pid_namespace init_pid_ns
;
33 static inline struct pid_namespace
*get_pid_ns(struct pid_namespace
*ns
)
35 if (ns
!= &init_pid_ns
)
40 extern struct pid_namespace
*copy_pid_ns(unsigned long flags
, struct pid_namespace
*ns
);
41 extern void free_pid_ns(struct kref
*kref
);
42 extern void zap_pid_ns_processes(struct pid_namespace
*pid_ns
);
44 static inline void put_pid_ns(struct pid_namespace
*ns
)
46 if (ns
!= &init_pid_ns
)
47 kref_put(&ns
->kref
, free_pid_ns
);
50 #else /* !CONFIG_PID_NS */
51 #include <linux/err.h>
53 static inline struct pid_namespace
*get_pid_ns(struct pid_namespace
*ns
)
58 static inline struct pid_namespace
*
59 copy_pid_ns(unsigned long flags
, struct pid_namespace
*ns
)
61 if (flags
& CLONE_NEWPID
)
62 ns
= ERR_PTR(-EINVAL
);
66 static inline void put_pid_ns(struct pid_namespace
*ns
)
71 static inline void zap_pid_ns_processes(struct pid_namespace
*ns
)
75 #endif /* CONFIG_PID_NS */
77 static inline struct pid_namespace
*task_active_pid_ns(struct task_struct
*tsk
)
79 return tsk
->nsproxy
->pid_ns
;
82 static inline struct task_struct
*task_child_reaper(struct task_struct
*tsk
)
84 BUG_ON(tsk
!= current
);
85 return tsk
->nsproxy
->pid_ns
->child_reaper
;
88 #endif /* _LINUX_PID_NS_H */