Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines some helpful functions for dealing with the possibility of |
| 11 | // Unix signals occuring while your program is running. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "Unix.h" |
Owen Anderson | 1636de9 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 17 | #include <vector> |
| 18 | #include <algorithm> |
| 19 | #if HAVE_EXECINFO_H |
| 20 | # include <execinfo.h> // For backtrace(). |
| 21 | #endif |
| 22 | #if HAVE_SIGNAL_H |
| 23 | #include <signal.h> |
| 24 | #endif |
| 25 | #if HAVE_SYS_STAT_H |
| 26 | #include <sys/stat.h> |
| 27 | #endif |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 28 | #if HAVE_DLFCN_H && __GNUG__ |
| 29 | #include <dlfcn.h> |
| 30 | #include <cxxabi.h> |
| 31 | #endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 32 | using namespace llvm; |
| 33 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 34 | /// InterruptFunction - The function to call if ctrl-c is pressed. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 35 | static void (*InterruptFunction)() = 0; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 36 | |
Chris Lattner | 199997b | 2009-03-04 21:21:36 +0000 | [diff] [blame^] | 37 | static std::vector<sys::Path> *FilesToRemove = 0; |
| 38 | static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 39 | |
| 40 | // IntSigs - Signals that may interrupt the program at any time. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 41 | static const int IntSigs[] = { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 42 | SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2 |
| 43 | }; |
Dan Gohman | c336a13 | 2008-05-14 00:42:30 +0000 | [diff] [blame] | 44 | static const int *const IntSigsEnd = |
| 45 | IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 46 | |
| 47 | // KillSigs - Signals that are synchronous with the program that will cause it |
| 48 | // to die. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 49 | static const int KillSigs[] = { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 50 | SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ |
| 51 | #ifdef SIGEMT |
| 52 | , SIGEMT |
| 53 | #endif |
| 54 | }; |
Dan Gohman | c336a13 | 2008-05-14 00:42:30 +0000 | [diff] [blame] | 55 | static const int *const KillSigsEnd = |
| 56 | KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 57 | |
Chris Lattner | 199997b | 2009-03-04 21:21:36 +0000 | [diff] [blame^] | 58 | // SignalHandler - The signal handler that runs... |
| 59 | static RETSIGTYPE SignalHandler(int Sig) { |
| 60 | if (FilesToRemove != 0) |
| 61 | while (!FilesToRemove->empty()) { |
| 62 | FilesToRemove->back().eraseFromDisk(true); |
| 63 | FilesToRemove->pop_back(); |
| 64 | } |
| 65 | |
| 66 | if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) { |
| 67 | if (InterruptFunction) { |
| 68 | void (*IF)() = InterruptFunction; |
| 69 | InterruptFunction = 0; |
| 70 | IF(); // run the interrupt function. |
| 71 | return; |
| 72 | } |
| 73 | exit(1); // If this is an interrupt signal, exit the program |
| 74 | } |
| 75 | |
| 76 | // Otherwise if it is a fault (like SEGV) run any handler. |
| 77 | if (CallBacksToRun) |
| 78 | for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i) |
| 79 | (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second); |
| 80 | |
| 81 | // Restore the signal behavior to default, so that the program actually |
| 82 | // crashes when we return and the signal reissues. |
| 83 | signal(Sig, SIG_DFL); |
| 84 | } |
| 85 | |
| 86 | // Just call signal |
| 87 | static void RegisterHandler(int Signal) { |
| 88 | signal(Signal, SignalHandler); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | |
| 93 | void sys::SetInterruptFunction(void (*IF)()) { |
| 94 | InterruptFunction = IF; |
| 95 | RegisterHandler(SIGINT); |
| 96 | } |
| 97 | |
| 98 | // RemoveFileOnSignal - The public API |
| 99 | bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) { |
| 100 | if (FilesToRemove == 0) |
| 101 | FilesToRemove = new std::vector<sys::Path>(); |
| 102 | |
| 103 | FilesToRemove->push_back(Filename); |
| 104 | |
| 105 | std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |
| 106 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | /// AddSignalHandler - Add a function to be called when a signal is delivered |
| 111 | /// to the process. The handler can have a cookie passed to it to identify |
| 112 | /// what instance of the handler it is. |
| 113 | void sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) { |
| 114 | if (CallBacksToRun == 0) |
| 115 | CallBacksToRun = new std::vector<std::pair<void(*)(void*), void*> >(); |
| 116 | CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie)); |
| 117 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 118 | } |
| 119 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 120 | |
| 121 | // PrintStackTrace - In the case of a program crash or fault, print out a stack |
| 122 | // trace so that the user has an indication of why and where we died. |
| 123 | // |
| 124 | // On glibc systems we have the 'backtrace' function, which works nicely, but |
Lauro Ramos Venancio | 538db76 | 2008-02-15 18:05:54 +0000 | [diff] [blame] | 125 | // doesn't demangle symbols. |
Chris Lattner | 199997b | 2009-03-04 21:21:36 +0000 | [diff] [blame^] | 126 | static void PrintStackTrace(void *) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 127 | #ifdef HAVE_BACKTRACE |
Chris Lattner | 199997b | 2009-03-04 21:21:36 +0000 | [diff] [blame^] | 128 | static void* StackTrace[256]; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 129 | // Use backtrace() to output a backtrace on Linux systems with glibc. |
Evan Cheng | 591bfc8 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 130 | int depth = backtrace(StackTrace, |
| 131 | static_cast<int>(array_lengthof(StackTrace))); |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 132 | #if HAVE_DLFCN_H && __GNUG__ |
| 133 | int width = 0; |
| 134 | for (int i = 0; i < depth; ++i) { |
| 135 | Dl_info dlinfo; |
| 136 | dladdr(StackTrace[i], &dlinfo); |
Dan Gohman | 2f75d52 | 2009-02-10 17:56:28 +0000 | [diff] [blame] | 137 | const char* name = strrchr(dlinfo.dli_fname, '/'); |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 138 | |
| 139 | int nwidth; |
| 140 | if (name == NULL) nwidth = strlen(dlinfo.dli_fname); |
| 141 | else nwidth = strlen(name) - 1; |
| 142 | |
| 143 | if (nwidth > width) width = nwidth; |
| 144 | } |
| 145 | |
| 146 | for (int i = 0; i < depth; ++i) { |
| 147 | Dl_info dlinfo; |
| 148 | dladdr(StackTrace[i], &dlinfo); |
| 149 | |
| 150 | fprintf(stderr, "%-3d", i); |
| 151 | |
Dan Gohman | 2f75d52 | 2009-02-10 17:56:28 +0000 | [diff] [blame] | 152 | const char* name = strrchr(dlinfo.dli_fname, '/'); |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 153 | if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname); |
| 154 | else fprintf(stderr, " %-*s", width, name+1); |
| 155 | |
Dan Gohman | 0a48f14 | 2008-12-05 23:39:24 +0000 | [diff] [blame] | 156 | fprintf(stderr, " %#0*lx", |
| 157 | (int)(sizeof(void*) * 2) + 2, (unsigned long)StackTrace[i]); |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 158 | |
| 159 | if (dlinfo.dli_sname != NULL) { |
| 160 | int res; |
| 161 | fputc(' ', stderr); |
| 162 | char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res); |
| 163 | if (d == NULL) fputs(dlinfo.dli_sname, stderr); |
| 164 | else fputs(d, stderr); |
| 165 | free(d); |
| 166 | |
| 167 | fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr); |
| 168 | } |
| 169 | fputc('\n', stderr); |
| 170 | } |
| 171 | #else |
Lauro Ramos Venancio | 538db76 | 2008-02-15 18:05:54 +0000 | [diff] [blame] | 172 | backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 173 | #endif |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 174 | #endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 177 | /// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or |
| 178 | /// SIGSEGV) is delivered to the process, print a stack trace and then exit. |
| 179 | void sys::PrintStackTraceOnErrorSignal() { |
Chris Lattner | 199997b | 2009-03-04 21:21:36 +0000 | [diff] [blame^] | 180 | AddSignalHandler(PrintStackTrace, 0); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 181 | } |
Chris Lattner | 199997b | 2009-03-04 21:21:36 +0000 | [diff] [blame^] | 182 | |