1 //===- PrettyStackTrace.cpp - Pretty Crash Handling -----------------------===//
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 defines some helpful functions for dealing with the possibility of
10 // Unix signals occurring while your program is running.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Support/PrettyStackTrace.h"
15 #include "llvm-c/ErrorHandling.h"
16 #include "llvm/ADT/SmallString.h"
17 #include "llvm/Config/config.h"
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/SaveAndRestore.h"
20 #include "llvm/Support/Signals.h"
21 #include "llvm/Support/Watchdog.h"
22 #include "llvm/Support/raw_ostream.h"
29 #ifdef HAVE_CRASHREPORTERCLIENT_H
30 #include <CrashReporterClient.h>
35 // If backtrace support is not enabled, compile out support for pretty stack
36 // traces. This has the secondary effect of not requiring thread local storage
37 // when backtrace support is disabled.
40 // We need a thread local pointer to manage the stack of our stack trace
41 // objects, but we *really* cannot tolerate destructors running and do not want
42 // to pay any overhead of synchronizing. As a consequence, we use a raw
43 // thread-local variable.
44 static LLVM_THREAD_LOCAL PrettyStackTraceEntry
*PrettyStackTraceHead
= nullptr;
46 // The use of 'volatile' here is to ensure that any particular thread always
47 // reloads the value of the counter. The 'std::atomic' allows us to specify that
48 // this variable is accessed in an unsychronized way (it's not actually
49 // synchronizing). This does technically mean that the value may not appear to
50 // be the same across threads running simultaneously on different CPUs, but in
51 // practice the worst that will happen is that we won't print a stack trace when
54 // This is initialized to 1 because 0 is used as a sentinel for "not enabled on
55 // the current thread". If the user happens to overflow an 'unsigned' with
56 // SIGINFO requests, it's possible that some threads will stop responding to it,
57 // but the program won't crash.
58 static volatile std::atomic
<unsigned> GlobalSigInfoGenerationCounter
=
60 static LLVM_THREAD_LOCAL
unsigned ThreadLocalSigInfoGenerationCounter
= 0;
63 PrettyStackTraceEntry
*ReverseStackTrace(PrettyStackTraceEntry
*Head
) {
64 PrettyStackTraceEntry
*Prev
= nullptr;
66 std::tie(Prev
, Head
, Head
->NextEntry
) =
67 std::make_tuple(Head
, Head
->NextEntry
, Prev
);
72 static void PrintStack(raw_ostream
&OS
) {
73 // Print out the stack in reverse order. To avoid recursion (which is likely
74 // to fail if we crashed due to stack overflow), we do an up-front pass to
75 // reverse the stack, then print it, then reverse it again.
77 SaveAndRestore
<PrettyStackTraceEntry
*> SavedStack
{PrettyStackTraceHead
,
79 PrettyStackTraceEntry
*ReversedStack
= ReverseStackTrace(SavedStack
.get());
80 for (const PrettyStackTraceEntry
*Entry
= ReversedStack
; Entry
;
81 Entry
= Entry
->getNextEntry()) {
86 llvm::ReverseStackTrace(ReversedStack
);
89 /// Print the current stack trace to the specified stream.
91 /// Marked NOINLINE so it can be called from debuggers.
92 LLVM_ATTRIBUTE_NOINLINE
93 static void PrintCurStackTrace(raw_ostream
&OS
) {
94 // Don't print an empty trace.
95 if (!PrettyStackTraceHead
) return;
97 // If there are pretty stack frames registered, walk and emit them.
98 OS
<< "Stack dump:\n";
104 // Integrate with crash reporter libraries.
105 #if defined (__APPLE__) && defined(HAVE_CRASHREPORTERCLIENT_H)
106 // If any clients of llvm try to link to libCrashReporterClient.a themselves,
107 // only one crash info struct will be used.
109 CRASH_REPORTER_CLIENT_HIDDEN
110 struct crashreporter_annotations_t gCRAnnotations
111 __attribute__((section("__DATA," CRASHREPORTER_ANNOTATIONS_SECTION
)))
112 #if CRASHREPORTER_ANNOTATIONS_VERSION < 5
113 = { CRASHREPORTER_ANNOTATIONS_VERSION
, 0, 0, 0, 0, 0, 0 };
115 = { CRASHREPORTER_ANNOTATIONS_VERSION
, 0, 0, 0, 0, 0, 0, 0 };
118 #elif defined(__APPLE__) && HAVE_CRASHREPORTER_INFO
119 extern "C" const char *__crashreporter_info__
120 __attribute__((visibility("hidden"))) = 0;
121 asm(".desc ___crashreporter_info__, 0x10");
124 static void setCrashLogMessage(const char *msg
) LLVM_ATTRIBUTE_UNUSED
;
125 static void setCrashLogMessage(const char *msg
) {
126 #ifdef HAVE_CRASHREPORTERCLIENT_H
127 (void)CRSetCrashLogMessage(msg
);
128 #elif HAVE_CRASHREPORTER_INFO
129 __crashreporter_info__
= msg
;
131 // Don't reorder subsequent operations: whatever comes after might crash and
132 // we want the system crash handling to see the message we just set.
133 std::atomic_signal_fence(std::memory_order_seq_cst
);
137 using CrashHandlerString
= SmallString
<2048>;
138 using CrashHandlerStringStorage
=
139 std::aligned_storage
<sizeof(CrashHandlerString
),
140 alignof(CrashHandlerString
)>::type
;
141 static CrashHandlerStringStorage crashHandlerStringStorage
;
144 /// This callback is run if a fatal signal is delivered to the process, it
145 /// prints the pretty stack trace.
146 static void CrashHandler(void *) {
148 // On non-apple systems, just emit the crash stack trace to stderr.
149 PrintCurStackTrace(errs());
151 // Emit the crash stack trace to a SmallString, put it where the system crash
152 // handling will find it, and also send it to stderr.
154 // The SmallString is fairly large in the hope that we don't allocate (we're
155 // handling a fatal signal, something is already pretty wrong, allocation
156 // might not work). Further, we don't use a magic static in case that's also
157 // borked. We leak any allocation that does occur because the program is about
158 // to die anyways. This is technically racy if we were handling two fatal
159 // signals, however if we're in that situation a race is the least of our
161 auto &crashHandlerString
=
162 *new (&crashHandlerStringStorage
) CrashHandlerString
;
164 // If we crash while trying to print the stack trace, we still want the system
165 // crash handling to have some partial information. That'll work out as long
166 // as the SmallString doesn't allocate. If it does allocate then the system
167 // crash handling will see some garbage because the inline buffer now contains
169 setCrashLogMessage(crashHandlerString
.c_str());
172 raw_svector_ostream
Stream(crashHandlerString
);
173 PrintCurStackTrace(Stream
);
176 if (!crashHandlerString
.empty()) {
177 setCrashLogMessage(crashHandlerString
.c_str());
178 errs() << crashHandlerString
.str();
180 setCrashLogMessage("No crash information.");
184 static void printForSigInfoIfNeeded() {
185 unsigned CurrentSigInfoGeneration
=
186 GlobalSigInfoGenerationCounter
.load(std::memory_order_relaxed
);
187 if (ThreadLocalSigInfoGenerationCounter
== 0 ||
188 ThreadLocalSigInfoGenerationCounter
== CurrentSigInfoGeneration
) {
192 PrintCurStackTrace(errs());
193 ThreadLocalSigInfoGenerationCounter
= CurrentSigInfoGeneration
;
196 #endif // ENABLE_BACKTRACES
198 PrettyStackTraceEntry::PrettyStackTraceEntry() {
199 #if ENABLE_BACKTRACES
200 // Handle SIGINFO first, because we haven't finished constructing yet.
201 printForSigInfoIfNeeded();
203 NextEntry
= PrettyStackTraceHead
;
204 PrettyStackTraceHead
= this;
208 PrettyStackTraceEntry::~PrettyStackTraceEntry() {
209 #if ENABLE_BACKTRACES
210 assert(PrettyStackTraceHead
== this &&
211 "Pretty stack trace entry destruction is out of order");
212 PrettyStackTraceHead
= NextEntry
;
213 // Handle SIGINFO first, because we already started destructing.
214 printForSigInfoIfNeeded();
218 void PrettyStackTraceString::print(raw_ostream
&OS
) const { OS
<< Str
<< "\n"; }
220 PrettyStackTraceFormat::PrettyStackTraceFormat(const char *Format
, ...) {
222 va_start(AP
, Format
);
223 const int SizeOrError
= vsnprintf(nullptr, 0, Format
, AP
);
225 if (SizeOrError
< 0) {
229 const int Size
= SizeOrError
+ 1; // '\0'
231 va_start(AP
, Format
);
232 vsnprintf(Str
.data(), Size
, Format
, AP
);
236 void PrettyStackTraceFormat::print(raw_ostream
&OS
) const { OS
<< Str
<< "\n"; }
238 void PrettyStackTraceProgram::print(raw_ostream
&OS
) const {
239 OS
<< "Program arguments: ";
240 // Print the argument list.
241 for (unsigned i
= 0, e
= ArgC
; i
!= e
; ++i
)
242 OS
<< ArgV
[i
] << ' ';
246 #if ENABLE_BACKTRACES
247 static bool RegisterCrashPrinter() {
248 sys::AddSignalHandler(CrashHandler
, nullptr);
253 void llvm::EnablePrettyStackTrace() {
254 #if ENABLE_BACKTRACES
255 // The first time this is called, we register the crash printer.
256 static bool HandlerRegistered
= RegisterCrashPrinter();
257 (void)HandlerRegistered
;
261 void llvm::EnablePrettyStackTraceOnSigInfoForThisThread(bool ShouldEnable
) {
262 #if ENABLE_BACKTRACES
264 ThreadLocalSigInfoGenerationCounter
= 0;
268 // The first time this is called, we register the SIGINFO handler.
269 static bool HandlerRegistered
= []{
270 sys::SetInfoSignalFunction([]{
271 GlobalSigInfoGenerationCounter
.fetch_add(1, std::memory_order_relaxed
);
275 (void)HandlerRegistered
;
277 // Next, enable it for the current thread.
278 ThreadLocalSigInfoGenerationCounter
=
279 GlobalSigInfoGenerationCounter
.load(std::memory_order_relaxed
);
283 const void *llvm::SavePrettyStackState() {
284 #if ENABLE_BACKTRACES
285 return PrettyStackTraceHead
;
291 void llvm::RestorePrettyStackState(const void *Top
) {
292 #if ENABLE_BACKTRACES
293 PrettyStackTraceHead
=
294 static_cast<PrettyStackTraceEntry
*>(const_cast<void *>(Top
));
298 void LLVMEnablePrettyStackTrace() {
299 EnablePrettyStackTrace();