blob: 671079b12839e21c6d139bb1d374f28bd231e385 [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"
Ian Rogers22d5e732014-07-15 22:23:51 -070018
Dave Allison8ce6b902014-08-26 11:07:58 -070019#include <setjmp.h>
Alex Light21f498f2018-02-02 11:12:49 -080020#include <string.h>
Dave Allisonb373e092014-02-20 16:06:36 -080021#include <sys/mman.h>
22#include <sys/ucontext.h>
Mathieu Chartiere401d142015-04-22 13:56:20 -070023
24#include "art_method-inl.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080025#include "base/logging.h" // For VLOG
Josh Gao143f61c2017-04-17 20:10:29 -070026#include "base/safe_copy.h"
Andreas Gampe928f72b2014-09-09 19:53:48 -070027#include "base/stl_util.h"
David Sehr9e734c72018-01-04 17:56:19 -080028#include "dex/dex_file_types.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070029#include "mirror/class.h"
Josh Gao143f61c2017-04-17 20:10:29 -070030#include "mirror/object_reference.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010031#include "oat_quick_method_header.h"
Dave Allisonf4b80bc2014-05-14 15:41:25 -070032#include "sigchain.h"
Andreas Gampeb486a982017-06-01 13:45:54 -070033#include "thread-current-inl.h"
Dave Allisonb373e092014-02-20 16:06:36 -080034#include "verify_object-inl.h"
35
36namespace art {
37// Static fault manger object accessed by signal handler.
38FaultManager fault_manager;
39
Alex Lightd3a5f942018-04-03 15:55:46 -070040// This needs to be NO_INLINE since some debuggers do not read the inline-info to set a breakpoint
41// if it isn't.
42extern "C" NO_INLINE __attribute__((visibility("default"))) void art_sigsegv_fault() {
Dave Allisonf4b80bc2014-05-14 15:41:25 -070043 // Set a breakpoint here to be informed when a SIGSEGV is unhandled by ART.
44 VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler.";
45}
Dave Allisonf4b80bc2014-05-14 15:41:25 -070046
Dave Allisonb373e092014-02-20 16:06:36 -080047// Signal handler called on SIGSEGV.
Josh Gao85a78cf2017-03-20 16:26:42 -070048static bool art_fault_handler(int sig, siginfo_t* info, void* context) {
49 return fault_manager.HandleFault(sig, info, context);
Dave Allisonb373e092014-02-20 16:06:36 -080050}
51
Josh Gao143f61c2017-04-17 20:10:29 -070052#if defined(__linux__)
53
54// Change to verify the safe implementations against the original ones.
55constexpr bool kVerifySafeImpls = false;
56
57// Provide implementations of ArtMethod::GetDeclaringClass and VerifyClassClass that use SafeCopy
58// to safely dereference pointers which are potentially garbage.
59// Only available on Linux due to availability of SafeCopy.
60
61static mirror::Class* SafeGetDeclaringClass(ArtMethod* method)
62 REQUIRES_SHARED(Locks::mutator_lock_) {
63 char* method_declaring_class =
64 reinterpret_cast<char*>(method) + ArtMethod::DeclaringClassOffset().SizeValue();
65
66 // ArtMethod::declaring_class_ is a GcRoot<mirror::Class>.
67 // Read it out into as a CompressedReference directly for simplicity's sake.
68 mirror::CompressedReference<mirror::Class> cls;
69 ssize_t rc = SafeCopy(&cls, method_declaring_class, sizeof(cls));
70 CHECK_NE(-1, rc);
71
72 if (kVerifySafeImpls) {
73 mirror::Class* actual_class = method->GetDeclaringClassUnchecked<kWithoutReadBarrier>();
74 CHECK_EQ(actual_class, cls.AsMirrorPtr());
75 }
76
77 if (rc != sizeof(cls)) {
78 return nullptr;
79 }
80
81 return cls.AsMirrorPtr();
82}
83
84static mirror::Class* SafeGetClass(mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
85 char* obj_cls = reinterpret_cast<char*>(obj) + mirror::Object::ClassOffset().SizeValue();
86
Mathieu Chartierad8ebb32017-08-09 20:13:18 -070087 mirror::HeapReference<mirror::Class> cls;
Josh Gao143f61c2017-04-17 20:10:29 -070088 ssize_t rc = SafeCopy(&cls, obj_cls, sizeof(cls));
89 CHECK_NE(-1, rc);
90
91 if (kVerifySafeImpls) {
92 mirror::Class* actual_class = obj->GetClass<kVerifyNone>();
93 CHECK_EQ(actual_class, cls.AsMirrorPtr());
94 }
95
96 if (rc != sizeof(cls)) {
97 return nullptr;
98 }
99
100 return cls.AsMirrorPtr();
101}
102
103static bool SafeVerifyClassClass(mirror::Class* cls) REQUIRES_SHARED(Locks::mutator_lock_) {
104 mirror::Class* c_c = SafeGetClass(cls);
105 bool result = c_c != nullptr && c_c == SafeGetClass(c_c);
106
107 if (kVerifySafeImpls) {
108 CHECK_EQ(VerifyClassClass(cls), result);
109 }
110
111 return result;
112}
113
114#else
115
Josh Gao77c14152017-04-19 13:20:19 -0700116static mirror::Class* SafeGetDeclaringClass(ArtMethod* method_obj)
117 REQUIRES_SHARED(Locks::mutator_lock_) {
Josh Gao143f61c2017-04-17 20:10:29 -0700118 return method_obj->GetDeclaringClassUnchecked<kWithoutReadBarrier>();
119}
120
Josh Gao77c14152017-04-19 13:20:19 -0700121static bool SafeVerifyClassClass(mirror::Class* cls) REQUIRES_SHARED(Locks::mutator_lock_) {
Josh Gao143f61c2017-04-17 20:10:29 -0700122 return VerifyClassClass(cls);
123}
124#endif
125
126
Dave Allison1f8ef6f2014-08-20 17:38:41 -0700127FaultManager::FaultManager() : initialized_(false) {
Dave Allisonb373e092014-02-20 16:06:36 -0800128 sigaction(SIGSEGV, nullptr, &oldaction_);
129}
130
131FaultManager::~FaultManager() {
Dave Allisonb373e092014-02-20 16:06:36 -0800132}
133
134void FaultManager::Init() {
Dave Allison1f8ef6f2014-08-20 17:38:41 -0700135 CHECK(!initialized_);
Josh Gao6b2018f2017-05-04 13:55:28 -0700136 sigset_t mask;
137 sigfillset(&mask);
138 sigdelset(&mask, SIGABRT);
139 sigdelset(&mask, SIGBUS);
140 sigdelset(&mask, SIGFPE);
141 sigdelset(&mask, SIGILL);
142 sigdelset(&mask, SIGSEGV);
143
144 SigchainAction sa = {
145 .sc_sigaction = art_fault_handler,
146 .sc_mask = mask,
147 .sc_flags = 0UL,
148 };
149
150 AddSpecialSignalHandlerFn(SIGSEGV, &sa);
Dave Allison1f8ef6f2014-08-20 17:38:41 -0700151 initialized_ = true;
152}
153
Andreas Gampe928f72b2014-09-09 19:53:48 -0700154void FaultManager::Release() {
Dave Allison1f8ef6f2014-08-20 17:38:41 -0700155 if (initialized_) {
Josh Gao85a78cf2017-03-20 16:26:42 -0700156 RemoveSpecialSignalHandlerFn(SIGSEGV, art_fault_handler);
Dave Allison1f8ef6f2014-08-20 17:38:41 -0700157 initialized_ = false;
158 }
Dave Allisonb373e092014-02-20 16:06:36 -0800159}
160
Andreas Gampe928f72b2014-09-09 19:53:48 -0700161void FaultManager::Shutdown() {
162 if (initialized_) {
163 Release();
164
165 // Free all handlers.
166 STLDeleteElements(&generated_code_handlers_);
167 STLDeleteElements(&other_handlers_);
168 }
169}
170
jgu211376bdf2016-01-18 09:12:33 -0500171bool FaultManager::HandleFaultByOtherHandlers(int sig, siginfo_t* info, void* context) {
Andreas Gamped14b73d2016-04-18 17:15:42 -0700172 if (other_handlers_.empty()) {
173 return false;
174 }
175
Dave Allison0c2894b2014-08-29 12:06:16 -0700176 Thread* self = Thread::Current();
177
jgu211376bdf2016-01-18 09:12:33 -0500178 DCHECK(self != nullptr);
179 DCHECK(Runtime::Current() != nullptr);
180 DCHECK(Runtime::Current()->IsStarted());
Josh Gaoefd20cb2017-02-28 16:53:59 -0800181 for (const auto& handler : other_handlers_) {
182 if (handler->Action(sig, info, context)) {
183 return true;
Ian Rogersad11e7a2014-11-11 16:55:11 -0800184 }
185 }
jgu211376bdf2016-01-18 09:12:33 -0500186 return false;
187}
188
Alex Light21f498f2018-02-02 11:12:49 -0800189static const char* SignalCodeName(int sig, int code) {
190 if (sig != SIGSEGV) {
191 return "UNKNOWN";
192 } else {
193 switch (code) {
194 case SEGV_MAPERR: return "SEGV_MAPERR";
195 case SEGV_ACCERR: return "SEGV_ACCERR";
196 default: return "UNKNOWN";
197 }
198 }
199}
200static std::ostream& PrintSignalInfo(std::ostream& os, siginfo_t* info) {
201 os << " si_signo: " << info->si_signo << " (" << strsignal(info->si_signo) << ")\n"
202 << " si_code: " << info->si_code
203 << " (" << SignalCodeName(info->si_signo, info->si_code) << ")";
204 if (info->si_signo == SIGSEGV) {
205 os << "\n" << " si_addr: " << info->si_addr;
206 }
207 return os;
208}
209
Josh Gao85a78cf2017-03-20 16:26:42 -0700210bool FaultManager::HandleFault(int sig, siginfo_t* info, void* context) {
Alex Light21f498f2018-02-02 11:12:49 -0800211 if (VLOG_IS_ON(signals)) {
212 PrintSignalInfo(VLOG_STREAM(signals) << "Handling fault:" << "\n", info);
213 }
Josh Gaoefd20cb2017-02-28 16:53:59 -0800214
215#ifdef TEST_NESTED_SIGNAL
Josh Gao85a78cf2017-03-20 16:26:42 -0700216 // Simulate a crash in a handler.
217 raise(SIGSEGV);
Josh Gaoefd20cb2017-02-28 16:53:59 -0800218#endif
219
Josh Gao85a78cf2017-03-20 16:26:42 -0700220 if (IsInGeneratedCode(info, context, true)) {
221 VLOG(signals) << "in generated code, looking for handler";
222 for (const auto& handler : generated_code_handlers_) {
223 VLOG(signals) << "invoking Action on handler " << handler;
224 if (handler->Action(sig, info, context)) {
225 // We have handled a signal so it's time to return from the
226 // signal handler to the appropriate place.
227 return true;
Josh Gaoefd20cb2017-02-28 16:53:59 -0800228 }
Josh Gao85a78cf2017-03-20 16:26:42 -0700229 }
Alex Lightf4ed7e82018-01-17 11:52:36 -0800230 }
Josh Gaoefd20cb2017-02-28 16:53:59 -0800231
Alex Lightf4ed7e82018-01-17 11:52:36 -0800232 // We hit a signal we didn't handle. This might be something for which
233 // we can give more information about so call all registered handlers to
234 // see if it is.
235 if (HandleFaultByOtherHandlers(sig, info, context)) {
236 return true;
jgu211376bdf2016-01-18 09:12:33 -0500237 }
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700238
Dave Allison8be44cf2014-09-04 14:33:42 -0700239 // Set a breakpoint in this function to catch unhandled signals.
240 art_sigsegv_fault();
Josh Gao85a78cf2017-03-20 16:26:42 -0700241 return false;
Dave Allisonb373e092014-02-20 16:06:36 -0800242}
243
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700244void FaultManager::AddHandler(FaultHandler* handler, bool generated_code) {
Andreas Gampe928f72b2014-09-09 19:53:48 -0700245 DCHECK(initialized_);
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700246 if (generated_code) {
247 generated_code_handlers_.push_back(handler);
248 } else {
249 other_handlers_.push_back(handler);
250 }
251}
252
253void FaultManager::RemoveHandler(FaultHandler* handler) {
254 auto it = std::find(generated_code_handlers_.begin(), generated_code_handlers_.end(), handler);
255 if (it != generated_code_handlers_.end()) {
256 generated_code_handlers_.erase(it);
257 return;
258 }
259 auto it2 = std::find(other_handlers_.begin(), other_handlers_.end(), handler);
260 if (it2 != other_handlers_.end()) {
Alex Lightf4ed7e82018-01-17 11:52:36 -0800261 other_handlers_.erase(it2);
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700262 return;
263 }
264 LOG(FATAL) << "Attempted to remove non existent handler " << handler;
265}
Dave Allisonb373e092014-02-20 16:06:36 -0800266
267// This function is called within the signal handler. It checks that
268// the mutator_lock is held (shared). No annotalysis is done.
Dave Allison69dfe512014-07-11 17:11:58 +0000269bool FaultManager::IsInGeneratedCode(siginfo_t* siginfo, void* context, bool check_dex_pc) {
Dave Allisonb373e092014-02-20 16:06:36 -0800270 // We can only be running Java code in the current thread if it
271 // is in Runnable state.
Dave Allison5cd33752014-04-15 15:57:58 -0700272 VLOG(signals) << "Checking for generated code";
Dave Allisonb373e092014-02-20 16:06:36 -0800273 Thread* thread = Thread::Current();
274 if (thread == nullptr) {
Dave Allison5cd33752014-04-15 15:57:58 -0700275 VLOG(signals) << "no current thread";
Dave Allisonb373e092014-02-20 16:06:36 -0800276 return false;
277 }
278
279 ThreadState state = thread->GetState();
280 if (state != kRunnable) {
Dave Allison5cd33752014-04-15 15:57:58 -0700281 VLOG(signals) << "not runnable";
Dave Allisonb373e092014-02-20 16:06:36 -0800282 return false;
283 }
284
285 // Current thread is runnable.
286 // Make sure it has the mutator lock.
287 if (!Locks::mutator_lock_->IsSharedHeld(thread)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700288 VLOG(signals) << "no lock";
Dave Allisonb373e092014-02-20 16:06:36 -0800289 return false;
290 }
291
Nicolas Geoffray7bf2b4f2015-07-08 10:11:59 +0000292 ArtMethod* method_obj = nullptr;
Dave Allisonb373e092014-02-20 16:06:36 -0800293 uintptr_t return_pc = 0;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700294 uintptr_t sp = 0;
Dave Allisonb373e092014-02-20 16:06:36 -0800295
296 // Get the architecture specific method address and return address. These
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700297 // are in architecture specific files in arch/<arch>/fault_handler_<arch>.
Dave Allisondfd3b472014-07-16 16:04:32 -0700298 GetMethodAndReturnPcAndSp(siginfo, context, &method_obj, &return_pc, &sp);
Dave Allisonb373e092014-02-20 16:06:36 -0800299
300 // If we don't have a potential method, we're outta here.
Dave Allison5cd33752014-04-15 15:57:58 -0700301 VLOG(signals) << "potential method: " << method_obj;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700302 // TODO: Check linear alloc and image.
Andreas Gampe542451c2016-07-26 09:02:02 -0700303 DCHECK_ALIGNED(ArtMethod::Size(kRuntimePointerSize), sizeof(void*))
Nicolas Geoffray7bf2b4f2015-07-08 10:11:59 +0000304 << "ArtMethod is not pointer aligned";
305 if (method_obj == nullptr || !IsAligned<sizeof(void*)>(method_obj)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700306 VLOG(signals) << "no method";
Dave Allisonb373e092014-02-20 16:06:36 -0800307 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 Allisonb373e092014-02-20 16:06:36 -0800312 // Check that the class pointer inside the object is not null and is aligned.
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800313 // No read barrier because method_obj may not be a real object.
Josh Gao143f61c2017-04-17 20:10:29 -0700314 mirror::Class* cls = SafeGetDeclaringClass(method_obj);
Dave Allisonb373e092014-02-20 16:06:36 -0800315 if (cls == nullptr) {
Dave Allison5cd33752014-04-15 15:57:58 -0700316 VLOG(signals) << "not a class";
Dave Allisonb373e092014-02-20 16:06:36 -0800317 return false;
318 }
Josh Gao143f61c2017-04-17 20:10:29 -0700319
Dave Allisonb373e092014-02-20 16:06:36 -0800320 if (!IsAligned<kObjectAlignment>(cls)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700321 VLOG(signals) << "not aligned";
Dave Allisonb373e092014-02-20 16:06:36 -0800322 return false;
323 }
324
Josh Gao143f61c2017-04-17 20:10:29 -0700325 if (!SafeVerifyClassClass(cls)) {
Dave Allison5cd33752014-04-15 15:57:58 -0700326 VLOG(signals) << "not a class class";
Dave Allisonb373e092014-02-20 16:06:36 -0800327 return false;
328 }
329
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100330 const OatQuickMethodHeader* method_header = method_obj->GetOatQuickMethodHeader(return_pc);
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100331
Dave Allisonb373e092014-02-20 16:06:36 -0800332 // We can be certain that this is a method now. Check if we have a GC map
333 // at the return PC address.
Dave Allisonf9439142014-03-27 15:10:22 -0700334 if (true || kIsDebugBuild) {
Dave Allison5cd33752014-04-15 15:57:58 -0700335 VLOG(signals) << "looking for dex pc for return pc " << std::hex << return_pc;
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100336 uint32_t sought_offset = return_pc -
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100337 reinterpret_cast<uintptr_t>(method_header->GetEntryPoint());
Dave Allison5cd33752014-04-15 15:57:58 -0700338 VLOG(signals) << "pc offset: " << std::hex << sought_offset;
Dave Allisonf9439142014-03-27 15:10:22 -0700339 }
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100340 uint32_t dexpc = method_header->ToDexPc(method_obj, return_pc, false);
Dave Allison5cd33752014-04-15 15:57:58 -0700341 VLOG(signals) << "dexpc: " << dexpc;
Andreas Gampee2abbc62017-09-15 11:59:26 -0700342 return !check_dex_pc || dexpc != dex::kDexNoIndex;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700343}
344
345FaultHandler::FaultHandler(FaultManager* manager) : manager_(manager) {
Dave Allisonb373e092014-02-20 16:06:36 -0800346}
347
348//
349// Null pointer fault handler
350//
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700351NullPointerHandler::NullPointerHandler(FaultManager* manager) : FaultHandler(manager) {
352 manager_->AddHandler(this, true);
Dave Allisonb373e092014-02-20 16:06:36 -0800353}
354
355//
356// Suspension fault handler
357//
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700358SuspensionHandler::SuspensionHandler(FaultManager* manager) : FaultHandler(manager) {
359 manager_->AddHandler(this, true);
Dave Allisonb373e092014-02-20 16:06:36 -0800360}
361
362//
363// Stack overflow fault handler
364//
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700365StackOverflowHandler::StackOverflowHandler(FaultManager* manager) : FaultHandler(manager) {
366 manager_->AddHandler(this, true);
Dave Allisonb373e092014-02-20 16:06:36 -0800367}
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700368
369//
370// Stack trace handler, used to help get a stack trace from SIGSEGV inside of compiled code.
371//
372JavaStackTraceHandler::JavaStackTraceHandler(FaultManager* manager) : FaultHandler(manager) {
373 manager_->AddHandler(this, false);
374}
375
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100376bool JavaStackTraceHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* siginfo, void* context) {
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700377 // Make sure that we are in the generated code, but we may not have a dex pc.
Dave Allison8ce6b902014-08-26 11:07:58 -0700378 bool in_generated_code = manager_->IsInGeneratedCode(siginfo, context, false);
Dave Allison8ce6b902014-08-26 11:07:58 -0700379 if (in_generated_code) {
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700380 LOG(ERROR) << "Dumping java stack trace for crash in generated code";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700381 ArtMethod* method = nullptr;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700382 uintptr_t return_pc = 0;
383 uintptr_t sp = 0;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700384 Thread* self = Thread::Current();
Dave Allison8ce6b902014-08-26 11:07:58 -0700385
Dave Allison0c2894b2014-08-29 12:06:16 -0700386 manager_->GetMethodAndReturnPcAndSp(siginfo, context, &method, &return_pc, &sp);
387 // Inside of generated code, sp[0] is the method, so sp is the frame.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700388 self->SetTopOfStack(reinterpret_cast<ArtMethod**>(sp));
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700389 self->DumpJavaStack(LOG_STREAM(ERROR));
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700390 }
Dave Allison8ce6b902014-08-26 11:07:58 -0700391
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700392 return false; // Return false since we want to propagate the fault to the main signal handler.
393}
394
Dave Allisonb373e092014-02-20 16:06:36 -0800395} // namespace art