1 .\" Copyright (c) 1992 Drew Eckhardt <drew@cs.colorado.edu>, March 28, 1992
2 .\" and Copyright (c) Michael Kerrisk, 2001, 2002, 2005, 2013, 2019
4 .\" SPDX-License-Identifier: GPL-1.0-or-later
6 .\" Modified by Michael Haardt <michael@moria.de>
7 .\" Modified 24 Jul 1993 by Rik Faith <faith@cs.unc.edu>
8 .\" Modified 21 Aug 1994 by Michael Chastain <mec@shell.portal.com>:
9 .\" New man page (copied from 'fork.2').
10 .\" Modified 10 June 1995 by Andries Brouwer <aeb@cwi.nl>
11 .\" Modified 25 April 1998 by Xavier Leroy <Xavier.Leroy@inria.fr>
12 .\" Modified 26 Jun 2001 by Michael Kerrisk
13 .\" Mostly upgraded to 2.4.x
14 .\" Added prototype for sys_clone() plus description
15 .\" Added CLONE_THREAD with a brief description of thread groups
16 .\" Added CLONE_PARENT and revised entire page remove ambiguity
17 .\" between "calling process" and "parent process"
18 .\" Added CLONE_PTRACE and CLONE_VFORK
19 .\" Added EPERM and EINVAL error codes
20 .\" Renamed "__clone" to "clone" (which is the prototype in <sched.h>)
21 .\" various other minor tidy ups and clarifications.
22 .\" Modified 26 Jun 2001 by Michael Kerrisk <mtk.manpages@gmail.com>
23 .\" Updated notes for 2.4.7+ behavior of CLONE_THREAD
24 .\" Modified 15 Oct 2002 by Michael Kerrisk <mtk.manpages@gmail.com>
25 .\" Added description for CLONE_NEWNS, which was added in 2.4.19
26 .\" Slightly rephrased, aeb.
27 .\" Modified 1 Feb 2003 - added CLONE_SIGHAND restriction, aeb.
28 .\" Modified 1 Jan 2004 - various updates, aeb
29 .\" Modified 2004-09-10 - added CLONE_PARENT_SETTID etc. - aeb.
30 .\" 2005-04-12, mtk, noted the PID caching behavior of NPTL's getpid()
31 .\" wrapper under BUGS.
32 .\" 2005-05-10, mtk, added CLONE_SYSVSEM, CLONE_UNTRACED, CLONE_STOPPED.
33 .\" 2005-05-17, mtk, Substantially enhanced discussion of CLONE_THREAD.
34 .\" 2008-11-18, mtk, order CLONE_* flags alphabetically
35 .\" 2008-11-18, mtk, document CLONE_NEWPID
36 .\" 2008-11-19, mtk, document CLONE_NEWUTS
37 .\" 2008-11-19, mtk, document CLONE_NEWIPC
38 .\" 2008-11-19, Jens Axboe, mtk, document CLONE_IO
40 .TH CLONE 2 2022-09-17 "Linux man-pages (unreleased)"
42 clone, __clone2, clone3 \- create a child process
45 .RI ( libc ", " \-lc )
48 /* Prototype for the glibc wrapper function */
50 .B #define _GNU_SOURCE
53 .BI "int clone(int (*" "fn" ")(void *), void *" stack \
54 ", int " flags ", void *" "arg" ", ..."
55 .BI " /* pid_t *" parent_tid ", void *" tls \
56 ", pid_t *" child_tid " */ );"
58 /* For the prototype of the raw clone() system call, see NOTES */
60 .BR "#include <linux/sched.h>" " /* Definition of " "struct clone_args" " */"
61 .BR "#include <sched.h>" " /* Definition of " CLONE_* " constants */"
62 .BR "#include <sys/syscall.h>" " /* Definition of " SYS_* " constants */"
63 .B #include <unistd.h>
65 .BI "long syscall(SYS_clone3, struct clone_args *" cl_args ", size_t " size );
69 glibc provides no wrapper for
71 necessitating the use of
75 create a new ("child") process, in a manner similar to
80 these system calls provide more precise control over what pieces of execution
81 context are shared between the calling process and the child process.
82 For example, using these system calls, the caller can control whether
83 or not the two processes share the virtual address space,
84 the table of file descriptors, and the table of signal handlers.
85 These system calls also allow the new child process to be placed
89 Note that in this manual
90 page, "calling process" normally corresponds to "parent process".
91 But see the descriptions of
97 This page describes the following interfaces:
101 wrapper function and the underlying system call on which it is based.
102 The main text describes the wrapper function;
103 the differences for the raw system call
104 are described toward the end of this page.
110 In the remainder of this page, the terminology "the clone call" is used
111 when noting details that apply to all of these interfaces,
113 .SS The clone() wrapper function
114 When the child process is created with the
117 it commences execution by calling the function pointed to by the argument
121 where execution continues in the child from the point
127 argument is passed as the argument of the function
132 function returns, the child process terminates.
133 The integer returned by
135 is the exit status for the child process.
136 The child process may also terminate explicitly by calling
138 or after receiving a fatal signal.
142 argument specifies the location of the stack used by the child process.
143 Since the child and calling process may share memory,
144 it is not possible for the child process to execute in the
145 same stack as the calling process.
146 The calling process must therefore
147 set up memory space for the child stack and pass a pointer to this
150 Stacks grow downward on all processors that run Linux
151 (except the HP PA processors), so
153 usually points to the topmost address of the memory space set up for
157 does not provide a means whereby the caller can inform the kernel of the
158 size of the stack area.
160 The remaining arguments to
167 system call provides a superset of the functionality of the older
170 It also provides a number of API improvements, including:
171 space for additional flags bits;
172 cleaner separation in the use of various arguments;
173 and the ability to specify the size of the child's stack area.
178 returns in both the parent and the child.
179 It returns 0 in the child process and returns the PID of the child
186 is a structure of the following form:
191 u64 flags; /* Flags bit mask */
192 u64 pidfd; /* Where to store PID file descriptor
194 u64 child_tid; /* Where to store child TID,
195 in child\(aqs memory (\fIpid_t *\fP) */
196 u64 parent_tid; /* Where to store child TID,
197 in parent\(aqs memory (\fIpid_t *\fP) */
198 u64 exit_signal; /* Signal to deliver to parent on
200 u64 stack; /* Pointer to lowest byte of stack */
201 u64 stack_size; /* Size of stack */
202 u64 tls; /* Location of new TLS */
203 u64 set_tid; /* Pointer to a \fIpid_t\fP array
205 u64 set_tid_size; /* Number of elements in \fIset_tid\fP
207 u64 cgroup; /* File descriptor for target cgroup
208 of child (since Linux 5.7) */
215 argument that is supplied to
217 should be initialized to the size of this structure.
218 (The existence of the
220 argument permits future extensions to the
224 The stack for the child process is specified via
226 which points to the lowest byte of the stack area,
228 .IR cl_args.stack_size ,
229 which specifies the size of the stack in bytes.
230 In the case where the
232 flag (see below) is specified, a stack must be explicitly allocated
234 Otherwise, these two fields can be specified as NULL and 0,
235 which causes the child to use the same stack area as the parent
236 (in the child's own virtual address space).
238 The remaining fields in the
240 argument are discussed below.
242 .SS Equivalence between clone() and clone3() arguments
245 interface, where arguments are passed individually, in the newer
247 interface the arguments are packaged into the
249 structure shown above.
250 This structure allows for a superset of the information passed via the
254 The following table shows the equivalence between the arguments of
256 and the fields in the
265 clone() clone3() Notes
267 flags & \(ti0xff flags T{
268 For most flags; details below
270 parent_tid pidfd See CLONE_PIDFD
271 child_tid child_tid See CLONE_CHILD_SETTID
272 parent_tid parent_tid See CLONE_PARENT_SETTID
273 flags & 0xff exit_signal
276 tls tls See CLONE_SETTLS
277 \fP---\fP set_tid See below for details
278 \fP---\fP set_tid_size
279 \fP---\fP cgroup See CLONE_INTO_CGROUP
283 .SS The child termination signal
284 When the child process terminates, a signal may be sent to the parent.
285 The termination signal is specified in the low byte of
289 .I cl_args.exit_signal
291 If this signal is specified as anything other than
293 then the parent process must specify the
297 options when waiting for the child with
299 If no signal (i.e., zero) is specified, then the parent process is not signaled
300 when the child terminates.
302 .SS The set_tid array
303 By default, the kernel chooses the next sequential PID for the new
304 process in each of the PID namespaces where it is present.
305 When creating a process with
309 array (available since Linux 5.5)
310 can be used to select specific PIDs for the process in some
311 or all of the PID namespaces where it is present.
312 If the PID of the newly created process should be set only for the current
313 PID namespace or in the newly created PID namespace (if
317 then the first element in the
319 array has to be the desired PID and
323 If the PID of the newly created process should have a certain value in
324 multiple PID namespaces, then the
326 array can have multiple entries.
327 The first entry defines the PID in the most
328 deeply nested PID namespace and each of the following entries contains
330 corresponding ancestor PID namespace.
331 The number of PID namespaces in which a PID
332 should be set is defined by
334 which cannot be larger than the number of currently nested PID namespaces.
336 To create a process with the following PIDs in a PID namespace hierarchy:
341 PID NS level Requested PID Notes
342 0 31496 Outermost PID namespace
344 2 7 Innermost PID namespace
359 If only the PIDs in the two innermost PID namespaces
360 need to be specified, set the array to:
370 The PID in the PID namespaces outside the two innermost PID namespaces
371 is selected the same way as any other PID is selected.
379 .\" commit 124ea650d3072b005457faed69909221c2905a1f
380 .\" commit 1caef81da05a84a40dbf02110e967ce6d1135ff6
381 .B CAP_CHECKPOINT_RESTORE
382 in all owning user namespaces of the target PID namespaces.
384 Callers may only choose a PID greater than 1 in a given PID namespace
387 process (i.e., a process with PID 1) already exists in that namespace.
389 entry for this PID namespace must be 1.
396 allow a flags bit mask that modifies their behavior
397 and allows the caller to specify what is shared between the calling process
398 and the child process.
409 mask in the remainder of this page.
413 mask is specified as a bitwise-OR of zero or more of
414 the constants listed below.
415 Except as noted below, these flags are available
416 (and have the same effect) in both
421 .BR CLONE_CHILD_CLEARTID " (since Linux 2.5.49)"
422 Clear (zero) the child thread ID at the location pointed to by
428 in child memory when the child exits, and do a wakeup on the futex
430 The address involved may be changed by the
431 .BR set_tid_address (2)
433 This is used by threading libraries.
435 .BR CLONE_CHILD_SETTID " (since Linux 2.5.49)"
436 Store the child thread ID at the location pointed to by
442 in the child's memory.
443 The store operation completes before the clone call
444 returns control to user space in the child process.
445 (Note that the store operation may not have completed before the clone call
446 returns in the parent process, which is relevant if the
448 flag is also employed.)
450 .BR CLONE_CLEAR_SIGHAND " (since Linux 5.5)"
451 .\" commit b612e5df4587c934bd056bf05f4a1deca4de4f75
452 By default, signal dispositions in the child thread are the same as
454 If this flag is specified,
455 then all signals that are handled in the parent
456 are reset to their default dispositions
460 Specifying this flag together with
462 is nonsensical and disallowed.
464 .BR CLONE_DETACHED " (historical)"
465 For a while (during the Linux 2.5 development series)
466 .\" added in 2.5.32; removed in 2.6.0-test4
470 which caused the parent not to receive a signal when the child terminated.
471 Ultimately, the effect of this flag was subsumed under the
473 flag and by the time Linux 2.6.0 was released, this flag had no effect.
474 Starting in Linux 2.6.2, the need to give this flag together with
478 This flag is still defined, but it is usually ignored when calling
480 However, see the description of
484 .BR CLONE_FILES " (since Linux 2.0)"
487 is set, the calling process and the child process share the same file
489 Any file descriptor created by the calling process or by the child
490 process is also valid in the other process.
491 Similarly, if one of the processes closes a file descriptor,
492 or changes its associated flags (using the
495 operation), the other process is also affected.
496 If a process sharing a file descriptor table calls
498 its file descriptor table is duplicated (unshared).
502 is not set, the child process inherits a copy of all file descriptors
503 opened in the calling process at the time of the clone call.
504 Subsequent operations that open or close file descriptors,
505 or change file descriptor flags,
506 performed by either the calling
507 process or the child process do not affect the other process.
509 that the duplicated file descriptors in the child refer to the same
510 open file descriptions as the corresponding file descriptors
511 in the calling process,
512 and thus share file offsets and file status flags (see
515 .BR CLONE_FS " (since Linux 2.0)"
518 is set, the caller and the child process share the same filesystem
520 This includes the root of the filesystem, the current
521 working directory, and the umask.
527 performed by the calling process or the child process also affects the
532 is not set, the child process works on a copy of the filesystem
533 information of the calling process at the time of the clone call.
539 performed later by one of the processes do not affect the other process.
541 .BR CLONE_INTO_CGROUP " (since Linux 5.7)"
542 .\" commit ef2c41cf38a7559bbf91af42d5b6a4429db8fc68
543 By default, a child process is placed in the same version 2
544 cgroup as its parent.
547 flag allows the child process to be created in a different version 2 cgroup.
550 has effect only for version 2 cgroups.)
552 In order to place the child process in a different cgroup,
557 and passes a file descriptor that refers to a version 2 cgroup in the
560 (This file descriptor can be obtained by opening a cgroup v2 directory
566 Note that all of the usual restrictions (described in
568 on placing a process into a version 2 cgroup apply.
570 Among the possible use cases for
575 Spawning a process into a cgroup different from the parent's cgroup
576 makes it possible for a service manager to directly spawn new
577 services into dedicated cgroups.
578 This eliminates the accounting
579 jitter that would be caused if the child process was first created in the
580 same cgroup as the parent and then
581 moved into the target cgroup.
582 Furthermore, spawning the child process directly into a target cgroup
583 is significantly cheaper than moving the child process into
584 the target cgroup after it has been created.
588 flag also allows the creation of
589 frozen child processes by spawning them into a frozen cgroup.
592 for a description of the freezer controller.)
594 For threaded applications (or even thread implementations which
595 make use of cgroups to limit individual threads), it is possible to
596 establish a fixed cgroup layout before spawning each thread
597 directly into its target cgroup.
600 .BR CLONE_IO " (since Linux 2.6.25)"
603 is set, then the new process shares an I/O context with
605 If this flag is not set, then (as with
607 the new process has its own I/O context.
609 .\" The following based on text from Jens Axboe
610 The I/O context is the I/O scope of the disk scheduler (i.e.,
611 what the I/O scheduler uses to model scheduling of a process's I/O).
612 If processes share the same I/O context,
613 they are treated as one by the I/O scheduler.
614 As a consequence, they get to share disk time.
615 For some I/O schedulers,
616 .\" the anticipatory and CFQ scheduler
617 if two processes share an I/O context,
618 they will be allowed to interleave their disk access.
619 If several threads are doing I/O on behalf of the same process
621 for instance), they should employ
623 to get better I/O performance.
626 If the kernel is not configured with the
628 option, this flag is a no-op.
630 .BR CLONE_NEWCGROUP " (since Linux 4.6)"
631 Create the process in a new cgroup namespace.
632 If this flag is not set, then (as with
634 the process is created in the same cgroup namespaces as the calling process.
636 For further information on cgroup namespaces, see
637 .BR cgroup_namespaces (7).
639 Only a privileged process
640 .RB ( CAP_SYS_ADMIN )
642 .BR CLONE_NEWCGROUP .
645 .BR CLONE_NEWIPC " (since Linux 2.6.19)"
648 is set, then create the process in a new IPC namespace.
649 If this flag is not set, then (as with
651 the process is created in the same IPC namespace as
654 For further information on IPC namespaces, see
655 .BR ipc_namespaces (7).
657 Only a privileged process
658 .RB ( CAP_SYS_ADMIN )
661 This flag can't be specified in conjunction with
664 .BR CLONE_NEWNET " (since Linux 2.6.24)"
665 (The implementation of this flag was completed only
666 by about kernel version 2.6.29.)
670 is set, then create the process in a new network namespace.
671 If this flag is not set, then (as with
673 the process is created in the same network namespace as
676 For further information on network namespaces, see
677 .BR network_namespaces (7).
679 Only a privileged process
680 .RB ( CAP_SYS_ADMIN )
684 .BR CLONE_NEWNS " (since Linux 2.4.19)"
687 is set, the cloned child is started in a new mount namespace,
688 initialized with a copy of the namespace of the parent.
691 is not set, the child lives in the same mount
692 namespace as the parent.
694 For further information on mount namespaces, see
697 .BR mount_namespaces (7).
699 Only a privileged process
700 .RB ( CAP_SYS_ADMIN )
703 It is not permitted to specify both
707 .\" See https://lwn.net/Articles/543273/
708 in the same clone call.
710 .BR CLONE_NEWPID " (since Linux 2.6.24)"
711 .\" This explanation draws a lot of details from
712 .\" http://lwn.net/Articles/259217/
713 .\" Authors: Pavel Emelyanov <xemul@openvz.org>
714 .\" and Kir Kolyshkin <kir@openvz.org>
716 .\" The primary kernel commit is 30e49c263e36341b60b735cbef5ca37912549264
717 .\" Author: Pavel Emelyanov <xemul@openvz.org>
720 is set, then create the process in a new PID namespace.
721 If this flag is not set, then (as with
723 the process is created in the same PID namespace as
726 For further information on PID namespaces, see
729 .BR pid_namespaces (7).
731 Only a privileged process
732 .RB ( CAP_SYS_ADMIN )
735 This flag can't be specified in conjunction with
741 (This flag first became meaningful for
746 semantics were merged in Linux 3.5,
747 and the final pieces to make the user namespaces completely usable were
748 merged in Linux 3.8.)
752 is set, then create the process in a new user namespace.
753 If this flag is not set, then (as with
755 the process is created in the same user namespace as the calling process.
757 For further information on user namespaces, see
760 .BR user_namespaces (7).
762 Before Linux 3.8, use of
764 required that the caller have three capabilities:
769 .\" Before Linux 2.6.29, it appears that only CAP_SYS_ADMIN was needed
770 Starting with Linux 3.8,
771 no privileges are needed to create a user namespace.
773 This flag can't be specified in conjunction with
777 For security reasons,
778 .\" commit e66eded8309ebf679d3d3c1f5820d1f2ca332c71
779 .\" https://lwn.net/Articles/543273/
780 .\" The fix actually went into 3.9 and into 3.8.3. However, user namespaces
781 .\" were, for practical purposes, unusable in earlier 3.8.x because of the
782 .\" various filesystems that didn't support userns.
784 cannot be specified in conjunction with
787 .BR CLONE_NEWUTS " (since Linux 2.6.19)"
790 is set, then create the process in a new UTS namespace,
791 whose identifiers are initialized by duplicating the identifiers
792 from the UTS namespace of the calling process.
793 If this flag is not set, then (as with
795 the process is created in the same UTS namespace as
798 For further information on UTS namespaces, see
799 .BR uts_namespaces (7).
801 Only a privileged process
802 .RB ( CAP_SYS_ADMIN )
806 .BR CLONE_PARENT " (since Linux 2.3.12)"
809 is set, then the parent of the new child (as returned by
811 will be the same as that of the calling process.
815 is not set, then (as with
817 the child's parent is the calling process.
819 Note that it is the parent process, as returned by
821 which is signaled when the child terminates, so that
824 is set, then the parent of the calling process, rather than the
825 calling process itself, is signaled.
829 flag can't be used in clone calls by the
830 global init process (PID 1 in the initial PID namespace)
831 and init processes in other PID namespaces.
832 This restriction prevents the creation of multi-rooted process trees
833 as well as the creation of unreapable zombies in the initial PID namespace.
835 .BR CLONE_PARENT_SETTID " (since Linux 2.5.49)"
836 Store the child thread ID at the location pointed to by
840 .I cl_args.parent_tid
842 in the parent's memory.
843 (In Linux 2.5.32-2.5.48 there was a flag
846 The store operation completes before the clone call
847 returns control to user space.
849 .BR CLONE_PID " (Linux 2.0 to 2.5.15)"
852 is set, the child process is created with the same process ID as
854 This is good for hacking the system, but otherwise
856 From Linux 2.3.21 onward, this flag could be
857 specified only by the system boot process (PID 0).
858 The flag disappeared completely from the kernel sources in Linux 2.5.16.
859 Subsequently, the kernel silently ignored this bit if it was specified in the
862 Much later, the same bit was recycled for use as the
866 .BR CLONE_PIDFD " (since Linux 5.2)"
867 .\" commit b3e5838252665ee4cfa76b82bdf1198dca81e5be
868 If this flag is specified,
869 a PID file descriptor referring to the child process is allocated
870 and placed at a specified location in the parent's memory.
871 The close-on-exec flag is set on this new file descriptor.
872 PID file descriptors can be used for the purposes described in
878 the PID file descriptor is placed at the location pointed to by
883 the PID file descriptor is placed at the location pointed to by
887 argument is used to return the PID file descriptor,
890 .B CLONE_PARENT_SETTID
895 It is currently not possible to use this flag together with
897 This means that the process identified by the PID file descriptor
898 will always be a thread group leader.
902 flag is specified alongside
906 an error is returned.
907 An error also results if
909 is specified when calling
911 This error behavior ensures that the bit corresponding to
913 can be reused for further PID file descriptor features in the future.
915 .BR CLONE_PTRACE " (since Linux 2.2)"
918 is specified, and the calling process is being traced,
919 then trace the child also (see
922 .BR CLONE_SETTLS " (since Linux 2.5.32)"
923 The TLS (Thread Local Storage) descriptor is set to
926 The interpretation of
928 and the resulting effect is architecture dependent.
932 .I struct user_desc\~*
934 .BR set_thread_area (2)).
935 On x86-64 it is the new value to be set for the %fs base register
940 On architectures with a dedicated TLS register, it is the new value
943 Use of this flag requires detailed knowledge and generally it
944 should not be used except in libraries implementing threading.
946 .BR CLONE_SIGHAND " (since Linux 2.0)"
949 is set, the calling process and the child process share the same table of
951 If the calling process or child process calls
953 to change the behavior associated with a signal, the behavior is
954 changed in the other process as well.
955 However, the calling process and child
956 processes still have distinct signal masks and sets of pending
958 So, one of them may block or unblock signals using
960 without affecting the other process.
964 is not set, the child process inherits a copy of the signal handlers
965 of the calling process at the time of the clone call.
968 performed later by one of the processes have no effect on the other
972 .\" Precisely: Linux 2.6.0-test6
975 mask must also include
981 .BR CLONE_STOPPED " (since Linux 2.6.0)"
982 .\" Precisely: Linux 2.6.0-test2
985 is set, then the child is initially stopped (as though it was sent a
987 signal), and must be resumed by sending it a
993 from Linux 2.6.25 onward,
996 altogether in Linux 2.6.38.
997 Since then, the kernel silently ignores it without error.
998 .\" glibc 2.8 removed this defn from bits/sched.h
999 Starting with Linux 4.6, the same bit was reused for the
1003 .BR CLONE_SYSVSEM " (since Linux 2.5.10)"
1006 is set, then the child and the calling process share
1007 a single list of System V semaphore adjustment
1011 In this case, the shared list accumulates
1013 values across all processes sharing the list,
1014 and semaphore adjustments are performed only when the last process
1015 that is sharing the list terminates (or ceases sharing the list using
1017 If this flag is not set, then the child has a separate
1019 list that is initially empty.
1021 .BR CLONE_THREAD " (since Linux 2.4.0)"
1022 .\" Precisely: Linux 2.6.0-test8
1025 is set, the child is placed in the same thread group as the calling process.
1026 To make the remainder of the discussion of
1028 more readable, the term "thread" is used to refer to the
1029 processes within a thread group.
1031 Thread groups were a feature added in Linux 2.4 to support the
1032 POSIX threads notion of a set of threads that share a single PID.
1033 Internally, this shared PID is the so-called
1034 thread group identifier (TGID) for the thread group.
1035 Since Linux 2.4, calls to
1037 return the TGID of the caller.
1039 The threads within a group can be distinguished by their (system-wide)
1040 unique thread IDs (TID).
1041 A new thread's TID is available as the function result
1042 returned to the caller,
1043 and a thread can obtain
1047 When a clone call is made without specifying
1049 then the resulting thread is placed in a new thread group
1050 whose TGID is the same as the thread's TID.
1053 of the new thread group.
1055 A new thread created with
1057 has the same parent process as the process that made the clone call
1062 return the same value for all of the threads in a thread group.
1065 thread terminates, the thread that created it is not sent a
1067 (or other termination) signal;
1068 nor can the status of such a thread be obtained
1071 (The thread is said to be
1074 After all of the threads in a thread group terminate
1075 the parent process of the thread group is sent a
1077 (or other termination) signal.
1079 If any of the threads in a thread group performs an
1081 then all threads other than the thread group leader are terminated,
1082 and the new program is executed in the thread group leader.
1084 If one of the threads in a thread group creates a child using
1086 then any thread in the group can
1090 Since Linux 2.5.35, the
1092 mask must also include
1097 (and note that, since Linux 2.6.0,
1098 .\" Precisely: Linux 2.6.0-test6
1104 Signal dispositions and actions are process-wide:
1105 if an unhandled signal is delivered to a thread, then
1106 it will affect (terminate, stop, continue, be ignored in)
1107 all members of the thread group.
1109 Each thread has its own signal mask, as set by
1110 .BR sigprocmask (2).
1112 A signal may be process-directed or thread-directed.
1113 A process-directed signal is targeted at a thread group (i.e., a TGID),
1114 and is delivered to an arbitrarily selected thread from among those
1115 that are not blocking the signal.
1116 A signal may be process-directed because it was generated by the kernel
1117 for reasons other than a hardware exception, or because it was sent using
1121 A thread-directed signal is targeted at (i.e., delivered to)
1123 A signal may be thread directed because it was sent using
1126 .BR pthread_sigqueue (3),
1127 or because the thread executed a machine language instruction that triggered
1128 a hardware exception
1129 (e.g., invalid memory access triggering
1131 or a floating-point exception triggering
1136 returns a signal set that is the union of the pending process-directed
1137 signals and the signals that are pending for the calling thread.
1139 If a process-directed signal is delivered to a thread group,
1140 and the thread group has installed a handler for the signal, then
1141 the handler is invoked in exactly one, arbitrarily selected
1142 member of the thread group that has not blocked the signal.
1143 If multiple threads in a group are waiting to accept the same signal using
1144 .BR sigwaitinfo (2),
1145 the kernel will arbitrarily select one of these threads
1146 to receive the signal.
1148 .BR CLONE_UNTRACED " (since Linux 2.5.46)"
1151 is specified, then a tracing process cannot force
1153 on this child process.
1155 .BR CLONE_VFORK " (since Linux 2.2)"
1158 is set, the execution of the calling process is suspended
1159 until the child releases its virtual memory
1160 resources via a call to
1169 is not set, then both the calling process and the child are schedulable
1170 after the call, and an application should not rely on execution occurring
1171 in any particular order.
1173 .BR CLONE_VM " (since Linux 2.0)"
1176 is set, the calling process and the child process run in the same memory
1178 In particular, memory writes performed by the calling process
1179 or by the child process are also visible in the other process.
1180 Moreover, any memory mapping or unmapping performed with
1184 by the child or calling process also affects the other process.
1188 is not set, the child process runs in a separate copy of the memory
1189 space of the calling process at the time of the clone call.
1190 Memory writes or file mappings/unmappings performed by one of the
1191 processes do not affect the other, as with
1196 flag is specified and the
1198 flag is not specified,
1199 then any alternate signal stack that was established by
1201 is cleared in the child process.
1203 .\" gettid(2) returns current->pid;
1204 .\" getpid(2) returns current->tgid;
1205 On success, the thread ID of the child process is returned
1206 in the caller's thread of execution.
1207 On failure, \-1 is returned
1208 in the caller's context, no child process is created, and
1210 is set to indicate the error.
1213 .BR EACCES " (" clone3 "() only)"
1214 .B CLONE_INTO_CGROUP
1217 but the restrictions (described in
1219 on placing the child process into the version 2 cgroup referred to by
1224 Too many processes are already running; see
1227 .BR EBUSY " (" clone3 "() only)"
1228 .B CLONE_INTO_CGROUP
1231 but the file descriptor specified in
1233 refers to a version 2 cgroup in which a domain controller is enabled.
1235 .BR EEXIST " (" clone3 "() only)"
1236 One (or more) of the PIDs specified in
1238 already exists in the corresponding PID namespace.
1244 .B CLONE_CLEAR_SIGHAND
1245 were specified in the
1251 was specified in the
1256 (Since Linux 2.6.0.)
1257 .\" Precisely: Linux 2.6.0-test6
1261 was specified in the
1266 (Since Linux 2.5.35.)
1269 .\" Precisely one of
1270 .\" .B CLONE_DETACHED
1274 .\" (Since Linux 2.6.0-test6.)
1278 was specified in the
1280 mask, but the current process previously called
1286 to reassociate itself with a PID namespace.
1289 .\" commit e66eded8309ebf679d3d3c1f5820d1f2ca332c71
1294 were specified in the
1298 .BR EINVAL " (since Linux 3.9)"
1303 were specified in the
1312 were specified in the
1321 and one (or both) of
1325 were specified in the
1329 .BR EINVAL " (since Linux 2.6.32)"
1330 .\" commit 123be07b0b399670a7cc3d82fef0cb4f93ef885c
1332 was specified, and the caller is an init process.
1335 Returned by the glibc
1337 wrapper function when
1341 is specified as NULL.
1345 was specified in the
1348 but the kernel was not configured with the
1356 was specified in the
1359 but the kernel was not configured with the
1365 was specified in the
1368 but the kernel was not configured with the
1374 was specified in the
1377 but the kernel was not configured with the
1383 was specified in the
1386 but the kernel was not configured with the
1392 is not aligned to a suitable boundary for this architecture.
1393 For example, on aarch64,
1395 must be a multiple of 16.
1397 .BR EINVAL " (" clone3 "() only)"
1399 was specified in the
1403 .BR EINVAL " (" clone "() only)"
1405 was specified together with
1413 was specified together with
1419 .BR "EINVAL " "(" clone "() only)"
1421 was specified together with
1422 .B CLONE_PARENT_SETTID
1427 .BR EINVAL " (" clone3 "() only)"
1429 is greater than the number of nested PID namespaces.
1431 .BR EINVAL " (" clone3 "() only)"
1432 One of the PIDs specified in
1436 .BR EINVAL " (AArch64 only, Linux 4.6 and earlier)"
1438 was not aligned to a 128-bit boundary.
1441 Cannot allocate sufficient memory to allocate a task structure for the
1442 child, or to copy those parts of the caller's context that need to be
1445 .BR ENOSPC " (since Linux 3.7)"
1446 .\" commit f2302505775fd13ba93f034206f1e2a587017929
1448 was specified in the
1451 but the limit on the nesting depth of PID namespaces
1452 would have been exceeded; see
1453 .BR pid_namespaces (7).
1455 .BR ENOSPC " (since Linux 4.9; beforehand " EUSERS )
1457 was specified in the
1459 mask, and the call would cause the limit on the number of
1460 nested user namespaces to be exceeded.
1462 .BR user_namespaces (7).
1464 From Linux 3.11 to Linux 4.8, the error diagnosed in this case was
1467 .BR ENOSPC " (since Linux 4.9)"
1468 One of the values in the
1470 mask specified the creation of a new user namespace,
1471 but doing so would have caused the limit defined by the corresponding file in
1474 For further details, see
1477 .BR EOPNOTSUPP " (" clone3 "() only)"
1478 .B CLONE_INTO_CGROUP
1481 but the file descriptor specified in
1483 refers to a version 2 cgroup that is in the
1488 .BR CLONE_NEWCGROUP ,
1495 was specified by an unprivileged process (process without \fBCAP_SYS_ADMIN\fP).
1499 was specified by a process other than process 0.
1500 (This error occurs only on Linux 2.5.15 and earlier.)
1504 was specified in the
1507 but either the effective user ID or the effective group ID of the caller
1508 does not have a mapping in the parent namespace (see
1509 .BR user_namespaces (7)).
1511 .BR EPERM " (since Linux 3.9)"
1512 .\" commit 3151527ee007b73a0ebd296010f1c0454a919c7d
1514 was specified in the
1516 mask and the caller is in a chroot environment
1517 .\" FIXME What is the rationale for this restriction?
1518 (i.e., the caller's root directory does not match the root directory
1519 of the mount namespace in which it resides).
1521 .BR EPERM " (" clone3 "() only)"
1523 was greater than zero, and the caller lacks the
1525 capability in one or more of the user namespaces that own the
1526 corresponding PID namespaces.
1528 .BR ERESTARTNOINTR " (since Linux 2.6.17)"
1529 .\" commit 4a2c7a7837da1b91468e50426066d988050e4d56
1530 System call was interrupted by a signal and will be restarted.
1531 (This can be seen only during a trace.)
1533 .BR EUSERS " (Linux 3.11 to Linux 4.8)"
1535 was specified in the
1538 and the limit on the number of nested user namespaces would be exceeded.
1539 See the discussion of the
1545 system call first appeared in Linux 5.3.
1546 .\" There is no entry for
1551 .\" as described in this manual page.
1554 are Linux-specific and should not be used in programs
1555 intended to be portable.
1557 One use of these systems calls
1558 is to implement threads: multiple flows of control in a program that
1559 run concurrently in a shared address space.
1563 wrapper function makes some changes
1564 in the memory pointed to by
1566 (changes required to set the stack up correctly for the child)
1573 is used to recursively create children,
1574 do not use the buffer employed for the parent's stack
1575 as the stack of the child.
1579 system call can be used to test whether two processes share various
1580 resources such as a file descriptor table,
1581 System V semaphore undo operations, or a virtual address space.
1583 Handlers registered using
1584 .BR pthread_atfork (3)
1585 are not executed during a clone call.
1587 In the Linux 2.4.x series,
1589 generally does not make the parent of the new thread the same
1590 as the parent of the calling process.
1591 However, for kernel versions 2.4.7 to 2.4.18 the
1595 flag (as in Linux 2.6.0 and later).
1599 should not be called through vsyscall, but directly through
1602 .SS C library/kernel differences
1605 system call corresponds more closely to
1607 in that execution in the child continues from the point of the
1615 wrapper function are omitted.
1617 In contrast to the glibc wrapper, the raw
1619 system call accepts NULL as a
1626 In this case, the child uses a duplicate of the parent's stack.
1627 (Copy-on-write semantics ensure that the child gets separate copies
1628 of stack pages when either process modifies the stack.)
1629 In this case, for correct operation, the
1631 option should not be specified.
1634 the parent's memory because of the use of the
1637 then no copy-on-write duplication occurs and chaos is likely to result.)
1639 The order of the arguments also differs in the raw system call,
1640 and there are variations in the arguments across architectures,
1641 as detailed in the following paragraphs.
1643 The raw system call interface on x86-64 and some other architectures
1644 (including sh, tile, and alpha) is:
1648 .BI "long clone(unsigned long " flags ", void *" stack ,
1649 .BI " int *" parent_tid ", int *" child_tid ,
1650 .BI " unsigned long " tls );
1654 On x86-32, and several other common architectures
1655 (including score, ARM, ARM 64, PA-RISC, arc, Power PC, xtensa,
1657 .\" CONFIG_CLONE_BACKWARDS
1658 the order of the last two arguments is reversed:
1662 .BI "long clone(unsigned long " flags ", void *" stack ,
1663 .BI " int *" parent_tid ", unsigned long " tls ,
1664 .BI " int *" child_tid );
1668 On the cris and s390 architectures,
1669 .\" CONFIG_CLONE_BACKWARDS2
1670 the order of the first two arguments is reversed:
1674 .BI "long clone(void *" stack ", unsigned long " flags ,
1675 .BI " int *" parent_tid ", int *" child_tid ,
1676 .BI " unsigned long " tls );
1680 On the microblaze architecture,
1681 .\" CONFIG_CLONE_BACKWARDS3
1682 an additional argument is supplied:
1686 .BI "long clone(unsigned long " flags ", void *" stack ,
1687 .BI " int " stack_size , "\fR /* Size of stack */"
1688 .BI " int *" parent_tid ", int *" child_tid ,
1689 .BI " unsigned long " tls );
1693 .SS blackfin, m68k, and sparc
1694 .\" Mike Frysinger noted in a 2013 mail:
1695 .\" these arches don't define __ARCH_WANT_SYS_CLONE:
1696 .\" blackfin ia64 m68k sparc
1697 The argument-passing conventions on
1698 blackfin, m68k, and sparc are different from the descriptions above.
1699 For details, see the kernel (and glibc) source.
1701 On ia64, a different interface is used:
1705 .BI "int __clone2(int (*" "fn" ")(void *),"
1706 .BI " void *" stack_base ", size_t " stack_size ,
1707 .BI " int " flags ", void *" "arg" ", ..."
1708 .BI " /* pid_t *" parent_tid ", struct user_desc *" tls ,
1709 .BI " pid_t *" child_tid " */ );"
1713 The prototype shown above is for the glibc wrapper function;
1714 for the system call itself,
1715 the prototype can be described as follows (it is identical to the
1717 prototype on microblaze):
1721 .BI "long clone2(unsigned long " flags ", void *" stack_base ,
1722 .BI " int " stack_size , "\fR /* Size of stack */"
1723 .BI " int *" parent_tid ", int *" child_tid ,
1724 .BI " unsigned long " tls );
1729 operates in the same way as
1733 points to the lowest address of the child's stack area,
1736 specifies the size of the stack pointed to by
1738 .SS Linux 2.4 and earlier
1739 In Linux 2.4 and earlier,
1741 does not take arguments
1747 GNU C library versions 2.3.4 up to and including 2.24
1748 contained a wrapper function for
1750 that performed caching of PIDs.
1751 This caching relied on support in the glibc wrapper for
1753 but limitations in the implementation
1754 meant that the cache was not up to date in some circumstances.
1756 if a signal was delivered to the child immediately after the
1758 call, then a call to
1760 in a handler for the signal could return the PID
1761 of the calling process ("the parent"),
1762 if the clone wrapper had not yet had a chance to update the PID
1764 (This discussion ignores the case where the child was created using
1769 return the same value in the child and in the process that called
1771 since the caller and the child are in the same thread group.
1772 The stale-cache problem also does not occur if the
1776 To get the truth, it was sometimes necessary to use code such as the following:
1780 #include <syscall.h>
1784 mypid = syscall(SYS_getpid);
1787 .\" See also the following bug reports
1788 .\" https://bugzilla.redhat.com/show_bug.cgi?id=417521
1789 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=6910
1791 Because of the stale-cache problem, as well as other problems noted in
1793 the PID caching feature was removed in glibc 2.25.
1795 The following program demonstrates the use of
1797 to create a child process that executes in a separate UTS namespace.
1798 The child changes the hostname in its UTS namespace.
1799 Both parent and child then display the system hostname,
1800 making it possible to see that the hostname
1801 differs in the UTS namespaces of the parent and child.
1802 For an example of the use of this program, see
1805 Within the sample program, we allocate the memory that is to
1806 be used for the child's stack using
1810 for the following reasons:
1813 allocates a block of memory that starts on a page
1814 boundary and is a multiple of the page size.
1815 This is useful if we want to establish a guard page (a page with protection
1817 at the end of the stack using
1822 flag to request a mapping that is suitable for a stack.
1823 For the moment, this flag is a no-op on Linux,
1824 but it exists and has effect on some other systems,
1825 so we should include it for portability.
1827 .\" SRC BEGIN (clone.c)
1837 #include <sys/mman.h>
1838 #include <sys/utsname.h>
1839 #include <sys/wait.h>
1842 static int /* Start function for cloned child */
1843 childFunc(void *arg)
1847 /* Change hostname in UTS namespace of child. */
1849 if (sethostname(arg, strlen(arg)) == \-1)
1850 err(EXIT_FAILURE, "sethostname");
1852 /* Retrieve and display hostname. */
1854 if (uname(&uts) == \-1)
1855 err(EXIT_FAILURE, "uname");
1856 printf("uts.nodename in child: %s\en", uts.nodename);
1858 /* Keep the namespace open for a while, by sleeping.
1859 This allows some experimentation\-\-for example, another
1860 process might join the namespace. */
1864 return 0; /* Child terminates now */
1867 #define STACK_SIZE (1024 * 1024) /* Stack size for cloned child */
1870 main(int argc, char *argv[])
1872 char *stack; /* Start of stack buffer */
1873 char *stackTop; /* End of stack buffer */
1878 fprintf(stderr, "Usage: %s <child\-hostname>\en", argv[0]);
1882 /* Allocate memory to be used for the stack of the child. */
1884 stack = mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE,
1885 MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, \-1, 0);
1886 if (stack == MAP_FAILED)
1887 err(EXIT_FAILURE, "mmap");
1889 stackTop = stack + STACK_SIZE; /* Assume stack grows downward */
1891 /* Create child that has its own UTS namespace;
1892 child commences execution in childFunc(). */
1894 pid = clone(childFunc, stackTop, CLONE_NEWUTS | SIGCHLD, argv[1]);
1896 err(EXIT_FAILURE, "clone");
1897 printf("clone() returned %jd\en", (intmax_t) pid);
1899 /* Parent falls through to here */
1901 sleep(1); /* Give child time to change its hostname */
1903 /* Display hostname in parent\(aqs UTS namespace. This will be
1904 different from hostname in child\(aqs UTS namespace. */
1906 if (uname(&uts) == \-1)
1907 err(EXIT_FAILURE, "uname");
1908 printf("uts.nodename in parent: %s\en", uts.nodename);
1910 if (waitpid(pid, NULL, 0) == \-1) /* Wait for child */
1911 err(EXIT_FAILURE, "waitpid");
1912 printf("child has terminated\en");
1926 .BR set_thread_area (2),
1927 .BR set_tid_address (2),
1932 .BR capabilities (7),