Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -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_VMClassLoader.h" |
| 18 | |
David Sehr | 79e2607 | 2018-04-06 17:58:50 -0700 | [diff] [blame] | 19 | #include "base/zip_archive.h" |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 20 | #include "class_linker.h" |
David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 21 | #include "dex/descriptors_names.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 22 | #include "dex/dex_file_loader.h" |
Vladimir Marko | 5924a4a | 2018-05-29 17:40:41 +0100 | [diff] [blame] | 23 | #include "dex/utf.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 24 | #include "jni/jni_internal.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 25 | #include "mirror/class_loader.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 26 | #include "mirror/object-inl.h" |
Andreas Gampe | 87583b3 | 2017-05-25 11:22:18 -0700 | [diff] [blame] | 27 | #include "native_util.h" |
Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 28 | #include "nativehelper/jni_macros.h" |
Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 29 | #include "nativehelper/scoped_local_ref.h" |
| 30 | #include "nativehelper/scoped_utf_chars.h" |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 31 | #include "obj_ptr.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 32 | #include "scoped_fast_native_object_access-inl.h" |
Andreas Gampe | a1d2f95 | 2017-04-20 22:53:58 -0700 | [diff] [blame] | 33 | #include "well_known_classes.h" |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 34 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 35 | namespace art { |
| 36 | |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 37 | // A class so we can be friends with ClassLinker and access internal methods. |
| 38 | class VMClassLoader { |
| 39 | public: |
| 40 | static mirror::Class* LookupClass(ClassLinker* cl, |
| 41 | Thread* self, |
| 42 | const char* descriptor, |
| 43 | size_t hash, |
| 44 | ObjPtr<mirror::ClassLoader> class_loader) |
| 45 | REQUIRES(!Locks::classlinker_classes_lock_) |
| 46 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 47 | return cl->LookupClass(self, descriptor, hash, class_loader); |
| 48 | } |
| 49 | |
| 50 | static ObjPtr<mirror::Class> FindClassInPathClassLoader(ClassLinker* cl, |
| 51 | ScopedObjectAccessAlreadyRunnable& soa, |
| 52 | Thread* self, |
| 53 | const char* descriptor, |
| 54 | size_t hash, |
| 55 | Handle<mirror::ClassLoader> class_loader) |
| 56 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 57 | ObjPtr<mirror::Class> result; |
Nicolas Geoffray | 7d8d8ff | 2016-11-02 12:38:05 +0000 | [diff] [blame] | 58 | if (cl->FindClassInBaseDexClassLoader(soa, self, descriptor, hash, class_loader, &result)) { |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 59 | return result; |
| 60 | } |
| 61 | return nullptr; |
| 62 | } |
| 63 | }; |
| 64 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 65 | static jclass VMClassLoader_findLoadedClass(JNIEnv* env, jclass, jobject javaLoader, |
| 66 | jstring javaName) { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 67 | ScopedFastNativeObjectAccess soa(env); |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 68 | ObjPtr<mirror::ClassLoader> loader = soa.Decode<mirror::ClassLoader>(javaLoader); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 69 | ScopedUtfChars name(env, javaName); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 70 | if (name.c_str() == nullptr) { |
| 71 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 72 | } |
Mathieu Chartier | ab0ed82 | 2014-09-11 14:21:41 -0700 | [diff] [blame] | 73 | ClassLinker* cl = Runtime::Current()->GetClassLinker(); |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 74 | |
| 75 | // Compute hash once. |
Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 76 | std::string descriptor(DotToDescriptor(name.c_str())); |
Mathieu Chartier | e7c9a8c | 2014-11-06 16:35:45 -0800 | [diff] [blame] | 77 | const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str()); |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 78 | |
| 79 | ObjPtr<mirror::Class> c = VMClassLoader::LookupClass(cl, |
| 80 | soa.Self(), |
| 81 | descriptor.c_str(), |
| 82 | descriptor_hash, |
| 83 | loader); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 84 | if (c != nullptr && c->IsResolved()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 85 | return soa.AddLocalReference<jclass>(c); |
Ian Rogers | be125a9 | 2012-01-11 15:19:49 -0800 | [diff] [blame] | 86 | } |
Jeff Hao | 7c8aa83 | 2016-06-06 11:09:20 -0700 | [diff] [blame] | 87 | // If class is erroneous, throw the earlier failure, wrapped in certain cases. See b/28787733. |
| 88 | if (c != nullptr && c->IsErroneous()) { |
Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 89 | cl->ThrowEarlierClassFailure(c.Ptr()); |
Jeff Hao | 7c8aa83 | 2016-06-06 11:09:20 -0700 | [diff] [blame] | 90 | Thread* self = soa.Self(); |
Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 91 | ObjPtr<mirror::Class> iae_class = |
Jeff Hao | 7c8aa83 | 2016-06-06 11:09:20 -0700 | [diff] [blame] | 92 | self->DecodeJObject(WellKnownClasses::java_lang_IllegalAccessError)->AsClass(); |
Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 93 | ObjPtr<mirror::Class> ncdfe_class = |
Jeff Hao | 7c8aa83 | 2016-06-06 11:09:20 -0700 | [diff] [blame] | 94 | self->DecodeJObject(WellKnownClasses::java_lang_NoClassDefFoundError)->AsClass(); |
Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 95 | ObjPtr<mirror::Class> exception = self->GetException()->GetClass(); |
Vladimir Marko | 72ab684 | 2017-01-20 19:32:50 +0000 | [diff] [blame] | 96 | if (exception == iae_class || exception == ncdfe_class) { |
Jeff Hao | 7c8aa83 | 2016-06-06 11:09:20 -0700 | [diff] [blame] | 97 | self->ThrowNewWrappedException("Ljava/lang/ClassNotFoundException;", |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 98 | c->PrettyDescriptor().c_str()); |
Jeff Hao | 7c8aa83 | 2016-06-06 11:09:20 -0700 | [diff] [blame] | 99 | } |
| 100 | return nullptr; |
| 101 | } |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 102 | |
| 103 | // Hard-coded performance optimization: We know that all failed libcore calls to findLoadedClass |
| 104 | // are followed by a call to the the classloader to actually |
| 105 | // load the class. |
Mathieu Chartier | ab0ed82 | 2014-09-11 14:21:41 -0700 | [diff] [blame] | 106 | if (loader != nullptr) { |
| 107 | // Try the common case. |
| 108 | StackHandleScope<1> hs(soa.Self()); |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 109 | c = VMClassLoader::FindClassInPathClassLoader(cl, |
| 110 | soa, |
| 111 | soa.Self(), |
| 112 | descriptor.c_str(), |
| 113 | descriptor_hash, |
| 114 | hs.NewHandle(loader)); |
Mathieu Chartier | ab0ed82 | 2014-09-11 14:21:41 -0700 | [diff] [blame] | 115 | if (c != nullptr) { |
| 116 | return soa.AddLocalReference<jclass>(c); |
| 117 | } |
| 118 | } |
Andreas Gampe | 34ee684 | 2014-12-02 15:43:52 -0800 | [diff] [blame] | 119 | |
| 120 | // The class wasn't loaded, yet, and our fast-path did not apply (e.g., we didn't understand the |
| 121 | // classloader chain). |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 122 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 125 | /* |
Neil Fuller | ef48605 | 2015-06-04 12:24:08 +0000 | [diff] [blame] | 126 | * Returns an array of entries from the boot classpath that could contain resources. |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 127 | */ |
Neil Fuller | ef48605 | 2015-06-04 12:24:08 +0000 | [diff] [blame] | 128 | static jobjectArray VMClassLoader_getBootClassPathEntries(JNIEnv* env, jclass) { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 129 | const std::vector<const DexFile*>& path = |
| 130 | Runtime::Current()->GetClassLinker()->GetBootClassPath(); |
Vladimir Marko | 4b3d690 | 2017-05-30 15:23:54 +0100 | [diff] [blame] | 131 | jobjectArray array = |
| 132 | env->NewObjectArray(path.size(), WellKnownClasses::java_lang_String, nullptr); |
| 133 | if (array == nullptr) { |
| 134 | DCHECK(env->ExceptionCheck()); |
| 135 | return nullptr; |
| 136 | } |
Neil Fuller | ef48605 | 2015-06-04 12:24:08 +0000 | [diff] [blame] | 137 | for (size_t i = 0; i < path.size(); ++i) { |
| 138 | const DexFile* dex_file = path[i]; |
Neil Fuller | 1e27c5b | 2015-06-03 15:46:29 +0000 | [diff] [blame] | 139 | |
Calin Juravle | a308a32 | 2017-07-18 16:51:51 -0700 | [diff] [blame] | 140 | // For multidex locations, e.g., x.jar!classes2.dex, we want to look into x.jar. |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 141 | const std::string location(DexFileLoader::GetBaseLocation(dex_file->GetLocation())); |
Neil Fuller | 1e27c5b | 2015-06-03 15:46:29 +0000 | [diff] [blame] | 142 | |
Vladimir Marko | 4b3d690 | 2017-05-30 15:23:54 +0100 | [diff] [blame] | 143 | ScopedLocalRef<jstring> javaPath(env, env->NewStringUTF(location.c_str())); |
| 144 | if (javaPath.get() == nullptr) { |
| 145 | DCHECK(env->ExceptionCheck()); |
| 146 | return nullptr; |
| 147 | } |
| 148 | env->SetObjectArrayElement(array, i, javaPath.get()); |
Neil Fuller | 1e27c5b | 2015-06-03 15:46:29 +0000 | [diff] [blame] | 149 | } |
Neil Fuller | ef48605 | 2015-06-04 12:24:08 +0000 | [diff] [blame] | 150 | return array; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 153 | static JNINativeMethod gMethods[] = { |
Igor Murashkin | 3b6f440 | 2017-02-16 16:13:17 -0800 | [diff] [blame] | 154 | FAST_NATIVE_METHOD(VMClassLoader, findLoadedClass, "(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;"), |
Neil Fuller | ef48605 | 2015-06-04 12:24:08 +0000 | [diff] [blame] | 155 | NATIVE_METHOD(VMClassLoader, getBootClassPathEntries, "()[Ljava/lang/String;"), |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 156 | }; |
| 157 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 158 | void register_java_lang_VMClassLoader(JNIEnv* env) { |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 159 | REGISTER_NATIVE_METHODS("java/lang/VMClassLoader"); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | } // namespace art |