blob: 4e0e6d22fd9e9c04ed2befcf87bf2aa56e7c3d78 [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer496c2772004-08-29 19:22:48 +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 Anderson718cb662007-09-07 04:06:50 +000016#include "llvm/ADT/STLExtras.h"
Reid Spencer496c2772004-08-29 19:22:48 +000017#include <vector>
18#include <algorithm>
Reid Spencercdf54d02004-12-27 06:16:52 +000019#if HAVE_EXECINFO_H
Reid Spencer496c2772004-08-29 19:22:48 +000020# include <execinfo.h> // For backtrace().
21#endif
Reid Spencercdf54d02004-12-27 06:16:52 +000022#if HAVE_SIGNAL_H
Reid Spencer496c2772004-08-29 19:22:48 +000023#include <signal.h>
Reid Spencercdf54d02004-12-27 06:16:52 +000024#endif
Reid Spencer2ae9d112007-04-07 18:52:17 +000025#if HAVE_SYS_STAT_H
26#include <sys/stat.h>
27#endif
Chris Lattner89615012006-08-01 17:59:14 +000028using namespace llvm;
Reid Spencer496c2772004-08-29 19:22:48 +000029
30namespace {
31
Dan Gohman3bd659b2008-04-10 21:11:47 +000032static bool StackTraceRequested = false;
Reid Spencerdc6830f2006-06-16 00:00:57 +000033
Chris Lattnerfa8c2922005-08-02 02:14:22 +000034/// InterruptFunction - The function to call if ctrl-c is pressed.
Dan Gohman3bd659b2008-04-10 21:11:47 +000035static void (*InterruptFunction)() = 0;
Chris Lattnerfa8c2922005-08-02 02:14:22 +000036
Dan Gohman3bd659b2008-04-10 21:11:47 +000037static std::vector<sys::Path> *FilesToRemove = 0 ;
38static std::vector<sys::Path> *DirectoriesToRemove = 0;
Reid Spencer496c2772004-08-29 19:22:48 +000039
40// IntSigs - Signals that may interrupt the program at any time.
Dan Gohman3bd659b2008-04-10 21:11:47 +000041static const int IntSigs[] = {
Reid Spencer496c2772004-08-29 19:22:48 +000042 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
43};
Dan Gohman4d9dd6b2008-05-14 00:42:30 +000044static const int *const IntSigsEnd =
45 IntSigs + sizeof(IntSigs) / sizeof(IntSigs[0]);
Reid Spencer496c2772004-08-29 19:22:48 +000046
47// KillSigs - Signals that are synchronous with the program that will cause it
48// to die.
Dan Gohman3bd659b2008-04-10 21:11:47 +000049static const int KillSigs[] = {
Reid Spencer496c2772004-08-29 19:22:48 +000050 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
51#ifdef SIGEMT
52 , SIGEMT
53#endif
54};
Dan Gohman4d9dd6b2008-05-14 00:42:30 +000055static const int *const KillSigsEnd =
56 KillSigs + sizeof(KillSigs) / sizeof(KillSigs[0]);
Reid Spencer496c2772004-08-29 19:22:48 +000057
58#ifdef HAVE_BACKTRACE
Dan Gohman3bd659b2008-04-10 21:11:47 +000059static void* StackTrace[256];
Reid Spencer496c2772004-08-29 19:22:48 +000060#endif
61
62// PrintStackTrace - In the case of a program crash or fault, print out a stack
63// trace so that the user has an indication of why and where we died.
64//
65// On glibc systems we have the 'backtrace' function, which works nicely, but
Lauro Ramos Venancio2e78b782008-02-15 18:05:54 +000066// doesn't demangle symbols.
Dan Gohman3bd659b2008-04-10 21:11:47 +000067static void PrintStackTrace() {
Reid Spencer496c2772004-08-29 19:22:48 +000068#ifdef HAVE_BACKTRACE
69 // Use backtrace() to output a backtrace on Linux systems with glibc.
Evan Cheng34cd4a42008-05-05 18:30:58 +000070 int depth = backtrace(StackTrace,
71 static_cast<int>(array_lengthof(StackTrace)));
Lauro Ramos Venancio2e78b782008-02-15 18:05:54 +000072 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
Reid Spencer496c2772004-08-29 19:22:48 +000073#endif
74}
75
76// SignalHandler - The signal handler that runs...
Dan Gohman3bd659b2008-04-10 21:11:47 +000077static RETSIGTYPE SignalHandler(int Sig) {
Reid Spencer496c2772004-08-29 19:22:48 +000078 if (FilesToRemove != 0)
79 while (!FilesToRemove->empty()) {
Reid Spencera8e80c52006-08-07 05:34:08 +000080 FilesToRemove->back().eraseFromDisk(true);
Reid Spencer496c2772004-08-29 19:22:48 +000081 FilesToRemove->pop_back();
82 }
83
84 if (DirectoriesToRemove != 0)
85 while (!DirectoriesToRemove->empty()) {
Reid Spencera229c5c2005-07-08 03:08:58 +000086 DirectoriesToRemove->back().eraseFromDisk(true);
Reid Spencer496c2772004-08-29 19:22:48 +000087 DirectoriesToRemove->pop_back();
88 }
89
Chris Lattnerfa8c2922005-08-02 02:14:22 +000090 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
91 if (InterruptFunction) {
92 void (*IF)() = InterruptFunction;
93 InterruptFunction = 0;
94 IF(); // run the interrupt function.
95 return;
96 } else {
97 exit(1); // If this is an interrupt signal, exit the program
98 }
99 }
Reid Spencer496c2772004-08-29 19:22:48 +0000100
101 // Otherwise if it is a fault (like SEGV) output the stacktrace to
102 // STDERR (if we can) and reissue the signal to die...
Reid Spencerdc6830f2006-06-16 00:00:57 +0000103 if (StackTraceRequested)
104 PrintStackTrace();
Reid Spencer496c2772004-08-29 19:22:48 +0000105 signal(Sig, SIG_DFL);
106}
107
108// Just call signal
Dan Gohman3bd659b2008-04-10 21:11:47 +0000109static void RegisterHandler(int Signal) {
Reid Spencer496c2772004-08-29 19:22:48 +0000110 signal(Signal, SignalHandler);
111}
112
113}
114
Reid Spencer496c2772004-08-29 19:22:48 +0000115
Chris Lattnerfa8c2922005-08-02 02:14:22 +0000116void sys::SetInterruptFunction(void (*IF)()) {
117 InterruptFunction = IF;
118 RegisterHandler(SIGINT);
119}
120
Reid Spencer496c2772004-08-29 19:22:48 +0000121// RemoveFileOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000122bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
Reid Spencer496c2772004-08-29 19:22:48 +0000123 if (FilesToRemove == 0)
Reid Spencera8e80c52006-08-07 05:34:08 +0000124 FilesToRemove = new std::vector<sys::Path>;
Reid Spencer496c2772004-08-29 19:22:48 +0000125
Reid Spencera8e80c52006-08-07 05:34:08 +0000126 FilesToRemove->push_back(Filename);
Reid Spencer496c2772004-08-29 19:22:48 +0000127
128 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
129 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
Reid Spencer05545752006-08-25 21:37:17 +0000130 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000131}
132
133// RemoveDirectoryOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000134bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) {
Chris Lattner89615012006-08-01 17:59:14 +0000135 // Not a directory?
Reid Spencer2ae9d112007-04-07 18:52:17 +0000136 struct stat buf;
137 if (0 != stat(path.c_str(), &buf)) {
138 MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file");
Reid Spencer8475ec02007-03-29 19:05:44 +0000139 return true;
Reid Spencer2ae9d112007-04-07 18:52:17 +0000140 }
141
142 if (!S_ISDIR(buf.st_mode)) {
Reid Spencer05545752006-08-25 21:37:17 +0000143 if (ErrMsg)
144 *ErrMsg = path.toString() + " is not a directory";
145 return true;
146 }
Reid Spencer496c2772004-08-29 19:22:48 +0000147
148 if (DirectoriesToRemove == 0)
149 DirectoriesToRemove = new std::vector<sys::Path>;
150
151 DirectoriesToRemove->push_back(path);
152
153 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
154 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
Reid Spencer05545752006-08-25 21:37:17 +0000155 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000156}
157
158/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
159/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
160void sys::PrintStackTraceOnErrorSignal() {
Reid Spencerdc6830f2006-06-16 00:00:57 +0000161 StackTraceRequested = true;
Reid Spencer496c2772004-08-29 19:22:48 +0000162 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
163}