blob: 79236cdad9311ba624338ab2d75cbfeb8590ab19 [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
28using namespace llvm;
29
30namespace {
31
Dan Gohmanffc2f032008-04-10 21:11:47 +000032static bool StackTraceRequested = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
34/// 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
Dan Gohmanffc2f032008-04-10 21:11:47 +000037static std::vector<sys::Path> *FilesToRemove = 0 ;
38static std::vector<sys::Path> *DirectoriesToRemove = 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 Gohmanffc2f032008-04-10 21:11:47 +000044static const int *IntSigsEnd = IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045
46// KillSigs - Signals that are synchronous with the program that will cause it
47// to die.
Dan Gohmanffc2f032008-04-10 21:11:47 +000048static const int KillSigs[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
50#ifdef SIGEMT
51 , SIGEMT
52#endif
53};
Dan Gohmanffc2f032008-04-10 21:11:47 +000054static const int *KillSigsEnd = KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055
56#ifdef HAVE_BACKTRACE
Dan Gohmanffc2f032008-04-10 21:11:47 +000057static void* StackTrace[256];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058#endif
59
60// PrintStackTrace - In the case of a program crash or fault, print out a stack
61// trace so that the user has an indication of why and where we died.
62//
63// On glibc systems we have the 'backtrace' function, which works nicely, but
Lauro Ramos Venancio538db762008-02-15 18:05:54 +000064// doesn't demangle symbols.
Dan Gohmanffc2f032008-04-10 21:11:47 +000065static void PrintStackTrace() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066#ifdef HAVE_BACKTRACE
67 // Use backtrace() to output a backtrace on Linux systems with glibc.
Evan Cheng591bfc82008-05-05 18:30:58 +000068 int depth = backtrace(StackTrace,
69 static_cast<int>(array_lengthof(StackTrace)));
Lauro Ramos Venancio538db762008-02-15 18:05:54 +000070 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071#endif
72}
73
74// SignalHandler - The signal handler that runs...
Dan Gohmanffc2f032008-04-10 21:11:47 +000075static RETSIGTYPE SignalHandler(int Sig) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 if (FilesToRemove != 0)
77 while (!FilesToRemove->empty()) {
78 FilesToRemove->back().eraseFromDisk(true);
79 FilesToRemove->pop_back();
80 }
81
82 if (DirectoriesToRemove != 0)
83 while (!DirectoriesToRemove->empty()) {
84 DirectoriesToRemove->back().eraseFromDisk(true);
85 DirectoriesToRemove->pop_back();
86 }
87
88 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
89 if (InterruptFunction) {
90 void (*IF)() = InterruptFunction;
91 InterruptFunction = 0;
92 IF(); // run the interrupt function.
93 return;
94 } else {
95 exit(1); // If this is an interrupt signal, exit the program
96 }
97 }
98
99 // Otherwise if it is a fault (like SEGV) output the stacktrace to
100 // STDERR (if we can) and reissue the signal to die...
101 if (StackTraceRequested)
102 PrintStackTrace();
103 signal(Sig, SIG_DFL);
104}
105
106// Just call signal
Dan Gohmanffc2f032008-04-10 21:11:47 +0000107static void RegisterHandler(int Signal) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 signal(Signal, SignalHandler);
109}
110
111}
112
113
114void sys::SetInterruptFunction(void (*IF)()) {
115 InterruptFunction = IF;
116 RegisterHandler(SIGINT);
117}
118
119// RemoveFileOnSignal - The public API
120bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
121 if (FilesToRemove == 0)
122 FilesToRemove = new std::vector<sys::Path>;
123
124 FilesToRemove->push_back(Filename);
125
126 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
127 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
128 return false;
129}
130
131// RemoveDirectoryOnSignal - The public API
132bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) {
133 // Not a directory?
134 struct stat buf;
135 if (0 != stat(path.c_str(), &buf)) {
136 MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file");
137 return true;
138 }
139
140 if (!S_ISDIR(buf.st_mode)) {
141 if (ErrMsg)
142 *ErrMsg = path.toString() + " is not a directory";
143 return true;
144 }
145
146 if (DirectoriesToRemove == 0)
147 DirectoriesToRemove = new std::vector<sys::Path>;
148
149 DirectoriesToRemove->push_back(path);
150
151 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
152 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
153 return false;
154}
155
156/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
157/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
158void sys::PrintStackTraceOnErrorSignal() {
159 StackTraceRequested = true;
160 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
161}