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 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 19 | #include "class_linker.h" |
| 20 | #include "jni_internal.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 21 | #include "mirror/class_loader.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 22 | #include "mirror/object-inl.h" |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 23 | #include "scoped_fast_native_object_access.h" |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 24 | #include "ScopedUtfChars.h" |
| 25 | #include "zip_archive.h" |
| 26 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 27 | namespace art { |
| 28 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 29 | static jclass VMClassLoader_findLoadedClass(JNIEnv* env, jclass, jobject javaLoader, |
| 30 | jstring javaName) { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 31 | ScopedFastNativeObjectAccess soa(env); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 32 | mirror::ClassLoader* loader = soa.Decode<mirror::ClassLoader*>(javaLoader); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 33 | ScopedUtfChars name(env, javaName); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 34 | if (name.c_str() == nullptr) { |
| 35 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 36 | } |
Mathieu Chartier | ab0ed82 | 2014-09-11 14:21:41 -0700 | [diff] [blame] | 37 | ClassLinker* cl = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 38 | std::string descriptor(DotToDescriptor(name.c_str())); |
Mathieu Chartier | e7c9a8c | 2014-11-06 16:35:45 -0800 | [diff] [blame^] | 39 | const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str()); |
| 40 | mirror::Class* c = cl->LookupClass(soa.Self(), descriptor.c_str(), descriptor_hash, loader); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 41 | if (c != nullptr && c->IsResolved()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 42 | return soa.AddLocalReference<jclass>(c); |
Ian Rogers | be125a9 | 2012-01-11 15:19:49 -0800 | [diff] [blame] | 43 | } |
Mathieu Chartier | ab0ed82 | 2014-09-11 14:21:41 -0700 | [diff] [blame] | 44 | if (loader != nullptr) { |
| 45 | // Try the common case. |
| 46 | StackHandleScope<1> hs(soa.Self()); |
Mathieu Chartier | e7c9a8c | 2014-11-06 16:35:45 -0800 | [diff] [blame^] | 47 | c = cl->FindClassInPathClassLoader(soa, soa.Self(), descriptor.c_str(), descriptor_hash, |
| 48 | hs.NewHandle(loader)); |
Mathieu Chartier | ab0ed82 | 2014-09-11 14:21:41 -0700 | [diff] [blame] | 49 | if (c != nullptr) { |
| 50 | return soa.AddLocalReference<jclass>(c); |
| 51 | } |
| 52 | } |
| 53 | // Class wasn't resolved so it may be erroneous or not yet ready, force the caller to go into |
| 54 | // the regular loadClass code. |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 55 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 58 | static jint VMClassLoader_getBootClassPathSize(JNIEnv*, jclass) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 59 | return Runtime::Current()->GetClassLinker()->GetBootClassPath().size(); |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Returns a string URL for a resource with the specified 'javaName' in |
| 64 | * entry 'index' of the boot class path. |
| 65 | * |
| 66 | * We return a newly-allocated String in the following form: |
| 67 | * |
| 68 | * jar:file://path!/name |
| 69 | * |
| 70 | * Where "path" is the bootstrap class path entry and "name" is the string |
| 71 | * passed into this method. "path" needs to be an absolute path (starting |
| 72 | * with '/'); if it's not we'd need to make it absolute as part of forming |
| 73 | * the URL string. |
| 74 | */ |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 75 | static jstring VMClassLoader_getBootClassPathResource(JNIEnv* env, jclass, jstring javaName, |
| 76 | jint index) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 77 | ScopedUtfChars name(env, javaName); |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 78 | if (name.c_str() == nullptr) { |
| 79 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 82 | const std::vector<const DexFile*>& path = |
| 83 | Runtime::Current()->GetClassLinker()->GetBootClassPath(); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 84 | if (index < 0 || size_t(index) >= path.size()) { |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 85 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 86 | } |
| 87 | const DexFile* dex_file = path[index]; |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 88 | |
| 89 | // For multidex locations, e.g., x.jar:classes2.dex, we want to look into x.jar. |
| 90 | const std::string& location(dex_file->GetBaseLocation()); |
| 91 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 92 | std::string error_msg; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 93 | std::unique_ptr<ZipArchive> zip_archive(ZipArchive::Open(location.c_str(), &error_msg)); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 94 | if (zip_archive.get() == nullptr) { |
| 95 | LOG(WARNING) << "Failed to open zip archive '" << location << "': " << error_msg; |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 96 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 97 | } |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 98 | std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(name.c_str(), &error_msg)); |
Andreas Gampe | cb8f9e8 | 2014-07-24 15:35:50 -0700 | [diff] [blame] | 99 | if (zip_entry.get() == nullptr) { |
| 100 | return nullptr; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | std::string url; |
| 104 | StringAppendF(&url, "jar:file://%s!/%s", location.c_str(), name.c_str()); |
| 105 | return env->NewStringUTF(url.c_str()); |
| 106 | } |
| 107 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 108 | static JNINativeMethod gMethods[] = { |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 109 | NATIVE_METHOD(VMClassLoader, findLoadedClass, "!(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;"), |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 110 | NATIVE_METHOD(VMClassLoader, getBootClassPathResource, "(Ljava/lang/String;I)Ljava/lang/String;"), |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 111 | NATIVE_METHOD(VMClassLoader, getBootClassPathSize, "!()I"), |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 112 | }; |
| 113 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 114 | void register_java_lang_VMClassLoader(JNIEnv* env) { |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 115 | REGISTER_NATIVE_METHODS("java/lang/VMClassLoader"); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | } // namespace art |