2498b7d9f026226a7bdc88eb203839a6fdef30cc
[folly.git] / folly / experimental / symbolizer / Symbolizer.cpp
1 /*
2  * Copyright 2014 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "folly/experimental/symbolizer/Symbolizer.h"
18
19 #include <limits.h>
20 #include <cstdio>
21 #include <iostream>
22 #include <map>
23
24 #ifdef __GNUC__
25 #include <ext/stdio_filebuf.h>
26 #include <ext/stdio_sync_filebuf.h>
27 #endif
28
29 #include "folly/Conv.h"
30 #include "folly/FileUtil.h"
31 #include "folly/ScopeGuard.h"
32 #include "folly/String.h"
33
34 #include "folly/experimental/symbolizer/Elf.h"
35 #include "folly/experimental/symbolizer/Dwarf.h"
36 #include "folly/experimental/symbolizer/LineReader.h"
37
38
39 namespace folly {
40 namespace symbolizer {
41
42 namespace {
43
44 /**
45  * Read a hex value.
46  */
47 uintptr_t readHex(StringPiece& sp) {
48   uintptr_t val = 0;
49   const char* p = sp.begin();
50   for (; p != sp.end(); ++p) {
51     unsigned int v;
52     if (*p >= '0' && *p <= '9') {
53       v = (*p - '0');
54     } else if (*p >= 'a' && *p <= 'f') {
55       v = (*p - 'a') + 10;
56     } else if (*p >= 'A' && *p <= 'F') {
57       v = (*p - 'A') + 10;
58     } else {
59       break;
60     }
61     val = (val << 4) + v;
62   }
63   sp.assign(p, sp.end());
64   return val;
65 }
66
67 /**
68  * Skip over non-space characters.
69  */
70 void skipNS(StringPiece& sp) {
71   const char* p = sp.begin();
72   for (; p != sp.end() && (*p != ' ' && *p != '\t'); ++p) { }
73   sp.assign(p, sp.end());
74 }
75
76 /**
77  * Skip over space and tab characters.
78  */
79 void skipWS(StringPiece& sp) {
80   const char* p = sp.begin();
81   for (; p != sp.end() && (*p == ' ' || *p == '\t'); ++p) { }
82   sp.assign(p, sp.end());
83 }
84
85 /**
86  * Parse a line from /proc/self/maps
87  */
88 bool parseProcMapsLine(StringPiece line,
89                        uintptr_t& from, uintptr_t& to,
90                        StringPiece& fileName) {
91   // from     to       perm offset   dev   inode             path
92   // 00400000-00405000 r-xp 00000000 08:03 35291182          /bin/cat
93   if (line.empty()) {
94     return false;
95   }
96
97   // Remove trailing newline, if any
98   if (line.back() == '\n') {
99     line.pop_back();
100   }
101
102   // from
103   from = readHex(line);
104   if (line.empty() || line.front() != '-') {
105     return false;
106   }
107   line.pop_front();
108
109   // to
110   to = readHex(line);
111   if (line.empty() || line.front() != ' ') {
112     return false;
113   }
114   line.pop_front();
115
116   // perms
117   skipNS(line);
118   if (line.empty() || line.front() != ' ') {
119     return false;
120   }
121   line.pop_front();
122
123   uintptr_t fileOffset = readHex(line);
124   if (line.empty() || line.front() != ' ') {
125     return false;
126   }
127   line.pop_front();
128   if (fileOffset != 0) {
129     return false;  // main mapping starts at 0
130   }
131
132   // dev
133   skipNS(line);
134   if (line.empty() || line.front() != ' ') {
135     return false;
136   }
137   line.pop_front();
138
139   // inode
140   skipNS(line);
141   if (line.empty() || line.front() != ' ') {
142     return false;
143   }
144
145   skipWS(line);
146   if (line.empty()) {
147     fileName.clear();
148     return true;
149   }
150
151   fileName = line;
152   return true;
153 }
154
155 ElfCache* defaultElfCache() {
156   static constexpr size_t defaultCapacity = 500;
157   static ElfCache cache(defaultCapacity);
158   return &cache;
159 }
160
161 }  // namespace
162
163 Symbolizer::Symbolizer(ElfCacheBase* cache)
164   : cache_(cache ?: defaultElfCache()) {
165 }
166
167 void Symbolizer::symbolize(const uintptr_t* addresses,
168                            SymbolizedFrame* frames,
169                            size_t addressCount) {
170   size_t remaining = 0;
171   for (size_t i = 0; i < addressCount; ++i) {
172     auto& frame = frames[i];
173     if (!frame.found) {
174       ++remaining;
175       frame.name.clear();
176       frame.location = Dwarf::LocationInfo();
177     }
178   }
179
180   if (remaining == 0) {  // we're done
181     return;
182   }
183
184   int fd = openNoInt("/proc/self/maps", O_RDONLY);
185   if (fd == -1) {
186     return;
187   }
188
189   char buf[PATH_MAX + 100];  // Long enough for any line
190   LineReader reader(fd, buf, sizeof(buf));
191
192   char fileNameBuf[PATH_MAX];
193
194   while (remaining != 0) {
195     StringPiece line;
196     if (reader.readLine(line) != LineReader::kReading) {
197       break;
198     }
199
200     // Parse line
201     uintptr_t from;
202     uintptr_t to;
203     StringPiece fileName;
204     if (!parseProcMapsLine(line, from, to, fileName)) {
205       continue;
206     }
207
208     bool first = true;
209     std::shared_ptr<ElfFile> elfFile;
210
211     // See if any addresses are here
212     for (size_t i = 0; i < addressCount; ++i) {
213       auto& frame = frames[i];
214       if (frame.found) {
215         continue;
216       }
217
218       uintptr_t address = addresses[i];
219
220       if (from > address || address >= to) {
221         continue;
222       }
223
224       // Found
225       frame.found = true;
226       --remaining;
227
228       // Open the file on first use
229       if (first) {
230         first = false;
231         elfFile = cache_->getFile(fileName);
232       }
233
234       if (!elfFile) {
235         continue;
236       }
237
238       // Undo relocation
239       uintptr_t fileAddress = address - from + elfFile->getBaseAddress();
240       auto sym = elfFile->getDefinitionByAddress(fileAddress);
241       if (!sym.first) {
242         continue;
243       }
244       auto name = elfFile->getSymbolName(sym);
245       if (name) {
246         frame.name = name;
247       }
248
249       Dwarf(elfFile.get()).findAddress(fileAddress, frame.location);
250     }
251   }
252
253   closeNoInt(fd);
254 }
255
256 namespace {
257 const char kHexChars[] = "0123456789abcdef";
258 const SymbolizePrinter::Color kAddressColor = SymbolizePrinter::Color::BLUE;
259 const SymbolizePrinter::Color kFunctionColor = SymbolizePrinter::Color::PURPLE;
260 const SymbolizePrinter::Color kFileColor = SymbolizePrinter::Color::DEFAULT;
261 }  // namespace
262
263 void SymbolizePrinter::print(uintptr_t address, const SymbolizedFrame& frame) {
264   if (options_ & TERSE) {
265     printTerse(address, frame);
266     return;
267   }
268
269   SCOPE_EXIT { color(Color::DEFAULT); };
270
271   color(kAddressColor);
272   // Can't use sprintf, not async-signal-safe
273   static_assert(sizeof(uintptr_t) <= 8, "huge uintptr_t?");
274   char buf[] = "    @ 0000000000000000";
275   char* end = buf + sizeof(buf) - 1 - (16 - 2 * sizeof(uintptr_t));
276   const char padBuf[] = "                       ";
277   folly::StringPiece pad(padBuf,
278                          sizeof(padBuf) - 1 - (16 - 2 * sizeof(uintptr_t)));
279   char* p = end;
280   *p-- = '\0';
281   while (address != 0) {
282     *p-- = kHexChars[address & 0xf];
283     address >>= 4;
284   }
285   doPrint(folly::StringPiece(buf, end));
286
287   color(kFunctionColor);
288   char mangledBuf[1024];
289   if (!frame.found) {
290     doPrint(" (not found)");
291     return;
292   }
293
294   if (frame.name.empty()) {
295     doPrint(" (unknown)");
296   } else if (frame.name.size() >= sizeof(mangledBuf)) {
297     doPrint(" ");
298     doPrint(frame.name);
299   } else {
300     memcpy(mangledBuf, frame.name.data(), frame.name.size());
301     mangledBuf[frame.name.size()] = '\0';
302
303     char demangledBuf[1024];
304     demangle(mangledBuf, demangledBuf, sizeof(demangledBuf));
305     doPrint(" ");
306     doPrint(demangledBuf);
307   }
308
309   if (!(options_ & NO_FILE_AND_LINE)) {
310     color(kFileColor);
311     char fileBuf[PATH_MAX];
312     fileBuf[0] = '\0';
313     if (frame.location.hasFileAndLine) {
314       frame.location.file.toBuffer(fileBuf, sizeof(fileBuf));
315       doPrint("\n");
316       doPrint(pad);
317       doPrint(fileBuf);
318
319       char buf[22];
320       uint32_t n = uint64ToBufferUnsafe(frame.location.line, buf);
321       doPrint(":");
322       doPrint(StringPiece(buf, n));
323     }
324
325     if (frame.location.hasMainFile) {
326       char mainFileBuf[PATH_MAX];
327       mainFileBuf[0] = '\0';
328       frame.location.mainFile.toBuffer(mainFileBuf, sizeof(mainFileBuf));
329       if (!frame.location.hasFileAndLine || strcmp(fileBuf, mainFileBuf)) {
330         doPrint("\n");
331         doPrint(pad);
332         doPrint("-> ");
333         doPrint(mainFileBuf);
334       }
335     }
336   }
337 }
338
339 namespace {
340
341 const std::map<SymbolizePrinter::Color, std::string> kColorMap = {
342   { SymbolizePrinter::Color::DEFAULT,  "\x1B[0m" },
343   { SymbolizePrinter::Color::RED,  "\x1B[31m" },
344   { SymbolizePrinter::Color::GREEN,  "\x1B[32m" },
345   { SymbolizePrinter::Color::YELLOW,  "\x1B[33m" },
346   { SymbolizePrinter::Color::BLUE,  "\x1B[34m" },
347   { SymbolizePrinter::Color::CYAN,  "\x1B[36m" },
348   { SymbolizePrinter::Color::WHITE,  "\x1B[37m" },
349   { SymbolizePrinter::Color::PURPLE,  "\x1B[35m" },
350 };
351
352 }
353
354 void SymbolizePrinter::color(SymbolizePrinter::Color color) {
355   if ((options_ & COLOR) == 0 &&
356       ((options_ & COLOR_IF_TTY) == 0 || !isTty_)) {
357     return;
358   }
359   auto it = kColorMap.find(color);
360   if (it == kColorMap.end()) {
361     return;
362   }
363   doPrint(it->second);
364 }
365
366 void SymbolizePrinter::println(uintptr_t address,
367                                const SymbolizedFrame& frame) {
368   print(address, frame);
369   doPrint("\n");
370 }
371
372 void SymbolizePrinter::printTerse(uintptr_t address,
373                                   const SymbolizedFrame& frame) {
374   if (frame.found) {
375     char mangledBuf[1024];
376     memcpy(mangledBuf, frame.name.data(), frame.name.size());
377     mangledBuf[frame.name.size()] = '\0';
378
379     char demangledBuf[1024] = {0};
380     demangle(mangledBuf, demangledBuf, sizeof(demangledBuf));
381     doPrint(strlen(demangledBuf) == 0 ? "(unknown)" : demangledBuf);
382   } else {
383     // Can't use sprintf, not async-signal-safe
384     static_assert(sizeof(uintptr_t) <= 8, "huge uintptr_t?");
385     char buf[] = "0x0000000000000000";
386     char* end = buf + sizeof(buf) - 1 - (16 - 2 * sizeof(uintptr_t));
387     char* p = end;
388     *p-- = '\0';
389     while (address != 0) {
390       *p-- = kHexChars[address & 0xf];
391       address >>= 4;
392     }
393     doPrint(StringPiece(buf, end));
394   }
395 }
396
397 void SymbolizePrinter::println(const uintptr_t* addresses,
398                                const SymbolizedFrame* frames,
399                                size_t frameCount) {
400   for (size_t i = 0; i < frameCount; ++i) {
401     println(addresses[i], frames[i]);
402   }
403 }
404
405 namespace {
406
407 int getFD(const std::ios& stream) {
408 #ifdef __GNUC__
409   std::streambuf* buf = stream.rdbuf();
410   using namespace __gnu_cxx;
411
412   {
413     auto sbuf = dynamic_cast<stdio_sync_filebuf<char>*>(buf);
414     if (sbuf) {
415       return fileno(sbuf->file());
416     }
417   }
418   {
419     auto sbuf = dynamic_cast<stdio_filebuf<char>*>(buf);
420     if (sbuf) {
421       return sbuf->fd();
422     }
423   }
424 #endif  // __GNUC__
425   return -1;
426 }
427
428 bool isTty(int options, int fd) {
429   return ((options & SymbolizePrinter::TERSE) == 0 &&
430           (options & SymbolizePrinter::COLOR_IF_TTY) != 0 &&
431           fd >= 0 && ::isatty(fd));
432 }
433
434 }  // anonymous namespace
435
436 OStreamSymbolizePrinter::OStreamSymbolizePrinter(std::ostream& out, int options)
437   : SymbolizePrinter(options, isTty(options, getFD(out))),
438     out_(out) {
439 }
440
441 void OStreamSymbolizePrinter::doPrint(StringPiece sp) {
442   out_ << sp;
443 }
444
445 FDSymbolizePrinter::FDSymbolizePrinter(int fd, int options)
446   : SymbolizePrinter(options, isTty(options, fd)),
447     fd_(fd) {
448 }
449
450 void FDSymbolizePrinter::doPrint(StringPiece sp) {
451   writeFull(fd_, sp.data(), sp.size());
452 }
453
454 FILESymbolizePrinter::FILESymbolizePrinter(FILE* file, int options)
455   : SymbolizePrinter(options, isTty(options, fileno(file))),
456     file_(file) {
457 }
458
459 void FILESymbolizePrinter::doPrint(StringPiece sp) {
460   fwrite(sp.data(), 1, sp.size(), file_);
461 }
462
463 void StringSymbolizePrinter::doPrint(StringPiece sp) {
464   buf_.append(sp.data(), sp.size());
465 }
466
467 }  // namespace symbolizer
468 }  // namespace folly