blob: e385e0c5566257b0eb7d09fa301250d9fff4046b [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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 Anderson1636de92007-09-07 04:06:50 +000016#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#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 Gohman3d313232008-12-05 20:12:48 +000028#if HAVE_DLFCN_H && __GNUG__
29#include <dlfcn.h>
30#include <cxxabi.h>
31#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032using namespace llvm;
33
Chris Lattner661fc342009-03-23 05:42:29 +000034static RETSIGTYPE SignalHandler(int Sig); // defined below.
35
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036/// InterruptFunction - The function to call if ctrl-c is pressed.
Dan Gohmanffc2f032008-04-10 21:11:47 +000037static void (*InterruptFunction)() = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038
Chris Lattner199997b2009-03-04 21:21:36 +000039static std::vector<sys::Path> *FilesToRemove = 0;
40static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041
42// IntSigs - Signals that may interrupt the program at any time.
Dan Gohmanffc2f032008-04-10 21:11:47 +000043static const int IntSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
45};
Dan Gohmanc336a132008-05-14 00:42:30 +000046static const int *const IntSigsEnd =
47 IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048
49// KillSigs - Signals that are synchronous with the program that will cause it
50// to die.
Dan Gohmanffc2f032008-04-10 21:11:47 +000051static const int KillSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
53#ifdef SIGEMT
54 , SIGEMT
55#endif
56};
Dan Gohmanc336a132008-05-14 00:42:30 +000057static const int *const KillSigsEnd =
58 KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059
Chris Lattner48c6b8d2009-03-23 05:55:36 +000060static unsigned NumRegisteredSignals = 0;
61static struct {
62 struct sigaction SA;
63 int SigNo;
64} RegisteredSignalInfo[(sizeof(IntSigs)+sizeof(KillSigs))/sizeof(KillSigs[0])];
65
66
Chris Lattner661fc342009-03-23 05:42:29 +000067static void RegisterHandler(int Signal) {
Chris Lattner48c6b8d2009-03-23 05:55:36 +000068 assert(NumRegisteredSignals <
69 sizeof(RegisteredSignalInfo)/sizeof(RegisteredSignalInfo[0]) &&
70 "Out of space for signal handlers!");
71
72 struct sigaction NewHandler;
73
74 NewHandler.sa_handler = SignalHandler;
75 NewHandler.sa_flags = SA_NODEFER|SA_RESETHAND;
76 sigemptyset(&NewHandler.sa_mask);
77
78 // Install the new handler, save the old one in RegisteredSignalInfo.
79 sigaction(Signal, &NewHandler,
80 &RegisteredSignalInfo[NumRegisteredSignals].SA);
81 RegisteredSignalInfo[NumRegisteredSignals].SigNo = Signal;
82 ++NumRegisteredSignals;
Chris Lattnerf74e6ef2009-03-07 08:15:47 +000083}
84
Chris Lattner661fc342009-03-23 05:42:29 +000085static void RegisterHandlers() {
Chris Lattner48c6b8d2009-03-23 05:55:36 +000086 // If the handlers are already registered, we're done.
87 if (NumRegisteredSignals != 0) return;
88
Chris Lattner661fc342009-03-23 05:42:29 +000089 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
90 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
91}
92
Chris Lattner661fc342009-03-23 05:42:29 +000093static void UnregisterHandlers() {
Chris Lattner48c6b8d2009-03-23 05:55:36 +000094 // Restore all of the signal handlers to how they were before we showed up.
95 for (unsigned i = 0, e = NumRegisteredSignals; i != e; ++i)
Chris Lattner9d5b4d92009-03-23 06:46:20 +000096 sigaction(RegisteredSignalInfo[i].SigNo,
97 &RegisteredSignalInfo[i].SA, 0);
Chris Lattner48c6b8d2009-03-23 05:55:36 +000098 NumRegisteredSignals = 0;
Chris Lattner661fc342009-03-23 05:42:29 +000099}
100
101
Chris Lattnerf74e6ef2009-03-07 08:15:47 +0000102
103// SignalHandler - The signal handler that runs.
Chris Lattner199997b2009-03-04 21:21:36 +0000104static RETSIGTYPE SignalHandler(int Sig) {
Chris Lattner52a5f392009-03-05 18:22:14 +0000105 // Restore the signal behavior to default, so that the program actually
106 // crashes when we return and the signal reissues. This also ensures that if
107 // we crash in our signal handler that the program will terminate immediately
108 // instead of recursing in the signal handler.
Chris Lattner661fc342009-03-23 05:42:29 +0000109 UnregisterHandlers();
Chris Lattnerf74e6ef2009-03-07 08:15:47 +0000110
111 // Unmask all potentially blocked kill signals.
112 sigset_t SigMask;
113 sigfillset(&SigMask);
114 sigprocmask(SIG_UNBLOCK, &SigMask, 0);
Chris Lattner52a5f392009-03-05 18:22:14 +0000115
Chris Lattner199997b2009-03-04 21:21:36 +0000116 if (FilesToRemove != 0)
117 while (!FilesToRemove->empty()) {
118 FilesToRemove->back().eraseFromDisk(true);
119 FilesToRemove->pop_back();
120 }
121
122 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
123 if (InterruptFunction) {
124 void (*IF)() = InterruptFunction;
125 InterruptFunction = 0;
126 IF(); // run the interrupt function.
127 return;
128 }
Chris Lattner2f1b1992009-04-12 23:33:13 +0000129 raise(Sig); // Execute the default handler.
130 return;
Chris Lattner199997b2009-03-04 21:21:36 +0000131 }
132
133 // Otherwise if it is a fault (like SEGV) run any handler.
134 if (CallBacksToRun)
135 for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i)
136 (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second);
Chris Lattner199997b2009-03-04 21:21:36 +0000137}
138
Chris Lattner199997b2009-03-04 21:21:36 +0000139
140
Chris Lattnerafea1b72009-03-08 19:13:45 +0000141void llvm::sys::SetInterruptFunction(void (*IF)()) {
Chris Lattner199997b2009-03-04 21:21:36 +0000142 InterruptFunction = IF;
Chris Lattner661fc342009-03-23 05:42:29 +0000143 RegisterHandlers();
Chris Lattner199997b2009-03-04 21:21:36 +0000144}
145
146// RemoveFileOnSignal - The public API
Chris Lattnerafea1b72009-03-08 19:13:45 +0000147bool llvm::sys::RemoveFileOnSignal(const sys::Path &Filename,
148 std::string* ErrMsg) {
Chris Lattner199997b2009-03-04 21:21:36 +0000149 if (FilesToRemove == 0)
150 FilesToRemove = new std::vector<sys::Path>();
151
152 FilesToRemove->push_back(Filename);
153
Chris Lattner661fc342009-03-23 05:42:29 +0000154 RegisterHandlers();
Chris Lattner199997b2009-03-04 21:21:36 +0000155 return false;
156}
157
158/// AddSignalHandler - Add a function to be called when a signal is delivered
159/// to the process. The handler can have a cookie passed to it to identify
160/// what instance of the handler it is.
Chris Lattnerafea1b72009-03-08 19:13:45 +0000161void llvm::sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
Chris Lattner199997b2009-03-04 21:21:36 +0000162 if (CallBacksToRun == 0)
163 CallBacksToRun = new std::vector<std::pair<void(*)(void*), void*> >();
164 CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie));
Chris Lattner661fc342009-03-23 05:42:29 +0000165 RegisterHandlers();
Chris Lattner199997b2009-03-04 21:21:36 +0000166}
167
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168
169// PrintStackTrace - In the case of a program crash or fault, print out a stack
170// trace so that the user has an indication of why and where we died.
171//
172// On glibc systems we have the 'backtrace' function, which works nicely, but
Lauro Ramos Venancio538db762008-02-15 18:05:54 +0000173// doesn't demangle symbols.
Chris Lattner199997b2009-03-04 21:21:36 +0000174static void PrintStackTrace(void *) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175#ifdef HAVE_BACKTRACE
Chris Lattner199997b2009-03-04 21:21:36 +0000176 static void* StackTrace[256];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 // Use backtrace() to output a backtrace on Linux systems with glibc.
Evan Cheng591bfc82008-05-05 18:30:58 +0000178 int depth = backtrace(StackTrace,
179 static_cast<int>(array_lengthof(StackTrace)));
Dan Gohman3d313232008-12-05 20:12:48 +0000180#if HAVE_DLFCN_H && __GNUG__
181 int width = 0;
182 for (int i = 0; i < depth; ++i) {
183 Dl_info dlinfo;
184 dladdr(StackTrace[i], &dlinfo);
Dan Gohman2f75d522009-02-10 17:56:28 +0000185 const char* name = strrchr(dlinfo.dli_fname, '/');
Dan Gohman3d313232008-12-05 20:12:48 +0000186
187 int nwidth;
188 if (name == NULL) nwidth = strlen(dlinfo.dli_fname);
189 else nwidth = strlen(name) - 1;
190
191 if (nwidth > width) width = nwidth;
192 }
193
194 for (int i = 0; i < depth; ++i) {
195 Dl_info dlinfo;
196 dladdr(StackTrace[i], &dlinfo);
197
198 fprintf(stderr, "%-3d", i);
199
Dan Gohman2f75d522009-02-10 17:56:28 +0000200 const char* name = strrchr(dlinfo.dli_fname, '/');
Dan Gohman3d313232008-12-05 20:12:48 +0000201 if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname);
202 else fprintf(stderr, " %-*s", width, name+1);
203
Dan Gohman0a48f142008-12-05 23:39:24 +0000204 fprintf(stderr, " %#0*lx",
205 (int)(sizeof(void*) * 2) + 2, (unsigned long)StackTrace[i]);
Dan Gohman3d313232008-12-05 20:12:48 +0000206
207 if (dlinfo.dli_sname != NULL) {
208 int res;
209 fputc(' ', stderr);
210 char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res);
211 if (d == NULL) fputs(dlinfo.dli_sname, stderr);
212 else fputs(d, stderr);
213 free(d);
214
215 fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr);
216 }
217 fputc('\n', stderr);
218 }
219#else
Lauro Ramos Venancio538db762008-02-15 18:05:54 +0000220 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221#endif
Dan Gohman3d313232008-12-05 20:12:48 +0000222#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223}
224
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
226/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
Chris Lattnerafea1b72009-03-08 19:13:45 +0000227void llvm::sys::PrintStackTraceOnErrorSignal() {
Chris Lattner199997b2009-03-04 21:21:36 +0000228 AddSignalHandler(PrintStackTrace, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229}
Chris Lattner199997b2009-03-04 21:21:36 +0000230