1 /* Copyright (C) 2011-2012 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
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 it's all over. */
24 #include <bits/errno.h>
26 #include <asm/unistd.h>
29 #include <linux/sched.h>
31 /* What we save where in the stack frame; must include all callee-saves. */
32 #define FRAME_NEXT_LR (0 * REGSIZE) /* reserved by ABI; not used here */
33 #define FRAME_SP (1 * REGSIZE)
34 #define FRAME_R30 (2 * REGSIZE)
35 #define FRAME_R31 (3 * REGSIZE)
36 #define FRAME_R32 (4 * REGSIZE)
37 #define FRAME_SIZE (5 * REGSIZE)
39 /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
40 pid_t *ptid, struct user_desc *tls, pid_t *ctid); */
44 /* sanity check arguments */
48 /* Create a stack frame so we can pass callee-saves to new task. */
52 ADDI_PTR sp, sp, -FRAME_SIZE
55 cfi_def_cfa_offset (FRAME_SIZE)
56 ADDI_PTR r11, sp, FRAME_SP
59 ADDI_PTR r11, sp, FRAME_R30
63 ADDI_PTR r11, sp, FRAME_R31
65 cfi_offset (r30, FRAME_R30 - FRAME_SIZE)
68 ADDI_PTR r11, sp, FRAME_R32
70 cfi_offset (r31, FRAME_R31 - FRAME_SIZE)
72 cfi_offset (r32, FRAME_R32 - FRAME_SIZE)
74 /* Make sure child stack is properly aligned, and set up the
75 top frame so that we can call out of it immediately in the
76 child. Setting it up here means we fault in the parent if
77 it's bogus, which is probably cleaner than faulting first
78 thing in the child. */
79 ADDI_PTR r1, r1, -C_ABI_SAVE_AREA_SIZE
80 andi r1, r1, -C_ABI_SAVE_AREA_SIZE
81 ADDI_PTR r9, r1, REGSIZE /* sp of this frame on entry, i.e. zero */
84 /* We need to switch the argument convention around from
98 r1 child_stack [same as libc]
103 Plus the callee-saves as described at .Lthread_start, below. */
118 moveli TREG_SYSCALL_NR_NAME, __NR_clone
121 BEQZ r0, .Lthread_start /* If in child task. */
123 /* Restore the callee-saved registers and return. */
124 ADDLI_PTR lr, sp, FRAME_SIZE
127 ADDLI_PTR r30, sp, FRAME_R30
131 ADDLI_PTR r31, sp, FRAME_R31
135 ADDLI_PTR r32, sp, FRAME_R32
139 ADDI_PTR sp, sp, FRAME_SIZE
141 cfi_def_cfa_offset (0)
155 /* This function expects to receive:
157 sp: the top of a valid stack area
159 r31: the argument to pass to the user function
160 r32: the user function pointer */
163 /* Check and see if we need to reset the PID, which we do if
164 CLONE_THREAD isn't set, i.e. we're not staying in the thread group.
165 If CLONE_VM is set, we're doing some kind of thread-like clone,
166 so we set the tid/pid to -1 to disable using the cached values
167 in getpid(). Otherwise (if CLONE_VM isn't set), it's a
168 fork-like clone, and we go ahead and write the cached values
169 from the true system pid (retrieved via __NR_getpid syscall). */
170 cfi_def_cfa_offset (FRAME_SIZE)
173 moveli r0, hw1_last(CLONE_VM)
174 moveli r1, hw1_last(CLONE_THREAD)
177 shl16insli r0, r0, hw0(CLONE_VM)
178 shl16insli r1, r1, hw0(CLONE_THREAD)
182 moveli r0, lo16(CLONE_VM)
183 moveli r1, lo16(CLONE_THREAD)
186 auli r0, r0, ha16(CLONE_VM)
187 auli r1, r1, ha16(CLONE_THREAD)
194 BNEZ r1, .Lno_reset_pid /* CLONE_THREAD is set */
197 BNEZ r0, .Lgotpid /* CLONE_VM is set */
199 moveli TREG_SYSCALL_NR_NAME, __NR_getpid
202 ADDLI_PTR r2, tp, PID_OFFSET
205 ADDLI_PTR r2, tp, TID_OFFSET
210 /* Invoke user function with specified argument. */
215 j HIDDEN_JUMPTARGET(_exit)
216 info INFO_OP_CANNOT_BACKTRACE /* Notify backtracer to stop. */
220 weak_alias (__clone, clone)