1 //===- PrettyStackTrace.cpp - Pretty Crash Handling -----------------------===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file defines some helpful functions for dealing with the possibility of 10 // Unix signals occurring while your program is running. 11 // 12 //===----------------------------------------------------------------------===// 13 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" 23 24 #include <atomic> 25 #include <cassert> 26 #include <cstdarg> 27 #include <cstdio> 28 #include <tuple> 29 30 #ifdef HAVE_CRASHREPORTERCLIENT_H 31 #include <CrashReporterClient.h> 32 #endif 33 34 using namespace llvm; 35 36 // If backtrace support is not enabled, compile out support for pretty stack 37 // traces. This has the secondary effect of not requiring thread local storage 38 // when backtrace support is disabled. 39 #if ENABLE_BACKTRACES 40 41 // We need a thread local pointer to manage the stack of our stack trace 42 // objects, but we *really* cannot tolerate destructors running and do not want 43 // to pay any overhead of synchronizing. As a consequence, we use a raw 44 // thread-local variable. 45 static LLVM_THREAD_LOCAL PrettyStackTraceEntry *PrettyStackTraceHead = nullptr; 46 47 // The use of 'volatile' here is to ensure that any particular thread always 48 // reloads the value of the counter. The 'std::atomic' allows us to specify that 49 // this variable is accessed in an unsychronized way (it's not actually 50 // synchronizing). This does technically mean that the value may not appear to 51 // be the same across threads running simultaneously on different CPUs, but in 52 // practice the worst that will happen is that we won't print a stack trace when 53 // we could have. 54 // 55 // This is initialized to 1 because 0 is used as a sentinel for "not enabled on 56 // the current thread". If the user happens to overflow an 'unsigned' with 57 // SIGINFO requests, it's possible that some threads will stop responding to it, 58 // but the program won't crash. 59 static volatile std::atomic<unsigned> GlobalSigInfoGenerationCounter = 60 ATOMIC_VAR_INIT(1); 61 static LLVM_THREAD_LOCAL unsigned ThreadLocalSigInfoGenerationCounter = 0; 62 63 namespace llvm { 64 PrettyStackTraceEntry *ReverseStackTrace(PrettyStackTraceEntry *Head) { 65 PrettyStackTraceEntry *Prev = nullptr; 66 while (Head) 67 std::tie(Prev, Head, Head->NextEntry) = 68 std::make_tuple(Head, Head->NextEntry, Prev); 69 return Prev; 70 } 71 } 72 73 static void PrintStack(raw_ostream &OS) { 74 // Print out the stack in reverse order. To avoid recursion (which is likely 75 // to fail if we crashed due to stack overflow), we do an up-front pass to 76 // reverse the stack, then print it, then reverse it again. 77 unsigned ID = 0; 78 SaveAndRestore<PrettyStackTraceEntry *> SavedStack{PrettyStackTraceHead, 79 nullptr}; 80 PrettyStackTraceEntry *ReversedStack = ReverseStackTrace(SavedStack.get()); 81 for (const PrettyStackTraceEntry *Entry = ReversedStack; Entry; 82 Entry = Entry->getNextEntry()) { 83 OS << ID++ << ".\t"; 84 sys::Watchdog W(5); 85 Entry->print(OS); 86 } 87 llvm::ReverseStackTrace(ReversedStack); 88 } 89 90 /// Print the current stack trace to the specified stream. 91 /// 92 /// Marked NOINLINE so it can be called from debuggers. 93 LLVM_ATTRIBUTE_NOINLINE 94 static void PrintCurStackTrace(raw_ostream &OS) { 95 // Don't print an empty trace. 96 if (!PrettyStackTraceHead) return; 97 98 // If there are pretty stack frames registered, walk and emit them. 99 OS << "Stack dump:\n"; 100 101 PrintStack(OS); 102 OS.flush(); 103 } 104 105 // Integrate with crash reporter libraries. 106 #if defined (__APPLE__) && defined(HAVE_CRASHREPORTERCLIENT_H) 107 // If any clients of llvm try to link to libCrashReporterClient.a themselves, 108 // only one crash info struct will be used. 109 extern "C" { 110 CRASH_REPORTER_CLIENT_HIDDEN 111 struct crashreporter_annotations_t gCRAnnotations 112 __attribute__((section("__DATA," CRASHREPORTER_ANNOTATIONS_SECTION))) 113 #if CRASHREPORTER_ANNOTATIONS_VERSION < 5 114 = { CRASHREPORTER_ANNOTATIONS_VERSION, 0, 0, 0, 0, 0, 0 }; 115 #else 116 = { CRASHREPORTER_ANNOTATIONS_VERSION, 0, 0, 0, 0, 0, 0, 0 }; 117 #endif 118 } 119 #elif defined(__APPLE__) && HAVE_CRASHREPORTER_INFO 120 extern "C" const char *__crashreporter_info__ 121 __attribute__((visibility("hidden"))) = 0; 122 asm(".desc ___crashreporter_info__, 0x10"); 123 #endif 124 125 static void setCrashLogMessage(const char *msg) LLVM_ATTRIBUTE_UNUSED; 126 static void setCrashLogMessage(const char *msg) { 127 #ifdef HAVE_CRASHREPORTERCLIENT_H 128 (void)CRSetCrashLogMessage(msg); 129 #elif HAVE_CRASHREPORTER_INFO 130 __crashreporter_info__ = msg; 131 #endif 132 // Don't reorder subsequent operations: whatever comes after might crash and 133 // we want the system crash handling to see the message we just set. 134 std::atomic_signal_fence(std::memory_order_seq_cst); 135 } 136 137 #ifdef __APPLE__ 138 using CrashHandlerString = SmallString<2048>; 139 using CrashHandlerStringStorage = 140 std::aligned_storage<sizeof(CrashHandlerString), 141 alignof(CrashHandlerString)>::type; 142 static CrashHandlerStringStorage crashHandlerStringStorage; 143 #endif 144 145 static const char *BugReportMsg = 146 "PLEASE submit a bug report to " BUG_REPORT_URL 147 " and include the crash backtrace.\n"; 148 149 /// This callback is run if a fatal signal is delivered to the process, it 150 /// prints the pretty stack trace. 151 static void CrashHandler(void *) { 152 errs() << BugReportMsg ; 153 154 #ifndef __APPLE__ 155 // On non-apple systems, just emit the crash stack trace to stderr. 156 PrintCurStackTrace(errs()); 157 #else 158 // Emit the crash stack trace to a SmallString, put it where the system crash 159 // handling will find it, and also send it to stderr. 160 // 161 // The SmallString is fairly large in the hope that we don't allocate (we're 162 // handling a fatal signal, something is already pretty wrong, allocation 163 // might not work). Further, we don't use a magic static in case that's also 164 // borked. We leak any allocation that does occur because the program is about 165 // to die anyways. This is technically racy if we were handling two fatal 166 // signals, however if we're in that situation a race is the least of our 167 // worries. 168 auto &crashHandlerString = 169 *new (&crashHandlerStringStorage) CrashHandlerString; 170 171 // If we crash while trying to print the stack trace, we still want the system 172 // crash handling to have some partial information. That'll work out as long 173 // as the SmallString doesn't allocate. If it does allocate then the system 174 // crash handling will see some garbage because the inline buffer now contains 175 // a pointer. 176 setCrashLogMessage(crashHandlerString.c_str()); 177 178 { 179 raw_svector_ostream Stream(crashHandlerString); 180 PrintCurStackTrace(Stream); 181 } 182 183 if (!crashHandlerString.empty()) { 184 setCrashLogMessage(crashHandlerString.c_str()); 185 errs() << crashHandlerString.str(); 186 } else 187 setCrashLogMessage("No crash information."); 188 #endif 189 } 190 191 static void printForSigInfoIfNeeded() { 192 unsigned CurrentSigInfoGeneration = 193 GlobalSigInfoGenerationCounter.load(std::memory_order_relaxed); 194 if (ThreadLocalSigInfoGenerationCounter == 0 || 195 ThreadLocalSigInfoGenerationCounter == CurrentSigInfoGeneration) { 196 return; 197 } 198 199 PrintCurStackTrace(errs()); 200 ThreadLocalSigInfoGenerationCounter = CurrentSigInfoGeneration; 201 } 202 203 #endif // ENABLE_BACKTRACES 204 205 void llvm::setBugReportMsg(const char *Msg) { 206 #if ENABLE_BACKTRACES 207 BugReportMsg = Msg; 208 #endif 209 } 210 211 PrettyStackTraceEntry::PrettyStackTraceEntry() { 212 #if ENABLE_BACKTRACES 213 // Handle SIGINFO first, because we haven't finished constructing yet. 214 printForSigInfoIfNeeded(); 215 // Link ourselves. 216 NextEntry = PrettyStackTraceHead; 217 PrettyStackTraceHead = this; 218 #endif 219 } 220 221 PrettyStackTraceEntry::~PrettyStackTraceEntry() { 222 #if ENABLE_BACKTRACES 223 assert(PrettyStackTraceHead == this && 224 "Pretty stack trace entry destruction is out of order"); 225 PrettyStackTraceHead = NextEntry; 226 // Handle SIGINFO first, because we already started destructing. 227 printForSigInfoIfNeeded(); 228 #endif 229 } 230 231 void PrettyStackTraceString::print(raw_ostream &OS) const { OS << Str << "\n"; } 232 233 PrettyStackTraceFormat::PrettyStackTraceFormat(const char *Format, ...) { 234 va_list AP; 235 va_start(AP, Format); 236 const int SizeOrError = vsnprintf(nullptr, 0, Format, AP); 237 va_end(AP); 238 if (SizeOrError < 0) { 239 return; 240 } 241 242 const int Size = SizeOrError + 1; // '\0' 243 Str.resize(Size); 244 va_start(AP, Format); 245 vsnprintf(Str.data(), Size, Format, AP); 246 va_end(AP); 247 } 248 249 void PrettyStackTraceFormat::print(raw_ostream &OS) const { OS << Str << "\n"; } 250 251 void PrettyStackTraceProgram::print(raw_ostream &OS) const { 252 OS << "Program arguments: "; 253 // Print the argument list. 254 for (unsigned i = 0, e = ArgC; i != e; ++i) 255 OS << ArgV[i] << ' '; 256 OS << '\n'; 257 } 258 259 #if ENABLE_BACKTRACES 260 static bool RegisterCrashPrinter() { 261 sys::AddSignalHandler(CrashHandler, nullptr); 262 return false; 263 } 264 #endif 265 266 void llvm::EnablePrettyStackTrace() { 267 #if ENABLE_BACKTRACES 268 // The first time this is called, we register the crash printer. 269 static bool HandlerRegistered = RegisterCrashPrinter(); 270 (void)HandlerRegistered; 271 #endif 272 } 273 274 void llvm::EnablePrettyStackTraceOnSigInfoForThisThread(bool ShouldEnable) { 275 #if ENABLE_BACKTRACES 276 if (!ShouldEnable) { 277 ThreadLocalSigInfoGenerationCounter = 0; 278 return; 279 } 280 281 // The first time this is called, we register the SIGINFO handler. 282 static bool HandlerRegistered = []{ 283 sys::SetInfoSignalFunction([]{ 284 GlobalSigInfoGenerationCounter.fetch_add(1, std::memory_order_relaxed); 285 }); 286 return false; 287 }(); 288 (void)HandlerRegistered; 289 290 // Next, enable it for the current thread. 291 ThreadLocalSigInfoGenerationCounter = 292 GlobalSigInfoGenerationCounter.load(std::memory_order_relaxed); 293 #endif 294 } 295 296 const void *llvm::SavePrettyStackState() { 297 #if ENABLE_BACKTRACES 298 return PrettyStackTraceHead; 299 #else 300 return nullptr; 301 #endif 302 } 303 304 void llvm::RestorePrettyStackState(const void *Top) { 305 #if ENABLE_BACKTRACES 306 PrettyStackTraceHead = 307 static_cast<PrettyStackTraceEntry *>(const_cast<void *>(Top)); 308 #endif 309 } 310 311 void LLVMEnablePrettyStackTrace() { 312 EnablePrettyStackTrace(); 313 } 314