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, see
17 <http://www.gnu.org/licenses/>. */
19 /* clone() is even more special than fork() as it mucks with stacks
20 and invokes a function in the right context after its all over. */
24 #include <bits/errno.h>
25 #include <asm-syntax.h>
29 /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
30 pid_t *ptid, struct user_desc *tls, pid_t *ctid); */
32 #define PARMS LINKAGE /* no space for saved regs */
35 #define FLAGS STACK+PTR_SIZE
37 #define PTID ARG+PTR_SIZE
38 #define TLS PTID+PTR_SIZE
39 #define CTID TLS+PTR_SIZE
41 #define __NR_clone 120
44 #define CLONE_VM 0x00000100
45 #define CLONE_THREAD 0x00010000
48 ENTRY (BP_SYM (__clone))
49 /* Sanity check arguments. */
51 movl FUNC(%esp),%ecx /* no NULL function pointers */
53 jecxz SYSCALL_ERROR_LABEL
56 jz SYSCALL_ERROR_LABEL
58 movl STACK(%esp),%ecx /* no NULL stack pointers */
60 jecxz SYSCALL_ERROR_LABEL
63 jz SYSCALL_ERROR_LABEL
66 /* Insert the argument onto the new stack. Make sure the new
67 thread is started with an alignment of (mod 16). */
68 andl $0xfffffff0, %ecx
70 movl ARG(%esp),%eax /* no negative argument counts */
73 /* Save the function pointer as the zeroth argument.
74 It will be popped off in the child in the ebx frobbing below. */
77 /* Don't leak any information. */
83 /* Do the system call */
85 cfi_adjust_cfa_offset (4)
87 cfi_adjust_cfa_offset (4)
89 cfi_adjust_cfa_offset (4)
91 movl TLS+12(%esp),%esi
92 cfi_rel_offset (esi, 4)
93 movl PTID+12(%esp),%edx
94 movl FLAGS+12(%esp),%ebx
95 cfi_rel_offset (ebx, 8)
96 movl CTID+12(%esp),%edi
97 cfi_rel_offset (edi, 0)
98 movl $SYS_ify(clone),%eax
101 /* Remember the flag value. */
105 /* End FDE now, because in the child the unwind info will be
115 jl SYSCALL_ERROR_LABEL
123 /* Clearing frame pointer is insufficient, use CFI. */
125 /* Note: %esi is zero. */
126 movl %esi,%ebp /* terminate the stack frame */
128 testl $CLONE_THREAD, %edi
137 addl $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ebx
140 movl $SYS_ify(exit), %eax
146 testl $CLONE_VM, %edi
149 movl $SYS_ify(getpid), %eax
160 PSEUDO_END (BP_SYM (__clone))
162 weak_alias (BP_SYM (__clone), BP_SYM (clone))