2013-01-18 15:49:43 +00:00
|
|
|
/* Test backtrace and backtrace_symbols for signal frames, where a
|
|
|
|
system call was interrupted by a signal.
|
2022-01-01 18:54:23 +00:00
|
|
|
Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
2013-01-18 15:49:43 +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/>. */
|
2013-01-18 15:49:43 +00:00
|
|
|
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <search.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-01-24 00:23:13 +00:00
|
|
|
#include "tst-backtrace.h"
|
|
|
|
|
2013-08-20 20:01:59 +00:00
|
|
|
#ifndef SIGACTION_FLAGS
|
|
|
|
# define SIGACTION_FLAGS 0
|
|
|
|
#endif
|
|
|
|
|
2013-01-18 15:49:43 +00:00
|
|
|
/* The backtrace should include at least handle_signal, a signal
|
|
|
|
trampoline, read, 3 * fn, and do_test. */
|
|
|
|
#define NUM_FUNCTIONS 7
|
|
|
|
|
|
|
|
void
|
|
|
|
handle_signal (int signum)
|
|
|
|
{
|
|
|
|
void *addresses[NUM_FUNCTIONS];
|
|
|
|
char **symbols;
|
|
|
|
int n;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Get the backtrace addresses. */
|
|
|
|
n = backtrace (addresses, sizeof (addresses) / sizeof (addresses[0]));
|
|
|
|
printf ("Obtained backtrace with %d functions\n", n);
|
|
|
|
/* Check that there are at least seven functions. */
|
|
|
|
if (n < NUM_FUNCTIONS)
|
|
|
|
{
|
|
|
|
FAIL ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Convert them to symbols. */
|
|
|
|
symbols = backtrace_symbols (addresses, n);
|
|
|
|
/* Check that symbols were obtained. */
|
|
|
|
if (symbols == NULL)
|
|
|
|
{
|
|
|
|
FAIL ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (i = 0; i < n; ++i)
|
|
|
|
printf ("Function %d: %s\n", i, symbols[i]);
|
|
|
|
/* Check that the function names obtained are accurate. */
|
2013-01-24 00:23:13 +00:00
|
|
|
if (!match (symbols[0], "handle_signal"))
|
2013-01-18 15:49:43 +00:00
|
|
|
{
|
|
|
|
FAIL ();
|
|
|
|
return;
|
|
|
|
}
|
nptl: Fix testcases for new pthread cancellation mechanism
With upcoming fix for BZ#12683, pthread cancellation does not act for:
1. If syscall is blocked but with some side effects already having
taken place (e.g. a partial read or write).
2. After the syscall has returned.
The main change is due the fact programs need to act in syscalls with
side-effects (for instance, to avoid leak of allocated resources or
handle partial read/write).
This patch changes the NPTL testcase that assumes the old behavior and
also changes the tst-backtrace{5,6} to ignore the cancellable wrappers.
Checked on i686-linux-gnu, x86_64-linux-gnu, x86_64-linux-gnux32,
aarch64-linux-gnu, arm-linux-gnueabihf, powerpc64le-linux-gnu,
powerpc-linux-gnu, sparcv9-linux-gnu, and sparc64-linux-gnu.
* debug/tst-backtrace5.c (handle_signal): Avoid cancellable wrappers
in backtrace analysis.
* nptl/tst-cancel4.c (tf_write): Handle cancelled syscall with
side-effects.
(tf_send): Likewise.
2015-09-21 22:55:58 +00:00
|
|
|
|
|
|
|
/* Do not check name for signal trampoline or cancellable syscall
|
|
|
|
wrappers (__syscall_cancel*). */
|
|
|
|
for (; i < n - 1; i++)
|
|
|
|
if (match (symbols[i], "read"))
|
|
|
|
break;
|
|
|
|
if (i == n - 1)
|
2013-01-18 15:49:43 +00:00
|
|
|
{
|
nptl: Fix testcases for new pthread cancellation mechanism
With upcoming fix for BZ#12683, pthread cancellation does not act for:
1. If syscall is blocked but with some side effects already having
taken place (e.g. a partial read or write).
2. After the syscall has returned.
The main change is due the fact programs need to act in syscalls with
side-effects (for instance, to avoid leak of allocated resources or
handle partial read/write).
This patch changes the NPTL testcase that assumes the old behavior and
also changes the tst-backtrace{5,6} to ignore the cancellable wrappers.
Checked on i686-linux-gnu, x86_64-linux-gnu, x86_64-linux-gnux32,
aarch64-linux-gnu, arm-linux-gnueabihf, powerpc64le-linux-gnu,
powerpc-linux-gnu, sparcv9-linux-gnu, and sparc64-linux-gnu.
* debug/tst-backtrace5.c (handle_signal): Avoid cancellable wrappers
in backtrace analysis.
* nptl/tst-cancel4.c (tf_write): Handle cancelled syscall with
side-effects.
(tf_send): Likewise.
2015-09-21 22:55:58 +00:00
|
|
|
FAIL ();
|
|
|
|
return;
|
2013-01-18 15:49:43 +00:00
|
|
|
}
|
nptl: Fix testcases for new pthread cancellation mechanism
With upcoming fix for BZ#12683, pthread cancellation does not act for:
1. If syscall is blocked but with some side effects already having
taken place (e.g. a partial read or write).
2. After the syscall has returned.
The main change is due the fact programs need to act in syscalls with
side-effects (for instance, to avoid leak of allocated resources or
handle partial read/write).
This patch changes the NPTL testcase that assumes the old behavior and
also changes the tst-backtrace{5,6} to ignore the cancellable wrappers.
Checked on i686-linux-gnu, x86_64-linux-gnu, x86_64-linux-gnux32,
aarch64-linux-gnu, arm-linux-gnueabihf, powerpc64le-linux-gnu,
powerpc-linux-gnu, sparcv9-linux-gnu, and sparc64-linux-gnu.
* debug/tst-backtrace5.c (handle_signal): Avoid cancellable wrappers
in backtrace analysis.
* nptl/tst-cancel4.c (tf_write): Handle cancelled syscall with
side-effects.
(tf_send): Likewise.
2015-09-21 22:55:58 +00:00
|
|
|
|
2013-01-18 15:49:43 +00:00
|
|
|
for (; i < n - 1; i++)
|
2013-01-24 00:23:13 +00:00
|
|
|
if (!match (symbols[i], "fn"))
|
2013-01-18 15:49:43 +00:00
|
|
|
{
|
|
|
|
FAIL ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Symbol names are not available for static functions, so we do not
|
|
|
|
check do_test. */
|
2020-01-20 16:01:50 +00:00
|
|
|
|
|
|
|
/* Check that backtrace does not return more than what fits in the array
|
|
|
|
(bug 25423). */
|
|
|
|
for (int j = 0; j < NUM_FUNCTIONS; j++)
|
|
|
|
{
|
|
|
|
n = backtrace (addresses, j);
|
|
|
|
if (n > j)
|
|
|
|
{
|
|
|
|
FAIL ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-01-18 15:49:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NO_INLINE int
|
2013-08-20 20:01:59 +00:00
|
|
|
fn (int c, int flags)
|
2013-01-18 15:49:43 +00:00
|
|
|
{
|
|
|
|
pid_t parent_pid, child_pid;
|
|
|
|
int pipefd[2];
|
|
|
|
char r[1];
|
|
|
|
struct sigaction act;
|
|
|
|
|
|
|
|
if (c > 0)
|
|
|
|
{
|
2013-08-20 20:01:59 +00:00
|
|
|
fn (c - 1, flags);
|
2013-01-18 15:49:43 +00:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset (&act, 0, sizeof (act));
|
|
|
|
act.sa_handler = handle_signal;
|
2013-08-20 20:01:59 +00:00
|
|
|
act.sa_flags = flags;
|
2013-01-18 15:49:43 +00:00
|
|
|
sigemptyset (&act.sa_mask);
|
|
|
|
sigaction (SIGUSR1, &act, NULL);
|
|
|
|
parent_pid = getpid ();
|
|
|
|
if (pipe (pipefd) == -1)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
child_pid = fork ();
|
|
|
|
if (child_pid == (pid_t) -1)
|
|
|
|
abort ();
|
|
|
|
else if (child_pid == 0)
|
|
|
|
{
|
|
|
|
sleep (1);
|
|
|
|
kill (parent_pid, SIGUSR1);
|
|
|
|
_exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In the parent. */
|
|
|
|
read (pipefd[0], r, 1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-10 20:16:57 +00:00
|
|
|
NO_INLINE int
|
2013-01-18 15:49:43 +00:00
|
|
|
do_test (void)
|
|
|
|
{
|
2013-08-20 20:01:59 +00:00
|
|
|
fn (2, SIGACTION_FLAGS);
|
2013-01-18 15:49:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2016-12-10 20:16:57 +00:00
|
|
|
|
|
|
|
#include <support/test-driver.c>
|