blob: e78e13bf4af275a2527e855e858aae9d2ce8a7ea [file] [log] [blame]
Greg Claytonb8c162b2017-05-03 16:02:29 +00001//===- DWARFVerifier.cpp --------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Greg Claytonb8c162b2017-05-03 16:02:29 +00009#include "llvm/DebugInfo/DWARF/DWARFVerifier.h"
Pavel Labath79cd9422018-03-22 14:50:44 +000010#include "llvm/ADT/SmallSet.h"
Greg Claytonb8c162b2017-05-03 16:02:29 +000011#include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
12#include "llvm/DebugInfo/DWARF/DWARFContext.h"
13#include "llvm/DebugInfo/DWARF/DWARFDebugLine.h"
14#include "llvm/DebugInfo/DWARF/DWARFDie.h"
George Rimar144e4c52017-10-27 10:42:04 +000015#include "llvm/DebugInfo/DWARF/DWARFExpression.h"
Greg Claytonb8c162b2017-05-03 16:02:29 +000016#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
17#include "llvm/DebugInfo/DWARF/DWARFSection.h"
Pavel Labath906b7772018-03-16 10:02:16 +000018#include "llvm/Support/DJB.h"
George Rimar144e4c52017-10-27 10:42:04 +000019#include "llvm/Support/FormatVariadic.h"
Jonas Devlieghere69217532018-03-09 09:56:24 +000020#include "llvm/Support/WithColor.h"
Greg Claytonb8c162b2017-05-03 16:02:29 +000021#include "llvm/Support/raw_ostream.h"
22#include <map>
23#include <set>
24#include <vector>
25
26using namespace llvm;
27using namespace dwarf;
28using namespace object;
29
Jonas Devlieghere58910602017-09-14 11:33:42 +000030DWARFVerifier::DieRangeInfo::address_range_iterator
31DWARFVerifier::DieRangeInfo::insert(const DWARFAddressRange &R) {
32 auto Begin = Ranges.begin();
33 auto End = Ranges.end();
34 auto Pos = std::lower_bound(Begin, End, R);
35
36 if (Pos != End) {
37 if (Pos->intersects(R))
38 return Pos;
39 if (Pos != Begin) {
40 auto Iter = Pos - 1;
41 if (Iter->intersects(R))
42 return Iter;
43 }
44 }
45
46 Ranges.insert(Pos, R);
47 return Ranges.end();
48}
49
50DWARFVerifier::DieRangeInfo::die_range_info_iterator
51DWARFVerifier::DieRangeInfo::insert(const DieRangeInfo &RI) {
52 auto End = Children.end();
53 auto Iter = Children.begin();
54 while (Iter != End) {
55 if (Iter->intersects(RI))
56 return Iter;
57 ++Iter;
58 }
59 Children.insert(RI);
60 return Children.end();
61}
62
63bool DWARFVerifier::DieRangeInfo::contains(const DieRangeInfo &RHS) const {
64 // Both list of ranges are sorted so we can make this fast.
65
66 if (Ranges.empty() || RHS.Ranges.empty())
67 return false;
68
69 // Since the ranges are sorted we can advance where we start searching with
70 // this object's ranges as we traverse RHS.Ranges.
71 auto End = Ranges.end();
72 auto Iter = findRange(RHS.Ranges.front());
73
74 // Now linearly walk the ranges in this object and see if they contain each
75 // ranges from RHS.Ranges.
76 for (const auto &R : RHS.Ranges) {
77 while (Iter != End) {
78 if (Iter->contains(R))
79 break;
80 ++Iter;
81 }
82 if (Iter == End)
83 return false;
84 }
85 return true;
86}
87
88bool DWARFVerifier::DieRangeInfo::intersects(const DieRangeInfo &RHS) const {
89 if (Ranges.empty() || RHS.Ranges.empty())
90 return false;
91
92 auto End = Ranges.end();
93 auto Iter = findRange(RHS.Ranges.front());
94 for (const auto &R : RHS.Ranges) {
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +000095 if (Iter == End)
Jonas Devlieghered585a202017-09-14 17:46:23 +000096 return false;
Jonas Devlieghere58910602017-09-14 11:33:42 +000097 if (R.HighPC <= Iter->LowPC)
98 continue;
99 while (Iter != End) {
100 if (Iter->intersects(R))
101 return true;
102 ++Iter;
103 }
104 }
105
106 return false;
107}
108
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000109bool DWARFVerifier::verifyUnitHeader(const DWARFDataExtractor DebugInfoData,
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000110 uint32_t *Offset, unsigned UnitIndex,
111 uint8_t &UnitType, bool &isUnitDWARF64) {
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000112 uint32_t AbbrOffset, Length;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000113 uint8_t AddrSize = 0;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000114 uint16_t Version;
115 bool Success = true;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000116
117 bool ValidLength = false;
118 bool ValidVersion = false;
119 bool ValidAddrSize = false;
120 bool ValidType = true;
121 bool ValidAbbrevOffset = true;
122
123 uint32_t OffsetStart = *Offset;
124 Length = DebugInfoData.getU32(Offset);
125 if (Length == UINT32_MAX) {
126 isUnitDWARF64 = true;
127 OS << format(
128 "Unit[%d] is in 64-bit DWARF format; cannot verify from this point.\n",
129 UnitIndex);
130 return false;
131 }
132 Version = DebugInfoData.getU16(Offset);
133
134 if (Version >= 5) {
135 UnitType = DebugInfoData.getU8(Offset);
136 AddrSize = DebugInfoData.getU8(Offset);
137 AbbrOffset = DebugInfoData.getU32(Offset);
Jonas Devliegheref2fa9eb2017-10-06 22:27:31 +0000138 ValidType = dwarf::isUnitType(UnitType);
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000139 } else {
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000140 UnitType = 0;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000141 AbbrOffset = DebugInfoData.getU32(Offset);
142 AddrSize = DebugInfoData.getU8(Offset);
143 }
144
145 if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset))
146 ValidAbbrevOffset = false;
147
148 ValidLength = DebugInfoData.isValidOffset(OffsetStart + Length + 3);
149 ValidVersion = DWARFContext::isSupportedVersion(Version);
150 ValidAddrSize = AddrSize == 4 || AddrSize == 8;
151 if (!ValidLength || !ValidVersion || !ValidAddrSize || !ValidAbbrevOffset ||
152 !ValidType) {
153 Success = false;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000154 error() << format("Units[%d] - start offset: 0x%08x \n", UnitIndex,
155 OffsetStart);
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000156 if (!ValidLength)
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000157 note() << "The length for this unit is too "
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000158 "large for the .debug_info provided.\n";
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000159 if (!ValidVersion)
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000160 note() << "The 16 bit unit header version is not valid.\n";
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000161 if (!ValidType)
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000162 note() << "The unit type encoding is not valid.\n";
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000163 if (!ValidAbbrevOffset)
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000164 note() << "The offset into the .debug_abbrev section is "
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000165 "not valid.\n";
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000166 if (!ValidAddrSize)
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000167 note() << "The address size is unsupported.\n";
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000168 }
169 *Offset = OffsetStart + Length + 4;
170 return Success;
171}
172
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000173unsigned DWARFVerifier::verifyUnitContents(DWARFUnit &Unit) {
Paul Robinson508b0812018-08-08 23:50:22 +0000174 unsigned NumUnitErrors = 0;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000175 unsigned NumDies = Unit.getNumDIEs();
176 for (unsigned I = 0; I < NumDies; ++I) {
177 auto Die = Unit.getDIEAtIndex(I);
Jonas Devlieghereb3227422018-09-21 07:50:21 +0000178
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000179 if (Die.getTag() == DW_TAG_null)
180 continue;
Jonas Devlieghereb3227422018-09-21 07:50:21 +0000181
182 bool HasTypeAttr = false;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000183 for (auto AttrValue : Die.attributes()) {
184 NumUnitErrors += verifyDebugInfoAttribute(Die, AttrValue);
185 NumUnitErrors += verifyDebugInfoForm(Die, AttrValue);
Jonas Devlieghereb3227422018-09-21 07:50:21 +0000186 HasTypeAttr |= (AttrValue.Attr == DW_AT_type);
187 }
188
189 if (!HasTypeAttr && (Die.getTag() == DW_TAG_formal_parameter ||
190 Die.getTag() == DW_TAG_variable ||
191 Die.getTag() == DW_TAG_array_type)) {
192 error() << "DIE with tag " << TagString(Die.getTag())
193 << " is missing type attribute:\n";
194 dump(Die) << '\n';
195 NumUnitErrors++;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000196 }
Vedant Kumar5931b4e2018-10-05 20:37:17 +0000197 NumUnitErrors += verifyDebugInfoCallSite(Die);
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000198 }
Jonas Devlieghere58910602017-09-14 11:33:42 +0000199
Jonas Devliegheref2fa9eb2017-10-06 22:27:31 +0000200 DWARFDie Die = Unit.getUnitDIE(/* ExtractUnitDIEOnly = */ false);
201 if (!Die) {
202 error() << "Compilation unit without DIE.\n";
203 NumUnitErrors++;
Paul Robinson508b0812018-08-08 23:50:22 +0000204 return NumUnitErrors;
Jonas Devliegheref2fa9eb2017-10-06 22:27:31 +0000205 }
206
207 if (!dwarf::isUnitType(Die.getTag())) {
208 error() << "Compilation unit root DIE is not a unit DIE: "
209 << dwarf::TagString(Die.getTag()) << ".\n";
Jonas Devlieghere35fdaa92017-09-28 15:57:50 +0000210 NumUnitErrors++;
211 }
212
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000213 uint8_t UnitType = Unit.getUnitType();
214 if (!DWARFUnit::isMatchingUnitTypeAndTag(UnitType, Die.getTag())) {
Jonas Devliegheref2fa9eb2017-10-06 22:27:31 +0000215 error() << "Compilation unit type (" << dwarf::UnitTypeString(UnitType)
216 << ") and root DIE (" << dwarf::TagString(Die.getTag())
217 << ") do not match.\n";
218 NumUnitErrors++;
219 }
220
221 DieRangeInfo RI;
222 NumUnitErrors += verifyDieRanges(Die, RI);
223
Paul Robinson508b0812018-08-08 23:50:22 +0000224 return NumUnitErrors;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000225}
226
Vedant Kumar5931b4e2018-10-05 20:37:17 +0000227unsigned DWARFVerifier::verifyDebugInfoCallSite(const DWARFDie &Die) {
228 if (Die.getTag() != DW_TAG_call_site)
229 return 0;
230
231 DWARFDie Curr = Die.getParent();
232 for (; Curr.isValid() && !Curr.isSubprogramDIE(); Curr = Die.getParent()) {
233 if (Curr.getTag() == DW_TAG_inlined_subroutine) {
234 error() << "Call site entry nested within inlined subroutine:";
235 Curr.dump(OS);
236 return 1;
237 }
238 }
239
240 if (!Curr.isValid()) {
241 error() << "Call site entry not nested within a valid subprogram:";
242 Die.dump(OS);
243 return 1;
244 }
245
246 Optional<DWARFFormValue> CallAttr =
247 Curr.find({DW_AT_call_all_calls, DW_AT_call_all_source_calls,
248 DW_AT_call_all_tail_calls});
249 if (!CallAttr) {
250 error() << "Subprogram with call site entry has no DW_AT_call attribute:";
251 Curr.dump(OS);
252 Die.dump(OS, /*indent*/ 1);
253 return 1;
254 }
255
256 return 0;
257}
258
Spyridoula Gravanic6ef9872017-07-21 00:51:32 +0000259unsigned DWARFVerifier::verifyAbbrevSection(const DWARFDebugAbbrev *Abbrev) {
Spyridoula Gravani364b5352017-07-20 02:06:52 +0000260 unsigned NumErrors = 0;
Spyridoula Gravani364b5352017-07-20 02:06:52 +0000261 if (Abbrev) {
262 const DWARFAbbreviationDeclarationSet *AbbrDecls =
263 Abbrev->getAbbreviationDeclarationSet(0);
264 for (auto AbbrDecl : *AbbrDecls) {
265 SmallDenseSet<uint16_t> AttributeSet;
266 for (auto Attribute : AbbrDecl.attributes()) {
267 auto Result = AttributeSet.insert(Attribute.Attr);
268 if (!Result.second) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000269 error() << "Abbreviation declaration contains multiple "
270 << AttributeString(Attribute.Attr) << " attributes.\n";
Spyridoula Gravanic6ef9872017-07-21 00:51:32 +0000271 AbbrDecl.dump(OS);
Spyridoula Gravani364b5352017-07-20 02:06:52 +0000272 ++NumErrors;
273 }
274 }
275 }
276 }
Spyridoula Gravanic6ef9872017-07-21 00:51:32 +0000277 return NumErrors;
278}
279
280bool DWARFVerifier::handleDebugAbbrev() {
281 OS << "Verifying .debug_abbrev...\n";
282
283 const DWARFObject &DObj = DCtx.getDWARFObj();
284 bool noDebugAbbrev = DObj.getAbbrevSection().empty();
285 bool noDebugAbbrevDWO = DObj.getAbbrevDWOSection().empty();
286
287 if (noDebugAbbrev && noDebugAbbrevDWO) {
288 return true;
289 }
290
291 unsigned NumErrors = 0;
292 if (!noDebugAbbrev)
293 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrev());
294
295 if (!noDebugAbbrevDWO)
296 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrevDWO());
Spyridoula Gravani364b5352017-07-20 02:06:52 +0000297 return NumErrors == 0;
298}
299
Paul Robinson508b0812018-08-08 23:50:22 +0000300unsigned DWARFVerifier::verifyUnitSection(const DWARFSection &S,
301 DWARFSectionKind SectionKind) {
Rafael Espindolac398e672017-07-19 22:27:28 +0000302 const DWARFObject &DObj = DCtx.getDWARFObj();
Paul Robinson508b0812018-08-08 23:50:22 +0000303 DWARFDataExtractor DebugInfoData(DObj, S, DCtx.isLittleEndian(), 0);
304 unsigned NumDebugInfoErrors = 0;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000305 uint32_t OffsetStart = 0, Offset = 0, UnitIdx = 0;
306 uint8_t UnitType = 0;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000307 bool isUnitDWARF64 = false;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000308 bool isHeaderChainValid = true;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000309 bool hasDIE = DebugInfoData.isValidOffset(Offset);
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000310 DWARFUnitVector TypeUnitVector;
311 DWARFUnitVector CompileUnitVector;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000312 while (hasDIE) {
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000313 OffsetStart = Offset;
314 if (!verifyUnitHeader(DebugInfoData, &Offset, UnitIdx, UnitType,
315 isUnitDWARF64)) {
316 isHeaderChainValid = false;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000317 if (isUnitDWARF64)
318 break;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000319 } else {
Paul Robinson5f53f072018-05-14 20:32:31 +0000320 DWARFUnitHeader Header;
Paul Robinson508b0812018-08-08 23:50:22 +0000321 Header.extract(DCtx, DebugInfoData, &OffsetStart, SectionKind);
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000322 DWARFUnit *Unit;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000323 switch (UnitType) {
324 case dwarf::DW_UT_type:
325 case dwarf::DW_UT_split_type: {
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000326 Unit = TypeUnitVector.addUnit(llvm::make_unique<DWARFTypeUnit>(
Paul Robinson508b0812018-08-08 23:50:22 +0000327 DCtx, S, Header, DCtx.getDebugAbbrev(), &DObj.getRangeSection(),
328 DObj.getStringSection(), DObj.getStringOffsetSection(),
329 &DObj.getAppleObjCSection(), DObj.getLineSection(),
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000330 DCtx.isLittleEndian(), false, TypeUnitVector));
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000331 break;
332 }
333 case dwarf::DW_UT_skeleton:
334 case dwarf::DW_UT_split_compile:
335 case dwarf::DW_UT_compile:
336 case dwarf::DW_UT_partial:
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000337 // UnitType = 0 means that we are verifying a compile unit in DWARF v4.
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000338 case 0: {
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000339 Unit = CompileUnitVector.addUnit(llvm::make_unique<DWARFCompileUnit>(
Paul Robinson508b0812018-08-08 23:50:22 +0000340 DCtx, S, Header, DCtx.getDebugAbbrev(), &DObj.getRangeSection(),
341 DObj.getStringSection(), DObj.getStringOffsetSection(),
342 &DObj.getAppleObjCSection(), DObj.getLineSection(),
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000343 DCtx.isLittleEndian(), false, CompileUnitVector));
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000344 break;
345 }
346 default: { llvm_unreachable("Invalid UnitType."); }
347 }
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000348 NumDebugInfoErrors += verifyUnitContents(*Unit);
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000349 }
350 hasDIE = DebugInfoData.isValidOffset(Offset);
351 ++UnitIdx;
352 }
353 if (UnitIdx == 0 && !hasDIE) {
Paul Robinson508b0812018-08-08 23:50:22 +0000354 warn() << "Section is empty.\n";
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000355 isHeaderChainValid = true;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000356 }
Paul Robinson508b0812018-08-08 23:50:22 +0000357 if (!isHeaderChainValid)
358 ++NumDebugInfoErrors;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000359 NumDebugInfoErrors += verifyDebugInfoReferences();
Paul Robinson508b0812018-08-08 23:50:22 +0000360 return NumDebugInfoErrors;
361}
362
363bool DWARFVerifier::handleDebugInfo() {
364 const DWARFObject &DObj = DCtx.getDWARFObj();
365
366 OS << "Verifying .debug_info Unit Header Chain...\n";
367 unsigned result = verifyUnitSection(DObj.getInfoSection(), DW_SECT_INFO);
368
369 OS << "Verifying .debug_types Unit Header Chain...\n";
370 DObj.forEachTypesSections([&](const DWARFSection &S) {
371 result += verifyUnitSection(S, DW_SECT_TYPES);
372 });
373 return result == 0;
Spyridoula Gravani890eedc2017-07-13 23:25:24 +0000374}
375
Jonas Devlieghere58910602017-09-14 11:33:42 +0000376unsigned DWARFVerifier::verifyDieRanges(const DWARFDie &Die,
377 DieRangeInfo &ParentRI) {
Spyridoula Gravanie0ba4152017-07-24 21:04:11 +0000378 unsigned NumErrors = 0;
Jonas Devlieghere58910602017-09-14 11:33:42 +0000379
380 if (!Die.isValid())
381 return NumErrors;
382
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000383 auto RangesOrError = Die.getAddressRanges();
384 if (!RangesOrError) {
385 // FIXME: Report the error.
386 ++NumErrors;
387 llvm::consumeError(RangesOrError.takeError());
388 return NumErrors;
389 }
Jonas Devlieghere58910602017-09-14 11:33:42 +0000390
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000391 DWARFAddressRangesVector Ranges = RangesOrError.get();
Jonas Devlieghere58910602017-09-14 11:33:42 +0000392 // Build RI for this DIE and check that ranges within this DIE do not
393 // overlap.
394 DieRangeInfo RI(Die);
395 for (auto Range : Ranges) {
396 if (!Range.valid()) {
Spyridoula Gravanie0ba4152017-07-24 21:04:11 +0000397 ++NumErrors;
Jonas Devliegherea15f25d32017-09-29 15:41:22 +0000398 error() << "Invalid address range " << Range << "\n";
Jonas Devlieghere58910602017-09-14 11:33:42 +0000399 continue;
400 }
401
402 // Verify that ranges don't intersect.
403 const auto IntersectingRange = RI.insert(Range);
404 if (IntersectingRange != RI.Ranges.end()) {
405 ++NumErrors;
Jonas Devliegherea15f25d32017-09-29 15:41:22 +0000406 error() << "DIE has overlapping address ranges: " << Range << " and "
407 << *IntersectingRange << "\n";
Jonas Devlieghere58910602017-09-14 11:33:42 +0000408 break;
Spyridoula Gravanie0ba4152017-07-24 21:04:11 +0000409 }
410 }
Jonas Devlieghere58910602017-09-14 11:33:42 +0000411
412 // Verify that children don't intersect.
413 const auto IntersectingChild = ParentRI.insert(RI);
414 if (IntersectingChild != ParentRI.Children.end()) {
415 ++NumErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000416 error() << "DIEs have overlapping address ranges:";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000417 dump(Die);
418 dump(IntersectingChild->Die) << '\n';
Jonas Devlieghere58910602017-09-14 11:33:42 +0000419 }
420
421 // Verify that ranges are contained within their parent.
422 bool ShouldBeContained = !Ranges.empty() && !ParentRI.Ranges.empty() &&
423 !(Die.getTag() == DW_TAG_subprogram &&
424 ParentRI.Die.getTag() == DW_TAG_subprogram);
425 if (ShouldBeContained && !ParentRI.contains(RI)) {
426 ++NumErrors;
Jonas Devlieghere63eca152018-05-22 17:38:03 +0000427 error() << "DIE address ranges are not contained in its parent's ranges:";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000428 dump(ParentRI.Die);
429 dump(Die, 2) << '\n';
Jonas Devlieghere58910602017-09-14 11:33:42 +0000430 }
431
432 // Recursively check children.
433 for (DWARFDie Child : Die)
434 NumErrors += verifyDieRanges(Child, RI);
435
Spyridoula Gravanie0ba4152017-07-24 21:04:11 +0000436 return NumErrors;
437}
438
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000439unsigned DWARFVerifier::verifyDebugInfoAttribute(const DWARFDie &Die,
440 DWARFAttribute &AttrValue) {
441 unsigned NumErrors = 0;
George Rimar144e4c52017-10-27 10:42:04 +0000442 auto ReportError = [&](const Twine &TitleMsg) {
443 ++NumErrors;
444 error() << TitleMsg << '\n';
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000445 dump(Die) << '\n';
George Rimar144e4c52017-10-27 10:42:04 +0000446 };
447
448 const DWARFObject &DObj = DCtx.getDWARFObj();
Greg Claytonc5b2d562017-05-03 18:25:46 +0000449 const auto Attr = AttrValue.Attr;
450 switch (Attr) {
451 case DW_AT_ranges:
452 // Make sure the offset in the DW_AT_ranges attribute is valid.
453 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) {
George Rimar144e4c52017-10-27 10:42:04 +0000454 if (*SectionOffset >= DObj.getRangeSection().Data.size())
455 ReportError("DW_AT_ranges offset is beyond .debug_ranges bounds:");
456 break;
Greg Claytonc5b2d562017-05-03 18:25:46 +0000457 }
George Rimar144e4c52017-10-27 10:42:04 +0000458 ReportError("DIE has invalid DW_AT_ranges encoding:");
Greg Claytonc5b2d562017-05-03 18:25:46 +0000459 break;
460 case DW_AT_stmt_list:
461 // Make sure the offset in the DW_AT_stmt_list attribute is valid.
462 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) {
George Rimar144e4c52017-10-27 10:42:04 +0000463 if (*SectionOffset >= DObj.getLineSection().Data.size())
464 ReportError("DW_AT_stmt_list offset is beyond .debug_line bounds: " +
George Rimar3d07f602017-10-27 10:58:04 +0000465 llvm::formatv("{0:x8}", *SectionOffset));
George Rimar144e4c52017-10-27 10:42:04 +0000466 break;
Greg Claytonc5b2d562017-05-03 18:25:46 +0000467 }
George Rimar144e4c52017-10-27 10:42:04 +0000468 ReportError("DIE has invalid DW_AT_stmt_list encoding:");
Greg Claytonc5b2d562017-05-03 18:25:46 +0000469 break;
George Rimar144e4c52017-10-27 10:42:04 +0000470 case DW_AT_location: {
Jonas Devlieghere7e0b0232018-05-22 17:37:27 +0000471 auto VerifyLocationExpr = [&](StringRef D) {
Jonas Devlieghere7d4a9742018-02-17 13:06:37 +0000472 DWARFUnit *U = Die.getDwarfUnit();
473 DataExtractor Data(D, DCtx.isLittleEndian(), 0);
474 DWARFExpression Expression(Data, U->getVersion(),
475 U->getAddressByteSize());
476 bool Error = llvm::any_of(Expression, [](DWARFExpression::Operation &Op) {
477 return Op.isError();
478 });
479 if (Error)
480 ReportError("DIE contains invalid DWARF expression:");
481 };
482 if (Optional<ArrayRef<uint8_t>> Expr = AttrValue.Value.getAsBlock()) {
483 // Verify inlined location.
Jonas Devlieghere7e0b0232018-05-22 17:37:27 +0000484 VerifyLocationExpr(llvm::toStringRef(*Expr));
485 } else if (auto LocOffset = AttrValue.Value.getAsSectionOffset()) {
Jonas Devlieghere7d4a9742018-02-17 13:06:37 +0000486 // Verify location list.
487 if (auto DebugLoc = DCtx.getDebugLoc())
488 if (auto LocList = DebugLoc->getLocationListAtOffset(*LocOffset))
489 for (const auto &Entry : LocList->Entries)
Jonas Devlieghere7e0b0232018-05-22 17:37:27 +0000490 VerifyLocationExpr({Entry.Loc.data(), Entry.Loc.size()});
George Rimar144e4c52017-10-27 10:42:04 +0000491 }
George Rimar144e4c52017-10-27 10:42:04 +0000492 break;
493 }
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000494 case DW_AT_specification:
495 case DW_AT_abstract_origin: {
496 if (auto ReferencedDie = Die.getAttributeValueAsReferencedDie(Attr)) {
497 auto DieTag = Die.getTag();
498 auto RefTag = ReferencedDie.getTag();
499 if (DieTag == RefTag)
500 break;
501 if (DieTag == DW_TAG_inlined_subroutine && RefTag == DW_TAG_subprogram)
502 break;
503 if (DieTag == DW_TAG_variable && RefTag == DW_TAG_member)
504 break;
505 ReportError("DIE with tag " + TagString(DieTag) + " has " +
506 AttributeString(Attr) +
507 " that points to DIE with "
508 "incompatible tag " +
509 TagString(RefTag));
510 }
David Bolvansky7e30c912018-10-10 20:10:37 +0000511 break;
Jonas Devlieghere7ef2c202018-09-21 07:49:29 +0000512 }
Jonas Devlieghereb3227422018-09-21 07:50:21 +0000513 case DW_AT_type: {
514 DWARFDie TypeDie = Die.getAttributeValueAsReferencedDie(DW_AT_type);
515 if (TypeDie && !isType(TypeDie.getTag())) {
516 ReportError("DIE has " + AttributeString(Attr) +
517 " with incompatible tag " + TagString(TypeDie.getTag()));
Jonas Devlieghereb3227422018-09-21 07:50:21 +0000518 }
David Bolvansky7e30c912018-10-10 20:10:37 +0000519 break;
Jonas Devlieghereb3227422018-09-21 07:50:21 +0000520 }
Greg Claytonc5b2d562017-05-03 18:25:46 +0000521 default:
522 break;
523 }
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000524 return NumErrors;
Greg Claytonc5b2d562017-05-03 18:25:46 +0000525}
Greg Claytonb8c162b2017-05-03 16:02:29 +0000526
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000527unsigned DWARFVerifier::verifyDebugInfoForm(const DWARFDie &Die,
528 DWARFAttribute &AttrValue) {
Rafael Espindolac398e672017-07-19 22:27:28 +0000529 const DWARFObject &DObj = DCtx.getDWARFObj();
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000530 unsigned NumErrors = 0;
Greg Claytonc5b2d562017-05-03 18:25:46 +0000531 const auto Form = AttrValue.Value.getForm();
532 switch (Form) {
533 case DW_FORM_ref1:
534 case DW_FORM_ref2:
535 case DW_FORM_ref4:
536 case DW_FORM_ref8:
537 case DW_FORM_ref_udata: {
538 // Verify all CU relative references are valid CU offsets.
539 Optional<uint64_t> RefVal = AttrValue.Value.getAsReference();
540 assert(RefVal);
541 if (RefVal) {
542 auto DieCU = Die.getDwarfUnit();
543 auto CUSize = DieCU->getNextUnitOffset() - DieCU->getOffset();
544 auto CUOffset = AttrValue.Value.getRawUValue();
545 if (CUOffset >= CUSize) {
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000546 ++NumErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000547 error() << FormEncodingString(Form) << " CU offset "
548 << format("0x%08" PRIx64, CUOffset)
549 << " is invalid (must be less than CU size of "
550 << format("0x%08" PRIx32, CUSize) << "):\n";
Adrian Prantld3f9f212017-09-20 17:44:00 +0000551 Die.dump(OS, 0, DumpOpts);
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000552 dump(Die) << '\n';
Greg Claytonc5b2d562017-05-03 18:25:46 +0000553 } else {
554 // Valid reference, but we will verify it points to an actual
555 // DIE later.
556 ReferenceToDIEOffsets[*RefVal].insert(Die.getOffset());
Greg Claytonb8c162b2017-05-03 16:02:29 +0000557 }
558 }
Greg Claytonc5b2d562017-05-03 18:25:46 +0000559 break;
Greg Claytonb8c162b2017-05-03 16:02:29 +0000560 }
Greg Claytonc5b2d562017-05-03 18:25:46 +0000561 case DW_FORM_ref_addr: {
562 // Verify all absolute DIE references have valid offsets in the
563 // .debug_info section.
564 Optional<uint64_t> RefVal = AttrValue.Value.getAsReference();
565 assert(RefVal);
566 if (RefVal) {
Rafael Espindolac398e672017-07-19 22:27:28 +0000567 if (*RefVal >= DObj.getInfoSection().Data.size()) {
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000568 ++NumErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000569 error() << "DW_FORM_ref_addr offset beyond .debug_info "
570 "bounds:\n";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000571 dump(Die) << '\n';
Greg Claytonc5b2d562017-05-03 18:25:46 +0000572 } else {
573 // Valid reference, but we will verify it points to an actual
574 // DIE later.
575 ReferenceToDIEOffsets[*RefVal].insert(Die.getOffset());
576 }
577 }
578 break;
579 }
580 case DW_FORM_strp: {
581 auto SecOffset = AttrValue.Value.getAsSectionOffset();
582 assert(SecOffset); // DW_FORM_strp is a section offset.
Rafael Espindolac398e672017-07-19 22:27:28 +0000583 if (SecOffset && *SecOffset >= DObj.getStringSection().size()) {
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000584 ++NumErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000585 error() << "DW_FORM_strp offset beyond .debug_str bounds:\n";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000586 dump(Die) << '\n';
Greg Claytonc5b2d562017-05-03 18:25:46 +0000587 }
588 break;
589 }
590 default:
591 break;
592 }
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000593 return NumErrors;
Greg Claytonc5b2d562017-05-03 18:25:46 +0000594}
Greg Claytonb8c162b2017-05-03 16:02:29 +0000595
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000596unsigned DWARFVerifier::verifyDebugInfoReferences() {
Greg Claytonb8c162b2017-05-03 16:02:29 +0000597 // Take all references and make sure they point to an actual DIE by
598 // getting the DIE by offset and emitting an error
599 OS << "Verifying .debug_info references...\n";
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000600 unsigned NumErrors = 0;
Greg Claytonb8c162b2017-05-03 16:02:29 +0000601 for (auto Pair : ReferenceToDIEOffsets) {
602 auto Die = DCtx.getDIEForOffset(Pair.first);
603 if (Die)
604 continue;
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000605 ++NumErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000606 error() << "invalid DIE reference " << format("0x%08" PRIx64, Pair.first)
607 << ". Offset is in between DIEs:\n";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000608 for (auto Offset : Pair.second)
609 dump(DCtx.getDIEForOffset(Offset)) << '\n';
Greg Claytonb8c162b2017-05-03 16:02:29 +0000610 OS << "\n";
611 }
Spyridoula Gravanif6bd788d2017-07-18 01:00:26 +0000612 return NumErrors;
Greg Claytonb8c162b2017-05-03 16:02:29 +0000613}
614
Greg Claytonc5b2d562017-05-03 18:25:46 +0000615void DWARFVerifier::verifyDebugLineStmtOffsets() {
Greg Claytonb8c162b2017-05-03 16:02:29 +0000616 std::map<uint64_t, DWARFDie> StmtListToDie;
Greg Claytonb8c162b2017-05-03 16:02:29 +0000617 for (const auto &CU : DCtx.compile_units()) {
Greg Claytonc5b2d562017-05-03 18:25:46 +0000618 auto Die = CU->getUnitDIE();
Greg Claytonb8c162b2017-05-03 16:02:29 +0000619 // Get the attribute value as a section offset. No need to produce an
620 // error here if the encoding isn't correct because we validate this in
621 // the .debug_info verifier.
Greg Claytonc5b2d562017-05-03 18:25:46 +0000622 auto StmtSectionOffset = toSectionOffset(Die.find(DW_AT_stmt_list));
Greg Claytonb8c162b2017-05-03 16:02:29 +0000623 if (!StmtSectionOffset)
624 continue;
625 const uint32_t LineTableOffset = *StmtSectionOffset;
Greg Claytonc5b2d562017-05-03 18:25:46 +0000626 auto LineTable = DCtx.getLineTableForUnit(CU.get());
Rafael Espindolac398e672017-07-19 22:27:28 +0000627 if (LineTableOffset < DCtx.getDWARFObj().getLineSection().Data.size()) {
Greg Claytonc5b2d562017-05-03 18:25:46 +0000628 if (!LineTable) {
629 ++NumDebugLineErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000630 error() << ".debug_line[" << format("0x%08" PRIx32, LineTableOffset)
631 << "] was not able to be parsed for CU:\n";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000632 dump(Die) << '\n';
Greg Claytonc5b2d562017-05-03 18:25:46 +0000633 continue;
634 }
635 } else {
636 // Make sure we don't get a valid line table back if the offset is wrong.
637 assert(LineTable == nullptr);
Greg Claytonb8c162b2017-05-03 16:02:29 +0000638 // Skip this line table as it isn't valid. No need to create an error
639 // here because we validate this in the .debug_info verifier.
640 continue;
641 }
Greg Claytonb8c162b2017-05-03 16:02:29 +0000642 auto Iter = StmtListToDie.find(LineTableOffset);
643 if (Iter != StmtListToDie.end()) {
644 ++NumDebugLineErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000645 error() << "two compile unit DIEs, "
646 << format("0x%08" PRIx32, Iter->second.getOffset()) << " and "
647 << format("0x%08" PRIx32, Die.getOffset())
648 << ", have the same DW_AT_stmt_list section offset:\n";
Jonas Devliegheref1f3e732018-09-19 08:08:13 +0000649 dump(Iter->second);
650 dump(Die) << '\n';
Greg Claytonb8c162b2017-05-03 16:02:29 +0000651 // Already verified this line table before, no need to do it again.
652 continue;
653 }
Greg Claytonc5b2d562017-05-03 18:25:46 +0000654 StmtListToDie[LineTableOffset] = Die;
655 }
656}
Greg Claytonb8c162b2017-05-03 16:02:29 +0000657
Greg Claytonc5b2d562017-05-03 18:25:46 +0000658void DWARFVerifier::verifyDebugLineRows() {
659 for (const auto &CU : DCtx.compile_units()) {
660 auto Die = CU->getUnitDIE();
Greg Claytonb8c162b2017-05-03 16:02:29 +0000661 auto LineTable = DCtx.getLineTableForUnit(CU.get());
Greg Claytonc5b2d562017-05-03 18:25:46 +0000662 // If there is no line table we will have created an error in the
663 // .debug_info verifier or in verifyDebugLineStmtOffsets().
664 if (!LineTable)
Greg Claytonb8c162b2017-05-03 16:02:29 +0000665 continue;
Jonas Devliegheref4ed65d2017-09-08 09:48:51 +0000666
667 // Verify prologue.
Greg Claytonb8c162b2017-05-03 16:02:29 +0000668 uint32_t MaxFileIndex = LineTable->Prologue.FileNames.size();
Jonas Devliegheref4ed65d2017-09-08 09:48:51 +0000669 uint32_t MaxDirIndex = LineTable->Prologue.IncludeDirectories.size();
670 uint32_t FileIndex = 1;
671 StringMap<uint16_t> FullPathMap;
672 for (const auto &FileName : LineTable->Prologue.FileNames) {
673 // Verify directory index.
674 if (FileName.DirIdx > MaxDirIndex) {
675 ++NumDebugLineErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000676 error() << ".debug_line["
677 << format("0x%08" PRIx64,
678 *toSectionOffset(Die.find(DW_AT_stmt_list)))
679 << "].prologue.file_names[" << FileIndex
680 << "].dir_idx contains an invalid index: " << FileName.DirIdx
681 << "\n";
Jonas Devliegheref4ed65d2017-09-08 09:48:51 +0000682 }
683
684 // Check file paths for duplicates.
685 std::string FullPath;
686 const bool HasFullPath = LineTable->getFileNameByIndex(
687 FileIndex, CU->getCompilationDir(),
688 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath);
689 assert(HasFullPath && "Invalid index?");
690 (void)HasFullPath;
691 auto It = FullPathMap.find(FullPath);
692 if (It == FullPathMap.end())
693 FullPathMap[FullPath] = FileIndex;
694 else if (It->second != FileIndex) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000695 warn() << ".debug_line["
696 << format("0x%08" PRIx64,
697 *toSectionOffset(Die.find(DW_AT_stmt_list)))
698 << "].prologue.file_names[" << FileIndex
699 << "] is a duplicate of file_names[" << It->second << "]\n";
Jonas Devliegheref4ed65d2017-09-08 09:48:51 +0000700 }
701
702 FileIndex++;
703 }
704
705 // Verify rows.
Greg Claytonb8c162b2017-05-03 16:02:29 +0000706 uint64_t PrevAddress = 0;
707 uint32_t RowIndex = 0;
708 for (const auto &Row : LineTable->Rows) {
Jonas Devliegheref4ed65d2017-09-08 09:48:51 +0000709 // Verify row address.
Greg Claytonb8c162b2017-05-03 16:02:29 +0000710 if (Row.Address < PrevAddress) {
711 ++NumDebugLineErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000712 error() << ".debug_line["
713 << format("0x%08" PRIx64,
714 *toSectionOffset(Die.find(DW_AT_stmt_list)))
715 << "] row[" << RowIndex
716 << "] decreases in address from previous row:\n";
Greg Claytonb8c162b2017-05-03 16:02:29 +0000717
718 DWARFDebugLine::Row::dumpTableHeader(OS);
719 if (RowIndex > 0)
720 LineTable->Rows[RowIndex - 1].dump(OS);
721 Row.dump(OS);
722 OS << '\n';
723 }
724
Jonas Devliegheref4ed65d2017-09-08 09:48:51 +0000725 // Verify file index.
Greg Claytonb8c162b2017-05-03 16:02:29 +0000726 if (Row.File > MaxFileIndex) {
727 ++NumDebugLineErrors;
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000728 error() << ".debug_line["
729 << format("0x%08" PRIx64,
730 *toSectionOffset(Die.find(DW_AT_stmt_list)))
731 << "][" << RowIndex << "] has invalid file index " << Row.File
732 << " (valid values are [1," << MaxFileIndex << "]):\n";
Greg Claytonb8c162b2017-05-03 16:02:29 +0000733 DWARFDebugLine::Row::dumpTableHeader(OS);
734 Row.dump(OS);
735 OS << '\n';
736 }
737 if (Row.EndSequence)
738 PrevAddress = 0;
739 else
740 PrevAddress = Row.Address;
741 ++RowIndex;
742 }
743 }
Greg Claytonc5b2d562017-05-03 18:25:46 +0000744}
745
746bool DWARFVerifier::handleDebugLine() {
747 NumDebugLineErrors = 0;
748 OS << "Verifying .debug_line...\n";
749 verifyDebugLineStmtOffsets();
750 verifyDebugLineRows();
Greg Claytonb8c162b2017-05-03 16:02:29 +0000751 return NumDebugLineErrors == 0;
752}
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000753
Pavel Labath9b36fd22018-01-22 13:17:23 +0000754unsigned DWARFVerifier::verifyAppleAccelTable(const DWARFSection *AccelSection,
755 DataExtractor *StrData,
756 const char *SectionName) {
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000757 unsigned NumErrors = 0;
758 DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), *AccelSection,
759 DCtx.isLittleEndian(), 0);
Pavel Labath9b36fd22018-01-22 13:17:23 +0000760 AppleAcceleratorTable AccelTable(AccelSectionData, *StrData);
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000761
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000762 OS << "Verifying " << SectionName << "...\n";
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000763
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000764 // Verify that the fixed part of the header is not too short.
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000765 if (!AccelSectionData.isValidOffset(AccelTable.getSizeHdr())) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000766 error() << "Section is too small to fit a section header.\n";
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000767 return 1;
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000768 }
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000769
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000770 // Verify that the section is not too short.
Jonas Devlieghereba915892017-12-11 18:22:47 +0000771 if (Error E = AccelTable.extract()) {
772 error() << toString(std::move(E)) << '\n';
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000773 return 1;
774 }
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000775
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000776 // Verify that all buckets have a valid hash index or are empty.
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000777 uint32_t NumBuckets = AccelTable.getNumBuckets();
778 uint32_t NumHashes = AccelTable.getNumHashes();
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000779
780 uint32_t BucketsOffset =
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000781 AccelTable.getSizeHdr() + AccelTable.getHeaderDataLength();
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000782 uint32_t HashesBase = BucketsOffset + NumBuckets * 4;
783 uint32_t OffsetsBase = HashesBase + NumHashes * 4;
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000784 for (uint32_t BucketIdx = 0; BucketIdx < NumBuckets; ++BucketIdx) {
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000785 uint32_t HashIdx = AccelSectionData.getU32(&BucketsOffset);
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000786 if (HashIdx >= NumHashes && HashIdx != UINT32_MAX) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000787 error() << format("Bucket[%d] has invalid hash index: %u.\n", BucketIdx,
788 HashIdx);
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000789 ++NumErrors;
Spyridoula Gravanie41823b2017-06-14 00:17:55 +0000790 }
791 }
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000792 uint32_t NumAtoms = AccelTable.getAtomsDesc().size();
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000793 if (NumAtoms == 0) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000794 error() << "No atoms: failed to read HashData.\n";
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000795 return 1;
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000796 }
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000797 if (!AccelTable.validateForms()) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000798 error() << "Unsupported form: failed to read HashData.\n";
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000799 return 1;
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000800 }
801
802 for (uint32_t HashIdx = 0; HashIdx < NumHashes; ++HashIdx) {
803 uint32_t HashOffset = HashesBase + 4 * HashIdx;
804 uint32_t DataOffset = OffsetsBase + 4 * HashIdx;
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000805 uint32_t Hash = AccelSectionData.getU32(&HashOffset);
806 uint32_t HashDataOffset = AccelSectionData.getU32(&DataOffset);
807 if (!AccelSectionData.isValidOffsetForDataOfSize(HashDataOffset,
808 sizeof(uint64_t))) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000809 error() << format("Hash[%d] has invalid HashData offset: 0x%08x.\n",
810 HashIdx, HashDataOffset);
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000811 ++NumErrors;
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000812 }
813
814 uint32_t StrpOffset;
815 uint32_t StringOffset;
816 uint32_t StringCount = 0;
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000817 unsigned Offset;
818 unsigned Tag;
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000819 while ((StrpOffset = AccelSectionData.getU32(&HashDataOffset)) != 0) {
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000820 const uint32_t NumHashDataObjects =
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000821 AccelSectionData.getU32(&HashDataOffset);
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000822 for (uint32_t HashDataIdx = 0; HashDataIdx < NumHashDataObjects;
823 ++HashDataIdx) {
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000824 std::tie(Offset, Tag) = AccelTable.readAtoms(HashDataOffset);
825 auto Die = DCtx.getDIEForOffset(Offset);
826 if (!Die) {
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000827 const uint32_t BucketIdx =
828 NumBuckets ? (Hash % NumBuckets) : UINT32_MAX;
829 StringOffset = StrpOffset;
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000830 const char *Name = StrData->getCStr(&StringOffset);
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000831 if (!Name)
832 Name = "<NULL>";
833
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000834 error() << format(
835 "%s Bucket[%d] Hash[%d] = 0x%08x "
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000836 "Str[%u] = 0x%08x "
837 "DIE[%d] = 0x%08x is not a valid DIE offset for \"%s\".\n",
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000838 SectionName, BucketIdx, HashIdx, Hash, StringCount, StrpOffset,
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000839 HashDataIdx, Offset, Name);
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000840
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000841 ++NumErrors;
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000842 continue;
843 }
844 if ((Tag != dwarf::DW_TAG_null) && (Die.getTag() != Tag)) {
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +0000845 error() << "Tag " << dwarf::TagString(Tag)
846 << " in accelerator table does not match Tag "
847 << dwarf::TagString(Die.getTag()) << " of DIE[" << HashDataIdx
848 << "].\n";
Spyridoula Gravani70d35e12017-07-31 18:01:16 +0000849 ++NumErrors;
Spyridoula Gravani837c1102017-06-29 20:13:05 +0000850 }
851 }
852 ++StringCount;
853 }
854 }
Spyridoula Gravanidc635f42017-07-26 00:52:31 +0000855 return NumErrors;
856}
857
Pavel Labathb136c392018-03-08 15:34:42 +0000858unsigned
859DWARFVerifier::verifyDebugNamesCULists(const DWARFDebugNames &AccelTable) {
860 // A map from CU offset to the (first) Name Index offset which claims to index
861 // this CU.
862 DenseMap<uint32_t, uint32_t> CUMap;
863 const uint32_t NotIndexed = std::numeric_limits<uint32_t>::max();
864
865 CUMap.reserve(DCtx.getNumCompileUnits());
866 for (const auto &CU : DCtx.compile_units())
867 CUMap[CU->getOffset()] = NotIndexed;
868
869 unsigned NumErrors = 0;
870 for (const DWARFDebugNames::NameIndex &NI : AccelTable) {
871 if (NI.getCUCount() == 0) {
872 error() << formatv("Name Index @ {0:x} does not index any CU\n",
873 NI.getUnitOffset());
874 ++NumErrors;
875 continue;
876 }
877 for (uint32_t CU = 0, End = NI.getCUCount(); CU < End; ++CU) {
878 uint32_t Offset = NI.getCUOffset(CU);
879 auto Iter = CUMap.find(Offset);
880
881 if (Iter == CUMap.end()) {
882 error() << formatv(
883 "Name Index @ {0:x} references a non-existing CU @ {1:x}\n",
884 NI.getUnitOffset(), Offset);
885 ++NumErrors;
886 continue;
887 }
888
889 if (Iter->second != NotIndexed) {
890 error() << formatv("Name Index @ {0:x} references a CU @ {1:x}, but "
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +0000891 "this CU is already indexed by Name Index @ {2:x}\n",
892 NI.getUnitOffset(), Offset, Iter->second);
Pavel Labathb136c392018-03-08 15:34:42 +0000893 continue;
894 }
895 Iter->second = NI.getUnitOffset();
896 }
897 }
898
899 for (const auto &KV : CUMap) {
900 if (KV.second == NotIndexed)
901 warn() << formatv("CU @ {0:x} not covered by any Name Index\n", KV.first);
902 }
903
904 return NumErrors;
905}
906
Pavel Labath906b7772018-03-16 10:02:16 +0000907unsigned
908DWARFVerifier::verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI,
909 const DataExtractor &StrData) {
910 struct BucketInfo {
911 uint32_t Bucket;
912 uint32_t Index;
913
914 constexpr BucketInfo(uint32_t Bucket, uint32_t Index)
915 : Bucket(Bucket), Index(Index) {}
916 bool operator<(const BucketInfo &RHS) const { return Index < RHS.Index; };
917 };
918
919 uint32_t NumErrors = 0;
920 if (NI.getBucketCount() == 0) {
921 warn() << formatv("Name Index @ {0:x} does not contain a hash table.\n",
922 NI.getUnitOffset());
923 return NumErrors;
924 }
925
926 // Build up a list of (Bucket, Index) pairs. We use this later to verify that
927 // each Name is reachable from the appropriate bucket.
928 std::vector<BucketInfo> BucketStarts;
929 BucketStarts.reserve(NI.getBucketCount() + 1);
930 for (uint32_t Bucket = 0, End = NI.getBucketCount(); Bucket < End; ++Bucket) {
931 uint32_t Index = NI.getBucketArrayEntry(Bucket);
932 if (Index > NI.getNameCount()) {
933 error() << formatv("Bucket {0} of Name Index @ {1:x} contains invalid "
934 "value {2}. Valid range is [0, {3}].\n",
935 Bucket, NI.getUnitOffset(), Index, NI.getNameCount());
936 ++NumErrors;
937 continue;
938 }
939 if (Index > 0)
940 BucketStarts.emplace_back(Bucket, Index);
941 }
942
943 // If there were any buckets with invalid values, skip further checks as they
944 // will likely produce many errors which will only confuse the actual root
945 // problem.
946 if (NumErrors > 0)
947 return NumErrors;
948
949 // Sort the list in the order of increasing "Index" entries.
950 array_pod_sort(BucketStarts.begin(), BucketStarts.end());
951
952 // Insert a sentinel entry at the end, so we can check that the end of the
953 // table is covered in the loop below.
954 BucketStarts.emplace_back(NI.getBucketCount(), NI.getNameCount() + 1);
955
956 // Loop invariant: NextUncovered is the (1-based) index of the first Name
957 // which is not reachable by any of the buckets we processed so far (and
958 // hasn't been reported as uncovered).
959 uint32_t NextUncovered = 1;
960 for (const BucketInfo &B : BucketStarts) {
961 // Under normal circumstances B.Index be equal to NextUncovered, but it can
962 // be less if a bucket points to names which are already known to be in some
963 // bucket we processed earlier. In that case, we won't trigger this error,
964 // but report the mismatched hash value error instead. (We know the hash
965 // will not match because we have already verified that the name's hash
966 // puts it into the previous bucket.)
967 if (B.Index > NextUncovered) {
968 error() << formatv("Name Index @ {0:x}: Name table entries [{1}, {2}] "
969 "are not covered by the hash table.\n",
970 NI.getUnitOffset(), NextUncovered, B.Index - 1);
971 ++NumErrors;
972 }
973 uint32_t Idx = B.Index;
974
975 // The rest of the checks apply only to non-sentinel entries.
976 if (B.Bucket == NI.getBucketCount())
977 break;
978
979 // This triggers if a non-empty bucket points to a name with a mismatched
980 // hash. Clients are likely to interpret this as an empty bucket, because a
981 // mismatched hash signals the end of a bucket, but if this is indeed an
982 // empty bucket, the producer should have signalled this by marking the
983 // bucket as empty.
984 uint32_t FirstHash = NI.getHashArrayEntry(Idx);
985 if (FirstHash % NI.getBucketCount() != B.Bucket) {
986 error() << formatv(
987 "Name Index @ {0:x}: Bucket {1} is not empty but points to a "
988 "mismatched hash value {2:x} (belonging to bucket {3}).\n",
989 NI.getUnitOffset(), B.Bucket, FirstHash,
990 FirstHash % NI.getBucketCount());
991 ++NumErrors;
992 }
993
994 // This find the end of this bucket and also verifies that all the hashes in
995 // this bucket are correct by comparing the stored hashes to the ones we
996 // compute ourselves.
997 while (Idx <= NI.getNameCount()) {
998 uint32_t Hash = NI.getHashArrayEntry(Idx);
999 if (Hash % NI.getBucketCount() != B.Bucket)
1000 break;
1001
Pavel Labathd6ca0632018-06-01 10:33:11 +00001002 const char *Str = NI.getNameTableEntry(Idx).getString();
Pavel Labath906b7772018-03-16 10:02:16 +00001003 if (caseFoldingDjbHash(Str) != Hash) {
1004 error() << formatv("Name Index @ {0:x}: String ({1}) at index {2} "
1005 "hashes to {3:x}, but "
1006 "the Name Index hash is {4:x}\n",
1007 NI.getUnitOffset(), Str, Idx,
1008 caseFoldingDjbHash(Str), Hash);
1009 ++NumErrors;
1010 }
1011
1012 ++Idx;
1013 }
1014 NextUncovered = std::max(NextUncovered, Idx);
1015 }
1016 return NumErrors;
1017}
1018
Pavel Labath79cd9422018-03-22 14:50:44 +00001019unsigned DWARFVerifier::verifyNameIndexAttribute(
1020 const DWARFDebugNames::NameIndex &NI, const DWARFDebugNames::Abbrev &Abbr,
1021 DWARFDebugNames::AttributeEncoding AttrEnc) {
1022 StringRef FormName = dwarf::FormEncodingString(AttrEnc.Form);
1023 if (FormName.empty()) {
1024 error() << formatv("NameIndex @ {0:x}: Abbreviation {1:x}: {2} uses an "
1025 "unknown form: {3}.\n",
1026 NI.getUnitOffset(), Abbr.Code, AttrEnc.Index,
1027 AttrEnc.Form);
1028 return 1;
1029 }
1030
1031 if (AttrEnc.Index == DW_IDX_type_hash) {
1032 if (AttrEnc.Form != dwarf::DW_FORM_data8) {
1033 error() << formatv(
1034 "NameIndex @ {0:x}: Abbreviation {1:x}: DW_IDX_type_hash "
1035 "uses an unexpected form {2} (should be {3}).\n",
1036 NI.getUnitOffset(), Abbr.Code, AttrEnc.Form, dwarf::DW_FORM_data8);
1037 return 1;
1038 }
1039 }
1040
1041 // A list of known index attributes and their expected form classes.
1042 // DW_IDX_type_hash is handled specially in the check above, as it has a
1043 // specific form (not just a form class) we should expect.
1044 struct FormClassTable {
1045 dwarf::Index Index;
1046 DWARFFormValue::FormClass Class;
1047 StringLiteral ClassName;
1048 };
1049 static constexpr FormClassTable Table[] = {
1050 {dwarf::DW_IDX_compile_unit, DWARFFormValue::FC_Constant, {"constant"}},
1051 {dwarf::DW_IDX_type_unit, DWARFFormValue::FC_Constant, {"constant"}},
1052 {dwarf::DW_IDX_die_offset, DWARFFormValue::FC_Reference, {"reference"}},
1053 {dwarf::DW_IDX_parent, DWARFFormValue::FC_Constant, {"constant"}},
1054 };
1055
1056 ArrayRef<FormClassTable> TableRef(Table);
1057 auto Iter = find_if(TableRef, [AttrEnc](const FormClassTable &T) {
1058 return T.Index == AttrEnc.Index;
1059 });
1060 if (Iter == TableRef.end()) {
1061 warn() << formatv("NameIndex @ {0:x}: Abbreviation {1:x} contains an "
1062 "unknown index attribute: {2}.\n",
1063 NI.getUnitOffset(), Abbr.Code, AttrEnc.Index);
1064 return 0;
1065 }
1066
1067 if (!DWARFFormValue(AttrEnc.Form).isFormClass(Iter->Class)) {
1068 error() << formatv("NameIndex @ {0:x}: Abbreviation {1:x}: {2} uses an "
1069 "unexpected form {3} (expected form class {4}).\n",
1070 NI.getUnitOffset(), Abbr.Code, AttrEnc.Index,
1071 AttrEnc.Form, Iter->ClassName);
1072 return 1;
1073 }
1074 return 0;
1075}
1076
1077unsigned
1078DWARFVerifier::verifyNameIndexAbbrevs(const DWARFDebugNames::NameIndex &NI) {
Pavel Labathc9f07b02018-04-06 13:34:12 +00001079 if (NI.getLocalTUCount() + NI.getForeignTUCount() > 0) {
1080 warn() << formatv("Name Index @ {0:x}: Verifying indexes of type units is "
1081 "not currently supported.\n",
1082 NI.getUnitOffset());
1083 return 0;
1084 }
1085
Pavel Labath79cd9422018-03-22 14:50:44 +00001086 unsigned NumErrors = 0;
1087 for (const auto &Abbrev : NI.getAbbrevs()) {
1088 StringRef TagName = dwarf::TagString(Abbrev.Tag);
1089 if (TagName.empty()) {
1090 warn() << formatv("NameIndex @ {0:x}: Abbreviation {1:x} references an "
1091 "unknown tag: {2}.\n",
1092 NI.getUnitOffset(), Abbrev.Code, Abbrev.Tag);
1093 }
1094 SmallSet<unsigned, 5> Attributes;
1095 for (const auto &AttrEnc : Abbrev.Attributes) {
1096 if (!Attributes.insert(AttrEnc.Index).second) {
1097 error() << formatv("NameIndex @ {0:x}: Abbreviation {1:x} contains "
1098 "multiple {2} attributes.\n",
1099 NI.getUnitOffset(), Abbrev.Code, AttrEnc.Index);
1100 ++NumErrors;
1101 continue;
1102 }
1103 NumErrors += verifyNameIndexAttribute(NI, Abbrev, AttrEnc);
1104 }
Pavel Labathc9f07b02018-04-06 13:34:12 +00001105
1106 if (NI.getCUCount() > 1 && !Attributes.count(dwarf::DW_IDX_compile_unit)) {
1107 error() << formatv("NameIndex @ {0:x}: Indexing multiple compile units "
1108 "and abbreviation {1:x} has no {2} attribute.\n",
1109 NI.getUnitOffset(), Abbrev.Code,
1110 dwarf::DW_IDX_compile_unit);
1111 ++NumErrors;
1112 }
1113 if (!Attributes.count(dwarf::DW_IDX_die_offset)) {
1114 error() << formatv(
1115 "NameIndex @ {0:x}: Abbreviation {1:x} has no {2} attribute.\n",
1116 NI.getUnitOffset(), Abbrev.Code, dwarf::DW_IDX_die_offset);
1117 ++NumErrors;
1118 }
Pavel Labath79cd9422018-03-22 14:50:44 +00001119 }
1120 return NumErrors;
1121}
1122
Jonas Devlieghere6e5c7e62018-09-03 12:12:17 +00001123static SmallVector<StringRef, 2> getNames(const DWARFDie &DIE,
1124 bool IncludeLinkageName = true) {
Pavel Labathc9f07b02018-04-06 13:34:12 +00001125 SmallVector<StringRef, 2> Result;
1126 if (const char *Str = DIE.getName(DINameKind::ShortName))
1127 Result.emplace_back(Str);
1128 else if (DIE.getTag() == dwarf::DW_TAG_namespace)
1129 Result.emplace_back("(anonymous namespace)");
1130
Jonas Devlieghere6e5c7e62018-09-03 12:12:17 +00001131 if (IncludeLinkageName) {
1132 if (const char *Str = DIE.getName(DINameKind::LinkageName)) {
1133 if (Result.empty() || Result[0] != Str)
1134 Result.emplace_back(Str);
1135 }
Pavel Labathc9f07b02018-04-06 13:34:12 +00001136 }
1137
1138 return Result;
1139}
1140
Pavel Labathd6ca0632018-06-01 10:33:11 +00001141unsigned DWARFVerifier::verifyNameIndexEntries(
1142 const DWARFDebugNames::NameIndex &NI,
1143 const DWARFDebugNames::NameTableEntry &NTE) {
Pavel Labathc9f07b02018-04-06 13:34:12 +00001144 // Verifying type unit indexes not supported.
1145 if (NI.getLocalTUCount() + NI.getForeignTUCount() > 0)
1146 return 0;
1147
Pavel Labathd6ca0632018-06-01 10:33:11 +00001148 const char *CStr = NTE.getString();
Pavel Labathc9f07b02018-04-06 13:34:12 +00001149 if (!CStr) {
1150 error() << formatv(
1151 "Name Index @ {0:x}: Unable to get string associated with name {1}.\n",
Pavel Labathd6ca0632018-06-01 10:33:11 +00001152 NI.getUnitOffset(), NTE.getIndex());
Pavel Labathc9f07b02018-04-06 13:34:12 +00001153 return 1;
1154 }
1155 StringRef Str(CStr);
1156
1157 unsigned NumErrors = 0;
1158 unsigned NumEntries = 0;
Pavel Labathd6ca0632018-06-01 10:33:11 +00001159 uint32_t EntryID = NTE.getEntryOffset();
1160 uint32_t NextEntryID = EntryID;
1161 Expected<DWARFDebugNames::Entry> EntryOr = NI.getEntry(&NextEntryID);
1162 for (; EntryOr; ++NumEntries, EntryID = NextEntryID,
1163 EntryOr = NI.getEntry(&NextEntryID)) {
Pavel Labathc9f07b02018-04-06 13:34:12 +00001164 uint32_t CUIndex = *EntryOr->getCUIndex();
1165 if (CUIndex > NI.getCUCount()) {
1166 error() << formatv("Name Index @ {0:x}: Entry @ {1:x} contains an "
1167 "invalid CU index ({2}).\n",
1168 NI.getUnitOffset(), EntryID, CUIndex);
1169 ++NumErrors;
1170 continue;
1171 }
1172 uint32_t CUOffset = NI.getCUOffset(CUIndex);
Pavel Labath4adc88e2018-06-13 08:14:27 +00001173 uint64_t DIEOffset = CUOffset + *EntryOr->getDIEUnitOffset();
Pavel Labathc9f07b02018-04-06 13:34:12 +00001174 DWARFDie DIE = DCtx.getDIEForOffset(DIEOffset);
1175 if (!DIE) {
1176 error() << formatv("Name Index @ {0:x}: Entry @ {1:x} references a "
1177 "non-existing DIE @ {2:x}.\n",
1178 NI.getUnitOffset(), EntryID, DIEOffset);
1179 ++NumErrors;
1180 continue;
1181 }
1182 if (DIE.getDwarfUnit()->getOffset() != CUOffset) {
1183 error() << formatv("Name Index @ {0:x}: Entry @ {1:x}: mismatched CU of "
1184 "DIE @ {2:x}: index - {3:x}; debug_info - {4:x}.\n",
1185 NI.getUnitOffset(), EntryID, DIEOffset, CUOffset,
1186 DIE.getDwarfUnit()->getOffset());
1187 ++NumErrors;
1188 }
1189 if (DIE.getTag() != EntryOr->tag()) {
1190 error() << formatv("Name Index @ {0:x}: Entry @ {1:x}: mismatched Tag of "
1191 "DIE @ {2:x}: index - {3}; debug_info - {4}.\n",
1192 NI.getUnitOffset(), EntryID, DIEOffset, EntryOr->tag(),
1193 DIE.getTag());
1194 ++NumErrors;
1195 }
1196
1197 auto EntryNames = getNames(DIE);
1198 if (!is_contained(EntryNames, Str)) {
1199 error() << formatv("Name Index @ {0:x}: Entry @ {1:x}: mismatched Name "
1200 "of DIE @ {2:x}: index - {3}; debug_info - {4}.\n",
1201 NI.getUnitOffset(), EntryID, DIEOffset, Str,
1202 make_range(EntryNames.begin(), EntryNames.end()));
Pavel Labath2a6afe52018-05-14 14:13:20 +00001203 ++NumErrors;
Pavel Labathc9f07b02018-04-06 13:34:12 +00001204 }
1205 }
1206 handleAllErrors(EntryOr.takeError(),
1207 [&](const DWARFDebugNames::SentinelError &) {
1208 if (NumEntries > 0)
1209 return;
1210 error() << formatv("Name Index @ {0:x}: Name {1} ({2}) is "
1211 "not associated with any entries.\n",
Pavel Labathd6ca0632018-06-01 10:33:11 +00001212 NI.getUnitOffset(), NTE.getIndex(), Str);
Pavel Labathc9f07b02018-04-06 13:34:12 +00001213 ++NumErrors;
1214 },
1215 [&](const ErrorInfoBase &Info) {
Pavel Labathd6ca0632018-06-01 10:33:11 +00001216 error()
1217 << formatv("Name Index @ {0:x}: Name {1} ({2}): {3}\n",
1218 NI.getUnitOffset(), NTE.getIndex(), Str,
1219 Info.message());
Pavel Labathc9f07b02018-04-06 13:34:12 +00001220 ++NumErrors;
1221 });
1222 return NumErrors;
1223}
1224
Pavel Labath80827f12018-05-15 13:24:10 +00001225static bool isVariableIndexable(const DWARFDie &Die, DWARFContext &DCtx) {
1226 Optional<DWARFFormValue> Location = Die.findRecursively(DW_AT_location);
1227 if (!Location)
1228 return false;
1229
1230 auto ContainsInterestingOperators = [&](StringRef D) {
1231 DWARFUnit *U = Die.getDwarfUnit();
1232 DataExtractor Data(D, DCtx.isLittleEndian(), U->getAddressByteSize());
1233 DWARFExpression Expression(Data, U->getVersion(), U->getAddressByteSize());
1234 return any_of(Expression, [](DWARFExpression::Operation &Op) {
1235 return !Op.isError() && (Op.getCode() == DW_OP_addr ||
1236 Op.getCode() == DW_OP_form_tls_address ||
1237 Op.getCode() == DW_OP_GNU_push_tls_address);
1238 });
1239 };
1240
1241 if (Optional<ArrayRef<uint8_t>> Expr = Location->getAsBlock()) {
1242 // Inlined location.
1243 if (ContainsInterestingOperators(toStringRef(*Expr)))
1244 return true;
1245 } else if (Optional<uint64_t> Offset = Location->getAsSectionOffset()) {
1246 // Location list.
1247 if (const DWARFDebugLoc *DebugLoc = DCtx.getDebugLoc()) {
1248 if (const DWARFDebugLoc::LocationList *LocList =
1249 DebugLoc->getLocationListAtOffset(*Offset)) {
1250 if (any_of(LocList->Entries, [&](const DWARFDebugLoc::Entry &E) {
1251 return ContainsInterestingOperators({E.Loc.data(), E.Loc.size()});
1252 }))
1253 return true;
1254 }
1255 }
1256 }
1257 return false;
1258}
1259
1260unsigned DWARFVerifier::verifyNameIndexCompleteness(
1261 const DWARFDie &Die, const DWARFDebugNames::NameIndex &NI) {
1262
1263 // First check, if the Die should be indexed. The code follows the DWARF v5
1264 // wording as closely as possible.
1265
1266 // "All non-defining declarations (that is, debugging information entries
1267 // with a DW_AT_declaration attribute) are excluded."
1268 if (Die.find(DW_AT_declaration))
1269 return 0;
1270
1271 // "DW_TAG_namespace debugging information entries without a DW_AT_name
1272 // attribute are included with the name “(anonymous namespace)”.
1273 // All other debugging information entries without a DW_AT_name attribute
1274 // are excluded."
1275 // "If a subprogram or inlined subroutine is included, and has a
1276 // DW_AT_linkage_name attribute, there will be an additional index entry for
1277 // the linkage name."
Jonas Devlieghere6e5c7e62018-09-03 12:12:17 +00001278 auto IncludeLinkageName = Die.getTag() == DW_TAG_subprogram ||
1279 Die.getTag() == DW_TAG_inlined_subroutine;
1280 auto EntryNames = getNames(Die, IncludeLinkageName);
Pavel Labath80827f12018-05-15 13:24:10 +00001281 if (EntryNames.empty())
1282 return 0;
1283
1284 // We deviate from the specification here, which says:
1285 // "The name index must contain an entry for each debugging information entry
1286 // that defines a named subprogram, label, variable, type, or namespace,
1287 // subject to ..."
1288 // Instead whitelisting all TAGs representing a "type" or a "subprogram", to
1289 // make sure we catch any missing items, we instead blacklist all TAGs that we
1290 // know shouldn't be indexed.
1291 switch (Die.getTag()) {
Jonas Devlieghere3a92c5c2018-08-03 12:01:43 +00001292 // Compile units and modules have names but shouldn't be indexed.
Pavel Labath80827f12018-05-15 13:24:10 +00001293 case DW_TAG_compile_unit:
Jonas Devlieghere3a92c5c2018-08-03 12:01:43 +00001294 case DW_TAG_module:
Pavel Labath80827f12018-05-15 13:24:10 +00001295 return 0;
1296
1297 // Function and template parameters are not globally visible, so we shouldn't
1298 // index them.
1299 case DW_TAG_formal_parameter:
1300 case DW_TAG_template_value_parameter:
1301 case DW_TAG_template_type_parameter:
1302 case DW_TAG_GNU_template_parameter_pack:
1303 case DW_TAG_GNU_template_template_param:
1304 return 0;
1305
1306 // Object members aren't globally visible.
1307 case DW_TAG_member:
1308 return 0;
1309
1310 // According to a strict reading of the specification, enumerators should not
1311 // be indexed (and LLVM currently does not do that). However, this causes
1312 // problems for the debuggers, so we may need to reconsider this.
1313 case DW_TAG_enumerator:
1314 return 0;
1315
1316 // Imported declarations should not be indexed according to the specification
1317 // and LLVM currently does not do that.
1318 case DW_TAG_imported_declaration:
1319 return 0;
1320
1321 // "DW_TAG_subprogram, DW_TAG_inlined_subroutine, and DW_TAG_label debugging
1322 // information entries without an address attribute (DW_AT_low_pc,
1323 // DW_AT_high_pc, DW_AT_ranges, or DW_AT_entry_pc) are excluded."
1324 case DW_TAG_subprogram:
1325 case DW_TAG_inlined_subroutine:
1326 case DW_TAG_label:
1327 if (Die.findRecursively(
1328 {DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges, DW_AT_entry_pc}))
1329 break;
1330 return 0;
1331
1332 // "DW_TAG_variable debugging information entries with a DW_AT_location
1333 // attribute that includes a DW_OP_addr or DW_OP_form_tls_address operator are
1334 // included; otherwise, they are excluded."
1335 //
1336 // LLVM extension: We also add DW_OP_GNU_push_tls_address to this list.
1337 case DW_TAG_variable:
1338 if (isVariableIndexable(Die, DCtx))
1339 break;
1340 return 0;
1341
1342 default:
1343 break;
1344 }
1345
1346 // Now we know that our Die should be present in the Index. Let's check if
1347 // that's the case.
1348 unsigned NumErrors = 0;
Pavel Labath4adc88e2018-06-13 08:14:27 +00001349 uint64_t DieUnitOffset = Die.getOffset() - Die.getDwarfUnit()->getOffset();
Pavel Labath80827f12018-05-15 13:24:10 +00001350 for (StringRef Name : EntryNames) {
Pavel Labath4adc88e2018-06-13 08:14:27 +00001351 if (none_of(NI.equal_range(Name), [&](const DWARFDebugNames::Entry &E) {
1352 return E.getDIEUnitOffset() == DieUnitOffset;
Pavel Labath80827f12018-05-15 13:24:10 +00001353 })) {
1354 error() << formatv("Name Index @ {0:x}: Entry for DIE @ {1:x} ({2}) with "
1355 "name {3} missing.\n",
1356 NI.getUnitOffset(), Die.getOffset(), Die.getTag(),
1357 Name);
1358 ++NumErrors;
1359 }
1360 }
1361 return NumErrors;
1362}
1363
Pavel Labathb136c392018-03-08 15:34:42 +00001364unsigned DWARFVerifier::verifyDebugNames(const DWARFSection &AccelSection,
1365 const DataExtractor &StrData) {
1366 unsigned NumErrors = 0;
1367 DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), AccelSection,
1368 DCtx.isLittleEndian(), 0);
1369 DWARFDebugNames AccelTable(AccelSectionData, StrData);
1370
1371 OS << "Verifying .debug_names...\n";
1372
1373 // This verifies that we can read individual name indices and their
1374 // abbreviation tables.
1375 if (Error E = AccelTable.extract()) {
1376 error() << toString(std::move(E)) << '\n';
1377 return 1;
1378 }
1379
1380 NumErrors += verifyDebugNamesCULists(AccelTable);
Pavel Labath906b7772018-03-16 10:02:16 +00001381 for (const auto &NI : AccelTable)
1382 NumErrors += verifyNameIndexBuckets(NI, StrData);
Pavel Labath79cd9422018-03-22 14:50:44 +00001383 for (const auto &NI : AccelTable)
1384 NumErrors += verifyNameIndexAbbrevs(NI);
Pavel Labathb136c392018-03-08 15:34:42 +00001385
Pavel Labathc9f07b02018-04-06 13:34:12 +00001386 // Don't attempt Entry validation if any of the previous checks found errors
1387 if (NumErrors > 0)
1388 return NumErrors;
1389 for (const auto &NI : AccelTable)
Pavel Labathd6ca0632018-06-01 10:33:11 +00001390 for (DWARFDebugNames::NameTableEntry NTE : NI)
1391 NumErrors += verifyNameIndexEntries(NI, NTE);
Pavel Labathc9f07b02018-04-06 13:34:12 +00001392
Pavel Labath80827f12018-05-15 13:24:10 +00001393 if (NumErrors > 0)
1394 return NumErrors;
1395
Paul Robinson143eaea2018-08-01 20:43:47 +00001396 for (const std::unique_ptr<DWARFUnit> &U : DCtx.compile_units()) {
Pavel Labath80827f12018-05-15 13:24:10 +00001397 if (const DWARFDebugNames::NameIndex *NI =
Paul Robinson143eaea2018-08-01 20:43:47 +00001398 AccelTable.getCUNameIndex(U->getOffset())) {
1399 auto *CU = cast<DWARFCompileUnit>(U.get());
Pavel Labath80827f12018-05-15 13:24:10 +00001400 for (const DWARFDebugInfoEntry &Die : CU->dies())
Paul Robinson143eaea2018-08-01 20:43:47 +00001401 NumErrors += verifyNameIndexCompleteness(DWARFDie(CU, &Die), *NI);
Pavel Labath80827f12018-05-15 13:24:10 +00001402 }
1403 }
Pavel Labathb136c392018-03-08 15:34:42 +00001404 return NumErrors;
1405}
1406
Spyridoula Gravanidc635f42017-07-26 00:52:31 +00001407bool DWARFVerifier::handleAccelTables() {
1408 const DWARFObject &D = DCtx.getDWARFObj();
1409 DataExtractor StrData(D.getStringSection(), DCtx.isLittleEndian(), 0);
1410 unsigned NumErrors = 0;
1411 if (!D.getAppleNamesSection().Data.empty())
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +00001412 NumErrors += verifyAppleAccelTable(&D.getAppleNamesSection(), &StrData,
1413 ".apple_names");
Spyridoula Gravanidc635f42017-07-26 00:52:31 +00001414 if (!D.getAppleTypesSection().Data.empty())
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +00001415 NumErrors += verifyAppleAccelTable(&D.getAppleTypesSection(), &StrData,
1416 ".apple_types");
Spyridoula Gravanidc635f42017-07-26 00:52:31 +00001417 if (!D.getAppleNamespacesSection().Data.empty())
Pavel Labath9b36fd22018-01-22 13:17:23 +00001418 NumErrors += verifyAppleAccelTable(&D.getAppleNamespacesSection(), &StrData,
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +00001419 ".apple_namespaces");
Spyridoula Gravanidc635f42017-07-26 00:52:31 +00001420 if (!D.getAppleObjCSection().Data.empty())
Jonas Devlieghere9d7cecf2018-09-17 14:23:47 +00001421 NumErrors += verifyAppleAccelTable(&D.getAppleObjCSection(), &StrData,
1422 ".apple_objc");
Pavel Labathb136c392018-03-08 15:34:42 +00001423
1424 if (!D.getDebugNamesSection().Data.empty())
1425 NumErrors += verifyDebugNames(D.getDebugNamesSection(), StrData);
Spyridoula Gravanidc635f42017-07-26 00:52:31 +00001426 return NumErrors == 0;
Spyridoula Gravanie41823b2017-06-14 00:17:55 +00001427}
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +00001428
Jonas Devlieghere6be1f012018-04-15 08:44:15 +00001429raw_ostream &DWARFVerifier::error() const { return WithColor::error(OS); }
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +00001430
Jonas Devlieghere6be1f012018-04-15 08:44:15 +00001431raw_ostream &DWARFVerifier::warn() const { return WithColor::warning(OS); }
Jonas Devlieghere19fc4d92017-09-29 09:33:31 +00001432
Jonas Devlieghere6be1f012018-04-15 08:44:15 +00001433raw_ostream &DWARFVerifier::note() const { return WithColor::note(OS); }
Jonas Devliegheref1f3e732018-09-19 08:08:13 +00001434
1435raw_ostream &DWARFVerifier::dump(const DWARFDie &Die, unsigned indent) const {
1436 Die.dump(OS, indent, DumpOpts);
1437 return OS;
1438}