blob: ac287d488a1e8ecf75acc9ed96cf2cfecf3fbf7f [file] [log] [blame]
Ian Rogers68d8b422014-07-17 11:09:10 -07001/*
2 * Copyright (C) 2011 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#ifndef ART_RUNTIME_JNI_ENV_EXT_H_
18#define ART_RUNTIME_JNI_ENV_EXT_H_
19
20#include <jni.h>
21
22#include "base/macros.h"
23#include "base/mutex.h"
24#include "indirect_reference_table.h"
25#include "object_callbacks.h"
26#include "reference_table.h"
27
28namespace art {
29
30class JavaVMExt;
31
32// Maximum number of local references in the indirect reference table. The value is arbitrary but
33// low enough that it forces sanity checks.
34static constexpr size_t kLocalsMax = 512;
35
36struct JNIEnvExt : public JNIEnv {
Andreas Gampe3f5881f2015-04-08 10:26:16 -070037 static JNIEnvExt* Create(Thread* self, JavaVMExt* vm);
38
Ian Rogers68d8b422014-07-17 11:09:10 -070039 ~JNIEnvExt();
40
41 void DumpReferenceTables(std::ostream& os)
Mathieu Chartier90443472015-07-16 20:32:27 -070042 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -070043
44 void SetCheckJniEnabled(bool enabled);
45
Andreas Gampe5f4a09a2015-09-28 13:16:33 -070046 void PushFrame(int capacity) SHARED_REQUIRES(Locks::mutator_lock_);
47 void PopFrame() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -070048
49 template<typename T>
50 T AddLocalReference(mirror::Object* obj)
Mathieu Chartier90443472015-07-16 20:32:27 -070051 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -070052
Andreas Gampe4d98c842015-12-09 15:14:04 -080053 static Offset SegmentStateOffset(size_t pointer_size);
54 static Offset LocalRefCookieOffset(size_t pointer_size);
55 static Offset SelfOffset(size_t pointer_size);
Ian Rogers68d8b422014-07-17 11:09:10 -070056
Alex Light185d1342016-08-11 10:48:03 -070057 static jint GetEnvHandler(JavaVMExt* vm, /*out*/void** out, jint version);
58
Mathieu Chartier90443472015-07-16 20:32:27 -070059 jobject NewLocalRef(mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_);
60 void DeleteLocalRef(jobject obj) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -070061
62 Thread* const self;
63 JavaVMExt* const vm;
64
65 // Cookie used when using the local indirect reference table.
66 uint32_t local_ref_cookie;
67
68 // JNI local references.
69 IndirectReferenceTable locals GUARDED_BY(Locks::mutator_lock_);
70
71 // Stack of cookies corresponding to PushLocalFrame/PopLocalFrame calls.
72 // TODO: to avoid leaks (and bugs), we need to clear this vector on entry (or return)
73 // to a native method.
74 std::vector<uint32_t> stacked_local_ref_cookies;
75
76 // Frequently-accessed fields cached from JavaVM.
77 bool check_jni;
78
Mathieu Chartier4d87df62016-01-07 15:14:19 -080079 // If we are a JNI env for a daemon thread with a deleted runtime.
80 bool runtime_deleted;
81
Ian Rogers68d8b422014-07-17 11:09:10 -070082 // How many nested "critical" JNI calls are we in?
83 int critical;
84
85 // Entered JNI monitors, for bulk exit on thread detach.
86 ReferenceTable monitors;
87
88 // Used by -Xcheck:jni.
89 const JNINativeInterface* unchecked_functions;
Andreas Gampe3f5881f2015-04-08 10:26:16 -070090
Andreas Gampe5f4a09a2015-09-28 13:16:33 -070091 // Functions to keep track of monitor lock and unlock operations. Used to ensure proper locking
92 // rules in CheckJNI mode.
93
94 // Record locking of a monitor.
95 void RecordMonitorEnter(jobject obj) SHARED_REQUIRES(Locks::mutator_lock_);
96
97 // Check the release, that is, that the release is performed in the same JNI "segment."
98 void CheckMonitorRelease(jobject obj) SHARED_REQUIRES(Locks::mutator_lock_);
99
100 // Check that no monitors are held that have been acquired in this JNI "segment."
101 void CheckNoHeldMonitors() SHARED_REQUIRES(Locks::mutator_lock_);
102
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800103 // Set the functions to the runtime shutdown functions.
104 void SetFunctionsToRuntimeShutdownFunctions();
105
Andreas Gampe3f5881f2015-04-08 10:26:16 -0700106 private:
107 // The constructor should not be called directly. It may leave the object in an erronuous state,
108 // and the result needs to be checked.
109 JNIEnvExt(Thread* self, JavaVMExt* vm);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700110
111 // All locked objects, with the (Java caller) stack frame that locked them. Used in CheckJNI
112 // to ensure that only monitors locked in this native frame are being unlocked, and that at
113 // the end all are unlocked.
114 std::vector<std::pair<uintptr_t, jobject>> locked_objects_;
Ian Rogers68d8b422014-07-17 11:09:10 -0700115};
116
117// Used to save and restore the JNIEnvExt state when not going through code created by the JNI
118// compiler.
119class ScopedJniEnvLocalRefState {
120 public:
121 explicit ScopedJniEnvLocalRefState(JNIEnvExt* env) : env_(env) {
122 saved_local_ref_cookie_ = env->local_ref_cookie;
123 env->local_ref_cookie = env->locals.GetSegmentState();
124 }
125
126 ~ScopedJniEnvLocalRefState() {
127 env_->locals.SetSegmentState(env_->local_ref_cookie);
128 env_->local_ref_cookie = saved_local_ref_cookie_;
129 }
130
131 private:
132 JNIEnvExt* const env_;
133 uint32_t saved_local_ref_cookie_;
134
135 DISALLOW_COPY_AND_ASSIGN(ScopedJniEnvLocalRefState);
136};
137
138} // namespace art
139
140#endif // ART_RUNTIME_JNI_ENV_EXT_H_