mirror of
https://github.com/openharmony/third_party_elfutils.git
synced 2026-07-19 19:43:34 -04:00
159ac52b06
Some arches like ppc64 use function descriptor values instead of function addresses causing matching of names and addresses to fail when using dwfl_module_getsym or dwfl_module_addrsym. Add ebl hook to resolve any function descriptor values found in non-ET_REL modules. The new function dwfl_module_getsym_info doesn't adjust the symbol value in any way, but returns the adjusted and/or resolved address associated with the symbol separately. The new function dwfl_module_addrinfo resolves against both the address associated with the symbol (which could be the function entry address) value and the adjusted st_value. So that it is easy to resolve and match either function descriptors and/or function entry addresses. Since these new functions also return more information they replace the dwfl_module_getsym_elf and dwfl_module_addrsym_elf functions that never made it into a released elfutils version. addr2line and readelf now use the new functions when looking up functions names. addr2line will now also display the section the address was found in when given -x. Extra testcases were added for both addr2line and the dwflsyms testscase. Signed-off-by: Mark Wielaard <mjw@redhat.com>
290 lines
9.0 KiB
C
290 lines
9.0 KiB
C
/* Find debugging and symbol information for a module in libdwfl.
|
|
Copyright (C) 2005-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 either
|
|
|
|
* the GNU Lesser General Public License as published by the Free
|
|
Software Foundation; either version 3 of the License, or (at
|
|
your option) any later version
|
|
|
|
or
|
|
|
|
* the GNU General Public License as published by the Free
|
|
Software Foundation; either version 2 of the License, or (at
|
|
your option) any later version
|
|
|
|
or both in parallel, as here.
|
|
|
|
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 copies of the GNU General Public License and
|
|
the GNU Lesser General Public License along with this program. If
|
|
not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "libdwflP.h"
|
|
|
|
/* Returns the name of the symbol "closest" to ADDR.
|
|
Never returns symbols at addresses above ADDR. */
|
|
|
|
const char *
|
|
internal_function
|
|
__libdwfl_addrsym (Dwfl_Module *mod, GElf_Addr addr, GElf_Off *off,
|
|
GElf_Sym *closest_sym, GElf_Word *shndxp,
|
|
Elf **elfp, Dwarf_Addr *biasp, bool adjust_st_value)
|
|
{
|
|
int syments = INTUSE(dwfl_module_getsymtab) (mod);
|
|
if (syments < 0)
|
|
return NULL;
|
|
|
|
/* Return true iff we consider ADDR to lie in the same section as SYM. */
|
|
GElf_Word addr_shndx = SHN_UNDEF;
|
|
Elf *addr_symelf = NULL;
|
|
inline bool same_section (GElf_Addr value, Elf *symelf, GElf_Word shndx)
|
|
{
|
|
/* For absolute symbols and the like, only match exactly. */
|
|
if (shndx >= SHN_LORESERVE)
|
|
return value == addr;
|
|
|
|
/* If value might not be st_value, the shndx of the symbol might
|
|
not match the section of the value. Explicitly look both up. */
|
|
if (! adjust_st_value)
|
|
{
|
|
Dwarf_Addr v;
|
|
if (addr_shndx == SHN_UNDEF)
|
|
{
|
|
v = addr;
|
|
addr_shndx = __libdwfl_find_section_ndx (mod, &v);
|
|
}
|
|
|
|
v = value;
|
|
return addr_shndx == __libdwfl_find_section_ndx (mod, &v);
|
|
}
|
|
|
|
/* Figure out what section ADDR lies in. */
|
|
if (addr_shndx == SHN_UNDEF || addr_symelf != symelf)
|
|
{
|
|
GElf_Addr mod_addr = dwfl_deadjust_st_value (mod, symelf, addr);
|
|
Elf_Scn *scn = NULL;
|
|
addr_shndx = SHN_ABS;
|
|
addr_symelf = symelf;
|
|
while ((scn = elf_nextscn (symelf, scn)) != NULL)
|
|
{
|
|
GElf_Shdr shdr_mem;
|
|
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
|
|
if (likely (shdr != NULL)
|
|
&& mod_addr >= shdr->sh_addr
|
|
&& mod_addr < shdr->sh_addr + shdr->sh_size)
|
|
{
|
|
addr_shndx = elf_ndxscn (scn);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return shndx == addr_shndx && addr_symelf == symelf;
|
|
}
|
|
|
|
/* Keep track of the closest symbol we have seen so far.
|
|
Here we store only symbols with nonzero st_size. */
|
|
const char *closest_name = NULL;
|
|
GElf_Addr closest_value = 0;
|
|
GElf_Word closest_shndx = SHN_UNDEF;
|
|
Elf *closest_elf = NULL;
|
|
|
|
/* Keep track of an eligible symbol with st_size == 0 as a fallback. */
|
|
const char *sizeless_name = NULL;
|
|
GElf_Sym sizeless_sym = { 0, 0, 0, 0, 0, SHN_UNDEF };
|
|
GElf_Addr sizeless_value = 0;
|
|
GElf_Word sizeless_shndx = SHN_UNDEF;
|
|
Elf *sizeless_elf = NULL;
|
|
|
|
/* Keep track of the lowest address a relevant sizeless symbol could have. */
|
|
GElf_Addr min_label = 0;
|
|
|
|
/* Try one symbol and associated value from the search table. */
|
|
inline void try_sym_value (GElf_Addr value, GElf_Sym *sym,
|
|
const char *name, GElf_Word shndx,
|
|
Elf *elf, bool resolved)
|
|
{
|
|
/* Even if we don't choose this symbol, its existence excludes
|
|
any sizeless symbol (assembly label) that is below its upper
|
|
bound. */
|
|
if (value + sym->st_size > min_label)
|
|
min_label = value + sym->st_size;
|
|
|
|
if (sym->st_size == 0 || addr - value < sym->st_size)
|
|
{
|
|
/* Return GELF_ST_BIND as higher-is-better integer. */
|
|
inline int binding_value (const GElf_Sym *symp)
|
|
{
|
|
switch (GELF_ST_BIND (symp->st_info))
|
|
{
|
|
case STB_GLOBAL:
|
|
return 3;
|
|
case STB_WEAK:
|
|
return 2;
|
|
case STB_LOCAL:
|
|
return 1;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/* This symbol is a better candidate than the current one
|
|
if it's closer to ADDR or is global when it was local. */
|
|
if (closest_name == NULL
|
|
|| closest_value < value
|
|
|| binding_value (closest_sym) < binding_value (sym))
|
|
{
|
|
if (sym->st_size != 0)
|
|
{
|
|
*closest_sym = *sym;
|
|
closest_value = value;
|
|
closest_shndx = shndx;
|
|
closest_elf = elf;
|
|
closest_name = name;
|
|
}
|
|
else if (closest_name == NULL
|
|
&& value >= min_label
|
|
&& same_section (value,
|
|
resolved ? mod->main.elf : elf, shndx))
|
|
{
|
|
/* Handwritten assembly symbols sometimes have no
|
|
st_size. If no symbol with proper size includes
|
|
the address, we'll use the closest one that is in
|
|
the same section as ADDR. */
|
|
sizeless_sym = *sym;
|
|
sizeless_value = value;
|
|
sizeless_shndx = shndx;
|
|
sizeless_elf = elf;
|
|
sizeless_name = name;
|
|
}
|
|
}
|
|
/* When the beginning of its range is no closer,
|
|
the end of its range might be. Otherwise follow
|
|
GELF_ST_BIND preference. If all are equal prefer
|
|
the first symbol found. */
|
|
else if (sym->st_size != 0
|
|
&& closest_value == value
|
|
&& ((closest_sym->st_size > sym->st_size
|
|
&& (binding_value (closest_sym)
|
|
<= binding_value (sym)))
|
|
|| (closest_sym->st_size >= sym->st_size
|
|
&& (binding_value (closest_sym)
|
|
< binding_value (sym)))))
|
|
{
|
|
*closest_sym = *sym;
|
|
closest_value = value;
|
|
closest_shndx = shndx;
|
|
closest_elf = elf;
|
|
closest_name = name;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Look through the symbol table for a matching symbol. */
|
|
inline void search_table (int start, int end)
|
|
{
|
|
for (int i = start; i < end; ++i)
|
|
{
|
|
GElf_Sym sym;
|
|
GElf_Addr value;
|
|
GElf_Word shndx;
|
|
Elf *elf;
|
|
bool resolved;
|
|
const char *name = __libdwfl_getsym (mod, i, &sym, &value,
|
|
&shndx, &elf, NULL,
|
|
&resolved, adjust_st_value);
|
|
if (name != NULL && name[0] != '\0'
|
|
&& sym.st_shndx != SHN_UNDEF
|
|
&& value <= addr
|
|
&& GELF_ST_TYPE (sym.st_info) != STT_SECTION
|
|
&& GELF_ST_TYPE (sym.st_info) != STT_FILE
|
|
&& GELF_ST_TYPE (sym.st_info) != STT_TLS)
|
|
{
|
|
try_sym_value (value, &sym, name, shndx, elf, resolved);
|
|
|
|
/* If this is an addrinfo variant and the value could be
|
|
resolved then also try matching the (adjusted) st_value. */
|
|
if (resolved && mod->e_type != ET_REL)
|
|
{
|
|
GElf_Addr adjusted_st_value;
|
|
adjusted_st_value = dwfl_adjusted_st_value (mod, elf,
|
|
sym.st_value);
|
|
if (value != adjusted_st_value && adjusted_st_value <= addr)
|
|
try_sym_value (adjusted_st_value, &sym, name, shndx,
|
|
elf, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* First go through global symbols. mod->first_global and
|
|
mod->aux_first_global are setup by dwfl_module_getsymtab to the
|
|
index of the first global symbol in those symbol tables. Both
|
|
are non-zero when the table exist, except when there is only a
|
|
dynsym table loaded through phdrs, then first_global is zero and
|
|
there will be no auxiliary table. All symbols with local binding
|
|
come first in the symbol table, then all globals. The zeroth,
|
|
null entry, in the auxiliary table is skipped if there is a main
|
|
table. */
|
|
int first_global = INTUSE (dwfl_module_getsymtab_first_global) (mod);
|
|
if (first_global < 0)
|
|
return NULL;
|
|
search_table (first_global == 0 ? 1 : first_global, syments);
|
|
|
|
/* If we found nothing searching the global symbols, then try the locals.
|
|
Unless we have a global sizeless symbol that matches exactly. */
|
|
if (closest_name == NULL && first_global > 1
|
|
&& (sizeless_name == NULL || sizeless_value != addr))
|
|
search_table (1, first_global);
|
|
|
|
/* If we found no proper sized symbol to use, fall back to the best
|
|
candidate sizeless symbol we found, if any. */
|
|
if (closest_name == NULL
|
|
&& sizeless_name != NULL && sizeless_value >= min_label)
|
|
{
|
|
*closest_sym = sizeless_sym;
|
|
closest_value = sizeless_value;
|
|
closest_shndx = sizeless_shndx;
|
|
closest_elf = sizeless_elf;
|
|
closest_name = sizeless_name;
|
|
}
|
|
|
|
*off = addr - closest_value;
|
|
|
|
if (shndxp != NULL)
|
|
*shndxp = closest_shndx;
|
|
if (elfp != NULL)
|
|
*elfp = closest_elf;
|
|
if (biasp != NULL)
|
|
*biasp = dwfl_adjusted_st_value (mod, closest_elf, 0);
|
|
return closest_name;
|
|
}
|
|
|
|
|
|
const char *
|
|
dwfl_module_addrsym (Dwfl_Module *mod, GElf_Addr addr,
|
|
GElf_Sym *closest_sym, GElf_Word *shndxp)
|
|
{
|
|
GElf_Off off;
|
|
return __libdwfl_addrsym (mod, addr, &off, closest_sym, shndxp,
|
|
NULL, NULL, true);
|
|
}
|
|
INTDEF (dwfl_module_addrsym)
|
|
|
|
const char
|
|
*dwfl_module_addrinfo (Dwfl_Module *mod, GElf_Addr address,
|
|
GElf_Off *offset, GElf_Sym *sym,
|
|
GElf_Word *shndxp, Elf **elfp, Dwarf_Addr *bias)
|
|
{
|
|
return __libdwfl_addrsym (mod, address, offset, sym, shndxp, elfp, bias,
|
|
false);
|
|
}
|
|
INTDEF (dwfl_module_addrinfo)
|