2016-01-04 16:05:18 +00:00
|
|
|
/* Copyright (C) 1999-2016 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
|
Fix clone (CLONE_VM) pid/tid reset (BZ#19957)
As discussed in libc-alpha [1] current clone with CLONE_VM (without
CLONE_THREAD set) will reset the pthread pid/tid fields to -1. The
issue is since memory is shared between the parent and child it will
clobber parent's cached pid/tid leading to internal inconsistencies
if the value is not restored.
And even it is restored it may lead to racy conditions when between
set/restore a thread might invoke pthread function that validate the
pthread with INVALID_TD_P/INVALID_NOT_TERMINATED_TD_P and thus get
wrong results.
As stated in BZ19957, previously reports of this behaviour was close
with EWONTFIX due the fact usage of clone outside glibc is tricky
since glibc requires consistent internal pthread, while using clone
directly may not provide it. However since now posix_spawn uses
clone (CLONE_VM) to fixes various issues related to previous vfork
usage this issue requires fixing.
The vfork implementation also does something similar, but instead
it negates and restores only the *pid* field and functions that
might access its value know to handle such case (getpid, raise
and pthread ones that uses INVALID_TD_P/INVALID_NOT_TERMINATED_TD_P
macros that check only *tid* field). Also vfork does not call
__clone directly, instead calling either __NR_vfork or __NR_clone
directly.
So this patch removes this clone behavior by avoiding setting
the pthread pid/tid field for CLONE_VM. There is no need to
check for CLONE_THREAD, since the minimum supported kernel in all
architecture implies that CLONE_VM must be used with CLONE_THREAD,
otherwise clone returns EINVAL.
Instead of current approach of:
int clone(int (*fn)(void *), void *child_stack, int flags, ...)
[...]
if (flags & CLONE_THREAD)
goto do_syscall;
pid_t new_value;
if (flags & CLONE_VM)
new_value = -1;
else
new_value = getpid ();
THREAD_SETMEM (THREAD_SELF, pid, new_value);
THREAD_SETMEM (THREAD_SELF, tid, new_value);
do_syscall:
[...]
The new approach uses:
int clone(int (*fn)(void *), void *child_stack, int flags, ...)
[...]
if (flags & CLONE_VM)
goto do_syscall;
pid_t new_value = getpid ();
THREAD_SETMEM (THREAD_SELF, pid, new_value);
THREAD_SETMEM (THREAD_SELF, tid, new_value);
do_syscall:
[...]
It also removes the linux tst-getpid2.c test which expects the previous
behavior and instead add another clone test.
Tested on x86_64, i686, x32, powerpc64le, aarch64, armhf, s390, and
s390x. I also did limited check on mips32 and sparc64 (using the new
added test).
I also got reviews from both m68k, hppa, and tile. So I presume for
these architecture the patch works.
The fixes for alpha, microblaze, sh, ia64, and nio2 have not been
tested.
[1] https://sourceware.org/ml/libc-alpha/2016-04/msg00307.html
* sysdeps/unix/sysv/linux/Makefile [$(subdir) == nptl] (test): Remove
tst-getpid2.
(test): Add tst-clone2.
* sysdeps/unix/sysv/linux/tst-clone2.c: New file.
* sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Do not change
pid/tid fields for CLONE_VM.
* sysdeps/unix/sysv/linux/arm/clone.S: Likewise.
* sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
* sysdeps/unix/sysv/linux/mips/clone.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Likewise.
* sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
* sysdeps/unix/sysv/linux/tst-getpid2.c: Remove file.
2016-04-15 19:42:38 +00:00
|
|
|
shlr8 r0
|
|
|
|
tst #1, r0 // CLONE_VM = (1 << 8)
|
2004-12-07 19:40:04 +00:00
|
|
|
bf/s 4f
|
|
|
|
mov r4, r0
|
|
|
|
/* new pid */
|
|
|
|
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)
|
|
|
|
|
2016-01-19 19:33:32 +00:00
|
|
|
libc_hidden_def (__clone)
|
2000-06-12 20:50:37 +00:00
|
|
|
weak_alias (__clone, clone)
|