1#ifndef _LINUX_PID_H
2#define _LINUX_PID_H
3
4#include <linux/rcupdate.h>
5
6enum pid_type
7{
8 PIDTYPE_PID,
9 PIDTYPE_PGID,
10 PIDTYPE_SID,
11 PIDTYPE_MAX
12};
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50struct upid {
51
52 int nr;
53 struct pid_namespace *ns;
54 struct hlist_node pid_chain;
55};
56
57struct pid
58{
59 atomic_t count;
60 unsigned int level;
61
62 struct hlist_head tasks[PIDTYPE_MAX];
63 struct rcu_head rcu;
64 struct upid numbers[1];
65};
66
67extern struct pid init_struct_pid;
68
69struct pid_link
70{
71 struct hlist_node node;
72 struct pid *pid;
73};
74
75static inline struct pid *get_pid(struct pid *pid)
76{
77 if (pid)
78 atomic_inc(&pid->count);
79 return pid;
80}
81
82extern void put_pid(struct pid *pid);
83extern struct task_struct *pid_task(struct pid *pid, enum pid_type);
84extern struct task_struct *get_pid_task(struct pid *pid, enum pid_type);
85
86extern struct pid *get_task_pid(struct task_struct *task, enum pid_type type);
87
88
89
90
91extern void attach_pid(struct task_struct *task, enum pid_type);
92extern void detach_pid(struct task_struct *task, enum pid_type);
93extern void change_pid(struct task_struct *task, enum pid_type,
94 struct pid *pid);
95extern void transfer_pid(struct task_struct *old, struct task_struct *new,
96 enum pid_type);
97
98struct pid_namespace;
99extern struct pid_namespace init_pid_ns;
100
101
102
103
104
105
106
107
108
109
110extern struct pid *find_pid_ns(int nr, struct pid_namespace *ns);
111extern struct pid *find_vpid(int nr);
112
113
114
115
116extern struct pid *find_get_pid(int nr);
117extern struct pid *find_ge_pid(int nr, struct pid_namespace *);
118int next_pidmap(struct pid_namespace *pid_ns, unsigned int last);
119
120extern struct pid *alloc_pid(struct pid_namespace *ns);
121extern void free_pid(struct pid *pid);
122extern void disable_pid_allocation(struct pid_namespace *ns);
123
124
125
126
127
128
129
130
131
132
133
134static inline struct pid_namespace *ns_of_pid(struct pid *pid)
135{
136 struct pid_namespace *ns = NULL;
137 if (pid)
138 ns = pid->numbers[pid->level].ns;
139 return ns;
140}
141
142
143
144
145
146
147
148static inline bool is_child_reaper(struct pid *pid)
149{
150 return pid->numbers[pid->level].nr == 1;
151}
152
153
154
155
156
157
158
159
160
161
162
163
164static inline pid_t pid_nr(struct pid *pid)
165{
166 pid_t nr = 0;
167 if (pid)
168 nr = pid->numbers[0].nr;
169 return nr;
170}
171
172pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns);
173pid_t pid_vnr(struct pid *pid);
174
175#define do_each_pid_task(pid, type, task) \
176 do { \
177 if ((pid) != NULL) \
178 hlist_for_each_entry_rcu((task), \
179 &(pid)->tasks[type], pids[type].node) {
180
181
182
183
184
185#define while_each_pid_task(pid, type, task) \
186 if (type == PIDTYPE_PID) \
187 break; \
188 } \
189 } while (0)
190
191#define do_each_pid_thread(pid, type, task) \
192 do_each_pid_task(pid, type, task) { \
193 struct task_struct *tg___ = task; \
194 do {
195
196#define while_each_pid_thread(pid, type, task) \
197 } while_each_thread(tg___, task); \
198 task = tg___; \
199 } while_each_pid_task(pid, type, task)
200#endif
201