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%u", 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%d%s%s", d
.Mutex(), rm
->id
, d
.Default(), after
);
217 static void PrintMutexShortWithAddress(const ReportMutex
*rm
,
220 Printf("%sM%d (%p)%s%s", d
.Mutex(), rm
->id
,
221 reinterpret_cast<void *>(rm
->addr
), d
.Default(), after
);
224 static void PrintMutex(const ReportMutex
*rm
) {
226 Printf("%s", d
.Mutex());
227 Printf(" Mutex M%u (%p) created at:\n", rm
->id
,
228 reinterpret_cast<void *>(rm
->addr
));
229 Printf("%s", d
.Default());
230 PrintStack(rm
->stack
);
233 static void PrintThread(const ReportThread
*rt
) {
235 if (rt
->id
== kMainTid
) // Little sense in describing the main thread.
237 Printf("%s", d
.ThreadDescription());
238 Printf(" Thread T%d", rt
->id
);
239 if (rt
->name
&& rt
->name
[0] != '\0')
240 Printf(" '%s'", rt
->name
);
241 char thrbuf
[kThreadBufSize
];
242 const char *thread_status
= rt
->running
? "running" : "finished";
243 if (rt
->thread_type
== ThreadType::Worker
) {
244 Printf(" (tid=%llu, %s) is a GCD worker thread\n", rt
->os_id
,
247 Printf("%s", d
.Default());
250 Printf(" (tid=%llu, %s) created by %s", rt
->os_id
, thread_status
,
251 thread_name(thrbuf
, rt
->parent_tid
));
255 Printf("%s", d
.Default());
256 PrintStack(rt
->stack
);
259 static void PrintSleep(const ReportStack
*s
) {
261 Printf("%s", d
.Sleep());
262 Printf(" As if synchronized via sleep:\n");
263 Printf("%s", d
.Default());
267 static ReportStack
*ChooseSummaryStack(const ReportDesc
*rep
) {
268 if (rep
->mops
.Size())
269 return rep
->mops
[0]->stack
;
270 if (rep
->stacks
.Size())
271 return rep
->stacks
[0];
272 if (rep
->mutexes
.Size())
273 return rep
->mutexes
[0]->stack
;
274 if (rep
->threads
.Size())
275 return rep
->threads
[0]->stack
;
279 static bool FrameIsInternal(const SymbolizedStack
*frame
) {
282 const char *file
= frame
->info
.file
;
283 const char *module
= frame
->info
.module
;
285 (internal_strstr(file
, "tsan_interceptors_posix.cpp") ||
286 internal_strstr(file
, "sanitizer_common_interceptors.inc") ||
287 internal_strstr(file
, "tsan_interface_")))
289 if (module
!= 0 && (internal_strstr(module
, "libclang_rt.tsan_")))
294 static SymbolizedStack
*SkipTsanInternalFrames(SymbolizedStack
*frames
) {
295 while (FrameIsInternal(frames
) && frames
->next
)
296 frames
= frames
->next
;
300 void PrintReport(const ReportDesc
*rep
) {
302 Printf("==================\n");
303 const char *rep_typ_str
= ReportTypeString(rep
->typ
, rep
->tag
);
304 Printf("%s", d
.Warning());
305 Printf("WARNING: ThreadSanitizer: %s (pid=%d)\n", rep_typ_str
,
306 (int)internal_getpid());
307 Printf("%s", d
.Default());
309 if (rep
->typ
== ReportTypeErrnoInSignal
)
310 Printf(" Signal %u handler invoked at:\n", rep
->signum
);
312 if (rep
->typ
== ReportTypeDeadlock
) {
313 char thrbuf
[kThreadBufSize
];
314 Printf(" Cycle in lock order graph: ");
315 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++)
316 PrintMutexShortWithAddress(rep
->mutexes
[i
], " => ");
317 PrintMutexShort(rep
->mutexes
[0], "\n\n");
318 CHECK_GT(rep
->mutexes
.Size(), 0U);
319 CHECK_EQ(rep
->mutexes
.Size() * (flags()->second_deadlock_stack
? 2 : 1),
321 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++) {
323 PrintMutexShort(rep
->mutexes
[(i
+ 1) % rep
->mutexes
.Size()],
324 " acquired here while holding mutex ");
325 PrintMutexShort(rep
->mutexes
[i
], " in ");
326 Printf("%s", d
.ThreadDescription());
327 Printf("%s:\n", thread_name(thrbuf
, rep
->unique_tids
[i
]));
328 Printf("%s", d
.Default());
329 if (flags()->second_deadlock_stack
) {
330 PrintStack(rep
->stacks
[2*i
]);
332 PrintMutexShort(rep
->mutexes
[i
],
333 " previously acquired by the same thread here:\n");
334 PrintStack(rep
->stacks
[2*i
+1]);
336 PrintStack(rep
->stacks
[i
]);
338 Printf(" Hint: use TSAN_OPTIONS=second_deadlock_stack=1 "
339 "to get more informative warning message\n\n");
343 for (uptr i
= 0; i
< rep
->stacks
.Size(); i
++) {
346 PrintStack(rep
->stacks
[i
]);
350 for (uptr i
= 0; i
< rep
->mops
.Size(); i
++)
351 PrintMop(rep
->mops
[i
], i
== 0);
354 PrintSleep(rep
->sleep
);
356 for (uptr i
= 0; i
< rep
->locs
.Size(); i
++)
357 PrintLocation(rep
->locs
[i
]);
359 if (rep
->typ
!= ReportTypeDeadlock
) {
360 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++)
361 PrintMutex(rep
->mutexes
[i
]);
364 for (uptr i
= 0; i
< rep
->threads
.Size(); i
++)
365 PrintThread(rep
->threads
[i
]);
367 if (rep
->typ
== ReportTypeThreadLeak
&& rep
->count
> 1)
368 Printf(" And %d more similar thread leaks.\n\n", rep
->count
- 1);
370 if (ReportStack
*stack
= ChooseSummaryStack(rep
)) {
371 if (SymbolizedStack
*frame
= SkipTsanInternalFrames(stack
->frames
))
372 ReportErrorSummary(rep_typ_str
, frame
->info
);
375 if (common_flags()->print_module_map
== 2)
378 Printf("==================\n");
381 #else // #if !SANITIZER_GO
383 const Tid kMainGoroutineId
= 1;
385 void PrintStack(const ReportStack
*ent
) {
386 if (ent
== 0 || ent
->frames
== 0) {
387 Printf(" [failed to restore the stack]\n");
390 SymbolizedStack
*frame
= ent
->frames
;
391 for (int i
= 0; frame
; frame
= frame
->next
, i
++) {
392 const AddressInfo
&info
= frame
->info
;
393 Printf(" %s()\n %s:%d +0x%zx\n", info
.function
,
394 StripPathPrefix(info
.file
, common_flags()->strip_path_prefix
),
395 info
.line
, info
.module_offset
);
399 static void PrintMop(const ReportMop
*mop
, bool first
) {
401 Printf("%s at %p by ",
402 (first
? (mop
->write
? "Write" : "Read")
403 : (mop
->write
? "Previous write" : "Previous read")),
404 reinterpret_cast<void *>(mop
->addr
));
405 if (mop
->tid
== kMainGoroutineId
)
406 Printf("main goroutine:\n");
408 Printf("goroutine %d:\n", mop
->tid
);
409 PrintStack(mop
->stack
);
412 static void PrintLocation(const ReportLocation
*loc
) {
414 case ReportLocationHeap
: {
416 Printf("Heap block of size %zu at %p allocated by ", loc
->heap_chunk_size
,
417 reinterpret_cast<void *>(loc
->heap_chunk_start
));
418 if (loc
->tid
== kMainGoroutineId
)
419 Printf("main goroutine:\n");
421 Printf("goroutine %d:\n", loc
->tid
);
422 PrintStack(loc
->stack
);
425 case ReportLocationGlobal
: {
427 Printf("Global var %s of size %zu at %p declared at %s:%zu\n",
428 loc
->global
.name
, loc
->global
.size
,
429 reinterpret_cast<void *>(loc
->global
.start
), loc
->global
.file
,
438 static void PrintThread(const ReportThread
*rt
) {
439 if (rt
->id
== kMainGoroutineId
)
442 Printf("Goroutine %d (%s) created at:\n",
443 rt
->id
, rt
->running
? "running" : "finished");
444 PrintStack(rt
->stack
);
447 void PrintReport(const ReportDesc
*rep
) {
448 Printf("==================\n");
449 if (rep
->typ
== ReportTypeRace
) {
450 Printf("WARNING: DATA RACE");
451 for (uptr i
= 0; i
< rep
->mops
.Size(); i
++)
452 PrintMop(rep
->mops
[i
], i
== 0);
453 for (uptr i
= 0; i
< rep
->locs
.Size(); i
++)
454 PrintLocation(rep
->locs
[i
]);
455 for (uptr i
= 0; i
< rep
->threads
.Size(); i
++)
456 PrintThread(rep
->threads
[i
]);
457 } else if (rep
->typ
== ReportTypeDeadlock
) {
458 Printf("WARNING: DEADLOCK\n");
459 for (uptr i
= 0; i
< rep
->mutexes
.Size(); i
++) {
460 Printf("Goroutine %d lock mutex %u while holding mutex %u:\n", 999,
462 rep
->mutexes
[(i
+ 1) % rep
->mutexes
.Size()]->id
);
463 PrintStack(rep
->stacks
[2*i
]);
465 Printf("Mutex %u was previously locked here:\n",
466 rep
->mutexes
[(i
+ 1) % rep
->mutexes
.Size()]->id
);
467 PrintStack(rep
->stacks
[2*i
+ 1]);
471 Printf("==================\n");
476 } // namespace __tsan