blob: e2772666f004ef2d83b3493fb6f93b2625fb12f4 [file] [log] [blame]
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -08001#ifndef _LINUX_PID_NS_H
2#define _LINUX_PID_NS_H
Sukadev Bhattiproluaa5a6662006-10-02 02:17:23 -07003
4#include <linux/sched.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -05005#include <linux/bug.h>
Sukadev Bhattiproluaa5a6662006-10-02 02:17:23 -07006#include <linux/mm.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -07007#include <linux/workqueue.h>
Sukadev Bhattiproluaa5a6662006-10-02 02:17:23 -07008#include <linux/threads.h>
Cedric Le Goater9a575a92006-12-08 02:37:59 -08009#include <linux/nsproxy.h>
10#include <linux/kref.h>
Sukadev Bhattiproluaa5a6662006-10-02 02:17:23 -070011
12struct pidmap {
13 atomic_t nr_free;
14 void *page;
15};
16
Raphael S.Carvalho5cc54452013-04-30 15:28:27 -070017#define BITS_PER_PAGE (PAGE_SIZE * 8)
18#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)
19#define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE)
Sukadev Bhattiproluaa5a6662006-10-02 02:17:23 -070020
Pavel Emelyanov20fad132008-07-25 01:48:43 -070021struct bsd_acct_struct;
22
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080023struct pid_namespace {
Cedric Le Goater9a575a92006-12-08 02:37:59 -080024 struct kref kref;
25 struct pidmap pidmap[PIDMAP_ENTRIES];
26 int last_pid;
Eric W. Biedermanc876ad762012-12-21 20:27:12 -080027 unsigned int nr_hashed;
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080028 struct task_struct *child_reaper;
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -070029 struct kmem_cache *pid_cachep;
Pavel Emelyanovcaafa432008-04-30 00:54:31 -070030 unsigned int level;
Pavel Emelyanovfaacbfd2007-10-18 23:40:04 -070031 struct pid_namespace *parent;
Pavel Emelyanov07543f52007-10-18 23:40:08 -070032#ifdef CONFIG_PROC_FS
33 struct vfsmount *proc_mnt;
Al Viro021ada72013-03-29 19:27:05 -040034 struct dentry *proc_self;
Pavel Emelyanov07543f52007-10-18 23:40:08 -070035#endif
Pavel Emelyanov20fad132008-07-25 01:48:43 -070036#ifdef CONFIG_BSD_PROCESS_ACCT
37 struct bsd_acct_struct *bacct;
38#endif
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -070039 struct user_namespace *user_ns;
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -070040 struct work_struct proc_work;
Eric W. Biedermandcb0f222012-02-09 08:48:21 -080041 kgid_t pid_gid;
Vasiliy Kulikov04996802012-01-10 15:11:31 -080042 int hide_pid;
Daniel Lezcanocf3f8922012-03-28 14:42:51 -070043 int reboot; /* group exit code if this pidns was rebooted */
Eric W. Biederman98f842e2011-06-15 10:21:48 -070044 unsigned int proc_inum;
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070045};
46
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080047extern struct pid_namespace init_pid_ns;
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070048
Eric W. Biedermanc876ad762012-12-21 20:27:12 -080049#define PIDNS_HASH_ADDING (1U << 31)
50
Eric W. Biederman57d5f662007-11-14 17:00:13 -080051#ifdef CONFIG_PID_NS
Pavel Emelianova05f7b12007-10-18 23:39:47 -070052static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
Cedric Le Goater9a575a92006-12-08 02:37:59 -080053{
Pavel Emelyanovb461cc02007-10-18 23:40:09 -070054 if (ns != &init_pid_ns)
55 kref_get(&ns->kref);
Pavel Emelianova05f7b12007-10-18 23:39:47 -070056 return ns;
Cedric Le Goater9a575a92006-12-08 02:37:59 -080057}
58
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -070059extern struct pid_namespace *copy_pid_ns(unsigned long flags,
60 struct user_namespace *user_ns, struct pid_namespace *ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080061extern void zap_pid_ns_processes(struct pid_namespace *pid_ns);
Daniel Lezcanocf3f8922012-03-28 14:42:51 -070062extern int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd);
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -070063extern void put_pid_ns(struct pid_namespace *ns);
Cedric Le Goater9a575a92006-12-08 02:37:59 -080064
Eric W. Biederman57d5f662007-11-14 17:00:13 -080065#else /* !CONFIG_PID_NS */
66#include <linux/err.h>
67
68static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
69{
70 return ns;
71}
72
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -070073static inline struct pid_namespace *copy_pid_ns(unsigned long flags,
74 struct user_namespace *user_ns, struct pid_namespace *ns)
Eric W. Biederman57d5f662007-11-14 17:00:13 -080075{
76 if (flags & CLONE_NEWPID)
77 ns = ERR_PTR(-EINVAL);
78 return ns;
79}
80
81static inline void put_pid_ns(struct pid_namespace *ns)
82{
83}
84
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080085static inline void zap_pid_ns_processes(struct pid_namespace *ns)
86{
87 BUG();
88}
Daniel Lezcanocf3f8922012-03-28 14:42:51 -070089
90static inline int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd)
91{
92 return 0;
93}
Eric W. Biederman57d5f662007-11-14 17:00:13 -080094#endif /* CONFIG_PID_NS */
95
Eric W. Biederman61bce0f2009-01-07 18:08:49 -080096extern struct pid_namespace *task_active_pid_ns(struct task_struct *tsk);
Adrian Bunk3ae4eed2008-07-25 01:48:34 -070097void pidhash_init(void);
98void pidmap_init(void);
99
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -0800100#endif /* _LINUX_PID_NS_H */