blob: cbd66a6a51adfedb70ae7e28e2285a7aab330bc5 [file] [log] [blame]
Elliott Hughes418d20f2011-09-22 14:00:39 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "reflection.h"
18
19#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080020#include "common_throws.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070021#include "dex_file-inl.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070022#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070023#include "mirror/art_field-inl.h"
24#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "mirror/class.h"
26#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "mirror/object_array.h"
28#include "mirror/object_array-inl.h"
Jeff Hao11d5d8f2014-03-26 15:08:20 -070029#include "nth_caller_visitor.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080030#include "object_utils.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070031#include "scoped_thread_state_change.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070032#include "stack.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033#include "well_known_classes.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070034
Elliott Hughes418d20f2011-09-22 14:00:39 -070035namespace art {
36
Ian Rogers53b8b092014-03-13 23:45:53 -070037class ArgArray {
38 public:
39 explicit ArgArray(const char* shorty, uint32_t shorty_len)
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
41 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
42 if (LIKELY((num_slots * 2) < kSmallArgArraySize)) {
43 // We can trivially use the small arg array.
44 arg_array_ = small_arg_array_;
45 } else {
46 // Analyze shorty to see if we need the large arg array.
47 for (size_t i = 1; i < shorty_len; ++i) {
48 char c = shorty[i];
49 if (c == 'J' || c == 'D') {
50 num_slots++;
51 }
52 }
53 if (num_slots <= kSmallArgArraySize) {
54 arg_array_ = small_arg_array_;
55 } else {
56 large_arg_array_.reset(new uint32_t[num_slots]);
57 arg_array_ = large_arg_array_.get();
58 }
59 }
60 }
61
62 uint32_t* GetArray() {
63 return arg_array_;
64 }
65
66 uint32_t GetNumBytes() {
67 return num_bytes_;
68 }
69
70 void Append(uint32_t value) {
71 arg_array_[num_bytes_ / 4] = value;
72 num_bytes_ += 4;
73 }
74
75 void Append(mirror::Object* obj) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
76 Append(StackReference<mirror::Object>::FromMirrorPtr(obj).AsVRegValue());
77 }
78
79 void AppendWide(uint64_t value) {
80 // For ARM and MIPS portable, align wide values to 8 bytes (ArgArray starts at offset of 4).
81#if defined(ART_USE_PORTABLE_COMPILER) && (defined(__arm__) || defined(__mips__))
82 if (num_bytes_ % 8 == 0) {
83 num_bytes_ += 4;
84 }
85#endif
86 arg_array_[num_bytes_ / 4] = value;
87 arg_array_[(num_bytes_ / 4) + 1] = value >> 32;
88 num_bytes_ += 8;
89 }
90
91 void AppendFloat(float value) {
92 jvalue jv;
93 jv.f = value;
94 Append(jv.i);
95 }
96
97 void AppendDouble(double value) {
98 jvalue jv;
99 jv.d = value;
100 AppendWide(jv.j);
101 }
102
Ian Rogerse18fdd22014-03-14 13:29:43 -0700103 void BuildArgArrayFromVarArgs(const ScopedObjectAccess& soa, mirror::Object* receiver, va_list ap)
Ian Rogers53b8b092014-03-13 23:45:53 -0700104 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
105 // Set receiver if non-null (method is not static)
106 if (receiver != nullptr) {
107 Append(receiver);
108 }
109 for (size_t i = 1; i < shorty_len_; ++i) {
110 switch (shorty_[i]) {
111 case 'Z':
112 case 'B':
113 case 'C':
114 case 'S':
115 case 'I':
116 Append(va_arg(ap, jint));
117 break;
118 case 'F':
119 AppendFloat(va_arg(ap, jdouble));
120 break;
121 case 'L':
122 Append(soa.Decode<mirror::Object*>(va_arg(ap, jobject)));
123 break;
124 case 'D':
125 AppendDouble(va_arg(ap, jdouble));
126 break;
127 case 'J':
128 AppendWide(va_arg(ap, jlong));
129 break;
130#ifndef NDEBUG
131 default:
132 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
133#endif
134 }
135 }
136 }
137
Ian Rogerse18fdd22014-03-14 13:29:43 -0700138 void BuildArgArrayFromJValues(const ScopedObjectAccessUnchecked& soa, mirror::Object* receiver,
139 jvalue* args)
Ian Rogers53b8b092014-03-13 23:45:53 -0700140 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
141 // Set receiver if non-null (method is not static)
142 if (receiver != nullptr) {
143 Append(receiver);
144 }
145 for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
146 switch (shorty_[i]) {
147 case 'Z':
148 Append(args[args_offset].z);
149 break;
150 case 'B':
151 Append(args[args_offset].b);
152 break;
153 case 'C':
154 Append(args[args_offset].c);
155 break;
156 case 'S':
157 Append(args[args_offset].s);
158 break;
159 case 'I':
160 case 'F':
161 Append(args[args_offset].i);
162 break;
163 case 'L':
164 Append(soa.Decode<mirror::Object*>(args[args_offset].l));
165 break;
166 case 'D':
167 case 'J':
168 AppendWide(args[args_offset].j);
169 break;
170#ifndef NDEBUG
171 default:
172 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
173#endif
174 }
175 }
176 }
177
178 void BuildArgArrayFromFrame(ShadowFrame* shadow_frame, uint32_t arg_offset)
179 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
180 // Set receiver if non-null (method is not static)
181 size_t cur_arg = arg_offset;
182 if (!shadow_frame->GetMethod()->IsStatic()) {
183 Append(shadow_frame->GetVReg(cur_arg));
184 cur_arg++;
185 }
186 for (size_t i = 1; i < shorty_len_; ++i) {
187 switch (shorty_[i]) {
188 case 'Z':
189 case 'B':
190 case 'C':
191 case 'S':
192 case 'I':
193 case 'F':
194 case 'L':
195 Append(shadow_frame->GetVReg(cur_arg));
196 cur_arg++;
197 break;
198 case 'D':
199 case 'J':
200 AppendWide(shadow_frame->GetVRegLong(cur_arg));
201 cur_arg++;
202 cur_arg++;
203 break;
204#ifndef NDEBUG
205 default:
206 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
207#endif
208 }
209 }
210 }
211
212 static void ThrowIllegalPrimitiveArgumentException(const char* expected,
213 const StringPiece& found_descriptor)
214 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
215 ThrowIllegalArgumentException(nullptr,
216 StringPrintf("Invalid primitive conversion from %s to %s", expected,
217 PrettyDescriptor(found_descriptor.as_string()).c_str()).c_str());
218 }
219
Ian Rogerse18fdd22014-03-14 13:29:43 -0700220 bool BuildArgArrayFromObjectArray(const ScopedObjectAccess& soa, mirror::Object* receiver,
221 mirror::ObjectArray<mirror::Object>* args, MethodHelper& mh)
Ian Rogers53b8b092014-03-13 23:45:53 -0700222 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
223 const DexFile::TypeList* classes = mh.GetParameterTypeList();
224 // Set receiver if non-null (method is not static)
225 if (receiver != nullptr) {
226 Append(receiver);
227 }
228 for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
229 mirror::Object* arg = args->Get(args_offset);
230 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) {
231 mirror::Class* dst_class =
232 mh.GetClassFromTypeIdx(classes->GetTypeItem(args_offset).type_idx_);
233 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
234 ThrowIllegalArgumentException(nullptr,
Ian Rogers11e4c032014-03-14 12:00:39 -0700235 StringPrintf("method %s argument %zd has type %s, got %s",
Ian Rogers53b8b092014-03-13 23:45:53 -0700236 PrettyMethod(mh.GetMethod(), false).c_str(),
237 args_offset + 1, // Humans don't count from 0.
238 PrettyDescriptor(dst_class).c_str(),
239 PrettyTypeOf(arg).c_str()).c_str());
240 return false;
241 }
242 }
243
244#define DO_FIRST_ARG(match_descriptor, get_fn, append) { \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700245 if (LIKELY(arg != nullptr && arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
Ian Rogers53b8b092014-03-13 23:45:53 -0700246 mirror::ArtField* primitive_field = arg->GetClass()->GetIFields()->Get(0); \
247 append(primitive_field-> get_fn(arg));
248
249#define DO_ARG(match_descriptor, get_fn, append) \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700250 } else if (LIKELY(arg != nullptr && \
251 arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
Ian Rogers53b8b092014-03-13 23:45:53 -0700252 mirror::ArtField* primitive_field = arg->GetClass()->GetIFields()->Get(0); \
253 append(primitive_field-> get_fn(arg));
254
255#define DO_FAIL(expected) \
256 } else { \
257 if (arg->GetClass<>()->IsPrimitive()) { \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700258 ThrowIllegalPrimitiveArgumentException(expected, \
259 arg->GetClass<>()->GetDescriptor().c_str()); \
Ian Rogers53b8b092014-03-13 23:45:53 -0700260 } else { \
261 ThrowIllegalArgumentException(nullptr, \
Ian Rogers11e4c032014-03-14 12:00:39 -0700262 StringPrintf("method %s argument %zd has type %s, got %s", \
Ian Rogers53b8b092014-03-13 23:45:53 -0700263 PrettyMethod(mh.GetMethod(), false).c_str(), \
264 args_offset + 1, \
265 expected, \
266 PrettyTypeOf(arg).c_str()).c_str()); \
267 } \
268 return false; \
269 } }
270
271 switch (shorty_[i]) {
272 case 'L':
273 Append(arg);
274 break;
275 case 'Z':
276 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append)
277 DO_FAIL("boolean")
278 break;
279 case 'B':
280 DO_FIRST_ARG("Ljava/lang/Byte;", GetByte, Append)
281 DO_FAIL("byte")
282 break;
283 case 'C':
284 DO_FIRST_ARG("Ljava/lang/Character;", GetChar, Append)
285 DO_FAIL("char")
286 break;
287 case 'S':
288 DO_FIRST_ARG("Ljava/lang/Short;", GetShort, Append)
289 DO_ARG("Ljava/lang/Byte;", GetByte, Append)
290 DO_FAIL("short")
291 break;
292 case 'I':
293 DO_FIRST_ARG("Ljava/lang/Integer;", GetInt, Append)
294 DO_ARG("Ljava/lang/Character;", GetChar, Append)
295 DO_ARG("Ljava/lang/Short;", GetShort, Append)
296 DO_ARG("Ljava/lang/Byte;", GetByte, Append)
297 DO_FAIL("int")
298 break;
299 case 'J':
300 DO_FIRST_ARG("Ljava/lang/Long;", GetLong, AppendWide)
301 DO_ARG("Ljava/lang/Integer;", GetInt, AppendWide)
302 DO_ARG("Ljava/lang/Character;", GetChar, AppendWide)
303 DO_ARG("Ljava/lang/Short;", GetShort, AppendWide)
304 DO_ARG("Ljava/lang/Byte;", GetByte, AppendWide)
305 DO_FAIL("long")
306 break;
307 case 'F':
308 DO_FIRST_ARG("Ljava/lang/Float;", GetFloat, AppendFloat)
309 DO_ARG("Ljava/lang/Long;", GetLong, AppendFloat)
310 DO_ARG("Ljava/lang/Integer;", GetInt, AppendFloat)
311 DO_ARG("Ljava/lang/Character;", GetChar, AppendFloat)
312 DO_ARG("Ljava/lang/Short;", GetShort, AppendFloat)
313 DO_ARG("Ljava/lang/Byte;", GetByte, AppendFloat)
314 DO_FAIL("float")
315 break;
316 case 'D':
317 DO_FIRST_ARG("Ljava/lang/Double;", GetDouble, AppendDouble)
318 DO_ARG("Ljava/lang/Float;", GetFloat, AppendDouble)
319 DO_ARG("Ljava/lang/Long;", GetLong, AppendDouble)
320 DO_ARG("Ljava/lang/Integer;", GetInt, AppendDouble)
321 DO_ARG("Ljava/lang/Character;", GetChar, AppendDouble)
322 DO_ARG("Ljava/lang/Short;", GetShort, AppendDouble)
323 DO_ARG("Ljava/lang/Byte;", GetByte, AppendDouble)
324 DO_FAIL("double")
325 break;
326#ifndef NDEBUG
327 default:
328 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
329#endif
330 }
331#undef DO_FIRST_ARG
332#undef DO_ARG
333#undef DO_FAIL
334 }
335 return true;
336 }
337
338 private:
339 enum { kSmallArgArraySize = 16 };
340 const char* const shorty_;
341 const uint32_t shorty_len_;
342 uint32_t num_bytes_;
343 uint32_t* arg_array_;
344 uint32_t small_arg_array_[kSmallArgArraySize];
345 UniquePtr<uint32_t[]> large_arg_array_;
346};
347
348static void CheckMethodArguments(mirror::ArtMethod* m, uint32_t* args)
349 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
350 const DexFile::TypeList* params = MethodHelper(m).GetParameterTypeList();
351 if (params == nullptr) {
352 return; // No arguments so nothing to check.
353 }
354 uint32_t offset = 0;
355 uint32_t num_params = params->Size();
356 size_t error_count = 0;
357 if (!m->IsStatic()) {
358 offset = 1;
359 }
360 for (uint32_t i = 0; i < num_params; i++) {
361 uint16_t type_idx = params->GetTypeItem(i).type_idx_;
362 mirror::Class* param_type = MethodHelper(m).GetClassFromTypeIdx(type_idx);
363 if (param_type == nullptr) {
364 Thread* self = Thread::Current();
365 CHECK(self->IsExceptionPending());
366 LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
367 << MethodHelper(m).GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
368 << self->GetException(nullptr)->Dump();
369 self->ClearException();
370 ++error_count;
371 } else if (!param_type->IsPrimitive()) {
372 // TODO: check primitives are in range.
373 mirror::Object* argument = reinterpret_cast<mirror::Object*>(args[i + offset]);
374 if (argument != nullptr && !argument->InstanceOf(param_type)) {
375 LOG(ERROR) << "JNI ERROR (app bug): attempt to pass an instance of "
376 << PrettyTypeOf(argument) << " as argument " << (i + 1)
377 << " to " << PrettyMethod(m);
378 ++error_count;
379 }
380 } else if (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble()) {
381 offset++;
382 }
383 }
384 if (error_count > 0) {
385 // TODO: pass the JNI function name (such as "CallVoidMethodV") through so we can call JniAbort
386 // with an argument.
387 JniAbortF(nullptr, "bad arguments passed to %s (see above for details)",
388 PrettyMethod(m).c_str());
389 }
390}
391
392static mirror::ArtMethod* FindVirtualMethod(mirror::Object* receiver,
393 mirror::ArtMethod* method)
394 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
395 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
396}
397
398
399static void InvokeWithArgArray(const ScopedObjectAccessUnchecked& soa, mirror::ArtMethod* method,
400 ArgArray* arg_array, JValue* result, const char* shorty)
401 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
402 uint32_t* args = arg_array->GetArray();
403 if (UNLIKELY(soa.Env()->check_jni)) {
404 CheckMethodArguments(method, args);
405 }
406 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
407}
408
409JValue InvokeWithVarArgs(const ScopedObjectAccess& soa, jobject obj, jmethodID mid, va_list args)
410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
411 mirror::ArtMethod* method = soa.DecodeMethod(mid);
412 mirror::Object* receiver = method->IsStatic() ? nullptr : soa.Decode<mirror::Object*>(obj);
413 MethodHelper mh(method);
414 JValue result;
415 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Ian Rogerse18fdd22014-03-14 13:29:43 -0700416 arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
Ian Rogers53b8b092014-03-13 23:45:53 -0700417 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty());
418 return result;
419}
420
421JValue InvokeWithJValues(const ScopedObjectAccessUnchecked& soa, mirror::Object* receiver,
422 jmethodID mid, jvalue* args) {
423 mirror::ArtMethod* method = soa.DecodeMethod(mid);
424 MethodHelper mh(method);
425 JValue result;
426 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Ian Rogerse18fdd22014-03-14 13:29:43 -0700427 arg_array.BuildArgArrayFromJValues(soa, receiver, args);
Ian Rogers53b8b092014-03-13 23:45:53 -0700428 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty());
429 return result;
430}
431
432JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccess& soa,
433 mirror::Object* receiver, jmethodID mid, jvalue* args) {
434 mirror::ArtMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
435 MethodHelper mh(method);
436 JValue result;
437 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Ian Rogerse18fdd22014-03-14 13:29:43 -0700438 arg_array.BuildArgArrayFromJValues(soa, receiver, args);
Ian Rogers53b8b092014-03-13 23:45:53 -0700439 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty());
440 return result;
441}
442
443JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccess& soa,
444 jobject obj, jmethodID mid, va_list args) {
445 mirror::Object* receiver = soa.Decode<mirror::Object*>(obj);
446 mirror::ArtMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
447 MethodHelper mh(method);
448 JValue result;
449 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Ian Rogerse18fdd22014-03-14 13:29:43 -0700450 arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
Ian Rogers53b8b092014-03-13 23:45:53 -0700451 InvokeWithArgArray(soa, method, &arg_array, &result, mh.GetShorty());
452 return result;
453}
454
455void InvokeWithShadowFrame(Thread* self, ShadowFrame* shadow_frame, uint16_t arg_offset,
456 MethodHelper& mh, JValue* result) {
457 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
458 arg_array.BuildArgArrayFromFrame(shadow_frame, arg_offset);
459 shadow_frame->GetMethod()->Invoke(self, arg_array.GetArray(), arg_array.GetNumBytes(), result,
460 mh.GetShorty());
461}
462
463jobject InvokeMethod(const ScopedObjectAccess& soa, jobject javaMethod,
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700464 jobject javaReceiver, jobject javaArgs, bool accessible) {
Ian Rogers62f05122014-03-21 11:21:29 -0700465 mirror::ArtMethod* m = mirror::ArtMethod::FromReflectedMethod(soa, javaMethod);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700466
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800467 mirror::Class* declaring_class = m->GetDeclaringClass();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800468 if (UNLIKELY(!declaring_class->IsInitialized())) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700469 StackHandleScope<1> hs(soa.Self());
470 Handle<mirror::Class> h_class(hs.NewHandle(declaring_class));
471 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_class, true, true)) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800472 return nullptr;
473 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700474 declaring_class = h_class.Get();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700475 }
476
Ian Rogers53b8b092014-03-13 23:45:53 -0700477 mirror::Object* receiver = nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700478 if (!m->IsStatic()) {
479 // Check that the receiver is non-null and an instance of the field's declaring class.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800480 receiver = soa.Decode<mirror::Object*>(javaReceiver);
Ian Rogers53b8b092014-03-13 23:45:53 -0700481 if (!VerifyObjectIsClass(receiver, declaring_class)) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700482 return NULL;
483 }
484
485 // Find the actual implementation of the virtual method.
486 m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(m);
487 }
488
489 // Get our arrays of arguments and their types, and check they're the same size.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800490 mirror::ObjectArray<mirror::Object>* objects =
491 soa.Decode<mirror::ObjectArray<mirror::Object>*>(javaArgs);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800492 MethodHelper mh(m);
493 const DexFile::TypeList* classes = mh.GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700494 uint32_t classes_size = (classes == nullptr) ? 0 : classes->Size();
495 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 if (arg_count != classes_size) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800497 ThrowIllegalArgumentException(NULL,
498 StringPrintf("Wrong number of arguments; expected %d, got %d",
499 classes_size, arg_count).c_str());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700500 return NULL;
501 }
502
Jeff Haocb4581a2014-03-28 15:43:37 -0700503 // If method is not set to be accessible, verify it can be accessed by the caller.
504 if (!accessible && !VerifyAccess(receiver, declaring_class, m->GetAccessFlags())) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700505 ThrowIllegalAccessException(nullptr, StringPrintf("Cannot access method: %s",
506 PrettyMethod(m).c_str()).c_str());
507 return nullptr;
508 }
509
Ian Rogers53b8b092014-03-13 23:45:53 -0700510 // Invoke the method.
511 JValue result;
512 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Ian Rogerse18fdd22014-03-14 13:29:43 -0700513 if (!arg_array.BuildArgArrayFromObjectArray(soa, receiver, objects, mh)) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700514 CHECK(soa.Self()->IsExceptionPending());
515 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700516 }
517
Ian Rogers53b8b092014-03-13 23:45:53 -0700518 InvokeWithArgArray(soa, m, &arg_array, &result, mh.GetShorty());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700519
520 // Wrap any exception with "Ljava/lang/reflect/InvocationTargetException;" and return early.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700521 if (soa.Self()->IsExceptionPending()) {
522 jthrowable th = soa.Env()->ExceptionOccurred();
523 soa.Env()->ExceptionClear();
524 jclass exception_class = soa.Env()->FindClass("java/lang/reflect/InvocationTargetException");
525 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
526 jobject exception_instance = soa.Env()->NewObject(exception_class, mid, th);
527 soa.Env()->Throw(reinterpret_cast<jthrowable>(exception_instance));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700528 return NULL;
529 }
530
531 // Box if necessary and return.
Ian Rogers53b8b092014-03-13 23:45:53 -0700532 return soa.AddLocalReference<jobject>(BoxPrimitive(mh.GetReturnType()->GetPrimitiveType(),
533 result));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700534}
535
Ian Rogers53b8b092014-03-13 23:45:53 -0700536bool VerifyObjectIsClass(mirror::Object* o, mirror::Class* c) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700537 if (o == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800538 ThrowNullPointerException(NULL, "null receiver");
539 return false;
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700540 } else if (!o->InstanceOf(c)) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700541 std::string expected_class_name(PrettyDescriptor(c));
542 std::string actual_class_name(PrettyTypeOf(o));
Ian Rogers62d6c772013-02-27 08:32:07 -0800543 ThrowIllegalArgumentException(NULL,
544 StringPrintf("Expected receiver of type %s, but got %s",
545 expected_class_name.c_str(),
546 actual_class_name.c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700547 return false;
548 }
549 return true;
550}
551
Ian Rogers62d6c772013-02-27 08:32:07 -0800552bool ConvertPrimitiveValue(const ThrowLocation* throw_location, bool unbox_for_result,
553 Primitive::Type srcType, Primitive::Type dstType,
Ian Rogers84956ff2014-03-26 23:52:41 -0700554 const JValue& src, JValue* dst) {
555 DCHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot);
556 if (LIKELY(srcType == dstType)) {
557 dst->SetJ(src.GetJ());
558 return true;
559 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700560 switch (dstType) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700561 case Primitive::kPrimBoolean: // Fall-through.
562 case Primitive::kPrimChar: // Fall-through.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700563 case Primitive::kPrimByte:
Ian Rogers84956ff2014-03-26 23:52:41 -0700564 // Only expect assignment with source and destination of identical type.
Elliott Hughes418d20f2011-09-22 14:00:39 -0700565 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700566 case Primitive::kPrimShort:
Ian Rogers84956ff2014-03-26 23:52:41 -0700567 if (srcType == Primitive::kPrimByte) {
568 dst->SetS(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700569 return true;
570 }
571 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700572 case Primitive::kPrimInt:
573 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
Ian Rogers84956ff2014-03-26 23:52:41 -0700574 srcType == Primitive::kPrimShort) {
575 dst->SetI(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700576 return true;
577 }
578 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700579 case Primitive::kPrimLong:
580 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
581 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700582 dst->SetJ(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700583 return true;
584 }
585 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700586 case Primitive::kPrimFloat:
587 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
588 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700589 dst->SetF(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700590 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700591 } else if (srcType == Primitive::kPrimLong) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700592 dst->SetF(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700593 return true;
594 }
595 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700596 case Primitive::kPrimDouble:
597 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
598 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700599 dst->SetD(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700600 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700601 } else if (srcType == Primitive::kPrimLong) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700602 dst->SetD(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700603 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700604 } else if (srcType == Primitive::kPrimFloat) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700605 dst->SetD(src.GetF());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700606 return true;
607 }
608 break;
609 default:
610 break;
611 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800612 if (!unbox_for_result) {
613 ThrowIllegalArgumentException(throw_location,
614 StringPrintf("Invalid primitive conversion from %s to %s",
615 PrettyDescriptor(srcType).c_str(),
616 PrettyDescriptor(dstType).c_str()).c_str());
617 } else {
618 ThrowClassCastException(throw_location,
619 StringPrintf("Couldn't convert result of type %s to %s",
620 PrettyDescriptor(srcType).c_str(),
Brian Carlstromdf629502013-07-17 22:39:56 -0700621 PrettyDescriptor(dstType).c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800622 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700623 return false;
624}
625
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800626mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700627 if (src_class == Primitive::kPrimNot) {
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800628 return value.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700629 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700630 if (src_class == Primitive::kPrimVoid) {
631 // There's no such thing as a void field, and void methods invoked via reflection return null.
632 return nullptr;
633 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700634
Ian Rogers84956ff2014-03-26 23:52:41 -0700635 jmethodID m = nullptr;
Ian Rogers0177e532014-02-11 16:30:46 -0800636 const char* shorty;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700637 switch (src_class) {
638 case Primitive::kPrimBoolean:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700639 m = WellKnownClasses::java_lang_Boolean_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800640 shorty = "LZ";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700641 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700642 case Primitive::kPrimByte:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700643 m = WellKnownClasses::java_lang_Byte_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800644 shorty = "LB";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700645 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700646 case Primitive::kPrimChar:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700647 m = WellKnownClasses::java_lang_Character_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800648 shorty = "LC";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700649 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700650 case Primitive::kPrimDouble:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700651 m = WellKnownClasses::java_lang_Double_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800652 shorty = "LD";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700653 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700654 case Primitive::kPrimFloat:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700655 m = WellKnownClasses::java_lang_Float_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800656 shorty = "LF";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700657 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700658 case Primitive::kPrimInt:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700659 m = WellKnownClasses::java_lang_Integer_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800660 shorty = "LI";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700661 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700662 case Primitive::kPrimLong:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663 m = WellKnownClasses::java_lang_Long_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800664 shorty = "LJ";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700665 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700666 case Primitive::kPrimShort:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700667 m = WellKnownClasses::java_lang_Short_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800668 shorty = "LS";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700669 break;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700670 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700671 LOG(FATAL) << static_cast<int>(src_class);
Ian Rogers0177e532014-02-11 16:30:46 -0800672 shorty = nullptr;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700673 }
674
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700675 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers53b8b092014-03-13 23:45:53 -0700676 DCHECK_EQ(soa.Self()->GetState(), kRunnable);
Jeff Hao5d917302013-02-27 17:57:33 -0800677
Ian Rogers53b8b092014-03-13 23:45:53 -0700678 ArgArray arg_array(shorty, 2);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800679 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -0800680 if (src_class == Primitive::kPrimDouble || src_class == Primitive::kPrimLong) {
681 arg_array.AppendWide(value.GetJ());
682 } else {
683 arg_array.Append(value.GetI());
684 }
685
686 soa.DecodeMethod(m)->Invoke(soa.Self(), arg_array.GetArray(), arg_array.GetNumBytes(),
Ian Rogers0177e532014-02-11 16:30:46 -0800687 &result, shorty);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800688 return result.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700689}
690
Ian Rogers84956ff2014-03-26 23:52:41 -0700691static std::string UnboxingFailureKind(mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700692 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700693 if (f != nullptr) {
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700694 return "field " + PrettyField(f, false);
695 }
696 return "result";
697}
698
Ian Rogers62d6c772013-02-27 08:32:07 -0800699static bool UnboxPrimitive(const ThrowLocation* throw_location, mirror::Object* o,
Ian Rogers84956ff2014-03-26 23:52:41 -0700700 mirror::Class* dst_class, mirror::ArtField* f,
701 JValue* unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700702 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700703 bool unbox_for_result = (f == nullptr);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700704 if (!dst_class->IsPrimitive()) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700705 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800706 if (!unbox_for_result) {
707 ThrowIllegalArgumentException(throw_location,
708 StringPrintf("%s has type %s, got %s",
Ian Rogers84956ff2014-03-26 23:52:41 -0700709 UnboxingFailureKind(f).c_str(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800710 PrettyDescriptor(dst_class).c_str(),
711 PrettyTypeOf(o).c_str()).c_str());
712 } else {
713 ThrowClassCastException(throw_location,
714 StringPrintf("Couldn't convert result of type %s to %s",
715 PrettyTypeOf(o).c_str(),
Brian Carlstromdf629502013-07-17 22:39:56 -0700716 PrettyDescriptor(dst_class).c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800717 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700718 return false;
719 }
Ian Rogers84956ff2014-03-26 23:52:41 -0700720 unboxed_value->SetL(o);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700721 return true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800722 }
723 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
724 ThrowIllegalArgumentException(throw_location,
725 StringPrintf("Can't unbox %s to void",
Ian Rogers84956ff2014-03-26 23:52:41 -0700726 UnboxingFailureKind(f).c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700727 return false;
728 }
Ian Rogers84956ff2014-03-26 23:52:41 -0700729 if (UNLIKELY(o == nullptr)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800730 if (!unbox_for_result) {
731 ThrowIllegalArgumentException(throw_location,
732 StringPrintf("%s has type %s, got null",
Ian Rogers84956ff2014-03-26 23:52:41 -0700733 UnboxingFailureKind(f).c_str(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800734 PrettyDescriptor(dst_class).c_str()).c_str());
735 } else {
736 ThrowNullPointerException(throw_location,
737 StringPrintf("Expected to unbox a '%s' primitive type but was returned null",
738 PrettyDescriptor(dst_class).c_str()).c_str());
739 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700740 return false;
741 }
742
Elliott Hughes1d878f32012-04-11 15:17:54 -0700743 JValue boxed_value;
Mathieu Chartierf8322842014-05-16 10:59:25 -0700744 mirror::Class* klass = o->GetClass();
Ian Rogers84956ff2014-03-26 23:52:41 -0700745 mirror::Class* src_class = nullptr;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700746 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstromea46f952013-07-30 01:26:50 -0700747 mirror::ArtField* primitive_field = o->GetClass()->GetIFields()->Get(0);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700748 if (klass->DescriptorEquals("Ljava/lang/Boolean;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700749 src_class = class_linker->FindPrimitiveClass('Z');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700750 boxed_value.SetZ(primitive_field->GetBoolean(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700751 } else if (klass->DescriptorEquals("Ljava/lang/Byte;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700752 src_class = class_linker->FindPrimitiveClass('B');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700753 boxed_value.SetB(primitive_field->GetByte(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700754 } else if (klass->DescriptorEquals("Ljava/lang/Character;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700755 src_class = class_linker->FindPrimitiveClass('C');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700756 boxed_value.SetC(primitive_field->GetChar(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700757 } else if (klass->DescriptorEquals("Ljava/lang/Float;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700758 src_class = class_linker->FindPrimitiveClass('F');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700759 boxed_value.SetF(primitive_field->GetFloat(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700760 } else if (klass->DescriptorEquals("Ljava/lang/Double;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700761 src_class = class_linker->FindPrimitiveClass('D');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700762 boxed_value.SetD(primitive_field->GetDouble(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700763 } else if (klass->DescriptorEquals("Ljava/lang/Integer;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700764 src_class = class_linker->FindPrimitiveClass('I');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700765 boxed_value.SetI(primitive_field->GetInt(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700766 } else if (klass->DescriptorEquals("Ljava/lang/Long;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700767 src_class = class_linker->FindPrimitiveClass('J');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700768 boxed_value.SetJ(primitive_field->GetLong(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700769 } else if (klass->DescriptorEquals("Ljava/lang/Short;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700770 src_class = class_linker->FindPrimitiveClass('S');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700771 boxed_value.SetS(primitive_field->GetShort(o));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700772 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -0800773 ThrowIllegalArgumentException(throw_location,
774 StringPrintf("%s has type %s, got %s",
Ian Rogers84956ff2014-03-26 23:52:41 -0700775 UnboxingFailureKind(f).c_str(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800776 PrettyDescriptor(dst_class).c_str(),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700777 PrettyDescriptor(o->GetClass()->GetDescriptor()).c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700778 return false;
779 }
780
Ian Rogers62d6c772013-02-27 08:32:07 -0800781 return ConvertPrimitiveValue(throw_location, unbox_for_result,
782 src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700783 boxed_value, unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700784}
785
Ian Rogers84956ff2014-03-26 23:52:41 -0700786bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, mirror::ArtField* f,
787 JValue* unboxed_value) {
788 DCHECK(f != nullptr);
789 return UnboxPrimitive(nullptr, o, dst_class, f, unboxed_value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700790}
791
Ian Rogers62d6c772013-02-27 08:32:07 -0800792bool UnboxPrimitiveForResult(const ThrowLocation& throw_location, mirror::Object* o,
Ian Rogers84956ff2014-03-26 23:52:41 -0700793 mirror::Class* dst_class, JValue* unboxed_value) {
794 return UnboxPrimitive(&throw_location, o, dst_class, nullptr, unboxed_value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700795}
796
Jeff Haocb4581a2014-03-28 15:43:37 -0700797bool VerifyAccess(mirror::Object* obj, mirror::Class* declaring_class, uint32_t access_flags) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700798 NthCallerVisitor visitor(Thread::Current(), 2);
799 visitor.WalkStack();
800 mirror::Class* caller_class = visitor.caller->GetDeclaringClass();
801
Jeff Hao925b6872014-04-01 11:21:30 -0700802 if (((access_flags & kAccPublic) != 0) || (caller_class == declaring_class)) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700803 return true;
804 }
Jeff Haocb4581a2014-03-28 15:43:37 -0700805 if ((access_flags & kAccPrivate) != 0) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700806 return false;
807 }
Jeff Haocb4581a2014-03-28 15:43:37 -0700808 if ((access_flags & kAccProtected) != 0) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700809 if (obj != nullptr && !obj->InstanceOf(caller_class) &&
810 !declaring_class->IsInSamePackage(caller_class)) {
811 return false;
812 } else if (declaring_class->IsAssignableFrom(caller_class)) {
813 return true;
814 }
815 }
816 if (!declaring_class->IsInSamePackage(caller_class)) {
817 return false;
818 }
819 return true;
820}
821
Elliott Hughes418d20f2011-09-22 14:00:39 -0700822} // namespace art