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
91
92extern void attach_pid(struct task_struct *task, enum pid_type type,
93 struct pid *pid);
94extern void detach_pid(struct task_struct *task, enum pid_type);
95extern void change_pid(struct task_struct *task, enum pid_type,
96 struct pid *pid);
97extern void transfer_pid(struct task_struct *old, struct task_struct *new,
98 enum pid_type);
99
100struct pid_namespace;
101extern struct pid_namespace init_pid_ns;
102
103
104
105
106
107
108
109
110
111
112extern struct pid *find_pid_ns(int nr, struct pid_namespace *ns);
113extern struct pid *find_vpid(int nr);
114
115
116
117
118extern struct pid *find_get_pid(int nr);
119extern struct pid *find_ge_pid(int nr, struct pid_namespace *);
120int next_pidmap(struct pid_namespace *pid_ns, unsigned int last);
121
122extern struct pid *alloc_pid(struct pid_namespace *ns);
123extern void free_pid(struct pid *pid);
124
125
126
127
128
129
130
131
132
133
134
135static inline struct pid_namespace *ns_of_pid(struct pid *pid)
136{
137 struct pid_namespace *ns = NULL;
138 if (pid)
139 ns = pid->numbers[pid->level].ns;
140 return ns;
141}
142
143
144
145
146
147
148
149static inline bool is_child_reaper(struct pid *pid)
150{
151 return pid->numbers[pid->level].nr == 1;
152}
153
154
155
156
157
158
159
160
161
162
163
164
165static inline pid_t pid_nr(struct pid *pid)
166{
167 pid_t nr = 0;
168 if (pid)
169 nr = pid->numbers[0].nr;
170 return nr;
171}
172
173pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns);
174pid_t pid_vnr(struct pid *pid);
175
176#define do_each_pid_task(pid, type, task) \
177 do { \
178 struct hlist_node *pos___; \
179 if ((pid) != NULL) \
180 hlist_for_each_entry_rcu((task), pos___, \
181 &(pid)->tasks[type], pids[type].node) {
182
183
184
185
186
187#define while_each_pid_task(pid, type, task) \
188 if (type == PIDTYPE_PID) \
189 break; \
190 } \
191 } while (0)
192
193#define do_each_pid_thread(pid, type, task) \
194 do_each_pid_task(pid, type, task) { \
195 struct task_struct *tg___ = task; \
196 do {
197
198#define while_each_pid_thread(pid, type, task) \
199 } while_each_thread(tg___, task); \
200 task = tg___; \
201 } while_each_pid_task(pid, type, task)
202#endif
203