Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 1 | //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +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 | 718cb66 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 17 | #include <vector> |
| 18 | #include <algorithm> |
Reid Spencer | cdf54d0 | 2004-12-27 06:16:52 +0000 | [diff] [blame] | 19 | #if HAVE_EXECINFO_H |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 20 | # include <execinfo.h> // For backtrace(). |
| 21 | #endif |
Reid Spencer | cdf54d0 | 2004-12-27 06:16:52 +0000 | [diff] [blame] | 22 | #if HAVE_SIGNAL_H |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 23 | #include <signal.h> |
Reid Spencer | cdf54d0 | 2004-12-27 06:16:52 +0000 | [diff] [blame] | 24 | #endif |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 25 | #if HAVE_SYS_STAT_H |
| 26 | #include <sys/stat.h> |
| 27 | #endif |
Chris Lattner | 8961501 | 2006-08-01 17:59:14 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 29 | |
| 30 | namespace { |
| 31 | |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 32 | static bool StackTraceRequested = false; |
Reid Spencer | dc6830f | 2006-06-16 00:00:57 +0000 | [diff] [blame] | 33 | |
Chris Lattner | fa8c292 | 2005-08-02 02:14:22 +0000 | [diff] [blame] | 34 | /// InterruptFunction - The function to call if ctrl-c is pressed. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 35 | static void (*InterruptFunction)() = 0; |
Chris Lattner | fa8c292 | 2005-08-02 02:14:22 +0000 | [diff] [blame] | 36 | |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 37 | static std::vector<sys::Path> *FilesToRemove = 0 ; |
| 38 | static std::vector<sys::Path> *DirectoriesToRemove = 0; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 39 | |
| 40 | // IntSigs - Signals that may interrupt the program at any time. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 41 | static const int IntSigs[] = { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 42 | SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2 |
| 43 | }; |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 44 | static const int *IntSigsEnd = IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 45 | |
| 46 | // KillSigs - Signals that are synchronous with the program that will cause it |
| 47 | // to die. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 48 | static const int KillSigs[] = { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 49 | SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ |
| 50 | #ifdef SIGEMT |
| 51 | , SIGEMT |
| 52 | #endif |
| 53 | }; |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 54 | static const int *KillSigsEnd = KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 55 | |
| 56 | #ifdef HAVE_BACKTRACE |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 57 | static void* StackTrace[256]; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 58 | #endif |
| 59 | |
| 60 | // PrintStackTrace - In the case of a program crash or fault, print out a stack |
| 61 | // trace so that the user has an indication of why and where we died. |
| 62 | // |
| 63 | // On glibc systems we have the 'backtrace' function, which works nicely, but |
Lauro Ramos Venancio | 2e78b78 | 2008-02-15 18:05:54 +0000 | [diff] [blame] | 64 | // doesn't demangle symbols. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 65 | static void PrintStackTrace() { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 66 | #ifdef HAVE_BACKTRACE |
| 67 | // Use backtrace() to output a backtrace on Linux systems with glibc. |
Evan Cheng | 34cd4a4 | 2008-05-05 18:30:58 +0000 | [diff] [blame^] | 68 | int depth = backtrace(StackTrace, |
| 69 | static_cast<int>(array_lengthof(StackTrace))); |
Lauro Ramos Venancio | 2e78b78 | 2008-02-15 18:05:54 +0000 | [diff] [blame] | 70 | backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 71 | #endif |
| 72 | } |
| 73 | |
| 74 | // SignalHandler - The signal handler that runs... |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 75 | static RETSIGTYPE SignalHandler(int Sig) { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 76 | if (FilesToRemove != 0) |
| 77 | while (!FilesToRemove->empty()) { |
Reid Spencer | a8e80c5 | 2006-08-07 05:34:08 +0000 | [diff] [blame] | 78 | FilesToRemove->back().eraseFromDisk(true); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 79 | FilesToRemove->pop_back(); |
| 80 | } |
| 81 | |
| 82 | if (DirectoriesToRemove != 0) |
| 83 | while (!DirectoriesToRemove->empty()) { |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 84 | DirectoriesToRemove->back().eraseFromDisk(true); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 85 | DirectoriesToRemove->pop_back(); |
| 86 | } |
| 87 | |
Chris Lattner | fa8c292 | 2005-08-02 02:14:22 +0000 | [diff] [blame] | 88 | if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) { |
| 89 | if (InterruptFunction) { |
| 90 | void (*IF)() = InterruptFunction; |
| 91 | InterruptFunction = 0; |
| 92 | IF(); // run the interrupt function. |
| 93 | return; |
| 94 | } else { |
| 95 | exit(1); // If this is an interrupt signal, exit the program |
| 96 | } |
| 97 | } |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 98 | |
| 99 | // Otherwise if it is a fault (like SEGV) output the stacktrace to |
| 100 | // STDERR (if we can) and reissue the signal to die... |
Reid Spencer | dc6830f | 2006-06-16 00:00:57 +0000 | [diff] [blame] | 101 | if (StackTraceRequested) |
| 102 | PrintStackTrace(); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 103 | signal(Sig, SIG_DFL); |
| 104 | } |
| 105 | |
| 106 | // Just call signal |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 107 | static void RegisterHandler(int Signal) { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 108 | signal(Signal, SignalHandler); |
| 109 | } |
| 110 | |
| 111 | } |
| 112 | |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 113 | |
Chris Lattner | fa8c292 | 2005-08-02 02:14:22 +0000 | [diff] [blame] | 114 | void sys::SetInterruptFunction(void (*IF)()) { |
| 115 | InterruptFunction = IF; |
| 116 | RegisterHandler(SIGINT); |
| 117 | } |
| 118 | |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 119 | // RemoveFileOnSignal - The public API |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 120 | bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 121 | if (FilesToRemove == 0) |
Reid Spencer | a8e80c5 | 2006-08-07 05:34:08 +0000 | [diff] [blame] | 122 | FilesToRemove = new std::vector<sys::Path>; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 123 | |
Reid Spencer | a8e80c5 | 2006-08-07 05:34:08 +0000 | [diff] [blame] | 124 | FilesToRemove->push_back(Filename); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 125 | |
| 126 | std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |
| 127 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 128 | return false; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | // RemoveDirectoryOnSignal - The public API |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 132 | bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) { |
Chris Lattner | 8961501 | 2006-08-01 17:59:14 +0000 | [diff] [blame] | 133 | // Not a directory? |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 134 | struct stat buf; |
| 135 | if (0 != stat(path.c_str(), &buf)) { |
| 136 | MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file"); |
Reid Spencer | 8475ec0 | 2007-03-29 19:05:44 +0000 | [diff] [blame] | 137 | return true; |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | if (!S_ISDIR(buf.st_mode)) { |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 141 | if (ErrMsg) |
| 142 | *ErrMsg = path.toString() + " is not a directory"; |
| 143 | return true; |
| 144 | } |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 145 | |
| 146 | if (DirectoriesToRemove == 0) |
| 147 | DirectoriesToRemove = new std::vector<sys::Path>; |
| 148 | |
| 149 | DirectoriesToRemove->push_back(path); |
| 150 | |
| 151 | std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |
| 152 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
Reid Spencer | 0554575 | 2006-08-25 21:37:17 +0000 | [diff] [blame] | 153 | return false; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | /// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or |
| 157 | /// SIGSEGV) is delivered to the process, print a stack trace and then exit. |
| 158 | void sys::PrintStackTraceOnErrorSignal() { |
Reid Spencer | dc6830f | 2006-06-16 00:00:57 +0000 | [diff] [blame] | 159 | StackTraceRequested = true; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 160 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 161 | } |