2018-01-29 18:27:52 +00:00
|
|
|
/* Wrapper around clone system call. RISC-V version.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
2018-01-29 18:27:52 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
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/>. */
|
2018-01-29 18:27:52 +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 <sys/asm.h>
|
|
|
|
#include <sysdep.h>
|
|
|
|
#define _ERRNO_H 1
|
|
|
|
#include <bits/errno.h>
|
|
|
|
#include <tls.h>
|
|
|
|
#include "tcb-offsets.h"
|
|
|
|
|
|
|
|
/* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
|
|
|
|
void *parent_tidptr, void *tls, void *child_tidptr) */
|
|
|
|
|
|
|
|
.text
|
|
|
|
LEAF (__clone)
|
|
|
|
|
|
|
|
/* Sanity check arguments. */
|
|
|
|
beqz a0,L (invalid) /* No NULL function pointers. */
|
|
|
|
beqz a1,L (invalid) /* No NULL stack pointers. */
|
|
|
|
|
|
|
|
addi a1,a1,-16 /* Reserve argument save space. */
|
|
|
|
REG_S a0,0(a1) /* Save function pointer. */
|
|
|
|
REG_S a3,SZREG(a1) /* Save argument pointer. */
|
|
|
|
|
|
|
|
/* The syscall expects the args to be in different slots. */
|
|
|
|
mv a0,a2
|
|
|
|
mv a2,a4
|
|
|
|
mv a3,a5
|
|
|
|
mv a4,a6
|
|
|
|
|
|
|
|
/* Do the system call. */
|
|
|
|
li a7,__NR_clone
|
|
|
|
scall
|
|
|
|
|
|
|
|
bltz a0,L (error)
|
|
|
|
beqz a0,L (thread_start)
|
|
|
|
|
|
|
|
/* Successful return from the parent. */
|
|
|
|
ret
|
|
|
|
|
|
|
|
L (invalid):
|
|
|
|
li a0, -EINVAL
|
|
|
|
/* Something bad happened -- no child created. */
|
|
|
|
L (error):
|
|
|
|
j __syscall_error
|
|
|
|
END (__clone)
|
|
|
|
|
|
|
|
/* Load up the arguments to the function. Put this block of code in
|
|
|
|
its own function so that we can terminate the stack trace with our
|
|
|
|
debug info. */
|
|
|
|
|
|
|
|
ENTRY (__thread_start)
|
|
|
|
L (thread_start):
|
2019-01-13 23:48:09 +00:00
|
|
|
/* Terminate call stack by noting ra is undefined. Use a dummy
|
|
|
|
.cfi_label to force starting the FDE. */
|
|
|
|
.cfi_label .Ldummy
|
|
|
|
cfi_undefined (ra)
|
|
|
|
|
2018-01-29 18:27:52 +00:00
|
|
|
/* Restore the arg for user's function. */
|
|
|
|
REG_L a1,0(sp) /* Function pointer. */
|
|
|
|
REG_L a0,SZREG(sp) /* Argument pointer. */
|
|
|
|
|
|
|
|
/* Call the user's function. */
|
|
|
|
jalr a1
|
|
|
|
|
|
|
|
/* Call exit with the function's return value. */
|
|
|
|
li a7, __NR_exit
|
|
|
|
scall
|
|
|
|
|
|
|
|
END (__thread_start)
|
|
|
|
|
|
|
|
libc_hidden_def (__clone)
|
|
|
|
weak_alias (__clone, clone)
|