blob: 94f6b6c4a3961749e85bcebe5829cda179963ba7 [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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034/// InterruptFunction - The function to call if ctrl-c is pressed.
Dan Gohmanffc2f032008-04-10 21:11:47 +000035static void (*InterruptFunction)() = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036
Chris Lattner199997b2009-03-04 21:21:36 +000037static std::vector<sys::Path> *FilesToRemove = 0;
38static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039
40// IntSigs - Signals that may interrupt the program at any time.
Dan Gohmanffc2f032008-04-10 21:11:47 +000041static const int IntSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
43};
Dan Gohmanc336a132008-05-14 00:42:30 +000044static const int *const IntSigsEnd =
45 IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046
47// KillSigs - Signals that are synchronous with the program that will cause it
48// to die.
Dan Gohmanffc2f032008-04-10 21:11:47 +000049static const int KillSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
51#ifdef SIGEMT
52 , SIGEMT
53#endif
54};
Dan Gohmanc336a132008-05-14 00:42:30 +000055static const int *const KillSigsEnd =
56 KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057
Chris Lattnerf74e6ef2009-03-07 08:15:47 +000058static void UnregisterHandler(int Signal) {
59 signal(Signal, SIG_DFL);
60}
61
62
63// SignalHandler - The signal handler that runs.
Chris Lattner199997b2009-03-04 21:21:36 +000064static RETSIGTYPE SignalHandler(int Sig) {
Chris Lattner52a5f392009-03-05 18:22:14 +000065 // Restore the signal behavior to default, so that the program actually
66 // crashes when we return and the signal reissues. This also ensures that if
67 // we crash in our signal handler that the program will terminate immediately
68 // instead of recursing in the signal handler.
Chris Lattnerf74e6ef2009-03-07 08:15:47 +000069 std::for_each(KillSigs, KillSigsEnd, UnregisterHandler);
70
71 // Unmask all potentially blocked kill signals.
72 sigset_t SigMask;
73 sigfillset(&SigMask);
74 sigprocmask(SIG_UNBLOCK, &SigMask, 0);
Chris Lattner52a5f392009-03-05 18:22:14 +000075
Chris Lattner199997b2009-03-04 21:21:36 +000076 if (FilesToRemove != 0)
77 while (!FilesToRemove->empty()) {
78 FilesToRemove->back().eraseFromDisk(true);
79 FilesToRemove->pop_back();
80 }
81
82 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
83 if (InterruptFunction) {
84 void (*IF)() = InterruptFunction;
85 InterruptFunction = 0;
86 IF(); // run the interrupt function.
87 return;
88 }
89 exit(1); // If this is an interrupt signal, exit the program
90 }
91
92 // Otherwise if it is a fault (like SEGV) run any handler.
93 if (CallBacksToRun)
94 for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i)
95 (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second);
Chris Lattner199997b2009-03-04 21:21:36 +000096}
97
98// Just call signal
Chris Lattnerf74e6ef2009-03-07 08:15:47 +000099static void RegisterHandler(int Signal) {
100 signal(Signal, SignalHandler);
Chris Lattner199997b2009-03-04 21:21:36 +0000101}
102
103
Chris Lattner199997b2009-03-04 21:21:36 +0000104void sys::SetInterruptFunction(void (*IF)()) {
105 InterruptFunction = IF;
106 RegisterHandler(SIGINT);
107}
108
109// RemoveFileOnSignal - The public API
110bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
111 if (FilesToRemove == 0)
112 FilesToRemove = new std::vector<sys::Path>();
113
114 FilesToRemove->push_back(Filename);
115
116 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
117 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
118 return false;
119}
120
121/// AddSignalHandler - Add a function to be called when a signal is delivered
122/// to the process. The handler can have a cookie passed to it to identify
123/// what instance of the handler it is.
124void sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
125 if (CallBacksToRun == 0)
126 CallBacksToRun = new std::vector<std::pair<void(*)(void*), void*> >();
127 CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie));
128 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
129}
130
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131
132// PrintStackTrace - In the case of a program crash or fault, print out a stack
133// trace so that the user has an indication of why and where we died.
134//
135// On glibc systems we have the 'backtrace' function, which works nicely, but
Lauro Ramos Venancio538db762008-02-15 18:05:54 +0000136// doesn't demangle symbols.
Chris Lattner199997b2009-03-04 21:21:36 +0000137static void PrintStackTrace(void *) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138#ifdef HAVE_BACKTRACE
Chris Lattner199997b2009-03-04 21:21:36 +0000139 static void* StackTrace[256];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 // Use backtrace() to output a backtrace on Linux systems with glibc.
Evan Cheng591bfc82008-05-05 18:30:58 +0000141 int depth = backtrace(StackTrace,
142 static_cast<int>(array_lengthof(StackTrace)));
Dan Gohman3d313232008-12-05 20:12:48 +0000143#if HAVE_DLFCN_H && __GNUG__
144 int width = 0;
145 for (int i = 0; i < depth; ++i) {
146 Dl_info dlinfo;
147 dladdr(StackTrace[i], &dlinfo);
Dan Gohman2f75d522009-02-10 17:56:28 +0000148 const char* name = strrchr(dlinfo.dli_fname, '/');
Dan Gohman3d313232008-12-05 20:12:48 +0000149
150 int nwidth;
151 if (name == NULL) nwidth = strlen(dlinfo.dli_fname);
152 else nwidth = strlen(name) - 1;
153
154 if (nwidth > width) width = nwidth;
155 }
156
157 for (int i = 0; i < depth; ++i) {
158 Dl_info dlinfo;
159 dladdr(StackTrace[i], &dlinfo);
160
161 fprintf(stderr, "%-3d", i);
162
Dan Gohman2f75d522009-02-10 17:56:28 +0000163 const char* name = strrchr(dlinfo.dli_fname, '/');
Dan Gohman3d313232008-12-05 20:12:48 +0000164 if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname);
165 else fprintf(stderr, " %-*s", width, name+1);
166
Dan Gohman0a48f142008-12-05 23:39:24 +0000167 fprintf(stderr, " %#0*lx",
168 (int)(sizeof(void*) * 2) + 2, (unsigned long)StackTrace[i]);
Dan Gohman3d313232008-12-05 20:12:48 +0000169
170 if (dlinfo.dli_sname != NULL) {
171 int res;
172 fputc(' ', stderr);
173 char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res);
174 if (d == NULL) fputs(dlinfo.dli_sname, stderr);
175 else fputs(d, stderr);
176 free(d);
177
178 fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr);
179 }
180 fputc('\n', stderr);
181 }
182#else
Lauro Ramos Venancio538db762008-02-15 18:05:54 +0000183 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184#endif
Dan Gohman3d313232008-12-05 20:12:48 +0000185#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186}
187
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
189/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
190void sys::PrintStackTraceOnErrorSignal() {
Chris Lattner199997b2009-03-04 21:21:36 +0000191 AddSignalHandler(PrintStackTrace, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192}
Chris Lattner199997b2009-03-04 21:21:36 +0000193