blob: 026f5b9c4aa23ff2035cfc29ff8443d4786a3a17 [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();
42
43 void HandleFault(int sig, siginfo_t* info, void* context);
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070044 void AddHandler(FaultHandler* handler, bool generated_code);
Dave Allisonb373e092014-02-20 16:06:36 -080045 void RemoveHandler(FaultHandler* handler);
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070046 void GetMethodAndReturnPCAndSP(void* context, mirror::ArtMethod** out_method,
47 uintptr_t* out_return_pc, uintptr_t* out_sp);
48 bool IsInGeneratedCode(void *context, bool check_dex_pc) NO_THREAD_SAFETY_ANALYSIS;
Dave Allisonb373e092014-02-20 16:06:36 -080049
50 private:
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070051 std::vector<FaultHandler*> generated_code_handlers_;
52 std::vector<FaultHandler*> other_handlers_;
Dave Allisonb373e092014-02-20 16:06:36 -080053 struct sigaction oldaction_;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070054 DISALLOW_COPY_AND_ASSIGN(FaultManager);
Dave Allisonb373e092014-02-20 16:06:36 -080055};
56
57class FaultHandler {
58 public:
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070059 explicit FaultHandler(FaultManager* manager);
Dave Allisonb373e092014-02-20 16:06:36 -080060 virtual ~FaultHandler() {}
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070061 FaultManager* GetFaultManager() {
62 return manager_;
63 }
Dave Allisonb373e092014-02-20 16:06:36 -080064
65 virtual bool Action(int sig, siginfo_t* siginfo, void* context) = 0;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070066
Dave Allisonb373e092014-02-20 16:06:36 -080067 protected:
68 FaultManager* const manager_;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070069
70 private:
71 DISALLOW_COPY_AND_ASSIGN(FaultHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080072};
73
74class NullPointerHandler FINAL : public FaultHandler {
75 public:
Dave Allisonb373e092014-02-20 16:06:36 -080076 explicit NullPointerHandler(FaultManager* manager);
77
78 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070079
80 private:
81 DISALLOW_COPY_AND_ASSIGN(NullPointerHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080082};
83
84class SuspensionHandler FINAL : public FaultHandler {
85 public:
Dave Allisonb373e092014-02-20 16:06:36 -080086 explicit SuspensionHandler(FaultManager* manager);
87
88 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070089
90 private:
91 DISALLOW_COPY_AND_ASSIGN(SuspensionHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080092};
93
94class StackOverflowHandler FINAL : public FaultHandler {
95 public:
Dave Allisonb373e092014-02-20 16:06:36 -080096 explicit StackOverflowHandler(FaultManager* manager);
97
98 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070099
100 private:
101 DISALLOW_COPY_AND_ASSIGN(StackOverflowHandler);
Dave Allisonb373e092014-02-20 16:06:36 -0800102};
103
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700104class JavaStackTraceHandler FINAL : public FaultHandler {
105 public:
106 explicit JavaStackTraceHandler(FaultManager* manager);
107
108 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE NO_THREAD_SAFETY_ANALYSIS;
109
110 private:
111 DISALLOW_COPY_AND_ASSIGN(JavaStackTraceHandler);
112};
113
114
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700115// Statically allocated so the the signal handler can Get access to it.
Dave Allisonb373e092014-02-20 16:06:36 -0800116extern FaultManager fault_manager;
117
118} // namespace art
119#endif // ART_RUNTIME_FAULT_HANDLER_H_
120