2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 2005-2024 Free Software Foundation, Inc.
|
2012-01-10 05:38: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
|
|
|
|
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/>. */
|
2012-01-10 05:38:42 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2020-02-04 13:29:04 +00:00
|
|
|
#include <stdlib.h>
|
2012-01-10 05:38:42 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <sysdep.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <execinfo.h>
|
|
|
|
|
|
|
|
extern int
|
|
|
|
_identify_sighandler (unsigned long fp, unsigned long pc,
|
|
|
|
unsigned long *pprev_fp, unsigned long *pprev_pc,
|
|
|
|
unsigned long *retaddr);
|
|
|
|
|
2017-01-04 01:06:04 +00:00
|
|
|
static inline long
|
2012-01-10 05:38:42 +00:00
|
|
|
get_frame_size (unsigned long instr)
|
|
|
|
{
|
|
|
|
return abs ((short signed) (instr & 0xFFFF));
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long *
|
|
|
|
find_frame_creation (unsigned long *pc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* NOTE: Distance to search is arbitrary.
|
|
|
|
250 works well for most things,
|
|
|
|
750 picks up things like tcp_recvmsg,
|
|
|
|
1000 needed for fat_fill_super. */
|
|
|
|
for (i = 0; i < 1000; i++, pc--)
|
|
|
|
{
|
|
|
|
unsigned long instr;
|
|
|
|
unsigned long frame_size;
|
|
|
|
|
|
|
|
instr = *pc;
|
|
|
|
|
|
|
|
/* Is the instruction of the form
|
|
|
|
addik r1, r1, foo ? */
|
|
|
|
if ((instr & 0xFFFF0000) != 0x30210000)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
frame_size = get_frame_size (instr);
|
|
|
|
|
|
|
|
if ((frame_size < 8) || (frame_size & 3))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
lookup_prev_stack_frame (unsigned long fp, unsigned long pc,
|
|
|
|
unsigned long *pprev_fp, unsigned long *pprev_pc,
|
|
|
|
unsigned long *retaddr)
|
|
|
|
{
|
|
|
|
unsigned long *prologue = NULL;
|
|
|
|
|
|
|
|
int is_signalhandler = _identify_sighandler (fp, pc, pprev_fp,
|
|
|
|
pprev_pc, retaddr);
|
|
|
|
|
|
|
|
if (!is_signalhandler)
|
|
|
|
{
|
|
|
|
prologue = find_frame_creation ((unsigned long *) pc);
|
|
|
|
|
|
|
|
if (prologue)
|
|
|
|
{
|
|
|
|
long frame_size = get_frame_size (*prologue);
|
|
|
|
*pprev_fp = fp + frame_size;
|
|
|
|
if (*retaddr != 0)
|
|
|
|
*pprev_pc = *retaddr;
|
|
|
|
else
|
|
|
|
*pprev_pc = *(unsigned long *) fp;
|
|
|
|
|
|
|
|
*retaddr = 0;
|
|
|
|
if (!*pprev_pc || (*pprev_pc & 3))
|
|
|
|
prologue=0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*pprev_pc = 0;
|
|
|
|
*pprev_fp = fp;
|
|
|
|
*retaddr = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (!*pprev_pc || (*pprev_pc & 3)) ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
__backtrace (void **array, int size)
|
|
|
|
{
|
|
|
|
unsigned long pc, fp;
|
|
|
|
unsigned long ppc, pfp;
|
|
|
|
/* Return address(r15) is required in the signal handler case, since the
|
|
|
|
return address of the function which causes the signal may not be
|
|
|
|
recorded in the stack. */
|
|
|
|
unsigned long retaddr;
|
|
|
|
|
|
|
|
int count;
|
|
|
|
int rc = 0;
|
|
|
|
|
2015-08-15 18:42:43 +00:00
|
|
|
if (size <= 0)
|
|
|
|
return 0;
|
|
|
|
|
2012-01-10 05:38:42 +00:00
|
|
|
__asm__ __volatile__ ("mfs %0, rpc"
|
|
|
|
: "=r"(pc));
|
|
|
|
|
|
|
|
__asm__ __volatile__ ("add %0, r1, r0"
|
|
|
|
: "=r"(fp));
|
|
|
|
|
|
|
|
array[0] = (void *) pc;
|
|
|
|
retaddr = 0;
|
|
|
|
for (count = 1; count < size; count++)
|
|
|
|
{
|
|
|
|
rc = lookup_prev_stack_frame (fp, pc, &pfp, &ppc, &retaddr);
|
|
|
|
|
|
|
|
fp = pfp;
|
|
|
|
pc = ppc;
|
|
|
|
array[count] = (void *) pc;
|
|
|
|
if (rc)
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
weak_alias (__backtrace, backtrace)
|
|
|
|
libc_hidden_def (__backtrace)
|