2012-06-04 21:50:10 +08:00
|
|
|
//===-- asan_thread.cc ----------------------------------------------------===//
|
2011-11-30 09:07:02 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
|
|
//
|
|
|
|
// Thread-related code.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "asan_allocator.h"
|
|
|
|
#include "asan_interceptors.h"
|
2013-03-28 23:42:43 +08:00
|
|
|
#include "asan_poisoning.h"
|
2012-01-17 14:35:31 +08:00
|
|
|
#include "asan_stack.h"
|
2011-11-30 09:07:02 +08:00
|
|
|
#include "asan_thread.h"
|
|
|
|
#include "asan_mapping.h"
|
2012-06-07 15:13:46 +08:00
|
|
|
#include "sanitizer_common/sanitizer_common.h"
|
2013-03-21 19:23:41 +08:00
|
|
|
#include "sanitizer_common/sanitizer_placement_new.h"
|
2013-10-18 22:50:44 +08:00
|
|
|
#include "sanitizer_common/sanitizer_stackdepot.h"
|
2013-05-21 21:40:13 +08:00
|
|
|
#include "lsan/lsan_common.h"
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
// AsanThreadContext implementation.
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
void AsanThreadContext::OnCreated(void *arg) {
|
|
|
|
CreateThreadContextArgs *args = static_cast<CreateThreadContextArgs*>(arg);
|
2013-10-18 22:50:44 +08:00
|
|
|
if (args->stack)
|
|
|
|
stack_id = StackDepotPut(args->stack->trace, args->stack->size);
|
2013-03-21 19:23:41 +08:00
|
|
|
thread = args->thread;
|
|
|
|
thread->set_context(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AsanThreadContext::OnFinished() {
|
|
|
|
// Drop the link to the AsanThread object.
|
|
|
|
thread = 0;
|
|
|
|
}
|
|
|
|
|
2013-06-03 22:49:25 +08:00
|
|
|
// MIPS requires aligned address
|
2013-06-04 16:25:17 +08:00
|
|
|
static ALIGNED(16) char thread_registry_placeholder[sizeof(ThreadRegistry)];
|
2013-03-21 19:23:41 +08:00
|
|
|
static ThreadRegistry *asan_thread_registry;
|
|
|
|
|
2013-10-18 23:07:07 +08:00
|
|
|
static BlockingMutex mu_for_thread_context(LINKER_INITIALIZED);
|
|
|
|
static LowLevelAllocator allocator_for_thread_context;
|
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
static ThreadContextBase *GetAsanThreadContext(u32 tid) {
|
2013-10-18 23:07:07 +08:00
|
|
|
BlockingMutexLock lock(&mu_for_thread_context);
|
2013-10-24 14:23:39 +08:00
|
|
|
return new(allocator_for_thread_context) AsanThreadContext(tid);
|
2013-03-21 19:23:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ThreadRegistry &asanThreadRegistry() {
|
|
|
|
static bool initialized;
|
|
|
|
// Don't worry about thread_safety - this should be called when there is
|
|
|
|
// a single thread.
|
|
|
|
if (!initialized) {
|
|
|
|
// Never reuse ASan threads: we store pointer to AsanThreadContext
|
|
|
|
// in TSD and can't reliably tell when no more TSD destructors will
|
|
|
|
// be called. It would be wrong to reuse AsanThreadContext for another
|
|
|
|
// thread before all TSD destructors will be called for it.
|
|
|
|
asan_thread_registry = new(thread_registry_placeholder) ThreadRegistry(
|
|
|
|
GetAsanThreadContext, kMaxNumberOfThreads, kMaxNumberOfThreads);
|
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
return *asan_thread_registry;
|
|
|
|
}
|
|
|
|
|
|
|
|
AsanThreadContext *GetThreadContextByTidLocked(u32 tid) {
|
|
|
|
return static_cast<AsanThreadContext *>(
|
|
|
|
asanThreadRegistry().GetThreadLocked(tid));
|
|
|
|
}
|
|
|
|
|
|
|
|
// AsanThread implementation.
|
|
|
|
|
|
|
|
AsanThread *AsanThread::Create(thread_callback_t start_routine,
|
|
|
|
void *arg) {
|
2012-11-23 23:38:49 +08:00
|
|
|
uptr PageSize = GetPageSizeCached();
|
|
|
|
uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
|
2012-06-07 00:15:07 +08:00
|
|
|
AsanThread *thread = (AsanThread*)MmapOrDie(size, __FUNCTION__);
|
2012-01-17 14:35:31 +08:00
|
|
|
thread->start_routine_ = start_routine;
|
|
|
|
thread->arg_ = arg;
|
|
|
|
|
|
|
|
return thread;
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
void AsanThread::TSDDtor(void *tsd) {
|
|
|
|
AsanThreadContext *context = (AsanThreadContext*)tsd;
|
2013-10-15 21:28:51 +08:00
|
|
|
if (common_flags()->verbosity >= 1)
|
2013-03-21 19:23:41 +08:00
|
|
|
Report("T%d TSDDtor\n", context->tid);
|
|
|
|
if (context->thread)
|
|
|
|
context->thread->Destroy();
|
2012-02-07 08:27:15 +08:00
|
|
|
}
|
|
|
|
|
2012-01-07 03:44:11 +08:00
|
|
|
void AsanThread::Destroy() {
|
2013-10-15 21:28:51 +08:00
|
|
|
if (common_flags()->verbosity >= 1) {
|
2012-02-07 08:27:15 +08:00
|
|
|
Report("T%d exited\n", tid());
|
|
|
|
}
|
|
|
|
|
2013-11-13 21:27:44 +08:00
|
|
|
malloc_storage().CommitBack();
|
|
|
|
if (flags()->use_sigaltstack) UnsetAlternateSignalStack();
|
2013-03-21 19:23:41 +08:00
|
|
|
asanThreadRegistry().FinishThread(tid());
|
2013-09-02 16:39:07 +08:00
|
|
|
FlushToDeadThreadStats(&stats_);
|
2011-11-30 09:07:02 +08:00
|
|
|
// We also clear the shadow on thread destruction because
|
|
|
|
// some code may still be executing in later TSD destructors
|
|
|
|
// and we don't want it to have any poisoned stack.
|
2013-05-29 21:09:44 +08:00
|
|
|
ClearShadowForThreadStackAndTLS();
|
2013-06-26 20:16:05 +08:00
|
|
|
DeleteFakeStack();
|
2012-11-23 23:38:49 +08:00
|
|
|
uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
|
2012-06-07 00:15:07 +08:00
|
|
|
UnmapOrDie(this, size);
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2013-09-12 16:34:50 +08:00
|
|
|
// We want to create the FakeStack lazyly on the first use, but not eralier
|
|
|
|
// than the stack size is known and the procedure has to be async-signal safe.
|
|
|
|
FakeStack *AsanThread::AsyncSignalSafeLazyInitFakeStack() {
|
|
|
|
uptr stack_size = this->stack_size();
|
|
|
|
if (stack_size == 0) // stack_size is not yet available, don't use FakeStack.
|
|
|
|
return 0;
|
|
|
|
uptr old_val = 0;
|
|
|
|
// fake_stack_ has 3 states:
|
|
|
|
// 0 -- not initialized
|
|
|
|
// 1 -- being initialized
|
|
|
|
// ptr -- initialized
|
|
|
|
// This CAS checks if the state was 0 and if so changes it to state 1,
|
|
|
|
// if that was successfull, it initilizes the pointer.
|
|
|
|
if (atomic_compare_exchange_strong(
|
|
|
|
reinterpret_cast<atomic_uintptr_t *>(&fake_stack_), &old_val, 1UL,
|
2013-09-13 14:32:26 +08:00
|
|
|
memory_order_relaxed)) {
|
2013-09-18 18:35:12 +08:00
|
|
|
uptr stack_size_log = Log2(RoundUpToPowerOfTwo(stack_size));
|
2013-09-27 19:37:23 +08:00
|
|
|
if (flags()->uar_stack_size_log)
|
|
|
|
stack_size_log = static_cast<uptr>(flags()->uar_stack_size_log);
|
2013-09-18 18:35:12 +08:00
|
|
|
fake_stack_ = FakeStack::Create(stack_size_log);
|
2013-09-13 14:32:26 +08:00
|
|
|
SetTLSFakeStack(fake_stack_);
|
|
|
|
return fake_stack_;
|
|
|
|
}
|
2013-09-12 16:34:50 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-17 03:13:35 +08:00
|
|
|
void AsanThread::Init() {
|
2013-05-29 21:09:44 +08:00
|
|
|
SetThreadStackAndTls();
|
2012-01-17 14:35:31 +08:00
|
|
|
CHECK(AddrIsInMem(stack_bottom_));
|
2013-01-18 19:30:36 +08:00
|
|
|
CHECK(AddrIsInMem(stack_top_ - 1));
|
2013-05-29 21:09:44 +08:00
|
|
|
ClearShadowForThreadStackAndTLS();
|
2013-10-15 21:28:51 +08:00
|
|
|
if (common_flags()->verbosity >= 1) {
|
2011-11-30 09:07:02 +08:00
|
|
|
int local = 0;
|
2012-03-21 19:32:46 +08:00
|
|
|
Report("T%d: stack [%p,%p) size 0x%zx; local=%p\n",
|
2012-06-06 18:46:00 +08:00
|
|
|
tid(), (void*)stack_bottom_, (void*)stack_top_,
|
2012-01-10 03:18:27 +08:00
|
|
|
stack_top_ - stack_bottom_, &local);
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
2013-06-26 20:16:05 +08:00
|
|
|
fake_stack_ = 0; // Will be initialized lazily if needed.
|
2012-07-23 22:07:58 +08:00
|
|
|
AsanPlatformThreadInit();
|
2011-12-17 03:13:35 +08:00
|
|
|
}
|
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
thread_return_t AsanThread::ThreadStart(uptr os_id) {
|
2011-12-17 03:13:35 +08:00
|
|
|
Init();
|
2013-03-21 19:23:41 +08:00
|
|
|
asanThreadRegistry().StartThread(tid(), os_id, 0);
|
2012-07-09 22:36:04 +08:00
|
|
|
if (flags()->use_sigaltstack) SetAlternateSignalStack();
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
if (!start_routine_) {
|
2012-05-31 22:35:53 +08:00
|
|
|
// start_routine_ == 0 if we're on the main thread or on one of the
|
2011-11-30 09:07:02 +08:00
|
|
|
// OS X libdispatch worker threads. But nobody is supposed to call
|
|
|
|
// ThreadStart() for the worker threads.
|
2013-04-05 22:40:25 +08:00
|
|
|
CHECK_EQ(tid(), 0);
|
2011-11-30 09:07:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-24 23:28:43 +08:00
|
|
|
thread_return_t res = start_routine_(arg_);
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2013-10-14 20:01:05 +08:00
|
|
|
// On POSIX systems we defer this to the TSD destructor. LSan will consider
|
|
|
|
// the thread's memory as non-live from the moment we call Destroy(), even
|
|
|
|
// though that memory might contain pointers to heap objects which will be
|
|
|
|
// cleaned up by a user-defined TSD destructor. Thus, calling Destroy() before
|
|
|
|
// the TSD destructors have run might cause false positives in LSan.
|
|
|
|
if (!SANITIZER_POSIX)
|
|
|
|
this->Destroy();
|
2012-01-11 10:03:16 +08:00
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2013-05-29 21:09:44 +08:00
|
|
|
void AsanThread::SetThreadStackAndTls() {
|
2013-09-19 22:59:52 +08:00
|
|
|
uptr tls_size = 0;
|
|
|
|
GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_,
|
2013-05-29 21:09:44 +08:00
|
|
|
&tls_size);
|
2013-09-19 22:59:52 +08:00
|
|
|
stack_top_ = stack_bottom_ + stack_size_;
|
2013-05-29 21:09:44 +08:00
|
|
|
tls_end_ = tls_begin_ + tls_size;
|
|
|
|
|
2012-06-07 15:13:46 +08:00
|
|
|
int local;
|
|
|
|
CHECK(AddrIsInStack((uptr)&local));
|
|
|
|
}
|
|
|
|
|
2013-05-29 21:09:44 +08:00
|
|
|
void AsanThread::ClearShadowForThreadStackAndTLS() {
|
2012-01-17 14:35:31 +08:00
|
|
|
PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
|
2013-05-29 21:09:44 +08:00
|
|
|
if (tls_begin_ != tls_end_)
|
|
|
|
PoisonShadow(tls_begin_, tls_end_ - tls_begin_, 0);
|
2012-01-17 14:35:31 +08:00
|
|
|
}
|
|
|
|
|
[asan] Change the way we report the alloca frame on stack-buff-overflow.
Before: the function name was stored by the compiler as a constant string
and the run-time was printing it.
Now: the PC is stored instead and the run-time prints the full symbolized frame.
This adds a couple of instructions into every function with non-empty stack frame,
but also reduces the binary size because we store less strings (I saw 2% size reduction).
This change bumps the asan ABI version to v3.
compiler-rt part, llvm part will follow.
Example of report (now):
==31711==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fffa77cf1c5 at pc 0x41feb0 bp 0x7fffa77cefb0 sp 0x7fffa77cefa8
READ of size 1 at 0x7fffa77cf1c5 thread T0
#0 0x41feaf in Frame0(int, char*, char*, char*) stack-oob-frames.cc:20
#1 0x41f7ff in Frame1(int, char*, char*) stack-oob-frames.cc:24
#2 0x41f477 in Frame2(int, char*) stack-oob-frames.cc:28
#3 0x41f194 in Frame3(int) stack-oob-frames.cc:32
#4 0x41eee0 in main stack-oob-frames.cc:38
#5 0x7f0c5566f76c (/lib/x86_64-linux-gnu/libc.so.6+0x2176c)
#6 0x41eb1c (/usr/local/google/kcc/llvm_cmake/a.out+0x41eb1c)
Address 0x7fffa77cf1c5 is located in stack of thread T0 at offset 293 in frame
#0 0x41f87f in Frame0(int, char*, char*, char*) stack-oob-frames.cc:12 <<<<<<<<<<<<<< this is new
This frame has 6 object(s):
[32, 36) 'frame.addr'
[96, 104) 'a.addr'
[160, 168) 'b.addr'
[224, 232) 'c.addr'
[288, 292) 's'
[352, 360) 'd'
llvm-svn: 177723
2013-03-22 18:36:24 +08:00
|
|
|
const char *AsanThread::GetFrameNameByAddr(uptr addr, uptr *offset,
|
|
|
|
uptr *frame_pc) {
|
2012-05-31 22:35:53 +08:00
|
|
|
uptr bottom = 0;
|
2011-11-30 09:07:02 +08:00
|
|
|
if (AddrIsInStack(addr)) {
|
|
|
|
bottom = stack_bottom();
|
2013-09-12 16:43:44 +08:00
|
|
|
} else if (has_fake_stack()) {
|
2013-06-26 20:16:05 +08:00
|
|
|
bottom = fake_stack()->AddrIsInFakeStack(addr);
|
2011-11-30 09:07:02 +08:00
|
|
|
CHECK(bottom);
|
2012-11-15 23:24:42 +08:00
|
|
|
*offset = addr - bottom;
|
[asan] Change the way we report the alloca frame on stack-buff-overflow.
Before: the function name was stored by the compiler as a constant string
and the run-time was printing it.
Now: the PC is stored instead and the run-time prints the full symbolized frame.
This adds a couple of instructions into every function with non-empty stack frame,
but also reduces the binary size because we store less strings (I saw 2% size reduction).
This change bumps the asan ABI version to v3.
compiler-rt part, llvm part will follow.
Example of report (now):
==31711==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fffa77cf1c5 at pc 0x41feb0 bp 0x7fffa77cefb0 sp 0x7fffa77cefa8
READ of size 1 at 0x7fffa77cf1c5 thread T0
#0 0x41feaf in Frame0(int, char*, char*, char*) stack-oob-frames.cc:20
#1 0x41f7ff in Frame1(int, char*, char*) stack-oob-frames.cc:24
#2 0x41f477 in Frame2(int, char*) stack-oob-frames.cc:28
#3 0x41f194 in Frame3(int) stack-oob-frames.cc:32
#4 0x41eee0 in main stack-oob-frames.cc:38
#5 0x7f0c5566f76c (/lib/x86_64-linux-gnu/libc.so.6+0x2176c)
#6 0x41eb1c (/usr/local/google/kcc/llvm_cmake/a.out+0x41eb1c)
Address 0x7fffa77cf1c5 is located in stack of thread T0 at offset 293 in frame
#0 0x41f87f in Frame0(int, char*, char*, char*) stack-oob-frames.cc:12 <<<<<<<<<<<<<< this is new
This frame has 6 object(s):
[32, 36) 'frame.addr'
[96, 104) 'a.addr'
[160, 168) 'b.addr'
[224, 232) 'c.addr'
[288, 292) 's'
[352, 360) 'd'
llvm-svn: 177723
2013-03-22 18:36:24 +08:00
|
|
|
*frame_pc = ((uptr*)bottom)[2];
|
2012-11-15 23:24:42 +08:00
|
|
|
return (const char *)((uptr*)bottom)[1];
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
2012-11-21 20:38:58 +08:00
|
|
|
uptr aligned_addr = addr & ~(SANITIZER_WORDSIZE/8 - 1); // align addr.
|
2012-05-31 23:02:07 +08:00
|
|
|
u8 *shadow_ptr = (u8*)MemToShadow(aligned_addr);
|
|
|
|
u8 *shadow_bottom = (u8*)MemToShadow(bottom);
|
2012-05-12 20:33:10 +08:00
|
|
|
|
|
|
|
while (shadow_ptr >= shadow_bottom &&
|
2012-11-15 23:24:42 +08:00
|
|
|
*shadow_ptr != kAsanStackLeftRedzoneMagic) {
|
2012-05-12 20:33:10 +08:00
|
|
|
shadow_ptr--;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (shadow_ptr >= shadow_bottom &&
|
2012-11-15 23:24:42 +08:00
|
|
|
*shadow_ptr == kAsanStackLeftRedzoneMagic) {
|
2012-05-12 20:33:10 +08:00
|
|
|
shadow_ptr--;
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
2012-05-12 20:33:10 +08:00
|
|
|
|
|
|
|
if (shadow_ptr < shadow_bottom) {
|
2012-11-15 23:24:42 +08:00
|
|
|
*offset = 0;
|
|
|
|
return "UNKNOWN";
|
2012-05-12 20:33:10 +08:00
|
|
|
}
|
|
|
|
|
2012-05-31 22:35:53 +08:00
|
|
|
uptr* ptr = (uptr*)SHADOW_TO_MEM((uptr)(shadow_ptr + 1));
|
2012-11-15 23:24:42 +08:00
|
|
|
CHECK(ptr[0] == kCurrentStackFrameMagic);
|
2012-05-31 22:35:53 +08:00
|
|
|
*offset = addr - (uptr)ptr;
|
[asan] Change the way we report the alloca frame on stack-buff-overflow.
Before: the function name was stored by the compiler as a constant string
and the run-time was printing it.
Now: the PC is stored instead and the run-time prints the full symbolized frame.
This adds a couple of instructions into every function with non-empty stack frame,
but also reduces the binary size because we store less strings (I saw 2% size reduction).
This change bumps the asan ABI version to v3.
compiler-rt part, llvm part will follow.
Example of report (now):
==31711==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fffa77cf1c5 at pc 0x41feb0 bp 0x7fffa77cefb0 sp 0x7fffa77cefa8
READ of size 1 at 0x7fffa77cf1c5 thread T0
#0 0x41feaf in Frame0(int, char*, char*, char*) stack-oob-frames.cc:20
#1 0x41f7ff in Frame1(int, char*, char*) stack-oob-frames.cc:24
#2 0x41f477 in Frame2(int, char*) stack-oob-frames.cc:28
#3 0x41f194 in Frame3(int) stack-oob-frames.cc:32
#4 0x41eee0 in main stack-oob-frames.cc:38
#5 0x7f0c5566f76c (/lib/x86_64-linux-gnu/libc.so.6+0x2176c)
#6 0x41eb1c (/usr/local/google/kcc/llvm_cmake/a.out+0x41eb1c)
Address 0x7fffa77cf1c5 is located in stack of thread T0 at offset 293 in frame
#0 0x41f87f in Frame0(int, char*, char*, char*) stack-oob-frames.cc:12 <<<<<<<<<<<<<< this is new
This frame has 6 object(s):
[32, 36) 'frame.addr'
[96, 104) 'a.addr'
[160, 168) 'b.addr'
[224, 232) 'c.addr'
[288, 292) 's'
[352, 360) 'd'
llvm-svn: 177723
2013-03-22 18:36:24 +08:00
|
|
|
*frame_pc = ptr[2];
|
2012-05-12 20:33:10 +08:00
|
|
|
return (const char*)ptr[1];
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
static bool ThreadStackContainsAddress(ThreadContextBase *tctx_base,
|
|
|
|
void *addr) {
|
|
|
|
AsanThreadContext *tctx = static_cast<AsanThreadContext*>(tctx_base);
|
|
|
|
AsanThread *t = tctx->thread;
|
2013-06-26 20:16:05 +08:00
|
|
|
if (!t) return false;
|
|
|
|
if (t->AddrIsInStack((uptr)addr)) return true;
|
2013-09-12 16:47:00 +08:00
|
|
|
if (t->has_fake_stack() && t->fake_stack()->AddrIsInFakeStack((uptr)addr))
|
2013-06-26 20:16:05 +08:00
|
|
|
return true;
|
|
|
|
return false;
|
2013-03-21 19:23:41 +08:00
|
|
|
}
|
|
|
|
|
2013-03-20 17:23:28 +08:00
|
|
|
AsanThread *GetCurrentThread() {
|
2013-07-08 20:57:24 +08:00
|
|
|
AsanThreadContext *context =
|
|
|
|
reinterpret_cast<AsanThreadContext *>(AsanTSDGet());
|
2013-03-21 19:23:41 +08:00
|
|
|
if (!context) {
|
|
|
|
if (SANITIZER_ANDROID) {
|
|
|
|
// On Android, libc constructor is called _after_ asan_init, and cleans up
|
|
|
|
// TSD. Try to figure out if this is still the main thread by the stack
|
|
|
|
// address. We are not entirely sure that we have correct main thread
|
2013-03-22 15:29:59 +08:00
|
|
|
// limits, so only do this magic on Android, and only if the found thread
|
|
|
|
// is the main thread.
|
2013-03-21 19:23:41 +08:00
|
|
|
AsanThreadContext *tctx = GetThreadContextByTidLocked(0);
|
|
|
|
if (ThreadStackContainsAddress(tctx, &context)) {
|
|
|
|
SetCurrentThread(tctx->thread);
|
|
|
|
return tctx->thread;
|
|
|
|
}
|
2013-03-20 17:23:28 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-03-21 19:23:41 +08:00
|
|
|
return context->thread;
|
2013-03-20 17:23:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetCurrentThread(AsanThread *t) {
|
2013-03-21 19:23:41 +08:00
|
|
|
CHECK(t->context());
|
2013-10-15 21:28:51 +08:00
|
|
|
if (common_flags()->verbosity >= 2) {
|
2013-03-20 17:23:28 +08:00
|
|
|
Report("SetCurrentThread: %p for thread %p\n",
|
2013-03-21 19:23:41 +08:00
|
|
|
t->context(), (void*)GetThreadSelf());
|
2013-03-20 17:23:28 +08:00
|
|
|
}
|
|
|
|
// Make sure we do not reset the current AsanThread.
|
2013-03-21 19:23:41 +08:00
|
|
|
CHECK_EQ(0, AsanTSDGet());
|
|
|
|
AsanTSDSet(t->context());
|
|
|
|
CHECK_EQ(t->context(), AsanTSDGet());
|
2013-03-20 17:23:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 GetCurrentTidOrInvalid() {
|
|
|
|
AsanThread *t = GetCurrentThread();
|
|
|
|
return t ? t->tid() : kInvalidTid;
|
|
|
|
}
|
|
|
|
|
2013-03-21 19:23:41 +08:00
|
|
|
AsanThread *FindThreadByStackAddress(uptr addr) {
|
|
|
|
asanThreadRegistry().CheckLocked();
|
|
|
|
AsanThreadContext *tctx = static_cast<AsanThreadContext *>(
|
|
|
|
asanThreadRegistry().FindThreadContextLocked(ThreadStackContainsAddress,
|
|
|
|
(void *)addr));
|
|
|
|
return tctx ? tctx->thread : 0;
|
|
|
|
}
|
2013-07-08 20:57:24 +08:00
|
|
|
|
|
|
|
void EnsureMainThreadIDIsCorrect() {
|
|
|
|
AsanThreadContext *context =
|
|
|
|
reinterpret_cast<AsanThreadContext *>(AsanTSDGet());
|
|
|
|
if (context && (context->tid == 0))
|
|
|
|
context->os_id = GetTid();
|
|
|
|
}
|
2013-10-14 22:04:50 +08:00
|
|
|
|
|
|
|
__asan::AsanThread *GetAsanThreadByOsIDLocked(uptr os_id) {
|
|
|
|
__asan::AsanThreadContext *context = static_cast<__asan::AsanThreadContext *>(
|
|
|
|
__asan::asanThreadRegistry().FindThreadContextByOsIDLocked(os_id));
|
|
|
|
if (!context) return 0;
|
|
|
|
return context->thread;
|
|
|
|
}
|
2011-11-30 09:07:02 +08:00
|
|
|
} // namespace __asan
|
2013-05-21 21:40:13 +08:00
|
|
|
|
|
|
|
// --- Implementation of LSan-specific functions --- {{{1
|
|
|
|
namespace __lsan {
|
|
|
|
bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
|
|
|
|
uptr *tls_begin, uptr *tls_end,
|
|
|
|
uptr *cache_begin, uptr *cache_end) {
|
2013-10-14 22:04:50 +08:00
|
|
|
__asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
|
2013-05-29 21:09:44 +08:00
|
|
|
if (!t) return false;
|
|
|
|
*stack_begin = t->stack_bottom();
|
|
|
|
*stack_end = t->stack_top();
|
|
|
|
*tls_begin = t->tls_begin();
|
|
|
|
*tls_end = t->tls_end();
|
|
|
|
// ASan doesn't keep allocator caches in TLS, so these are unused.
|
|
|
|
*cache_begin = 0;
|
|
|
|
*cache_end = 0;
|
|
|
|
return true;
|
2013-05-21 21:40:13 +08:00
|
|
|
}
|
|
|
|
|
2013-10-14 22:04:50 +08:00
|
|
|
void ForEachExtraStackRange(uptr os_id, RangeIteratorCallback callback,
|
|
|
|
void *arg) {
|
|
|
|
__asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
|
|
|
|
if (t && t->has_fake_stack())
|
|
|
|
t->fake_stack()->ForEachFakeFrame(callback, arg);
|
|
|
|
}
|
|
|
|
|
2013-05-21 21:40:13 +08:00
|
|
|
void LockThreadRegistry() {
|
|
|
|
__asan::asanThreadRegistry().Lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnlockThreadRegistry() {
|
|
|
|
__asan::asanThreadRegistry().Unlock();
|
|
|
|
}
|
2013-07-08 20:57:24 +08:00
|
|
|
|
|
|
|
void EnsureMainThreadIDIsCorrect() {
|
|
|
|
__asan::EnsureMainThreadIDIsCorrect();
|
|
|
|
}
|
2013-05-21 21:40:13 +08:00
|
|
|
} // namespace __lsan
|