2008-08-07 23:52:34 +00:00
|
|
|
/* Create new context.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 2008-2021 Free Software Foundation, Inc.
|
2008-08-07 23:52:34 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Helge Deller <deller@gmx.de>, 2008.
|
|
|
|
|
|
|
|
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
|
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/>. */
|
2008-08-07 23:52:34 +00:00
|
|
|
|
|
|
|
#include <libintl.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sysdep.h>
|
|
|
|
#include <ucontext.h>
|
|
|
|
|
2010-02-02 21:36:48 +00:00
|
|
|
/* POSIX only supports integer arguments. */
|
2010-06-23 21:03:11 +00:00
|
|
|
|
|
|
|
/* Stack must be 64-byte aligned at all times. */
|
2010-02-02 21:36:48 +00:00
|
|
|
#define STACK_ALIGN 64
|
2010-06-23 21:03:11 +00:00
|
|
|
/* Size of frame marker in unsigned long words. */
|
2013-06-05 20:26:40 +00:00
|
|
|
#define FRAME_SIZE_UL 8
|
2010-06-23 21:03:11 +00:00
|
|
|
/* Size of frame marker in bytes. */
|
2019-02-28 15:02:09 +00:00
|
|
|
#define FRAME_SIZE_BYTES (8 * sizeof (unsigned long))
|
2010-06-23 21:03:11 +00:00
|
|
|
/* Size of X arguments in bytes. */
|
2019-02-28 15:02:09 +00:00
|
|
|
#define ARGS(x) (x * sizeof (unsigned long))
|
2008-08-07 23:52:34 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
__makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
|
|
|
|
{
|
2010-06-23 21:03:11 +00:00
|
|
|
unsigned long *sp, *osp;
|
2008-08-07 23:52:34 +00:00
|
|
|
va_list ap;
|
|
|
|
int i;
|
|
|
|
|
2013-06-05 20:26:40 +00:00
|
|
|
/* Create a 64-byte aligned frame to store args. Use ss_sp if
|
2010-06-23 21:03:11 +00:00
|
|
|
it is available, otherwise be robust and use the currently
|
|
|
|
saved stack pointer. */
|
|
|
|
if (ucp->uc_stack.ss_sp && ucp->uc_stack.ss_size)
|
|
|
|
osp = (unsigned long *)ucp->uc_stack.ss_sp;
|
|
|
|
else
|
|
|
|
osp = (unsigned long *)ucp->uc_mcontext.sc_gr[30];
|
|
|
|
|
2013-06-05 20:26:40 +00:00
|
|
|
sp = (unsigned long *)((((unsigned long) osp)
|
|
|
|
+ FRAME_SIZE_BYTES + ARGS(argc) + STACK_ALIGN)
|
2010-06-23 21:03:11 +00:00
|
|
|
& ~(STACK_ALIGN - 1));
|
|
|
|
|
|
|
|
/* Use new frame. */
|
|
|
|
ucp->uc_mcontext.sc_gr[30] = ((unsigned long) sp);
|
|
|
|
|
|
|
|
/* Finish frame setup. */
|
|
|
|
if (ucp->uc_link)
|
|
|
|
{
|
|
|
|
/* Returning to the next context and next frame. */
|
2019-02-28 15:02:09 +00:00
|
|
|
sp[-4 / sizeof (unsigned long)] = ucp->uc_link->uc_mcontext.sc_gr[30];
|
|
|
|
sp[-20 / sizeof (unsigned long)] = ucp->uc_link->uc_mcontext.sc_gr[2];
|
2010-06-23 21:03:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* This is the main context. No frame marker, and no return address. */
|
2019-02-28 15:02:09 +00:00
|
|
|
sp[-4 / sizeof (unsigned long)] = 0x0;
|
|
|
|
sp[-20 / sizeof (unsigned long)] = 0x0;
|
2010-06-23 21:03:11 +00:00
|
|
|
}
|
2008-08-07 23:52:34 +00:00
|
|
|
|
|
|
|
/* Store address to jump to. */
|
|
|
|
ucp->uc_mcontext.sc_gr[2] = (unsigned long) func;
|
|
|
|
|
2010-06-23 21:03:11 +00:00
|
|
|
/* Process arguments. */
|
2008-08-07 23:52:34 +00:00
|
|
|
va_start (ap, argc);
|
|
|
|
for (i = 0; i < argc; ++i)
|
2010-02-02 21:36:48 +00:00
|
|
|
{
|
|
|
|
if (i < 4)
|
|
|
|
{
|
|
|
|
ucp->uc_mcontext.sc_gr[26-i] = va_arg (ap, int);
|
|
|
|
continue;
|
2008-08-07 23:52:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 15:02:09 +00:00
|
|
|
if ((i < 8) && (sizeof (unsigned long) == 8))
|
2010-02-02 21:36:48 +00:00
|
|
|
{
|
|
|
|
/* 64bit: r19-r22 are arg7-arg4. */
|
|
|
|
ucp->uc_mcontext.sc_gr[22+4-i] = va_arg (ap, int);
|
|
|
|
continue;
|
2013-06-05 20:26:40 +00:00
|
|
|
}
|
2010-02-02 21:36:48 +00:00
|
|
|
|
|
|
|
/* All other arguments go on the stack. */
|
2010-06-23 21:03:11 +00:00
|
|
|
sp[-1 * (FRAME_SIZE_UL + 1 + i)] = va_arg (ap, int);
|
2010-02-02 21:36:48 +00:00
|
|
|
}
|
2013-06-05 20:26:40 +00:00
|
|
|
va_end (ap);
|
2008-08-07 23:52:34 +00:00
|
|
|
}
|
|
|
|
weak_alias(__makecontext, makecontext)
|