1 //===-- LLVMSymbolize.cpp -------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Implementation for LLVM symbolization library.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #include "llvm/DebugInfo/Symbolize/Symbolize.h"
14
15 #include "SymbolizableObjectFile.h"
16
17 #include "llvm/ADT/STLExtras.h"
18 #include "llvm/BinaryFormat/COFF.h"
19 #include "llvm/Config/config.h"
20 #include "llvm/DebugInfo/DWARF/DWARFContext.h"
21 #include "llvm/DebugInfo/PDB/PDB.h"
22 #include "llvm/DebugInfo/PDB/PDBContext.h"
23 #include "llvm/Demangle/Demangle.h"
24 #include "llvm/Object/COFF.h"
25 #include "llvm/Object/MachO.h"
26 #include "llvm/Object/MachOUniversal.h"
27 #include "llvm/Support/CRC.h"
28 #include "llvm/Support/Casting.h"
29 #include "llvm/Support/Compression.h"
30 #include "llvm/Support/DataExtractor.h"
31 #include "llvm/Support/Errc.h"
32 #include "llvm/Support/FileSystem.h"
33 #include "llvm/Support/MemoryBuffer.h"
34 #include "llvm/Support/Path.h"
35 #include <algorithm>
36 #include <cassert>
37 #include <cstring>
38
39 namespace llvm {
40 namespace symbolize {
41
42 template <typename T>
43 Expected<DILineInfo>
symbolizeCodeCommon(const T & ModuleSpecifier,object::SectionedAddress ModuleOffset)44 LLVMSymbolizer::symbolizeCodeCommon(const T &ModuleSpecifier,
45 object::SectionedAddress ModuleOffset) {
46
47 auto InfoOrErr = getOrCreateModuleInfo(ModuleSpecifier);
48 if (!InfoOrErr)
49 return InfoOrErr.takeError();
50
51 SymbolizableModule *Info = *InfoOrErr;
52
53 // A null module means an error has already been reported. Return an empty
54 // result.
55 if (!Info)
56 return DILineInfo();
57
58 // If the user is giving us relative addresses, add the preferred base of the
59 // object to the offset before we do the query. It's what DIContext expects.
60 if (Opts.RelativeAddresses)
61 ModuleOffset.Address += Info->getModulePreferredBase();
62
63 DILineInfo LineInfo = Info->symbolizeCode(
64 ModuleOffset, DILineInfoSpecifier(Opts.PathStyle, Opts.PrintFunctions),
65 Opts.UseSymbolTable);
66 if (Opts.Demangle)
67 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info);
68 return LineInfo;
69 }
70
71 Expected<DILineInfo>
symbolizeCode(const ObjectFile & Obj,object::SectionedAddress ModuleOffset)72 LLVMSymbolizer::symbolizeCode(const ObjectFile &Obj,
73 object::SectionedAddress ModuleOffset) {
74 return symbolizeCodeCommon(Obj, ModuleOffset);
75 }
76
77 Expected<DILineInfo>
symbolizeCode(const std::string & ModuleName,object::SectionedAddress ModuleOffset)78 LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
79 object::SectionedAddress ModuleOffset) {
80 return symbolizeCodeCommon(ModuleName, ModuleOffset);
81 }
82
83 template <typename T>
symbolizeInlinedCodeCommon(const T & ModuleSpecifier,object::SectionedAddress ModuleOffset)84 Expected<DIInliningInfo> LLVMSymbolizer::symbolizeInlinedCodeCommon(
85 const T &ModuleSpecifier, object::SectionedAddress ModuleOffset) {
86 auto InfoOrErr = getOrCreateModuleInfo(ModuleSpecifier);
87 if (!InfoOrErr)
88 return InfoOrErr.takeError();
89
90 SymbolizableModule *Info = *InfoOrErr;
91
92 // A null module means an error has already been reported. Return an empty
93 // result.
94 if (!Info)
95 return DIInliningInfo();
96
97 // If the user is giving us relative addresses, add the preferred base of the
98 // object to the offset before we do the query. It's what DIContext expects.
99 if (Opts.RelativeAddresses)
100 ModuleOffset.Address += Info->getModulePreferredBase();
101
102 DIInliningInfo InlinedContext = Info->symbolizeInlinedCode(
103 ModuleOffset, DILineInfoSpecifier(Opts.PathStyle, Opts.PrintFunctions),
104 Opts.UseSymbolTable);
105 if (Opts.Demangle) {
106 for (int i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
107 auto *Frame = InlinedContext.getMutableFrame(i);
108 Frame->FunctionName = DemangleName(Frame->FunctionName, Info);
109 }
110 }
111 return InlinedContext;
112 }
113
114 Expected<DIInliningInfo>
symbolizeInlinedCode(const ObjectFile & Obj,object::SectionedAddress ModuleOffset)115 LLVMSymbolizer::symbolizeInlinedCode(const ObjectFile &Obj,
116 object::SectionedAddress ModuleOffset) {
117 return symbolizeInlinedCodeCommon(Obj, ModuleOffset);
118 }
119
120 Expected<DIInliningInfo>
symbolizeInlinedCode(const std::string & ModuleName,object::SectionedAddress ModuleOffset)121 LLVMSymbolizer::symbolizeInlinedCode(const std::string &ModuleName,
122 object::SectionedAddress ModuleOffset) {
123 return symbolizeInlinedCodeCommon(ModuleName, ModuleOffset);
124 }
125
126 template <typename T>
127 Expected<DIGlobal>
symbolizeDataCommon(const T & ModuleSpecifier,object::SectionedAddress ModuleOffset)128 LLVMSymbolizer::symbolizeDataCommon(const T &ModuleSpecifier,
129 object::SectionedAddress ModuleOffset) {
130
131 auto InfoOrErr = getOrCreateModuleInfo(ModuleSpecifier);
132 if (!InfoOrErr)
133 return InfoOrErr.takeError();
134
135 SymbolizableModule *Info = *InfoOrErr;
136 // A null module means an error has already been reported. Return an empty
137 // result.
138 if (!Info)
139 return DIGlobal();
140
141 // If the user is giving us relative addresses, add the preferred base of
142 // the object to the offset before we do the query. It's what DIContext
143 // expects.
144 if (Opts.RelativeAddresses)
145 ModuleOffset.Address += Info->getModulePreferredBase();
146
147 DIGlobal Global = Info->symbolizeData(ModuleOffset);
148 if (Opts.Demangle)
149 Global.Name = DemangleName(Global.Name, Info);
150 return Global;
151 }
152
153 Expected<DIGlobal>
symbolizeData(const ObjectFile & Obj,object::SectionedAddress ModuleOffset)154 LLVMSymbolizer::symbolizeData(const ObjectFile &Obj,
155 object::SectionedAddress ModuleOffset) {
156 return symbolizeDataCommon(Obj, ModuleOffset);
157 }
158
159 Expected<DIGlobal>
symbolizeData(const std::string & ModuleName,object::SectionedAddress ModuleOffset)160 LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
161 object::SectionedAddress ModuleOffset) {
162 return symbolizeDataCommon(ModuleName, ModuleOffset);
163 }
164
165 template <typename T>
166 Expected<std::vector<DILocal>>
symbolizeFrameCommon(const T & ModuleSpecifier,object::SectionedAddress ModuleOffset)167 LLVMSymbolizer::symbolizeFrameCommon(const T &ModuleSpecifier,
168 object::SectionedAddress ModuleOffset) {
169 auto InfoOrErr = getOrCreateModuleInfo(ModuleSpecifier);
170 if (!InfoOrErr)
171 return InfoOrErr.takeError();
172
173 SymbolizableModule *Info = *InfoOrErr;
174 // A null module means an error has already been reported. Return an empty
175 // result.
176 if (!Info)
177 return std::vector<DILocal>();
178
179 // If the user is giving us relative addresses, add the preferred base of
180 // the object to the offset before we do the query. It's what DIContext
181 // expects.
182 if (Opts.RelativeAddresses)
183 ModuleOffset.Address += Info->getModulePreferredBase();
184
185 return Info->symbolizeFrame(ModuleOffset);
186 }
187
188 Expected<std::vector<DILocal>>
symbolizeFrame(const ObjectFile & Obj,object::SectionedAddress ModuleOffset)189 LLVMSymbolizer::symbolizeFrame(const ObjectFile &Obj,
190 object::SectionedAddress ModuleOffset) {
191 return symbolizeFrameCommon(Obj, ModuleOffset);
192 }
193
194 Expected<std::vector<DILocal>>
symbolizeFrame(const std::string & ModuleName,object::SectionedAddress ModuleOffset)195 LLVMSymbolizer::symbolizeFrame(const std::string &ModuleName,
196 object::SectionedAddress ModuleOffset) {
197 return symbolizeFrameCommon(ModuleName, ModuleOffset);
198 }
199
flush()200 void LLVMSymbolizer::flush() {
201 ObjectForUBPathAndArch.clear();
202 BinaryForPath.clear();
203 ObjectPairForPathArch.clear();
204 Modules.clear();
205 }
206
207 namespace {
208
209 // For Path="/path/to/foo" and Basename="foo" assume that debug info is in
210 // /path/to/foo.dSYM/Contents/Resources/DWARF/foo.
211 // For Path="/path/to/bar.dSYM" and Basename="foo" assume that debug info is in
212 // /path/to/bar.dSYM/Contents/Resources/DWARF/foo.
getDarwinDWARFResourceForPath(const std::string & Path,const std::string & Basename)213 std::string getDarwinDWARFResourceForPath(const std::string &Path,
214 const std::string &Basename) {
215 SmallString<16> ResourceName = StringRef(Path);
216 if (sys::path::extension(Path) != ".dSYM") {
217 ResourceName += ".dSYM";
218 }
219 sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
220 sys::path::append(ResourceName, Basename);
221 return std::string(ResourceName.str());
222 }
223
checkFileCRC(StringRef Path,uint32_t CRCHash)224 bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
225 ErrorOr<std::unique_ptr<MemoryBuffer>> MB =
226 MemoryBuffer::getFileOrSTDIN(Path);
227 if (!MB)
228 return false;
229 return CRCHash == llvm::crc32(arrayRefFromStringRef(MB.get()->getBuffer()));
230 }
231
findDebugBinary(const std::string & OrigPath,const std::string & DebuglinkName,uint32_t CRCHash,const std::string & FallbackDebugPath,std::string & Result)232 bool findDebugBinary(const std::string &OrigPath,
233 const std::string &DebuglinkName, uint32_t CRCHash,
234 const std::string &FallbackDebugPath,
235 std::string &Result) {
236 SmallString<16> OrigDir(OrigPath);
237 llvm::sys::path::remove_filename(OrigDir);
238 SmallString<16> DebugPath = OrigDir;
239 // Try relative/path/to/original_binary/debuglink_name
240 llvm::sys::path::append(DebugPath, DebuglinkName);
241 if (checkFileCRC(DebugPath, CRCHash)) {
242 Result = std::string(DebugPath.str());
243 return true;
244 }
245 // Try relative/path/to/original_binary/.debug/debuglink_name
246 DebugPath = OrigDir;
247 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
248 if (checkFileCRC(DebugPath, CRCHash)) {
249 Result = std::string(DebugPath.str());
250 return true;
251 }
252 // Make the path absolute so that lookups will go to
253 // "/usr/lib/debug/full/path/to/debug", not
254 // "/usr/lib/debug/to/debug"
255 llvm::sys::fs::make_absolute(OrigDir);
256 if (!FallbackDebugPath.empty()) {
257 // Try <FallbackDebugPath>/absolute/path/to/original_binary/debuglink_name
258 DebugPath = FallbackDebugPath;
259 } else {
260 #if defined(__NetBSD__)
261 // Try /usr/libdata/debug/absolute/path/to/original_binary/debuglink_name
262 DebugPath = "/usr/libdata/debug";
263 #else
264 // Try /usr/lib/debug/absolute/path/to/original_binary/debuglink_name
265 DebugPath = "/usr/lib/debug";
266 #endif
267 }
268 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
269 DebuglinkName);
270 if (checkFileCRC(DebugPath, CRCHash)) {
271 Result = std::string(DebugPath.str());
272 return true;
273 }
274 return false;
275 }
276
getGNUDebuglinkContents(const ObjectFile * Obj,std::string & DebugName,uint32_t & CRCHash)277 bool getGNUDebuglinkContents(const ObjectFile *Obj, std::string &DebugName,
278 uint32_t &CRCHash) {
279 if (!Obj)
280 return false;
281 for (const SectionRef &Section : Obj->sections()) {
282 StringRef Name;
283 if (Expected<StringRef> NameOrErr = Section.getName())
284 Name = *NameOrErr;
285 else
286 consumeError(NameOrErr.takeError());
287
288 Name = Name.substr(Name.find_first_not_of("._"));
289 if (Name == "gnu_debuglink") {
290 Expected<StringRef> ContentsOrErr = Section.getContents();
291 if (!ContentsOrErr) {
292 consumeError(ContentsOrErr.takeError());
293 return false;
294 }
295 DataExtractor DE(*ContentsOrErr, Obj->isLittleEndian(), 0);
296 uint64_t Offset = 0;
297 if (const char *DebugNameStr = DE.getCStr(&Offset)) {
298 // 4-byte align the offset.
299 Offset = (Offset + 3) & ~0x3;
300 if (DE.isValidOffsetForDataOfSize(Offset, 4)) {
301 DebugName = DebugNameStr;
302 CRCHash = DE.getU32(&Offset);
303 return true;
304 }
305 }
306 break;
307 }
308 }
309 return false;
310 }
311
darwinDsymMatchesBinary(const MachOObjectFile * DbgObj,const MachOObjectFile * Obj)312 bool darwinDsymMatchesBinary(const MachOObjectFile *DbgObj,
313 const MachOObjectFile *Obj) {
314 ArrayRef<uint8_t> dbg_uuid = DbgObj->getUuid();
315 ArrayRef<uint8_t> bin_uuid = Obj->getUuid();
316 if (dbg_uuid.empty() || bin_uuid.empty())
317 return false;
318 return !memcmp(dbg_uuid.data(), bin_uuid.data(), dbg_uuid.size());
319 }
320
321 template <typename ELFT>
getBuildID(const ELFFile<ELFT> & Obj)322 Optional<ArrayRef<uint8_t>> getBuildID(const ELFFile<ELFT> &Obj) {
323 auto PhdrsOrErr = Obj.program_headers();
324 if (!PhdrsOrErr) {
325 consumeError(PhdrsOrErr.takeError());
326 return {};
327 }
328 for (const auto &P : *PhdrsOrErr) {
329 if (P.p_type != ELF::PT_NOTE)
330 continue;
331 Error Err = Error::success();
332 for (auto N : Obj.notes(P, Err))
333 if (N.getType() == ELF::NT_GNU_BUILD_ID &&
334 N.getName() == ELF::ELF_NOTE_GNU)
335 return N.getDesc();
336 consumeError(std::move(Err));
337 }
338 return {};
339 }
340
getBuildID(const ELFObjectFileBase * Obj)341 Optional<ArrayRef<uint8_t>> getBuildID(const ELFObjectFileBase *Obj) {
342 Optional<ArrayRef<uint8_t>> BuildID;
343 if (auto *O = dyn_cast<ELFObjectFile<ELF32LE>>(Obj))
344 BuildID = getBuildID(O->getELFFile());
345 else if (auto *O = dyn_cast<ELFObjectFile<ELF32BE>>(Obj))
346 BuildID = getBuildID(O->getELFFile());
347 else if (auto *O = dyn_cast<ELFObjectFile<ELF64LE>>(Obj))
348 BuildID = getBuildID(O->getELFFile());
349 else if (auto *O = dyn_cast<ELFObjectFile<ELF64BE>>(Obj))
350 BuildID = getBuildID(O->getELFFile());
351 else
352 llvm_unreachable("unsupported file format");
353 return BuildID;
354 }
355
findDebugBinary(const std::vector<std::string> & DebugFileDirectory,const ArrayRef<uint8_t> BuildID,std::string & Result)356 bool findDebugBinary(const std::vector<std::string> &DebugFileDirectory,
357 const ArrayRef<uint8_t> BuildID, std::string &Result) {
358 auto getDebugPath = [&](StringRef Directory) {
359 SmallString<128> Path{Directory};
360 sys::path::append(Path, ".build-id",
361 llvm::toHex(BuildID[0], /*LowerCase=*/true),
362 llvm::toHex(BuildID.slice(1), /*LowerCase=*/true));
363 Path += ".debug";
364 return Path;
365 };
366 if (DebugFileDirectory.empty()) {
367 SmallString<128> Path = getDebugPath(
368 #if defined(__NetBSD__)
369 // Try /usr/libdata/debug/.build-id/../...
370 "/usr/libdata/debug"
371 #else
372 // Try /usr/lib/debug/.build-id/../...
373 "/usr/lib/debug"
374 #endif
375 );
376 if (llvm::sys::fs::exists(Path)) {
377 Result = std::string(Path.str());
378 return true;
379 }
380 } else {
381 for (const auto &Directory : DebugFileDirectory) {
382 // Try <debug-file-directory>/.build-id/../...
383 SmallString<128> Path = getDebugPath(Directory);
384 if (llvm::sys::fs::exists(Path)) {
385 Result = std::string(Path.str());
386 return true;
387 }
388 }
389 }
390 return false;
391 }
392
393 } // end anonymous namespace
394
lookUpDsymFile(const std::string & ExePath,const MachOObjectFile * MachExeObj,const std::string & ArchName)395 ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath,
396 const MachOObjectFile *MachExeObj,
397 const std::string &ArchName) {
398 // On Darwin we may find DWARF in separate object file in
399 // resource directory.
400 std::vector<std::string> DsymPaths;
401 StringRef Filename = sys::path::filename(ExePath);
402 DsymPaths.push_back(
403 getDarwinDWARFResourceForPath(ExePath, std::string(Filename)));
404 for (const auto &Path : Opts.DsymHints) {
405 DsymPaths.push_back(
406 getDarwinDWARFResourceForPath(Path, std::string(Filename)));
407 }
408 for (const auto &Path : DsymPaths) {
409 auto DbgObjOrErr = getOrCreateObject(Path, ArchName);
410 if (!DbgObjOrErr) {
411 // Ignore errors, the file might not exist.
412 consumeError(DbgObjOrErr.takeError());
413 continue;
414 }
415 ObjectFile *DbgObj = DbgObjOrErr.get();
416 if (!DbgObj)
417 continue;
418 const MachOObjectFile *MachDbgObj = dyn_cast<const MachOObjectFile>(DbgObj);
419 if (!MachDbgObj)
420 continue;
421 if (darwinDsymMatchesBinary(MachDbgObj, MachExeObj))
422 return DbgObj;
423 }
424 return nullptr;
425 }
426
lookUpDebuglinkObject(const std::string & Path,const ObjectFile * Obj,const std::string & ArchName)427 ObjectFile *LLVMSymbolizer::lookUpDebuglinkObject(const std::string &Path,
428 const ObjectFile *Obj,
429 const std::string &ArchName) {
430 std::string DebuglinkName;
431 uint32_t CRCHash;
432 std::string DebugBinaryPath;
433 if (!getGNUDebuglinkContents(Obj, DebuglinkName, CRCHash))
434 return nullptr;
435 if (!findDebugBinary(Path, DebuglinkName, CRCHash, Opts.FallbackDebugPath,
436 DebugBinaryPath))
437 return nullptr;
438 auto DbgObjOrErr = getOrCreateObject(DebugBinaryPath, ArchName);
439 if (!DbgObjOrErr) {
440 // Ignore errors, the file might not exist.
441 consumeError(DbgObjOrErr.takeError());
442 return nullptr;
443 }
444 return DbgObjOrErr.get();
445 }
446
lookUpBuildIDObject(const std::string & Path,const ELFObjectFileBase * Obj,const std::string & ArchName)447 ObjectFile *LLVMSymbolizer::lookUpBuildIDObject(const std::string &Path,
448 const ELFObjectFileBase *Obj,
449 const std::string &ArchName) {
450 auto BuildID = getBuildID(Obj);
451 if (!BuildID)
452 return nullptr;
453 if (BuildID->size() < 2)
454 return nullptr;
455 std::string DebugBinaryPath;
456 if (!findDebugBinary(Opts.DebugFileDirectory, *BuildID, DebugBinaryPath))
457 return nullptr;
458 auto DbgObjOrErr = getOrCreateObject(DebugBinaryPath, ArchName);
459 if (!DbgObjOrErr) {
460 consumeError(DbgObjOrErr.takeError());
461 return nullptr;
462 }
463 return DbgObjOrErr.get();
464 }
465
466 Expected<LLVMSymbolizer::ObjectPair>
getOrCreateObjectPair(const std::string & Path,const std::string & ArchName)467 LLVMSymbolizer::getOrCreateObjectPair(const std::string &Path,
468 const std::string &ArchName) {
469 auto I = ObjectPairForPathArch.find(std::make_pair(Path, ArchName));
470 if (I != ObjectPairForPathArch.end())
471 return I->second;
472
473 auto ObjOrErr = getOrCreateObject(Path, ArchName);
474 if (!ObjOrErr) {
475 ObjectPairForPathArch.emplace(std::make_pair(Path, ArchName),
476 ObjectPair(nullptr, nullptr));
477 return ObjOrErr.takeError();
478 }
479
480 ObjectFile *Obj = ObjOrErr.get();
481 assert(Obj != nullptr);
482 ObjectFile *DbgObj = nullptr;
483
484 if (auto MachObj = dyn_cast<const MachOObjectFile>(Obj))
485 DbgObj = lookUpDsymFile(Path, MachObj, ArchName);
486 else if (auto ELFObj = dyn_cast<const ELFObjectFileBase>(Obj))
487 DbgObj = lookUpBuildIDObject(Path, ELFObj, ArchName);
488 if (!DbgObj)
489 DbgObj = lookUpDebuglinkObject(Path, Obj, ArchName);
490 if (!DbgObj)
491 DbgObj = Obj;
492 ObjectPair Res = std::make_pair(Obj, DbgObj);
493 ObjectPairForPathArch.emplace(std::make_pair(Path, ArchName), Res);
494 return Res;
495 }
496
497 Expected<ObjectFile *>
getOrCreateObject(const std::string & Path,const std::string & ArchName)498 LLVMSymbolizer::getOrCreateObject(const std::string &Path,
499 const std::string &ArchName) {
500 Binary *Bin;
501 auto Pair = BinaryForPath.emplace(Path, OwningBinary<Binary>());
502 if (!Pair.second) {
503 Bin = Pair.first->second.getBinary();
504 } else {
505 Expected<OwningBinary<Binary>> BinOrErr = createBinary(Path);
506 if (!BinOrErr)
507 return BinOrErr.takeError();
508 Pair.first->second = std::move(BinOrErr.get());
509 Bin = Pair.first->second.getBinary();
510 }
511
512 if (!Bin)
513 return static_cast<ObjectFile *>(nullptr);
514
515 if (MachOUniversalBinary *UB = dyn_cast_or_null<MachOUniversalBinary>(Bin)) {
516 auto I = ObjectForUBPathAndArch.find(std::make_pair(Path, ArchName));
517 if (I != ObjectForUBPathAndArch.end())
518 return I->second.get();
519
520 Expected<std::unique_ptr<ObjectFile>> ObjOrErr =
521 UB->getMachOObjectForArch(ArchName);
522 if (!ObjOrErr) {
523 ObjectForUBPathAndArch.emplace(std::make_pair(Path, ArchName),
524 std::unique_ptr<ObjectFile>());
525 return ObjOrErr.takeError();
526 }
527 ObjectFile *Res = ObjOrErr->get();
528 ObjectForUBPathAndArch.emplace(std::make_pair(Path, ArchName),
529 std::move(ObjOrErr.get()));
530 return Res;
531 }
532 if (Bin->isObject()) {
533 return cast<ObjectFile>(Bin);
534 }
535 return errorCodeToError(object_error::arch_not_found);
536 }
537
538 Expected<SymbolizableModule *>
createModuleInfo(const ObjectFile * Obj,std::unique_ptr<DIContext> Context,StringRef ModuleName)539 LLVMSymbolizer::createModuleInfo(const ObjectFile *Obj,
540 std::unique_ptr<DIContext> Context,
541 StringRef ModuleName) {
542 auto InfoOrErr = SymbolizableObjectFile::create(Obj, std::move(Context),
543 Opts.UntagAddresses);
544 std::unique_ptr<SymbolizableModule> SymMod;
545 if (InfoOrErr)
546 SymMod = std::move(*InfoOrErr);
547 auto InsertResult = Modules.insert(
548 std::make_pair(std::string(ModuleName), std::move(SymMod)));
549 assert(InsertResult.second);
550 if (!InfoOrErr)
551 return InfoOrErr.takeError();
552 return InsertResult.first->second.get();
553 }
554
555 Expected<SymbolizableModule *>
getOrCreateModuleInfo(const std::string & ModuleName)556 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
557 auto I = Modules.find(ModuleName);
558 if (I != Modules.end())
559 return I->second.get();
560
561 std::string BinaryName = ModuleName;
562 std::string ArchName = Opts.DefaultArch;
563 size_t ColonPos = ModuleName.find_last_of(':');
564 // Verify that substring after colon form a valid arch name.
565 if (ColonPos != std::string::npos) {
566 std::string ArchStr = ModuleName.substr(ColonPos + 1);
567 if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
568 BinaryName = ModuleName.substr(0, ColonPos);
569 ArchName = ArchStr;
570 }
571 }
572 auto ObjectsOrErr = getOrCreateObjectPair(BinaryName, ArchName);
573 if (!ObjectsOrErr) {
574 // Failed to find valid object file.
575 Modules.emplace(ModuleName, std::unique_ptr<SymbolizableModule>());
576 return ObjectsOrErr.takeError();
577 }
578 ObjectPair Objects = ObjectsOrErr.get();
579
580 std::unique_ptr<DIContext> Context;
581 // If this is a COFF object containing PDB info, use a PDBContext to
582 // symbolize. Otherwise, use DWARF.
583 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) {
584 const codeview::DebugInfo *DebugInfo;
585 StringRef PDBFileName;
586 auto EC = CoffObject->getDebugPDBInfo(DebugInfo, PDBFileName);
587 if (!EC && DebugInfo != nullptr && !PDBFileName.empty()) {
588 #if 0
589 using namespace pdb;
590 std::unique_ptr<IPDBSession> Session;
591
592 PDB_ReaderType ReaderType =
593 Opts.UseDIA ? PDB_ReaderType::DIA : PDB_ReaderType::Native;
594 if (auto Err = loadDataForEXE(ReaderType, Objects.first->getFileName(),
595 Session)) {
596 Modules.emplace(ModuleName, std::unique_ptr<SymbolizableModule>());
597 // Return along the PDB filename to provide more context
598 return createFileError(PDBFileName, std::move(Err));
599 }
600 Context.reset(new PDBContext(*CoffObject, std::move(Session)));
601 #else
602 return make_error<StringError>(
603 "PDB support not compiled in",
604 std::make_error_code(std::errc::not_supported));
605 #endif
606 }
607 }
608 if (!Context)
609 Context = DWARFContext::create(*Objects.second, nullptr, Opts.DWPName);
610 return createModuleInfo(Objects.first, std::move(Context), ModuleName);
611 }
612
613 Expected<SymbolizableModule *>
getOrCreateModuleInfo(const ObjectFile & Obj)614 LLVMSymbolizer::getOrCreateModuleInfo(const ObjectFile &Obj) {
615 StringRef ObjName = Obj.getFileName();
616 auto I = Modules.find(ObjName);
617 if (I != Modules.end())
618 return I->second.get();
619
620 std::unique_ptr<DIContext> Context = DWARFContext::create(Obj);
621 // FIXME: handle COFF object with PDB info to use PDBContext
622 return createModuleInfo(&Obj, std::move(Context), ObjName);
623 }
624
625 namespace {
626
627 // Undo these various manglings for Win32 extern "C" functions:
628 // cdecl - _foo
629 // stdcall - _foo@12
630 // fastcall - @foo@12
631 // vectorcall - foo@@12
632 // These are all different linkage names for 'foo'.
demanglePE32ExternCFunc(StringRef SymbolName)633 StringRef demanglePE32ExternCFunc(StringRef SymbolName) {
634 // Remove any '_' or '@' prefix.
635 char Front = SymbolName.empty() ? '\0' : SymbolName[0];
636 if (Front == '_' || Front == '@')
637 SymbolName = SymbolName.drop_front();
638
639 // Remove any '@[0-9]+' suffix.
640 if (Front != '?') {
641 size_t AtPos = SymbolName.rfind('@');
642 if (AtPos != StringRef::npos &&
643 all_of(drop_begin(SymbolName, AtPos + 1), isDigit))
644 SymbolName = SymbolName.substr(0, AtPos);
645 }
646
647 // Remove any ending '@' for vectorcall.
648 if (SymbolName.endswith("@"))
649 SymbolName = SymbolName.drop_back();
650
651 return SymbolName;
652 }
653
654 } // end anonymous namespace
655
656 std::string
DemangleName(const std::string & Name,const SymbolizableModule * DbiModuleDescriptor)657 LLVMSymbolizer::DemangleName(const std::string &Name,
658 const SymbolizableModule *DbiModuleDescriptor) {
659 // We can spoil names of symbols with C linkage, so use an heuristic
660 // approach to check if the name should be demangled.
661 if (Name.substr(0, 2) == "_Z") {
662 int status = 0;
663 char *DemangledName =
664 itaniumDemangle(Name.c_str(), nullptr, nullptr, &status);
665 if (status != 0)
666 return Name;
667 std::string Result = DemangledName;
668 free(DemangledName);
669 return Result;
670 }
671
672 if (!Name.empty() && Name.front() == '?') {
673 // Only do MSVC C++ demangling on symbols starting with '?'.
674 int status = 0;
675 char *DemangledName = microsoftDemangle(
676 Name.c_str(), nullptr, nullptr, nullptr, &status,
677 MSDemangleFlags(MSDF_NoAccessSpecifier | MSDF_NoCallingConvention |
678 MSDF_NoMemberType | MSDF_NoReturnType));
679 if (status != 0)
680 return Name;
681 std::string Result = DemangledName;
682 free(DemangledName);
683 return Result;
684 }
685
686 if (DbiModuleDescriptor && DbiModuleDescriptor->isWin32Module())
687 return std::string(demanglePE32ExternCFunc(Name));
688 return Name;
689 }
690
691 } // namespace symbolize
692 } // namespace llvm
693