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
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2021-10-04 10:23:31 +00:00
|
|
|
#include "libc/assert.h"
|
2022-11-06 02:49:41 +00:00
|
|
|
#include "libc/calls/blockcancel.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/calls/calls.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/dce.h"
|
2023-06-07 10:34:45 +00:00
|
|
|
#include "libc/elf/tinyelf.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/errno.h"
|
2022-08-20 19:32:51 +00:00
|
|
|
#include "libc/intrin/bits.h"
|
2022-11-06 02:49:41 +00:00
|
|
|
#include "libc/intrin/strace.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/limits.h"
|
2021-10-14 00:27:13 +00:00
|
|
|
#include "libc/log/libfatal.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2022-08-20 19:32:51 +00:00
|
|
|
#include "libc/mem/alg.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/runtime/internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/runtime/symbols.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/str/str.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/sysv/consts/map.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/sysv/consts/o.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/sysv/consts/prot.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/sysv/errfuns.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-11-06 02:49:41 +00:00
|
|
|
static struct SymbolTable *OpenSymbolTableImpl(const char *filename) {
|
2021-09-28 05:58:51 +00:00
|
|
|
int fd;
|
|
|
|
void *map;
|
2021-10-04 10:23:31 +00:00
|
|
|
long *stp;
|
2022-04-20 16:56:53 +00:00
|
|
|
ssize_t filesize;
|
2021-10-04 10:23:31 +00:00
|
|
|
unsigned i, j, x;
|
2021-09-28 05:58:51 +00:00
|
|
|
const Elf64_Ehdr *elf;
|
|
|
|
const char *name_base;
|
2020-08-25 11:23:25 +00:00
|
|
|
struct SymbolTable *t;
|
2022-03-23 13:31:55 +00:00
|
|
|
size_t n, m, tsz, size;
|
2020-08-25 11:23:25 +00:00
|
|
|
const Elf64_Sym *symtab, *sym;
|
2021-10-04 10:23:31 +00:00
|
|
|
ptrdiff_t names_offset, name_base_offset, stp_offset;
|
2021-09-28 05:58:51 +00:00
|
|
|
map = MAP_FAILED;
|
|
|
|
if ((fd = open(filename, O_RDONLY)) == -1) return 0;
|
2022-04-20 16:56:53 +00:00
|
|
|
if ((filesize = getfiledescriptorsize(fd)) == -1) goto SystemError;
|
|
|
|
if (filesize > INT_MAX) goto RaiseE2big;
|
|
|
|
if (filesize < 64) goto RaiseEnoexec;
|
|
|
|
elf = map = mmap(0, filesize, PROT_READ, MAP_PRIVATE, fd, 0);
|
2021-09-28 05:58:51 +00:00
|
|
|
if (map == MAP_FAILED) goto SystemError;
|
|
|
|
if (READ32LE(map) != READ32LE("\177ELF")) goto RaiseEnoexec;
|
2021-10-14 00:27:13 +00:00
|
|
|
if (!(name_base = GetStrtab(map, &m))) goto RaiseEnobufs;
|
|
|
|
if (!(symtab = GetSymtab(map, &n))) goto RaiseEnobufs;
|
2021-09-28 05:58:51 +00:00
|
|
|
tsz = 0;
|
|
|
|
tsz += sizeof(struct SymbolTable);
|
|
|
|
tsz += sizeof(struct Symbol) * n;
|
|
|
|
names_offset = tsz;
|
|
|
|
tsz += sizeof(unsigned) * n;
|
|
|
|
name_base_offset = tsz;
|
|
|
|
tsz += m;
|
2021-10-04 10:23:31 +00:00
|
|
|
tsz = ROUNDUP(tsz, FRAMESIZE);
|
|
|
|
stp_offset = tsz;
|
2022-03-23 13:31:55 +00:00
|
|
|
size = tsz;
|
2021-10-04 10:23:31 +00:00
|
|
|
tsz += sizeof(const Elf64_Sym *) * n;
|
2021-09-28 05:58:51 +00:00
|
|
|
tsz = ROUNDUP(tsz, FRAMESIZE);
|
|
|
|
t = mmap(0, tsz, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
|
|
|
|
if (t == MAP_FAILED) goto SystemError;
|
2022-03-23 13:31:55 +00:00
|
|
|
t->magic = SYMBOLS_MAGIC;
|
|
|
|
t->abi = SYMBOLS_ABI;
|
|
|
|
t->size = size;
|
|
|
|
t->mapsize = size;
|
|
|
|
t->names_offset = names_offset;
|
|
|
|
t->name_base_offset = name_base_offset;
|
|
|
|
t->names = (uint32_t *)((char *)t + t->names_offset);
|
|
|
|
t->name_base = (char *)((char *)t + t->name_base_offset);
|
2021-10-14 00:27:13 +00:00
|
|
|
GetImageRange(elf, &t->addr_base, &t->addr_end);
|
2021-09-28 05:58:51 +00:00
|
|
|
memcpy(t->name_base, name_base, m);
|
|
|
|
--t->addr_end;
|
2021-10-04 10:23:31 +00:00
|
|
|
stp = (long *)((char *)t + stp_offset);
|
|
|
|
for (m = i = 0; i < n; ++i) {
|
2021-09-28 05:58:51 +00:00
|
|
|
sym = symtab + i;
|
|
|
|
if (!(sym->st_size > 0 && (ELF64_ST_TYPE(sym->st_info) == STT_FUNC ||
|
|
|
|
ELF64_ST_TYPE(sym->st_info) == STT_OBJECT))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sym->st_value > t->addr_end) continue;
|
|
|
|
if (sym->st_value < t->addr_base) continue;
|
|
|
|
x = sym->st_value - t->addr_base;
|
2021-10-04 10:23:31 +00:00
|
|
|
stp[m++] = (unsigned long)x << 32 | i;
|
|
|
|
}
|
2022-09-13 06:10:38 +00:00
|
|
|
_longsort(stp, m);
|
2021-10-04 10:23:31 +00:00
|
|
|
for (j = i = 0; i < m; ++i) {
|
|
|
|
sym = symtab + (stp[i] & 0x7fffffff);
|
|
|
|
x = stp[i] >> 32;
|
|
|
|
if (j && x == t->symbols[j - 1].x) --j;
|
|
|
|
if (j && t->symbols[j - 1].y >= x) t->symbols[j - 1].y = x - 1;
|
|
|
|
t->names[j] = sym->st_name;
|
|
|
|
t->symbols[j].x = x;
|
2021-09-28 05:58:51 +00:00
|
|
|
if (sym->st_size) {
|
2021-10-04 10:23:31 +00:00
|
|
|
t->symbols[j].y = x + sym->st_size - 1;
|
2021-09-28 05:58:51 +00:00
|
|
|
} else {
|
2021-10-04 10:23:31 +00:00
|
|
|
t->symbols[j].y = t->addr_end - t->addr_base;
|
2021-09-28 05:58:51 +00:00
|
|
|
}
|
2021-10-04 10:23:31 +00:00
|
|
|
++j;
|
2021-09-28 05:58:51 +00:00
|
|
|
}
|
|
|
|
t->count = j;
|
2021-10-04 10:23:31 +00:00
|
|
|
munmap(stp, ROUNDUP(sizeof(const Elf64_Sym *) * n, FRAMESIZE));
|
2022-04-20 16:56:53 +00:00
|
|
|
munmap(map, filesize);
|
2021-09-28 05:58:51 +00:00
|
|
|
close(fd);
|
|
|
|
return t;
|
|
|
|
RaiseE2big:
|
|
|
|
errno = E2BIG;
|
|
|
|
goto SystemError;
|
|
|
|
RaiseEnobufs:
|
|
|
|
errno = ENOBUFS;
|
|
|
|
goto SystemError;
|
|
|
|
RaiseEnoexec:
|
|
|
|
errno = ENOEXEC;
|
|
|
|
SystemError:
|
2022-03-19 10:37:00 +00:00
|
|
|
STRACE("OpenSymbolTable()% m");
|
2021-09-28 05:58:51 +00:00
|
|
|
if (map != MAP_FAILED) {
|
2022-04-20 16:56:53 +00:00
|
|
|
munmap(map, filesize);
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2021-09-28 05:58:51 +00:00
|
|
|
close(fd);
|
|
|
|
return 0;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|
2022-11-06 02:49:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps debuggable binary into memory and indexes symbol addresses.
|
|
|
|
*
|
|
|
|
* @return object freeable with CloseSymbolTable(), or NULL w/ errno
|
|
|
|
*/
|
|
|
|
struct SymbolTable *OpenSymbolTable(const char *filename) {
|
|
|
|
struct SymbolTable *st;
|
|
|
|
BLOCK_CANCELLATIONS;
|
|
|
|
st = OpenSymbolTableImpl(filename);
|
|
|
|
ALLOW_CANCELLATIONS;
|
|
|
|
return st;
|
|
|
|
}
|