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