1 //===-- sanitizer_linux_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 and implements linux-specific functions from 11 // sanitizer_libc.h. 12 //===----------------------------------------------------------------------===// 13 14 #include "sanitizer_platform.h" 15 16 #if SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD || \ 17 SANITIZER_SOLARIS 18 19 #include "sanitizer_allocator_internal.h" 20 #include "sanitizer_atomic.h" 21 #include "sanitizer_common.h" 22 #include "sanitizer_file.h" 23 #include "sanitizer_flags.h" 24 #include "sanitizer_freebsd.h" 25 #include "sanitizer_getauxval.h" 26 #include "sanitizer_glibc_version.h" 27 #include "sanitizer_linux.h" 28 #include "sanitizer_placement_new.h" 29 #include "sanitizer_procmaps.h" 30 #include "sanitizer_solaris.h" 31 32 #if SANITIZER_NETBSD 33 #define _RTLD_SOURCE // for __lwp_gettcb_fast() / __lwp_getprivate_fast() 34 #endif 35 36 #include <dlfcn.h> // for dlsym() 37 #include <link.h> 38 #include <pthread.h> 39 #include <signal.h> 40 #include <sys/mman.h> 41 #include <sys/resource.h> 42 #include <syslog.h> 43 44 #if !defined(ElfW) 45 #define ElfW(type) Elf_##type 46 #endif 47 48 #if SANITIZER_FREEBSD 49 #include <pthread_np.h> 50 #include <stdlib.h> 51 #include <osreldate.h> 52 #include <sys/auxv.h> 53 #include <sys/sysctl.h> 54 #define pthread_getattr_np pthread_attr_get_np 55 // The MAP_NORESERVE define has been removed in FreeBSD 11.x, and even before 56 // that, it was never implemented. So just define it to zero. 57 #undef MAP_NORESERVE 58 #define MAP_NORESERVE 0 59 #endif 60 61 #if SANITIZER_NETBSD 62 #include <sys/sysctl.h> 63 #include <sys/tls.h> 64 #include <lwp.h> 65 #endif 66 67 #if SANITIZER_SOLARIS 68 #include <stddef.h> 69 #include <stdlib.h> 70 #include <thread.h> 71 #endif 72 73 #if SANITIZER_ANDROID 74 #include <android/api-level.h> 75 #if !defined(CPU_COUNT) && !defined(__aarch64__) 76 #include <dirent.h> 77 #include <fcntl.h> 78 struct __sanitizer::linux_dirent { 79 long d_ino; 80 off_t d_off; 81 unsigned short d_reclen; 82 char d_name[]; 83 }; 84 #endif 85 #endif 86 87 #if !SANITIZER_ANDROID 88 #include <elf.h> 89 #include <unistd.h> 90 #endif 91 92 namespace __sanitizer { 93 94 SANITIZER_WEAK_ATTRIBUTE int 95 real_sigaction(int signum, const void *act, void *oldact); 96 97 int internal_sigaction(int signum, const void *act, void *oldact) { 98 #if !SANITIZER_GO 99 if (&real_sigaction) 100 return real_sigaction(signum, act, oldact); 101 #endif 102 return sigaction(signum, (const struct sigaction *)act, 103 (struct sigaction *)oldact); 104 } 105 106 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, 107 uptr *stack_bottom) { 108 CHECK(stack_top); 109 CHECK(stack_bottom); 110 if (at_initialization) { 111 // This is the main thread. Libpthread may not be initialized yet. 112 struct rlimit rl; 113 CHECK_EQ(getrlimit(RLIMIT_STACK, &rl), 0); 114 115 // Find the mapping that contains a stack variable. 116 MemoryMappingLayout proc_maps(/*cache_enabled*/true); 117 if (proc_maps.Error()) { 118 *stack_top = *stack_bottom = 0; 119 return; 120 } 121 MemoryMappedSegment segment; 122 uptr prev_end = 0; 123 while (proc_maps.Next(&segment)) { 124 if ((uptr)&rl < segment.end) break; 125 prev_end = segment.end; 126 } 127 CHECK((uptr)&rl >= segment.start && (uptr)&rl < segment.end); 128 129 // Get stacksize from rlimit, but clip it so that it does not overlap 130 // with other mappings. 131 uptr stacksize = rl.rlim_cur; 132 if (stacksize > segment.end - prev_end) stacksize = segment.end - prev_end; 133 // When running with unlimited stack size, we still want to set some limit. 134 // The unlimited stack size is caused by 'ulimit -s unlimited'. 135 // Also, for some reason, GNU make spawns subprocesses with unlimited stack. 136 if (stacksize > kMaxThreadStackSize) 137 stacksize = kMaxThreadStackSize; 138 *stack_top = segment.end; 139 *stack_bottom = segment.end - stacksize; 140 return; 141 } 142 uptr stacksize = 0; 143 void *stackaddr = nullptr; 144 #if SANITIZER_SOLARIS 145 stack_t ss; 146 CHECK_EQ(thr_stksegment(&ss), 0); 147 stacksize = ss.ss_size; 148 stackaddr = (char *)ss.ss_sp - stacksize; 149 #else // !SANITIZER_SOLARIS 150 pthread_attr_t attr; 151 pthread_attr_init(&attr); 152 CHECK_EQ(pthread_getattr_np(pthread_self(), &attr), 0); 153 my_pthread_attr_getstack(&attr, &stackaddr, &stacksize); 154 pthread_attr_destroy(&attr); 155 #endif // SANITIZER_SOLARIS 156 157 *stack_top = (uptr)stackaddr + stacksize; 158 *stack_bottom = (uptr)stackaddr; 159 } 160 161 #if !SANITIZER_GO 162 bool SetEnv(const char *name, const char *value) { 163 void *f = dlsym(RTLD_NEXT, "setenv"); 164 if (!f) 165 return false; 166 typedef int(*setenv_ft)(const char *name, const char *value, int overwrite); 167 setenv_ft setenv_f; 168 CHECK_EQ(sizeof(setenv_f), sizeof(f)); 169 internal_memcpy(&setenv_f, &f, sizeof(f)); 170 return setenv_f(name, value, 1) == 0; 171 } 172 #endif 173 174 __attribute__((unused)) static bool GetLibcVersion(int *major, int *minor, 175 int *patch) { 176 #ifdef _CS_GNU_LIBC_VERSION 177 char buf[64]; 178 uptr len = confstr(_CS_GNU_LIBC_VERSION, buf, sizeof(buf)); 179 if (len >= sizeof(buf)) 180 return false; 181 buf[len] = 0; 182 static const char kGLibC[] = "glibc "; 183 if (internal_strncmp(buf, kGLibC, sizeof(kGLibC) - 1) != 0) 184 return false; 185 const char *p = buf + sizeof(kGLibC) - 1; 186 *major = internal_simple_strtoll(p, &p, 10); 187 *minor = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; 188 *patch = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; 189 return true; 190 #else 191 return false; 192 #endif 193 } 194 195 // True if we can use dlpi_tls_data. glibc before 2.25 may leave NULL (BZ 196 // #19826) so dlpi_tls_data cannot be used. 197 // 198 // musl before 1.2.3 and FreeBSD as of 12.2 incorrectly set dlpi_tls_data to 199 // the TLS initialization image 200 // https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=254774 201 __attribute__((unused)) static int g_use_dlpi_tls_data; 202 203 #if SANITIZER_GLIBC && !SANITIZER_GO 204 __attribute__((unused)) static size_t g_tls_size; 205 void InitTlsSize() { 206 int major, minor, patch; 207 g_use_dlpi_tls_data = 208 GetLibcVersion(&major, &minor, &patch) && major == 2 && minor >= 25; 209 210 #if defined(__aarch64__) || defined(__x86_64__) || defined(__powerpc64__) || \ 211 defined(__loongarch__) 212 void *get_tls_static_info = dlsym(RTLD_NEXT, "_dl_get_tls_static_info"); 213 size_t tls_align; 214 ((void (*)(size_t *, size_t *))get_tls_static_info)(&g_tls_size, &tls_align); 215 #endif 216 } 217 #else 218 void InitTlsSize() { } 219 #endif // SANITIZER_GLIBC && !SANITIZER_GO 220 221 // On glibc x86_64, ThreadDescriptorSize() needs to be precise due to the usage 222 // of g_tls_size. On other targets, ThreadDescriptorSize() is only used by lsan 223 // to get the pointer to thread-specific data keys in the thread control block. 224 #if (SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_SOLARIS) && \ 225 !SANITIZER_ANDROID && !SANITIZER_GO 226 // sizeof(struct pthread) from glibc. 227 static atomic_uintptr_t thread_descriptor_size; 228 229 static uptr ThreadDescriptorSizeFallback() { 230 uptr val = 0; 231 #if defined(__x86_64__) || defined(__i386__) || defined(__arm__) 232 int major; 233 int minor; 234 int patch; 235 if (GetLibcVersion(&major, &minor, &patch) && major == 2) { 236 /* sizeof(struct pthread) values from various glibc versions. */ 237 if (SANITIZER_X32) 238 val = 1728; // Assume only one particular version for x32. 239 // For ARM sizeof(struct pthread) changed in Glibc 2.23. 240 else if (SANITIZER_ARM) 241 val = minor <= 22 ? 1120 : 1216; 242 else if (minor <= 3) 243 val = FIRST_32_SECOND_64(1104, 1696); 244 else if (minor == 4) 245 val = FIRST_32_SECOND_64(1120, 1728); 246 else if (minor == 5) 247 val = FIRST_32_SECOND_64(1136, 1728); 248 else if (minor <= 9) 249 val = FIRST_32_SECOND_64(1136, 1712); 250 else if (minor == 10) 251 val = FIRST_32_SECOND_64(1168, 1776); 252 else if (minor == 11 || (minor == 12 && patch == 1)) 253 val = FIRST_32_SECOND_64(1168, 2288); 254 else if (minor <= 14) 255 val = FIRST_32_SECOND_64(1168, 2304); 256 else if (minor < 32) // Unknown version 257 val = FIRST_32_SECOND_64(1216, 2304); 258 else // minor == 32 259 val = FIRST_32_SECOND_64(1344, 2496); 260 } 261 #elif defined(__s390__) || defined(__sparc__) 262 // The size of a prefix of TCB including pthread::{specific_1stblock,specific} 263 // suffices. Just return offsetof(struct pthread, specific_used), which hasn't 264 // changed since 2007-05. Technically this applies to i386/x86_64 as well but 265 // we call _dl_get_tls_static_info and need the precise size of struct 266 // pthread. 267 return FIRST_32_SECOND_64(524, 1552); 268 #elif defined(__mips__) 269 // TODO(sagarthakur): add more values as per different glibc versions. 270 val = FIRST_32_SECOND_64(1152, 1776); 271 #elif SANITIZER_LOONGARCH64 272 val = 1856; // from glibc 2.36 273 #elif SANITIZER_RISCV64 274 int major; 275 int minor; 276 int patch; 277 if (GetLibcVersion(&major, &minor, &patch) && major == 2) { 278 // TODO: consider adding an optional runtime check for an unknown (untested) 279 // glibc version 280 if (minor <= 28) // WARNING: the highest tested version is 2.29 281 val = 1772; // no guarantees for this one 282 else if (minor <= 31) 283 val = 1772; // tested against glibc 2.29, 2.31 284 else 285 val = 1936; // tested against glibc 2.32 286 } 287 288 #elif defined(__aarch64__) 289 // The sizeof (struct pthread) is the same from GLIBC 2.17 to 2.22. 290 val = 1776; 291 #elif defined(__powerpc64__) 292 val = 1776; // from glibc.ppc64le 2.20-8.fc21 293 #endif 294 return val; 295 } 296 297 uptr ThreadDescriptorSize() { 298 uptr val = atomic_load_relaxed(&thread_descriptor_size); 299 if (val) 300 return val; 301 // _thread_db_sizeof_pthread is a GLIBC_PRIVATE symbol that is exported in 302 // glibc 2.34 and later. 303 if (unsigned *psizeof = static_cast<unsigned *>( 304 dlsym(RTLD_DEFAULT, "_thread_db_sizeof_pthread"))) 305 val = *psizeof; 306 if (!val) 307 val = ThreadDescriptorSizeFallback(); 308 atomic_store_relaxed(&thread_descriptor_size, val); 309 return val; 310 } 311 312 #if defined(__mips__) || defined(__powerpc64__) || SANITIZER_RISCV64 || \ 313 SANITIZER_LOONGARCH64 314 // TlsPreTcbSize includes size of struct pthread_descr and size of tcb 315 // head structure. It lies before the static tls blocks. 316 static uptr TlsPreTcbSize() { 317 #if defined(__mips__) 318 const uptr kTcbHead = 16; // sizeof (tcbhead_t) 319 #elif defined(__powerpc64__) 320 const uptr kTcbHead = 88; // sizeof (tcbhead_t) 321 #elif SANITIZER_RISCV64 322 const uptr kTcbHead = 16; // sizeof (tcbhead_t) 323 #elif SANITIZER_LOONGARCH64 324 const uptr kTcbHead = 16; // sizeof (tcbhead_t) 325 #endif 326 const uptr kTlsAlign = 16; 327 const uptr kTlsPreTcbSize = 328 RoundUpTo(ThreadDescriptorSize() + kTcbHead, kTlsAlign); 329 return kTlsPreTcbSize; 330 } 331 #endif 332 333 namespace { 334 struct TlsBlock { 335 uptr begin, end, align; 336 size_t tls_modid; 337 bool operator<(const TlsBlock &rhs) const { return begin < rhs.begin; } 338 }; 339 } // namespace 340 341 #ifdef __s390__ 342 extern "C" uptr __tls_get_offset(void *arg); 343 344 static uptr TlsGetOffset(uptr ti_module, uptr ti_offset) { 345 // The __tls_get_offset ABI requires %r12 to point to GOT and %r2 to be an 346 // offset of a struct tls_index inside GOT. We don't possess either of the 347 // two, so violate the letter of the "ELF Handling For Thread-Local 348 // Storage" document and assume that the implementation just dereferences 349 // %r2 + %r12. 350 uptr tls_index[2] = {ti_module, ti_offset}; 351 register uptr r2 asm("2") = 0; 352 register void *r12 asm("12") = tls_index; 353 asm("basr %%r14, %[__tls_get_offset]" 354 : "+r"(r2) 355 : [__tls_get_offset] "r"(__tls_get_offset), "r"(r12) 356 : "memory", "cc", "0", "1", "3", "4", "5", "14"); 357 return r2; 358 } 359 #else 360 extern "C" void *__tls_get_addr(size_t *); 361 #endif 362 363 static size_t main_tls_modid; 364 365 static int CollectStaticTlsBlocks(struct dl_phdr_info *info, size_t size, 366 void *data) { 367 size_t tls_modid; 368 #if SANITIZER_SOLARIS 369 // dlpi_tls_modid is only available since Solaris 11.4 SRU 10. Use 370 // dlinfo(RTLD_DI_LINKMAP) instead which works on all of Solaris 11.3, 371 // 11.4, and Illumos. The tlsmodid of the executable was changed to 1 in 372 // 11.4 to match other implementations. 373 if (size >= offsetof(dl_phdr_info_test, dlpi_tls_modid)) 374 main_tls_modid = 1; 375 else 376 main_tls_modid = 0; 377 g_use_dlpi_tls_data = 0; 378 Rt_map *map; 379 dlinfo(RTLD_SELF, RTLD_DI_LINKMAP, &map); 380 tls_modid = map->rt_tlsmodid; 381 #else 382 main_tls_modid = 1; 383 tls_modid = info->dlpi_tls_modid; 384 #endif 385 386 if (tls_modid < main_tls_modid) 387 return 0; 388 uptr begin; 389 #if !SANITIZER_SOLARIS 390 begin = (uptr)info->dlpi_tls_data; 391 #endif 392 if (!g_use_dlpi_tls_data) { 393 // Call __tls_get_addr as a fallback. This forces TLS allocation on glibc 394 // and FreeBSD. 395 #ifdef __s390__ 396 begin = (uptr)__builtin_thread_pointer() + 397 TlsGetOffset(tls_modid, 0); 398 #else 399 size_t mod_and_off[2] = {tls_modid, 0}; 400 begin = (uptr)__tls_get_addr(mod_and_off); 401 #endif 402 } 403 for (unsigned i = 0; i != info->dlpi_phnum; ++i) 404 if (info->dlpi_phdr[i].p_type == PT_TLS) { 405 static_cast<InternalMmapVector<TlsBlock> *>(data)->push_back( 406 TlsBlock{begin, begin + info->dlpi_phdr[i].p_memsz, 407 info->dlpi_phdr[i].p_align, tls_modid}); 408 break; 409 } 410 return 0; 411 } 412 413 __attribute__((unused)) static void GetStaticTlsBoundary(uptr *addr, uptr *size, 414 uptr *align) { 415 InternalMmapVector<TlsBlock> ranges; 416 dl_iterate_phdr(CollectStaticTlsBlocks, &ranges); 417 uptr len = ranges.size(); 418 Sort(ranges.begin(), len); 419 // Find the range with tls_modid == main_tls_modid. For glibc, because 420 // libc.so uses PT_TLS, this module is guaranteed to exist and is one of 421 // the initially loaded modules. 422 uptr one = 0; 423 while (one != len && ranges[one].tls_modid != main_tls_modid) ++one; 424 if (one == len) { 425 // This may happen with musl if no module uses PT_TLS. 426 *addr = 0; 427 *size = 0; 428 *align = 1; 429 return; 430 } 431 // Find the maximum consecutive ranges. We consider two modules consecutive if 432 // the gap is smaller than the alignment of the latter range. The dynamic 433 // loader places static TLS blocks this way not to waste space. 434 uptr l = one; 435 *align = ranges[l].align; 436 while (l != 0 && ranges[l].begin < ranges[l - 1].end + ranges[l].align) 437 *align = Max(*align, ranges[--l].align); 438 uptr r = one + 1; 439 while (r != len && ranges[r].begin < ranges[r - 1].end + ranges[r].align) 440 *align = Max(*align, ranges[r++].align); 441 *addr = ranges[l].begin; 442 *size = ranges[r - 1].end - ranges[l].begin; 443 } 444 #endif // (x86_64 || i386 || mips || ...) && (SANITIZER_FREEBSD || 445 // SANITIZER_LINUX) && !SANITIZER_ANDROID && !SANITIZER_GO 446 447 #if SANITIZER_NETBSD 448 static struct tls_tcb * ThreadSelfTlsTcb() { 449 struct tls_tcb *tcb = nullptr; 450 #ifdef __HAVE___LWP_GETTCB_FAST 451 tcb = (struct tls_tcb *)__lwp_gettcb_fast(); 452 #elif defined(__HAVE___LWP_GETPRIVATE_FAST) 453 tcb = (struct tls_tcb *)__lwp_getprivate_fast(); 454 #endif 455 return tcb; 456 } 457 458 uptr ThreadSelf() { 459 return (uptr)ThreadSelfTlsTcb()->tcb_pthread; 460 } 461 462 int GetSizeFromHdr(struct dl_phdr_info *info, size_t size, void *data) { 463 const Elf_Phdr *hdr = info->dlpi_phdr; 464 const Elf_Phdr *last_hdr = hdr + info->dlpi_phnum; 465 466 for (; hdr != last_hdr; ++hdr) { 467 if (hdr->p_type == PT_TLS && info->dlpi_tls_modid == 1) { 468 *(uptr*)data = hdr->p_memsz; 469 break; 470 } 471 } 472 return 0; 473 } 474 #endif // SANITIZER_NETBSD 475 476 #if SANITIZER_ANDROID 477 // Bionic provides this API since S. 478 extern "C" SANITIZER_WEAK_ATTRIBUTE void __libc_get_static_tls_bounds(void **, 479 void **); 480 #endif 481 482 #if !SANITIZER_GO 483 static void GetTls(uptr *addr, uptr *size) { 484 #if SANITIZER_ANDROID 485 if (&__libc_get_static_tls_bounds) { 486 void *start_addr; 487 void *end_addr; 488 __libc_get_static_tls_bounds(&start_addr, &end_addr); 489 *addr = reinterpret_cast<uptr>(start_addr); 490 *size = 491 reinterpret_cast<uptr>(end_addr) - reinterpret_cast<uptr>(start_addr); 492 } else { 493 *addr = 0; 494 *size = 0; 495 } 496 #elif SANITIZER_GLIBC && defined(__x86_64__) 497 // For aarch64 and x86-64, use an O(1) approach which requires relatively 498 // precise ThreadDescriptorSize. g_tls_size was initialized in InitTlsSize. 499 # if SANITIZER_X32 500 asm("mov %%fs:8,%0" : "=r"(*addr)); 501 # else 502 asm("mov %%fs:16,%0" : "=r"(*addr)); 503 # endif 504 *size = g_tls_size; 505 *addr -= *size; 506 *addr += ThreadDescriptorSize(); 507 #elif SANITIZER_GLIBC && defined(__aarch64__) 508 *addr = reinterpret_cast<uptr>(__builtin_thread_pointer()) - 509 ThreadDescriptorSize(); 510 *size = g_tls_size + ThreadDescriptorSize(); 511 #elif SANITIZER_GLIBC && defined(__loongarch__) 512 # ifdef __clang__ 513 *addr = reinterpret_cast<uptr>(__builtin_thread_pointer()) - 514 ThreadDescriptorSize(); 515 # else 516 asm("or %0,$tp,$zero" : "=r"(*addr)); 517 *addr -= ThreadDescriptorSize(); 518 # endif 519 *size = g_tls_size + ThreadDescriptorSize(); 520 #elif SANITIZER_GLIBC && defined(__powerpc64__) 521 // Workaround for glibc<2.25(?). 2.27 is known to not need this. 522 uptr tp; 523 asm("addi %0,13,-0x7000" : "=r"(tp)); 524 const uptr pre_tcb_size = TlsPreTcbSize(); 525 *addr = tp - pre_tcb_size; 526 *size = g_tls_size + pre_tcb_size; 527 #elif SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_SOLARIS 528 uptr align; 529 GetStaticTlsBoundary(addr, size, &align); 530 #if defined(__x86_64__) || defined(__i386__) || defined(__s390__) || \ 531 defined(__sparc__) 532 if (SANITIZER_GLIBC) { 533 #if defined(__x86_64__) || defined(__i386__) 534 align = Max<uptr>(align, 64); 535 #else 536 align = Max<uptr>(align, 16); 537 #endif 538 } 539 const uptr tp = RoundUpTo(*addr + *size, align); 540 541 // lsan requires the range to additionally cover the static TLS surplus 542 // (elf/dl-tls.c defines 1664). Otherwise there may be false positives for 543 // allocations only referenced by tls in dynamically loaded modules. 544 if (SANITIZER_GLIBC) 545 *size += 1644; 546 else if (SANITIZER_FREEBSD) 547 *size += 128; // RTLD_STATIC_TLS_EXTRA 548 549 // Extend the range to include the thread control block. On glibc, lsan needs 550 // the range to include pthread::{specific_1stblock,specific} so that 551 // allocations only referenced by pthread_setspecific can be scanned. This may 552 // underestimate by at most TLS_TCB_ALIGN-1 bytes but it should be fine 553 // because the number of bytes after pthread::specific is larger. 554 *addr = tp - RoundUpTo(*size, align); 555 *size = tp - *addr + ThreadDescriptorSize(); 556 #else 557 if (SANITIZER_GLIBC) 558 *size += 1664; 559 else if (SANITIZER_FREEBSD) 560 *size += 128; // RTLD_STATIC_TLS_EXTRA 561 #if defined(__mips__) || defined(__powerpc64__) || SANITIZER_RISCV64 562 const uptr pre_tcb_size = TlsPreTcbSize(); 563 *addr -= pre_tcb_size; 564 *size += pre_tcb_size; 565 #else 566 // arm and aarch64 reserve two words at TP, so this underestimates the range. 567 // However, this is sufficient for the purpose of finding the pointers to 568 // thread-specific data keys. 569 const uptr tcb_size = ThreadDescriptorSize(); 570 *addr -= tcb_size; 571 *size += tcb_size; 572 #endif 573 #endif 574 #elif SANITIZER_NETBSD 575 struct tls_tcb * const tcb = ThreadSelfTlsTcb(); 576 *addr = 0; 577 *size = 0; 578 if (tcb != 0) { 579 // Find size (p_memsz) of dlpi_tls_modid 1 (TLS block of the main program). 580 // ld.elf_so hardcodes the index 1. 581 dl_iterate_phdr(GetSizeFromHdr, size); 582 583 if (*size != 0) { 584 // The block has been found and tcb_dtv[1] contains the base address 585 *addr = (uptr)tcb->tcb_dtv[1]; 586 } 587 } 588 #error "Unknown OS" 589 #endif 590 } 591 #endif 592 593 #if !SANITIZER_GO 594 uptr GetTlsSize() { 595 #if SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD || \ 596 SANITIZER_SOLARIS 597 uptr addr, size; 598 GetTls(&addr, &size); 599 return size; 600 #else 601 return 0; 602 #endif 603 } 604 #endif 605 606 void GetThreadStackAndTls(bool main, uptr *stk_addr, uptr *stk_size, 607 uptr *tls_addr, uptr *tls_size) { 608 #if SANITIZER_GO 609 // Stub implementation for Go. 610 *stk_addr = *stk_size = *tls_addr = *tls_size = 0; 611 #else 612 GetTls(tls_addr, tls_size); 613 614 uptr stack_top, stack_bottom; 615 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom); 616 *stk_addr = stack_bottom; 617 *stk_size = stack_top - stack_bottom; 618 619 if (!main) { 620 // If stack and tls intersect, make them non-intersecting. 621 if (*tls_addr > *stk_addr && *tls_addr < *stk_addr + *stk_size) { 622 if (*stk_addr + *stk_size < *tls_addr + *tls_size) 623 *tls_size = *stk_addr + *stk_size - *tls_addr; 624 *stk_size = *tls_addr - *stk_addr; 625 } 626 } 627 #endif 628 } 629 630 #if !SANITIZER_FREEBSD 631 typedef ElfW(Phdr) Elf_Phdr; 632 #elif SANITIZER_WORDSIZE == 32 && __FreeBSD_version <= 902001 // v9.2 633 #define Elf_Phdr XElf32_Phdr 634 #define dl_phdr_info xdl_phdr_info 635 #define dl_iterate_phdr(c, b) xdl_iterate_phdr((c), (b)) 636 #endif // !SANITIZER_FREEBSD 637 638 struct DlIteratePhdrData { 639 InternalMmapVectorNoCtor<LoadedModule> *modules; 640 bool first; 641 }; 642 643 static int AddModuleSegments(const char *module_name, dl_phdr_info *info, 644 InternalMmapVectorNoCtor<LoadedModule> *modules) { 645 if (module_name[0] == '\0') 646 return 0; 647 LoadedModule cur_module; 648 cur_module.set(module_name, info->dlpi_addr); 649 for (int i = 0; i < (int)info->dlpi_phnum; i++) { 650 const Elf_Phdr *phdr = &info->dlpi_phdr[i]; 651 if (phdr->p_type == PT_LOAD) { 652 uptr cur_beg = info->dlpi_addr + phdr->p_vaddr; 653 uptr cur_end = cur_beg + phdr->p_memsz; 654 bool executable = phdr->p_flags & PF_X; 655 bool writable = phdr->p_flags & PF_W; 656 cur_module.addAddressRange(cur_beg, cur_end, executable, 657 writable); 658 } else if (phdr->p_type == PT_NOTE) { 659 # ifdef NT_GNU_BUILD_ID 660 uptr off = 0; 661 while (off + sizeof(ElfW(Nhdr)) < phdr->p_memsz) { 662 auto *nhdr = reinterpret_cast<const ElfW(Nhdr) *>(info->dlpi_addr + 663 phdr->p_vaddr + off); 664 constexpr auto kGnuNamesz = 4; // "GNU" with NUL-byte. 665 static_assert(kGnuNamesz % 4 == 0, "kGnuNameSize is aligned to 4."); 666 if (nhdr->n_type == NT_GNU_BUILD_ID && nhdr->n_namesz == kGnuNamesz) { 667 if (off + sizeof(ElfW(Nhdr)) + nhdr->n_namesz + nhdr->n_descsz > 668 phdr->p_memsz) { 669 // Something is very wrong, bail out instead of reading potentially 670 // arbitrary memory. 671 break; 672 } 673 const char *name = 674 reinterpret_cast<const char *>(nhdr) + sizeof(*nhdr); 675 if (internal_memcmp(name, "GNU", 3) == 0) { 676 const char *value = reinterpret_cast<const char *>(nhdr) + 677 sizeof(*nhdr) + kGnuNamesz; 678 cur_module.setUuid(value, nhdr->n_descsz); 679 break; 680 } 681 } 682 off += sizeof(*nhdr) + RoundUpTo(nhdr->n_namesz, 4) + 683 RoundUpTo(nhdr->n_descsz, 4); 684 } 685 # endif 686 } 687 } 688 modules->push_back(cur_module); 689 return 0; 690 } 691 692 static int dl_iterate_phdr_cb(dl_phdr_info *info, size_t size, void *arg) { 693 DlIteratePhdrData *data = (DlIteratePhdrData *)arg; 694 if (data->first) { 695 InternalMmapVector<char> module_name(kMaxPathLength); 696 data->first = false; 697 // First module is the binary itself. 698 ReadBinaryNameCached(module_name.data(), module_name.size()); 699 return AddModuleSegments(module_name.data(), info, data->modules); 700 } 701 702 if (info->dlpi_name) { 703 InternalScopedString module_name; 704 module_name.append("%s", info->dlpi_name); 705 return AddModuleSegments(module_name.data(), info, data->modules); 706 } 707 708 return 0; 709 } 710 711 #if SANITIZER_ANDROID && __ANDROID_API__ < 21 712 extern "C" __attribute__((weak)) int dl_iterate_phdr( 713 int (*)(struct dl_phdr_info *, size_t, void *), void *); 714 #endif 715 716 static bool requiresProcmaps() { 717 #if SANITIZER_ANDROID && __ANDROID_API__ <= 22 718 // Fall back to /proc/maps if dl_iterate_phdr is unavailable or broken. 719 // The runtime check allows the same library to work with 720 // both K and L (and future) Android releases. 721 return AndroidGetApiLevel() <= ANDROID_LOLLIPOP_MR1; 722 #else 723 return false; 724 #endif 725 } 726 727 static void procmapsInit(InternalMmapVectorNoCtor<LoadedModule> *modules) { 728 MemoryMappingLayout memory_mapping(/*cache_enabled*/true); 729 memory_mapping.DumpListOfModules(modules); 730 } 731 732 void ListOfModules::init() { 733 clearOrInit(); 734 if (requiresProcmaps()) { 735 procmapsInit(&modules_); 736 } else { 737 DlIteratePhdrData data = {&modules_, true}; 738 dl_iterate_phdr(dl_iterate_phdr_cb, &data); 739 } 740 } 741 742 // When a custom loader is used, dl_iterate_phdr may not contain the full 743 // list of modules. Allow callers to fall back to using procmaps. 744 void ListOfModules::fallbackInit() { 745 if (!requiresProcmaps()) { 746 clearOrInit(); 747 procmapsInit(&modules_); 748 } else { 749 clear(); 750 } 751 } 752 753 // getrusage does not give us the current RSS, only the max RSS. 754 // Still, this is better than nothing if /proc/self/statm is not available 755 // for some reason, e.g. due to a sandbox. 756 static uptr GetRSSFromGetrusage() { 757 struct rusage usage; 758 if (getrusage(RUSAGE_SELF, &usage)) // Failed, probably due to a sandbox. 759 return 0; 760 return usage.ru_maxrss << 10; // ru_maxrss is in Kb. 761 } 762 763 uptr GetRSS() { 764 if (!common_flags()->can_use_proc_maps_statm) 765 return GetRSSFromGetrusage(); 766 fd_t fd = OpenFile("/proc/self/statm", RdOnly); 767 if (fd == kInvalidFd) 768 return GetRSSFromGetrusage(); 769 char buf[64]; 770 uptr len = internal_read(fd, buf, sizeof(buf) - 1); 771 internal_close(fd); 772 if ((sptr)len <= 0) 773 return 0; 774 buf[len] = 0; 775 // The format of the file is: 776 // 1084 89 69 11 0 79 0 777 // We need the second number which is RSS in pages. 778 char *pos = buf; 779 // Skip the first number. 780 while (*pos >= '0' && *pos <= '9') 781 pos++; 782 // Skip whitespaces. 783 while (!(*pos >= '0' && *pos <= '9') && *pos != 0) 784 pos++; 785 // Read the number. 786 uptr rss = 0; 787 while (*pos >= '0' && *pos <= '9') 788 rss = rss * 10 + *pos++ - '0'; 789 return rss * GetPageSizeCached(); 790 } 791 792 // sysconf(_SC_NPROCESSORS_{CONF,ONLN}) cannot be used on most platforms as 793 // they allocate memory. 794 u32 GetNumberOfCPUs() { 795 #if SANITIZER_FREEBSD || SANITIZER_NETBSD 796 u32 ncpu; 797 int req[2]; 798 uptr len = sizeof(ncpu); 799 req[0] = CTL_HW; 800 req[1] = HW_NCPU; 801 CHECK_EQ(internal_sysctl(req, 2, &ncpu, &len, NULL, 0), 0); 802 return ncpu; 803 #elif SANITIZER_ANDROID && !defined(CPU_COUNT) && !defined(__aarch64__) 804 // Fall back to /sys/devices/system/cpu on Android when cpu_set_t doesn't 805 // exist in sched.h. That is the case for toolchains generated with older 806 // NDKs. 807 // This code doesn't work on AArch64 because internal_getdents makes use of 808 // the 64bit getdents syscall, but cpu_set_t seems to always exist on AArch64. 809 uptr fd = internal_open("/sys/devices/system/cpu", O_RDONLY | O_DIRECTORY); 810 if (internal_iserror(fd)) 811 return 0; 812 InternalMmapVector<u8> buffer(4096); 813 uptr bytes_read = buffer.size(); 814 uptr n_cpus = 0; 815 u8 *d_type; 816 struct linux_dirent *entry = (struct linux_dirent *)&buffer[bytes_read]; 817 while (true) { 818 if ((u8 *)entry >= &buffer[bytes_read]) { 819 bytes_read = internal_getdents(fd, (struct linux_dirent *)buffer.data(), 820 buffer.size()); 821 if (internal_iserror(bytes_read) || !bytes_read) 822 break; 823 entry = (struct linux_dirent *)buffer.data(); 824 } 825 d_type = (u8 *)entry + entry->d_reclen - 1; 826 if (d_type >= &buffer[bytes_read] || 827 (u8 *)&entry->d_name[3] >= &buffer[bytes_read]) 828 break; 829 if (entry->d_ino != 0 && *d_type == DT_DIR) { 830 if (entry->d_name[0] == 'c' && entry->d_name[1] == 'p' && 831 entry->d_name[2] == 'u' && 832 entry->d_name[3] >= '0' && entry->d_name[3] <= '9') 833 n_cpus++; 834 } 835 entry = (struct linux_dirent *)(((u8 *)entry) + entry->d_reclen); 836 } 837 internal_close(fd); 838 return n_cpus; 839 #elif SANITIZER_SOLARIS 840 return sysconf(_SC_NPROCESSORS_ONLN); 841 #else 842 cpu_set_t CPUs; 843 CHECK_EQ(sched_getaffinity(0, sizeof(cpu_set_t), &CPUs), 0); 844 return CPU_COUNT(&CPUs); 845 #endif 846 } 847 848 #if SANITIZER_LINUX 849 850 #if SANITIZER_ANDROID 851 static atomic_uint8_t android_log_initialized; 852 853 void AndroidLogInit() { 854 openlog(GetProcessName(), 0, LOG_USER); 855 atomic_store(&android_log_initialized, 1, memory_order_release); 856 } 857 858 static bool ShouldLogAfterPrintf() { 859 return atomic_load(&android_log_initialized, memory_order_acquire); 860 } 861 862 extern "C" SANITIZER_WEAK_ATTRIBUTE 863 int async_safe_write_log(int pri, const char* tag, const char* msg); 864 extern "C" SANITIZER_WEAK_ATTRIBUTE 865 int __android_log_write(int prio, const char* tag, const char* msg); 866 867 // ANDROID_LOG_INFO is 4, but can't be resolved at runtime. 868 #define SANITIZER_ANDROID_LOG_INFO 4 869 870 // async_safe_write_log is a new public version of __libc_write_log that is 871 // used behind syslog. It is preferable to syslog as it will not do any dynamic 872 // memory allocation or formatting. 873 // If the function is not available, syslog is preferred for L+ (it was broken 874 // pre-L) as __android_log_write triggers a racey behavior with the strncpy 875 // interceptor. Fallback to __android_log_write pre-L. 876 void WriteOneLineToSyslog(const char *s) { 877 if (&async_safe_write_log) { 878 async_safe_write_log(SANITIZER_ANDROID_LOG_INFO, GetProcessName(), s); 879 } else if (AndroidGetApiLevel() > ANDROID_KITKAT) { 880 syslog(LOG_INFO, "%s", s); 881 } else { 882 CHECK(&__android_log_write); 883 __android_log_write(SANITIZER_ANDROID_LOG_INFO, nullptr, s); 884 } 885 } 886 887 extern "C" SANITIZER_WEAK_ATTRIBUTE 888 void android_set_abort_message(const char *); 889 890 void SetAbortMessage(const char *str) { 891 if (&android_set_abort_message) 892 android_set_abort_message(str); 893 } 894 #else 895 void AndroidLogInit() {} 896 897 static bool ShouldLogAfterPrintf() { return true; } 898 899 void WriteOneLineToSyslog(const char *s) { syslog(LOG_INFO, "%s", s); } 900 901 void SetAbortMessage(const char *str) {} 902 #endif // SANITIZER_ANDROID 903 904 void LogMessageOnPrintf(const char *str) { 905 if (common_flags()->log_to_syslog && ShouldLogAfterPrintf()) 906 WriteToSyslog(str); 907 } 908 909 #endif // SANITIZER_LINUX 910 911 #if SANITIZER_GLIBC && !SANITIZER_GO 912 // glibc crashes when using clock_gettime from a preinit_array function as the 913 // vDSO function pointers haven't been initialized yet. __progname is 914 // initialized after the vDSO function pointers, so if it exists, is not null 915 // and is not empty, we can use clock_gettime. 916 extern "C" SANITIZER_WEAK_ATTRIBUTE char *__progname; 917 inline bool CanUseVDSO() { return &__progname && __progname && *__progname; } 918 919 // MonotonicNanoTime is a timing function that can leverage the vDSO by calling 920 // clock_gettime. real_clock_gettime only exists if clock_gettime is 921 // intercepted, so define it weakly and use it if available. 922 extern "C" SANITIZER_WEAK_ATTRIBUTE 923 int real_clock_gettime(u32 clk_id, void *tp); 924 u64 MonotonicNanoTime() { 925 timespec ts; 926 if (CanUseVDSO()) { 927 if (&real_clock_gettime) 928 real_clock_gettime(CLOCK_MONOTONIC, &ts); 929 else 930 clock_gettime(CLOCK_MONOTONIC, &ts); 931 } else { 932 internal_clock_gettime(CLOCK_MONOTONIC, &ts); 933 } 934 return (u64)ts.tv_sec * (1000ULL * 1000 * 1000) + ts.tv_nsec; 935 } 936 #else 937 // Non-glibc & Go always use the regular function. 938 u64 MonotonicNanoTime() { 939 timespec ts; 940 clock_gettime(CLOCK_MONOTONIC, &ts); 941 return (u64)ts.tv_sec * (1000ULL * 1000 * 1000) + ts.tv_nsec; 942 } 943 #endif // SANITIZER_GLIBC && !SANITIZER_GO 944 945 void ReExec() { 946 const char *pathname = "/proc/self/exe"; 947 948 #if SANITIZER_FREEBSD 949 char exe_path[PATH_MAX]; 950 if (elf_aux_info(AT_EXECPATH, exe_path, sizeof(exe_path)) == 0) { 951 char link_path[PATH_MAX]; 952 if (realpath(exe_path, link_path)) 953 pathname = link_path; 954 } 955 #elif SANITIZER_NETBSD 956 static const int name[] = { 957 CTL_KERN, 958 KERN_PROC_ARGS, 959 -1, 960 KERN_PROC_PATHNAME, 961 }; 962 char path[400]; 963 uptr len; 964 965 len = sizeof(path); 966 if (internal_sysctl(name, ARRAY_SIZE(name), path, &len, NULL, 0) != -1) 967 pathname = path; 968 #elif SANITIZER_SOLARIS 969 pathname = getexecname(); 970 CHECK_NE(pathname, NULL); 971 #elif SANITIZER_USE_GETAUXVAL 972 // Calling execve with /proc/self/exe sets that as $EXEC_ORIGIN. Binaries that 973 // rely on that will fail to load shared libraries. Query AT_EXECFN instead. 974 pathname = reinterpret_cast<const char *>(getauxval(AT_EXECFN)); 975 #endif 976 977 uptr rv = internal_execve(pathname, GetArgv(), GetEnviron()); 978 int rverrno; 979 CHECK_EQ(internal_iserror(rv, &rverrno), true); 980 Printf("execve failed, errno %d\n", rverrno); 981 Die(); 982 } 983 984 void UnmapFromTo(uptr from, uptr to) { 985 if (to == from) 986 return; 987 CHECK(to >= from); 988 uptr res = internal_munmap(reinterpret_cast<void *>(from), to - from); 989 if (UNLIKELY(internal_iserror(res))) { 990 Report("ERROR: %s failed to unmap 0x%zx (%zd) bytes at address %p\n", 991 SanitizerToolName, to - from, to - from, (void *)from); 992 CHECK("unable to unmap" && 0); 993 } 994 } 995 996 uptr MapDynamicShadow(uptr shadow_size_bytes, uptr shadow_scale, 997 uptr min_shadow_base_alignment, 998 UNUSED uptr &high_mem_end) { 999 const uptr granularity = GetMmapGranularity(); 1000 const uptr alignment = 1001 Max<uptr>(granularity << shadow_scale, 1ULL << min_shadow_base_alignment); 1002 const uptr left_padding = 1003 Max<uptr>(granularity, 1ULL << min_shadow_base_alignment); 1004 1005 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); 1006 const uptr map_size = shadow_size + left_padding + alignment; 1007 1008 const uptr map_start = (uptr)MmapNoAccess(map_size); 1009 CHECK_NE(map_start, ~(uptr)0); 1010 1011 const uptr shadow_start = RoundUpTo(map_start + left_padding, alignment); 1012 1013 UnmapFromTo(map_start, shadow_start - left_padding); 1014 UnmapFromTo(shadow_start + shadow_size, map_start + map_size); 1015 1016 return shadow_start; 1017 } 1018 1019 static uptr MmapSharedNoReserve(uptr addr, uptr size) { 1020 return internal_mmap( 1021 reinterpret_cast<void *>(addr), size, PROT_READ | PROT_WRITE, 1022 MAP_FIXED | MAP_SHARED | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0); 1023 } 1024 1025 static uptr MremapCreateAlias(uptr base_addr, uptr alias_addr, 1026 uptr alias_size) { 1027 #if SANITIZER_LINUX 1028 return internal_mremap(reinterpret_cast<void *>(base_addr), 0, alias_size, 1029 MREMAP_MAYMOVE | MREMAP_FIXED, 1030 reinterpret_cast<void *>(alias_addr)); 1031 #else 1032 CHECK(false && "mremap is not supported outside of Linux"); 1033 return 0; 1034 #endif 1035 } 1036 1037 static void CreateAliases(uptr start_addr, uptr alias_size, uptr num_aliases) { 1038 uptr total_size = alias_size * num_aliases; 1039 uptr mapped = MmapSharedNoReserve(start_addr, total_size); 1040 CHECK_EQ(mapped, start_addr); 1041 1042 for (uptr i = 1; i < num_aliases; ++i) { 1043 uptr alias_addr = start_addr + i * alias_size; 1044 CHECK_EQ(MremapCreateAlias(start_addr, alias_addr, alias_size), alias_addr); 1045 } 1046 } 1047 1048 uptr MapDynamicShadowAndAliases(uptr shadow_size, uptr alias_size, 1049 uptr num_aliases, uptr ring_buffer_size) { 1050 CHECK_EQ(alias_size & (alias_size - 1), 0); 1051 CHECK_EQ(num_aliases & (num_aliases - 1), 0); 1052 CHECK_EQ(ring_buffer_size & (ring_buffer_size - 1), 0); 1053 1054 const uptr granularity = GetMmapGranularity(); 1055 shadow_size = RoundUpTo(shadow_size, granularity); 1056 CHECK_EQ(shadow_size & (shadow_size - 1), 0); 1057 1058 const uptr alias_region_size = alias_size * num_aliases; 1059 const uptr alignment = 1060 2 * Max(Max(shadow_size, alias_region_size), ring_buffer_size); 1061 const uptr left_padding = ring_buffer_size; 1062 1063 const uptr right_size = alignment; 1064 const uptr map_size = left_padding + 2 * alignment; 1065 1066 const uptr map_start = reinterpret_cast<uptr>(MmapNoAccess(map_size)); 1067 CHECK_NE(map_start, static_cast<uptr>(-1)); 1068 const uptr right_start = RoundUpTo(map_start + left_padding, alignment); 1069 1070 UnmapFromTo(map_start, right_start - left_padding); 1071 UnmapFromTo(right_start + right_size, map_start + map_size); 1072 1073 CreateAliases(right_start + right_size / 2, alias_size, num_aliases); 1074 1075 return right_start; 1076 } 1077 1078 void InitializePlatformCommonFlags(CommonFlags *cf) { 1079 #if SANITIZER_ANDROID 1080 if (&__libc_get_static_tls_bounds == nullptr) 1081 cf->detect_leaks = false; 1082 #endif 1083 } 1084 1085 } // namespace __sanitizer 1086 1087 #endif 1088