]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/pid_namespace.h
Merge branches 'pm-tools-fixes' and 'pm-sleep-fixes'
[mirror_ubuntu-bionic-kernel.git] / include / linux / pid_namespace.h
CommitLineData
61a58c6c
SB
1#ifndef _LINUX_PID_NS_H
2#define _LINUX_PID_NS_H
aa5a6662
SB
3
4#include <linux/sched.h>
187f1882 5#include <linux/bug.h>
aa5a6662 6#include <linux/mm.h>
a27bb332 7#include <linux/workqueue.h>
aa5a6662 8#include <linux/threads.h>
9a575a92
CLG
9#include <linux/nsproxy.h>
10#include <linux/kref.h>
435d5f4b 11#include <linux/ns_common.h>
aa5a6662
SB
12
13struct pidmap {
14 atomic_t nr_free;
15 void *page;
16};
17
5cc54451
RC
18#define BITS_PER_PAGE (PAGE_SIZE * 8)
19#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)
20#define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE)
aa5a6662 21
59eda0e0 22struct fs_pin;
20fad13a 23
61a58c6c 24struct pid_namespace {
9a575a92
CLG
25 struct kref kref;
26 struct pidmap pidmap[PIDMAP_ENTRIES];
1adfcb03 27 struct rcu_head rcu;
9a575a92 28 int last_pid;
c876ad76 29 unsigned int nr_hashed;
84d73786 30 struct task_struct *child_reaper;
baf8f0f8 31 struct kmem_cache *pid_cachep;
caafa432 32 unsigned int level;
faacbfd3 33 struct pid_namespace *parent;
07543f5c
PE
34#ifdef CONFIG_PROC_FS
35 struct vfsmount *proc_mnt;
021ada7d 36 struct dentry *proc_self;
0097875b 37 struct dentry *proc_thread_self;
07543f5c 38#endif
20fad13a 39#ifdef CONFIG_BSD_PROCESS_ACCT
59eda0e0 40 struct fs_pin *bacct;
20fad13a 41#endif
49f4d8b9 42 struct user_namespace *user_ns;
f333c700 43 struct ucounts *ucounts;
0a01f2cc 44 struct work_struct proc_work;
dcb0f222 45 kgid_t pid_gid;
0499680a 46 int hide_pid;
cf3f8921 47 int reboot; /* group exit code if this pidns was rebooted */
435d5f4b 48 struct ns_common ns;
3fbc9648
SB
49};
50
61a58c6c 51extern struct pid_namespace init_pid_ns;
3fbc9648 52
c876ad76
EB
53#define PIDNS_HASH_ADDING (1U << 31)
54
57d5f66b 55#ifdef CONFIG_PID_NS
a05f7b15 56static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
9a575a92 57{
b461cc03
PE
58 if (ns != &init_pid_ns)
59 kref_get(&ns->kref);
a05f7b15 60 return ns;
9a575a92
CLG
61}
62
49f4d8b9
EB
63extern struct pid_namespace *copy_pid_ns(unsigned long flags,
64 struct user_namespace *user_ns, struct pid_namespace *ns);
74bd59bb 65extern void zap_pid_ns_processes(struct pid_namespace *pid_ns);
cf3f8921 66extern int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd);
bbc2e3ef 67extern void put_pid_ns(struct pid_namespace *ns);
9a575a92 68
57d5f66b
EB
69#else /* !CONFIG_PID_NS */
70#include <linux/err.h>
71
72static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
73{
74 return ns;
75}
76
49f4d8b9
EB
77static inline struct pid_namespace *copy_pid_ns(unsigned long flags,
78 struct user_namespace *user_ns, struct pid_namespace *ns)
57d5f66b
EB
79{
80 if (flags & CLONE_NEWPID)
81 ns = ERR_PTR(-EINVAL);
82 return ns;
83}
84
85static inline void put_pid_ns(struct pid_namespace *ns)
86{
87}
88
74bd59bb
PE
89static inline void zap_pid_ns_processes(struct pid_namespace *ns)
90{
91 BUG();
92}
cf3f8921
DL
93
94static inline int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd)
95{
96 return 0;
97}
57d5f66b
EB
98#endif /* CONFIG_PID_NS */
99
61bce0f1 100extern struct pid_namespace *task_active_pid_ns(struct task_struct *tsk);
3ae4eed3
AB
101void pidhash_init(void);
102void pidmap_init(void);
103
61a58c6c 104#endif /* _LINUX_PID_NS_H */