blob: 1e44e6a557bb120b5016b68b876a4bdc2e875d96 [file] [log] [blame]
Elliott Hughesa2501992011-08-26 19:39:54 -07001/*
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#include "jni_internal.h"
18
19#include <sys/mman.h>
20#include <zlib.h>
21
Elliott Hughes07ed66b2012-12-12 18:34:25 -080022#include "base/logging.h"
Elliott Hughesa2501992011-08-26 19:39:54 -070023#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "dex_file-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070026#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070027#include "mirror/art_field-inl.h"
28#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "mirror/object-inl.h"
31#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070032#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080034#include "object_utils.h"
Jeff Hao58df3272013-04-22 15:28:53 -070035#include "runtime.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070036#include "scoped_thread_state_change.h"
Elliott Hughesa2501992011-08-26 19:39:54 -070037#include "thread.h"
38
39namespace art {
40
Elliott Hughes3f6635a2012-06-19 13:37:49 -070041static void JniAbort(const char* jni_function_name, const char* msg) {
Elliott Hughesa0957642011-09-02 14:27:33 -070042 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070043 ScopedObjectAccess soa(self);
Ian Rogersef7d42f2014-01-06 12:55:46 -080044 mirror::ArtMethod* current_method = self->GetCurrentMethod(nullptr);
Elliott Hughesa2501992011-08-26 19:39:54 -070045
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070046 std::ostringstream os;
Elliott Hughes3f6635a2012-06-19 13:37:49 -070047 os << "JNI DETECTED ERROR IN APPLICATION: " << msg;
Elliott Hughesa2501992011-08-26 19:39:54 -070048
Ian Rogersef7d42f2014-01-06 12:55:46 -080049 if (jni_function_name != nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -070050 os << "\n in call to " << jni_function_name;
Elliott Hughesa2501992011-08-26 19:39:54 -070051 }
Elliott Hughesa0957642011-09-02 14:27:33 -070052 // TODO: is this useful given that we're about to dump the calling thread's stack?
Ian Rogersef7d42f2014-01-06 12:55:46 -080053 if (current_method != nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -070054 os << "\n from " << PrettyMethod(current_method);
Elliott Hughesa0957642011-09-02 14:27:33 -070055 }
56 os << "\n";
57 self->Dump(os);
Elliott Hughesa2501992011-08-26 19:39:54 -070058
59 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
Ian Rogersef7d42f2014-01-06 12:55:46 -080060 if (vm->check_jni_abort_hook != nullptr) {
Elliott Hughesb264f082012-04-06 17:10:10 -070061 vm->check_jni_abort_hook(vm->check_jni_abort_hook_data, os.str());
Elliott Hughesa2501992011-08-26 19:39:54 -070062 } else {
Ian Rogers9da7f592012-08-20 17:14:28 -070063 // Ensure that we get a native stack trace for this thread.
64 self->TransitionFromRunnableToSuspended(kNative);
Elliott Hughesa2501992011-08-26 19:39:54 -070065 LOG(FATAL) << os.str();
Ian Rogers9da7f592012-08-20 17:14:28 -070066 self->TransitionFromSuspendedToRunnable(); // Unreachable, keep annotalysis happy.
Elliott Hughesa2501992011-08-26 19:39:54 -070067 }
68}
69
Elliott Hughes3f6635a2012-06-19 13:37:49 -070070static void JniAbortV(const char* jni_function_name, const char* fmt, va_list ap) {
71 std::string msg;
72 StringAppendV(&msg, fmt, ap);
73 JniAbort(jni_function_name, msg.c_str());
74}
75
76void JniAbortF(const char* jni_function_name, const char* fmt, ...) {
77 va_list args;
78 va_start(args, fmt);
79 JniAbortV(jni_function_name, fmt, args);
80 va_end(args);
81}
82
Elliott Hughesa2501992011-08-26 19:39:54 -070083/*
84 * ===========================================================================
85 * JNI function helpers
86 * ===========================================================================
87 */
88
Ian Rogers959f8ed2012-02-07 16:33:37 -080089static bool IsSirtLocalRef(JNIEnv* env, jobject localRef) {
90 return GetIndirectRefKind(localRef) == kSirtOrInvalid &&
Ian Rogers0399dde2012-06-06 17:09:28 -070091 reinterpret_cast<JNIEnvExt*>(env)->self->SirtContains(localRef);
Ian Rogers959f8ed2012-02-07 16:33:37 -080092}
93
Elliott Hughes3f6635a2012-06-19 13:37:49 -070094// Flags passed into ScopedCheck.
Elliott Hughesa2501992011-08-26 19:39:54 -070095#define kFlag_Default 0x0000
96
Elliott Hughes3f6635a2012-06-19 13:37:49 -070097#define kFlag_CritBad 0x0000 // Calling while in critical is not allowed.
98#define kFlag_CritOkay 0x0001 // Calling while in critical is allowed.
99#define kFlag_CritGet 0x0002 // This is a critical "get".
100#define kFlag_CritRelease 0x0003 // This is a critical "release".
101#define kFlag_CritMask 0x0003 // Bit mask to get "crit" value.
Elliott Hughesa2501992011-08-26 19:39:54 -0700102
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700103#define kFlag_ExcepBad 0x0000 // Raised exceptions are not allowed.
104#define kFlag_ExcepOkay 0x0004 // Raised exceptions are allowed.
Elliott Hughesa2501992011-08-26 19:39:54 -0700105
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700106#define kFlag_Release 0x0010 // Are we in a non-critical release function?
107#define kFlag_NullableUtf 0x0020 // Are our UTF parameters nullable?
Elliott Hughesa2501992011-08-26 19:39:54 -0700108
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700109#define kFlag_Invocation 0x8000 // Part of the invocation interface (JavaVM*).
Elliott Hughesa2501992011-08-26 19:39:54 -0700110
Elliott Hughes485cac42011-12-09 17:49:35 -0800111#define kFlag_ForceTrace 0x80000000 // Add this to a JNI function's flags if you want to trace every call.
112
Elliott Hughesa0957642011-09-02 14:27:33 -0700113static const char* gBuiltInPrefixes[] = {
114 "Landroid/",
115 "Lcom/android/",
116 "Lcom/google/android/",
117 "Ldalvik/",
118 "Ljava/",
119 "Ljavax/",
120 "Llibcore/",
121 "Lorg/apache/harmony/",
Ian Rogersef7d42f2014-01-06 12:55:46 -0800122 nullptr
Elliott Hughesa0957642011-09-02 14:27:33 -0700123};
124
Ian Rogersef7d42f2014-01-06 12:55:46 -0800125static bool ShouldTrace(JavaVMExt* vm, mirror::ArtMethod* method)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700126 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa0957642011-09-02 14:27:33 -0700127 // If both "-Xcheck:jni" and "-Xjnitrace:" are enabled, we print trace messages
128 // when a native method that matches the -Xjnitrace argument calls a JNI function
129 // such as NewByteArray.
130 // If -verbose:third-party-jni is on, we want to log any JNI function calls
131 // made by a third-party native method.
Elliott Hughes81ff3182012-03-23 20:35:56 -0700132 std::string class_name(MethodHelper(method).GetDeclaringClassDescriptor());
133 if (!vm->trace.empty() && class_name.find(vm->trace) != std::string::npos) {
Elliott Hughesa0957642011-09-02 14:27:33 -0700134 return true;
135 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800136 if (VLOG_IS_ON(third_party_jni)) {
Elliott Hughesa0957642011-09-02 14:27:33 -0700137 // Return true if we're trying to log all third-party JNI activity and 'method' doesn't look
138 // like part of Android.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800139 for (size_t i = 0; gBuiltInPrefixes[i] != nullptr; ++i) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700140 if (StartsWith(class_name, gBuiltInPrefixes[i])) {
Elliott Hughesa0957642011-09-02 14:27:33 -0700141 return false;
142 }
143 }
144 return true;
145 }
146 return false;
147}
148
Elliott Hughesa2501992011-08-26 19:39:54 -0700149class ScopedCheck {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800150 public:
Elliott Hughesa2501992011-08-26 19:39:54 -0700151 // For JNIEnv* functions.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700152 explicit ScopedCheck(JNIEnv* env, int flags, const char* functionName)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700153 SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700154 : soa_(env) {
Ian Rogers365c1022012-06-22 15:05:28 -0700155 Init(flags, functionName, true);
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700156 CheckThread(flags);
Elliott Hughesa2501992011-08-26 19:39:54 -0700157 }
158
159 // For JavaVM* functions.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700160 // TODO: it's not correct that this is a lock function, but making it so aids annotalysis.
161 explicit ScopedCheck(JavaVM* vm, bool has_method, const char* functionName)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700162 SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700163 : soa_(vm) {
Ian Rogers365c1022012-06-22 15:05:28 -0700164 Init(kFlag_Invocation, functionName, has_method);
Elliott Hughesa2501992011-08-26 19:39:54 -0700165 }
166
Ian Rogersb726dcb2012-09-05 08:57:23 -0700167 ~ScopedCheck() UNLOCK_FUNCTION(Locks::mutator_lock_) {}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700168
169 const ScopedObjectAccess& soa() {
170 return soa_;
171 }
172
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700173 bool ForceCopy() {
Elliott Hughesa2501992011-08-26 19:39:54 -0700174 return Runtime::Current()->GetJavaVM()->force_copy;
175 }
176
Elliott Hughes81ff3182012-03-23 20:35:56 -0700177 // Checks that 'class_name' is a valid "fully-qualified" JNI class name, like "java/lang/Thread"
178 // or "[Ljava/lang/Object;". A ClassLoader can actually normalize class names a couple of
179 // times, so using "java.lang.Thread" instead of "java/lang/Thread" might work in some
180 // circumstances, but this is incorrect.
181 void CheckClassName(const char* class_name) {
Ian Rogers2d10b202014-05-12 19:15:18 -0700182 if ((class_name == nullptr) || !IsValidJniClassName(class_name)) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700183 JniAbortF(function_name_,
184 "illegal class name '%s'\n"
185 " (should be of the form 'package/Class', [Lpackage/Class;' or '[[B')",
186 class_name);
Elliott Hughesa2501992011-08-26 19:39:54 -0700187 }
188 }
189
190 /*
191 * Verify that the field is of the appropriate type. If the field has an
192 * object type, "java_object" is the object we're trying to assign into it.
193 *
194 * Works for both static and instance fields.
195 */
Ian Rogersef7d42f2014-01-06 12:55:46 -0800196 void CheckFieldType(jvalue value, jfieldID fid, char prim, bool isStatic)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700197 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700198 mirror::ArtField* f = CheckFieldID(fid);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800199 if (f == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700200 return;
201 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800202 mirror::Class* field_type = FieldHelper(f).GetType();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700203 if (!field_type->IsPrimitive()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800204 jobject java_object = value.l;
205 if (java_object != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800206 mirror::Object* obj = soa_.Decode<mirror::Object*>(java_object);
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700207 // If java_object is a weak global ref whose referent has been cleared,
208 // obj will be NULL. Otherwise, obj should always be non-NULL
209 // and valid.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700210 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(obj)) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700211 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700212 JniAbortF(function_name_, "field operation on invalid %s: %p",
213 ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), java_object);
Elliott Hughesa2501992011-08-26 19:39:54 -0700214 return;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700215 } else {
Brian Carlstrom16192862011-09-12 17:50:06 -0700216 if (!obj->InstanceOf(field_type)) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700217 JniAbortF(function_name_, "attempt to set field %s with value of wrong type: %s",
218 PrettyField(f).c_str(), PrettyTypeOf(obj).c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700219 return;
220 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700221 }
Elliott Hughesa2501992011-08-26 19:39:54 -0700222 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700223 } else if (field_type != Runtime::Current()->GetClassLinker()->FindPrimitiveClass(prim)) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700224 JniAbortF(function_name_, "attempt to set field %s with value of wrong type: %c",
225 PrettyField(f).c_str(), prim);
Elliott Hughesa2501992011-08-26 19:39:54 -0700226 return;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700227 }
228
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700229 if (isStatic != f->IsStatic()) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700230 if (isStatic) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700231 JniAbortF(function_name_, "accessing non-static field %s as static", PrettyField(f).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700232 } else {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700233 JniAbortF(function_name_, "accessing static field %s as non-static", PrettyField(f).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700234 }
Elliott Hughesa2501992011-08-26 19:39:54 -0700235 return;
236 }
237 }
238
239 /*
240 * Verify that this instance field ID is valid for this object.
241 *
242 * Assumes "jobj" has already been validated.
243 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700244 void CheckInstanceFieldID(jobject java_object, jfieldID fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800246 mirror::Object* o = soa_.Decode<mirror::Object*>(java_object);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800247 if (o == nullptr || !Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700248 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700249 JniAbortF(function_name_, "field operation on invalid %s: %p",
250 ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), java_object);
Elliott Hughesa2501992011-08-26 19:39:54 -0700251 return;
252 }
253
Brian Carlstromea46f952013-07-30 01:26:50 -0700254 mirror::ArtField* f = CheckFieldID(fid);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800255 if (f == nullptr) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700256 return;
257 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800258 mirror::Class* c = o->GetClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800259 FieldHelper fh(f);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800260 if (c->FindInstanceField(fh.GetName(), fh.GetTypeDescriptor()) == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700261 JniAbortF(function_name_, "jfieldID %s not valid for an object of class %s",
262 PrettyField(f).c_str(), PrettyTypeOf(o).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700263 }
264 }
265
266 /*
267 * Verify that the pointer value is non-NULL.
268 */
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700269 void CheckNonNull(const void* ptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800270 if (ptr == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700271 JniAbortF(function_name_, "non-nullable argument was NULL");
Elliott Hughesa2501992011-08-26 19:39:54 -0700272 }
273 }
274
275 /*
276 * Verify that the method's return type matches the type of call.
277 * 'expectedType' will be "L" for all objects, including arrays.
278 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700279 void CheckSig(jmethodID mid, const char* expectedType, bool isStatic)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700280 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700281 mirror::ArtMethod* m = CheckMethodID(mid);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800282 if (m == nullptr) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700283 return;
284 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800285 if (*expectedType != MethodHelper(m).GetShorty()[0]) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700286 JniAbortF(function_name_, "the return type of %s does not match %s",
287 function_name_, PrettyMethod(m).c_str());
288 }
289 if (isStatic != m->IsStatic()) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700290 if (isStatic) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700291 JniAbortF(function_name_, "calling non-static method %s with %s",
292 PrettyMethod(m).c_str(), function_name_);
Elliott Hughesa2501992011-08-26 19:39:54 -0700293 } else {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700294 JniAbortF(function_name_, "calling static method %s with %s",
295 PrettyMethod(m).c_str(), function_name_);
Elliott Hughesa2501992011-08-26 19:39:54 -0700296 }
Elliott Hughesa2501992011-08-26 19:39:54 -0700297 }
298 }
299
300 /*
301 * Verify that this static field ID is valid for this class.
302 *
303 * Assumes "java_class" has already been validated.
304 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700305 void CheckStaticFieldID(jclass java_class, jfieldID fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800307 mirror::Class* c = soa_.Decode<mirror::Class*>(java_class);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800308 mirror::ArtField* f = CheckFieldID(fid);
309 if (f == nullptr) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700310 return;
311 }
Elliott Hughesa2501992011-08-26 19:39:54 -0700312 if (f->GetDeclaringClass() != c) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700313 JniAbortF(function_name_, "static jfieldID %p not valid for class %s",
314 fid, PrettyClass(c).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700315 }
316 }
317
318 /*
Elliott Hughese84278b2012-03-22 10:06:53 -0700319 * Verify that "mid" is appropriate for "java_class".
Elliott Hughesa2501992011-08-26 19:39:54 -0700320 *
321 * A mismatch isn't dangerous, because the jmethodID defines the class. In
Elliott Hughese84278b2012-03-22 10:06:53 -0700322 * fact, java_class is unused in the implementation. It's best if we don't
Elliott Hughesa2501992011-08-26 19:39:54 -0700323 * allow bad code in the system though.
324 *
Elliott Hughese84278b2012-03-22 10:06:53 -0700325 * Instances of "java_class" must be instances of the method's declaring class.
Elliott Hughesa2501992011-08-26 19:39:54 -0700326 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700327 void CheckStaticMethod(jclass java_class, jmethodID mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700328 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800329 mirror::ArtMethod* m = CheckMethodID(mid);
330 if (m == nullptr) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700331 return;
332 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800333 mirror::Class* c = soa_.Decode<mirror::Class*>(java_class);
Brian Carlstrom67fe2b42013-10-15 18:51:42 -0700334 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700335 JniAbortF(function_name_, "can't call static %s on class %s",
336 PrettyMethod(m).c_str(), PrettyClass(c).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700337 }
338 }
339
340 /*
341 * Verify that "mid" is appropriate for "jobj".
342 *
343 * Make sure the object is an instance of the method's declaring class.
344 * (Note the mid might point to a declaration in an interface; this
345 * will be handled automatically by the instanceof check.)
346 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700347 void CheckVirtualMethod(jobject java_object, jmethodID mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700348 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800349 mirror::ArtMethod* m = CheckMethodID(mid);
350 if (m == nullptr) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700351 return;
352 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800353 mirror::Object* o = soa_.Decode<mirror::Object*>(java_object);
Elliott Hughesa2501992011-08-26 19:39:54 -0700354 if (!o->InstanceOf(m->GetDeclaringClass())) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700355 JniAbortF(function_name_, "can't call %s on instance of %s",
356 PrettyMethod(m).c_str(), PrettyTypeOf(o).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700357 }
358 }
359
360 /**
361 * The format string is a sequence of the following characters,
362 * and must be followed by arguments of the corresponding types
363 * in the same order.
364 *
365 * Java primitive types:
366 * B - jbyte
367 * C - jchar
368 * D - jdouble
369 * F - jfloat
370 * I - jint
371 * J - jlong
372 * S - jshort
373 * Z - jboolean (shown as true and false)
374 * V - void
375 *
376 * Java reference types:
377 * L - jobject
378 * a - jarray
379 * c - jclass
380 * s - jstring
381 *
382 * JNI types:
383 * b - jboolean (shown as JNI_TRUE and JNI_FALSE)
384 * f - jfieldID
385 * m - jmethodID
386 * p - void*
387 * r - jint (for release mode arguments)
Elliott Hughes78090d12011-10-07 14:31:47 -0700388 * u - const char* (Modified UTF-8)
Elliott Hughesa2501992011-08-26 19:39:54 -0700389 * z - jsize (for lengths; use i if negative values are okay)
390 * v - JavaVM*
391 * E - JNIEnv*
392 * . - no argument; just print "..." (used for varargs JNI calls)
393 *
394 * Use the kFlag_NullableUtf flag where 'u' field(s) are nullable.
395 */
Brian Carlstromdf629502013-07-17 22:39:56 -0700396 void Check(bool entry, const char* fmt0, ...) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700397 va_list ap;
398
Ian Rogersef7d42f2014-01-06 12:55:46 -0800399 mirror::ArtMethod* traceMethod = nullptr;
Ian Rogers9365f582013-04-19 09:55:42 -0700400 if (has_method_ && (!soa_.Vm()->trace.empty() || VLOG_IS_ON(third_party_jni))) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700401 // We need to guard some of the invocation interface's calls: a bad caller might
402 // use DetachCurrentThread or GetEnv on a thread that's not yet attached.
Elliott Hughesa0957642011-09-02 14:27:33 -0700403 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800404 if ((flags_ & kFlag_Invocation) == 0 || self != nullptr) {
405 traceMethod = self->GetCurrentMethod(nullptr);
Elliott Hughesa2501992011-08-26 19:39:54 -0700406 }
407 }
Elliott Hughesa0957642011-09-02 14:27:33 -0700408
Ian Rogersef7d42f2014-01-06 12:55:46 -0800409 if (((flags_ & kFlag_ForceTrace) != 0) ||
410 (traceMethod != nullptr && ShouldTrace(soa_.Vm(), traceMethod))) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700411 va_start(ap, fmt0);
412 std::string msg;
413 for (const char* fmt = fmt0; *fmt;) {
414 char ch = *fmt++;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700415 if (ch == 'B') { // jbyte
Elliott Hughesa2501992011-08-26 19:39:54 -0700416 jbyte b = va_arg(ap, int);
417 if (b >= 0 && b < 10) {
418 StringAppendF(&msg, "%d", b);
419 } else {
420 StringAppendF(&msg, "%#x (%d)", b, b);
421 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700422 } else if (ch == 'C') { // jchar
Elliott Hughesa2501992011-08-26 19:39:54 -0700423 jchar c = va_arg(ap, int);
424 if (c < 0x7f && c >= ' ') {
425 StringAppendF(&msg, "U+%x ('%c')", c, c);
426 } else {
427 StringAppendF(&msg, "U+%x", c);
428 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700429 } else if (ch == 'F' || ch == 'D') { // jfloat, jdouble
Elliott Hughesa2501992011-08-26 19:39:54 -0700430 StringAppendF(&msg, "%g", va_arg(ap, double));
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700431 } else if (ch == 'I' || ch == 'S') { // jint, jshort
Elliott Hughesa2501992011-08-26 19:39:54 -0700432 StringAppendF(&msg, "%d", va_arg(ap, int));
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700433 } else if (ch == 'J') { // jlong
Ian Rogersef7d42f2014-01-06 12:55:46 -0800434 StringAppendF(&msg, "%" PRId64, va_arg(ap, jlong));
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700435 } else if (ch == 'Z') { // jboolean
Elliott Hughesa2501992011-08-26 19:39:54 -0700436 StringAppendF(&msg, "%s", va_arg(ap, int) ? "true" : "false");
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700437 } else if (ch == 'V') { // void
Elliott Hughesa2501992011-08-26 19:39:54 -0700438 msg += "void";
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700439 } else if (ch == 'v') { // JavaVM*
Elliott Hughesa2501992011-08-26 19:39:54 -0700440 JavaVM* vm = va_arg(ap, JavaVM*);
441 StringAppendF(&msg, "(JavaVM*)%p", vm);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700442 } else if (ch == 'E') { // JNIEnv*
Elliott Hughesa2501992011-08-26 19:39:54 -0700443 JNIEnv* env = va_arg(ap, JNIEnv*);
444 StringAppendF(&msg, "(JNIEnv*)%p", env);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700445 } else if (ch == 'L' || ch == 'a' || ch == 's') { // jobject, jarray, jstring
Elliott Hughesa2501992011-08-26 19:39:54 -0700446 // For logging purposes, these are identical.
447 jobject o = va_arg(ap, jobject);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800448 if (o == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700449 msg += "NULL";
450 } else {
451 StringAppendF(&msg, "%p", o);
452 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700453 } else if (ch == 'b') { // jboolean (JNI-style)
Elliott Hughesa2501992011-08-26 19:39:54 -0700454 jboolean b = va_arg(ap, int);
455 msg += (b ? "JNI_TRUE" : "JNI_FALSE");
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700456 } else if (ch == 'c') { // jclass
Elliott Hughesa2501992011-08-26 19:39:54 -0700457 jclass jc = va_arg(ap, jclass);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800458 mirror::Class* c = reinterpret_cast<mirror::Class*>(Thread::Current()->DecodeJObject(jc));
Ian Rogersef7d42f2014-01-06 12:55:46 -0800459 if (c == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700460 msg += "NULL";
Mathieu Chartier590fee92013-09-13 13:46:47 -0700461 } else if (c == kInvalidIndirectRefObject ||
462 !Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Elliott Hughes485cac42011-12-09 17:49:35 -0800463 StringAppendF(&msg, "INVALID POINTER:%p", jc);
464 } else if (!c->IsClass()) {
465 msg += "INVALID NON-CLASS OBJECT OF TYPE:" + PrettyTypeOf(c);
Elliott Hughesa2501992011-08-26 19:39:54 -0700466 } else {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700467 msg += PrettyClass(c);
Elliott Hughesa2501992011-08-26 19:39:54 -0700468 if (!entry) {
469 StringAppendF(&msg, " (%p)", jc);
470 }
471 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700472 } else if (ch == 'f') { // jfieldID
Elliott Hughesa2501992011-08-26 19:39:54 -0700473 jfieldID fid = va_arg(ap, jfieldID);
Brian Carlstromea46f952013-07-30 01:26:50 -0700474 mirror::ArtField* f = reinterpret_cast<mirror::ArtField*>(fid);
Elliott Hughesa2501992011-08-26 19:39:54 -0700475 msg += PrettyField(f);
476 if (!entry) {
477 StringAppendF(&msg, " (%p)", fid);
478 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700479 } else if (ch == 'z') { // non-negative jsize
Elliott Hughesa2501992011-08-26 19:39:54 -0700480 // You might expect jsize to be size_t, but it's not; it's the same as jint.
481 // We only treat this specially so we can do the non-negative check.
482 // TODO: maybe this wasn't worth it?
483 jint i = va_arg(ap, jint);
484 StringAppendF(&msg, "%d", i);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700485 } else if (ch == 'm') { // jmethodID
Elliott Hughesa2501992011-08-26 19:39:54 -0700486 jmethodID mid = va_arg(ap, jmethodID);
Brian Carlstromea46f952013-07-30 01:26:50 -0700487 mirror::ArtMethod* m = reinterpret_cast<mirror::ArtMethod*>(mid);
Elliott Hughesa2501992011-08-26 19:39:54 -0700488 msg += PrettyMethod(m);
489 if (!entry) {
490 StringAppendF(&msg, " (%p)", mid);
491 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700492 } else if (ch == 'p') { // void* ("pointer")
Elliott Hughesa2501992011-08-26 19:39:54 -0700493 void* p = va_arg(ap, void*);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800494 if (p == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700495 msg += "NULL";
496 } else {
497 StringAppendF(&msg, "(void*) %p", p);
498 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700499 } else if (ch == 'r') { // jint (release mode)
Elliott Hughesa2501992011-08-26 19:39:54 -0700500 jint releaseMode = va_arg(ap, jint);
501 if (releaseMode == 0) {
502 msg += "0";
503 } else if (releaseMode == JNI_ABORT) {
504 msg += "JNI_ABORT";
505 } else if (releaseMode == JNI_COMMIT) {
506 msg += "JNI_COMMIT";
507 } else {
508 StringAppendF(&msg, "invalid release mode %d", releaseMode);
509 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700510 } else if (ch == 'u') { // const char* (Modified UTF-8)
Elliott Hughesa2501992011-08-26 19:39:54 -0700511 const char* utf = va_arg(ap, const char*);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800512 if (utf == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700513 msg += "NULL";
514 } else {
515 StringAppendF(&msg, "\"%s\"", utf);
516 }
517 } else if (ch == '.') {
518 msg += "...";
519 } else {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700520 JniAbortF(function_name_, "unknown trace format specifier: %c", ch);
Elliott Hughesa2501992011-08-26 19:39:54 -0700521 return;
522 }
523 if (*fmt) {
524 StringAppendF(&msg, ", ");
525 }
526 }
527 va_end(ap);
528
Elliott Hughes485cac42011-12-09 17:49:35 -0800529 if ((flags_ & kFlag_ForceTrace) != 0) {
530 LOG(INFO) << "JNI: call to " << function_name_ << "(" << msg << ")";
531 } else if (entry) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700532 if (has_method_) {
Elliott Hughesa0957642011-09-02 14:27:33 -0700533 std::string methodName(PrettyMethod(traceMethod, false));
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700534 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")";
535 indent_ = methodName.size() + 1;
Elliott Hughesa2501992011-08-26 19:39:54 -0700536 } else {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700537 LOG(INFO) << "JNI: -> " << function_name_ << "(" << msg << ")";
538 indent_ = 0;
Elliott Hughesa2501992011-08-26 19:39:54 -0700539 }
540 } else {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700541 LOG(INFO) << StringPrintf("JNI: %*s<- %s returned %s", indent_, "", function_name_, msg.c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700542 }
543 }
544
545 // We always do the thorough checks on entry, and never on exit...
546 if (entry) {
547 va_start(ap, fmt0);
548 for (const char* fmt = fmt0; *fmt; ++fmt) {
549 char ch = *fmt;
550 if (ch == 'a') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700551 CheckArray(va_arg(ap, jarray));
Elliott Hughesa2501992011-08-26 19:39:54 -0700552 } else if (ch == 'c') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700553 CheckInstance(kClass, va_arg(ap, jclass));
Elliott Hughesa2501992011-08-26 19:39:54 -0700554 } else if (ch == 'L') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700555 CheckObject(va_arg(ap, jobject));
Elliott Hughesa2501992011-08-26 19:39:54 -0700556 } else if (ch == 'r') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700557 CheckReleaseMode(va_arg(ap, jint));
Elliott Hughesa2501992011-08-26 19:39:54 -0700558 } else if (ch == 's') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700559 CheckInstance(kString, va_arg(ap, jstring));
Elliott Hughesa2501992011-08-26 19:39:54 -0700560 } else if (ch == 'u') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700561 if ((flags_ & kFlag_Release) != 0) {
562 CheckNonNull(va_arg(ap, const char*));
Elliott Hughesa2501992011-08-26 19:39:54 -0700563 } else {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700564 bool nullable = ((flags_ & kFlag_NullableUtf) != 0);
565 CheckUtfString(va_arg(ap, const char*), nullable);
Elliott Hughesa2501992011-08-26 19:39:54 -0700566 }
567 } else if (ch == 'z') {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700568 CheckLengthPositive(va_arg(ap, jsize));
Ian Rogersef7d42f2014-01-06 12:55:46 -0800569 } else if (strchr("BCISZbfmpEv", ch) != nullptr) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700570 va_arg(ap, uint32_t); // Skip this argument.
Elliott Hughesa2501992011-08-26 19:39:54 -0700571 } else if (ch == 'D' || ch == 'F') {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700572 va_arg(ap, double); // Skip this argument.
Elliott Hughesa2501992011-08-26 19:39:54 -0700573 } else if (ch == 'J') {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700574 va_arg(ap, uint64_t); // Skip this argument.
Elliott Hughesa2501992011-08-26 19:39:54 -0700575 } else if (ch == '.') {
576 } else {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800577 LOG(FATAL) << "Unknown check format specifier: " << ch;
Elliott Hughesa2501992011-08-26 19:39:54 -0700578 }
579 }
580 va_end(ap);
581 }
582 }
583
Elliott Hughesa92853e2012-02-07 16:09:27 -0800584 enum InstanceKind {
585 kClass,
Elliott Hughes0f3c5532012-03-30 14:51:51 -0700586 kDirectByteBuffer,
587 kObject,
588 kString,
589 kThrowable,
Elliott Hughesa92853e2012-02-07 16:09:27 -0800590 };
591
592 /*
593 * Verify that "jobj" is a valid non-NULL object reference, and points to
594 * an instance of expectedClass.
595 *
596 * Because we're looking at an object on the GC heap, we have to switch
597 * to "running" mode before doing the checks.
598 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700599 bool CheckInstance(InstanceKind kind, jobject java_object)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700600 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800601 const char* what = nullptr;
Elliott Hughesa92853e2012-02-07 16:09:27 -0800602 switch (kind) {
603 case kClass:
604 what = "jclass";
605 break;
606 case kDirectByteBuffer:
607 what = "direct ByteBuffer";
608 break;
609 case kObject:
610 what = "jobject";
611 break;
612 case kString:
613 what = "jstring";
614 break;
615 case kThrowable:
616 what = "jthrowable";
617 break;
618 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700619 LOG(FATAL) << "Unknown kind " << static_cast<int>(kind);
Elliott Hughesa92853e2012-02-07 16:09:27 -0800620 }
621
Ian Rogersef7d42f2014-01-06 12:55:46 -0800622 if (java_object == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700623 JniAbortF(function_name_, "%s received null %s", function_name_, what);
Elliott Hughesa92853e2012-02-07 16:09:27 -0800624 return false;
625 }
626
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800627 mirror::Object* obj = soa_.Decode<mirror::Object*>(java_object);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700628 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(obj)) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700629 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700630 JniAbortF(function_name_, "%s is an invalid %s: %p (%p)",
631 what, ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), java_object, obj);
Elliott Hughesa92853e2012-02-07 16:09:27 -0800632 return false;
633 }
634
635 bool okay = true;
636 switch (kind) {
637 case kClass:
638 okay = obj->IsClass();
639 break;
640 case kDirectByteBuffer:
641 UNIMPLEMENTED(FATAL);
642 break;
643 case kString:
644 okay = obj->GetClass()->IsStringClass();
645 break;
646 case kThrowable:
647 okay = obj->GetClass()->IsThrowableClass();
648 break;
649 case kObject:
650 break;
651 }
652 if (!okay) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700653 JniAbortF(function_name_, "%s has wrong type: %s", what, PrettyTypeOf(obj).c_str());
Elliott Hughesa92853e2012-02-07 16:09:27 -0800654 return false;
655 }
656
657 return true;
658 }
659
Elliott Hughesba8eee12012-01-24 20:25:24 -0800660 private:
Elliott Hughes81ff3182012-03-23 20:35:56 -0700661 // Set "has_method" to true if we have a valid thread with a method pointer.
662 // We won't have one before attaching a thread, after detaching a thread, or
663 // when shutting down the runtime.
Ian Rogers365c1022012-06-22 15:05:28 -0700664 void Init(int flags, const char* functionName, bool has_method) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700665 flags_ = flags;
666 function_name_ = functionName;
Elliott Hughes81ff3182012-03-23 20:35:56 -0700667 has_method_ = has_method;
Elliott Hughesa2501992011-08-26 19:39:54 -0700668 }
669
670 /*
671 * Verify that "array" is non-NULL and points to an Array object.
672 *
673 * Since we're dealing with objects, switch to "running" mode.
674 */
Ian Rogersb726dcb2012-09-05 08:57:23 -0700675 void CheckArray(jarray java_array) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800676 if (java_array == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700677 JniAbortF(function_name_, "jarray was NULL");
Elliott Hughesa2501992011-08-26 19:39:54 -0700678 return;
679 }
680
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800681 mirror::Array* a = soa_.Decode<mirror::Array*>(java_array);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700682 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(a)) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700683 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700684 JniAbortF(function_name_, "jarray is an invalid %s: %p (%p)",
685 ToStr<IndirectRefKind>(GetIndirectRefKind(java_array)).c_str(), java_array, a);
Elliott Hughesa2501992011-08-26 19:39:54 -0700686 } else if (!a->IsArrayInstance()) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700687 JniAbortF(function_name_, "jarray argument has non-array type: %s", PrettyTypeOf(a).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700688 }
689 }
690
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700691 void CheckLengthPositive(jsize length) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700692 if (length < 0) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700693 JniAbortF(function_name_, "negative jsize: %d", length);
Elliott Hughesa2501992011-08-26 19:39:54 -0700694 }
695 }
696
Brian Carlstromea46f952013-07-30 01:26:50 -0700697 mirror::ArtField* CheckFieldID(jfieldID fid) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800698 if (fid == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700699 JniAbortF(function_name_, "jfieldID was NULL");
Ian Rogersef7d42f2014-01-06 12:55:46 -0800700 return nullptr;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700701 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700702 mirror::ArtField* f = soa_.DecodeField(fid);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700703 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(f) || !f->IsArtField()) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700704 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700705 JniAbortF(function_name_, "invalid jfieldID: %p", fid);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800706 return nullptr;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700707 }
708 return f;
709 }
710
Brian Carlstromea46f952013-07-30 01:26:50 -0700711 mirror::ArtMethod* CheckMethodID(jmethodID mid) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800712 if (mid == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700713 JniAbortF(function_name_, "jmethodID was NULL");
Ian Rogersef7d42f2014-01-06 12:55:46 -0800714 return nullptr;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700715 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700716 mirror::ArtMethod* m = soa_.DecodeMethod(mid);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700717 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(m) || !m->IsArtMethod()) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700718 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700719 JniAbortF(function_name_, "invalid jmethodID: %p", mid);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800720 return nullptr;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700721 }
722 return m;
723 }
724
Elliott Hughesa2501992011-08-26 19:39:54 -0700725 /*
726 * Verify that "jobj" is a valid object, and that it's an object that JNI
727 * is allowed to know about. We allow NULL references.
728 *
729 * Switches to "running" mode before performing checks.
730 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700731 void CheckObject(jobject java_object)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700732 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800733 if (java_object == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700734 return;
735 }
736
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800737 mirror::Object* o = soa_.Decode<mirror::Object*>(java_object);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700738 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Mathieu Chartier128c52c2012-10-16 14:12:41 -0700739 Runtime::Current()->GetHeap()->DumpSpaces();
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -0700740 // TODO: when we remove work_around_app_jni_bugs, this should be impossible.
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700741 JniAbortF(function_name_, "native code passing in reference to invalid %s: %p",
742 ToStr<IndirectRefKind>(GetIndirectRefKind(java_object)).c_str(), java_object);
Elliott Hughesa2501992011-08-26 19:39:54 -0700743 }
744 }
745
746 /*
747 * Verify that the "mode" argument passed to a primitive array Release
748 * function is one of the valid values.
749 */
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700750 void CheckReleaseMode(jint mode) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700751 if (mode != 0 && mode != JNI_COMMIT && mode != JNI_ABORT) {
Elliott Hughes96a98872012-12-19 14:21:15 -0800752 JniAbortF(function_name_, "unknown value for release mode: %d", mode);
Elliott Hughesa2501992011-08-26 19:39:54 -0700753 }
754 }
755
Ian Rogersb726dcb2012-09-05 08:57:23 -0700756 void CheckThread(int flags) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700757 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800758 if (self == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700759 JniAbortF(function_name_, "a thread (tid %d) is making JNI calls without being attached", GetTid());
Elliott Hughesa2501992011-08-26 19:39:54 -0700760 return;
761 }
762
763 // Get the *correct* JNIEnv by going through our TLS pointer.
764 JNIEnvExt* threadEnv = self->GetJniEnv();
765
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700766 // Verify that the current thread is (a) attached and (b) associated with
767 // this particular instance of JNIEnv.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700768 if (soa_.Env() != threadEnv) {
Ian Rogers987560f2014-04-22 11:42:59 -0700769 JniAbortF(function_name_, "thread %s using JNIEnv* from thread %s",
770 ToStr<Thread>(*self).c_str(), ToStr<Thread>(*soa_.Self()).c_str());
771 return;
Elliott Hughesa2501992011-08-26 19:39:54 -0700772 }
773
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700774 // Verify that, if this thread previously made a critical "get" call, we
775 // do the corresponding "release" call before we try anything else.
Elliott Hughesa2501992011-08-26 19:39:54 -0700776 switch (flags & kFlag_CritMask) {
777 case kFlag_CritOkay: // okay to call this method
778 break;
779 case kFlag_CritBad: // not okay to call
780 if (threadEnv->critical) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700781 JniAbortF(function_name_, "thread %s using JNI after critical get", ToStr<Thread>(*self).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700782 return;
783 }
784 break;
785 case kFlag_CritGet: // this is a "get" call
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700786 // Don't check here; we allow nested gets.
Elliott Hughesa2501992011-08-26 19:39:54 -0700787 threadEnv->critical++;
788 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700789 case kFlag_CritRelease: // this is a "release" call
Elliott Hughesa2501992011-08-26 19:39:54 -0700790 threadEnv->critical--;
791 if (threadEnv->critical < 0) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700792 JniAbortF(function_name_, "thread %s called too many critical releases", ToStr<Thread>(*self).c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700793 return;
794 }
795 break;
796 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800797 LOG(FATAL) << "Bad flags (internal error): " << flags;
Elliott Hughesa2501992011-08-26 19:39:54 -0700798 }
799
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700800 // Verify that, if an exception has been raised, the native code doesn't
801 // make any JNI calls other than the Exception* methods.
Elliott Hughesa2501992011-08-26 19:39:54 -0700802 if ((flags & kFlag_ExcepOkay) == 0 && self->IsExceptionPending()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800803 ThrowLocation throw_location;
804 mirror::Throwable* exception = self->GetException(&throw_location);
805 std::string type(PrettyTypeOf(exception));
Elliott Hughes8e4d3ed2013-09-03 17:41:50 -0700806 JniAbortF(function_name_, "JNI %s called with pending exception '%s' thrown in %s",
807 function_name_, type.c_str(), throw_location.Dump().c_str());
Elliott Hughesa2501992011-08-26 19:39:54 -0700808 return;
809 }
810 }
811
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700812 // Verifies that "bytes" points to valid Modified UTF-8 data.
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700813 void CheckUtfString(const char* bytes, bool nullable) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800814 if (bytes == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700815 if (!nullable) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700816 JniAbortF(function_name_, "non-nullable const char* was NULL");
Elliott Hughesa2501992011-08-26 19:39:54 -0700817 return;
818 }
819 return;
820 }
821
Ian Rogersef7d42f2014-01-06 12:55:46 -0800822 const char* errorKind = nullptr;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700823 uint8_t utf8 = CheckUtfBytes(bytes, &errorKind);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800824 if (errorKind != nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700825 JniAbortF(function_name_,
826 "input is not valid Modified UTF-8: illegal %s byte %#x\n"
827 " string: '%s'", errorKind, utf8, bytes);
Elliott Hughesa2501992011-08-26 19:39:54 -0700828 return;
829 }
830 }
831
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700832 static uint8_t CheckUtfBytes(const char* bytes, const char** errorKind) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700833 while (*bytes != '\0') {
834 uint8_t utf8 = *(bytes++);
835 // Switch on the high four bits.
836 switch (utf8 >> 4) {
837 case 0x00:
838 case 0x01:
839 case 0x02:
840 case 0x03:
841 case 0x04:
842 case 0x05:
843 case 0x06:
844 case 0x07:
845 // Bit pattern 0xxx. No need for any extra bytes.
846 break;
847 case 0x08:
848 case 0x09:
849 case 0x0a:
850 case 0x0b:
851 case 0x0f:
852 /*
853 * Bit pattern 10xx or 1111, which are illegal start bytes.
854 * Note: 1111 is valid for normal UTF-8, but not the
Elliott Hughes78090d12011-10-07 14:31:47 -0700855 * Modified UTF-8 used here.
Elliott Hughesa2501992011-08-26 19:39:54 -0700856 */
857 *errorKind = "start";
858 return utf8;
859 case 0x0e:
860 // Bit pattern 1110, so there are two additional bytes.
861 utf8 = *(bytes++);
862 if ((utf8 & 0xc0) != 0x80) {
863 *errorKind = "continuation";
864 return utf8;
865 }
866 // Fall through to take care of the final byte.
867 case 0x0c:
868 case 0x0d:
869 // Bit pattern 110x, so there is one additional byte.
870 utf8 = *(bytes++);
871 if ((utf8 & 0xc0) != 0x80) {
872 *errorKind = "continuation";
873 return utf8;
874 }
875 break;
876 }
877 }
878 return 0;
879 }
880
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700881 const ScopedObjectAccess soa_;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700882 const char* function_name_;
883 int flags_;
884 bool has_method_;
Elliott Hughes92cb4982011-12-16 16:57:28 -0800885 int indent_;
Elliott Hughesa2501992011-08-26 19:39:54 -0700886
887 DISALLOW_COPY_AND_ASSIGN(ScopedCheck);
888};
889
890#define CHECK_JNI_ENTRY(flags, types, args...) \
891 ScopedCheck sc(env, flags, __FUNCTION__); \
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700892 sc.Check(true, types, ##args)
Elliott Hughesa2501992011-08-26 19:39:54 -0700893
894#define CHECK_JNI_EXIT(type, exp) ({ \
Mathieu Chartier9b3c3cd2013-08-12 17:41:54 -0700895 auto _rc = (exp); \
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700896 sc.Check(false, type, _rc); \
Elliott Hughesa2501992011-08-26 19:39:54 -0700897 _rc; })
898#define CHECK_JNI_EXIT_VOID() \
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700899 sc.Check(false, "V")
Elliott Hughesa2501992011-08-26 19:39:54 -0700900
901/*
902 * ===========================================================================
903 * Guarded arrays
904 * ===========================================================================
905 */
906
907#define kGuardLen 512 /* must be multiple of 2 */
908#define kGuardPattern 0xd5e3 /* uncommon values; d5e3d5e3 invalid addr */
909#define kGuardMagic 0xffd5aa96
910
911/* this gets tucked in at the start of the buffer; struct size must be even */
912struct GuardedCopy {
913 uint32_t magic;
914 uLong adler;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700915 size_t original_length;
916 const void* original_ptr;
Elliott Hughesa2501992011-08-26 19:39:54 -0700917
918 /* find the GuardedCopy given the pointer into the "live" data */
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700919 static inline const GuardedCopy* FromData(const void* dataBuf) {
920 return reinterpret_cast<const GuardedCopy*>(ActualBuffer(dataBuf));
Elliott Hughesa2501992011-08-26 19:39:54 -0700921 }
922
923 /*
924 * Create an over-sized buffer to hold the contents of "buf". Copy it in,
925 * filling in the area around it with guard data.
926 *
927 * We use a 16-bit pattern to make a rogue memset less likely to elude us.
928 */
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700929 static void* Create(const void* buf, size_t len, bool modOkay) {
930 size_t newLen = ActualLength(len);
931 uint8_t* newBuf = DebugAlloc(newLen);
Elliott Hughesa2501992011-08-26 19:39:54 -0700932
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700933 // Fill it in with a pattern.
Elliott Hughesba8eee12012-01-24 20:25:24 -0800934 uint16_t* pat = reinterpret_cast<uint16_t*>(newBuf);
Elliott Hughesa2501992011-08-26 19:39:54 -0700935 for (size_t i = 0; i < newLen / 2; i++) {
936 *pat++ = kGuardPattern;
937 }
938
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700939 // Copy the data in; note "len" could be zero.
Elliott Hughesa2501992011-08-26 19:39:54 -0700940 memcpy(newBuf + kGuardLen / 2, buf, len);
941
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700942 // If modification is not expected, grab a checksum.
Elliott Hughesa2501992011-08-26 19:39:54 -0700943 uLong adler = 0;
944 if (!modOkay) {
945 adler = adler32(0L, Z_NULL, 0);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800946 adler = adler32(adler, reinterpret_cast<const Bytef*>(buf), len);
947 *reinterpret_cast<uLong*>(newBuf) = adler;
Elliott Hughesa2501992011-08-26 19:39:54 -0700948 }
949
950 GuardedCopy* pExtra = reinterpret_cast<GuardedCopy*>(newBuf);
951 pExtra->magic = kGuardMagic;
952 pExtra->adler = adler;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700953 pExtra->original_ptr = buf;
954 pExtra->original_length = len;
Elliott Hughesa2501992011-08-26 19:39:54 -0700955
956 return newBuf + kGuardLen / 2;
957 }
958
959 /*
960 * Free up the guard buffer, scrub it, and return the original pointer.
961 */
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700962 static void* Destroy(void* dataBuf) {
963 const GuardedCopy* pExtra = GuardedCopy::FromData(dataBuf);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800964 void* original_ptr = const_cast<void*>(pExtra->original_ptr);
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700965 size_t len = pExtra->original_length;
966 DebugFree(dataBuf, len);
967 return original_ptr;
Elliott Hughesa2501992011-08-26 19:39:54 -0700968 }
969
970 /*
971 * Verify the guard area and, if "modOkay" is false, that the data itself
972 * has not been altered.
973 *
974 * The caller has already checked that "dataBuf" is non-NULL.
975 */
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700976 static void Check(const char* functionName, const void* dataBuf, bool modOkay) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700977 static const uint32_t kMagicCmp = kGuardMagic;
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700978 const uint8_t* fullBuf = ActualBuffer(dataBuf);
979 const GuardedCopy* pExtra = GuardedCopy::FromData(dataBuf);
Elliott Hughesa2501992011-08-26 19:39:54 -0700980
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700981 // Before we do anything with "pExtra", check the magic number. We
982 // do the check with memcmp rather than "==" in case the pointer is
983 // unaligned. If it points to completely bogus memory we're going
984 // to crash, but there's no easy way around that.
Elliott Hughesa2501992011-08-26 19:39:54 -0700985 if (memcmp(&pExtra->magic, &kMagicCmp, 4) != 0) {
986 uint8_t buf[4];
987 memcpy(buf, &pExtra->magic, 4);
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700988 JniAbortF(functionName,
989 "guard magic does not match (found 0x%02x%02x%02x%02x) -- incorrect data pointer %p?",
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700990 buf[3], buf[2], buf[1], buf[0], dataBuf); // Assumes little-endian.
Elliott Hughesa2501992011-08-26 19:39:54 -0700991 }
992
Elliott Hughes32ae6e32011-09-27 10:46:50 -0700993 size_t len = pExtra->original_length;
Elliott Hughesa2501992011-08-26 19:39:54 -0700994
Elliott Hughes3f6635a2012-06-19 13:37:49 -0700995 // Check bottom half of guard; skip over optional checksum storage.
Elliott Hughesba8eee12012-01-24 20:25:24 -0800996 const uint16_t* pat = reinterpret_cast<const uint16_t*>(fullBuf);
Elliott Hughesa2501992011-08-26 19:39:54 -0700997 for (size_t i = sizeof(GuardedCopy) / 2; i < (kGuardLen / 2 - sizeof(GuardedCopy)) / 2; i++) {
998 if (pat[i] != kGuardPattern) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800999 JniAbortF(functionName, "guard pattern(1) disturbed at %p +%zd", fullBuf, i*2);
Elliott Hughesa2501992011-08-26 19:39:54 -07001000 }
1001 }
1002
1003 int offset = kGuardLen / 2 + len;
1004 if (offset & 0x01) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001005 // Odd byte; expected value depends on endian.
Elliott Hughesa2501992011-08-26 19:39:54 -07001006 const uint16_t patSample = kGuardPattern;
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001007 uint8_t expected_byte = reinterpret_cast<const uint8_t*>(&patSample)[1];
1008 if (fullBuf[offset] != expected_byte) {
1009 JniAbortF(functionName, "guard pattern disturbed in odd byte after %p +%d 0x%02x 0x%02x",
1010 fullBuf, offset, fullBuf[offset], expected_byte);
Elliott Hughesa2501992011-08-26 19:39:54 -07001011 }
1012 offset++;
1013 }
1014
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001015 // Check top half of guard.
Elliott Hughesba8eee12012-01-24 20:25:24 -08001016 pat = reinterpret_cast<const uint16_t*>(fullBuf + offset);
Elliott Hughesa2501992011-08-26 19:39:54 -07001017 for (size_t i = 0; i < kGuardLen / 4; i++) {
1018 if (pat[i] != kGuardPattern) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001019 JniAbortF(functionName, "guard pattern(2) disturbed at %p +%zd", fullBuf, offset + i*2);
Elliott Hughesa2501992011-08-26 19:39:54 -07001020 }
1021 }
1022
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001023 // If modification is not expected, verify checksum. Strictly speaking
1024 // this is wrong: if we told the client that we made a copy, there's no
1025 // reason they can't alter the buffer.
Elliott Hughesa2501992011-08-26 19:39:54 -07001026 if (!modOkay) {
1027 uLong adler = adler32(0L, Z_NULL, 0);
1028 adler = adler32(adler, (const Bytef*)dataBuf, len);
1029 if (pExtra->adler != adler) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001030 JniAbortF(functionName, "buffer modified (0x%08lx vs 0x%08lx) at address %p",
1031 pExtra->adler, adler, dataBuf);
Elliott Hughesa2501992011-08-26 19:39:54 -07001032 }
1033 }
1034 }
1035
1036 private:
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001037 static uint8_t* DebugAlloc(size_t len) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001038 void* result = mmap(nullptr, len, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
Elliott Hughesa2501992011-08-26 19:39:54 -07001039 if (result == MAP_FAILED) {
1040 PLOG(FATAL) << "GuardedCopy::create mmap(" << len << ") failed";
1041 }
1042 return reinterpret_cast<uint8_t*>(result);
1043 }
1044
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001045 static void DebugFree(void* dataBuf, size_t len) {
1046 uint8_t* fullBuf = ActualBuffer(dataBuf);
1047 size_t totalByteCount = ActualLength(len);
Elliott Hughesa2501992011-08-26 19:39:54 -07001048 // TODO: we could mprotect instead, and keep the allocation around for a while.
1049 // This would be even more expensive, but it might catch more errors.
1050 // if (mprotect(fullBuf, totalByteCount, PROT_NONE) != 0) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001051 // PLOG(WARNING) << "mprotect(PROT_NONE) failed";
Elliott Hughesa2501992011-08-26 19:39:54 -07001052 // }
1053 if (munmap(fullBuf, totalByteCount) != 0) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001054 PLOG(FATAL) << "munmap(" << reinterpret_cast<void*>(fullBuf) << ", " << totalByteCount << ") failed";
Elliott Hughesa2501992011-08-26 19:39:54 -07001055 }
1056 }
1057
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001058 static const uint8_t* ActualBuffer(const void* dataBuf) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001059 return reinterpret_cast<const uint8_t*>(dataBuf) - kGuardLen / 2;
1060 }
1061
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001062 static uint8_t* ActualBuffer(void* dataBuf) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001063 return reinterpret_cast<uint8_t*>(dataBuf) - kGuardLen / 2;
1064 }
1065
1066 // Underlying length of a user allocation of 'length' bytes.
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001067 static size_t ActualLength(size_t length) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001068 return (length + kGuardLen + 1) & ~0x01;
1069 }
1070};
1071
1072/*
1073 * Create a guarded copy of a primitive array. Modifications to the copied
1074 * data are allowed. Returns a pointer to the copied data.
1075 */
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001076static void* CreateGuardedPACopy(JNIEnv* env, const jarray java_array, jboolean* isCopy) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001077 ScopedObjectAccess soa(env);
Elliott Hughesa2501992011-08-26 19:39:54 -07001078
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001079 mirror::Array* a = soa.Decode<mirror::Array*>(java_array);
Ian Rogersa15e67d2012-02-28 13:51:55 -08001080 size_t component_size = a->GetClass()->GetComponentSize();
1081 size_t byte_count = a->GetLength() * component_size;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001082 void* result = GuardedCopy::Create(a->GetRawData(component_size, 0), byte_count, true);
1083 if (isCopy != nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001084 *isCopy = JNI_TRUE;
1085 }
1086 return result;
1087}
1088
1089/*
1090 * Perform the array "release" operation, which may or may not copy data
Elliott Hughes81ff3182012-03-23 20:35:56 -07001091 * back into the managed heap, and may or may not release the underlying storage.
Elliott Hughesa2501992011-08-26 19:39:54 -07001092 */
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001093static void ReleaseGuardedPACopy(JNIEnv* env, jarray java_array, void* dataBuf, int mode) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001094 ScopedObjectAccess soa(env);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001095 mirror::Array* a = soa.Decode<mirror::Array*>(java_array);
Elliott Hughesa2501992011-08-26 19:39:54 -07001096
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001097 GuardedCopy::Check(__FUNCTION__, dataBuf, true);
Elliott Hughesa2501992011-08-26 19:39:54 -07001098
1099 if (mode != JNI_ABORT) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001100 size_t len = GuardedCopy::FromData(dataBuf)->original_length;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001101 memcpy(a->GetRawData(a->GetClass()->GetComponentSize(), 0), dataBuf, len);
Elliott Hughesa2501992011-08-26 19:39:54 -07001102 }
1103 if (mode != JNI_COMMIT) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001104 GuardedCopy::Destroy(dataBuf);
Elliott Hughesa2501992011-08-26 19:39:54 -07001105 }
1106}
1107
1108/*
1109 * ===========================================================================
1110 * JNI functions
1111 * ===========================================================================
1112 */
1113
1114class CheckJNI {
1115 public:
1116 static jint GetVersion(JNIEnv* env) {
1117 CHECK_JNI_ENTRY(kFlag_Default, "E", env);
1118 return CHECK_JNI_EXIT("I", baseEnv(env)->GetVersion(env));
1119 }
1120
1121 static jclass DefineClass(JNIEnv* env, const char* name, jobject loader, const jbyte* buf, jsize bufLen) {
1122 CHECK_JNI_ENTRY(kFlag_Default, "EuLpz", env, name, loader, buf, bufLen);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001123 sc.CheckClassName(name);
Elliott Hughesa2501992011-08-26 19:39:54 -07001124 return CHECK_JNI_EXIT("c", baseEnv(env)->DefineClass(env, name, loader, buf, bufLen));
1125 }
1126
1127 static jclass FindClass(JNIEnv* env, const char* name) {
1128 CHECK_JNI_ENTRY(kFlag_Default, "Eu", env, name);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001129 sc.CheckClassName(name);
Elliott Hughesa2501992011-08-26 19:39:54 -07001130 return CHECK_JNI_EXIT("c", baseEnv(env)->FindClass(env, name));
1131 }
1132
Elliott Hughese84278b2012-03-22 10:06:53 -07001133 static jclass GetSuperclass(JNIEnv* env, jclass c) {
1134 CHECK_JNI_ENTRY(kFlag_Default, "Ec", env, c);
1135 return CHECK_JNI_EXIT("c", baseEnv(env)->GetSuperclass(env, c));
Elliott Hughesa2501992011-08-26 19:39:54 -07001136 }
1137
Elliott Hughese84278b2012-03-22 10:06:53 -07001138 static jboolean IsAssignableFrom(JNIEnv* env, jclass c1, jclass c2) {
1139 CHECK_JNI_ENTRY(kFlag_Default, "Ecc", env, c1, c2);
1140 return CHECK_JNI_EXIT("b", baseEnv(env)->IsAssignableFrom(env, c1, c2));
Elliott Hughesa2501992011-08-26 19:39:54 -07001141 }
1142
1143 static jmethodID FromReflectedMethod(JNIEnv* env, jobject method) {
1144 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, method);
1145 // TODO: check that 'field' is a java.lang.reflect.Method.
1146 return CHECK_JNI_EXIT("m", baseEnv(env)->FromReflectedMethod(env, method));
1147 }
1148
1149 static jfieldID FromReflectedField(JNIEnv* env, jobject field) {
1150 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, field);
1151 // TODO: check that 'field' is a java.lang.reflect.Field.
1152 return CHECK_JNI_EXIT("f", baseEnv(env)->FromReflectedField(env, field));
1153 }
1154
1155 static jobject ToReflectedMethod(JNIEnv* env, jclass cls, jmethodID mid, jboolean isStatic) {
1156 CHECK_JNI_ENTRY(kFlag_Default, "Ecmb", env, cls, mid, isStatic);
1157 return CHECK_JNI_EXIT("L", baseEnv(env)->ToReflectedMethod(env, cls, mid, isStatic));
1158 }
1159
1160 static jobject ToReflectedField(JNIEnv* env, jclass cls, jfieldID fid, jboolean isStatic) {
1161 CHECK_JNI_ENTRY(kFlag_Default, "Ecfb", env, cls, fid, isStatic);
1162 return CHECK_JNI_EXIT("L", baseEnv(env)->ToReflectedField(env, cls, fid, isStatic));
1163 }
1164
1165 static jint Throw(JNIEnv* env, jthrowable obj) {
1166 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, obj);
1167 // TODO: check that 'obj' is a java.lang.Throwable.
1168 return CHECK_JNI_EXIT("I", baseEnv(env)->Throw(env, obj));
1169 }
1170
Elliott Hughese84278b2012-03-22 10:06:53 -07001171 static jint ThrowNew(JNIEnv* env, jclass c, const char* message) {
1172 CHECK_JNI_ENTRY(kFlag_NullableUtf, "Ecu", env, c, message);
1173 return CHECK_JNI_EXIT("I", baseEnv(env)->ThrowNew(env, c, message));
Elliott Hughesa2501992011-08-26 19:39:54 -07001174 }
1175
1176 static jthrowable ExceptionOccurred(JNIEnv* env) {
1177 CHECK_JNI_ENTRY(kFlag_ExcepOkay, "E", env);
1178 return CHECK_JNI_EXIT("L", baseEnv(env)->ExceptionOccurred(env));
1179 }
1180
1181 static void ExceptionDescribe(JNIEnv* env) {
1182 CHECK_JNI_ENTRY(kFlag_ExcepOkay, "E", env);
1183 baseEnv(env)->ExceptionDescribe(env);
1184 CHECK_JNI_EXIT_VOID();
1185 }
1186
1187 static void ExceptionClear(JNIEnv* env) {
1188 CHECK_JNI_ENTRY(kFlag_ExcepOkay, "E", env);
1189 baseEnv(env)->ExceptionClear(env);
1190 CHECK_JNI_EXIT_VOID();
1191 }
1192
1193 static void FatalError(JNIEnv* env, const char* msg) {
Elliott Hughesc4378df2013-06-14 17:05:13 -07001194 // The JNI specification doesn't say it's okay to call FatalError with a pending exception,
1195 // but you're about to abort anyway, and it's quite likely that you have a pending exception,
1196 // and it's not unimaginable that you don't know that you do. So we allow it.
1197 CHECK_JNI_ENTRY(kFlag_ExcepOkay | kFlag_NullableUtf, "Eu", env, msg);
Elliott Hughesa2501992011-08-26 19:39:54 -07001198 baseEnv(env)->FatalError(env, msg);
1199 CHECK_JNI_EXIT_VOID();
1200 }
1201
1202 static jint PushLocalFrame(JNIEnv* env, jint capacity) {
1203 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "EI", env, capacity);
1204 return CHECK_JNI_EXIT("I", baseEnv(env)->PushLocalFrame(env, capacity));
1205 }
1206
1207 static jobject PopLocalFrame(JNIEnv* env, jobject res) {
1208 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "EL", env, res);
1209 return CHECK_JNI_EXIT("L", baseEnv(env)->PopLocalFrame(env, res));
1210 }
1211
1212 static jobject NewGlobalRef(JNIEnv* env, jobject obj) {
1213 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, obj);
1214 return CHECK_JNI_EXIT("L", baseEnv(env)->NewGlobalRef(env, obj));
1215 }
1216
1217 static jobject NewLocalRef(JNIEnv* env, jobject ref) {
1218 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, ref);
1219 return CHECK_JNI_EXIT("L", baseEnv(env)->NewLocalRef(env, ref));
1220 }
1221
1222 static void DeleteGlobalRef(JNIEnv* env, jobject globalRef) {
1223 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "EL", env, globalRef);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001224 if (globalRef != nullptr && GetIndirectRefKind(globalRef) != kGlobal) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001225 JniAbortF(__FUNCTION__, "DeleteGlobalRef on %s: %p",
1226 ToStr<IndirectRefKind>(GetIndirectRefKind(globalRef)).c_str(), globalRef);
Elliott Hughesa2501992011-08-26 19:39:54 -07001227 } else {
1228 baseEnv(env)->DeleteGlobalRef(env, globalRef);
1229 CHECK_JNI_EXIT_VOID();
1230 }
1231 }
1232
1233 static void DeleteWeakGlobalRef(JNIEnv* env, jweak weakGlobalRef) {
1234 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "EL", env, weakGlobalRef);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001235 if (weakGlobalRef != nullptr && GetIndirectRefKind(weakGlobalRef) != kWeakGlobal) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001236 JniAbortF(__FUNCTION__, "DeleteWeakGlobalRef on %s: %p",
1237 ToStr<IndirectRefKind>(GetIndirectRefKind(weakGlobalRef)).c_str(), weakGlobalRef);
Elliott Hughesa2501992011-08-26 19:39:54 -07001238 } else {
1239 baseEnv(env)->DeleteWeakGlobalRef(env, weakGlobalRef);
1240 CHECK_JNI_EXIT_VOID();
1241 }
1242 }
1243
1244 static void DeleteLocalRef(JNIEnv* env, jobject localRef) {
1245 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "EL", env, localRef);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001246 if (localRef != nullptr && GetIndirectRefKind(localRef) != kLocal && !IsSirtLocalRef(env, localRef)) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001247 JniAbortF(__FUNCTION__, "DeleteLocalRef on %s: %p",
1248 ToStr<IndirectRefKind>(GetIndirectRefKind(localRef)).c_str(), localRef);
Elliott Hughesa2501992011-08-26 19:39:54 -07001249 } else {
1250 baseEnv(env)->DeleteLocalRef(env, localRef);
1251 CHECK_JNI_EXIT_VOID();
1252 }
1253 }
1254
1255 static jint EnsureLocalCapacity(JNIEnv *env, jint capacity) {
1256 CHECK_JNI_ENTRY(kFlag_Default, "EI", env, capacity);
1257 return CHECK_JNI_EXIT("I", baseEnv(env)->EnsureLocalCapacity(env, capacity));
1258 }
1259
1260 static jboolean IsSameObject(JNIEnv* env, jobject ref1, jobject ref2) {
1261 CHECK_JNI_ENTRY(kFlag_Default, "ELL", env, ref1, ref2);
1262 return CHECK_JNI_EXIT("b", baseEnv(env)->IsSameObject(env, ref1, ref2));
1263 }
1264
Elliott Hughese84278b2012-03-22 10:06:53 -07001265 static jobject AllocObject(JNIEnv* env, jclass c) {
1266 CHECK_JNI_ENTRY(kFlag_Default, "Ec", env, c);
1267 return CHECK_JNI_EXIT("L", baseEnv(env)->AllocObject(env, c));
Elliott Hughesa2501992011-08-26 19:39:54 -07001268 }
1269
Elliott Hughese84278b2012-03-22 10:06:53 -07001270 static jobject NewObject(JNIEnv* env, jclass c, jmethodID mid, ...) {
1271 CHECK_JNI_ENTRY(kFlag_Default, "Ecm.", env, c, mid);
Elliott Hughesa2501992011-08-26 19:39:54 -07001272 va_list args;
1273 va_start(args, mid);
Elliott Hughese84278b2012-03-22 10:06:53 -07001274 jobject result = baseEnv(env)->NewObjectV(env, c, mid, args);
Elliott Hughesa2501992011-08-26 19:39:54 -07001275 va_end(args);
1276 return CHECK_JNI_EXIT("L", result);
1277 }
1278
Elliott Hughese84278b2012-03-22 10:06:53 -07001279 static jobject NewObjectV(JNIEnv* env, jclass c, jmethodID mid, va_list args) {
1280 CHECK_JNI_ENTRY(kFlag_Default, "Ecm.", env, c, mid);
1281 return CHECK_JNI_EXIT("L", baseEnv(env)->NewObjectV(env, c, mid, args));
Elliott Hughesa2501992011-08-26 19:39:54 -07001282 }
1283
Elliott Hughese84278b2012-03-22 10:06:53 -07001284 static jobject NewObjectA(JNIEnv* env, jclass c, jmethodID mid, jvalue* args) {
1285 CHECK_JNI_ENTRY(kFlag_Default, "Ecm.", env, c, mid);
1286 return CHECK_JNI_EXIT("L", baseEnv(env)->NewObjectA(env, c, mid, args));
Elliott Hughesa2501992011-08-26 19:39:54 -07001287 }
1288
1289 static jclass GetObjectClass(JNIEnv* env, jobject obj) {
1290 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, obj);
1291 return CHECK_JNI_EXIT("c", baseEnv(env)->GetObjectClass(env, obj));
1292 }
1293
Elliott Hughese84278b2012-03-22 10:06:53 -07001294 static jboolean IsInstanceOf(JNIEnv* env, jobject obj, jclass c) {
1295 CHECK_JNI_ENTRY(kFlag_Default, "ELc", env, obj, c);
1296 return CHECK_JNI_EXIT("b", baseEnv(env)->IsInstanceOf(env, obj, c));
Elliott Hughesa2501992011-08-26 19:39:54 -07001297 }
1298
Elliott Hughese84278b2012-03-22 10:06:53 -07001299 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
1300 CHECK_JNI_ENTRY(kFlag_Default, "Ecuu", env, c, name, sig);
1301 return CHECK_JNI_EXIT("m", baseEnv(env)->GetMethodID(env, c, name, sig));
Elliott Hughesa2501992011-08-26 19:39:54 -07001302 }
1303
Elliott Hughese84278b2012-03-22 10:06:53 -07001304 static jfieldID GetFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
1305 CHECK_JNI_ENTRY(kFlag_Default, "Ecuu", env, c, name, sig);
1306 return CHECK_JNI_EXIT("f", baseEnv(env)->GetFieldID(env, c, name, sig));
Elliott Hughesa2501992011-08-26 19:39:54 -07001307 }
1308
Elliott Hughese84278b2012-03-22 10:06:53 -07001309 static jmethodID GetStaticMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) {
1310 CHECK_JNI_ENTRY(kFlag_Default, "Ecuu", env, c, name, sig);
1311 return CHECK_JNI_EXIT("m", baseEnv(env)->GetStaticMethodID(env, c, name, sig));
Elliott Hughesa2501992011-08-26 19:39:54 -07001312 }
1313
Elliott Hughese84278b2012-03-22 10:06:53 -07001314 static jfieldID GetStaticFieldID(JNIEnv* env, jclass c, const char* name, const char* sig) {
1315 CHECK_JNI_ENTRY(kFlag_Default, "Ecuu", env, c, name, sig);
1316 return CHECK_JNI_EXIT("f", baseEnv(env)->GetStaticFieldID(env, c, name, sig));
Elliott Hughesa2501992011-08-26 19:39:54 -07001317 }
1318
Ian Rogersef7d42f2014-01-06 12:55:46 -08001319#define FIELD_ACCESSORS(_ctype, _jname, _jvalue_type, _type) \
Elliott Hughese84278b2012-03-22 10:06:53 -07001320 static _ctype GetStatic##_jname##Field(JNIEnv* env, jclass c, jfieldID fid) { \
1321 CHECK_JNI_ENTRY(kFlag_Default, "Ecf", env, c, fid); \
1322 sc.CheckStaticFieldID(c, fid); \
1323 return CHECK_JNI_EXIT(_type, baseEnv(env)->GetStatic##_jname##Field(env, c, fid)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001324 } \
1325 static _ctype Get##_jname##Field(JNIEnv* env, jobject obj, jfieldID fid) { \
1326 CHECK_JNI_ENTRY(kFlag_Default, "ELf", env, obj, fid); \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001327 sc.CheckInstanceFieldID(obj, fid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001328 return CHECK_JNI_EXIT(_type, baseEnv(env)->Get##_jname##Field(env, obj, fid)); \
1329 } \
Elliott Hughese84278b2012-03-22 10:06:53 -07001330 static void SetStatic##_jname##Field(JNIEnv* env, jclass c, jfieldID fid, _ctype value) { \
1331 CHECK_JNI_ENTRY(kFlag_Default, "Ecf" _type, env, c, fid, value); \
1332 sc.CheckStaticFieldID(c, fid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001333 /* "value" arg only used when type == ref */ \
Ian Rogersef7d42f2014-01-06 12:55:46 -08001334 jvalue java_type_value; \
1335 java_type_value._jvalue_type = value; \
1336 sc.CheckFieldType(java_type_value, fid, _type[0], true); \
Elliott Hughese84278b2012-03-22 10:06:53 -07001337 baseEnv(env)->SetStatic##_jname##Field(env, c, fid, value); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001338 CHECK_JNI_EXIT_VOID(); \
1339 } \
1340 static void Set##_jname##Field(JNIEnv* env, jobject obj, jfieldID fid, _ctype value) { \
1341 CHECK_JNI_ENTRY(kFlag_Default, "ELf" _type, env, obj, fid, value); \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001342 sc.CheckInstanceFieldID(obj, fid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001343 /* "value" arg only used when type == ref */ \
Ian Rogersef7d42f2014-01-06 12:55:46 -08001344 jvalue java_type_value; \
1345 java_type_value._jvalue_type = value; \
1346 sc.CheckFieldType(java_type_value, fid, _type[0], false); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001347 baseEnv(env)->Set##_jname##Field(env, obj, fid, value); \
1348 CHECK_JNI_EXIT_VOID(); \
1349 }
1350
Ian Rogersef7d42f2014-01-06 12:55:46 -08001351FIELD_ACCESSORS(jobject, Object, l, "L");
1352FIELD_ACCESSORS(jboolean, Boolean, z, "Z");
1353FIELD_ACCESSORS(jbyte, Byte, b, "B");
1354FIELD_ACCESSORS(jchar, Char, c, "C");
1355FIELD_ACCESSORS(jshort, Short, s, "S");
1356FIELD_ACCESSORS(jint, Int, i, "I");
1357FIELD_ACCESSORS(jlong, Long, j, "J");
1358FIELD_ACCESSORS(jfloat, Float, f, "F");
1359FIELD_ACCESSORS(jdouble, Double, d, "D");
Elliott Hughesa2501992011-08-26 19:39:54 -07001360
1361#define CALL(_ctype, _jname, _retdecl, _retasgn, _retok, _retsig) \
1362 /* Virtual... */ \
1363 static _ctype Call##_jname##Method(JNIEnv* env, jobject obj, \
1364 jmethodID mid, ...) \
1365 { \
1366 CHECK_JNI_ENTRY(kFlag_Default, "ELm.", env, obj, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001367 sc.CheckSig(mid, _retsig, false); \
1368 sc.CheckVirtualMethod(obj, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001369 _retdecl; \
1370 va_list args; \
1371 va_start(args, mid); \
Elliott Hughesba8eee12012-01-24 20:25:24 -08001372 _retasgn(baseEnv(env)->Call##_jname##MethodV(env, obj, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001373 va_end(args); \
1374 _retok; \
1375 } \
1376 static _ctype Call##_jname##MethodV(JNIEnv* env, jobject obj, \
1377 jmethodID mid, va_list args) \
1378 { \
1379 CHECK_JNI_ENTRY(kFlag_Default, "ELm.", env, obj, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001380 sc.CheckSig(mid, _retsig, false); \
1381 sc.CheckVirtualMethod(obj, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001382 _retdecl; \
Elliott Hughesba8eee12012-01-24 20:25:24 -08001383 _retasgn(baseEnv(env)->Call##_jname##MethodV(env, obj, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001384 _retok; \
1385 } \
1386 static _ctype Call##_jname##MethodA(JNIEnv* env, jobject obj, \
1387 jmethodID mid, jvalue* args) \
1388 { \
1389 CHECK_JNI_ENTRY(kFlag_Default, "ELm.", env, obj, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001390 sc.CheckSig(mid, _retsig, false); \
1391 sc.CheckVirtualMethod(obj, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001392 _retdecl; \
Elliott Hughesba8eee12012-01-24 20:25:24 -08001393 _retasgn(baseEnv(env)->Call##_jname##MethodA(env, obj, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001394 _retok; \
1395 } \
1396 /* Non-virtual... */ \
1397 static _ctype CallNonvirtual##_jname##Method(JNIEnv* env, \
Elliott Hughese84278b2012-03-22 10:06:53 -07001398 jobject obj, jclass c, jmethodID mid, ...) \
Elliott Hughesa2501992011-08-26 19:39:54 -07001399 { \
Elliott Hughese84278b2012-03-22 10:06:53 -07001400 CHECK_JNI_ENTRY(kFlag_Default, "ELcm.", env, obj, c, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001401 sc.CheckSig(mid, _retsig, false); \
1402 sc.CheckVirtualMethod(obj, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001403 _retdecl; \
1404 va_list args; \
1405 va_start(args, mid); \
Elliott Hughese84278b2012-03-22 10:06:53 -07001406 _retasgn(baseEnv(env)->CallNonvirtual##_jname##MethodV(env, obj, c, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001407 va_end(args); \
1408 _retok; \
1409 } \
1410 static _ctype CallNonvirtual##_jname##MethodV(JNIEnv* env, \
Elliott Hughese84278b2012-03-22 10:06:53 -07001411 jobject obj, jclass c, jmethodID mid, va_list args) \
Elliott Hughesa2501992011-08-26 19:39:54 -07001412 { \
Elliott Hughese84278b2012-03-22 10:06:53 -07001413 CHECK_JNI_ENTRY(kFlag_Default, "ELcm.", env, obj, c, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001414 sc.CheckSig(mid, _retsig, false); \
1415 sc.CheckVirtualMethod(obj, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001416 _retdecl; \
Elliott Hughese84278b2012-03-22 10:06:53 -07001417 _retasgn(baseEnv(env)->CallNonvirtual##_jname##MethodV(env, obj, c, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001418 _retok; \
1419 } \
1420 static _ctype CallNonvirtual##_jname##MethodA(JNIEnv* env, \
Elliott Hughese84278b2012-03-22 10:06:53 -07001421 jobject obj, jclass c, jmethodID mid, jvalue* args) \
Elliott Hughesa2501992011-08-26 19:39:54 -07001422 { \
Elliott Hughese84278b2012-03-22 10:06:53 -07001423 CHECK_JNI_ENTRY(kFlag_Default, "ELcm.", env, obj, c, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001424 sc.CheckSig(mid, _retsig, false); \
1425 sc.CheckVirtualMethod(obj, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001426 _retdecl; \
Elliott Hughese84278b2012-03-22 10:06:53 -07001427 _retasgn(baseEnv(env)->CallNonvirtual##_jname##MethodA(env, obj, c, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001428 _retok; \
1429 } \
1430 /* Static... */ \
Elliott Hughese84278b2012-03-22 10:06:53 -07001431 static _ctype CallStatic##_jname##Method(JNIEnv* env, jclass c, jmethodID mid, ...) \
Elliott Hughesa2501992011-08-26 19:39:54 -07001432 { \
Elliott Hughese84278b2012-03-22 10:06:53 -07001433 CHECK_JNI_ENTRY(kFlag_Default, "Ecm.", env, c, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001434 sc.CheckSig(mid, _retsig, true); \
Elliott Hughese84278b2012-03-22 10:06:53 -07001435 sc.CheckStaticMethod(c, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001436 _retdecl; \
1437 va_list args; \
1438 va_start(args, mid); \
Elliott Hughese84278b2012-03-22 10:06:53 -07001439 _retasgn(baseEnv(env)->CallStatic##_jname##MethodV(env, c, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001440 va_end(args); \
1441 _retok; \
1442 } \
Elliott Hughese84278b2012-03-22 10:06:53 -07001443 static _ctype CallStatic##_jname##MethodV(JNIEnv* env, jclass c, jmethodID mid, va_list args) \
Elliott Hughesa2501992011-08-26 19:39:54 -07001444 { \
Elliott Hughese84278b2012-03-22 10:06:53 -07001445 CHECK_JNI_ENTRY(kFlag_Default, "Ecm.", env, c, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001446 sc.CheckSig(mid, _retsig, true); \
Elliott Hughese84278b2012-03-22 10:06:53 -07001447 sc.CheckStaticMethod(c, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001448 _retdecl; \
Elliott Hughese84278b2012-03-22 10:06:53 -07001449 _retasgn(baseEnv(env)->CallStatic##_jname##MethodV(env, c, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001450 _retok; \
1451 } \
Elliott Hughese84278b2012-03-22 10:06:53 -07001452 static _ctype CallStatic##_jname##MethodA(JNIEnv* env, jclass c, jmethodID mid, jvalue* args) \
Elliott Hughesa2501992011-08-26 19:39:54 -07001453 { \
Elliott Hughese84278b2012-03-22 10:06:53 -07001454 CHECK_JNI_ENTRY(kFlag_Default, "Ecm.", env, c, mid); /* TODO: args! */ \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001455 sc.CheckSig(mid, _retsig, true); \
Elliott Hughese84278b2012-03-22 10:06:53 -07001456 sc.CheckStaticMethod(c, mid); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001457 _retdecl; \
Elliott Hughese84278b2012-03-22 10:06:53 -07001458 _retasgn(baseEnv(env)->CallStatic##_jname##MethodA(env, c, mid, args)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001459 _retok; \
1460 }
1461
1462#define NON_VOID_RETURN(_retsig, _ctype) return CHECK_JNI_EXIT(_retsig, (_ctype) result)
1463#define VOID_RETURN CHECK_JNI_EXIT_VOID()
1464
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001465CALL(jobject, Object, mirror::Object* result, result = reinterpret_cast<mirror::Object*>, NON_VOID_RETURN("L", jobject), "L");
Elliott Hughesba8eee12012-01-24 20:25:24 -08001466CALL(jboolean, Boolean, jboolean result, result =, NON_VOID_RETURN("Z", jboolean), "Z");
1467CALL(jbyte, Byte, jbyte result, result =, NON_VOID_RETURN("B", jbyte), "B");
1468CALL(jchar, Char, jchar result, result =, NON_VOID_RETURN("C", jchar), "C");
1469CALL(jshort, Short, jshort result, result =, NON_VOID_RETURN("S", jshort), "S");
1470CALL(jint, Int, jint result, result =, NON_VOID_RETURN("I", jint), "I");
1471CALL(jlong, Long, jlong result, result =, NON_VOID_RETURN("J", jlong), "J");
1472CALL(jfloat, Float, jfloat result, result =, NON_VOID_RETURN("F", jfloat), "F");
1473CALL(jdouble, Double, jdouble result, result =, NON_VOID_RETURN("D", jdouble), "D");
Elliott Hughesa2501992011-08-26 19:39:54 -07001474CALL(void, Void, , , VOID_RETURN, "V");
1475
1476 static jstring NewString(JNIEnv* env, const jchar* unicodeChars, jsize len) {
1477 CHECK_JNI_ENTRY(kFlag_Default, "Epz", env, unicodeChars, len);
1478 return CHECK_JNI_EXIT("s", baseEnv(env)->NewString(env, unicodeChars, len));
1479 }
1480
1481 static jsize GetStringLength(JNIEnv* env, jstring string) {
1482 CHECK_JNI_ENTRY(kFlag_CritOkay, "Es", env, string);
1483 return CHECK_JNI_EXIT("I", baseEnv(env)->GetStringLength(env, string));
1484 }
1485
1486 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* isCopy) {
1487 CHECK_JNI_ENTRY(kFlag_CritOkay, "Esp", env, java_string, isCopy);
1488 const jchar* result = baseEnv(env)->GetStringChars(env, java_string, isCopy);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001489 if (sc.ForceCopy() && result != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001490 mirror::String* s = sc.soa().Decode<mirror::String*>(java_string);
Elliott Hughesa2501992011-08-26 19:39:54 -07001491 int byteCount = s->GetLength() * 2;
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001492 result = (const jchar*) GuardedCopy::Create(result, byteCount, false);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001493 if (isCopy != nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001494 *isCopy = JNI_TRUE;
1495 }
1496 }
1497 return CHECK_JNI_EXIT("p", result);
1498 }
1499
1500 static void ReleaseStringChars(JNIEnv* env, jstring string, const jchar* chars) {
1501 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "Esp", env, string, chars);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001502 sc.CheckNonNull(chars);
1503 if (sc.ForceCopy()) {
1504 GuardedCopy::Check(__FUNCTION__, chars, false);
Elliott Hughesba8eee12012-01-24 20:25:24 -08001505 chars = reinterpret_cast<const jchar*>(GuardedCopy::Destroy(const_cast<jchar*>(chars)));
Elliott Hughesa2501992011-08-26 19:39:54 -07001506 }
1507 baseEnv(env)->ReleaseStringChars(env, string, chars);
1508 CHECK_JNI_EXIT_VOID();
1509 }
1510
1511 static jstring NewStringUTF(JNIEnv* env, const char* bytes) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001512 CHECK_JNI_ENTRY(kFlag_NullableUtf, "Eu", env, bytes); // TODO: show pointer and truncate string.
Elliott Hughesa2501992011-08-26 19:39:54 -07001513 return CHECK_JNI_EXIT("s", baseEnv(env)->NewStringUTF(env, bytes));
1514 }
1515
1516 static jsize GetStringUTFLength(JNIEnv* env, jstring string) {
1517 CHECK_JNI_ENTRY(kFlag_CritOkay, "Es", env, string);
1518 return CHECK_JNI_EXIT("I", baseEnv(env)->GetStringUTFLength(env, string));
1519 }
1520
1521 static const char* GetStringUTFChars(JNIEnv* env, jstring string, jboolean* isCopy) {
1522 CHECK_JNI_ENTRY(kFlag_CritOkay, "Esp", env, string, isCopy);
1523 const char* result = baseEnv(env)->GetStringUTFChars(env, string, isCopy);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001524 if (sc.ForceCopy() && result != nullptr) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001525 result = (const char*) GuardedCopy::Create(result, strlen(result) + 1, false);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001526 if (isCopy != nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001527 *isCopy = JNI_TRUE;
1528 }
1529 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001530 return CHECK_JNI_EXIT("u", result); // TODO: show pointer and truncate string.
Elliott Hughesa2501992011-08-26 19:39:54 -07001531 }
1532
1533 static void ReleaseStringUTFChars(JNIEnv* env, jstring string, const char* utf) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001534 CHECK_JNI_ENTRY(kFlag_ExcepOkay | kFlag_Release, "Esu", env, string, utf); // TODO: show pointer and truncate string.
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001535 if (sc.ForceCopy()) {
1536 GuardedCopy::Check(__FUNCTION__, utf, false);
Elliott Hughesba8eee12012-01-24 20:25:24 -08001537 utf = reinterpret_cast<const char*>(GuardedCopy::Destroy(const_cast<char*>(utf)));
Elliott Hughesa2501992011-08-26 19:39:54 -07001538 }
1539 baseEnv(env)->ReleaseStringUTFChars(env, string, utf);
1540 CHECK_JNI_EXIT_VOID();
1541 }
1542
1543 static jsize GetArrayLength(JNIEnv* env, jarray array) {
1544 CHECK_JNI_ENTRY(kFlag_CritOkay, "Ea", env, array);
1545 return CHECK_JNI_EXIT("I", baseEnv(env)->GetArrayLength(env, array));
1546 }
1547
1548 static jobjectArray NewObjectArray(JNIEnv* env, jsize length, jclass elementClass, jobject initialElement) {
1549 CHECK_JNI_ENTRY(kFlag_Default, "EzcL", env, length, elementClass, initialElement);
1550 return CHECK_JNI_EXIT("a", baseEnv(env)->NewObjectArray(env, length, elementClass, initialElement));
1551 }
1552
1553 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray array, jsize index) {
1554 CHECK_JNI_ENTRY(kFlag_Default, "EaI", env, array, index);
1555 return CHECK_JNI_EXIT("L", baseEnv(env)->GetObjectArrayElement(env, array, index));
1556 }
1557
1558 static void SetObjectArrayElement(JNIEnv* env, jobjectArray array, jsize index, jobject value) {
1559 CHECK_JNI_ENTRY(kFlag_Default, "EaIL", env, array, index, value);
1560 baseEnv(env)->SetObjectArrayElement(env, array, index, value);
1561 CHECK_JNI_EXIT_VOID();
1562 }
1563
1564#define NEW_PRIMITIVE_ARRAY(_artype, _jname) \
1565 static _artype New##_jname##Array(JNIEnv* env, jsize length) { \
1566 CHECK_JNI_ENTRY(kFlag_Default, "Ez", env, length); \
1567 return CHECK_JNI_EXIT("a", baseEnv(env)->New##_jname##Array(env, length)); \
1568 }
1569NEW_PRIMITIVE_ARRAY(jbooleanArray, Boolean);
1570NEW_PRIMITIVE_ARRAY(jbyteArray, Byte);
1571NEW_PRIMITIVE_ARRAY(jcharArray, Char);
1572NEW_PRIMITIVE_ARRAY(jshortArray, Short);
1573NEW_PRIMITIVE_ARRAY(jintArray, Int);
1574NEW_PRIMITIVE_ARRAY(jlongArray, Long);
1575NEW_PRIMITIVE_ARRAY(jfloatArray, Float);
1576NEW_PRIMITIVE_ARRAY(jdoubleArray, Double);
1577
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001578struct ForceCopyGetChecker {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001579 public:
Elliott Hughesa2501992011-08-26 19:39:54 -07001580 ForceCopyGetChecker(ScopedCheck& sc, jboolean* isCopy) {
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001581 force_copy = sc.ForceCopy();
1582 no_copy = 0;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001583 if (force_copy && isCopy != nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001584 // Capture this before the base call tramples on it.
Elliott Hughesba8eee12012-01-24 20:25:24 -08001585 no_copy = *reinterpret_cast<uint32_t*>(isCopy);
Elliott Hughesa2501992011-08-26 19:39:54 -07001586 }
1587 }
1588
1589 template<typename ResultT>
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001590 ResultT Check(JNIEnv* env, jarray array, jboolean* isCopy, ResultT result) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001591 if (force_copy && result != nullptr) {
Mathieu Chartier77129ff2013-10-18 11:36:46 -07001592 result = reinterpret_cast<ResultT>(CreateGuardedPACopy(env, array, isCopy));
Elliott Hughesa2501992011-08-26 19:39:54 -07001593 }
1594 return result;
1595 }
1596
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001597 uint32_t no_copy;
1598 bool force_copy;
Elliott Hughesa2501992011-08-26 19:39:54 -07001599};
1600
1601#define GET_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname) \
1602 static _ctype* Get##_jname##ArrayElements(JNIEnv* env, _ctype##Array array, jboolean* isCopy) { \
1603 CHECK_JNI_ENTRY(kFlag_Default, "Eap", env, array, isCopy); \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001604 _ctype* result = ForceCopyGetChecker(sc, isCopy).Check(env, array, isCopy, baseEnv(env)->Get##_jname##ArrayElements(env, array, isCopy)); \
Elliott Hughesa2501992011-08-26 19:39:54 -07001605 return CHECK_JNI_EXIT("p", result); \
1606 }
1607
1608#define RELEASE_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname) \
1609 static void Release##_jname##ArrayElements(JNIEnv* env, _ctype##Array array, _ctype* elems, jint mode) { \
1610 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "Eapr", env, array, elems, mode); \
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001611 sc.CheckNonNull(elems); \
1612 if (sc.ForceCopy()) { \
Elliott Hughesa2501992011-08-26 19:39:54 -07001613 ReleaseGuardedPACopy(env, array, elems, mode); \
1614 } \
1615 baseEnv(env)->Release##_jname##ArrayElements(env, array, elems, mode); \
1616 CHECK_JNI_EXIT_VOID(); \
1617 }
1618
1619#define GET_PRIMITIVE_ARRAY_REGION(_ctype, _jname) \
1620 static void Get##_jname##ArrayRegion(JNIEnv* env, _ctype##Array array, jsize start, jsize len, _ctype* buf) { \
1621 CHECK_JNI_ENTRY(kFlag_Default, "EaIIp", env, array, start, len, buf); \
1622 baseEnv(env)->Get##_jname##ArrayRegion(env, array, start, len, buf); \
1623 CHECK_JNI_EXIT_VOID(); \
1624 }
1625
1626#define SET_PRIMITIVE_ARRAY_REGION(_ctype, _jname) \
1627 static void Set##_jname##ArrayRegion(JNIEnv* env, _ctype##Array array, jsize start, jsize len, const _ctype* buf) { \
1628 CHECK_JNI_ENTRY(kFlag_Default, "EaIIp", env, array, start, len, buf); \
1629 baseEnv(env)->Set##_jname##ArrayRegion(env, array, start, len, buf); \
1630 CHECK_JNI_EXIT_VOID(); \
1631 }
1632
1633#define PRIMITIVE_ARRAY_FUNCTIONS(_ctype, _jname, _typechar) \
1634 GET_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname); \
1635 RELEASE_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname); \
1636 GET_PRIMITIVE_ARRAY_REGION(_ctype, _jname); \
1637 SET_PRIMITIVE_ARRAY_REGION(_ctype, _jname);
1638
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001639// TODO: verify primitive array type matches call type.
Elliott Hughesa2501992011-08-26 19:39:54 -07001640PRIMITIVE_ARRAY_FUNCTIONS(jboolean, Boolean, 'Z');
1641PRIMITIVE_ARRAY_FUNCTIONS(jbyte, Byte, 'B');
1642PRIMITIVE_ARRAY_FUNCTIONS(jchar, Char, 'C');
1643PRIMITIVE_ARRAY_FUNCTIONS(jshort, Short, 'S');
1644PRIMITIVE_ARRAY_FUNCTIONS(jint, Int, 'I');
1645PRIMITIVE_ARRAY_FUNCTIONS(jlong, Long, 'J');
1646PRIMITIVE_ARRAY_FUNCTIONS(jfloat, Float, 'F');
1647PRIMITIVE_ARRAY_FUNCTIONS(jdouble, Double, 'D');
1648
Elliott Hughese84278b2012-03-22 10:06:53 -07001649 static jint RegisterNatives(JNIEnv* env, jclass c, const JNINativeMethod* methods, jint nMethods) {
1650 CHECK_JNI_ENTRY(kFlag_Default, "EcpI", env, c, methods, nMethods);
1651 return CHECK_JNI_EXIT("I", baseEnv(env)->RegisterNatives(env, c, methods, nMethods));
Elliott Hughesa2501992011-08-26 19:39:54 -07001652 }
1653
Elliott Hughese84278b2012-03-22 10:06:53 -07001654 static jint UnregisterNatives(JNIEnv* env, jclass c) {
1655 CHECK_JNI_ENTRY(kFlag_Default, "Ec", env, c);
1656 return CHECK_JNI_EXIT("I", baseEnv(env)->UnregisterNatives(env, c));
Elliott Hughesa2501992011-08-26 19:39:54 -07001657 }
1658
1659 static jint MonitorEnter(JNIEnv* env, jobject obj) {
1660 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, obj);
Elliott Hughesa92853e2012-02-07 16:09:27 -08001661 if (!sc.CheckInstance(ScopedCheck::kObject, obj)) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001662 return JNI_ERR; // Only for jni_internal_test. Real code will have aborted already.
Elliott Hughesa92853e2012-02-07 16:09:27 -08001663 }
Elliott Hughesa2501992011-08-26 19:39:54 -07001664 return CHECK_JNI_EXIT("I", baseEnv(env)->MonitorEnter(env, obj));
1665 }
1666
1667 static jint MonitorExit(JNIEnv* env, jobject obj) {
1668 CHECK_JNI_ENTRY(kFlag_Default | kFlag_ExcepOkay, "EL", env, obj);
Elliott Hughesa92853e2012-02-07 16:09:27 -08001669 if (!sc.CheckInstance(ScopedCheck::kObject, obj)) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001670 return JNI_ERR; // Only for jni_internal_test. Real code will have aborted already.
Elliott Hughesa92853e2012-02-07 16:09:27 -08001671 }
Elliott Hughesa2501992011-08-26 19:39:54 -07001672 return CHECK_JNI_EXIT("I", baseEnv(env)->MonitorExit(env, obj));
1673 }
1674
1675 static jint GetJavaVM(JNIEnv *env, JavaVM **vm) {
1676 CHECK_JNI_ENTRY(kFlag_Default, "Ep", env, vm);
1677 return CHECK_JNI_EXIT("I", baseEnv(env)->GetJavaVM(env, vm));
1678 }
1679
1680 static void GetStringRegion(JNIEnv* env, jstring str, jsize start, jsize len, jchar* buf) {
1681 CHECK_JNI_ENTRY(kFlag_CritOkay, "EsIIp", env, str, start, len, buf);
1682 baseEnv(env)->GetStringRegion(env, str, start, len, buf);
1683 CHECK_JNI_EXIT_VOID();
1684 }
1685
1686 static void GetStringUTFRegion(JNIEnv* env, jstring str, jsize start, jsize len, char* buf) {
1687 CHECK_JNI_ENTRY(kFlag_CritOkay, "EsIIp", env, str, start, len, buf);
1688 baseEnv(env)->GetStringUTFRegion(env, str, start, len, buf);
1689 CHECK_JNI_EXIT_VOID();
1690 }
1691
1692 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray array, jboolean* isCopy) {
1693 CHECK_JNI_ENTRY(kFlag_CritGet, "Eap", env, array, isCopy);
1694 void* result = baseEnv(env)->GetPrimitiveArrayCritical(env, array, isCopy);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001695 if (sc.ForceCopy() && result != nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001696 result = CreateGuardedPACopy(env, array, isCopy);
1697 }
1698 return CHECK_JNI_EXIT("p", result);
1699 }
1700
1701 static void ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array, void* carray, jint mode) {
1702 CHECK_JNI_ENTRY(kFlag_CritRelease | kFlag_ExcepOkay, "Eapr", env, array, carray, mode);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001703 sc.CheckNonNull(carray);
1704 if (sc.ForceCopy()) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001705 ReleaseGuardedPACopy(env, array, carray, mode);
1706 }
1707 baseEnv(env)->ReleasePrimitiveArrayCritical(env, array, carray, mode);
1708 CHECK_JNI_EXIT_VOID();
1709 }
1710
1711 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* isCopy) {
1712 CHECK_JNI_ENTRY(kFlag_CritGet, "Esp", env, java_string, isCopy);
1713 const jchar* result = baseEnv(env)->GetStringCritical(env, java_string, isCopy);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001714 if (sc.ForceCopy() && result != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001715 mirror::String* s = sc.soa().Decode<mirror::String*>(java_string);
Elliott Hughesa2501992011-08-26 19:39:54 -07001716 int byteCount = s->GetLength() * 2;
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001717 result = (const jchar*) GuardedCopy::Create(result, byteCount, false);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001718 if (isCopy != nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001719 *isCopy = JNI_TRUE;
1720 }
1721 }
1722 return CHECK_JNI_EXIT("p", result);
1723 }
1724
1725 static void ReleaseStringCritical(JNIEnv* env, jstring string, const jchar* carray) {
1726 CHECK_JNI_ENTRY(kFlag_CritRelease | kFlag_ExcepOkay, "Esp", env, string, carray);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07001727 sc.CheckNonNull(carray);
1728 if (sc.ForceCopy()) {
1729 GuardedCopy::Check(__FUNCTION__, carray, false);
Elliott Hughesba8eee12012-01-24 20:25:24 -08001730 carray = reinterpret_cast<const jchar*>(GuardedCopy::Destroy(const_cast<jchar*>(carray)));
Elliott Hughesa2501992011-08-26 19:39:54 -07001731 }
1732 baseEnv(env)->ReleaseStringCritical(env, string, carray);
1733 CHECK_JNI_EXIT_VOID();
1734 }
1735
1736 static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
1737 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, obj);
1738 return CHECK_JNI_EXIT("L", baseEnv(env)->NewWeakGlobalRef(env, obj));
1739 }
1740
1741 static jboolean ExceptionCheck(JNIEnv* env) {
1742 CHECK_JNI_ENTRY(kFlag_CritOkay | kFlag_ExcepOkay, "E", env);
1743 return CHECK_JNI_EXIT("b", baseEnv(env)->ExceptionCheck(env));
1744 }
1745
1746 static jobjectRefType GetObjectRefType(JNIEnv* env, jobject obj) {
1747 // Note: we use "Ep" rather than "EL" because this is the one JNI function
1748 // that it's okay to pass an invalid reference to.
1749 CHECK_JNI_ENTRY(kFlag_Default, "Ep", env, obj);
1750 // TODO: proper decoding of jobjectRefType!
1751 return CHECK_JNI_EXIT("I", baseEnv(env)->GetObjectRefType(env, obj));
1752 }
1753
1754 static jobject NewDirectByteBuffer(JNIEnv* env, void* address, jlong capacity) {
1755 CHECK_JNI_ENTRY(kFlag_Default, "EpJ", env, address, capacity);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001756 if (address == nullptr) {
Elliott Hughes3f6635a2012-06-19 13:37:49 -07001757 JniAbortF(__FUNCTION__, "non-nullable address is NULL");
Elliott Hughesa2501992011-08-26 19:39:54 -07001758 }
Narayan Kamathef809d02013-12-19 17:52:47 +00001759 if (capacity < 0) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001760 JniAbortF(__FUNCTION__, "capacity must be non-negative: %" PRId64, capacity);
Elliott Hughesa2501992011-08-26 19:39:54 -07001761 }
1762 return CHECK_JNI_EXIT("L", baseEnv(env)->NewDirectByteBuffer(env, address, capacity));
1763 }
1764
1765 static void* GetDirectBufferAddress(JNIEnv* env, jobject buf) {
1766 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, buf);
1767 // TODO: check that 'buf' is a java.nio.Buffer.
1768 return CHECK_JNI_EXIT("p", baseEnv(env)->GetDirectBufferAddress(env, buf));
1769 }
1770
1771 static jlong GetDirectBufferCapacity(JNIEnv* env, jobject buf) {
1772 CHECK_JNI_ENTRY(kFlag_Default, "EL", env, buf);
1773 // TODO: check that 'buf' is a java.nio.Buffer.
1774 return CHECK_JNI_EXIT("J", baseEnv(env)->GetDirectBufferCapacity(env, buf));
1775 }
1776
1777 private:
1778 static inline const JNINativeInterface* baseEnv(JNIEnv* env) {
1779 return reinterpret_cast<JNIEnvExt*>(env)->unchecked_functions;
1780 }
1781};
1782
1783const JNINativeInterface gCheckNativeInterface = {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001784 nullptr, // reserved0.
1785 nullptr, // reserved1.
1786 nullptr, // reserved2.
1787 nullptr, // reserved3.
Elliott Hughesa2501992011-08-26 19:39:54 -07001788 CheckJNI::GetVersion,
1789 CheckJNI::DefineClass,
1790 CheckJNI::FindClass,
1791 CheckJNI::FromReflectedMethod,
1792 CheckJNI::FromReflectedField,
1793 CheckJNI::ToReflectedMethod,
1794 CheckJNI::GetSuperclass,
1795 CheckJNI::IsAssignableFrom,
1796 CheckJNI::ToReflectedField,
1797 CheckJNI::Throw,
1798 CheckJNI::ThrowNew,
1799 CheckJNI::ExceptionOccurred,
1800 CheckJNI::ExceptionDescribe,
1801 CheckJNI::ExceptionClear,
1802 CheckJNI::FatalError,
1803 CheckJNI::PushLocalFrame,
1804 CheckJNI::PopLocalFrame,
1805 CheckJNI::NewGlobalRef,
1806 CheckJNI::DeleteGlobalRef,
1807 CheckJNI::DeleteLocalRef,
1808 CheckJNI::IsSameObject,
1809 CheckJNI::NewLocalRef,
1810 CheckJNI::EnsureLocalCapacity,
1811 CheckJNI::AllocObject,
1812 CheckJNI::NewObject,
1813 CheckJNI::NewObjectV,
1814 CheckJNI::NewObjectA,
1815 CheckJNI::GetObjectClass,
1816 CheckJNI::IsInstanceOf,
1817 CheckJNI::GetMethodID,
1818 CheckJNI::CallObjectMethod,
1819 CheckJNI::CallObjectMethodV,
1820 CheckJNI::CallObjectMethodA,
1821 CheckJNI::CallBooleanMethod,
1822 CheckJNI::CallBooleanMethodV,
1823 CheckJNI::CallBooleanMethodA,
1824 CheckJNI::CallByteMethod,
1825 CheckJNI::CallByteMethodV,
1826 CheckJNI::CallByteMethodA,
1827 CheckJNI::CallCharMethod,
1828 CheckJNI::CallCharMethodV,
1829 CheckJNI::CallCharMethodA,
1830 CheckJNI::CallShortMethod,
1831 CheckJNI::CallShortMethodV,
1832 CheckJNI::CallShortMethodA,
1833 CheckJNI::CallIntMethod,
1834 CheckJNI::CallIntMethodV,
1835 CheckJNI::CallIntMethodA,
1836 CheckJNI::CallLongMethod,
1837 CheckJNI::CallLongMethodV,
1838 CheckJNI::CallLongMethodA,
1839 CheckJNI::CallFloatMethod,
1840 CheckJNI::CallFloatMethodV,
1841 CheckJNI::CallFloatMethodA,
1842 CheckJNI::CallDoubleMethod,
1843 CheckJNI::CallDoubleMethodV,
1844 CheckJNI::CallDoubleMethodA,
1845 CheckJNI::CallVoidMethod,
1846 CheckJNI::CallVoidMethodV,
1847 CheckJNI::CallVoidMethodA,
1848 CheckJNI::CallNonvirtualObjectMethod,
1849 CheckJNI::CallNonvirtualObjectMethodV,
1850 CheckJNI::CallNonvirtualObjectMethodA,
1851 CheckJNI::CallNonvirtualBooleanMethod,
1852 CheckJNI::CallNonvirtualBooleanMethodV,
1853 CheckJNI::CallNonvirtualBooleanMethodA,
1854 CheckJNI::CallNonvirtualByteMethod,
1855 CheckJNI::CallNonvirtualByteMethodV,
1856 CheckJNI::CallNonvirtualByteMethodA,
1857 CheckJNI::CallNonvirtualCharMethod,
1858 CheckJNI::CallNonvirtualCharMethodV,
1859 CheckJNI::CallNonvirtualCharMethodA,
1860 CheckJNI::CallNonvirtualShortMethod,
1861 CheckJNI::CallNonvirtualShortMethodV,
1862 CheckJNI::CallNonvirtualShortMethodA,
1863 CheckJNI::CallNonvirtualIntMethod,
1864 CheckJNI::CallNonvirtualIntMethodV,
1865 CheckJNI::CallNonvirtualIntMethodA,
1866 CheckJNI::CallNonvirtualLongMethod,
1867 CheckJNI::CallNonvirtualLongMethodV,
1868 CheckJNI::CallNonvirtualLongMethodA,
1869 CheckJNI::CallNonvirtualFloatMethod,
1870 CheckJNI::CallNonvirtualFloatMethodV,
1871 CheckJNI::CallNonvirtualFloatMethodA,
1872 CheckJNI::CallNonvirtualDoubleMethod,
1873 CheckJNI::CallNonvirtualDoubleMethodV,
1874 CheckJNI::CallNonvirtualDoubleMethodA,
1875 CheckJNI::CallNonvirtualVoidMethod,
1876 CheckJNI::CallNonvirtualVoidMethodV,
1877 CheckJNI::CallNonvirtualVoidMethodA,
1878 CheckJNI::GetFieldID,
1879 CheckJNI::GetObjectField,
1880 CheckJNI::GetBooleanField,
1881 CheckJNI::GetByteField,
1882 CheckJNI::GetCharField,
1883 CheckJNI::GetShortField,
1884 CheckJNI::GetIntField,
1885 CheckJNI::GetLongField,
1886 CheckJNI::GetFloatField,
1887 CheckJNI::GetDoubleField,
1888 CheckJNI::SetObjectField,
1889 CheckJNI::SetBooleanField,
1890 CheckJNI::SetByteField,
1891 CheckJNI::SetCharField,
1892 CheckJNI::SetShortField,
1893 CheckJNI::SetIntField,
1894 CheckJNI::SetLongField,
1895 CheckJNI::SetFloatField,
1896 CheckJNI::SetDoubleField,
1897 CheckJNI::GetStaticMethodID,
1898 CheckJNI::CallStaticObjectMethod,
1899 CheckJNI::CallStaticObjectMethodV,
1900 CheckJNI::CallStaticObjectMethodA,
1901 CheckJNI::CallStaticBooleanMethod,
1902 CheckJNI::CallStaticBooleanMethodV,
1903 CheckJNI::CallStaticBooleanMethodA,
1904 CheckJNI::CallStaticByteMethod,
1905 CheckJNI::CallStaticByteMethodV,
1906 CheckJNI::CallStaticByteMethodA,
1907 CheckJNI::CallStaticCharMethod,
1908 CheckJNI::CallStaticCharMethodV,
1909 CheckJNI::CallStaticCharMethodA,
1910 CheckJNI::CallStaticShortMethod,
1911 CheckJNI::CallStaticShortMethodV,
1912 CheckJNI::CallStaticShortMethodA,
1913 CheckJNI::CallStaticIntMethod,
1914 CheckJNI::CallStaticIntMethodV,
1915 CheckJNI::CallStaticIntMethodA,
1916 CheckJNI::CallStaticLongMethod,
1917 CheckJNI::CallStaticLongMethodV,
1918 CheckJNI::CallStaticLongMethodA,
1919 CheckJNI::CallStaticFloatMethod,
1920 CheckJNI::CallStaticFloatMethodV,
1921 CheckJNI::CallStaticFloatMethodA,
1922 CheckJNI::CallStaticDoubleMethod,
1923 CheckJNI::CallStaticDoubleMethodV,
1924 CheckJNI::CallStaticDoubleMethodA,
1925 CheckJNI::CallStaticVoidMethod,
1926 CheckJNI::CallStaticVoidMethodV,
1927 CheckJNI::CallStaticVoidMethodA,
1928 CheckJNI::GetStaticFieldID,
1929 CheckJNI::GetStaticObjectField,
1930 CheckJNI::GetStaticBooleanField,
1931 CheckJNI::GetStaticByteField,
1932 CheckJNI::GetStaticCharField,
1933 CheckJNI::GetStaticShortField,
1934 CheckJNI::GetStaticIntField,
1935 CheckJNI::GetStaticLongField,
1936 CheckJNI::GetStaticFloatField,
1937 CheckJNI::GetStaticDoubleField,
1938 CheckJNI::SetStaticObjectField,
1939 CheckJNI::SetStaticBooleanField,
1940 CheckJNI::SetStaticByteField,
1941 CheckJNI::SetStaticCharField,
1942 CheckJNI::SetStaticShortField,
1943 CheckJNI::SetStaticIntField,
1944 CheckJNI::SetStaticLongField,
1945 CheckJNI::SetStaticFloatField,
1946 CheckJNI::SetStaticDoubleField,
1947 CheckJNI::NewString,
1948 CheckJNI::GetStringLength,
1949 CheckJNI::GetStringChars,
1950 CheckJNI::ReleaseStringChars,
1951 CheckJNI::NewStringUTF,
1952 CheckJNI::GetStringUTFLength,
1953 CheckJNI::GetStringUTFChars,
1954 CheckJNI::ReleaseStringUTFChars,
1955 CheckJNI::GetArrayLength,
1956 CheckJNI::NewObjectArray,
1957 CheckJNI::GetObjectArrayElement,
1958 CheckJNI::SetObjectArrayElement,
1959 CheckJNI::NewBooleanArray,
1960 CheckJNI::NewByteArray,
1961 CheckJNI::NewCharArray,
1962 CheckJNI::NewShortArray,
1963 CheckJNI::NewIntArray,
1964 CheckJNI::NewLongArray,
1965 CheckJNI::NewFloatArray,
1966 CheckJNI::NewDoubleArray,
1967 CheckJNI::GetBooleanArrayElements,
1968 CheckJNI::GetByteArrayElements,
1969 CheckJNI::GetCharArrayElements,
1970 CheckJNI::GetShortArrayElements,
1971 CheckJNI::GetIntArrayElements,
1972 CheckJNI::GetLongArrayElements,
1973 CheckJNI::GetFloatArrayElements,
1974 CheckJNI::GetDoubleArrayElements,
1975 CheckJNI::ReleaseBooleanArrayElements,
1976 CheckJNI::ReleaseByteArrayElements,
1977 CheckJNI::ReleaseCharArrayElements,
1978 CheckJNI::ReleaseShortArrayElements,
1979 CheckJNI::ReleaseIntArrayElements,
1980 CheckJNI::ReleaseLongArrayElements,
1981 CheckJNI::ReleaseFloatArrayElements,
1982 CheckJNI::ReleaseDoubleArrayElements,
1983 CheckJNI::GetBooleanArrayRegion,
1984 CheckJNI::GetByteArrayRegion,
1985 CheckJNI::GetCharArrayRegion,
1986 CheckJNI::GetShortArrayRegion,
1987 CheckJNI::GetIntArrayRegion,
1988 CheckJNI::GetLongArrayRegion,
1989 CheckJNI::GetFloatArrayRegion,
1990 CheckJNI::GetDoubleArrayRegion,
1991 CheckJNI::SetBooleanArrayRegion,
1992 CheckJNI::SetByteArrayRegion,
1993 CheckJNI::SetCharArrayRegion,
1994 CheckJNI::SetShortArrayRegion,
1995 CheckJNI::SetIntArrayRegion,
1996 CheckJNI::SetLongArrayRegion,
1997 CheckJNI::SetFloatArrayRegion,
1998 CheckJNI::SetDoubleArrayRegion,
1999 CheckJNI::RegisterNatives,
2000 CheckJNI::UnregisterNatives,
2001 CheckJNI::MonitorEnter,
2002 CheckJNI::MonitorExit,
2003 CheckJNI::GetJavaVM,
2004 CheckJNI::GetStringRegion,
2005 CheckJNI::GetStringUTFRegion,
2006 CheckJNI::GetPrimitiveArrayCritical,
2007 CheckJNI::ReleasePrimitiveArrayCritical,
2008 CheckJNI::GetStringCritical,
2009 CheckJNI::ReleaseStringCritical,
2010 CheckJNI::NewWeakGlobalRef,
2011 CheckJNI::DeleteWeakGlobalRef,
2012 CheckJNI::ExceptionCheck,
2013 CheckJNI::NewDirectByteBuffer,
2014 CheckJNI::GetDirectBufferAddress,
2015 CheckJNI::GetDirectBufferCapacity,
2016 CheckJNI::GetObjectRefType,
2017};
2018
2019const JNINativeInterface* GetCheckJniNativeInterface() {
2020 return &gCheckNativeInterface;
2021}
2022
2023class CheckJII {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002024 public:
Elliott Hughesa2501992011-08-26 19:39:54 -07002025 static jint DestroyJavaVM(JavaVM* vm) {
Elliott Hughesa0957642011-09-02 14:27:33 -07002026 ScopedCheck sc(vm, false, __FUNCTION__);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07002027 sc.Check(true, "v", vm);
2028 return CHECK_JNI_EXIT("I", BaseVm(vm)->DestroyJavaVM(vm));
Elliott Hughesa2501992011-08-26 19:39:54 -07002029 }
2030
2031 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughesa0957642011-09-02 14:27:33 -07002032 ScopedCheck sc(vm, false, __FUNCTION__);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07002033 sc.Check(true, "vpp", vm, p_env, thr_args);
2034 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThread(vm, p_env, thr_args));
Elliott Hughesa2501992011-08-26 19:39:54 -07002035 }
2036
2037 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) {
Elliott Hughesa0957642011-09-02 14:27:33 -07002038 ScopedCheck sc(vm, false, __FUNCTION__);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07002039 sc.Check(true, "vpp", vm, p_env, thr_args);
2040 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThreadAsDaemon(vm, p_env, thr_args));
Elliott Hughesa2501992011-08-26 19:39:54 -07002041 }
2042
2043 static jint DetachCurrentThread(JavaVM* vm) {
Elliott Hughesa0957642011-09-02 14:27:33 -07002044 ScopedCheck sc(vm, true, __FUNCTION__);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07002045 sc.Check(true, "v", vm);
2046 return CHECK_JNI_EXIT("I", BaseVm(vm)->DetachCurrentThread(vm));
Elliott Hughesa2501992011-08-26 19:39:54 -07002047 }
2048
2049 static jint GetEnv(JavaVM* vm, void** env, jint version) {
Elliott Hughesa0957642011-09-02 14:27:33 -07002050 ScopedCheck sc(vm, true, __FUNCTION__);
Elliott Hughes83a25322013-03-14 11:18:53 -07002051 sc.Check(true, "vpI", vm);
Elliott Hughes32ae6e32011-09-27 10:46:50 -07002052 return CHECK_JNI_EXIT("I", BaseVm(vm)->GetEnv(vm, env, version));
Elliott Hughesa2501992011-08-26 19:39:54 -07002053 }
2054
2055 private:
Elliott Hughes32ae6e32011-09-27 10:46:50 -07002056 static inline const JNIInvokeInterface* BaseVm(JavaVM* vm) {
Elliott Hughesa2501992011-08-26 19:39:54 -07002057 return reinterpret_cast<JavaVMExt*>(vm)->unchecked_functions;
2058 }
2059};
2060
2061const JNIInvokeInterface gCheckInvokeInterface = {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002062 nullptr, // reserved0
2063 nullptr, // reserved1
2064 nullptr, // reserved2
Elliott Hughesa2501992011-08-26 19:39:54 -07002065 CheckJII::DestroyJavaVM,
2066 CheckJII::AttachCurrentThread,
2067 CheckJII::DetachCurrentThread,
2068 CheckJII::GetEnv,
2069 CheckJII::AttachCurrentThreadAsDaemon
2070};
2071
2072const JNIInvokeInterface* GetCheckJniInvokeInterface() {
2073 return &gCheckInvokeInterface;
2074}
2075
2076} // namespace art