1 //===- DWARFUnit.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 //===----------------------------------------------------------------------===// 9 10 #include "llvm/DebugInfo/DWARF/DWARFUnit.h" 11 #include "llvm/ADT/SmallString.h" 12 #include "llvm/ADT/StringRef.h" 13 #include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h" 14 #include "llvm/DebugInfo/DWARF/DWARFContext.h" 15 #include "llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h" 16 #include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h" 17 #include "llvm/DebugInfo/DWARF/DWARFDebugRnglists.h" 18 #include "llvm/DebugInfo/DWARF/DWARFDie.h" 19 #include "llvm/DebugInfo/DWARF/DWARFFormValue.h" 20 #include "llvm/Support/DataExtractor.h" 21 #include "llvm/Support/Path.h" 22 #include "llvm/Support/WithColor.h" 23 #include <algorithm> 24 #include <cassert> 25 #include <cstddef> 26 #include <cstdint> 27 #include <cstdio> 28 #include <utility> 29 #include <vector> 30 31 using namespace llvm; 32 using namespace dwarf; 33 34 void DWARFUnitSectionBase::parse(DWARFContext &C, const DWARFSection &Section) { 35 const DWARFObject &D = C.getDWARFObj(); 36 parseImpl(C, D, Section, C.getDebugAbbrev(), &D.getRangeSection(), 37 D.getStringSection(), D.getStringOffsetSection(), 38 &D.getAddrSection(), D.getLineSection(), D.isLittleEndian(), false, 39 false); 40 } 41 42 void DWARFUnitSectionBase::parseDWO(DWARFContext &C, 43 const DWARFSection &DWOSection, bool Lazy) { 44 const DWARFObject &D = C.getDWARFObj(); 45 parseImpl(C, D, DWOSection, C.getDebugAbbrevDWO(), &D.getRangeDWOSection(), 46 D.getStringDWOSection(), D.getStringOffsetDWOSection(), 47 &D.getAddrSection(), D.getLineDWOSection(), C.isLittleEndian(), 48 true, Lazy); 49 } 50 51 DWARFUnit::DWARFUnit(DWARFContext &DC, const DWARFSection &Section, 52 const DWARFUnitHeader &Header, 53 const DWARFDebugAbbrev *DA, const DWARFSection *RS, 54 StringRef SS, const DWARFSection &SOS, 55 const DWARFSection *AOS, const DWARFSection &LS, bool LE, 56 bool IsDWO, const DWARFUnitSectionBase &UnitSection) 57 : Context(DC), InfoSection(Section), Header(Header), Abbrev(DA), 58 RangeSection(RS), LineSection(LS), StringSection(SS), 59 StringOffsetSection(SOS), AddrOffsetSection(AOS), isLittleEndian(LE), 60 isDWO(IsDWO), UnitSection(UnitSection) { 61 clear(); 62 } 63 64 DWARFUnit::~DWARFUnit() = default; 65 66 DWARFDataExtractor DWARFUnit::getDebugInfoExtractor() const { 67 return DWARFDataExtractor(Context.getDWARFObj(), InfoSection, isLittleEndian, 68 getAddressByteSize()); 69 } 70 71 bool DWARFUnit::getAddrOffsetSectionItem(uint32_t Index, 72 uint64_t &Result) const { 73 uint32_t Offset = AddrOffsetSectionBase + Index * getAddressByteSize(); 74 if (AddrOffsetSection->Data.size() < Offset + getAddressByteSize()) 75 return false; 76 DWARFDataExtractor DA(Context.getDWARFObj(), *AddrOffsetSection, 77 isLittleEndian, getAddressByteSize()); 78 Result = DA.getRelocatedAddress(&Offset); 79 return true; 80 } 81 82 bool DWARFUnit::getStringOffsetSectionItem(uint32_t Index, 83 uint64_t &Result) const { 84 if (!StringOffsetsTableContribution) 85 return false; 86 unsigned ItemSize = getDwarfStringOffsetsByteSize(); 87 uint32_t Offset = getStringOffsetsBase() + Index * ItemSize; 88 if (StringOffsetSection.Data.size() < Offset + ItemSize) 89 return false; 90 DWARFDataExtractor DA(Context.getDWARFObj(), StringOffsetSection, 91 isLittleEndian, 0); 92 Result = DA.getRelocatedValue(ItemSize, &Offset); 93 return true; 94 } 95 96 bool DWARFUnitHeader::extract(DWARFContext &Context, 97 const DWARFDataExtractor &debug_info, 98 uint32_t *offset_ptr, 99 DWARFSectionKind SectionKind, 100 const DWARFUnitIndex *Index) { 101 Offset = *offset_ptr; 102 IndexEntry = Index ? Index->getFromOffset(*offset_ptr) : nullptr; 103 Length = debug_info.getU32(offset_ptr); 104 // FIXME: Support DWARF64. 105 unsigned SizeOfLength = 4; 106 FormParams.Format = DWARF32; 107 FormParams.Version = debug_info.getU16(offset_ptr); 108 if (FormParams.Version >= 5) { 109 UnitType = debug_info.getU8(offset_ptr); 110 FormParams.AddrSize = debug_info.getU8(offset_ptr); 111 AbbrOffset = debug_info.getU32(offset_ptr); 112 } else { 113 AbbrOffset = debug_info.getRelocatedValue(4, offset_ptr); 114 FormParams.AddrSize = debug_info.getU8(offset_ptr); 115 // Fake a unit type based on the section type. This isn't perfect, 116 // but distinguishing compile and type units is generally enough. 117 if (SectionKind == DW_SECT_TYPES) 118 UnitType = DW_UT_type; 119 else 120 UnitType = DW_UT_compile; 121 } 122 if (IndexEntry) { 123 if (AbbrOffset) 124 return false; 125 auto *UnitContrib = IndexEntry->getOffset(); 126 if (!UnitContrib || UnitContrib->Length != (Length + 4)) 127 return false; 128 auto *AbbrEntry = IndexEntry->getOffset(DW_SECT_ABBREV); 129 if (!AbbrEntry) 130 return false; 131 AbbrOffset = AbbrEntry->Offset; 132 } 133 if (isTypeUnit()) { 134 TypeHash = debug_info.getU64(offset_ptr); 135 TypeOffset = debug_info.getU32(offset_ptr); 136 } else if (UnitType == DW_UT_split_compile || UnitType == DW_UT_skeleton) 137 DWOId = debug_info.getU64(offset_ptr); 138 139 // Header fields all parsed, capture the size of this unit header. 140 assert(*offset_ptr - Offset <= 255 && "unexpected header size"); 141 Size = uint8_t(*offset_ptr - Offset); 142 143 // Type offset is unit-relative; should be after the header and before 144 // the end of the current unit. 145 bool TypeOffsetOK = 146 !isTypeUnit() 147 ? true 148 : TypeOffset >= Size && TypeOffset < getLength() + SizeOfLength; 149 bool LengthOK = debug_info.isValidOffset(getNextUnitOffset() - 1); 150 bool VersionOK = DWARFContext::isSupportedVersion(getVersion()); 151 bool AddrSizeOK = getAddressByteSize() == 4 || getAddressByteSize() == 8; 152 153 if (!LengthOK || !VersionOK || !AddrSizeOK || !TypeOffsetOK) 154 return false; 155 156 // Keep track of the highest DWARF version we encounter across all units. 157 Context.setMaxVersionIfGreater(getVersion()); 158 return true; 159 } 160 161 // Parse the rangelist table header, including the optional array of offsets 162 // following it (DWARF v5 and later). 163 static Expected<DWARFDebugRnglistTable> 164 parseRngListTableHeader(DWARFDataExtractor &DA, uint32_t Offset) { 165 // TODO: Support DWARF64 166 // We are expected to be called with Offset 0 or pointing just past the table 167 // header, which is 12 bytes long for DWARF32. 168 if (Offset > 0) { 169 if (Offset < 12U) { 170 std::string Buffer; 171 raw_string_ostream Stream(Buffer); 172 Stream << format( 173 "Did not detect a valid range list table with base = 0x%x", Offset); 174 return make_error<StringError>(Stream.str(), inconvertibleErrorCode()); 175 } 176 Offset -= 12U; 177 } 178 llvm::DWARFDebugRnglistTable Table; 179 if (Error E = Table.extractHeaderAndOffsets(DA, &Offset)) 180 return std::move(E); 181 return Table; 182 } 183 184 Error DWARFUnit::extractRangeList(uint32_t RangeListOffset, 185 DWARFDebugRangeList &RangeList) const { 186 // Require that compile unit is extracted. 187 assert(!DieArray.empty()); 188 DWARFDataExtractor RangesData(Context.getDWARFObj(), *RangeSection, 189 isLittleEndian, getAddressByteSize()); 190 uint32_t ActualRangeListOffset = RangeSectionBase + RangeListOffset; 191 return RangeList.extract(RangesData, &ActualRangeListOffset); 192 } 193 194 void DWARFUnit::clear() { 195 Abbrevs = nullptr; 196 BaseAddr.reset(); 197 RangeSectionBase = 0; 198 AddrOffsetSectionBase = 0; 199 clearDIEs(false); 200 DWO.reset(); 201 } 202 203 const char *DWARFUnit::getCompilationDir() { 204 return dwarf::toString(getUnitDIE().find(DW_AT_comp_dir), nullptr); 205 } 206 207 void DWARFUnit::extractDIEsToVector( 208 bool AppendCUDie, bool AppendNonCUDies, 209 std::vector<DWARFDebugInfoEntry> &Dies) const { 210 if (!AppendCUDie && !AppendNonCUDies) 211 return; 212 213 // Set the offset to that of the first DIE and calculate the start of the 214 // next compilation unit header. 215 uint32_t DIEOffset = getOffset() + getHeaderSize(); 216 uint32_t NextCUOffset = getNextUnitOffset(); 217 DWARFDebugInfoEntry DIE; 218 DWARFDataExtractor DebugInfoData = getDebugInfoExtractor(); 219 uint32_t Depth = 0; 220 bool IsCUDie = true; 221 222 while (DIE.extractFast(*this, &DIEOffset, DebugInfoData, NextCUOffset, 223 Depth)) { 224 if (IsCUDie) { 225 if (AppendCUDie) 226 Dies.push_back(DIE); 227 if (!AppendNonCUDies) 228 break; 229 // The average bytes per DIE entry has been seen to be 230 // around 14-20 so let's pre-reserve the needed memory for 231 // our DIE entries accordingly. 232 Dies.reserve(Dies.size() + getDebugInfoSize() / 14); 233 IsCUDie = false; 234 } else { 235 Dies.push_back(DIE); 236 } 237 238 if (const DWARFAbbreviationDeclaration *AbbrDecl = 239 DIE.getAbbreviationDeclarationPtr()) { 240 // Normal DIE 241 if (AbbrDecl->hasChildren()) 242 ++Depth; 243 } else { 244 // NULL DIE. 245 if (Depth > 0) 246 --Depth; 247 if (Depth == 0) 248 break; // We are done with this compile unit! 249 } 250 } 251 252 // Give a little bit of info if we encounter corrupt DWARF (our offset 253 // should always terminate at or before the start of the next compilation 254 // unit header). 255 if (DIEOffset > NextCUOffset) 256 WithColor::warning() << format("DWARF compile unit extends beyond its " 257 "bounds cu 0x%8.8x at 0x%8.8x\n", 258 getOffset(), DIEOffset); 259 } 260 261 size_t DWARFUnit::extractDIEsIfNeeded(bool CUDieOnly) { 262 if ((CUDieOnly && !DieArray.empty()) || 263 DieArray.size() > 1) 264 return 0; // Already parsed. 265 266 bool HasCUDie = !DieArray.empty(); 267 extractDIEsToVector(!HasCUDie, !CUDieOnly, DieArray); 268 269 if (DieArray.empty()) 270 return 0; 271 272 // If CU DIE was just parsed, copy several attribute values from it. 273 if (!HasCUDie) { 274 DWARFDie UnitDie = getUnitDIE(); 275 if (Optional<uint64_t> DWOId = toUnsigned(UnitDie.find(DW_AT_GNU_dwo_id))) 276 Header.setDWOId(*DWOId); 277 if (!isDWO) { 278 assert(AddrOffsetSectionBase == 0); 279 assert(RangeSectionBase == 0); 280 AddrOffsetSectionBase = 281 toSectionOffset(UnitDie.find(DW_AT_GNU_addr_base), 0); 282 RangeSectionBase = toSectionOffset(UnitDie.find(DW_AT_rnglists_base), 0); 283 } 284 285 // In general, in DWARF v5 and beyond we derive the start of the unit's 286 // contribution to the string offsets table from the unit DIE's 287 // DW_AT_str_offsets_base attribute. Split DWARF units do not use this 288 // attribute, so we assume that there is a contribution to the string 289 // offsets table starting at offset 0 of the debug_str_offsets.dwo section. 290 // In both cases we need to determine the format of the contribution, 291 // which may differ from the unit's format. 292 uint64_t StringOffsetsContributionBase = 293 isDWO ? 0 : toSectionOffset(UnitDie.find(DW_AT_str_offsets_base), 0); 294 auto IndexEntry = Header.getIndexEntry(); 295 if (IndexEntry) 296 if (const auto *C = IndexEntry->getOffset(DW_SECT_STR_OFFSETS)) 297 StringOffsetsContributionBase += C->Offset; 298 299 DWARFDataExtractor DA(Context.getDWARFObj(), StringOffsetSection, 300 isLittleEndian, 0); 301 if (isDWO) 302 StringOffsetsTableContribution = 303 determineStringOffsetsTableContributionDWO( 304 DA, StringOffsetsContributionBase); 305 else if (getVersion() >= 5) 306 StringOffsetsTableContribution = determineStringOffsetsTableContribution( 307 DA, StringOffsetsContributionBase); 308 309 // DWARF v5 uses the .debug_rnglists and .debug_rnglists.dwo sections to 310 // describe address ranges. 311 if (getVersion() >= 5) { 312 if (isDWO) 313 setRangesSection(&Context.getDWARFObj().getRnglistsDWOSection(), 0); 314 else 315 setRangesSection(&Context.getDWARFObj().getRnglistsSection(), 316 toSectionOffset(UnitDie.find(DW_AT_rnglists_base), 0)); 317 // Parse the range list table header. Individual range lists are 318 // extracted lazily. 319 DWARFDataExtractor RangesDA(Context.getDWARFObj(), *RangeSection, 320 isLittleEndian, 0); 321 if (auto TableOrError = 322 parseRngListTableHeader(RangesDA, RangeSectionBase)) 323 RngListTable = TableOrError.get(); 324 else 325 WithColor::error() << "parsing a range list table: " 326 << toString(TableOrError.takeError()) 327 << '\n'; 328 329 // In a split dwarf unit, there is no DW_AT_rnglists_base attribute. 330 // Adjust RangeSectionBase to point past the table header. 331 if (isDWO && RngListTable) 332 RangeSectionBase = RngListTable->getHeaderSize(); 333 } 334 335 // Don't fall back to DW_AT_GNU_ranges_base: it should be ignored for 336 // skeleton CU DIE, so that DWARF users not aware of it are not broken. 337 } 338 339 return DieArray.size(); 340 } 341 342 bool DWARFUnit::parseDWO() { 343 if (isDWO) 344 return false; 345 if (DWO.get()) 346 return false; 347 DWARFDie UnitDie = getUnitDIE(); 348 if (!UnitDie) 349 return false; 350 auto DWOFileName = dwarf::toString(UnitDie.find(DW_AT_GNU_dwo_name)); 351 if (!DWOFileName) 352 return false; 353 auto CompilationDir = dwarf::toString(UnitDie.find(DW_AT_comp_dir)); 354 SmallString<16> AbsolutePath; 355 if (sys::path::is_relative(*DWOFileName) && CompilationDir && 356 *CompilationDir) { 357 sys::path::append(AbsolutePath, *CompilationDir); 358 } 359 sys::path::append(AbsolutePath, *DWOFileName); 360 auto DWOId = getDWOId(); 361 if (!DWOId) 362 return false; 363 auto DWOContext = Context.getDWOContext(AbsolutePath); 364 if (!DWOContext) 365 return false; 366 367 DWARFCompileUnit *DWOCU = DWOContext->getDWOCompileUnitForHash(*DWOId); 368 if (!DWOCU) 369 return false; 370 DWO = std::shared_ptr<DWARFCompileUnit>(std::move(DWOContext), DWOCU); 371 // Share .debug_addr and .debug_ranges section with compile unit in .dwo 372 DWO->setAddrOffsetSection(AddrOffsetSection, AddrOffsetSectionBase); 373 if (getVersion() >= 5) { 374 DWO->setRangesSection(&Context.getDWARFObj().getRnglistsDWOSection(), 0); 375 DWARFDataExtractor RangesDA(Context.getDWARFObj(), *RangeSection, 376 isLittleEndian, 0); 377 if (auto TableOrError = parseRngListTableHeader(RangesDA, RangeSectionBase)) 378 DWO->RngListTable = TableOrError.get(); 379 else 380 WithColor::error() << "parsing a range list table: " 381 << toString(TableOrError.takeError()) 382 << '\n'; 383 if (DWO->RngListTable) 384 DWO->RangeSectionBase = DWO->RngListTable->getHeaderSize(); 385 } else { 386 auto DWORangesBase = UnitDie.getRangesBaseAttribute(); 387 DWO->setRangesSection(RangeSection, DWORangesBase ? *DWORangesBase : 0); 388 } 389 390 return true; 391 } 392 393 void DWARFUnit::clearDIEs(bool KeepCUDie) { 394 if (DieArray.size() > (unsigned)KeepCUDie) { 395 DieArray.resize((unsigned)KeepCUDie); 396 DieArray.shrink_to_fit(); 397 } 398 } 399 400 Expected<DWARFAddressRangesVector> 401 DWARFUnit::findRnglistFromOffset(uint32_t Offset) { 402 if (getVersion() <= 4) { 403 DWARFDebugRangeList RangeList; 404 if (Error E = extractRangeList(Offset, RangeList)) 405 return std::move(E); 406 return RangeList.getAbsoluteRanges(getBaseAddress()); 407 } 408 if (RngListTable) { 409 DWARFDataExtractor RangesData(Context.getDWARFObj(), *RangeSection, 410 isLittleEndian, RngListTable->getAddrSize()); 411 auto RangeListOrError = RngListTable->findRangeList(RangesData, Offset); 412 if (RangeListOrError) 413 return RangeListOrError.get().getAbsoluteRanges(getBaseAddress()); 414 return RangeListOrError.takeError(); 415 } 416 417 return make_error<StringError>("missing or invalid range list table", 418 inconvertibleErrorCode()); 419 } 420 421 Expected<DWARFAddressRangesVector> 422 DWARFUnit::findRnglistFromIndex(uint32_t Index) { 423 if (auto Offset = getRnglistOffset(Index)) 424 return findRnglistFromOffset(*Offset + RangeSectionBase); 425 426 std::string Buffer; 427 raw_string_ostream Stream(Buffer); 428 if (RngListTable) 429 Stream << format("invalid range list table index %d", Index); 430 else 431 Stream << "missing or invalid range list table"; 432 return make_error<StringError>(Stream.str(), inconvertibleErrorCode()); 433 } 434 435 void DWARFUnit::collectAddressRanges(DWARFAddressRangesVector &CURanges) { 436 DWARFDie UnitDie = getUnitDIE(); 437 if (!UnitDie) 438 return; 439 // First, check if unit DIE describes address ranges for the whole unit. 440 auto CUDIERangesOrError = UnitDie.getAddressRanges(); 441 if (CUDIERangesOrError) { 442 if (!CUDIERangesOrError.get().empty()) { 443 CURanges.insert(CURanges.end(), CUDIERangesOrError.get().begin(), 444 CUDIERangesOrError.get().end()); 445 return; 446 } 447 } else 448 WithColor::error() << "decoding address ranges: " 449 << toString(CUDIERangesOrError.takeError()) << '\n'; 450 451 // This function is usually called if there in no .debug_aranges section 452 // in order to produce a compile unit level set of address ranges that 453 // is accurate. If the DIEs weren't parsed, then we don't want all dies for 454 // all compile units to stay loaded when they weren't needed. So we can end 455 // up parsing the DWARF and then throwing them all away to keep memory usage 456 // down. 457 const bool ClearDIEs = extractDIEsIfNeeded(false) > 1; 458 getUnitDIE().collectChildrenAddressRanges(CURanges); 459 460 // Collect address ranges from DIEs in .dwo if necessary. 461 bool DWOCreated = parseDWO(); 462 if (DWO) 463 DWO->collectAddressRanges(CURanges); 464 if (DWOCreated) 465 DWO.reset(); 466 467 // Keep memory down by clearing DIEs if this generate function 468 // caused them to be parsed. 469 if (ClearDIEs) 470 clearDIEs(true); 471 } 472 473 void DWARFUnit::updateAddressDieMap(DWARFDie Die) { 474 if (Die.isSubroutineDIE()) { 475 auto DIERangesOrError = Die.getAddressRanges(); 476 if (DIERangesOrError) { 477 for (const auto &R : DIERangesOrError.get()) { 478 // Ignore 0-sized ranges. 479 if (R.LowPC == R.HighPC) 480 continue; 481 auto B = AddrDieMap.upper_bound(R.LowPC); 482 if (B != AddrDieMap.begin() && R.LowPC < (--B)->second.first) { 483 // The range is a sub-range of existing ranges, we need to split the 484 // existing range. 485 if (R.HighPC < B->second.first) 486 AddrDieMap[R.HighPC] = B->second; 487 if (R.LowPC > B->first) 488 AddrDieMap[B->first].first = R.LowPC; 489 } 490 AddrDieMap[R.LowPC] = std::make_pair(R.HighPC, Die); 491 } 492 } else 493 llvm::consumeError(DIERangesOrError.takeError()); 494 } 495 // Parent DIEs are added to the AddrDieMap prior to the Children DIEs to 496 // simplify the logic to update AddrDieMap. The child's range will always 497 // be equal or smaller than the parent's range. With this assumption, when 498 // adding one range into the map, it will at most split a range into 3 499 // sub-ranges. 500 for (DWARFDie Child = Die.getFirstChild(); Child; Child = Child.getSibling()) 501 updateAddressDieMap(Child); 502 } 503 504 DWARFDie DWARFUnit::getSubroutineForAddress(uint64_t Address) { 505 extractDIEsIfNeeded(false); 506 if (AddrDieMap.empty()) 507 updateAddressDieMap(getUnitDIE()); 508 auto R = AddrDieMap.upper_bound(Address); 509 if (R == AddrDieMap.begin()) 510 return DWARFDie(); 511 // upper_bound's previous item contains Address. 512 --R; 513 if (Address >= R->second.first) 514 return DWARFDie(); 515 return R->second.second; 516 } 517 518 void 519 DWARFUnit::getInlinedChainForAddress(uint64_t Address, 520 SmallVectorImpl<DWARFDie> &InlinedChain) { 521 assert(InlinedChain.empty()); 522 // Try to look for subprogram DIEs in the DWO file. 523 parseDWO(); 524 // First, find the subroutine that contains the given address (the leaf 525 // of inlined chain). 526 DWARFDie SubroutineDIE = 527 (DWO ? DWO.get() : this)->getSubroutineForAddress(Address); 528 529 if (!SubroutineDIE) 530 return; 531 532 while (!SubroutineDIE.isSubprogramDIE()) { 533 if (SubroutineDIE.getTag() == DW_TAG_inlined_subroutine) 534 InlinedChain.push_back(SubroutineDIE); 535 SubroutineDIE = SubroutineDIE.getParent(); 536 } 537 InlinedChain.push_back(SubroutineDIE); 538 } 539 540 const DWARFUnitIndex &llvm::getDWARFUnitIndex(DWARFContext &Context, 541 DWARFSectionKind Kind) { 542 if (Kind == DW_SECT_INFO) 543 return Context.getCUIndex(); 544 assert(Kind == DW_SECT_TYPES); 545 return Context.getTUIndex(); 546 } 547 548 DWARFDie DWARFUnit::getParent(const DWARFDebugInfoEntry *Die) { 549 if (!Die) 550 return DWARFDie(); 551 const uint32_t Depth = Die->getDepth(); 552 // Unit DIEs always have a depth of zero and never have parents. 553 if (Depth == 0) 554 return DWARFDie(); 555 // Depth of 1 always means parent is the compile/type unit. 556 if (Depth == 1) 557 return getUnitDIE(); 558 // Look for previous DIE with a depth that is one less than the Die's depth. 559 const uint32_t ParentDepth = Depth - 1; 560 for (uint32_t I = getDIEIndex(Die) - 1; I > 0; --I) { 561 if (DieArray[I].getDepth() == ParentDepth) 562 return DWARFDie(this, &DieArray[I]); 563 } 564 return DWARFDie(); 565 } 566 567 DWARFDie DWARFUnit::getSibling(const DWARFDebugInfoEntry *Die) { 568 if (!Die) 569 return DWARFDie(); 570 uint32_t Depth = Die->getDepth(); 571 // Unit DIEs always have a depth of zero and never have siblings. 572 if (Depth == 0) 573 return DWARFDie(); 574 // NULL DIEs don't have siblings. 575 if (Die->getAbbreviationDeclarationPtr() == nullptr) 576 return DWARFDie(); 577 578 // Find the next DIE whose depth is the same as the Die's depth. 579 for (size_t I = getDIEIndex(Die) + 1, EndIdx = DieArray.size(); I < EndIdx; 580 ++I) { 581 if (DieArray[I].getDepth() == Depth) 582 return DWARFDie(this, &DieArray[I]); 583 } 584 return DWARFDie(); 585 } 586 587 DWARFDie DWARFUnit::getFirstChild(const DWARFDebugInfoEntry *Die) { 588 if (!Die->hasChildren()) 589 return DWARFDie(); 590 591 // We do not want access out of bounds when parsing corrupted debug data. 592 size_t I = getDIEIndex(Die) + 1; 593 if (I >= DieArray.size()) 594 return DWARFDie(); 595 return DWARFDie(this, &DieArray[I]); 596 } 597 598 const DWARFAbbreviationDeclarationSet *DWARFUnit::getAbbreviations() const { 599 if (!Abbrevs) 600 Abbrevs = Abbrev->getAbbreviationDeclarationSet(Header.getAbbrOffset()); 601 return Abbrevs; 602 } 603 604 llvm::Optional<BaseAddress> DWARFUnit::getBaseAddress() { 605 if (BaseAddr) 606 return BaseAddr; 607 608 DWARFDie UnitDie = getUnitDIE(); 609 Optional<DWARFFormValue> PC = UnitDie.find({DW_AT_low_pc, DW_AT_entry_pc}); 610 if (Optional<uint64_t> Addr = toAddress(PC)) 611 BaseAddr = {*Addr, PC->getSectionIndex()}; 612 613 return BaseAddr; 614 } 615 616 Optional<StrOffsetsContributionDescriptor> 617 StrOffsetsContributionDescriptor::validateContributionSize( 618 DWARFDataExtractor &DA) { 619 uint8_t EntrySize = getDwarfOffsetByteSize(); 620 // In order to ensure that we don't read a partial record at the end of 621 // the section we validate for a multiple of the entry size. 622 uint64_t ValidationSize = alignTo(Size, EntrySize); 623 // Guard against overflow. 624 if (ValidationSize >= Size) 625 if (DA.isValidOffsetForDataOfSize((uint32_t)Base, ValidationSize)) 626 return *this; 627 return Optional<StrOffsetsContributionDescriptor>(); 628 } 629 630 // Look for a DWARF64-formatted contribution to the string offsets table 631 // starting at a given offset and record it in a descriptor. 632 static Optional<StrOffsetsContributionDescriptor> 633 parseDWARF64StringOffsetsTableHeader(DWARFDataExtractor &DA, uint32_t Offset) { 634 if (!DA.isValidOffsetForDataOfSize(Offset, 16)) 635 return Optional<StrOffsetsContributionDescriptor>(); 636 637 if (DA.getU32(&Offset) != 0xffffffff) 638 return Optional<StrOffsetsContributionDescriptor>(); 639 640 uint64_t Size = DA.getU64(&Offset); 641 uint8_t Version = DA.getU16(&Offset); 642 (void)DA.getU16(&Offset); // padding 643 // The encoded length includes the 2-byte version field and the 2-byte 644 // padding, so we need to subtract them out when we populate the descriptor. 645 return StrOffsetsContributionDescriptor(Offset, Size - 4, Version, DWARF64); 646 //return Optional<StrOffsetsContributionDescriptor>(Descriptor); 647 } 648 649 // Look for a DWARF32-formatted contribution to the string offsets table 650 // starting at a given offset and record it in a descriptor. 651 static Optional<StrOffsetsContributionDescriptor> 652 parseDWARF32StringOffsetsTableHeader(DWARFDataExtractor &DA, uint32_t Offset) { 653 if (!DA.isValidOffsetForDataOfSize(Offset, 8)) 654 return Optional<StrOffsetsContributionDescriptor>(); 655 uint32_t ContributionSize = DA.getU32(&Offset); 656 if (ContributionSize >= 0xfffffff0) 657 return Optional<StrOffsetsContributionDescriptor>(); 658 uint8_t Version = DA.getU16(&Offset); 659 (void)DA.getU16(&Offset); // padding 660 // The encoded length includes the 2-byte version field and the 2-byte 661 // padding, so we need to subtract them out when we populate the descriptor. 662 return StrOffsetsContributionDescriptor(Offset, ContributionSize - 4, Version, 663 DWARF32); 664 //return Optional<StrOffsetsContributionDescriptor>(Descriptor); 665 } 666 667 Optional<StrOffsetsContributionDescriptor> 668 DWARFUnit::determineStringOffsetsTableContribution(DWARFDataExtractor &DA, 669 uint64_t Offset) { 670 Optional<StrOffsetsContributionDescriptor> Descriptor; 671 // Attempt to find a DWARF64 contribution 16 bytes before the base. 672 if (Offset >= 16) 673 Descriptor = 674 parseDWARF64StringOffsetsTableHeader(DA, (uint32_t)Offset - 16); 675 // Try to find a DWARF32 contribution 8 bytes before the base. 676 if (!Descriptor && Offset >= 8) 677 Descriptor = parseDWARF32StringOffsetsTableHeader(DA, (uint32_t)Offset - 8); 678 return Descriptor ? Descriptor->validateContributionSize(DA) : Descriptor; 679 } 680 681 Optional<StrOffsetsContributionDescriptor> 682 DWARFUnit::determineStringOffsetsTableContributionDWO(DWARFDataExtractor &DA, 683 uint64_t Offset) { 684 if (getVersion() >= 5) { 685 // Look for a valid contribution at the given offset. 686 auto Descriptor = 687 parseDWARF64StringOffsetsTableHeader(DA, (uint32_t)Offset); 688 if (!Descriptor) 689 Descriptor = parseDWARF32StringOffsetsTableHeader(DA, (uint32_t)Offset); 690 return Descriptor ? Descriptor->validateContributionSize(DA) : Descriptor; 691 } 692 // Prior to DWARF v5, we derive the contribution size from the 693 // index table (in a package file). In a .dwo file it is simply 694 // the length of the string offsets section. 695 uint64_t Size = 0; 696 auto IndexEntry = Header.getIndexEntry(); 697 if (!IndexEntry) 698 Size = StringOffsetSection.Data.size(); 699 else if (const auto *C = IndexEntry->getOffset(DW_SECT_STR_OFFSETS)) 700 Size = C->Length; 701 // Return a descriptor with the given offset as base, version 4 and 702 // DWARF32 format. 703 //return Optional<StrOffsetsContributionDescriptor>( 704 //StrOffsetsContributionDescriptor(Offset, Size, 4, DWARF32)); 705 return StrOffsetsContributionDescriptor(Offset, Size, 4, DWARF32); 706 } 707