blob: b6d0965c7554d640250fceaea0eac545ad693631 [file] [log] [blame]
Kostya Serebryany1e172b42011-11-30 01:07:02 +00001//===-- asan_thread.cc ------------------------------------------*- C++ -*-===//
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 a part of AddressSanitizer, an address sanity checker.
11//
12// Thread-related code.
13//===----------------------------------------------------------------------===//
14#include "asan_allocator.h"
15#include "asan_interceptors.h"
Kostya Serebryanydf499b42012-01-05 00:44:33 +000016#include "asan_procmaps.h"
Alexey Samsonov55cdfc62012-01-17 06:35:31 +000017#include "asan_stack.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000018#include "asan_thread.h"
Kostya Serebryanyaf344152012-01-11 02:03:16 +000019#include "asan_thread_registry.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000020#include "asan_mapping.h"
21
Kostya Serebryany1e172b42011-11-30 01:07:02 +000022namespace __asan {
23
24AsanThread::AsanThread(LinkerInitialized x)
25 : fake_stack_(x),
26 malloc_storage_(x),
27 stats_(x) { }
28
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +000029AsanThread *AsanThread::Create(int parent_tid, thread_callback_t start_routine,
Alexey Samsonov55cdfc62012-01-17 06:35:31 +000030 void *arg, AsanStackTrace *stack) {
Kostya Serebryanya6b52262012-01-06 19:44:11 +000031 size_t size = RoundUpTo(sizeof(AsanThread), kPageSize);
Alexey Samsonov55cdfc62012-01-17 06:35:31 +000032 AsanThread *thread = (AsanThread*)AsanMmapSomewhereOrDie(size, __FUNCTION__);
33 thread->start_routine_ = start_routine;
34 thread->arg_ = arg;
35
36 AsanThreadSummary *summary = new AsanThreadSummary(parent_tid, stack);
37 summary->set_thread(thread);
38 thread->set_summary(summary);
39
40 return thread;
Kostya Serebryany1e172b42011-11-30 01:07:02 +000041}
42
Kostya Serebryanyf58f9982012-02-07 00:27:15 +000043void AsanThreadSummary::TSDDtor(void *tsd) {
44 AsanThreadSummary *summary = (AsanThreadSummary*)tsd;
45 if (FLAG_v >= 1) {
46 Report("T%d TSDDtor\n", summary->tid());
47 }
48 if (summary->thread()) {
49 summary->thread()->Destroy();
50 }
51}
52
Kostya Serebryanya6b52262012-01-06 19:44:11 +000053void AsanThread::Destroy() {
Kostya Serebryanyf58f9982012-02-07 00:27:15 +000054 if (FLAG_v >= 1) {
55 Report("T%d exited\n", tid());
56 }
57
58 asanThreadRegistry().UnregisterThread(this);
59 CHECK(summary()->thread() == NULL);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000060 // We also clear the shadow on thread destruction because
61 // some code may still be executing in later TSD destructors
62 // and we don't want it to have any poisoned stack.
63 ClearShadowForThreadStack();
Alexey Samsonov55cdfc62012-01-17 06:35:31 +000064 fake_stack().Cleanup();
Kostya Serebryanya6b52262012-01-06 19:44:11 +000065 size_t size = RoundUpTo(sizeof(AsanThread), kPageSize);
66 AsanUnmapOrDie(this, size);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000067}
68
Kostya Serebryany69eca732011-12-16 19:13:35 +000069void AsanThread::Init() {
Kostya Serebryany1e172b42011-11-30 01:07:02 +000070 SetThreadStackTopAndBottom();
Alexey Samsonov55cdfc62012-01-17 06:35:31 +000071 CHECK(AddrIsInMem(stack_bottom_));
72 CHECK(AddrIsInMem(stack_top_));
73 ClearShadowForThreadStack();
Kostya Serebryany1e172b42011-11-30 01:07:02 +000074 if (FLAG_v >= 1) {
75 int local = 0;
Evgeniy Stepanov739eb792012-03-21 11:32:46 +000076 Report("T%d: stack [%p,%p) size 0x%zx; local=%p\n",
Kostya Serebryany1e172b42011-11-30 01:07:02 +000077 tid(), stack_bottom_, stack_top_,
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000078 stack_top_ - stack_bottom_, &local);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000079 }
Alexey Samsonov55cdfc62012-01-17 06:35:31 +000080 fake_stack_.Init(stack_size());
Kostya Serebryany69eca732011-12-16 19:13:35 +000081}
82
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +000083thread_return_t AsanThread::ThreadStart() {
Kostya Serebryany69eca732011-12-16 19:13:35 +000084 Init();
Kostya Serebryany1e172b42011-11-30 01:07:02 +000085
86 if (!start_routine_) {
87 // start_routine_ == NULL if we're on the main thread or on one of the
88 // OS X libdispatch worker threads. But nobody is supposed to call
89 // ThreadStart() for the worker threads.
90 CHECK(tid() == 0);
91 return 0;
92 }
93
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +000094 thread_return_t res = start_routine_(arg_);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000095 malloc_storage().CommitBack();
96
Kostya Serebryanyaf344152012-01-11 02:03:16 +000097 this->Destroy();
98
Kostya Serebryany1e172b42011-11-30 01:07:02 +000099 return res;
100}
101
Alexey Samsonov55cdfc62012-01-17 06:35:31 +0000102void AsanThread::ClearShadowForThreadStack() {
103 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
104}
105
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000106const char *AsanThread::GetFrameNameByAddr(uintptr_t addr, uintptr_t *offset) {
107 uintptr_t bottom = 0;
108 bool is_fake_stack = false;
109 if (AddrIsInStack(addr)) {
110 bottom = stack_bottom();
111 } else {
112 bottom = fake_stack().AddrIsInFakeStack(addr);
113 CHECK(bottom);
114 is_fake_stack = true;
115 }
116 uintptr_t aligned_addr = addr & ~(__WORDSIZE/8 - 1); // align addr.
117 uintptr_t *ptr = (uintptr_t*)aligned_addr;
118 while (ptr >= (uintptr_t*)bottom) {
119 if (ptr[0] == kCurrentStackFrameMagic ||
120 (is_fake_stack && ptr[0] == kRetiredStackFrameMagic)) {
121 *offset = addr - (uintptr_t)ptr;
122 return (const char*)ptr[1];
123 }
124 ptr--;
125 }
126 *offset = 0;
127 return "UNKNOWN";
128}
129
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000130} // namespace __asan