1 //===-- tsan_report.cpp ---------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file is a part of ThreadSanitizer (TSan), a race detector.
11 //===----------------------------------------------------------------------===//
12 #include "tsan_report.h"
13 #include "tsan_platform.h"
15 #include "sanitizer_common/sanitizer_file.h"
16 #include "sanitizer_common/sanitizer_placement_new.h"
17 #include "sanitizer_common/sanitizer_report_decorator.h"
18 #include "sanitizer_common/sanitizer_stacktrace_printer.h"
22 class Decorator
: public __sanitizer::SanitizerCommonDecorator
{
24 Decorator() : SanitizerCommonDecorator() { }
25 const char *Access() { return Blue(); }
26 const char *ThreadDescription() { return Cyan(); }
27 const char *Location() { return Green(); }
28 const char *Sleep() { return Yellow(); }
29 const char *Mutex() { return Magenta(); }
32 ReportDesc::ReportDesc()
33 : tag(kExternalTagNone
)
44 ReportMop::ReportMop()
48 ReportDesc::~ReportDesc() {
49 // FIXME(dvyukov): it must be leaking a lot of memory.
54 const int kThreadBufSize
= 32;
55 const char *thread_name(char *buf
, Tid tid
) {
58 internal_snprintf(buf
, kThreadBufSize
, "thread T%d", tid
);
62 static const char *ReportTypeString(ReportType typ
, uptr tag
) {
66 case ReportTypeVptrRace
:
67 return "data race on vptr (ctor/dtor vs virtual call)";
68 case ReportTypeUseAfterFree
:
69 return "heap-use-after-free";
70 case ReportTypeVptrUseAfterFree
:
71 return "heap-use-after-free (virtual call vs free)";
72 case ReportTypeExternalRace
: {
73 const char *str
= GetReportHeaderFromTag(tag
);
74 return str
? str
: "race on external object";
76 case ReportTypeThreadLeak
:
78 case ReportTypeMutexDestroyLocked
:
79 return "destroy of a locked mutex";
80 case ReportTypeMutexDoubleLock
:
81 return "double lock of a mutex";
82 case ReportTypeMutexInvalidAccess
:
83 return "use of an invalid mutex (e.g. uninitialized or destroyed)";
84 case ReportTypeMutexBadUnlock
:
85 return "unlock of an unlocked mutex (or by a wrong thread)";
86 case ReportTypeMutexBadReadLock
:
87 return "read lock of a write locked mutex";
88 case ReportTypeMutexBadReadUnlock
:
89 return "read unlock of a write locked mutex";
90 case ReportTypeSignalUnsafe
:
91 return "signal-unsafe call inside of a signal";
92 case ReportTypeErrnoInSignal
:
93 return "signal handler spoils errno";
94 case ReportTypeDeadlock
:
95 return "lock-order-inversion (potential deadlock)";
96 // No default case so compiler warns us if we miss one
98 UNREACHABLE("missing case");
102 static const char *const kInterposedFunctionPrefix
= "wrap_";
104 static const char *const kInterposedFunctionPrefix
= "__interceptor_";
107 void PrintStack(const ReportStack
*ent
) {
108 if (ent
== 0 || ent
->frames
== 0) {
109 Printf(" [failed to restore the stack]\n\n");
112 SymbolizedStack
*frame
= ent
->frames
;
113 for (int i
= 0; frame
&& frame
->info
.address
; frame
= frame
->next
, i
++) {
114 InternalScopedString res
;
115 RenderFrame(&res
, common_flags()->stack_trace_format
, i
,
116 frame
->info
.address
, &frame
->info
,
117 common_flags()->symbolize_vs_style
,
118 common_flags()->strip_path_prefix
, kInterposedFunctionPrefix
);
119 Printf("%s\n", res
.data());
124 static void PrintMutexSet(Vector
<ReportMopMutex
> const& mset
) {
125 for (uptr i
= 0; i
< mset
.Size(); i
++) {
127 Printf(" (mutexes:");
128 const ReportMopMutex m
= mset
[i
];
129 Printf(" %s M%llu", m
.write
? "write" : "read", m
.id
);
130 Printf(i
== mset
.Size() - 1 ? ")" : ",");
134 static const char *MopDesc(bool first
, bool write
, bool atomic
) {
135 return atomic
? (first
? (write
? "Atomic write" : "Atomic read")
136 : (write
? "Previous atomic write" : "Previous atomic read"))
137 : (first
? (write
? "Write" : "Read")
138 : (write
? "Previous write" : "Previous read"));
141 static const char *ExternalMopDesc(bool first
, bool write
) {
142 return first
? (write
? "Modifying" : "Read-only")
143 : (write
? "Previous modifying" : "Previous read-only");
146 static void PrintMop(const ReportMop
*mop
, bool first
) {
148 char thrbuf
[kThreadBufSize
];
149 Printf("%s", d
.Access());
150 if (mop
->external_tag
== kExternalTagNone
) {
151 Printf(" %s of size %d at %p by %s",
152 MopDesc(first
, mop
->write
, mop
->atomic
), mop
->size
,
153 (void *)mop
->addr
, thread_name(thrbuf
, mop
->tid
));
155 const char *object_type
= GetObjectTypeFromTag(mop
->external_tag
);
156 if (object_type
== nullptr)
157 object_type
= "external object";
158 Printf(" %s access of %s at %p by %s",
159 ExternalMopDesc(first
, mop
->write
), object_type
,
160 (void *)mop
->addr
, thread_name(thrbuf
, mop
->tid
));
162 PrintMutexSet(mop
->mset
);
164 Printf("%s", d
.Default());
165 PrintStack(mop
->stack
);
168 static void PrintLocation(const ReportLocation
*loc
) {
170 char thrbuf
[kThreadBufSize
];
171 bool print_stack
= false;
172 Printf("%s", d
.Location());
173 if (loc
->type
== ReportLocationGlobal
) {
174 const DataInfo
&global
= loc
->global
;
175 if (global
.size
!= 0)
176 Printf(" Location is global '%s' of size %zu at %p (%s+0x%zx)\n\n",
177 global
.name
, global
.size
, reinterpret_cast<void *>(global
.start
),
178 StripModuleName(global
.module
), global
.module_offset
);
180 Printf(" Location is global '%s' at %p (%s+0x%zx)\n\n", global
.name
,
181 reinterpret_cast<void *>(global
.start
),
182 StripModuleName(global
.module
), global
.module_offset
);
183 } else if (loc
->type
== ReportLocationHeap
) {
184 char thrbuf
[kThreadBufSize
];
185 const char *object_type
= GetObjectTypeFromTag(loc
->external_tag
);
187 Printf(" Location is heap block of size %zu at %p allocated by %s:\n",
188 loc
->heap_chunk_size
,
189 reinterpret_cast<void *>(loc
->heap_chunk_start
),
190 thread_name(thrbuf
, loc
->tid
));
192 Printf(" Location is %s of size %zu at %p allocated by %s:\n",
193 object_type
, loc
->heap_chunk_size
,
194 reinterpret_cast<void *>(loc
->heap_chunk_start
),
195 thread_name(thrbuf
, loc
->tid
));
198 } else if (loc
->type
== ReportLocationStack
) {
199 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf
, loc
->tid
));
200 } else if (loc
->type
== ReportLocationTLS
) {
201 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf
, loc
->tid
));
202 } else if (loc
->type
== ReportLocationFD
) {
203 Printf(" Location is file descriptor %d created by %s at:\n",
204 loc
->fd
, thread_name(thrbuf
, loc
->tid
));
207 Printf("%s", d
.Default());
209 PrintStack(loc
->stack
);
212 static void PrintMutexShort(const ReportMutex
*rm
, const char *after
) {
214 Printf("%sM%lld%s%s", d
.Mutex(), rm
->id
, d
.Default(), after
);
217 static void PrintMutexShortWithAddress(const ReportMutex
*rm
,
220 Printf("%sM%lld (%p)%s%s", d
.Mutex(), rm
->id
,
221 reinterpret_cast<void *>(rm
->addr
), d
.Default(), after
);
224 static void PrintMutex(const ReportMutex
*rm
) {
227 Printf("%s", d
.Mutex());
228 Printf(" Mutex M%llu is already destroyed.\n\n", rm
->id
);
229 Printf("%s", d
.Default());
231 Printf("%s", d
.Mutex());
232 Printf(" Mutex M%llu (%p) created at:\n", rm
->id
,
233 reinterpret_cast<void *>(rm
->addr
));
234 Printf("%s", d
.Default());
235 PrintStack(rm
->stack
);
239 static void PrintThread(const ReportThread
*rt
) {
241 if (rt
->id
== kMainTid
) // Little sense in describing the main thread.
243 Printf("%s", d
.ThreadDescription());
244 Printf(" Thread T%d", rt
->id
);
245 if (rt
->name
&& rt
->name
[0] != '\0')
246 Printf(" '%s'", rt
->name
);
247 char thrbuf
[kThreadBufSize
];
248 const char *thread_status
= rt
->running
? "running" : "finished";
249 if (rt
->thread_type
== ThreadType::Worker
) {
250 Printf(" (tid=%llu, %s) is a GCD worker thread\n", rt
->os_id
,
253 Printf("%s", d
.Default());
256 Printf(" (tid=%llu, %s) created by %s", rt
->os_id
, thread_status
,
257 thread_name(thrbuf
, rt
->parent_tid
));
261 Printf("%s", d
.Default());
262 PrintStack(rt
->stack
);
265 static void PrintSleep(const ReportStack
*s
) {
267 Printf("%s", d
.Sleep());
268 Printf(" As if synchronized via sleep:\n");
269 Printf("%s", d
.Default());
273 static ReportStack
*ChooseSummaryStack(const ReportDesc
*rep
) {
274 if (rep
->mops
.Size())
275 return rep
->mops
[0]->stack
;
276 if (rep
->stacks
.Size())
277 return rep
->stacks
[0];
278 if (rep
->mutexes
.Size())
279 return rep
->mutexes
[0]->stack
;
280 if (rep
->threads
.Size())
281 return rep
->threads
[0]->stack
;
285 static bool FrameIsInternal(const SymbolizedStack
*frame
) {
288 const char *file
= frame
->info
.file
;
289 const char *module
= frame
->info
.module
;
291 (internal_strstr(file
, "tsan_interceptors_posix.cpp") ||
292 internal_strstr(file
, "sanitizer_common_interceptors.inc") ||
293 internal_strstr(file
, "tsan_interface_")))
295 if (module
!= 0 && (internal_strstr(module
, "libclang_rt.tsan_")))
300 static SymbolizedStack
*SkipTsanInternalFrames(SymbolizedStack
*frames
) {
301 while (FrameIsInternal(frames
) && frames
->next
)
302 frames
= frames
->next
;
306 void PrintReport(const ReportDesc
*rep
) {
308 Printf("==================\n");
309 const char *rep_typ_str
= ReportTypeString(rep
->typ
, rep
->tag
);
310 Printf("%s", d
.Warning());
311 Printf("WARNING: ThreadSanitizer: %s (pid=%d)\n", rep_typ_str
,
312 (int)internal_getpid());
313 Printf("%s", d
.Default());
315 if (rep
->typ
== ReportTypeDeadlock
) {
316 char thrbuf
[kThreadBufSize
];
317 Printf(" Cycle in lock order graph: ");
318 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++)
319 PrintMutexShortWithAddress(rep
->mutexes
[i
], " => ");
320 PrintMutexShort(rep
->mutexes
[0], "\n\n");
321 CHECK_GT(rep
->mutexes
.Size(), 0U);
322 CHECK_EQ(rep
->mutexes
.Size() * (flags()->second_deadlock_stack
? 2 : 1),
324 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++) {
326 PrintMutexShort(rep
->mutexes
[(i
+ 1) % rep
->mutexes
.Size()],
327 " acquired here while holding mutex ");
328 PrintMutexShort(rep
->mutexes
[i
], " in ");
329 Printf("%s", d
.ThreadDescription());
330 Printf("%s:\n", thread_name(thrbuf
, rep
->unique_tids
[i
]));
331 Printf("%s", d
.Default());
332 if (flags()->second_deadlock_stack
) {
333 PrintStack(rep
->stacks
[2*i
]);
335 PrintMutexShort(rep
->mutexes
[i
],
336 " previously acquired by the same thread here:\n");
337 PrintStack(rep
->stacks
[2*i
+1]);
339 PrintStack(rep
->stacks
[i
]);
341 Printf(" Hint: use TSAN_OPTIONS=second_deadlock_stack=1 "
342 "to get more informative warning message\n\n");
346 for (uptr i
= 0; i
< rep
->stacks
.Size(); i
++) {
349 PrintStack(rep
->stacks
[i
]);
353 for (uptr i
= 0; i
< rep
->mops
.Size(); i
++)
354 PrintMop(rep
->mops
[i
], i
== 0);
357 PrintSleep(rep
->sleep
);
359 for (uptr i
= 0; i
< rep
->locs
.Size(); i
++)
360 PrintLocation(rep
->locs
[i
]);
362 if (rep
->typ
!= ReportTypeDeadlock
) {
363 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++)
364 PrintMutex(rep
->mutexes
[i
]);
367 for (uptr i
= 0; i
< rep
->threads
.Size(); i
++)
368 PrintThread(rep
->threads
[i
]);
370 if (rep
->typ
== ReportTypeThreadLeak
&& rep
->count
> 1)
371 Printf(" And %d more similar thread leaks.\n\n", rep
->count
- 1);
373 if (ReportStack
*stack
= ChooseSummaryStack(rep
)) {
374 if (SymbolizedStack
*frame
= SkipTsanInternalFrames(stack
->frames
))
375 ReportErrorSummary(rep_typ_str
, frame
->info
);
378 if (common_flags()->print_module_map
== 2)
381 Printf("==================\n");
384 #else // #if !SANITIZER_GO
386 const Tid kMainGoroutineId
= 1;
388 void PrintStack(const ReportStack
*ent
) {
389 if (ent
== 0 || ent
->frames
== 0) {
390 Printf(" [failed to restore the stack]\n");
393 SymbolizedStack
*frame
= ent
->frames
;
394 for (int i
= 0; frame
; frame
= frame
->next
, i
++) {
395 const AddressInfo
&info
= frame
->info
;
396 Printf(" %s()\n %s:%d +0x%zx\n", info
.function
,
397 StripPathPrefix(info
.file
, common_flags()->strip_path_prefix
),
398 info
.line
, info
.module_offset
);
402 static void PrintMop(const ReportMop
*mop
, bool first
) {
404 Printf("%s at %p by ",
405 (first
? (mop
->write
? "Write" : "Read")
406 : (mop
->write
? "Previous write" : "Previous read")),
407 reinterpret_cast<void *>(mop
->addr
));
408 if (mop
->tid
== kMainGoroutineId
)
409 Printf("main goroutine:\n");
411 Printf("goroutine %d:\n", mop
->tid
);
412 PrintStack(mop
->stack
);
415 static void PrintLocation(const ReportLocation
*loc
) {
417 case ReportLocationHeap
: {
419 Printf("Heap block of size %zu at %p allocated by ", loc
->heap_chunk_size
,
420 reinterpret_cast<void *>(loc
->heap_chunk_start
));
421 if (loc
->tid
== kMainGoroutineId
)
422 Printf("main goroutine:\n");
424 Printf("goroutine %d:\n", loc
->tid
);
425 PrintStack(loc
->stack
);
428 case ReportLocationGlobal
: {
430 Printf("Global var %s of size %zu at %p declared at %s:%zu\n",
431 loc
->global
.name
, loc
->global
.size
,
432 reinterpret_cast<void *>(loc
->global
.start
), loc
->global
.file
,
441 static void PrintThread(const ReportThread
*rt
) {
442 if (rt
->id
== kMainGoroutineId
)
445 Printf("Goroutine %d (%s) created at:\n",
446 rt
->id
, rt
->running
? "running" : "finished");
447 PrintStack(rt
->stack
);
450 void PrintReport(const ReportDesc
*rep
) {
451 Printf("==================\n");
452 if (rep
->typ
== ReportTypeRace
) {
453 Printf("WARNING: DATA RACE");
454 for (uptr i
= 0; i
< rep
->mops
.Size(); i
++)
455 PrintMop(rep
->mops
[i
], i
== 0);
456 for (uptr i
= 0; i
< rep
->locs
.Size(); i
++)
457 PrintLocation(rep
->locs
[i
]);
458 for (uptr i
= 0; i
< rep
->threads
.Size(); i
++)
459 PrintThread(rep
->threads
[i
]);
460 } else if (rep
->typ
== ReportTypeDeadlock
) {
461 Printf("WARNING: DEADLOCK\n");
462 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++) {
463 Printf("Goroutine %d lock mutex %llu while holding mutex %llu:\n", 999,
465 rep
->mutexes
[(i
+ 1) % rep
->mutexes
.Size()]->id
);
466 PrintStack(rep
->stacks
[2*i
]);
468 Printf("Mutex %llu was previously locked here:\n",
469 rep
->mutexes
[(i
+ 1) % rep
->mutexes
.Size()]->id
);
470 PrintStack(rep
->stacks
[2*i
+ 1]);
474 Printf("==================\n");
479 } // namespace __tsan