blob: 4d7fd0ad1273d9669a9dede0700b7019e57faf21 [file] [log] [blame]
Dave Allisonb373e092014-02-20 16:06:36 -08001/*
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
34namespace art {
35// Static fault manger object accessed by signal handler.
36FaultManager fault_manager;
37
38// Signal handler called on SIGSEGV.
39static void art_fault_handler(int sig, siginfo_t* info, void* context) {
40 fault_manager.HandleFault(sig, info, context);
41}
42
43FaultManager::FaultManager() {
44 sigaction(SIGSEGV, nullptr, &oldaction_);
45}
46
47FaultManager::~FaultManager() {
48 sigaction(SIGSEGV, &oldaction_, nullptr); // Restore old handler.
49}
50
51void 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 Kamath15245bc2014-03-14 12:53:43 +000056#if !defined(__mips__)
Dave Allisonb373e092014-02-20 16:06:36 -080057 action.sa_restorer = nullptr;
Narayan Kamath15245bc2014-03-14 12:53:43 +000058#endif
Dave Allisonb373e092014-02-20 16:06:36 -080059 sigaction(SIGSEGV, &action, &oldaction_);
60}
61
62void FaultManager::HandleFault(int sig, siginfo_t* info, void* context) {
Brian Carlstrom4d466a82014-05-08 19:05:29 -070063 // BE CAREFUL ALLOCATING HERE INCLUDING USING LOG(...)
64 //
65 // If malloc calls abort, it will be holding its lock.
66 // If the handler tries to call malloc, it will deadlock.
67 VLOG(signals) << "Handling fault";
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070068 if (IsInGeneratedCode(context, true)) {
Brian Carlstrom4d466a82014-05-08 19:05:29 -070069 VLOG(signals) << "in generated code, looking for handler";
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070070 for (const auto& handler : generated_code_handlers_) {
Brian Carlstrom4d466a82014-05-08 19:05:29 -070071 VLOG(signals) << "invoking Action on handler " << handler;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070072 if (handler->Action(sig, info, context)) {
Dave Allisonb373e092014-02-20 16:06:36 -080073 return;
74 }
75 }
76 }
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070077 for (const auto& handler : other_handlers_) {
78 if (handler->Action(sig, info, context)) {
Dave Allisonb373e092014-02-20 16:06:36 -080079 return;
80 }
81 }
Dave Allisonad9697a2014-05-09 21:42:36 +000082 LOG(ERROR)<< "Caught unknown SIGSEGV in ART fault handler";
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070083 oldaction_.sa_sigaction(sig, info, context);
Dave Allisonb373e092014-02-20 16:06:36 -080084}
85
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070086void FaultManager::AddHandler(FaultHandler* handler, bool generated_code) {
87 if (generated_code) {
88 generated_code_handlers_.push_back(handler);
89 } else {
90 other_handlers_.push_back(handler);
91 }
92}
93
94void FaultManager::RemoveHandler(FaultHandler* handler) {
95 auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler);
96 if (it != generated_code_handlers_.end()) {
97 generated_code_handlers_.erase(it);
98 return;
99 }
100 auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler);
101 if (it2 != other_handlers_.end()) {
102 other_handlers_.erase(it);
103 return;
104 }
105 LOG(FATAL) << "Attempted to remove non existent handler " << handler;
106}
Dave Allisonb373e092014-02-20 16:06:36 -0800107
108// This function is called within the signal handler. It checks that
109// the mutator_lock is held (shared). No annotalysis is done.
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700110bool FaultManager::IsInGeneratedCode(void* context, bool check_dex_pc) {
Dave Allisonb373e092014-02-20 16:06:36 -0800111 // We can only be running Java code in the current thread if it
112 // is in Runnable state.
Dave Allison5cd33752014-04-15 15:57:58 -0700113 VLOG(signals) << "Checking for generated code";
Dave Allisonb373e092014-02-20 16:06:36 -0800114 Thread* thread = Thread::Current();
115 if (thread == nullptr) {
Dave Allison5cd33752014-04-15 15:57:58 -0700116 VLOG(signals) << "no current thread";
Dave Allisonb373e092014-02-20 16:06:36 -0800117 return false;
118 }
119
120 ThreadState state = thread->GetState();
121 if (state != kRunnable) {
Dave Allison5cd33752014-04-15 15:57:58 -0700122 VLOG(signals) << "not runnable";
Dave Allisonb373e092014-02-20 16:06:36 -0800123 return false;
124 }
125
126 // Current thread is runnable.
127 // Make sure it has the mutator lock.
128 if (!Locks::mutator_lock_->IsSharedHeld(thread)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700129 VLOG(signals) << "no lock";
Dave Allisonb373e092014-02-20 16:06:36 -0800130 return false;
131 }
132
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700133 mirror::ArtMethod* method_obj = 0;
Dave Allisonb373e092014-02-20 16:06:36 -0800134 uintptr_t return_pc = 0;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700135 uintptr_t sp = 0;
Dave Allisonb373e092014-02-20 16:06:36 -0800136
137 // Get the architecture specific method address and return address. These
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700138 // are in architecture specific files in arch/<arch>/fault_handler_<arch>.
139 GetMethodAndReturnPCAndSP(context, &method_obj, &return_pc, &sp);
Dave Allisonb373e092014-02-20 16:06:36 -0800140
141 // If we don't have a potential method, we're outta here.
Dave Allison5cd33752014-04-15 15:57:58 -0700142 VLOG(signals) << "potential method: " << method_obj;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700143 if (method_obj == 0 || !IsAligned<kObjectAlignment>(method_obj)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700144 VLOG(signals) << "no method";
Dave Allisonb373e092014-02-20 16:06:36 -0800145 return false;
146 }
147
148 // Verify that the potential method is indeed a method.
149 // TODO: check the GC maps to make sure it's an object.
Dave Allisonb373e092014-02-20 16:06:36 -0800150 // Check that the class pointer inside the object is not null and is aligned.
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700151 // TODO: Method might be not a heap address, and GetClass could fault.
Dave Allisonb373e092014-02-20 16:06:36 -0800152 mirror::Class* cls = method_obj->GetClass<kVerifyNone>();
153 if (cls == nullptr) {
Dave Allison5cd33752014-04-15 15:57:58 -0700154 VLOG(signals) << "not a class";
Dave Allisonb373e092014-02-20 16:06:36 -0800155 return false;
156 }
157 if (!IsAligned<kObjectAlignment>(cls)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700158 VLOG(signals) << "not aligned";
Dave Allisonb373e092014-02-20 16:06:36 -0800159 return false;
160 }
161
162
163 if (!VerifyClassClass(cls)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700164 VLOG(signals) << "not a class class";
Dave Allisonb373e092014-02-20 16:06:36 -0800165 return false;
166 }
167
168 // Now make sure the class is a mirror::ArtMethod.
169 if (!cls->IsArtMethodClass()) {
Dave Allison5cd33752014-04-15 15:57:58 -0700170 VLOG(signals) << "not a method";
Dave Allisonb373e092014-02-20 16:06:36 -0800171 return false;
172 }
173
174 // We can be certain that this is a method now. Check if we have a GC map
175 // at the return PC address.
Dave Allisonf9439142014-03-27 15:10:22 -0700176 if (true || kIsDebugBuild) {
Dave Allison5cd33752014-04-15 15:57:58 -0700177 VLOG(signals) << "looking for dex pc for return pc " << std::hex << return_pc;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700178 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(method_obj);
Dave Allisonf9439142014-03-27 15:10:22 -0700179 uint32_t sought_offset = return_pc - reinterpret_cast<uintptr_t>(code);
Dave Allison5cd33752014-04-15 15:57:58 -0700180 VLOG(signals) << "pc offset: " << std::hex << sought_offset;
Dave Allisonf9439142014-03-27 15:10:22 -0700181 }
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700182 uint32_t dexpc = method_obj->ToDexPc(return_pc, false);
Dave Allison5cd33752014-04-15 15:57:58 -0700183 VLOG(signals) << "dexpc: " << dexpc;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700184 return !check_dex_pc || dexpc != DexFile::kDexNoIndex;
185}
186
187FaultHandler::FaultHandler(FaultManager* manager) : manager_(manager) {
Dave Allisonb373e092014-02-20 16:06:36 -0800188}
189
190//
191// Null pointer fault handler
192//
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700193NullPointerHandler::NullPointerHandler(FaultManager* manager) : FaultHandler(manager) {
194 manager_->AddHandler(this, true);
Dave Allisonb373e092014-02-20 16:06:36 -0800195}
196
197//
198// Suspension fault handler
199//
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700200SuspensionHandler::SuspensionHandler(FaultManager* manager) : FaultHandler(manager) {
201 manager_->AddHandler(this, true);
Dave Allisonb373e092014-02-20 16:06:36 -0800202}
203
204//
205// Stack overflow fault handler
206//
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700207StackOverflowHandler::StackOverflowHandler(FaultManager* manager) : FaultHandler(manager) {
208 manager_->AddHandler(this, true);
Dave Allisonb373e092014-02-20 16:06:36 -0800209}
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700210
211//
212// Stack trace handler, used to help get a stack trace from SIGSEGV inside of compiled code.
213//
214JavaStackTraceHandler::JavaStackTraceHandler(FaultManager* manager) : FaultHandler(manager) {
215 manager_->AddHandler(this, false);
216}
217
218bool JavaStackTraceHandler::Action(int sig, siginfo_t* siginfo, void* context) {
219 // Make sure that we are in the generated code, but we may not have a dex pc.
220 if (manager_->IsInGeneratedCode(context, false)) {
221 LOG(ERROR) << "Dumping java stack trace for crash in generated code";
222 mirror::ArtMethod* method = nullptr;
223 uintptr_t return_pc = 0;
224 uintptr_t sp = 0;
225 manager_->GetMethodAndReturnPCAndSP(context, &method, &return_pc, &sp);
226 Thread* self = Thread::Current();
227 // Inside of generated code, sp[0] is the method, so sp is the frame.
228 mirror::ArtMethod** frame = reinterpret_cast<mirror::ArtMethod**>(sp);
229 self->SetTopOfStack(frame, 0); // Since we don't necessarily have a dex pc, pass in 0.
230 self->DumpJavaStack(LOG(ERROR));
231 }
232 return false; // Return false since we want to propagate the fault to the main signal handler.
233}
234
Dave Allisonb373e092014-02-20 16:06:36 -0800235} // namespace art
236