1
2#ifndef _LINUX_PID_H
3#define _LINUX_PID_H
4
5#include <linux/rculist.h>
6
7enum pid_type
8{
9 PIDTYPE_PID,
10 PIDTYPE_TGID,
11 PIDTYPE_PGID,
12 PIDTYPE_SID,
13 PIDTYPE_MAX,
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
50
51
52struct upid {
53 int nr;
54 struct pid_namespace *ns;
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
69static inline struct pid *get_pid(struct pid *pid)
70{
71 if (pid)
72 atomic_inc(&pid->count);
73 return pid;
74}
75
76extern void put_pid(struct pid *pid);
77extern struct task_struct *pid_task(struct pid *pid, enum pid_type);
78extern struct task_struct *get_pid_task(struct pid *pid, enum pid_type);
79
80extern struct pid *get_task_pid(struct task_struct *task, enum pid_type type);
81
82
83
84
85extern void attach_pid(struct task_struct *task, enum pid_type);
86extern void detach_pid(struct task_struct *task, enum pid_type);
87extern void change_pid(struct task_struct *task, enum pid_type,
88 struct pid *pid);
89extern void transfer_pid(struct task_struct *old, struct task_struct *new,
90 enum pid_type);
91
92struct pid_namespace;
93extern struct pid_namespace init_pid_ns;
94
95
96
97
98
99
100
101
102
103
104extern struct pid *find_pid_ns(int nr, struct pid_namespace *ns);
105extern struct pid *find_vpid(int nr);
106
107
108
109
110extern struct pid *find_get_pid(int nr);
111extern struct pid *find_ge_pid(int nr, struct pid_namespace *);
112int next_pidmap(struct pid_namespace *pid_ns, unsigned int last);
113
114extern struct pid *alloc_pid(struct pid_namespace *ns);
115extern void free_pid(struct pid *pid);
116extern void disable_pid_allocation(struct pid_namespace *ns);
117
118
119
120
121
122
123
124
125
126
127
128static inline struct pid_namespace *ns_of_pid(struct pid *pid)
129{
130 struct pid_namespace *ns = NULL;
131 if (pid)
132 ns = pid->numbers[pid->level].ns;
133 return ns;
134}
135
136
137
138
139
140
141
142static inline bool is_child_reaper(struct pid *pid)
143{
144 return pid->numbers[pid->level].nr == 1;
145}
146
147
148
149
150
151
152
153
154
155
156
157
158static inline pid_t pid_nr(struct pid *pid)
159{
160 pid_t nr = 0;
161 if (pid)
162 nr = pid->numbers[0].nr;
163 return nr;
164}
165
166pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns);
167pid_t pid_vnr(struct pid *pid);
168
169#define do_each_pid_task(pid, type, task) \
170 do { \
171 if ((pid) != NULL) \
172 hlist_for_each_entry_rcu((task), \
173 &(pid)->tasks[type], pid_links[type]) {
174
175
176
177
178
179#define while_each_pid_task(pid, type, task) \
180 if (type == PIDTYPE_PID) \
181 break; \
182 } \
183 } while (0)
184
185#define do_each_pid_thread(pid, type, task) \
186 do_each_pid_task(pid, type, task) { \
187 struct task_struct *tg___ = task; \
188 for_each_thread(tg___, task) {
189
190#define while_each_pid_thread(pid, type, task) \
191 } \
192 task = tg___; \
193 } while_each_pid_task(pid, type, task)
194#endif
195