#include <sys/types.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <elf.h>
#include <err.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include "gprof.h"
static bool wantsym(const Elf_Sym *, const char *);
static char *excludes[] = { ".mcount", "_mcleanup", NULL };
int
getnfile(const char *filename, char ***defaultEs)
{
int fd;
Elf_Ehdr h;
struct stat s;
void *mapbase;
const char *base;
const Elf_Shdr *shdrs;
const Elf_Shdr *sh_symtab;
const Elf_Shdr *sh_strtab;
const char *strtab;
const Elf_Sym *symtab;
int symtabct;
int i;
if ((fd = open(filename, O_RDONLY)) == -1)
err(1, "%s", filename);
if (read(fd, &h, sizeof h) != sizeof h || !IS_ELF(h)) {
close(fd);
return -1;
}
if (fstat(fd, &s) == -1)
err(1, "Cannot fstat %s", filename);
if ((mapbase = mmap(0, s.st_size, PROT_READ, MAP_SHARED, fd, 0)) ==
MAP_FAILED)
err(1, "Cannot mmap %s", filename);
close(fd);
base = (const char *)mapbase;
if (h.e_shoff >= s.st_size ||
h.e_shoff + (off_t)h.e_shnum * sizeof(Elf_Shdr) > s.st_size)
errx(1, "%s: bad section header offset", filename);
shdrs = (const Elf_Shdr *)(base + h.e_shoff);
for (i = 1; i < h.e_shnum; i++)
if (shdrs[i].sh_type == SHT_SYMTAB)
break;
if (i == h.e_shnum)
errx(1, "%s has no symbol table", filename);
sh_symtab = &shdrs[i];
if (sh_symtab->sh_link >= h.e_shnum)
errx(1, "%s: bad string table link", filename);
sh_strtab = &shdrs[sh_symtab->sh_link];
if (sh_symtab->sh_offset >= s.st_size ||
sh_symtab->sh_entsize == 0 ||
sh_strtab->sh_offset >= s.st_size)
errx(1, "%s: bad symbol table", filename);
symtab = (const Elf_Sym *)(base + sh_symtab->sh_offset);
symtabct = sh_symtab->sh_size / sh_symtab->sh_entsize;
strtab = (const char *)(base + sh_strtab->sh_offset);
nname = 0;
for (i = 1; i < symtabct; i++)
if (wantsym(&symtab[i], strtab))
nname++;
#ifdef DEBUG
if (debug & ELFDEBUG) {
printf("[getnfile] symtab at %p, strtab at %p\n", symtab, strtab);
printf("[getnfile] %d of %d symbols wanted\n", nname, symtabct);
}
#endif
if ((nl = calloc(nname + 1, sizeof(nltype))) == NULL)
errx(1, "Insufficient memory for symbol table");
npe = nl;
for (i = 1; i < symtabct; i++) {
const Elf_Sym *sym = &symtab[i];
if (wantsym(sym, strtab)) {
npe->value = sym->st_value;
npe->name = strtab + sym->st_name;
#ifdef DEBUG
if (debug & ELFDEBUG)
printf("[getnfile] symbol %d: %s -> %lx\n", i,
npe->name ? npe->name : "(none)", npe->value);
#endif
npe++;
}
}
npe->value = -1;
*defaultEs = excludes;
return 0;
}
static bool
wantsym(const Elf_Sym *sym, const char *strtab)
{
int type;
int bind;
type = ELF_ST_TYPE(sym->st_info);
bind = ELF_ST_BIND(sym->st_info);
if (type != STT_FUNC || (aflag && bind == STB_LOCAL))
#if 0
||
(uflag && strchr(strtab + sym->st_name, '.') != NULL))
#endif
return 0;
#ifdef __arm__
{
const char *c = strtab + sym->st_name;
if (c[0] == '$')
return 0;
}
#endif
return 1;
}