2014-01-01 11:03:15 +00:00
|
|
|
/* Copyright (C) 1999-2014 Free Software Foundation, Inc.
|
2000-06-12 20:50:37 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2000-06-12 20:50:37 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-06-12 20:50:37 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2000-06-12 20:50:37 +00:00
|
|
|
|
|
|
|
/* clone() is even more special than fork() as it mucks with stacks
|
|
|
|
and invokes a function in the right context after its all over. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
#define _ERRNO_H 1
|
|
|
|
#include <bits/errno.h>
|
2004-12-07 19:40:04 +00:00
|
|
|
#include <tcb-offsets.h>
|
2014-05-29 00:23:19 +00:00
|
|
|
|
2003-02-08 02:34:27 +00:00
|
|
|
/* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
|
|
|
|
pid_t *ptid, void *tls, pid_t *ctid); */
|
2000-06-12 20:50:37 +00:00
|
|
|
|
2004-12-07 19:40:04 +00:00
|
|
|
.text
|
2000-06-12 20:50:37 +00:00
|
|
|
ENTRY(__clone)
|
|
|
|
/* sanity check arguments. */
|
|
|
|
tst r4, r4
|
2007-07-15 00:12:18 +00:00
|
|
|
bt/s 0f
|
2000-06-12 20:50:37 +00:00
|
|
|
tst r5, r5
|
2007-07-15 00:12:18 +00:00
|
|
|
bf 1f
|
|
|
|
0:
|
2003-01-05 11:26:28 +00:00
|
|
|
bra .Lsyscall_error
|
2007-07-15 00:12:18 +00:00
|
|
|
mov #-EINVAL,r0
|
2000-06-12 20:50:37 +00:00
|
|
|
1:
|
|
|
|
/* insert the args onto the new stack */
|
|
|
|
mov.l r7, @-r5
|
|
|
|
/* save the function pointer as the 0th element */
|
|
|
|
mov.l r4, @-r5
|
|
|
|
|
|
|
|
/* do the system call */
|
|
|
|
mov r6, r4
|
2003-02-08 02:34:27 +00:00
|
|
|
mov.l @r15, r6
|
|
|
|
mov.l @(8,r15), r7
|
|
|
|
mov.l @(4,r15), r0
|
Update.
2000-10-26 Kazumoto Kojima <kkojima@rr.iij4u.or.jp>
Yutaka Niibe <gniibe@chroot.org>
* sysdeps/sh/dl-machine.h (elf_machine_rela): Handle in place
relocation which is generated by new ld.
* sysdeps/sh/elf/initfini.c (_init): Preseted __fpscr_values.
(_fini): Delete an obsolete register prefix.
* sysdeps/unix/sysv/linux/sh/Versions: Add __xstat64, __fxstat64,
__lxstat64, alphasort64, glob64, readdir64, readdir64_r, scandir64
and versionsort64 as the 2.2-versioned symbols.
* sysdeps/unix/sysv/linux/sh/bits/fcntl.h: New file.
* sysdeps/unix/sysv/linux/sh/brk.c: Changes for the new system call
calling convention of the kernel.
* sysdeps/unix/sysv/linux/sh/pipe.S: Likewise.
* sysdeps/unix/sysv/linux/sh/socket.S: Likewise.
* sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
* sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
* sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
* sysdeps/unix/sysv/linux/sh/fcntl.c: New file.
* sysdeps/unix/sysv/linux/sh/lockf64.c: New file.
* sysdeps/unix/sysv/linux/sh/sys/user.h: Include the kernel header
file and delete the definitions of struct user and user_fp.
* sysdeps/unix/sysv/linux/sh/syscall.S: New file.
* sysdeps/unix/sysv/linux/sh/syscalls.list: Remove entries for
s_ioctl, s_ipc, s_llseek, s_chown, s_fchown, s_lchown, s_execve,
rt_sigaction, rt_sigpending, rt_sigprocmask, rt_sigqueueinfo,
rt_sigsuspend, rt_sigtimedwait, s_getcwd, s_getdents, s_getgroups,
s_getpriority, s_getegid, s_geteuid, s_getuid, getresgid, getresuid,
s_getrlimit, s_poll, s_pread64, s_ptrace, s_pwrite64, s_reboot,
s_setrlimit, s_sigaction, s_sigpending, s_sigprocmask, s_sigsuspend,
s_setfsgid, s_setfsuid, s_setgid, s_setgroups, s_setregid,
s_setresgid, s_setresuid, s_setreuid, s_setuid, s_sysctl,
s_ugetrlimit, s_ustat, sys_fstat, sys_lstat, sys_mknod, sys_readv,
sys_stat, sys_writev and syscall.
2000-10-26 02:34:17 +00:00
|
|
|
mov #+SYS_ify(clone), r3
|
2003-02-08 02:34:27 +00:00
|
|
|
trapa #0x15
|
2000-06-12 20:50:37 +00:00
|
|
|
mov r0, r1
|
|
|
|
mov #-12, r2
|
|
|
|
shad r2, r1
|
|
|
|
not r1, r1 // r1=0 means r0 = -1 to -4095
|
|
|
|
tst r1, r1 // i.e. error in linux
|
2003-01-05 11:26:28 +00:00
|
|
|
bf .Lclone_end
|
2013-06-05 20:44:03 +00:00
|
|
|
.Lsyscall_error:
|
2003-01-05 11:26:28 +00:00
|
|
|
SYSCALL_ERROR_HANDLER
|
|
|
|
.Lclone_end:
|
2000-06-12 20:50:37 +00:00
|
|
|
tst r0, r0
|
2003-01-05 11:26:28 +00:00
|
|
|
bt 2f
|
|
|
|
.Lpseudo_end:
|
2000-06-12 20:50:37 +00:00
|
|
|
rts
|
|
|
|
nop
|
2003-01-05 11:26:28 +00:00
|
|
|
2:
|
2004-12-07 19:40:04 +00:00
|
|
|
/* terminate the stack frame */
|
|
|
|
mov #0, r14
|
|
|
|
mov r4, r0
|
|
|
|
shlr16 r0
|
|
|
|
tst #1, r0 // CLONE_THREAD = (1 << 16)
|
|
|
|
bf/s 4f
|
|
|
|
mov r4, r0
|
|
|
|
/* new pid */
|
|
|
|
shlr8 r0
|
|
|
|
tst #1, r0 // CLONE_VM = (1 << 8)
|
|
|
|
bf/s 3f
|
|
|
|
mov #-1, r0
|
|
|
|
mov #+SYS_ify(getpid), r3
|
|
|
|
trapa #0x15
|
|
|
|
3:
|
|
|
|
stc gbr, r1
|
|
|
|
mov.w .Lpidoff, r2
|
|
|
|
add r1, r2
|
2013-06-05 20:44:03 +00:00
|
|
|
mov.l r0, @r2
|
2004-12-07 19:40:04 +00:00
|
|
|
mov.w .Ltidoff, r2
|
|
|
|
add r1, r2
|
2013-06-05 20:44:03 +00:00
|
|
|
mov.l r0, @r2
|
2004-12-07 19:40:04 +00:00
|
|
|
4:
|
2000-06-12 20:50:37 +00:00
|
|
|
/* thread starts */
|
|
|
|
mov.l @r15, r1
|
|
|
|
jsr @r1
|
|
|
|
mov.l @(4,r15), r4
|
|
|
|
|
|
|
|
/* we are done, passing the return value through r0 */
|
|
|
|
mov.l .L3, r1
|
|
|
|
#ifdef SHARED
|
|
|
|
mov.l r12, @-r15
|
|
|
|
sts.l pr, @-r15
|
|
|
|
mov r0, r4
|
|
|
|
mova .LG, r0
|
|
|
|
mov.l .LG, r12
|
|
|
|
add r0, r12
|
|
|
|
mova .L3, r0
|
|
|
|
add r0, r1
|
|
|
|
jsr @r1
|
|
|
|
nop
|
|
|
|
lds.l @r15+, pr
|
|
|
|
rts
|
|
|
|
mov.l @r15+, r12
|
|
|
|
#else
|
|
|
|
jmp @r1
|
|
|
|
mov r0, r4
|
|
|
|
#endif
|
|
|
|
.align 2
|
|
|
|
.LG:
|
|
|
|
.long _GLOBAL_OFFSET_TABLE_
|
|
|
|
.L3:
|
|
|
|
.long PLTJMP(C_SYMBOL_NAME(_exit))
|
2004-12-07 19:40:04 +00:00
|
|
|
.Lpidoff:
|
|
|
|
.word PID - TLS_PRE_TCB_SIZE
|
|
|
|
.Ltidoff:
|
|
|
|
.word TID - TLS_PRE_TCB_SIZE
|
2000-06-12 20:50:37 +00:00
|
|
|
PSEUDO_END (__clone)
|
|
|
|
|
|
|
|
weak_alias (__clone, clone)
|