• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2011 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "reflection-inl.h"
18 
19 #include "art_field-inl.h"
20 #include "art_method-alloc-inl.h"
21 #include "base/enums.h"
22 #include "class_linker.h"
23 #include "common_throws.h"
24 #include "dex/dex_file-inl.h"
25 #include "indirect_reference_table-inl.h"
26 #include "jni/java_vm_ext.h"
27 #include "jni/jni_internal.h"
28 #include "jvalue-inl.h"
29 #include "mirror/class-inl.h"
30 #include "mirror/executable.h"
31 #include "mirror/object_array-inl.h"
32 #include "nativehelper/scoped_local_ref.h"
33 #include "nth_caller_visitor.h"
34 #include "scoped_thread_state_change-inl.h"
35 #include "stack_reference.h"
36 #include "thread-inl.h"
37 #include "well_known_classes.h"
38 
39 namespace art {
40 namespace {
41 
42 using android::base::StringPrintf;
43 
44 class ArgArray {
45  public:
ArgArray(const char * shorty,uint32_t shorty_len)46   ArgArray(const char* shorty, uint32_t shorty_len)
47       : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
48     size_t num_slots = shorty_len + 1;  // +1 in case of receiver.
49     if (LIKELY((num_slots * 2) < kSmallArgArraySize)) {
50       // We can trivially use the small arg array.
51       arg_array_ = small_arg_array_;
52     } else {
53       // Analyze shorty to see if we need the large arg array.
54       for (size_t i = 1; i < shorty_len; ++i) {
55         char c = shorty[i];
56         if (c == 'J' || c == 'D') {
57           num_slots++;
58         }
59       }
60       if (num_slots <= kSmallArgArraySize) {
61         arg_array_ = small_arg_array_;
62       } else {
63         large_arg_array_.reset(new uint32_t[num_slots]);
64         arg_array_ = large_arg_array_.get();
65       }
66     }
67   }
68 
GetArray()69   uint32_t* GetArray() {
70     return arg_array_;
71   }
72 
GetNumBytes()73   uint32_t GetNumBytes() {
74     return num_bytes_;
75   }
76 
Append(uint32_t value)77   void Append(uint32_t value) {
78     arg_array_[num_bytes_ / 4] = value;
79     num_bytes_ += 4;
80   }
81 
Append(ObjPtr<mirror::Object> obj)82   void Append(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_) {
83     Append(StackReference<mirror::Object>::FromMirrorPtr(obj.Ptr()).AsVRegValue());
84   }
85 
AppendWide(uint64_t value)86   void AppendWide(uint64_t value) {
87     arg_array_[num_bytes_ / 4] = value;
88     arg_array_[(num_bytes_ / 4) + 1] = value >> 32;
89     num_bytes_ += 8;
90   }
91 
AppendFloat(float value)92   void AppendFloat(float value) {
93     jvalue jv;
94     jv.f = value;
95     Append(jv.i);
96   }
97 
AppendDouble(double value)98   void AppendDouble(double value) {
99     jvalue jv;
100     jv.d = value;
101     AppendWide(jv.j);
102   }
103 
BuildArgArrayFromVarArgs(const ScopedObjectAccessAlreadyRunnable & soa,ObjPtr<mirror::Object> receiver,va_list ap)104   void BuildArgArrayFromVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
105                                 ObjPtr<mirror::Object> receiver,
106                                 va_list ap)
107       REQUIRES_SHARED(Locks::mutator_lock_) {
108     // Set receiver if non-null (method is not static)
109     if (receiver != nullptr) {
110       Append(receiver);
111     }
112     for (size_t i = 1; i < shorty_len_; ++i) {
113       switch (shorty_[i]) {
114         case 'Z':
115         case 'B':
116         case 'C':
117         case 'S':
118         case 'I':
119           Append(va_arg(ap, jint));
120           break;
121         case 'F':
122           AppendFloat(va_arg(ap, jdouble));
123           break;
124         case 'L':
125           Append(soa.Decode<mirror::Object>(va_arg(ap, jobject)));
126           break;
127         case 'D':
128           AppendDouble(va_arg(ap, jdouble));
129           break;
130         case 'J':
131           AppendWide(va_arg(ap, jlong));
132           break;
133 #ifndef NDEBUG
134         default:
135           LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
136 #endif
137       }
138     }
139   }
140 
BuildArgArrayFromJValues(const ScopedObjectAccessAlreadyRunnable & soa,ObjPtr<mirror::Object> receiver,const jvalue * args)141   void BuildArgArrayFromJValues(const ScopedObjectAccessAlreadyRunnable& soa,
142                                 ObjPtr<mirror::Object> receiver, const jvalue* args)
143       REQUIRES_SHARED(Locks::mutator_lock_) {
144     // Set receiver if non-null (method is not static)
145     if (receiver != nullptr) {
146       Append(receiver);
147     }
148     for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
149       switch (shorty_[i]) {
150         case 'Z':
151           Append(args[args_offset].z);
152           break;
153         case 'B':
154           Append(args[args_offset].b);
155           break;
156         case 'C':
157           Append(args[args_offset].c);
158           break;
159         case 'S':
160           Append(args[args_offset].s);
161           break;
162         case 'I':
163           FALLTHROUGH_INTENDED;
164         case 'F':
165           Append(args[args_offset].i);
166           break;
167         case 'L':
168           Append(soa.Decode<mirror::Object>(args[args_offset].l));
169           break;
170         case 'D':
171           FALLTHROUGH_INTENDED;
172         case 'J':
173           AppendWide(args[args_offset].j);
174           break;
175 #ifndef NDEBUG
176         default:
177           LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
178 #endif
179       }
180     }
181   }
182 
BuildArgArrayFromFrame(ShadowFrame * shadow_frame,uint32_t arg_offset)183   void BuildArgArrayFromFrame(ShadowFrame* shadow_frame, uint32_t arg_offset)
184       REQUIRES_SHARED(Locks::mutator_lock_) {
185     // Set receiver if non-null (method is not static)
186     size_t cur_arg = arg_offset;
187     if (!shadow_frame->GetMethod()->IsStatic()) {
188       Append(shadow_frame->GetVReg(cur_arg));
189       cur_arg++;
190     }
191     for (size_t i = 1; i < shorty_len_; ++i) {
192       switch (shorty_[i]) {
193         case 'Z':
194         case 'B':
195         case 'C':
196         case 'S':
197         case 'I':
198         case 'F':
199         case 'L':
200           Append(shadow_frame->GetVReg(cur_arg));
201           cur_arg++;
202           break;
203         case 'D':
204         case 'J':
205           AppendWide(shadow_frame->GetVRegLong(cur_arg));
206           cur_arg++;
207           cur_arg++;
208           break;
209 #ifndef NDEBUG
210         default:
211           LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
212 #endif
213       }
214     }
215   }
216 
ThrowIllegalPrimitiveArgumentException(const char * expected,const char * found_descriptor)217   static void ThrowIllegalPrimitiveArgumentException(const char* expected,
218                                                      const char* found_descriptor)
219       REQUIRES_SHARED(Locks::mutator_lock_) {
220     ThrowIllegalArgumentException(
221         StringPrintf("Invalid primitive conversion from %s to %s", expected,
222                      PrettyDescriptor(found_descriptor).c_str()).c_str());
223   }
224 
BuildArgArrayFromObjectArray(ObjPtr<mirror::Object> receiver,ObjPtr<mirror::ObjectArray<mirror::Object>> raw_args,ArtMethod * m,Thread * self)225   bool BuildArgArrayFromObjectArray(ObjPtr<mirror::Object> receiver,
226                                     ObjPtr<mirror::ObjectArray<mirror::Object>> raw_args,
227                                     ArtMethod* m,
228                                     Thread* self)
229       REQUIRES_SHARED(Locks::mutator_lock_) {
230     const dex::TypeList* classes = m->GetParameterTypeList();
231     // Set receiver if non-null (method is not static)
232     if (receiver != nullptr) {
233       Append(receiver);
234     }
235     StackHandleScope<2> hs(self);
236     MutableHandle<mirror::Object> arg(hs.NewHandle<mirror::Object>(nullptr));
237     Handle<mirror::ObjectArray<mirror::Object>> args(
238         hs.NewHandle<mirror::ObjectArray<mirror::Object>>(raw_args));
239     for (size_t i = 1, args_offset = 0; i < shorty_len_; ++i, ++args_offset) {
240       arg.Assign(args->Get(args_offset));
241       if (((shorty_[i] == 'L') && (arg != nullptr)) ||
242           ((arg == nullptr && shorty_[i] != 'L'))) {
243         // TODO: The method's parameter's type must have been previously resolved, yet
244         // we've seen cases where it's not b/34440020.
245         ObjPtr<mirror::Class> dst_class(
246             m->ResolveClassFromTypeIndex(classes->GetTypeItem(args_offset).type_idx_));
247         if (dst_class == nullptr) {
248           CHECK(self->IsExceptionPending());
249           return false;
250         }
251         if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
252           ThrowIllegalArgumentException(
253               StringPrintf("method %s argument %zd has type %s, got %s",
254                   m->PrettyMethod(false).c_str(),
255                   args_offset + 1,  // Humans don't count from 0.
256                   mirror::Class::PrettyDescriptor(dst_class).c_str(),
257                   mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str());
258           return false;
259         }
260       }
261 
262 #define DO_FIRST_ARG(match_descriptor, get_fn, append) { \
263           if (LIKELY(arg != nullptr && \
264               arg->GetClass()->DescriptorEquals(match_descriptor))) { \
265             ArtField* primitive_field = arg->GetClass()->GetInstanceField(0); \
266             append(primitive_field-> get_fn(arg.Get()));
267 
268 #define DO_ARG(match_descriptor, get_fn, append) \
269           } else if (LIKELY(arg != nullptr && \
270                             arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
271             ArtField* primitive_field = arg->GetClass()->GetInstanceField(0); \
272             append(primitive_field-> get_fn(arg.Get()));
273 
274 #define DO_FAIL(expected) \
275           } else { \
276             if (arg->GetClass<>()->IsPrimitive()) { \
277               std::string temp; \
278               ThrowIllegalPrimitiveArgumentException(expected, \
279                                                      arg->GetClass<>()->GetDescriptor(&temp)); \
280             } else { \
281               ThrowIllegalArgumentException(\
282                   StringPrintf("method %s argument %zd has type %s, got %s", \
283                       ArtMethod::PrettyMethod(m, false).c_str(), \
284                       args_offset + 1, \
285                       expected, \
286                       mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str()); \
287             } \
288             return false; \
289           } }
290 
291       switch (shorty_[i]) {
292         case 'L':
293           Append(arg.Get());
294           break;
295         case 'Z':
296           DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append)
297           DO_FAIL("boolean")
298           break;
299         case 'B':
300           DO_FIRST_ARG("Ljava/lang/Byte;", GetByte, Append)
301           DO_FAIL("byte")
302           break;
303         case 'C':
304           DO_FIRST_ARG("Ljava/lang/Character;", GetChar, Append)
305           DO_FAIL("char")
306           break;
307         case 'S':
308           DO_FIRST_ARG("Ljava/lang/Short;", GetShort, Append)
309           DO_ARG("Ljava/lang/Byte;", GetByte, Append)
310           DO_FAIL("short")
311           break;
312         case 'I':
313           DO_FIRST_ARG("Ljava/lang/Integer;", GetInt, Append)
314           DO_ARG("Ljava/lang/Character;", GetChar, Append)
315           DO_ARG("Ljava/lang/Short;", GetShort, Append)
316           DO_ARG("Ljava/lang/Byte;", GetByte, Append)
317           DO_FAIL("int")
318           break;
319         case 'J':
320           DO_FIRST_ARG("Ljava/lang/Long;", GetLong, AppendWide)
321           DO_ARG("Ljava/lang/Integer;", GetInt, AppendWide)
322           DO_ARG("Ljava/lang/Character;", GetChar, AppendWide)
323           DO_ARG("Ljava/lang/Short;", GetShort, AppendWide)
324           DO_ARG("Ljava/lang/Byte;", GetByte, AppendWide)
325           DO_FAIL("long")
326           break;
327         case 'F':
328           DO_FIRST_ARG("Ljava/lang/Float;", GetFloat, AppendFloat)
329           DO_ARG("Ljava/lang/Long;", GetLong, AppendFloat)
330           DO_ARG("Ljava/lang/Integer;", GetInt, AppendFloat)
331           DO_ARG("Ljava/lang/Character;", GetChar, AppendFloat)
332           DO_ARG("Ljava/lang/Short;", GetShort, AppendFloat)
333           DO_ARG("Ljava/lang/Byte;", GetByte, AppendFloat)
334           DO_FAIL("float")
335           break;
336         case 'D':
337           DO_FIRST_ARG("Ljava/lang/Double;", GetDouble, AppendDouble)
338           DO_ARG("Ljava/lang/Float;", GetFloat, AppendDouble)
339           DO_ARG("Ljava/lang/Long;", GetLong, AppendDouble)
340           DO_ARG("Ljava/lang/Integer;", GetInt, AppendDouble)
341           DO_ARG("Ljava/lang/Character;", GetChar, AppendDouble)
342           DO_ARG("Ljava/lang/Short;", GetShort, AppendDouble)
343           DO_ARG("Ljava/lang/Byte;", GetByte, AppendDouble)
344           DO_FAIL("double")
345           break;
346 #ifndef NDEBUG
347         default:
348           LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
349           UNREACHABLE();
350 #endif
351       }
352 #undef DO_FIRST_ARG
353 #undef DO_ARG
354 #undef DO_FAIL
355     }
356     return true;
357   }
358 
359  private:
360   enum { kSmallArgArraySize = 16 };
361   const char* const shorty_;
362   const uint32_t shorty_len_;
363   uint32_t num_bytes_;
364   uint32_t* arg_array_;
365   uint32_t small_arg_array_[kSmallArgArraySize];
366   std::unique_ptr<uint32_t[]> large_arg_array_;
367 };
368 
CheckMethodArguments(JavaVMExt * vm,ArtMethod * m,uint32_t * args)369 void CheckMethodArguments(JavaVMExt* vm, ArtMethod* m, uint32_t* args)
370     REQUIRES_SHARED(Locks::mutator_lock_) {
371   const dex::TypeList* params = m->GetParameterTypeList();
372   if (params == nullptr) {
373     return;  // No arguments so nothing to check.
374   }
375   uint32_t offset = 0;
376   uint32_t num_params = params->Size();
377   size_t error_count = 0;
378   if (!m->IsStatic()) {
379     offset = 1;
380   }
381   // TODO: If args contain object references, it may cause problems.
382   Thread* const self = Thread::Current();
383   for (uint32_t i = 0; i < num_params; i++) {
384     dex::TypeIndex type_idx = params->GetTypeItem(i).type_idx_;
385     ObjPtr<mirror::Class> param_type(m->ResolveClassFromTypeIndex(type_idx));
386     if (param_type == nullptr) {
387       CHECK(self->IsExceptionPending());
388       LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
389           << m->GetTypeDescriptorFromTypeIdx(type_idx) << "\n"
390           << self->GetException()->Dump();
391       self->ClearException();
392       ++error_count;
393     } else if (!param_type->IsPrimitive()) {
394       // TODO: There is a compaction bug here since GetClassFromTypeIdx can cause thread suspension,
395       // this is a hard to fix problem since the args can contain Object*, we need to save and
396       // restore them by using a visitor similar to the ones used in the trampoline entrypoints.
397       ObjPtr<mirror::Object> argument =
398           (reinterpret_cast<StackReference<mirror::Object>*>(&args[i + offset]))->AsMirrorPtr();
399       if (argument != nullptr && !argument->InstanceOf(param_type)) {
400         LOG(ERROR) << "JNI ERROR (app bug): attempt to pass an instance of "
401                    << argument->PrettyTypeOf() << " as argument " << (i + 1)
402                    << " to " << m->PrettyMethod();
403         ++error_count;
404       }
405     } else if (param_type->IsPrimitiveLong() || param_type->IsPrimitiveDouble()) {
406       offset++;
407     } else {
408       int32_t arg = static_cast<int32_t>(args[i + offset]);
409       if (param_type->IsPrimitiveBoolean()) {
410         if (arg != JNI_TRUE && arg != JNI_FALSE) {
411           LOG(ERROR) << "JNI ERROR (app bug): expected jboolean (0/1) but got value of "
412               << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
413           ++error_count;
414         }
415       } else if (param_type->IsPrimitiveByte()) {
416         if (arg < -128 || arg > 127) {
417           LOG(ERROR) << "JNI ERROR (app bug): expected jbyte but got value of "
418               << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
419           ++error_count;
420         }
421       } else if (param_type->IsPrimitiveChar()) {
422         if (args[i + offset] > 0xFFFF) {
423           LOG(ERROR) << "JNI ERROR (app bug): expected jchar but got value of "
424               << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
425           ++error_count;
426         }
427       } else if (param_type->IsPrimitiveShort()) {
428         if (arg < -32768 || arg > 0x7FFF) {
429           LOG(ERROR) << "JNI ERROR (app bug): expected jshort but got value of "
430               << arg << " as argument " << (i + 1) << " to " << m->PrettyMethod();
431           ++error_count;
432         }
433       }
434     }
435   }
436   if (UNLIKELY(error_count > 0)) {
437     // TODO: pass the JNI function name (such as "CallVoidMethodV") through so we can call JniAbort
438     // with an argument.
439     vm->JniAbortF(nullptr, "bad arguments passed to %s (see above for details)",
440                   m->PrettyMethod().c_str());
441   }
442 }
443 
FindVirtualMethod(ObjPtr<mirror::Object> receiver,ArtMethod * method)444 ArtMethod* FindVirtualMethod(ObjPtr<mirror::Object> receiver, ArtMethod* method)
445     REQUIRES_SHARED(Locks::mutator_lock_) {
446   return receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(method, kRuntimePointerSize);
447 }
448 
449 
InvokeWithArgArray(const ScopedObjectAccessAlreadyRunnable & soa,ArtMethod * method,ArgArray * arg_array,JValue * result,const char * shorty)450 void InvokeWithArgArray(const ScopedObjectAccessAlreadyRunnable& soa,
451                                ArtMethod* method, ArgArray* arg_array, JValue* result,
452                                const char* shorty)
453     REQUIRES_SHARED(Locks::mutator_lock_) {
454   uint32_t* args = arg_array->GetArray();
455   if (UNLIKELY(soa.Env()->IsCheckJniEnabled())) {
456     CheckMethodArguments(soa.Vm(), method->GetInterfaceMethodIfProxy(kRuntimePointerSize), args);
457   }
458   method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
459 }
460 
461 ALWAYS_INLINE
CheckArgsForInvokeMethod(ArtMethod * np_method,ObjPtr<mirror::ObjectArray<mirror::Object>> objects)462 bool CheckArgsForInvokeMethod(ArtMethod* np_method,
463                               ObjPtr<mirror::ObjectArray<mirror::Object>> objects)
464     REQUIRES_SHARED(Locks::mutator_lock_) {
465   const dex::TypeList* classes = np_method->GetParameterTypeList();
466   uint32_t classes_size = (classes == nullptr) ? 0 : classes->Size();
467   uint32_t arg_count = (objects == nullptr) ? 0 : objects->GetLength();
468   if (UNLIKELY(arg_count != classes_size)) {
469     ThrowIllegalArgumentException(StringPrintf("Wrong number of arguments; expected %d, got %d",
470                                                classes_size, arg_count).c_str());
471     return false;
472   }
473   return true;
474 }
475 
476 ALWAYS_INLINE
InvokeMethodImpl(const ScopedObjectAccessAlreadyRunnable & soa,ArtMethod * m,ArtMethod * np_method,ObjPtr<mirror::Object> receiver,ObjPtr<mirror::ObjectArray<mirror::Object>> objects,const char ** shorty,JValue * result)477 bool InvokeMethodImpl(const ScopedObjectAccessAlreadyRunnable& soa,
478                       ArtMethod* m,
479                       ArtMethod* np_method,
480                       ObjPtr<mirror::Object> receiver,
481                       ObjPtr<mirror::ObjectArray<mirror::Object>> objects,
482                       const char** shorty,
483                       JValue* result) REQUIRES_SHARED(Locks::mutator_lock_) {
484   // Invoke the method.
485   uint32_t shorty_len = 0;
486   *shorty = np_method->GetShorty(&shorty_len);
487   ArgArray arg_array(*shorty, shorty_len);
488   if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, np_method, soa.Self())) {
489     CHECK(soa.Self()->IsExceptionPending());
490     return false;
491   }
492 
493   InvokeWithArgArray(soa, m, &arg_array, result, *shorty);
494 
495   // Wrap any exception with "Ljava/lang/reflect/InvocationTargetException;" and return early.
496   if (soa.Self()->IsExceptionPending()) {
497     // To abort a transaction we use a fake exception that should never be caught by the bytecode
498     // and therefore it makes no sense to wrap it.
499     if (Runtime::Current()->IsTransactionAborted()) {
500       DCHECK(soa.Self()->GetException()->GetClass()->DescriptorEquals(
501                   "Ldalvik/system/TransactionAbortError;"))
502           << soa.Self()->GetException()->GetClass()->PrettyDescriptor();
503     } else {
504       // If we get another exception when we are trying to wrap, then just use that instead.
505       StackHandleScope<2u> hs(soa.Self());
506       Handle<mirror::Throwable> cause = hs.NewHandle(soa.Self()->GetException());
507       soa.Self()->ClearException();
508       Handle<mirror::Object> exception_instance =
509           WellKnownClasses::java_lang_reflect_InvocationTargetException_init->NewObject<'L'>(
510               hs, soa.Self(), cause);
511       if (exception_instance == nullptr) {
512         soa.Self()->AssertPendingException();
513         return false;
514       }
515       soa.Self()->SetException(exception_instance->AsThrowable());
516     }
517     return false;
518   }
519 
520   return true;
521 }
522 
523 }  // anonymous namespace
524 
525 template <>
526 NO_STACK_PROTECTOR
InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,ArtMethod * method,va_list args)527 JValue InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
528                          jobject obj,
529                          ArtMethod* method,
530                          va_list args) REQUIRES_SHARED(Locks::mutator_lock_) {
531   // We want to make sure that the stack is not within a small distance from the
532   // protected region in case we are calling into a leaf function whose stack
533   // check has been elided.
534   if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
535     ThrowStackOverflowError(soa.Self());
536     return JValue();
537   }
538   bool is_string_init = method->IsStringConstructor();
539   if (is_string_init) {
540     // Replace calls to String.<init> with equivalent StringFactory call.
541     method = WellKnownClasses::StringInitToStringFactory(method);
542   }
543   ObjPtr<mirror::Object> receiver = method->IsStatic() ? nullptr : soa.Decode<mirror::Object>(obj);
544   uint32_t shorty_len = 0;
545   const char* shorty =
546       method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
547   JValue result;
548   ArgArray arg_array(shorty, shorty_len);
549   arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
550   InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
551   if (is_string_init) {
552     // For string init, remap original receiver to StringFactory result.
553     UpdateReference(soa.Self(), obj, result.GetL());
554   }
555   return result;
556 }
557 
558 template <>
559 NO_STACK_PROTECTOR
InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,jmethodID mid,va_list args)560 JValue InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
561                          jobject obj,
562                          jmethodID mid,
563                          va_list args) REQUIRES_SHARED(Locks::mutator_lock_) {
564   DCHECK(mid != nullptr) << "Called with null jmethodID";
565   return InvokeWithVarArgs(soa, obj, jni::DecodeArtMethod(mid), args);
566 }
567 
568 template <>
InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,ArtMethod * method,const jvalue * args)569 JValue InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
570                          jobject obj,
571                          ArtMethod* method,
572                          const jvalue* args) {
573   // We want to make sure that the stack is not within a small distance from the
574   // protected region in case we are calling into a leaf function whose stack
575   // check has been elided.
576   if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
577     ThrowStackOverflowError(soa.Self());
578     return JValue();
579   }
580   bool is_string_init = method->IsStringConstructor();
581   if (is_string_init) {
582     // Replace calls to String.<init> with equivalent StringFactory call.
583     method = WellKnownClasses::StringInitToStringFactory(method);
584   }
585   ObjPtr<mirror::Object> receiver = method->IsStatic() ? nullptr : soa.Decode<mirror::Object>(obj);
586   uint32_t shorty_len = 0;
587   const char* shorty =
588       method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
589   JValue result;
590   ArgArray arg_array(shorty, shorty_len);
591   arg_array.BuildArgArrayFromJValues(soa, receiver, args);
592   InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
593   if (is_string_init) {
594     // For string init, remap original receiver to StringFactory result.
595     UpdateReference(soa.Self(), obj, result.GetL());
596   }
597   return result;
598 }
599 
600 template <>
InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,jmethodID mid,const jvalue * args)601 JValue InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
602                          jobject obj,
603                          jmethodID mid,
604                          const jvalue* args) {
605   DCHECK(mid != nullptr) << "Called with null jmethodID";
606   return InvokeWithJValues(soa, obj, jni::DecodeArtMethod(mid), args);
607 }
608 
609 template <>
InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,ArtMethod * interface_method,const jvalue * args)610 JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
611                                            jobject obj,
612                                            ArtMethod* interface_method,
613                                            const jvalue* args) {
614   // We want to make sure that the stack is not within a small distance from the
615   // protected region in case we are calling into a leaf function whose stack
616   // check has been elided.
617   if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
618     ThrowStackOverflowError(soa.Self());
619     return JValue();
620   }
621   ObjPtr<mirror::Object> receiver = soa.Decode<mirror::Object>(obj);
622   ArtMethod* method = FindVirtualMethod(receiver, interface_method);
623   bool is_string_init = method->IsStringConstructor();
624   if (is_string_init) {
625     // Replace calls to String.<init> with equivalent StringFactory call.
626     method = WellKnownClasses::StringInitToStringFactory(method);
627     receiver = nullptr;
628   }
629   uint32_t shorty_len = 0;
630   const char* shorty =
631       method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
632   JValue result;
633   ArgArray arg_array(shorty, shorty_len);
634   arg_array.BuildArgArrayFromJValues(soa, receiver, args);
635   InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
636   if (is_string_init) {
637     // For string init, remap original receiver to StringFactory result.
638     UpdateReference(soa.Self(), obj, result.GetL());
639   }
640   return result;
641 }
642 
643 template <>
InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,jmethodID mid,const jvalue * args)644 JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
645                                            jobject obj,
646                                            jmethodID mid,
647                                            const jvalue* args) {
648   DCHECK(mid != nullptr) << "Called with null jmethodID";
649   return InvokeVirtualOrInterfaceWithJValues(soa, obj, jni::DecodeArtMethod(mid), args);
650 }
651 
652 template <>
InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,ArtMethod * interface_method,va_list args)653 JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
654                                            jobject obj,
655                                            ArtMethod* interface_method,
656                                            va_list args) {
657   // We want to make sure that the stack is not within a small distance from the
658   // protected region in case we are calling into a leaf function whose stack
659   // check has been elided.
660   if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
661     ThrowStackOverflowError(soa.Self());
662     return JValue();
663   }
664 
665   ObjPtr<mirror::Object> receiver = soa.Decode<mirror::Object>(obj);
666   ArtMethod* method = FindVirtualMethod(receiver, interface_method);
667   bool is_string_init = method->IsStringConstructor();
668   if (is_string_init) {
669     // Replace calls to String.<init> with equivalent StringFactory call.
670     method = WellKnownClasses::StringInitToStringFactory(method);
671     receiver = nullptr;
672   }
673   uint32_t shorty_len = 0;
674   const char* shorty =
675       method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len);
676   JValue result;
677   ArgArray arg_array(shorty, shorty_len);
678   arg_array.BuildArgArrayFromVarArgs(soa, receiver, args);
679   InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
680   if (is_string_init) {
681     // For string init, remap original receiver to StringFactory result.
682     UpdateReference(soa.Self(), obj, result.GetL());
683   }
684   return result;
685 }
686 
687 template <>
InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable & soa,jobject obj,jmethodID mid,va_list args)688 JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
689                                            jobject obj,
690                                            jmethodID mid,
691                                            va_list args) {
692   DCHECK(mid != nullptr) << "Called with null jmethodID";
693   return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, jni::DecodeArtMethod(mid), args);
694 }
695 
696 template <PointerSize kPointerSize>
InvokeMethod(const ScopedObjectAccessAlreadyRunnable & soa,jobject javaMethod,jobject javaReceiver,jobject javaArgs,size_t num_frames)697 jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject javaMethod,
698                      jobject javaReceiver, jobject javaArgs, size_t num_frames) {
699   // We want to make sure that the stack is not within a small distance from the
700   // protected region in case we are calling into a leaf function whose stack
701   // check has been elided.
702   if (UNLIKELY(__builtin_frame_address(0) <
703                soa.Self()->GetStackEndForInterpreter(true))) {
704     ThrowStackOverflowError(soa.Self());
705     return nullptr;
706   }
707 
708   ObjPtr<mirror::Executable> executable = soa.Decode<mirror::Executable>(javaMethod);
709   const bool accessible = executable->IsAccessible();
710   ArtMethod* m = executable->GetArtMethod();
711 
712   ObjPtr<mirror::Class> declaring_class = m->GetDeclaringClass();
713   if (UNLIKELY(!declaring_class->IsVisiblyInitialized())) {
714     Thread* self = soa.Self();
715     StackHandleScope<1> hs(self);
716     HandleWrapperObjPtr<mirror::Class> h_class(hs.NewHandleWrapper(&declaring_class));
717     if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(
718                       self, h_class, /*can_init_fields=*/ true, /*can_init_parents=*/ true))) {
719       DCHECK(self->IsExceptionPending());
720       return nullptr;
721     }
722     DCHECK(h_class->IsInitializing());
723   }
724 
725   ObjPtr<mirror::Object> receiver;
726   if (!m->IsStatic()) {
727     // Replace calls to String.<init> with equivalent StringFactory call.
728     if (declaring_class->IsStringClass() && m->IsConstructor()) {
729       m = WellKnownClasses::StringInitToStringFactory(m);
730       CHECK(javaReceiver == nullptr);
731     } else {
732       // Check that the receiver is non-null and an instance of the field's declaring class.
733       receiver = soa.Decode<mirror::Object>(javaReceiver);
734       if (!VerifyObjectIsClass(receiver, declaring_class)) {
735         return nullptr;
736       }
737 
738       // Find the actual implementation of the virtual method.
739       m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(m, kPointerSize);
740     }
741   }
742 
743   // Get our arrays of arguments and their types, and check they're the same size.
744   ObjPtr<mirror::ObjectArray<mirror::Object>> objects =
745       soa.Decode<mirror::ObjectArray<mirror::Object>>(javaArgs);
746   auto* np_method = m->GetInterfaceMethodIfProxy(kPointerSize);
747   if (!CheckArgsForInvokeMethod(np_method, objects)) {
748     return nullptr;
749   }
750 
751   // If method is not set to be accessible, verify it can be accessed by the caller.
752   ObjPtr<mirror::Class> calling_class;
753   if (!accessible && !VerifyAccess(soa.Self(),
754                                    receiver,
755                                    declaring_class,
756                                    m->GetAccessFlags(),
757                                    &calling_class,
758                                    num_frames)) {
759     ThrowIllegalAccessException(
760         StringPrintf("Class %s cannot access %s method %s of class %s",
761             calling_class == nullptr ? "null" : calling_class->PrettyClass().c_str(),
762             PrettyJavaAccessFlags(m->GetAccessFlags()).c_str(),
763             m->PrettyMethod().c_str(),
764             m->GetDeclaringClass() == nullptr ? "null" :
765                 m->GetDeclaringClass()->PrettyClass().c_str()).c_str());
766     return nullptr;
767   }
768 
769   // Invoke the method.
770   JValue result;
771   const char* shorty;
772   if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) {
773     return nullptr;
774   }
775   return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result));
776 }
777 
778 template
779 jobject InvokeMethod<PointerSize::k32>(const ScopedObjectAccessAlreadyRunnable& soa,
780                                        jobject javaMethod,
781                                        jobject javaReceiver,
782                                        jobject javaArgs,
783                                        size_t num_frames);
784 template
785 jobject InvokeMethod<PointerSize::k64>(const ScopedObjectAccessAlreadyRunnable& soa,
786                                        jobject javaMethod,
787                                        jobject javaReceiver,
788                                        jobject javaArgs,
789                                        size_t num_frames);
790 
InvokeConstructor(const ScopedObjectAccessAlreadyRunnable & soa,ArtMethod * constructor,ObjPtr<mirror::Object> receiver,jobject javaArgs)791 void InvokeConstructor(const ScopedObjectAccessAlreadyRunnable& soa,
792                        ArtMethod* constructor,
793                        ObjPtr<mirror::Object> receiver,
794                        jobject javaArgs) {
795   // We want to make sure that the stack is not within a small distance from the
796   // protected region in case we are calling into a leaf function whose stack
797   // check has been elided.
798   if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEndForInterpreter(true))) {
799     ThrowStackOverflowError(soa.Self());
800     return;
801   }
802 
803   if (kIsDebugBuild) {
804     CHECK(constructor->IsConstructor());
805 
806     ObjPtr<mirror::Class> declaring_class = constructor->GetDeclaringClass();
807     CHECK(declaring_class->IsInitializing());
808 
809     // Calls to String.<init> should have been repplaced with with equivalent StringFactory calls.
810     CHECK(!declaring_class->IsStringClass());
811 
812     // Check that the receiver is non-null and an instance of the field's declaring class.
813     CHECK(receiver != nullptr);
814     CHECK(VerifyObjectIsClass(receiver, declaring_class));
815     CHECK_EQ(constructor,
816              receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(constructor,
817                                                                           kRuntimePointerSize));
818   }
819 
820   // Get our arrays of arguments and their types, and check they're the same size.
821   ObjPtr<mirror::ObjectArray<mirror::Object>> objects =
822       soa.Decode<mirror::ObjectArray<mirror::Object>>(javaArgs);
823   ArtMethod* np_method = constructor->GetInterfaceMethodIfProxy(kRuntimePointerSize);
824   if (!CheckArgsForInvokeMethod(np_method, objects)) {
825     return;
826   }
827 
828   // Invoke the constructor.
829   JValue result;
830   const char* shorty;
831   InvokeMethodImpl(soa, constructor, np_method, receiver, objects, &shorty, &result);
832 }
833 
BoxPrimitive(Primitive::Type src_class,const JValue & value)834 ObjPtr<mirror::Object> BoxPrimitive(Primitive::Type src_class, const JValue& value) {
835   if (src_class == Primitive::kPrimNot) {
836     return value.GetL();
837   }
838   if (src_class == Primitive::kPrimVoid) {
839     // There's no such thing as a void field, and void methods invoked via reflection return null.
840     return nullptr;
841   }
842 
843   ArtMethod* m = nullptr;
844   const char* shorty;
845   switch (src_class) {
846   case Primitive::kPrimBoolean:
847     m = WellKnownClasses::java_lang_Boolean_valueOf;
848     shorty = "LZ";
849     break;
850   case Primitive::kPrimByte:
851     m = WellKnownClasses::java_lang_Byte_valueOf;
852     shorty = "LB";
853     break;
854   case Primitive::kPrimChar:
855     m = WellKnownClasses::java_lang_Character_valueOf;
856     shorty = "LC";
857     break;
858   case Primitive::kPrimDouble:
859     m = WellKnownClasses::java_lang_Double_valueOf;
860     shorty = "LD";
861     break;
862   case Primitive::kPrimFloat:
863     m = WellKnownClasses::java_lang_Float_valueOf;
864     shorty = "LF";
865     break;
866   case Primitive::kPrimInt:
867     m = WellKnownClasses::java_lang_Integer_valueOf;
868     shorty = "LI";
869     break;
870   case Primitive::kPrimLong:
871     m = WellKnownClasses::java_lang_Long_valueOf;
872     shorty = "LJ";
873     break;
874   case Primitive::kPrimShort:
875     m = WellKnownClasses::java_lang_Short_valueOf;
876     shorty = "LS";
877     break;
878   default:
879     LOG(FATAL) << static_cast<int>(src_class);
880     shorty = nullptr;
881   }
882 
883   ScopedObjectAccessUnchecked soa(Thread::Current());
884   DCHECK_EQ(soa.Self()->GetState(), ThreadState::kRunnable);
885 
886   ArgArray arg_array(shorty, 2);
887   JValue result;
888   if (src_class == Primitive::kPrimDouble || src_class == Primitive::kPrimLong) {
889     arg_array.AppendWide(value.GetJ());
890   } else {
891     arg_array.Append(value.GetI());
892   }
893 
894   DCHECK(m->GetDeclaringClass()->IsInitialized());  // By `ClassLinker::RunRootClinits()`.
895   m->Invoke(soa.Self(), arg_array.GetArray(), arg_array.GetNumBytes(), &result, shorty);
896   return result.GetL();
897 }
898 
UnboxingFailureKind(ArtField * f)899 static std::string UnboxingFailureKind(ArtField* f)
900     REQUIRES_SHARED(Locks::mutator_lock_) {
901   if (f != nullptr) {
902     return "field " + f->PrettyField(false);
903   }
904   return "result";
905 }
906 
UnboxPrimitive(ObjPtr<mirror::Object> o,ObjPtr<mirror::Class> dst_class,ArtField * f,JValue * unboxed_value)907 static bool UnboxPrimitive(ObjPtr<mirror::Object> o,
908                            ObjPtr<mirror::Class> dst_class,
909                            ArtField* f,
910                            JValue* unboxed_value)
911     REQUIRES_SHARED(Locks::mutator_lock_) {
912   bool unbox_for_result = (f == nullptr);
913   if (!dst_class->IsPrimitive()) {
914     if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
915       if (!unbox_for_result) {
916         ThrowIllegalArgumentException(
917             StringPrintf("%s has type %s, got %s",
918                          UnboxingFailureKind(f).c_str(),
919                          dst_class->PrettyDescriptor().c_str(),
920                          o->PrettyTypeOf().c_str()).c_str());
921       } else {
922         ThrowClassCastException(
923             StringPrintf("Couldn't convert result of type %s to %s",
924                          o->PrettyTypeOf().c_str(),
925                          dst_class->PrettyDescriptor().c_str()).c_str());
926       }
927       return false;
928     }
929     unboxed_value->SetL(o);
930     return true;
931   }
932   if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
933     ThrowIllegalArgumentException(StringPrintf("Can't unbox %s to void",
934                                                UnboxingFailureKind(f).c_str()).c_str());
935     return false;
936   }
937   if (UNLIKELY(o == nullptr)) {
938     if (!unbox_for_result) {
939       ThrowIllegalArgumentException(
940           StringPrintf("%s has type %s, got null",
941                        UnboxingFailureKind(f).c_str(),
942                        dst_class->PrettyDescriptor().c_str()).c_str());
943     } else {
944       ThrowNullPointerException(
945           StringPrintf("Expected to unbox a '%s' primitive type but was returned null",
946                        dst_class->PrettyDescriptor().c_str()).c_str());
947     }
948     return false;
949   }
950 
951   JValue boxed_value;
952   ObjPtr<mirror::Class> klass = o->GetClass();
953   Primitive::Type primitive_type;
954   ArtField* primitive_field = &klass->GetIFieldsPtr()->At(0);
955   if (klass->DescriptorEquals("Ljava/lang/Boolean;")) {
956     primitive_type = Primitive::kPrimBoolean;
957     boxed_value.SetZ(primitive_field->GetBoolean(o));
958   } else if (klass->DescriptorEquals("Ljava/lang/Byte;")) {
959     primitive_type = Primitive::kPrimByte;
960     boxed_value.SetB(primitive_field->GetByte(o));
961   } else if (klass->DescriptorEquals("Ljava/lang/Character;")) {
962     primitive_type = Primitive::kPrimChar;
963     boxed_value.SetC(primitive_field->GetChar(o));
964   } else if (klass->DescriptorEquals("Ljava/lang/Float;")) {
965     primitive_type = Primitive::kPrimFloat;
966     boxed_value.SetF(primitive_field->GetFloat(o));
967   } else if (klass->DescriptorEquals("Ljava/lang/Double;")) {
968     primitive_type = Primitive::kPrimDouble;
969     boxed_value.SetD(primitive_field->GetDouble(o));
970   } else if (klass->DescriptorEquals("Ljava/lang/Integer;")) {
971     primitive_type = Primitive::kPrimInt;
972     boxed_value.SetI(primitive_field->GetInt(o));
973   } else if (klass->DescriptorEquals("Ljava/lang/Long;")) {
974     primitive_type = Primitive::kPrimLong;
975     boxed_value.SetJ(primitive_field->GetLong(o));
976   } else if (klass->DescriptorEquals("Ljava/lang/Short;")) {
977     primitive_type = Primitive::kPrimShort;
978     boxed_value.SetS(primitive_field->GetShort(o));
979   } else {
980     std::string temp;
981     ThrowIllegalArgumentException(
982         StringPrintf("%s has type %s, got %s", UnboxingFailureKind(f).c_str(),
983             dst_class->PrettyDescriptor().c_str(),
984             PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str());
985     return false;
986   }
987 
988   return ConvertPrimitiveValue(unbox_for_result,
989                                primitive_type,
990                                dst_class->GetPrimitiveType(),
991                                boxed_value, unboxed_value);
992 }
993 
UnboxPrimitiveForField(ObjPtr<mirror::Object> o,ObjPtr<mirror::Class> dst_class,ArtField * f,JValue * unboxed_value)994 bool UnboxPrimitiveForField(ObjPtr<mirror::Object> o,
995                             ObjPtr<mirror::Class> dst_class,
996                             ArtField* f,
997                             JValue* unboxed_value) {
998   DCHECK(f != nullptr);
999   return UnboxPrimitive(o, dst_class, f, unboxed_value);
1000 }
1001 
UnboxPrimitiveForResult(ObjPtr<mirror::Object> o,ObjPtr<mirror::Class> dst_class,JValue * unboxed_value)1002 bool UnboxPrimitiveForResult(ObjPtr<mirror::Object> o,
1003                              ObjPtr<mirror::Class> dst_class,
1004                              JValue* unboxed_value) {
1005   return UnboxPrimitive(o, dst_class, nullptr, unboxed_value);
1006 }
1007 
GetCallingClass(Thread * self,size_t num_frames)1008 ObjPtr<mirror::Class> GetCallingClass(Thread* self, size_t num_frames) {
1009   NthCallerVisitor visitor(self, num_frames);
1010   visitor.WalkStack();
1011   return visitor.caller != nullptr ? visitor.caller->GetDeclaringClass() : nullptr;
1012 }
1013 
VerifyAccess(Thread * self,ObjPtr<mirror::Object> obj,ObjPtr<mirror::Class> declaring_class,uint32_t access_flags,ObjPtr<mirror::Class> * calling_class,size_t num_frames)1014 bool VerifyAccess(Thread* self,
1015                   ObjPtr<mirror::Object> obj,
1016                   ObjPtr<mirror::Class> declaring_class,
1017                   uint32_t access_flags,
1018                   ObjPtr<mirror::Class>* calling_class,
1019                   size_t num_frames) {
1020   if ((access_flags & kAccPublic) != 0) {
1021     return true;
1022   }
1023   ObjPtr<mirror::Class> klass = GetCallingClass(self, num_frames);
1024   if (UNLIKELY(klass == nullptr)) {
1025     // The caller is an attached native thread.
1026     return false;
1027   }
1028   *calling_class = klass;
1029   return VerifyAccess(obj, declaring_class, access_flags, klass);
1030 }
1031 
VerifyAccess(ObjPtr<mirror::Object> obj,ObjPtr<mirror::Class> declaring_class,uint32_t access_flags,ObjPtr<mirror::Class> calling_class)1032 bool VerifyAccess(ObjPtr<mirror::Object> obj,
1033                   ObjPtr<mirror::Class> declaring_class,
1034                   uint32_t access_flags,
1035                   ObjPtr<mirror::Class> calling_class) {
1036   if (calling_class == declaring_class) {
1037     return true;
1038   }
1039   ScopedAssertNoThreadSuspension sants("verify-access");
1040   if ((access_flags & kAccPrivate) != 0) {
1041     return false;
1042   }
1043   if ((access_flags & kAccProtected) != 0) {
1044     if (obj != nullptr && !obj->InstanceOf(calling_class) &&
1045         !declaring_class->IsInSamePackage(calling_class)) {
1046       return false;
1047     } else if (declaring_class->IsAssignableFrom(calling_class)) {
1048       return true;
1049     }
1050   }
1051   return declaring_class->IsInSamePackage(calling_class);
1052 }
1053 
InvalidReceiverError(ObjPtr<mirror::Object> o,ObjPtr<mirror::Class> c)1054 void InvalidReceiverError(ObjPtr<mirror::Object> o, ObjPtr<mirror::Class> c) {
1055   std::string expected_class_name(mirror::Class::PrettyDescriptor(c));
1056   std::string actual_class_name(mirror::Object::PrettyTypeOf(o));
1057   ThrowIllegalArgumentException(StringPrintf("Expected receiver of type %s, but got %s",
1058                                              expected_class_name.c_str(),
1059                                              actual_class_name.c_str()).c_str());
1060 }
1061 
1062 // This only works if there's one reference which points to the object in obj.
1063 // Will need to be fixed if there's cases where it's not.
UpdateReference(Thread * self,jobject obj,ObjPtr<mirror::Object> result)1064 void UpdateReference(Thread* self, jobject obj, ObjPtr<mirror::Object> result) {
1065   IndirectRef ref = reinterpret_cast<IndirectRef>(obj);
1066   IndirectRefKind kind = IndirectReferenceTable::GetIndirectRefKind(ref);
1067   if (kind == kLocal) {
1068     self->GetJniEnv()->UpdateLocal(obj, result);
1069   } else if (kind == kJniTransition) {
1070     LOG(FATAL) << "Unsupported UpdateReference for kind kJniTransition";
1071   } else if (kind == kGlobal) {
1072     self->GetJniEnv()->GetVm()->UpdateGlobal(self, ref, result);
1073   } else {
1074     DCHECK_EQ(kind, kWeakGlobal);
1075     self->GetJniEnv()->GetVm()->UpdateWeakGlobal(self, ref, result);
1076   }
1077 }
1078 
1079 }  // namespace art
1080