blob: d1493a26c9bb8f1dabb15aa76f5617508ced1fc1 [file] [log] [blame]
Reid Spencer496c2772004-08-29 19:22:48 +00001//===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 <vector>
17#include <algorithm>
Reid Spencercdf54d02004-12-27 06:16:52 +000018#if HAVE_EXECINFO_H
Reid Spencer496c2772004-08-29 19:22:48 +000019# include <execinfo.h> // For backtrace().
20#endif
Reid Spencercdf54d02004-12-27 06:16:52 +000021#if HAVE_SIGNAL_H
Reid Spencer496c2772004-08-29 19:22:48 +000022#include <signal.h>
Reid Spencercdf54d02004-12-27 06:16:52 +000023#endif
Reid Spencer2ae9d112007-04-07 18:52:17 +000024#if HAVE_SYS_STAT_H
25#include <sys/stat.h>
26#endif
Chris Lattner89615012006-08-01 17:59:14 +000027using namespace llvm;
Reid Spencer496c2772004-08-29 19:22:48 +000028
29namespace {
30
Reid Spencerdc6830f2006-06-16 00:00:57 +000031bool StackTraceRequested = false;
32
Chris Lattnerfa8c2922005-08-02 02:14:22 +000033/// InterruptFunction - The function to call if ctrl-c is pressed.
34void (*InterruptFunction)() = 0;
35
Reid Spencera8e80c52006-08-07 05:34:08 +000036std::vector<sys::Path> *FilesToRemove = 0 ;
Chris Lattner89615012006-08-01 17:59:14 +000037std::vector<sys::Path> *DirectoriesToRemove = 0;
Reid Spencer496c2772004-08-29 19:22:48 +000038
39// IntSigs - Signals that may interrupt the program at any time.
40const int IntSigs[] = {
41 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
42};
43const int *IntSigsEnd = IntSigs + sizeof(IntSigs)/sizeof(IntSigs[0]);
44
45// KillSigs - Signals that are synchronous with the program that will cause it
46// to die.
47const int KillSigs[] = {
48 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
49#ifdef SIGEMT
50 , SIGEMT
51#endif
52};
53const int *KillSigsEnd = KillSigs + sizeof(KillSigs)/sizeof(KillSigs[0]);
54
55#ifdef HAVE_BACKTRACE
56void* StackTrace[256];
57#endif
58
59// PrintStackTrace - In the case of a program crash or fault, print out a stack
60// trace so that the user has an indication of why and where we died.
61//
62// On glibc systems we have the 'backtrace' function, which works nicely, but
63// doesn't demangle symbols. In order to backtrace symbols, we fork and exec a
64// 'c++filt' process to do the demangling. This seems like the simplest and
65// most robust solution when we can't allocate memory (such as in a signal
66// handler). If we can't find 'c++filt', we fallback to printing mangled names.
67//
68void PrintStackTrace() {
69#ifdef HAVE_BACKTRACE
70 // Use backtrace() to output a backtrace on Linux systems with glibc.
71 int depth = backtrace(StackTrace, sizeof(StackTrace)/sizeof(StackTrace[0]));
72
73 // Create a one-way unix pipe. The backtracing process writes to PipeFDs[1],
74 // the c++filt process reads from PipeFDs[0].
75 int PipeFDs[2];
76 if (pipe(PipeFDs)) {
77 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
78 return;
79 }
80
81 switch (pid_t ChildPID = fork()) {
82 case -1: // Error forking, print mangled stack trace
83 close(PipeFDs[0]);
84 close(PipeFDs[1]);
85 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
86 return;
87 default: // backtracing process
88 close(PipeFDs[0]); // Close the reader side.
89
90 // Print the mangled backtrace into the pipe.
91 backtrace_symbols_fd(StackTrace, depth, PipeFDs[1]);
92 close(PipeFDs[1]); // We are done writing.
93 while (waitpid(ChildPID, 0, 0) == -1)
94 if (errno != EINTR) break;
95 return;
96
97 case 0: // c++filt process
98 close(PipeFDs[1]); // Close the writer side.
99 dup2(PipeFDs[0], 0); // Read from standard input
100 close(PipeFDs[0]); // Close the old descriptor
101 dup2(2, 1); // Revector stdout -> stderr
102
103 // Try to run c++filt or gc++filt. If neither is found, call back on 'cat'
104 // to print the mangled stack trace. If we can't find cat, just exit.
Alkis Evlogimenos38da41c2005-04-22 17:56:01 +0000105 execlp("c++filt", "c++filt", (char*)NULL);
106 execlp("gc++filt", "gc++filt", (char*)NULL);
107 execlp("cat", "cat", (char*)NULL);
108 execlp("/bin/cat", "cat", (char*)NULL);
Reid Spencer496c2772004-08-29 19:22:48 +0000109 exit(0);
110 }
111#endif
112}
113
114// SignalHandler - The signal handler that runs...
115RETSIGTYPE SignalHandler(int Sig) {
116 if (FilesToRemove != 0)
117 while (!FilesToRemove->empty()) {
Reid Spencera8e80c52006-08-07 05:34:08 +0000118 FilesToRemove->back().eraseFromDisk(true);
Reid Spencer496c2772004-08-29 19:22:48 +0000119 FilesToRemove->pop_back();
120 }
121
122 if (DirectoriesToRemove != 0)
123 while (!DirectoriesToRemove->empty()) {
Reid Spencera229c5c2005-07-08 03:08:58 +0000124 DirectoriesToRemove->back().eraseFromDisk(true);
Reid Spencer496c2772004-08-29 19:22:48 +0000125 DirectoriesToRemove->pop_back();
126 }
127
Chris Lattnerfa8c2922005-08-02 02:14:22 +0000128 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
129 if (InterruptFunction) {
130 void (*IF)() = InterruptFunction;
131 InterruptFunction = 0;
132 IF(); // run the interrupt function.
133 return;
134 } else {
135 exit(1); // If this is an interrupt signal, exit the program
136 }
137 }
Reid Spencer496c2772004-08-29 19:22:48 +0000138
139 // Otherwise if it is a fault (like SEGV) output the stacktrace to
140 // STDERR (if we can) and reissue the signal to die...
Reid Spencerdc6830f2006-06-16 00:00:57 +0000141 if (StackTraceRequested)
142 PrintStackTrace();
Reid Spencer496c2772004-08-29 19:22:48 +0000143 signal(Sig, SIG_DFL);
144}
145
146// Just call signal
147void RegisterHandler(int Signal) {
148 signal(Signal, SignalHandler);
149}
150
151}
152
Reid Spencer496c2772004-08-29 19:22:48 +0000153
Chris Lattnerfa8c2922005-08-02 02:14:22 +0000154void sys::SetInterruptFunction(void (*IF)()) {
155 InterruptFunction = IF;
156 RegisterHandler(SIGINT);
157}
158
Reid Spencer496c2772004-08-29 19:22:48 +0000159// RemoveFileOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000160bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
Reid Spencer496c2772004-08-29 19:22:48 +0000161 if (FilesToRemove == 0)
Reid Spencera8e80c52006-08-07 05:34:08 +0000162 FilesToRemove = new std::vector<sys::Path>;
Reid Spencer496c2772004-08-29 19:22:48 +0000163
Reid Spencera8e80c52006-08-07 05:34:08 +0000164 FilesToRemove->push_back(Filename);
Reid Spencer496c2772004-08-29 19:22:48 +0000165
166 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
167 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
Reid Spencer05545752006-08-25 21:37:17 +0000168 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000169}
170
171// RemoveDirectoryOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000172bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) {
Chris Lattner89615012006-08-01 17:59:14 +0000173 // Not a directory?
Reid Spencer2ae9d112007-04-07 18:52:17 +0000174 struct stat buf;
175 if (0 != stat(path.c_str(), &buf)) {
176 MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file");
Reid Spencer8475ec02007-03-29 19:05:44 +0000177 return true;
Reid Spencer2ae9d112007-04-07 18:52:17 +0000178 }
179
180 if (!S_ISDIR(buf.st_mode)) {
Reid Spencer05545752006-08-25 21:37:17 +0000181 if (ErrMsg)
182 *ErrMsg = path.toString() + " is not a directory";
183 return true;
184 }
Reid Spencer496c2772004-08-29 19:22:48 +0000185
186 if (DirectoriesToRemove == 0)
187 DirectoriesToRemove = new std::vector<sys::Path>;
188
189 DirectoriesToRemove->push_back(path);
190
191 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
192 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
Reid Spencer05545752006-08-25 21:37:17 +0000193 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000194}
195
196/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
197/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
198void sys::PrintStackTraceOnErrorSignal() {
Reid Spencerdc6830f2006-06-16 00:00:57 +0000199 StackTraceRequested = true;
Reid Spencer496c2772004-08-29 19:22:48 +0000200 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
201}