| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 1 | /* |
| 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 Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 17 | #include "java_lang_reflect_Constructor.h" |
| 18 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 19 | #include "art_method-inl.h" |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 20 | #include "class_linker.h" |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 21 | #include "jni_internal.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 22 | #include "mirror/class-inl.h" |
| Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 23 | #include "mirror/method.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 24 | #include "mirror/object-inl.h" |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 25 | #include "reflection.h" |
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 26 | #include "scoped_fast_native_object_access.h" |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 27 | #include "well_known_classes.h" |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 28 | |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 29 | namespace art { |
| 30 | |
| Mathieu Chartier | f36cb5f | 2015-04-24 16:55:16 -0700 | [diff] [blame] | 31 | /* |
| Andreas Gampe | 8208bdd | 2015-04-27 17:26:37 -0700 | [diff] [blame] | 32 | * We can also safely assume the constructor isn't associated |
| Mathieu Chartier | f36cb5f | 2015-04-24 16:55:16 -0700 | [diff] [blame] | 33 | * 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 | */ |
| 36 | static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) { |
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 37 | ScopedFastNativeObjectAccess soa(env); |
| Sebastien Hertz | 2d2f2a9 | 2015-04-28 15:00:41 +0200 | [diff] [blame] | 38 | mirror::Constructor* m = soa.Decode<mirror::Constructor*>(javaMethod); |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 39 | StackHandleScope<1> hs(soa.Self()); |
| 40 | Handle<mirror::Class> c(hs.NewHandle(m->GetDeclaringClass())); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 41 | if (UNLIKELY(c->IsAbstract())) { |
| Mathieu Chartier | f36cb5f | 2015-04-24 16:55:16 -0700 | [diff] [blame] | 42 | soa.Self()->ThrowNewExceptionF("Ljava/lang/InstantiationException;", "Can't instantiate %s %s", |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 43 | c->IsInterface() ? "interface" : "abstract class", |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 44 | PrettyDescriptor(c.Get()).c_str()); |
| Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 45 | return nullptr; |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 46 | } |
| Andreas Gampe | 8208bdd | 2015-04-27 17:26:37 -0700 | [diff] [blame] | 47 | // Verify that we can access the class. |
| Sebastien Hertz | 2d2f2a9 | 2015-04-28 15:00:41 +0200 | [diff] [blame] | 48 | if (!m->IsAccessible() && !c->IsPublic()) { |
| Mathieu Chartier | f36cb5f | 2015-04-24 16:55:16 -0700 | [diff] [blame] | 49 | 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 Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 59 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), c, true, true)) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 60 | DCHECK(soa.Self()->IsExceptionPending()); |
| Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 61 | return nullptr; |
| Brian Carlstrom | 5d40f18 | 2011-09-26 22:29:18 -0700 | [diff] [blame] | 62 | } |
| Mathieu Chartier | f4b9762 | 2014-03-10 13:26:27 -0700 | [diff] [blame] | 63 | bool movable = true; |
| Mathieu Chartier | f36cb5f | 2015-04-24 16:55:16 -0700 | [diff] [blame] | 64 | if (!kMovingClasses && c->IsClassClass()) { |
| Mathieu Chartier | f4b9762 | 2014-03-10 13:26:27 -0700 | [diff] [blame] | 65 | movable = false; |
| 66 | } |
| Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 67 | |
| 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 Chartier | f4b9762 | 2014-03-10 13:26:27 -0700 | [diff] [blame] | 73 | mirror::Object* receiver = |
| 74 | movable ? c->AllocObject(soa.Self()) : c->AllocNonMovableObject(soa.Self()); |
| Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 75 | if (receiver == nullptr) { |
| 76 | return nullptr; |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 77 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 78 | jobject javaReceiver = soa.AddLocalReference<jobject>(receiver); |
| Mathieu Chartier | f36cb5f | 2015-04-24 16:55:16 -0700 | [diff] [blame] | 79 | InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, 1); |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 80 | // Constructors are ()V methods, so we shouldn't touch the result of InvokeMethod. |
| 81 | return javaReceiver; |
| 82 | } |
| 83 | |
| 84 | static JNINativeMethod gMethods[] = { |
| Mathieu Chartier | fc58af4 | 2015-04-16 18:00:39 -0700 | [diff] [blame] | 85 | NATIVE_METHOD(Constructor, newInstance, "!([Ljava/lang/Object;)Ljava/lang/Object;"), |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 88 | void register_java_lang_reflect_Constructor(JNIEnv* env) { |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 89 | REGISTER_NATIVE_METHODS("java/lang/reflect/Constructor"); |
| Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | } // namespace art |