2011-11-30 09:07:02 +08:00
|
|
|
//===-- asan_thread.cc ------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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"
|
2012-01-05 08:44:33 +08:00
|
|
|
#include "asan_procmaps.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"
|
2012-01-11 10:03:16 +08:00
|
|
|
#include "asan_thread_registry.h"
|
2011-11-30 09:07:02 +08:00
|
|
|
#include "asan_mapping.h"
|
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
|
|
|
AsanThread::AsanThread(LinkerInitialized x)
|
|
|
|
: fake_stack_(x),
|
|
|
|
malloc_storage_(x),
|
|
|
|
stats_(x) { }
|
|
|
|
|
2012-01-07 03:44:11 +08:00
|
|
|
AsanThread *AsanThread::Create(int parent_tid, void *(*start_routine) (void *),
|
2012-01-17 14:35:31 +08:00
|
|
|
void *arg, AsanStackTrace *stack) {
|
2012-01-07 03:44:11 +08:00
|
|
|
size_t size = RoundUpTo(sizeof(AsanThread), kPageSize);
|
2012-01-17 14:35:31 +08:00
|
|
|
AsanThread *thread = (AsanThread*)AsanMmapSomewhereOrDie(size, __FUNCTION__);
|
|
|
|
thread->start_routine_ = start_routine;
|
|
|
|
thread->arg_ = arg;
|
|
|
|
|
|
|
|
AsanThreadSummary *summary = new AsanThreadSummary(parent_tid, stack);
|
|
|
|
summary->set_thread(thread);
|
|
|
|
thread->set_summary(summary);
|
|
|
|
|
|
|
|
return thread;
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2012-02-07 08:27:15 +08:00
|
|
|
void AsanThreadSummary::TSDDtor(void *tsd) {
|
|
|
|
AsanThreadSummary *summary = (AsanThreadSummary*)tsd;
|
|
|
|
if (FLAG_v >= 1) {
|
|
|
|
Report("T%d TSDDtor\n", summary->tid());
|
|
|
|
}
|
|
|
|
if (summary->thread()) {
|
|
|
|
summary->thread()->Destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-07 03:44:11 +08:00
|
|
|
void AsanThread::Destroy() {
|
2012-02-07 08:27:15 +08:00
|
|
|
if (FLAG_v >= 1) {
|
|
|
|
Report("T%d exited\n", tid());
|
|
|
|
}
|
|
|
|
|
|
|
|
asanThreadRegistry().UnregisterThread(this);
|
|
|
|
CHECK(summary()->thread() == NULL);
|
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.
|
|
|
|
ClearShadowForThreadStack();
|
2012-01-17 14:35:31 +08:00
|
|
|
fake_stack().Cleanup();
|
2012-01-07 03:44:11 +08:00
|
|
|
size_t size = RoundUpTo(sizeof(AsanThread), kPageSize);
|
|
|
|
AsanUnmapOrDie(this, size);
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
|
|
|
|
2011-12-17 03:13:35 +08:00
|
|
|
void AsanThread::Init() {
|
2011-11-30 09:07:02 +08:00
|
|
|
SetThreadStackTopAndBottom();
|
2012-01-17 14:35:31 +08:00
|
|
|
CHECK(AddrIsInMem(stack_bottom_));
|
|
|
|
CHECK(AddrIsInMem(stack_top_));
|
|
|
|
ClearShadowForThreadStack();
|
2011-11-30 09:07:02 +08:00
|
|
|
if (FLAG_v >= 1) {
|
|
|
|
int local = 0;
|
2012-01-10 03:18:27 +08:00
|
|
|
Report("T%d: stack [%p,%p) size 0x%lx; local=%p\n",
|
2011-11-30 09:07:02 +08:00
|
|
|
tid(), stack_bottom_, stack_top_,
|
2012-01-10 03:18:27 +08:00
|
|
|
stack_top_ - stack_bottom_, &local);
|
2011-11-30 09:07:02 +08:00
|
|
|
}
|
2012-01-17 14:35:31 +08:00
|
|
|
fake_stack_.Init(stack_size());
|
2011-12-17 03:13:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *AsanThread::ThreadStart() {
|
|
|
|
Init();
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
if (!start_routine_) {
|
|
|
|
// start_routine_ == NULL if we're on the main thread or on one of the
|
|
|
|
// OS X libdispatch worker threads. But nobody is supposed to call
|
|
|
|
// ThreadStart() for the worker threads.
|
|
|
|
CHECK(tid() == 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *res = start_routine_(arg_);
|
|
|
|
malloc_storage().CommitBack();
|
|
|
|
|
2012-01-11 10:03:16 +08:00
|
|
|
this->Destroy();
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2012-01-17 14:35:31 +08:00
|
|
|
void AsanThread::ClearShadowForThreadStack() {
|
|
|
|
PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
|
|
|
|
}
|
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
const char *AsanThread::GetFrameNameByAddr(uintptr_t addr, uintptr_t *offset) {
|
|
|
|
uintptr_t bottom = 0;
|
|
|
|
bool is_fake_stack = false;
|
|
|
|
if (AddrIsInStack(addr)) {
|
|
|
|
bottom = stack_bottom();
|
|
|
|
} else {
|
|
|
|
bottom = fake_stack().AddrIsInFakeStack(addr);
|
|
|
|
CHECK(bottom);
|
|
|
|
is_fake_stack = true;
|
|
|
|
}
|
|
|
|
uintptr_t aligned_addr = addr & ~(__WORDSIZE/8 - 1); // align addr.
|
|
|
|
uintptr_t *ptr = (uintptr_t*)aligned_addr;
|
|
|
|
while (ptr >= (uintptr_t*)bottom) {
|
|
|
|
if (ptr[0] == kCurrentStackFrameMagic ||
|
|
|
|
(is_fake_stack && ptr[0] == kRetiredStackFrameMagic)) {
|
|
|
|
*offset = addr - (uintptr_t)ptr;
|
|
|
|
return (const char*)ptr[1];
|
|
|
|
}
|
|
|
|
ptr--;
|
|
|
|
}
|
|
|
|
*offset = 0;
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace __asan
|