2006-12-08 13:37:58 +03:00
|
|
|
#ifndef _LINUX_PID_NS_H
|
|
|
|
#define _LINUX_PID_NS_H
|
2006-10-02 13:17:23 +04:00
|
|
|
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/threads.h>
|
2006-12-08 13:37:59 +03:00
|
|
|
#include <linux/nsproxy.h>
|
|
|
|
#include <linux/kref.h>
|
2006-10-02 13:17:23 +04:00
|
|
|
|
|
|
|
struct pidmap {
|
|
|
|
atomic_t nr_free;
|
|
|
|
void *page;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
|
|
|
|
|
2006-12-08 13:37:58 +03:00
|
|
|
struct pid_namespace {
|
2006-12-08 13:37:59 +03:00
|
|
|
struct kref kref;
|
|
|
|
struct pidmap pidmap[PIDMAP_ENTRIES];
|
|
|
|
int last_pid;
|
2006-12-08 13:38:01 +03:00
|
|
|
struct task_struct *child_reaper;
|
2007-10-19 10:39:48 +04:00
|
|
|
struct kmem_cache *pid_cachep;
|
2008-04-30 11:54:31 +04:00
|
|
|
unsigned int level;
|
2007-10-19 10:40:04 +04:00
|
|
|
struct pid_namespace *parent;
|
2007-10-19 10:40:08 +04:00
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
struct vfsmount *proc_mnt;
|
|
|
|
#endif
|
2006-10-02 13:17:24 +04:00
|
|
|
};
|
|
|
|
|
2006-12-08 13:37:58 +03:00
|
|
|
extern struct pid_namespace init_pid_ns;
|
2006-10-02 13:17:24 +04:00
|
|
|
|
2007-11-15 04:00:13 +03:00
|
|
|
#ifdef CONFIG_PID_NS
|
2007-10-19 10:39:47 +04:00
|
|
|
static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
|
2006-12-08 13:37:59 +03:00
|
|
|
{
|
2007-10-19 10:40:09 +04:00
|
|
|
if (ns != &init_pid_ns)
|
|
|
|
kref_get(&ns->kref);
|
2007-10-19 10:39:47 +04:00
|
|
|
return ns;
|
2006-12-08 13:37:59 +03:00
|
|
|
}
|
|
|
|
|
2007-07-16 10:41:15 +04:00
|
|
|
extern struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *ns);
|
2006-12-08 13:37:59 +03:00
|
|
|
extern void free_pid_ns(struct kref *kref);
|
2008-02-08 15:18:24 +03:00
|
|
|
extern void zap_pid_ns_processes(struct pid_namespace *pid_ns);
|
2006-12-08 13:37:59 +03:00
|
|
|
|
|
|
|
static inline void put_pid_ns(struct pid_namespace *ns)
|
|
|
|
{
|
2007-10-19 10:40:09 +04:00
|
|
|
if (ns != &init_pid_ns)
|
|
|
|
kref_put(&ns->kref, free_pid_ns);
|
2006-12-08 13:37:59 +03:00
|
|
|
}
|
|
|
|
|
2007-11-15 04:00:13 +03:00
|
|
|
#else /* !CONFIG_PID_NS */
|
|
|
|
#include <linux/err.h>
|
|
|
|
|
|
|
|
static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
|
|
|
|
{
|
|
|
|
return ns;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct pid_namespace *
|
|
|
|
copy_pid_ns(unsigned long flags, struct pid_namespace *ns)
|
|
|
|
{
|
|
|
|
if (flags & CLONE_NEWPID)
|
|
|
|
ns = ERR_PTR(-EINVAL);
|
|
|
|
return ns;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void put_pid_ns(struct pid_namespace *ns)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-02-08 15:18:24 +03:00
|
|
|
|
|
|
|
static inline void zap_pid_ns_processes(struct pid_namespace *ns)
|
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
2007-11-15 04:00:13 +03:00
|
|
|
#endif /* CONFIG_PID_NS */
|
|
|
|
|
2007-10-19 10:39:49 +04:00
|
|
|
static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk)
|
|
|
|
{
|
|
|
|
return tsk->nsproxy->pid_ns;
|
|
|
|
}
|
|
|
|
|
2007-10-19 10:39:50 +04:00
|
|
|
static inline struct task_struct *task_child_reaper(struct task_struct *tsk)
|
2006-12-08 13:38:01 +03:00
|
|
|
{
|
2007-10-19 10:40:09 +04:00
|
|
|
BUG_ON(tsk != current);
|
|
|
|
return tsk->nsproxy->pid_ns->child_reaper;
|
2006-12-08 13:38:01 +03:00
|
|
|
}
|
|
|
|
|
2008-07-25 12:48:34 +04:00
|
|
|
void pidhash_init(void);
|
|
|
|
void pidmap_init(void);
|
|
|
|
|
2006-12-08 13:37:58 +03:00
|
|
|
#endif /* _LINUX_PID_NS_H */
|