(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / i386 / clone.S
blobc7d31f7a327b57b40a6f66aba2b6406740dbcfea
1 /* Copyright (C) 1996,1997,98,99,2000,02,03,04 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
18    02111-1307 USA.  */
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.  */
23 #include <sysdep.h>
24 #define _ERRNO_H        1
25 #include <bits/errno.h>
26 #include <asm-syntax.h>
27 #include <bp-sym.h>
28 #include <bp-asm.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 */
34 #define FUNC    PARMS
35 #define STACK   FUNC+4
36 #define FLAGS   STACK+PTR_SIZE
37 #define ARG     FLAGS+4
38 #define PTID    ARG+PTR_SIZE
39 #define TLS     PTID+PTR_SIZE
40 #define CTID    TLS+PTR_SIZE
42 #define __NR_clone 120
43 #define SYS_clone 120
45 #define CLONE_VM        0x00000100
46 #define CLONE_THREAD    0x00010000
48         .text
49 ENTRY (BP_SYM (__clone))
50         /* Sanity check arguments.  */
51         movl    $-EINVAL,%eax
52         movl    FUNC(%esp),%ecx         /* no NULL function pointers */
53 #ifdef PIC
54         jecxz   SYSCALL_ERROR_LABEL
55 #else
56         testl   %ecx,%ecx
57         jz      SYSCALL_ERROR_LABEL
58 #endif
59         movl    STACK(%esp),%ecx        /* no NULL stack pointers */
60 #ifdef PIC
61         jecxz   SYSCALL_ERROR_LABEL
62 #else
63         testl   %ecx,%ecx
64         jz      SYSCALL_ERROR_LABEL
65 #endif
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
70         subl    $28,%ecx
71         movl    ARG(%esp),%eax          /* no negative argument counts */
72         movl    %eax,12(%ecx)
74         /* Save the function pointer as the zeroth argument.
75            It will be popped off in the child in the ebx frobbing below.  */
76         movl    FUNC(%esp),%eax
77         movl    %eax,8(%ecx)
78         /* Don't leak any information.  */
79         movl    $0,4(%ecx)
80 #ifndef RESET_PID
81         movl    $0,(%ecx)
82 #endif
84         /* Do the system call */
85         pushl   %ebx
86         pushl   %esi
87         pushl   %edi
88         movl    TLS+12(%esp),%esi
89         movl    PTID+12(%esp),%edx
90         movl    FLAGS+12(%esp),%ebx
91         movl    CTID+12(%esp),%edi
92         movl    $SYS_ify(clone),%eax
94 #ifdef RESET_PID
95         /* Remember the flag value.  */
96         movl    %ebx, (%ecx)
97 #endif
99         int     $0x80
100         popl    %edi
101         popl    %esi
102         popl    %ebx
104         test    %eax,%eax
105         jl      SYSCALL_ERROR_LABEL
106         jz      L(thread_start)
108 L(pseudo_end):
109         ret
111 L(thread_start):
112         /* Note: %esi is zero.  */
113         movl    %esi,%ebp       /* terminate the stack frame */
114 #ifdef RESET_PID
115         testl   $CLONE_THREAD, %edi
116         je      L(newpid)
117 L(haspid):
118 #endif
119         call    *%ebx
120 #ifdef PIC
121         call    L(here)
122 L(here):
123         popl    %ebx
124         addl    $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ebx
125 #endif
126         movl    %eax, %ebx
127         movl    $SYS_ify(exit), %eax
128         int     $0x80
130 #ifdef RESET_PID
131         .subsection 2
132 L(newpid):
133         testl   $CLONE_VM, %edi
134         movl    $-1, %eax
135         jne     L(nomoregetpid)
136         movl    $SYS_ify(getpid), %eax
137         ENTER_KERNEL
138 L(nomoregetpid):
139         movl    %eax, %gs:PID
140         movl    %eax, %gs:TID
141         jmp     L(haspid)
142         .previous
143 #endif
145 PSEUDO_END (BP_SYM (__clone))
147 weak_alias (BP_SYM (__clone), BP_SYM (clone))