blob: f196331acb69cbbca52ae7a67408f512c3dc3ccc [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Look up the DIE in a reference-form attribute.
Mark Wielaard240a0682018-01-19 23:59:21 +01002 Copyright (C) 2005-2010, 2018 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00004
Mark Wielaardde2ed972012-06-05 17:15:16 +02005 This file is free software; you can redistribute it and/or modify
6 it under the terms of either
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00007
Mark Wielaardde2ed972012-06-05 17:15:16 +02008 * the GNU Lesser General Public License as published by the Free
9 Software Foundation; either version 3 of the License, or (at
10 your option) any later version
11
12 or
13
14 * the GNU General Public License as published by the Free
15 Software Foundation; either version 2 of the License, or (at
16 your option) any later version
17
18 or both in parallel, as here.
19
20 elfutils is distributed in the hope that it will be useful, but
Ulrich Drepper361df7d2006-04-04 21:38:57 +000021 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
Mark Wielaardde2ed972012-06-05 17:15:16 +020025 You should have received copies of the GNU General Public License and
26 the GNU Lesser General Public License along with this program. If
27 not, see <http://www.gnu.org/licenses/>. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000028
29#ifdef HAVE_CONFIG_H
30# include <config.h>
31#endif
32
Roland McGrath3e0f7d12010-06-15 23:10:35 -070033#include <string.h>
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000034#include "libdwP.h"
Roland McGrathe4c22ea2007-10-23 13:07:39 +000035#include <dwarf.h>
36
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000037
38Dwarf_Die *
Mark Wielaard1ccdfb62015-09-22 22:27:01 +020039dwarf_formref_die (Dwarf_Attribute *attr, Dwarf_Die *result)
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000040{
Roland McGrathe4c22ea2007-10-23 13:07:39 +000041 if (attr == NULL)
42 return NULL;
43
Roland McGrath3e0f7d12010-06-15 23:10:35 -070044 struct Dwarf_CU *cu = attr->cu;
45
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000046 Dwarf_Off offset;
Mark Wielaardaf143802018-05-08 15:34:03 +020047 if (attr->form == DW_FORM_ref_addr || attr->form == DW_FORM_GNU_ref_alt
48 || attr->form == DW_FORM_ref_sup4 || attr->form == DW_FORM_ref_sup8)
Roland McGrathe4c22ea2007-10-23 13:07:39 +000049 {
50 /* This has an absolute offset. */
51
Mark Wielaardaf143802018-05-08 15:34:03 +020052 uint8_t ref_size;
53 if (cu->version == 2 && attr->form == DW_FORM_ref_addr)
54 ref_size = cu->address_size;
55 else if (attr->form == DW_FORM_ref_sup4)
56 ref_size = 4;
57 else if (attr->form == DW_FORM_ref_sup8)
58 ref_size = 8;
59 else
60 ref_size = cu->offset_size;
Roland McGrathe4c22ea2007-10-23 13:07:39 +000061
Mark Wielaard775375e2012-06-22 12:02:45 +020062 Dwarf *dbg_ret = (attr->form == DW_FORM_GNU_ref_alt
Mark Wielaard240a0682018-01-19 23:59:21 +010063 ? INTUSE(dwarf_getalt) (cu->dbg) : cu->dbg);
Mark Wielaard775375e2012-06-22 12:02:45 +020064
65 if (dbg_ret == NULL)
66 {
67 __libdw_seterrno (DWARF_E_NO_ALT_DEBUGLINK);
68 return NULL;
69 }
70
71 if (__libdw_read_offset (cu->dbg, dbg_ret, IDX_debug_info, attr->valp,
Ulrich Drepper99d23722009-06-14 20:19:45 -070072 ref_size, &offset, IDX_debug_info, 0))
73 return NULL;
Roland McGrath3e0f7d12010-06-15 23:10:35 -070074
Mark Wielaard775375e2012-06-22 12:02:45 +020075 return INTUSE(dwarf_offdie) (dbg_ret, offset, result);
Roland McGrathe4c22ea2007-10-23 13:07:39 +000076 }
Roland McGrath3e0f7d12010-06-15 23:10:35 -070077
Mark Wielaard92026652014-12-12 16:43:04 +010078 const unsigned char *datap;
79 size_t size;
Roland McGrath3e0f7d12010-06-15 23:10:35 -070080 if (attr->form == DW_FORM_ref_sig8)
Roland McGrathb75f4442010-06-15 22:24:19 -070081 {
82 /* This doesn't have an offset, but instead a value we
Mark Wielaard532ab1e2018-01-29 15:59:05 +010083 have to match in the type unit headers. */
Roland McGrathb75f4442010-06-15 22:24:19 -070084
Roland McGrath3e0f7d12010-06-15 23:10:35 -070085 uint64_t sig = read_8ubyte_unaligned (cu->dbg, attr->valp);
86 cu = Dwarf_Sig8_Hash_find (&cu->dbg->sig8_hash, sig, NULL);
87 if (cu == NULL)
Mark Wielaard532ab1e2018-01-29 15:59:05 +010088 {
89 /* Not seen before. We have to scan through the type units.
90 Since DWARFv5 these can (also) be found in .debug_info,
91 so scan that first. */
92 bool scan_debug_types = false;
93 do
94 {
95 cu = __libdw_intern_next_unit (attr->cu->dbg, scan_debug_types);
96 if (cu == NULL)
97 {
98 if (scan_debug_types == false)
99 scan_debug_types = true;
100 else
101 {
102 __libdw_seterrno (INTUSE(dwarf_errno) ()
103 ?: DWARF_E_INVALID_REFERENCE);
104 return NULL;
105 }
106 }
107 }
108 while (cu == NULL || cu->unit_id8 != sig);
109 }
Roland McGrathb75f4442010-06-15 22:24:19 -0700110
Mark Wielaard532ab1e2018-01-29 15:59:05 +0100111 int secid = cu_sec_idx (cu);
112 datap = cu->dbg->sectiondata[secid]->d_buf;
113 size = cu->dbg->sectiondata[secid]->d_size;
114 offset = cu->start + cu->subdie_offset;
Roland McGrathb75f4442010-06-15 22:24:19 -0700115 }
Roland McGrathe4c22ea2007-10-23 13:07:39 +0000116 else
117 {
118 /* Other forms produce an offset from the CU. */
119 if (unlikely (__libdw_formref (attr, &offset) != 0))
120 return NULL;
Roland McGrath3e0f7d12010-06-15 23:10:35 -0700121
Mark Wielaard92026652014-12-12 16:43:04 +0100122 datap = cu->startp;
123 size = cu->endp - cu->startp;
Roland McGrathe4c22ea2007-10-23 13:07:39 +0000124 }
125
Mark Wielaard92026652014-12-12 16:43:04 +0100126 if (unlikely (offset >= size))
Roland McGrath3e0f7d12010-06-15 23:10:35 -0700127 {
128 __libdw_seterrno (DWARF_E_INVALID_DWARF);
129 return NULL;
130 }
131
132 memset (result, '\0', sizeof (Dwarf_Die));
Mark Wielaard92026652014-12-12 16:43:04 +0100133 result->addr = (char *) datap + offset;
Roland McGrath3e0f7d12010-06-15 23:10:35 -0700134 result->cu = cu;
135 return result;
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000136}
137INTDEF (dwarf_formref_die)