blob: bea15bdf82b04c28d2f5d8c1a32a46b2621cb295 [file] [log] [blame]
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -08001/*
2 * Pid namespaces
3 *
4 * Authors:
5 * (C) 2007 Pavel Emelyanov <xemul@openvz.org>, OpenVZ, SWsoft Inc.
6 * (C) 2007 Sukadev Bhattiprolu <sukadev@us.ibm.com>, IBM
7 * Many thanks to Oleg Nesterov for comments and help
8 *
9 */
10
11#include <linux/pid.h>
12#include <linux/pid_namespace.h>
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -070013#include <linux/user_namespace.h>
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080014#include <linux/syscalls.h>
15#include <linux/err.h>
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -070016#include <linux/acct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Eric W. Biederman4308eeb2011-03-23 16:43:13 -070018#include <linux/proc_fs.h>
Daniel Lezcanocf3f8922012-03-28 14:42:51 -070019#include <linux/reboot.h>
Eric W. Biederman523a6a92012-08-03 19:11:22 -070020#include <linux/export.h>
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080021
22#define BITS_PER_PAGE (PAGE_SIZE*8)
23
24struct pid_cache {
25 int nr_ids;
26 char name[16];
27 struct kmem_cache *cachep;
28 struct list_head list;
29};
30
31static LIST_HEAD(pid_caches_lh);
32static DEFINE_MUTEX(pid_caches_mutex);
33static struct kmem_cache *pid_ns_cachep;
34
35/*
36 * creates the kmem cache to allocate pids from.
37 * @nr_ids: the number of numerical ids this pid will have to carry
38 */
39
40static struct kmem_cache *create_pid_cachep(int nr_ids)
41{
42 struct pid_cache *pcache;
43 struct kmem_cache *cachep;
44
45 mutex_lock(&pid_caches_mutex);
46 list_for_each_entry(pcache, &pid_caches_lh, list)
47 if (pcache->nr_ids == nr_ids)
48 goto out;
49
50 pcache = kmalloc(sizeof(struct pid_cache), GFP_KERNEL);
51 if (pcache == NULL)
52 goto err_alloc;
53
54 snprintf(pcache->name, sizeof(pcache->name), "pid_%d", nr_ids);
55 cachep = kmem_cache_create(pcache->name,
56 sizeof(struct pid) + (nr_ids - 1) * sizeof(struct upid),
57 0, SLAB_HWCACHE_ALIGN, NULL);
58 if (cachep == NULL)
59 goto err_cachep;
60
61 pcache->nr_ids = nr_ids;
62 pcache->cachep = cachep;
63 list_add(&pcache->list, &pid_caches_lh);
64out:
65 mutex_unlock(&pid_caches_mutex);
66 return pcache->cachep;
67
68err_cachep:
69 kfree(pcache);
70err_alloc:
71 mutex_unlock(&pid_caches_mutex);
72 return NULL;
73}
74
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -070075static void proc_cleanup_work(struct work_struct *work)
76{
77 struct pid_namespace *ns = container_of(work, struct pid_namespace, proc_work);
78 pid_ns_release_proc(ns);
79}
80
Andrew Vaginf2302502012-10-25 13:38:07 -070081/* MAX_PID_NS_LEVEL is needed for limiting size of 'struct pid' */
82#define MAX_PID_NS_LEVEL 32
83
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -070084static struct pid_namespace *create_pid_namespace(struct user_namespace *user_ns,
85 struct pid_namespace *parent_pid_ns)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080086{
87 struct pid_namespace *ns;
Alexey Dobriyaned469a62009-06-17 16:27:52 -070088 unsigned int level = parent_pid_ns->level + 1;
Andrew Vaginf2302502012-10-25 13:38:07 -070089 int i;
90 int err;
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080091
Andrew Vaginf2302502012-10-25 13:38:07 -070092 if (level > MAX_PID_NS_LEVEL) {
93 err = -EINVAL;
94 goto out;
95 }
96
97 err = -ENOMEM;
Pavel Emelyanov84406c12008-07-25 01:48:42 -070098 ns = kmem_cache_zalloc(pid_ns_cachep, GFP_KERNEL);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -080099 if (ns == NULL)
100 goto out;
101
102 ns->pidmap[0].page = kzalloc(PAGE_SIZE, GFP_KERNEL);
103 if (!ns->pidmap[0].page)
104 goto out_free;
105
106 ns->pid_cachep = create_pid_cachep(level + 1);
107 if (ns->pid_cachep == NULL)
108 goto out_free_map;
109
Eric W. Biederman98f842e2011-06-15 10:21:48 -0700110 err = proc_alloc_inum(&ns->proc_inum);
111 if (err)
112 goto out_free_map;
113
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800114 kref_init(&ns->kref);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800115 ns->level = level;
Alexey Dobriyaned469a62009-06-17 16:27:52 -0700116 ns->parent = get_pid_ns(parent_pid_ns);
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700117 ns->user_ns = get_user_ns(user_ns);
Eric W. Biedermanc876ad762012-12-21 20:27:12 -0800118 ns->nr_hashed = PIDNS_HASH_ADDING;
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700119 INIT_WORK(&ns->proc_work, proc_cleanup_work);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800120
121 set_bit(0, ns->pidmap[0].page);
122 atomic_set(&ns->pidmap[0].nr_free, BITS_PER_PAGE - 1);
123
Pavel Emelyanov84406c12008-07-25 01:48:42 -0700124 for (i = 1; i < PIDMAP_ENTRIES; i++)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800125 atomic_set(&ns->pidmap[i].nr_free, BITS_PER_PAGE);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800126
127 return ns;
128
129out_free_map:
130 kfree(ns->pidmap[0].page);
131out_free:
132 kmem_cache_free(pid_ns_cachep, ns);
133out:
Eric W. Biederman4308eeb2011-03-23 16:43:13 -0700134 return ERR_PTR(err);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800135}
136
137static void destroy_pid_namespace(struct pid_namespace *ns)
138{
139 int i;
140
Eric W. Biederman98f842e2011-06-15 10:21:48 -0700141 proc_free_inum(ns->proc_inum);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800142 for (i = 0; i < PIDMAP_ENTRIES; i++)
143 kfree(ns->pidmap[i].page);
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700144 put_user_ns(ns->user_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800145 kmem_cache_free(pid_ns_cachep, ns);
146}
147
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700148struct pid_namespace *copy_pid_ns(unsigned long flags,
149 struct user_namespace *user_ns, struct pid_namespace *old_ns)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800150{
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800151 if (!(flags & CLONE_NEWPID))
Alexey Dobriyandca4a972009-06-17 16:27:53 -0700152 return get_pid_ns(old_ns);
Eric W. Biederman225778d2012-08-02 08:35:35 -0700153 if (task_active_pid_ns(current) != old_ns)
154 return ERR_PTR(-EINVAL);
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700155 return create_pid_namespace(user_ns, old_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800156}
157
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -0700158static void free_pid_ns(struct kref *kref)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800159{
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -0700160 struct pid_namespace *ns;
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800161
162 ns = container_of(kref, struct pid_namespace, kref);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800163 destroy_pid_namespace(ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800164}
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -0700165
166void put_pid_ns(struct pid_namespace *ns)
167{
168 struct pid_namespace *parent;
169
170 while (ns != &init_pid_ns) {
171 parent = ns->parent;
172 if (!kref_put(&ns->kref, free_pid_ns))
173 break;
174 ns = parent;
175 }
176}
177EXPORT_SYMBOL_GPL(put_pid_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800178
179void zap_pid_ns_processes(struct pid_namespace *pid_ns)
180{
181 int nr;
182 int rc;
Eric W. Biederman00c10bc2012-05-31 16:26:40 -0700183 struct task_struct *task, *me = current;
Eric W. Biederman751c6442013-03-26 02:27:11 -0700184 int init_pids = thread_group_leader(me) ? 1 : 2;
Eric W. Biederman00c10bc2012-05-31 16:26:40 -0700185
Eric W. Biedermanc876ad762012-12-21 20:27:12 -0800186 /* Don't allow any more processes into the pid namespace */
187 disable_pid_allocation(pid_ns);
188
Eric W. Biederman00c10bc2012-05-31 16:26:40 -0700189 /* Ignore SIGCHLD causing any terminated children to autoreap */
190 spin_lock_irq(&me->sighand->siglock);
191 me->sighand->action[SIGCHLD - 1].sa.sa_handler = SIG_IGN;
192 spin_unlock_irq(&me->sighand->siglock);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800193
194 /*
195 * The last thread in the cgroup-init thread group is terminating.
196 * Find remaining pid_ts in the namespace, signal and wait for them
197 * to exit.
198 *
199 * Note: This signals each threads in the namespace - even those that
200 * belong to the same thread group, To avoid this, we would have
201 * to walk the entire tasklist looking a processes in this
202 * namespace, but that could be unnecessarily expensive if the
203 * pid namespace has just a few processes. Or we need to
204 * maintain a tasklist for each pid namespace.
205 *
206 */
207 read_lock(&tasklist_lock);
208 nr = next_pidmap(pid_ns, 1);
209 while (nr > 0) {
Sukadev Bhattiprolue4da0262009-04-02 16:58:06 -0700210 rcu_read_lock();
211
Sukadev Bhattiprolue4da0262009-04-02 16:58:06 -0700212 task = pid_task(find_vpid(nr), PIDTYPE_PID);
Oleg Nesterova02d6fd2012-03-23 15:02:46 -0700213 if (task && !__fatal_signal_pending(task))
214 send_sig_info(SIGKILL, SEND_SIG_FORCED, task);
Sukadev Bhattiprolue4da0262009-04-02 16:58:06 -0700215
216 rcu_read_unlock();
217
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800218 nr = next_pidmap(pid_ns, nr);
219 }
220 read_unlock(&tasklist_lock);
221
Eric W. Biederman6347e902012-06-20 12:53:03 -0700222 /* Firstly reap the EXIT_ZOMBIE children we may have. */
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800223 do {
224 clear_thread_flag(TIF_SIGPENDING);
225 rc = sys_wait4(-1, NULL, __WALL, NULL);
226 } while (rc != -ECHILD);
227
Eric W. Biederman6347e902012-06-20 12:53:03 -0700228 /*
229 * sys_wait4() above can't reap the TASK_DEAD children.
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700230 * Make sure they all go away, see free_pid().
Eric W. Biederman6347e902012-06-20 12:53:03 -0700231 */
232 for (;;) {
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700233 set_current_state(TASK_UNINTERRUPTIBLE);
Eric W. Biederman751c6442013-03-26 02:27:11 -0700234 if (pid_ns->nr_hashed == init_pids)
Eric W. Biederman6347e902012-06-20 12:53:03 -0700235 break;
236 schedule();
237 }
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700238 __set_current_state(TASK_RUNNING);
Eric W. Biederman6347e902012-06-20 12:53:03 -0700239
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700240 if (pid_ns->reboot)
241 current->signal->group_exit_code = pid_ns->reboot;
242
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700243 acct_exit_ns(pid_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800244 return;
245}
246
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700247#ifdef CONFIG_CHECKPOINT_RESTORE
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800248static int pid_ns_ctl_handler(struct ctl_table *table, int write,
249 void __user *buffer, size_t *lenp, loff_t *ppos)
250{
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700251 struct pid_namespace *pid_ns = task_active_pid_ns(current);
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800252 struct ctl_table tmp = *table;
253
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700254 if (write && !ns_capable(pid_ns->user_ns, CAP_SYS_ADMIN))
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800255 return -EPERM;
256
257 /*
258 * Writing directly to ns' last_pid field is OK, since this field
259 * is volatile in a living namespace anyway and a code writing to
260 * it should synchronize its usage with external means.
261 */
262
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700263 tmp.data = &pid_ns->last_pid;
Andrew Vagin579035d2012-09-17 14:09:12 -0700264 return proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800265}
266
Andrew Vagin579035d2012-09-17 14:09:12 -0700267extern int pid_max;
268static int zero = 0;
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800269static struct ctl_table pid_ns_ctl_table[] = {
270 {
271 .procname = "ns_last_pid",
272 .maxlen = sizeof(int),
273 .mode = 0666, /* permissions are checked in the handler */
274 .proc_handler = pid_ns_ctl_handler,
Andrew Vagin579035d2012-09-17 14:09:12 -0700275 .extra1 = &zero,
276 .extra2 = &pid_max,
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800277 },
278 { }
279};
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800280static struct ctl_path kern_path[] = { { .procname = "kernel", }, { } };
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700281#endif /* CONFIG_CHECKPOINT_RESTORE */
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800282
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700283int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd)
284{
285 if (pid_ns == &init_pid_ns)
286 return 0;
287
288 switch (cmd) {
289 case LINUX_REBOOT_CMD_RESTART2:
290 case LINUX_REBOOT_CMD_RESTART:
291 pid_ns->reboot = SIGHUP;
292 break;
293
294 case LINUX_REBOOT_CMD_POWER_OFF:
295 case LINUX_REBOOT_CMD_HALT:
296 pid_ns->reboot = SIGINT;
297 break;
298 default:
299 return -EINVAL;
300 }
301
302 read_lock(&tasklist_lock);
303 force_sig(SIGKILL, pid_ns->child_reaper);
304 read_unlock(&tasklist_lock);
305
306 do_exit(0);
307
308 /* Not reached */
309 return 0;
310}
311
Eric W. Biederman57e83912010-03-07 18:17:03 -0800312static void *pidns_get(struct task_struct *task)
313{
314 struct pid_namespace *ns;
315
316 rcu_read_lock();
317 ns = get_pid_ns(task_active_pid_ns(task));
318 rcu_read_unlock();
319
320 return ns;
321}
322
323static void pidns_put(void *ns)
324{
325 put_pid_ns(ns);
326}
327
328static int pidns_install(struct nsproxy *nsproxy, void *ns)
329{
330 struct pid_namespace *active = task_active_pid_ns(current);
331 struct pid_namespace *ancestor, *new = ns;
332
Eric W. Biederman5e4a0842012-12-14 07:55:36 -0800333 if (!ns_capable(new->user_ns, CAP_SYS_ADMIN) ||
334 !nsown_capable(CAP_SYS_ADMIN))
Eric W. Biederman57e83912010-03-07 18:17:03 -0800335 return -EPERM;
336
337 /*
338 * Only allow entering the current active pid namespace
339 * or a child of the current active pid namespace.
340 *
341 * This is required for fork to return a usable pid value and
342 * this maintains the property that processes and their
343 * children can not escape their current pid namespace.
344 */
345 if (new->level < active->level)
346 return -EINVAL;
347
348 ancestor = new;
349 while (ancestor->level > active->level)
350 ancestor = ancestor->parent;
351 if (ancestor != active)
352 return -EINVAL;
353
354 put_pid_ns(nsproxy->pid_ns);
355 nsproxy->pid_ns = get_pid_ns(new);
356 return 0;
357}
358
Eric W. Biederman98f842e2011-06-15 10:21:48 -0700359static unsigned int pidns_inum(void *ns)
360{
361 struct pid_namespace *pid_ns = ns;
362 return pid_ns->proc_inum;
363}
364
Eric W. Biederman57e83912010-03-07 18:17:03 -0800365const struct proc_ns_operations pidns_operations = {
366 .name = "pid",
367 .type = CLONE_NEWPID,
368 .get = pidns_get,
369 .put = pidns_put,
370 .install = pidns_install,
Eric W. Biederman98f842e2011-06-15 10:21:48 -0700371 .inum = pidns_inum,
Eric W. Biederman57e83912010-03-07 18:17:03 -0800372};
373
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800374static __init int pid_namespaces_init(void)
375{
376 pid_ns_cachep = KMEM_CACHE(pid_namespace, SLAB_PANIC);
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700377
378#ifdef CONFIG_CHECKPOINT_RESTORE
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800379 register_sysctl_paths(kern_path, pid_ns_ctl_table);
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700380#endif
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800381 return 0;
382}
383
384__initcall(pid_namespaces_init);