blob: abb6a3363772ea45a88721cfba7fde750d13b957 [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
34namespace {
35
Dan Gohmanffc2f032008-04-10 21:11:47 +000036static bool StackTraceRequested = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037
38/// InterruptFunction - The function to call if ctrl-c is pressed.
Dan Gohmanffc2f032008-04-10 21:11:47 +000039static void (*InterruptFunction)() = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040
Dan Gohmanffc2f032008-04-10 21:11:47 +000041static std::vector<sys::Path> *FilesToRemove = 0 ;
42static std::vector<sys::Path> *DirectoriesToRemove = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043
44// IntSigs - Signals that may interrupt the program at any time.
Dan Gohmanffc2f032008-04-10 21:11:47 +000045static const int IntSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
47};
Dan Gohmanc336a132008-05-14 00:42:30 +000048static const int *const IntSigsEnd =
49 IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050
51// KillSigs - Signals that are synchronous with the program that will cause it
52// to die.
Dan Gohmanffc2f032008-04-10 21:11:47 +000053static const int KillSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
55#ifdef SIGEMT
56 , SIGEMT
57#endif
58};
Dan Gohmanc336a132008-05-14 00:42:30 +000059static const int *const KillSigsEnd =
60 KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62#ifdef HAVE_BACKTRACE
Dan Gohmanffc2f032008-04-10 21:11:47 +000063static void* StackTrace[256];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064#endif
65
66// PrintStackTrace - In the case of a program crash or fault, print out a stack
67// trace so that the user has an indication of why and where we died.
68//
69// On glibc systems we have the 'backtrace' function, which works nicely, but
Lauro Ramos Venancio538db762008-02-15 18:05:54 +000070// doesn't demangle symbols.
Dan Gohmanffc2f032008-04-10 21:11:47 +000071static void PrintStackTrace() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072#ifdef HAVE_BACKTRACE
73 // Use backtrace() to output a backtrace on Linux systems with glibc.
Evan Cheng591bfc82008-05-05 18:30:58 +000074 int depth = backtrace(StackTrace,
75 static_cast<int>(array_lengthof(StackTrace)));
Dan Gohman3d313232008-12-05 20:12:48 +000076#if HAVE_DLFCN_H && __GNUG__
77 int width = 0;
78 for (int i = 0; i < depth; ++i) {
79 Dl_info dlinfo;
80 dladdr(StackTrace[i], &dlinfo);
81 char* name = strrchr(dlinfo.dli_fname, '/');
82
83 int nwidth;
84 if (name == NULL) nwidth = strlen(dlinfo.dli_fname);
85 else nwidth = strlen(name) - 1;
86
87 if (nwidth > width) width = nwidth;
88 }
89
90 for (int i = 0; i < depth; ++i) {
91 Dl_info dlinfo;
92 dladdr(StackTrace[i], &dlinfo);
93
94 fprintf(stderr, "%-3d", i);
95
96 char* name = strrchr(dlinfo.dli_fname, '/');
97 if (name == NULL) fprintf(stderr, " %-*s", width, dlinfo.dli_fname);
98 else fprintf(stderr, " %-*s", width, name+1);
99
100 fprintf(stderr, " %#0*x", (int)(sizeof(void*) * 2) + 2, StackTrace[i]);
101
102 if (dlinfo.dli_sname != NULL) {
103 int res;
104 fputc(' ', stderr);
105 char* d = abi::__cxa_demangle(dlinfo.dli_sname, NULL, NULL, &res);
106 if (d == NULL) fputs(dlinfo.dli_sname, stderr);
107 else fputs(d, stderr);
108 free(d);
109
110 fprintf(stderr, " + %tu",(char*)StackTrace[i]-(char*)dlinfo.dli_saddr);
111 }
112 fputc('\n', stderr);
113 }
114#else
Lauro Ramos Venancio538db762008-02-15 18:05:54 +0000115 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116#endif
Dan Gohman3d313232008-12-05 20:12:48 +0000117#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118}
119
120// SignalHandler - The signal handler that runs...
Dan Gohmanffc2f032008-04-10 21:11:47 +0000121static RETSIGTYPE SignalHandler(int Sig) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 if (FilesToRemove != 0)
123 while (!FilesToRemove->empty()) {
124 FilesToRemove->back().eraseFromDisk(true);
125 FilesToRemove->pop_back();
126 }
127
128 if (DirectoriesToRemove != 0)
129 while (!DirectoriesToRemove->empty()) {
130 DirectoriesToRemove->back().eraseFromDisk(true);
131 DirectoriesToRemove->pop_back();
132 }
133
134 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
135 if (InterruptFunction) {
136 void (*IF)() = InterruptFunction;
137 InterruptFunction = 0;
138 IF(); // run the interrupt function.
139 return;
140 } else {
141 exit(1); // If this is an interrupt signal, exit the program
142 }
143 }
144
145 // Otherwise if it is a fault (like SEGV) output the stacktrace to
146 // STDERR (if we can) and reissue the signal to die...
147 if (StackTraceRequested)
148 PrintStackTrace();
149 signal(Sig, SIG_DFL);
150}
151
152// Just call signal
Dan Gohmanffc2f032008-04-10 21:11:47 +0000153static void RegisterHandler(int Signal) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 signal(Signal, SignalHandler);
155}
156
157}
158
159
160void sys::SetInterruptFunction(void (*IF)()) {
161 InterruptFunction = IF;
162 RegisterHandler(SIGINT);
163}
164
165// RemoveFileOnSignal - The public API
166bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
167 if (FilesToRemove == 0)
168 FilesToRemove = new std::vector<sys::Path>;
169
170 FilesToRemove->push_back(Filename);
171
172 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
173 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
174 return false;
175}
176
177// RemoveDirectoryOnSignal - The public API
178bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) {
179 // Not a directory?
180 struct stat buf;
181 if (0 != stat(path.c_str(), &buf)) {
182 MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file");
183 return true;
184 }
185
186 if (!S_ISDIR(buf.st_mode)) {
187 if (ErrMsg)
188 *ErrMsg = path.toString() + " is not a directory";
189 return true;
190 }
191
192 if (DirectoriesToRemove == 0)
193 DirectoriesToRemove = new std::vector<sys::Path>;
194
195 DirectoriesToRemove->push_back(path);
196
197 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
198 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
199 return false;
200}
201
202/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
203/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
204void sys::PrintStackTraceOnErrorSignal() {
205 StackTraceRequested = true;
206 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
207}