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" |
| 18 | #include <sys/mman.h> |
| 19 | #include <sys/ucontext.h> |
| 20 | #include "base/macros.h" |
| 21 | #include "globals.h" |
| 22 | #include "base/logging.h" |
| 23 | #include "base/hex_dump.h" |
| 24 | #include "thread.h" |
| 25 | #include "mirror/art_method-inl.h" |
| 26 | #include "mirror/class-inl.h" |
| 27 | #include "mirror/dex_cache.h" |
| 28 | #include "mirror/object_array-inl.h" |
| 29 | #include "mirror/object-inl.h" |
| 30 | #include "object_utils.h" |
| 31 | #include "scoped_thread_state_change.h" |
| 32 | #include "verify_object-inl.h" |
| 33 | |
| 34 | namespace art { |
| 35 | // Static fault manger object accessed by signal handler. |
| 36 | FaultManager fault_manager; |
| 37 | |
| 38 | // Signal handler called on SIGSEGV. |
| 39 | static void art_fault_handler(int sig, siginfo_t* info, void* context) { |
| 40 | fault_manager.HandleFault(sig, info, context); |
| 41 | } |
| 42 | |
| 43 | FaultManager::FaultManager() { |
| 44 | sigaction(SIGSEGV, nullptr, &oldaction_); |
| 45 | } |
| 46 | |
| 47 | FaultManager::~FaultManager() { |
| 48 | sigaction(SIGSEGV, &oldaction_, nullptr); // Restore old handler. |
| 49 | } |
| 50 | |
| 51 | void FaultManager::Init() { |
| 52 | struct sigaction action; |
| 53 | action.sa_sigaction = art_fault_handler; |
| 54 | sigemptyset(&action.sa_mask); |
| 55 | action.sa_flags = SA_SIGINFO | SA_ONSTACK; |
Narayan Kamath | 15245bc | 2014-03-14 12:53:43 +0000 | [diff] [blame] | 56 | #if !defined(__mips__) |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 57 | action.sa_restorer = nullptr; |
Narayan Kamath | 15245bc | 2014-03-14 12:53:43 +0000 | [diff] [blame] | 58 | #endif |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 59 | sigaction(SIGSEGV, &action, &oldaction_); |
| 60 | } |
| 61 | |
| 62 | void FaultManager::HandleFault(int sig, siginfo_t* info, void* context) { |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 63 | LOG(DEBUG) << "Handling fault"; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 64 | if (IsInGeneratedCode(context, true)) { |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 65 | LOG(DEBUG) << "in generated code, looking for handler"; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 66 | for (const auto& handler : generated_code_handlers_) { |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 67 | LOG(DEBUG) << "invoking Action on handler " << handler; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 68 | if (handler->Action(sig, info, context)) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 69 | return; |
| 70 | } |
| 71 | } |
| 72 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 73 | for (const auto& handler : other_handlers_) { |
| 74 | if (handler->Action(sig, info, context)) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 75 | return; |
| 76 | } |
| 77 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 78 | LOG(ERROR)<< "Caught unknown SIGSEGV in ART fault handler"; |
| 79 | oldaction_.sa_sigaction(sig, info, context); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 80 | } |
| 81 | |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 82 | void FaultManager::AddHandler(FaultHandler* handler, bool generated_code) { |
| 83 | if (generated_code) { |
| 84 | generated_code_handlers_.push_back(handler); |
| 85 | } else { |
| 86 | other_handlers_.push_back(handler); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void FaultManager::RemoveHandler(FaultHandler* handler) { |
| 91 | auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler); |
| 92 | if (it != generated_code_handlers_.end()) { |
| 93 | generated_code_handlers_.erase(it); |
| 94 | return; |
| 95 | } |
| 96 | auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler); |
| 97 | if (it2 != other_handlers_.end()) { |
| 98 | other_handlers_.erase(it); |
| 99 | return; |
| 100 | } |
| 101 | LOG(FATAL) << "Attempted to remove non existent handler " << handler; |
| 102 | } |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 103 | |
| 104 | // This function is called within the signal handler. It checks that |
| 105 | // the mutator_lock is held (shared). No annotalysis is done. |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 106 | bool FaultManager::IsInGeneratedCode(void* context, bool check_dex_pc) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 107 | // We can only be running Java code in the current thread if it |
| 108 | // is in Runnable state. |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 109 | VLOG(signals) << "Checking for generated code"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 110 | Thread* thread = Thread::Current(); |
| 111 | if (thread == nullptr) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 112 | VLOG(signals) << "no current thread"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 113 | return false; |
| 114 | } |
| 115 | |
| 116 | ThreadState state = thread->GetState(); |
| 117 | if (state != kRunnable) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 118 | VLOG(signals) << "not runnable"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 119 | return false; |
| 120 | } |
| 121 | |
| 122 | // Current thread is runnable. |
| 123 | // Make sure it has the mutator lock. |
| 124 | if (!Locks::mutator_lock_->IsSharedHeld(thread)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 125 | VLOG(signals) << "no lock"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 126 | return false; |
| 127 | } |
| 128 | |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 129 | mirror::ArtMethod* method_obj = 0; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 130 | uintptr_t return_pc = 0; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 131 | uintptr_t sp = 0; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 132 | |
| 133 | // Get the architecture specific method address and return address. These |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 134 | // are in architecture specific files in arch/<arch>/fault_handler_<arch>. |
| 135 | GetMethodAndReturnPCAndSP(context, &method_obj, &return_pc, &sp); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 136 | |
| 137 | // If we don't have a potential method, we're outta here. |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 138 | VLOG(signals) << "potential method: " << method_obj; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 139 | if (method_obj == 0 || !IsAligned<kObjectAlignment>(method_obj)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 140 | VLOG(signals) << "no method"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 141 | return false; |
| 142 | } |
| 143 | |
| 144 | // Verify that the potential method is indeed a method. |
| 145 | // TODO: check the GC maps to make sure it's an object. |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 146 | // Check that the class pointer inside the object is not null and is aligned. |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 147 | // TODO: Method might be not a heap address, and GetClass could fault. |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 148 | mirror::Class* cls = method_obj->GetClass<kVerifyNone>(); |
| 149 | if (cls == nullptr) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 150 | VLOG(signals) << "not a class"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 151 | return false; |
| 152 | } |
| 153 | if (!IsAligned<kObjectAlignment>(cls)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 154 | VLOG(signals) << "not aligned"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 155 | return false; |
| 156 | } |
| 157 | |
| 158 | |
| 159 | if (!VerifyClassClass(cls)) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 160 | VLOG(signals) << "not a class class"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 161 | return false; |
| 162 | } |
| 163 | |
| 164 | // Now make sure the class is a mirror::ArtMethod. |
| 165 | if (!cls->IsArtMethodClass()) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 166 | VLOG(signals) << "not a method"; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 167 | return false; |
| 168 | } |
| 169 | |
| 170 | // We can be certain that this is a method now. Check if we have a GC map |
| 171 | // at the return PC address. |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 172 | if (true || kIsDebugBuild) { |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 173 | VLOG(signals) << "looking for dex pc for return pc " << std::hex << return_pc; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 174 | const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(method_obj); |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 175 | uint32_t sought_offset = return_pc - reinterpret_cast<uintptr_t>(code); |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 176 | VLOG(signals) << "pc offset: " << std::hex << sought_offset; |
Dave Allison | f943914 | 2014-03-27 15:10:22 -0700 | [diff] [blame] | 177 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 178 | uint32_t dexpc = method_obj->ToDexPc(return_pc, false); |
Dave Allison | 5cd3375 | 2014-04-15 15:57:58 -0700 | [diff] [blame^] | 179 | VLOG(signals) << "dexpc: " << dexpc; |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 180 | return !check_dex_pc || dexpc != DexFile::kDexNoIndex; |
| 181 | } |
| 182 | |
| 183 | FaultHandler::FaultHandler(FaultManager* manager) : manager_(manager) { |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | // |
| 187 | // Null pointer fault handler |
| 188 | // |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 189 | NullPointerHandler::NullPointerHandler(FaultManager* manager) : FaultHandler(manager) { |
| 190 | manager_->AddHandler(this, true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | // |
| 194 | // Suspension fault handler |
| 195 | // |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 196 | SuspensionHandler::SuspensionHandler(FaultManager* manager) : FaultHandler(manager) { |
| 197 | manager_->AddHandler(this, true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | // |
| 201 | // Stack overflow fault handler |
| 202 | // |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 203 | StackOverflowHandler::StackOverflowHandler(FaultManager* manager) : FaultHandler(manager) { |
| 204 | manager_->AddHandler(this, true); |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 205 | } |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 206 | |
| 207 | // |
| 208 | // Stack trace handler, used to help get a stack trace from SIGSEGV inside of compiled code. |
| 209 | // |
| 210 | JavaStackTraceHandler::JavaStackTraceHandler(FaultManager* manager) : FaultHandler(manager) { |
| 211 | manager_->AddHandler(this, false); |
| 212 | } |
| 213 | |
| 214 | bool JavaStackTraceHandler::Action(int sig, siginfo_t* siginfo, void* context) { |
| 215 | // Make sure that we are in the generated code, but we may not have a dex pc. |
| 216 | if (manager_->IsInGeneratedCode(context, false)) { |
| 217 | LOG(ERROR) << "Dumping java stack trace for crash in generated code"; |
| 218 | mirror::ArtMethod* method = nullptr; |
| 219 | uintptr_t return_pc = 0; |
| 220 | uintptr_t sp = 0; |
| 221 | manager_->GetMethodAndReturnPCAndSP(context, &method, &return_pc, &sp); |
| 222 | Thread* self = Thread::Current(); |
| 223 | // Inside of generated code, sp[0] is the method, so sp is the frame. |
| 224 | mirror::ArtMethod** frame = reinterpret_cast<mirror::ArtMethod**>(sp); |
| 225 | self->SetTopOfStack(frame, 0); // Since we don't necessarily have a dex pc, pass in 0. |
| 226 | self->DumpJavaStack(LOG(ERROR)); |
| 227 | } |
| 228 | return false; // Return false since we want to propagate the fault to the main signal handler. |
| 229 | } |
| 230 | |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 231 | } // namespace art |
| 232 | |