blob: d845e402e74643a9145d792c069ef3c4a7175de3 [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
Mathieu Chartier76433272014-09-26 14:32:37 -070017#include "reflection-inl.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070018
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"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070022#include "entrypoints/entrypoint_utils.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070023#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070024#include "mirror/art_field-inl.h"
25#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "mirror/object_array-inl.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070028#include "mirror/object_array.h"
Jeff Hao11d5d8f2014-03-26 15:08:20 -070029#include "nth_caller_visitor.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070030#include "scoped_thread_state_change.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070031#include "stack.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032#include "well_known_classes.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070033
Elliott Hughes418d20f2011-09-22 14:00:39 -070034namespace art {
35
Ian Rogers53b8b092014-03-13 23:45:53 -070036class ArgArray {
37 public:
38 explicit ArgArray(const char* shorty, uint32_t shorty_len)
39 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
40 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
41 if (LIKELY((num_slots * 2) < kSmallArgArraySize)) {
42 // We can trivially use the small arg array.
43 arg_array_ = small_arg_array_;
44 } else {
45 // Analyze shorty to see if we need the large arg array.
46 for (size_t i = 1; i < shorty_len; ++i) {
47 char c = shorty[i];
48 if (c == 'J' || c == 'D') {
49 num_slots++;
50 }
51 }
52 if (num_slots <= kSmallArgArraySize) {
53 arg_array_ = small_arg_array_;
54 } else {
55 large_arg_array_.reset(new uint32_t[num_slots]);
56 arg_array_ = large_arg_array_.get();
57 }
58 }
59 }
60
61 uint32_t* GetArray() {
62 return arg_array_;
63 }
64
65 uint32_t GetNumBytes() {
66 return num_bytes_;
67 }
68
69 void Append(uint32_t value) {
70 arg_array_[num_bytes_ / 4] = value;
71 num_bytes_ += 4;
72 }
73
74 void Append(mirror::Object* obj) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
75 Append(StackReference<mirror::Object>::FromMirrorPtr(obj).AsVRegValue());
76 }
77
78 void AppendWide(uint64_t value) {
Ian Rogers53b8b092014-03-13 23:45:53 -070079 arg_array_[num_bytes_ / 4] = value;
80 arg_array_[(num_bytes_ / 4) + 1] = value >> 32;
81 num_bytes_ += 8;
82 }
83
84 void AppendFloat(float value) {
85 jvalue jv;
86 jv.f = value;
87 Append(jv.i);
88 }
89
90 void AppendDouble(double value) {
91 jvalue jv;
92 jv.d = value;
93 AppendWide(jv.j);
94 }
95
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070096 void BuildArgArrayFromVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
97 mirror::Object* receiver, va_list ap)
Ian Rogers53b8b092014-03-13 23:45:53 -070098 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
99 // Set receiver if non-null (method is not static)
100 if (receiver != nullptr) {
101 Append(receiver);
102 }
103 for (size_t i = 1; i < shorty_len_; ++i) {
104 switch (shorty_[i]) {
105 case 'Z':
106 case 'B':
107 case 'C':
108 case 'S':
109 case 'I':
110 Append(va_arg(ap, jint));
111 break;
112 case 'F':
113 AppendFloat(va_arg(ap, jdouble));
114 break;
115 case 'L':
116 Append(soa.Decode<mirror::Object*>(va_arg(ap, jobject)));
117 break;
118 case 'D':
119 AppendDouble(va_arg(ap, jdouble));
120 break;
121 case 'J':
122 AppendWide(va_arg(ap, jlong));
123 break;
124#ifndef NDEBUG
125 default:
126 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
127#endif
128 }
129 }
130 }
131
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700132 void BuildArgArrayFromJValues(const ScopedObjectAccessAlreadyRunnable& soa,
133 mirror::Object* receiver, jvalue* args)
Ian Rogers53b8b092014-03-13 23:45:53 -0700134 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
135 // Set receiver if non-null (method is not static)
136 if (receiver != nullptr) {
137 Append(receiver);
138 }
139 for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
140 switch (shorty_[i]) {
141 case 'Z':
142 Append(args[args_offset].z);
143 break;
144 case 'B':
145 Append(args[args_offset].b);
146 break;
147 case 'C':
148 Append(args[args_offset].c);
149 break;
150 case 'S':
151 Append(args[args_offset].s);
152 break;
153 case 'I':
154 case 'F':
155 Append(args[args_offset].i);
156 break;
157 case 'L':
158 Append(soa.Decode<mirror::Object*>(args[args_offset].l));
159 break;
160 case 'D':
161 case 'J':
162 AppendWide(args[args_offset].j);
163 break;
164#ifndef NDEBUG
165 default:
166 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
167#endif
168 }
169 }
170 }
171
172 void BuildArgArrayFromFrame(ShadowFrame* shadow_frame, uint32_t arg_offset)
173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
174 // Set receiver if non-null (method is not static)
175 size_t cur_arg = arg_offset;
176 if (!shadow_frame->GetMethod()->IsStatic()) {
177 Append(shadow_frame->GetVReg(cur_arg));
178 cur_arg++;
179 }
180 for (size_t i = 1; i < shorty_len_; ++i) {
181 switch (shorty_[i]) {
182 case 'Z':
183 case 'B':
184 case 'C':
185 case 'S':
186 case 'I':
187 case 'F':
188 case 'L':
189 Append(shadow_frame->GetVReg(cur_arg));
190 cur_arg++;
191 break;
192 case 'D':
193 case 'J':
194 AppendWide(shadow_frame->GetVRegLong(cur_arg));
195 cur_arg++;
196 cur_arg++;
197 break;
198#ifndef NDEBUG
199 default:
200 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
201#endif
202 }
203 }
204 }
205
206 static void ThrowIllegalPrimitiveArgumentException(const char* expected,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700207 const char* found_descriptor)
Ian Rogers53b8b092014-03-13 23:45:53 -0700208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000209 ThrowIllegalArgumentException(
Ian Rogers53b8b092014-03-13 23:45:53 -0700210 StringPrintf("Invalid primitive conversion from %s to %s", expected,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700211 PrettyDescriptor(found_descriptor).c_str()).c_str());
Ian Rogers53b8b092014-03-13 23:45:53 -0700212 }
213
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700214 bool BuildArgArrayFromObjectArray(mirror::Object* receiver,
Ian Rogersa0485602014-12-02 15:48:04 -0800215 mirror::ObjectArray<mirror::Object>* args,
216 Handle<mirror::ArtMethod> h_m)
Ian Rogers53b8b092014-03-13 23:45:53 -0700217 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersa0485602014-12-02 15:48:04 -0800218 const DexFile::TypeList* classes = h_m->GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700219 // Set receiver if non-null (method is not static)
220 if (receiver != nullptr) {
221 Append(receiver);
222 }
223 for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
224 mirror::Object* arg = args->Get(args_offset);
225 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) {
226 mirror::Class* dst_class =
Ian Rogersa0485602014-12-02 15:48:04 -0800227 h_m->GetClassFromTypeIndex(classes->GetTypeItem(args_offset).type_idx_, true);
Ian Rogers53b8b092014-03-13 23:45:53 -0700228 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000229 ThrowIllegalArgumentException(
Ian Rogers11e4c032014-03-14 12:00:39 -0700230 StringPrintf("method %s argument %zd has type %s, got %s",
Ian Rogersa0485602014-12-02 15:48:04 -0800231 PrettyMethod(h_m.Get(), false).c_str(),
Ian Rogers53b8b092014-03-13 23:45:53 -0700232 args_offset + 1, // Humans don't count from 0.
233 PrettyDescriptor(dst_class).c_str(),
234 PrettyTypeOf(arg).c_str()).c_str());
235 return false;
236 }
237 }
238
239#define DO_FIRST_ARG(match_descriptor, get_fn, append) { \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700240 if (LIKELY(arg != nullptr && arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
Ian Rogers53b8b092014-03-13 23:45:53 -0700241 mirror::ArtField* primitive_field = arg->GetClass()->GetIFields()->Get(0); \
242 append(primitive_field-> get_fn(arg));
243
244#define DO_ARG(match_descriptor, get_fn, append) \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700245 } else if (LIKELY(arg != nullptr && \
246 arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
Ian Rogers53b8b092014-03-13 23:45:53 -0700247 mirror::ArtField* primitive_field = arg->GetClass()->GetIFields()->Get(0); \
248 append(primitive_field-> get_fn(arg));
249
250#define DO_FAIL(expected) \
251 } else { \
252 if (arg->GetClass<>()->IsPrimitive()) { \
Ian Rogers1ff3c982014-08-12 02:30:58 -0700253 std::string temp; \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700254 ThrowIllegalPrimitiveArgumentException(expected, \
Ian Rogers1ff3c982014-08-12 02:30:58 -0700255 arg->GetClass<>()->GetDescriptor(&temp)); \
Ian Rogers53b8b092014-03-13 23:45:53 -0700256 } else { \
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000257 ThrowIllegalArgumentException(\
Ian Rogers11e4c032014-03-14 12:00:39 -0700258 StringPrintf("method %s argument %zd has type %s, got %s", \
Ian Rogersa0485602014-12-02 15:48:04 -0800259 PrettyMethod(h_m.Get(), false).c_str(), \
Ian Rogers53b8b092014-03-13 23:45:53 -0700260 args_offset + 1, \
261 expected, \
262 PrettyTypeOf(arg).c_str()).c_str()); \
263 } \
264 return false; \
265 } }
266
267 switch (shorty_[i]) {
268 case 'L':
269 Append(arg);
270 break;
271 case 'Z':
272 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append)
273 DO_FAIL("boolean")
274 break;
275 case 'B':
276 DO_FIRST_ARG("Ljava/lang/Byte;", GetByte, Append)
277 DO_FAIL("byte")
278 break;
279 case 'C':
280 DO_FIRST_ARG("Ljava/lang/Character;", GetChar, Append)
281 DO_FAIL("char")
282 break;
283 case 'S':
284 DO_FIRST_ARG("Ljava/lang/Short;", GetShort, Append)
285 DO_ARG("Ljava/lang/Byte;", GetByte, Append)
286 DO_FAIL("short")
287 break;
288 case 'I':
289 DO_FIRST_ARG("Ljava/lang/Integer;", GetInt, Append)
290 DO_ARG("Ljava/lang/Character;", GetChar, Append)
291 DO_ARG("Ljava/lang/Short;", GetShort, Append)
292 DO_ARG("Ljava/lang/Byte;", GetByte, Append)
293 DO_FAIL("int")
294 break;
295 case 'J':
296 DO_FIRST_ARG("Ljava/lang/Long;", GetLong, AppendWide)
297 DO_ARG("Ljava/lang/Integer;", GetInt, AppendWide)
298 DO_ARG("Ljava/lang/Character;", GetChar, AppendWide)
299 DO_ARG("Ljava/lang/Short;", GetShort, AppendWide)
300 DO_ARG("Ljava/lang/Byte;", GetByte, AppendWide)
301 DO_FAIL("long")
302 break;
303 case 'F':
304 DO_FIRST_ARG("Ljava/lang/Float;", GetFloat, AppendFloat)
305 DO_ARG("Ljava/lang/Long;", GetLong, AppendFloat)
306 DO_ARG("Ljava/lang/Integer;", GetInt, AppendFloat)
307 DO_ARG("Ljava/lang/Character;", GetChar, AppendFloat)
308 DO_ARG("Ljava/lang/Short;", GetShort, AppendFloat)
309 DO_ARG("Ljava/lang/Byte;", GetByte, AppendFloat)
310 DO_FAIL("float")
311 break;
312 case 'D':
313 DO_FIRST_ARG("Ljava/lang/Double;", GetDouble, AppendDouble)
314 DO_ARG("Ljava/lang/Float;", GetFloat, AppendDouble)
315 DO_ARG("Ljava/lang/Long;", GetLong, AppendDouble)
316 DO_ARG("Ljava/lang/Integer;", GetInt, AppendDouble)
317 DO_ARG("Ljava/lang/Character;", GetChar, AppendDouble)
318 DO_ARG("Ljava/lang/Short;", GetShort, AppendDouble)
319 DO_ARG("Ljava/lang/Byte;", GetByte, AppendDouble)
320 DO_FAIL("double")
321 break;
322#ifndef NDEBUG
323 default:
324 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
Ian Rogersa0485602014-12-02 15:48:04 -0800325 UNREACHABLE();
Ian Rogers53b8b092014-03-13 23:45:53 -0700326#endif
327 }
328#undef DO_FIRST_ARG
329#undef DO_ARG
330#undef DO_FAIL
331 }
332 return true;
333 }
334
335 private:
336 enum { kSmallArgArraySize = 16 };
337 const char* const shorty_;
338 const uint32_t shorty_len_;
339 uint32_t num_bytes_;
340 uint32_t* arg_array_;
341 uint32_t small_arg_array_[kSmallArgArraySize];
Ian Rogers700a4022014-05-19 16:49:03 -0700342 std::unique_ptr<uint32_t[]> large_arg_array_;
Ian Rogers53b8b092014-03-13 23:45:53 -0700343};
344
Ian Rogers68d8b422014-07-17 11:09:10 -0700345static void CheckMethodArguments(JavaVMExt* vm, mirror::ArtMethod* m, uint32_t* args)
Ian Rogers53b8b092014-03-13 23:45:53 -0700346 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700347 const DexFile::TypeList* params = m->GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700348 if (params == nullptr) {
349 return; // No arguments so nothing to check.
350 }
351 uint32_t offset = 0;
352 uint32_t num_params = params->Size();
353 size_t error_count = 0;
354 if (!m->IsStatic()) {
355 offset = 1;
356 }
Ian Rogersa0485602014-12-02 15:48:04 -0800357 // TODO: If args contain object references, it may cause problems.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700358 Thread* self = Thread::Current();
359 StackHandleScope<1> hs(self);
360 Handle<mirror::ArtMethod> h_m(hs.NewHandle(m));
Ian Rogers53b8b092014-03-13 23:45:53 -0700361 for (uint32_t i = 0; i < num_params; i++) {
362 uint16_t type_idx = params->GetTypeItem(i).type_idx_;
Ian Rogersa0485602014-12-02 15:48:04 -0800363 mirror::Class* param_type = h_m->GetClassFromTypeIndex(type_idx, true);
Ian Rogers53b8b092014-03-13 23:45:53 -0700364 if (param_type == nullptr) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700365 CHECK(self->IsExceptionPending());
366 LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700367 << h_m->GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000368 << self->GetException()->Dump();
Ian Rogers53b8b092014-03-13 23:45:53 -0700369 self->ClearException();
370 ++error_count;
371 } else if (!param_type->IsPrimitive()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700372 // TODO: There is a compaction bug here since GetClassFromTypeIdx can cause thread suspension,
373 // this is a hard to fix problem since the args can contain Object*, we need to save and
374 // restore them by using a visitor similar to the ones used in the trampoline entrypoints.
Ian Rogers68d8b422014-07-17 11:09:10 -0700375 mirror::Object* argument =
376 (reinterpret_cast<StackReference<mirror::Object>*>(&args[i + offset]))->AsMirrorPtr();
Ian Rogers53b8b092014-03-13 23:45:53 -0700377 if (argument != nullptr && !argument->InstanceOf(param_type)) {
378 LOG(ERROR) << "JNI ERROR (app bug): attempt to pass an instance of "
379 << PrettyTypeOf(argument) << " as argument " << (i + 1)
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700380 << " to " << PrettyMethod(h_m.Get());
Ian Rogers53b8b092014-03-13 23:45:53 -0700381 ++error_count;
382 }
383 } else if (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble()) {
384 offset++;
Ian Rogers68d8b422014-07-17 11:09:10 -0700385 } else {
386 int32_t arg = static_cast<int32_t>(args[i + offset]);
387 if (param_type->IsPrimitiveBoolean()) {
388 if (arg != JNI_TRUE && arg != JNI_FALSE) {
389 LOG(ERROR) << "JNI ERROR (app bug): expected jboolean (0/1) but got value of "
390 << arg << " as argument " << (i + 1) << " to " << PrettyMethod(h_m.Get());
391 ++error_count;
392 }
393 } else if (param_type->IsPrimitiveByte()) {
394 if (arg < -128 || arg > 127) {
395 LOG(ERROR) << "JNI ERROR (app bug): expected jbyte but got value of "
396 << arg << " as argument " << (i + 1) << " to " << PrettyMethod(h_m.Get());
397 ++error_count;
398 }
399 } else if (param_type->IsPrimitiveChar()) {
400 if (args[i + offset] > 0xFFFF) {
401 LOG(ERROR) << "JNI ERROR (app bug): expected jchar but got value of "
402 << arg << " as argument " << (i + 1) << " to " << PrettyMethod(h_m.Get());
403 ++error_count;
404 }
405 } else if (param_type->IsPrimitiveShort()) {
406 if (arg < -32768 || arg > 0x7FFF) {
407 LOG(ERROR) << "JNI ERROR (app bug): expected jshort but got value of "
408 << arg << " as argument " << (i + 1) << " to " << PrettyMethod(h_m.Get());
409 ++error_count;
410 }
411 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700412 }
413 }
Ian Rogers68d8b422014-07-17 11:09:10 -0700414 if (UNLIKELY(error_count > 0)) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700415 // TODO: pass the JNI function name (such as "CallVoidMethodV") through so we can call JniAbort
416 // with an argument.
Ian Rogers68d8b422014-07-17 11:09:10 -0700417 vm->JniAbortF(nullptr, "bad arguments passed to %s (see above for details)",
418 PrettyMethod(h_m.Get()).c_str());
Ian Rogers53b8b092014-03-13 23:45:53 -0700419 }
420}
421
422static mirror::ArtMethod* FindVirtualMethod(mirror::Object* receiver,
423 mirror::ArtMethod* method)
424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
425 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method);
426}
427
428
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700429static void InvokeWithArgArray(const ScopedObjectAccessAlreadyRunnable& soa,
430 mirror::ArtMethod* method, ArgArray* arg_array, JValue* result,
431 const char* shorty)
Ian Rogers53b8b092014-03-13 23:45:53 -0700432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
433 uint32_t* args = arg_array->GetArray();
434 if (UNLIKELY(soa.Env()->check_jni)) {
Ian Rogers68d8b422014-07-17 11:09:10 -0700435 CheckMethodArguments(soa.Vm(), method, args);
Ian Rogers53b8b092014-03-13 23:45:53 -0700436 }
437 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
438}
439
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700440JValue InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa, jobject obj, jmethodID mid,
441 va_list args)
Ian Rogers53b8b092014-03-13 23:45:53 -0700442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Dave Allison648d7112014-07-25 16:15:27 -0700443 // We want to make sure that the stack is not within a small distance from the
444 // protected region in case we are calling into a leaf function whose stack
445 // check has been elided.
446 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
447 ThrowStackOverflowError(soa.Self());
448 return JValue();
449 }
450
Ian Rogers53b8b092014-03-13 23:45:53 -0700451 mirror::ArtMethod* method = soa.DecodeMethod(mid);
452 mirror::Object* receiver = method->IsStatic() ? nullptr : soa.Decode<mirror::Object*>(obj);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700453 uint32_t shorty_len = 0;
454 const char* shorty = method->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700455 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700456 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700457 arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700458 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Ian Rogers53b8b092014-03-13 23:45:53 -0700459 return result;
460}
461
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700462JValue InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable& soa, mirror::Object* receiver,
Ian Rogers53b8b092014-03-13 23:45:53 -0700463 jmethodID mid, jvalue* args) {
Dave Allison648d7112014-07-25 16:15:27 -0700464 // We want to make sure that the stack is not within a small distance from the
465 // protected region in case we are calling into a leaf function whose stack
466 // check has been elided.
467 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
468 ThrowStackOverflowError(soa.Self());
469 return JValue();
470 }
471
Ian Rogers53b8b092014-03-13 23:45:53 -0700472 mirror::ArtMethod* method = soa.DecodeMethod(mid);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700473 uint32_t shorty_len = 0;
474 const char* shorty = method->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700475 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700476 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700477 arg_array.BuildArgArrayFromJValues(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700478 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Ian Rogers53b8b092014-03-13 23:45:53 -0700479 return result;
480}
481
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700482JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
Ian Rogers53b8b092014-03-13 23:45:53 -0700483 mirror::Object* receiver, jmethodID mid, jvalue* args) {
Dave Allison648d7112014-07-25 16:15:27 -0700484 // We want to make sure that the stack is not within a small distance from the
485 // protected region in case we are calling into a leaf function whose stack
486 // check has been elided.
487 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
488 ThrowStackOverflowError(soa.Self());
489 return JValue();
490 }
491
Ian Rogers53b8b092014-03-13 23:45:53 -0700492 mirror::ArtMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700493 uint32_t shorty_len = 0;
494 const char* shorty = method->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700495 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700496 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700497 arg_array.BuildArgArrayFromJValues(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700498 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Ian Rogers53b8b092014-03-13 23:45:53 -0700499 return result;
500}
501
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700502JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
Ian Rogers53b8b092014-03-13 23:45:53 -0700503 jobject obj, jmethodID mid, va_list args) {
Dave Allison648d7112014-07-25 16:15:27 -0700504 // We want to make sure that the stack is not within a small distance from the
505 // protected region in case we are calling into a leaf function whose stack
506 // check has been elided.
507 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
508 ThrowStackOverflowError(soa.Self());
509 return JValue();
510 }
511
Ian Rogers53b8b092014-03-13 23:45:53 -0700512 mirror::Object* receiver = soa.Decode<mirror::Object*>(obj);
513 mirror::ArtMethod* method = FindVirtualMethod(receiver, soa.DecodeMethod(mid));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700514 uint32_t shorty_len = 0;
515 const char* shorty = method->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700516 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700517 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700518 arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700519 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Ian Rogers53b8b092014-03-13 23:45:53 -0700520 return result;
521}
522
523void InvokeWithShadowFrame(Thread* self, ShadowFrame* shadow_frame, uint16_t arg_offset,
Ian Rogerse94652f2014-12-02 11:13:19 -0800524 JValue* result) {
Dave Allison648d7112014-07-25 16:15:27 -0700525 // We want to make sure that the stack is not within a small distance from the
526 // protected region in case we are calling into a leaf function whose stack
527 // check has been elided.
528 if (UNLIKELY(__builtin_frame_address(0) < self->GetStackEnd())) {
529 ThrowStackOverflowError(self);
530 return;
531 }
Ian Rogerse94652f2014-12-02 11:13:19 -0800532 uint32_t shorty_len;
533 const char* shorty = shadow_frame->GetMethod()->GetShorty(&shorty_len);
534 ArgArray arg_array(shorty, shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700535 arg_array.BuildArgArrayFromFrame(shadow_frame, arg_offset);
536 shadow_frame->GetMethod()->Invoke(self, arg_array.GetArray(), arg_array.GetNumBytes(), result,
Ian Rogerse94652f2014-12-02 11:13:19 -0800537 shorty);
Ian Rogers53b8b092014-03-13 23:45:53 -0700538}
539
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700540jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod,
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700541 jobject javaReceiver, jobject javaArgs, bool accessible) {
Dave Allison648d7112014-07-25 16:15:27 -0700542 // We want to make sure that the stack is not within a small distance from the
543 // protected region in case we are calling into a leaf function whose stack
544 // check has been elided.
545 if (UNLIKELY(__builtin_frame_address(0) <
546 soa.Self()->GetStackEndForInterpreter(true))) {
547 ThrowStackOverflowError(soa.Self());
548 return nullptr;
549 }
550
Ian Rogers62f05122014-03-21 11:21:29 -0700551 mirror::ArtMethod* m = mirror::ArtMethod::FromReflectedMethod(soa, javaMethod);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700552
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800553 mirror::Class* declaring_class = m->GetDeclaringClass();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800554 if (UNLIKELY(!declaring_class->IsInitialized())) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700555 StackHandleScope<1> hs(soa.Self());
556 Handle<mirror::Class> h_class(hs.NewHandle(declaring_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700557 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), h_class, true, true)) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800558 return nullptr;
559 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700560 declaring_class = h_class.Get();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700561 }
562
Ian Rogers53b8b092014-03-13 23:45:53 -0700563 mirror::Object* receiver = nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700564 if (!m->IsStatic()) {
565 // Check that the receiver is non-null and an instance of the field's declaring class.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800566 receiver = soa.Decode<mirror::Object*>(javaReceiver);
Ian Rogers53b8b092014-03-13 23:45:53 -0700567 if (!VerifyObjectIsClass(receiver, declaring_class)) {
Ian Rogersa0485602014-12-02 15:48:04 -0800568 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700569 }
570
571 // Find the actual implementation of the virtual method.
572 m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(m);
573 }
574
575 // Get our arrays of arguments and their types, and check they're the same size.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800576 mirror::ObjectArray<mirror::Object>* objects =
577 soa.Decode<mirror::ObjectArray<mirror::Object>*>(javaArgs);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700578 const DexFile::TypeList* classes = m->GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700579 uint32_t classes_size = (classes == nullptr) ? 0 : classes->Size();
580 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800581 if (arg_count != classes_size) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000582 ThrowIllegalArgumentException(StringPrintf("Wrong number of arguments; expected %d, got %d",
Ian Rogers62d6c772013-02-27 08:32:07 -0800583 classes_size, arg_count).c_str());
Ian Rogersa0485602014-12-02 15:48:04 -0800584 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700585 }
586
Jeff Haocb4581a2014-03-28 15:43:37 -0700587 // If method is not set to be accessible, verify it can be accessed by the caller.
Andreas Gampec0d82292014-09-23 10:38:30 -0700588 mirror::Class* calling_class = nullptr;
589 if (!accessible && !VerifyAccess(soa.Self(), receiver, declaring_class, m->GetAccessFlags(),
590 &calling_class)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000591 ThrowIllegalAccessException(
Andreas Gampec0d82292014-09-23 10:38:30 -0700592 StringPrintf("Class %s cannot access %s method %s of class %s",
593 calling_class == nullptr ? "null" : PrettyClass(calling_class).c_str(),
594 PrettyJavaAccessFlags(m->GetAccessFlags()).c_str(),
595 PrettyMethod(m).c_str(),
596 m->GetDeclaringClass() == nullptr ? "null" :
597 PrettyClass(m->GetDeclaringClass()).c_str()).c_str());
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700598 return nullptr;
599 }
600
Ian Rogers53b8b092014-03-13 23:45:53 -0700601 // Invoke the method.
602 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700603 uint32_t shorty_len = 0;
604 const char* shorty = m->GetShorty(&shorty_len);
605 ArgArray arg_array(shorty, shorty_len);
606 StackHandleScope<1> hs(soa.Self());
Ian Rogersa0485602014-12-02 15:48:04 -0800607 Handle<mirror::ArtMethod> h_m(hs.NewHandle(m));
608 if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, h_m)) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700609 CHECK(soa.Self()->IsExceptionPending());
610 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700611 }
612
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700613 InvokeWithArgArray(soa, m, &arg_array, &result, shorty);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700614
615 // Wrap any exception with "Ljava/lang/reflect/InvocationTargetException;" and return early.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700616 if (soa.Self()->IsExceptionPending()) {
617 jthrowable th = soa.Env()->ExceptionOccurred();
618 soa.Env()->ExceptionClear();
619 jclass exception_class = soa.Env()->FindClass("java/lang/reflect/InvocationTargetException");
620 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
621 jobject exception_instance = soa.Env()->NewObject(exception_class, mid, th);
622 soa.Env()->Throw(reinterpret_cast<jthrowable>(exception_instance));
Ian Rogersa0485602014-12-02 15:48:04 -0800623 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700624 }
625
626 // Box if necessary and return.
Ian Rogersa0485602014-12-02 15:48:04 -0800627 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700628}
629
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800630mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700631 if (src_class == Primitive::kPrimNot) {
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800632 return value.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700633 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700634 if (src_class == Primitive::kPrimVoid) {
635 // There's no such thing as a void field, and void methods invoked via reflection return null.
636 return nullptr;
637 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700638
Ian Rogers84956ff2014-03-26 23:52:41 -0700639 jmethodID m = nullptr;
Ian Rogers0177e532014-02-11 16:30:46 -0800640 const char* shorty;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700641 switch (src_class) {
642 case Primitive::kPrimBoolean:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700643 m = WellKnownClasses::java_lang_Boolean_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800644 shorty = "LZ";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700645 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700646 case Primitive::kPrimByte:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700647 m = WellKnownClasses::java_lang_Byte_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800648 shorty = "LB";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700649 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700650 case Primitive::kPrimChar:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700651 m = WellKnownClasses::java_lang_Character_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800652 shorty = "LC";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700653 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700654 case Primitive::kPrimDouble:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700655 m = WellKnownClasses::java_lang_Double_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800656 shorty = "LD";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700657 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700658 case Primitive::kPrimFloat:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700659 m = WellKnownClasses::java_lang_Float_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800660 shorty = "LF";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700661 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700662 case Primitive::kPrimInt:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663 m = WellKnownClasses::java_lang_Integer_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800664 shorty = "LI";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700665 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700666 case Primitive::kPrimLong:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700667 m = WellKnownClasses::java_lang_Long_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800668 shorty = "LJ";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700669 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700670 case Primitive::kPrimShort:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700671 m = WellKnownClasses::java_lang_Short_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800672 shorty = "LS";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700673 break;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700674 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700675 LOG(FATAL) << static_cast<int>(src_class);
Ian Rogers0177e532014-02-11 16:30:46 -0800676 shorty = nullptr;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700677 }
678
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700679 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers53b8b092014-03-13 23:45:53 -0700680 DCHECK_EQ(soa.Self()->GetState(), kRunnable);
Jeff Hao5d917302013-02-27 17:57:33 -0800681
Ian Rogers53b8b092014-03-13 23:45:53 -0700682 ArgArray arg_array(shorty, 2);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800683 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -0800684 if (src_class == Primitive::kPrimDouble || src_class == Primitive::kPrimLong) {
685 arg_array.AppendWide(value.GetJ());
686 } else {
687 arg_array.Append(value.GetI());
688 }
689
690 soa.DecodeMethod(m)->Invoke(soa.Self(), arg_array.GetArray(), arg_array.GetNumBytes(),
Ian Rogers0177e532014-02-11 16:30:46 -0800691 &result, shorty);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800692 return result.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700693}
694
Ian Rogers84956ff2014-03-26 23:52:41 -0700695static std::string UnboxingFailureKind(mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700696 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700697 if (f != nullptr) {
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700698 return "field " + PrettyField(f, false);
699 }
700 return "result";
701}
702
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000703static bool UnboxPrimitive(mirror::Object* o,
Ian Rogers84956ff2014-03-26 23:52:41 -0700704 mirror::Class* dst_class, mirror::ArtField* f,
705 JValue* unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700706 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700707 bool unbox_for_result = (f == nullptr);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700708 if (!dst_class->IsPrimitive()) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700709 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800710 if (!unbox_for_result) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000711 ThrowIllegalArgumentException(StringPrintf("%s has type %s, got %s",
Ian Rogers84956ff2014-03-26 23:52:41 -0700712 UnboxingFailureKind(f).c_str(),
Ian Rogers62d6c772013-02-27 08:32:07 -0800713 PrettyDescriptor(dst_class).c_str(),
714 PrettyTypeOf(o).c_str()).c_str());
715 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000716 ThrowClassCastException(StringPrintf("Couldn't convert result of type %s to %s",
Ian Rogers62d6c772013-02-27 08:32:07 -0800717 PrettyTypeOf(o).c_str(),
Brian Carlstromdf629502013-07-17 22:39:56 -0700718 PrettyDescriptor(dst_class).c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800719 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700720 return false;
721 }
Ian Rogers84956ff2014-03-26 23:52:41 -0700722 unboxed_value->SetL(o);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700723 return true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800724 }
725 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000726 ThrowIllegalArgumentException(StringPrintf("Can't unbox %s to void",
Ian Rogers84956ff2014-03-26 23:52:41 -0700727 UnboxingFailureKind(f).c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700728 return false;
729 }
Ian Rogers84956ff2014-03-26 23:52:41 -0700730 if (UNLIKELY(o == nullptr)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800731 if (!unbox_for_result) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000732 ThrowIllegalArgumentException(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 {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000736 ThrowNullPointerException(StringPrintf("Expected to unbox a '%s' primitive type but was returned null",
Ian Rogers62d6c772013-02-27 08:32:07 -0800737 PrettyDescriptor(dst_class).c_str()).c_str());
738 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700739 return false;
740 }
741
Elliott Hughes1d878f32012-04-11 15:17:54 -0700742 JValue boxed_value;
Mathieu Chartierf8322842014-05-16 10:59:25 -0700743 mirror::Class* klass = o->GetClass();
Ian Rogers84956ff2014-03-26 23:52:41 -0700744 mirror::Class* src_class = nullptr;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700745 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstromea46f952013-07-30 01:26:50 -0700746 mirror::ArtField* primitive_field = o->GetClass()->GetIFields()->Get(0);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700747 if (klass->DescriptorEquals("Ljava/lang/Boolean;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700748 src_class = class_linker->FindPrimitiveClass('Z');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700749 boxed_value.SetZ(primitive_field->GetBoolean(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700750 } else if (klass->DescriptorEquals("Ljava/lang/Byte;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700751 src_class = class_linker->FindPrimitiveClass('B');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700752 boxed_value.SetB(primitive_field->GetByte(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700753 } else if (klass->DescriptorEquals("Ljava/lang/Character;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700754 src_class = class_linker->FindPrimitiveClass('C');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700755 boxed_value.SetC(primitive_field->GetChar(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700756 } else if (klass->DescriptorEquals("Ljava/lang/Float;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700757 src_class = class_linker->FindPrimitiveClass('F');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700758 boxed_value.SetF(primitive_field->GetFloat(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700759 } else if (klass->DescriptorEquals("Ljava/lang/Double;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700760 src_class = class_linker->FindPrimitiveClass('D');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700761 boxed_value.SetD(primitive_field->GetDouble(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700762 } else if (klass->DescriptorEquals("Ljava/lang/Integer;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700763 src_class = class_linker->FindPrimitiveClass('I');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700764 boxed_value.SetI(primitive_field->GetInt(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700765 } else if (klass->DescriptorEquals("Ljava/lang/Long;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700766 src_class = class_linker->FindPrimitiveClass('J');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700767 boxed_value.SetJ(primitive_field->GetLong(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700768 } else if (klass->DescriptorEquals("Ljava/lang/Short;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700769 src_class = class_linker->FindPrimitiveClass('S');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700770 boxed_value.SetS(primitive_field->GetShort(o));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700771 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700772 std::string temp;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000773 ThrowIllegalArgumentException(
Ian Rogers1ff3c982014-08-12 02:30:58 -0700774 StringPrintf("%s has type %s, got %s", UnboxingFailureKind(f).c_str(),
775 PrettyDescriptor(dst_class).c_str(),
776 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700777 return false;
778 }
779
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000780 return ConvertPrimitiveValue(unbox_for_result,
Ian Rogers62d6c772013-02-27 08:32:07 -0800781 src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700782 boxed_value, unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700783}
784
Ian Rogers84956ff2014-03-26 23:52:41 -0700785bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, mirror::ArtField* f,
786 JValue* unboxed_value) {
787 DCHECK(f != nullptr);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000788 return UnboxPrimitive(o, dst_class, f, unboxed_value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700789}
790
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000791bool UnboxPrimitiveForResult(mirror::Object* o,
Ian Rogers84956ff2014-03-26 23:52:41 -0700792 mirror::Class* dst_class, JValue* unboxed_value) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000793 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700794}
795
Andreas Gampec0d82292014-09-23 10:38:30 -0700796bool VerifyAccess(Thread* self, mirror::Object* obj, mirror::Class* declaring_class,
797 uint32_t access_flags, mirror::Class** calling_class) {
Mathieu Chartier76433272014-09-26 14:32:37 -0700798 if ((access_flags & kAccPublic) != 0) {
799 return true;
800 }
801 NthCallerVisitor visitor(self, 2);
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700802 visitor.WalkStack();
Vladimir Marko3bd7a6c2014-06-12 15:22:31 +0100803 if (UNLIKELY(visitor.caller == nullptr)) {
804 // The caller is an attached native thread.
Mathieu Chartier76433272014-09-26 14:32:37 -0700805 return false;
Vladimir Marko3bd7a6c2014-06-12 15:22:31 +0100806 }
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700807 mirror::Class* caller_class = visitor.caller->GetDeclaringClass();
Mathieu Chartier76433272014-09-26 14:32:37 -0700808 if (caller_class == declaring_class) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700809 return true;
810 }
Andreas Gampec0d82292014-09-23 10:38:30 -0700811 ScopedAssertNoThreadSuspension sants(self, "verify-access");
812 *calling_class = caller_class;
Jeff Haocb4581a2014-03-28 15:43:37 -0700813 if ((access_flags & kAccPrivate) != 0) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700814 return false;
815 }
Jeff Haocb4581a2014-03-28 15:43:37 -0700816 if ((access_flags & kAccProtected) != 0) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700817 if (obj != nullptr && !obj->InstanceOf(caller_class) &&
818 !declaring_class->IsInSamePackage(caller_class)) {
819 return false;
820 } else if (declaring_class->IsAssignableFrom(caller_class)) {
821 return true;
822 }
823 }
Mathieu Chartier76433272014-09-26 14:32:37 -0700824 return declaring_class->IsInSamePackage(caller_class);
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700825}
826
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700827void InvalidReceiverError(mirror::Object* o, mirror::Class* c) {
828 std::string expected_class_name(PrettyDescriptor(c));
829 std::string actual_class_name(PrettyTypeOf(o));
830 ThrowIllegalArgumentException(StringPrintf("Expected receiver of type %s, but got %s",
831 expected_class_name.c_str(),
832 actual_class_name.c_str()).c_str());
833}
834
Elliott Hughes418d20f2011-09-22 14:00:39 -0700835} // namespace art