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, 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
135
136static inline pid_t pid_nr(struct pid *pid)
137{
138 pid_t nr = 0;
139 if (pid)
140 nr = pid->numbers[0].nr;
141 return nr;
142}
143
144pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns);
145pid_t pid_vnr(struct pid *pid);
146
147#define do_each_pid_task(pid, type, task) \
148 do { \
149 struct hlist_node *pos___; \
150 if (pid != NULL) \
151 hlist_for_each_entry_rcu((task), pos___, \
152 &pid->tasks[type], pids[type].node) {
153
154
155
156
157
158#define while_each_pid_task(pid, type, task) \
159 if (type == PIDTYPE_PID) \
160 break; \
161 } \
162 } while (0)
163
164#define do_each_pid_thread(pid, type, task) \
165 do_each_pid_task(pid, type, task) { \
166 struct task_struct *tg___ = task; \
167 do {
168
169#define while_each_pid_thread(pid, type, task) \
170 } while_each_thread(tg___, task); \
171 task = tg___; \
172 } while_each_pid_task(pid, type, task)
173#endif
174