Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 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 Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 16 | |
| 17 | #include "runtime.h" |
| 18 | |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 19 | #include <signal.h> |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 20 | #include <string.h> |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 21 | #include <sys/utsname.h> |
Dmitry Petrochenko | 611c2c3 | 2014-02-10 14:48:12 +0700 | [diff] [blame] | 22 | #include <inttypes.h> |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 23 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 24 | #include <sstream> |
| 25 | |
| 26 | #include "base/dumpable.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 27 | #include "base/logging.h" |
Andreas Gampe | fcf81d8 | 2015-01-14 20:09:14 -0800 | [diff] [blame] | 28 | #include "base/macros.h" |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 29 | #include "base/mutex.h" |
Elliott Hughes | e222ee0 | 2012-12-13 14:41:43 -0800 | [diff] [blame] | 30 | #include "base/stringprintf.h" |
Ian Rogers | b48b9eb | 2014-02-28 16:20:21 -0800 | [diff] [blame] | 31 | #include "thread-inl.h" |
Andreas Gampe | 038bb22 | 2015-01-13 19:48:14 -0800 | [diff] [blame] | 32 | #include "thread_list.h" |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 33 | #include "utils.h" |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 34 | |
| 35 | namespace art { |
| 36 | |
Mathieu Chartier | c2f4d02 | 2014-03-03 16:11:42 -0800 | [diff] [blame] | 37 | static constexpr bool kDumpHeapObjectOnSigsevg = false; |
Andreas Gampe | cbfded4 | 2015-01-14 18:35:01 -0800 | [diff] [blame] | 38 | static constexpr bool kUseSigRTTimeout = true; |
Mathieu Chartier | c2f4d02 | 2014-03-03 16:11:42 -0800 | [diff] [blame] | 39 | |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 40 | struct Backtrace { |
Andreas Gampe | 628a61a | 2015-01-07 22:08:35 -0800 | [diff] [blame] | 41 | public: |
| 42 | explicit Backtrace(void* raw_context) : raw_context_(raw_context) {} |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 43 | void Dump(std::ostream& os) const { |
Andreas Gampe | 628a61a | 2015-01-07 22:08:35 -0800 | [diff] [blame] | 44 | DumpNativeStack(os, GetTid(), "\t", nullptr, raw_context_); |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 45 | } |
Andreas Gampe | 628a61a | 2015-01-07 22:08:35 -0800 | [diff] [blame] | 46 | private: |
| 47 | // Stores the context of the signal that was unexpected and will terminate the runtime. The |
| 48 | // DumpNativeStack code will take care of casting it to the expected type. This is required |
| 49 | // as our signal handler runs on an alternate stack. |
| 50 | void* raw_context_; |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 53 | struct OsInfo { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 54 | void Dump(std::ostream& os) const { |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 55 | utsname info; |
| 56 | uname(&info); |
| 57 | // Linux 2.6.38.8-gg784 (x86_64) |
| 58 | // Darwin 11.4.0 (x86_64) |
| 59 | os << info.sysname << " " << info.release << " (" << info.machine << ")"; |
| 60 | } |
| 61 | }; |
| 62 | |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 63 | static const char* GetSignalName(int signal_number) { |
| 64 | switch (signal_number) { |
| 65 | case SIGABRT: return "SIGABRT"; |
| 66 | case SIGBUS: return "SIGBUS"; |
| 67 | case SIGFPE: return "SIGFPE"; |
| 68 | case SIGILL: return "SIGILL"; |
| 69 | case SIGPIPE: return "SIGPIPE"; |
| 70 | case SIGSEGV: return "SIGSEGV"; |
Elliott Hughes | 833770b | 2012-05-01 15:41:03 -0700 | [diff] [blame] | 71 | #if defined(SIGSTKFLT) |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 72 | case SIGSTKFLT: return "SIGSTKFLT"; |
| 73 | #endif |
| 74 | case SIGTRAP: return "SIGTRAP"; |
| 75 | } |
| 76 | return "??"; |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 79 | static const char* GetSignalCodeName(int signal_number, int signal_code) { |
| 80 | // Try the signal-specific codes... |
| 81 | switch (signal_number) { |
| 82 | case SIGILL: |
| 83 | switch (signal_code) { |
| 84 | case ILL_ILLOPC: return "ILL_ILLOPC"; |
| 85 | case ILL_ILLOPN: return "ILL_ILLOPN"; |
| 86 | case ILL_ILLADR: return "ILL_ILLADR"; |
| 87 | case ILL_ILLTRP: return "ILL_ILLTRP"; |
| 88 | case ILL_PRVOPC: return "ILL_PRVOPC"; |
| 89 | case ILL_PRVREG: return "ILL_PRVREG"; |
| 90 | case ILL_COPROC: return "ILL_COPROC"; |
| 91 | case ILL_BADSTK: return "ILL_BADSTK"; |
| 92 | } |
| 93 | break; |
| 94 | case SIGBUS: |
| 95 | switch (signal_code) { |
| 96 | case BUS_ADRALN: return "BUS_ADRALN"; |
| 97 | case BUS_ADRERR: return "BUS_ADRERR"; |
| 98 | case BUS_OBJERR: return "BUS_OBJERR"; |
| 99 | } |
| 100 | break; |
| 101 | case SIGFPE: |
| 102 | switch (signal_code) { |
| 103 | case FPE_INTDIV: return "FPE_INTDIV"; |
| 104 | case FPE_INTOVF: return "FPE_INTOVF"; |
| 105 | case FPE_FLTDIV: return "FPE_FLTDIV"; |
| 106 | case FPE_FLTOVF: return "FPE_FLTOVF"; |
| 107 | case FPE_FLTUND: return "FPE_FLTUND"; |
| 108 | case FPE_FLTRES: return "FPE_FLTRES"; |
| 109 | case FPE_FLTINV: return "FPE_FLTINV"; |
| 110 | case FPE_FLTSUB: return "FPE_FLTSUB"; |
| 111 | } |
| 112 | break; |
| 113 | case SIGSEGV: |
| 114 | switch (signal_code) { |
| 115 | case SEGV_MAPERR: return "SEGV_MAPERR"; |
| 116 | case SEGV_ACCERR: return "SEGV_ACCERR"; |
| 117 | } |
| 118 | break; |
| 119 | case SIGTRAP: |
| 120 | switch (signal_code) { |
| 121 | case TRAP_BRKPT: return "TRAP_BRKPT"; |
| 122 | case TRAP_TRACE: return "TRAP_TRACE"; |
| 123 | } |
| 124 | break; |
| 125 | } |
| 126 | // Then the other codes... |
| 127 | switch (signal_code) { |
| 128 | case SI_USER: return "SI_USER"; |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 129 | #if defined(SI_KERNEL) |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 130 | case SI_KERNEL: return "SI_KERNEL"; |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 131 | #endif |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 132 | case SI_QUEUE: return "SI_QUEUE"; |
| 133 | case SI_TIMER: return "SI_TIMER"; |
| 134 | case SI_MESGQ: return "SI_MESGQ"; |
| 135 | case SI_ASYNCIO: return "SI_ASYNCIO"; |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 136 | #if defined(SI_SIGIO) |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 137 | case SI_SIGIO: return "SI_SIGIO"; |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 138 | #endif |
| 139 | #if defined(SI_TKILL) |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 140 | case SI_TKILL: return "SI_TKILL"; |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 141 | #endif |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 142 | } |
| 143 | // Then give up... |
| 144 | return "?"; |
| 145 | } |
| 146 | |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 147 | struct UContext { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 148 | explicit UContext(void* raw_context) : |
| 149 | context(reinterpret_cast<ucontext_t*>(raw_context)->uc_mcontext) { |
| 150 | } |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 151 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 152 | void Dump(std::ostream& os) const { |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 153 | // TODO: support non-x86 hosts (not urgent because this code doesn't run on targets). |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 154 | #if defined(__APPLE__) && defined(__i386__) |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 155 | DumpRegister32(os, "eax", context->__ss.__eax); |
| 156 | DumpRegister32(os, "ebx", context->__ss.__ebx); |
| 157 | DumpRegister32(os, "ecx", context->__ss.__ecx); |
| 158 | DumpRegister32(os, "edx", context->__ss.__edx); |
| 159 | os << '\n'; |
| 160 | |
| 161 | DumpRegister32(os, "edi", context->__ss.__edi); |
| 162 | DumpRegister32(os, "esi", context->__ss.__esi); |
| 163 | DumpRegister32(os, "ebp", context->__ss.__ebp); |
| 164 | DumpRegister32(os, "esp", context->__ss.__esp); |
| 165 | os << '\n'; |
| 166 | |
| 167 | DumpRegister32(os, "eip", context->__ss.__eip); |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 168 | os << " "; |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 169 | DumpRegister32(os, "eflags", context->__ss.__eflags); |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 170 | DumpX86Flags(os, context->__ss.__eflags); |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 171 | os << '\n'; |
| 172 | |
| 173 | DumpRegister32(os, "cs", context->__ss.__cs); |
| 174 | DumpRegister32(os, "ds", context->__ss.__ds); |
| 175 | DumpRegister32(os, "es", context->__ss.__es); |
| 176 | DumpRegister32(os, "fs", context->__ss.__fs); |
| 177 | os << '\n'; |
| 178 | DumpRegister32(os, "gs", context->__ss.__gs); |
| 179 | DumpRegister32(os, "ss", context->__ss.__ss); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 180 | #elif defined(__linux__) && defined(__i386__) |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 181 | DumpRegister32(os, "eax", context.gregs[REG_EAX]); |
| 182 | DumpRegister32(os, "ebx", context.gregs[REG_EBX]); |
| 183 | DumpRegister32(os, "ecx", context.gregs[REG_ECX]); |
| 184 | DumpRegister32(os, "edx", context.gregs[REG_EDX]); |
| 185 | os << '\n'; |
| 186 | |
| 187 | DumpRegister32(os, "edi", context.gregs[REG_EDI]); |
| 188 | DumpRegister32(os, "esi", context.gregs[REG_ESI]); |
| 189 | DumpRegister32(os, "ebp", context.gregs[REG_EBP]); |
| 190 | DumpRegister32(os, "esp", context.gregs[REG_ESP]); |
| 191 | os << '\n'; |
| 192 | |
| 193 | DumpRegister32(os, "eip", context.gregs[REG_EIP]); |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 194 | os << " "; |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 195 | DumpRegister32(os, "eflags", context.gregs[REG_EFL]); |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 196 | DumpX86Flags(os, context.gregs[REG_EFL]); |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 197 | os << '\n'; |
| 198 | |
| 199 | DumpRegister32(os, "cs", context.gregs[REG_CS]); |
| 200 | DumpRegister32(os, "ds", context.gregs[REG_DS]); |
| 201 | DumpRegister32(os, "es", context.gregs[REG_ES]); |
| 202 | DumpRegister32(os, "fs", context.gregs[REG_FS]); |
| 203 | os << '\n'; |
| 204 | DumpRegister32(os, "gs", context.gregs[REG_GS]); |
| 205 | DumpRegister32(os, "ss", context.gregs[REG_SS]); |
Dmitry Petrochenko | 611c2c3 | 2014-02-10 14:48:12 +0700 | [diff] [blame] | 206 | #elif defined(__linux__) && defined(__x86_64__) |
| 207 | DumpRegister64(os, "rax", context.gregs[REG_RAX]); |
| 208 | DumpRegister64(os, "rbx", context.gregs[REG_RBX]); |
| 209 | DumpRegister64(os, "rcx", context.gregs[REG_RCX]); |
| 210 | DumpRegister64(os, "rdx", context.gregs[REG_RDX]); |
| 211 | os << '\n'; |
| 212 | |
| 213 | DumpRegister64(os, "rdi", context.gregs[REG_RDI]); |
| 214 | DumpRegister64(os, "rsi", context.gregs[REG_RSI]); |
| 215 | DumpRegister64(os, "rbp", context.gregs[REG_RBP]); |
| 216 | DumpRegister64(os, "rsp", context.gregs[REG_RSP]); |
| 217 | os << '\n'; |
| 218 | |
| 219 | DumpRegister64(os, "r8 ", context.gregs[REG_R8]); |
| 220 | DumpRegister64(os, "r9 ", context.gregs[REG_R9]); |
| 221 | DumpRegister64(os, "r10", context.gregs[REG_R10]); |
| 222 | DumpRegister64(os, "r11", context.gregs[REG_R11]); |
| 223 | os << '\n'; |
| 224 | |
| 225 | DumpRegister64(os, "r12", context.gregs[REG_R12]); |
| 226 | DumpRegister64(os, "r13", context.gregs[REG_R13]); |
| 227 | DumpRegister64(os, "r14", context.gregs[REG_R14]); |
| 228 | DumpRegister64(os, "r15", context.gregs[REG_R15]); |
| 229 | os << '\n'; |
| 230 | |
| 231 | DumpRegister64(os, "rip", context.gregs[REG_RIP]); |
| 232 | os << " "; |
| 233 | DumpRegister32(os, "eflags", context.gregs[REG_EFL]); |
| 234 | DumpX86Flags(os, context.gregs[REG_EFL]); |
| 235 | os << '\n'; |
| 236 | |
| 237 | DumpRegister32(os, "cs", (context.gregs[REG_CSGSFS]) & 0x0FFFF); |
| 238 | DumpRegister32(os, "gs", (context.gregs[REG_CSGSFS] >> 16) & 0x0FFFF); |
| 239 | DumpRegister32(os, "fs", (context.gregs[REG_CSGSFS] >> 32) & 0x0FFFF); |
| 240 | os << '\n'; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 241 | #else |
| 242 | os << "Unknown architecture/word size/OS in ucontext dump"; |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 243 | #endif |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 246 | void DumpRegister32(std::ostream& os, const char* name, uint32_t value) const { |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 247 | os << StringPrintf(" %6s: 0x%08x", name, value); |
| 248 | } |
| 249 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 250 | void DumpRegister64(std::ostream& os, const char* name, uint64_t value) const { |
Dmitry Petrochenko | 611c2c3 | 2014-02-10 14:48:12 +0700 | [diff] [blame] | 251 | os << StringPrintf(" %6s: 0x%016" PRIx64, name, value); |
| 252 | } |
| 253 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 254 | void DumpX86Flags(std::ostream& os, uint32_t flags) const { |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 255 | os << " ["; |
| 256 | if ((flags & (1 << 0)) != 0) { |
| 257 | os << " CF"; |
| 258 | } |
| 259 | if ((flags & (1 << 2)) != 0) { |
| 260 | os << " PF"; |
| 261 | } |
| 262 | if ((flags & (1 << 4)) != 0) { |
| 263 | os << " AF"; |
| 264 | } |
| 265 | if ((flags & (1 << 6)) != 0) { |
| 266 | os << " ZF"; |
| 267 | } |
| 268 | if ((flags & (1 << 7)) != 0) { |
| 269 | os << " SF"; |
| 270 | } |
| 271 | if ((flags & (1 << 8)) != 0) { |
| 272 | os << " TF"; |
| 273 | } |
| 274 | if ((flags & (1 << 9)) != 0) { |
| 275 | os << " IF"; |
| 276 | } |
| 277 | if ((flags & (1 << 10)) != 0) { |
| 278 | os << " DF"; |
| 279 | } |
| 280 | if ((flags & (1 << 11)) != 0) { |
| 281 | os << " OF"; |
| 282 | } |
| 283 | os << " ]"; |
| 284 | } |
| 285 | |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 286 | mcontext_t& context; |
| 287 | }; |
| 288 | |
Andreas Gampe | cbfded4 | 2015-01-14 18:35:01 -0800 | [diff] [blame] | 289 | // Return the signal number we recognize as timeout. -1 means not active/supported. |
Andreas Gampe | 038bb22 | 2015-01-13 19:48:14 -0800 | [diff] [blame] | 290 | static int GetTimeoutSignal() { |
Andreas Gampe | cbfded4 | 2015-01-14 18:35:01 -0800 | [diff] [blame] | 291 | #if defined(__APPLE__) |
| 292 | // Mac does not support realtime signals. |
Andreas Gampe | fcf81d8 | 2015-01-14 20:09:14 -0800 | [diff] [blame] | 293 | UNUSED(kUseSigRTTimeout); |
Andreas Gampe | cbfded4 | 2015-01-14 18:35:01 -0800 | [diff] [blame] | 294 | return -1; |
| 295 | #else |
| 296 | return kUseSigRTTimeout ? (SIGRTMIN + 2) : -1; |
| 297 | #endif |
Andreas Gampe | 038bb22 | 2015-01-13 19:48:14 -0800 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | static bool IsTimeoutSignal(int signal_number) { |
| 301 | return signal_number == GetTimeoutSignal(); |
| 302 | } |
| 303 | |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 304 | void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context) { |
| 305 | static bool handlingUnexpectedSignal = false; |
| 306 | if (handlingUnexpectedSignal) { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 307 | LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL, "HandleUnexpectedSignal reentered\n"); |
Andreas Gampe | 038bb22 | 2015-01-13 19:48:14 -0800 | [diff] [blame] | 308 | if (IsTimeoutSignal(signal_number)) { |
| 309 | // Ignore a recursive timeout. |
| 310 | return; |
| 311 | } |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 312 | _exit(1); |
| 313 | } |
| 314 | handlingUnexpectedSignal = true; |
| 315 | |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 316 | gAborting++; // set before taking any locks |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 317 | MutexLock mu(Thread::Current(), *Locks::unexpected_signal_lock_); |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 318 | |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 319 | bool has_address = (signal_number == SIGILL || signal_number == SIGBUS || |
| 320 | signal_number == SIGFPE || signal_number == SIGSEGV); |
| 321 | |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 322 | OsInfo os_info; |
Elliott Hughes | 98eedd8 | 2012-06-11 17:52:56 -0700 | [diff] [blame] | 323 | const char* cmd_line = GetCmdLine(); |
| 324 | if (cmd_line == NULL) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 325 | cmd_line = "<unset>"; // Because no-one called InitLogging. |
Elliott Hughes | 98eedd8 | 2012-06-11 17:52:56 -0700 | [diff] [blame] | 326 | } |
Elliott Hughes | 289be85 | 2012-06-12 13:57:20 -0700 | [diff] [blame] | 327 | pid_t tid = GetTid(); |
| 328 | std::string thread_name(GetThreadName(tid)); |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 329 | UContext thread_context(raw_context); |
Andreas Gampe | 628a61a | 2015-01-07 22:08:35 -0800 | [diff] [blame] | 330 | Backtrace thread_backtrace(raw_context); |
Elliott Hughes | 8593fdb | 2012-04-21 20:53:44 -0700 | [diff] [blame] | 331 | |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 332 | LOG(INTERNAL_FATAL) << "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n" |
| 333 | << StringPrintf("Fatal signal %d (%s), code %d (%s)", |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 334 | signal_number, GetSignalName(signal_number), |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 335 | info->si_code, |
| 336 | GetSignalCodeName(signal_number, info->si_code)) |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 337 | << (has_address ? StringPrintf(" fault addr %p", info->si_addr) : "") << "\n" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 338 | << "OS: " << Dumpable<OsInfo>(os_info) << "\n" |
Elliott Hughes | 98eedd8 | 2012-06-11 17:52:56 -0700 | [diff] [blame] | 339 | << "Cmdline: " << cmd_line << "\n" |
Elliott Hughes | 289be85 | 2012-06-12 13:57:20 -0700 | [diff] [blame] | 340 | << "Thread: " << tid << " \"" << thread_name << "\"\n" |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 341 | << "Registers:\n" << Dumpable<UContext>(thread_context) << "\n" |
| 342 | << "Backtrace:\n" << Dumpable<Backtrace>(thread_backtrace); |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 343 | Runtime* runtime = Runtime::Current(); |
| 344 | if (runtime != nullptr) { |
Andreas Gampe | 038bb22 | 2015-01-13 19:48:14 -0800 | [diff] [blame] | 345 | if (IsTimeoutSignal(signal_number)) { |
| 346 | // Special timeout signal. Try to dump all threads. |
| 347 | runtime->GetThreadList()->DumpForSigQuit(LOG(INTERNAL_FATAL)); |
| 348 | } |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 349 | gc::Heap* heap = runtime->GetHeap(); |
| 350 | LOG(INTERNAL_FATAL) << "Fault message: " << runtime->GetFaultMessage(); |
Mathieu Chartier | c2f4d02 | 2014-03-03 16:11:42 -0800 | [diff] [blame] | 351 | if (kDumpHeapObjectOnSigsevg && heap != nullptr && info != nullptr) { |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 352 | LOG(INTERNAL_FATAL) << "Dump heap object at fault address: "; |
| 353 | heap->DumpObject(LOG(INTERNAL_FATAL), reinterpret_cast<mirror::Object*>(info->si_addr)); |
| 354 | } |
| 355 | } |
Elliott Hughes | 4909ba4 | 2012-06-14 13:33:49 -0700 | [diff] [blame] | 356 | if (getenv("debug_db_uid") != NULL || getenv("art_wait_for_gdb_on_crash") != NULL) { |
Elliott Hughes | 2554cb9 | 2012-04-18 17:19:26 -0700 | [diff] [blame] | 357 | LOG(INTERNAL_FATAL) << "********************************************************\n" |
Elliott Hughes | 289be85 | 2012-06-12 13:57:20 -0700 | [diff] [blame] | 358 | << "* Process " << getpid() << " thread " << tid << " \"" << thread_name << "\"" |
| 359 | << " has been suspended while crashing.\n" |
| 360 | << "* Attach gdb:\n" |
| 361 | << "* gdb -p " << tid << "\n" |
Elliott Hughes | 2554cb9 | 2012-04-18 17:19:26 -0700 | [diff] [blame] | 362 | << "********************************************************\n"; |
| 363 | // Wait for debugger to attach. |
| 364 | while (true) { |
| 365 | } |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 366 | } |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 367 | #ifdef __linux__ |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 368 | // Remove our signal handler for this signal... |
| 369 | struct sigaction action; |
| 370 | memset(&action, 0, sizeof(action)); |
| 371 | sigemptyset(&action.sa_mask); |
| 372 | action.sa_handler = SIG_DFL; |
| 373 | sigaction(signal_number, &action, NULL); |
| 374 | // ...and re-raise so we die with the appropriate status. |
| 375 | kill(getpid(), signal_number); |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 376 | #else |
| 377 | exit(EXIT_FAILURE); |
| 378 | #endif |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 381 | void Runtime::InitPlatformSignalHandlers() { |
| 382 | // On the host, we don't have debuggerd to dump a stack for us when something unexpected happens. |
| 383 | struct sigaction action; |
| 384 | memset(&action, 0, sizeof(action)); |
| 385 | sigemptyset(&action.sa_mask); |
| 386 | action.sa_sigaction = HandleUnexpectedSignal; |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 387 | // Use the three-argument sa_sigaction handler. |
| 388 | action.sa_flags |= SA_SIGINFO; |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 389 | // Use the alternate signal stack so we can catch stack overflows. |
| 390 | action.sa_flags |= SA_ONSTACK; |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 391 | |
| 392 | int rc = 0; |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 393 | rc += sigaction(SIGABRT, &action, NULL); |
| 394 | rc += sigaction(SIGBUS, &action, NULL); |
| 395 | rc += sigaction(SIGFPE, &action, NULL); |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 396 | rc += sigaction(SIGILL, &action, NULL); |
| 397 | rc += sigaction(SIGPIPE, &action, NULL); |
| 398 | rc += sigaction(SIGSEGV, &action, NULL); |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 399 | #if defined(SIGSTKFLT) |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 400 | rc += sigaction(SIGSTKFLT, &action, NULL); |
Elliott Hughes | ac8097f | 2012-04-16 14:59:44 -0700 | [diff] [blame] | 401 | #endif |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 402 | rc += sigaction(SIGTRAP, &action, NULL); |
Andreas Gampe | 038bb22 | 2015-01-13 19:48:14 -0800 | [diff] [blame] | 403 | // Special dump-all timeout. |
Andreas Gampe | cbfded4 | 2015-01-14 18:35:01 -0800 | [diff] [blame] | 404 | if (GetTimeoutSignal() != -1) { |
| 405 | rc += sigaction(GetTimeoutSignal(), &action, NULL); |
| 406 | } |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 407 | CHECK_EQ(rc, 0); |
| 408 | } |
| 409 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 410 | } // namespace art |