blob: 89c9360717984ff61636f0b4ecc2ecefb0468847 [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 Allisone8b9afc2014-08-20 17:38:41 -070042 void Shutdown();
Mathieu Chartier1f242962014-10-15 16:59:47 -070043 void EnsureArtActionInFrontOfSignalChain();
Dave Allisonb373e092014-02-20 16:06:36 -080044
45 void HandleFault(int sig, siginfo_t* info, void* context);
Dave Allisonfabe91e2014-08-26 11:07:58 -070046 void HandleNestedSignal(int sig, siginfo_t* info, void* context);
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070047 void AddHandler(FaultHandler* handler, bool generated_code);
Dave Allisonb373e092014-02-20 16:06:36 -080048 void RemoveHandler(FaultHandler* handler);
Dave Allisonb0f05b92014-07-16 16:04:32 -070049
50 // Note that the following two functions are called in the context of a signal handler.
51 // The IsInGeneratedCode() function checks that the mutator lock is held before it
52 // calls GetMethodAndReturnPCAndSP().
53 // TODO: think about adding lock assertions and fake lock and unlock functions.
54 void GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, mirror::ArtMethod** out_method,
55 uintptr_t* out_return_pc, uintptr_t* out_sp)
56 NO_THREAD_SAFETY_ANALYSIS;
Dave Allison69dfe512014-07-11 17:11:58 +000057 bool IsInGeneratedCode(siginfo_t* siginfo, void *context, bool check_dex_pc)
58 NO_THREAD_SAFETY_ANALYSIS;
Dave Allisonb373e092014-02-20 16:06:36 -080059
60 private:
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070061 std::vector<FaultHandler*> generated_code_handlers_;
62 std::vector<FaultHandler*> other_handlers_;
Dave Allisonb373e092014-02-20 16:06:36 -080063 struct sigaction oldaction_;
Dave Allisone8b9afc2014-08-20 17:38:41 -070064 bool initialized_;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070065 DISALLOW_COPY_AND_ASSIGN(FaultManager);
Dave Allisonb373e092014-02-20 16:06:36 -080066};
67
68class FaultHandler {
69 public:
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070070 explicit FaultHandler(FaultManager* manager);
Dave Allisonb373e092014-02-20 16:06:36 -080071 virtual ~FaultHandler() {}
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070072 FaultManager* GetFaultManager() {
73 return manager_;
74 }
Dave Allisonb373e092014-02-20 16:06:36 -080075
76 virtual bool Action(int sig, siginfo_t* siginfo, void* context) = 0;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070077
Dave Allisonb373e092014-02-20 16:06:36 -080078 protected:
79 FaultManager* const manager_;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070080
81 private:
82 DISALLOW_COPY_AND_ASSIGN(FaultHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080083};
84
85class NullPointerHandler FINAL : public FaultHandler {
86 public:
Dave Allisonb373e092014-02-20 16:06:36 -080087 explicit NullPointerHandler(FaultManager* manager);
88
89 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -070090
91 private:
92 DISALLOW_COPY_AND_ASSIGN(NullPointerHandler);
Dave Allisonb373e092014-02-20 16:06:36 -080093};
94
95class SuspensionHandler FINAL : public FaultHandler {
96 public:
Dave Allisonb373e092014-02-20 16:06:36 -080097 explicit SuspensionHandler(FaultManager* manager);
98
99 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700100
101 private:
102 DISALLOW_COPY_AND_ASSIGN(SuspensionHandler);
Dave Allisonb373e092014-02-20 16:06:36 -0800103};
104
105class StackOverflowHandler FINAL : public FaultHandler {
106 public:
Dave Allisonb373e092014-02-20 16:06:36 -0800107 explicit StackOverflowHandler(FaultManager* manager);
108
109 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700110
111 private:
112 DISALLOW_COPY_AND_ASSIGN(StackOverflowHandler);
Dave Allisonb373e092014-02-20 16:06:36 -0800113};
114
Mathieu Chartierc751fdc2014-03-30 15:25:44 -0700115class JavaStackTraceHandler FINAL : public FaultHandler {
116 public:
117 explicit JavaStackTraceHandler(FaultManager* manager);
118
119 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE NO_THREAD_SAFETY_ANALYSIS;
120
121 private:
122 DISALLOW_COPY_AND_ASSIGN(JavaStackTraceHandler);
123};
124
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700125// Statically allocated so the the signal handler can Get access to it.
Dave Allisonb373e092014-02-20 16:06:36 -0800126extern FaultManager fault_manager;
127
128} // namespace art
129#endif // ART_RUNTIME_FAULT_HANDLER_H_
130