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
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>
21 #include <linux/uaccess.h>
22 #include <linux/ctype.h>
23 #include <linux/projid.h>
24 #include <linux/fs_struct.h>
26 static struct kmem_cache
*user_ns_cachep __read_mostly
;
27 static DEFINE_MUTEX(userns_state_mutex
);
29 static bool new_idmap_permitted(const struct file
*file
,
30 struct user_namespace
*ns
, int cap_setid
,
31 struct uid_gid_map
*map
);
33 static void set_cred_user_ns(struct cred
*cred
, struct user_namespace
*user_ns
)
35 /* Start with the same capabilities as init but useless for doing
36 * anything as the capabilities are bound to the new user namespace.
38 cred
->securebits
= SECUREBITS_DEFAULT
;
39 cred
->cap_inheritable
= CAP_EMPTY_SET
;
40 cred
->cap_permitted
= CAP_FULL_SET
;
41 cred
->cap_effective
= CAP_FULL_SET
;
42 cred
->cap_bset
= CAP_FULL_SET
;
44 key_put(cred
->request_key_auth
);
45 cred
->request_key_auth
= NULL
;
47 /* tgcred will be cleared in our caller bc CLONE_THREAD won't be set */
48 cred
->user_ns
= user_ns
;
52 * Create a new user namespace, deriving the creator from the user in the
53 * passed credentials, and replacing that user with the new root user for the
56 * This is called by copy_creds(), which will finish setting the target task's
59 int create_user_ns(struct cred
*new)
61 struct user_namespace
*ns
, *parent_ns
= new->user_ns
;
62 kuid_t owner
= new->euid
;
63 kgid_t group
= new->egid
;
66 if (parent_ns
->level
> 32)
70 * Verify that we can not violate the policy of which files
71 * may be accessed that is specified by the root directory,
72 * by verifing that the root directory is at the root of the
73 * mount namespace which allows all files to be accessed.
75 if (current_chrooted())
78 /* The creator needs a mapping in the parent user namespace
79 * or else we won't be able to reasonably tell userspace who
80 * created a user_namespace.
82 if (!kuid_has_mapping(parent_ns
, owner
) ||
83 !kgid_has_mapping(parent_ns
, group
))
86 ns
= kmem_cache_zalloc(user_ns_cachep
, GFP_KERNEL
);
90 ret
= ns_alloc_inum(&ns
->ns
);
92 kmem_cache_free(user_ns_cachep
, ns
);
95 ns
->ns
.ops
= &userns_operations
;
97 atomic_set(&ns
->count
, 1);
98 /* Leave the new->user_ns reference with the new user namespace. */
99 ns
->parent
= parent_ns
;
100 ns
->level
= parent_ns
->level
+ 1;
104 /* Inherit USERNS_SETGROUPS_ALLOWED from our parent */
105 mutex_lock(&userns_state_mutex
);
106 ns
->flags
= parent_ns
->flags
;
107 mutex_unlock(&userns_state_mutex
);
109 set_cred_user_ns(new, ns
);
111 #ifdef CONFIG_PERSISTENT_KEYRINGS
112 init_rwsem(&ns
->persistent_keyring_register_sem
);
117 int unshare_userns(unsigned long unshare_flags
, struct cred
**new_cred
)
122 if (!(unshare_flags
& CLONE_NEWUSER
))
125 cred
= prepare_creds();
127 err
= create_user_ns(cred
);
137 void free_user_ns(struct user_namespace
*ns
)
139 struct user_namespace
*parent
;
143 #ifdef CONFIG_PERSISTENT_KEYRINGS
144 key_put(ns
->persistent_keyring_register
);
146 ns_free_inum(&ns
->ns
);
147 kmem_cache_free(user_ns_cachep
, ns
);
149 } while (atomic_dec_and_test(&parent
->count
));
151 EXPORT_SYMBOL(free_user_ns
);
153 static u32
map_id_range_down(struct uid_gid_map
*map
, u32 id
, u32 count
)
155 unsigned idx
, extents
;
156 u32 first
, last
, id2
;
158 id2
= id
+ count
- 1;
160 /* Find the matching extent */
161 extents
= map
->nr_extents
;
163 for (idx
= 0; idx
< extents
; idx
++) {
164 first
= map
->extent
[idx
].first
;
165 last
= first
+ map
->extent
[idx
].count
- 1;
166 if (id
>= first
&& id
<= last
&&
167 (id2
>= first
&& id2
<= last
))
170 /* Map the id or note failure */
172 id
= (id
- first
) + map
->extent
[idx
].lower_first
;
179 static u32
map_id_down(struct uid_gid_map
*map
, u32 id
)
181 unsigned idx
, extents
;
184 /* Find the matching extent */
185 extents
= map
->nr_extents
;
187 for (idx
= 0; idx
< extents
; idx
++) {
188 first
= map
->extent
[idx
].first
;
189 last
= first
+ map
->extent
[idx
].count
- 1;
190 if (id
>= first
&& id
<= last
)
193 /* Map the id or note failure */
195 id
= (id
- first
) + map
->extent
[idx
].lower_first
;
202 static u32
map_id_up(struct uid_gid_map
*map
, u32 id
)
204 unsigned idx
, extents
;
207 /* Find the matching extent */
208 extents
= map
->nr_extents
;
210 for (idx
= 0; idx
< extents
; idx
++) {
211 first
= map
->extent
[idx
].lower_first
;
212 last
= first
+ map
->extent
[idx
].count
- 1;
213 if (id
>= first
&& id
<= last
)
216 /* Map the id or note failure */
218 id
= (id
- first
) + map
->extent
[idx
].first
;
226 * make_kuid - Map a user-namespace uid pair into a kuid.
227 * @ns: User namespace that the uid is in
228 * @uid: User identifier
230 * Maps a user-namespace uid pair into a kernel internal kuid,
231 * and returns that kuid.
233 * When there is no mapping defined for the user-namespace uid
234 * pair INVALID_UID is returned. Callers are expected to test
235 * for and handle INVALID_UID being returned. INVALID_UID
236 * may be tested for using uid_valid().
238 kuid_t
make_kuid(struct user_namespace
*ns
, uid_t uid
)
240 /* Map the uid to a global kernel uid */
241 return KUIDT_INIT(map_id_down(&ns
->uid_map
, uid
));
243 EXPORT_SYMBOL(make_kuid
);
246 * from_kuid - Create a uid from a kuid user-namespace pair.
247 * @targ: The user namespace we want a uid in.
248 * @kuid: The kernel internal uid to start with.
250 * Map @kuid into the user-namespace specified by @targ and
251 * return the resulting uid.
253 * There is always a mapping into the initial user_namespace.
255 * If @kuid has no mapping in @targ (uid_t)-1 is returned.
257 uid_t
from_kuid(struct user_namespace
*targ
, kuid_t kuid
)
259 /* Map the uid from a global kernel uid */
260 return map_id_up(&targ
->uid_map
, __kuid_val(kuid
));
262 EXPORT_SYMBOL(from_kuid
);
265 * from_kuid_munged - Create a uid from a kuid user-namespace pair.
266 * @targ: The user namespace we want a uid in.
267 * @kuid: The kernel internal uid to start with.
269 * Map @kuid into the user-namespace specified by @targ and
270 * return the resulting uid.
272 * There is always a mapping into the initial user_namespace.
274 * Unlike from_kuid from_kuid_munged never fails and always
275 * returns a valid uid. This makes from_kuid_munged appropriate
276 * for use in syscalls like stat and getuid where failing the
277 * system call and failing to provide a valid uid are not an
280 * If @kuid has no mapping in @targ overflowuid is returned.
282 uid_t
from_kuid_munged(struct user_namespace
*targ
, kuid_t kuid
)
285 uid
= from_kuid(targ
, kuid
);
287 if (uid
== (uid_t
) -1)
291 EXPORT_SYMBOL(from_kuid_munged
);
294 * make_kgid - Map a user-namespace gid pair into a kgid.
295 * @ns: User namespace that the gid is in
296 * @gid: group identifier
298 * Maps a user-namespace gid pair into a kernel internal kgid,
299 * and returns that kgid.
301 * When there is no mapping defined for the user-namespace gid
302 * pair INVALID_GID is returned. Callers are expected to test
303 * for and handle INVALID_GID being returned. INVALID_GID may be
304 * tested for using gid_valid().
306 kgid_t
make_kgid(struct user_namespace
*ns
, gid_t gid
)
308 /* Map the gid to a global kernel gid */
309 return KGIDT_INIT(map_id_down(&ns
->gid_map
, gid
));
311 EXPORT_SYMBOL(make_kgid
);
314 * from_kgid - Create a gid from a kgid user-namespace pair.
315 * @targ: The user namespace we want a gid in.
316 * @kgid: The kernel internal gid to start with.
318 * Map @kgid into the user-namespace specified by @targ and
319 * return the resulting gid.
321 * There is always a mapping into the initial user_namespace.
323 * If @kgid has no mapping in @targ (gid_t)-1 is returned.
325 gid_t
from_kgid(struct user_namespace
*targ
, kgid_t kgid
)
327 /* Map the gid from a global kernel gid */
328 return map_id_up(&targ
->gid_map
, __kgid_val(kgid
));
330 EXPORT_SYMBOL(from_kgid
);
333 * from_kgid_munged - Create a gid from a kgid user-namespace pair.
334 * @targ: The user namespace we want a gid in.
335 * @kgid: The kernel internal gid to start with.
337 * Map @kgid into the user-namespace specified by @targ and
338 * return the resulting gid.
340 * There is always a mapping into the initial user_namespace.
342 * Unlike from_kgid from_kgid_munged never fails and always
343 * returns a valid gid. This makes from_kgid_munged appropriate
344 * for use in syscalls like stat and getgid where failing the
345 * system call and failing to provide a valid gid are not options.
347 * If @kgid has no mapping in @targ overflowgid is returned.
349 gid_t
from_kgid_munged(struct user_namespace
*targ
, kgid_t kgid
)
352 gid
= from_kgid(targ
, kgid
);
354 if (gid
== (gid_t
) -1)
358 EXPORT_SYMBOL(from_kgid_munged
);
361 * make_kprojid - Map a user-namespace projid pair into a kprojid.
362 * @ns: User namespace that the projid is in
363 * @projid: Project identifier
365 * Maps a user-namespace uid pair into a kernel internal kuid,
366 * and returns that kuid.
368 * When there is no mapping defined for the user-namespace projid
369 * pair INVALID_PROJID is returned. Callers are expected to test
370 * for and handle handle INVALID_PROJID being returned. INVALID_PROJID
371 * may be tested for using projid_valid().
373 kprojid_t
make_kprojid(struct user_namespace
*ns
, projid_t projid
)
375 /* Map the uid to a global kernel uid */
376 return KPROJIDT_INIT(map_id_down(&ns
->projid_map
, projid
));
378 EXPORT_SYMBOL(make_kprojid
);
381 * from_kprojid - Create a projid from a kprojid user-namespace pair.
382 * @targ: The user namespace we want a projid in.
383 * @kprojid: The kernel internal project identifier to start with.
385 * Map @kprojid into the user-namespace specified by @targ and
386 * return the resulting projid.
388 * There is always a mapping into the initial user_namespace.
390 * If @kprojid has no mapping in @targ (projid_t)-1 is returned.
392 projid_t
from_kprojid(struct user_namespace
*targ
, kprojid_t kprojid
)
394 /* Map the uid from a global kernel uid */
395 return map_id_up(&targ
->projid_map
, __kprojid_val(kprojid
));
397 EXPORT_SYMBOL(from_kprojid
);
400 * from_kprojid_munged - Create a projiid from a kprojid user-namespace pair.
401 * @targ: The user namespace we want a projid in.
402 * @kprojid: The kernel internal projid to start with.
404 * Map @kprojid into the user-namespace specified by @targ and
405 * return the resulting projid.
407 * There is always a mapping into the initial user_namespace.
409 * Unlike from_kprojid from_kprojid_munged never fails and always
410 * returns a valid projid. This makes from_kprojid_munged
411 * appropriate for use in syscalls like stat and where
412 * failing the system call and failing to provide a valid projid are
415 * If @kprojid has no mapping in @targ OVERFLOW_PROJID is returned.
417 projid_t
from_kprojid_munged(struct user_namespace
*targ
, kprojid_t kprojid
)
420 projid
= from_kprojid(targ
, kprojid
);
422 if (projid
== (projid_t
) -1)
423 projid
= OVERFLOW_PROJID
;
426 EXPORT_SYMBOL(from_kprojid_munged
);
429 static int uid_m_show(struct seq_file
*seq
, void *v
)
431 struct user_namespace
*ns
= seq
->private;
432 struct uid_gid_extent
*extent
= v
;
433 struct user_namespace
*lower_ns
;
436 lower_ns
= seq_user_ns(seq
);
437 if ((lower_ns
== ns
) && lower_ns
->parent
)
438 lower_ns
= lower_ns
->parent
;
440 lower
= from_kuid(lower_ns
, KUIDT_INIT(extent
->lower_first
));
442 seq_printf(seq
, "%10u %10u %10u\n",
450 static int gid_m_show(struct seq_file
*seq
, void *v
)
452 struct user_namespace
*ns
= seq
->private;
453 struct uid_gid_extent
*extent
= v
;
454 struct user_namespace
*lower_ns
;
457 lower_ns
= seq_user_ns(seq
);
458 if ((lower_ns
== ns
) && lower_ns
->parent
)
459 lower_ns
= lower_ns
->parent
;
461 lower
= from_kgid(lower_ns
, KGIDT_INIT(extent
->lower_first
));
463 seq_printf(seq
, "%10u %10u %10u\n",
471 static int projid_m_show(struct seq_file
*seq
, void *v
)
473 struct user_namespace
*ns
= seq
->private;
474 struct uid_gid_extent
*extent
= v
;
475 struct user_namespace
*lower_ns
;
478 lower_ns
= seq_user_ns(seq
);
479 if ((lower_ns
== ns
) && lower_ns
->parent
)
480 lower_ns
= lower_ns
->parent
;
482 lower
= from_kprojid(lower_ns
, KPROJIDT_INIT(extent
->lower_first
));
484 seq_printf(seq
, "%10u %10u %10u\n",
492 static void *m_start(struct seq_file
*seq
, loff_t
*ppos
,
493 struct uid_gid_map
*map
)
495 struct uid_gid_extent
*extent
= NULL
;
498 if (pos
< map
->nr_extents
)
499 extent
= &map
->extent
[pos
];
504 static void *uid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
506 struct user_namespace
*ns
= seq
->private;
508 return m_start(seq
, ppos
, &ns
->uid_map
);
511 static void *gid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
513 struct user_namespace
*ns
= seq
->private;
515 return m_start(seq
, ppos
, &ns
->gid_map
);
518 static void *projid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
520 struct user_namespace
*ns
= seq
->private;
522 return m_start(seq
, ppos
, &ns
->projid_map
);
525 static void *m_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
528 return seq
->op
->start(seq
, pos
);
531 static void m_stop(struct seq_file
*seq
, void *v
)
536 const struct seq_operations proc_uid_seq_operations
= {
537 .start
= uid_m_start
,
543 const struct seq_operations proc_gid_seq_operations
= {
544 .start
= gid_m_start
,
550 const struct seq_operations proc_projid_seq_operations
= {
551 .start
= projid_m_start
,
554 .show
= projid_m_show
,
557 static bool mappings_overlap(struct uid_gid_map
*new_map
,
558 struct uid_gid_extent
*extent
)
560 u32 upper_first
, lower_first
, upper_last
, lower_last
;
563 upper_first
= extent
->first
;
564 lower_first
= extent
->lower_first
;
565 upper_last
= upper_first
+ extent
->count
- 1;
566 lower_last
= lower_first
+ extent
->count
- 1;
568 for (idx
= 0; idx
< new_map
->nr_extents
; idx
++) {
569 u32 prev_upper_first
, prev_lower_first
;
570 u32 prev_upper_last
, prev_lower_last
;
571 struct uid_gid_extent
*prev
;
573 prev
= &new_map
->extent
[idx
];
575 prev_upper_first
= prev
->first
;
576 prev_lower_first
= prev
->lower_first
;
577 prev_upper_last
= prev_upper_first
+ prev
->count
- 1;
578 prev_lower_last
= prev_lower_first
+ prev
->count
- 1;
580 /* Does the upper range intersect a previous extent? */
581 if ((prev_upper_first
<= upper_last
) &&
582 (prev_upper_last
>= upper_first
))
585 /* Does the lower range intersect a previous extent? */
586 if ((prev_lower_first
<= lower_last
) &&
587 (prev_lower_last
>= lower_first
))
593 static ssize_t
map_write(struct file
*file
, const char __user
*buf
,
594 size_t count
, loff_t
*ppos
,
596 struct uid_gid_map
*map
,
597 struct uid_gid_map
*parent_map
)
599 struct seq_file
*seq
= file
->private_data
;
600 struct user_namespace
*ns
= seq
->private;
601 struct uid_gid_map new_map
;
603 struct uid_gid_extent
*extent
= NULL
;
604 unsigned long page
= 0;
605 char *kbuf
, *pos
, *next_line
;
606 ssize_t ret
= -EINVAL
;
609 * The userns_state_mutex serializes all writes to any given map.
611 * Any map is only ever written once.
613 * An id map fits within 1 cache line on most architectures.
615 * On read nothing needs to be done unless you are on an
616 * architecture with a crazy cache coherency model like alpha.
618 * There is a one time data dependency between reading the
619 * count of the extents and the values of the extents. The
620 * desired behavior is to see the values of the extents that
621 * were written before the count of the extents.
623 * To achieve this smp_wmb() is used on guarantee the write
624 * order and smp_rmb() is guaranteed that we don't have crazy
625 * architectures returning stale data.
627 mutex_lock(&userns_state_mutex
);
630 /* Only allow one successful write to the map */
631 if (map
->nr_extents
!= 0)
635 * Adjusting namespace settings requires capabilities on the target.
637 if (cap_valid(cap_setid
) && !file_ns_capable(file
, ns
, CAP_SYS_ADMIN
))
642 page
= __get_free_page(GFP_TEMPORARY
);
643 kbuf
= (char *) page
;
647 /* Only allow < page size writes at the beginning of the file */
649 if ((*ppos
!= 0) || (count
>= PAGE_SIZE
))
652 /* Slurp in the user data */
654 if (copy_from_user(kbuf
, buf
, count
))
658 /* Parse the user data */
661 new_map
.nr_extents
= 0;
662 for (; pos
; pos
= next_line
) {
663 extent
= &new_map
.extent
[new_map
.nr_extents
];
665 /* Find the end of line and ensure I don't look past it */
666 next_line
= strchr(pos
, '\n');
670 if (*next_line
== '\0')
674 pos
= skip_spaces(pos
);
675 extent
->first
= simple_strtoul(pos
, &pos
, 10);
679 pos
= skip_spaces(pos
);
680 extent
->lower_first
= simple_strtoul(pos
, &pos
, 10);
684 pos
= skip_spaces(pos
);
685 extent
->count
= simple_strtoul(pos
, &pos
, 10);
686 if (*pos
&& !isspace(*pos
))
689 /* Verify there is not trailing junk on the line */
690 pos
= skip_spaces(pos
);
694 /* Verify we have been given valid starting values */
695 if ((extent
->first
== (u32
) -1) ||
696 (extent
->lower_first
== (u32
) -1))
699 /* Verify count is not zero and does not cause the
702 if ((extent
->first
+ extent
->count
) <= extent
->first
)
704 if ((extent
->lower_first
+ extent
->count
) <=
708 /* Do the ranges in extent overlap any previous extents? */
709 if (mappings_overlap(&new_map
, extent
))
712 new_map
.nr_extents
++;
714 /* Fail if the file contains too many extents */
715 if ((new_map
.nr_extents
== UID_GID_MAP_MAX_EXTENTS
) &&
719 /* Be very certaint the new map actually exists */
720 if (new_map
.nr_extents
== 0)
724 /* Validate the user is allowed to use user id's mapped to. */
725 if (!new_idmap_permitted(file
, ns
, cap_setid
, &new_map
))
728 /* Map the lower ids from the parent user namespace to the
729 * kernel global id space.
731 for (idx
= 0; idx
< new_map
.nr_extents
; idx
++) {
733 extent
= &new_map
.extent
[idx
];
735 lower_first
= map_id_range_down(parent_map
,
739 /* Fail if we can not map the specified extent to
740 * the kernel global id space.
742 if (lower_first
== (u32
) -1)
745 extent
->lower_first
= lower_first
;
748 /* Install the map */
749 memcpy(map
->extent
, new_map
.extent
,
750 new_map
.nr_extents
*sizeof(new_map
.extent
[0]));
752 map
->nr_extents
= new_map
.nr_extents
;
757 mutex_unlock(&userns_state_mutex
);
763 ssize_t
proc_uid_map_write(struct file
*file
, const char __user
*buf
,
764 size_t size
, loff_t
*ppos
)
766 struct seq_file
*seq
= file
->private_data
;
767 struct user_namespace
*ns
= seq
->private;
768 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
773 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
776 return map_write(file
, buf
, size
, ppos
, CAP_SETUID
,
777 &ns
->uid_map
, &ns
->parent
->uid_map
);
780 ssize_t
proc_gid_map_write(struct file
*file
, const char __user
*buf
,
781 size_t size
, loff_t
*ppos
)
783 struct seq_file
*seq
= file
->private_data
;
784 struct user_namespace
*ns
= seq
->private;
785 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
790 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
793 return map_write(file
, buf
, size
, ppos
, CAP_SETGID
,
794 &ns
->gid_map
, &ns
->parent
->gid_map
);
797 ssize_t
proc_projid_map_write(struct file
*file
, const char __user
*buf
,
798 size_t size
, loff_t
*ppos
)
800 struct seq_file
*seq
= file
->private_data
;
801 struct user_namespace
*ns
= seq
->private;
802 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
807 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
810 /* Anyone can set any valid project id no capability needed */
811 return map_write(file
, buf
, size
, ppos
, -1,
812 &ns
->projid_map
, &ns
->parent
->projid_map
);
815 static bool new_idmap_permitted(const struct file
*file
,
816 struct user_namespace
*ns
, int cap_setid
,
817 struct uid_gid_map
*new_map
)
819 const struct cred
*cred
= file
->f_cred
;
820 /* Don't allow mappings that would allow anything that wouldn't
821 * be allowed without the establishment of unprivileged mappings.
823 if ((new_map
->nr_extents
== 1) && (new_map
->extent
[0].count
== 1) &&
824 uid_eq(ns
->owner
, cred
->euid
)) {
825 u32 id
= new_map
->extent
[0].lower_first
;
826 if (cap_setid
== CAP_SETUID
) {
827 kuid_t uid
= make_kuid(ns
->parent
, id
);
828 if (uid_eq(uid
, cred
->euid
))
830 } else if (cap_setid
== CAP_SETGID
) {
831 kgid_t gid
= make_kgid(ns
->parent
, id
);
832 if (!(ns
->flags
& USERNS_SETGROUPS_ALLOWED
) &&
833 gid_eq(gid
, cred
->egid
))
838 /* Allow anyone to set a mapping that doesn't require privilege */
839 if (!cap_valid(cap_setid
))
842 /* Allow the specified ids if we have the appropriate capability
843 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
844 * And the opener of the id file also had the approprpiate capability.
846 if (ns_capable(ns
->parent
, cap_setid
) &&
847 file_ns_capable(file
, ns
->parent
, cap_setid
))
853 int proc_setgroups_show(struct seq_file
*seq
, void *v
)
855 struct user_namespace
*ns
= seq
->private;
856 unsigned long userns_flags
= ACCESS_ONCE(ns
->flags
);
858 seq_printf(seq
, "%s\n",
859 (userns_flags
& USERNS_SETGROUPS_ALLOWED
) ?
864 ssize_t
proc_setgroups_write(struct file
*file
, const char __user
*buf
,
865 size_t count
, loff_t
*ppos
)
867 struct seq_file
*seq
= file
->private_data
;
868 struct user_namespace
*ns
= seq
->private;
870 bool setgroups_allowed
;
873 /* Only allow a very narrow range of strings to be written */
875 if ((*ppos
!= 0) || (count
>= sizeof(kbuf
)))
878 /* What was written? */
880 if (copy_from_user(kbuf
, buf
, count
))
885 /* What is being requested? */
887 if (strncmp(pos
, "allow", 5) == 0) {
889 setgroups_allowed
= true;
891 else if (strncmp(pos
, "deny", 4) == 0) {
893 setgroups_allowed
= false;
898 /* Verify there is not trailing junk on the line */
899 pos
= skip_spaces(pos
);
904 mutex_lock(&userns_state_mutex
);
905 if (setgroups_allowed
) {
906 /* Enabling setgroups after setgroups has been disabled
909 if (!(ns
->flags
& USERNS_SETGROUPS_ALLOWED
))
912 /* Permanently disabling setgroups after setgroups has
913 * been enabled by writing the gid_map is not allowed.
915 if (ns
->gid_map
.nr_extents
!= 0)
917 ns
->flags
&= ~USERNS_SETGROUPS_ALLOWED
;
919 mutex_unlock(&userns_state_mutex
);
921 /* Report a successful write */
927 mutex_unlock(&userns_state_mutex
);
931 bool userns_may_setgroups(const struct user_namespace
*ns
)
935 mutex_lock(&userns_state_mutex
);
936 /* It is not safe to use setgroups until a gid mapping in
937 * the user namespace has been established.
939 allowed
= ns
->gid_map
.nr_extents
!= 0;
940 /* Is setgroups allowed? */
941 allowed
= allowed
&& (ns
->flags
& USERNS_SETGROUPS_ALLOWED
);
942 mutex_unlock(&userns_state_mutex
);
947 static inline struct user_namespace
*to_user_ns(struct ns_common
*ns
)
949 return container_of(ns
, struct user_namespace
, ns
);
952 static struct ns_common
*userns_get(struct task_struct
*task
)
954 struct user_namespace
*user_ns
;
957 user_ns
= get_user_ns(__task_cred(task
)->user_ns
);
960 return user_ns
? &user_ns
->ns
: NULL
;
963 static void userns_put(struct ns_common
*ns
)
965 put_user_ns(to_user_ns(ns
));
968 static int userns_install(struct nsproxy
*nsproxy
, struct ns_common
*ns
)
970 struct user_namespace
*user_ns
= to_user_ns(ns
);
973 /* Don't allow gaining capabilities by reentering
974 * the same user namespace.
976 if (user_ns
== current_user_ns())
979 /* Threaded processes may not enter a different user namespace */
980 if (atomic_read(¤t
->mm
->mm_users
) > 1)
983 if (current
->fs
->users
!= 1)
986 if (!ns_capable(user_ns
, CAP_SYS_ADMIN
))
989 cred
= prepare_creds();
993 put_user_ns(cred
->user_ns
);
994 set_cred_user_ns(cred
, get_user_ns(user_ns
));
996 return commit_creds(cred
);
999 const struct proc_ns_operations userns_operations
= {
1001 .type
= CLONE_NEWUSER
,
1004 .install
= userns_install
,
1007 static __init
int user_namespaces_init(void)
1009 user_ns_cachep
= KMEM_CACHE(user_namespace
, SLAB_PANIC
);
1012 subsys_initcall(user_namespaces_init
);