1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/* Test program for libdwfl symbol resolving
Copyright (C) 2013 Red Hat, Inc.
This file is part of elfutils.
This file is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
elfutils 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
#include <assert.h>
#include <inttypes.h>
#include ELFUTILS_HEADER(dwfl)
#include <elf.h>
#include <dwarf.h>
#include <argp.h>
#include <stdio.h>
#include <stdio_ext.h>
#include <stdlib.h>
#include <string.h>
static const char *
gelf_type (GElf_Sym *sym)
{
switch (GELF_ST_TYPE (sym->st_info))
{
case STT_NOTYPE:
return "NOTYPE";
case STT_OBJECT:
return "OBJECT";
case STT_FUNC:
return "FUNC";
case STT_SECTION:
return "SECTION";
case STT_FILE:
return "FILE";
case STT_COMMON:
return "COMMON";
case STT_TLS:
return "TLS";
default:
return "UNKNOWN";
}
}
static const char *
gelf_bind (GElf_Sym *sym)
{
switch (GELF_ST_BIND (sym->st_info))
{
case STB_LOCAL:
return "LOCAL";
case STB_GLOBAL:
return "GLOBAL";
case STB_WEAK:
return "WEAK";
default:
return "UNKNOWN";
}
}
static int
gelf_bind_order (GElf_Sym *sym)
{
switch (GELF_ST_BIND (sym->st_info))
{
case STB_LOCAL:
return 1;
case STB_WEAK:
return 2;
case STB_GLOBAL:
return 3;
default:
return 0;
}
}
static const char *
elf_section_name (Elf *elf, GElf_Word shndx)
{
GElf_Ehdr ehdr;
GElf_Shdr shdr;
Elf_Scn *scn = elf_getscn (elf, shndx);
gelf_getshdr (scn, &shdr);
gelf_getehdr (elf, &ehdr);
return elf_strptr (elf, ehdr.e_shstrndx, shdr.sh_name);
}
bool
addr_in_section (Elf *elf, GElf_Word shndx, GElf_Addr addr)
{
GElf_Shdr shdr;
Elf_Scn *scn = elf_getscn (elf, shndx);
gelf_getshdr (scn, &shdr);
return addr >= shdr.sh_addr && addr < shdr.sh_addr + shdr.sh_size;
}
static int
list_syms (struct Dwfl_Module *mod,
void **user __attribute__ ((unused)), const char *mod_name,
Dwarf_Addr low_addr __attribute__ ((unused)),
void *arg __attribute__ ((unused)))
{
int syms = dwfl_module_getsymtab (mod);
if (syms < 0)
{
printf ("%s: %s\n", mod_name, dwfl_errmsg (-1));
return DWARF_CB_OK;
}
for (int ndx = 0; ndx < syms; ndx++)
{
GElf_Sym sym;
GElf_Word shndxp;
Elf *elf;
Dwarf_Addr bias;
const char *name = dwfl_module_getsym (mod, ndx, &sym, &shndxp);
printf("%4d: %s\t%s\t%s (%" PRIu64 ") %#" PRIx64,
ndx, gelf_type (&sym), gelf_bind (&sym), name,
sym.st_size, sym.st_value);
/* The info variant doesn't adjust st_value but returns the (possible)
adjusted value separately. */
GElf_Addr value;
GElf_Sym isym;
name = dwfl_module_getsym_info (mod, ndx, &isym, &value, &shndxp,
&elf, &bias);
GElf_Ehdr ehdr;
gelf_getehdr (elf, &ehdr);
// getsym st_values might or might not be adjusted depending on section.
// For ET_REL the adjustment is section relative.
assert (sym.st_value == isym.st_value
|| sym.st_value == isym.st_value + bias
|| ehdr.e_type == ET_REL);
/* And the reverse, which works for function symbols at least.
Note this only works because the st.value is adjusted by
dwfl_module_getsym (). */
if (GELF_ST_TYPE (sym.st_info) == STT_FUNC && shndxp != SHN_UNDEF)
{
/* Make sure the adjusted value really falls in the elf section. */
assert (addr_in_section (elf, shndxp, sym.st_value - bias));
GElf_Addr addr = value;
GElf_Sym asym;
GElf_Word ashndxp;
Elf *aelf;
Dwarf_Addr abias;
GElf_Off off;
const char *aname = dwfl_module_addrinfo (mod, addr, &off, &asym,
&ashndxp, &aelf, &abias);
/* Make sure the adjusted value really falls in the elf section. */
assert (addr_in_section (aelf, ashndxp, asym.st_value)
|| ehdr.e_type == ET_REL);
/* Either they are the same symbol (name), the binding of
asym is "stronger" (or equal) to sym or asym is more specific
(has a lower address) than sym. */
assert ((strcmp (name, aname) == 0
|| gelf_bind_order (&asym) >= gelf_bind_order (&sym))
&& value <= sym.st_value);
addr = sym.st_value;
int res = dwfl_module_relocate_address (mod, &addr);
assert (res != -1);
if (shndxp < SHN_LORESERVE)
printf(", rel: %#" PRIx64 " (%s)", addr,
elf_section_name (elf, shndxp));
else
printf(", rel: %#" PRIx64 "", addr);
/* Print the section of the actual value if different from sym. */
if (value != isym.st_value + bias && ehdr.e_type != ET_REL)
{
GElf_Addr ebias;
addr = value;
Elf_Scn *scn = dwfl_module_address_section (mod, &addr, &ebias);
GElf_Shdr shdr_mem;
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
Elf *melf = dwfl_module_getelf (mod, &ebias);
gelf_getehdr (melf, &ehdr);
const char *sname = elf_strptr (melf, ehdr.e_shstrndx,
shdr->sh_name);
printf (" [%#" PRIx64 ", rel: %#" PRIx64 " (%s)]",
value, addr, sname);
}
}
printf ("\n");
}
return DWARF_CB_OK;
}
int
main (int argc, char *argv[])
{
int remaining;
Dwfl *dwfl;
error_t res;
res = argp_parse (dwfl_standard_argp (), argc, argv, 0, &remaining, &dwfl);
assert (res == 0 && dwfl != NULL);
ptrdiff_t off = 0;
do
off = dwfl_getmodules (dwfl, list_syms, NULL, off);
while (off > 0);
dwfl_end (dwfl);
return off;
}
|