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
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/alg/bisectcarleft.internal.h"
|
2020-09-07 04:39:00 +00:00
|
|
|
#include "libc/assert.h"
|
2020-09-03 12:44:37 +00:00
|
|
|
#include "libc/bits/weaken.h"
|
2020-10-11 04:18:53 +00:00
|
|
|
#include "libc/calls/calls.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/fmt/fmt.h"
|
2020-12-09 23:04:54 +00:00
|
|
|
#include "libc/fmt/itoa.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/log/backtrace.internal.h"
|
2021-03-01 07:42:35 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/nexgen32e/gc.internal.h"
|
2020-09-03 12:44:37 +00:00
|
|
|
#include "libc/nexgen32e/stackframe.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
|
|
|
#include "libc/runtime/symbols.internal.h"
|
2020-09-07 04:39:00 +00:00
|
|
|
#include "libc/str/str.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2020-09-28 08:13:56 +00:00
|
|
|
/**
|
|
|
|
* Prints stack frames with symbols.
|
|
|
|
*
|
2021-08-13 10:20:45 +00:00
|
|
|
* PrintBacktraceUsingSymbols(STDOUT_FILENO, NULL, GetSymbolTable());
|
2020-09-28 08:13:56 +00:00
|
|
|
*
|
|
|
|
* @param f is output stream
|
|
|
|
* @param bp is rbp which can be NULL to detect automatically
|
|
|
|
* @param st is open symbol table for current executable
|
|
|
|
* @return -1 w/ errno if error happened
|
|
|
|
*/
|
2020-10-11 04:18:53 +00:00
|
|
|
int PrintBacktraceUsingSymbols(int fd, const struct StackFrame *bp,
|
2020-09-07 04:39:00 +00:00
|
|
|
struct SymbolTable *st) {
|
2021-07-12 06:17:47 +00:00
|
|
|
int rc;
|
2020-10-11 04:18:53 +00:00
|
|
|
char *p;
|
2020-09-03 12:44:37 +00:00
|
|
|
size_t gi;
|
|
|
|
intptr_t addr;
|
2020-09-07 04:39:00 +00:00
|
|
|
int64_t addend;
|
2020-09-03 12:44:37 +00:00
|
|
|
struct Garbages *garbage;
|
2020-10-11 04:18:53 +00:00
|
|
|
char buf[256], ibuf[21];
|
2020-09-07 04:39:00 +00:00
|
|
|
const struct Symbol *symbol;
|
2020-09-03 12:44:37 +00:00
|
|
|
const struct StackFrame *frame;
|
2021-07-12 06:17:47 +00:00
|
|
|
++ftrace;
|
2020-09-28 08:13:56 +00:00
|
|
|
if (!bp) bp = __builtin_frame_address(0);
|
2020-11-25 16:19:00 +00:00
|
|
|
garbage = weaken(__garbage);
|
2020-09-03 12:44:37 +00:00
|
|
|
gi = garbage ? garbage->i : 0;
|
2021-07-12 06:17:47 +00:00
|
|
|
for (rc = 0, frame = bp; frame; frame = frame->next) {
|
2020-09-03 12:44:37 +00:00
|
|
|
addr = frame->addr;
|
2020-11-25 16:19:00 +00:00
|
|
|
if (addr == weakaddr("__gc")) {
|
2020-09-03 12:44:37 +00:00
|
|
|
do {
|
|
|
|
--gi;
|
2020-11-25 16:19:00 +00:00
|
|
|
} while ((addr = garbage->p[gi].ret) == weakaddr("__gc"));
|
2020-09-03 12:44:37 +00:00
|
|
|
}
|
2020-09-07 04:39:00 +00:00
|
|
|
p = buf;
|
|
|
|
p = mempcpy(p, ibuf, uint64toarray_fixed16((intptr_t)frame, ibuf, 48));
|
|
|
|
*p++ = ' ';
|
|
|
|
p = mempcpy(p, ibuf, uint64toarray_fixed16(addr, ibuf, 48));
|
|
|
|
*p++ = ' ';
|
2021-01-28 03:34:02 +00:00
|
|
|
if (st && st->count &&
|
|
|
|
((intptr_t)addr >= (intptr_t)&_base &&
|
|
|
|
(intptr_t)addr <= (intptr_t)&_end)) {
|
2020-09-07 04:39:00 +00:00
|
|
|
symbol = &st->symbols[bisectcarleft((const int32_t(*)[2])st->symbols,
|
|
|
|
st->count, addr - st->addr_base - 1)];
|
|
|
|
p = stpcpy(p, &st->name_base[symbol->name_rva]);
|
|
|
|
addend = addr - st->addr_base - symbol->addr_rva;
|
|
|
|
*p++ = addend >= 0 ? '+' : '-';
|
|
|
|
if (addend) *p++ = '0', *p++ = 'x';
|
|
|
|
p = mempcpy(p, ibuf, uint64toarray_radix16(ABS(addend), ibuf));
|
|
|
|
} else {
|
|
|
|
p = stpcpy(p, "UNKNOWN");
|
|
|
|
}
|
|
|
|
*p++ = '\n';
|
2020-10-11 04:18:53 +00:00
|
|
|
if (write(fd, buf, p - buf) == -1) {
|
2021-07-12 06:17:47 +00:00
|
|
|
rc = -1;
|
|
|
|
break;
|
2020-10-11 04:18:53 +00:00
|
|
|
}
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2021-07-12 06:17:47 +00:00
|
|
|
--ftrace;
|
|
|
|
return rc;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|