blob: 4510b37ff5dc77af0f4d63da2e09476227703256 [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#include "jni_env_ext.h"
18
Andreas Gampe5f4a09a2015-09-28 13:16:33 -070019#include <algorithm>
20#include <vector>
21
Andreas Gampe46ee31b2016-12-14 10:11:49 -080022#include "android-base/stringprintf.h"
23
Andreas Gampe7fbc4a52018-11-28 08:26:47 -080024#include "base/mutex.h"
Ian Rogers55256cb2017-12-21 17:07:11 -080025#include "base/to_str.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070026#include "check_jni.h"
Orion Hodson9e0099f2019-07-23 15:51:37 +010027#include "hidden_api.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070028#include "indirect_reference_table.h"
29#include "java_vm_ext.h"
30#include "jni_internal.h"
Andreas Gampe5f4a09a2015-09-28 13:16:33 -070031#include "lock_word.h"
32#include "mirror/object-inl.h"
33#include "nth_caller_visitor.h"
Ian Rogers55256cb2017-12-21 17:07:11 -080034#include "scoped_thread_state_change.h"
Andreas Gampeb486a982017-06-01 13:45:54 -070035#include "thread-current-inl.h"
Andreas Gampec8089542017-01-16 12:41:12 -080036#include "thread_list.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070037
38namespace art {
39
Andreas Gampe46ee31b2016-12-14 10:11:49 -080040using android::base::StringPrintf;
41
Ian Rogers68d8b422014-07-17 11:09:10 -070042static constexpr size_t kMonitorsInitial = 32; // Arbitrary.
Orion Hodson0740eeb2020-07-27 16:06:10 +010043static constexpr size_t kMonitorsMax = 4096; // Maximum number of monitors held by JNI code.
Ian Rogers68d8b422014-07-17 11:09:10 -070044
Andreas Gampec8089542017-01-16 12:41:12 -080045const JNINativeInterface* JNIEnvExt::table_override_ = nullptr;
46
Ian Rogers55256cb2017-12-21 17:07:11 -080047bool JNIEnvExt::CheckLocalsValid(JNIEnvExt* in) NO_THREAD_SAFETY_ANALYSIS {
Andreas Gampe3f5881f2015-04-08 10:26:16 -070048 if (in == nullptr) {
49 return false;
50 }
Ian Rogers55256cb2017-12-21 17:07:11 -080051 return in->locals_.IsValid();
Andreas Gampe3f5881f2015-04-08 10:26:16 -070052}
53
Alex Light185d1342016-08-11 10:48:03 -070054jint JNIEnvExt::GetEnvHandler(JavaVMExt* vm, /*out*/void** env, jint version) {
55 UNUSED(vm);
56 // GetEnv always returns a JNIEnv* for the most current supported JNI version,
57 // and unlike other calls that take a JNI version doesn't care if you supply
58 // JNI_VERSION_1_1, which we don't otherwise support.
59 if (JavaVMExt::IsBadJniVersion(version) && version != JNI_VERSION_1_1) {
60 return JNI_EVERSION;
61 }
62 Thread* thread = Thread::Current();
63 CHECK(thread != nullptr);
64 *env = thread->GetJniEnv();
65 return JNI_OK;
66}
67
Richard Uhlerda0a69e2016-10-11 15:06:38 +010068JNIEnvExt* JNIEnvExt::Create(Thread* self_in, JavaVMExt* vm_in, std::string* error_msg) {
69 std::unique_ptr<JNIEnvExt> ret(new JNIEnvExt(self_in, vm_in, error_msg));
Andreas Gampe3f5881f2015-04-08 10:26:16 -070070 if (CheckLocalsValid(ret.get())) {
71 return ret.release();
72 }
73 return nullptr;
74}
75
Richard Uhlerda0a69e2016-10-11 15:06:38 +010076JNIEnvExt::JNIEnvExt(Thread* self_in, JavaVMExt* vm_in, std::string* error_msg)
Ian Rogers55256cb2017-12-21 17:07:11 -080077 : self_(self_in),
78 vm_(vm_in),
79 local_ref_cookie_(kIRTFirstSegment),
Hans Boehm4dcac362021-09-23 12:26:04 -070080 locals_(1, kLocal, IndirectReferenceTable::ResizableCapacity::kYes, error_msg),
Ian Rogers55256cb2017-12-21 17:07:11 -080081 monitors_("monitors", kMonitorsInitial, kMonitorsMax),
82 critical_(0),
83 check_jni_(false),
84 runtime_deleted_(false) {
Andreas Gampec8089542017-01-16 12:41:12 -080085 MutexLock mu(Thread::Current(), *Locks::jni_function_table_lock_);
Ian Rogers55256cb2017-12-21 17:07:11 -080086 check_jni_ = vm_in->IsCheckJniEnabled();
87 functions = GetFunctionTable(check_jni_);
88 unchecked_functions_ = GetJniNativeInterface();
Ian Rogers68d8b422014-07-17 11:09:10 -070089}
90
Mathieu Chartier4d87df62016-01-07 15:14:19 -080091void JNIEnvExt::SetFunctionsToRuntimeShutdownFunctions() {
92 functions = GetRuntimeShutdownNativeInterface();
Mathieu Chartier4d87df62016-01-07 15:14:19 -080093}
94
Ian Rogers68d8b422014-07-17 11:09:10 -070095JNIEnvExt::~JNIEnvExt() {
96}
97
Andreas Gampe5f4a09a2015-09-28 13:16:33 -070098jobject JNIEnvExt::NewLocalRef(mirror::Object* obj) {
Ian Rogers68d8b422014-07-17 11:09:10 -070099 if (obj == nullptr) {
100 return nullptr;
101 }
Andreas Gampe25651122017-09-25 14:50:23 -0700102 std::string error_msg;
Ian Rogers55256cb2017-12-21 17:07:11 -0800103 jobject ref = reinterpret_cast<jobject>(locals_.Add(local_ref_cookie_, obj, &error_msg));
Andreas Gampe25651122017-09-25 14:50:23 -0700104 if (UNLIKELY(ref == nullptr)) {
105 // This is really unexpected if we allow resizing local IRTs...
106 LOG(FATAL) << error_msg;
107 UNREACHABLE();
108 }
109 return ref;
Ian Rogers68d8b422014-07-17 11:09:10 -0700110}
111
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700112void JNIEnvExt::DeleteLocalRef(jobject obj) {
Ian Rogers68d8b422014-07-17 11:09:10 -0700113 if (obj != nullptr) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800114 locals_.Remove(local_ref_cookie_, reinterpret_cast<IndirectRef>(obj));
Ian Rogers68d8b422014-07-17 11:09:10 -0700115 }
116}
117
118void JNIEnvExt::SetCheckJniEnabled(bool enabled) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800119 check_jni_ = enabled;
Andreas Gampec8089542017-01-16 12:41:12 -0800120 MutexLock mu(Thread::Current(), *Locks::jni_function_table_lock_);
121 functions = GetFunctionTable(enabled);
122 // Check whether this is a no-op because of override.
123 if (enabled && JNIEnvExt::table_override_ != nullptr) {
124 LOG(WARNING) << "Enabling CheckJNI after a JNIEnv function table override is not functional.";
125 }
Ian Rogers68d8b422014-07-17 11:09:10 -0700126}
127
128void JNIEnvExt::DumpReferenceTables(std::ostream& os) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800129 locals_.Dump(os);
130 monitors_.Dump(os);
Ian Rogers68d8b422014-07-17 11:09:10 -0700131}
132
Andreas Gampe88831082017-05-31 19:46:03 -0700133void JNIEnvExt::PushFrame(int capacity) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800134 DCHECK_GE(locals_.FreeCapacity(), static_cast<size_t>(capacity));
135 stacked_local_ref_cookies_.push_back(local_ref_cookie_);
136 local_ref_cookie_ = locals_.GetSegmentState();
Ian Rogers68d8b422014-07-17 11:09:10 -0700137}
138
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700139void JNIEnvExt::PopFrame() {
Ian Rogers55256cb2017-12-21 17:07:11 -0800140 locals_.SetSegmentState(local_ref_cookie_);
141 local_ref_cookie_ = stacked_local_ref_cookies_.back();
142 stacked_local_ref_cookies_.pop_back();
Ian Rogers68d8b422014-07-17 11:09:10 -0700143}
144
Andreas Gampe4d98c842015-12-09 15:14:04 -0800145// Note: the offset code is brittle, as we can't use OFFSETOF_MEMBER or offsetof easily. Thus, there
146// are tests in jni_internal_test to match the results against the actual values.
147
148// This is encoding the knowledge of the structure and layout of JNIEnv fields.
149static size_t JNIEnvSize(size_t pointer_size) {
150 // A single pointer.
151 return pointer_size;
152}
153
Vladimir Markod95a1f22021-03-23 16:32:52 +0000154MemberOffset JNIEnvExt::SegmentStateOffset(size_t pointer_size) {
Andreas Gampe4d98c842015-12-09 15:14:04 -0800155 size_t locals_offset = JNIEnvSize(pointer_size) +
156 2 * pointer_size + // Thread* self + JavaVMExt* vm.
157 4 + // local_ref_cookie.
158 (pointer_size - 4); // Padding.
159 size_t irt_segment_state_offset =
160 IndirectReferenceTable::SegmentStateOffset(pointer_size).Int32Value();
Vladimir Markod95a1f22021-03-23 16:32:52 +0000161 return MemberOffset(locals_offset + irt_segment_state_offset);
Andreas Gampe4d98c842015-12-09 15:14:04 -0800162}
163
Vladimir Markod95a1f22021-03-23 16:32:52 +0000164MemberOffset JNIEnvExt::LocalRefCookieOffset(size_t pointer_size) {
165 return MemberOffset(JNIEnvSize(pointer_size) +
166 2 * pointer_size); // Thread* self + JavaVMExt* vm
Andreas Gampe4d98c842015-12-09 15:14:04 -0800167}
168
Vladimir Markod95a1f22021-03-23 16:32:52 +0000169MemberOffset JNIEnvExt::SelfOffset(size_t pointer_size) {
170 return MemberOffset(JNIEnvSize(pointer_size));
Ian Rogers68d8b422014-07-17 11:09:10 -0700171}
172
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700173// Use some defining part of the caller's frame as the identifying mark for the JNI segment.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700174static uintptr_t GetJavaCallFrame(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700175 NthCallerVisitor zeroth_caller(self, 0, false);
176 zeroth_caller.WalkStack();
177 if (zeroth_caller.caller == nullptr) {
178 // No Java code, must be from pure native code.
179 return 0;
180 } else if (zeroth_caller.GetCurrentQuickFrame() == nullptr) {
181 // Shadow frame = interpreter. Use the actual shadow frame's address.
182 DCHECK(zeroth_caller.GetCurrentShadowFrame() != nullptr);
183 return reinterpret_cast<uintptr_t>(zeroth_caller.GetCurrentShadowFrame());
184 } else {
185 // Quick frame = compiled code. Use the bottom of the frame.
186 return reinterpret_cast<uintptr_t>(zeroth_caller.GetCurrentQuickFrame());
187 }
188}
189
190void JNIEnvExt::RecordMonitorEnter(jobject obj) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800191 locked_objects_.push_back(std::make_pair(GetJavaCallFrame(self_), obj));
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700192}
193
194static std::string ComputeMonitorDescription(Thread* self,
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700195 jobject obj) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700196 ObjPtr<mirror::Object> o = self->DecodeJObject(obj);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700197 if ((o->GetLockWord(false).GetState() == LockWord::kThinLocked) &&
198 Locks::mutator_lock_->IsExclusiveHeld(self)) {
199 // Getting the identity hashcode here would result in lock inflation and suspension of the
200 // current thread, which isn't safe if this is the only runnable thread.
201 return StringPrintf("<@addr=0x%" PRIxPTR "> (a %s)",
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700202 reinterpret_cast<intptr_t>(o.Ptr()),
David Sehr709b0702016-10-13 09:12:37 -0700203 o->PrettyTypeOf().c_str());
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700204 } else {
205 // IdentityHashCode can cause thread suspension, which would invalidate o if it moved. So
206 // we get the pretty type before we call IdentityHashCode.
David Sehr709b0702016-10-13 09:12:37 -0700207 const std::string pretty_type(o->PrettyTypeOf());
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700208 return StringPrintf("<0x%08x> (a %s)", o->IdentityHashCode(), pretty_type.c_str());
209 }
210}
211
212static void RemoveMonitors(Thread* self,
213 uintptr_t frame,
214 ReferenceTable* monitors,
215 std::vector<std::pair<uintptr_t, jobject>>* locked_objects)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700216 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700217 auto kept_end = std::remove_if(
218 locked_objects->begin(),
219 locked_objects->end(),
220 [self, frame, monitors](const std::pair<uintptr_t, jobject>& pair)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700221 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700222 if (frame == pair.first) {
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700223 ObjPtr<mirror::Object> o = self->DecodeJObject(pair.second);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700224 monitors->Remove(o);
225 return true;
226 }
227 return false;
228 });
229 locked_objects->erase(kept_end, locked_objects->end());
230}
231
232void JNIEnvExt::CheckMonitorRelease(jobject obj) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800233 uintptr_t current_frame = GetJavaCallFrame(self_);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700234 std::pair<uintptr_t, jobject> exact_pair = std::make_pair(current_frame, obj);
235 auto it = std::find(locked_objects_.begin(), locked_objects_.end(), exact_pair);
236 bool will_abort = false;
237 if (it != locked_objects_.end()) {
238 locked_objects_.erase(it);
239 } else {
240 // Check whether this monitor was locked in another JNI "session."
Ian Rogers55256cb2017-12-21 17:07:11 -0800241 ObjPtr<mirror::Object> mirror_obj = self_->DecodeJObject(obj);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700242 for (std::pair<uintptr_t, jobject>& pair : locked_objects_) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800243 if (self_->DecodeJObject(pair.second) == mirror_obj) {
244 std::string monitor_descr = ComputeMonitorDescription(self_, pair.second);
245 vm_->JniAbortF("<JNI MonitorExit>",
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700246 "Unlocking monitor that wasn't locked here: %s",
247 monitor_descr.c_str());
248 will_abort = true;
249 break;
250 }
251 }
252 }
253
254 // When we abort, also make sure that any locks from the current "session" are removed from
255 // the monitors table, otherwise we may visit local objects in GC during abort (which won't be
256 // valid anymore).
257 if (will_abort) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800258 RemoveMonitors(self_, current_frame, &monitors_, &locked_objects_);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700259 }
260}
261
262void JNIEnvExt::CheckNoHeldMonitors() {
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700263 // The locked_objects_ are grouped by their stack frame component, as this enforces structured
264 // locking, and the groups form a stack. So the current frame entries are at the end. Check
265 // whether the vector is empty, and when there are elements, whether the last element belongs
266 // to this call - this signals that there are unlocked monitors.
267 if (!locked_objects_.empty()) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800268 uintptr_t current_frame = GetJavaCallFrame(self_);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700269 std::pair<uintptr_t, jobject>& pair = locked_objects_[locked_objects_.size() - 1];
270 if (pair.first == current_frame) {
Ian Rogers55256cb2017-12-21 17:07:11 -0800271 std::string monitor_descr = ComputeMonitorDescription(self_, pair.second);
272 vm_->JniAbortF("<JNI End>",
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700273 "Still holding a locked object on JNI end: %s",
274 monitor_descr.c_str());
275 // When we abort, also make sure that any locks from the current "session" are removed from
276 // the monitors table, otherwise we may visit local objects in GC during abort.
Ian Rogers55256cb2017-12-21 17:07:11 -0800277 RemoveMonitors(self_, current_frame, &monitors_, &locked_objects_);
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700278 } else if (kIsDebugBuild) {
279 // Make sure there are really no other entries and our checking worked as expected.
280 for (std::pair<uintptr_t, jobject>& check_pair : locked_objects_) {
281 CHECK_NE(check_pair.first, current_frame);
282 }
283 }
284 }
Ian Rogers55256cb2017-12-21 17:07:11 -0800285 // Ensure critical locks aren't held when returning to Java.
286 if (critical_ > 0) {
287 vm_->JniAbortF("<JNI End>",
288 "Critical lock held when returning to Java on thread %s",
289 ToStr<Thread>(*self_).c_str());
290 }
Andreas Gampe5f4a09a2015-09-28 13:16:33 -0700291}
292
Alex Lightf3677472019-06-26 16:31:53 -0700293void ThreadResetFunctionTable(Thread* thread, void* arg ATTRIBUTE_UNUSED)
Andreas Gampec8089542017-01-16 12:41:12 -0800294 REQUIRES(Locks::jni_function_table_lock_) {
295 JNIEnvExt* env = thread->GetJniEnv();
Ian Rogers55256cb2017-12-21 17:07:11 -0800296 bool check_jni = env->IsCheckJniEnabled();
Andreas Gampec8089542017-01-16 12:41:12 -0800297 env->functions = JNIEnvExt::GetFunctionTable(check_jni);
Alex Lightf3677472019-06-26 16:31:53 -0700298 env->unchecked_functions_ = GetJniNativeInterface();
Andreas Gampec8089542017-01-16 12:41:12 -0800299}
300
301void JNIEnvExt::SetTableOverride(const JNINativeInterface* table_override) {
302 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
303 MutexLock mu2(Thread::Current(), *Locks::jni_function_table_lock_);
304
305 JNIEnvExt::table_override_ = table_override;
306
307 // See if we have a runtime. Note: we cannot run other code (like JavaVMExt's CheckJNI install
308 // code), as we'd have to recursively lock the mutex.
309 Runtime* runtime = Runtime::Current();
310 if (runtime != nullptr) {
311 runtime->GetThreadList()->ForEach(ThreadResetFunctionTable, nullptr);
Orion Hodson9e0099f2019-07-23 15:51:37 +0100312 // Core Platform API checks rely on stack walking and classifying the caller. If a table
313 // override is installed do not try to guess what semantics should be.
314 runtime->SetCorePlatformApiEnforcementPolicy(hiddenapi::EnforcementPolicy::kDisabled);
Andreas Gampec8089542017-01-16 12:41:12 -0800315 }
316}
317
318const JNINativeInterface* JNIEnvExt::GetFunctionTable(bool check_jni) {
319 const JNINativeInterface* override = JNIEnvExt::table_override_;
320 if (override != nullptr) {
321 return override;
322 }
323 return check_jni ? GetCheckJniNativeInterface() : GetJniNativeInterface();
324}
325
Alex Lightf3677472019-06-26 16:31:53 -0700326void JNIEnvExt::ResetFunctionTable() {
327 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
328 MutexLock mu2(Thread::Current(), *Locks::jni_function_table_lock_);
329 Runtime* runtime = Runtime::Current();
330 CHECK(runtime != nullptr);
331 runtime->GetThreadList()->ForEach(ThreadResetFunctionTable, nullptr);
332}
333
Ian Rogers68d8b422014-07-17 11:09:10 -0700334} // namespace art