Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | */ |
| 16 | |
| 17 | #include "fault_handler.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 18 | |
Alex Light | 21f498f | 2018-02-02 11:12:49 -0800 | [diff] [blame] | 19 | #include <string.h> |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 20 | #include <sys/mman.h> |
| 21 | #include <sys/ucontext.h> |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 22 | |
| 23 | #include "art_method-inl.h" |
Andreas Gampe | 170331f | 2017-12-07 18:41:03 -0800 | [diff] [blame] | 24 | #include "base/logging.h" // For VLOG |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 25 | #include "base/safe_copy.h" |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 26 | #include "base/stl_util.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 27 | #include "dex/dex_file_types.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 28 | #include "mirror/class.h" |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 29 | #include "mirror/object_reference.h" |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 30 | #include "oat_quick_method_header.h" |
Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 31 | #include "sigchain.h" |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 32 | #include "thread-current-inl.h" |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 33 | #include "verify_object-inl.h" |
| 34 | |
| 35 | namespace art { |
| 36 | // Static fault manger object accessed by signal handler. |
| 37 | FaultManager fault_manager; |
| 38 | |
Alex Light | 9cc68ed | 2018-04-03 15:55:46 -0700 | [diff] [blame] | 39 | // This needs to be NO_INLINE since some debuggers do not read the inline-info to set a breakpoint |
| 40 | // if it isn't. |
| 41 | extern "C" NO_INLINE __attribute__((visibility("default"))) void art_sigsegv_fault() { |
Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 42 | // Set a breakpoint here to be informed when a SIGSEGV is unhandled by ART. |
| 43 | VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler."; |
| 44 | } |
Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 45 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 46 | // Signal handler called on SIGSEGV. |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 47 | static bool art_fault_handler(int sig, siginfo_t* info, void* context) { |
| 48 | return fault_manager.HandleFault(sig, info, context); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 49 | } |
| 50 | |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 51 | #if defined(__linux__) |
| 52 | |
| 53 | // Change to verify the safe implementations against the original ones. |
| 54 | constexpr bool kVerifySafeImpls = false; |
| 55 | |
| 56 | // Provide implementations of ArtMethod::GetDeclaringClass and VerifyClassClass that use SafeCopy |
| 57 | // to safely dereference pointers which are potentially garbage. |
| 58 | // Only available on Linux due to availability of SafeCopy. |
| 59 | |
| 60 | static mirror::Class* SafeGetDeclaringClass(ArtMethod* method) |
| 61 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 62 | char* method_declaring_class = |
| 63 | reinterpret_cast<char*>(method) + ArtMethod::DeclaringClassOffset().SizeValue(); |
| 64 | |
| 65 | // ArtMethod::declaring_class_ is a GcRoot<mirror::Class>. |
| 66 | // Read it out into as a CompressedReference directly for simplicity's sake. |
| 67 | mirror::CompressedReference<mirror::Class> cls; |
| 68 | ssize_t rc = SafeCopy(&cls, method_declaring_class, sizeof(cls)); |
| 69 | CHECK_NE(-1, rc); |
| 70 | |
| 71 | if (kVerifySafeImpls) { |
Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 72 | ObjPtr<mirror::Class> actual_class = method->GetDeclaringClassUnchecked<kWithoutReadBarrier>(); |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 73 | CHECK_EQ(actual_class, cls.AsMirrorPtr()); |
| 74 | } |
| 75 | |
| 76 | if (rc != sizeof(cls)) { |
| 77 | return nullptr; |
| 78 | } |
| 79 | |
| 80 | return cls.AsMirrorPtr(); |
| 81 | } |
| 82 | |
| 83 | static mirror::Class* SafeGetClass(mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 84 | char* obj_cls = reinterpret_cast<char*>(obj) + mirror::Object::ClassOffset().SizeValue(); |
| 85 | |
Mathieu Chartier | ad8ebb3 | 2017-08-09 20:13:18 -0700 | [diff] [blame] | 86 | mirror::HeapReference<mirror::Class> cls; |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 87 | ssize_t rc = SafeCopy(&cls, obj_cls, sizeof(cls)); |
| 88 | CHECK_NE(-1, rc); |
| 89 | |
| 90 | if (kVerifySafeImpls) { |
| 91 | mirror::Class* actual_class = obj->GetClass<kVerifyNone>(); |
| 92 | CHECK_EQ(actual_class, cls.AsMirrorPtr()); |
| 93 | } |
| 94 | |
| 95 | if (rc != sizeof(cls)) { |
| 96 | return nullptr; |
| 97 | } |
| 98 | |
| 99 | return cls.AsMirrorPtr(); |
| 100 | } |
| 101 | |
| 102 | static bool SafeVerifyClassClass(mirror::Class* cls) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 103 | mirror::Class* c_c = SafeGetClass(cls); |
| 104 | bool result = c_c != nullptr && c_c == SafeGetClass(c_c); |
| 105 | |
| 106 | if (kVerifySafeImpls) { |
| 107 | CHECK_EQ(VerifyClassClass(cls), result); |
| 108 | } |
| 109 | |
| 110 | return result; |
| 111 | } |
| 112 | |
| 113 | #else |
| 114 | |
Josh Gao | 77c1415 | 2017-04-19 13:20:19 -0700 | [diff] [blame] | 115 | static mirror::Class* SafeGetDeclaringClass(ArtMethod* method_obj) |
| 116 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | 9a497a6 | 2018-07-22 13:56:00 -0700 | [diff] [blame] | 117 | return method_obj->GetDeclaringClassUnchecked<kWithoutReadBarrier>().Ptr(); |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Josh Gao | 77c1415 | 2017-04-19 13:20:19 -0700 | [diff] [blame] | 120 | static bool SafeVerifyClassClass(mirror::Class* cls) REQUIRES_SHARED(Locks::mutator_lock_) { |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 121 | return VerifyClassClass(cls); |
| 122 | } |
| 123 | #endif |
| 124 | |
| 125 | |
Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 126 | FaultManager::FaultManager() : initialized_(false) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 127 | sigaction(SIGSEGV, nullptr, &oldaction_); |
| 128 | } |
| 129 | |
| 130 | FaultManager::~FaultManager() { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | void FaultManager::Init() { |
Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 134 | CHECK(!initialized_); |
Josh Gao | 6b2018f | 2017-05-04 13:55:28 -0700 | [diff] [blame] | 135 | sigset_t mask; |
| 136 | sigfillset(&mask); |
| 137 | sigdelset(&mask, SIGABRT); |
| 138 | sigdelset(&mask, SIGBUS); |
| 139 | sigdelset(&mask, SIGFPE); |
| 140 | sigdelset(&mask, SIGILL); |
| 141 | sigdelset(&mask, SIGSEGV); |
| 142 | |
| 143 | SigchainAction sa = { |
| 144 | .sc_sigaction = art_fault_handler, |
| 145 | .sc_mask = mask, |
| 146 | .sc_flags = 0UL, |
| 147 | }; |
| 148 | |
| 149 | AddSpecialSignalHandlerFn(SIGSEGV, &sa); |
Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 150 | initialized_ = true; |
| 151 | } |
| 152 | |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 153 | void FaultManager::Release() { |
Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 154 | if (initialized_) { |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 155 | RemoveSpecialSignalHandlerFn(SIGSEGV, art_fault_handler); |
Dave Allison | 1f8ef6f | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 156 | initialized_ = false; |
| 157 | } |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 158 | } |
| 159 | |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 160 | void FaultManager::Shutdown() { |
| 161 | if (initialized_) { |
| 162 | Release(); |
| 163 | |
| 164 | // Free all handlers. |
| 165 | STLDeleteElements(&generated_code_handlers_); |
| 166 | STLDeleteElements(&other_handlers_); |
| 167 | } |
| 168 | } |
| 169 | |
jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 170 | bool FaultManager::HandleFaultByOtherHandlers(int sig, siginfo_t* info, void* context) { |
Andreas Gampe | d14b73d | 2016-04-18 17:15:42 -0700 | [diff] [blame] | 171 | if (other_handlers_.empty()) { |
| 172 | return false; |
| 173 | } |
| 174 | |
Dave Allison | 0c2894b | 2014-08-29 12:06:16 -0700 | [diff] [blame] | 175 | Thread* self = Thread::Current(); |
| 176 | |
jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 177 | DCHECK(self != nullptr); |
| 178 | DCHECK(Runtime::Current() != nullptr); |
| 179 | DCHECK(Runtime::Current()->IsStarted()); |
Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 180 | for (const auto& handler : other_handlers_) { |
| 181 | if (handler->Action(sig, info, context)) { |
| 182 | return true; |
Ian Rogers | ad11e7a | 2014-11-11 16:55:11 -0800 | [diff] [blame] | 183 | } |
| 184 | } |
jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 185 | return false; |
| 186 | } |
| 187 | |
Alex Light | 21f498f | 2018-02-02 11:12:49 -0800 | [diff] [blame] | 188 | static const char* SignalCodeName(int sig, int code) { |
| 189 | if (sig != SIGSEGV) { |
| 190 | return "UNKNOWN"; |
| 191 | } else { |
| 192 | switch (code) { |
| 193 | case SEGV_MAPERR: return "SEGV_MAPERR"; |
| 194 | case SEGV_ACCERR: return "SEGV_ACCERR"; |
| 195 | default: return "UNKNOWN"; |
| 196 | } |
| 197 | } |
| 198 | } |
| 199 | static std::ostream& PrintSignalInfo(std::ostream& os, siginfo_t* info) { |
| 200 | os << " si_signo: " << info->si_signo << " (" << strsignal(info->si_signo) << ")\n" |
| 201 | << " si_code: " << info->si_code |
| 202 | << " (" << SignalCodeName(info->si_signo, info->si_code) << ")"; |
| 203 | if (info->si_signo == SIGSEGV) { |
| 204 | os << "\n" << " si_addr: " << info->si_addr; |
| 205 | } |
| 206 | return os; |
| 207 | } |
| 208 | |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 209 | bool FaultManager::HandleFault(int sig, siginfo_t* info, void* context) { |
Alex Light | 21f498f | 2018-02-02 11:12:49 -0800 | [diff] [blame] | 210 | if (VLOG_IS_ON(signals)) { |
| 211 | PrintSignalInfo(VLOG_STREAM(signals) << "Handling fault:" << "\n", info); |
| 212 | } |
Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 213 | |
| 214 | #ifdef TEST_NESTED_SIGNAL |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 215 | // Simulate a crash in a handler. |
| 216 | raise(SIGSEGV); |
Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 217 | #endif |
| 218 | |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 219 | if (IsInGeneratedCode(info, context, true)) { |
| 220 | VLOG(signals) << "in generated code, looking for handler"; |
| 221 | for (const auto& handler : generated_code_handlers_) { |
| 222 | VLOG(signals) << "invoking Action on handler " << handler; |
| 223 | if (handler->Action(sig, info, context)) { |
| 224 | // We have handled a signal so it's time to return from the |
| 225 | // signal handler to the appropriate place. |
| 226 | return true; |
Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 227 | } |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 228 | } |
Alex Light | f4ed7e8 | 2018-01-17 11:52:36 -0800 | [diff] [blame] | 229 | } |
Josh Gao | efd20cb | 2017-02-28 16:53:59 -0800 | [diff] [blame] | 230 | |
Alex Light | f4ed7e8 | 2018-01-17 11:52:36 -0800 | [diff] [blame] | 231 | // We hit a signal we didn't handle. This might be something for which |
| 232 | // we can give more information about so call all registered handlers to |
| 233 | // see if it is. |
| 234 | if (HandleFaultByOtherHandlers(sig, info, context)) { |
| 235 | return true; |
jgu21 | 1376bdf | 2016-01-18 09:12:33 -0500 | [diff] [blame] | 236 | } |
Dave Allison | f4b80bc | 2014-05-14 15:41:25 -0700 | [diff] [blame] | 237 | |
Dave Allison | 8be44cf | 2014-09-04 14:33:42 -0700 | [diff] [blame] | 238 | // Set a breakpoint in this function to catch unhandled signals. |
| 239 | art_sigsegv_fault(); |
Josh Gao | 85a78cf | 2017-03-20 16:26:42 -0700 | [diff] [blame] | 240 | return false; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 241 | } |
| 242 | |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 243 | void FaultManager::AddHandler(FaultHandler* handler, bool generated_code) { |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 244 | DCHECK(initialized_); |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 245 | if (generated_code) { |
| 246 | generated_code_handlers_.push_back(handler); |
| 247 | } else { |
| 248 | other_handlers_.push_back(handler); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | void FaultManager::RemoveHandler(FaultHandler* handler) { |
| 253 | auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler); |
| 254 | if (it != generated_code_handlers_.end()) { |
| 255 | generated_code_handlers_.erase(it); |
| 256 | return; |
| 257 | } |
| 258 | auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler); |
| 259 | if (it2 != other_handlers_.end()) { |
Alex Light | f4ed7e8 | 2018-01-17 11:52:36 -0800 | [diff] [blame] | 260 | other_handlers_.erase(it2); |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 261 | return; |
| 262 | } |
| 263 | LOG(FATAL) << "Attempted to remove non existent handler " << handler; |
| 264 | } |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 265 | |
| 266 | // This function is called within the signal handler. It checks that |
| 267 | // the mutator_lock is held (shared). No annotalysis is done. |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 268 | bool FaultManager::IsInGeneratedCode(siginfo_t* siginfo, void* context, bool check_dex_pc) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 269 | // We can only be running Java code in the current thread if it |
| 270 | // is in Runnable state. |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 271 | VLOG(signals) << "Checking for generated code"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 272 | Thread* thread = Thread::Current(); |
| 273 | if (thread == nullptr) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 274 | VLOG(signals) << "no current thread"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 275 | return false; |
| 276 | } |
| 277 | |
| 278 | ThreadState state = thread->GetState(); |
| 279 | if (state != kRunnable) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 280 | VLOG(signals) << "not runnable"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 281 | return false; |
| 282 | } |
| 283 | |
| 284 | // Current thread is runnable. |
| 285 | // Make sure it has the mutator lock. |
| 286 | if (!Locks::mutator_lock_->IsSharedHeld(thread)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 287 | VLOG(signals) << "no lock"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 288 | return false; |
| 289 | } |
| 290 | |
Nicolas Geoffray | 7bf2b4f | 2015-07-08 10:11:59 +0000 | [diff] [blame] | 291 | ArtMethod* method_obj = nullptr; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 292 | uintptr_t return_pc = 0; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 293 | uintptr_t sp = 0; |
Nicolas Geoffray | a00b54b | 2019-12-03 14:36:42 +0000 | [diff] [blame] | 294 | bool is_stack_overflow = false; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 295 | |
| 296 | // Get the architecture specific method address and return address. These |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 297 | // are in architecture specific files in arch/<arch>/fault_handler_<arch>. |
Nicolas Geoffray | a00b54b | 2019-12-03 14:36:42 +0000 | [diff] [blame] | 298 | GetMethodAndReturnPcAndSp(siginfo, context, &method_obj, &return_pc, &sp, &is_stack_overflow); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 299 | |
| 300 | // If we don't have a potential method, we're outta here. |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 301 | VLOG(signals) << "potential method: " << method_obj; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 302 | // TODO: Check linear alloc and image. |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 303 | DCHECK_ALIGNED(ArtMethod::Size(kRuntimePointerSize), sizeof(void*)) |
Nicolas Geoffray | 7bf2b4f | 2015-07-08 10:11:59 +0000 | [diff] [blame] | 304 | << "ArtMethod is not pointer aligned"; |
| 305 | if (method_obj == nullptr || !IsAligned<sizeof(void*)>(method_obj)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 306 | VLOG(signals) << "no method"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 307 | return false; |
| 308 | } |
| 309 | |
| 310 | // Verify that the potential method is indeed a method. |
| 311 | // TODO: check the GC maps to make sure it's an object. |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 312 | // Check that the class pointer inside the object is not null and is aligned. |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 313 | // No read barrier because method_obj may not be a real object. |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 314 | mirror::Class* cls = SafeGetDeclaringClass(method_obj); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 315 | if (cls == nullptr) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 316 | VLOG(signals) << "not a class"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 317 | return false; |
| 318 | } |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 319 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 320 | if (!IsAligned<kObjectAlignment>(cls)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 321 | VLOG(signals) << "not aligned"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 322 | return false; |
| 323 | } |
| 324 | |
Josh Gao | 143f61c | 2017-04-17 20:10:29 -0700 | [diff] [blame] | 325 | if (!SafeVerifyClassClass(cls)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 326 | VLOG(signals) << "not a class class"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 327 | return false; |
| 328 | } |
| 329 | |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 330 | const OatQuickMethodHeader* method_header = method_obj->GetOatQuickMethodHeader(return_pc); |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 331 | |
Nicolas Geoffray | 3eb493f | 2020-11-27 12:31:06 +0000 | [diff] [blame] | 332 | if (method_header == nullptr) { |
| 333 | VLOG(signals) << "no compiled code"; |
| 334 | return false; |
| 335 | } |
| 336 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 337 | // We can be certain that this is a method now. Check if we have a GC map |
| 338 | // at the return PC address. |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 339 | if (true || kIsDebugBuild) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 340 | VLOG(signals) << "looking for dex pc for return pc " << std::hex << return_pc; |
Nicolas Geoffray | 6bc4374 | 2015-10-12 18:11:10 +0100 | [diff] [blame] | 341 | uint32_t sought_offset = return_pc - |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 342 | reinterpret_cast<uintptr_t>(method_header->GetEntryPoint()); |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 343 | VLOG(signals) << "pc offset: " << std::hex << sought_offset; |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 344 | } |
Nicolas Geoffray | a00b54b | 2019-12-03 14:36:42 +0000 | [diff] [blame] | 345 | uint32_t dexpc = dex::kDexNoIndex; |
| 346 | if (is_stack_overflow) { |
| 347 | // If it's an implicit stack overflow check, the frame is not setup, so we |
| 348 | // just infer the dex PC as zero. |
| 349 | dexpc = 0; |
| 350 | } else { |
| 351 | CHECK_EQ(*reinterpret_cast<ArtMethod**>(sp), method_obj); |
| 352 | dexpc = method_header->ToDexPc(reinterpret_cast<ArtMethod**>(sp), return_pc, false); |
| 353 | } |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame] | 354 | VLOG(signals) << "dexpc: " << dexpc; |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 355 | return !check_dex_pc || dexpc != dex::kDexNoIndex; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | FaultHandler::FaultHandler(FaultManager* manager) : manager_(manager) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | // |
| 362 | // Null pointer fault handler |
| 363 | // |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 364 | NullPointerHandler::NullPointerHandler(FaultManager* manager) : FaultHandler(manager) { |
| 365 | manager_->AddHandler(this, true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | // |
| 369 | // Suspension fault handler |
| 370 | // |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 371 | SuspensionHandler::SuspensionHandler(FaultManager* manager) : FaultHandler(manager) { |
| 372 | manager_->AddHandler(this, true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | // |
| 376 | // Stack overflow fault handler |
| 377 | // |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 378 | StackOverflowHandler::StackOverflowHandler(FaultManager* manager) : FaultHandler(manager) { |
| 379 | manager_->AddHandler(this, true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 380 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 381 | |
| 382 | // |
| 383 | // Stack trace handler, used to help get a stack trace from SIGSEGV inside of compiled code. |
| 384 | // |
| 385 | JavaStackTraceHandler::JavaStackTraceHandler(FaultManager* manager) : FaultHandler(manager) { |
| 386 | manager_->AddHandler(this, false); |
| 387 | } |
| 388 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 389 | bool JavaStackTraceHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* siginfo, void* context) { |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 390 | // Make sure that we are in the generated code, but we may not have a dex pc. |
Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 391 | bool in_generated_code = manager_->IsInGeneratedCode(siginfo, context, false); |
Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 392 | if (in_generated_code) { |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 393 | LOG(ERROR) << "Dumping java stack trace for crash in generated code"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 394 | ArtMethod* method = nullptr; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 395 | uintptr_t return_pc = 0; |
| 396 | uintptr_t sp = 0; |
Nicolas Geoffray | a00b54b | 2019-12-03 14:36:42 +0000 | [diff] [blame] | 397 | bool is_stack_overflow = false; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 398 | Thread* self = Thread::Current(); |
Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 399 | |
Nicolas Geoffray | a00b54b | 2019-12-03 14:36:42 +0000 | [diff] [blame] | 400 | manager_->GetMethodAndReturnPcAndSp( |
| 401 | siginfo, context, &method, &return_pc, &sp, &is_stack_overflow); |
Dave Allison | 0c2894b | 2014-08-29 12:06:16 -0700 | [diff] [blame] | 402 | // Inside of generated code, sp[0] is the method, so sp is the frame. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 403 | self->SetTopOfStack(reinterpret_cast<ArtMethod**>(sp)); |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 404 | self->DumpJavaStack(LOG_STREAM(ERROR)); |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 405 | } |
Dave Allison | 8ce6b90 | 2014-08-26 11:07:58 -0700 | [diff] [blame] | 406 | |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 407 | return false; // Return false since we want to propagate the fault to the main signal handler. |
| 408 | } |
| 409 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 410 | } // namespace art |