2001-04-07 20:09:42 +00:00
|
|
|
/* Create new context.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2001-2024 Free Software Foundation, Inc.
|
2001-04-07 20:09:42 +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.
|
2001-04-07 20:09:42 +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.
|
2001-04-07 20:09:42 +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
|
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/>. */
|
2001-04-07 20:09:42 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
|
|
|
#include "ucontext_i.h"
|
|
|
|
|
|
|
|
|
|
|
|
ENTRY(__makecontext)
|
|
|
|
movl 4(%esp), %eax
|
|
|
|
|
|
|
|
/* Load the address of the function we are supposed to run. */
|
|
|
|
movl 8(%esp), %ecx
|
|
|
|
|
|
|
|
/* Compute the address of the stack. The information comes from
|
|
|
|
to us_stack element. */
|
|
|
|
movl oSS_SP(%eax), %edx
|
|
|
|
movl %ecx, oEIP(%eax)
|
|
|
|
addl oSS_SIZE(%eax), %edx
|
|
|
|
|
|
|
|
/* Remember the number of parameters for the exit handler since
|
|
|
|
it has to remove them. We store the number in the EBX register
|
|
|
|
which the function we will call must preserve. */
|
|
|
|
movl 12(%esp), %ecx
|
|
|
|
movl %ecx, oEBX(%eax)
|
|
|
|
|
2008-01-09 19:35:21 +00:00
|
|
|
/* Make room on the new stack for the parameters.
|
|
|
|
Room for the arguments, return address (== L(exitcode)) and
|
|
|
|
oLINK pointer is needed. One of the pointer sizes is subtracted
|
|
|
|
after aligning the stack. */
|
2001-04-07 20:09:42 +00:00
|
|
|
negl %ecx
|
2008-01-09 19:35:21 +00:00
|
|
|
leal -4(%edx,%ecx,4), %edx
|
2001-04-07 20:09:42 +00:00
|
|
|
negl %ecx
|
2007-12-03 04:57:30 +00:00
|
|
|
|
|
|
|
/* Align the stack. */
|
|
|
|
andl $0xfffffff0, %edx
|
|
|
|
subl $4, %edx
|
|
|
|
|
2001-04-07 20:09:42 +00:00
|
|
|
/* Store the future stack pointer. */
|
|
|
|
movl %edx, oESP(%eax)
|
|
|
|
|
2007-12-03 04:57:30 +00:00
|
|
|
/* Put the next context on the new stack (from the uc_link
|
|
|
|
element). */
|
|
|
|
movl oLINK(%eax), %eax
|
|
|
|
movl %eax, 4(%edx,%ecx,4)
|
|
|
|
|
2001-04-07 20:09:42 +00:00
|
|
|
/* Copy all the parameters. */
|
|
|
|
jecxz 2f
|
|
|
|
1: movl 12(%esp,%ecx,4), %eax
|
|
|
|
movl %eax, (%edx,%ecx,4)
|
|
|
|
decl %ecx
|
|
|
|
jnz 1b
|
|
|
|
2:
|
|
|
|
|
|
|
|
/* If the function we call returns we must continue with the
|
|
|
|
context which is given in the uc_link element. To do this
|
|
|
|
set the return address for the function the user provides
|
|
|
|
to a little bit of helper code which does the magic (see
|
|
|
|
below). */
|
|
|
|
#ifdef PIC
|
|
|
|
call 1f
|
2005-05-04 17:58:13 +00:00
|
|
|
cfi_adjust_cfa_offset (4)
|
2001-04-07 20:09:42 +00:00
|
|
|
1: popl %ecx
|
2005-05-04 17:58:13 +00:00
|
|
|
cfi_adjust_cfa_offset (-4)
|
2001-04-07 20:09:42 +00:00
|
|
|
addl $L(exitcode)-1b, %ecx
|
|
|
|
movl %ecx, (%edx)
|
|
|
|
#else
|
|
|
|
movl $L(exitcode), (%edx)
|
|
|
|
#endif
|
2015-08-04 10:35:50 +00:00
|
|
|
/* We need to terminate the FDE here instead of after ret because
|
|
|
|
the unwinder looks at ra-1 for unwind information. */
|
|
|
|
cfi_endproc
|
|
|
|
|
2001-04-07 20:09:42 +00:00
|
|
|
/* 'makecontext' returns no value. */
|
|
|
|
ret
|
|
|
|
|
|
|
|
/* This is the helper code which gets called if a function which
|
|
|
|
is registered with 'makecontext' returns. In this case we
|
|
|
|
have to install the context listed in the uc_link element of
|
|
|
|
the context 'makecontext' manipulated at the time of the
|
|
|
|
'makecontext' call. If the pointer is NULL the process must
|
|
|
|
terminate. */
|
|
|
|
L(exitcode):
|
|
|
|
/* This removes the parameters passed to the function given to
|
|
|
|
'makecontext' from the stack. EBX contains the number of
|
|
|
|
parameters (see above). */
|
|
|
|
leal (%esp,%ebx,4), %esp
|
|
|
|
|
2009-07-23 15:02:07 +00:00
|
|
|
cmpl $0, (%esp) /* Check the next context. */
|
2001-04-07 20:09:42 +00:00
|
|
|
je 2f /* If it is zero exit. */
|
|
|
|
|
2015-08-19 11:39:47 +00:00
|
|
|
call HIDDEN_JUMPTARGET(__setcontext)
|
2001-04-07 20:09:42 +00:00
|
|
|
/* If this returns (which can happen if the syscall fails) we'll
|
|
|
|
exit the program with the return error value (-1). */
|
2018-01-04 17:00:05 +00:00
|
|
|
jmp L(call_exit)
|
2001-04-07 20:09:42 +00:00
|
|
|
|
2018-01-04 17:00:05 +00:00
|
|
|
2:
|
|
|
|
/* Exit with status 0. */
|
|
|
|
xorl %eax, %eax
|
|
|
|
|
|
|
|
L(call_exit):
|
|
|
|
/* Align the stack and pass the exit code (from %eax). */
|
|
|
|
andl $0xfffffff0, %esp
|
|
|
|
subl $12, %esp
|
|
|
|
pushl %eax
|
|
|
|
|
|
|
|
call HIDDEN_JUMPTARGET(exit)
|
2001-04-07 20:09:42 +00:00
|
|
|
/* The 'exit' call should never return. In case it does cause
|
|
|
|
the process to terminate. */
|
|
|
|
hlt
|
2005-05-04 17:58:13 +00:00
|
|
|
cfi_startproc
|
2001-04-07 20:09:42 +00:00
|
|
|
END(__makecontext)
|
|
|
|
|
2005-05-26 14:30:51 +00:00
|
|
|
weak_alias (__makecontext, makecontext)
|