/* Enumerate the PC ranges covered by a DIE.
Copyright (C) 2005, 2007, 2009, 2018 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 . */
#ifdef HAVE_CONFIG_H
# include
#endif
#include "libdwP.h"
#include
#include
/* Read up begin/end pair and increment read pointer.
- If it's normal range record, set up `*beginp' and `*endp' and return 0.
- If it's base address selection record, set up `*basep' and return 1.
- If it's end of rangelist, don't set anything and return 2
- If an error occurs, don't set anything and return -1. */
internal_function int
__libdw_read_begin_end_pair_inc (Dwarf *dbg, int sec_index,
const unsigned char **addrp,
const unsigned char *addrend,
int width,
Dwarf_Addr *beginp, Dwarf_Addr *endp,
Dwarf_Addr *basep)
{
Dwarf_Addr escape = (width == 8 ? (Elf64_Addr) -1
: (Elf64_Addr) (Elf32_Addr) -1);
Dwarf_Addr begin;
Dwarf_Addr end;
const unsigned char *addr = *addrp;
if (addrend - addr < width * 2)
{
invalid:
__libdw_seterrno (DWARF_E_INVALID_DWARF);
return -1;
}
bool begin_relocated = READ_AND_RELOCATE (__libdw_relocate_address, begin);
bool end_relocated = READ_AND_RELOCATE (__libdw_relocate_address, end);
*addrp = addr;
/* Unrelocated escape for begin means base address selection. */
if (begin == escape && !begin_relocated)
{
if (unlikely (end == escape))
goto invalid;
*basep = end;
return 1;
}
/* Unrelocated pair of zeroes means end of range list. */
if (begin == 0 && end == 0 && !begin_relocated && !end_relocated)
return 2;
/* Don't check for begin_relocated == end_relocated. Serve the data
to the client even though it may be buggy. */
*beginp = begin + *basep;
*endp = end + *basep;
return 0;
}
static int
initial_offset (Dwarf_Attribute *attr, ptrdiff_t *offset)
{
size_t secidx = IDX_debug_ranges;
Dwarf_Word start_offset;
if (__libdw_formptr (attr, secidx,
DWARF_E_NO_DEBUG_RANGES,
NULL, &start_offset) == NULL)
return -1;
*offset = start_offset;
return 0;
}
ptrdiff_t
dwarf_ranges (Dwarf_Die *die, ptrdiff_t offset, Dwarf_Addr *basep,
Dwarf_Addr *startp, Dwarf_Addr *endp)
{
if (die == NULL)
return -1;
if (offset == 0
/* Usually there is a single contiguous range. */
&& INTUSE(dwarf_highpc) (die, endp) == 0
&& INTUSE(dwarf_lowpc) (die, startp) == 0)
/* A offset into .debug_ranges will never be 1, it must be at least a
multiple of 4. So we can return 1 as a special case value to mark
there are no ranges to look for on the next call. */
return 1;
if (offset == 1)
return 0;
/* We have to look for a noncontiguous range. */
size_t secidx = IDX_debug_ranges;
Dwarf_CU *cu = die->cu;
if (cu == NULL)
{
__libdw_seterrno (DWARF_E_INVALID_DWARF);
return -1;
}
const Elf_Data *d = cu->dbg->sectiondata[secidx];
if (d == NULL && cu->unit_type == DW_UT_split_compile)
{
Dwarf_CU *skel = __libdw_find_split_unit (cu);
if (skel != NULL)
{
cu = skel;
d = cu->dbg->sectiondata[secidx];
}
}
const unsigned char *readp;
const unsigned char *readendp;
if (offset == 0)
{
Dwarf_Attribute attr_mem;
Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, DW_AT_ranges,
&attr_mem);
if (attr == NULL
&& is_cudie (die)
&& die->cu->unit_type == DW_UT_split_compile)
attr = INTUSE(dwarf_attr_integrate) (die, DW_AT_ranges, &attr_mem);
if (attr == NULL)
/* No PC attributes in this DIE at all, so an empty range list. */
return 0;
*basep = __libdw_cu_base_address (attr->cu);
if (*basep == (Dwarf_Addr) -1)
return -1;
if (initial_offset (attr, &offset) != 0)
return -1;
}
else
{
if (__libdw_offset_in_section (cu->dbg,
secidx, offset, 1))
return -1;
}
readp = d->d_buf + offset;
readendp = d->d_buf + d->d_size;
Dwarf_Addr begin;
Dwarf_Addr end;
next:
switch (__libdw_read_begin_end_pair_inc (cu->dbg, secidx,
&readp, readendp,
cu->address_size,
&begin, &end, basep))
{
case 0:
break;
case 1:
goto next;
case 2:
return 0;
default:
return -1;
}
*startp = begin;
*endp = end;
return readp - (unsigned char *) d->d_buf;
}
INTDEF (dwarf_ranges)