Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 1 | //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===// |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 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. |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 7 | // |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines some helpful functions for dealing with the possibility of |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 11 | // Unix signals occurring while your program is running. |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 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" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 17 | #include "llvm/Support/Mutex.h" |
Chandler Carruth | 0b8b3ba | 2012-06-16 00:09:41 +0000 | [diff] [blame] | 18 | #include <string> |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 19 | #include <vector> |
| 20 | #include <algorithm> |
Reid Spencer | cdf54d0 | 2004-12-27 06:16:52 +0000 | [diff] [blame] | 21 | #if HAVE_EXECINFO_H |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 22 | # include <execinfo.h> // For backtrace(). |
| 23 | #endif |
Reid Spencer | cdf54d0 | 2004-12-27 06:16:52 +0000 | [diff] [blame] | 24 | #if HAVE_SIGNAL_H |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 25 | #include <signal.h> |
Reid Spencer | cdf54d0 | 2004-12-27 06:16:52 +0000 | [diff] [blame] | 26 | #endif |
Reid Spencer | 2ae9d11 | 2007-04-07 18:52:17 +0000 | [diff] [blame] | 27 | #if HAVE_SYS_STAT_H |
| 28 | #include <sys/stat.h> |
| 29 | #endif |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 30 | #if HAVE_DLFCN_H && __GNUG__ |
| 31 | #include <dlfcn.h> |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 32 | #include <cxxabi.h> |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 33 | #endif |
Argyrios Kyrtzidis | 08713b3 | 2012-01-11 20:53:25 +0000 | [diff] [blame] | 34 | #if HAVE_MACH_MACH_H |
| 35 | #include <mach/mach.h> |
| 36 | #endif |
| 37 | |
Chris Lattner | 8961501 | 2006-08-01 17:59:14 +0000 | [diff] [blame] | 38 | using namespace llvm; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 39 | |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 40 | static RETSIGTYPE SignalHandler(int Sig); // defined below. |
| 41 | |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 42 | static SmartMutex<true> SignalsMutex; |
| 43 | |
Chris Lattner | fa8c292 | 2005-08-02 02:14:22 +0000 | [diff] [blame] | 44 | /// InterruptFunction - The function to call if ctrl-c is pressed. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 45 | static void (*InterruptFunction)() = 0; |
Chris Lattner | fa8c292 | 2005-08-02 02:14:22 +0000 | [diff] [blame] | 46 | |
Chandler Carruth | 0b8b3ba | 2012-06-16 00:09:41 +0000 | [diff] [blame] | 47 | static std::vector<std::string> FilesToRemove; |
Jeffrey Yasskin | b7ccf75 | 2010-03-17 07:08:12 +0000 | [diff] [blame] | 48 | static std::vector<std::pair<void(*)(void*), void*> > CallBacksToRun; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 49 | |
| 50 | // IntSigs - Signals that may interrupt the program at any time. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 51 | static const int IntSigs[] = { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 52 | SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2 |
| 53 | }; |
Dan Gohman | 4d9dd6b | 2008-05-14 00:42:30 +0000 | [diff] [blame] | 54 | static const int *const IntSigsEnd = |
| 55 | IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 56 | |
| 57 | // KillSigs - Signals that are synchronous with the program that will cause it |
| 58 | // to die. |
Dan Gohman | 3bd659b | 2008-04-10 21:11:47 +0000 | [diff] [blame] | 59 | static const int KillSigs[] = { |
Chris Lattner | 6ae7bbb | 2010-02-12 00:37:46 +0000 | [diff] [blame] | 60 | SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV |
| 61 | #ifdef SIGSYS |
| 62 | , SIGSYS |
| 63 | #endif |
| 64 | #ifdef SIGXCPU |
| 65 | , SIGXCPU |
| 66 | #endif |
Chris Lattner | 782ab58 | 2010-02-14 18:20:09 +0000 | [diff] [blame] | 67 | #ifdef SIGXFSZ |
Chris Lattner | 6ae7bbb | 2010-02-12 00:37:46 +0000 | [diff] [blame] | 68 | , SIGXFSZ |
| 69 | #endif |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 70 | #ifdef SIGEMT |
| 71 | , SIGEMT |
| 72 | #endif |
| 73 | }; |
Dan Gohman | 4d9dd6b | 2008-05-14 00:42:30 +0000 | [diff] [blame] | 74 | static const int *const KillSigsEnd = |
| 75 | KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 76 | |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 77 | static unsigned NumRegisteredSignals = 0; |
| 78 | static struct { |
| 79 | struct sigaction SA; |
| 80 | int SigNo; |
| 81 | } RegisteredSignalInfo[(sizeof(IntSigs)+sizeof(KillSigs))/sizeof(KillSigs[0])]; |
| 82 | |
| 83 | |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 84 | static void RegisterHandler(int Signal) { |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 85 | assert(NumRegisteredSignals < |
| 86 | sizeof(RegisteredSignalInfo)/sizeof(RegisteredSignalInfo[0]) && |
| 87 | "Out of space for signal handlers!"); |
| 88 | |
| 89 | struct sigaction NewHandler; |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 90 | |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 91 | NewHandler.sa_handler = SignalHandler; |
| 92 | NewHandler.sa_flags = SA_NODEFER|SA_RESETHAND; |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 93 | sigemptyset(&NewHandler.sa_mask); |
| 94 | |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 95 | // Install the new handler, save the old one in RegisteredSignalInfo. |
| 96 | sigaction(Signal, &NewHandler, |
| 97 | &RegisteredSignalInfo[NumRegisteredSignals].SA); |
| 98 | RegisteredSignalInfo[NumRegisteredSignals].SigNo = Signal; |
| 99 | ++NumRegisteredSignals; |
Chris Lattner | 922a881 | 2009-03-07 08:15:47 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 102 | static void RegisterHandlers() { |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 103 | // If the handlers are already registered, we're done. |
| 104 | if (NumRegisteredSignals != 0) return; |
| 105 | |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 106 | std::for_each(IntSigs, IntSigsEnd, RegisterHandler); |
| 107 | std::for_each(KillSigs, KillSigsEnd, RegisterHandler); |
| 108 | } |
| 109 | |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 110 | static void UnregisterHandlers() { |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 111 | // Restore all of the signal handlers to how they were before we showed up. |
| 112 | for (unsigned i = 0, e = NumRegisteredSignals; i != e; ++i) |
Chris Lattner | a8bd27f | 2009-03-23 06:46:20 +0000 | [diff] [blame] | 113 | sigaction(RegisteredSignalInfo[i].SigNo, |
| 114 | &RegisteredSignalInfo[i].SA, 0); |
Chris Lattner | eab5cb3 | 2009-03-23 05:55:36 +0000 | [diff] [blame] | 115 | NumRegisteredSignals = 0; |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | |
Dan Gohman | 39f76bb | 2010-05-27 23:11:55 +0000 | [diff] [blame] | 119 | /// RemoveFilesToRemove - Process the FilesToRemove list. This function |
| 120 | /// should be called with the SignalsMutex lock held. |
Chandler Carruth | 0b8b3ba | 2012-06-16 00:09:41 +0000 | [diff] [blame] | 121 | /// NB: This must be an async signal safe function. It cannot allocate or free |
| 122 | /// memory, even in debug builds. |
Dan Gohman | 39f76bb | 2010-05-27 23:11:55 +0000 | [diff] [blame] | 123 | static void RemoveFilesToRemove() { |
Chandler Carruth | 0b8b3ba | 2012-06-16 00:09:41 +0000 | [diff] [blame] | 124 | // Note: avoid iterators in case of debug iterators that allocate or release |
| 125 | // memory. |
| 126 | for (unsigned i = 0, e = FilesToRemove.size(); i != e; ++i) { |
| 127 | // Note that we don't want to use any external code here, and we don't care |
| 128 | // about errors. We're going to try as hard as we can as often as we need |
| 129 | // to to make these files go away. If these aren't files, too bad. |
| 130 | // |
| 131 | // We do however rely on a std::string implementation for which repeated |
| 132 | // calls to 'c_str()' don't allocate memory. We pre-call 'c_str()' on all |
| 133 | // of these strings to try to ensure this is safe. |
| 134 | unlink(FilesToRemove[i].c_str()); |
Dan Gohman | 39f76bb | 2010-05-27 23:11:55 +0000 | [diff] [blame] | 135 | } |
| 136 | } |
Chris Lattner | 922a881 | 2009-03-07 08:15:47 +0000 | [diff] [blame] | 137 | |
| 138 | // SignalHandler - The signal handler that runs. |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 139 | static RETSIGTYPE SignalHandler(int Sig) { |
Chris Lattner | 0f6290d | 2009-03-05 18:22:14 +0000 | [diff] [blame] | 140 | // Restore the signal behavior to default, so that the program actually |
| 141 | // crashes when we return and the signal reissues. This also ensures that if |
| 142 | // we crash in our signal handler that the program will terminate immediately |
| 143 | // instead of recursing in the signal handler. |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 144 | UnregisterHandlers(); |
Chris Lattner | 922a881 | 2009-03-07 08:15:47 +0000 | [diff] [blame] | 145 | |
| 146 | // Unmask all potentially blocked kill signals. |
| 147 | sigset_t SigMask; |
| 148 | sigfillset(&SigMask); |
| 149 | sigprocmask(SIG_UNBLOCK, &SigMask, 0); |
Chris Lattner | 0f6290d | 2009-03-05 18:22:14 +0000 | [diff] [blame] | 150 | |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 151 | SignalsMutex.acquire(); |
Dan Gohman | 39f76bb | 2010-05-27 23:11:55 +0000 | [diff] [blame] | 152 | RemoveFilesToRemove(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 153 | |
| 154 | if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) { |
| 155 | if (InterruptFunction) { |
| 156 | void (*IF)() = InterruptFunction; |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 157 | SignalsMutex.release(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 158 | InterruptFunction = 0; |
| 159 | IF(); // run the interrupt function. |
| 160 | return; |
| 161 | } |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 162 | |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 163 | SignalsMutex.release(); |
Chris Lattner | b725315 | 2009-04-12 23:33:13 +0000 | [diff] [blame] | 164 | raise(Sig); // Execute the default handler. |
| 165 | return; |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 168 | SignalsMutex.release(); |
| 169 | |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 170 | // Otherwise if it is a fault (like SEGV) run any handler. |
Jeffrey Yasskin | b7ccf75 | 2010-03-17 07:08:12 +0000 | [diff] [blame] | 171 | for (unsigned i = 0, e = CallBacksToRun.size(); i != e; ++i) |
| 172 | CallBacksToRun[i].first(CallBacksToRun[i].second); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Daniel Dunbar | fb89e08 | 2010-05-08 02:10:34 +0000 | [diff] [blame] | 175 | void llvm::sys::RunInterruptHandlers() { |
Dan Gohman | 39f76bb | 2010-05-27 23:11:55 +0000 | [diff] [blame] | 176 | SignalsMutex.acquire(); |
| 177 | RemoveFilesToRemove(); |
| 178 | SignalsMutex.release(); |
Daniel Dunbar | fb89e08 | 2010-05-08 02:10:34 +0000 | [diff] [blame] | 179 | } |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 180 | |
Chris Lattner | f48ba7b | 2009-03-08 19:13:45 +0000 | [diff] [blame] | 181 | void llvm::sys::SetInterruptFunction(void (*IF)()) { |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 182 | SignalsMutex.acquire(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 183 | InterruptFunction = IF; |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 184 | SignalsMutex.release(); |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 185 | RegisterHandlers(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | // RemoveFileOnSignal - The public API |
Chris Lattner | f48ba7b | 2009-03-08 19:13:45 +0000 | [diff] [blame] | 189 | bool llvm::sys::RemoveFileOnSignal(const sys::Path &Filename, |
| 190 | std::string* ErrMsg) { |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 191 | SignalsMutex.acquire(); |
Chandler Carruth | 2943662 | 2012-06-16 00:44:07 +0000 | [diff] [blame] | 192 | std::string *OldPtr = FilesToRemove.empty() ? 0 : &FilesToRemove[0]; |
Chandler Carruth | 0b8b3ba | 2012-06-16 00:09:41 +0000 | [diff] [blame] | 193 | FilesToRemove.push_back(Filename.str()); |
| 194 | |
| 195 | // We want to call 'c_str()' on every std::string in this vector so that if |
| 196 | // the underlying implementation requires a re-allocation, it happens here |
| 197 | // rather than inside of the signal handler. If we see the vector grow, we |
| 198 | // have to call it on every entry. If it remains in place, we only need to |
| 199 | // call it on the latest one. |
| 200 | if (OldPtr == &FilesToRemove[0]) |
| 201 | FilesToRemove.back().c_str(); |
| 202 | else |
| 203 | for (unsigned i = 0, e = FilesToRemove.size(); i != e; ++i) |
| 204 | FilesToRemove[i].c_str(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 205 | |
Owen Anderson | 6ae8c73 | 2009-08-17 17:07:22 +0000 | [diff] [blame] | 206 | SignalsMutex.release(); |
| 207 | |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 208 | RegisterHandlers(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 209 | return false; |
| 210 | } |
| 211 | |
Dan Gohman | 4115411 | 2010-09-01 14:17:34 +0000 | [diff] [blame] | 212 | // DontRemoveFileOnSignal - The public API |
| 213 | void llvm::sys::DontRemoveFileOnSignal(const sys::Path &Filename) { |
| 214 | SignalsMutex.acquire(); |
Chandler Carruth | 0b8b3ba | 2012-06-16 00:09:41 +0000 | [diff] [blame] | 215 | std::vector<std::string>::reverse_iterator RI = |
| 216 | std::find(FilesToRemove.rbegin(), FilesToRemove.rend(), Filename.str()); |
| 217 | std::vector<std::string>::iterator I = FilesToRemove.end(); |
| 218 | if (RI != FilesToRemove.rend()) |
| 219 | I = FilesToRemove.erase(RI.base()-1); |
| 220 | |
| 221 | // We need to call c_str() on every element which would have been moved by |
| 222 | // the erase. These elements, in a C++98 implementation where c_str() |
| 223 | // requires a reallocation on the first call may have had the call to c_str() |
| 224 | // made on insertion become invalid by being copied down an element. |
| 225 | for (std::vector<std::string>::iterator E = FilesToRemove.end(); I != E; ++I) |
| 226 | I->c_str(); |
| 227 | |
Dan Gohman | 4115411 | 2010-09-01 14:17:34 +0000 | [diff] [blame] | 228 | SignalsMutex.release(); |
| 229 | } |
| 230 | |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 231 | /// AddSignalHandler - Add a function to be called when a signal is delivered |
| 232 | /// to the process. The handler can have a cookie passed to it to identify |
| 233 | /// what instance of the handler it is. |
Chris Lattner | f48ba7b | 2009-03-08 19:13:45 +0000 | [diff] [blame] | 234 | void llvm::sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) { |
Jeffrey Yasskin | b7ccf75 | 2010-03-17 07:08:12 +0000 | [diff] [blame] | 235 | CallBacksToRun.push_back(std::make_pair(FnPtr, Cookie)); |
Chris Lattner | 1c4d8a0 | 2009-03-23 05:42:29 +0000 | [diff] [blame] | 236 | RegisterHandlers(); |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 239 | |
| 240 | // PrintStackTrace - In the case of a program crash or fault, print out a stack |
| 241 | // trace so that the user has an indication of why and where we died. |
| 242 | // |
| 243 | // On glibc systems we have the 'backtrace' function, which works nicely, but |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 244 | // doesn't demangle symbols. |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 245 | static void PrintStackTrace(void *) { |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 246 | #ifdef HAVE_BACKTRACE |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 247 | static void* StackTrace[256]; |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 248 | // Use backtrace() to output a backtrace on Linux systems with glibc. |
Evan Cheng | 34cd4a4 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 249 | int depth = backtrace(StackTrace, |
| 250 | static_cast<int>(array_lengthof(StackTrace))); |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 251 | #if HAVE_DLFCN_H && __GNUG__ |
| 252 | int width = 0; |
| 253 | for (int i = 0; i < depth; ++i) { |
| 254 | Dl_info dlinfo; |
| 255 | dladdr(StackTrace[i], &dlinfo); |
Dan Gohman | d4e1845 | 2009-02-10 17:56:28 +0000 | [diff] [blame] | 256 | const char* name = strrchr(dlinfo.dli_fname, '/'); |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 257 | |
| 258 | int nwidth; |
| 259 | if (name == NULL) nwidth = strlen(dlinfo.dli_fname); |
| 260 | else nwidth = strlen(name) - 1; |
| 261 | |
| 262 | if (nwidth > width) width = nwidth; |
| 263 | } |
| 264 | |
| 265 | for (int i = 0; i < depth; ++i) { |
| 266 | Dl_info dlinfo; |
| 267 | dladdr(StackTrace[i], &dlinfo); |
| 268 | |
Dan Gohman | 0b81e19 | 2009-10-30 02:45:10 +0000 | [diff] [blame] | 269 | fprintf(stderr, "%-2d", i); |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 270 | |
Dan Gohman | d4e1845 | 2009-02-10 17:56:28 +0000 | [diff] [blame] | 271 | const char* name = strrchr(dlinfo.dli_fname, '/'); |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 272 | if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname); |
| 273 | else fprintf(stderr, " %-*s", width, name+1); |
| 274 | |
Dan Gohman | dd17b25 | 2008-12-05 23:39:24 +0000 | [diff] [blame] | 275 | fprintf(stderr, " %#0*lx", |
| 276 | (int)(sizeof(void*) * 2) + 2, (unsigned long)StackTrace[i]); |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 277 | |
| 278 | if (dlinfo.dli_sname != NULL) { |
| 279 | int res; |
| 280 | fputc(' ', stderr); |
| 281 | char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res); |
| 282 | if (d == NULL) fputs(dlinfo.dli_sname, stderr); |
| 283 | else fputs(d, stderr); |
| 284 | free(d); |
| 285 | |
| 286 | fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr); |
| 287 | } |
| 288 | fputc('\n', stderr); |
| 289 | } |
| 290 | #else |
Lauro Ramos Venancio | 2e78b78 | 2008-02-15 18:05:54 +0000 | [diff] [blame] | 291 | backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO); |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 292 | #endif |
Dan Gohman | 56d9b6d | 2008-12-05 20:12:48 +0000 | [diff] [blame] | 293 | #endif |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 294 | } |
| 295 | |
NAKAMURA Takumi | 383fb7f | 2012-09-06 03:01:43 +0000 | [diff] [blame^] | 296 | /// PrintStackTraceOnErrorSignal - When an error signal (such as SIGABRT or |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 297 | /// SIGSEGV) is delivered to the process, print a stack trace and then exit. |
Chris Lattner | f48ba7b | 2009-03-08 19:13:45 +0000 | [diff] [blame] | 298 | void llvm::sys::PrintStackTraceOnErrorSignal() { |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 299 | AddSignalHandler(PrintStackTrace, 0); |
Argyrios Kyrtzidis | 08713b3 | 2012-01-11 20:53:25 +0000 | [diff] [blame] | 300 | |
| 301 | #if defined(__APPLE__) |
| 302 | // Environment variable to disable any kind of crash dialog. |
| 303 | if (getenv("LLVM_DISABLE_CRASH_REPORT")) { |
| 304 | mach_port_t self = mach_task_self(); |
| 305 | |
| 306 | exception_mask_t mask = EXC_MASK_CRASH; |
| 307 | |
| 308 | kern_return_t ret = task_set_exception_ports(self, |
| 309 | mask, |
Jean-Daniel Dupas | 300361a | 2012-03-24 22:17:50 +0000 | [diff] [blame] | 310 | MACH_PORT_NULL, |
Argyrios Kyrtzidis | 08713b3 | 2012-01-11 20:53:25 +0000 | [diff] [blame] | 311 | EXCEPTION_STATE_IDENTITY | MACH_EXCEPTION_CODES, |
Jean-Daniel Dupas | 300361a | 2012-03-24 22:17:50 +0000 | [diff] [blame] | 312 | THREAD_STATE_NONE); |
Argyrios Kyrtzidis | 08713b3 | 2012-01-11 20:53:25 +0000 | [diff] [blame] | 313 | (void)ret; |
| 314 | } |
| 315 | #endif |
Reid Spencer | 496c277 | 2004-08-29 19:22:48 +0000 | [diff] [blame] | 316 | } |
Chris Lattner | 35033a5 | 2009-03-04 21:21:36 +0000 | [diff] [blame] | 317 | |
Daniel Dunbar | b08ceb8 | 2010-08-19 23:45:39 +0000 | [diff] [blame] | 318 | |
| 319 | /***/ |
| 320 | |
| 321 | // On Darwin, raise sends a signal to the main thread instead of the current |
| 322 | // thread. This has the unfortunate effect that assert() and abort() will end up |
| 323 | // bypassing our crash recovery attempts. We work around this for anything in |
| 324 | // the same linkage unit by just defining our own versions of the assert handler |
| 325 | // and abort. |
| 326 | |
| 327 | #ifdef __APPLE__ |
| 328 | |
Douglas Gregor | 72d30f6 | 2011-04-29 16:12:17 +0000 | [diff] [blame] | 329 | #include <signal.h> |
| 330 | #include <pthread.h> |
| 331 | |
Daniel Dunbar | e4e06a8 | 2010-09-22 17:46:10 +0000 | [diff] [blame] | 332 | int raise(int sig) { |
Daniel Dunbar | 95b4672 | 2010-10-08 18:31:34 +0000 | [diff] [blame] | 333 | return pthread_kill(pthread_self(), sig); |
Daniel Dunbar | e4e06a8 | 2010-09-22 17:46:10 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Daniel Dunbar | b08ceb8 | 2010-08-19 23:45:39 +0000 | [diff] [blame] | 336 | void __assert_rtn(const char *func, |
| 337 | const char *file, |
| 338 | int line, |
| 339 | const char *expr) { |
| 340 | if (func) |
| 341 | fprintf(stderr, "Assertion failed: (%s), function %s, file %s, line %d.\n", |
| 342 | expr, func, file, line); |
| 343 | else |
| 344 | fprintf(stderr, "Assertion failed: (%s), file %s, line %d.\n", |
| 345 | expr, file, line); |
| 346 | abort(); |
| 347 | } |
| 348 | |
Daniel Dunbar | b08ceb8 | 2010-08-19 23:45:39 +0000 | [diff] [blame] | 349 | void abort() { |
Daniel Dunbar | e4e06a8 | 2010-09-22 17:46:10 +0000 | [diff] [blame] | 350 | raise(SIGABRT); |
Daniel Dunbar | b08ceb8 | 2010-08-19 23:45:39 +0000 | [diff] [blame] | 351 | usleep(1000); |
| 352 | __builtin_trap(); |
| 353 | } |
| 354 | |
| 355 | #endif |