91abe46e095972c26e755b63003f67f9c93cfb67
[oota-llvm.git] / tools / llvm-symbolizer / LLVMSymbolize.cpp
1 //===-- LLVMSymbolize.cpp -------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Implementation for LLVM symbolization library.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "LLVMSymbolize.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/Config/config.h"
17 #include "llvm/Object/ELFObjectFile.h"
18 #include "llvm/Object/MachO.h"
19 #include "llvm/Support/Casting.h"
20 #include "llvm/Support/Compression.h"
21 #include "llvm/Support/DataExtractor.h"
22 #include "llvm/Support/FileSystem.h"
23 #include "llvm/Support/MemoryBuffer.h"
24 #include "llvm/Support/Path.h"
25 #include <sstream>
26 #include <stdlib.h>
27
28 namespace llvm {
29 namespace symbolize {
30
31 static bool error(error_code ec) {
32   if (!ec)
33     return false;
34   errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n";
35   return true;
36 }
37
38 static uint32_t
39 getDILineInfoSpecifierFlags(const LLVMSymbolizer::Options &Opts) {
40   uint32_t Flags = llvm::DILineInfoSpecifier::FileLineInfo |
41                    llvm::DILineInfoSpecifier::AbsoluteFilePath;
42   if (Opts.PrintFunctions)
43     Flags |= llvm::DILineInfoSpecifier::FunctionName;
44   return Flags;
45 }
46
47 static void patchFunctionNameInDILineInfo(const std::string &NewFunctionName,
48                                           DILineInfo &LineInfo) {
49   std::string FileName = LineInfo.getFileName();
50   LineInfo = DILineInfo(StringRef(FileName), StringRef(NewFunctionName),
51                         LineInfo.getLine(), LineInfo.getColumn());
52 }
53
54 ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx)
55     : Module(Obj), DebugInfoContext(DICtx) {
56   for (symbol_iterator si = Module->symbol_begin(), se = Module->symbol_end();
57        si != se; ++si) {
58     addSymbol(si);
59   }
60   bool NoSymbolTable = (Module->symbol_begin() == Module->symbol_end());
61   if (NoSymbolTable && Module->isELF()) {
62     // Fallback to dynamic symbol table, if regular symbol table is stripped.
63     std::pair<symbol_iterator, symbol_iterator> IDyn =
64         getELFDynamicSymbolIterators(Module);
65     for (symbol_iterator si = IDyn.first, se = IDyn.second; si != se; ++si) {
66       addSymbol(si);
67     }
68   }
69 }
70
71 void ModuleInfo::addSymbol(const symbol_iterator &Sym) {
72   SymbolRef::Type SymbolType;
73   if (error(Sym->getType(SymbolType)))
74     return;
75   if (SymbolType != SymbolRef::ST_Function &&
76       SymbolType != SymbolRef::ST_Data)
77     return;
78   uint64_t SymbolAddress;
79   if (error(Sym->getAddress(SymbolAddress)) ||
80       SymbolAddress == UnknownAddressOrSize)
81     return;
82   uint64_t SymbolSize;
83   // Getting symbol size is linear for Mach-O files, so assume that symbol
84   // occupies the memory range up to the following symbol.
85   if (isa<MachOObjectFile>(Module))
86     SymbolSize = 0;
87   else if (error(Sym->getSize(SymbolSize)) ||
88            SymbolSize == UnknownAddressOrSize)
89     return;
90   StringRef SymbolName;
91   if (error(Sym->getName(SymbolName)))
92     return;
93   // Mach-O symbol table names have leading underscore, skip it.
94   if (Module->isMachO() && SymbolName.size() > 0 && SymbolName[0] == '_')
95     SymbolName = SymbolName.drop_front();
96   // FIXME: If a function has alias, there are two entries in symbol table
97   // with same address size. Make sure we choose the correct one.
98   SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
99   SymbolDesc SD = { SymbolAddress, SymbolSize };
100   M.insert(std::make_pair(SD, SymbolName));
101 }
102
103 bool ModuleInfo::getNameFromSymbolTable(SymbolRef::Type Type, uint64_t Address,
104                                         std::string &Name, uint64_t &Addr,
105                                         uint64_t &Size) const {
106   const SymbolMapTy &M = Type == SymbolRef::ST_Function ? Functions : Objects;
107   if (M.empty())
108     return false;
109   SymbolDesc SD = { Address, Address };
110   SymbolMapTy::const_iterator it = M.upper_bound(SD);
111   if (it == M.begin())
112     return false;
113   --it;
114   if (it->first.Size != 0 && it->first.Addr + it->first.Size <= Address)
115     return false;
116   Name = it->second.str();
117   Addr = it->first.Addr;
118   Size = it->first.Size;
119   return true;
120 }
121
122 DILineInfo ModuleInfo::symbolizeCode(
123     uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
124   DILineInfo LineInfo;
125   if (DebugInfoContext) {
126     LineInfo = DebugInfoContext->getLineInfoForAddress(
127         ModuleOffset, getDILineInfoSpecifierFlags(Opts));
128   }
129   // Override function name from symbol table if necessary.
130   if (Opts.PrintFunctions && Opts.UseSymbolTable) {
131     std::string FunctionName;
132     uint64_t Start, Size;
133     if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
134                                FunctionName, Start, Size)) {
135       patchFunctionNameInDILineInfo(FunctionName, LineInfo);
136     }
137   }
138   return LineInfo;
139 }
140
141 DIInliningInfo ModuleInfo::symbolizeInlinedCode(
142     uint64_t ModuleOffset, const LLVMSymbolizer::Options &Opts) const {
143   DIInliningInfo InlinedContext;
144   if (DebugInfoContext) {
145     InlinedContext = DebugInfoContext->getInliningInfoForAddress(
146         ModuleOffset, getDILineInfoSpecifierFlags(Opts));
147   }
148   // Make sure there is at least one frame in context.
149   if (InlinedContext.getNumberOfFrames() == 0) {
150     InlinedContext.addFrame(DILineInfo());
151   }
152   // Override the function name in lower frame with name from symbol table.
153   if (Opts.PrintFunctions && Opts.UseSymbolTable) {
154     DIInliningInfo PatchedInlinedContext;
155     for (uint32_t i = 0, n = InlinedContext.getNumberOfFrames(); i < n; i++) {
156       DILineInfo LineInfo = InlinedContext.getFrame(i);
157       if (i == n - 1) {
158         std::string FunctionName;
159         uint64_t Start, Size;
160         if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset,
161                                    FunctionName, Start, Size)) {
162           patchFunctionNameInDILineInfo(FunctionName, LineInfo);
163         }
164       }
165       PatchedInlinedContext.addFrame(LineInfo);
166     }
167     InlinedContext = PatchedInlinedContext;
168   }
169   return InlinedContext;
170 }
171
172 bool ModuleInfo::symbolizeData(uint64_t ModuleOffset, std::string &Name,
173                                uint64_t &Start, uint64_t &Size) const {
174   return getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset, Name, Start,
175                                 Size);
176 }
177
178 const char LLVMSymbolizer::kBadString[] = "??";
179
180 std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName,
181                                           uint64_t ModuleOffset) {
182   ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
183   if (Info == 0)
184     return printDILineInfo(DILineInfo());
185   if (Opts.PrintInlining) {
186     DIInliningInfo InlinedContext =
187         Info->symbolizeInlinedCode(ModuleOffset, Opts);
188     uint32_t FramesNum = InlinedContext.getNumberOfFrames();
189     assert(FramesNum > 0);
190     std::string Result;
191     for (uint32_t i = 0; i < FramesNum; i++) {
192       DILineInfo LineInfo = InlinedContext.getFrame(i);
193       Result += printDILineInfo(LineInfo);
194     }
195     return Result;
196   }
197   DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts);
198   return printDILineInfo(LineInfo);
199 }
200
201 std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName,
202                                           uint64_t ModuleOffset) {
203   std::string Name = kBadString;
204   uint64_t Start = 0;
205   uint64_t Size = 0;
206   if (Opts.UseSymbolTable) {
207     if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
208       if (Info->symbolizeData(ModuleOffset, Name, Start, Size) && Opts.Demangle)
209         Name = DemangleName(Name);
210     }
211   }
212   std::stringstream ss;
213   ss << Name << "\n" << Start << " " << Size << "\n";
214   return ss.str();
215 }
216
217 void LLVMSymbolizer::flush() {
218   DeleteContainerSeconds(Modules);
219   DeleteContainerPointers(ParsedBinariesAndObjects);
220   BinaryForPath.clear();
221   ObjectFileForArch.clear();
222 }
223
224 static std::string getDarwinDWARFResourceForPath(const std::string &Path) {
225   StringRef Basename = sys::path::filename(Path);
226   const std::string &DSymDirectory = Path + ".dSYM";
227   SmallString<16> ResourceName = StringRef(DSymDirectory);
228   sys::path::append(ResourceName, "Contents", "Resources", "DWARF");
229   sys::path::append(ResourceName, Basename);
230   return ResourceName.str();
231 }
232
233 static bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
234   OwningPtr<MemoryBuffer> MB;
235   if (MemoryBuffer::getFileOrSTDIN(Path, MB))
236     return false;
237   return !zlib::isAvailable() || CRCHash == zlib::crc32(MB->getBuffer());
238 }
239
240 static bool findDebugBinary(const std::string &OrigPath,
241                             const std::string &DebuglinkName, uint32_t CRCHash,
242                             std::string &Result) {
243   std::string OrigRealPath = OrigPath;
244 #if defined(HAVE_REALPATH)
245   if (char *RP = realpath(OrigPath.c_str(), NULL)) {
246     OrigRealPath = RP;
247     free(RP);
248   }
249 #endif
250   SmallString<16> OrigDir(OrigRealPath);
251   llvm::sys::path::remove_filename(OrigDir);
252   SmallString<16> DebugPath = OrigDir;
253   // Try /path/to/original_binary/debuglink_name
254   llvm::sys::path::append(DebugPath, DebuglinkName);
255   if (checkFileCRC(DebugPath, CRCHash)) {
256     Result = DebugPath.str();
257     return true;
258   }
259   // Try /path/to/original_binary/.debug/debuglink_name
260   DebugPath = OrigRealPath;
261   llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
262   if (checkFileCRC(DebugPath, CRCHash)) {
263     Result = DebugPath.str();
264     return true;
265   }
266   // Try /usr/lib/debug/path/to/original_binary/debuglink_name
267   DebugPath = "/usr/lib/debug";
268   llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
269                           DebuglinkName);
270   if (checkFileCRC(DebugPath, CRCHash)) {
271     Result = DebugPath.str();
272     return true;
273   }
274   return false;
275 }
276
277 static bool getGNUDebuglinkContents(const Binary *Bin, std::string &DebugName,
278                                     uint32_t &CRCHash) {
279   const ObjectFile *Obj = dyn_cast<ObjectFile>(Bin);
280   if (!Obj)
281     return false;
282   for (section_iterator I = Obj->section_begin(), E = Obj->section_end();
283        I != E; ++I) {
284     StringRef Name;
285     I->getName(Name);
286     Name = Name.substr(Name.find_first_not_of("._"));
287     if (Name == "gnu_debuglink") {
288       StringRef Data;
289       I->getContents(Data);
290       DataExtractor DE(Data, Obj->isLittleEndian(), 0);
291       uint32_t Offset = 0;
292       if (const char *DebugNameStr = DE.getCStr(&Offset)) {
293         // 4-byte align the offset.
294         Offset = (Offset + 3) & ~0x3;
295         if (DE.isValidOffsetForDataOfSize(Offset, 4)) {
296           DebugName = DebugNameStr;
297           CRCHash = DE.getU32(&Offset);
298           return true;
299         }
300       }
301       break;
302     }
303   }
304   return false;
305 }
306
307 LLVMSymbolizer::BinaryPair
308 LLVMSymbolizer::getOrCreateBinary(const std::string &Path) {
309   BinaryMapTy::iterator I = BinaryForPath.find(Path);
310   if (I != BinaryForPath.end())
311     return I->second;
312   Binary *Bin = 0;
313   Binary *DbgBin = 0;
314   ErrorOr<Binary *> BinaryOrErr = createBinary(Path);
315   if (!error(BinaryOrErr.getError())) {
316     OwningPtr<Binary> ParsedBinary(BinaryOrErr.get());
317     // Check if it's a universal binary.
318     Bin = ParsedBinary.release();
319     ParsedBinariesAndObjects.push_back(Bin);
320     if (Bin->isMachO() || Bin->isMachOUniversalBinary()) {
321       // On Darwin we may find DWARF in separate object file in
322       // resource directory.
323       const std::string &ResourcePath =
324           getDarwinDWARFResourceForPath(Path);
325       BinaryOrErr = createBinary(ResourcePath);
326       error_code EC = BinaryOrErr.getError();
327       if (EC != errc::no_such_file_or_directory && !error(EC)) {
328         DbgBin = BinaryOrErr.get();
329         ParsedBinariesAndObjects.push_back(DbgBin);
330       }
331     }
332     // Try to locate the debug binary using .gnu_debuglink section.
333     if (DbgBin == 0) {
334       std::string DebuglinkName;
335       uint32_t CRCHash;
336       std::string DebugBinaryPath;
337       if (getGNUDebuglinkContents(Bin, DebuglinkName, CRCHash) &&
338           findDebugBinary(Path, DebuglinkName, CRCHash, DebugBinaryPath)) {
339         BinaryOrErr = createBinary(DebugBinaryPath);
340         if (!error(BinaryOrErr.getError())) {
341           DbgBin = BinaryOrErr.get();
342           ParsedBinariesAndObjects.push_back(DbgBin);
343         }
344       }
345     }
346   }
347   if (DbgBin == 0)
348     DbgBin = Bin;
349   BinaryPair Res = std::make_pair(Bin, DbgBin);
350   BinaryForPath[Path] = Res;
351   return Res;
352 }
353
354 ObjectFile *
355 LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin, const std::string &ArchName) {
356   if (Bin == 0)
357     return 0;
358   ObjectFile *Res = 0;
359   if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
360     ObjectFileForArchMapTy::iterator I = ObjectFileForArch.find(
361         std::make_pair(UB, ArchName));
362     if (I != ObjectFileForArch.end())
363       return I->second;
364     OwningPtr<ObjectFile> ParsedObj;
365     if (!UB->getObjectForArch(Triple(ArchName).getArch(), ParsedObj)) {
366       Res = ParsedObj.release();
367       ParsedBinariesAndObjects.push_back(Res);
368     }
369     ObjectFileForArch[std::make_pair(UB, ArchName)] = Res;
370   } else if (Bin->isObject()) {
371     Res = cast<ObjectFile>(Bin);
372   }
373   return Res;
374 }
375
376 ModuleInfo *
377 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
378   ModuleMapTy::iterator I = Modules.find(ModuleName);
379   if (I != Modules.end())
380     return I->second;
381   std::string BinaryName = ModuleName;
382   std::string ArchName = Opts.DefaultArch;
383   size_t ColonPos = ModuleName.find_last_of(':');
384   // Verify that substring after colon form a valid arch name.
385   if (ColonPos != std::string::npos) {
386     std::string ArchStr = ModuleName.substr(ColonPos + 1);
387     if (Triple(ArchStr).getArch() != Triple::UnknownArch) {
388       BinaryName = ModuleName.substr(0, ColonPos);
389       ArchName = ArchStr;
390     }
391   }
392   BinaryPair Binaries = getOrCreateBinary(BinaryName);
393   ObjectFile *Obj = getObjectFileFromBinary(Binaries.first, ArchName);
394   ObjectFile *DbgObj = getObjectFileFromBinary(Binaries.second, ArchName);
395
396   if (Obj == 0) {
397     // Failed to find valid object file.
398     Modules.insert(make_pair(ModuleName, (ModuleInfo *)0));
399     return 0;
400   }
401   DIContext *Context = DIContext::getDWARFContext(DbgObj);
402   assert(Context);
403   ModuleInfo *Info = new ModuleInfo(Obj, Context);
404   Modules.insert(make_pair(ModuleName, Info));
405   return Info;
406 }
407
408 std::string LLVMSymbolizer::printDILineInfo(DILineInfo LineInfo) const {
409   // By default, DILineInfo contains "<invalid>" for function/filename it
410   // cannot fetch. We replace it to "??" to make our output closer to addr2line.
411   static const std::string kDILineInfoBadString = "<invalid>";
412   std::stringstream Result;
413   if (Opts.PrintFunctions) {
414     std::string FunctionName = LineInfo.getFunctionName();
415     if (FunctionName == kDILineInfoBadString)
416       FunctionName = kBadString;
417     else if (Opts.Demangle)
418       FunctionName = DemangleName(FunctionName);
419     Result << FunctionName << "\n";
420   }
421   std::string Filename = LineInfo.getFileName();
422   if (Filename == kDILineInfoBadString)
423     Filename = kBadString;
424   Result << Filename << ":" << LineInfo.getLine() << ":" << LineInfo.getColumn()
425          << "\n";
426   return Result.str();
427 }
428
429 #if !defined(_MSC_VER)
430 // Assume that __cxa_demangle is provided by libcxxabi (except for Windows).
431 extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer,
432                                 size_t *length, int *status);
433 #endif
434
435 std::string LLVMSymbolizer::DemangleName(const std::string &Name) {
436 #if !defined(_MSC_VER)
437   // We can spoil names of symbols with C linkage, so use an heuristic
438   // approach to check if the name should be demangled.
439   if (Name.substr(0, 2) != "_Z")
440     return Name;
441   int status = 0;
442   char *DemangledName = __cxa_demangle(Name.c_str(), 0, 0, &status);
443   if (status != 0)
444     return Name;
445   std::string Result = DemangledName;
446   free(DemangledName);
447   return Result;
448 #else
449   return Name;
450 #endif
451 }
452
453 } // namespace symbolize
454 } // namespace llvm