blob: 4d2450135eb7dd12a229c4857c3d9dfb00cf2630 [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
Mathieu Chartierc7853442015-03-27 14:35:38 -070019#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070022#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080023#include "common_throws.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070024#include "dex_file-inl.h"
Jeff Hao39b6c242015-05-19 20:30:23 -070025#include "indirect_reference_table-inl.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070026#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "mirror/class-inl.h"
Neil Fuller0e844392016-09-08 13:43:31 +010028#include "mirror/executable.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "mirror/object_array-inl.h"
Jeff Hao11d5d8f2014-03-26 15:08:20 -070030#include "nth_caller_visitor.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070031#include "scoped_thread_state_change-inl.h"
Vladimir Marko3a21e382016-09-02 12:38:38 +010032#include "stack_reference.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
Andreas Gampe46ee31b2016-12-14 10:11:49 -080037using android::base::StringPrintf;
38
Ian Rogers53b8b092014-03-13 23:45:53 -070039class ArgArray {
40 public:
Roland Levillain3887c462015-08-12 18:15:42 +010041 ArgArray(const char* shorty, uint32_t shorty_len)
Ian Rogers53b8b092014-03-13 23:45:53 -070042 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
43 size_t num_slots = shorty_len + 1; // +1 in case of receiver.
44 if (LIKELY((num_slots * 2) < kSmallArgArraySize)) {
45 // We can trivially use the small arg array.
46 arg_array_ = small_arg_array_;
47 } else {
48 // Analyze shorty to see if we need the large arg array.
49 for (size_t i = 1; i < shorty_len; ++i) {
50 char c = shorty[i];
51 if (c == 'J' || c == 'D') {
52 num_slots++;
53 }
54 }
55 if (num_slots <= kSmallArgArraySize) {
56 arg_array_ = small_arg_array_;
57 } else {
58 large_arg_array_.reset(new uint32_t[num_slots]);
59 arg_array_ = large_arg_array_.get();
60 }
61 }
62 }
63
64 uint32_t* GetArray() {
65 return arg_array_;
66 }
67
68 uint32_t GetNumBytes() {
69 return num_bytes_;
70 }
71
72 void Append(uint32_t value) {
73 arg_array_[num_bytes_ / 4] = value;
74 num_bytes_ += 4;
75 }
76
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070077 void Append(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier1cc62e42016-10-03 18:01:28 -070078 Append(StackReference<mirror::Object>::FromMirrorPtr(obj.Ptr()).AsVRegValue());
Ian Rogers53b8b092014-03-13 23:45:53 -070079 }
80
81 void AppendWide(uint64_t value) {
Ian Rogers53b8b092014-03-13 23:45:53 -070082 arg_array_[num_bytes_ / 4] = value;
83 arg_array_[(num_bytes_ / 4) + 1] = value >> 32;
84 num_bytes_ += 8;
85 }
86
87 void AppendFloat(float value) {
88 jvalue jv;
89 jv.f = value;
90 Append(jv.i);
91 }
92
93 void AppendDouble(double value) {
94 jvalue jv;
95 jv.d = value;
96 AppendWide(jv.j);
97 }
98
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070099 void BuildArgArrayFromVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700100 ObjPtr<mirror::Object> receiver,
101 va_list ap)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700102 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700103 // Set receiver if non-null (method is not static)
104 if (receiver != nullptr) {
105 Append(receiver);
106 }
107 for (size_t i = 1; i < shorty_len_; ++i) {
108 switch (shorty_[i]) {
109 case 'Z':
110 case 'B':
111 case 'C':
112 case 'S':
113 case 'I':
114 Append(va_arg(ap, jint));
115 break;
116 case 'F':
117 AppendFloat(va_arg(ap, jdouble));
118 break;
119 case 'L':
Mathieu Chartier0795f232016-09-27 18:43:30 -0700120 Append(soa.Decode<mirror::Object>(va_arg(ap, jobject)));
Ian Rogers53b8b092014-03-13 23:45:53 -0700121 break;
122 case 'D':
123 AppendDouble(va_arg(ap, jdouble));
124 break;
125 case 'J':
126 AppendWide(va_arg(ap, jlong));
127 break;
128#ifndef NDEBUG
129 default:
130 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
131#endif
132 }
133 }
134 }
135
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700136 void BuildArgArrayFromJValues(const ScopedObjectAccessAlreadyRunnable& soa,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700137 ObjPtr<mirror::Object> receiver, jvalue* args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700138 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700139 // Set receiver if non-null (method is not static)
140 if (receiver != nullptr) {
141 Append(receiver);
142 }
143 for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
144 switch (shorty_[i]) {
145 case 'Z':
146 Append(args[args_offset].z);
147 break;
148 case 'B':
149 Append(args[args_offset].b);
150 break;
151 case 'C':
152 Append(args[args_offset].c);
153 break;
154 case 'S':
155 Append(args[args_offset].s);
156 break;
157 case 'I':
158 case 'F':
159 Append(args[args_offset].i);
160 break;
161 case 'L':
Mathieu Chartier0795f232016-09-27 18:43:30 -0700162 Append(soa.Decode<mirror::Object>(args[args_offset].l));
Ian Rogers53b8b092014-03-13 23:45:53 -0700163 break;
164 case 'D':
165 case 'J':
166 AppendWide(args[args_offset].j);
167 break;
168#ifndef NDEBUG
169 default:
170 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
171#endif
172 }
173 }
174 }
175
176 void BuildArgArrayFromFrame(ShadowFrame* shadow_frame, uint32_t arg_offset)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700177 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700178 // Set receiver if non-null (method is not static)
179 size_t cur_arg = arg_offset;
180 if (!shadow_frame->GetMethod()->IsStatic()) {
181 Append(shadow_frame->GetVReg(cur_arg));
182 cur_arg++;
183 }
184 for (size_t i = 1; i < shorty_len_; ++i) {
185 switch (shorty_[i]) {
186 case 'Z':
187 case 'B':
188 case 'C':
189 case 'S':
190 case 'I':
191 case 'F':
192 case 'L':
193 Append(shadow_frame->GetVReg(cur_arg));
194 cur_arg++;
195 break;
196 case 'D':
197 case 'J':
198 AppendWide(shadow_frame->GetVRegLong(cur_arg));
199 cur_arg++;
200 cur_arg++;
201 break;
202#ifndef NDEBUG
203 default:
204 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
205#endif
206 }
207 }
208 }
209
210 static void ThrowIllegalPrimitiveArgumentException(const char* expected,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700211 const char* found_descriptor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700212 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000213 ThrowIllegalArgumentException(
Ian Rogers53b8b092014-03-13 23:45:53 -0700214 StringPrintf("Invalid primitive conversion from %s to %s", expected,
Ian Rogers1ff3c982014-08-12 02:30:58 -0700215 PrettyDescriptor(found_descriptor).c_str()).c_str());
Ian Rogers53b8b092014-03-13 23:45:53 -0700216 }
217
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700218 bool BuildArgArrayFromObjectArray(ObjPtr<mirror::Object> receiver,
219 ObjPtr<mirror::ObjectArray<mirror::Object>> args,
220 ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700221 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700222 const DexFile::TypeList* classes = m->GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700223 // Set receiver if non-null (method is not static)
224 if (receiver != nullptr) {
225 Append(receiver);
226 }
227 for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700228 ObjPtr<mirror::Object> arg(args->Get(args_offset));
Ian Rogers53b8b092014-03-13 23:45:53 -0700229 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700230 PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700231 ObjPtr<mirror::Class> dst_class(
Vladimir Marko05792b92015-08-03 11:56:49 +0100232 m->GetClassFromTypeIndex(classes->GetTypeItem(args_offset).type_idx_,
233 true /* resolve */,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700234 pointer_size));
Ian Rogers53b8b092014-03-13 23:45:53 -0700235 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000236 ThrowIllegalArgumentException(
Ian Rogers11e4c032014-03-14 12:00:39 -0700237 StringPrintf("method %s argument %zd has type %s, got %s",
David Sehr709b0702016-10-13 09:12:37 -0700238 m->PrettyMethod(false).c_str(),
Ian Rogers53b8b092014-03-13 23:45:53 -0700239 args_offset + 1, // Humans don't count from 0.
David Sehr709b0702016-10-13 09:12:37 -0700240 mirror::Class::PrettyDescriptor(dst_class).c_str(),
241 mirror::Object::PrettyTypeOf(arg).c_str()).c_str());
Ian Rogers53b8b092014-03-13 23:45:53 -0700242 return false;
243 }
244 }
245
246#define DO_FIRST_ARG(match_descriptor, get_fn, append) { \
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700247 if (LIKELY(arg != nullptr && arg->GetClass()->DescriptorEquals(match_descriptor))) { \
Mathieu Chartierc7853442015-03-27 14:35:38 -0700248 ArtField* primitive_field = arg->GetClass()->GetInstanceField(0); \
Mathieu Chartier3398c782016-09-30 10:27:43 -0700249 append(primitive_field-> get_fn(arg));
Ian Rogers53b8b092014-03-13 23:45:53 -0700250
251#define DO_ARG(match_descriptor, get_fn, append) \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700252 } else if (LIKELY(arg != nullptr && \
253 arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
Mathieu Chartierc7853442015-03-27 14:35:38 -0700254 ArtField* primitive_field = arg->GetClass()->GetInstanceField(0); \
Mathieu Chartier3398c782016-09-30 10:27:43 -0700255 append(primitive_field-> get_fn(arg));
Ian Rogers53b8b092014-03-13 23:45:53 -0700256
257#define DO_FAIL(expected) \
258 } else { \
259 if (arg->GetClass<>()->IsPrimitive()) { \
Ian Rogers1ff3c982014-08-12 02:30:58 -0700260 std::string temp; \
Mathieu Chartierf8322842014-05-16 10:59:25 -0700261 ThrowIllegalPrimitiveArgumentException(expected, \
Ian Rogers1ff3c982014-08-12 02:30:58 -0700262 arg->GetClass<>()->GetDescriptor(&temp)); \
Ian Rogers53b8b092014-03-13 23:45:53 -0700263 } else { \
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000264 ThrowIllegalArgumentException(\
Ian Rogers11e4c032014-03-14 12:00:39 -0700265 StringPrintf("method %s argument %zd has type %s, got %s", \
David Sehr709b0702016-10-13 09:12:37 -0700266 ArtMethod::PrettyMethod(m, false).c_str(), \
Ian Rogers53b8b092014-03-13 23:45:53 -0700267 args_offset + 1, \
268 expected, \
David Sehr709b0702016-10-13 09:12:37 -0700269 mirror::Object::PrettyTypeOf(arg).c_str()).c_str()); \
Ian Rogers53b8b092014-03-13 23:45:53 -0700270 } \
271 return false; \
272 } }
273
274 switch (shorty_[i]) {
275 case 'L':
276 Append(arg);
277 break;
278 case 'Z':
279 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append)
280 DO_FAIL("boolean")
281 break;
282 case 'B':
283 DO_FIRST_ARG("Ljava/lang/Byte;", GetByte, Append)
284 DO_FAIL("byte")
285 break;
286 case 'C':
287 DO_FIRST_ARG("Ljava/lang/Character;", GetChar, Append)
288 DO_FAIL("char")
289 break;
290 case 'S':
291 DO_FIRST_ARG("Ljava/lang/Short;", GetShort, Append)
292 DO_ARG("Ljava/lang/Byte;", GetByte, Append)
293 DO_FAIL("short")
294 break;
295 case 'I':
296 DO_FIRST_ARG("Ljava/lang/Integer;", GetInt, Append)
297 DO_ARG("Ljava/lang/Character;", GetChar, Append)
298 DO_ARG("Ljava/lang/Short;", GetShort, Append)
299 DO_ARG("Ljava/lang/Byte;", GetByte, Append)
300 DO_FAIL("int")
301 break;
302 case 'J':
303 DO_FIRST_ARG("Ljava/lang/Long;", GetLong, AppendWide)
304 DO_ARG("Ljava/lang/Integer;", GetInt, AppendWide)
305 DO_ARG("Ljava/lang/Character;", GetChar, AppendWide)
306 DO_ARG("Ljava/lang/Short;", GetShort, AppendWide)
307 DO_ARG("Ljava/lang/Byte;", GetByte, AppendWide)
308 DO_FAIL("long")
309 break;
310 case 'F':
311 DO_FIRST_ARG("Ljava/lang/Float;", GetFloat, AppendFloat)
312 DO_ARG("Ljava/lang/Long;", GetLong, AppendFloat)
313 DO_ARG("Ljava/lang/Integer;", GetInt, AppendFloat)
314 DO_ARG("Ljava/lang/Character;", GetChar, AppendFloat)
315 DO_ARG("Ljava/lang/Short;", GetShort, AppendFloat)
316 DO_ARG("Ljava/lang/Byte;", GetByte, AppendFloat)
317 DO_FAIL("float")
318 break;
319 case 'D':
320 DO_FIRST_ARG("Ljava/lang/Double;", GetDouble, AppendDouble)
321 DO_ARG("Ljava/lang/Float;", GetFloat, AppendDouble)
322 DO_ARG("Ljava/lang/Long;", GetLong, AppendDouble)
323 DO_ARG("Ljava/lang/Integer;", GetInt, AppendDouble)
324 DO_ARG("Ljava/lang/Character;", GetChar, AppendDouble)
325 DO_ARG("Ljava/lang/Short;", GetShort, AppendDouble)
326 DO_ARG("Ljava/lang/Byte;", GetByte, AppendDouble)
327 DO_FAIL("double")
328 break;
329#ifndef NDEBUG
330 default:
331 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
Ian Rogersa0485602014-12-02 15:48:04 -0800332 UNREACHABLE();
Ian Rogers53b8b092014-03-13 23:45:53 -0700333#endif
334 }
335#undef DO_FIRST_ARG
336#undef DO_ARG
337#undef DO_FAIL
338 }
339 return true;
340 }
341
342 private:
343 enum { kSmallArgArraySize = 16 };
344 const char* const shorty_;
345 const uint32_t shorty_len_;
346 uint32_t num_bytes_;
347 uint32_t* arg_array_;
348 uint32_t small_arg_array_[kSmallArgArraySize];
Ian Rogers700a4022014-05-19 16:49:03 -0700349 std::unique_ptr<uint32_t[]> large_arg_array_;
Ian Rogers53b8b092014-03-13 23:45:53 -0700350};
351
Mathieu Chartiere401d142015-04-22 13:56:20 -0700352static void CheckMethodArguments(JavaVMExt* vm, ArtMethod* m, uint32_t* args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700353 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700354 const DexFile::TypeList* params = m->GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700355 if (params == nullptr) {
356 return; // No arguments so nothing to check.
357 }
358 uint32_t offset = 0;
359 uint32_t num_params = params->Size();
360 size_t error_count = 0;
361 if (!m->IsStatic()) {
362 offset = 1;
363 }
Ian Rogersa0485602014-12-02 15:48:04 -0800364 // TODO: If args contain object references, it may cause problems.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700365 Thread* const self = Thread::Current();
Andreas Gampe542451c2016-07-26 09:02:02 -0700366 PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Ian Rogers53b8b092014-03-13 23:45:53 -0700367 for (uint32_t i = 0; i < num_params; i++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800368 dex::TypeIndex type_idx = params->GetTypeItem(i).type_idx_;
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700369 ObjPtr<mirror::Class> param_type(m->GetClassFromTypeIndex(type_idx,
370 true /* resolve*/,
371 pointer_size));
Ian Rogers53b8b092014-03-13 23:45:53 -0700372 if (param_type == nullptr) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700373 CHECK(self->IsExceptionPending());
374 LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
Mathieu Chartiere401d142015-04-22 13:56:20 -0700375 << m->GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000376 << self->GetException()->Dump();
Ian Rogers53b8b092014-03-13 23:45:53 -0700377 self->ClearException();
378 ++error_count;
379 } else if (!param_type->IsPrimitive()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700380 // TODO: There is a compaction bug here since GetClassFromTypeIdx can cause thread suspension,
381 // this is a hard to fix problem since the args can contain Object*, we need to save and
382 // restore them by using a visitor similar to the ones used in the trampoline entrypoints.
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700383 ObjPtr<mirror::Object> argument =
Ian Rogers68d8b422014-07-17 11:09:10 -0700384 (reinterpret_cast<StackReference<mirror::Object>*>(&args[i + offset]))->AsMirrorPtr();
Ian Rogers53b8b092014-03-13 23:45:53 -0700385 if (argument != nullptr && !argument->InstanceOf(param_type)) {
386 LOG(ERROR) << "JNI ERROR (app bug): attempt to pass an instance of "
David Sehr709b0702016-10-13 09:12:37 -0700387 << argument->PrettyTypeOf() << " as argument " << (i + 1)
388 << " to " << m->PrettyMethod();
Ian Rogers53b8b092014-03-13 23:45:53 -0700389 ++error_count;
390 }
391 } else if (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble()) {
392 offset++;
Ian Rogers68d8b422014-07-17 11:09:10 -0700393 } else {
394 int32_t arg = static_cast<int32_t>(args[i + offset]);
395 if (param_type->IsPrimitiveBoolean()) {
396 if (arg != JNI_TRUE && arg != JNI_FALSE) {
397 LOG(ERROR) << "JNI ERROR (app bug): expected jboolean (0/1) but got value of "
David Sehr709b0702016-10-13 09:12:37 -0700398 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
Ian Rogers68d8b422014-07-17 11:09:10 -0700399 ++error_count;
400 }
401 } else if (param_type->IsPrimitiveByte()) {
402 if (arg < -128 || arg > 127) {
403 LOG(ERROR) << "JNI ERROR (app bug): expected jbyte but got value of "
David Sehr709b0702016-10-13 09:12:37 -0700404 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
Ian Rogers68d8b422014-07-17 11:09:10 -0700405 ++error_count;
406 }
407 } else if (param_type->IsPrimitiveChar()) {
408 if (args[i + offset] > 0xFFFF) {
409 LOG(ERROR) << "JNI ERROR (app bug): expected jchar but got value of "
David Sehr709b0702016-10-13 09:12:37 -0700410 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
Ian Rogers68d8b422014-07-17 11:09:10 -0700411 ++error_count;
412 }
413 } else if (param_type->IsPrimitiveShort()) {
414 if (arg < -32768 || arg > 0x7FFF) {
415 LOG(ERROR) << "JNI ERROR (app bug): expected jshort but got value of "
David Sehr709b0702016-10-13 09:12:37 -0700416 << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
Ian Rogers68d8b422014-07-17 11:09:10 -0700417 ++error_count;
418 }
419 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700420 }
421 }
Ian Rogers68d8b422014-07-17 11:09:10 -0700422 if (UNLIKELY(error_count > 0)) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700423 // TODO: pass the JNI function name (such as "CallVoidMethodV") through so we can call JniAbort
424 // with an argument.
Ian Rogers68d8b422014-07-17 11:09:10 -0700425 vm->JniAbortF(nullptr, "bad arguments passed to %s (see above for details)",
David Sehr709b0702016-10-13 09:12:37 -0700426 m->PrettyMethod().c_str());
Ian Rogers53b8b092014-03-13 23:45:53 -0700427 }
428}
429
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700430static ArtMethod* FindVirtualMethod(ObjPtr<mirror::Object> receiver, ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700431 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700432 return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method, kRuntimePointerSize);
Ian Rogers53b8b092014-03-13 23:45:53 -0700433}
434
435
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700436static void InvokeWithArgArray(const ScopedObjectAccessAlreadyRunnable& soa,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700437 ArtMethod* method, ArgArray* arg_array, JValue* result,
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700438 const char* shorty)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700439 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700440 uint32_t* args = arg_array->GetArray();
441 if (UNLIKELY(soa.Env()->check_jni)) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700442 CheckMethodArguments(soa.Vm(), method->GetInterfaceMethodIfProxy(kRuntimePointerSize), args);
Ian Rogers53b8b092014-03-13 23:45:53 -0700443 }
444 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
445}
446
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700447JValue InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa, jobject obj, jmethodID mid,
448 va_list args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700449 REQUIRES_SHARED(Locks::mutator_lock_) {
Dave Allison648d7112014-07-25 16:15:27 -0700450 // We want to make sure that the stack is not within a small distance from the
451 // protected region in case we are calling into a leaf function whose stack
452 // check has been elided.
453 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
454 ThrowStackOverflowError(soa.Self());
455 return JValue();
456 }
457
Andreas Gampe13b27842016-11-07 16:48:23 -0800458 ArtMethod* method = jni::DecodeArtMethod(mid);
Jeff Hao39b6c242015-05-19 20:30:23 -0700459 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
460 if (is_string_init) {
461 // Replace calls to String.<init> with equivalent StringFactory call.
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100462 method = WellKnownClasses::StringInitToStringFactory(method);
Jeff Hao39b6c242015-05-19 20:30:23 -0700463 }
Mathieu Chartier0795f232016-09-27 18:43:30 -0700464 ObjPtr<mirror::Object> receiver = method->IsStatic() ? nullptr : soa.Decode<mirror::Object>(obj);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700465 uint32_t shorty_len = 0;
Andreas Gampe542451c2016-07-26 09:02:02 -0700466 const char* shorty =
467 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700468 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700469 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700470 arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700471 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Jeff Hao39b6c242015-05-19 20:30:23 -0700472 if (is_string_init) {
473 // For string init, remap original receiver to StringFactory result.
Jeff Hao83c81952015-05-27 19:29:29 -0700474 UpdateReference(soa.Self(), obj, result.GetL());
Jeff Hao39b6c242015-05-19 20:30:23 -0700475 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700476 return result;
477}
478
Jeff Hao39b6c242015-05-19 20:30:23 -0700479JValue InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable& soa, jobject obj, jmethodID mid,
480 jvalue* args) {
Dave Allison648d7112014-07-25 16:15:27 -0700481 // We want to make sure that the stack is not within a small distance from the
482 // protected region in case we are calling into a leaf function whose stack
483 // check has been elided.
484 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
485 ThrowStackOverflowError(soa.Self());
486 return JValue();
487 }
488
Andreas Gampe13b27842016-11-07 16:48:23 -0800489 ArtMethod* method = jni::DecodeArtMethod(mid);
Jeff Hao39b6c242015-05-19 20:30:23 -0700490 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
491 if (is_string_init) {
492 // Replace calls to String.<init> with equivalent StringFactory call.
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100493 method = WellKnownClasses::StringInitToStringFactory(method);
Jeff Hao39b6c242015-05-19 20:30:23 -0700494 }
Mathieu Chartier0795f232016-09-27 18:43:30 -0700495 ObjPtr<mirror::Object> receiver = method->IsStatic() ? nullptr : soa.Decode<mirror::Object>(obj);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700496 uint32_t shorty_len = 0;
Andreas Gampe542451c2016-07-26 09:02:02 -0700497 const char* shorty =
498 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700499 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700500 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700501 arg_array.BuildArgArrayFromJValues(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700502 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Jeff Hao39b6c242015-05-19 20:30:23 -0700503 if (is_string_init) {
504 // For string init, remap original receiver to StringFactory result.
Jeff Hao83c81952015-05-27 19:29:29 -0700505 UpdateReference(soa.Self(), obj, result.GetL());
Jeff Hao39b6c242015-05-19 20:30:23 -0700506 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700507 return result;
508}
509
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700510JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
Jeff Hao39b6c242015-05-19 20:30:23 -0700511 jobject obj, jmethodID mid, jvalue* args) {
Dave Allison648d7112014-07-25 16:15:27 -0700512 // We want to make sure that the stack is not within a small distance from the
513 // protected region in case we are calling into a leaf function whose stack
514 // check has been elided.
515 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
516 ThrowStackOverflowError(soa.Self());
517 return JValue();
518 }
519
Mathieu Chartier0795f232016-09-27 18:43:30 -0700520 ObjPtr<mirror::Object> receiver = soa.Decode<mirror::Object>(obj);
Andreas Gampe13b27842016-11-07 16:48:23 -0800521 ArtMethod* method = FindVirtualMethod(receiver, jni::DecodeArtMethod(mid));
Jeff Hao39b6c242015-05-19 20:30:23 -0700522 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
523 if (is_string_init) {
524 // Replace calls to String.<init> with equivalent StringFactory call.
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100525 method = WellKnownClasses::StringInitToStringFactory(method);
Jeff Hao39b6c242015-05-19 20:30:23 -0700526 receiver = nullptr;
527 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700528 uint32_t shorty_len = 0;
Andreas Gampe542451c2016-07-26 09:02:02 -0700529 const char* shorty =
530 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700531 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700532 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700533 arg_array.BuildArgArrayFromJValues(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700534 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Jeff Hao39b6c242015-05-19 20:30:23 -0700535 if (is_string_init) {
536 // For string init, remap original receiver to StringFactory result.
Jeff Hao83c81952015-05-27 19:29:29 -0700537 UpdateReference(soa.Self(), obj, result.GetL());
Jeff Hao39b6c242015-05-19 20:30:23 -0700538 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700539 return result;
540}
541
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700542JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
Ian Rogers53b8b092014-03-13 23:45:53 -0700543 jobject obj, jmethodID mid, va_list args) {
Dave Allison648d7112014-07-25 16:15:27 -0700544 // We want to make sure that the stack is not within a small distance from the
545 // protected region in case we are calling into a leaf function whose stack
546 // check has been elided.
547 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
548 ThrowStackOverflowError(soa.Self());
549 return JValue();
550 }
551
Mathieu Chartier0795f232016-09-27 18:43:30 -0700552 ObjPtr<mirror::Object> receiver = soa.Decode<mirror::Object>(obj);
Andreas Gampe13b27842016-11-07 16:48:23 -0800553 ArtMethod* method = FindVirtualMethod(receiver, jni::DecodeArtMethod(mid));
Jeff Hao39b6c242015-05-19 20:30:23 -0700554 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
555 if (is_string_init) {
556 // Replace calls to String.<init> with equivalent StringFactory call.
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100557 method = WellKnownClasses::StringInitToStringFactory(method);
Jeff Hao39b6c242015-05-19 20:30:23 -0700558 receiver = nullptr;
559 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700560 uint32_t shorty_len = 0;
Andreas Gampe542451c2016-07-26 09:02:02 -0700561 const char* shorty =
562 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
Ian Rogers53b8b092014-03-13 23:45:53 -0700563 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700564 ArgArray arg_array(shorty, shorty_len);
Ian Rogerse18fdd22014-03-14 13:29:43 -0700565 arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700566 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
Jeff Hao39b6c242015-05-19 20:30:23 -0700567 if (is_string_init) {
568 // For string init, remap original receiver to StringFactory result.
Jeff Hao83c81952015-05-27 19:29:29 -0700569 UpdateReference(soa.Self(), obj, result.GetL());
Jeff Hao39b6c242015-05-19 20:30:23 -0700570 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700571 return result;
572}
573
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700574jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod,
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700575 jobject javaReceiver, jobject javaArgs, size_t num_frames) {
Dave Allison648d7112014-07-25 16:15:27 -0700576 // We want to make sure that the stack is not within a small distance from the
577 // protected region in case we are calling into a leaf function whose stack
578 // check has been elided.
579 if (UNLIKELY(__builtin_frame_address(0) <
580 soa.Self()->GetStackEndForInterpreter(true))) {
581 ThrowStackOverflowError(soa.Self());
582 return nullptr;
583 }
584
Mathieu Chartier0795f232016-09-27 18:43:30 -0700585 ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(javaMethod);
Neil Fuller0e844392016-09-08 13:43:31 +0100586 const bool accessible = executable->IsAccessible();
587 ArtMethod* m = executable->GetArtMethod();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700588
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700589 ObjPtr<mirror::Class> declaring_class = m->GetDeclaringClass();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800590 if (UNLIKELY(!declaring_class->IsInitialized())) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700591 StackHandleScope<1> hs(soa.Self());
Mathieu Chartier0795f232016-09-27 18:43:30 -0700592 HandleWrapperObjPtr<mirror::Class> h_class(hs.NewHandleWrapper(&declaring_class));
Ian Rogers7b078e82014-09-10 14:44:24 -0700593 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), h_class, true, true)) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800594 return nullptr;
595 }
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700596 }
597
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700598 ObjPtr<mirror::Object> receiver;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700599 if (!m->IsStatic()) {
Jeff Hao848f70a2014-01-15 13:49:50 -0800600 // Replace calls to String.<init> with equivalent StringFactory call.
601 if (declaring_class->IsStringClass() && m->IsConstructor()) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100602 m = WellKnownClasses::StringInitToStringFactory(m);
Jeff Hao848f70a2014-01-15 13:49:50 -0800603 CHECK(javaReceiver == nullptr);
604 } else {
605 // Check that the receiver is non-null and an instance of the field's declaring class.
Mathieu Chartier0795f232016-09-27 18:43:30 -0700606 receiver = soa.Decode<mirror::Object>(javaReceiver);
Jeff Hao848f70a2014-01-15 13:49:50 -0800607 if (!VerifyObjectIsClass(receiver, declaring_class)) {
608 return nullptr;
609 }
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700610
Jeff Hao848f70a2014-01-15 13:49:50 -0800611 // Find the actual implementation of the virtual method.
Andreas Gampe542451c2016-07-26 09:02:02 -0700612 m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(m, kRuntimePointerSize);
Jeff Hao848f70a2014-01-15 13:49:50 -0800613 }
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700614 }
615
616 // Get our arrays of arguments and their types, and check they're the same size.
Mathieu Chartier0795f232016-09-27 18:43:30 -0700617 ObjPtr<mirror::ObjectArray<mirror::Object>> objects =
618 soa.Decode<mirror::ObjectArray<mirror::Object>>(javaArgs);
Andreas Gampe542451c2016-07-26 09:02:02 -0700619 auto* np_method = m->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700620 const DexFile::TypeList* classes = np_method->GetParameterTypeList();
Ian Rogers53b8b092014-03-13 23:45:53 -0700621 uint32_t classes_size = (classes == nullptr) ? 0 : classes->Size();
622 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800623 if (arg_count != classes_size) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000624 ThrowIllegalArgumentException(StringPrintf("Wrong number of arguments; expected %d, got %d",
Ian Rogers62d6c772013-02-27 08:32:07 -0800625 classes_size, arg_count).c_str());
Ian Rogersa0485602014-12-02 15:48:04 -0800626 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700627 }
628
Jeff Haocb4581a2014-03-28 15:43:37 -0700629 // If method is not set to be accessible, verify it can be accessed by the caller.
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700630 ObjPtr<mirror::Class> calling_class;
Mathieu Chartier268764d2016-09-13 12:09:38 -0700631 if (!accessible && !VerifyAccess(soa.Self(),
632 receiver,
633 declaring_class,
634 m->GetAccessFlags(),
635 &calling_class,
636 num_frames)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000637 ThrowIllegalAccessException(
Andreas Gampec0d82292014-09-23 10:38:30 -0700638 StringPrintf("Class %s cannot access %s method %s of class %s",
David Sehr709b0702016-10-13 09:12:37 -0700639 calling_class == nullptr ? "null" : calling_class->PrettyClass().c_str(),
Andreas Gampec0d82292014-09-23 10:38:30 -0700640 PrettyJavaAccessFlags(m->GetAccessFlags()).c_str(),
David Sehr709b0702016-10-13 09:12:37 -0700641 m->PrettyMethod().c_str(),
Andreas Gampec0d82292014-09-23 10:38:30 -0700642 m->GetDeclaringClass() == nullptr ? "null" :
David Sehr709b0702016-10-13 09:12:37 -0700643 m->GetDeclaringClass()->PrettyClass().c_str()).c_str());
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700644 return nullptr;
645 }
646
Ian Rogers53b8b092014-03-13 23:45:53 -0700647 // Invoke the method.
648 JValue result;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700649 uint32_t shorty_len = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700650 const char* shorty = np_method->GetShorty(&shorty_len);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700651 ArgArray arg_array(shorty, shorty_len);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700652 if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, np_method)) {
Ian Rogers53b8b092014-03-13 23:45:53 -0700653 CHECK(soa.Self()->IsExceptionPending());
654 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700655 }
656
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700657 InvokeWithArgArray(soa, m, &arg_array, &result, shorty);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700658
659 // Wrap any exception with "Ljava/lang/reflect/InvocationTargetException;" and return early.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700660 if (soa.Self()->IsExceptionPending()) {
Mathieu Chartiera61894d2015-04-23 16:32:54 -0700661 // If we get another exception when we are trying to wrap, then just use that instead.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700662 jthrowable th = soa.Env()->ExceptionOccurred();
Mathieu Chartiera61894d2015-04-23 16:32:54 -0700663 soa.Self()->ClearException();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700664 jclass exception_class = soa.Env()->FindClass("java/lang/reflect/InvocationTargetException");
Mathieu Chartiera61894d2015-04-23 16:32:54 -0700665 if (exception_class == nullptr) {
666 soa.Self()->AssertPendingOOMException();
667 return nullptr;
668 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
Mathieu Chartiera61894d2015-04-23 16:32:54 -0700670 CHECK(mid != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700671 jobject exception_instance = soa.Env()->NewObject(exception_class, mid, th);
Mathieu Chartiera61894d2015-04-23 16:32:54 -0700672 if (exception_instance == nullptr) {
673 soa.Self()->AssertPendingOOMException();
674 return nullptr;
675 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700676 soa.Env()->Throw(reinterpret_cast<jthrowable>(exception_instance));
Ian Rogersa0485602014-12-02 15:48:04 -0800677 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700678 }
679
680 // Box if necessary and return.
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -0700681 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700682}
683
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700684ObjPtr<mirror::Object> BoxPrimitive(Primitive::Type src_class, const JValue& value) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700685 if (src_class == Primitive::kPrimNot) {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700686 return MakeObjPtr(value.GetL());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700687 }
Ian Rogers53b8b092014-03-13 23:45:53 -0700688 if (src_class == Primitive::kPrimVoid) {
689 // There's no such thing as a void field, and void methods invoked via reflection return null.
690 return nullptr;
691 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700692
Ian Rogers84956ff2014-03-26 23:52:41 -0700693 jmethodID m = nullptr;
Ian Rogers0177e532014-02-11 16:30:46 -0800694 const char* shorty;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700695 switch (src_class) {
696 case Primitive::kPrimBoolean:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700697 m = WellKnownClasses::java_lang_Boolean_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800698 shorty = "LZ";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700699 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700700 case Primitive::kPrimByte:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700701 m = WellKnownClasses::java_lang_Byte_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800702 shorty = "LB";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700703 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700704 case Primitive::kPrimChar:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700705 m = WellKnownClasses::java_lang_Character_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800706 shorty = "LC";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700707 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700708 case Primitive::kPrimDouble:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700709 m = WellKnownClasses::java_lang_Double_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800710 shorty = "LD";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700711 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700712 case Primitive::kPrimFloat:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700713 m = WellKnownClasses::java_lang_Float_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800714 shorty = "LF";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700715 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700716 case Primitive::kPrimInt:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700717 m = WellKnownClasses::java_lang_Integer_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800718 shorty = "LI";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700719 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700720 case Primitive::kPrimLong:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700721 m = WellKnownClasses::java_lang_Long_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800722 shorty = "LJ";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700723 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700724 case Primitive::kPrimShort:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700725 m = WellKnownClasses::java_lang_Short_valueOf;
Ian Rogers0177e532014-02-11 16:30:46 -0800726 shorty = "LS";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700727 break;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700728 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700729 LOG(FATAL) << static_cast<int>(src_class);
Ian Rogers0177e532014-02-11 16:30:46 -0800730 shorty = nullptr;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700731 }
732
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700733 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers53b8b092014-03-13 23:45:53 -0700734 DCHECK_EQ(soa.Self()->GetState(), kRunnable);
Jeff Hao5d917302013-02-27 17:57:33 -0800735
Ian Rogers53b8b092014-03-13 23:45:53 -0700736 ArgArray arg_array(shorty, 2);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800737 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -0800738 if (src_class == Primitive::kPrimDouble || src_class == Primitive::kPrimLong) {
739 arg_array.AppendWide(value.GetJ());
740 } else {
741 arg_array.Append(value.GetI());
742 }
743
Andreas Gampe13b27842016-11-07 16:48:23 -0800744 jni::DecodeArtMethod(m)->Invoke(soa.Self(),
745 arg_array.GetArray(),
746 arg_array.GetNumBytes(),
747 &result,
748 shorty);
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800749 return result.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700750}
751
Mathieu Chartierc7853442015-03-27 14:35:38 -0700752static std::string UnboxingFailureKind(ArtField* f)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700753 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700754 if (f != nullptr) {
David Sehr709b0702016-10-13 09:12:37 -0700755 return "field " + f->PrettyField(false);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700756 }
757 return "result";
758}
759
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700760static bool UnboxPrimitive(ObjPtr<mirror::Object> o,
761 ObjPtr<mirror::Class> dst_class,
762 ArtField* f,
Ian Rogers84956ff2014-03-26 23:52:41 -0700763 JValue* unboxed_value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700764 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700765 bool unbox_for_result = (f == nullptr);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700766 if (!dst_class->IsPrimitive()) {
Ian Rogers84956ff2014-03-26 23:52:41 -0700767 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800768 if (!unbox_for_result) {
David Sehr709b0702016-10-13 09:12:37 -0700769 ThrowIllegalArgumentException(
770 StringPrintf("%s has type %s, got %s",
771 UnboxingFailureKind(f).c_str(),
772 dst_class->PrettyDescriptor().c_str(),
773 o->PrettyTypeOf().c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800774 } else {
David Sehr709b0702016-10-13 09:12:37 -0700775 ThrowClassCastException(
776 StringPrintf("Couldn't convert result of type %s to %s",
777 o->PrettyTypeOf().c_str(),
778 dst_class->PrettyDescriptor().c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800779 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700780 return false;
781 }
Mathieu Chartier1a5337f2016-10-13 13:48:23 -0700782 unboxed_value->SetL(o);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700783 return true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800784 }
785 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000786 ThrowIllegalArgumentException(StringPrintf("Can't unbox %s to void",
Ian Rogers84956ff2014-03-26 23:52:41 -0700787 UnboxingFailureKind(f).c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700788 return false;
789 }
Ian Rogers84956ff2014-03-26 23:52:41 -0700790 if (UNLIKELY(o == nullptr)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800791 if (!unbox_for_result) {
David Sehr709b0702016-10-13 09:12:37 -0700792 ThrowIllegalArgumentException(
793 StringPrintf("%s has type %s, got null",
794 UnboxingFailureKind(f).c_str(),
795 dst_class->PrettyDescriptor().c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800796 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700797 ThrowNullPointerException(
798 StringPrintf("Expected to unbox a '%s' primitive type but was returned null",
David Sehr709b0702016-10-13 09:12:37 -0700799 dst_class->PrettyDescriptor().c_str()).c_str());
Ian Rogers62d6c772013-02-27 08:32:07 -0800800 }
Elliott Hughes418d20f2011-09-22 14:00:39 -0700801 return false;
802 }
803
Elliott Hughes1d878f32012-04-11 15:17:54 -0700804 JValue boxed_value;
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700805 ObjPtr<mirror::Class> klass = o->GetClass();
806 ObjPtr<mirror::Class> src_class = nullptr;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700807 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700808 ArtField* primitive_field = &klass->GetIFieldsPtr()->At(0);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700809 if (klass->DescriptorEquals("Ljava/lang/Boolean;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700810 src_class = class_linker->FindPrimitiveClass('Z');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700811 boxed_value.SetZ(primitive_field->GetBoolean(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700812 } else if (klass->DescriptorEquals("Ljava/lang/Byte;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700813 src_class = class_linker->FindPrimitiveClass('B');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700814 boxed_value.SetB(primitive_field->GetByte(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700815 } else if (klass->DescriptorEquals("Ljava/lang/Character;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700816 src_class = class_linker->FindPrimitiveClass('C');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700817 boxed_value.SetC(primitive_field->GetChar(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700818 } else if (klass->DescriptorEquals("Ljava/lang/Float;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700819 src_class = class_linker->FindPrimitiveClass('F');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700820 boxed_value.SetF(primitive_field->GetFloat(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700821 } else if (klass->DescriptorEquals("Ljava/lang/Double;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700822 src_class = class_linker->FindPrimitiveClass('D');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700823 boxed_value.SetD(primitive_field->GetDouble(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700824 } else if (klass->DescriptorEquals("Ljava/lang/Integer;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700825 src_class = class_linker->FindPrimitiveClass('I');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700826 boxed_value.SetI(primitive_field->GetInt(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700827 } else if (klass->DescriptorEquals("Ljava/lang/Long;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700828 src_class = class_linker->FindPrimitiveClass('J');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700829 boxed_value.SetJ(primitive_field->GetLong(o));
Mathieu Chartierf8322842014-05-16 10:59:25 -0700830 } else if (klass->DescriptorEquals("Ljava/lang/Short;")) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700831 src_class = class_linker->FindPrimitiveClass('S');
Mathieu Chartier3398c782016-09-30 10:27:43 -0700832 boxed_value.SetS(primitive_field->GetShort(o));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700833 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700834 std::string temp;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000835 ThrowIllegalArgumentException(
Ian Rogers1ff3c982014-08-12 02:30:58 -0700836 StringPrintf("%s has type %s, got %s", UnboxingFailureKind(f).c_str(),
David Sehr709b0702016-10-13 09:12:37 -0700837 dst_class->PrettyDescriptor().c_str(),
Ian Rogers1ff3c982014-08-12 02:30:58 -0700838 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700839 return false;
840 }
841
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000842 return ConvertPrimitiveValue(unbox_for_result,
Ian Rogers62d6c772013-02-27 08:32:07 -0800843 src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700844 boxed_value, unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700845}
846
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700847bool UnboxPrimitiveForField(ObjPtr<mirror::Object> o,
848 ObjPtr<mirror::Class> dst_class,
849 ArtField* f,
Ian Rogers84956ff2014-03-26 23:52:41 -0700850 JValue* unboxed_value) {
851 DCHECK(f != nullptr);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000852 return UnboxPrimitive(o, dst_class, f, unboxed_value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700853}
854
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700855bool UnboxPrimitiveForResult(ObjPtr<mirror::Object> o,
856 ObjPtr<mirror::Class> dst_class,
857 JValue* unboxed_value) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000858 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700859}
860
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700861ObjPtr<mirror::Class> GetCallingClass(Thread* self, size_t num_frames) {
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700862 NthCallerVisitor visitor(self, num_frames);
863 visitor.WalkStack();
864 return visitor.caller != nullptr ? visitor.caller->GetDeclaringClass() : nullptr;
865}
866
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700867bool VerifyAccess(Thread* self,
868 ObjPtr<mirror::Object> obj,
869 ObjPtr<mirror::Class> declaring_class,
870 uint32_t access_flags,
871 ObjPtr<mirror::Class>* calling_class,
872 size_t num_frames) {
Mathieu Chartier76433272014-09-26 14:32:37 -0700873 if ((access_flags & kAccPublic) != 0) {
874 return true;
875 }
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700876 ObjPtr<mirror::Class> klass = GetCallingClass(self, num_frames);
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700877 if (UNLIKELY(klass == nullptr)) {
Vladimir Marko3bd7a6c2014-06-12 15:22:31 +0100878 // The caller is an attached native thread.
Mathieu Chartier76433272014-09-26 14:32:37 -0700879 return false;
Vladimir Marko3bd7a6c2014-06-12 15:22:31 +0100880 }
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700881 *calling_class = klass;
Mathieu Chartier268764d2016-09-13 12:09:38 -0700882 return VerifyAccess(obj, declaring_class, access_flags, klass);
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700883}
884
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700885bool VerifyAccess(ObjPtr<mirror::Object> obj,
886 ObjPtr<mirror::Class> declaring_class,
Mathieu Chartier268764d2016-09-13 12:09:38 -0700887 uint32_t access_flags,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700888 ObjPtr<mirror::Class> calling_class) {
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700889 if (calling_class == declaring_class) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700890 return true;
891 }
Mathieu Chartier268764d2016-09-13 12:09:38 -0700892 ScopedAssertNoThreadSuspension sants("verify-access");
Jeff Haocb4581a2014-03-28 15:43:37 -0700893 if ((access_flags & kAccPrivate) != 0) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700894 return false;
895 }
Jeff Haocb4581a2014-03-28 15:43:37 -0700896 if ((access_flags & kAccProtected) != 0) {
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700897 if (obj != nullptr && !obj->InstanceOf(calling_class) &&
Mathieu Chartier3398c782016-09-30 10:27:43 -0700898 !declaring_class->IsInSamePackage(calling_class)) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700899 return false;
Mathieu Chartier3398c782016-09-30 10:27:43 -0700900 } else if (declaring_class->IsAssignableFrom(calling_class)) {
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700901 return true;
902 }
903 }
Mathieu Chartier3398c782016-09-30 10:27:43 -0700904 return declaring_class->IsInSamePackage(calling_class);
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700905}
906
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700907void InvalidReceiverError(ObjPtr<mirror::Object> o, ObjPtr<mirror::Class> c) {
David Sehr709b0702016-10-13 09:12:37 -0700908 std::string expected_class_name(mirror::Class::PrettyDescriptor(c));
909 std::string actual_class_name(mirror::Object::PrettyTypeOf(o));
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700910 ThrowIllegalArgumentException(StringPrintf("Expected receiver of type %s, but got %s",
911 expected_class_name.c_str(),
912 actual_class_name.c_str()).c_str());
913}
914
Jeff Hao83c81952015-05-27 19:29:29 -0700915// This only works if there's one reference which points to the object in obj.
916// Will need to be fixed if there's cases where it's not.
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700917void UpdateReference(Thread* self, jobject obj, ObjPtr<mirror::Object> result) {
Jeff Hao83c81952015-05-27 19:29:29 -0700918 IndirectRef ref = reinterpret_cast<IndirectRef>(obj);
Andreas Gampedc061d02016-10-24 13:19:37 -0700919 IndirectRefKind kind = IndirectReferenceTable::GetIndirectRefKind(ref);
Jeff Hao83c81952015-05-27 19:29:29 -0700920 if (kind == kLocal) {
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -0700921 self->GetJniEnv()->locals.Update(obj, result);
Jeff Hao83c81952015-05-27 19:29:29 -0700922 } else if (kind == kHandleScopeOrInvalid) {
923 LOG(FATAL) << "Unsupported UpdateReference for kind kHandleScopeOrInvalid";
924 } else if (kind == kGlobal) {
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700925 self->GetJniEnv()->vm->UpdateGlobal(self, ref, result);
Jeff Hao83c81952015-05-27 19:29:29 -0700926 } else {
927 DCHECK_EQ(kind, kWeakGlobal);
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700928 self->GetJniEnv()->vm->UpdateWeakGlobal(self, ref, result);
Jeff Hao83c81952015-05-27 19:29:29 -0700929 }
930}
931
Elliott Hughes418d20f2011-09-22 14:00:39 -0700932} // namespace art