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
;
28 static bool new_idmap_permitted(const struct file
*file
,
29 struct user_namespace
*ns
, int cap_setid
,
30 struct uid_gid_map
*map
);
32 static void set_cred_user_ns(struct cred
*cred
, struct user_namespace
*user_ns
)
34 /* Start with the same capabilities as init but useless for doing
35 * anything as the capabilities are bound to the new user namespace.
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
;
43 key_put(cred
->request_key_auth
);
44 cred
->request_key_auth
= NULL
;
46 /* tgcred will be cleared in our caller bc CLONE_THREAD won't be set */
47 cred
->user_ns
= user_ns
;
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
55 * This is called by copy_creds(), which will finish setting the target task's
58 int create_user_ns(struct cred
*new)
60 struct user_namespace
*ns
, *parent_ns
= new->user_ns
;
61 kuid_t owner
= new->euid
;
62 kgid_t group
= new->egid
;
65 if (parent_ns
->level
> 32)
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.
74 if (current_chrooted())
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.
81 if (!kuid_has_mapping(parent_ns
, owner
) ||
82 !kgid_has_mapping(parent_ns
, group
))
85 ns
= kmem_cache_zalloc(user_ns_cachep
, GFP_KERNEL
);
89 ret
= proc_alloc_inum(&ns
->proc_inum
);
91 kmem_cache_free(user_ns_cachep
, ns
);
95 atomic_set(&ns
->count
, 1);
96 /* Leave the new->user_ns reference with the new user namespace. */
97 ns
->parent
= parent_ns
;
98 ns
->level
= parent_ns
->level
+ 1;
102 set_cred_user_ns(new, ns
);
107 int unshare_userns(unsigned long unshare_flags
, struct cred
**new_cred
)
112 if (!(unshare_flags
& CLONE_NEWUSER
))
115 cred
= prepare_creds();
117 err
= create_user_ns(cred
);
127 void free_user_ns(struct user_namespace
*ns
)
129 struct user_namespace
*parent
;
133 proc_free_inum(ns
->proc_inum
);
134 kmem_cache_free(user_ns_cachep
, ns
);
136 } while (atomic_dec_and_test(&parent
->count
));
138 EXPORT_SYMBOL(free_user_ns
);
140 static u32
map_id_range_down(struct uid_gid_map
*map
, u32 id
, u32 count
)
142 unsigned idx
, extents
;
143 u32 first
, last
, id2
;
145 id2
= id
+ count
- 1;
147 /* Find the matching extent */
148 extents
= map
->nr_extents
;
150 for (idx
= 0; idx
< extents
; idx
++) {
151 first
= map
->extent
[idx
].first
;
152 last
= first
+ map
->extent
[idx
].count
- 1;
153 if (id
>= first
&& id
<= last
&&
154 (id2
>= first
&& id2
<= last
))
157 /* Map the id or note failure */
159 id
= (id
- first
) + map
->extent
[idx
].lower_first
;
166 static u32
map_id_down(struct uid_gid_map
*map
, u32 id
)
168 unsigned idx
, extents
;
171 /* Find the matching extent */
172 extents
= map
->nr_extents
;
174 for (idx
= 0; idx
< extents
; idx
++) {
175 first
= map
->extent
[idx
].first
;
176 last
= first
+ map
->extent
[idx
].count
- 1;
177 if (id
>= first
&& id
<= last
)
180 /* Map the id or note failure */
182 id
= (id
- first
) + map
->extent
[idx
].lower_first
;
189 static u32
map_id_up(struct uid_gid_map
*map
, u32 id
)
191 unsigned idx
, extents
;
194 /* Find the matching extent */
195 extents
= map
->nr_extents
;
197 for (idx
= 0; idx
< extents
; idx
++) {
198 first
= map
->extent
[idx
].lower_first
;
199 last
= first
+ map
->extent
[idx
].count
- 1;
200 if (id
>= first
&& id
<= last
)
203 /* Map the id or note failure */
205 id
= (id
- first
) + map
->extent
[idx
].first
;
213 * make_kuid - Map a user-namespace uid pair into a kuid.
214 * @ns: User namespace that the uid is in
215 * @uid: User identifier
217 * Maps a user-namespace uid pair into a kernel internal kuid,
218 * and returns that kuid.
220 * When there is no mapping defined for the user-namespace uid
221 * pair INVALID_UID is returned. Callers are expected to test
222 * for and handle handle INVALID_UID being returned. INVALID_UID
223 * may be tested for using uid_valid().
225 kuid_t
make_kuid(struct user_namespace
*ns
, uid_t uid
)
227 /* Map the uid to a global kernel uid */
228 return KUIDT_INIT(map_id_down(&ns
->uid_map
, uid
));
230 EXPORT_SYMBOL(make_kuid
);
233 * from_kuid - Create a uid from a kuid user-namespace pair.
234 * @targ: The user namespace we want a uid in.
235 * @kuid: The kernel internal uid to start with.
237 * Map @kuid into the user-namespace specified by @targ and
238 * return the resulting uid.
240 * There is always a mapping into the initial user_namespace.
242 * If @kuid has no mapping in @targ (uid_t)-1 is returned.
244 uid_t
from_kuid(struct user_namespace
*targ
, kuid_t kuid
)
246 /* Map the uid from a global kernel uid */
247 return map_id_up(&targ
->uid_map
, __kuid_val(kuid
));
249 EXPORT_SYMBOL(from_kuid
);
252 * from_kuid_munged - Create a uid from a kuid user-namespace pair.
253 * @targ: The user namespace we want a uid in.
254 * @kuid: The kernel internal uid to start with.
256 * Map @kuid into the user-namespace specified by @targ and
257 * return the resulting uid.
259 * There is always a mapping into the initial user_namespace.
261 * Unlike from_kuid from_kuid_munged never fails and always
262 * returns a valid uid. This makes from_kuid_munged appropriate
263 * for use in syscalls like stat and getuid where failing the
264 * system call and failing to provide a valid uid are not an
267 * If @kuid has no mapping in @targ overflowuid is returned.
269 uid_t
from_kuid_munged(struct user_namespace
*targ
, kuid_t kuid
)
272 uid
= from_kuid(targ
, kuid
);
274 if (uid
== (uid_t
) -1)
278 EXPORT_SYMBOL(from_kuid_munged
);
281 * make_kgid - Map a user-namespace gid pair into a kgid.
282 * @ns: User namespace that the gid is in
283 * @uid: group identifier
285 * Maps a user-namespace gid pair into a kernel internal kgid,
286 * and returns that kgid.
288 * When there is no mapping defined for the user-namespace gid
289 * pair INVALID_GID is returned. Callers are expected to test
290 * for and handle INVALID_GID being returned. INVALID_GID may be
291 * tested for using gid_valid().
293 kgid_t
make_kgid(struct user_namespace
*ns
, gid_t gid
)
295 /* Map the gid to a global kernel gid */
296 return KGIDT_INIT(map_id_down(&ns
->gid_map
, gid
));
298 EXPORT_SYMBOL(make_kgid
);
301 * from_kgid - Create a gid from a kgid user-namespace pair.
302 * @targ: The user namespace we want a gid in.
303 * @kgid: The kernel internal gid to start with.
305 * Map @kgid into the user-namespace specified by @targ and
306 * return the resulting gid.
308 * There is always a mapping into the initial user_namespace.
310 * If @kgid has no mapping in @targ (gid_t)-1 is returned.
312 gid_t
from_kgid(struct user_namespace
*targ
, kgid_t kgid
)
314 /* Map the gid from a global kernel gid */
315 return map_id_up(&targ
->gid_map
, __kgid_val(kgid
));
317 EXPORT_SYMBOL(from_kgid
);
320 * from_kgid_munged - Create a gid from a kgid user-namespace pair.
321 * @targ: The user namespace we want a gid in.
322 * @kgid: The kernel internal gid to start with.
324 * Map @kgid into the user-namespace specified by @targ and
325 * return the resulting gid.
327 * There is always a mapping into the initial user_namespace.
329 * Unlike from_kgid from_kgid_munged never fails and always
330 * returns a valid gid. This makes from_kgid_munged appropriate
331 * for use in syscalls like stat and getgid where failing the
332 * system call and failing to provide a valid gid are not options.
334 * If @kgid has no mapping in @targ overflowgid is returned.
336 gid_t
from_kgid_munged(struct user_namespace
*targ
, kgid_t kgid
)
339 gid
= from_kgid(targ
, kgid
);
341 if (gid
== (gid_t
) -1)
345 EXPORT_SYMBOL(from_kgid_munged
);
348 * make_kprojid - Map a user-namespace projid pair into a kprojid.
349 * @ns: User namespace that the projid is in
350 * @projid: Project identifier
352 * Maps a user-namespace uid pair into a kernel internal kuid,
353 * and returns that kuid.
355 * When there is no mapping defined for the user-namespace projid
356 * pair INVALID_PROJID is returned. Callers are expected to test
357 * for and handle handle INVALID_PROJID being returned. INVALID_PROJID
358 * may be tested for using projid_valid().
360 kprojid_t
make_kprojid(struct user_namespace
*ns
, projid_t projid
)
362 /* Map the uid to a global kernel uid */
363 return KPROJIDT_INIT(map_id_down(&ns
->projid_map
, projid
));
365 EXPORT_SYMBOL(make_kprojid
);
368 * from_kprojid - Create a projid from a kprojid user-namespace pair.
369 * @targ: The user namespace we want a projid in.
370 * @kprojid: The kernel internal project identifier to start with.
372 * Map @kprojid into the user-namespace specified by @targ and
373 * return the resulting projid.
375 * There is always a mapping into the initial user_namespace.
377 * If @kprojid has no mapping in @targ (projid_t)-1 is returned.
379 projid_t
from_kprojid(struct user_namespace
*targ
, kprojid_t kprojid
)
381 /* Map the uid from a global kernel uid */
382 return map_id_up(&targ
->projid_map
, __kprojid_val(kprojid
));
384 EXPORT_SYMBOL(from_kprojid
);
387 * from_kprojid_munged - Create a projiid from a kprojid user-namespace pair.
388 * @targ: The user namespace we want a projid in.
389 * @kprojid: The kernel internal projid to start with.
391 * Map @kprojid into the user-namespace specified by @targ and
392 * return the resulting projid.
394 * There is always a mapping into the initial user_namespace.
396 * Unlike from_kprojid from_kprojid_munged never fails and always
397 * returns a valid projid. This makes from_kprojid_munged
398 * appropriate for use in syscalls like stat and where
399 * failing the system call and failing to provide a valid projid are
402 * If @kprojid has no mapping in @targ OVERFLOW_PROJID is returned.
404 projid_t
from_kprojid_munged(struct user_namespace
*targ
, kprojid_t kprojid
)
407 projid
= from_kprojid(targ
, kprojid
);
409 if (projid
== (projid_t
) -1)
410 projid
= OVERFLOW_PROJID
;
413 EXPORT_SYMBOL(from_kprojid_munged
);
416 static int uid_m_show(struct seq_file
*seq
, void *v
)
418 struct user_namespace
*ns
= seq
->private;
419 struct uid_gid_extent
*extent
= v
;
420 struct user_namespace
*lower_ns
;
423 lower_ns
= seq_user_ns(seq
);
424 if ((lower_ns
== ns
) && lower_ns
->parent
)
425 lower_ns
= lower_ns
->parent
;
427 lower
= from_kuid(lower_ns
, KUIDT_INIT(extent
->lower_first
));
429 seq_printf(seq
, "%10u %10u %10u\n",
437 static int gid_m_show(struct seq_file
*seq
, void *v
)
439 struct user_namespace
*ns
= seq
->private;
440 struct uid_gid_extent
*extent
= v
;
441 struct user_namespace
*lower_ns
;
444 lower_ns
= seq_user_ns(seq
);
445 if ((lower_ns
== ns
) && lower_ns
->parent
)
446 lower_ns
= lower_ns
->parent
;
448 lower
= from_kgid(lower_ns
, KGIDT_INIT(extent
->lower_first
));
450 seq_printf(seq
, "%10u %10u %10u\n",
458 static int projid_m_show(struct seq_file
*seq
, void *v
)
460 struct user_namespace
*ns
= seq
->private;
461 struct uid_gid_extent
*extent
= v
;
462 struct user_namespace
*lower_ns
;
465 lower_ns
= seq_user_ns(seq
);
466 if ((lower_ns
== ns
) && lower_ns
->parent
)
467 lower_ns
= lower_ns
->parent
;
469 lower
= from_kprojid(lower_ns
, KPROJIDT_INIT(extent
->lower_first
));
471 seq_printf(seq
, "%10u %10u %10u\n",
479 static void *m_start(struct seq_file
*seq
, loff_t
*ppos
, struct uid_gid_map
*map
)
481 struct uid_gid_extent
*extent
= NULL
;
484 if (pos
< map
->nr_extents
)
485 extent
= &map
->extent
[pos
];
490 static void *uid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
492 struct user_namespace
*ns
= seq
->private;
494 return m_start(seq
, ppos
, &ns
->uid_map
);
497 static void *gid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
499 struct user_namespace
*ns
= seq
->private;
501 return m_start(seq
, ppos
, &ns
->gid_map
);
504 static void *projid_m_start(struct seq_file
*seq
, loff_t
*ppos
)
506 struct user_namespace
*ns
= seq
->private;
508 return m_start(seq
, ppos
, &ns
->projid_map
);
511 static void *m_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
514 return seq
->op
->start(seq
, pos
);
517 static void m_stop(struct seq_file
*seq
, void *v
)
522 struct seq_operations proc_uid_seq_operations
= {
523 .start
= uid_m_start
,
529 struct seq_operations proc_gid_seq_operations
= {
530 .start
= gid_m_start
,
536 struct seq_operations proc_projid_seq_operations
= {
537 .start
= projid_m_start
,
540 .show
= projid_m_show
,
543 static bool mappings_overlap(struct uid_gid_map
*new_map
, struct uid_gid_extent
*extent
)
545 u32 upper_first
, lower_first
, upper_last
, lower_last
;
548 upper_first
= extent
->first
;
549 lower_first
= extent
->lower_first
;
550 upper_last
= upper_first
+ extent
->count
- 1;
551 lower_last
= lower_first
+ extent
->count
- 1;
553 for (idx
= 0; idx
< new_map
->nr_extents
; idx
++) {
554 u32 prev_upper_first
, prev_lower_first
;
555 u32 prev_upper_last
, prev_lower_last
;
556 struct uid_gid_extent
*prev
;
558 prev
= &new_map
->extent
[idx
];
560 prev_upper_first
= prev
->first
;
561 prev_lower_first
= prev
->lower_first
;
562 prev_upper_last
= prev_upper_first
+ prev
->count
- 1;
563 prev_lower_last
= prev_lower_first
+ prev
->count
- 1;
565 /* Does the upper range intersect a previous extent? */
566 if ((prev_upper_first
<= upper_last
) &&
567 (prev_upper_last
>= upper_first
))
570 /* Does the lower range intersect a previous extent? */
571 if ((prev_lower_first
<= lower_last
) &&
572 (prev_lower_last
>= lower_first
))
579 static DEFINE_MUTEX(id_map_mutex
);
581 static ssize_t
map_write(struct file
*file
, const char __user
*buf
,
582 size_t count
, loff_t
*ppos
,
584 struct uid_gid_map
*map
,
585 struct uid_gid_map
*parent_map
)
587 struct seq_file
*seq
= file
->private_data
;
588 struct user_namespace
*ns
= seq
->private;
589 struct uid_gid_map new_map
;
591 struct uid_gid_extent
*extent
= NULL
;
592 unsigned long page
= 0;
593 char *kbuf
, *pos
, *next_line
;
594 ssize_t ret
= -EINVAL
;
597 * The id_map_mutex serializes all writes to any given map.
599 * Any map is only ever written once.
601 * An id map fits within 1 cache line on most architectures.
603 * On read nothing needs to be done unless you are on an
604 * architecture with a crazy cache coherency model like alpha.
606 * There is a one time data dependency between reading the
607 * count of the extents and the values of the extents. The
608 * desired behavior is to see the values of the extents that
609 * were written before the count of the extents.
611 * To achieve this smp_wmb() is used on guarantee the write
612 * order and smp_rmb() is guaranteed that we don't have crazy
613 * architectures returning stale data.
615 mutex_lock(&id_map_mutex
);
618 /* Only allow one successful write to the map */
619 if (map
->nr_extents
!= 0)
623 * Adjusting namespace settings requires capabilities on the target.
625 if (cap_valid(cap_setid
) && !file_ns_capable(file
, ns
, CAP_SYS_ADMIN
))
630 page
= __get_free_page(GFP_TEMPORARY
);
631 kbuf
= (char *) page
;
635 /* Only allow <= page size writes at the beginning of the file */
637 if ((*ppos
!= 0) || (count
>= PAGE_SIZE
))
640 /* Slurp in the user data */
642 if (copy_from_user(kbuf
, buf
, count
))
646 /* Parse the user data */
649 new_map
.nr_extents
= 0;
650 for (;pos
; pos
= next_line
) {
651 extent
= &new_map
.extent
[new_map
.nr_extents
];
653 /* Find the end of line and ensure I don't look past it */
654 next_line
= strchr(pos
, '\n');
658 if (*next_line
== '\0')
662 pos
= skip_spaces(pos
);
663 extent
->first
= simple_strtoul(pos
, &pos
, 10);
667 pos
= skip_spaces(pos
);
668 extent
->lower_first
= simple_strtoul(pos
, &pos
, 10);
672 pos
= skip_spaces(pos
);
673 extent
->count
= simple_strtoul(pos
, &pos
, 10);
674 if (*pos
&& !isspace(*pos
))
677 /* Verify there is not trailing junk on the line */
678 pos
= skip_spaces(pos
);
682 /* Verify we have been given valid starting values */
683 if ((extent
->first
== (u32
) -1) ||
684 (extent
->lower_first
== (u32
) -1 ))
687 /* Verify count is not zero and does not cause the extent to wrap */
688 if ((extent
->first
+ extent
->count
) <= extent
->first
)
690 if ((extent
->lower_first
+ extent
->count
) <= extent
->lower_first
)
693 /* Do the ranges in extent overlap any previous extents? */
694 if (mappings_overlap(&new_map
, extent
))
697 new_map
.nr_extents
++;
699 /* Fail if the file contains too many extents */
700 if ((new_map
.nr_extents
== UID_GID_MAP_MAX_EXTENTS
) &&
704 /* Be very certaint the new map actually exists */
705 if (new_map
.nr_extents
== 0)
709 /* Validate the user is allowed to use user id's mapped to. */
710 if (!new_idmap_permitted(file
, ns
, cap_setid
, &new_map
))
713 /* Map the lower ids from the parent user namespace to the
714 * kernel global id space.
716 for (idx
= 0; idx
< new_map
.nr_extents
; idx
++) {
718 extent
= &new_map
.extent
[idx
];
720 lower_first
= map_id_range_down(parent_map
,
724 /* Fail if we can not map the specified extent to
725 * the kernel global id space.
727 if (lower_first
== (u32
) -1)
730 extent
->lower_first
= lower_first
;
733 /* Install the map */
734 memcpy(map
->extent
, new_map
.extent
,
735 new_map
.nr_extents
*sizeof(new_map
.extent
[0]));
737 map
->nr_extents
= new_map
.nr_extents
;
742 mutex_unlock(&id_map_mutex
);
748 ssize_t
proc_uid_map_write(struct file
*file
, const char __user
*buf
, size_t size
, loff_t
*ppos
)
750 struct seq_file
*seq
= file
->private_data
;
751 struct user_namespace
*ns
= seq
->private;
752 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
757 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
760 return map_write(file
, buf
, size
, ppos
, CAP_SETUID
,
761 &ns
->uid_map
, &ns
->parent
->uid_map
);
764 ssize_t
proc_gid_map_write(struct file
*file
, const char __user
*buf
, 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_SETGID
,
777 &ns
->gid_map
, &ns
->parent
->gid_map
);
780 ssize_t
proc_projid_map_write(struct file
*file
, const char __user
*buf
, size_t size
, loff_t
*ppos
)
782 struct seq_file
*seq
= file
->private_data
;
783 struct user_namespace
*ns
= seq
->private;
784 struct user_namespace
*seq_ns
= seq_user_ns(seq
);
789 if ((seq_ns
!= ns
) && (seq_ns
!= ns
->parent
))
792 /* Anyone can set any valid project id no capability needed */
793 return map_write(file
, buf
, size
, ppos
, -1,
794 &ns
->projid_map
, &ns
->parent
->projid_map
);
797 static bool new_idmap_permitted(const struct file
*file
,
798 struct user_namespace
*ns
, int cap_setid
,
799 struct uid_gid_map
*new_map
)
801 /* Allow mapping to your own filesystem ids */
802 if ((new_map
->nr_extents
== 1) && (new_map
->extent
[0].count
== 1)) {
803 u32 id
= new_map
->extent
[0].lower_first
;
804 if (cap_setid
== CAP_SETUID
) {
805 kuid_t uid
= make_kuid(ns
->parent
, id
);
806 if (uid_eq(uid
, file
->f_cred
->fsuid
))
809 else if (cap_setid
== CAP_SETGID
) {
810 kgid_t gid
= make_kgid(ns
->parent
, id
);
811 if (gid_eq(gid
, file
->f_cred
->fsgid
))
816 /* Allow anyone to set a mapping that doesn't require privilege */
817 if (!cap_valid(cap_setid
))
820 /* Allow the specified ids if we have the appropriate capability
821 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
822 * And the opener of the id file also had the approprpiate capability.
824 if (ns_capable(ns
->parent
, cap_setid
) &&
825 file_ns_capable(file
, ns
->parent
, cap_setid
))
831 static void *userns_get(struct task_struct
*task
)
833 struct user_namespace
*user_ns
;
836 user_ns
= get_user_ns(__task_cred(task
)->user_ns
);
842 static void userns_put(void *ns
)
847 static int userns_install(struct nsproxy
*nsproxy
, void *ns
)
849 struct user_namespace
*user_ns
= ns
;
852 /* Don't allow gaining capabilities by reentering
853 * the same user namespace.
855 if (user_ns
== current_user_ns())
858 /* Threaded processes may not enter a different user namespace */
859 if (atomic_read(¤t
->mm
->mm_users
) > 1)
862 if (current
->fs
->users
!= 1)
865 if (!ns_capable(user_ns
, CAP_SYS_ADMIN
))
868 cred
= prepare_creds();
872 put_user_ns(cred
->user_ns
);
873 set_cred_user_ns(cred
, get_user_ns(user_ns
));
875 return commit_creds(cred
);
878 static unsigned int userns_inum(void *ns
)
880 struct user_namespace
*user_ns
= ns
;
881 return user_ns
->proc_inum
;
884 const struct proc_ns_operations userns_operations
= {
886 .type
= CLONE_NEWUSER
,
889 .install
= userns_install
,
893 static __init
int user_namespaces_init(void)
895 user_ns_cachep
= KMEM_CACHE(user_namespace
, SLAB_PANIC
);
898 module_init(user_namespaces_init
);