blob: 68a5c3e29172bc0d90c7f40c7ae7def6b544686f [file] [log] [blame]
Alexey Samsonov3b2f9f42012-06-04 13:55:19 +00001//===-- tsan_rtl_thread.cc ------------------------------------------------===//
Kostya Serebryany4ad375f2012-05-10 13:48:04 +00002//
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 ThreadSanitizer (TSan), a race detector.
11//
12//===----------------------------------------------------------------------===//
13
Alexey Samsonov8bd90982012-06-07 09:50:16 +000014#include "sanitizer_common/sanitizer_placement_new.h"
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000015#include "tsan_rtl.h"
16#include "tsan_mman.h"
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000017#include "tsan_platform.h"
18#include "tsan_report.h"
19#include "tsan_sync.h"
20
21namespace __tsan {
22
Dmitry Vyukovf6985e32012-05-22 14:34:43 +000023const int kThreadQuarantineSize = 16;
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000024
25static void MaybeReportThreadLeak(ThreadContext *tctx) {
26 if (tctx->detached)
27 return;
28 if (tctx->status != ThreadStatusCreated
29 && tctx->status != ThreadStatusRunning
30 && tctx->status != ThreadStatusFinished)
31 return;
32 ScopedReport rep(ReportTypeThreadLeak);
33 rep.AddThread(tctx);
34 OutputReport(rep);
35}
36
37void ThreadFinalize(ThreadState *thr) {
38 CHECK_GT(thr->in_rtl, 0);
39 if (!flags()->report_thread_leaks)
40 return;
41 Context *ctx = CTX();
42 Lock l(&ctx->thread_mtx);
Kostya Serebryany07c48052012-05-11 14:42:24 +000043 for (unsigned i = 0; i < kMaxTid; i++) {
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000044 ThreadContext *tctx = ctx->threads[i];
45 if (tctx == 0)
46 continue;
47 MaybeReportThreadLeak(tctx);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000048 }
49}
50
51static void ThreadDead(ThreadState *thr, ThreadContext *tctx) {
52 Context *ctx = CTX();
53 CHECK_GT(thr->in_rtl, 0);
54 CHECK(tctx->status == ThreadStatusRunning
55 || tctx->status == ThreadStatusFinished);
Alexey Samsonov51ae9832012-06-06 13:11:29 +000056 DPrintf("#%d: ThreadDead uid=%zu\n", thr->tid, tctx->user_id);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000057 tctx->status = ThreadStatusDead;
58 tctx->user_id = 0;
59 tctx->sync.Reset();
60
61 // Put to dead list.
62 tctx->dead_next = 0;
63 if (ctx->dead_list_size == 0)
64 ctx->dead_list_head = tctx;
65 else
66 ctx->dead_list_tail->dead_next = tctx;
67 ctx->dead_list_tail = tctx;
68 ctx->dead_list_size++;
69}
70
71int ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) {
72 CHECK_GT(thr->in_rtl, 0);
73 Context *ctx = CTX();
74 Lock l(&ctx->thread_mtx);
75 StatInc(thr, StatThreadCreate);
76 int tid = -1;
77 ThreadContext *tctx = 0;
78 if (ctx->dead_list_size > kThreadQuarantineSize
79 || ctx->thread_seq >= kMaxTid) {
80 if (ctx->dead_list_size == 0) {
Alexey Samsonovac4c2902012-06-06 10:13:27 +000081 TsanPrintf("ThreadSanitizer: %d thread limit exceeded. Dying.\n",
82 kMaxTid);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000083 Die();
84 }
85 StatInc(thr, StatThreadReuse);
86 tctx = ctx->dead_list_head;
87 ctx->dead_list_head = tctx->dead_next;
88 ctx->dead_list_size--;
89 if (ctx->dead_list_size == 0) {
90 CHECK_EQ(tctx->dead_next, 0);
91 ctx->dead_list_head = 0;
92 }
93 CHECK_EQ(tctx->status, ThreadStatusDead);
94 tctx->status = ThreadStatusInvalid;
95 tctx->reuse_count++;
Dmitry Vyukov302cebb2012-05-22 18:07:45 +000096 tctx->sync.Reset();
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000097 tid = tctx->tid;
Dmitry Vyukovf6985e32012-05-22 14:34:43 +000098 DestroyAndFree(tctx->dead_info);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +000099 } else {
100 StatInc(thr, StatThreadMaxTid);
101 tid = ctx->thread_seq++;
102 void *mem = internal_alloc(MBlockThreadContex, sizeof(ThreadContext));
103 tctx = new(mem) ThreadContext(tid);
104 ctx->threads[tid] = tctx;
105 }
106 CHECK_NE(tctx, 0);
107 CHECK_GE(tid, 0);
108 CHECK_LT(tid, kMaxTid);
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000109 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", thr->tid, tid, uid);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000110 CHECK_EQ(tctx->status, ThreadStatusInvalid);
111 ctx->alive_threads++;
112 if (ctx->max_alive_threads < ctx->alive_threads) {
113 ctx->max_alive_threads++;
114 CHECK_EQ(ctx->max_alive_threads, ctx->alive_threads);
115 StatInc(thr, StatThreadMaxAlive);
116 }
117 tctx->status = ThreadStatusCreated;
118 tctx->thr = 0;
119 tctx->user_id = uid;
120 tctx->unique_id = ctx->unique_thread_seq++;
121 tctx->detached = detached;
122 if (tid) {
123 thr->fast_state.IncrementEpoch();
124 // Can't increment epoch w/o writing to the trace as well.
125 TraceAddEvent(thr, thr->fast_state.epoch(), EventTypeMop, 0);
126 thr->clock.set(thr->tid, thr->fast_state.epoch());
127 thr->fast_synch_epoch = thr->fast_state.epoch();
128 thr->clock.release(&tctx->sync);
129 StatInc(thr, StatSyncRelease);
130
131 tctx->creation_stack.ObtainCurrent(thr, pc);
132 }
133 return tid;
134}
135
136void ThreadStart(ThreadState *thr, int tid) {
137 CHECK_GT(thr->in_rtl, 0);
138 uptr stk_addr = 0;
139 uptr stk_size = 0;
140 uptr tls_addr = 0;
141 uptr tls_size = 0;
Dmitry Vyukov7339eb12012-05-25 11:15:04 +0000142 GetThreadStackAndTls(tid == 0, &stk_addr, &stk_size, &tls_addr, &tls_size);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000143
Dmitry Vyukov2d4e3c12012-05-28 07:44:34 +0000144 if (tid) {
145 MemoryResetRange(thr, /*pc=*/ 1, stk_addr, stk_size);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000146
Dmitry Vyukov2d4e3c12012-05-28 07:44:34 +0000147 // Check that the thr object is in tls;
148 const uptr thr_beg = (uptr)thr;
149 const uptr thr_end = (uptr)thr + sizeof(*thr);
150 CHECK_GE(thr_beg, tls_addr);
151 CHECK_LE(thr_beg, tls_addr + tls_size);
152 CHECK_GE(thr_end, tls_addr);
153 CHECK_LE(thr_end, tls_addr + tls_size);
154 // Since the thr object is huge, skip it.
155 MemoryResetRange(thr, /*pc=*/ 2, tls_addr, thr_beg - tls_addr);
156 MemoryResetRange(thr, /*pc=*/ 2, thr_end, tls_addr + tls_size - thr_end);
157 }
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000158
159 Lock l(&CTX()->thread_mtx);
160 ThreadContext *tctx = CTX()->threads[tid];
161 CHECK_NE(tctx, 0);
162 CHECK_EQ(tctx->status, ThreadStatusCreated);
163 tctx->status = ThreadStatusRunning;
164 tctx->epoch0 = tctx->epoch1 + 1;
165 tctx->epoch1 = (u64)-1;
166 new(thr) ThreadState(CTX(), tid, tctx->epoch0, stk_addr, stk_size,
167 tls_addr, tls_size);
168 tctx->thr = thr;
169 thr->fast_synch_epoch = tctx->epoch0;
170 thr->clock.set(tid, tctx->epoch0);
171 thr->clock.acquire(&tctx->sync);
172 StatInc(thr, StatSyncAcquire);
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000173 DPrintf("#%d: ThreadStart epoch=%zu stk_addr=%zx stk_size=%zx "
174 "tls_addr=%zx tls_size=%zx\n",
175 tid, (uptr)tctx->epoch0, stk_addr, stk_size, tls_addr, tls_size);
Dmitry Vyukovfa985a02012-06-28 18:07:46 +0000176 thr->is_alive = true;
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000177}
178
179void ThreadFinish(ThreadState *thr) {
180 CHECK_GT(thr->in_rtl, 0);
181 StatInc(thr, StatThreadFinish);
182 // FIXME: Treat it as write.
183 if (thr->stk_addr && thr->stk_size)
184 MemoryResetRange(thr, /*pc=*/ 3, thr->stk_addr, thr->stk_size);
185 if (thr->tls_addr && thr->tls_size) {
186 const uptr thr_beg = (uptr)thr;
187 const uptr thr_end = (uptr)thr + sizeof(*thr);
188 // Since the thr object is huge, skip it.
189 MemoryResetRange(thr, /*pc=*/ 4, thr->tls_addr, thr_beg - thr->tls_addr);
190 MemoryResetRange(thr, /*pc=*/ 5,
191 thr_end, thr->tls_addr + thr->tls_size - thr_end);
192 }
Dmitry Vyukovfa985a02012-06-28 18:07:46 +0000193 thr->is_alive = false;
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000194 Context *ctx = CTX();
195 Lock l(&ctx->thread_mtx);
196 ThreadContext *tctx = ctx->threads[thr->tid];
197 CHECK_NE(tctx, 0);
198 CHECK_EQ(tctx->status, ThreadStatusRunning);
199 CHECK_GT(ctx->alive_threads, 0);
200 ctx->alive_threads--;
201 if (tctx->detached) {
202 ThreadDead(thr, tctx);
203 } else {
204 thr->fast_state.IncrementEpoch();
205 // Can't increment epoch w/o writing to the trace as well.
206 TraceAddEvent(thr, thr->fast_state.epoch(), EventTypeMop, 0);
207 thr->clock.set(thr->tid, thr->fast_state.epoch());
208 thr->fast_synch_epoch = thr->fast_state.epoch();
209 thr->clock.release(&tctx->sync);
210 StatInc(thr, StatSyncRelease);
211 tctx->status = ThreadStatusFinished;
212 }
213
214 // Save from info about the thread.
Dmitry Vyukovf6985e32012-05-22 14:34:43 +0000215 tctx->dead_info = new(internal_alloc(MBlockDeadInfo, sizeof(ThreadDeadInfo)))
216 ThreadDeadInfo();
Dmitry Vyukov090f3452012-06-27 21:00:23 +0000217 internal_memcpy(&tctx->dead_info->trace.events[0],
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000218 &thr->trace.events[0], sizeof(thr->trace.events));
219 for (int i = 0; i < kTraceParts; i++) {
Dmitry Vyukovf6985e32012-05-22 14:34:43 +0000220 tctx->dead_info->trace.headers[i].stack0.CopyFrom(
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000221 thr->trace.headers[i].stack0);
222 }
Dmitry Vyukov302cebb2012-05-22 18:07:45 +0000223 tctx->epoch1 = thr->fast_state.epoch();
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000224
225 thr->~ThreadState();
226 StatAggregate(ctx->stat, thr->stat);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000227 tctx->thr = 0;
228}
229
230int ThreadTid(ThreadState *thr, uptr pc, uptr uid) {
231 CHECK_GT(thr->in_rtl, 0);
Dmitry Vyukov880bb662012-05-28 17:32:50 +0000232 Context *ctx = CTX();
233 Lock l(&ctx->thread_mtx);
234 int res = -1;
Kostya Serebryany07c48052012-05-11 14:42:24 +0000235 for (unsigned tid = 0; tid < kMaxTid; tid++) {
Dmitry Vyukov880bb662012-05-28 17:32:50 +0000236 ThreadContext *tctx = ctx->threads[tid];
237 if (tctx != 0 && tctx->user_id == uid
238 && tctx->status != ThreadStatusInvalid) {
239 tctx->user_id = 0;
240 res = tid;
241 break;
242 }
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000243 }
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000244 DPrintf("#%d: ThreadTid uid=%zu tid=%d\n", thr->tid, uid, res);
Dmitry Vyukov880bb662012-05-28 17:32:50 +0000245 return res;
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000246}
247
248void ThreadJoin(ThreadState *thr, uptr pc, int tid) {
249 CHECK_GT(thr->in_rtl, 0);
250 CHECK_GT(tid, 0);
251 CHECK_LT(tid, kMaxTid);
252 DPrintf("#%d: ThreadJoin tid=%d\n", thr->tid, tid);
253 Context *ctx = CTX();
254 Lock l(&ctx->thread_mtx);
255 ThreadContext *tctx = ctx->threads[tid];
256 if (tctx->status == ThreadStatusInvalid) {
Alexey Samsonovac4c2902012-06-06 10:13:27 +0000257 TsanPrintf("ThreadSanitizer: join of non-existent thread\n");
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000258 return;
259 }
260 CHECK_EQ(tctx->detached, false);
261 CHECK_EQ(tctx->status, ThreadStatusFinished);
262 thr->clock.acquire(&tctx->sync);
263 StatInc(thr, StatSyncAcquire);
264 ThreadDead(thr, tctx);
265}
266
267void ThreadDetach(ThreadState *thr, uptr pc, int tid) {
268 CHECK_GT(thr->in_rtl, 0);
269 CHECK_GT(tid, 0);
270 CHECK_LT(tid, kMaxTid);
271 Context *ctx = CTX();
272 Lock l(&ctx->thread_mtx);
273 ThreadContext *tctx = ctx->threads[tid];
274 if (tctx->status == ThreadStatusInvalid) {
Alexey Samsonovac4c2902012-06-06 10:13:27 +0000275 TsanPrintf("ThreadSanitizer: detach of non-existent thread\n");
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000276 return;
277 }
278 if (tctx->status == ThreadStatusFinished) {
279 ThreadDead(thr, tctx);
280 } else {
281 tctx->detached = true;
282 }
283}
284
285void MemoryAccessRange(ThreadState *thr, uptr pc, uptr addr,
286 uptr size, bool is_write) {
287 if (size == 0)
288 return;
289
290 u64 *shadow_mem = (u64*)MemToShadow(addr);
291 DPrintf2("#%d: MemoryAccessRange: @%p %p size=%d is_write=%d\n",
292 thr->tid, (void*)pc, (void*)addr,
293 (int)size, is_write);
294
295#if TSAN_DEBUG
296 if (!IsAppMem(addr)) {
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000297 TsanPrintf("Access to non app mem %zx\n", addr);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000298 DCHECK(IsAppMem(addr));
299 }
300 if (!IsAppMem(addr + size - 1)) {
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000301 TsanPrintf("Access to non app mem %zx\n", addr + size - 1);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000302 DCHECK(IsAppMem(addr + size - 1));
303 }
304 if (!IsShadowMem((uptr)shadow_mem)) {
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000305 TsanPrintf("Bad shadow addr %p (%zx)\n", shadow_mem, addr);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000306 DCHECK(IsShadowMem((uptr)shadow_mem));
307 }
308 if (!IsShadowMem((uptr)(shadow_mem + size * kShadowCnt / 8 - 1))) {
Alexey Samsonov51ae9832012-06-06 13:11:29 +0000309 TsanPrintf("Bad shadow addr %p (%zx)\n",
310 shadow_mem + size * kShadowCnt / 8 - 1, addr + size - 1);
Kostya Serebryany4ad375f2012-05-10 13:48:04 +0000311 DCHECK(IsShadowMem((uptr)(shadow_mem + size * kShadowCnt / 8 - 1)));
312 }
313#endif
314
315 StatInc(thr, StatMopRange);
316
317 FastState fast_state = thr->fast_state;
318 if (fast_state.GetIgnoreBit())
319 return;
320
321 fast_state.IncrementEpoch();
322 thr->fast_state = fast_state;
323 TraceAddEvent(thr, fast_state.epoch(), EventTypeMop, pc);
324
325 bool unaligned = (addr % kShadowCell) != 0;
326
327 // Handle unaligned beginning, if any.
328 for (; addr % kShadowCell && size; addr++, size--) {
329 int const kAccessSizeLog = 0;
330 Shadow cur(fast_state);
331 cur.SetWrite(is_write);
332 cur.SetAddr0AndSizeLog(addr & (kShadowCell - 1), kAccessSizeLog);
333 MemoryAccessImpl(thr, addr, kAccessSizeLog, is_write, fast_state,
334 shadow_mem, cur);
335 }
336 if (unaligned)
337 shadow_mem += kShadowCnt;
338 // Handle middle part, if any.
339 for (; size >= kShadowCell; addr += kShadowCell, size -= kShadowCell) {
340 int const kAccessSizeLog = 3;
341 Shadow cur(fast_state);
342 cur.SetWrite(is_write);
343 cur.SetAddr0AndSizeLog(0, kAccessSizeLog);
344 MemoryAccessImpl(thr, addr, kAccessSizeLog, is_write, fast_state,
345 shadow_mem, cur);
346 shadow_mem += kShadowCnt;
347 }
348 // Handle ending, if any.
349 for (; size; addr++, size--) {
350 int const kAccessSizeLog = 0;
351 Shadow cur(fast_state);
352 cur.SetWrite(is_write);
353 cur.SetAddr0AndSizeLog(addr & (kShadowCell - 1), kAccessSizeLog);
354 MemoryAccessImpl(thr, addr, kAccessSizeLog, is_write, fast_state,
355 shadow_mem, cur);
356 }
357}
358
359void MemoryRead1Byte(ThreadState *thr, uptr pc, uptr addr) {
360 MemoryAccess(thr, pc, addr, 0, 0);
361}
362
363void MemoryWrite1Byte(ThreadState *thr, uptr pc, uptr addr) {
364 MemoryAccess(thr, pc, addr, 0, 1);
365}
366
367void MemoryRead8Byte(ThreadState *thr, uptr pc, uptr addr) {
368 MemoryAccess(thr, pc, addr, 3, 0);
369}
370
371void MemoryWrite8Byte(ThreadState *thr, uptr pc, uptr addr) {
372 MemoryAccess(thr, pc, addr, 3, 1);
373}
374} // namespace __tsan