Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 1 | //===- 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 | //===----------------------------------------------------------------------===// |
| 9 | |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 10 | #include "SyntaxHighlighting.h" |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 11 | #include "llvm/DebugInfo/DWARF/DWARFVerifier.h" |
| 12 | #include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h" |
| 13 | #include "llvm/DebugInfo/DWARF/DWARFContext.h" |
| 14 | #include "llvm/DebugInfo/DWARF/DWARFDebugLine.h" |
| 15 | #include "llvm/DebugInfo/DWARF/DWARFDie.h" |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 16 | #include "llvm/DebugInfo/DWARF/DWARFExpression.h" |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 17 | #include "llvm/DebugInfo/DWARF/DWARFFormValue.h" |
| 18 | #include "llvm/DebugInfo/DWARF/DWARFSection.h" |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 19 | #include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h" |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 20 | #include "llvm/Support/FormatVariadic.h" |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 21 | #include "llvm/Support/raw_ostream.h" |
| 22 | #include <map> |
| 23 | #include <set> |
| 24 | #include <vector> |
| 25 | |
| 26 | using namespace llvm; |
| 27 | using namespace dwarf; |
| 28 | using namespace object; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 29 | using namespace syntax; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 30 | |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 31 | DWARFVerifier::DieRangeInfo::address_range_iterator |
| 32 | DWARFVerifier::DieRangeInfo::insert(const DWARFAddressRange &R) { |
| 33 | auto Begin = Ranges.begin(); |
| 34 | auto End = Ranges.end(); |
| 35 | auto Pos = std::lower_bound(Begin, End, R); |
| 36 | |
| 37 | if (Pos != End) { |
| 38 | if (Pos->intersects(R)) |
| 39 | return Pos; |
| 40 | if (Pos != Begin) { |
| 41 | auto Iter = Pos - 1; |
| 42 | if (Iter->intersects(R)) |
| 43 | return Iter; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | Ranges.insert(Pos, R); |
| 48 | return Ranges.end(); |
| 49 | } |
| 50 | |
| 51 | DWARFVerifier::DieRangeInfo::die_range_info_iterator |
| 52 | DWARFVerifier::DieRangeInfo::insert(const DieRangeInfo &RI) { |
| 53 | auto End = Children.end(); |
| 54 | auto Iter = Children.begin(); |
| 55 | while (Iter != End) { |
| 56 | if (Iter->intersects(RI)) |
| 57 | return Iter; |
| 58 | ++Iter; |
| 59 | } |
| 60 | Children.insert(RI); |
| 61 | return Children.end(); |
| 62 | } |
| 63 | |
| 64 | bool DWARFVerifier::DieRangeInfo::contains(const DieRangeInfo &RHS) const { |
| 65 | // Both list of ranges are sorted so we can make this fast. |
| 66 | |
| 67 | if (Ranges.empty() || RHS.Ranges.empty()) |
| 68 | return false; |
| 69 | |
| 70 | // Since the ranges are sorted we can advance where we start searching with |
| 71 | // this object's ranges as we traverse RHS.Ranges. |
| 72 | auto End = Ranges.end(); |
| 73 | auto Iter = findRange(RHS.Ranges.front()); |
| 74 | |
| 75 | // Now linearly walk the ranges in this object and see if they contain each |
| 76 | // ranges from RHS.Ranges. |
| 77 | for (const auto &R : RHS.Ranges) { |
| 78 | while (Iter != End) { |
| 79 | if (Iter->contains(R)) |
| 80 | break; |
| 81 | ++Iter; |
| 82 | } |
| 83 | if (Iter == End) |
| 84 | return false; |
| 85 | } |
| 86 | return true; |
| 87 | } |
| 88 | |
| 89 | bool DWARFVerifier::DieRangeInfo::intersects(const DieRangeInfo &RHS) const { |
| 90 | if (Ranges.empty() || RHS.Ranges.empty()) |
| 91 | return false; |
| 92 | |
| 93 | auto End = Ranges.end(); |
| 94 | auto Iter = findRange(RHS.Ranges.front()); |
| 95 | for (const auto &R : RHS.Ranges) { |
Jonas Devlieghere | d585a20 | 2017-09-14 17:46:23 +0000 | [diff] [blame] | 96 | if(Iter == End) |
| 97 | return false; |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 98 | if (R.HighPC <= Iter->LowPC) |
| 99 | continue; |
| 100 | while (Iter != End) { |
| 101 | if (Iter->intersects(R)) |
| 102 | return true; |
| 103 | ++Iter; |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | return false; |
| 108 | } |
| 109 | |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 110 | bool DWARFVerifier::verifyUnitHeader(const DWARFDataExtractor DebugInfoData, |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 111 | uint32_t *Offset, unsigned UnitIndex, |
| 112 | uint8_t &UnitType, bool &isUnitDWARF64) { |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 113 | uint32_t AbbrOffset, Length; |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 114 | uint8_t AddrSize = 0; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 115 | uint16_t Version; |
| 116 | bool Success = true; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 117 | |
| 118 | bool ValidLength = false; |
| 119 | bool ValidVersion = false; |
| 120 | bool ValidAddrSize = false; |
| 121 | bool ValidType = true; |
| 122 | bool ValidAbbrevOffset = true; |
| 123 | |
| 124 | uint32_t OffsetStart = *Offset; |
| 125 | Length = DebugInfoData.getU32(Offset); |
| 126 | if (Length == UINT32_MAX) { |
| 127 | isUnitDWARF64 = true; |
| 128 | OS << format( |
| 129 | "Unit[%d] is in 64-bit DWARF format; cannot verify from this point.\n", |
| 130 | UnitIndex); |
| 131 | return false; |
| 132 | } |
| 133 | Version = DebugInfoData.getU16(Offset); |
| 134 | |
| 135 | if (Version >= 5) { |
| 136 | UnitType = DebugInfoData.getU8(Offset); |
| 137 | AddrSize = DebugInfoData.getU8(Offset); |
| 138 | AbbrOffset = DebugInfoData.getU32(Offset); |
Jonas Devlieghere | f2fa9eb | 2017-10-06 22:27:31 +0000 | [diff] [blame] | 139 | ValidType = dwarf::isUnitType(UnitType); |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 140 | } else { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 141 | UnitType = 0; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 142 | AbbrOffset = DebugInfoData.getU32(Offset); |
| 143 | AddrSize = DebugInfoData.getU8(Offset); |
| 144 | } |
| 145 | |
| 146 | if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset)) |
| 147 | ValidAbbrevOffset = false; |
| 148 | |
| 149 | ValidLength = DebugInfoData.isValidOffset(OffsetStart + Length + 3); |
| 150 | ValidVersion = DWARFContext::isSupportedVersion(Version); |
| 151 | ValidAddrSize = AddrSize == 4 || AddrSize == 8; |
| 152 | if (!ValidLength || !ValidVersion || !ValidAddrSize || !ValidAbbrevOffset || |
| 153 | !ValidType) { |
| 154 | Success = false; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 155 | error() << format("Units[%d] - start offset: 0x%08x \n", UnitIndex, |
| 156 | OffsetStart); |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 157 | if (!ValidLength) |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 158 | note() << "The length for this unit is too " |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 159 | "large for the .debug_info provided.\n"; |
| 160 | if (!ValidVersion) |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 161 | note() << "The 16 bit unit header version is not valid.\n"; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 162 | if (!ValidType) |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 163 | note() << "The unit type encoding is not valid.\n"; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 164 | if (!ValidAbbrevOffset) |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 165 | note() << "The offset into the .debug_abbrev section is " |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 166 | "not valid.\n"; |
| 167 | if (!ValidAddrSize) |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 168 | note() << "The address size is unsupported.\n"; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 169 | } |
| 170 | *Offset = OffsetStart + Length + 4; |
| 171 | return Success; |
| 172 | } |
| 173 | |
Jonas Devlieghere | f2fa9eb | 2017-10-06 22:27:31 +0000 | [diff] [blame] | 174 | bool DWARFVerifier::verifyUnitContents(DWARFUnit Unit, uint8_t UnitType) { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 175 | uint32_t NumUnitErrors = 0; |
| 176 | unsigned NumDies = Unit.getNumDIEs(); |
| 177 | for (unsigned I = 0; I < NumDies; ++I) { |
| 178 | auto Die = Unit.getDIEAtIndex(I); |
| 179 | if (Die.getTag() == DW_TAG_null) |
| 180 | continue; |
| 181 | for (auto AttrValue : Die.attributes()) { |
| 182 | NumUnitErrors += verifyDebugInfoAttribute(Die, AttrValue); |
| 183 | NumUnitErrors += verifyDebugInfoForm(Die, AttrValue); |
| 184 | } |
| 185 | } |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 186 | |
Jonas Devlieghere | f2fa9eb | 2017-10-06 22:27:31 +0000 | [diff] [blame] | 187 | DWARFDie Die = Unit.getUnitDIE(/* ExtractUnitDIEOnly = */ false); |
| 188 | if (!Die) { |
| 189 | error() << "Compilation unit without DIE.\n"; |
| 190 | NumUnitErrors++; |
| 191 | return NumUnitErrors == 0; |
| 192 | } |
| 193 | |
| 194 | if (!dwarf::isUnitType(Die.getTag())) { |
| 195 | error() << "Compilation unit root DIE is not a unit DIE: " |
| 196 | << dwarf::TagString(Die.getTag()) << ".\n"; |
Jonas Devlieghere | 35fdaa9 | 2017-09-28 15:57:50 +0000 | [diff] [blame] | 197 | NumUnitErrors++; |
| 198 | } |
| 199 | |
Jonas Devlieghere | f2fa9eb | 2017-10-06 22:27:31 +0000 | [diff] [blame] | 200 | if (UnitType != 0 && |
| 201 | !DWARFUnit::isMatchingUnitTypeAndTag(UnitType, Die.getTag())) { |
| 202 | error() << "Compilation unit type (" << dwarf::UnitTypeString(UnitType) |
| 203 | << ") and root DIE (" << dwarf::TagString(Die.getTag()) |
| 204 | << ") do not match.\n"; |
| 205 | NumUnitErrors++; |
| 206 | } |
| 207 | |
| 208 | DieRangeInfo RI; |
| 209 | NumUnitErrors += verifyDieRanges(Die, RI); |
| 210 | |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 211 | return NumUnitErrors == 0; |
| 212 | } |
| 213 | |
Spyridoula Gravani | c6ef987 | 2017-07-21 00:51:32 +0000 | [diff] [blame] | 214 | unsigned DWARFVerifier::verifyAbbrevSection(const DWARFDebugAbbrev *Abbrev) { |
Spyridoula Gravani | 364b535 | 2017-07-20 02:06:52 +0000 | [diff] [blame] | 215 | unsigned NumErrors = 0; |
Spyridoula Gravani | 364b535 | 2017-07-20 02:06:52 +0000 | [diff] [blame] | 216 | if (Abbrev) { |
| 217 | const DWARFAbbreviationDeclarationSet *AbbrDecls = |
| 218 | Abbrev->getAbbreviationDeclarationSet(0); |
| 219 | for (auto AbbrDecl : *AbbrDecls) { |
| 220 | SmallDenseSet<uint16_t> AttributeSet; |
| 221 | for (auto Attribute : AbbrDecl.attributes()) { |
| 222 | auto Result = AttributeSet.insert(Attribute.Attr); |
| 223 | if (!Result.second) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 224 | error() << "Abbreviation declaration contains multiple " |
| 225 | << AttributeString(Attribute.Attr) << " attributes.\n"; |
Spyridoula Gravani | c6ef987 | 2017-07-21 00:51:32 +0000 | [diff] [blame] | 226 | AbbrDecl.dump(OS); |
Spyridoula Gravani | 364b535 | 2017-07-20 02:06:52 +0000 | [diff] [blame] | 227 | ++NumErrors; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | } |
Spyridoula Gravani | c6ef987 | 2017-07-21 00:51:32 +0000 | [diff] [blame] | 232 | return NumErrors; |
| 233 | } |
| 234 | |
| 235 | bool DWARFVerifier::handleDebugAbbrev() { |
| 236 | OS << "Verifying .debug_abbrev...\n"; |
| 237 | |
| 238 | const DWARFObject &DObj = DCtx.getDWARFObj(); |
| 239 | bool noDebugAbbrev = DObj.getAbbrevSection().empty(); |
| 240 | bool noDebugAbbrevDWO = DObj.getAbbrevDWOSection().empty(); |
| 241 | |
| 242 | if (noDebugAbbrev && noDebugAbbrevDWO) { |
| 243 | return true; |
| 244 | } |
| 245 | |
| 246 | unsigned NumErrors = 0; |
| 247 | if (!noDebugAbbrev) |
| 248 | NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrev()); |
| 249 | |
| 250 | if (!noDebugAbbrevDWO) |
| 251 | NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrevDWO()); |
Spyridoula Gravani | 364b535 | 2017-07-20 02:06:52 +0000 | [diff] [blame] | 252 | return NumErrors == 0; |
| 253 | } |
| 254 | |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 255 | bool DWARFVerifier::handleDebugInfo() { |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 256 | OS << "Verifying .debug_info Unit Header Chain...\n"; |
| 257 | |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 258 | const DWARFObject &DObj = DCtx.getDWARFObj(); |
| 259 | DWARFDataExtractor DebugInfoData(DObj, DObj.getInfoSection(), |
| 260 | DCtx.isLittleEndian(), 0); |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 261 | uint32_t NumDebugInfoErrors = 0; |
| 262 | uint32_t OffsetStart = 0, Offset = 0, UnitIdx = 0; |
| 263 | uint8_t UnitType = 0; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 264 | bool isUnitDWARF64 = false; |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 265 | bool isHeaderChainValid = true; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 266 | bool hasDIE = DebugInfoData.isValidOffset(Offset); |
Jonas Devlieghere | aa6be82 | 2017-10-10 14:15:25 +0000 | [diff] [blame] | 267 | DWARFUnitSection<DWARFTypeUnit> TUSection{}; |
| 268 | DWARFUnitSection<DWARFCompileUnit> CUSection{}; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 269 | while (hasDIE) { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 270 | OffsetStart = Offset; |
| 271 | if (!verifyUnitHeader(DebugInfoData, &Offset, UnitIdx, UnitType, |
| 272 | isUnitDWARF64)) { |
| 273 | isHeaderChainValid = false; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 274 | if (isUnitDWARF64) |
| 275 | break; |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 276 | } else { |
| 277 | std::unique_ptr<DWARFUnit> Unit; |
| 278 | switch (UnitType) { |
| 279 | case dwarf::DW_UT_type: |
| 280 | case dwarf::DW_UT_split_type: { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 281 | Unit.reset(new DWARFTypeUnit( |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 282 | DCtx, DObj.getInfoSection(), DCtx.getDebugAbbrev(), |
| 283 | &DObj.getRangeSection(), DObj.getStringSection(), |
| 284 | DObj.getStringOffsetSection(), &DObj.getAppleObjCSection(), |
Paul Robinson | d0c89f8 | 2018-01-29 22:02:56 +0000 | [diff] [blame] | 285 | DObj.getLineSection(), DCtx.isLittleEndian(), false, TUSection, |
| 286 | nullptr)); |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 287 | break; |
| 288 | } |
| 289 | case dwarf::DW_UT_skeleton: |
| 290 | case dwarf::DW_UT_split_compile: |
| 291 | case dwarf::DW_UT_compile: |
| 292 | case dwarf::DW_UT_partial: |
| 293 | // UnitType = 0 means that we are |
| 294 | // verifying a compile unit in DWARF v4. |
| 295 | case 0: { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 296 | Unit.reset(new DWARFCompileUnit( |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 297 | DCtx, DObj.getInfoSection(), DCtx.getDebugAbbrev(), |
| 298 | &DObj.getRangeSection(), DObj.getStringSection(), |
| 299 | DObj.getStringOffsetSection(), &DObj.getAppleObjCSection(), |
Paul Robinson | d0c89f8 | 2018-01-29 22:02:56 +0000 | [diff] [blame] | 300 | DObj.getLineSection(), DCtx.isLittleEndian(), false, CUSection, |
| 301 | nullptr)); |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 302 | break; |
| 303 | } |
| 304 | default: { llvm_unreachable("Invalid UnitType."); } |
| 305 | } |
| 306 | Unit->extract(DebugInfoData, &OffsetStart); |
Jonas Devlieghere | f2fa9eb | 2017-10-06 22:27:31 +0000 | [diff] [blame] | 307 | if (!verifyUnitContents(*Unit, UnitType)) |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 308 | ++NumDebugInfoErrors; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 309 | } |
| 310 | hasDIE = DebugInfoData.isValidOffset(Offset); |
| 311 | ++UnitIdx; |
| 312 | } |
| 313 | if (UnitIdx == 0 && !hasDIE) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 314 | warn() << ".debug_info is empty.\n"; |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 315 | isHeaderChainValid = true; |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 316 | } |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 317 | NumDebugInfoErrors += verifyDebugInfoReferences(); |
| 318 | return (isHeaderChainValid && NumDebugInfoErrors == 0); |
Spyridoula Gravani | 890eedc | 2017-07-13 23:25:24 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 321 | unsigned DWARFVerifier::verifyDieRanges(const DWARFDie &Die, |
| 322 | DieRangeInfo &ParentRI) { |
Spyridoula Gravani | e0ba415 | 2017-07-24 21:04:11 +0000 | [diff] [blame] | 323 | unsigned NumErrors = 0; |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 324 | |
| 325 | if (!Die.isValid()) |
| 326 | return NumErrors; |
| 327 | |
| 328 | DWARFAddressRangesVector Ranges = Die.getAddressRanges(); |
| 329 | |
| 330 | // Build RI for this DIE and check that ranges within this DIE do not |
| 331 | // overlap. |
| 332 | DieRangeInfo RI(Die); |
| 333 | for (auto Range : Ranges) { |
| 334 | if (!Range.valid()) { |
Spyridoula Gravani | e0ba415 | 2017-07-24 21:04:11 +0000 | [diff] [blame] | 335 | ++NumErrors; |
Jonas Devlieghere | a15f25d3 | 2017-09-29 15:41:22 +0000 | [diff] [blame] | 336 | error() << "Invalid address range " << Range << "\n"; |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 337 | continue; |
| 338 | } |
| 339 | |
| 340 | // Verify that ranges don't intersect. |
| 341 | const auto IntersectingRange = RI.insert(Range); |
| 342 | if (IntersectingRange != RI.Ranges.end()) { |
| 343 | ++NumErrors; |
Jonas Devlieghere | a15f25d3 | 2017-09-29 15:41:22 +0000 | [diff] [blame] | 344 | error() << "DIE has overlapping address ranges: " << Range << " and " |
| 345 | << *IntersectingRange << "\n"; |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 346 | break; |
Spyridoula Gravani | e0ba415 | 2017-07-24 21:04:11 +0000 | [diff] [blame] | 347 | } |
| 348 | } |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 349 | |
| 350 | // Verify that children don't intersect. |
| 351 | const auto IntersectingChild = ParentRI.insert(RI); |
| 352 | if (IntersectingChild != ParentRI.Children.end()) { |
| 353 | ++NumErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 354 | error() << "DIEs have overlapping address ranges:"; |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 355 | Die.dump(OS, 0); |
| 356 | IntersectingChild->Die.dump(OS, 0); |
| 357 | OS << "\n"; |
| 358 | } |
| 359 | |
| 360 | // Verify that ranges are contained within their parent. |
| 361 | bool ShouldBeContained = !Ranges.empty() && !ParentRI.Ranges.empty() && |
| 362 | !(Die.getTag() == DW_TAG_subprogram && |
| 363 | ParentRI.Die.getTag() == DW_TAG_subprogram); |
| 364 | if (ShouldBeContained && !ParentRI.contains(RI)) { |
| 365 | ++NumErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 366 | error() << "DIE address ranges are not " |
| 367 | "contained in its parent's ranges:"; |
Jonas Devlieghere | 5891060 | 2017-09-14 11:33:42 +0000 | [diff] [blame] | 368 | Die.dump(OS, 0); |
| 369 | ParentRI.Die.dump(OS, 0); |
| 370 | OS << "\n"; |
| 371 | } |
| 372 | |
| 373 | // Recursively check children. |
| 374 | for (DWARFDie Child : Die) |
| 375 | NumErrors += verifyDieRanges(Child, RI); |
| 376 | |
Spyridoula Gravani | e0ba415 | 2017-07-24 21:04:11 +0000 | [diff] [blame] | 377 | return NumErrors; |
| 378 | } |
| 379 | |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 380 | unsigned DWARFVerifier::verifyDebugInfoAttribute(const DWARFDie &Die, |
| 381 | DWARFAttribute &AttrValue) { |
| 382 | unsigned NumErrors = 0; |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 383 | auto ReportError = [&](const Twine &TitleMsg) { |
| 384 | ++NumErrors; |
| 385 | error() << TitleMsg << '\n'; |
| 386 | Die.dump(OS, 0, DumpOpts); |
| 387 | OS << "\n"; |
| 388 | }; |
| 389 | |
| 390 | const DWARFObject &DObj = DCtx.getDWARFObj(); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 391 | const auto Attr = AttrValue.Attr; |
| 392 | switch (Attr) { |
| 393 | case DW_AT_ranges: |
| 394 | // Make sure the offset in the DW_AT_ranges attribute is valid. |
| 395 | if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 396 | if (*SectionOffset >= DObj.getRangeSection().Data.size()) |
| 397 | ReportError("DW_AT_ranges offset is beyond .debug_ranges bounds:"); |
| 398 | break; |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 399 | } |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 400 | ReportError("DIE has invalid DW_AT_ranges encoding:"); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 401 | break; |
| 402 | case DW_AT_stmt_list: |
| 403 | // Make sure the offset in the DW_AT_stmt_list attribute is valid. |
| 404 | if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 405 | if (*SectionOffset >= DObj.getLineSection().Data.size()) |
| 406 | ReportError("DW_AT_stmt_list offset is beyond .debug_line bounds: " + |
George Rimar | 3d07f60 | 2017-10-27 10:58:04 +0000 | [diff] [blame] | 407 | llvm::formatv("{0:x8}", *SectionOffset)); |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 408 | break; |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 409 | } |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 410 | ReportError("DIE has invalid DW_AT_stmt_list encoding:"); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 411 | break; |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 412 | case DW_AT_location: { |
Jonas Devlieghere | 7d4a974 | 2018-02-17 13:06:37 +0000 | [diff] [blame^] | 413 | auto VerifyLocation = [&](StringRef D) { |
| 414 | DWARFUnit *U = Die.getDwarfUnit(); |
| 415 | DataExtractor Data(D, DCtx.isLittleEndian(), 0); |
| 416 | DWARFExpression Expression(Data, U->getVersion(), |
| 417 | U->getAddressByteSize()); |
| 418 | bool Error = llvm::any_of(Expression, [](DWARFExpression::Operation &Op) { |
| 419 | return Op.isError(); |
| 420 | }); |
| 421 | if (Error) |
| 422 | ReportError("DIE contains invalid DWARF expression:"); |
| 423 | }; |
| 424 | if (Optional<ArrayRef<uint8_t>> Expr = AttrValue.Value.getAsBlock()) { |
| 425 | // Verify inlined location. |
| 426 | VerifyLocation(llvm::toStringRef(*Expr)); |
| 427 | } else if (auto LocOffset = AttrValue.Value.getAsUnsignedConstant()) { |
| 428 | // Verify location list. |
| 429 | if (auto DebugLoc = DCtx.getDebugLoc()) |
| 430 | if (auto LocList = DebugLoc->getLocationListAtOffset(*LocOffset)) |
| 431 | for (const auto &Entry : LocList->Entries) |
| 432 | VerifyLocation({Entry.Loc.data(), Entry.Loc.size()}); |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 433 | } |
George Rimar | 144e4c5 | 2017-10-27 10:42:04 +0000 | [diff] [blame] | 434 | break; |
| 435 | } |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 436 | |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 437 | default: |
| 438 | break; |
| 439 | } |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 440 | return NumErrors; |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 441 | } |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 442 | |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 443 | unsigned DWARFVerifier::verifyDebugInfoForm(const DWARFDie &Die, |
| 444 | DWARFAttribute &AttrValue) { |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 445 | const DWARFObject &DObj = DCtx.getDWARFObj(); |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 446 | unsigned NumErrors = 0; |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 447 | const auto Form = AttrValue.Value.getForm(); |
| 448 | switch (Form) { |
| 449 | case DW_FORM_ref1: |
| 450 | case DW_FORM_ref2: |
| 451 | case DW_FORM_ref4: |
| 452 | case DW_FORM_ref8: |
| 453 | case DW_FORM_ref_udata: { |
| 454 | // Verify all CU relative references are valid CU offsets. |
| 455 | Optional<uint64_t> RefVal = AttrValue.Value.getAsReference(); |
| 456 | assert(RefVal); |
| 457 | if (RefVal) { |
| 458 | auto DieCU = Die.getDwarfUnit(); |
| 459 | auto CUSize = DieCU->getNextUnitOffset() - DieCU->getOffset(); |
| 460 | auto CUOffset = AttrValue.Value.getRawUValue(); |
| 461 | if (CUOffset >= CUSize) { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 462 | ++NumErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 463 | error() << FormEncodingString(Form) << " CU offset " |
| 464 | << format("0x%08" PRIx64, CUOffset) |
| 465 | << " is invalid (must be less than CU size of " |
| 466 | << format("0x%08" PRIx32, CUSize) << "):\n"; |
Adrian Prantl | d3f9f21 | 2017-09-20 17:44:00 +0000 | [diff] [blame] | 467 | Die.dump(OS, 0, DumpOpts); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 468 | OS << "\n"; |
| 469 | } else { |
| 470 | // Valid reference, but we will verify it points to an actual |
| 471 | // DIE later. |
| 472 | ReferenceToDIEOffsets[*RefVal].insert(Die.getOffset()); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 473 | } |
| 474 | } |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 475 | break; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 476 | } |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 477 | case DW_FORM_ref_addr: { |
| 478 | // Verify all absolute DIE references have valid offsets in the |
| 479 | // .debug_info section. |
| 480 | Optional<uint64_t> RefVal = AttrValue.Value.getAsReference(); |
| 481 | assert(RefVal); |
| 482 | if (RefVal) { |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 483 | if (*RefVal >= DObj.getInfoSection().Data.size()) { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 484 | ++NumErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 485 | error() << "DW_FORM_ref_addr offset beyond .debug_info " |
| 486 | "bounds:\n"; |
Adrian Prantl | d3f9f21 | 2017-09-20 17:44:00 +0000 | [diff] [blame] | 487 | Die.dump(OS, 0, DumpOpts); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 488 | OS << "\n"; |
| 489 | } else { |
| 490 | // Valid reference, but we will verify it points to an actual |
| 491 | // DIE later. |
| 492 | ReferenceToDIEOffsets[*RefVal].insert(Die.getOffset()); |
| 493 | } |
| 494 | } |
| 495 | break; |
| 496 | } |
| 497 | case DW_FORM_strp: { |
| 498 | auto SecOffset = AttrValue.Value.getAsSectionOffset(); |
| 499 | assert(SecOffset); // DW_FORM_strp is a section offset. |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 500 | if (SecOffset && *SecOffset >= DObj.getStringSection().size()) { |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 501 | ++NumErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 502 | error() << "DW_FORM_strp offset beyond .debug_str bounds:\n"; |
Adrian Prantl | d3f9f21 | 2017-09-20 17:44:00 +0000 | [diff] [blame] | 503 | Die.dump(OS, 0, DumpOpts); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 504 | OS << "\n"; |
| 505 | } |
| 506 | break; |
| 507 | } |
| 508 | default: |
| 509 | break; |
| 510 | } |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 511 | return NumErrors; |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 512 | } |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 513 | |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 514 | unsigned DWARFVerifier::verifyDebugInfoReferences() { |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 515 | // Take all references and make sure they point to an actual DIE by |
| 516 | // getting the DIE by offset and emitting an error |
| 517 | OS << "Verifying .debug_info references...\n"; |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 518 | unsigned NumErrors = 0; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 519 | for (auto Pair : ReferenceToDIEOffsets) { |
| 520 | auto Die = DCtx.getDIEForOffset(Pair.first); |
| 521 | if (Die) |
| 522 | continue; |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 523 | ++NumErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 524 | error() << "invalid DIE reference " << format("0x%08" PRIx64, Pair.first) |
| 525 | << ". Offset is in between DIEs:\n"; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 526 | for (auto Offset : Pair.second) { |
| 527 | auto ReferencingDie = DCtx.getDIEForOffset(Offset); |
Adrian Prantl | d3f9f21 | 2017-09-20 17:44:00 +0000 | [diff] [blame] | 528 | ReferencingDie.dump(OS, 0, DumpOpts); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 529 | OS << "\n"; |
| 530 | } |
| 531 | OS << "\n"; |
| 532 | } |
Spyridoula Gravani | f6bd788d | 2017-07-18 01:00:26 +0000 | [diff] [blame] | 533 | return NumErrors; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 534 | } |
| 535 | |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 536 | void DWARFVerifier::verifyDebugLineStmtOffsets() { |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 537 | std::map<uint64_t, DWARFDie> StmtListToDie; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 538 | for (const auto &CU : DCtx.compile_units()) { |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 539 | auto Die = CU->getUnitDIE(); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 540 | // Get the attribute value as a section offset. No need to produce an |
| 541 | // error here if the encoding isn't correct because we validate this in |
| 542 | // the .debug_info verifier. |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 543 | auto StmtSectionOffset = toSectionOffset(Die.find(DW_AT_stmt_list)); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 544 | if (!StmtSectionOffset) |
| 545 | continue; |
| 546 | const uint32_t LineTableOffset = *StmtSectionOffset; |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 547 | auto LineTable = DCtx.getLineTableForUnit(CU.get()); |
Rafael Espindola | c398e67 | 2017-07-19 22:27:28 +0000 | [diff] [blame] | 548 | if (LineTableOffset < DCtx.getDWARFObj().getLineSection().Data.size()) { |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 549 | if (!LineTable) { |
| 550 | ++NumDebugLineErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 551 | error() << ".debug_line[" << format("0x%08" PRIx32, LineTableOffset) |
| 552 | << "] was not able to be parsed for CU:\n"; |
Adrian Prantl | d3f9f21 | 2017-09-20 17:44:00 +0000 | [diff] [blame] | 553 | Die.dump(OS, 0, DumpOpts); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 554 | OS << '\n'; |
| 555 | continue; |
| 556 | } |
| 557 | } else { |
| 558 | // Make sure we don't get a valid line table back if the offset is wrong. |
| 559 | assert(LineTable == nullptr); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 560 | // Skip this line table as it isn't valid. No need to create an error |
| 561 | // here because we validate this in the .debug_info verifier. |
| 562 | continue; |
| 563 | } |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 564 | auto Iter = StmtListToDie.find(LineTableOffset); |
| 565 | if (Iter != StmtListToDie.end()) { |
| 566 | ++NumDebugLineErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 567 | error() << "two compile unit DIEs, " |
| 568 | << format("0x%08" PRIx32, Iter->second.getOffset()) << " and " |
| 569 | << format("0x%08" PRIx32, Die.getOffset()) |
| 570 | << ", have the same DW_AT_stmt_list section offset:\n"; |
Adrian Prantl | d3f9f21 | 2017-09-20 17:44:00 +0000 | [diff] [blame] | 571 | Iter->second.dump(OS, 0, DumpOpts); |
| 572 | Die.dump(OS, 0, DumpOpts); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 573 | OS << '\n'; |
| 574 | // Already verified this line table before, no need to do it again. |
| 575 | continue; |
| 576 | } |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 577 | StmtListToDie[LineTableOffset] = Die; |
| 578 | } |
| 579 | } |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 580 | |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 581 | void DWARFVerifier::verifyDebugLineRows() { |
| 582 | for (const auto &CU : DCtx.compile_units()) { |
| 583 | auto Die = CU->getUnitDIE(); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 584 | auto LineTable = DCtx.getLineTableForUnit(CU.get()); |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 585 | // If there is no line table we will have created an error in the |
| 586 | // .debug_info verifier or in verifyDebugLineStmtOffsets(). |
| 587 | if (!LineTable) |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 588 | continue; |
Jonas Devlieghere | f4ed65d | 2017-09-08 09:48:51 +0000 | [diff] [blame] | 589 | |
| 590 | // Verify prologue. |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 591 | uint32_t MaxFileIndex = LineTable->Prologue.FileNames.size(); |
Jonas Devlieghere | f4ed65d | 2017-09-08 09:48:51 +0000 | [diff] [blame] | 592 | uint32_t MaxDirIndex = LineTable->Prologue.IncludeDirectories.size(); |
| 593 | uint32_t FileIndex = 1; |
| 594 | StringMap<uint16_t> FullPathMap; |
| 595 | for (const auto &FileName : LineTable->Prologue.FileNames) { |
| 596 | // Verify directory index. |
| 597 | if (FileName.DirIdx > MaxDirIndex) { |
| 598 | ++NumDebugLineErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 599 | error() << ".debug_line[" |
| 600 | << format("0x%08" PRIx64, |
| 601 | *toSectionOffset(Die.find(DW_AT_stmt_list))) |
| 602 | << "].prologue.file_names[" << FileIndex |
| 603 | << "].dir_idx contains an invalid index: " << FileName.DirIdx |
| 604 | << "\n"; |
Jonas Devlieghere | f4ed65d | 2017-09-08 09:48:51 +0000 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | // Check file paths for duplicates. |
| 608 | std::string FullPath; |
| 609 | const bool HasFullPath = LineTable->getFileNameByIndex( |
| 610 | FileIndex, CU->getCompilationDir(), |
| 611 | DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); |
| 612 | assert(HasFullPath && "Invalid index?"); |
| 613 | (void)HasFullPath; |
| 614 | auto It = FullPathMap.find(FullPath); |
| 615 | if (It == FullPathMap.end()) |
| 616 | FullPathMap[FullPath] = FileIndex; |
| 617 | else if (It->second != FileIndex) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 618 | warn() << ".debug_line[" |
| 619 | << format("0x%08" PRIx64, |
| 620 | *toSectionOffset(Die.find(DW_AT_stmt_list))) |
| 621 | << "].prologue.file_names[" << FileIndex |
| 622 | << "] is a duplicate of file_names[" << It->second << "]\n"; |
Jonas Devlieghere | f4ed65d | 2017-09-08 09:48:51 +0000 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | FileIndex++; |
| 626 | } |
| 627 | |
| 628 | // Verify rows. |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 629 | uint64_t PrevAddress = 0; |
| 630 | uint32_t RowIndex = 0; |
| 631 | for (const auto &Row : LineTable->Rows) { |
Jonas Devlieghere | f4ed65d | 2017-09-08 09:48:51 +0000 | [diff] [blame] | 632 | // Verify row address. |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 633 | if (Row.Address < PrevAddress) { |
| 634 | ++NumDebugLineErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 635 | error() << ".debug_line[" |
| 636 | << format("0x%08" PRIx64, |
| 637 | *toSectionOffset(Die.find(DW_AT_stmt_list))) |
| 638 | << "] row[" << RowIndex |
| 639 | << "] decreases in address from previous row:\n"; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 640 | |
| 641 | DWARFDebugLine::Row::dumpTableHeader(OS); |
| 642 | if (RowIndex > 0) |
| 643 | LineTable->Rows[RowIndex - 1].dump(OS); |
| 644 | Row.dump(OS); |
| 645 | OS << '\n'; |
| 646 | } |
| 647 | |
Jonas Devlieghere | f4ed65d | 2017-09-08 09:48:51 +0000 | [diff] [blame] | 648 | // Verify file index. |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 649 | if (Row.File > MaxFileIndex) { |
| 650 | ++NumDebugLineErrors; |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 651 | error() << ".debug_line[" |
| 652 | << format("0x%08" PRIx64, |
| 653 | *toSectionOffset(Die.find(DW_AT_stmt_list))) |
| 654 | << "][" << RowIndex << "] has invalid file index " << Row.File |
| 655 | << " (valid values are [1," << MaxFileIndex << "]):\n"; |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 656 | DWARFDebugLine::Row::dumpTableHeader(OS); |
| 657 | Row.dump(OS); |
| 658 | OS << '\n'; |
| 659 | } |
| 660 | if (Row.EndSequence) |
| 661 | PrevAddress = 0; |
| 662 | else |
| 663 | PrevAddress = Row.Address; |
| 664 | ++RowIndex; |
| 665 | } |
| 666 | } |
Greg Clayton | c5b2d56 | 2017-05-03 18:25:46 +0000 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | bool DWARFVerifier::handleDebugLine() { |
| 670 | NumDebugLineErrors = 0; |
| 671 | OS << "Verifying .debug_line...\n"; |
| 672 | verifyDebugLineStmtOffsets(); |
| 673 | verifyDebugLineRows(); |
Greg Clayton | b8c162b | 2017-05-03 16:02:29 +0000 | [diff] [blame] | 674 | return NumDebugLineErrors == 0; |
| 675 | } |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 676 | |
Pavel Labath | 9b36fd2 | 2018-01-22 13:17:23 +0000 | [diff] [blame] | 677 | unsigned DWARFVerifier::verifyAppleAccelTable(const DWARFSection *AccelSection, |
| 678 | DataExtractor *StrData, |
| 679 | const char *SectionName) { |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 680 | unsigned NumErrors = 0; |
| 681 | DWARFDataExtractor AccelSectionData(DCtx.getDWARFObj(), *AccelSection, |
| 682 | DCtx.isLittleEndian(), 0); |
Pavel Labath | 9b36fd2 | 2018-01-22 13:17:23 +0000 | [diff] [blame] | 683 | AppleAcceleratorTable AccelTable(AccelSectionData, *StrData); |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 684 | |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 685 | OS << "Verifying " << SectionName << "...\n"; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 686 | |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 687 | // Verify that the fixed part of the header is not too short. |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 688 | if (!AccelSectionData.isValidOffset(AccelTable.getSizeHdr())) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 689 | error() << "Section is too small to fit a section header.\n"; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 690 | return 1; |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 691 | } |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 692 | |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 693 | // Verify that the section is not too short. |
Jonas Devlieghere | ba91589 | 2017-12-11 18:22:47 +0000 | [diff] [blame] | 694 | if (Error E = AccelTable.extract()) { |
| 695 | error() << toString(std::move(E)) << '\n'; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 696 | return 1; |
| 697 | } |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 698 | |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 699 | // Verify that all buckets have a valid hash index or are empty. |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 700 | uint32_t NumBuckets = AccelTable.getNumBuckets(); |
| 701 | uint32_t NumHashes = AccelTable.getNumHashes(); |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 702 | |
| 703 | uint32_t BucketsOffset = |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 704 | AccelTable.getSizeHdr() + AccelTable.getHeaderDataLength(); |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 705 | uint32_t HashesBase = BucketsOffset + NumBuckets * 4; |
| 706 | uint32_t OffsetsBase = HashesBase + NumHashes * 4; |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 707 | for (uint32_t BucketIdx = 0; BucketIdx < NumBuckets; ++BucketIdx) { |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 708 | uint32_t HashIdx = AccelSectionData.getU32(&BucketsOffset); |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 709 | if (HashIdx >= NumHashes && HashIdx != UINT32_MAX) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 710 | error() << format("Bucket[%d] has invalid hash index: %u.\n", BucketIdx, |
| 711 | HashIdx); |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 712 | ++NumErrors; |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 713 | } |
| 714 | } |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 715 | uint32_t NumAtoms = AccelTable.getAtomsDesc().size(); |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 716 | if (NumAtoms == 0) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 717 | error() << "No atoms: failed to read HashData.\n"; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 718 | return 1; |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 719 | } |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 720 | if (!AccelTable.validateForms()) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 721 | error() << "Unsupported form: failed to read HashData.\n"; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 722 | return 1; |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 723 | } |
| 724 | |
| 725 | for (uint32_t HashIdx = 0; HashIdx < NumHashes; ++HashIdx) { |
| 726 | uint32_t HashOffset = HashesBase + 4 * HashIdx; |
| 727 | uint32_t DataOffset = OffsetsBase + 4 * HashIdx; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 728 | uint32_t Hash = AccelSectionData.getU32(&HashOffset); |
| 729 | uint32_t HashDataOffset = AccelSectionData.getU32(&DataOffset); |
| 730 | if (!AccelSectionData.isValidOffsetForDataOfSize(HashDataOffset, |
| 731 | sizeof(uint64_t))) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 732 | error() << format("Hash[%d] has invalid HashData offset: 0x%08x.\n", |
| 733 | HashIdx, HashDataOffset); |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 734 | ++NumErrors; |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | uint32_t StrpOffset; |
| 738 | uint32_t StringOffset; |
| 739 | uint32_t StringCount = 0; |
Spyridoula Gravani | 70d35e1 | 2017-07-31 18:01:16 +0000 | [diff] [blame] | 740 | unsigned Offset; |
| 741 | unsigned Tag; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 742 | while ((StrpOffset = AccelSectionData.getU32(&HashDataOffset)) != 0) { |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 743 | const uint32_t NumHashDataObjects = |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 744 | AccelSectionData.getU32(&HashDataOffset); |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 745 | for (uint32_t HashDataIdx = 0; HashDataIdx < NumHashDataObjects; |
| 746 | ++HashDataIdx) { |
Spyridoula Gravani | 70d35e1 | 2017-07-31 18:01:16 +0000 | [diff] [blame] | 747 | std::tie(Offset, Tag) = AccelTable.readAtoms(HashDataOffset); |
| 748 | auto Die = DCtx.getDIEForOffset(Offset); |
| 749 | if (!Die) { |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 750 | const uint32_t BucketIdx = |
| 751 | NumBuckets ? (Hash % NumBuckets) : UINT32_MAX; |
| 752 | StringOffset = StrpOffset; |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 753 | const char *Name = StrData->getCStr(&StringOffset); |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 754 | if (!Name) |
| 755 | Name = "<NULL>"; |
| 756 | |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 757 | error() << format( |
| 758 | "%s Bucket[%d] Hash[%d] = 0x%08x " |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 759 | "Str[%u] = 0x%08x " |
| 760 | "DIE[%d] = 0x%08x is not a valid DIE offset for \"%s\".\n", |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 761 | SectionName, BucketIdx, HashIdx, Hash, StringCount, StrpOffset, |
Spyridoula Gravani | 70d35e1 | 2017-07-31 18:01:16 +0000 | [diff] [blame] | 762 | HashDataIdx, Offset, Name); |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 763 | |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 764 | ++NumErrors; |
Spyridoula Gravani | 70d35e1 | 2017-07-31 18:01:16 +0000 | [diff] [blame] | 765 | continue; |
| 766 | } |
| 767 | if ((Tag != dwarf::DW_TAG_null) && (Die.getTag() != Tag)) { |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 768 | error() << "Tag " << dwarf::TagString(Tag) |
| 769 | << " in accelerator table does not match Tag " |
| 770 | << dwarf::TagString(Die.getTag()) << " of DIE[" << HashDataIdx |
| 771 | << "].\n"; |
Spyridoula Gravani | 70d35e1 | 2017-07-31 18:01:16 +0000 | [diff] [blame] | 772 | ++NumErrors; |
Spyridoula Gravani | 837c110 | 2017-06-29 20:13:05 +0000 | [diff] [blame] | 773 | } |
| 774 | } |
| 775 | ++StringCount; |
| 776 | } |
| 777 | } |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 778 | return NumErrors; |
| 779 | } |
| 780 | |
| 781 | bool DWARFVerifier::handleAccelTables() { |
| 782 | const DWARFObject &D = DCtx.getDWARFObj(); |
| 783 | DataExtractor StrData(D.getStringSection(), DCtx.isLittleEndian(), 0); |
| 784 | unsigned NumErrors = 0; |
| 785 | if (!D.getAppleNamesSection().Data.empty()) |
| 786 | NumErrors += |
Pavel Labath | 9b36fd2 | 2018-01-22 13:17:23 +0000 | [diff] [blame] | 787 | verifyAppleAccelTable(&D.getAppleNamesSection(), &StrData, ".apple_names"); |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 788 | if (!D.getAppleTypesSection().Data.empty()) |
| 789 | NumErrors += |
Pavel Labath | 9b36fd2 | 2018-01-22 13:17:23 +0000 | [diff] [blame] | 790 | verifyAppleAccelTable(&D.getAppleTypesSection(), &StrData, ".apple_types"); |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 791 | if (!D.getAppleNamespacesSection().Data.empty()) |
Pavel Labath | 9b36fd2 | 2018-01-22 13:17:23 +0000 | [diff] [blame] | 792 | NumErrors += verifyAppleAccelTable(&D.getAppleNamespacesSection(), &StrData, |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 793 | ".apple_namespaces"); |
| 794 | if (!D.getAppleObjCSection().Data.empty()) |
| 795 | NumErrors += |
Pavel Labath | 9b36fd2 | 2018-01-22 13:17:23 +0000 | [diff] [blame] | 796 | verifyAppleAccelTable(&D.getAppleObjCSection(), &StrData, ".apple_objc"); |
Spyridoula Gravani | dc635f4 | 2017-07-26 00:52:31 +0000 | [diff] [blame] | 797 | return NumErrors == 0; |
Spyridoula Gravani | e41823b | 2017-06-14 00:17:55 +0000 | [diff] [blame] | 798 | } |
Jonas Devlieghere | 19fc4d9 | 2017-09-29 09:33:31 +0000 | [diff] [blame] | 799 | |
| 800 | raw_ostream &DWARFVerifier::error() const { |
| 801 | return WithColor(OS, syntax::Error).get() << "error: "; |
| 802 | } |
| 803 | |
| 804 | raw_ostream &DWARFVerifier::warn() const { |
| 805 | return WithColor(OS, syntax::Warning).get() << "warning: "; |
| 806 | } |
| 807 | |
| 808 | raw_ostream &DWARFVerifier::note() const { |
| 809 | return WithColor(OS, syntax::Note).get() << "note: "; |
| 810 | } |