]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
Merge compiler-rt r291274.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / sanitizer_common / sanitizer_symbolizer_posix_libcdep.cc
1 //===-- sanitizer_symbolizer_posix_libcdep.cc -----------------------------===//
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 // This file is shared between AddressSanitizer and ThreadSanitizer
11 // run-time libraries.
12 // POSIX-specific implementation of symbolizer parts.
13 //===----------------------------------------------------------------------===//
14
15 #include "sanitizer_platform.h"
16 #if SANITIZER_POSIX
17 #include "sanitizer_allocator_internal.h"
18 #include "sanitizer_common.h"
19 #include "sanitizer_flags.h"
20 #include "sanitizer_internal_defs.h"
21 #include "sanitizer_linux.h"
22 #include "sanitizer_placement_new.h"
23 #include "sanitizer_posix.h"
24 #include "sanitizer_procmaps.h"
25 #include "sanitizer_symbolizer_internal.h"
26 #include "sanitizer_symbolizer_libbacktrace.h"
27 #include "sanitizer_symbolizer_mac.h"
28
29 #include <dlfcn.h>   // for dlsym()
30 #include <errno.h>
31 #include <stdint.h>
32 #include <stdlib.h>
33 #include <sys/wait.h>
34 #include <unistd.h>
35
36 #if SANITIZER_MAC
37 #include <util.h>  // for forkpty()
38 #endif  // SANITIZER_MAC
39
40 // C++ demangling function, as required by Itanium C++ ABI. This is weak,
41 // because we do not require a C++ ABI library to be linked to a program
42 // using sanitizers; if it's not present, we'll just use the mangled name.
43 namespace __cxxabiv1 {
44   extern "C" SANITIZER_WEAK_ATTRIBUTE
45   char *__cxa_demangle(const char *mangled, char *buffer,
46                                   size_t *length, int *status);
47 }
48
49 namespace __sanitizer {
50
51 // Attempts to demangle the name via __cxa_demangle from __cxxabiv1.
52 const char *DemangleCXXABI(const char *name) {
53   // FIXME: __cxa_demangle aggressively insists on allocating memory.
54   // There's not much we can do about that, short of providing our
55   // own demangler (libc++abi's implementation could be adapted so that
56   // it does not allocate). For now, we just call it anyway, and we leak
57   // the returned value.
58   if (&__cxxabiv1::__cxa_demangle)
59     if (const char *demangled_name =
60           __cxxabiv1::__cxa_demangle(name, 0, 0, 0))
61       return demangled_name;
62
63   return name;
64 }
65
66 // As of now, there are no headers for the Swift runtime. Once they are
67 // present, we will weakly link since we do not require Swift runtime to be
68 // linked.
69 typedef char *(*swift_demangle_ft)(const char *mangledName,
70                                    size_t mangledNameLength, char *outputBuffer,
71                                    size_t *outputBufferSize, uint32_t flags);
72 static swift_demangle_ft swift_demangle_f;
73
74 // This must not happen lazily at symbolication time, because dlsym uses
75 // malloc and thread-local storage, which is not a good thing to do during
76 // symbolication.
77 static void InitializeSwiftDemangler() {
78   swift_demangle_f = (swift_demangle_ft)dlsym(RTLD_DEFAULT, "swift_demangle");
79 }
80
81 // Attempts to demangle a Swift name. The demangler will return nullptr if a
82 // non-Swift name is passed in.
83 const char *DemangleSwift(const char *name) {
84   if (!name) return nullptr;
85
86   // Check if we are dealing with a Swift mangled name first.
87   if (name[0] != '_' || name[1] != 'T') {
88     return nullptr;
89   }
90
91   if (swift_demangle_f)
92     return swift_demangle_f(name, internal_strlen(name), 0, 0, 0);
93
94   return nullptr;
95 }
96
97 const char *DemangleSwiftAndCXX(const char *name) {
98   if (!name) return nullptr;
99   if (const char *swift_demangled_name = DemangleSwift(name))
100     return swift_demangled_name;
101   return DemangleCXXABI(name);
102 }
103
104 static bool CreateTwoHighNumberedPipes(int *infd_, int *outfd_) {
105   int *infd = NULL;
106   int *outfd = NULL;
107   // The client program may close its stdin and/or stdout and/or stderr
108   // thus allowing socketpair to reuse file descriptors 0, 1 or 2.
109   // In this case the communication between the forked processes may be
110   // broken if either the parent or the child tries to close or duplicate
111   // these descriptors. The loop below produces two pairs of file
112   // descriptors, each greater than 2 (stderr).
113   int sock_pair[5][2];
114   for (int i = 0; i < 5; i++) {
115     if (pipe(sock_pair[i]) == -1) {
116       for (int j = 0; j < i; j++) {
117         internal_close(sock_pair[j][0]);
118         internal_close(sock_pair[j][1]);
119       }
120       return false;
121     } else if (sock_pair[i][0] > 2 && sock_pair[i][1] > 2) {
122       if (infd == NULL) {
123         infd = sock_pair[i];
124       } else {
125         outfd = sock_pair[i];
126         for (int j = 0; j < i; j++) {
127           if (sock_pair[j] == infd) continue;
128           internal_close(sock_pair[j][0]);
129           internal_close(sock_pair[j][1]);
130         }
131         break;
132       }
133     }
134   }
135   CHECK(infd);
136   CHECK(outfd);
137   infd_[0] = infd[0];
138   infd_[1] = infd[1];
139   outfd_[0] = outfd[0];
140   outfd_[1] = outfd[1];
141   return true;
142 }
143
144 bool SymbolizerProcess::StartSymbolizerSubprocess() {
145   if (!FileExists(path_)) {
146     if (!reported_invalid_path_) {
147       Report("WARNING: invalid path to external symbolizer!\n");
148       reported_invalid_path_ = true;
149     }
150     return false;
151   }
152
153   int pid = -1;
154
155   int infd[2];
156   internal_memset(&infd, 0, sizeof(infd));
157   int outfd[2];
158   internal_memset(&outfd, 0, sizeof(outfd));
159   if (!CreateTwoHighNumberedPipes(infd, outfd)) {
160     Report("WARNING: Can't create a socket pair to start "
161            "external symbolizer (errno: %d)\n", errno);
162     return false;
163   }
164
165   if (use_forkpty_) {
166 #if SANITIZER_MAC
167     fd_t fd = kInvalidFd;
168
169     // forkpty redirects stdout and stderr into a single stream, so we would
170     // receive error messages as standard replies. To avoid that, let's dup
171     // stderr and restore it in the child.
172     int saved_stderr = dup(STDERR_FILENO);
173     CHECK_GE(saved_stderr, 0);
174
175     // We only need one pipe, for stdin of the child.
176     close(outfd[0]);
177     close(outfd[1]);
178
179     // Use forkpty to disable buffering in the new terminal.
180     pid = internal_forkpty(&fd);
181     if (pid == -1) {
182       // forkpty() failed.
183       Report("WARNING: failed to fork external symbolizer (errno: %d)\n",
184              errno);
185       return false;
186     } else if (pid == 0) {
187       // Child subprocess.
188
189       // infd[0] is the child's reading end.
190       close(infd[1]);
191
192       // Set up stdin to read from the pipe.
193       CHECK_GE(dup2(infd[0], STDIN_FILENO), 0);
194       close(infd[0]);
195
196       // Restore stderr.
197       CHECK_GE(dup2(saved_stderr, STDERR_FILENO), 0);
198       close(saved_stderr);
199
200       const char *argv[kArgVMax];
201       GetArgV(path_, argv);
202       execv(path_, const_cast<char **>(&argv[0]));
203       internal__exit(1);
204     }
205
206     // Input for the child, infd[1] is our writing end.
207     output_fd_ = infd[1];
208     close(infd[0]);
209
210     // Continue execution in parent process.
211     input_fd_ = fd;
212
213     close(saved_stderr);
214
215     // Disable echo in the new terminal, disable CR.
216     struct termios termflags;
217     tcgetattr(fd, &termflags);
218     termflags.c_oflag &= ~ONLCR;
219     termflags.c_lflag &= ~ECHO;
220     tcsetattr(fd, TCSANOW, &termflags);
221 #else  // SANITIZER_MAC
222     UNIMPLEMENTED();
223 #endif  // SANITIZER_MAC
224   } else {
225     const char *argv[kArgVMax];
226     GetArgV(path_, argv);
227     pid = StartSubprocess(path_, argv, /* stdin */ outfd[0],
228                           /* stdout */ infd[1]);
229     if (pid < 0) {
230       internal_close(infd[0]);
231       internal_close(outfd[1]);
232       return false;
233     }
234
235     input_fd_ = infd[0];
236     output_fd_ = outfd[1];
237   }
238
239   CHECK_GT(pid, 0);
240
241   // Check that symbolizer subprocess started successfully.
242   SleepForMillis(kSymbolizerStartupTimeMillis);
243   if (!IsProcessRunning(pid)) {
244     // Either waitpid failed, or child has already exited.
245     Report("WARNING: external symbolizer didn't start up correctly!\n");
246     return false;
247   }
248
249   return true;
250 }
251
252 class Addr2LineProcess : public SymbolizerProcess {
253  public:
254   Addr2LineProcess(const char *path, const char *module_name)
255       : SymbolizerProcess(path), module_name_(internal_strdup(module_name)) {}
256
257   const char *module_name() const { return module_name_; }
258
259  private:
260   void GetArgV(const char *path_to_binary,
261                const char *(&argv)[kArgVMax]) const override {
262     int i = 0;
263     argv[i++] = path_to_binary;
264     argv[i++] = "-iCfe";
265     argv[i++] = module_name_;
266     argv[i++] = nullptr;
267   }
268
269   bool ReachedEndOfOutput(const char *buffer, uptr length) const override;
270
271   bool ReadFromSymbolizer(char *buffer, uptr max_length) override {
272     if (!SymbolizerProcess::ReadFromSymbolizer(buffer, max_length))
273       return false;
274     // We should cut out output_terminator_ at the end of given buffer,
275     // appended by addr2line to mark the end of its meaningful output.
276     // We cannot scan buffer from it's beginning, because it is legal for it
277     // to start with output_terminator_ in case given offset is invalid. So,
278     // scanning from second character.
279     char *garbage = internal_strstr(buffer + 1, output_terminator_);
280     // This should never be NULL since buffer must end up with
281     // output_terminator_.
282     CHECK(garbage);
283     // Trim the buffer.
284     garbage[0] = '\0';
285     return true;
286   }
287
288   const char *module_name_;  // Owned, leaked.
289   static const char output_terminator_[];
290 };
291
292 const char Addr2LineProcess::output_terminator_[] = "??\n??:0\n";
293
294 bool Addr2LineProcess::ReachedEndOfOutput(const char *buffer,
295                                           uptr length) const {
296   const size_t kTerminatorLen = sizeof(output_terminator_) - 1;
297   // Skip, if we read just kTerminatorLen bytes, because Addr2Line output
298   // should consist at least of two pairs of lines:
299   // 1. First one, corresponding to given offset to be symbolized
300   // (may be equal to output_terminator_, if offset is not valid).
301   // 2. Second one for output_terminator_, itself to mark the end of output.
302   if (length <= kTerminatorLen) return false;
303   // Addr2Line output should end up with output_terminator_.
304   return !internal_memcmp(buffer + length - kTerminatorLen,
305                           output_terminator_, kTerminatorLen);
306 }
307
308 class Addr2LinePool : public SymbolizerTool {
309  public:
310   explicit Addr2LinePool(const char *addr2line_path,
311                          LowLevelAllocator *allocator)
312       : addr2line_path_(addr2line_path), allocator_(allocator),
313         addr2line_pool_(16) {}
314
315   bool SymbolizePC(uptr addr, SymbolizedStack *stack) override {
316     if (const char *buf =
317             SendCommand(stack->info.module, stack->info.module_offset)) {
318       ParseSymbolizePCOutput(buf, stack);
319       return true;
320     }
321     return false;
322   }
323
324   bool SymbolizeData(uptr addr, DataInfo *info) override {
325     return false;
326   }
327
328  private:
329   const char *SendCommand(const char *module_name, uptr module_offset) {
330     Addr2LineProcess *addr2line = 0;
331     for (uptr i = 0; i < addr2line_pool_.size(); ++i) {
332       if (0 ==
333           internal_strcmp(module_name, addr2line_pool_[i]->module_name())) {
334         addr2line = addr2line_pool_[i];
335         break;
336       }
337     }
338     if (!addr2line) {
339       addr2line =
340           new(*allocator_) Addr2LineProcess(addr2line_path_, module_name);
341       addr2line_pool_.push_back(addr2line);
342     }
343     CHECK_EQ(0, internal_strcmp(module_name, addr2line->module_name()));
344     char buffer[kBufferSize];
345     internal_snprintf(buffer, kBufferSize, "0x%zx\n0x%zx\n",
346                       module_offset, dummy_address_);
347     return addr2line->SendCommand(buffer);
348   }
349
350   static const uptr kBufferSize = 64;
351   const char *addr2line_path_;
352   LowLevelAllocator *allocator_;
353   InternalMmapVector<Addr2LineProcess*> addr2line_pool_;
354   static const uptr dummy_address_ =
355       FIRST_32_SECOND_64(UINT32_MAX, UINT64_MAX);
356 };
357
358 #if SANITIZER_SUPPORTS_WEAK_HOOKS
359 extern "C" {
360 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
361 bool __sanitizer_symbolize_code(const char *ModuleName, u64 ModuleOffset,
362                                 char *Buffer, int MaxLength);
363 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
364 bool __sanitizer_symbolize_data(const char *ModuleName, u64 ModuleOffset,
365                                 char *Buffer, int MaxLength);
366 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
367 void __sanitizer_symbolize_flush();
368 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
369 int __sanitizer_symbolize_demangle(const char *Name, char *Buffer,
370                                    int MaxLength);
371 }  // extern "C"
372
373 class InternalSymbolizer : public SymbolizerTool {
374  public:
375   static InternalSymbolizer *get(LowLevelAllocator *alloc) {
376     if (__sanitizer_symbolize_code != 0 &&
377         __sanitizer_symbolize_data != 0) {
378       return new(*alloc) InternalSymbolizer();
379     }
380     return 0;
381   }
382
383   bool SymbolizePC(uptr addr, SymbolizedStack *stack) override {
384     bool result = __sanitizer_symbolize_code(
385         stack->info.module, stack->info.module_offset, buffer_, kBufferSize);
386     if (result) ParseSymbolizePCOutput(buffer_, stack);
387     return result;
388   }
389
390   bool SymbolizeData(uptr addr, DataInfo *info) override {
391     bool result = __sanitizer_symbolize_data(info->module, info->module_offset,
392                                              buffer_, kBufferSize);
393     if (result) {
394       ParseSymbolizeDataOutput(buffer_, info);
395       info->start += (addr - info->module_offset);  // Add the base address.
396     }
397     return result;
398   }
399
400   void Flush() override {
401     if (__sanitizer_symbolize_flush)
402       __sanitizer_symbolize_flush();
403   }
404
405   const char *Demangle(const char *name) override {
406     if (__sanitizer_symbolize_demangle) {
407       for (uptr res_length = 1024;
408            res_length <= InternalSizeClassMap::kMaxSize;) {
409         char *res_buff = static_cast<char*>(InternalAlloc(res_length));
410         uptr req_length =
411             __sanitizer_symbolize_demangle(name, res_buff, res_length);
412         if (req_length > res_length) {
413           res_length = req_length + 1;
414           InternalFree(res_buff);
415           continue;
416         }
417         return res_buff;
418       }
419     }
420     return name;
421   }
422
423  private:
424   InternalSymbolizer() { }
425
426   static const int kBufferSize = 16 * 1024;
427   static const int kMaxDemangledNameSize = 1024;
428   char buffer_[kBufferSize];
429 };
430 #else  // SANITIZER_SUPPORTS_WEAK_HOOKS
431
432 class InternalSymbolizer : public SymbolizerTool {
433  public:
434   static InternalSymbolizer *get(LowLevelAllocator *alloc) { return 0; }
435 };
436
437 #endif  // SANITIZER_SUPPORTS_WEAK_HOOKS
438
439 const char *Symbolizer::PlatformDemangle(const char *name) {
440   return DemangleSwiftAndCXX(name);
441 }
442
443 void Symbolizer::PlatformPrepareForSandboxing() {}
444
445 static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
446   const char *path = common_flags()->external_symbolizer_path;
447   const char *binary_name = path ? StripModuleName(path) : "";
448   if (path && path[0] == '\0') {
449     VReport(2, "External symbolizer is explicitly disabled.\n");
450     return nullptr;
451   } else if (!internal_strcmp(binary_name, "llvm-symbolizer")) {
452     VReport(2, "Using llvm-symbolizer at user-specified path: %s\n", path);
453     return new(*allocator) LLVMSymbolizer(path, allocator);
454   } else if (!internal_strcmp(binary_name, "atos")) {
455 #if SANITIZER_MAC
456     VReport(2, "Using atos at user-specified path: %s\n", path);
457     return new(*allocator) AtosSymbolizer(path, allocator);
458 #else  // SANITIZER_MAC
459     Report("ERROR: Using `atos` is only supported on Darwin.\n");
460     Die();
461 #endif  // SANITIZER_MAC
462   } else if (!internal_strcmp(binary_name, "addr2line")) {
463     VReport(2, "Using addr2line at user-specified path: %s\n", path);
464     return new(*allocator) Addr2LinePool(path, allocator);
465   } else if (path) {
466     Report("ERROR: External symbolizer path is set to '%s' which isn't "
467            "a known symbolizer. Please set the path to the llvm-symbolizer "
468            "binary or other known tool.\n", path);
469     Die();
470   }
471
472   // Otherwise symbolizer program is unknown, let's search $PATH
473   CHECK(path == nullptr);
474   if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
475     VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
476     return new(*allocator) LLVMSymbolizer(found_path, allocator);
477   }
478 #if SANITIZER_MAC
479   if (const char *found_path = FindPathToBinary("atos")) {
480     VReport(2, "Using atos found at: %s\n", found_path);
481     return new(*allocator) AtosSymbolizer(found_path, allocator);
482   }
483 #endif  // SANITIZER_MAC
484   if (common_flags()->allow_addr2line) {
485     if (const char *found_path = FindPathToBinary("addr2line")) {
486       VReport(2, "Using addr2line found at: %s\n", found_path);
487       return new(*allocator) Addr2LinePool(found_path, allocator);
488     }
489   }
490   return nullptr;
491 }
492
493 static void ChooseSymbolizerTools(IntrusiveList<SymbolizerTool> *list,
494                                   LowLevelAllocator *allocator) {
495   if (!common_flags()->symbolize) {
496     VReport(2, "Symbolizer is disabled.\n");
497     return;
498   }
499   if (IsReportingOOM()) {
500     VReport(2, "Cannot use internal symbolizer: out of memory\n");
501   } else if (SymbolizerTool *tool = InternalSymbolizer::get(allocator)) {
502     VReport(2, "Using internal symbolizer.\n");
503     list->push_back(tool);
504     return;
505   }
506   if (SymbolizerTool *tool = LibbacktraceSymbolizer::get(allocator)) {
507     VReport(2, "Using libbacktrace symbolizer.\n");
508     list->push_back(tool);
509     return;
510   }
511
512   if (SymbolizerTool *tool = ChooseExternalSymbolizer(allocator)) {
513     list->push_back(tool);
514   }
515
516 #if SANITIZER_MAC
517   VReport(2, "Using dladdr symbolizer.\n");
518   list->push_back(new(*allocator) DlAddrSymbolizer());
519 #endif  // SANITIZER_MAC
520 }
521
522 Symbolizer *Symbolizer::PlatformInit() {
523   IntrusiveList<SymbolizerTool> list;
524   list.clear();
525   ChooseSymbolizerTools(&list, &symbolizer_allocator_);
526   return new(symbolizer_allocator_) Symbolizer(list);
527 }
528
529 void Symbolizer::LateInitialize() {
530   Symbolizer::GetOrInit();
531   InitializeSwiftDemangler();
532 }
533
534 }  // namespace __sanitizer
535
536 #endif  // SANITIZER_POSIX