user_namespaces.7: XFS support for user namespaces was added in Linux 3.11
[man-pages.git] / man7 / user_namespaces.7
blob1e3beadf5848f49bdd82b061e80412e9fbe0b383
1 .\" Copyright (c) 2013 by Michael Kerrisk <mtk.manpages@gmail.com>
2 .\" and Copyright (c) 2012 by Eric W. Biederman <ebiederm@xmission.com>
3 .\"
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\"
24 .\"
25 .TH USER_NAMESPACES 7 2013-01-14 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 user_namespaces \- overview of Linux user_namespaces
28 .SH DESCRIPTION
29 For an overview of namespaces, see
30 .BR namespaces (7).
32 User namespaces isolate security-related identifiers, in particular,
33 user IDs and group IDs (see
34 .BR credentials (7),
35 keys (see
36 .BR keyctl (2)),
37 .\" FIXME: This page says very little about the interaction
38 .\" of user namespaces and keys. Add something on this topic.
39 and capabilities (see
40 .BR capabilities (7)).
41 A process's user and group IDs can be different
42 inside and outside a user namespace.
43 In particular,
44 a process can have a normal unprivileged user ID outside a user namespace
45 while at the same time having a user ID of 0 inside the namespace;
46 in other words,
47 the process has full privileges for operations inside the user namespace,
48 but is unprivileged for operations outside the namespace.
49 .\"
50 .\" ============================================================
51 .\"
52 .SS Nested namespaces, namespace membership
53 User namespaces can be nested;
54 that is, each user namespace\(emexcept the initial ("root")
55 namespace\(emhas a parent user namespace,
56 and can have zero or more child user namespaces.
57 The parent user namespace is the user namespace
58 of the process that creates the user namespace via a call to
59 .BR unshare (2)
61 .BR clone (2)
62 with the
63 .BR CLONE_NEWUSER
64 flag.
66 The kernel imposes (since version 3.11) a limit of 32 nested levels of
67 .\" commit 8742f229b635bf1c1c84a3dfe5e47c814c20b5c8
68 user namespaces.
69 .\" FIXME Explain the rationale for this limit. (What is the rationale?)
70 Calls to
71 .BR unshare (2)
73 .BR clone (2)
74 that would cause this limit to be exceeded fail with the error
75 .BR EUSERS .
77 Each process is a member of exactly one user namespace.
78 A process created via
79 .BR fork (2)
81 .BR clone (2)
82 without the
83 .BR CLONE_NEWUSER
84 flag is a member of the same user namespace as its parent.
85 A process can join another user namespace with
86 .BR setns (2)
87 if it has the
88 .BR CAP_SYS_ADMIN
89 in that namespace;
90 upon doing so, it gains a full set of capabilities in that namespace.
92 A call to
93 .BR clone (2)
95 .BR unshare (2)
96 with the
97 .BR CLONE_NEWUSER
98 flag makes the new child process (for
99 .BR clone (2))
100 or the caller (for
101 .BR unshare (2))
102 a member of the new user namespace created by the call.
104 .\" ============================================================
106 .SS Capabilities
107 The child process created by
108 .BR clone (2)
109 with the
110 .BR CLONE_NEWUSER
111 flag starts out with a complete set
112 of capabilities in the new user namespace.
113 Likewise, a process that creates a new user namespace using
114 .BR unshare (2)
115 or joins an existing user namespace using
116 .BR setns (2)
117 gains a full set of capabilities in that namespace.
118 On the other hand,
119 that process has no capabilities in the parent (in the case of
120 .BR clone (2))
121 or previous (in the case of
122 .BR unshare (2)
124 .BR setns (2))
125 user namespace,
126 even if the new namespace is created or joined by the root user
127 (i.e., a process with user ID 0 in the root namespace).
129 Note that a call to
130 .BR execve (2)
131 will cause a process to lose any capabilities that it has,
132 unless it has a user ID of 0 within the namespace.
133 Thus, before calling
134 .BR execve (2),
135 a user ID mapping for ID 0 must be defined,
136 and the caller may also need to use
137 .BR setuid (2)
138 or similar to set its user ID to 0.
140 A call to 
141 .BR clone (2),
142 .BR unshare (2),
144 .BR setns (2)
145 using the
146 .BR CLONE_NEWUSER
147 flag sets the "securebits" flags
148 (see
149 .BR capabilities (7))
150 to their default values (all flags disabled) in the child (for
151 .BR clone (2))
152 or caller (for
153 .BR unshare (2),
155 .BR setns (2)).
156 Note that because the caller no longer has capabilities
157 in its original user namespace after a call to
158 .BR setns (2),
159 it is not possible for a process to reset its "securebits" flags while
160 retaining its user namespace membership by using a pair of
161 .BR setns (2)
162 calls to move to another user namespace and then return to
163 its original user namespace.
165 Having a capability inside a user namespace
166 permits a process to perform operations (that require privilege)
167 only on resources governed by that namespace.
168 The rules for determining whether or not a process has a capability
169 in a particular user namespace are as follows:
170 .IP 1. 3
171 A process has a capability inside a user namespace
172 if it is a member of that namespace and
173 it has the capability in its effective capability set.
174 A process can gain capabilities in its effective capability
175 set in various ways.
176 For example, it may execute a set-user-ID program or an
177 executable with associated file capabilities.
178 In addition,
179 a process may gain capabilities via the effect of
180 .BR clone (2),
181 .BR unshare (2),
183 .BR setns (2),
184 as already described.
185 .\" In the 3.8 sources, see security/commoncap.c::cap_capable():
186 .IP 2.
187 If a process has a capability in a user namespace,
188 then it has that capability in all child (and further removed descendant)
189 namespaces as well.
190 .IP 3.
191 .\" * The owner of the user namespace in the parent of the
192 .\" * user namespace has all caps.
193 When a user namespace is created, the kernel records the effective
194 user ID of the creating process as being the "owner" of the namespace.
195 .\" (and likewise associates the effective group ID of the creating process
196 .\" with the namespace).
197 A process that resides
198 in the parent of the user namespace
199 .\" See kernel commit 520d9eabce18edfef76a60b7b839d54facafe1f9 for a fix
200 .\" on this point
201 and whose effective user ID matches the owner of the namespace
202 has all capabilities in the namespace.
203 .\"     This includes the case where the process executes a set-user-ID
204 .\"     program that confers the effective UID of the creator of the namespace.
205 By virtue of the previous rule,
206 this means that the process has all capabilities in all
207 further removed descendant user namespaces as well.
209 .\" ============================================================
211 .SS Interaction of user namespaces and other types of namespaces
212 Starting in Linux 3.8, unprivileged processes can create user namespaces,
213 and mount, PID, IPC, network, and UTS namespaces can be created with just the
214 .B CAP_SYS_ADMIN
215 capability in the caller's user namespace.
218 .BR CLONE_NEWUSER
219 is specified along with other
220 .B CLONE_NEW*
221 flags in a single
222 .BR clone (2)
224 .BR unshare (2)
225 call, the user namespace is guaranteed to be created first,
226 giving the child
227 .RB ( clone (2))
228 or caller
229 .RB ( unshare (2))
230 privileges over the remaining namespaces created by the call.
231 Thus, it is possible for an unprivileged caller to specify this combination
232 of flags.
234 When a new IPC, mount, network, PID, or UTS namespace is created via
235 .BR clone (2)
237 .BR unshare (2),
238 the kernel records the user namespace of the creating process against
239 the new namespace.
240 (This association can't be changed.)
241 When a process in the new namespace subsequently performs
242 privileged operations that operate on global
243 resources isolated by the namespace,
244 the permission checks are performed according to the process's capabilities
245 in the user namespace that the kernel associated with the new namespace.
247 .\" ============================================================
249 .SS User and group ID mappings: uid_map and gid_map
250 When a user namespace is created,
251 it starts out without a mapping of user IDs (group IDs)
252 to the parent user namespace.
254 .IR /proc/[pid]/uid_map
256 .IR /proc/[pid]/gid_map
257 files (available since Linux 3.5)
258 .\" commit 22d917d80e842829d0ca0a561967d728eb1d6303
259 expose the mappings for user and group IDs
260 inside the user namespace for the process
261 .IR pid .
262 These files can be read to view the mappings in a user namespace and
263 written to (once) to define the mappings.
265 The description in the following paragraphs explains the details for
266 .IR uid_map ;
267 .IR gid_map
268 is exactly the same,
269 but each instance of "user ID" is replaced by "group ID".
272 .I uid_map
273 file exposes the mapping of user IDs from the user namespace
274 of the process
275 .IR pid
276 to the user namespace of the process that opened
277 .IR uid_map
278 (but see a qualification to this point below).
279 In other words, processes that are in different user namespaces
280 will potentially see different values when reading from a particular
281 .I uid_map
282 file, depending on the user ID mappings for the user namespaces
283 of the reading processes.
285 Each line in the
286 .I uid_map
287 file specifies a 1-to-1 mapping of a range of contiguous
288 user IDs between two user namespaces.
289 (When a user namespace is first created, this file is empty.)
290 The specification in each line takes the form of
291 three numbers delimited by white space.
292 The first two numbers specify the starting user ID in
293 each of the two user namespaces.
294 The third number specifies the length of the mapped range.
295 In detail, the fields are interpreted as follows:
296 .IP (1) 4
297 The start of the range of user IDs in
298 the user namespace of the process
299 .IR pid .
300 .IP (2)
301 The start of the range of user
302 IDs to which the user IDs specified by field one map.
303 How field two is interpreted depends on whether the process that opened
304 .I uid_map
305 and the process
306 .IR pid
307 are in the same user namespace, as follows:
309 .IP a) 3
310 If the two processes are in different user namespaces:
311 field two is the start of a range of
312 user IDs in the user namespace of the process that opened
313 .IR uid_map .
314 .IP b)
315 If the two processes are in the same user namespace:
316 field two is the start of the range of
317 user IDs in the parent user namespace of the process
318 .IR pid .
319 This case enables the opener of
320 .I uid_map
321 (the common case here is opening
322 .IR /proc/self/uid_map )
323 to see the mapping of user IDs into the user namespace of the process
324 that created this user namespace.
326 .IP (3)
327 The length of the range of user IDs that is mapped between the two
328 user namespaces.
330 System calls that return user IDs (group IDs)\(emfor example,
331 .BR getuid (2),
332 .BR getgid (2),
333 and the credential fields in the structure returned by
334 .BR stat (2)\(emreturn
335 the user ID (group ID) mapped into the caller's user namespace.
337 When a process accesses a file, its user and group IDs
338 are mapped into the initial user namespace for the purpose of permission
339 checking and assigning IDs when creating a file.
340 When a process retrieves file user and group IDs via
341 .BR stat (2),
342 the IDs are mapped in the opposite direction,
343 to produce values relative to the process user and group ID mappings.
345 The initial user namespace has no parent namespace,
346 but, for consistency, the kernel provides dummy user and group
347 ID mapping files for this namespace.
348 Looking at the
349 .I uid_map
350 file
351 .RI ( gid_map
352 is the same) from a shell in the initial namespace shows:
354 .in +4n
356 $ \fBcat /proc/$$/uid_map\fP
357          0          0 4294967295
361 This mapping tells us
362 that the range starting at user ID 0 in this namespace
363 maps to a range starting at 0 in the (nonexistent) parent namespace,
364 and the length of the range is the largest 32-bit unsigned integer.
366 .\" ============================================================
368 .SS Defining user and group ID mappings: writing to uid_map and gid_map
370 After the creation of a new user namespace, the
371 .I uid_map
372 file of
373 .I one
374 of the processes in the namespace may be written to
375 .I once
376 to define the mapping of user IDs in the new user namespace.
377 An attempt to write more than once to a
378 .I uid_map
379 file in a user namespace fails with the error
380 .BR EPERM .
381 Similar rules apply for
382 .I gid_map
383 files.
385 The lines written to
386 .IR uid_map
387 .RI ( gid_map )
388 must conform to the following rules:
389 .IP * 3
390 The three fields must be valid numbers,
391 and the last field must be greater than 0.
392 .IP *
393 Lines are terminated by newline characters.
394 .IP *
395 There is an (arbitrary) limit on the number of lines in the file.
396 As at Linux 3.8, the limit is five lines.
397 In addition, the number of bytes written to
398 the file must be less than the system page size,
399 .\" FIXME(Eric): the restriction "less than" rather than "less than or equal"
400 .\" seems strangely arbitrary. Furthermore, the comment does not agree
401 .\" with the code in kernel/user_namespace.c. Which is correct.
402 and the write must be performed at the start of the file (i.e.,
403 .BR lseek (2)
405 .BR pwrite (2)
406 can't be used to write to nonzero offsets in the file).
407 .IP *
408 The range of user IDs (group IDs)
409 specified in each line cannot overlap with the ranges
410 in any other lines.
411 In the initial implementation (Linux 3.8), this requirement was
412 satisfied by a simplistic implementation that imposed the further
413 requirement that
414 the values in both field 1 and field 2 of successive lines must be
415 in ascending numerical order,
416 which prevented some otherwise valid maps from being created.
417 Linux 3.9 and later
418 .\" commit 0bd14b4fd72afd5df41e9fd59f356740f22fceba
419 fix this limitation, allowing any valid set of nonoverlapping maps.
420 .IP *
421 At least one line must be written to the file.
423 Writes that violate the above rules fail with the error
424 .BR EINVAL .
426 In order for a process to write to the
427 .I /proc/[pid]/uid_map
428 .RI ( /proc/[pid]/gid_map )
429 file, all of the following requirements must be met:
430 .IP 1. 3
431 The writing process must have the
432 .BR CAP_SETUID
433 .RB ( CAP_SETGID )
434 capability in the user namespace of the process
435 .IR pid .
436 .IP 2.
437 The writing process must be in either the user namespace of the process
438 .I pid
439 or inside the parent user namespace of the process
440 .IR pid .
441 .IP 3.
442 The mapped user IDs (group IDs) must in turn have a mapping
443 in the parent user namespace.
444 .IP 4.
445 One of the following is true:
447 .IP * 3
448 The data written to
449 .I uid_map
450 .RI ( gid_map )
451 consists of a single line that maps the writing process's filesystem user ID
452 (group ID) in the parent user namespace to a user ID (group ID)
453 in the user namespace.
454 The usual case here is that this single line provides a mapping for user ID
455 of the process that created the namespace.
456 .IP * 3
457 The process has the
458 .BR CAP_SETUID
459 .RB ( CAP_SETGID )
460 capability in the parent user namespace.
461 Thus, a privileged process can make mappings to arbitrary user IDs (group IDs)
462 in the parent user namespace.
465 Writes that violate the above rules fail with the error
466 .BR EPERM .
468 .\" ============================================================
470 .SS Unmapped user and group IDs
472 There are various places where an unmapped user ID (group ID)
473 may be exposed to user space.
474 For example, the first process in a new user namespace may call
475 .BR getuid ()
476 before a user ID mapping has been defined for the namespace.
477 In most such cases, an unmapped user ID is converted
478 .\" from_kuid_munged(), from_kgid_munged()
479 to the overflow user ID (group ID);
480 the default value for the overflow user ID (group ID) is 65534.
481 See the descriptions of
482 .IR /proc/sys/kernel/overflowuid
484 .IR /proc/sys/kernel/overflowgid
486 .BR proc (5).
488 The cases where unmapped IDs are mapped in this fashion include
489 system calls that return user IDs
490 .RB ( getuid (2)
491 .BR getgid (2),
492 and similar),
493 credentials passed over a UNIX domain socket,
494 .\" also SO_PEERCRED
495 credentials returned by
496 .BR stat (2),
497 .BR waitid (2),
498 and the System V IPC "ctl"
499 .B IPC_STAT
500 operations,
501 credentials exposed by
502 .IR /proc/PID/status 
503 and the files in
504 .IR /proc/sysvipc/* ,
505 credentials returned via the
506 .I si_uid
507 field in the
508 .I siginfo_t
509 received with a signal (see
510 .BR sigaction (2)),
511 credentials written to the process accounting file (see
512 .BR acct (5)),
513 and credentials returned with POSIX message queue notifications (see
514 .BR mq_notify (3)).
516 There is one notable case where unmapped user and group IDs are
517 .I not
518 .\" from_kuid(), from_kgid()
519 .\" Also F_GETOWNER_UIDS is an exception
520 converted to the corresponding overflow ID value.
521 When viewing a
522 .I uid_map
524 .I gid_map
525 file in which there is no mapping for the second field,
526 that field is displayed as 4294967295 (\-1 as an unsigned integer);
528 .\" ============================================================
530 .SS Set-user-ID and set-group-ID programs
532 When a process inside a user namespace executes
533 a set-user-ID (set-group-ID) program,
534 the process's effective user (group) ID inside the namespace is changed
535 to whatever value is mapped for the user (group) ID of the file.
536 However, if either the user
537 .I or
538 the group ID of the file has no mapping inside the namespace,
539 the set-user-ID (set-group-ID) bit is silently ignored:
540 the new program is executed,
541 but the process's effective user (group) ID is left unchanged.
542 (This mirrors the semantics of executing a set-user-ID or set-group-ID
543 program that resides on a filesystem that was mounted with the
544 .BR MS_NOSUID
545 flag, as described in
546 .BR mount (2).)
548 .\" ============================================================
550 .SS Miscellaneous
552 When a process's user and group IDs are passed over a UNIX domain socket
553 to a process in a different user namespace (see the description of
554 .B SCM_CREDENTIALS
556 .BR unix (7)),
557 they are translated into the corresponding values as per the
558 receiving process's user and group ID mappings.
560 .SH CONFORMING TO
561 Namespaces are a Linux-specific feature.
563 .SH NOTES
564 Over the years, there have been a lot of features that have been added
565 to the Linux kernel that have been made available only to privileged users
566 because of their potential to confuse set-user-ID-root applications.
567 In general, it becomes safe to allow the root user in a user namespace to
568 use those features because it is impossible, while in a user namespace,
569 to gain more privilege than the root user of a user namespace has.
571 .\" ============================================================
573 .SS Availability
574 Use of user namespaces requires a kernel that is configured with the
575 .B CONFIG_USER_NS
576 option.
577 User namespaces require support in a range of subsystems across
578 the kernel.
579 When an unsupported subsystem is configured into the kernel,
580 it is not possible to configure user namespaces support.
582 As at Linux 3.8, most relevant subsystems supported user namespaces,
583 but a number of filesystems did not have the infrastructure needed
584 to map user and group IDs between user namespaces.
585 Linux 3.9 added the required infrastructure support for many of
586 the remaining unsupported filesystems
587 (Plan 9 (9P), Andrew File System (AFS), Ceph, CIFS, CODA, NFS, and OCFS2).
588 Linux 3.11 added support the last of the unsupported major filesystems,
589 .\" commit d6970d4b726cea6d7a9bc4120814f95c09571fc3
590 XFS.
592 .SH EXAMPLE
593 The program below is designed to allow experimenting with
594 user namespaces, as well as other types of namespaces.
595 It creates namespaces as specified by command-line options and then executes
596 a command inside those namespaces.
597 The comments and
598 .I usage()
599 function inside the program provide a full explanation of the program.
600 The following shell session demonstrates its use.
602 First, we look at the run-time environment:
604 .in +4n
606 $ \fBuname -rs\fP     # Need Linux 3.8 or later
607 Linux 3.8.0
608 $ \fBid -u\fP         # Running as unprivileged user
609 1000
610 $ \fBid -g\fP
611 1000
615 Now start a new shell in new user
616 .RI ( \-U ),
617 mount
618 .RI ( \-m ),
619 and PID
620 .RI ( \-p )
621 namespaces, with user ID
622 .RI ( \-M )
623 and group ID
624 .RI ( \-G )
625 1000 mapped to 0 inside the user namespace:
627 .in +4n
629 $ \fB./userns_child_exec -p -m -U -M '0 1000 1' -G '0 1000 1' bash\fP
633 The shell has PID 1, because it is the first process in the new 
634 PID namespace:
636 .in +4n
638 bash$ \fBecho $$\fP
643 Inside the user namespace, the shell has user and group ID 0,
644 and a full set of permitted and effective capabilities:
646 .in +4n
648 bash$ \fBcat /proc/$$/status | egrep '^[UG]id'\fP
649 Uid:    0       0       0       0
650 Gid:    0       0       0       0
651 bash$ \fBcat /proc/$$/status | egrep '^Cap(Prm|Inh|Eff)'\fP
652 CapInh: 0000000000000000
653 CapPrm: 0000001fffffffff
654 CapEff: 0000001fffffffff
658 Mounting a new
659 .I /proc
660 filesystem and listing all of the processes visible
661 in the new PID namespace shows that the shell can't see
662 any processes outside the PID namespace:
664 .in +4n
666 bash$ \fBmount -t proc proc /proc\fP
667 bash$ \fBps ax\fP
668   PID TTY      STAT   TIME COMMAND
669     1 pts/3    S      0:00 bash
670    22 pts/3    R+     0:00 ps ax
673 .SS Program source
676 /* userns_child_exec.c
678    Licensed under GNU General Public License v2 or later
680    Create a child process that executes a shell command in new
681    namespace(s); allow UID and GID mappings to be specified when
682    creating a user namespace.
684 #define _GNU_SOURCE
685 #include <sched.h>
686 #include <unistd.h>
687 #include <stdlib.h>
688 #include <sys/wait.h>
689 #include <signal.h>
690 #include <fcntl.h>
691 #include <stdio.h>
692 #include <string.h>
693 #include <limits.h>
694 #include <errno.h>
696 /* A simple error\-handling function: print an error message based
697    on the value in \(aqerrno\(aq and terminate the calling process */
699 #define errExit(msg)    do { perror(msg); exit(EXIT_FAILURE); \\
700                         } while (0)
702 struct child_args {
703     char **argv;        /* Command to be executed by child, with args */
704     int    pipe_fd[2];  /* Pipe used to synchronize parent and child */
707 static int verbose;
709 static void
710 usage(char *pname)
712     fprintf(stderr, "Usage: %s [options] cmd [arg...]\\n\\n", pname);
713     fprintf(stderr, "Create a child process that executes a shell "
714             "command in a new user namespace,\\n"
715             "and possibly also other new namespace(s).\\n\\n");
716     fprintf(stderr, "Options can be:\\n\\n");
717 #define fpe(str) fprintf(stderr, "    %s", str);
718     fpe("\-i          New IPC namespace\\n");
719     fpe("\-m          New mount namespace\\n");
720     fpe("\-n          New network namespace\\n");
721     fpe("\-p          New PID namespace\\n");
722     fpe("\-u          New UTS namespace\\n");
723     fpe("\-U          New user namespace\\n");
724     fpe("\-M uid_map  Specify UID map for user namespace\\n");
725     fpe("\-G gid_map  Specify GID map for user namespace\\n");
726     fpe("\-z          Map user\(aqs UID and GID to 0 in user namespace\\n");
727     fpe("            (equivalent to: \-M \(aq0 <uid> 1\(aq \-G \(aq0 <gid> 1\(aq)\\n");
728     fpe("\-v          Display verbose messages\\n");
729     fpe("\\n");
730     fpe("If \-z, \-M, or \-G is specified, \-U is required.\\n");
731     fpe("It is not permitted to specify both \-z and either \-M or \-G.\\n");
732     fpe("\\n");
733     fpe("Map strings for \-M and \-G consist of records of the form:\\n");
734     fpe("\\n");
735     fpe("    ID\-inside\-ns   ID\-outside\-ns   len\\n");
736     fpe("\\n");
737     fpe("A map string can contain multiple records, separated"
738         " by commas;\\n");
739     fpe("the commas are replaced by newlines before writing"
740         " to map files.\\n");
742     exit(EXIT_FAILURE);
745 /* Update the mapping file \(aqmap_file\(aq, with the value provided in
746    \(aqmapping\(aq, a string that defines a UID or GID mapping. A UID or
747    GID mapping consists of one or more newline\-delimited records
748    of the form:
750        ID_inside\-ns    ID\-outside\-ns   length
752    Requiring the user to supply a string that contains newlines is
753    of course inconvenient for command\-line use. Thus, we permit the
754    use of commas to delimit records in this string, and replace them
755    with newlines before writing the string to the file. */
757 static void
758 update_map(char *mapping, char *map_file)
760     int fd, j;
761     size_t map_len;     /* Length of \(aqmapping\(aq */
763     /* Replace commas in mapping string with newlines */
765     map_len = strlen(mapping);
766     for (j = 0; j < map_len; j++)
767         if (mapping[j] == \(aq,\(aq)
768             mapping[j] = \(aq\\n\(aq;
770     fd = open(map_file, O_RDWR);
771     if (fd == \-1) {
772         fprintf(stderr, "ERROR: open %s: %s\\n", map_file,
773                 strerror(errno));
774         exit(EXIT_FAILURE);
775     }
777     if (write(fd, mapping, map_len) != map_len) {
778         fprintf(stderr, "ERROR: write %s: %s\\n", map_file,
779                 strerror(errno));
780         exit(EXIT_FAILURE);
781     }
783     close(fd);
786 static int              /* Start function for cloned child */
787 childFunc(void *arg)
789     struct child_args *args = (struct child_args *) arg;
790     char ch;
792     /* Wait until the parent has updated the UID and GID mappings.
793        See the comment in main(). We wait for end of file on a
794        pipe that will be closed by the parent process once it has
795        updated the mappings. */
797     close(args\->pipe_fd[1]);    /* Close our descriptor for the write
798                                    end of the pipe so that we see EOF
799                                    when parent closes its descriptor */
800     if (read(args\->pipe_fd[0], &ch, 1) != 0) {
801         fprintf(stderr,
802                 "Failure in child: read from pipe returned != 0\\n");
803         exit(EXIT_FAILURE);
804     }
806     /* Execute a shell command */
808     printf("About to exec %s\\n", args\->argv[0]);
809     execvp(args\->argv[0], args\->argv);
810     errExit("execvp");
813 #define STACK_SIZE (1024 * 1024)
815 static char child_stack[STACK_SIZE];    /* Space for child\(aqs stack */
818 main(int argc, char *argv[])
820     int flags, opt, map_zero;
821     pid_t child_pid;
822     struct child_args args;
823     char *uid_map, *gid_map;
824     const int MAP_BUF_SIZE = 100;
825     char map_buf[MAP_BUF_SIZE];
826     char map_path[PATH_MAX];
828     /* Parse command\-line options. The initial \(aq+\(aq character in
829        the final getopt() argument prevents GNU\-style permutation
830        of command\-line options. That\(aqs useful, since sometimes
831        the \(aqcommand\(aq to be executed by this program itself
832        has command\-line options. We don\(aqt want getopt() to treat
833        those as options to this program. */
835     flags = 0;
836     verbose = 0;
837     gid_map = NULL;
838     uid_map = NULL;
839     map_zero = 0;
840     while ((opt = getopt(argc, argv, "+imnpuUM:G:zv")) != \-1) {
841         switch (opt) {
842         case \(aqi\(aq: flags |= CLONE_NEWIPC;        break;
843         case \(aqm\(aq: flags |= CLONE_NEWNS;         break;
844         case \(aqn\(aq: flags |= CLONE_NEWNET;        break;
845         case \(aqp\(aq: flags |= CLONE_NEWPID;        break;
846         case \(aqu\(aq: flags |= CLONE_NEWUTS;        break;
847         case \(aqv\(aq: verbose = 1;                  break;
848         case \(aqz\(aq: map_zero = 1;                 break;
849         case \(aqM\(aq: uid_map = optarg;             break;
850         case \(aqG\(aq: gid_map = optarg;             break;
851         case \(aqU\(aq: flags |= CLONE_NEWUSER;       break;
852         default:  usage(argv[0]);
853         }
854     }
856     /* \-M or \-G without \-U is nonsensical */
858     if (((uid_map != NULL || gid_map != NULL || map_zero) &&
859                 !(flags & CLONE_NEWUSER)) ||
860             (map_zero && (uid_map != NULL || gid_map != NULL)))
861         usage(argv[0]);
863     args.argv = &argv[optind];
865     /* We use a pipe to synchronize the parent and child, in order to
866        ensure that the parent sets the UID and GID maps before the child
867        calls execve(). This ensures that the child maintains its
868        capabilities during the execve() in the common case where we
869        want to map the child\(aqs effective user ID to 0 in the new user
870        namespace. Without this synchronization, the child would lose
871        its capabilities if it performed an execve() with nonzero
872        user IDs (see the capabilities(7) man page for details of the
873        transformation of a process\(aqs capabilities during execve()). */
875     if (pipe(args.pipe_fd) == \-1)
876         errExit("pipe");
878     /* Create the child in new namespace(s) */
880     child_pid = clone(childFunc, child_stack + STACK_SIZE,
881                       flags | SIGCHLD, &args);
882     if (child_pid == \-1)
883         errExit("clone");
885     /* Parent falls through to here */
887     if (verbose)
888         printf("%s: PID of child created by clone() is %ld\\n",
889                 argv[0], (long) child_pid);
891     /* Update the UID and GID maps in the child */
893     if (uid_map != NULL || map_zero) {
894         snprintf(map_path, PATH_MAX, "/proc/%ld/uid_map",
895                 (long) child_pid);
896         if (map_zero) {
897             snprintf(map_buf, MAP_BUF_SIZE, "0 %ld 1", (long) getuid());
898             uid_map = map_buf;
899         }
900         update_map(uid_map, map_path);
901     }
902     if (gid_map != NULL || map_zero) {
903         snprintf(map_path, PATH_MAX, "/proc/%ld/gid_map",
904                 (long) child_pid);
905         if (map_zero) {
906             snprintf(map_buf, MAP_BUF_SIZE, "0 %ld 1", (long) getgid());
907             gid_map = map_buf;
908         }
909         update_map(gid_map, map_path);
910     }
912     /* Close the write end of the pipe, to signal to the child that we
913        have updated the UID and GID maps */
915     close(args.pipe_fd[1]);
917     if (waitpid(child_pid, NULL, 0) == \-1)      /* Wait for child */
918         errExit("waitpid");
920     if (verbose)
921         printf("%s: terminating\\n", argv[0]);
923     exit(EXIT_SUCCESS);
926 .SH SEE ALSO
927 .BR newgidmap (1),      \" From the shadow package
928 .BR newuidmap (1),      \" From the shadow package
929 .BR clone (2),
930 .BR setns (2),
931 .BR unshare (2),
932 .BR proc (5),
933 .BR subgid (5),         \" From the shadow package
934 .BR subuid (5),         \" From the shadow package
935 .BR credentials (7),
936 .BR capabilities (7),
937 .BR namespaces (7),
938 .BR pid_namespaces (7)
940 The kernel source file
941 .IR Documentation/namespaces/resource-control.txt .