2021-01-02 19:32:25 +00:00
|
|
|
/* Copyright (C) 1996-2021 Free Software Foundation, Inc.
|
2000-10-15 03:26:18 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by David Huggins-Daines <dhd@debian.org>, 2000.
|
|
|
|
Based on the Alpha version by Richard Henderson <rth@tamu.edu>, 1996.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +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-10-15 03:26:18 +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:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2000-10-15 03:26:18 +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>
|
2014-09-07 20:18:06 +00:00
|
|
|
#include <tcb-offsets.h>
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2006-05-15 00:44:14 +00:00
|
|
|
/* Non-thread code calls __clone with the following parameters:
|
2013-06-05 20:26:40 +00:00
|
|
|
int clone(int (*fn)(void *arg),
|
|
|
|
void *child_stack,
|
|
|
|
int flags,
|
2006-09-07 16:34:43 +00:00
|
|
|
void *arg)
|
2013-06-05 20:26:40 +00:00
|
|
|
|
2006-05-15 00:44:14 +00:00
|
|
|
NPTL Code will call __clone with the following parameters:
|
2013-06-05 20:26:40 +00:00
|
|
|
int clone(int (*fn)(void *arg),
|
|
|
|
void *child_stack,
|
|
|
|
int flags,
|
2006-09-07 16:34:43 +00:00
|
|
|
void *arg,
|
2013-06-05 20:26:40 +00:00
|
|
|
int *parent_tidptr,
|
|
|
|
struct user_desc *newtls,
|
2006-09-07 16:34:43 +00:00
|
|
|
int *child_pidptr)
|
2013-06-05 20:26:40 +00:00
|
|
|
|
2006-05-15 00:44:14 +00:00
|
|
|
The code should not mangle the extra input registers.
|
|
|
|
Syscall expects: Input to __clone:
|
2013-06-05 20:26:40 +00:00
|
|
|
4(r25) - function pointer (r26, arg0)
|
2006-05-15 00:44:14 +00:00
|
|
|
0(r25) - argument (r23, arg3)
|
|
|
|
r26 - clone flags. (r24, arg2)
|
|
|
|
r25+64 - user stack pointer. (r25, arg1)
|
|
|
|
r24 - parent tid pointer. (stack - 52)
|
|
|
|
r23 - struct user_desc newtls pointer. (stack - 56)
|
|
|
|
r22 - child tid pointer. (stack - 60)
|
|
|
|
r20 - clone syscall number (constant)
|
2006-09-07 16:34:43 +00:00
|
|
|
|
|
|
|
Return:
|
|
|
|
|
2013-06-05 20:26:40 +00:00
|
|
|
On success the thread ID of the child process is returend in
|
2006-09-07 16:34:43 +00:00
|
|
|
the callers context.
|
2013-06-05 20:26:40 +00:00
|
|
|
On error return -1, and set errno to the value returned by
|
2006-09-07 16:34:43 +00:00
|
|
|
the syscall.
|
2006-05-15 00:44:14 +00:00
|
|
|
*/
|
2000-10-15 03:26:18 +00:00
|
|
|
|
|
|
|
.text
|
|
|
|
ENTRY(__clone)
|
2006-09-07 16:34:43 +00:00
|
|
|
/* Prologue */
|
2006-09-16 00:46:19 +00:00
|
|
|
stwm %r4, 64(%sp)
|
2017-07-16 16:46:50 +00:00
|
|
|
.cfi_def_cfa_offset -64
|
|
|
|
.cfi_offset 4, 0
|
2006-09-07 16:34:43 +00:00
|
|
|
stw %sp, -4(%sp)
|
2006-09-16 00:46:19 +00:00
|
|
|
#ifdef PIC
|
2006-09-07 16:34:43 +00:00
|
|
|
stw %r19, -32(%sp)
|
2017-07-16 16:46:50 +00:00
|
|
|
.cfi_offset 19, 32
|
2006-09-16 00:46:19 +00:00
|
|
|
#endif
|
2000-10-15 03:26:18 +00:00
|
|
|
|
|
|
|
/* Sanity check arguments. */
|
2019-11-03 21:28:01 +00:00
|
|
|
comib,=,n 0,%arg0,.LerrorSanity /* no NULL function pointers */
|
|
|
|
comib,=,n 0,%arg1,.LerrorSanity /* no NULL stack pointers */
|
|
|
|
|
|
|
|
/* Ensure stack argument is 8-byte aligned. */
|
|
|
|
ldo 7(%r25),%r25
|
|
|
|
depi 0,31,3,%r25
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2006-09-16 00:46:19 +00:00
|
|
|
/* Save the function pointer, arg, and flags on the new stack. */
|
2006-09-07 16:34:43 +00:00
|
|
|
stwm %r26, 64(%r25)
|
|
|
|
stw %r23, -60(%r25)
|
2006-09-16 00:46:19 +00:00
|
|
|
stw %r24, -56(%r25)
|
2019-11-03 21:28:01 +00:00
|
|
|
|
2006-05-15 00:44:14 +00:00
|
|
|
/* Clone arguments are (int flags, void * child_stack) */
|
2006-09-07 16:34:43 +00:00
|
|
|
copy %r24, %r26 /* flags are first */
|
2006-05-15 00:44:14 +00:00
|
|
|
/* User stack pointer is in the correct register already */
|
|
|
|
|
|
|
|
/* Load args from stack... */
|
2006-09-07 16:34:43 +00:00
|
|
|
ldw -116(%sp), %r24 /* Load parent_tidptr */
|
|
|
|
ldw -120(%sp), %r23 /* Load newtls */
|
|
|
|
ldw -124(%sp), %r22 /* Load child_tidptr */
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2003-12-18 06:05:03 +00:00
|
|
|
/* Save the PIC register. */
|
|
|
|
#ifdef PIC
|
2006-09-16 00:46:19 +00:00
|
|
|
copy %r19, %r4 /* parent */
|
2003-12-18 06:05:03 +00:00
|
|
|
#endif
|
|
|
|
|
2000-10-15 03:26:18 +00:00
|
|
|
/* Do the system call */
|
2006-09-07 16:34:43 +00:00
|
|
|
ble 0x100(%sr2, %r0)
|
|
|
|
ldi __NR_clone, %r20
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
ldi -4096, %r1
|
|
|
|
comclr,>>= %r1, %ret0, %r0 /* Note: unsigned compare. */
|
2006-05-15 00:44:14 +00:00
|
|
|
b,n .LerrorRest
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2006-09-16 00:46:19 +00:00
|
|
|
/* Restore the PIC register. */
|
|
|
|
#ifdef PIC
|
2013-06-05 20:26:40 +00:00
|
|
|
copy %r4, %r19 /* parent */
|
2006-09-16 00:46:19 +00:00
|
|
|
#endif
|
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
comib,=,n 0, %ret0, .LthreadStart
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2003-12-18 06:05:03 +00:00
|
|
|
/* Successful return from the parent
|
2013-06-05 20:26:40 +00:00
|
|
|
No need to restore the PIC register,
|
2003-12-18 06:05:03 +00:00
|
|
|
since we return immediately. */
|
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
ldw -84(%sp), %rp
|
2000-10-15 03:26:18 +00:00
|
|
|
bv %r0(%rp)
|
2006-09-16 00:46:19 +00:00
|
|
|
ldwm -64(%sp), %r4
|
2003-12-18 06:05:03 +00:00
|
|
|
|
2006-05-24 15:33:28 +00:00
|
|
|
.LerrorRest:
|
2006-05-15 00:44:14 +00:00
|
|
|
/* Something bad happened -- no child created */
|
2006-09-07 16:34:43 +00:00
|
|
|
bl __syscall_error, %rp
|
|
|
|
sub %r0, %ret0, %arg0
|
|
|
|
ldw -84(%sp), %rp
|
|
|
|
/* Return after setting errno, ret0 is set to -1 by __syscall_error. */
|
|
|
|
bv %r0(%rp)
|
2006-09-16 00:46:19 +00:00
|
|
|
ldwm -64(%sp), %r4
|
2006-09-07 16:34:43 +00:00
|
|
|
|
|
|
|
.LerrorSanity:
|
|
|
|
/* Sanity checks failed, return -1, and set errno to EINVAL. */
|
|
|
|
bl __syscall_error, %rp
|
|
|
|
ldi EINVAL, %arg0
|
|
|
|
ldw -84(%sp), %rp
|
2006-05-15 00:44:14 +00:00
|
|
|
bv %r0(%rp)
|
2006-09-16 00:46:19 +00:00
|
|
|
ldwm -64(%sp), %r4
|
2000-10-15 03:26:18 +00:00
|
|
|
|
2006-09-07 16:34:43 +00:00
|
|
|
.LthreadStart:
|
2000-10-15 03:26:18 +00:00
|
|
|
/* Load up the arguments. */
|
2006-09-07 16:34:43 +00:00
|
|
|
ldw -60(%sp), %arg0
|
|
|
|
ldw -64(%sp), %r22
|
2003-12-18 06:05:03 +00:00
|
|
|
|
2013-08-30 12:32:07 +00:00
|
|
|
/* $$dyncall fixes child's PIC register */
|
2000-10-15 03:26:18 +00:00
|
|
|
|
|
|
|
/* Call the user's function */
|
2006-09-16 00:46:19 +00:00
|
|
|
#ifdef PIC
|
|
|
|
copy %r19, %r4
|
|
|
|
#endif
|
2006-09-07 16:34:43 +00:00
|
|
|
bl $$dyncall, %r31
|
|
|
|
copy %r31, %rp
|
2006-09-16 00:46:19 +00:00
|
|
|
#ifdef PIC
|
|
|
|
copy %r4, %r19
|
|
|
|
#endif
|
2017-07-17 14:46:00 +00:00
|
|
|
copy %r28, %r26
|
Call exit directly in clone (BZ #21512)
On aarch64, alpha, arm, hppa, mips, nios2, powerpc, sh, sparc, tile,
and x86_64 the clone syscall jumps to _exit after the child execution
and the function ends the process execution by calling exit_group.
This behavior have a small issue where threads created with
CLONE_THREAD using clone syscall directly will eventually exit the
whole group altogether instead of just the thread created. Also,
s390, microblaze, ia64, i386, and m68k differs by calling exit
syscall directly.
This patch changes all architectures to call the exit syscall
directly, as for s390, microblaze, ia64, i386, and m68k. This do not
have change glibc internal behavior in any sort, since the only
usage of clone implementation in posix_spawn calls _exit directly
in the created child (fork uses a direct call to clone).
Checked on x86_64-linux-gnu, i686-linux-gnu, aarch64-linux-gnu,
powerpc-linux-gnu, powerpc64le-linux-gnu, sparc64-linux-gnu,
and sparcv9-linux-gnu.
[BZ #21512]
* sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Call exit
syscall instead of jump to _exit.
(CLONE_VM_BIT): Remove unused define.
(CLONE_VM): Likewise.
(CLONE_THREAD_BIT): Likewise.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/arm/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/i386/clone.S (CLONE_VM): Likewise.
* sysdeps/unix/sysv/linux/ia64/clone2.S (__clone2): Call exit
syscall instead of jump to _exit.
* sysdeps/unix/sysv/linux/hppa/clone.S (__clone): Likewise.
* sysdeps/unix/sysv/linux/mips/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/nios2/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone):
Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/sh/clone.S (__clone): Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/tile/clone.S (__clone): Likewise.
* sysdeps/unix/sysv/linux/x86_64/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/Makefile (tests): Add tst-clone3.
* sysdeps/unix/sysv/linux/tst-clone3.c: New file.
Fix
2017-06-22 11:49:34 +00:00
|
|
|
ble 0x100(%sr2, %r0)
|
|
|
|
ldi __NR_exit, %r20
|
2000-10-15 03:26:18 +00:00
|
|
|
|
Call exit directly in clone (BZ #21512)
On aarch64, alpha, arm, hppa, mips, nios2, powerpc, sh, sparc, tile,
and x86_64 the clone syscall jumps to _exit after the child execution
and the function ends the process execution by calling exit_group.
This behavior have a small issue where threads created with
CLONE_THREAD using clone syscall directly will eventually exit the
whole group altogether instead of just the thread created. Also,
s390, microblaze, ia64, i386, and m68k differs by calling exit
syscall directly.
This patch changes all architectures to call the exit syscall
directly, as for s390, microblaze, ia64, i386, and m68k. This do not
have change glibc internal behavior in any sort, since the only
usage of clone implementation in posix_spawn calls _exit directly
in the created child (fork uses a direct call to clone).
Checked on x86_64-linux-gnu, i686-linux-gnu, aarch64-linux-gnu,
powerpc-linux-gnu, powerpc64le-linux-gnu, sparc64-linux-gnu,
and sparcv9-linux-gnu.
[BZ #21512]
* sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Call exit
syscall instead of jump to _exit.
(CLONE_VM_BIT): Remove unused define.
(CLONE_VM): Likewise.
(CLONE_THREAD_BIT): Likewise.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/arm/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/i386/clone.S (CLONE_VM): Likewise.
* sysdeps/unix/sysv/linux/ia64/clone2.S (__clone2): Call exit
syscall instead of jump to _exit.
* sysdeps/unix/sysv/linux/hppa/clone.S (__clone): Likewise.
* sysdeps/unix/sysv/linux/mips/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/nios2/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone):
Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
Likewise.
(CLONE_VM): Remove unused define.
(CLONE_THREAD): Likewise.
* sysdeps/unix/sysv/linux/sh/clone.S (__clone): Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/tile/clone.S (__clone): Likewise.
* sysdeps/unix/sysv/linux/x86_64/clone.S (__clone): Likewise.
(CLONE_VM): Remove unused define.
* sysdeps/unix/sysv/linux/Makefile (tests): Add tst-clone3.
* sysdeps/unix/sysv/linux/tst-clone3.c: New file.
Fix
2017-06-22 11:49:34 +00:00
|
|
|
/* We should not return from exit.
|
2006-09-16 00:46:19 +00:00
|
|
|
We do not restore r4, or the stack state. */
|
2006-09-07 16:34:43 +00:00
|
|
|
iitlbp %r0, (%sr0, %r0)
|
2000-10-15 03:26:18 +00:00
|
|
|
|
|
|
|
PSEUDO_END(__clone)
|
|
|
|
|
2016-01-19 19:33:32 +00:00
|
|
|
libc_hidden_def (__clone)
|
2005-05-26 14:30:48 +00:00
|
|
|
weak_alias (__clone, clone)
|