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 | |
| 34 | namespace { |
| 35 | |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 36 | static bool StackTraceRequested = false; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 37 | |
| 38 | /// InterruptFunction - The function to call if ctrl-c is pressed. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 39 | static void (*InterruptFunction)() = 0; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 40 | |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 41 | static std::vector<sys::Path> *FilesToRemove = 0 ; |
| 42 | static std::vector<sys::Path> *DirectoriesToRemove = 0; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 43 | |
| 44 | // IntSigs - Signals that may interrupt the program at any time. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 45 | static const int IntSigs[] = { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 46 | SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2 |
| 47 | }; |
Dan Gohman | c336a13 | 2008-05-14 00:42:30 +0000 | [diff] [blame] | 48 | static const int *const IntSigsEnd = |
| 49 | IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 50 | |
| 51 | // KillSigs - Signals that are synchronous with the program that will cause it |
| 52 | // to die. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 53 | static const int KillSigs[] = { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 54 | SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ |
| 55 | #ifdef SIGEMT |
| 56 | , SIGEMT |
| 57 | #endif |
| 58 | }; |
Dan Gohman | c336a13 | 2008-05-14 00:42:30 +0000 | [diff] [blame] | 59 | static const int *const KillSigsEnd = |
| 60 | KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 61 | |
| 62 | #ifdef HAVE_BACKTRACE |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 63 | static void* StackTrace[256]; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 64 | #endif |
| 65 | |
| 66 | // PrintStackTrace - In the case of a program crash or fault, print out a stack |
| 67 | // trace so that the user has an indication of why and where we died. |
| 68 | // |
| 69 | // 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] | 70 | // doesn't demangle symbols. |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 71 | static void PrintStackTrace() { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 72 | #ifdef HAVE_BACKTRACE |
| 73 | // Use backtrace() to output a backtrace on Linux systems with glibc. |
Evan Cheng | 591bfc8 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 74 | int depth = backtrace(StackTrace, |
| 75 | static_cast<int>(array_lengthof(StackTrace))); |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 76 | #if HAVE_DLFCN_H && __GNUG__ |
| 77 | int width = 0; |
| 78 | for (int i = 0; i < depth; ++i) { |
| 79 | Dl_info dlinfo; |
| 80 | dladdr(StackTrace[i], &dlinfo); |
| 81 | char* name = strrchr(dlinfo.dli_fname, '/'); |
| 82 | |
| 83 | int nwidth; |
| 84 | if (name == NULL) nwidth = strlen(dlinfo.dli_fname); |
| 85 | else nwidth = strlen(name) - 1; |
| 86 | |
| 87 | if (nwidth > width) width = nwidth; |
| 88 | } |
| 89 | |
| 90 | for (int i = 0; i < depth; ++i) { |
| 91 | Dl_info dlinfo; |
| 92 | dladdr(StackTrace[i], &dlinfo); |
| 93 | |
| 94 | fprintf(stderr, "%-3d", i); |
| 95 | |
| 96 | char* name = strrchr(dlinfo.dli_fname, '/'); |
| 97 | if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname); |
| 98 | else fprintf(stderr, " %-*s", width, name+1); |
| 99 | |
Dan Gohman | 0a48f14 | 2008-12-05 23:39:24 +0000 | [diff] [blame^] | 100 | fprintf(stderr, " %#0*lx", |
| 101 | (int)(sizeof(void*) * 2) + 2, (unsigned long)StackTrace[i]); |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 102 | |
| 103 | if (dlinfo.dli_sname != NULL) { |
| 104 | int res; |
| 105 | fputc(' ', stderr); |
| 106 | char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res); |
| 107 | if (d == NULL) fputs(dlinfo.dli_sname, stderr); |
| 108 | else fputs(d, stderr); |
| 109 | free(d); |
| 110 | |
| 111 | fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr); |
| 112 | } |
| 113 | fputc('\n', stderr); |
| 114 | } |
| 115 | #else |
Lauro Ramos Venancio | 538db76 | 2008-02-15 18:05:54 +0000 | [diff] [blame] | 116 | backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 117 | #endif |
Dan Gohman | 3d31323 | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 118 | #endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | // SignalHandler - The signal handler that runs... |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 122 | static RETSIGTYPE SignalHandler(int Sig) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 123 | if (FilesToRemove != 0) |
| 124 | while (!FilesToRemove->empty()) { |
| 125 | FilesToRemove->back().eraseFromDisk(true); |
| 126 | FilesToRemove->pop_back(); |
| 127 | } |
| 128 | |
| 129 | if (DirectoriesToRemove != 0) |
| 130 | while (!DirectoriesToRemove->empty()) { |
| 131 | DirectoriesToRemove->back().eraseFromDisk(true); |
| 132 | DirectoriesToRemove->pop_back(); |
| 133 | } |
| 134 | |
| 135 | if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) { |
| 136 | if (InterruptFunction) { |
| 137 | void (*IF)() = InterruptFunction; |
| 138 | InterruptFunction = 0; |
| 139 | IF(); // run the interrupt function. |
| 140 | return; |
| 141 | } else { |
| 142 | exit(1); // If this is an interrupt signal, exit the program |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | // Otherwise if it is a fault (like SEGV) output the stacktrace to |
| 147 | // STDERR (if we can) and reissue the signal to die... |
| 148 | if (StackTraceRequested) |
| 149 | PrintStackTrace(); |
| 150 | signal(Sig, SIG_DFL); |
| 151 | } |
| 152 | |
| 153 | // Just call signal |
Dan Gohman | ffc2f03 | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 154 | static void RegisterHandler(int Signal) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 155 | signal(Signal, SignalHandler); |
| 156 | } |
| 157 | |
| 158 | } |
| 159 | |
| 160 | |
| 161 | void sys::SetInterruptFunction(void (*IF)()) { |
| 162 | InterruptFunction = IF; |
| 163 | RegisterHandler(SIGINT); |
| 164 | } |
| 165 | |
| 166 | // RemoveFileOnSignal - The public API |
| 167 | bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) { |
| 168 | if (FilesToRemove == 0) |
| 169 | FilesToRemove = new std::vector<sys::Path>; |
| 170 | |
| 171 | FilesToRemove->push_back(Filename); |
| 172 | |
| 173 | std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |
| 174 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 175 | return false; |
| 176 | } |
| 177 | |
| 178 | // RemoveDirectoryOnSignal - The public API |
| 179 | bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) { |
| 180 | // Not a directory? |
| 181 | struct stat buf; |
| 182 | if (0 != stat(path.c_str(), &buf)) { |
| 183 | MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file"); |
| 184 | return true; |
| 185 | } |
| 186 | |
| 187 | if (!S_ISDIR(buf.st_mode)) { |
| 188 | if (ErrMsg) |
| 189 | *ErrMsg = path.toString() + " is not a directory"; |
| 190 | return true; |
| 191 | } |
| 192 | |
| 193 | if (DirectoriesToRemove == 0) |
| 194 | DirectoriesToRemove = new std::vector<sys::Path>; |
| 195 | |
| 196 | DirectoriesToRemove->push_back(path); |
| 197 | |
| 198 | std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |
| 199 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 200 | return false; |
| 201 | } |
| 202 | |
| 203 | /// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or |
| 204 | /// SIGSEGV) is delivered to the process, print a stack trace and then exit. |
| 205 | void sys::PrintStackTraceOnErrorSignal() { |
| 206 | StackTraceRequested = true; |
| 207 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 208 | } |