blob: 73d12f1a596a029c485cd6c57a7bdee0f084574a [file] [log] [blame]
Elliott Hughes64bf5a32011-09-20 14:43:12 -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_VMClassLoader.h"
18
Elliott Hughes64bf5a32011-09-20 14:43:12 -070019#include "class_linker.h"
20#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "mirror/class_loader.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070022#include "mirror/object-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070023#include "scoped_fast_native_object_access-inl.h"
Elliott Hughes64bf5a32011-09-20 14:43:12 -070024#include "ScopedUtfChars.h"
25#include "zip_archive.h"
26
Elliott Hughes64bf5a32011-09-20 14:43:12 -070027namespace art {
28
Ian Rogers7b078e82014-09-10 14:44:24 -070029static jclass VMClassLoader_findLoadedClass(JNIEnv* env, jclass, jobject javaLoader,
30 jstring javaName) {
Ian Rogers53b8b092014-03-13 23:45:53 -070031 ScopedFastNativeObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -070032 ObjPtr<mirror::ClassLoader> loader = soa.Decode<mirror::ClassLoader>(javaLoader);
Elliott Hughes64bf5a32011-09-20 14:43:12 -070033 ScopedUtfChars name(env, javaName);
Ian Rogers7b078e82014-09-10 14:44:24 -070034 if (name.c_str() == nullptr) {
35 return nullptr;
Elliott Hughes64bf5a32011-09-20 14:43:12 -070036 }
Mathieu Chartierab0ed822014-09-11 14:21:41 -070037 ClassLinker* cl = Runtime::Current()->GetClassLinker();
Brian Carlstromf91c8c32011-09-21 17:30:34 -070038 std::string descriptor(DotToDescriptor(name.c_str()));
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -080039 const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str());
Mathieu Chartier0795f232016-09-27 18:43:30 -070040 mirror::Class* c = cl->LookupClass(soa.Self(),
41 descriptor.c_str(),
42 descriptor_hash,
Mathieu Chartier1cc62e42016-10-03 18:01:28 -070043 loader.Ptr());
Ian Rogers7b078e82014-09-10 14:44:24 -070044 if (c != nullptr && c->IsResolved()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045 return soa.AddLocalReference<jclass>(c);
Ian Rogersbe125a92012-01-11 15:19:49 -080046 }
Jeff Hao7c8aa832016-06-06 11:09:20 -070047 // If class is erroneous, throw the earlier failure, wrapped in certain cases. See b/28787733.
48 if (c != nullptr && c->IsErroneous()) {
49 cl->ThrowEarlierClassFailure(c);
50 Thread* self = soa.Self();
51 mirror::Class* eiie_class =
52 self->DecodeJObject(WellKnownClasses::java_lang_ExceptionInInitializerError)->AsClass();
53 mirror::Class* iae_class =
54 self->DecodeJObject(WellKnownClasses::java_lang_IllegalAccessError)->AsClass();
55 mirror::Class* ncdfe_class =
56 self->DecodeJObject(WellKnownClasses::java_lang_NoClassDefFoundError)->AsClass();
57 mirror::Class* exception = self->GetException()->GetClass();
58 if (exception == eiie_class || exception == iae_class || exception == ncdfe_class) {
59 self->ThrowNewWrappedException("Ljava/lang/ClassNotFoundException;",
60 PrettyDescriptor(c).c_str());
61 }
62 return nullptr;
63 }
Mathieu Chartierab0ed822014-09-11 14:21:41 -070064 if (loader != nullptr) {
65 // Try the common case.
66 StackHandleScope<1> hs(soa.Self());
Andreas Gampef865ea92015-04-13 22:14:19 -070067 cl->FindClassInPathClassLoader(soa, soa.Self(), descriptor.c_str(), descriptor_hash,
Igor Murashkinb1d8c312015-08-04 11:18:43 -070068 hs.NewHandle(loader), &c);
Mathieu Chartierab0ed822014-09-11 14:21:41 -070069 if (c != nullptr) {
70 return soa.AddLocalReference<jclass>(c);
71 }
72 }
73 // Class wasn't resolved so it may be erroneous or not yet ready, force the caller to go into
74 // the regular loadClass code.
Ian Rogers7b078e82014-09-10 14:44:24 -070075 return nullptr;
Elliott Hughes64bf5a32011-09-20 14:43:12 -070076}
77
Elliott Hughes64bf5a32011-09-20 14:43:12 -070078/*
Neil Fulleref486052015-06-04 12:24:08 +000079 * Returns an array of entries from the boot classpath that could contain resources.
Elliott Hughes64bf5a32011-09-20 14:43:12 -070080 */
Neil Fulleref486052015-06-04 12:24:08 +000081static jobjectArray VMClassLoader_getBootClassPathEntries(JNIEnv* env, jclass) {
Ian Rogers7b078e82014-09-10 14:44:24 -070082 const std::vector<const DexFile*>& path =
83 Runtime::Current()->GetClassLinker()->GetBootClassPath();
Neil Fulleref486052015-06-04 12:24:08 +000084 jclass stringClass = env->FindClass("java/lang/String");
85 jobjectArray array = env->NewObjectArray(path.size(), stringClass, nullptr);
86 for (size_t i = 0; i < path.size(); ++i) {
87 const DexFile* dex_file = path[i];
Neil Fuller1e27c5b2015-06-03 15:46:29 +000088
Neil Fulleref486052015-06-04 12:24:08 +000089 // For multidex locations, e.g., x.jar:classes2.dex, we want to look into x.jar.
90 const std::string& location(dex_file->GetBaseLocation());
Neil Fuller1e27c5b2015-06-03 15:46:29 +000091
Neil Fulleref486052015-06-04 12:24:08 +000092 jstring javaPath = env->NewStringUTF(location.c_str());
93 env->SetObjectArrayElement(array, i, javaPath);
Neil Fuller1e27c5b2015-06-03 15:46:29 +000094 }
Neil Fulleref486052015-06-04 12:24:08 +000095 return array;
Elliott Hughes64bf5a32011-09-20 14:43:12 -070096}
97
Elliott Hughes64bf5a32011-09-20 14:43:12 -070098static JNINativeMethod gMethods[] = {
Ian Rogers53b8b092014-03-13 23:45:53 -070099 NATIVE_METHOD(VMClassLoader, findLoadedClass, "!(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;"),
Neil Fulleref486052015-06-04 12:24:08 +0000100 NATIVE_METHOD(VMClassLoader, getBootClassPathEntries, "()[Ljava/lang/String;"),
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700101};
102
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700103void register_java_lang_VMClassLoader(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700104 REGISTER_NATIVE_METHODS("java/lang/VMClassLoader");
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700105}
106
107} // namespace art