blob: 93ba84a8c3b33a54b146cc82f70878462f966622 [file] [log] [blame]
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andreas Gampe277ccbd2014-11-03 21:36:10 -080017#include "java_lang_reflect_Constructor.h"
18
Mathieu Chartiere401d142015-04-22 13:56:20 -070019#include "art_method-inl.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070020#include "class_linker.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070021#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "mirror/class-inl.h"
Mathieu Chartierfc58af42015-04-16 18:00:39 -070023#include "mirror/method.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "mirror/object-inl.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070025#include "reflection.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070026#include "scoped_fast_native_object_access.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070027#include "well_known_classes.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070028
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070029namespace art {
30
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070031/*
Andreas Gampe8208bdd2015-04-27 17:26:37 -070032 * We can also safely assume the constructor isn't associated
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070033 * with an interface, array, or primitive class. If this is coming from
34 * native, it is OK to avoid access checks since JNI does not enforce them.
35 */
36static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) {
Ian Rogers53b8b092014-03-13 23:45:53 -070037 ScopedFastNativeObjectAccess soa(env);
Sebastien Hertz2d2f2a92015-04-28 15:00:41 +020038 mirror::Constructor* m = soa.Decode<mirror::Constructor*>(javaMethod);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070039 StackHandleScope<1> hs(soa.Self());
40 Handle<mirror::Class> c(hs.NewHandle(m->GetDeclaringClass()));
Ian Rogers62d6c772013-02-27 08:32:07 -080041 if (UNLIKELY(c->IsAbstract())) {
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070042 soa.Self()->ThrowNewExceptionF("Ljava/lang/InstantiationException;", "Can't instantiate %s %s",
Ian Rogers62d6c772013-02-27 08:32:07 -080043 c->IsInterface() ? "interface" : "abstract class",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070044 PrettyDescriptor(c.Get()).c_str());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080045 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070046 }
Andreas Gampe8208bdd2015-04-27 17:26:37 -070047 // Verify that we can access the class.
Sebastien Hertz2d2f2a92015-04-28 15:00:41 +020048 if (!m->IsAccessible() && !c->IsPublic()) {
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070049 auto* caller = GetCallingClass(soa.Self(), 1);
50 // If caller is null, then we called from JNI, just avoid the check since JNI avoids most
51 // access checks anyways. TODO: Investigate if this the correct behavior.
52 if (caller != nullptr && !caller->CanAccess(c.Get())) {
53 soa.Self()->ThrowNewExceptionF(
54 "Ljava/lang/IllegalAccessException;", "%s is not accessible from %s",
55 PrettyClass(c.Get()).c_str(), PrettyClass(caller).c_str());
56 return nullptr;
57 }
58 }
Ian Rogers7b078e82014-09-10 14:44:24 -070059 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), c, true, true)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070060 DCHECK(soa.Self()->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080061 return nullptr;
Brian Carlstrom5d40f182011-09-26 22:29:18 -070062 }
Mathieu Chartierf4b97622014-03-10 13:26:27 -070063 bool movable = true;
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070064 if (!kMovingClasses && c->IsClassClass()) {
Mathieu Chartierf4b97622014-03-10 13:26:27 -070065 movable = false;
66 }
Jeff Hao848f70a2014-01-15 13:49:50 -080067
68 // String constructor is replaced by a StringFactory method in InvokeMethod.
69 if (c->IsStringClass()) {
70 return InvokeMethod(soa, javaMethod, nullptr, javaArgs, 1);
71 }
72
Mathieu Chartierf4b97622014-03-10 13:26:27 -070073 mirror::Object* receiver =
74 movable ? c->AllocObject(soa.Self()) : c->AllocNonMovableObject(soa.Self());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080075 if (receiver == nullptr) {
76 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070077 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -070078 jobject javaReceiver = soa.AddLocalReference<jobject>(receiver);
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070079 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, 1);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070080 // Constructors are ()V methods, so we shouldn't touch the result of InvokeMethod.
81 return javaReceiver;
82}
83
84static JNINativeMethod gMethods[] = {
Mathieu Chartierfc58af42015-04-16 18:00:39 -070085 NATIVE_METHOD(Constructor, newInstance, "!([Ljava/lang/Object;)Ljava/lang/Object;"),
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070086};
87
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070088void register_java_lang_reflect_Constructor(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -070089 REGISTER_NATIVE_METHODS("java/lang/reflect/Constructor");
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070090}
91
92} // namespace art