Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[deliverable/linux.git] / kernel / user_namespace.c
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License as
4 * published by the Free Software Foundation, version 2 of the
5 * License.
6 */
7
8 #include <linux/export.h>
9 #include <linux/nsproxy.h>
10 #include <linux/slab.h>
11 #include <linux/user_namespace.h>
12 #include <linux/proc_ns.h>
13 #include <linux/highuid.h>
14 #include <linux/cred.h>
15 #include <linux/securebits.h>
16 #include <linux/keyctl.h>
17 #include <linux/key-type.h>
18 #include <keys/user-type.h>
19 #include <linux/seq_file.h>
20 #include <linux/fs.h>
21 #include <linux/uaccess.h>
22 #include <linux/ctype.h>
23 #include <linux/projid.h>
24 #include <linux/fs_struct.h>
25
26 static struct kmem_cache *user_ns_cachep __read_mostly;
27
28 static bool new_idmap_permitted(const struct file *file,
29 struct user_namespace *ns, int cap_setid,
30 struct uid_gid_map *map);
31
32 static void set_cred_user_ns(struct cred *cred, struct user_namespace *user_ns)
33 {
34 /* Start with the same capabilities as init but useless for doing
35 * anything as the capabilities are bound to the new user namespace.
36 */
37 cred->securebits = SECUREBITS_DEFAULT;
38 cred->cap_inheritable = CAP_EMPTY_SET;
39 cred->cap_permitted = CAP_FULL_SET;
40 cred->cap_effective = CAP_FULL_SET;
41 cred->cap_bset = CAP_FULL_SET;
42 #ifdef CONFIG_KEYS
43 key_put(cred->request_key_auth);
44 cred->request_key_auth = NULL;
45 #endif
46 /* tgcred will be cleared in our caller bc CLONE_THREAD won't be set */
47 cred->user_ns = user_ns;
48 }
49
50 /*
51 * Create a new user namespace, deriving the creator from the user in the
52 * passed credentials, and replacing that user with the new root user for the
53 * new namespace.
54 *
55 * This is called by copy_creds(), which will finish setting the target task's
56 * credentials.
57 */
58 int create_user_ns(struct cred *new)
59 {
60 struct user_namespace *ns, *parent_ns = new->user_ns;
61 kuid_t owner = new->euid;
62 kgid_t group = new->egid;
63 int ret;
64
65 if (parent_ns->level > 32)
66 return -EUSERS;
67
68 /*
69 * Verify that we can not violate the policy of which files
70 * may be accessed that is specified by the root directory,
71 * by verifing that the root directory is at the root of the
72 * mount namespace which allows all files to be accessed.
73 */
74 if (current_chrooted())
75 return -EPERM;
76
77 /* The creator needs a mapping in the parent user namespace
78 * or else we won't be able to reasonably tell userspace who
79 * created a user_namespace.
80 */
81 if (!kuid_has_mapping(parent_ns, owner) ||
82 !kgid_has_mapping(parent_ns, group))
83 return -EPERM;
84
85 ns = kmem_cache_zalloc(user_ns_cachep, GFP_KERNEL);
86 if (!ns)
87 return -ENOMEM;
88
89 ret = ns_alloc_inum(&ns->ns);
90 if (ret) {
91 kmem_cache_free(user_ns_cachep, ns);
92 return ret;
93 }
94 ns->ns.ops = &userns_operations;
95
96 atomic_set(&ns->count, 1);
97 /* Leave the new->user_ns reference with the new user namespace. */
98 ns->parent = parent_ns;
99 ns->level = parent_ns->level + 1;
100 ns->owner = owner;
101 ns->group = group;
102
103 set_cred_user_ns(new, ns);
104
105 #ifdef CONFIG_PERSISTENT_KEYRINGS
106 init_rwsem(&ns->persistent_keyring_register_sem);
107 #endif
108 return 0;
109 }
110
111 int unshare_userns(unsigned long unshare_flags, struct cred **new_cred)
112 {
113 struct cred *cred;
114 int err = -ENOMEM;
115
116 if (!(unshare_flags & CLONE_NEWUSER))
117 return 0;
118
119 cred = prepare_creds();
120 if (cred) {
121 err = create_user_ns(cred);
122 if (err)
123 put_cred(cred);
124 else
125 *new_cred = cred;
126 }
127
128 return err;
129 }
130
131 void free_user_ns(struct user_namespace *ns)
132 {
133 struct user_namespace *parent;
134
135 do {
136 parent = ns->parent;
137 #ifdef CONFIG_PERSISTENT_KEYRINGS
138 key_put(ns->persistent_keyring_register);
139 #endif
140 ns_free_inum(&ns->ns);
141 kmem_cache_free(user_ns_cachep, ns);
142 ns = parent;
143 } while (atomic_dec_and_test(&parent->count));
144 }
145 EXPORT_SYMBOL(free_user_ns);
146
147 static u32 map_id_range_down(struct uid_gid_map *map, u32 id, u32 count)
148 {
149 unsigned idx, extents;
150 u32 first, last, id2;
151
152 id2 = id + count - 1;
153
154 /* Find the matching extent */
155 extents = map->nr_extents;
156 smp_rmb();
157 for (idx = 0; idx < extents; idx++) {
158 first = map->extent[idx].first;
159 last = first + map->extent[idx].count - 1;
160 if (id >= first && id <= last &&
161 (id2 >= first && id2 <= last))
162 break;
163 }
164 /* Map the id or note failure */
165 if (idx < extents)
166 id = (id - first) + map->extent[idx].lower_first;
167 else
168 id = (u32) -1;
169
170 return id;
171 }
172
173 static u32 map_id_down(struct uid_gid_map *map, u32 id)
174 {
175 unsigned idx, extents;
176 u32 first, last;
177
178 /* Find the matching extent */
179 extents = map->nr_extents;
180 smp_rmb();
181 for (idx = 0; idx < extents; idx++) {
182 first = map->extent[idx].first;
183 last = first + map->extent[idx].count - 1;
184 if (id >= first && id <= last)
185 break;
186 }
187 /* Map the id or note failure */
188 if (idx < extents)
189 id = (id - first) + map->extent[idx].lower_first;
190 else
191 id = (u32) -1;
192
193 return id;
194 }
195
196 static u32 map_id_up(struct uid_gid_map *map, u32 id)
197 {
198 unsigned idx, extents;
199 u32 first, last;
200
201 /* Find the matching extent */
202 extents = map->nr_extents;
203 smp_rmb();
204 for (idx = 0; idx < extents; idx++) {
205 first = map->extent[idx].lower_first;
206 last = first + map->extent[idx].count - 1;
207 if (id >= first && id <= last)
208 break;
209 }
210 /* Map the id or note failure */
211 if (idx < extents)
212 id = (id - first) + map->extent[idx].first;
213 else
214 id = (u32) -1;
215
216 return id;
217 }
218
219 /**
220 * make_kuid - Map a user-namespace uid pair into a kuid.
221 * @ns: User namespace that the uid is in
222 * @uid: User identifier
223 *
224 * Maps a user-namespace uid pair into a kernel internal kuid,
225 * and returns that kuid.
226 *
227 * When there is no mapping defined for the user-namespace uid
228 * pair INVALID_UID is returned. Callers are expected to test
229 * for and handle INVALID_UID being returned. INVALID_UID
230 * may be tested for using uid_valid().
231 */
232 kuid_t make_kuid(struct user_namespace *ns, uid_t uid)
233 {
234 /* Map the uid to a global kernel uid */
235 return KUIDT_INIT(map_id_down(&ns->uid_map, uid));
236 }
237 EXPORT_SYMBOL(make_kuid);
238
239 /**
240 * from_kuid - Create a uid from a kuid user-namespace pair.
241 * @targ: The user namespace we want a uid in.
242 * @kuid: The kernel internal uid to start with.
243 *
244 * Map @kuid into the user-namespace specified by @targ and
245 * return the resulting uid.
246 *
247 * There is always a mapping into the initial user_namespace.
248 *
249 * If @kuid has no mapping in @targ (uid_t)-1 is returned.
250 */
251 uid_t from_kuid(struct user_namespace *targ, kuid_t kuid)
252 {
253 /* Map the uid from a global kernel uid */
254 return map_id_up(&targ->uid_map, __kuid_val(kuid));
255 }
256 EXPORT_SYMBOL(from_kuid);
257
258 /**
259 * from_kuid_munged - Create a uid from a kuid user-namespace pair.
260 * @targ: The user namespace we want a uid in.
261 * @kuid: The kernel internal uid to start with.
262 *
263 * Map @kuid into the user-namespace specified by @targ and
264 * return the resulting uid.
265 *
266 * There is always a mapping into the initial user_namespace.
267 *
268 * Unlike from_kuid from_kuid_munged never fails and always
269 * returns a valid uid. This makes from_kuid_munged appropriate
270 * for use in syscalls like stat and getuid where failing the
271 * system call and failing to provide a valid uid are not an
272 * options.
273 *
274 * If @kuid has no mapping in @targ overflowuid is returned.
275 */
276 uid_t from_kuid_munged(struct user_namespace *targ, kuid_t kuid)
277 {
278 uid_t uid;
279 uid = from_kuid(targ, kuid);
280
281 if (uid == (uid_t) -1)
282 uid = overflowuid;
283 return uid;
284 }
285 EXPORT_SYMBOL(from_kuid_munged);
286
287 /**
288 * make_kgid - Map a user-namespace gid pair into a kgid.
289 * @ns: User namespace that the gid is in
290 * @gid: group identifier
291 *
292 * Maps a user-namespace gid pair into a kernel internal kgid,
293 * and returns that kgid.
294 *
295 * When there is no mapping defined for the user-namespace gid
296 * pair INVALID_GID is returned. Callers are expected to test
297 * for and handle INVALID_GID being returned. INVALID_GID may be
298 * tested for using gid_valid().
299 */
300 kgid_t make_kgid(struct user_namespace *ns, gid_t gid)
301 {
302 /* Map the gid to a global kernel gid */
303 return KGIDT_INIT(map_id_down(&ns->gid_map, gid));
304 }
305 EXPORT_SYMBOL(make_kgid);
306
307 /**
308 * from_kgid - Create a gid from a kgid user-namespace pair.
309 * @targ: The user namespace we want a gid in.
310 * @kgid: The kernel internal gid to start with.
311 *
312 * Map @kgid into the user-namespace specified by @targ and
313 * return the resulting gid.
314 *
315 * There is always a mapping into the initial user_namespace.
316 *
317 * If @kgid has no mapping in @targ (gid_t)-1 is returned.
318 */
319 gid_t from_kgid(struct user_namespace *targ, kgid_t kgid)
320 {
321 /* Map the gid from a global kernel gid */
322 return map_id_up(&targ->gid_map, __kgid_val(kgid));
323 }
324 EXPORT_SYMBOL(from_kgid);
325
326 /**
327 * from_kgid_munged - Create a gid from a kgid user-namespace pair.
328 * @targ: The user namespace we want a gid in.
329 * @kgid: The kernel internal gid to start with.
330 *
331 * Map @kgid into the user-namespace specified by @targ and
332 * return the resulting gid.
333 *
334 * There is always a mapping into the initial user_namespace.
335 *
336 * Unlike from_kgid from_kgid_munged never fails and always
337 * returns a valid gid. This makes from_kgid_munged appropriate
338 * for use in syscalls like stat and getgid where failing the
339 * system call and failing to provide a valid gid are not options.
340 *
341 * If @kgid has no mapping in @targ overflowgid is returned.
342 */
343 gid_t from_kgid_munged(struct user_namespace *targ, kgid_t kgid)
344 {
345 gid_t gid;
346 gid = from_kgid(targ, kgid);
347
348 if (gid == (gid_t) -1)
349 gid = overflowgid;
350 return gid;
351 }
352 EXPORT_SYMBOL(from_kgid_munged);
353
354 /**
355 * make_kprojid - Map a user-namespace projid pair into a kprojid.
356 * @ns: User namespace that the projid is in
357 * @projid: Project identifier
358 *
359 * Maps a user-namespace uid pair into a kernel internal kuid,
360 * and returns that kuid.
361 *
362 * When there is no mapping defined for the user-namespace projid
363 * pair INVALID_PROJID is returned. Callers are expected to test
364 * for and handle handle INVALID_PROJID being returned. INVALID_PROJID
365 * may be tested for using projid_valid().
366 */
367 kprojid_t make_kprojid(struct user_namespace *ns, projid_t projid)
368 {
369 /* Map the uid to a global kernel uid */
370 return KPROJIDT_INIT(map_id_down(&ns->projid_map, projid));
371 }
372 EXPORT_SYMBOL(make_kprojid);
373
374 /**
375 * from_kprojid - Create a projid from a kprojid user-namespace pair.
376 * @targ: The user namespace we want a projid in.
377 * @kprojid: The kernel internal project identifier to start with.
378 *
379 * Map @kprojid into the user-namespace specified by @targ and
380 * return the resulting projid.
381 *
382 * There is always a mapping into the initial user_namespace.
383 *
384 * If @kprojid has no mapping in @targ (projid_t)-1 is returned.
385 */
386 projid_t from_kprojid(struct user_namespace *targ, kprojid_t kprojid)
387 {
388 /* Map the uid from a global kernel uid */
389 return map_id_up(&targ->projid_map, __kprojid_val(kprojid));
390 }
391 EXPORT_SYMBOL(from_kprojid);
392
393 /**
394 * from_kprojid_munged - Create a projiid from a kprojid user-namespace pair.
395 * @targ: The user namespace we want a projid in.
396 * @kprojid: The kernel internal projid to start with.
397 *
398 * Map @kprojid into the user-namespace specified by @targ and
399 * return the resulting projid.
400 *
401 * There is always a mapping into the initial user_namespace.
402 *
403 * Unlike from_kprojid from_kprojid_munged never fails and always
404 * returns a valid projid. This makes from_kprojid_munged
405 * appropriate for use in syscalls like stat and where
406 * failing the system call and failing to provide a valid projid are
407 * not an options.
408 *
409 * If @kprojid has no mapping in @targ OVERFLOW_PROJID is returned.
410 */
411 projid_t from_kprojid_munged(struct user_namespace *targ, kprojid_t kprojid)
412 {
413 projid_t projid;
414 projid = from_kprojid(targ, kprojid);
415
416 if (projid == (projid_t) -1)
417 projid = OVERFLOW_PROJID;
418 return projid;
419 }
420 EXPORT_SYMBOL(from_kprojid_munged);
421
422
423 static int uid_m_show(struct seq_file *seq, void *v)
424 {
425 struct user_namespace *ns = seq->private;
426 struct uid_gid_extent *extent = v;
427 struct user_namespace *lower_ns;
428 uid_t lower;
429
430 lower_ns = seq_user_ns(seq);
431 if ((lower_ns == ns) && lower_ns->parent)
432 lower_ns = lower_ns->parent;
433
434 lower = from_kuid(lower_ns, KUIDT_INIT(extent->lower_first));
435
436 seq_printf(seq, "%10u %10u %10u\n",
437 extent->first,
438 lower,
439 extent->count);
440
441 return 0;
442 }
443
444 static int gid_m_show(struct seq_file *seq, void *v)
445 {
446 struct user_namespace *ns = seq->private;
447 struct uid_gid_extent *extent = v;
448 struct user_namespace *lower_ns;
449 gid_t lower;
450
451 lower_ns = seq_user_ns(seq);
452 if ((lower_ns == ns) && lower_ns->parent)
453 lower_ns = lower_ns->parent;
454
455 lower = from_kgid(lower_ns, KGIDT_INIT(extent->lower_first));
456
457 seq_printf(seq, "%10u %10u %10u\n",
458 extent->first,
459 lower,
460 extent->count);
461
462 return 0;
463 }
464
465 static int projid_m_show(struct seq_file *seq, void *v)
466 {
467 struct user_namespace *ns = seq->private;
468 struct uid_gid_extent *extent = v;
469 struct user_namespace *lower_ns;
470 projid_t lower;
471
472 lower_ns = seq_user_ns(seq);
473 if ((lower_ns == ns) && lower_ns->parent)
474 lower_ns = lower_ns->parent;
475
476 lower = from_kprojid(lower_ns, KPROJIDT_INIT(extent->lower_first));
477
478 seq_printf(seq, "%10u %10u %10u\n",
479 extent->first,
480 lower,
481 extent->count);
482
483 return 0;
484 }
485
486 static void *m_start(struct seq_file *seq, loff_t *ppos,
487 struct uid_gid_map *map)
488 {
489 struct uid_gid_extent *extent = NULL;
490 loff_t pos = *ppos;
491
492 if (pos < map->nr_extents)
493 extent = &map->extent[pos];
494
495 return extent;
496 }
497
498 static void *uid_m_start(struct seq_file *seq, loff_t *ppos)
499 {
500 struct user_namespace *ns = seq->private;
501
502 return m_start(seq, ppos, &ns->uid_map);
503 }
504
505 static void *gid_m_start(struct seq_file *seq, loff_t *ppos)
506 {
507 struct user_namespace *ns = seq->private;
508
509 return m_start(seq, ppos, &ns->gid_map);
510 }
511
512 static void *projid_m_start(struct seq_file *seq, loff_t *ppos)
513 {
514 struct user_namespace *ns = seq->private;
515
516 return m_start(seq, ppos, &ns->projid_map);
517 }
518
519 static void *m_next(struct seq_file *seq, void *v, loff_t *pos)
520 {
521 (*pos)++;
522 return seq->op->start(seq, pos);
523 }
524
525 static void m_stop(struct seq_file *seq, void *v)
526 {
527 return;
528 }
529
530 const struct seq_operations proc_uid_seq_operations = {
531 .start = uid_m_start,
532 .stop = m_stop,
533 .next = m_next,
534 .show = uid_m_show,
535 };
536
537 const struct seq_operations proc_gid_seq_operations = {
538 .start = gid_m_start,
539 .stop = m_stop,
540 .next = m_next,
541 .show = gid_m_show,
542 };
543
544 const struct seq_operations proc_projid_seq_operations = {
545 .start = projid_m_start,
546 .stop = m_stop,
547 .next = m_next,
548 .show = projid_m_show,
549 };
550
551 static bool mappings_overlap(struct uid_gid_map *new_map,
552 struct uid_gid_extent *extent)
553 {
554 u32 upper_first, lower_first, upper_last, lower_last;
555 unsigned idx;
556
557 upper_first = extent->first;
558 lower_first = extent->lower_first;
559 upper_last = upper_first + extent->count - 1;
560 lower_last = lower_first + extent->count - 1;
561
562 for (idx = 0; idx < new_map->nr_extents; idx++) {
563 u32 prev_upper_first, prev_lower_first;
564 u32 prev_upper_last, prev_lower_last;
565 struct uid_gid_extent *prev;
566
567 prev = &new_map->extent[idx];
568
569 prev_upper_first = prev->first;
570 prev_lower_first = prev->lower_first;
571 prev_upper_last = prev_upper_first + prev->count - 1;
572 prev_lower_last = prev_lower_first + prev->count - 1;
573
574 /* Does the upper range intersect a previous extent? */
575 if ((prev_upper_first <= upper_last) &&
576 (prev_upper_last >= upper_first))
577 return true;
578
579 /* Does the lower range intersect a previous extent? */
580 if ((prev_lower_first <= lower_last) &&
581 (prev_lower_last >= lower_first))
582 return true;
583 }
584 return false;
585 }
586
587
588 static DEFINE_MUTEX(id_map_mutex);
589
590 static ssize_t map_write(struct file *file, const char __user *buf,
591 size_t count, loff_t *ppos,
592 int cap_setid,
593 struct uid_gid_map *map,
594 struct uid_gid_map *parent_map)
595 {
596 struct seq_file *seq = file->private_data;
597 struct user_namespace *ns = seq->private;
598 struct uid_gid_map new_map;
599 unsigned idx;
600 struct uid_gid_extent *extent = NULL;
601 unsigned long page = 0;
602 char *kbuf, *pos, *next_line;
603 ssize_t ret = -EINVAL;
604
605 /*
606 * The id_map_mutex serializes all writes to any given map.
607 *
608 * Any map is only ever written once.
609 *
610 * An id map fits within 1 cache line on most architectures.
611 *
612 * On read nothing needs to be done unless you are on an
613 * architecture with a crazy cache coherency model like alpha.
614 *
615 * There is a one time data dependency between reading the
616 * count of the extents and the values of the extents. The
617 * desired behavior is to see the values of the extents that
618 * were written before the count of the extents.
619 *
620 * To achieve this smp_wmb() is used on guarantee the write
621 * order and smp_rmb() is guaranteed that we don't have crazy
622 * architectures returning stale data.
623 */
624 mutex_lock(&id_map_mutex);
625
626 ret = -EPERM;
627 /* Only allow one successful write to the map */
628 if (map->nr_extents != 0)
629 goto out;
630
631 /*
632 * Adjusting namespace settings requires capabilities on the target.
633 */
634 if (cap_valid(cap_setid) && !file_ns_capable(file, ns, CAP_SYS_ADMIN))
635 goto out;
636
637 /* Get a buffer */
638 ret = -ENOMEM;
639 page = __get_free_page(GFP_TEMPORARY);
640 kbuf = (char *) page;
641 if (!page)
642 goto out;
643
644 /* Only allow <= page size writes at the beginning of the file */
645 ret = -EINVAL;
646 if ((*ppos != 0) || (count >= PAGE_SIZE))
647 goto out;
648
649 /* Slurp in the user data */
650 ret = -EFAULT;
651 if (copy_from_user(kbuf, buf, count))
652 goto out;
653 kbuf[count] = '\0';
654
655 /* Parse the user data */
656 ret = -EINVAL;
657 pos = kbuf;
658 new_map.nr_extents = 0;
659 for (; pos; pos = next_line) {
660 extent = &new_map.extent[new_map.nr_extents];
661
662 /* Find the end of line and ensure I don't look past it */
663 next_line = strchr(pos, '\n');
664 if (next_line) {
665 *next_line = '\0';
666 next_line++;
667 if (*next_line == '\0')
668 next_line = NULL;
669 }
670
671 pos = skip_spaces(pos);
672 extent->first = simple_strtoul(pos, &pos, 10);
673 if (!isspace(*pos))
674 goto out;
675
676 pos = skip_spaces(pos);
677 extent->lower_first = simple_strtoul(pos, &pos, 10);
678 if (!isspace(*pos))
679 goto out;
680
681 pos = skip_spaces(pos);
682 extent->count = simple_strtoul(pos, &pos, 10);
683 if (*pos && !isspace(*pos))
684 goto out;
685
686 /* Verify there is not trailing junk on the line */
687 pos = skip_spaces(pos);
688 if (*pos != '\0')
689 goto out;
690
691 /* Verify we have been given valid starting values */
692 if ((extent->first == (u32) -1) ||
693 (extent->lower_first == (u32) -1))
694 goto out;
695
696 /* Verify count is not zero and does not cause the
697 * extent to wrap
698 */
699 if ((extent->first + extent->count) <= extent->first)
700 goto out;
701 if ((extent->lower_first + extent->count) <=
702 extent->lower_first)
703 goto out;
704
705 /* Do the ranges in extent overlap any previous extents? */
706 if (mappings_overlap(&new_map, extent))
707 goto out;
708
709 new_map.nr_extents++;
710
711 /* Fail if the file contains too many extents */
712 if ((new_map.nr_extents == UID_GID_MAP_MAX_EXTENTS) &&
713 (next_line != NULL))
714 goto out;
715 }
716 /* Be very certaint the new map actually exists */
717 if (new_map.nr_extents == 0)
718 goto out;
719
720 ret = -EPERM;
721 /* Validate the user is allowed to use user id's mapped to. */
722 if (!new_idmap_permitted(file, ns, cap_setid, &new_map))
723 goto out;
724
725 /* Map the lower ids from the parent user namespace to the
726 * kernel global id space.
727 */
728 for (idx = 0; idx < new_map.nr_extents; idx++) {
729 u32 lower_first;
730 extent = &new_map.extent[idx];
731
732 lower_first = map_id_range_down(parent_map,
733 extent->lower_first,
734 extent->count);
735
736 /* Fail if we can not map the specified extent to
737 * the kernel global id space.
738 */
739 if (lower_first == (u32) -1)
740 goto out;
741
742 extent->lower_first = lower_first;
743 }
744
745 /* Install the map */
746 memcpy(map->extent, new_map.extent,
747 new_map.nr_extents*sizeof(new_map.extent[0]));
748 smp_wmb();
749 map->nr_extents = new_map.nr_extents;
750
751 *ppos = count;
752 ret = count;
753 out:
754 mutex_unlock(&id_map_mutex);
755 if (page)
756 free_page(page);
757 return ret;
758 }
759
760 ssize_t proc_uid_map_write(struct file *file, const char __user *buf,
761 size_t size, loff_t *ppos)
762 {
763 struct seq_file *seq = file->private_data;
764 struct user_namespace *ns = seq->private;
765 struct user_namespace *seq_ns = seq_user_ns(seq);
766
767 if (!ns->parent)
768 return -EPERM;
769
770 if ((seq_ns != ns) && (seq_ns != ns->parent))
771 return -EPERM;
772
773 return map_write(file, buf, size, ppos, CAP_SETUID,
774 &ns->uid_map, &ns->parent->uid_map);
775 }
776
777 ssize_t proc_gid_map_write(struct file *file, const char __user *buf,
778 size_t size, loff_t *ppos)
779 {
780 struct seq_file *seq = file->private_data;
781 struct user_namespace *ns = seq->private;
782 struct user_namespace *seq_ns = seq_user_ns(seq);
783
784 if (!ns->parent)
785 return -EPERM;
786
787 if ((seq_ns != ns) && (seq_ns != ns->parent))
788 return -EPERM;
789
790 return map_write(file, buf, size, ppos, CAP_SETGID,
791 &ns->gid_map, &ns->parent->gid_map);
792 }
793
794 ssize_t proc_projid_map_write(struct file *file, const char __user *buf,
795 size_t size, loff_t *ppos)
796 {
797 struct seq_file *seq = file->private_data;
798 struct user_namespace *ns = seq->private;
799 struct user_namespace *seq_ns = seq_user_ns(seq);
800
801 if (!ns->parent)
802 return -EPERM;
803
804 if ((seq_ns != ns) && (seq_ns != ns->parent))
805 return -EPERM;
806
807 /* Anyone can set any valid project id no capability needed */
808 return map_write(file, buf, size, ppos, -1,
809 &ns->projid_map, &ns->parent->projid_map);
810 }
811
812 static bool new_idmap_permitted(const struct file *file,
813 struct user_namespace *ns, int cap_setid,
814 struct uid_gid_map *new_map)
815 {
816 /* Allow mapping to your own filesystem ids */
817 if ((new_map->nr_extents == 1) && (new_map->extent[0].count == 1)) {
818 u32 id = new_map->extent[0].lower_first;
819 if (cap_setid == CAP_SETUID) {
820 kuid_t uid = make_kuid(ns->parent, id);
821 if (uid_eq(uid, file->f_cred->fsuid))
822 return true;
823 } else if (cap_setid == CAP_SETGID) {
824 kgid_t gid = make_kgid(ns->parent, id);
825 if (gid_eq(gid, file->f_cred->fsgid))
826 return true;
827 }
828 }
829
830 /* Allow anyone to set a mapping that doesn't require privilege */
831 if (!cap_valid(cap_setid))
832 return true;
833
834 /* Allow the specified ids if we have the appropriate capability
835 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
836 * And the opener of the id file also had the approprpiate capability.
837 */
838 if (ns_capable(ns->parent, cap_setid) &&
839 file_ns_capable(file, ns->parent, cap_setid))
840 return true;
841
842 return false;
843 }
844
845 static inline struct user_namespace *to_user_ns(struct ns_common *ns)
846 {
847 return container_of(ns, struct user_namespace, ns);
848 }
849
850 static struct ns_common *userns_get(struct task_struct *task)
851 {
852 struct user_namespace *user_ns;
853
854 rcu_read_lock();
855 user_ns = get_user_ns(__task_cred(task)->user_ns);
856 rcu_read_unlock();
857
858 return user_ns ? &user_ns->ns : NULL;
859 }
860
861 static void userns_put(struct ns_common *ns)
862 {
863 put_user_ns(to_user_ns(ns));
864 }
865
866 static int userns_install(struct nsproxy *nsproxy, struct ns_common *ns)
867 {
868 struct user_namespace *user_ns = to_user_ns(ns);
869 struct cred *cred;
870
871 /* Don't allow gaining capabilities by reentering
872 * the same user namespace.
873 */
874 if (user_ns == current_user_ns())
875 return -EINVAL;
876
877 /* Threaded processes may not enter a different user namespace */
878 if (atomic_read(&current->mm->mm_users) > 1)
879 return -EINVAL;
880
881 if (current->fs->users != 1)
882 return -EINVAL;
883
884 if (!ns_capable(user_ns, CAP_SYS_ADMIN))
885 return -EPERM;
886
887 cred = prepare_creds();
888 if (!cred)
889 return -ENOMEM;
890
891 put_user_ns(cred->user_ns);
892 set_cred_user_ns(cred, get_user_ns(user_ns));
893
894 return commit_creds(cred);
895 }
896
897 const struct proc_ns_operations userns_operations = {
898 .name = "user",
899 .type = CLONE_NEWUSER,
900 .get = userns_get,
901 .put = userns_put,
902 .install = userns_install,
903 };
904
905 static __init int user_namespaces_init(void)
906 {
907 user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC);
908 return 0;
909 }
910 subsys_initcall(user_namespaces_init);
This page took 0.133388 seconds and 6 git commands to generate.