blob: 0e9b9081ea4dfe955dffad4caf8b7de4cc386d43 [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
18#ifndef ART_RUNTIME_FAULT_HANDLER_H_
19#define ART_RUNTIME_FAULT_HANDLER_H_
20
21#include <signal.h>
22#include <vector>
23#include <setjmp.h>
24#include <stdint.h>
25
26#include "base/mutex.h" // For annotalysis.
27
28namespace art {
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070029
30namespace mirror {
31class ArtMethod;
Ian Rogers576ca0c2014-06-06 15:58:22 -070032} // namespace mirror
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070033
Dave Allisonb373e092014-02-20 16:06:36 -080034class FaultHandler;
35
36class FaultManager {
37 public:
38 FaultManager();
39 ~FaultManager();
40
41 void Init();
Dave Allison1f8ef6f2014-08-20 17:38:41 -070042 void Shutdown();
Dave Allisonb373e092014-02-20 16:06:36 -080043
44 void HandleFault(int sig, siginfo_t* info, void* context);
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070045 void AddHandler(FaultHandler* handler, bool generated_code);
Dave Allisonb373e092014-02-20 16:06:36 -080046 void RemoveHandler(FaultHandler* handler);
Dave Allisondfd3b472014-07-16 16:04:32 -070047
48 // Note that the following two functions are called in the context of a signal handler.
49 // The IsInGeneratedCode() function checks that the mutator lock is held before it
50 // calls GetMethodAndReturnPCAndSP().
51 // TODO: think about adding lock assertions and fake lock and unlock functions.
52 void GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, mirror::ArtMethod** out_method,
53 uintptr_t* out_return_pc, uintptr_t* out_sp)
54 NO_THREAD_SAFETY_ANALYSIS;
Dave Allison69dfe512014-07-11 17:11:58 +000055 bool IsInGeneratedCode(siginfo_t* siginfo, void *context, bool check_dex_pc)
56 NO_THREAD_SAFETY_ANALYSIS;
Dave Allisonb373e092014-02-20 16:06:36 -080057
58 private:
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070059 std::vector<FaultHandler*> generated_code_handlers_;
60 std::vector<FaultHandler*> other_handlers_;
Dave Allisonb373e092014-02-20 16:06:36 -080061 struct sigaction oldaction_;
Dave Allison1f8ef6f2014-08-20 17:38:41 -070062 bool initialized_;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070063 DISALLOW_COPY_AND_ASSIGN(FaultManager);
Dave Allisonb373e092014-02-20 16:06:36 -080064};
65
66class FaultHandler {
67 public:
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070068 explicit FaultHandler(FaultManager* manager);
Dave Allisonb373e092014-02-20 16:06:36 -080069 virtual ~FaultHandler() {}
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070070 FaultManager* GetFaultManager() {
71 return manager_;
72 }
Dave Allisonb373e092014-02-20 16:06:36 -080073
74 virtual bool Action(int sig, siginfo_t* siginfo, void* context) = 0;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070075
Dave Allisonb373e092014-02-20 16:06:36 -080076 protected:
77 FaultManager* const manager_;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070078
79 private:
80 DISALLOW_COPY_AND_ASSIGN(FaultHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080081};
82
83class NullPointerHandler FINAL : public FaultHandler {
84 public:
Dave Allisonb373e092014-02-20 16:06:36 -080085 explicit NullPointerHandler(FaultManager* manager);
86
87 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070088
89 private:
90 DISALLOW_COPY_AND_ASSIGN(NullPointerHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080091};
92
93class SuspensionHandler FINAL : public FaultHandler {
94 public:
Dave Allisonb373e092014-02-20 16:06:36 -080095 explicit SuspensionHandler(FaultManager* manager);
96
97 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070098
99 private:
100 DISALLOW_COPY_AND_ASSIGN(SuspensionHandler);
Dave Allisonb373e092014-02-20 16:06:36 -0800101};
102
103class StackOverflowHandler FINAL : public FaultHandler {
104 public:
Dave Allisonb373e092014-02-20 16:06:36 -0800105 explicit StackOverflowHandler(FaultManager* manager);
106
107 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700108
109 private:
110 DISALLOW_COPY_AND_ASSIGN(StackOverflowHandler);
Dave Allisonb373e092014-02-20 16:06:36 -0800111};
112
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700113class JavaStackTraceHandler FINAL : public FaultHandler {
114 public:
115 explicit JavaStackTraceHandler(FaultManager* manager);
116
117 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE NO_THREAD_SAFETY_ANALYSIS;
118
119 private:
120 DISALLOW_COPY_AND_ASSIGN(JavaStackTraceHandler);
121};
122
123
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700124// Statically allocated so the the signal handler can Get access to it.
Dave Allisonb373e092014-02-20 16:06:36 -0800125extern FaultManager fault_manager;
126
127} // namespace art
128#endif // ART_RUNTIME_FAULT_HANDLER_H_
129