blob: a9102535ad628050be153b580738952e042bcd16 [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 Serebryany3f4c3872012-05-31 14:35:53 +000031 uptr 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);
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000059 CHECK(summary()->thread() == 0);
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 Serebryany3f4c3872012-05-31 14:35:53 +000065 uptr size = RoundUpTo(sizeof(AsanThread), kPageSize);
Kostya Serebryanya6b52262012-01-06 19:44:11 +000066 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();
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000085 if (FLAG_use_sigaltstack) SetAlternateSignalStack();
Kostya Serebryany1e172b42011-11-30 01:07:02 +000086
87 if (!start_routine_) {
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000088 // start_routine_ == 0 if we're on the main thread or on one of the
Kostya Serebryany1e172b42011-11-30 01:07:02 +000089 // OS X libdispatch worker threads. But nobody is supposed to call
90 // ThreadStart() for the worker threads.
91 CHECK(tid() == 0);
92 return 0;
93 }
94
Timur Iskhodzhanov600972e2012-02-24 15:28:43 +000095 thread_return_t res = start_routine_(arg_);
Kostya Serebryany1e172b42011-11-30 01:07:02 +000096 malloc_storage().CommitBack();
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000097 if (FLAG_use_sigaltstack) UnsetAlternateSignalStack();
Kostya Serebryany1e172b42011-11-30 01:07:02 +000098
Kostya Serebryanyaf344152012-01-11 02:03:16 +000099 this->Destroy();
100
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000101 return res;
102}
103
Alexey Samsonov55cdfc62012-01-17 06:35:31 +0000104void AsanThread::ClearShadowForThreadStack() {
105 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
106}
107
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000108const char *AsanThread::GetFrameNameByAddr(uptr addr, uptr *offset) {
109 uptr bottom = 0;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000110 bool is_fake_stack = false;
111 if (AddrIsInStack(addr)) {
112 bottom = stack_bottom();
113 } else {
114 bottom = fake_stack().AddrIsInFakeStack(addr);
115 CHECK(bottom);
116 is_fake_stack = true;
117 }
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000118 uptr aligned_addr = addr & ~(__WORDSIZE/8 - 1); // align addr.
Kostya Serebryanyee392552012-05-31 15:02:07 +0000119 u8 *shadow_ptr = (u8*)MemToShadow(aligned_addr);
120 u8 *shadow_bottom = (u8*)MemToShadow(bottom);
Evgeniy Stepanov3972ea02012-05-12 12:33:10 +0000121
122 while (shadow_ptr >= shadow_bottom &&
123 *shadow_ptr != kAsanStackLeftRedzoneMagic) {
124 shadow_ptr--;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000125 }
Evgeniy Stepanov3972ea02012-05-12 12:33:10 +0000126
127 while (shadow_ptr >= shadow_bottom &&
128 *shadow_ptr == kAsanStackLeftRedzoneMagic) {
129 shadow_ptr--;
130 }
131
132 if (shadow_ptr < shadow_bottom) {
133 *offset = 0;
134 return "UNKNOWN";
135 }
136
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000137 uptr* ptr = (uptr*)SHADOW_TO_MEM((uptr)(shadow_ptr + 1));
Evgeniy Stepanov3972ea02012-05-12 12:33:10 +0000138 CHECK((ptr[0] == kCurrentStackFrameMagic) ||
139 (is_fake_stack && ptr[0] == kRetiredStackFrameMagic));
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000140 *offset = addr - (uptr)ptr;
Evgeniy Stepanov3972ea02012-05-12 12:33:10 +0000141 return (const char*)ptr[1];
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000142}
143
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000144} // namespace __asan