1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/slab.h>
32#include <linux/init.h>
33#include <linux/rculist.h>
34#include <linux/bootmem.h>
35#include <linux/hash.h>
36#include <linux/pid_namespace.h>
37#include <linux/init_task.h>
38#include <linux/syscalls.h>
39
40#define pid_hashfn(nr, ns) \
41 hash_long((unsigned long)nr + (unsigned long)ns, pidhash_shift)
42static struct hlist_head *pid_hash;
43static unsigned int pidhash_shift = 4;
44struct pid init_struct_pid = INIT_STRUCT_PID;
45
46int pid_max = PID_MAX_DEFAULT;
47
48#define RESERVED_PIDS 300
49
50int pid_max_min = RESERVED_PIDS + 1;
51int pid_max_max = PID_MAX_LIMIT;
52
53#define BITS_PER_PAGE (PAGE_SIZE*8)
54#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)
55
56static inline int mk_pid(struct pid_namespace *pid_ns,
57 struct pidmap *map, int off)
58{
59 return (map - pid_ns->pidmap)*BITS_PER_PAGE + off;
60}
61
62#define find_next_offset(map, off) \
63 find_next_zero_bit((map)->page, BITS_PER_PAGE, off)
64
65
66
67
68
69
70
71struct pid_namespace init_pid_ns = {
72 .kref = {
73 .refcount = ATOMIC_INIT(2),
74 },
75 .pidmap = {
76 [ 0 ... PIDMAP_ENTRIES-1] = { ATOMIC_INIT(BITS_PER_PAGE), NULL }
77 },
78 .last_pid = 0,
79 .level = 0,
80 .child_reaper = &init_task,
81};
82EXPORT_SYMBOL_GPL(init_pid_ns);
83
84int is_container_init(struct task_struct *tsk)
85{
86 int ret = 0;
87 struct pid *pid;
88
89 rcu_read_lock();
90 pid = task_pid(tsk);
91 if (pid != NULL && pid->numbers[pid->level].nr == 1)
92 ret = 1;
93 rcu_read_unlock();
94
95 return ret;
96}
97EXPORT_SYMBOL(is_container_init);
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113static __cacheline_aligned_in_smp DEFINE_SPINLOCK(pidmap_lock);
114
115static void free_pidmap(struct upid *upid)
116{
117 int nr = upid->nr;
118 struct pidmap *map = upid->ns->pidmap + nr / BITS_PER_PAGE;
119 int offset = nr & BITS_PER_PAGE_MASK;
120
121 clear_bit(offset, map->page);
122 atomic_inc(&map->nr_free);
123}
124
125static int alloc_pidmap(struct pid_namespace *pid_ns)
126{
127 int i, offset, max_scan, pid, last = pid_ns->last_pid;
128 struct pidmap *map;
129
130 pid = last + 1;
131 if (pid >= pid_max)
132 pid = RESERVED_PIDS;
133 offset = pid & BITS_PER_PAGE_MASK;
134 map = &pid_ns->pidmap[pid/BITS_PER_PAGE];
135 max_scan = (pid_max + BITS_PER_PAGE - 1)/BITS_PER_PAGE - !offset;
136 for (i = 0; i <= max_scan; ++i) {
137 if (unlikely(!map->page)) {
138 void *page = kzalloc(PAGE_SIZE, GFP_KERNEL);
139
140
141
142
143 spin_lock_irq(&pidmap_lock);
144 if (map->page)
145 kfree(page);
146 else
147 map->page = page;
148 spin_unlock_irq(&pidmap_lock);
149 if (unlikely(!map->page))
150 break;
151 }
152 if (likely(atomic_read(&map->nr_free))) {
153 do {
154 if (!test_and_set_bit(offset, map->page)) {
155 atomic_dec(&map->nr_free);
156 pid_ns->last_pid = pid;
157 return pid;
158 }
159 offset = find_next_offset(map, offset);
160 pid = mk_pid(pid_ns, map, offset);
161
162
163
164
165
166
167 } while (offset < BITS_PER_PAGE && pid < pid_max &&
168 (i != max_scan || pid < last ||
169 !((last+1) & BITS_PER_PAGE_MASK)));
170 }
171 if (map < &pid_ns->pidmap[(pid_max-1)/BITS_PER_PAGE]) {
172 ++map;
173 offset = 0;
174 } else {
175 map = &pid_ns->pidmap[0];
176 offset = RESERVED_PIDS;
177 if (unlikely(last == offset))
178 break;
179 }
180 pid = mk_pid(pid_ns, map, offset);
181 }
182 return -1;
183}
184
185int next_pidmap(struct pid_namespace *pid_ns, unsigned int last)
186{
187 int offset;
188 struct pidmap *map, *end;
189
190 if (last >= PID_MAX_LIMIT)
191 return -1;
192
193 offset = (last + 1) & BITS_PER_PAGE_MASK;
194 map = &pid_ns->pidmap[(last + 1)/BITS_PER_PAGE];
195 end = &pid_ns->pidmap[PIDMAP_ENTRIES];
196 for (; map < end; map++, offset = 0) {
197 if (unlikely(!map->page))
198 continue;
199 offset = find_next_bit((map)->page, BITS_PER_PAGE, offset);
200 if (offset < BITS_PER_PAGE)
201 return mk_pid(pid_ns, map, offset);
202 }
203 return -1;
204}
205
206void put_pid(struct pid *pid)
207{
208 struct pid_namespace *ns;
209
210 if (!pid)
211 return;
212
213 ns = pid->numbers[pid->level].ns;
214 if ((atomic_read(&pid->count) == 1) ||
215 atomic_dec_and_test(&pid->count)) {
216 kmem_cache_free(ns->pid_cachep, pid);
217 put_pid_ns(ns);
218 }
219}
220EXPORT_SYMBOL_GPL(put_pid);
221
222static void delayed_put_pid(struct rcu_head *rhp)
223{
224 struct pid *pid = container_of(rhp, struct pid, rcu);
225 put_pid(pid);
226}
227
228void free_pid(struct pid *pid)
229{
230
231 int i;
232 unsigned long flags;
233
234 spin_lock_irqsave(&pidmap_lock, flags);
235 for (i = 0; i <= pid->level; i++)
236 hlist_del_rcu(&pid->numbers[i].pid_chain);
237 spin_unlock_irqrestore(&pidmap_lock, flags);
238
239 for (i = 0; i <= pid->level; i++)
240 free_pidmap(pid->numbers + i);
241
242 call_rcu(&pid->rcu, delayed_put_pid);
243}
244
245struct pid *alloc_pid(struct pid_namespace *ns)
246{
247 struct pid *pid;
248 enum pid_type type;
249 int i, nr;
250 struct pid_namespace *tmp;
251 struct upid *upid;
252
253 pid = kmem_cache_alloc(ns->pid_cachep, GFP_KERNEL);
254 if (!pid)
255 goto out;
256
257 tmp = ns;
258 for (i = ns->level; i >= 0; i--) {
259 nr = alloc_pidmap(tmp);
260 if (nr < 0)
261 goto out_free;
262
263 pid->numbers[i].nr = nr;
264 pid->numbers[i].ns = tmp;
265 tmp = tmp->parent;
266 }
267
268 get_pid_ns(ns);
269 pid->level = ns->level;
270 atomic_set(&pid->count, 1);
271 for (type = 0; type < PIDTYPE_MAX; ++type)
272 INIT_HLIST_HEAD(&pid->tasks[type]);
273
274 spin_lock_irq(&pidmap_lock);
275 for (i = ns->level; i >= 0; i--) {
276 upid = &pid->numbers[i];
277 hlist_add_head_rcu(&upid->pid_chain,
278 &pid_hash[pid_hashfn(upid->nr, upid->ns)]);
279 }
280 spin_unlock_irq(&pidmap_lock);
281
282out:
283 return pid;
284
285out_free:
286 while (++i <= ns->level)
287 free_pidmap(pid->numbers + i);
288
289 kmem_cache_free(ns->pid_cachep, pid);
290 pid = NULL;
291 goto out;
292}
293
294struct pid *find_pid_ns(int nr, struct pid_namespace *ns)
295{
296 struct hlist_node *elem;
297 struct upid *pnr;
298
299 hlist_for_each_entry_rcu(pnr, elem,
300 &pid_hash[pid_hashfn(nr, ns)], pid_chain)
301 if (pnr->nr == nr && pnr->ns == ns)
302 return container_of(pnr, struct pid,
303 numbers[ns->level]);
304
305 return NULL;
306}
307EXPORT_SYMBOL_GPL(find_pid_ns);
308
309struct pid *find_vpid(int nr)
310{
311 return find_pid_ns(nr, current->nsproxy->pid_ns);
312}
313EXPORT_SYMBOL_GPL(find_vpid);
314
315
316
317
318void attach_pid(struct task_struct *task, enum pid_type type,
319 struct pid *pid)
320{
321 struct pid_link *link;
322
323 link = &task->pids[type];
324 link->pid = pid;
325 hlist_add_head_rcu(&link->node, &pid->tasks[type]);
326}
327
328static void __change_pid(struct task_struct *task, enum pid_type type,
329 struct pid *new)
330{
331 struct pid_link *link;
332 struct pid *pid;
333 int tmp;
334
335 link = &task->pids[type];
336 pid = link->pid;
337
338 hlist_del_rcu(&link->node);
339 link->pid = new;
340
341 for (tmp = PIDTYPE_MAX; --tmp >= 0; )
342 if (!hlist_empty(&pid->tasks[tmp]))
343 return;
344
345 free_pid(pid);
346}
347
348void detach_pid(struct task_struct *task, enum pid_type type)
349{
350 __change_pid(task, type, NULL);
351}
352
353void change_pid(struct task_struct *task, enum pid_type type,
354 struct pid *pid)
355{
356 __change_pid(task, type, pid);
357 attach_pid(task, type, pid);
358}
359
360
361void transfer_pid(struct task_struct *old, struct task_struct *new,
362 enum pid_type type)
363{
364 new->pids[type].pid = old->pids[type].pid;
365 hlist_replace_rcu(&old->pids[type].node, &new->pids[type].node);
366}
367
368struct task_struct *pid_task(struct pid *pid, enum pid_type type)
369{
370 struct task_struct *result = NULL;
371 if (pid) {
372 struct hlist_node *first;
373 first = rcu_dereference(pid->tasks[type].first);
374 if (first)
375 result = hlist_entry(first, struct task_struct, pids[(type)].node);
376 }
377 return result;
378}
379EXPORT_SYMBOL(pid_task);
380
381
382
383
384struct task_struct *find_task_by_pid_ns(pid_t nr, struct pid_namespace *ns)
385{
386 return pid_task(find_pid_ns(nr, ns), PIDTYPE_PID);
387}
388
389struct task_struct *find_task_by_vpid(pid_t vnr)
390{
391 return find_task_by_pid_ns(vnr, current->nsproxy->pid_ns);
392}
393
394struct pid *get_task_pid(struct task_struct *task, enum pid_type type)
395{
396 struct pid *pid;
397 rcu_read_lock();
398 if (type != PIDTYPE_PID)
399 task = task->group_leader;
400 pid = get_pid(task->pids[type].pid);
401 rcu_read_unlock();
402 return pid;
403}
404
405struct task_struct *get_pid_task(struct pid *pid, enum pid_type type)
406{
407 struct task_struct *result;
408 rcu_read_lock();
409 result = pid_task(pid, type);
410 if (result)
411 get_task_struct(result);
412 rcu_read_unlock();
413 return result;
414}
415
416struct pid *find_get_pid(pid_t nr)
417{
418 struct pid *pid;
419
420 rcu_read_lock();
421 pid = get_pid(find_vpid(nr));
422 rcu_read_unlock();
423
424 return pid;
425}
426EXPORT_SYMBOL_GPL(find_get_pid);
427
428pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns)
429{
430 struct upid *upid;
431 pid_t nr = 0;
432
433 if (pid && ns->level <= pid->level) {
434 upid = &pid->numbers[ns->level];
435 if (upid->ns == ns)
436 nr = upid->nr;
437 }
438 return nr;
439}
440
441pid_t pid_vnr(struct pid *pid)
442{
443 return pid_nr_ns(pid, current->nsproxy->pid_ns);
444}
445EXPORT_SYMBOL_GPL(pid_vnr);
446
447pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type,
448 struct pid_namespace *ns)
449{
450 pid_t nr = 0;
451
452 rcu_read_lock();
453 if (!ns)
454 ns = current->nsproxy->pid_ns;
455 if (likely(pid_alive(task))) {
456 if (type != PIDTYPE_PID)
457 task = task->group_leader;
458 nr = pid_nr_ns(task->pids[type].pid, ns);
459 }
460 rcu_read_unlock();
461
462 return nr;
463}
464EXPORT_SYMBOL(__task_pid_nr_ns);
465
466pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns)
467{
468 return pid_nr_ns(task_tgid(tsk), ns);
469}
470EXPORT_SYMBOL(task_tgid_nr_ns);
471
472struct pid_namespace *task_active_pid_ns(struct task_struct *tsk)
473{
474 return ns_of_pid(task_pid(tsk));
475}
476EXPORT_SYMBOL_GPL(task_active_pid_ns);
477
478
479
480
481
482
483struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
484{
485 struct pid *pid;
486
487 do {
488 pid = find_pid_ns(nr, ns);
489 if (pid)
490 break;
491 nr = next_pidmap(ns, nr);
492 } while (nr > 0);
493
494 return pid;
495}
496
497
498
499
500
501
502void __init pidhash_init(void)
503{
504 int i, pidhash_size;
505
506 pid_hash = alloc_large_system_hash("PID", sizeof(*pid_hash), 0, 18,
507 HASH_EARLY | HASH_SMALL,
508 &pidhash_shift, NULL, 4096);
509 pidhash_size = 1 << pidhash_shift;
510
511 for (i = 0; i < pidhash_size; i++)
512 INIT_HLIST_HEAD(&pid_hash[i]);
513}
514
515void __init pidmap_init(void)
516{
517 init_pid_ns.pidmap[0].page = kzalloc(PAGE_SIZE, GFP_KERNEL);
518
519 set_bit(0, init_pid_ns.pidmap[0].page);
520 atomic_dec(&init_pid_ns.pidmap[0].nr_free);
521
522 init_pid_ns.pid_cachep = KMEM_CACHE(pid,
523 SLAB_HWCACHE_ALIGN | SLAB_PANIC);
524}
525