blob: 0510d6ab75dcd657cfb7d689472dacf7aef616ae [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_JAVA_VM_EXT_H_
18#define ART_RUNTIME_JAVA_VM_EXT_H_
19
20#include "jni.h"
21
22#include "base/macros.h"
23#include "base/mutex.h"
24#include "indirect_reference_table.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070025#include "obj_ptr.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070026#include "reference_table.h"
27
28namespace art {
29
30namespace mirror {
Ian Rogers68d8b422014-07-17 11:09:10 -070031 class Array;
32} // namespace mirror
33
Mathieu Chartiere401d142015-04-22 13:56:20 -070034class ArtMethod;
Andreas Gampe57cf00b2017-06-05 17:15:32 -070035class IsMarkedVisitor;
Ian Rogers68d8b422014-07-17 11:09:10 -070036class Libraries;
37class ParsedOptions;
38class Runtime;
Igor Murashkinaaebaa02015-01-26 10:55:53 -080039struct RuntimeArgumentMap;
Ian Rogers68d8b422014-07-17 11:09:10 -070040
Alex Light185d1342016-08-11 10:48:03 -070041class JavaVMExt;
42// Hook definition for runtime plugins.
43using GetEnvHook = jint (*)(JavaVMExt* vm, /*out*/void** new_env, jint version);
44
Ian Rogers68d8b422014-07-17 11:09:10 -070045class JavaVMExt : public JavaVM {
46 public:
Richard Uhlerda0a69e2016-10-11 15:06:38 +010047 // Creates a new JavaVMExt object.
48 // Returns nullptr on error, in which case error_msg is set to a message
49 // describing the error.
50 static std::unique_ptr<JavaVMExt> Create(Runtime* runtime,
51 const RuntimeArgumentMap& runtime_options,
52 std::string* error_msg);
53
54
Ian Rogers68d8b422014-07-17 11:09:10 -070055 ~JavaVMExt();
56
57 bool ForceCopy() const {
58 return force_copy_;
59 }
60
61 bool IsCheckJniEnabled() const {
62 return check_jni_;
63 }
64
65 bool IsTracingEnabled() const {
66 return tracing_enabled_;
67 }
68
69 Runtime* GetRuntime() const {
70 return runtime_;
71 }
72
73 void SetCheckJniAbortHook(void (*hook)(void*, const std::string&), void* data) {
74 check_jni_abort_hook_ = hook;
75 check_jni_abort_hook_data_ = data;
76 }
77
78 // Aborts execution unless there is an abort handler installed in which case it will return. Its
79 // therefore important that callers return after aborting as otherwise code following the abort
80 // will be executed in the abort handler case.
81 void JniAbort(const char* jni_function_name, const char* msg);
82
83 void JniAbortV(const char* jni_function_name, const char* fmt, va_list ap);
84
85 void JniAbortF(const char* jni_function_name, const char* fmt, ...)
86 __attribute__((__format__(__printf__, 3, 4)));
87
88 // If both "-Xcheck:jni" and "-Xjnitrace:" are enabled, we print trace messages
89 // when a native method that matches the -Xjnitrace argument calls a JNI function
90 // such as NewByteArray.
91 // If -verbose:third-party-jni is on, we want to log any JNI function calls
92 // made by a third-party native method.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070093 bool ShouldTrace(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -070094
95 /**
96 * Loads the given shared library. 'path' is an absolute pathname.
97 *
Dmitriy Ivanovf5a30992015-11-11 14:18:55 -080098 * Returns 'true' on success. On failure, sets 'error_msg' to a
Ian Rogers68d8b422014-07-17 11:09:10 -070099 * human-readable description of the error.
100 */
Dimitry Ivanov942dc2982016-02-24 13:33:33 -0800101 bool LoadNativeLibrary(JNIEnv* env,
102 const std::string& path,
103 jobject class_loader,
104 jstring library_path,
Dimitry Ivanovd5bbadf2015-12-15 14:08:18 -0800105 std::string* error_msg);
Ian Rogers68d8b422014-07-17 11:09:10 -0700106
Mathieu Chartier598302a2015-09-23 14:52:39 -0700107 // Unload native libraries with cleared class loaders.
108 void UnloadNativeLibraries()
109 REQUIRES(!Locks::jni_libraries_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700110 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier598302a2015-09-23 14:52:39 -0700111
Ian Rogers68d8b422014-07-17 11:09:10 -0700112 /**
113 * Returns a pointer to the code for the native method 'm', found
114 * using dlsym(3) on every native library that's been loaded so far.
115 */
Mathieu Chartiere401d142015-04-22 13:56:20 -0700116 void* FindCodeForNativeMethod(ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700117 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700118
119 void DumpForSigQuit(std::ostream& os)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700120 REQUIRES(!Locks::jni_libraries_lock_,
121 !Locks::jni_globals_lock_,
122 !Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700123
124 void DumpReferenceTables(std::ostream& os)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700125 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe8a2a1fc2017-09-29 17:53:18 -0700126 REQUIRES(!Locks::jni_globals_lock_,
127 !Locks::jni_weak_globals_lock_,
128 !Locks::alloc_tracker_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700129
130 bool SetCheckJniEnabled(bool enabled);
131
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700132 void VisitRoots(RootVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700133 REQUIRES(!Locks::jni_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700134
Andreas Gampe05a364c2016-10-14 13:27:12 -0700135 void DisallowNewWeakGlobals()
136 REQUIRES_SHARED(Locks::mutator_lock_)
137 REQUIRES(!Locks::jni_weak_globals_lock_);
138 void AllowNewWeakGlobals()
139 REQUIRES_SHARED(Locks::mutator_lock_)
140 REQUIRES(!Locks::jni_weak_globals_lock_);
141 void BroadcastForNewWeakGlobals()
Andreas Gampe05a364c2016-10-14 13:27:12 -0700142 REQUIRES(!Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700143
Mathieu Chartier0795f232016-09-27 18:43:30 -0700144 jobject AddGlobalRef(Thread* self, ObjPtr<mirror::Object> obj)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700145 REQUIRES_SHARED(Locks::mutator_lock_)
146 REQUIRES(!Locks::jni_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700147
Mathieu Chartier0795f232016-09-27 18:43:30 -0700148 jweak AddWeakGlobalRef(Thread* self, ObjPtr<mirror::Object> obj)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700149 REQUIRES_SHARED(Locks::mutator_lock_)
150 REQUIRES(!Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700151
Andreas Gampe05a364c2016-10-14 13:27:12 -0700152 void DeleteGlobalRef(Thread* self, jobject obj) REQUIRES(!Locks::jni_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700153
Andreas Gampe05a364c2016-10-14 13:27:12 -0700154 void DeleteWeakGlobalRef(Thread* self, jweak obj) REQUIRES(!Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700155
Mathieu Chartier97509952015-07-13 14:35:43 -0700156 void SweepJniWeakGlobals(IsMarkedVisitor* visitor)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700157 REQUIRES_SHARED(Locks::mutator_lock_)
158 REQUIRES(!Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700159
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700160 ObjPtr<mirror::Object> DecodeGlobal(IndirectRef ref)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700161 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700162
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700163 void UpdateGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700164 REQUIRES_SHARED(Locks::mutator_lock_)
165 REQUIRES(!Locks::jni_globals_lock_);
Jeff Hao83c81952015-05-27 19:29:29 -0700166
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700167 ObjPtr<mirror::Object> DecodeWeakGlobal(Thread* self, IndirectRef ref)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700168 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700169 REQUIRES(!Locks::jni_weak_globals_lock_);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700170
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700171 ObjPtr<mirror::Object> DecodeWeakGlobalLocked(Thread* self, IndirectRef ref)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700172 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700173 REQUIRES(Locks::jni_weak_globals_lock_);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700174
Hiroshi Yamauchi498b1602015-09-16 21:11:44 -0700175 // Like DecodeWeakGlobal() but to be used only during a runtime shutdown where self may be
176 // null.
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700177 ObjPtr<mirror::Object> DecodeWeakGlobalDuringShutdown(Thread* self, IndirectRef ref)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700178 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700179 REQUIRES(!Locks::jni_weak_globals_lock_);
Hiroshi Yamauchi498b1602015-09-16 21:11:44 -0700180
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -0800181 // Checks if the weak global ref has been cleared by the GC without decode (read barrier.)
182 bool IsWeakGlobalCleared(Thread* self, IndirectRef ref)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700183 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700184 REQUIRES(!Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700185
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700186 void UpdateWeakGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700187 REQUIRES_SHARED(Locks::mutator_lock_)
188 REQUIRES(!Locks::jni_weak_globals_lock_);
Jeff Hao83c81952015-05-27 19:29:29 -0700189
Ian Rogers68d8b422014-07-17 11:09:10 -0700190 const JNIInvokeInterface* GetUncheckedFunctions() const {
191 return unchecked_functions_;
192 }
193
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700194 void TrimGlobals() REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700195 REQUIRES(!Locks::jni_globals_lock_);
Mathieu Chartier91c2f0c2014-11-26 11:21:15 -0800196
Alex Light185d1342016-08-11 10:48:03 -0700197 jint HandleGetEnv(/*out*/void** env, jint version);
198
199 void AddEnvironmentHook(GetEnvHook hook);
200
201 static bool IsBadJniVersion(int version);
202
Ian Rogers68d8b422014-07-17 11:09:10 -0700203 private:
Richard Uhlerda0a69e2016-10-11 15:06:38 +0100204 // The constructor should not be called directly. It may leave the object in
205 // an erroneous state, and the result needs to be checked.
206 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
207
Mathieu Chartier30b5e272015-09-01 11:14:34 -0700208 // Return true if self can currently access weak globals.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700209 bool MayAccessWeakGlobalsUnlocked(Thread* self) const REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier30b5e272015-09-01 11:14:34 -0700210 bool MayAccessWeakGlobals(Thread* self) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700211 REQUIRES_SHARED(Locks::mutator_lock_)
Andreas Gampe05a364c2016-10-14 13:27:12 -0700212 REQUIRES(Locks::jni_weak_globals_lock_);
Mathieu Chartier30b5e272015-09-01 11:14:34 -0700213
Andreas Gampe1b35b462017-09-29 18:52:15 -0700214 void CheckGlobalRefAllocationTracking();
215
Ian Rogers68d8b422014-07-17 11:09:10 -0700216 Runtime* const runtime_;
217
218 // Used for testing. By default, we'll LOG(FATAL) the reason.
219 void (*check_jni_abort_hook_)(void* data, const std::string& reason);
220 void* check_jni_abort_hook_data_;
221
222 // Extra checking.
223 bool check_jni_;
224 bool force_copy_;
225 const bool tracing_enabled_;
226
227 // Extra diagnostics.
228 const std::string trace_;
229
Ian Rogers68d8b422014-07-17 11:09:10 -0700230 // Not guarded by globals_lock since we sometimes use SynchronizedGet in Thread::DecodeJObject.
231 IndirectReferenceTable globals_;
232
Mathieu Chartier598302a2015-09-23 14:52:39 -0700233 // No lock annotation since UnloadNativeLibraries is called on libraries_ but locks the
234 // jni_libraries_lock_ internally.
235 std::unique_ptr<Libraries> libraries_;
Ian Rogers68d8b422014-07-17 11:09:10 -0700236
237 // Used by -Xcheck:jni.
238 const JNIInvokeInterface* const unchecked_functions_;
239
Ian Rogers68d8b422014-07-17 11:09:10 -0700240 // Since weak_globals_ contain weak roots, be careful not to
241 // directly access the object references in it. Use Get() with the
242 // read barrier enabled.
Mathieu Chartier30b5e272015-09-01 11:14:34 -0700243 // Not guarded by weak_globals_lock since we may use SynchronizedGet in DecodeWeakGlobal.
244 IndirectReferenceTable weak_globals_;
245 // Not guarded by weak_globals_lock since we may use SynchronizedGet in DecodeWeakGlobal.
246 Atomic<bool> allow_accessing_weak_globals_;
Andreas Gampe05a364c2016-10-14 13:27:12 -0700247 ConditionVariable weak_globals_add_condition_ GUARDED_BY(Locks::jni_weak_globals_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700248
Alex Light185d1342016-08-11 10:48:03 -0700249 // TODO Maybe move this to Runtime.
250 std::vector<GetEnvHook> env_hooks_;
251
Andreas Gampe1b35b462017-09-29 18:52:15 -0700252 size_t enable_allocation_tracking_delta_;
253 std::atomic<bool> allocation_tracking_enabled_;
254 std::atomic<bool> old_allocation_tracking_state_;
255
Ian Rogers68d8b422014-07-17 11:09:10 -0700256 DISALLOW_COPY_AND_ASSIGN(JavaVMExt);
257};
258
259} // namespace art
260
261#endif // ART_RUNTIME_JAVA_VM_EXT_H_