1 /* Copyright (C) 1996-2000,02,03,04,2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Richard Henderson (rth@tamu.edu)
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 /* clone() is even more special than fork() as it mucks with stacks
21 and invokes a function in the right context after its all over. */
25 #include <bits/errno.h>
26 #include <asm-syntax.h>
30 /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
31 pid_t *ptid, struct user_desc *tls, pid_t *ctid); */
33 #define PARMS LINKAGE /* no space for saved regs */
36 #define FLAGS STACK+PTR_SIZE
38 #define PTID ARG+PTR_SIZE
39 #define TLS PTID+PTR_SIZE
40 #define CTID TLS+PTR_SIZE
42 #define __NR_clone 120
45 #define CLONE_VM 0x00000100
46 #define CLONE_THREAD 0x00010000
49 ENTRY (BP_SYM (__clone))
50 /* Sanity check arguments. */
52 movl FUNC(%esp),%ecx /* no NULL function pointers */
54 jecxz SYSCALL_ERROR_LABEL
57 jz SYSCALL_ERROR_LABEL
59 movl STACK(%esp),%ecx /* no NULL stack pointers */
61 jecxz SYSCALL_ERROR_LABEL
64 jz SYSCALL_ERROR_LABEL
67 /* Insert the argument onto the new stack. Make sure the new
68 thread is started with an alignment of (mod 16). */
69 andl $0xfffffff0, %ecx
71 movl ARG(%esp),%eax /* no negative argument counts */
74 /* Save the function pointer as the zeroth argument.
75 It will be popped off in the child in the ebx frobbing below. */
78 /* Don't leak any information. */
84 /* Do the system call */
86 cfi_adjust_cfa_offset (4)
88 cfi_adjust_cfa_offset (4)
90 cfi_adjust_cfa_offset (4)
92 movl TLS+12(%esp),%esi
93 cfi_rel_offset (esi, 4)
94 movl PTID+12(%esp),%edx
95 movl FLAGS+12(%esp),%ebx
96 cfi_rel_offset (ebx, 8)
97 movl CTID+12(%esp),%edi
98 cfi_rel_offset (edi, 0)
99 movl $SYS_ify(clone),%eax
102 /* Remember the flag value. */
106 /* End FDE now, because in the child the unwind info will be
116 jl SYSCALL_ERROR_LABEL
124 /* Clearing frame pointer is insufficient, use CFI. */
126 /* Note: %esi is zero. */
127 movl %esi,%ebp /* terminate the stack frame */
129 testl $CLONE_THREAD, %edi
138 addl $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ebx
141 movl $SYS_ify(exit), %eax
147 testl $CLONE_VM, %edi
150 movl $SYS_ify(getpid), %eax
161 PSEUDO_END (BP_SYM (__clone))
163 weak_alias (BP_SYM (__clone), BP_SYM (clone))