2020-06-15 14:18:57 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/alg/alg.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/alg/bisectcarleft.internal.h"
|
2021-03-01 07:42:35 +00:00
|
|
|
#include "libc/bits/safemacros.internal.h"
|
2020-08-25 11:23:25 +00:00
|
|
|
#include "libc/bits/weaken.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/calls/calls.h"
|
2021-02-01 11:33:13 +00:00
|
|
|
#include "libc/calls/sigbits.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/dce.h"
|
2021-01-28 03:34:02 +00:00
|
|
|
#include "libc/errno.h"
|
2020-12-09 23:04:54 +00:00
|
|
|
#include "libc/fmt/conv.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/fmt/fmt.h"
|
2021-02-01 11:33:13 +00:00
|
|
|
#include "libc/fmt/itoa.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/log/backtrace.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/log/libfatal.internal.h"
|
2020-08-25 11:23:25 +00:00
|
|
|
#include "libc/log/log.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/nexgen32e/gc.internal.h"
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/runtime/gc.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/runtime/stack.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/runtime/symbols.internal.h"
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/stdio/append.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/stdio/stdio.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/str/str.h"
|
|
|
|
#include "libc/sysv/consts/fileno.h"
|
2021-01-25 21:08:05 +00:00
|
|
|
#include "libc/sysv/consts/o.h"
|
2021-02-01 11:33:13 +00:00
|
|
|
#include "libc/sysv/consts/sig.h"
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/x/x.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
#define kBacktraceMaxFrames 128
|
2021-02-01 11:33:13 +00:00
|
|
|
#define kBacktraceBufSize ((kBacktraceMaxFrames - 1) * (18 + 1))
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2021-09-28 05:58:51 +00:00
|
|
|
static noasan int PrintBacktraceUsingAddr2line(int fd,
|
|
|
|
const struct StackFrame *bp) {
|
2020-06-15 14:18:57 +00:00
|
|
|
ssize_t got;
|
|
|
|
intptr_t addr;
|
|
|
|
size_t i, j, gi;
|
2021-01-28 03:34:02 +00:00
|
|
|
int ws, pid, pipefds[2];
|
2020-06-15 14:18:57 +00:00
|
|
|
struct Garbages *garbage;
|
2021-02-01 11:33:13 +00:00
|
|
|
sigset_t chldmask, savemask;
|
2020-06-15 14:18:57 +00:00
|
|
|
const struct StackFrame *frame;
|
2021-07-19 21:55:20 +00:00
|
|
|
char *debugbin, *p1, *p2, *p3, *addr2line;
|
2020-09-03 12:44:37 +00:00
|
|
|
char buf[kBacktraceBufSize], *argv[kBacktraceMaxFrames];
|
2021-01-29 09:27:09 +00:00
|
|
|
if (IsOpenbsd()) return -1;
|
|
|
|
if (IsWindows()) return -1;
|
2021-09-28 05:58:51 +00:00
|
|
|
if (!(debugbin = FindDebugBinary())) return -1;
|
|
|
|
if (!(addr2line = GetAddr2linePath())) return -1;
|
2020-06-15 14:18:57 +00:00
|
|
|
i = 0;
|
|
|
|
j = 0;
|
|
|
|
argv[i++] = "addr2line";
|
|
|
|
argv[i++] = "-a"; /* filter out w/ shell script wrapper for old versions */
|
|
|
|
argv[i++] = "-pCife";
|
|
|
|
argv[i++] = debugbin;
|
2020-11-25 16:19:00 +00:00
|
|
|
garbage = weaken(__garbage);
|
2020-06-15 14:18:57 +00:00
|
|
|
gi = garbage ? garbage->i : 0;
|
|
|
|
for (frame = bp; frame && i < kBacktraceMaxFrames - 1; frame = frame->next) {
|
|
|
|
addr = frame->addr;
|
2020-11-25 16:19:00 +00:00
|
|
|
if (addr == weakaddr("__gc")) {
|
2020-06-15 14:18:57 +00:00
|
|
|
do {
|
|
|
|
--gi;
|
2020-11-25 16:19:00 +00:00
|
|
|
} while ((addr = garbage->p[gi].ret) == weakaddr("__gc"));
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2021-02-01 11:33:13 +00:00
|
|
|
argv[i++] = buf + j;
|
|
|
|
buf[j++] = '0';
|
|
|
|
buf[j++] = 'x';
|
|
|
|
j += uint64toarray_radix16(addr - 1, buf + j) + 1;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
|
|
|
argv[i++] = NULL;
|
2021-02-01 11:33:13 +00:00
|
|
|
sigemptyset(&chldmask);
|
|
|
|
sigaddset(&chldmask, SIGCHLD);
|
|
|
|
sigprocmask(SIG_BLOCK, &chldmask, &savemask);
|
2021-01-25 21:08:05 +00:00
|
|
|
pipe(pipefds);
|
|
|
|
if (!(pid = vfork())) {
|
2021-02-01 11:33:13 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &savemask, NULL);
|
2021-01-25 21:08:05 +00:00
|
|
|
dup2(pipefds[1], 1);
|
|
|
|
close(pipefds[0]);
|
|
|
|
close(pipefds[1]);
|
|
|
|
execvp(addr2line, argv);
|
2021-01-28 03:34:02 +00:00
|
|
|
_exit(127);
|
2020-08-25 11:23:25 +00:00
|
|
|
}
|
2021-01-25 21:08:05 +00:00
|
|
|
close(pipefds[1]);
|
|
|
|
while ((got = read(pipefds[0], buf, kBacktraceBufSize)) > 0) {
|
2021-07-19 21:55:20 +00:00
|
|
|
p1 = buf;
|
|
|
|
p3 = p1 + got;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove deep libc error reporting facilities from backtraces.
|
|
|
|
*
|
|
|
|
* For example, if the following shows up in Emacs:
|
|
|
|
*
|
|
|
|
* 40d097: __die at libc/log/die.c:33
|
|
|
|
* 434daa: __asan_die at libc/intrin/asan.c:483
|
|
|
|
* 435146: __asan_report_memory_fault at libc/intrin/asan.c:524
|
|
|
|
* 435b32: __asan_report_store at libc/intrin/asan.c:719
|
|
|
|
* 43472e: __asan_report_store1 at libc/intrin/somanyasan.S:118
|
|
|
|
* 40c3a9: GetCipherSuite at net/https/getciphersuite.c:80
|
|
|
|
* 4383a5: GetCipherSuite_test at test/net/https/getciphersuite.c:23
|
|
|
|
* ...
|
|
|
|
*
|
|
|
|
* Then it's unpleasant to need to press C-x C-n six times.
|
|
|
|
*/
|
2021-10-08 15:11:51 +00:00
|
|
|
#if 0
|
2021-07-19 21:55:20 +00:00
|
|
|
while ((p2 = memchr(p1, '\n', p3 - p1))) {
|
|
|
|
if (memmem(p1, p2 - p1, ": __asan_", 9) ||
|
|
|
|
memmem(p1, p2 - p1, ": __die", 7)) {
|
|
|
|
memmove(p1, p2 + 1, p3 - (p2 + 1));
|
|
|
|
p3 -= p2 + 1 - p1;
|
|
|
|
} else {
|
|
|
|
p1 = p2 + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-10-08 15:11:51 +00:00
|
|
|
#endif
|
2021-07-19 21:55:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* remove racist output from gnu tooling, that can't be disabled
|
|
|
|
* otherwise, since it breaks other tools like emacs that aren't
|
|
|
|
* equipped to ignore it, and what's most problematic is that
|
|
|
|
* addr2line somehow manages to put the racism onto the one line
|
|
|
|
* in the backtrace we actually care about.
|
|
|
|
*/
|
|
|
|
for (got = p3 - buf, p1 = buf; got;) {
|
2020-06-15 14:18:57 +00:00
|
|
|
if ((p2 = memmem(p1, got, " (discriminator ",
|
|
|
|
strlen(" (discriminator ") - 1)) &&
|
|
|
|
(p3 = memchr(p2, '\n', got - (p2 - p1)))) {
|
|
|
|
if (p3 > p2 && p3[-1] == '\r') --p3;
|
2021-09-28 05:58:51 +00:00
|
|
|
__write(p1, p2 - p1);
|
2020-06-15 14:18:57 +00:00
|
|
|
got -= p3 - p1;
|
|
|
|
p1 += p3 - p1;
|
|
|
|
} else {
|
2021-09-28 05:58:51 +00:00
|
|
|
__write(p1, got);
|
2020-06-15 14:18:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-25 21:08:05 +00:00
|
|
|
close(pipefds[0]);
|
2021-01-28 03:34:02 +00:00
|
|
|
while (waitpid(pid, &ws, 0) == -1) {
|
|
|
|
if (errno == EINTR) continue;
|
|
|
|
return -1;
|
|
|
|
}
|
2021-02-01 11:33:13 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &savemask, NULL);
|
2021-01-28 03:34:02 +00:00
|
|
|
if (WIFEXITED(ws) && !WEXITSTATUS(ws)) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 05:58:51 +00:00
|
|
|
static noasan int PrintBacktrace(int fd, const struct StackFrame *bp) {
|
2021-06-30 17:45:27 +00:00
|
|
|
if (!IsTiny()) {
|
|
|
|
if (PrintBacktraceUsingAddr2line(fd, bp) != -1) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2020-10-11 04:18:53 +00:00
|
|
|
return PrintBacktraceUsingSymbols(fd, bp, GetSymbolTable());
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 05:58:51 +00:00
|
|
|
noasan void ShowBacktrace(int fd, const struct StackFrame *bp) {
|
2021-10-14 00:27:13 +00:00
|
|
|
/* asan runtime depends on this function */
|
2020-06-15 14:18:57 +00:00
|
|
|
static bool noreentry;
|
2021-10-14 00:27:13 +00:00
|
|
|
++g_ftrace;
|
2020-10-11 04:18:53 +00:00
|
|
|
if (!bp) bp = __builtin_frame_address(0);
|
2020-06-15 14:18:57 +00:00
|
|
|
if (!noreentry) {
|
|
|
|
noreentry = true;
|
2020-10-11 04:18:53 +00:00
|
|
|
PrintBacktrace(fd, bp);
|
2021-07-12 06:17:47 +00:00
|
|
|
noreentry = false;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2021-10-14 00:27:13 +00:00
|
|
|
--g_ftrace;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|