1 //===-- sanitizer_symbolizer_libcdep.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 // This file is shared between AddressSanitizer and ThreadSanitizer 10 // run-time libraries. 11 //===----------------------------------------------------------------------===// 12 13 #include "sanitizer_allocator_internal.h" 14 #include "sanitizer_internal_defs.h" 15 #include "sanitizer_symbolizer_internal.h" 16 17 namespace __sanitizer { 18 19 Symbolizer *Symbolizer::GetOrInit() { 20 SpinMutexLock l(&init_mu_); 21 if (symbolizer_) 22 return symbolizer_; 23 symbolizer_ = PlatformInit(); 24 CHECK(symbolizer_); 25 return symbolizer_; 26 } 27 28 // See sanitizer_symbolizer_markup.cpp. 29 #if !SANITIZER_SYMBOLIZER_MARKUP 30 31 const char *ExtractToken(const char *str, const char *delims, char **result) { 32 uptr prefix_len = internal_strcspn(str, delims); 33 *result = (char*)InternalAlloc(prefix_len + 1); 34 internal_memcpy(*result, str, prefix_len); 35 (*result)[prefix_len] = '\0'; 36 const char *prefix_end = str + prefix_len; 37 if (*prefix_end != '\0') prefix_end++; 38 return prefix_end; 39 } 40 41 const char *ExtractInt(const char *str, const char *delims, int *result) { 42 char *buff = nullptr; 43 const char *ret = ExtractToken(str, delims, &buff); 44 if (buff) { 45 *result = (int)internal_atoll(buff); 46 } 47 InternalFree(buff); 48 return ret; 49 } 50 51 const char *ExtractUptr(const char *str, const char *delims, uptr *result) { 52 char *buff = nullptr; 53 const char *ret = ExtractToken(str, delims, &buff); 54 if (buff) { 55 *result = (uptr)internal_atoll(buff); 56 } 57 InternalFree(buff); 58 return ret; 59 } 60 61 const char *ExtractSptr(const char *str, const char *delims, sptr *result) { 62 char *buff = nullptr; 63 const char *ret = ExtractToken(str, delims, &buff); 64 if (buff) { 65 *result = (sptr)internal_atoll(buff); 66 } 67 InternalFree(buff); 68 return ret; 69 } 70 71 const char *ExtractTokenUpToDelimiter(const char *str, const char *delimiter, 72 char **result) { 73 const char *found_delimiter = internal_strstr(str, delimiter); 74 uptr prefix_len = 75 found_delimiter ? found_delimiter - str : internal_strlen(str); 76 *result = (char *)InternalAlloc(prefix_len + 1); 77 internal_memcpy(*result, str, prefix_len); 78 (*result)[prefix_len] = '\0'; 79 const char *prefix_end = str + prefix_len; 80 if (*prefix_end != '\0') prefix_end += internal_strlen(delimiter); 81 return prefix_end; 82 } 83 84 SymbolizedStack *Symbolizer::SymbolizePC(uptr addr) { 85 BlockingMutexLock l(&mu_); 86 const char *module_name = nullptr; 87 uptr module_offset; 88 ModuleArch arch; 89 SymbolizedStack *res = SymbolizedStack::New(addr); 90 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 91 &arch)) 92 return res; 93 // Always fill data about module name and offset. 94 res->info.FillModuleInfo(module_name, module_offset, arch); 95 for (auto &tool : tools_) { 96 SymbolizerScope sym_scope(this); 97 if (tool.SymbolizePC(addr, res)) { 98 return res; 99 } 100 } 101 return res; 102 } 103 104 bool Symbolizer::SymbolizeData(uptr addr, DataInfo *info) { 105 BlockingMutexLock l(&mu_); 106 const char *module_name = nullptr; 107 uptr module_offset; 108 ModuleArch arch; 109 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, 110 &arch)) 111 return false; 112 info->Clear(); 113 info->module = internal_strdup(module_name); 114 info->module_offset = module_offset; 115 info->module_arch = arch; 116 for (auto &tool : tools_) { 117 SymbolizerScope sym_scope(this); 118 if (tool.SymbolizeData(addr, info)) { 119 return true; 120 } 121 } 122 return true; 123 } 124 125 bool Symbolizer::SymbolizeFrame(uptr addr, FrameInfo *info) { 126 BlockingMutexLock l(&mu_); 127 const char *module_name = nullptr; 128 if (!FindModuleNameAndOffsetForAddress( 129 addr, &module_name, &info->module_offset, &info->module_arch)) 130 return false; 131 info->module = internal_strdup(module_name); 132 for (auto &tool : tools_) { 133 SymbolizerScope sym_scope(this); 134 if (tool.SymbolizeFrame(addr, info)) { 135 return true; 136 } 137 } 138 return true; 139 } 140 141 bool Symbolizer::GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, 142 uptr *module_address) { 143 BlockingMutexLock l(&mu_); 144 const char *internal_module_name = nullptr; 145 ModuleArch arch; 146 if (!FindModuleNameAndOffsetForAddress(pc, &internal_module_name, 147 module_address, &arch)) 148 return false; 149 150 if (module_name) 151 *module_name = module_names_.GetOwnedCopy(internal_module_name); 152 return true; 153 } 154 155 void Symbolizer::Flush() { 156 BlockingMutexLock l(&mu_); 157 for (auto &tool : tools_) { 158 SymbolizerScope sym_scope(this); 159 tool.Flush(); 160 } 161 } 162 163 const char *Symbolizer::Demangle(const char *name) { 164 BlockingMutexLock l(&mu_); 165 for (auto &tool : tools_) { 166 SymbolizerScope sym_scope(this); 167 if (const char *demangled = tool.Demangle(name)) 168 return demangled; 169 } 170 return PlatformDemangle(name); 171 } 172 173 bool Symbolizer::FindModuleNameAndOffsetForAddress(uptr address, 174 const char **module_name, 175 uptr *module_offset, 176 ModuleArch *module_arch) { 177 const LoadedModule *module = FindModuleForAddress(address); 178 if (!module) 179 return false; 180 *module_name = module->full_name(); 181 *module_offset = address - module->base_address(); 182 *module_arch = module->arch(); 183 return true; 184 } 185 186 void Symbolizer::RefreshModules() { 187 modules_.init(); 188 fallback_modules_.fallbackInit(); 189 RAW_CHECK(modules_.size() > 0); 190 modules_fresh_ = true; 191 } 192 193 static const LoadedModule *SearchForModule(const ListOfModules &modules, 194 uptr address) { 195 for (uptr i = 0; i < modules.size(); i++) { 196 if (modules[i].containsAddress(address)) { 197 return &modules[i]; 198 } 199 } 200 return nullptr; 201 } 202 203 const LoadedModule *Symbolizer::FindModuleForAddress(uptr address) { 204 bool modules_were_reloaded = false; 205 if (!modules_fresh_) { 206 RefreshModules(); 207 modules_were_reloaded = true; 208 } 209 const LoadedModule *module = SearchForModule(modules_, address); 210 if (module) return module; 211 212 // dlopen/dlclose interceptors invalidate the module list, but when 213 // interception is disabled, we need to retry if the lookup fails in 214 // case the module list changed. 215 #if !SANITIZER_INTERCEPT_DLOPEN_DLCLOSE 216 if (!modules_were_reloaded) { 217 RefreshModules(); 218 module = SearchForModule(modules_, address); 219 if (module) return module; 220 } 221 #endif 222 223 if (fallback_modules_.size()) { 224 module = SearchForModule(fallback_modules_, address); 225 } 226 return module; 227 } 228 229 // For now we assume the following protocol: 230 // For each request of the form 231 // <module_name> <module_offset> 232 // passed to STDIN, external symbolizer prints to STDOUT response: 233 // <function_name> 234 // <file_name>:<line_number>:<column_number> 235 // <function_name> 236 // <file_name>:<line_number>:<column_number> 237 // ... 238 // <empty line> 239 class LLVMSymbolizerProcess : public SymbolizerProcess { 240 public: 241 explicit LLVMSymbolizerProcess(const char *path) 242 : SymbolizerProcess(path, /*use_posix_spawn=*/SANITIZER_MAC) {} 243 244 private: 245 bool ReachedEndOfOutput(const char *buffer, uptr length) const override { 246 // Empty line marks the end of llvm-symbolizer output. 247 return length >= 2 && buffer[length - 1] == '\n' && 248 buffer[length - 2] == '\n'; 249 } 250 251 // When adding a new architecture, don't forget to also update 252 // script/asan_symbolize.py and sanitizer_common.h. 253 void GetArgV(const char *path_to_binary, 254 const char *(&argv)[kArgVMax]) const override { 255 #if defined(__x86_64h__) 256 const char* const kSymbolizerArch = "--default-arch=x86_64h"; 257 #elif defined(__x86_64__) 258 const char* const kSymbolizerArch = "--default-arch=x86_64"; 259 #elif defined(__i386__) 260 const char* const kSymbolizerArch = "--default-arch=i386"; 261 #elif defined(__aarch64__) 262 const char* const kSymbolizerArch = "--default-arch=arm64"; 263 #elif defined(__arm__) 264 const char* const kSymbolizerArch = "--default-arch=arm"; 265 #elif defined(__powerpc64__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ 266 const char* const kSymbolizerArch = "--default-arch=powerpc64"; 267 #elif defined(__powerpc64__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ 268 const char* const kSymbolizerArch = "--default-arch=powerpc64le"; 269 #elif defined(__s390x__) 270 const char* const kSymbolizerArch = "--default-arch=s390x"; 271 #elif defined(__s390__) 272 const char* const kSymbolizerArch = "--default-arch=s390"; 273 #else 274 const char* const kSymbolizerArch = "--default-arch=unknown"; 275 #endif 276 277 const char *const inline_flag = common_flags()->symbolize_inline_frames 278 ? "--inlining=true" 279 : "--inlining=false"; 280 int i = 0; 281 argv[i++] = path_to_binary; 282 argv[i++] = inline_flag; 283 argv[i++] = kSymbolizerArch; 284 argv[i++] = nullptr; 285 } 286 }; 287 288 LLVMSymbolizer::LLVMSymbolizer(const char *path, LowLevelAllocator *allocator) 289 : symbolizer_process_(new(*allocator) LLVMSymbolizerProcess(path)) {} 290 291 // Parse a <file>:<line>[:<column>] buffer. The file path may contain colons on 292 // Windows, so extract tokens from the right hand side first. The column info is 293 // also optional. 294 static const char *ParseFileLineInfo(AddressInfo *info, const char *str) { 295 char *file_line_info = nullptr; 296 str = ExtractToken(str, "\n", &file_line_info); 297 CHECK(file_line_info); 298 299 if (uptr size = internal_strlen(file_line_info)) { 300 char *back = file_line_info + size - 1; 301 for (int i = 0; i < 2; ++i) { 302 while (back > file_line_info && IsDigit(*back)) --back; 303 if (*back != ':' || !IsDigit(back[1])) break; 304 info->column = info->line; 305 info->line = internal_atoll(back + 1); 306 // Truncate the string at the colon to keep only filename. 307 *back = '\0'; 308 --back; 309 } 310 ExtractToken(file_line_info, "", &info->file); 311 } 312 313 InternalFree(file_line_info); 314 return str; 315 } 316 317 // Parses one or more two-line strings in the following format: 318 // <function_name> 319 // <file_name>:<line_number>[:<column_number>] 320 // Used by LLVMSymbolizer, Addr2LinePool and InternalSymbolizer, since all of 321 // them use the same output format. 322 void ParseSymbolizePCOutput(const char *str, SymbolizedStack *res) { 323 bool top_frame = true; 324 SymbolizedStack *last = res; 325 while (true) { 326 char *function_name = nullptr; 327 str = ExtractToken(str, "\n", &function_name); 328 CHECK(function_name); 329 if (function_name[0] == '\0') { 330 // There are no more frames. 331 InternalFree(function_name); 332 break; 333 } 334 SymbolizedStack *cur; 335 if (top_frame) { 336 cur = res; 337 top_frame = false; 338 } else { 339 cur = SymbolizedStack::New(res->info.address); 340 cur->info.FillModuleInfo(res->info.module, res->info.module_offset, 341 res->info.module_arch); 342 last->next = cur; 343 last = cur; 344 } 345 346 AddressInfo *info = &cur->info; 347 info->function = function_name; 348 str = ParseFileLineInfo(info, str); 349 350 // Functions and filenames can be "??", in which case we write 0 351 // to address info to mark that names are unknown. 352 if (0 == internal_strcmp(info->function, "??")) { 353 InternalFree(info->function); 354 info->function = 0; 355 } 356 if (0 == internal_strcmp(info->file, "??")) { 357 InternalFree(info->file); 358 info->file = 0; 359 } 360 } 361 } 362 363 // Parses a two-line string in the following format: 364 // <symbol_name> 365 // <start_address> <size> 366 // Used by LLVMSymbolizer and InternalSymbolizer. 367 void ParseSymbolizeDataOutput(const char *str, DataInfo *info) { 368 str = ExtractToken(str, "\n", &info->name); 369 str = ExtractUptr(str, " ", &info->start); 370 str = ExtractUptr(str, "\n", &info->size); 371 } 372 373 static void ParseSymbolizeFrameOutput(const char *str, 374 InternalMmapVector<LocalInfo> *locals) { 375 if (internal_strncmp(str, "??", 2) == 0) 376 return; 377 378 while (*str) { 379 LocalInfo local; 380 str = ExtractToken(str, "\n", &local.function_name); 381 str = ExtractToken(str, "\n", &local.name); 382 383 AddressInfo addr; 384 str = ParseFileLineInfo(&addr, str); 385 local.decl_file = addr.file; 386 local.decl_line = addr.line; 387 388 local.has_frame_offset = internal_strncmp(str, "??", 2) != 0; 389 str = ExtractSptr(str, " ", &local.frame_offset); 390 391 local.has_size = internal_strncmp(str, "??", 2) != 0; 392 str = ExtractUptr(str, " ", &local.size); 393 394 local.has_tag_offset = internal_strncmp(str, "??", 2) != 0; 395 str = ExtractUptr(str, "\n", &local.tag_offset); 396 397 locals->push_back(local); 398 } 399 } 400 401 bool LLVMSymbolizer::SymbolizePC(uptr addr, SymbolizedStack *stack) { 402 AddressInfo *info = &stack->info; 403 const char *buf = FormatAndSendCommand( 404 "CODE", info->module, info->module_offset, info->module_arch); 405 if (!buf) 406 return false; 407 ParseSymbolizePCOutput(buf, stack); 408 return true; 409 } 410 411 bool LLVMSymbolizer::SymbolizeData(uptr addr, DataInfo *info) { 412 const char *buf = FormatAndSendCommand( 413 "DATA", info->module, info->module_offset, info->module_arch); 414 if (!buf) 415 return false; 416 ParseSymbolizeDataOutput(buf, info); 417 info->start += (addr - info->module_offset); // Add the base address. 418 return true; 419 } 420 421 bool LLVMSymbolizer::SymbolizeFrame(uptr addr, FrameInfo *info) { 422 const char *buf = FormatAndSendCommand( 423 "FRAME", info->module, info->module_offset, info->module_arch); 424 if (!buf) 425 return false; 426 ParseSymbolizeFrameOutput(buf, &info->locals); 427 return true; 428 } 429 430 const char *LLVMSymbolizer::FormatAndSendCommand(const char *command_prefix, 431 const char *module_name, 432 uptr module_offset, 433 ModuleArch arch) { 434 CHECK(module_name); 435 int size_needed = 0; 436 if (arch == kModuleArchUnknown) 437 size_needed = internal_snprintf(buffer_, kBufferSize, "%s \"%s\" 0x%zx\n", 438 command_prefix, module_name, module_offset); 439 else 440 size_needed = internal_snprintf(buffer_, kBufferSize, 441 "%s \"%s:%s\" 0x%zx\n", command_prefix, 442 module_name, ModuleArchToString(arch), 443 module_offset); 444 445 if (size_needed >= static_cast<int>(kBufferSize)) { 446 Report("WARNING: Command buffer too small"); 447 return nullptr; 448 } 449 450 return symbolizer_process_->SendCommand(buffer_); 451 } 452 453 SymbolizerProcess::SymbolizerProcess(const char *path, bool use_posix_spawn) 454 : path_(path), 455 input_fd_(kInvalidFd), 456 output_fd_(kInvalidFd), 457 times_restarted_(0), 458 failed_to_start_(false), 459 reported_invalid_path_(false), 460 use_posix_spawn_(use_posix_spawn) { 461 CHECK(path_); 462 CHECK_NE(path_[0], '\0'); 463 } 464 465 static bool IsSameModule(const char* path) { 466 if (const char* ProcessName = GetProcessName()) { 467 if (const char* SymbolizerName = StripModuleName(path)) { 468 return !internal_strcmp(ProcessName, SymbolizerName); 469 } 470 } 471 return false; 472 } 473 474 const char *SymbolizerProcess::SendCommand(const char *command) { 475 if (failed_to_start_) 476 return nullptr; 477 if (IsSameModule(path_)) { 478 Report("WARNING: Symbolizer was blocked from starting itself!\n"); 479 failed_to_start_ = true; 480 return nullptr; 481 } 482 for (; times_restarted_ < kMaxTimesRestarted; times_restarted_++) { 483 // Start or restart symbolizer if we failed to send command to it. 484 if (const char *res = SendCommandImpl(command)) 485 return res; 486 Restart(); 487 } 488 if (!failed_to_start_) { 489 Report("WARNING: Failed to use and restart external symbolizer!\n"); 490 failed_to_start_ = true; 491 } 492 return nullptr; 493 } 494 495 const char *SymbolizerProcess::SendCommandImpl(const char *command) { 496 if (input_fd_ == kInvalidFd || output_fd_ == kInvalidFd) 497 return nullptr; 498 if (!WriteToSymbolizer(command, internal_strlen(command))) 499 return nullptr; 500 if (!ReadFromSymbolizer(buffer_, kBufferSize)) 501 return nullptr; 502 return buffer_; 503 } 504 505 bool SymbolizerProcess::Restart() { 506 if (input_fd_ != kInvalidFd) 507 CloseFile(input_fd_); 508 if (output_fd_ != kInvalidFd) 509 CloseFile(output_fd_); 510 return StartSymbolizerSubprocess(); 511 } 512 513 bool SymbolizerProcess::ReadFromSymbolizer(char *buffer, uptr max_length) { 514 if (max_length == 0) 515 return true; 516 uptr read_len = 0; 517 while (true) { 518 uptr just_read = 0; 519 bool success = ReadFromFile(input_fd_, buffer + read_len, 520 max_length - read_len - 1, &just_read); 521 // We can't read 0 bytes, as we don't expect external symbolizer to close 522 // its stdout. 523 if (!success || just_read == 0) { 524 Report("WARNING: Can't read from symbolizer at fd %d\n", input_fd_); 525 return false; 526 } 527 read_len += just_read; 528 if (ReachedEndOfOutput(buffer, read_len)) 529 break; 530 if (read_len + 1 == max_length) { 531 Report("WARNING: Symbolizer buffer too small\n"); 532 read_len = 0; 533 break; 534 } 535 } 536 buffer[read_len] = '\0'; 537 return true; 538 } 539 540 bool SymbolizerProcess::WriteToSymbolizer(const char *buffer, uptr length) { 541 if (length == 0) 542 return true; 543 uptr write_len = 0; 544 bool success = WriteToFile(output_fd_, buffer, length, &write_len); 545 if (!success || write_len != length) { 546 Report("WARNING: Can't write to symbolizer at fd %d\n", output_fd_); 547 return false; 548 } 549 return true; 550 } 551 552 #endif // !SANITIZER_SYMBOLIZER_MARKUP 553 554 } // namespace __sanitizer 555