blob: ff84639f307993ec41dd632db8a17bd10d1d0c83 [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
Reid Spencerdc6830f2006-06-16 00:00:57 +000032bool StackTraceRequested = false;
33
Chris Lattnerfa8c2922005-08-02 02:14:22 +000034/// InterruptFunction - The function to call if ctrl-c is pressed.
35void (*InterruptFunction)() = 0;
36
Reid Spencera8e80c52006-08-07 05:34:08 +000037std::vector<sys::Path> *FilesToRemove = 0 ;
Chris Lattner89615012006-08-01 17:59:14 +000038std::vector<sys::Path> *DirectoriesToRemove = 0;
Reid Spencer496c2772004-08-29 19:22:48 +000039
40// IntSigs - Signals that may interrupt the program at any time.
41const int IntSigs[] = {
42 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2
43};
Owen Anderson718cb662007-09-07 04:06:50 +000044const int *IntSigsEnd = array_endof(IntSigs);
Reid Spencer496c2772004-08-29 19:22:48 +000045
46// KillSigs - Signals that are synchronous with the program that will cause it
47// to die.
48const int KillSigs[] = {
49 SIGILL, SIGTRAP, SIGABRT, SIGFPE, SIGBUS, SIGSEGV, SIGSYS, SIGXCPU, SIGXFSZ
50#ifdef SIGEMT
51 , SIGEMT
52#endif
53};
Owen Anderson718cb662007-09-07 04:06:50 +000054const int *KillSigsEnd = array_endof(KillSigs);
Reid Spencer496c2772004-08-29 19:22:48 +000055
56#ifdef HAVE_BACKTRACE
57void* StackTrace[256];
58#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 Venancio2e78b782008-02-15 18:05:54 +000064// doesn't demangle symbols.
Reid Spencer496c2772004-08-29 19:22:48 +000065void PrintStackTrace() {
66#ifdef HAVE_BACKTRACE
67 // Use backtrace() to output a backtrace on Linux systems with glibc.
Owen Anderson718cb662007-09-07 04:06:50 +000068 int depth = backtrace(StackTrace, array_lengthof(StackTrace));
Lauro Ramos Venancio2e78b782008-02-15 18:05:54 +000069 backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
Reid Spencer496c2772004-08-29 19:22:48 +000070#endif
71}
72
73// SignalHandler - The signal handler that runs...
74RETSIGTYPE SignalHandler(int Sig) {
75 if (FilesToRemove != 0)
76 while (!FilesToRemove->empty()) {
Reid Spencera8e80c52006-08-07 05:34:08 +000077 FilesToRemove->back().eraseFromDisk(true);
Reid Spencer496c2772004-08-29 19:22:48 +000078 FilesToRemove->pop_back();
79 }
80
81 if (DirectoriesToRemove != 0)
82 while (!DirectoriesToRemove->empty()) {
Reid Spencera229c5c2005-07-08 03:08:58 +000083 DirectoriesToRemove->back().eraseFromDisk(true);
Reid Spencer496c2772004-08-29 19:22:48 +000084 DirectoriesToRemove->pop_back();
85 }
86
Chris Lattnerfa8c2922005-08-02 02:14:22 +000087 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
88 if (InterruptFunction) {
89 void (*IF)() = InterruptFunction;
90 InterruptFunction = 0;
91 IF(); // run the interrupt function.
92 return;
93 } else {
94 exit(1); // If this is an interrupt signal, exit the program
95 }
96 }
Reid Spencer496c2772004-08-29 19:22:48 +000097
98 // Otherwise if it is a fault (like SEGV) output the stacktrace to
99 // STDERR (if we can) and reissue the signal to die...
Reid Spencerdc6830f2006-06-16 00:00:57 +0000100 if (StackTraceRequested)
101 PrintStackTrace();
Reid Spencer496c2772004-08-29 19:22:48 +0000102 signal(Sig, SIG_DFL);
103}
104
105// Just call signal
106void RegisterHandler(int Signal) {
107 signal(Signal, SignalHandler);
108}
109
110}
111
Reid Spencer496c2772004-08-29 19:22:48 +0000112
Chris Lattnerfa8c2922005-08-02 02:14:22 +0000113void sys::SetInterruptFunction(void (*IF)()) {
114 InterruptFunction = IF;
115 RegisterHandler(SIGINT);
116}
117
Reid Spencer496c2772004-08-29 19:22:48 +0000118// RemoveFileOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000119bool sys::RemoveFileOnSignal(const sys::Path &Filename, std::string* ErrMsg) {
Reid Spencer496c2772004-08-29 19:22:48 +0000120 if (FilesToRemove == 0)
Reid Spencera8e80c52006-08-07 05:34:08 +0000121 FilesToRemove = new std::vector<sys::Path>;
Reid Spencer496c2772004-08-29 19:22:48 +0000122
Reid Spencera8e80c52006-08-07 05:34:08 +0000123 FilesToRemove->push_back(Filename);
Reid Spencer496c2772004-08-29 19:22:48 +0000124
125 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
126 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
Reid Spencer05545752006-08-25 21:37:17 +0000127 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000128}
129
130// RemoveDirectoryOnSignal - The public API
Reid Spencer05545752006-08-25 21:37:17 +0000131bool sys::RemoveDirectoryOnSignal(const sys::Path& path, std::string* ErrMsg) {
Chris Lattner89615012006-08-01 17:59:14 +0000132 // Not a directory?
Reid Spencer2ae9d112007-04-07 18:52:17 +0000133 struct stat buf;
134 if (0 != stat(path.c_str(), &buf)) {
135 MakeErrMsg(ErrMsg, path.toString() + ": can't get status of file");
Reid Spencer8475ec02007-03-29 19:05:44 +0000136 return true;
Reid Spencer2ae9d112007-04-07 18:52:17 +0000137 }
138
139 if (!S_ISDIR(buf.st_mode)) {
Reid Spencer05545752006-08-25 21:37:17 +0000140 if (ErrMsg)
141 *ErrMsg = path.toString() + " is not a directory";
142 return true;
143 }
Reid Spencer496c2772004-08-29 19:22:48 +0000144
145 if (DirectoriesToRemove == 0)
146 DirectoriesToRemove = new std::vector<sys::Path>;
147
148 DirectoriesToRemove->push_back(path);
149
150 std::for_each(IntSigs, IntSigsEnd, RegisterHandler);
151 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
Reid Spencer05545752006-08-25 21:37:17 +0000152 return false;
Reid Spencer496c2772004-08-29 19:22:48 +0000153}
154
155/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
156/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
157void sys::PrintStackTraceOnErrorSignal() {
Reid Spencerdc6830f2006-06-16 00:00:57 +0000158 StackTraceRequested = true;
Reid Spencer496c2772004-08-29 19:22:48 +0000159 std::for_each(KillSigs, KillSigsEnd, RegisterHandler);
160}