1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_PID_NS_H
3 #define _LINUX_PID_NS_H
5 #include <linux/sched.h>
8 #include <linux/workqueue.h>
9 #include <linux/threads.h>
10 #include <linux/nsproxy.h>
11 #include <linux/ns_common.h>
12 #include <linux/idr.h>
14 /* MAX_PID_NS_LEVEL is needed for limiting size of 'struct pid' */
15 #define MAX_PID_NS_LEVEL 32
19 #if defined(CONFIG_SYSCTL) && defined(CONFIG_MEMFD_CREATE)
20 /* modes for vm.memfd_noexec sysctl */
21 #define MEMFD_NOEXEC_SCOPE_EXEC 0 /* MFD_EXEC implied if unset */
22 #define MEMFD_NOEXEC_SCOPE_NOEXEC_SEAL 1 /* MFD_NOEXEC_SEAL implied if unset */
23 #define MEMFD_NOEXEC_SCOPE_NOEXEC_ENFORCED 2 /* same as 1, except MFD_EXEC rejected */
26 struct pid_namespace {
29 unsigned int pid_allocated;
30 struct task_struct *child_reaper;
31 struct kmem_cache *pid_cachep;
33 struct pid_namespace *parent;
34 #ifdef CONFIG_BSD_PROCESS_ACCT
37 struct user_namespace *user_ns;
38 struct ucounts *ucounts;
39 int reboot; /* group exit code if this pidns was rebooted */
41 #if defined(CONFIG_SYSCTL) && defined(CONFIG_MEMFD_CREATE)
42 int memfd_noexec_scope;
46 extern struct pid_namespace init_pid_ns;
48 #define PIDNS_ADDING (1U << 31)
51 static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
53 if (ns != &init_pid_ns)
54 refcount_inc(&ns->ns.count);
58 #if defined(CONFIG_SYSCTL) && defined(CONFIG_MEMFD_CREATE)
59 static inline int pidns_memfd_noexec_scope(struct pid_namespace *ns)
61 int scope = MEMFD_NOEXEC_SCOPE_EXEC;
63 for (; ns; ns = ns->parent)
64 scope = max(scope, READ_ONCE(ns->memfd_noexec_scope));
69 static inline int pidns_memfd_noexec_scope(struct pid_namespace *ns)
75 extern struct pid_namespace *copy_pid_ns(unsigned long flags,
76 struct user_namespace *user_ns, struct pid_namespace *ns);
77 extern void zap_pid_ns_processes(struct pid_namespace *pid_ns);
78 extern int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd);
79 extern void put_pid_ns(struct pid_namespace *ns);
81 #else /* !CONFIG_PID_NS */
82 #include <linux/err.h>
84 static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
89 static inline int pidns_memfd_noexec_scope(struct pid_namespace *ns)
94 static inline struct pid_namespace *copy_pid_ns(unsigned long flags,
95 struct user_namespace *user_ns, struct pid_namespace *ns)
97 if (flags & CLONE_NEWPID)
98 ns = ERR_PTR(-EINVAL);
102 static inline void put_pid_ns(struct pid_namespace *ns)
106 static inline void zap_pid_ns_processes(struct pid_namespace *ns)
111 static inline int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd)
115 #endif /* CONFIG_PID_NS */
117 extern struct pid_namespace *task_active_pid_ns(struct task_struct *tsk);
118 void pidhash_init(void);
119 void pid_idr_init(void);
121 static inline bool task_is_in_init_pid_ns(struct task_struct *tsk)
123 return task_active_pid_ns(tsk) == &init_pid_ns;
126 #endif /* _LINUX_PID_NS_H */