1 // SPDX-License-Identifier: GPL-2.0-only
3 #include <linux/export.h>
4 #include <linux/nsproxy.h>
5 #include <linux/slab.h>
6 #include <linux/sched/signal.h>
7 #include <linux/user_namespace.h>
8 #include <linux/proc_ns.h>
9 #include <linux/highuid.h>
10 #include <linux/cred.h>
11 #include <linux/securebits.h>
12 #include <linux/keyctl.h>
13 #include <linux/key-type.h>
14 #include <keys/user-type.h>
15 #include <linux/seq_file.h>
17 #include <linux/uaccess.h>
18 #include <linux/ctype.h>
19 #include <linux/projid.h>
20 #include <linux/fs_struct.h>
21 #include <linux/bsearch.h>
22 #include <linux/sort.h>
24 static struct kmem_cache
*user_ns_cachep __read_mostly
;
25 static DEFINE_MUTEX(userns_state_mutex
);
27 static bool new_idmap_permitted(const struct file
*file
,
28 struct user_namespace
*ns
, int cap_setid
,
29 struct uid_gid_map
*map
);
30 static void free_user_ns(struct work_struct
*work
);
32 static struct ucounts
*inc_user_namespaces(struct user_namespace
*ns
, kuid_t uid
)
34 return inc_ucount(ns
, uid
, UCOUNT_USER_NAMESPACES
);
37 static void dec_user_namespaces(struct ucounts
*ucounts
)
39 return dec_ucount(ucounts
, UCOUNT_USER_NAMESPACES
);
42 static void set_cred_user_ns(struct cred
*cred
, struct user_namespace
*user_ns
)
44 /* Start with the same capabilities as init but useless for doing
45 * anything as the capabilities are bound to the new user namespace.
47 cred
->securebits
= SECUREBITS_DEFAULT
;
48 cred
->cap_inheritable
= CAP_EMPTY_SET
;
49 cred
->cap_permitted
= CAP_FULL_SET
;
50 cred
->cap_effective
= CAP_FULL_SET
;
51 cred
->cap_ambient
= CAP_EMPTY_SET
;
52 cred
->cap_bset
= CAP_FULL_SET
;
54 key_put(cred
->request_key_auth
);
55 cred
->request_key_auth
= NULL
;
57 /* tgcred will be cleared in our caller bc CLONE_THREAD won't be set */
58 cred
->user_ns
= user_ns
;
62 * Create a new user namespace, deriving the creator from the user in the
63 * passed credentials, and replacing that user with the new root user for the
66 * This is called by copy_creds(), which will finish setting the target task's
69 int create_user_ns(struct cred
*new)
71 struct user_namespace
*ns
, *parent_ns
= new->user_ns
;
72 kuid_t owner
= new->euid
;
73 kgid_t group
= new->egid
;
74 struct ucounts
*ucounts
;
78 if (parent_ns
->level
> 32)
81 ucounts
= inc_user_namespaces(parent_ns
, owner
);
86 * Verify that we can not violate the policy of which files
87 * may be accessed that is specified by the root directory,
88 * by verifing that the root directory is at the root of the
89 * mount namespace which allows all files to be accessed.
92 if (current_chrooted())
95 /* The creator needs a mapping in the parent user namespace
96 * or else we won't be able to reasonably tell userspace who
97 * created a user_namespace.
100 if (!kuid_has_mapping(parent_ns
, owner
) ||
101 !kgid_has_mapping(parent_ns
, group
))
105 ns
= kmem_cache_zalloc(user_ns_cachep
, GFP_KERNEL
);
109 ret
= ns_alloc_inum(&ns
->ns
);
112 ns
->ns
.ops
= &userns_operations
;
114 atomic_set(&ns
->count
, 1);
115 /* Leave the new->user_ns reference with the new user namespace. */
116 ns
->parent
= parent_ns
;
117 ns
->level
= parent_ns
->level
+ 1;
120 INIT_WORK(&ns
->work
, free_user_ns
);
121 for (i
= 0; i
< UCOUNT_COUNTS
; i
++) {
122 ns
->ucount_max
[i
] = INT_MAX
;
124 ns
->ucounts
= ucounts
;
126 /* Inherit USERNS_SETGROUPS_ALLOWED from our parent */
127 mutex_lock(&userns_state_mutex
);
128 ns
->flags
= parent_ns
->flags
;
129 mutex_unlock(&userns_state_mutex
);
131 #ifdef CONFIG_PERSISTENT_KEYRINGS
132 init_rwsem(&ns
->persistent_keyring_register_sem
);
135 if (!setup_userns_sysctls(ns
))
138 set_cred_user_ns(new, ns
);
141 #ifdef CONFIG_PERSISTENT_KEYRINGS
142 key_put(ns
->persistent_keyring_register
);
144 ns_free_inum(&ns
->ns
);
146 kmem_cache_free(user_ns_cachep
, ns
);
148 dec_user_namespaces(ucounts
);
153 int unshare_userns(unsigned long unshare_flags
, struct cred
**new_cred
)
158 if (!(unshare_flags
& CLONE_NEWUSER
))
161 cred
= prepare_creds();
163 err
= create_user_ns(cred
);
173 static void free_user_ns(struct work_struct
*work
)
175 struct user_namespace
*parent
, *ns
=
176 container_of(work
, struct user_namespace
, work
);
179 struct ucounts
*ucounts
= ns
->ucounts
;
181 if (ns
->gid_map
.nr_extents
> UID_GID_MAP_MAX_BASE_EXTENTS
) {
182 kfree(ns
->gid_map
.forward
);
183 kfree(ns
->gid_map
.reverse
);
185 if (ns
->uid_map
.nr_extents
> UID_GID_MAP_MAX_BASE_EXTENTS
) {
186 kfree(ns
->uid_map
.forward
);
187 kfree(ns
->uid_map
.reverse
);
189 if (ns
->projid_map
.nr_extents
> UID_GID_MAP_MAX_BASE_EXTENTS
) {
190 kfree(ns
->projid_map
.forward
);
191 kfree(ns
->projid_map
.reverse
);
193 retire_userns_sysctls(ns
);
194 #ifdef CONFIG_PERSISTENT_KEYRINGS
195 key_put(ns
->persistent_keyring_register
);
197 ns_free_inum(&ns
->ns
);
198 kmem_cache_free(user_ns_cachep
, ns
);
199 dec_user_namespaces(ucounts
);
201 } while (atomic_dec_and_test(&parent
->count
));
204 void __put_user_ns(struct user_namespace
*ns
)
206 schedule_work(&ns
->work
);
208 EXPORT_SYMBOL(__put_user_ns
);
211 * idmap_key struct holds the information necessary to find an idmapping in a
212 * sorted idmap array. It is passed to cmp_map_id() as first argument.
215 bool map_up
; /* true -> id from kid; false -> kid from id */
216 u32 id
; /* id to find */
217 u32 count
; /* == 0 unless used with map_id_range_down() */
221 * cmp_map_id - Function to be passed to bsearch() to find the requested
222 * idmapping. Expects struct idmap_key to be passed via @k.
224 static int cmp_map_id(const void *k
, const void *e
)
226 u32 first
, last
, id2
;
227 const struct idmap_key
*key
= k
;
228 const struct uid_gid_extent
*el
= e
;
230 id2
= key
->id
+ key
->count
- 1;
232 /* handle map_id_{down,up}() */
234 first
= el
->lower_first
;
238 last
= first
+ el
->count
- 1;
240 if (key
->id
>= first
&& key
->id
<= last
&&
241 (id2
>= first
&& id2
<= last
))
244 if (key
->id
< first
|| id2
< first
)
251 * map_id_range_down_max - Find idmap via binary search in ordered idmap array.
252 * Can only be called if number of mappings exceeds UID_GID_MAP_MAX_BASE_EXTENTS.
254 static struct uid_gid_extent
*
255 map_id_range_down_max(unsigned extents
, struct uid_gid_map
*map
, u32 id
, u32 count
)
257 struct idmap_key key
;
263 return bsearch(&key
, map
->forward
, extents
,
264 sizeof(struct uid_gid_extent
), cmp_map_id
);
268 * map_id_range_down_base - Find idmap via binary search in static extent array.
269 * Can only be called if number of mappings is equal or less than
270 * UID_GID_MAP_MAX_BASE_EXTENTS.
272 static struct uid_gid_extent
*
273 map_id_range_down_base(unsigned extents
, struct uid_gid_map
*map
, u32 id
, u32 count
)
276 u32 first
, last
, id2
;
278 id2
= id
+ count
- 1;
280 /* Find the matching extent */
281 for (idx
= 0; idx
< extents
; idx
++) {
282 first
= map
->extent
[idx
].first
;
283 last
= first
+ map
->extent
[idx
].count
- 1;
284 if (id
>= first
&& id
<= last
&&
285 (id2
>= first
&& id2
<= last
))
286 return &map
->extent
[idx
];
291 static u32
map_id_range_down(struct uid_gid_map
*map
, u32 id
, u32 count
)
293 struct uid_gid_extent
*extent
;
294 unsigned extents
= map
->nr_extents
;
297 if (extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
)
298 extent
= map_id_range_down_base(extents
, map
, id
, count
);
300 extent
= map_id_range_down_max(extents
, map
, id
, count
);
302 /* Map the id or note failure */
304 id
= (id
- extent
->first
) + extent
->lower_first
;
311 static u32
map_id_down(struct uid_gid_map
*map
, u32 id
)
313 return map_id_range_down(map
, id
, 1);
317 * map_id_up_base - Find idmap via binary search in static extent array.
318 * Can only be called if number of mappings is equal or less than
319 * UID_GID_MAP_MAX_BASE_EXTENTS.
321 static struct uid_gid_extent
*
322 map_id_up_base(unsigned extents
, struct uid_gid_map
*map
, u32 id
)
327 /* Find the matching extent */
328 for (idx
= 0; idx
< extents
; idx
++) {
329 first
= map
->extent
[idx
].lower_first
;
330 last
= first
+ map
->extent
[idx
].count
- 1;
331 if (id
>= first
&& id
<= last
)
332 return &map
->extent
[idx
];
338 * map_id_up_max - Find idmap via binary search in ordered idmap array.
339 * Can only be called if number of mappings exceeds UID_GID_MAP_MAX_BASE_EXTENTS.
341 static struct uid_gid_extent
*
342 map_id_up_max(unsigned extents
, struct uid_gid_map
*map
, u32 id
)
344 struct idmap_key key
;
350 return bsearch(&key
, map
->reverse
, extents
,
351 sizeof(struct uid_gid_extent
), cmp_map_id
);
354 static u32
map_id_up(struct uid_gid_map
*map
, u32 id
)
356 struct uid_gid_extent
*extent
;
357 unsigned extents
= map
->nr_extents
;
360 if (extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
)
361 extent
= map_id_up_base(extents
, map
, id
);
363 extent
= map_id_up_max(extents
, map
, id
);
365 /* Map the id or note failure */
367 id
= (id
- extent
->lower_first
) + extent
->first
;
375 * make_kuid - Map a user-namespace uid pair into a kuid.
376 * @ns: User namespace that the uid is in
377 * @uid: User identifier
379 * Maps a user-namespace uid pair into a kernel internal kuid,
380 * and returns that kuid.
382 * When there is no mapping defined for the user-namespace uid
383 * pair INVALID_UID is returned. Callers are expected to test
384 * for and handle INVALID_UID being returned. INVALID_UID
385 * may be tested for using uid_valid().
387 kuid_t
make_kuid(struct user_namespace
*ns
, uid_t uid
)
389 /* Map the uid to a global kernel uid */
390 return KUIDT_INIT(map_id_down(&ns
->uid_map
, uid
));
392 EXPORT_SYMBOL(make_kuid
);
395 * from_kuid - Create a uid from a kuid user-namespace pair.
396 * @targ: The user namespace we want a uid in.
397 * @kuid: The kernel internal uid to start with.
399 * Map @kuid into the user-namespace specified by @targ and
400 * return the resulting uid.
402 * There is always a mapping into the initial user_namespace.
404 * If @kuid has no mapping in @targ (uid_t)-1 is returned.
406 uid_t
from_kuid(struct user_namespace
*targ
, kuid_t kuid
)
408 /* Map the uid from a global kernel uid */
409 return map_id_up(&targ
->uid_map
, __kuid_val(kuid
));
411 EXPORT_SYMBOL(from_kuid
);
414 * from_kuid_munged - Create a uid from a kuid user-namespace pair.
415 * @targ: The user namespace we want a uid in.
416 * @kuid: The kernel internal uid to start with.
418 * Map @kuid into the user-namespace specified by @targ and
419 * return the resulting uid.
421 * There is always a mapping into the initial user_namespace.
423 * Unlike from_kuid from_kuid_munged never fails and always
424 * returns a valid uid. This makes from_kuid_munged appropriate
425 * for use in syscalls like stat and getuid where failing the
426 * system call and failing to provide a valid uid are not an
429 * If @kuid has no mapping in @targ overflowuid is returned.
431 uid_t
from_kuid_munged(struct user_namespace
*targ
, kuid_t kuid
)
434 uid
= from_kuid(targ
, kuid
);
436 if (uid
== (uid_t
) -1)
440 EXPORT_SYMBOL(from_kuid_munged
);
443 * make_kgid - Map a user-namespace gid pair into a kgid.
444 * @ns: User namespace that the gid is in
445 * @gid: group identifier
447 * Maps a user-namespace gid pair into a kernel internal kgid,
448 * and returns that kgid.
450 * When there is no mapping defined for the user-namespace gid
451 * pair INVALID_GID is returned. Callers are expected to test
452 * for and handle INVALID_GID being returned. INVALID_GID may be
453 * tested for using gid_valid().
455 kgid_t
make_kgid(struct user_namespace
*ns
, gid_t gid
)
457 /* Map the gid to a global kernel gid */
458 return KGIDT_INIT(map_id_down(&ns
->gid_map
, gid
));
460 EXPORT_SYMBOL(make_kgid
);
463 * from_kgid - Create a gid from a kgid user-namespace pair.
464 * @targ: The user namespace we want a gid in.
465 * @kgid: The kernel internal gid to start with.
467 * Map @kgid into the user-namespace specified by @targ and
468 * return the resulting gid.
470 * There is always a mapping into the initial user_namespace.
472 * If @kgid has no mapping in @targ (gid_t)-1 is returned.
474 gid_t
from_kgid(struct user_namespace
*targ
, kgid_t kgid
)
476 /* Map the gid from a global kernel gid */
477 return map_id_up(&targ
->gid_map
, __kgid_val(kgid
));
479 EXPORT_SYMBOL(from_kgid
);
482 * from_kgid_munged - Create a gid from a kgid user-namespace pair.
483 * @targ: The user namespace we want a gid in.
484 * @kgid: The kernel internal gid to start with.
486 * Map @kgid into the user-namespace specified by @targ and
487 * return the resulting gid.
489 * There is always a mapping into the initial user_namespace.
491 * Unlike from_kgid from_kgid_munged never fails and always
492 * returns a valid gid. This makes from_kgid_munged appropriate
493 * for use in syscalls like stat and getgid where failing the
494 * system call and failing to provide a valid gid are not options.
496 * If @kgid has no mapping in @targ overflowgid is returned.
498 gid_t
from_kgid_munged(struct user_namespace
*targ
, kgid_t kgid
)
501 gid
= from_kgid(targ
, kgid
);
503 if (gid
== (gid_t
) -1)
507 EXPORT_SYMBOL(from_kgid_munged
);
510 * make_kprojid - Map a user-namespace projid pair into a kprojid.
511 * @ns: User namespace that the projid is in
512 * @projid: Project identifier
514 * Maps a user-namespace uid pair into a kernel internal kuid,
515 * and returns that kuid.
517 * When there is no mapping defined for the user-namespace projid
518 * pair INVALID_PROJID is returned. Callers are expected to test
519 * for and handle handle INVALID_PROJID being returned. INVALID_PROJID
520 * may be tested for using projid_valid().
522 kprojid_t
make_kprojid(struct user_namespace
*ns
, projid_t projid
)
524 /* Map the uid to a global kernel uid */
525 return KPROJIDT_INIT(map_id_down(&ns
->projid_map
, projid
));
527 EXPORT_SYMBOL(make_kprojid
);
530 * from_kprojid - Create a projid from a kprojid user-namespace pair.
531 * @targ: The user namespace we want a projid in.
532 * @kprojid: The kernel internal project identifier to start with.
534 * Map @kprojid into the user-namespace specified by @targ and
535 * return the resulting projid.
537 * There is always a mapping into the initial user_namespace.
539 * If @kprojid has no mapping in @targ (projid_t)-1 is returned.
541 projid_t
from_kprojid(struct user_namespace
*targ
, kprojid_t kprojid
)
543 /* Map the uid from a global kernel uid */
544 return map_id_up(&targ
->projid_map
, __kprojid_val(kprojid
));
546 EXPORT_SYMBOL(from_kprojid
);
549 * from_kprojid_munged - Create a projiid from a kprojid user-namespace pair.
550 * @targ: The user namespace we want a projid in.
551 * @kprojid: The kernel internal projid to start with.
553 * Map @kprojid into the user-namespace specified by @targ and
554 * return the resulting projid.
556 * There is always a mapping into the initial user_namespace.
558 * Unlike from_kprojid from_kprojid_munged never fails and always
559 * returns a valid projid. This makes from_kprojid_munged
560 * appropriate for use in syscalls like stat and where
561 * failing the system call and failing to provide a valid projid are
564 * If @kprojid has no mapping in @targ OVERFLOW_PROJID is returned.
566 projid_t
from_kprojid_munged(struct user_namespace
*targ
, kprojid_t kprojid
)
569 projid
= from_kprojid(targ
, kprojid
);
571 if (projid
== (projid_t
) -1)
572 projid
= OVERFLOW_PROJID
;
575 EXPORT_SYMBOL(from_kprojid_munged
);
578 static int uid_m_show(struct seq_file
*seq
, void *v
)
580 struct user_namespace
*ns
= seq
->private;
581 struct uid_gid_extent
*extent
= v
;
582 struct user_namespace
*lower_ns
;
585 lower_ns
= seq_user_ns(seq
);
586 if ((lower_ns
== ns
) && lower_ns
->parent
)
587 lower_ns
= lower_ns
->parent
;
589 lower
= from_kuid(lower_ns
, KUIDT_INIT(extent
->lower_first
));
591 seq_printf(seq
, "%10u %10u %10u\n",
599 static int gid_m_show(struct seq_file
*seq
, void *v
)
601 struct user_namespace
*ns
= seq
->private;
602 struct uid_gid_extent
*extent
= v
;
603 struct user_namespace
*lower_ns
;
606 lower_ns
= seq_user_ns(seq
);
607 if ((lower_ns
== ns
) && lower_ns
->parent
)
608 lower_ns
= lower_ns
->parent
;
610 lower
= from_kgid(lower_ns
, KGIDT_INIT(extent
->lower_first
));
612 seq_printf(seq
, "%10u %10u %10u\n",
620 static int projid_m_show(struct seq_file
*seq
, void *v
)
622 struct user_namespace
*ns
= seq
->private;
623 struct uid_gid_extent
*extent
= v
;
624 struct user_namespace
*lower_ns
;
627 lower_ns
= seq_user_ns(seq
);
628 if ((lower_ns
== ns
) && lower_ns
->parent
)
629 lower_ns
= lower_ns
->parent
;
631 lower
= from_kprojid(lower_ns
, KPROJIDT_INIT(extent
->lower_first
));
633 seq_printf(seq
, "%10u %10u %10u\n",
641 static void *m_start(struct seq_file
*seq
, loff_t
*ppos
,
642 struct uid_gid_map
*map
)
645 unsigned extents
= map
->nr_extents
;
651 if (extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
)
652 return &map
->extent
[pos
];
654 return &map
->forward
[pos
];
657 static void *uid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
659 struct user_namespace
*ns
= seq
->private;
661 return m_start(seq
, ppos
, &ns
->uid_map
);
664 static void *gid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
666 struct user_namespace
*ns
= seq
->private;
668 return m_start(seq
, ppos
, &ns
->gid_map
);
671 static void *projid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
673 struct user_namespace
*ns
= seq
->private;
675 return m_start(seq
, ppos
, &ns
->projid_map
);
678 static void *m_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
681 return seq
->op
->start(seq
, pos
);
684 static void m_stop(struct seq_file
*seq
, void *v
)
689 const struct seq_operations proc_uid_seq_operations
= {
690 .start
= uid_m_start
,
696 const struct seq_operations proc_gid_seq_operations
= {
697 .start
= gid_m_start
,
703 const struct seq_operations proc_projid_seq_operations
= {
704 .start
= projid_m_start
,
707 .show
= projid_m_show
,
710 static bool mappings_overlap(struct uid_gid_map
*new_map
,
711 struct uid_gid_extent
*extent
)
713 u32 upper_first
, lower_first
, upper_last
, lower_last
;
716 upper_first
= extent
->first
;
717 lower_first
= extent
->lower_first
;
718 upper_last
= upper_first
+ extent
->count
- 1;
719 lower_last
= lower_first
+ extent
->count
- 1;
721 for (idx
= 0; idx
< new_map
->nr_extents
; idx
++) {
722 u32 prev_upper_first
, prev_lower_first
;
723 u32 prev_upper_last
, prev_lower_last
;
724 struct uid_gid_extent
*prev
;
726 if (new_map
->nr_extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
)
727 prev
= &new_map
->extent
[idx
];
729 prev
= &new_map
->forward
[idx
];
731 prev_upper_first
= prev
->first
;
732 prev_lower_first
= prev
->lower_first
;
733 prev_upper_last
= prev_upper_first
+ prev
->count
- 1;
734 prev_lower_last
= prev_lower_first
+ prev
->count
- 1;
736 /* Does the upper range intersect a previous extent? */
737 if ((prev_upper_first
<= upper_last
) &&
738 (prev_upper_last
>= upper_first
))
741 /* Does the lower range intersect a previous extent? */
742 if ((prev_lower_first
<= lower_last
) &&
743 (prev_lower_last
>= lower_first
))
750 * insert_extent - Safely insert a new idmap extent into struct uid_gid_map.
751 * Takes care to allocate a 4K block of memory if the number of mappings exceeds
752 * UID_GID_MAP_MAX_BASE_EXTENTS.
754 static int insert_extent(struct uid_gid_map
*map
, struct uid_gid_extent
*extent
)
756 struct uid_gid_extent
*dest
;
758 if (map
->nr_extents
== UID_GID_MAP_MAX_BASE_EXTENTS
) {
759 struct uid_gid_extent
*forward
;
761 /* Allocate memory for 340 mappings. */
762 forward
= kmalloc_array(UID_GID_MAP_MAX_EXTENTS
,
763 sizeof(struct uid_gid_extent
),
768 /* Copy over memory. Only set up memory for the forward pointer.
769 * Defer the memory setup for the reverse pointer.
771 memcpy(forward
, map
->extent
,
772 map
->nr_extents
* sizeof(map
->extent
[0]));
774 map
->forward
= forward
;
778 if (map
->nr_extents
< UID_GID_MAP_MAX_BASE_EXTENTS
)
779 dest
= &map
->extent
[map
->nr_extents
];
781 dest
= &map
->forward
[map
->nr_extents
];
788 /* cmp function to sort() forward mappings */
789 static int cmp_extents_forward(const void *a
, const void *b
)
791 const struct uid_gid_extent
*e1
= a
;
792 const struct uid_gid_extent
*e2
= b
;
794 if (e1
->first
< e2
->first
)
797 if (e1
->first
> e2
->first
)
803 /* cmp function to sort() reverse mappings */
804 static int cmp_extents_reverse(const void *a
, const void *b
)
806 const struct uid_gid_extent
*e1
= a
;
807 const struct uid_gid_extent
*e2
= b
;
809 if (e1
->lower_first
< e2
->lower_first
)
812 if (e1
->lower_first
> e2
->lower_first
)
819 * sort_idmaps - Sorts an array of idmap entries.
820 * Can only be called if number of mappings exceeds UID_GID_MAP_MAX_BASE_EXTENTS.
822 static int sort_idmaps(struct uid_gid_map
*map
)
824 if (map
->nr_extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
)
827 /* Sort forward array. */
828 sort(map
->forward
, map
->nr_extents
, sizeof(struct uid_gid_extent
),
829 cmp_extents_forward
, NULL
);
831 /* Only copy the memory from forward we actually need. */
832 map
->reverse
= kmemdup(map
->forward
,
833 map
->nr_extents
* sizeof(struct uid_gid_extent
),
838 /* Sort reverse array. */
839 sort(map
->reverse
, map
->nr_extents
, sizeof(struct uid_gid_extent
),
840 cmp_extents_reverse
, NULL
);
845 static ssize_t
map_write(struct file
*file
, const char __user
*buf
,
846 size_t count
, loff_t
*ppos
,
848 struct uid_gid_map
*map
,
849 struct uid_gid_map
*parent_map
)
851 struct seq_file
*seq
= file
->private_data
;
852 struct user_namespace
*ns
= seq
->private;
853 struct uid_gid_map new_map
;
855 struct uid_gid_extent extent
;
856 char *kbuf
= NULL
, *pos
, *next_line
;
859 /* Only allow < page size writes at the beginning of the file */
860 if ((*ppos
!= 0) || (count
>= PAGE_SIZE
))
863 /* Slurp in the user data */
864 kbuf
= memdup_user_nul(buf
, count
);
866 return PTR_ERR(kbuf
);
869 * The userns_state_mutex serializes all writes to any given map.
871 * Any map is only ever written once.
873 * An id map fits within 1 cache line on most architectures.
875 * On read nothing needs to be done unless you are on an
876 * architecture with a crazy cache coherency model like alpha.
878 * There is a one time data dependency between reading the
879 * count of the extents and the values of the extents. The
880 * desired behavior is to see the values of the extents that
881 * were written before the count of the extents.
883 * To achieve this smp_wmb() is used on guarantee the write
884 * order and smp_rmb() is guaranteed that we don't have crazy
885 * architectures returning stale data.
887 mutex_lock(&userns_state_mutex
);
889 memset(&new_map
, 0, sizeof(struct uid_gid_map
));
892 /* Only allow one successful write to the map */
893 if (map
->nr_extents
!= 0)
897 * Adjusting namespace settings requires capabilities on the target.
899 if (cap_valid(cap_setid
) && !file_ns_capable(file
, ns
, CAP_SYS_ADMIN
))
902 /* Parse the user data */
905 for (; pos
; pos
= next_line
) {
907 /* Find the end of line and ensure I don't look past it */
908 next_line
= strchr(pos
, '\n');
912 if (*next_line
== '\0')
916 pos
= skip_spaces(pos
);
917 extent
.first
= simple_strtoul(pos
, &pos
, 10);
921 pos
= skip_spaces(pos
);
922 extent
.lower_first
= simple_strtoul(pos
, &pos
, 10);
926 pos
= skip_spaces(pos
);
927 extent
.count
= simple_strtoul(pos
, &pos
, 10);
928 if (*pos
&& !isspace(*pos
))
931 /* Verify there is not trailing junk on the line */
932 pos
= skip_spaces(pos
);
936 /* Verify we have been given valid starting values */
937 if ((extent
.first
== (u32
) -1) ||
938 (extent
.lower_first
== (u32
) -1))
941 /* Verify count is not zero and does not cause the
944 if ((extent
.first
+ extent
.count
) <= extent
.first
)
946 if ((extent
.lower_first
+ extent
.count
) <=
950 /* Do the ranges in extent overlap any previous extents? */
951 if (mappings_overlap(&new_map
, &extent
))
954 if ((new_map
.nr_extents
+ 1) == UID_GID_MAP_MAX_EXTENTS
&&
958 ret
= insert_extent(&new_map
, &extent
);
963 /* Be very certaint the new map actually exists */
964 if (new_map
.nr_extents
== 0)
968 /* Validate the user is allowed to use user id's mapped to. */
969 if (!new_idmap_permitted(file
, ns
, cap_setid
, &new_map
))
973 /* Map the lower ids from the parent user namespace to the
974 * kernel global id space.
976 for (idx
= 0; idx
< new_map
.nr_extents
; idx
++) {
977 struct uid_gid_extent
*e
;
980 if (new_map
.nr_extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
)
981 e
= &new_map
.extent
[idx
];
983 e
= &new_map
.forward
[idx
];
985 lower_first
= map_id_range_down(parent_map
,
989 /* Fail if we can not map the specified extent to
990 * the kernel global id space.
992 if (lower_first
== (u32
) -1)
995 e
->lower_first
= lower_first
;
999 * If we want to use binary search for lookup, this clones the extent
1000 * array and sorts both copies.
1002 ret
= sort_idmaps(&new_map
);
1006 /* Install the map */
1007 if (new_map
.nr_extents
<= UID_GID_MAP_MAX_BASE_EXTENTS
) {
1008 memcpy(map
->extent
, new_map
.extent
,
1009 new_map
.nr_extents
* sizeof(new_map
.extent
[0]));
1011 map
->forward
= new_map
.forward
;
1012 map
->reverse
= new_map
.reverse
;
1015 map
->nr_extents
= new_map
.nr_extents
;
1020 if (ret
< 0 && new_map
.nr_extents
> UID_GID_MAP_MAX_BASE_EXTENTS
) {
1021 kfree(new_map
.forward
);
1022 kfree(new_map
.reverse
);
1023 map
->forward
= NULL
;
1024 map
->reverse
= NULL
;
1025 map
->nr_extents
= 0;
1028 mutex_unlock(&userns_state_mutex
);
1033 ssize_t
proc_uid_map_write(struct file
*file
, const char __user
*buf
,
1034 size_t size
, loff_t
*ppos
)
1036 struct seq_file
*seq
= file
->private_data
;
1037 struct user_namespace
*ns
= seq
->private;
1038 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
1043 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
1046 return map_write(file
, buf
, size
, ppos
, CAP_SETUID
,
1047 &ns
->uid_map
, &ns
->parent
->uid_map
);
1050 ssize_t
proc_gid_map_write(struct file
*file
, const char __user
*buf
,
1051 size_t size
, loff_t
*ppos
)
1053 struct seq_file
*seq
= file
->private_data
;
1054 struct user_namespace
*ns
= seq
->private;
1055 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
1060 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
1063 return map_write(file
, buf
, size
, ppos
, CAP_SETGID
,
1064 &ns
->gid_map
, &ns
->parent
->gid_map
);
1067 ssize_t
proc_projid_map_write(struct file
*file
, const char __user
*buf
,
1068 size_t size
, loff_t
*ppos
)
1070 struct seq_file
*seq
= file
->private_data
;
1071 struct user_namespace
*ns
= seq
->private;
1072 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
1077 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
1080 /* Anyone can set any valid project id no capability needed */
1081 return map_write(file
, buf
, size
, ppos
, -1,
1082 &ns
->projid_map
, &ns
->parent
->projid_map
);
1085 static bool new_idmap_permitted(const struct file
*file
,
1086 struct user_namespace
*ns
, int cap_setid
,
1087 struct uid_gid_map
*new_map
)
1089 const struct cred
*cred
= file
->f_cred
;
1090 /* Don't allow mappings that would allow anything that wouldn't
1091 * be allowed without the establishment of unprivileged mappings.
1093 if ((new_map
->nr_extents
== 1) && (new_map
->extent
[0].count
== 1) &&
1094 uid_eq(ns
->owner
, cred
->euid
)) {
1095 u32 id
= new_map
->extent
[0].lower_first
;
1096 if (cap_setid
== CAP_SETUID
) {
1097 kuid_t uid
= make_kuid(ns
->parent
, id
);
1098 if (uid_eq(uid
, cred
->euid
))
1100 } else if (cap_setid
== CAP_SETGID
) {
1101 kgid_t gid
= make_kgid(ns
->parent
, id
);
1102 if (!(ns
->flags
& USERNS_SETGROUPS_ALLOWED
) &&
1103 gid_eq(gid
, cred
->egid
))
1108 /* Allow anyone to set a mapping that doesn't require privilege */
1109 if (!cap_valid(cap_setid
))
1112 /* Allow the specified ids if we have the appropriate capability
1113 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
1114 * And the opener of the id file also had the approprpiate capability.
1116 if (ns_capable(ns
->parent
, cap_setid
) &&
1117 file_ns_capable(file
, ns
->parent
, cap_setid
))
1123 int proc_setgroups_show(struct seq_file
*seq
, void *v
)
1125 struct user_namespace
*ns
= seq
->private;
1126 unsigned long userns_flags
= READ_ONCE(ns
->flags
);
1128 seq_printf(seq
, "%s\n",
1129 (userns_flags
& USERNS_SETGROUPS_ALLOWED
) ?
1134 ssize_t
proc_setgroups_write(struct file
*file
, const char __user
*buf
,
1135 size_t count
, loff_t
*ppos
)
1137 struct seq_file
*seq
= file
->private_data
;
1138 struct user_namespace
*ns
= seq
->private;
1140 bool setgroups_allowed
;
1143 /* Only allow a very narrow range of strings to be written */
1145 if ((*ppos
!= 0) || (count
>= sizeof(kbuf
)))
1148 /* What was written? */
1150 if (copy_from_user(kbuf
, buf
, count
))
1155 /* What is being requested? */
1157 if (strncmp(pos
, "allow", 5) == 0) {
1159 setgroups_allowed
= true;
1161 else if (strncmp(pos
, "deny", 4) == 0) {
1163 setgroups_allowed
= false;
1168 /* Verify there is not trailing junk on the line */
1169 pos
= skip_spaces(pos
);
1174 mutex_lock(&userns_state_mutex
);
1175 if (setgroups_allowed
) {
1176 /* Enabling setgroups after setgroups has been disabled
1179 if (!(ns
->flags
& USERNS_SETGROUPS_ALLOWED
))
1182 /* Permanently disabling setgroups after setgroups has
1183 * been enabled by writing the gid_map is not allowed.
1185 if (ns
->gid_map
.nr_extents
!= 0)
1187 ns
->flags
&= ~USERNS_SETGROUPS_ALLOWED
;
1189 mutex_unlock(&userns_state_mutex
);
1191 /* Report a successful write */
1197 mutex_unlock(&userns_state_mutex
);
1201 bool userns_may_setgroups(const struct user_namespace
*ns
)
1205 mutex_lock(&userns_state_mutex
);
1206 /* It is not safe to use setgroups until a gid mapping in
1207 * the user namespace has been established.
1209 allowed
= ns
->gid_map
.nr_extents
!= 0;
1210 /* Is setgroups allowed? */
1211 allowed
= allowed
&& (ns
->flags
& USERNS_SETGROUPS_ALLOWED
);
1212 mutex_unlock(&userns_state_mutex
);
1218 * Returns true if @child is the same namespace or a descendant of
1221 bool in_userns(const struct user_namespace
*ancestor
,
1222 const struct user_namespace
*child
)
1224 const struct user_namespace
*ns
;
1225 for (ns
= child
; ns
->level
> ancestor
->level
; ns
= ns
->parent
)
1227 return (ns
== ancestor
);
1230 bool current_in_userns(const struct user_namespace
*target_ns
)
1232 return in_userns(target_ns
, current_user_ns());
1234 EXPORT_SYMBOL(current_in_userns
);
1236 static inline struct user_namespace
*to_user_ns(struct ns_common
*ns
)
1238 return container_of(ns
, struct user_namespace
, ns
);
1241 static struct ns_common
*userns_get(struct task_struct
*task
)
1243 struct user_namespace
*user_ns
;
1246 user_ns
= get_user_ns(__task_cred(task
)->user_ns
);
1249 return user_ns
? &user_ns
->ns
: NULL
;
1252 static void userns_put(struct ns_common
*ns
)
1254 put_user_ns(to_user_ns(ns
));
1257 static int userns_install(struct nsproxy
*nsproxy
, struct ns_common
*ns
)
1259 struct user_namespace
*user_ns
= to_user_ns(ns
);
1262 /* Don't allow gaining capabilities by reentering
1263 * the same user namespace.
1265 if (user_ns
== current_user_ns())
1268 /* Tasks that share a thread group must share a user namespace */
1269 if (!thread_group_empty(current
))
1272 if (current
->fs
->users
!= 1)
1275 if (!ns_capable(user_ns
, CAP_SYS_ADMIN
))
1278 cred
= prepare_creds();
1282 put_user_ns(cred
->user_ns
);
1283 set_cred_user_ns(cred
, get_user_ns(user_ns
));
1285 return commit_creds(cred
);
1288 struct ns_common
*ns_get_owner(struct ns_common
*ns
)
1290 struct user_namespace
*my_user_ns
= current_user_ns();
1291 struct user_namespace
*owner
, *p
;
1293 /* See if the owner is in the current user namespace */
1294 owner
= p
= ns
->ops
->owner(ns
);
1297 return ERR_PTR(-EPERM
);
1298 if (p
== my_user_ns
)
1303 return &get_user_ns(owner
)->ns
;
1306 static struct user_namespace
*userns_owner(struct ns_common
*ns
)
1308 return to_user_ns(ns
)->parent
;
1311 const struct proc_ns_operations userns_operations
= {
1313 .type
= CLONE_NEWUSER
,
1316 .install
= userns_install
,
1317 .owner
= userns_owner
,
1318 .get_parent
= ns_get_owner
,
1321 static __init
int user_namespaces_init(void)
1323 user_ns_cachep
= KMEM_CACHE(user_namespace
, SLAB_PANIC
);
1326 subsys_initcall(user_namespaces_init
);