move some code to gracefully handle the case when a handler crashes.
[oota-llvm.git] / lib / System / Unix / Signals.inc
1 //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
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"
16 #include "llvm/ADT/STLExtras.h"
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
28 #if HAVE_DLFCN_H && __GNUG__
29 #include <dlfcn.h>
30 #include <cxxabi.h> 
31 #endif
32 using namespace llvm;
33
34 /// InterruptFunction - The function to call if ctrl-c is pressed.
35 static void (*InterruptFunction)() = 0;
36
37 static std::vector<sys::Path> *FilesToRemove = 0;
38 static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0;
39
40 // IntSigs - Signals that may interrupt the program at any time.
41 static const int IntSigs[] = {
42   SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
43 };
44 static const int *const IntSigsEnd =
45   IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]);
46
47 // KillSigs - Signals that are synchronous with the program that will cause it
48 // to die.
49 static const int KillSigs[] = {
50   SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
51 #ifdef SIGEMT
52   , SIGEMT
53 #endif
54 };
55 static const int *const KillSigsEnd =
56   KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]);
57
58 // SignalHandler - The signal handler that runs...
59 static RETSIGTYPE SignalHandler(int Sig) {
60   // Restore the signal behavior to default, so that the program actually
61   // crashes when we return and the signal reissues.  This also ensures that if
62   // we crash in our signal handler that the program will terminate immediately
63   // instead of recursing in the signal handler.
64   signal(Sig, SIG_DFL);
65
66   if (FilesToRemove != 0)
67     while (!FilesToRemove->empty()) {
68       FilesToRemove->back().eraseFromDisk(true);
69       FilesToRemove->pop_back();
70     }
71
72   if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
73     if (InterruptFunction) {
74       void (*IF)() = InterruptFunction;
75       InterruptFunction = 0;
76       IF();        // run the interrupt function.
77       return;
78     }
79     exit(1);   // If this is an interrupt signal, exit the program
80   }
81
82   // Otherwise if it is a fault (like SEGV) run any handler.
83   if (CallBacksToRun)
84     for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i)
85       (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second);
86 }
87
88 // Just call signal
89 static void RegisterHandler(int Signal) { 
90   signal(Signal, SignalHandler); 
91 }
92
93
94
95 void sys::SetInterruptFunction(void (*IF)()) {
96   InterruptFunction = IF;
97   RegisterHandler(SIGINT);
98 }
99
100 // RemoveFileOnSignal - The public API
101 bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
102   if (FilesToRemove == 0)
103     FilesToRemove = new std::vector<sys::Path>();
104
105   FilesToRemove->push_back(Filename);
106
107   std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
108   std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
109   return false;
110 }
111
112 /// AddSignalHandler - Add a function to be called when a signal is delivered
113 /// to the process.  The handler can have a cookie passed to it to identify
114 /// what instance of the handler it is.
115 void sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
116   if (CallBacksToRun == 0)
117     CallBacksToRun = new std::vector<std::pair<void(*)(void*), void*> >();
118   CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie));
119   std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
120 }
121
122
123 // PrintStackTrace - In the case of a program crash or fault, print out a stack
124 // trace so that the user has an indication of why and where we died.
125 //
126 // On glibc systems we have the 'backtrace' function, which works nicely, but
127 // doesn't demangle symbols.  
128 static void PrintStackTrace(void *) {
129 #ifdef HAVE_BACKTRACE
130   static void* StackTrace[256];
131   // Use backtrace() to output a backtrace on Linux systems with glibc.
132   int depth = backtrace(StackTrace,
133                         static_cast<int>(array_lengthof(StackTrace)));
134 #if HAVE_DLFCN_H && __GNUG__
135   int width = 0;
136   for (int i = 0; i < depth; ++i) {
137     Dl_info dlinfo;
138     dladdr(StackTrace[i], &dlinfo);
139     const char* name = strrchr(dlinfo.dli_fname, '/');
140
141     int nwidth;
142     if (name == NULL) nwidth = strlen(dlinfo.dli_fname);
143     else              nwidth = strlen(name) - 1;
144
145     if (nwidth > width) width = nwidth;
146   }
147
148   for (int i = 0; i < depth; ++i) {
149     Dl_info dlinfo;
150     dladdr(StackTrace[i], &dlinfo);
151
152     fprintf(stderr, "%-3d", i);
153
154     const char* name = strrchr(dlinfo.dli_fname, '/');
155     if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname);
156     else              fprintf(stderr, " %-*s", width, name+1);
157
158     fprintf(stderr, " %#0*lx",
159             (int)(sizeof(void*) * 2) + 2, (unsigned long)StackTrace[i]);
160
161     if (dlinfo.dli_sname != NULL) {
162       int res;
163       fputc(' ', stderr);
164       char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res);
165       if (d == NULL) fputs(dlinfo.dli_sname, stderr);
166       else           fputs(d, stderr);
167       free(d);
168
169       fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr);
170     }
171     fputc('\n', stderr);
172   }
173 #else
174   backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
175 #endif
176 #endif
177 }
178
179 /// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
180 /// SIGSEGV) is delivered to the process, print a stack trace and then exit.
181 void sys::PrintStackTraceOnErrorSignal() {
182   AddSignalHandler(PrintStackTrace, 0);
183 }
184