blob: bc963c5b8c7c3677175867d71045bcec86235cee [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Elliott Hughesffe67362011-07-17 12:09:27 -070016
17#include "runtime.h"
18
Elliott Hughes457005c2012-04-16 13:54:25 -070019#include <signal.h>
Elliott Hughes6c1c69e2012-04-23 16:12:51 -070020#include <string.h>
Elliott Hughes058a6de2012-05-24 19:13:02 -070021#include <sys/utsname.h>
Dmitry Petrochenko611c2c32014-02-10 14:48:12 +070022#include <inttypes.h>
Elliott Hughesffe67362011-07-17 12:09:27 -070023
Ian Rogersc7dd2952014-10-21 23:31:19 -070024#include <sstream>
25
26#include "base/dumpable.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080027#include "base/logging.h"
Andreas Gampefcf81d82015-01-14 20:09:14 -080028#include "base/macros.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080029#include "base/mutex.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080030#include "base/stringprintf.h"
Ian Rogersb48b9eb2014-02-28 16:20:21 -080031#include "thread-inl.h"
Andreas Gampe038bb222015-01-13 19:48:14 -080032#include "thread_list.h"
Elliott Hughes46e251b2012-05-22 15:10:45 -070033#include "utils.h"
Elliott Hughesffe67362011-07-17 12:09:27 -070034
35namespace art {
36
Mathieu Chartierc2f4d022014-03-03 16:11:42 -080037static constexpr bool kDumpHeapObjectOnSigsevg = false;
Andreas Gampecbfded42015-01-14 18:35:01 -080038static constexpr bool kUseSigRTTimeout = true;
Andreas Gampe0d0ce272016-03-08 20:29:49 -080039static constexpr bool kDumpNativeStackOnTimeout = true;
Mathieu Chartierc2f4d022014-03-03 16:11:42 -080040
Elliott Hughes6c1c69e2012-04-23 16:12:51 -070041struct Backtrace {
Andreas Gampe628a61a2015-01-07 22:08:35 -080042 public:
43 explicit Backtrace(void* raw_context) : raw_context_(raw_context) {}
Ian Rogersc7dd2952014-10-21 23:31:19 -070044 void Dump(std::ostream& os) const {
Christopher Ferris6cff48f2014-01-26 21:36:13 -080045 DumpNativeStack(os, GetTid(), nullptr, "\t", nullptr, raw_context_);
Elliott Hughes6c1c69e2012-04-23 16:12:51 -070046 }
Andreas Gampe628a61a2015-01-07 22:08:35 -080047 private:
48 // Stores the context of the signal that was unexpected and will terminate the runtime. The
49 // DumpNativeStack code will take care of casting it to the expected type. This is required
50 // as our signal handler runs on an alternate stack.
51 void* raw_context_;
Elliott Hughes6c1c69e2012-04-23 16:12:51 -070052};
53
Elliott Hughes76160052012-12-12 16:31:20 -080054struct OsInfo {
Ian Rogersc7dd2952014-10-21 23:31:19 -070055 void Dump(std::ostream& os) const {
Elliott Hughes058a6de2012-05-24 19:13:02 -070056 utsname info;
57 uname(&info);
58 // Linux 2.6.38.8-gg784 (x86_64)
59 // Darwin 11.4.0 (x86_64)
60 os << info.sysname << " " << info.release << " (" << info.machine << ")";
61 }
62};
63
Elliott Hughes6c1c69e2012-04-23 16:12:51 -070064static const char* GetSignalName(int signal_number) {
65 switch (signal_number) {
66 case SIGABRT: return "SIGABRT";
67 case SIGBUS: return "SIGBUS";
68 case SIGFPE: return "SIGFPE";
69 case SIGILL: return "SIGILL";
70 case SIGPIPE: return "SIGPIPE";
71 case SIGSEGV: return "SIGSEGV";
Elliott Hughes833770b2012-05-01 15:41:03 -070072#if defined(SIGSTKFLT)
Elliott Hughes6c1c69e2012-04-23 16:12:51 -070073 case SIGSTKFLT: return "SIGSTKFLT";
74#endif
75 case SIGTRAP: return "SIGTRAP";
76 }
77 return "??";
Elliott Hughesffe67362011-07-17 12:09:27 -070078}
79
Elliott Hughes457005c2012-04-16 13:54:25 -070080static const char* GetSignalCodeName(int signal_number, int signal_code) {
81 // Try the signal-specific codes...
82 switch (signal_number) {
83 case SIGILL:
84 switch (signal_code) {
85 case ILL_ILLOPC: return "ILL_ILLOPC";
86 case ILL_ILLOPN: return "ILL_ILLOPN";
87 case ILL_ILLADR: return "ILL_ILLADR";
88 case ILL_ILLTRP: return "ILL_ILLTRP";
89 case ILL_PRVOPC: return "ILL_PRVOPC";
90 case ILL_PRVREG: return "ILL_PRVREG";
91 case ILL_COPROC: return "ILL_COPROC";
92 case ILL_BADSTK: return "ILL_BADSTK";
93 }
94 break;
95 case SIGBUS:
96 switch (signal_code) {
97 case BUS_ADRALN: return "BUS_ADRALN";
98 case BUS_ADRERR: return "BUS_ADRERR";
99 case BUS_OBJERR: return "BUS_OBJERR";
100 }
101 break;
102 case SIGFPE:
103 switch (signal_code) {
104 case FPE_INTDIV: return "FPE_INTDIV";
105 case FPE_INTOVF: return "FPE_INTOVF";
106 case FPE_FLTDIV: return "FPE_FLTDIV";
107 case FPE_FLTOVF: return "FPE_FLTOVF";
108 case FPE_FLTUND: return "FPE_FLTUND";
109 case FPE_FLTRES: return "FPE_FLTRES";
110 case FPE_FLTINV: return "FPE_FLTINV";
111 case FPE_FLTSUB: return "FPE_FLTSUB";
112 }
113 break;
114 case SIGSEGV:
115 switch (signal_code) {
116 case SEGV_MAPERR: return "SEGV_MAPERR";
117 case SEGV_ACCERR: return "SEGV_ACCERR";
Christopher Ferris12b8c9d2016-02-04 14:06:34 -0800118#if defined(SEGV_BNDERR)
119 case SEGV_BNDERR: return "SEGV_BNDERR";
120#endif
Elliott Hughes457005c2012-04-16 13:54:25 -0700121 }
122 break;
123 case SIGTRAP:
124 switch (signal_code) {
125 case TRAP_BRKPT: return "TRAP_BRKPT";
126 case TRAP_TRACE: return "TRAP_TRACE";
127 }
128 break;
129 }
130 // Then the other codes...
131 switch (signal_code) {
132 case SI_USER: return "SI_USER";
Elliott Hughesac8097f2012-04-16 14:59:44 -0700133#if defined(SI_KERNEL)
Elliott Hughes457005c2012-04-16 13:54:25 -0700134 case SI_KERNEL: return "SI_KERNEL";
Elliott Hughesac8097f2012-04-16 14:59:44 -0700135#endif
Elliott Hughes457005c2012-04-16 13:54:25 -0700136 case SI_QUEUE: return "SI_QUEUE";
137 case SI_TIMER: return "SI_TIMER";
138 case SI_MESGQ: return "SI_MESGQ";
139 case SI_ASYNCIO: return "SI_ASYNCIO";
Elliott Hughesac8097f2012-04-16 14:59:44 -0700140#if defined(SI_SIGIO)
Elliott Hughes457005c2012-04-16 13:54:25 -0700141 case SI_SIGIO: return "SI_SIGIO";
Elliott Hughesac8097f2012-04-16 14:59:44 -0700142#endif
143#if defined(SI_TKILL)
Elliott Hughes457005c2012-04-16 13:54:25 -0700144 case SI_TKILL: return "SI_TKILL";
Elliott Hughesac8097f2012-04-16 14:59:44 -0700145#endif
Elliott Hughes457005c2012-04-16 13:54:25 -0700146 }
147 // Then give up...
148 return "?";
149}
150
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700151struct UContext {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700152 explicit UContext(void* raw_context) :
153 context(reinterpret_cast<ucontext_t*>(raw_context)->uc_mcontext) {
154 }
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700155
Ian Rogersc7dd2952014-10-21 23:31:19 -0700156 void Dump(std::ostream& os) const {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700157 // TODO: support non-x86 hosts (not urgent because this code doesn't run on targets).
Ian Rogersef7d42f2014-01-06 12:55:46 -0800158#if defined(__APPLE__) && defined(__i386__)
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700159 DumpRegister32(os, "eax", context->__ss.__eax);
160 DumpRegister32(os, "ebx", context->__ss.__ebx);
161 DumpRegister32(os, "ecx", context->__ss.__ecx);
162 DumpRegister32(os, "edx", context->__ss.__edx);
163 os << '\n';
164
165 DumpRegister32(os, "edi", context->__ss.__edi);
166 DumpRegister32(os, "esi", context->__ss.__esi);
167 DumpRegister32(os, "ebp", context->__ss.__ebp);
168 DumpRegister32(os, "esp", context->__ss.__esp);
169 os << '\n';
170
171 DumpRegister32(os, "eip", context->__ss.__eip);
Elliott Hughes46e251b2012-05-22 15:10:45 -0700172 os << " ";
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700173 DumpRegister32(os, "eflags", context->__ss.__eflags);
Elliott Hughes46e251b2012-05-22 15:10:45 -0700174 DumpX86Flags(os, context->__ss.__eflags);
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700175 os << '\n';
176
177 DumpRegister32(os, "cs", context->__ss.__cs);
178 DumpRegister32(os, "ds", context->__ss.__ds);
179 DumpRegister32(os, "es", context->__ss.__es);
180 DumpRegister32(os, "fs", context->__ss.__fs);
181 os << '\n';
182 DumpRegister32(os, "gs", context->__ss.__gs);
183 DumpRegister32(os, "ss", context->__ss.__ss);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800184#elif defined(__linux__) && defined(__i386__)
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700185 DumpRegister32(os, "eax", context.gregs[REG_EAX]);
186 DumpRegister32(os, "ebx", context.gregs[REG_EBX]);
187 DumpRegister32(os, "ecx", context.gregs[REG_ECX]);
188 DumpRegister32(os, "edx", context.gregs[REG_EDX]);
189 os << '\n';
190
191 DumpRegister32(os, "edi", context.gregs[REG_EDI]);
192 DumpRegister32(os, "esi", context.gregs[REG_ESI]);
193 DumpRegister32(os, "ebp", context.gregs[REG_EBP]);
194 DumpRegister32(os, "esp", context.gregs[REG_ESP]);
195 os << '\n';
196
197 DumpRegister32(os, "eip", context.gregs[REG_EIP]);
Elliott Hughes46e251b2012-05-22 15:10:45 -0700198 os << " ";
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700199 DumpRegister32(os, "eflags", context.gregs[REG_EFL]);
Elliott Hughes46e251b2012-05-22 15:10:45 -0700200 DumpX86Flags(os, context.gregs[REG_EFL]);
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700201 os << '\n';
202
203 DumpRegister32(os, "cs", context.gregs[REG_CS]);
204 DumpRegister32(os, "ds", context.gregs[REG_DS]);
205 DumpRegister32(os, "es", context.gregs[REG_ES]);
206 DumpRegister32(os, "fs", context.gregs[REG_FS]);
207 os << '\n';
208 DumpRegister32(os, "gs", context.gregs[REG_GS]);
209 DumpRegister32(os, "ss", context.gregs[REG_SS]);
Dmitry Petrochenko611c2c32014-02-10 14:48:12 +0700210#elif defined(__linux__) && defined(__x86_64__)
211 DumpRegister64(os, "rax", context.gregs[REG_RAX]);
212 DumpRegister64(os, "rbx", context.gregs[REG_RBX]);
213 DumpRegister64(os, "rcx", context.gregs[REG_RCX]);
214 DumpRegister64(os, "rdx", context.gregs[REG_RDX]);
215 os << '\n';
216
217 DumpRegister64(os, "rdi", context.gregs[REG_RDI]);
218 DumpRegister64(os, "rsi", context.gregs[REG_RSI]);
219 DumpRegister64(os, "rbp", context.gregs[REG_RBP]);
220 DumpRegister64(os, "rsp", context.gregs[REG_RSP]);
221 os << '\n';
222
223 DumpRegister64(os, "r8 ", context.gregs[REG_R8]);
224 DumpRegister64(os, "r9 ", context.gregs[REG_R9]);
225 DumpRegister64(os, "r10", context.gregs[REG_R10]);
226 DumpRegister64(os, "r11", context.gregs[REG_R11]);
227 os << '\n';
228
229 DumpRegister64(os, "r12", context.gregs[REG_R12]);
230 DumpRegister64(os, "r13", context.gregs[REG_R13]);
231 DumpRegister64(os, "r14", context.gregs[REG_R14]);
232 DumpRegister64(os, "r15", context.gregs[REG_R15]);
233 os << '\n';
234
235 DumpRegister64(os, "rip", context.gregs[REG_RIP]);
236 os << " ";
237 DumpRegister32(os, "eflags", context.gregs[REG_EFL]);
238 DumpX86Flags(os, context.gregs[REG_EFL]);
239 os << '\n';
240
241 DumpRegister32(os, "cs", (context.gregs[REG_CSGSFS]) & 0x0FFFF);
242 DumpRegister32(os, "gs", (context.gregs[REG_CSGSFS] >> 16) & 0x0FFFF);
243 DumpRegister32(os, "fs", (context.gregs[REG_CSGSFS] >> 32) & 0x0FFFF);
244 os << '\n';
Ian Rogersef7d42f2014-01-06 12:55:46 -0800245#else
246 os << "Unknown architecture/word size/OS in ucontext dump";
Elliott Hughesac8097f2012-04-16 14:59:44 -0700247#endif
Elliott Hughes457005c2012-04-16 13:54:25 -0700248 }
249
Ian Rogersc7dd2952014-10-21 23:31:19 -0700250 void DumpRegister32(std::ostream& os, const char* name, uint32_t value) const {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700251 os << StringPrintf(" %6s: 0x%08x", name, value);
252 }
253
Ian Rogersc7dd2952014-10-21 23:31:19 -0700254 void DumpRegister64(std::ostream& os, const char* name, uint64_t value) const {
Dmitry Petrochenko611c2c32014-02-10 14:48:12 +0700255 os << StringPrintf(" %6s: 0x%016" PRIx64, name, value);
256 }
257
Ian Rogersc7dd2952014-10-21 23:31:19 -0700258 void DumpX86Flags(std::ostream& os, uint32_t flags) const {
Elliott Hughes46e251b2012-05-22 15:10:45 -0700259 os << " [";
260 if ((flags & (1 << 0)) != 0) {
261 os << " CF";
262 }
263 if ((flags & (1 << 2)) != 0) {
264 os << " PF";
265 }
266 if ((flags & (1 << 4)) != 0) {
267 os << " AF";
268 }
269 if ((flags & (1 << 6)) != 0) {
270 os << " ZF";
271 }
272 if ((flags & (1 << 7)) != 0) {
273 os << " SF";
274 }
275 if ((flags & (1 << 8)) != 0) {
276 os << " TF";
277 }
278 if ((flags & (1 << 9)) != 0) {
279 os << " IF";
280 }
281 if ((flags & (1 << 10)) != 0) {
282 os << " DF";
283 }
284 if ((flags & (1 << 11)) != 0) {
285 os << " OF";
286 }
287 os << " ]";
288 }
289
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700290 mcontext_t& context;
291};
292
Andreas Gampecbfded42015-01-14 18:35:01 -0800293// Return the signal number we recognize as timeout. -1 means not active/supported.
Andreas Gampe038bb222015-01-13 19:48:14 -0800294static int GetTimeoutSignal() {
Andreas Gampecbfded42015-01-14 18:35:01 -0800295#if defined(__APPLE__)
296 // Mac does not support realtime signals.
Andreas Gampefcf81d82015-01-14 20:09:14 -0800297 UNUSED(kUseSigRTTimeout);
Andreas Gampecbfded42015-01-14 18:35:01 -0800298 return -1;
299#else
300 return kUseSigRTTimeout ? (SIGRTMIN + 2) : -1;
301#endif
Andreas Gampe038bb222015-01-13 19:48:14 -0800302}
303
304static bool IsTimeoutSignal(int signal_number) {
305 return signal_number == GetTimeoutSignal();
306}
307
Brian Carlstromaf1b8922012-11-27 15:19:57 -0800308void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context) {
309 static bool handlingUnexpectedSignal = false;
310 if (handlingUnexpectedSignal) {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700311 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL, "HandleUnexpectedSignal reentered\n");
Andreas Gampe038bb222015-01-13 19:48:14 -0800312 if (IsTimeoutSignal(signal_number)) {
313 // Ignore a recursive timeout.
314 return;
315 }
Brian Carlstromaf1b8922012-11-27 15:19:57 -0800316 _exit(1);
317 }
318 handlingUnexpectedSignal = true;
319
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000320 gAborting++; // set before taking any locks
Ian Rogers50b35e22012-10-04 10:09:15 -0700321 MutexLock mu(Thread::Current(), *Locks::unexpected_signal_lock_);
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700322
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700323 bool has_address = (signal_number == SIGILL || signal_number == SIGBUS ||
324 signal_number == SIGFPE || signal_number == SIGSEGV);
325
Elliott Hughes76160052012-12-12 16:31:20 -0800326 OsInfo os_info;
Elliott Hughes98eedd82012-06-11 17:52:56 -0700327 const char* cmd_line = GetCmdLine();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700328 if (cmd_line == nullptr) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700329 cmd_line = "<unset>"; // Because no-one called InitLogging.
Elliott Hughes98eedd82012-06-11 17:52:56 -0700330 }
Elliott Hughes289be852012-06-12 13:57:20 -0700331 pid_t tid = GetTid();
332 std::string thread_name(GetThreadName(tid));
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700333 UContext thread_context(raw_context);
Andreas Gampe628a61a2015-01-07 22:08:35 -0800334 Backtrace thread_backtrace(raw_context);
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700335
Elliott Hughes457005c2012-04-16 13:54:25 -0700336 LOG(INTERNAL_FATAL) << "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n"
337 << StringPrintf("Fatal signal %d (%s), code %d (%s)",
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700338 signal_number, GetSignalName(signal_number),
Elliott Hughes457005c2012-04-16 13:54:25 -0700339 info->si_code,
340 GetSignalCodeName(signal_number, info->si_code))
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700341 << (has_address ? StringPrintf(" fault addr %p", info->si_addr) : "") << "\n"
Elliott Hughes76160052012-12-12 16:31:20 -0800342 << "OS: " << Dumpable<OsInfo>(os_info) << "\n"
Elliott Hughes98eedd82012-06-11 17:52:56 -0700343 << "Cmdline: " << cmd_line << "\n"
Elliott Hughes289be852012-06-12 13:57:20 -0700344 << "Thread: " << tid << " \"" << thread_name << "\"\n"
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700345 << "Registers:\n" << Dumpable<UContext>(thread_context) << "\n"
346 << "Backtrace:\n" << Dumpable<Backtrace>(thread_backtrace);
Hiroshi Yamauchiae0d7de2015-05-22 18:15:10 -0700347 if (kIsDebugBuild && signal_number == SIGSEGV) {
348 PrintFileToLog("/proc/self/maps", LogSeverity::INTERNAL_FATAL);
349 }
Mathieu Chartier15d34022014-02-26 17:16:38 -0800350 Runtime* runtime = Runtime::Current();
351 if (runtime != nullptr) {
Andreas Gampe038bb222015-01-13 19:48:14 -0800352 if (IsTimeoutSignal(signal_number)) {
353 // Special timeout signal. Try to dump all threads.
Andreas Gampe0d0ce272016-03-08 20:29:49 -0800354 // Note: Do not use DumpForSigQuit, as that might disable native unwind, but the native parts
355 // are of value here.
356 runtime->GetThreadList()->Dump(LOG(INTERNAL_FATAL), kDumpNativeStackOnTimeout);
Andreas Gampe038bb222015-01-13 19:48:14 -0800357 }
Mathieu Chartier15d34022014-02-26 17:16:38 -0800358 gc::Heap* heap = runtime->GetHeap();
359 LOG(INTERNAL_FATAL) << "Fault message: " << runtime->GetFaultMessage();
Mathieu Chartierc2f4d022014-03-03 16:11:42 -0800360 if (kDumpHeapObjectOnSigsevg && heap != nullptr && info != nullptr) {
Mathieu Chartier15d34022014-02-26 17:16:38 -0800361 LOG(INTERNAL_FATAL) << "Dump heap object at fault address: ";
362 heap->DumpObject(LOG(INTERNAL_FATAL), reinterpret_cast<mirror::Object*>(info->si_addr));
363 }
364 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700365 if (getenv("debug_db_uid") != nullptr || getenv("art_wait_for_gdb_on_crash") != nullptr) {
Elliott Hughes2554cb92012-04-18 17:19:26 -0700366 LOG(INTERNAL_FATAL) << "********************************************************\n"
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700367 << "* Process " << getpid() << " thread " << tid << " \"" << thread_name
368 << "\""
Elliott Hughes289be852012-06-12 13:57:20 -0700369 << " has been suspended while crashing.\n"
370 << "* Attach gdb:\n"
371 << "* gdb -p " << tid << "\n"
Elliott Hughes2554cb92012-04-18 17:19:26 -0700372 << "********************************************************\n";
373 // Wait for debugger to attach.
374 while (true) {
375 }
Elliott Hughes457005c2012-04-16 13:54:25 -0700376 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700377#ifdef __linux__
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700378 // Remove our signal handler for this signal...
379 struct sigaction action;
380 memset(&action, 0, sizeof(action));
381 sigemptyset(&action.sa_mask);
382 action.sa_handler = SIG_DFL;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700383 sigaction(signal_number, &action, nullptr);
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700384 // ...and re-raise so we die with the appropriate status.
385 kill(getpid(), signal_number);
Ian Rogersc5f17732014-06-05 20:48:42 -0700386#else
387 exit(EXIT_FAILURE);
388#endif
Elliott Hughes457005c2012-04-16 13:54:25 -0700389}
390
Elliott Hughes457005c2012-04-16 13:54:25 -0700391void Runtime::InitPlatformSignalHandlers() {
392 // On the host, we don't have debuggerd to dump a stack for us when something unexpected happens.
393 struct sigaction action;
394 memset(&action, 0, sizeof(action));
395 sigemptyset(&action.sa_mask);
396 action.sa_sigaction = HandleUnexpectedSignal;
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700397 // Use the three-argument sa_sigaction handler.
398 action.sa_flags |= SA_SIGINFO;
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700399 // Use the alternate signal stack so we can catch stack overflows.
400 action.sa_flags |= SA_ONSTACK;
Elliott Hughes457005c2012-04-16 13:54:25 -0700401
402 int rc = 0;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700403 rc += sigaction(SIGABRT, &action, nullptr);
404 rc += sigaction(SIGBUS, &action, nullptr);
405 rc += sigaction(SIGFPE, &action, nullptr);
406 rc += sigaction(SIGILL, &action, nullptr);
407 rc += sigaction(SIGPIPE, &action, nullptr);
408 rc += sigaction(SIGSEGV, &action, nullptr);
Elliott Hughesac8097f2012-04-16 14:59:44 -0700409#if defined(SIGSTKFLT)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700410 rc += sigaction(SIGSTKFLT, &action, nullptr);
Elliott Hughesac8097f2012-04-16 14:59:44 -0700411#endif
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700412 rc += sigaction(SIGTRAP, &action, nullptr);
Andreas Gampe038bb222015-01-13 19:48:14 -0800413 // Special dump-all timeout.
Andreas Gampecbfded42015-01-14 18:35:01 -0800414 if (GetTimeoutSignal() != -1) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700415 rc += sigaction(GetTimeoutSignal(), &action, nullptr);
Andreas Gampecbfded42015-01-14 18:35:01 -0800416 }
Elliott Hughes457005c2012-04-16 13:54:25 -0700417 CHECK_EQ(rc, 0);
418}
419
Elliott Hughesffe67362011-07-17 12:09:27 -0700420} // namespace art