blob: f4b06878a58e4cebb9a55b1f7f2976f689031dc4 [file] [log] [blame]
Alexey Samsonov603c4be2012-06-04 13:55:19 +00001//===-- tsan_report.cc ----------------------------------------------------===//
Kostya Serebryany7ac41482012-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#include "tsan_report.h"
14#include "tsan_platform.h"
15#include "tsan_rtl.h"
Stephen Hines6d186232014-11-26 17:56:19 -080016#include "sanitizer_common/sanitizer_placement_new.h"
Kostya Serebryanya27512c2013-09-05 11:23:27 +000017#include "sanitizer_common/sanitizer_report_decorator.h"
Stephen Hines6d186232014-11-26 17:56:19 -080018#include "sanitizer_common/sanitizer_stacktrace_printer.h"
Kostya Serebryany7ac41482012-05-10 13:48:04 +000019
20namespace __tsan {
21
Stephen Hines86277eb2015-03-23 12:06:32 -070022ReportStack::ReportStack() : frames(nullptr), suppressable(false) {}
Stephen Hines6d186232014-11-26 17:56:19 -080023
Stephen Hines86277eb2015-03-23 12:06:32 -070024ReportStack *ReportStack::New() {
Stephen Hines6d186232014-11-26 17:56:19 -080025 void *mem = internal_alloc(MBlockReportStack, sizeof(ReportStack));
Stephen Hines86277eb2015-03-23 12:06:32 -070026 return new(mem) ReportStack();
Stephen Hines6d186232014-11-26 17:56:19 -080027}
28
29ReportLocation::ReportLocation(ReportLocationType type)
30 : type(type), global(), heap_chunk_start(0), heap_chunk_size(0), tid(0),
31 fd(0), suppressable(false), stack(nullptr) {}
32
33ReportLocation *ReportLocation::New(ReportLocationType type) {
34 void *mem = internal_alloc(MBlockReportStack, sizeof(ReportLocation));
35 return new(mem) ReportLocation(type);
36}
37
Stephen Hines6a211c52014-07-21 00:49:56 -070038class Decorator: public __sanitizer::SanitizerCommonDecorator {
Kostya Serebryanya27512c2013-09-05 11:23:27 +000039 public:
Stephen Hines6a211c52014-07-21 00:49:56 -070040 Decorator() : SanitizerCommonDecorator() { }
Kostya Serebryanya27512c2013-09-05 11:23:27 +000041 const char *Warning() { return Red(); }
42 const char *EndWarning() { return Default(); }
43 const char *Access() { return Blue(); }
44 const char *EndAccess() { return Default(); }
45 const char *ThreadDescription() { return Cyan(); }
46 const char *EndThreadDescription() { return Default(); }
47 const char *Location() { return Green(); }
48 const char *EndLocation() { return Default(); }
49 const char *Sleep() { return Yellow(); }
50 const char *EndSleep() { return Default(); }
51 const char *Mutex() { return Magenta(); }
52 const char *EndMutex() { return Default(); }
53};
54
Kostya Serebryany7ac41482012-05-10 13:48:04 +000055ReportDesc::ReportDesc()
56 : stacks(MBlockReportStack)
57 , mops(MBlockReportMop)
58 , locs(MBlockReportLoc)
59 , mutexes(MBlockReportMutex)
Dmitry Vyukov84853112012-08-31 17:27:49 +000060 , threads(MBlockReportThread)
Stephen Hines2d1fdb22014-05-28 23:58:16 -070061 , unique_tids(MBlockReportThread)
Dmitry Vyukov4536cb12013-03-21 16:55:17 +000062 , sleep()
63 , count() {
Kostya Serebryany7ac41482012-05-10 13:48:04 +000064}
65
Dmitry Vyukovad9da372012-12-06 12:16:15 +000066ReportMop::ReportMop()
67 : mset(MBlockReportMutex) {
68}
69
Kostya Serebryany7ac41482012-05-10 13:48:04 +000070ReportDesc::~ReportDesc() {
Dmitry Vyukovaecf2e52012-12-04 15:46:05 +000071 // FIXME(dvyukov): it must be leaking a lot of memory.
Kostya Serebryany7ac41482012-05-10 13:48:04 +000072}
73
Stephen Hines86277eb2015-03-23 12:06:32 -070074#ifndef SANITIZER_GO
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +000075
Dmitry Vyukovda350372012-12-17 16:28:15 +000076const int kThreadBufSize = 32;
77const char *thread_name(char *buf, int tid) {
78 if (tid == 0)
79 return "main thread";
80 internal_snprintf(buf, kThreadBufSize, "thread T%d", tid);
81 return buf;
82}
83
Kostya Serebryany2f588f92013-02-06 14:24:00 +000084static const char *ReportTypeString(ReportType typ) {
Kostya Serebryany7ac41482012-05-10 13:48:04 +000085 if (typ == ReportTypeRace)
Kostya Serebryany2f588f92013-02-06 14:24:00 +000086 return "data race";
Dmitry Vyukov0dc47b62013-03-21 15:37:39 +000087 if (typ == ReportTypeVptrRace)
88 return "data race on vptr (ctor/dtor vs virtual call)";
Kostya Serebryany2f588f92013-02-06 14:24:00 +000089 if (typ == ReportTypeUseAfterFree)
90 return "heap-use-after-free";
Stephen Hines6d186232014-11-26 17:56:19 -080091 if (typ == ReportTypeVptrUseAfterFree)
92 return "heap-use-after-free (virtual call vs free)";
Kostya Serebryany2f588f92013-02-06 14:24:00 +000093 if (typ == ReportTypeThreadLeak)
94 return "thread leak";
95 if (typ == ReportTypeMutexDestroyLocked)
96 return "destroy of a locked mutex";
Stephen Hines2d1fdb22014-05-28 23:58:16 -070097 if (typ == ReportTypeMutexDoubleLock)
98 return "double lock of a mutex";
99 if (typ == ReportTypeMutexBadUnlock)
100 return "unlock of an unlocked mutex (or by a wrong thread)";
101 if (typ == ReportTypeMutexBadReadLock)
102 return "read lock of a write locked mutex";
103 if (typ == ReportTypeMutexBadReadUnlock)
104 return "read unlock of a write locked mutex";
Kostya Serebryany2f588f92013-02-06 14:24:00 +0000105 if (typ == ReportTypeSignalUnsafe)
106 return "signal-unsafe call inside of a signal";
107 if (typ == ReportTypeErrnoInSignal)
108 return "signal handler spoils errno";
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700109 if (typ == ReportTypeDeadlock)
110 return "lock-order-inversion (potential deadlock)";
Kostya Serebryany2f588f92013-02-06 14:24:00 +0000111 return "";
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000112}
113
Dmitry Vyukov1da10562012-09-01 12:13:18 +0000114void PrintStack(const ReportStack *ent) {
Stephen Hines86277eb2015-03-23 12:06:32 -0700115 if (ent == 0 || ent->frames == 0) {
Dmitry Vyukov95f50b12012-11-22 13:38:28 +0000116 Printf(" [failed to restore the stack]\n\n");
Dmitry Vyukovdc2a27e2012-11-21 11:44:20 +0000117 return;
118 }
Stephen Hines86277eb2015-03-23 12:06:32 -0700119 SymbolizedStack *frame = ent->frames;
120 for (int i = 0; frame && frame->info.address; frame = frame->next, i++) {
Stephen Hines6d186232014-11-26 17:56:19 -0800121 InternalScopedString res(2 * GetPageSizeCached());
Stephen Hines86277eb2015-03-23 12:06:32 -0700122 RenderFrame(&res, common_flags()->stack_trace_format, i, frame->info,
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700123 common_flags()->symbolize_vs_style,
Stephen Hines6d186232014-11-26 17:56:19 -0800124 common_flags()->strip_path_prefix, "__interceptor_");
125 Printf("%s\n", res.data());
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000126 }
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000127 Printf("\n");
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000128}
129
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000130static void PrintMutexSet(Vector<ReportMopMutex> const& mset) {
131 for (uptr i = 0; i < mset.Size(); i++) {
132 if (i == 0)
133 Printf(" (mutexes:");
134 const ReportMopMutex m = mset[i];
135 Printf(" %s M%llu", m.write ? "write" : "read", m.id);
136 Printf(i == mset.Size() - 1 ? ")" : ",");
137 }
138}
139
Dmitry Vyukov0a07b352013-02-01 11:10:53 +0000140static const char *MopDesc(bool first, bool write, bool atomic) {
141 return atomic ? (first ? (write ? "Atomic write" : "Atomic read")
142 : (write ? "Previous atomic write" : "Previous atomic read"))
143 : (first ? (write ? "Write" : "Read")
144 : (write ? "Previous write" : "Previous read"));
145}
146
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000147static void PrintMop(const ReportMop *mop, bool first) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000148 Decorator d;
Dmitry Vyukovda350372012-12-17 16:28:15 +0000149 char thrbuf[kThreadBufSize];
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000150 Printf("%s", d.Access());
Dmitry Vyukovda350372012-12-17 16:28:15 +0000151 Printf(" %s of size %d at %p by %s",
Dmitry Vyukov0a07b352013-02-01 11:10:53 +0000152 MopDesc(first, mop->write, mop->atomic),
Dmitry Vyukovda350372012-12-17 16:28:15 +0000153 mop->size, (void*)mop->addr,
154 thread_name(thrbuf, mop->tid));
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000155 PrintMutexSet(mop->mset);
156 Printf(":\n");
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000157 Printf("%s", d.EndAccess());
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000158 PrintStack(mop->stack);
159}
160
161static void PrintLocation(const ReportLocation *loc) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000162 Decorator d;
Dmitry Vyukovc2234cd2012-12-18 06:57:34 +0000163 char thrbuf[kThreadBufSize];
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000164 bool print_stack = false;
165 Printf("%s", d.Location());
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000166 if (loc->type == ReportLocationGlobal) {
Stephen Hines6d186232014-11-26 17:56:19 -0800167 const DataInfo &global = loc->global;
Alexey Samsonovc842dab2013-10-16 09:56:17 +0000168 Printf(" Location is global '%s' of size %zu at %p (%s+%p)\n\n",
Stephen Hines6d186232014-11-26 17:56:19 -0800169 global.name, global.size, global.start,
170 StripModuleName(global.module), global.module_offset);
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000171 } else if (loc->type == ReportLocationHeap) {
Dmitry Vyukovda350372012-12-17 16:28:15 +0000172 char thrbuf[kThreadBufSize];
173 Printf(" Location is heap block of size %zu at %p allocated by %s:\n",
Stephen Hines6d186232014-11-26 17:56:19 -0800174 loc->heap_chunk_size, loc->heap_chunk_start,
175 thread_name(thrbuf, loc->tid));
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000176 print_stack = true;
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000177 } else if (loc->type == ReportLocationStack) {
Dmitry Vyukovfb917e92013-01-14 10:00:03 +0000178 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
179 } else if (loc->type == ReportLocationTLS) {
180 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
Dmitry Vyukovc2234cd2012-12-18 06:57:34 +0000181 } else if (loc->type == ReportLocationFD) {
182 Printf(" Location is file descriptor %d created by %s at:\n",
183 loc->fd, thread_name(thrbuf, loc->tid));
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000184 print_stack = true;
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000185 }
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000186 Printf("%s", d.EndLocation());
187 if (print_stack)
188 PrintStack(loc->stack);
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000189}
190
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700191static void PrintMutexShort(const ReportMutex *rm, const char *after) {
192 Decorator d;
193 Printf("%sM%zd%s%s", d.Mutex(), rm->id, d.EndMutex(), after);
194}
195
196static void PrintMutexShortWithAddress(const ReportMutex *rm,
197 const char *after) {
198 Decorator d;
199 Printf("%sM%zd (%p)%s%s", d.Mutex(), rm->id, rm->addr, d.EndMutex(), after);
200}
201
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000202static void PrintMutex(const ReportMutex *rm) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000203 Decorator d;
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000204 if (rm->destroyed) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000205 Printf("%s", d.Mutex());
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000206 Printf(" Mutex M%llu is already destroyed.\n\n", rm->id);
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000207 Printf("%s", d.EndMutex());
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000208 } else {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000209 Printf("%s", d.Mutex());
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700210 Printf(" Mutex M%llu (%p) created at:\n", rm->id, rm->addr);
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000211 Printf("%s", d.EndMutex());
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000212 PrintStack(rm->stack);
213 }
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000214}
215
216static void PrintThread(const ReportThread *rt) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000217 Decorator d;
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000218 if (rt->id == 0) // Little sense in describing the main thread.
219 return;
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000220 Printf("%s", d.ThreadDescription());
Dmitry Vyukovad9da372012-12-06 12:16:15 +0000221 Printf(" Thread T%d", rt->id);
Alexey Samsonov2bbd8be2013-03-15 13:48:44 +0000222 if (rt->name && rt->name[0] != '\0')
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000223 Printf(" '%s'", rt->name);
Dmitry Vyukovda350372012-12-17 16:28:15 +0000224 char thrbuf[kThreadBufSize];
225 Printf(" (tid=%zu, %s) created by %s",
226 rt->pid, rt->running ? "running" : "finished",
227 thread_name(thrbuf, rt->parent_tid));
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000228 if (rt->stack)
Dmitry Vyukovda350372012-12-17 16:28:15 +0000229 Printf(" at:");
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000230 Printf("\n");
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000231 Printf("%s", d.EndThreadDescription());
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000232 PrintStack(rt->stack);
233}
234
Dmitry Vyukov84853112012-08-31 17:27:49 +0000235static void PrintSleep(const ReportStack *s) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000236 Decorator d;
237 Printf("%s", d.Sleep());
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000238 Printf(" As if synchronized via sleep:\n");
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000239 Printf("%s", d.EndSleep());
Dmitry Vyukov84853112012-08-31 17:27:49 +0000240 PrintStack(s);
241}
242
Kostya Serebryany2f588f92013-02-06 14:24:00 +0000243static ReportStack *ChooseSummaryStack(const ReportDesc *rep) {
244 if (rep->mops.Size())
245 return rep->mops[0]->stack;
246 if (rep->stacks.Size())
247 return rep->stacks[0];
248 if (rep->mutexes.Size())
249 return rep->mutexes[0]->stack;
250 if (rep->threads.Size())
251 return rep->threads[0]->stack;
252 return 0;
253}
254
Stephen Hines86277eb2015-03-23 12:06:32 -0700255static bool FrameIsInternal(const SymbolizedStack *frame) {
256 if (frame == 0)
257 return false;
258 const char *file = frame->info.file;
259 return file != 0 &&
260 (internal_strstr(file, "tsan_interceptors.cc") ||
261 internal_strstr(file, "sanitizer_common_interceptors.inc") ||
262 internal_strstr(file, "tsan_interface_"));
263}
264
265static SymbolizedStack *SkipTsanInternalFrames(SymbolizedStack *frames) {
266 while (FrameIsInternal(frames) && frames->next)
267 frames = frames->next;
268 return frames;
Kostya Serebryany2f588f92013-02-06 14:24:00 +0000269}
270
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000271void PrintReport(const ReportDesc *rep) {
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000272 Decorator d;
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000273 Printf("==================\n");
Kostya Serebryany2f588f92013-02-06 14:24:00 +0000274 const char *rep_typ_str = ReportTypeString(rep->typ);
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000275 Printf("%s", d.Warning());
Peter Collingbourne0b694fc2013-05-17 16:56:53 +0000276 Printf("WARNING: ThreadSanitizer: %s (pid=%d)\n", rep_typ_str,
277 (int)internal_getpid());
Kostya Serebryanya27512c2013-09-05 11:23:27 +0000278 Printf("%s", d.EndWarning());
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000279
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700280 if (rep->typ == ReportTypeDeadlock) {
281 char thrbuf[kThreadBufSize];
282 Printf(" Cycle in lock order graph: ");
283 for (uptr i = 0; i < rep->mutexes.Size(); i++)
284 PrintMutexShortWithAddress(rep->mutexes[i], " => ");
285 PrintMutexShort(rep->mutexes[0], "\n\n");
286 CHECK_GT(rep->mutexes.Size(), 0U);
287 CHECK_EQ(rep->mutexes.Size() * (flags()->second_deadlock_stack ? 2 : 1),
288 rep->stacks.Size());
289 for (uptr i = 0; i < rep->mutexes.Size(); i++) {
290 Printf(" Mutex ");
291 PrintMutexShort(rep->mutexes[(i + 1) % rep->mutexes.Size()],
292 " acquired here while holding mutex ");
293 PrintMutexShort(rep->mutexes[i], " in ");
294 Printf("%s", d.ThreadDescription());
295 Printf("%s:\n", thread_name(thrbuf, rep->unique_tids[i]));
296 Printf("%s", d.EndThreadDescription());
297 if (flags()->second_deadlock_stack) {
298 PrintStack(rep->stacks[2*i]);
299 Printf(" Mutex ");
300 PrintMutexShort(rep->mutexes[i],
301 " previously acquired by the same thread here:\n");
302 PrintStack(rep->stacks[2*i+1]);
303 } else {
304 PrintStack(rep->stacks[i]);
305 if (i == 0)
306 Printf(" Hint: use TSAN_OPTIONS=second_deadlock_stack=1 "
307 "to get more informative warning message\n\n");
308 }
309 }
310 } else {
311 for (uptr i = 0; i < rep->stacks.Size(); i++) {
312 if (i)
313 Printf(" and:\n");
314 PrintStack(rep->stacks[i]);
315 }
Dmitry Vyukov332c62b2012-08-16 15:08:49 +0000316 }
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000317
318 for (uptr i = 0; i < rep->mops.Size(); i++)
319 PrintMop(rep->mops[i], i == 0);
320
Dmitry Vyukov84853112012-08-31 17:27:49 +0000321 if (rep->sleep)
322 PrintSleep(rep->sleep);
323
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000324 for (uptr i = 0; i < rep->locs.Size(); i++)
325 PrintLocation(rep->locs[i]);
326
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700327 if (rep->typ != ReportTypeDeadlock) {
328 for (uptr i = 0; i < rep->mutexes.Size(); i++)
329 PrintMutex(rep->mutexes[i]);
330 }
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000331
332 for (uptr i = 0; i < rep->threads.Size(); i++)
333 PrintThread(rep->threads[i]);
334
Dmitry Vyukov4536cb12013-03-21 16:55:17 +0000335 if (rep->typ == ReportTypeThreadLeak && rep->count > 1)
336 Printf(" And %d more similar thread leaks.\n\n", rep->count - 1);
337
Stephen Hines86277eb2015-03-23 12:06:32 -0700338 if (ReportStack *stack = ChooseSummaryStack(rep)) {
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -0700339 if (SymbolizedStack *frame = SkipTsanInternalFrames(stack->frames))
340 ReportErrorSummary(rep_typ_str, frame->info);
Stephen Hines6d186232014-11-26 17:56:19 -0800341 }
Kostya Serebryany2f588f92013-02-06 14:24:00 +0000342
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000343 Printf("==================\n");
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000344}
345
Stephen Hines86277eb2015-03-23 12:06:32 -0700346#else // #ifndef SANITIZER_GO
Dmitry Vyukov9d954752013-08-16 11:15:14 +0000347
348const int kMainThreadId = 1;
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +0000349
Dmitry Vyukov0ab628c2012-09-06 15:18:14 +0000350void PrintStack(const ReportStack *ent) {
Stephen Hines86277eb2015-03-23 12:06:32 -0700351 if (ent == 0 || ent->frames == 0) {
Dmitry Vyukov9d954752013-08-16 11:15:14 +0000352 Printf(" [failed to restore the stack]\n");
Dmitry Vyukov6c0fbca2012-11-28 13:30:06 +0000353 return;
354 }
Stephen Hines86277eb2015-03-23 12:06:32 -0700355 SymbolizedStack *frame = ent->frames;
356 for (int i = 0; frame; frame = frame->next, i++) {
357 const AddressInfo &info = frame->info;
358 Printf(" %s()\n %s:%d +0x%zx\n", info.function,
359 StripPathPrefix(info.file, common_flags()->strip_path_prefix),
360 info.line, (void *)info.module_offset);
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +0000361 }
362}
363
364static void PrintMop(const ReportMop *mop, bool first) {
Dmitry Vyukov9d954752013-08-16 11:15:14 +0000365 Printf("\n");
366 Printf("%s by ",
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +0000367 (first ? (mop->write ? "Write" : "Read")
Dmitry Vyukov9d954752013-08-16 11:15:14 +0000368 : (mop->write ? "Previous write" : "Previous read")));
369 if (mop->tid == kMainThreadId)
370 Printf("main goroutine:\n");
371 else
372 Printf("goroutine %d:\n", mop->tid);
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +0000373 PrintStack(mop->stack);
374}
375
Dmitry Vyukov43046e02012-07-24 12:03:47 +0000376static void PrintThread(const ReportThread *rt) {
Dmitry Vyukov9d954752013-08-16 11:15:14 +0000377 if (rt->id == kMainThreadId)
Dmitry Vyukov43046e02012-07-24 12:03:47 +0000378 return;
Dmitry Vyukov9d954752013-08-16 11:15:14 +0000379 Printf("\n");
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000380 Printf("Goroutine %d (%s) created at:\n",
Dmitry Vyukov43046e02012-07-24 12:03:47 +0000381 rt->id, rt->running ? "running" : "finished");
382 PrintStack(rt->stack);
383}
384
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +0000385void PrintReport(const ReportDesc *rep) {
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000386 Printf("==================\n");
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700387 if (rep->typ == ReportTypeRace) {
388 Printf("WARNING: DATA RACE");
389 for (uptr i = 0; i < rep->mops.Size(); i++)
390 PrintMop(rep->mops[i], i == 0);
391 for (uptr i = 0; i < rep->threads.Size(); i++)
392 PrintThread(rep->threads[i]);
393 } else if (rep->typ == ReportTypeDeadlock) {
394 Printf("WARNING: DEADLOCK\n");
395 for (uptr i = 0; i < rep->mutexes.Size(); i++) {
396 Printf("Goroutine %d lock mutex %d while holding mutex %d:\n",
397 999, rep->mutexes[i]->id,
398 rep->mutexes[(i+1) % rep->mutexes.Size()]->id);
399 PrintStack(rep->stacks[2*i]);
400 Printf("\n");
401 Printf("Mutex %d was previously locked here:\n",
402 rep->mutexes[(i+1) % rep->mutexes.Size()]->id);
403 PrintStack(rep->stacks[2*i + 1]);
404 Printf("\n");
405 }
406 }
Alexey Samsonovb1fe3022012-11-02 12:17:51 +0000407 Printf("==================\n");
Dmitry Vyukovc510a2f2012-07-06 14:54:25 +0000408}
409
410#endif
411
Kostya Serebryany7ac41482012-05-10 13:48:04 +0000412} // namespace __tsan