144d95122SEugene Zelenko //===- SymbolizableObjectFile.cpp -----------------------------------------===// 28df3a07aSAlexey Samsonov // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 68df3a07aSAlexey Samsonov // 78df3a07aSAlexey Samsonov //===----------------------------------------------------------------------===// 88df3a07aSAlexey Samsonov // 98df3a07aSAlexey Samsonov // Implementation of SymbolizableObjectFile class. 108df3a07aSAlexey Samsonov // 118df3a07aSAlexey Samsonov //===----------------------------------------------------------------------===// 128df3a07aSAlexey Samsonov 138df3a07aSAlexey Samsonov #include "SymbolizableObjectFile.h" 1444d95122SEugene Zelenko #include "llvm/ADT/STLExtras.h" 1544d95122SEugene Zelenko #include "llvm/ADT/StringRef.h" 1644d95122SEugene Zelenko #include "llvm/ADT/Triple.h" 17264b5d9eSZachary Turner #include "llvm/BinaryFormat/COFF.h" 18c038e2dbSReid Kleckner #include "llvm/DebugInfo/DWARF/DWARFContext.h" 1944d95122SEugene Zelenko #include "llvm/DebugInfo/Symbolize/SymbolizableModule.h" 2044d95122SEugene Zelenko #include "llvm/Object/COFF.h" 2144d95122SEugene Zelenko #include "llvm/Object/ObjectFile.h" 2244d95122SEugene Zelenko #include "llvm/Object/SymbolSize.h" 2344d95122SEugene Zelenko #include "llvm/Support/Casting.h" 2444d95122SEugene Zelenko #include "llvm/Support/DataExtractor.h" 2544d95122SEugene Zelenko #include "llvm/Support/Error.h" 2644d95122SEugene Zelenko #include <algorithm> 2744d95122SEugene Zelenko #include <cstdint> 2844d95122SEugene Zelenko #include <memory> 2944d95122SEugene Zelenko #include <string> 3044d95122SEugene Zelenko #include <system_error> 3144d95122SEugene Zelenko #include <utility> 3244d95122SEugene Zelenko #include <vector> 338df3a07aSAlexey Samsonov 3444d95122SEugene Zelenko using namespace llvm; 358df3a07aSAlexey Samsonov using namespace object; 3644d95122SEugene Zelenko using namespace symbolize; 378df3a07aSAlexey Samsonov 388df3a07aSAlexey Samsonov static DILineInfoSpecifier 398df3a07aSAlexey Samsonov getDILineInfoSpecifier(FunctionNameKind FNKind) { 408df3a07aSAlexey Samsonov return DILineInfoSpecifier( 418df3a07aSAlexey Samsonov DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FNKind); 428df3a07aSAlexey Samsonov } 438df3a07aSAlexey Samsonov 448df3a07aSAlexey Samsonov ErrorOr<std::unique_ptr<SymbolizableObjectFile>> 458df3a07aSAlexey Samsonov SymbolizableObjectFile::create(object::ObjectFile *Obj, 468df3a07aSAlexey Samsonov std::unique_ptr<DIContext> DICtx) { 478df3a07aSAlexey Samsonov std::unique_ptr<SymbolizableObjectFile> res( 488df3a07aSAlexey Samsonov new SymbolizableObjectFile(Obj, std::move(DICtx))); 498df3a07aSAlexey Samsonov std::unique_ptr<DataExtractor> OpdExtractor; 508df3a07aSAlexey Samsonov uint64_t OpdAddress = 0; 518df3a07aSAlexey Samsonov // Find the .opd (function descriptor) section if any, for big-endian 528df3a07aSAlexey Samsonov // PowerPC64 ELF. 538df3a07aSAlexey Samsonov if (Obj->getArch() == Triple::ppc64) { 548df3a07aSAlexey Samsonov for (section_iterator Section : Obj->sections()) { 558df3a07aSAlexey Samsonov StringRef Name; 568df3a07aSAlexey Samsonov StringRef Data; 578df3a07aSAlexey Samsonov if (auto EC = Section->getName(Name)) 588df3a07aSAlexey Samsonov return EC; 598df3a07aSAlexey Samsonov if (Name == ".opd") { 608df3a07aSAlexey Samsonov if (auto EC = Section->getContents(Data)) 618df3a07aSAlexey Samsonov return EC; 628df3a07aSAlexey Samsonov OpdExtractor.reset(new DataExtractor(Data, Obj->isLittleEndian(), 638df3a07aSAlexey Samsonov Obj->getBytesInAddress())); 648df3a07aSAlexey Samsonov OpdAddress = Section->getAddress(); 658df3a07aSAlexey Samsonov break; 668df3a07aSAlexey Samsonov } 678df3a07aSAlexey Samsonov } 688df3a07aSAlexey Samsonov } 698df3a07aSAlexey Samsonov std::vector<std::pair<SymbolRef, uint64_t>> Symbols = 708df3a07aSAlexey Samsonov computeSymbolSizes(*Obj); 718df3a07aSAlexey Samsonov for (auto &P : Symbols) 728df3a07aSAlexey Samsonov res->addSymbol(P.first, P.second, OpdExtractor.get(), OpdAddress); 738df3a07aSAlexey Samsonov 748df3a07aSAlexey Samsonov // If this is a COFF object and we didn't find any symbols, try the export 758df3a07aSAlexey Samsonov // table. 768df3a07aSAlexey Samsonov if (Symbols.empty()) { 778df3a07aSAlexey Samsonov if (auto *CoffObj = dyn_cast<COFFObjectFile>(Obj)) 788df3a07aSAlexey Samsonov if (auto EC = res->addCoffExportSymbols(CoffObj)) 798df3a07aSAlexey Samsonov return EC; 808df3a07aSAlexey Samsonov } 818df3a07aSAlexey Samsonov return std::move(res); 828df3a07aSAlexey Samsonov } 838df3a07aSAlexey Samsonov 848df3a07aSAlexey Samsonov SymbolizableObjectFile::SymbolizableObjectFile(ObjectFile *Obj, 858df3a07aSAlexey Samsonov std::unique_ptr<DIContext> DICtx) 868df3a07aSAlexey Samsonov : Module(Obj), DebugInfoContext(std::move(DICtx)) {} 878df3a07aSAlexey Samsonov 888df3a07aSAlexey Samsonov namespace { 8944d95122SEugene Zelenko 908df3a07aSAlexey Samsonov struct OffsetNamePair { 918df3a07aSAlexey Samsonov uint32_t Offset; 928df3a07aSAlexey Samsonov StringRef Name; 9344d95122SEugene Zelenko 948df3a07aSAlexey Samsonov bool operator<(const OffsetNamePair &R) const { 958df3a07aSAlexey Samsonov return Offset < R.Offset; 968df3a07aSAlexey Samsonov } 978df3a07aSAlexey Samsonov }; 9844d95122SEugene Zelenko 9944d95122SEugene Zelenko } // end anonymous namespace 1008df3a07aSAlexey Samsonov 1018df3a07aSAlexey Samsonov std::error_code SymbolizableObjectFile::addCoffExportSymbols( 1028df3a07aSAlexey Samsonov const COFFObjectFile *CoffObj) { 1038df3a07aSAlexey Samsonov // Get all export names and offsets. 1048df3a07aSAlexey Samsonov std::vector<OffsetNamePair> ExportSyms; 1058df3a07aSAlexey Samsonov for (const ExportDirectoryEntryRef &Ref : CoffObj->export_directories()) { 1068df3a07aSAlexey Samsonov StringRef Name; 1078df3a07aSAlexey Samsonov uint32_t Offset; 1088df3a07aSAlexey Samsonov if (auto EC = Ref.getSymbolName(Name)) 1098df3a07aSAlexey Samsonov return EC; 1108df3a07aSAlexey Samsonov if (auto EC = Ref.getExportRVA(Offset)) 1118df3a07aSAlexey Samsonov return EC; 1128df3a07aSAlexey Samsonov ExportSyms.push_back(OffsetNamePair{Offset, Name}); 1138df3a07aSAlexey Samsonov } 1148df3a07aSAlexey Samsonov if (ExportSyms.empty()) 1158df3a07aSAlexey Samsonov return std::error_code(); 1168df3a07aSAlexey Samsonov 1178df3a07aSAlexey Samsonov // Sort by ascending offset. 1188df3a07aSAlexey Samsonov array_pod_sort(ExportSyms.begin(), ExportSyms.end()); 1198df3a07aSAlexey Samsonov 1208df3a07aSAlexey Samsonov // Approximate the symbol sizes by assuming they run to the next symbol. 1218df3a07aSAlexey Samsonov // FIXME: This assumes all exports are functions. 1228df3a07aSAlexey Samsonov uint64_t ImageBase = CoffObj->getImageBase(); 1238df3a07aSAlexey Samsonov for (auto I = ExportSyms.begin(), E = ExportSyms.end(); I != E; ++I) { 1248df3a07aSAlexey Samsonov OffsetNamePair &Export = *I; 1258df3a07aSAlexey Samsonov // FIXME: The last export has a one byte size now. 1268df3a07aSAlexey Samsonov uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; 1278df3a07aSAlexey Samsonov uint64_t SymbolStart = ImageBase + Export.Offset; 1288df3a07aSAlexey Samsonov uint64_t SymbolSize = NextOffset - Export.Offset; 1298df3a07aSAlexey Samsonov SymbolDesc SD = {SymbolStart, SymbolSize}; 1308df3a07aSAlexey Samsonov Functions.insert(std::make_pair(SD, Export.Name)); 1318df3a07aSAlexey Samsonov } 1328df3a07aSAlexey Samsonov return std::error_code(); 1338df3a07aSAlexey Samsonov } 1348df3a07aSAlexey Samsonov 1358df3a07aSAlexey Samsonov std::error_code SymbolizableObjectFile::addSymbol(const SymbolRef &Symbol, 1368df3a07aSAlexey Samsonov uint64_t SymbolSize, 1378df3a07aSAlexey Samsonov DataExtractor *OpdExtractor, 1388df3a07aSAlexey Samsonov uint64_t OpdAddress) { 139123be5d4SMatt Davis // Avoid adding symbols from an unknown/undefined section. 140123be5d4SMatt Davis const ObjectFile *Obj = Symbol.getObject(); 141123be5d4SMatt Davis Expected<section_iterator> Sec = Symbol.getSection(); 142123be5d4SMatt Davis if (!Sec || (Obj && Obj->section_end() == *Sec)) 143123be5d4SMatt Davis return std::error_code(); 1447bd8d994SKevin Enderby Expected<SymbolRef::Type> SymbolTypeOrErr = Symbol.getType(); 1457bd8d994SKevin Enderby if (!SymbolTypeOrErr) 1467bd8d994SKevin Enderby return errorToErrorCode(SymbolTypeOrErr.takeError()); 1475afbc1cdSKevin Enderby SymbolRef::Type SymbolType = *SymbolTypeOrErr; 1488df3a07aSAlexey Samsonov if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data) 1498df3a07aSAlexey Samsonov return std::error_code(); 150931cb65dSKevin Enderby Expected<uint64_t> SymbolAddressOrErr = Symbol.getAddress(); 151931cb65dSKevin Enderby if (!SymbolAddressOrErr) 152931cb65dSKevin Enderby return errorToErrorCode(SymbolAddressOrErr.takeError()); 1538df3a07aSAlexey Samsonov uint64_t SymbolAddress = *SymbolAddressOrErr; 1548df3a07aSAlexey Samsonov if (OpdExtractor) { 1558df3a07aSAlexey Samsonov // For big-endian PowerPC64 ELF, symbols in the .opd section refer to 1568df3a07aSAlexey Samsonov // function descriptors. The first word of the descriptor is a pointer to 1578df3a07aSAlexey Samsonov // the function's code. 1588df3a07aSAlexey Samsonov // For the purposes of symbolization, pretend the symbol's address is that 1598df3a07aSAlexey Samsonov // of the function's code, not the descriptor. 1608df3a07aSAlexey Samsonov uint64_t OpdOffset = SymbolAddress - OpdAddress; 1618df3a07aSAlexey Samsonov uint32_t OpdOffset32 = OpdOffset; 1628df3a07aSAlexey Samsonov if (OpdOffset == OpdOffset32 && 1638df3a07aSAlexey Samsonov OpdExtractor->isValidOffsetForAddress(OpdOffset32)) 1648df3a07aSAlexey Samsonov SymbolAddress = OpdExtractor->getAddress(&OpdOffset32); 1658df3a07aSAlexey Samsonov } 16681e8b7d9SKevin Enderby Expected<StringRef> SymbolNameOrErr = Symbol.getName(); 16781e8b7d9SKevin Enderby if (!SymbolNameOrErr) 16881e8b7d9SKevin Enderby return errorToErrorCode(SymbolNameOrErr.takeError()); 1698df3a07aSAlexey Samsonov StringRef SymbolName = *SymbolNameOrErr; 1708df3a07aSAlexey Samsonov // Mach-O symbol table names have leading underscore, skip it. 17144d95122SEugene Zelenko if (Module->isMachO() && !SymbolName.empty() && SymbolName[0] == '_') 1728df3a07aSAlexey Samsonov SymbolName = SymbolName.drop_front(); 1738df3a07aSAlexey Samsonov // FIXME: If a function has alias, there are two entries in symbol table 1748df3a07aSAlexey Samsonov // with same address size. Make sure we choose the correct one. 1758df3a07aSAlexey Samsonov auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects; 1768df3a07aSAlexey Samsonov SymbolDesc SD = { SymbolAddress, SymbolSize }; 1778df3a07aSAlexey Samsonov M.insert(std::make_pair(SD, SymbolName)); 1788df3a07aSAlexey Samsonov return std::error_code(); 1798df3a07aSAlexey Samsonov } 1808df3a07aSAlexey Samsonov 1818df3a07aSAlexey Samsonov // Return true if this is a 32-bit x86 PE COFF module. 1828df3a07aSAlexey Samsonov bool SymbolizableObjectFile::isWin32Module() const { 1838df3a07aSAlexey Samsonov auto *CoffObject = dyn_cast<COFFObjectFile>(Module); 1848df3a07aSAlexey Samsonov return CoffObject && CoffObject->getMachine() == COFF::IMAGE_FILE_MACHINE_I386; 1858df3a07aSAlexey Samsonov } 1868df3a07aSAlexey Samsonov 1878df3a07aSAlexey Samsonov uint64_t SymbolizableObjectFile::getModulePreferredBase() const { 1888df3a07aSAlexey Samsonov if (auto *CoffObject = dyn_cast<COFFObjectFile>(Module)) 1898df3a07aSAlexey Samsonov return CoffObject->getImageBase(); 1908df3a07aSAlexey Samsonov return 0; 1918df3a07aSAlexey Samsonov } 1928df3a07aSAlexey Samsonov 1938df3a07aSAlexey Samsonov bool SymbolizableObjectFile::getNameFromSymbolTable(SymbolRef::Type Type, 1948df3a07aSAlexey Samsonov uint64_t Address, 1958df3a07aSAlexey Samsonov std::string &Name, 1968df3a07aSAlexey Samsonov uint64_t &Addr, 1978df3a07aSAlexey Samsonov uint64_t &Size) const { 1988df3a07aSAlexey Samsonov const auto &SymbolMap = Type == SymbolRef::ST_Function ? Functions : Objects; 1998df3a07aSAlexey Samsonov if (SymbolMap.empty()) 2008df3a07aSAlexey Samsonov return false; 2018df3a07aSAlexey Samsonov SymbolDesc SD = { Address, Address }; 2028df3a07aSAlexey Samsonov auto SymbolIterator = SymbolMap.upper_bound(SD); 2038df3a07aSAlexey Samsonov if (SymbolIterator == SymbolMap.begin()) 2048df3a07aSAlexey Samsonov return false; 2058df3a07aSAlexey Samsonov --SymbolIterator; 2068df3a07aSAlexey Samsonov if (SymbolIterator->first.Size != 0 && 2078df3a07aSAlexey Samsonov SymbolIterator->first.Addr + SymbolIterator->first.Size <= Address) 2088df3a07aSAlexey Samsonov return false; 2098df3a07aSAlexey Samsonov Name = SymbolIterator->second.str(); 2108df3a07aSAlexey Samsonov Addr = SymbolIterator->first.Addr; 2118df3a07aSAlexey Samsonov Size = SymbolIterator->first.Size; 2128df3a07aSAlexey Samsonov return true; 2138df3a07aSAlexey Samsonov } 2148df3a07aSAlexey Samsonov 215c038e2dbSReid Kleckner bool SymbolizableObjectFile::shouldOverrideWithSymbolTable( 216c038e2dbSReid Kleckner FunctionNameKind FNKind, bool UseSymbolTable) const { 217c038e2dbSReid Kleckner // When DWARF is used with -gline-tables-only / -gmlt, the symbol table gives 218c038e2dbSReid Kleckner // better answers for linkage names than the DIContext. Otherwise, we are 219c038e2dbSReid Kleckner // probably using PEs and PDBs, and we shouldn't do the override. PE files 220c038e2dbSReid Kleckner // generally only contain the names of exported symbols. 221c038e2dbSReid Kleckner return FNKind == FunctionNameKind::LinkageName && UseSymbolTable && 222c038e2dbSReid Kleckner isa<DWARFContext>(DebugInfoContext.get()); 223c038e2dbSReid Kleckner } 224c038e2dbSReid Kleckner 22577fc1f60SAlexey Lapshin DILineInfo 22677fc1f60SAlexey Lapshin SymbolizableObjectFile::symbolizeCode(object::SectionedAddress ModuleOffset, 2278df3a07aSAlexey Samsonov FunctionNameKind FNKind, 2288df3a07aSAlexey Samsonov bool UseSymbolTable) const { 2298df3a07aSAlexey Samsonov DILineInfo LineInfo; 230*b2c4b8bdSAlexey Lapshin 231*b2c4b8bdSAlexey Lapshin if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection) 232*b2c4b8bdSAlexey Lapshin ModuleOffset.SectionIndex = 233*b2c4b8bdSAlexey Lapshin getModuleSectionIndexForAddress(ModuleOffset.Address); 234*b2c4b8bdSAlexey Lapshin 2358df3a07aSAlexey Samsonov if (DebugInfoContext) { 2368df3a07aSAlexey Samsonov LineInfo = DebugInfoContext->getLineInfoForAddress( 2378df3a07aSAlexey Samsonov ModuleOffset, getDILineInfoSpecifier(FNKind)); 2388df3a07aSAlexey Samsonov } 2398df3a07aSAlexey Samsonov // Override function name from symbol table if necessary. 240c038e2dbSReid Kleckner if (shouldOverrideWithSymbolTable(FNKind, UseSymbolTable)) { 2418df3a07aSAlexey Samsonov std::string FunctionName; 2428df3a07aSAlexey Samsonov uint64_t Start, Size; 24377fc1f60SAlexey Lapshin if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset.Address, 2448df3a07aSAlexey Samsonov FunctionName, Start, Size)) { 2458df3a07aSAlexey Samsonov LineInfo.FunctionName = FunctionName; 2468df3a07aSAlexey Samsonov } 2478df3a07aSAlexey Samsonov } 2488df3a07aSAlexey Samsonov return LineInfo; 2498df3a07aSAlexey Samsonov } 2508df3a07aSAlexey Samsonov 2518df3a07aSAlexey Samsonov DIInliningInfo SymbolizableObjectFile::symbolizeInlinedCode( 25277fc1f60SAlexey Lapshin object::SectionedAddress ModuleOffset, FunctionNameKind FNKind, 25377fc1f60SAlexey Lapshin bool UseSymbolTable) const { 2548df3a07aSAlexey Samsonov DIInliningInfo InlinedContext; 2558df3a07aSAlexey Samsonov 256*b2c4b8bdSAlexey Lapshin if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection) 257*b2c4b8bdSAlexey Lapshin ModuleOffset.SectionIndex = 258*b2c4b8bdSAlexey Lapshin getModuleSectionIndexForAddress(ModuleOffset.Address); 259*b2c4b8bdSAlexey Lapshin 2608df3a07aSAlexey Samsonov if (DebugInfoContext) 2618df3a07aSAlexey Samsonov InlinedContext = DebugInfoContext->getInliningInfoForAddress( 2628df3a07aSAlexey Samsonov ModuleOffset, getDILineInfoSpecifier(FNKind)); 2638df3a07aSAlexey Samsonov // Make sure there is at least one frame in context. 2648df3a07aSAlexey Samsonov if (InlinedContext.getNumberOfFrames() == 0) 2658df3a07aSAlexey Samsonov InlinedContext.addFrame(DILineInfo()); 2668df3a07aSAlexey Samsonov 2678df3a07aSAlexey Samsonov // Override the function name in lower frame with name from symbol table. 268c038e2dbSReid Kleckner if (shouldOverrideWithSymbolTable(FNKind, UseSymbolTable)) { 2698df3a07aSAlexey Samsonov std::string FunctionName; 2708df3a07aSAlexey Samsonov uint64_t Start, Size; 27177fc1f60SAlexey Lapshin if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset.Address, 2728df3a07aSAlexey Samsonov FunctionName, Start, Size)) { 273e46bd741SAlexey Samsonov InlinedContext.getMutableFrame(InlinedContext.getNumberOfFrames() - 1) 274e46bd741SAlexey Samsonov ->FunctionName = FunctionName; 2758df3a07aSAlexey Samsonov } 2768df3a07aSAlexey Samsonov } 277e46bd741SAlexey Samsonov 278e46bd741SAlexey Samsonov return InlinedContext; 2798df3a07aSAlexey Samsonov } 2808df3a07aSAlexey Samsonov 28177fc1f60SAlexey Lapshin DIGlobal SymbolizableObjectFile::symbolizeData( 28277fc1f60SAlexey Lapshin object::SectionedAddress ModuleOffset) const { 28376f7ecb8SAlexey Samsonov DIGlobal Res; 28477fc1f60SAlexey Lapshin getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset.Address, Res.Name, 28577fc1f60SAlexey Lapshin Res.Start, Res.Size); 28676f7ecb8SAlexey Samsonov return Res; 2878df3a07aSAlexey Samsonov } 288*b2c4b8bdSAlexey Lapshin 289*b2c4b8bdSAlexey Lapshin /// Search for the first occurence of specified Address in ObjectFile. 290*b2c4b8bdSAlexey Lapshin uint64_t SymbolizableObjectFile::getModuleSectionIndexForAddress( 291*b2c4b8bdSAlexey Lapshin uint64_t Address) const { 292*b2c4b8bdSAlexey Lapshin 293*b2c4b8bdSAlexey Lapshin for (SectionRef Sec : Module->sections()) { 294*b2c4b8bdSAlexey Lapshin if (!Sec.isText() || Sec.isVirtual()) 295*b2c4b8bdSAlexey Lapshin continue; 296*b2c4b8bdSAlexey Lapshin 297*b2c4b8bdSAlexey Lapshin if (Address >= Sec.getAddress() && 298*b2c4b8bdSAlexey Lapshin Address <= Sec.getAddress() + Sec.getSize()) { 299*b2c4b8bdSAlexey Lapshin return Sec.getIndex(); 300*b2c4b8bdSAlexey Lapshin } 301*b2c4b8bdSAlexey Lapshin } 302*b2c4b8bdSAlexey Lapshin 303*b2c4b8bdSAlexey Lapshin return object::SectionedAddress::UndefSection; 304*b2c4b8bdSAlexey Lapshin } 305