blob: 0dbbc66b6ec6b1e6322ac1b3904522afe68d327e [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
110 kref_init(&ns->kref);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800111 ns->level = level;
Alexey Dobriyaned469a62009-06-17 16:27:52 -0700112 ns->parent = get_pid_ns(parent_pid_ns);
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700113 ns->user_ns = get_user_ns(user_ns);
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700114 INIT_WORK(&ns->proc_work, proc_cleanup_work);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800115
116 set_bit(0, ns->pidmap[0].page);
117 atomic_set(&ns->pidmap[0].nr_free, BITS_PER_PAGE - 1);
118
Pavel Emelyanov84406c12008-07-25 01:48:42 -0700119 for (i = 1; i < PIDMAP_ENTRIES; i++)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800120 atomic_set(&ns->pidmap[i].nr_free, BITS_PER_PAGE);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800121
122 return ns;
123
124out_free_map:
125 kfree(ns->pidmap[0].page);
126out_free:
127 kmem_cache_free(pid_ns_cachep, ns);
128out:
Eric W. Biederman4308eeb2011-03-23 16:43:13 -0700129 return ERR_PTR(err);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800130}
131
132static void destroy_pid_namespace(struct pid_namespace *ns)
133{
134 int i;
135
136 for (i = 0; i < PIDMAP_ENTRIES; i++)
137 kfree(ns->pidmap[i].page);
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700138 put_user_ns(ns->user_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800139 kmem_cache_free(pid_ns_cachep, ns);
140}
141
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700142struct pid_namespace *copy_pid_ns(unsigned long flags,
143 struct user_namespace *user_ns, struct pid_namespace *old_ns)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800144{
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800145 if (!(flags & CLONE_NEWPID))
Alexey Dobriyandca4a972009-06-17 16:27:53 -0700146 return get_pid_ns(old_ns);
Sukadev Bhattiprolue5a47382009-09-23 15:57:22 -0700147 if (flags & (CLONE_THREAD|CLONE_PARENT))
Alexey Dobriyandca4a972009-06-17 16:27:53 -0700148 return ERR_PTR(-EINVAL);
Eric W. Biederman225778d2012-08-02 08:35:35 -0700149 if (task_active_pid_ns(current) != old_ns)
150 return ERR_PTR(-EINVAL);
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700151 return create_pid_namespace(user_ns, old_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800152}
153
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -0700154static void free_pid_ns(struct kref *kref)
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800155{
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -0700156 struct pid_namespace *ns;
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800157
158 ns = container_of(kref, struct pid_namespace, kref);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800159 destroy_pid_namespace(ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800160}
Cyrill Gorcunovbbc2e3e2012-10-19 13:56:53 -0700161
162void put_pid_ns(struct pid_namespace *ns)
163{
164 struct pid_namespace *parent;
165
166 while (ns != &init_pid_ns) {
167 parent = ns->parent;
168 if (!kref_put(&ns->kref, free_pid_ns))
169 break;
170 ns = parent;
171 }
172}
173EXPORT_SYMBOL_GPL(put_pid_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800174
175void zap_pid_ns_processes(struct pid_namespace *pid_ns)
176{
177 int nr;
178 int rc;
Eric W. Biederman00c10bc2012-05-31 16:26:40 -0700179 struct task_struct *task, *me = current;
180
181 /* Ignore SIGCHLD causing any terminated children to autoreap */
182 spin_lock_irq(&me->sighand->siglock);
183 me->sighand->action[SIGCHLD - 1].sa.sa_handler = SIG_IGN;
184 spin_unlock_irq(&me->sighand->siglock);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800185
186 /*
187 * The last thread in the cgroup-init thread group is terminating.
188 * Find remaining pid_ts in the namespace, signal and wait for them
189 * to exit.
190 *
191 * Note: This signals each threads in the namespace - even those that
192 * belong to the same thread group, To avoid this, we would have
193 * to walk the entire tasklist looking a processes in this
194 * namespace, but that could be unnecessarily expensive if the
195 * pid namespace has just a few processes. Or we need to
196 * maintain a tasklist for each pid namespace.
197 *
198 */
199 read_lock(&tasklist_lock);
200 nr = next_pidmap(pid_ns, 1);
201 while (nr > 0) {
Sukadev Bhattiprolue4da0262009-04-02 16:58:06 -0700202 rcu_read_lock();
203
Sukadev Bhattiprolue4da0262009-04-02 16:58:06 -0700204 task = pid_task(find_vpid(nr), PIDTYPE_PID);
Oleg Nesterova02d6fd2012-03-23 15:02:46 -0700205 if (task && !__fatal_signal_pending(task))
206 send_sig_info(SIGKILL, SEND_SIG_FORCED, task);
Sukadev Bhattiprolue4da0262009-04-02 16:58:06 -0700207
208 rcu_read_unlock();
209
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800210 nr = next_pidmap(pid_ns, nr);
211 }
212 read_unlock(&tasklist_lock);
213
Eric W. Biederman6347e902012-06-20 12:53:03 -0700214 /* Firstly reap the EXIT_ZOMBIE children we may have. */
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800215 do {
216 clear_thread_flag(TIF_SIGPENDING);
217 rc = sys_wait4(-1, NULL, __WALL, NULL);
218 } while (rc != -ECHILD);
219
Eric W. Biederman6347e902012-06-20 12:53:03 -0700220 /*
221 * sys_wait4() above can't reap the TASK_DEAD children.
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700222 * Make sure they all go away, see free_pid().
Eric W. Biederman6347e902012-06-20 12:53:03 -0700223 */
224 for (;;) {
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700225 set_current_state(TASK_UNINTERRUPTIBLE);
226 if (pid_ns->nr_hashed == 1)
Eric W. Biederman6347e902012-06-20 12:53:03 -0700227 break;
228 schedule();
229 }
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700230 __set_current_state(TASK_RUNNING);
Eric W. Biederman6347e902012-06-20 12:53:03 -0700231
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700232 if (pid_ns->reboot)
233 current->signal->group_exit_code = pid_ns->reboot;
234
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700235 acct_exit_ns(pid_ns);
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800236 return;
237}
238
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700239#ifdef CONFIG_CHECKPOINT_RESTORE
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800240static int pid_ns_ctl_handler(struct ctl_table *table, int write,
241 void __user *buffer, size_t *lenp, loff_t *ppos)
242{
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700243 struct pid_namespace *pid_ns = task_active_pid_ns(current);
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800244 struct ctl_table tmp = *table;
245
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700246 if (write && !ns_capable(pid_ns->user_ns, CAP_SYS_ADMIN))
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800247 return -EPERM;
248
249 /*
250 * Writing directly to ns' last_pid field is OK, since this field
251 * is volatile in a living namespace anyway and a code writing to
252 * it should synchronize its usage with external means.
253 */
254
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -0700255 tmp.data = &pid_ns->last_pid;
Andrew Vagin579035d2012-09-17 14:09:12 -0700256 return proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800257}
258
Andrew Vagin579035d2012-09-17 14:09:12 -0700259extern int pid_max;
260static int zero = 0;
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800261static struct ctl_table pid_ns_ctl_table[] = {
262 {
263 .procname = "ns_last_pid",
264 .maxlen = sizeof(int),
265 .mode = 0666, /* permissions are checked in the handler */
266 .proc_handler = pid_ns_ctl_handler,
Andrew Vagin579035d2012-09-17 14:09:12 -0700267 .extra1 = &zero,
268 .extra2 = &pid_max,
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800269 },
270 { }
271};
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800272static struct ctl_path kern_path[] = { { .procname = "kernel", }, { } };
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700273#endif /* CONFIG_CHECKPOINT_RESTORE */
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800274
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700275int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd)
276{
277 if (pid_ns == &init_pid_ns)
278 return 0;
279
280 switch (cmd) {
281 case LINUX_REBOOT_CMD_RESTART2:
282 case LINUX_REBOOT_CMD_RESTART:
283 pid_ns->reboot = SIGHUP;
284 break;
285
286 case LINUX_REBOOT_CMD_POWER_OFF:
287 case LINUX_REBOOT_CMD_HALT:
288 pid_ns->reboot = SIGINT;
289 break;
290 default:
291 return -EINVAL;
292 }
293
294 read_lock(&tasklist_lock);
295 force_sig(SIGKILL, pid_ns->child_reaper);
296 read_unlock(&tasklist_lock);
297
298 do_exit(0);
299
300 /* Not reached */
301 return 0;
302}
303
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800304static __init int pid_namespaces_init(void)
305{
306 pid_ns_cachep = KMEM_CACHE(pid_namespace, SLAB_PANIC);
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700307
308#ifdef CONFIG_CHECKPOINT_RESTORE
Pavel Emelyanovb8f566b2012-01-12 17:20:27 -0800309 register_sysctl_paths(kern_path, pid_ns_ctl_table);
Cyrill Gorcunov98ed57e2012-05-31 16:26:42 -0700310#endif
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800311 return 0;
312}
313
314__initcall(pid_namespaces_init);