| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -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 "dalvik_system_DexFile.h" |
| 18 | |
| Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 19 | #include <sstream> |
| 20 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 21 | #include "android-base/stringprintf.h" |
| 22 | |
| Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 23 | #include "base/casts.h" |
| David Sehr | 891a50e | 2017-10-27 17:01:07 -0700 | [diff] [blame] | 24 | #include "base/file_utils.h" |
| Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 25 | #include "base/logging.h" |
| David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 26 | #include "base/os.h" |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 27 | #include "base/stl_util.h" |
| David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 28 | #include "base/utils.h" |
| David Sehr | 79e2607 | 2018-04-06 17:58:50 -0700 | [diff] [blame] | 29 | #include "base/zip_archive.h" |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 30 | #include "class_linker.h" |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 31 | #include <class_loader_context.h> |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 32 | #include "common_throws.h" |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 33 | #include "compiler_filter.h" |
| David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 34 | #include "dex/art_dex_file_loader.h" |
| David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 35 | #include "dex/descriptors_names.h" |
| David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 36 | #include "dex/dex_file-inl.h" |
| 37 | #include "dex/dex_file_loader.h" |
| Andreas Gampe | 88dbad3 | 2018-06-26 19:54:12 -0700 | [diff] [blame] | 38 | #include "handle_scope-inl.h" |
| David Srbecky | fb3de3d | 2018-01-29 16:11:49 +0000 | [diff] [blame] | 39 | #include "jit/debugger_interface.h" |
| Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 40 | #include "jni/jni_internal.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 41 | #include "mirror/class_loader.h" |
| Ian Rogers | 05f3057 | 2013-02-20 12:13:11 -0800 | [diff] [blame] | 42 | #include "mirror/object-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 43 | #include "mirror/string.h" |
| Andreas Gampe | 87583b3 | 2017-05-25 11:22:18 -0700 | [diff] [blame] | 44 | #include "native_util.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 45 | #include "nativehelper/jni_macros.h" |
| Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 46 | #include "nativehelper/scoped_local_ref.h" |
| 47 | #include "nativehelper/scoped_utf_chars.h" |
| Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 48 | #include "oat_file.h" |
| Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 49 | #include "oat_file_assistant.h" |
| Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 50 | #include "oat_file_manager.h" |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 51 | #include "runtime.h" |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 52 | #include "scoped_thread_state_change-inl.h" |
| Ian Rogers | dd157d7 | 2014-05-15 14:47:50 -0700 | [diff] [blame] | 53 | #include "well_known_classes.h" |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 54 | |
| 55 | namespace art { |
| 56 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 57 | using android::base::StringPrintf; |
| 58 | |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 59 | static bool ConvertJavaArrayToDexFiles( |
| 60 | JNIEnv* env, |
| 61 | jobject arrayObject, |
| 62 | /*out*/ std::vector<const DexFile*>& dex_files, |
| 63 | /*out*/ const OatFile*& oat_file) { |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 64 | jarray array = reinterpret_cast<jarray>(arrayObject); |
| 65 | |
| 66 | jsize array_size = env->GetArrayLength(array); |
| 67 | if (env->ExceptionCheck() == JNI_TRUE) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 68 | return false; |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | // TODO: Optimize. On 32bit we can use an int array. |
| 72 | jboolean is_long_data_copied; |
| 73 | jlong* long_data = env->GetLongArrayElements(reinterpret_cast<jlongArray>(array), |
| 74 | &is_long_data_copied); |
| 75 | if (env->ExceptionCheck() == JNI_TRUE) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 76 | return false; |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 77 | } |
| 78 | |
| Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 79 | oat_file = reinterpret_cast64<const OatFile*>(long_data[kOatFileIndex]); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 80 | dex_files.reserve(array_size - 1); |
| 81 | for (jsize i = kDexFileIndexStart; i < array_size; ++i) { |
| Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 82 | dex_files.push_back(reinterpret_cast64<const DexFile*>(long_data[i])); |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | env->ReleaseLongArrayElements(reinterpret_cast<jlongArray>(array), long_data, JNI_ABORT); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 86 | return env->ExceptionCheck() != JNI_TRUE; |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 87 | } |
| 88 | |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 89 | static jlongArray ConvertDexFilesToJavaArray(JNIEnv* env, |
| 90 | const OatFile* oat_file, |
| 91 | std::vector<std::unique_ptr<const DexFile>>& vec) { |
| 92 | // Add one for the oat file. |
| Mathieu Chartier | 80b37b7 | 2015-10-12 18:13:39 -0700 | [diff] [blame] | 93 | jlongArray long_array = env->NewLongArray(static_cast<jsize>(kDexFileIndexStart + vec.size())); |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 94 | if (env->ExceptionCheck() == JNI_TRUE) { |
| 95 | return nullptr; |
| 96 | } |
| 97 | |
| 98 | jboolean is_long_data_copied; |
| 99 | jlong* long_data = env->GetLongArrayElements(long_array, &is_long_data_copied); |
| 100 | if (env->ExceptionCheck() == JNI_TRUE) { |
| 101 | return nullptr; |
| 102 | } |
| 103 | |
| Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 104 | long_data[kOatFileIndex] = reinterpret_cast64<jlong>(oat_file); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 105 | for (size_t i = 0; i < vec.size(); ++i) { |
| Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 106 | long_data[kDexFileIndexStart + i] = reinterpret_cast64<jlong>(vec[i].get()); |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | env->ReleaseLongArrayElements(long_array, long_data, 0); |
| 110 | if (env->ExceptionCheck() == JNI_TRUE) { |
| 111 | return nullptr; |
| 112 | } |
| 113 | |
| 114 | // Now release all the unique_ptrs. |
| 115 | for (auto& dex_file : vec) { |
| Andreas Gampe | afaf7f8 | 2018-10-16 11:32:38 -0700 | [diff] [blame] | 116 | dex_file.release(); // NOLINT |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | return long_array; |
| 120 | } |
| 121 | |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 122 | // A smart pointer that provides read-only access to a Java string's UTF chars. |
| 123 | // Unlike libcore's NullableScopedUtfChars, this will *not* throw NullPointerException if |
| 124 | // passed a null jstring. The correct idiom is: |
| 125 | // |
| 126 | // NullableScopedUtfChars name(env, javaName); |
| Brian Carlstrom | c252c3e | 2011-10-16 23:21:02 -0700 | [diff] [blame] | 127 | // if (env->ExceptionCheck()) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 128 | // return null; |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 129 | // } |
| 130 | // // ... use name.c_str() |
| 131 | // |
| 132 | // TODO: rewrite to get rid of this, or change ScopedUtfChars to offer this option. |
| 133 | class NullableScopedUtfChars { |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 134 | public: |
| 135 | NullableScopedUtfChars(JNIEnv* env, jstring s) : mEnv(env), mString(s) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 136 | mUtfChars = (s != nullptr) ? env->GetStringUTFChars(s, nullptr) : nullptr; |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | ~NullableScopedUtfChars() { |
| 140 | if (mUtfChars) { |
| 141 | mEnv->ReleaseStringUTFChars(mString, mUtfChars); |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 142 | } |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 143 | } |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 144 | |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 145 | const char* c_str() const { |
| 146 | return mUtfChars; |
| 147 | } |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 148 | |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 149 | size_t size() const { |
| 150 | return strlen(mUtfChars); |
| 151 | } |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 152 | |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 153 | // Element access. |
| 154 | const char& operator[](size_t n) const { |
| 155 | return mUtfChars[n]; |
| 156 | } |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 157 | |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 158 | private: |
| 159 | JNIEnv* mEnv; |
| 160 | jstring mString; |
| 161 | const char* mUtfChars; |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 162 | |
| Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 163 | // Disallow copy and assignment. |
| 164 | NullableScopedUtfChars(const NullableScopedUtfChars&); |
| 165 | void operator=(const NullableScopedUtfChars&); |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 166 | }; |
| 167 | |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 168 | static MemMap AllocateDexMemoryMap(JNIEnv* env, jint start, jint end) { |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 169 | if (end <= start) { |
| 170 | ScopedObjectAccess soa(env); |
| 171 | ThrowWrappedIOException("Bad range"); |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 172 | return MemMap::Invalid(); |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | std::string error_message; |
| 176 | size_t length = static_cast<size_t>(end - start); |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 177 | MemMap dex_mem_map = MemMap::MapAnonymous("DEX data", |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 178 | length, |
| 179 | PROT_READ | PROT_WRITE, |
| Vladimir Marko | 1130659 | 2018-10-26 14:22:59 +0100 | [diff] [blame] | 180 | /*low_4gb=*/ false, |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 181 | &error_message); |
| 182 | if (!dex_mem_map.IsValid()) { |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 183 | ScopedObjectAccess soa(env); |
| 184 | ThrowWrappedIOException("%s", error_message.c_str()); |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 185 | return MemMap::Invalid(); |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 186 | } |
| 187 | return dex_mem_map; |
| 188 | } |
| 189 | |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 190 | static const DexFile* CreateDexFile(JNIEnv* env, MemMap&& dex_mem_map) { |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 191 | std::string location = StringPrintf("Anonymous-DexFile@%p-%p", |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 192 | dex_mem_map.Begin(), |
| 193 | dex_mem_map.End()); |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 194 | std::string error_message; |
| David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 195 | const ArtDexFileLoader dex_file_loader; |
| 196 | std::unique_ptr<const DexFile> dex_file(dex_file_loader.Open(location, |
| 197 | 0, |
| 198 | std::move(dex_mem_map), |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 199 | /* verify= */ true, |
| 200 | /* verify_checksum= */ true, |
| David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 201 | &error_message)); |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 202 | if (dex_file == nullptr) { |
| 203 | ScopedObjectAccess soa(env); |
| 204 | ThrowWrappedIOException("%s", error_message.c_str()); |
| 205 | return nullptr; |
| 206 | } |
| 207 | |
| 208 | if (!dex_file->DisableWrite()) { |
| 209 | ScopedObjectAccess soa(env); |
| 210 | ThrowWrappedIOException("Failed to make dex file read-only"); |
| 211 | return nullptr; |
| 212 | } |
| 213 | |
| 214 | return dex_file.release(); |
| 215 | } |
| 216 | |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 217 | static jobject CreateSingleDexFileCookie(JNIEnv* env, MemMap&& data) { |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 218 | std::unique_ptr<const DexFile> dex_file(CreateDexFile(env, std::move(data))); |
| 219 | if (dex_file.get() == nullptr) { |
| 220 | DCHECK(env->ExceptionCheck()); |
| 221 | return nullptr; |
| 222 | } |
| 223 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| 224 | dex_files.push_back(std::move(dex_file)); |
| 225 | return ConvertDexFilesToJavaArray(env, nullptr, dex_files); |
| 226 | } |
| 227 | |
| 228 | static jobject DexFile_createCookieWithDirectBuffer(JNIEnv* env, |
| 229 | jclass, |
| 230 | jobject buffer, |
| 231 | jint start, |
| 232 | jint end) { |
| 233 | uint8_t* base_address = reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(buffer)); |
| 234 | if (base_address == nullptr) { |
| 235 | ScopedObjectAccess soa(env); |
| 236 | ThrowWrappedIOException("dexFileBuffer not direct"); |
| Yi Kong | 4b22b34 | 2018-08-02 14:43:21 -0700 | [diff] [blame] | 237 | return nullptr; |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 238 | } |
| 239 | |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 240 | MemMap dex_mem_map = AllocateDexMemoryMap(env, start, end); |
| 241 | if (!dex_mem_map.IsValid()) { |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 242 | DCHECK(Thread::Current()->IsExceptionPending()); |
| Yi Kong | 4b22b34 | 2018-08-02 14:43:21 -0700 | [diff] [blame] | 243 | return nullptr; |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | size_t length = static_cast<size_t>(end - start); |
| David Brazdil | 1a04148 | 2018-12-18 17:55:08 +0000 | [diff] [blame] | 247 | memcpy(dex_mem_map.Begin(), base_address + start, length); |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 248 | return CreateSingleDexFileCookie(env, std::move(dex_mem_map)); |
| 249 | } |
| 250 | |
| 251 | static jobject DexFile_createCookieWithArray(JNIEnv* env, |
| 252 | jclass, |
| 253 | jbyteArray buffer, |
| 254 | jint start, |
| 255 | jint end) { |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 256 | MemMap dex_mem_map = AllocateDexMemoryMap(env, start, end); |
| 257 | if (!dex_mem_map.IsValid()) { |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 258 | DCHECK(Thread::Current()->IsExceptionPending()); |
| Yi Kong | 4b22b34 | 2018-08-02 14:43:21 -0700 | [diff] [blame] | 259 | return nullptr; |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 260 | } |
| 261 | |
| Vladimir Marko | c34bebf | 2018-08-16 16:12:49 +0100 | [diff] [blame] | 262 | auto destination = reinterpret_cast<jbyte*>(dex_mem_map.Begin()); |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 263 | env->GetByteArrayRegion(buffer, start, end - start, destination); |
| 264 | return CreateSingleDexFileCookie(env, std::move(dex_mem_map)); |
| 265 | } |
| 266 | |
| Calin Juravle | 1f7079b | 2017-04-18 21:25:37 -0700 | [diff] [blame] | 267 | // TODO(calin): clean up the unused parameters (here and in libcore). |
| Mathieu Chartier | b190d94 | 2015-11-12 10:00:58 -0800 | [diff] [blame] | 268 | static jobject DexFile_openDexFileNative(JNIEnv* env, |
| 269 | jclass, |
| 270 | jstring javaSourceName, |
| Calin Juravle | 1f7079b | 2017-04-18 21:25:37 -0700 | [diff] [blame] | 271 | jstring javaOutputName ATTRIBUTE_UNUSED, |
| Mathieu Chartier | b190d94 | 2015-11-12 10:00:58 -0800 | [diff] [blame] | 272 | jint flags ATTRIBUTE_UNUSED, |
| Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 273 | jobject class_loader, |
| 274 | jobjectArray dex_elements) { |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 275 | ScopedUtfChars sourceName(env, javaSourceName); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 276 | if (sourceName.c_str() == nullptr) { |
| Yi Kong | 4b22b34 | 2018-08-02 14:43:21 -0700 | [diff] [blame] | 277 | return nullptr; |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 278 | } |
| Calin Juravle | 1f7079b | 2017-04-18 21:25:37 -0700 | [diff] [blame] | 279 | |
| Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 280 | Runtime* const runtime = Runtime::Current(); |
| 281 | ClassLinker* linker = runtime->GetClassLinker(); |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 282 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 283 | std::vector<std::string> error_msgs; |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 284 | const OatFile* oat_file = nullptr; |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 285 | |
| Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 286 | dex_files = runtime->GetOatFileManager().OpenDexFilesFromOat(sourceName.c_str(), |
| Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 287 | class_loader, |
| 288 | dex_elements, |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 289 | /*out*/ &oat_file, |
| 290 | /*out*/ &error_msgs); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 291 | |
| Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 292 | if (!dex_files.empty()) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 293 | jlongArray array = ConvertDexFilesToJavaArray(env, oat_file, dex_files); |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 294 | if (array == nullptr) { |
| 295 | ScopedObjectAccess soa(env); |
| 296 | for (auto& dex_file : dex_files) { |
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 297 | if (linker->IsDexFileRegistered(soa.Self(), *dex_file)) { |
| Andreas Gampe | afaf7f8 | 2018-10-16 11:32:38 -0700 | [diff] [blame] | 298 | dex_file.release(); // NOLINT |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 299 | } |
| 300 | } |
| 301 | } |
| 302 | return array; |
| Brian Carlstrom | 756ee4e | 2013-10-03 15:46:12 -0700 | [diff] [blame] | 303 | } else { |
| Vladimir Marko | 60836d5 | 2014-01-16 15:53:38 +0000 | [diff] [blame] | 304 | ScopedObjectAccess soa(env); |
| Andreas Gampe | 329d188 | 2014-04-08 10:32:19 -0700 | [diff] [blame] | 305 | CHECK(!error_msgs.empty()); |
| 306 | // The most important message is at the end. So set up nesting by going forward, which will |
| 307 | // wrap the existing exception as a cause for the following one. |
| 308 | auto it = error_msgs.begin(); |
| 309 | auto itEnd = error_msgs.end(); |
| 310 | for ( ; it != itEnd; ++it) { |
| 311 | ThrowWrappedIOException("%s", it->c_str()); |
| 312 | } |
| 313 | |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 314 | return nullptr; |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 315 | } |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 316 | } |
| 317 | |
| Mathieu Chartier | 1d7d7f1 | 2015-09-25 16:48:57 -0700 | [diff] [blame] | 318 | static jboolean DexFile_closeDexFile(JNIEnv* env, jclass, jobject cookie) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 319 | std::vector<const DexFile*> dex_files; |
| 320 | const OatFile* oat_file; |
| 321 | if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) { |
| 322 | Thread::Current()->AssertPendingException(); |
| Mathieu Chartier | 1d7d7f1 | 2015-09-25 16:48:57 -0700 | [diff] [blame] | 323 | return JNI_FALSE; |
| 324 | } |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 325 | Runtime* const runtime = Runtime::Current(); |
| Mathieu Chartier | 1d7d7f1 | 2015-09-25 16:48:57 -0700 | [diff] [blame] | 326 | bool all_deleted = true; |
| David Srbecky | 912f36c | 2018-09-08 12:22:58 +0100 | [diff] [blame] | 327 | // We need to clear the caches since they may contain pointers to the dex instructions. |
| 328 | // Different dex file can be loaded at the same memory location later by chance. |
| 329 | Thread::ClearAllInterpreterCaches(); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 330 | { |
| 331 | ScopedObjectAccess soa(env); |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 332 | ObjPtr<mirror::Object> dex_files_object = soa.Decode<mirror::Object>(cookie); |
| Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 333 | ObjPtr<mirror::LongArray> long_dex_files = dex_files_object->AsLongArray(); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 334 | // Delete dex files associated with this dalvik.system.DexFile since there should not be running |
| 335 | // code using it. dex_files is a vector due to multidex. |
| 336 | ClassLinker* const class_linker = runtime->GetClassLinker(); |
| 337 | int32_t i = kDexFileIndexStart; // Oat file is at index 0. |
| 338 | for (const DexFile* dex_file : dex_files) { |
| 339 | if (dex_file != nullptr) { |
| David Srbecky | afc60cd | 2018-12-05 11:59:31 +0000 | [diff] [blame] | 340 | RemoveNativeDebugInfoForDex(soa.Self(), dex_file); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 341 | // Only delete the dex file if the dex cache is not found to prevent runtime crashes if there |
| 342 | // are calls to DexFile.close while the ART DexFile is still in use. |
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 343 | if (!class_linker->IsDexFileRegistered(soa.Self(), *dex_file)) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 344 | // Clear the element in the array so that we can call close again. |
| 345 | long_dex_files->Set(i, 0); |
| 346 | delete dex_file; |
| 347 | } else { |
| 348 | all_deleted = false; |
| 349 | } |
| 350 | } |
| 351 | ++i; |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 352 | } |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 353 | } |
| Mathieu Chartier | 1d7d7f1 | 2015-09-25 16:48:57 -0700 | [diff] [blame] | 354 | |
| Mathieu Chartier | fdccbd4 | 2015-10-14 10:58:41 -0700 | [diff] [blame] | 355 | // oat_file can be null if we are running without dex2oat. |
| 356 | if (all_deleted && oat_file != nullptr) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 357 | // If all of the dex files are no longer in use we can unmap the corresponding oat file. |
| 358 | VLOG(class_linker) << "Unregistering " << oat_file; |
| 359 | runtime->GetOatFileManager().UnRegisterAndDeleteOatFile(oat_file); |
| 360 | } |
| Mathieu Chartier | 1d7d7f1 | 2015-09-25 16:48:57 -0700 | [diff] [blame] | 361 | return all_deleted ? JNI_TRUE : JNI_FALSE; |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 364 | static jclass DexFile_defineClassNative(JNIEnv* env, |
| 365 | jclass, |
| 366 | jstring javaName, |
| 367 | jobject javaLoader, |
| Mathieu Chartier | 00310e0 | 2015-10-17 12:46:42 -0700 | [diff] [blame] | 368 | jobject cookie, |
| 369 | jobject dexFile) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 370 | std::vector<const DexFile*> dex_files; |
| 371 | const OatFile* oat_file; |
| 372 | if (!ConvertJavaArrayToDexFiles(env, cookie, /*out*/ dex_files, /*out*/ oat_file)) { |
| Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 373 | VLOG(class_linker) << "Failed to find dex_file"; |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 374 | DCHECK(env->ExceptionCheck()); |
| 375 | return nullptr; |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 376 | } |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 377 | |
| Brian Carlstrom | df14324 | 2011-10-10 18:05:34 -0700 | [diff] [blame] | 378 | ScopedUtfChars class_name(env, javaName); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 379 | if (class_name.c_str() == nullptr) { |
| Brian Carlstrom | 2e450bf | 2013-09-06 15:39:46 -0700 | [diff] [blame] | 380 | VLOG(class_linker) << "Failed to find class_name"; |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 381 | return nullptr; |
| Brian Carlstrom | df14324 | 2011-10-10 18:05:34 -0700 | [diff] [blame] | 382 | } |
| Elliott Hughes | 9557241 | 2011-12-13 18:14:20 -0800 | [diff] [blame] | 383 | const std::string descriptor(DotToDescriptor(class_name.c_str())); |
| Mathieu Chartier | e7c9a8c | 2014-11-06 16:35:45 -0800 | [diff] [blame] | 384 | const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str())); |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 385 | for (auto& dex_file : dex_files) { |
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 386 | const dex::ClassDef* dex_class_def = |
| David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 387 | OatDexFile::FindClassDef(*dex_file, descriptor.c_str(), hash); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 388 | if (dex_class_def != nullptr) { |
| 389 | ScopedObjectAccess soa(env); |
| 390 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 391 | StackHandleScope<1> hs(soa.Self()); |
| 392 | Handle<mirror::ClassLoader> class_loader( |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 393 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(javaLoader))); |
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 394 | ObjPtr<mirror::DexCache> dex_cache = |
| 395 | class_linker->RegisterDexFile(*dex_file, class_loader.Get()); |
| 396 | if (dex_cache == nullptr) { |
| 397 | // OOME or InternalError (dexFile already registered with a different class loader). |
| 398 | soa.Self()->AssertPendingException(); |
| 399 | return nullptr; |
| 400 | } |
| Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 401 | ObjPtr<mirror::Class> result = class_linker->DefineClass(soa.Self(), |
| 402 | descriptor.c_str(), |
| 403 | hash, |
| 404 | class_loader, |
| 405 | *dex_file, |
| 406 | *dex_class_def); |
| Mathieu Chartier | 00310e0 | 2015-10-17 12:46:42 -0700 | [diff] [blame] | 407 | // Add the used dex file. This only required for the DexFile.loadClass API since normal |
| 408 | // class loaders already keep their dex files live. |
| Mathieu Chartier | bc5a795 | 2016-10-17 15:46:31 -0700 | [diff] [blame] | 409 | class_linker->InsertDexFileInToClassLoader(soa.Decode<mirror::Object>(dexFile), |
| Mathieu Chartier | 00310e0 | 2015-10-17 12:46:42 -0700 | [diff] [blame] | 410 | class_loader.Get()); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 411 | if (result != nullptr) { |
| Brian Carlstrom | 667ab7c | 2014-10-16 19:12:28 -0700 | [diff] [blame] | 412 | VLOG(class_linker) << "DexFile_defineClassNative returning " << result |
| 413 | << " for " << class_name.c_str(); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 414 | return soa.AddLocalReference<jclass>(result); |
| 415 | } |
| 416 | } |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 417 | } |
| Brian Carlstrom | 667ab7c | 2014-10-16 19:12:28 -0700 | [diff] [blame] | 418 | VLOG(class_linker) << "Failed to find dex_class_def " << class_name.c_str(); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 419 | return nullptr; |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 422 | // Needed as a compare functor for sets of const char |
| 423 | struct CharPointerComparator { |
| 424 | bool operator()(const char *str1, const char *str2) const { |
| 425 | return strcmp(str1, str2) < 0; |
| 426 | } |
| 427 | }; |
| 428 | |
| 429 | // Note: this can be an expensive call, as we sort out duplicates in MultiDex files. |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 430 | static jobjectArray DexFile_getClassNameList(JNIEnv* env, jclass, jobject cookie) { |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 431 | const OatFile* oat_file = nullptr; |
| 432 | std::vector<const DexFile*> dex_files; |
| 433 | if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 434 | DCHECK(env->ExceptionCheck()); |
| 435 | return nullptr; |
| 436 | } |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 437 | |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 438 | // Push all class descriptors into a set. Use set instead of unordered_set as we want to |
| 439 | // retrieve all in the end. |
| 440 | std::set<const char*, CharPointerComparator> descriptors; |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 441 | for (auto& dex_file : dex_files) { |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 442 | for (size_t i = 0; i < dex_file->NumClassDefs(); ++i) { |
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 443 | const dex::ClassDef& class_def = dex_file->GetClassDef(i); |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 444 | const char* descriptor = dex_file->GetClassDescriptor(class_def); |
| 445 | descriptors.insert(descriptor); |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 446 | } |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 447 | } |
| Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 448 | |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 449 | // Now create output array and copy the set into it. |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 450 | jobjectArray result = env->NewObjectArray(descriptors.size(), |
| 451 | WellKnownClasses::java_lang_String, |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 452 | nullptr); |
| 453 | if (result != nullptr) { |
| 454 | auto it = descriptors.begin(); |
| 455 | auto it_end = descriptors.end(); |
| 456 | jsize i = 0; |
| 457 | for (; it != it_end; it++, ++i) { |
| 458 | std::string descriptor(DescriptorToDot(*it)); |
| 459 | ScopedLocalRef<jstring> jdescriptor(env, env->NewStringUTF(descriptor.c_str())); |
| 460 | if (jdescriptor.get() == nullptr) { |
| 461 | return nullptr; |
| Ian Rogers | dd157d7 | 2014-05-15 14:47:50 -0700 | [diff] [blame] | 462 | } |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 463 | env->SetObjectArrayElement(result, i, jdescriptor.get()); |
| Ian Rogers | dd157d7 | 2014-05-15 14:47:50 -0700 | [diff] [blame] | 464 | } |
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 465 | } |
| Ian Rogers | dd157d7 | 2014-05-15 14:47:50 -0700 | [diff] [blame] | 466 | return result; |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 467 | } |
| 468 | |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 469 | static jint GetDexOptNeeded(JNIEnv* env, |
| 470 | const char* filename, |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 471 | const char* instruction_set, |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 472 | const char* compiler_filter_name, |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 473 | const char* class_loader_context, |
| Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 474 | bool profile_changed, |
| 475 | bool downgrade) { |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 476 | if ((filename == nullptr) || !OS::FileExists(filename)) { |
| Richard Uhler | 95abd04 | 2015-03-24 09:51:28 -0700 | [diff] [blame] | 477 | LOG(ERROR) << "DexFile_getDexOptNeeded file '" << filename << "' does not exist"; |
| Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 478 | ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException")); |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 479 | const char* message = (filename == nullptr) ? "<empty file name>" : filename; |
| Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 480 | env->ThrowNew(fnfe.get(), message); |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 481 | return -1; |
| Brian Carlstrom | 1d9f52b | 2011-10-13 10:50:45 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| Alex Light | 6e183f2 | 2014-07-18 14:57:04 -0700 | [diff] [blame] | 484 | const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set); |
| Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 485 | if (target_instruction_set == InstructionSet::kNone) { |
| Andreas Gampe | 20c8930 | 2014-08-19 17:28:06 -0700 | [diff] [blame] | 486 | ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException")); |
| 487 | std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set)); |
| 488 | env->ThrowNew(iae.get(), message.c_str()); |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 489 | return -1; |
| Andreas Gampe | 20c8930 | 2014-08-19 17:28:06 -0700 | [diff] [blame] | 490 | } |
| Alex Light | 6e183f2 | 2014-07-18 14:57:04 -0700 | [diff] [blame] | 491 | |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 492 | CompilerFilter::Filter filter; |
| 493 | if (!CompilerFilter::ParseCompilerFilter(compiler_filter_name, &filter)) { |
| 494 | ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException")); |
| 495 | std::string message(StringPrintf("Compiler filter %s is invalid.", compiler_filter_name)); |
| 496 | env->ThrowNew(iae.get(), message.c_str()); |
| 497 | return -1; |
| 498 | } |
| 499 | |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 500 | std::unique_ptr<ClassLoaderContext> context = nullptr; |
| 501 | if (class_loader_context != nullptr) { |
| 502 | context = ClassLoaderContext::Create(class_loader_context); |
| 503 | |
| 504 | if (context == nullptr) { |
| 505 | ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException")); |
| 506 | std::string message(StringPrintf("Class loader context '%s' is invalid.", |
| 507 | class_loader_context)); |
| 508 | env->ThrowNew(iae.get(), message.c_str()); |
| 509 | return -1; |
| 510 | } |
| 511 | } |
| 512 | |
| Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 513 | // TODO: Verify the dex location is well formed, and throw an IOException if |
| 514 | // not? |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 515 | |
| Richard Uhler | d1472a2 | 2016-04-15 15:18:56 -0700 | [diff] [blame] | 516 | OatFileAssistant oat_file_assistant(filename, target_instruction_set, false); |
| Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 517 | |
| 518 | // Always treat elements of the bootclasspath as up-to-date. |
| 519 | if (oat_file_assistant.IsInBootClassPath()) { |
| Richard Uhler | 95abd04 | 2015-03-24 09:51:28 -0700 | [diff] [blame] | 520 | return OatFileAssistant::kNoDexOptNeeded; |
| Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 521 | } |
| Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 522 | |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 523 | return oat_file_assistant.GetDexOptNeeded(filter, |
| 524 | profile_changed, |
| 525 | downgrade, |
| 526 | context.get()); |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 529 | static jstring DexFile_getDexFileStatus(JNIEnv* env, |
| 530 | jclass, |
| 531 | jstring javaFilename, |
| 532 | jstring javaInstructionSet) { |
| 533 | ScopedUtfChars filename(env, javaFilename); |
| 534 | if (env->ExceptionCheck()) { |
| 535 | return nullptr; |
| 536 | } |
| 537 | |
| 538 | ScopedUtfChars instruction_set(env, javaInstructionSet); |
| 539 | if (env->ExceptionCheck()) { |
| 540 | return nullptr; |
| 541 | } |
| 542 | |
| 543 | const InstructionSet target_instruction_set = GetInstructionSetFromString( |
| 544 | instruction_set.c_str()); |
| Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 545 | if (target_instruction_set == InstructionSet::kNone) { |
| Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 546 | ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException")); |
| 547 | std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str())); |
| 548 | env->ThrowNew(iae.get(), message.c_str()); |
| 549 | return nullptr; |
| 550 | } |
| 551 | |
| 552 | OatFileAssistant oat_file_assistant(filename.c_str(), target_instruction_set, |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 553 | /* load_executable= */ false); |
| Richard Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 554 | return env->NewStringUTF(oat_file_assistant.GetStatusDump().c_str()); |
| Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 555 | } |
| 556 | |
| Calin Juravle | 5f9a801 | 2018-02-12 20:27:46 -0800 | [diff] [blame] | 557 | // Return an array specifying the optimization status of the given file. |
| 558 | // The array specification is [compiler_filter, compiler_reason]. |
| 559 | static jobjectArray DexFile_getDexFileOptimizationStatus(JNIEnv* env, |
| 560 | jclass, |
| 561 | jstring javaFilename, |
| 562 | jstring javaInstructionSet) { |
| 563 | ScopedUtfChars filename(env, javaFilename); |
| 564 | if (env->ExceptionCheck()) { |
| 565 | return nullptr; |
| 566 | } |
| 567 | |
| 568 | ScopedUtfChars instruction_set(env, javaInstructionSet); |
| 569 | if (env->ExceptionCheck()) { |
| 570 | return nullptr; |
| 571 | } |
| 572 | |
| 573 | const InstructionSet target_instruction_set = GetInstructionSetFromString( |
| 574 | instruction_set.c_str()); |
| 575 | if (target_instruction_set == InstructionSet::kNone) { |
| 576 | ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException")); |
| 577 | std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str())); |
| 578 | env->ThrowNew(iae.get(), message.c_str()); |
| 579 | return nullptr; |
| 580 | } |
| 581 | |
| 582 | std::string compilation_filter; |
| 583 | std::string compilation_reason; |
| 584 | OatFileAssistant::GetOptimizationStatus( |
| 585 | filename.c_str(), target_instruction_set, &compilation_filter, &compilation_reason); |
| 586 | |
| 587 | ScopedLocalRef<jstring> j_compilation_filter(env, env->NewStringUTF(compilation_filter.c_str())); |
| 588 | if (j_compilation_filter.get() == nullptr) { |
| 589 | return nullptr; |
| 590 | } |
| 591 | ScopedLocalRef<jstring> j_compilation_reason(env, env->NewStringUTF(compilation_reason.c_str())); |
| 592 | if (j_compilation_reason.get() == nullptr) { |
| 593 | return nullptr; |
| 594 | } |
| 595 | |
| 596 | // Now create output array and copy the set into it. |
| 597 | jobjectArray result = env->NewObjectArray(2, |
| 598 | WellKnownClasses::java_lang_String, |
| 599 | nullptr); |
| 600 | env->SetObjectArrayElement(result, 0, j_compilation_filter.get()); |
| 601 | env->SetObjectArrayElement(result, 1, j_compilation_reason.get()); |
| 602 | |
| 603 | return result; |
| 604 | } |
| 605 | |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 606 | static jint DexFile_getDexOptNeeded(JNIEnv* env, |
| 607 | jclass, |
| 608 | jstring javaFilename, |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 609 | jstring javaInstructionSet, |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 610 | jstring javaTargetCompilerFilter, |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 611 | jstring javaClassLoaderContext, |
| Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 612 | jboolean newProfile, |
| 613 | jboolean downgrade) { |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 614 | ScopedUtfChars filename(env, javaFilename); |
| Andreas Gampe | 20c8930 | 2014-08-19 17:28:06 -0700 | [diff] [blame] | 615 | if (env->ExceptionCheck()) { |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 616 | return -1; |
| Andreas Gampe | 20c8930 | 2014-08-19 17:28:06 -0700 | [diff] [blame] | 617 | } |
| 618 | |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 619 | ScopedUtfChars instruction_set(env, javaInstructionSet); |
| Andreas Gampe | 20c8930 | 2014-08-19 17:28:06 -0700 | [diff] [blame] | 620 | if (env->ExceptionCheck()) { |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 621 | return -1; |
| Andreas Gampe | 20c8930 | 2014-08-19 17:28:06 -0700 | [diff] [blame] | 622 | } |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 623 | |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 624 | ScopedUtfChars target_compiler_filter(env, javaTargetCompilerFilter); |
| 625 | if (env->ExceptionCheck()) { |
| 626 | return -1; |
| Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 627 | } |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 628 | |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 629 | NullableScopedUtfChars class_loader_context(env, javaClassLoaderContext); |
| 630 | if (env->ExceptionCheck()) { |
| 631 | return -1; |
| 632 | } |
| 633 | |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 634 | return GetDexOptNeeded(env, |
| 635 | filename.c_str(), |
| Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 636 | instruction_set.c_str(), |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 637 | target_compiler_filter.c_str(), |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 638 | class_loader_context.c_str(), |
| Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 639 | newProfile == JNI_TRUE, |
| 640 | downgrade == JNI_TRUE); |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 641 | } |
| 642 | |
| Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 643 | // public API |
| Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 644 | static jboolean DexFile_isDexOptNeeded(JNIEnv* env, jclass, jstring javaFilename) { |
| Richard Uhler | 06e3f4f | 2016-05-24 15:42:37 -0700 | [diff] [blame] | 645 | ScopedUtfChars filename_utf(env, javaFilename); |
| 646 | if (env->ExceptionCheck()) { |
| 647 | return JNI_FALSE; |
| 648 | } |
| 649 | |
| 650 | const char* filename = filename_utf.c_str(); |
| 651 | if ((filename == nullptr) || !OS::FileExists(filename)) { |
| 652 | LOG(ERROR) << "DexFile_isDexOptNeeded file '" << filename << "' does not exist"; |
| 653 | ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException")); |
| 654 | const char* message = (filename == nullptr) ? "<empty file name>" : filename; |
| 655 | env->ThrowNew(fnfe.get(), message); |
| 656 | return JNI_FALSE; |
| 657 | } |
| 658 | |
| Richard Uhler | d1472a2 | 2016-04-15 15:18:56 -0700 | [diff] [blame] | 659 | OatFileAssistant oat_file_assistant(filename, kRuntimeISA, false); |
| Richard Uhler | 06e3f4f | 2016-05-24 15:42:37 -0700 | [diff] [blame] | 660 | return oat_file_assistant.IsUpToDate() ? JNI_FALSE : JNI_TRUE; |
| Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 661 | } |
| 662 | |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 663 | static jboolean DexFile_isValidCompilerFilter(JNIEnv* env, |
| 664 | jclass javeDexFileClass ATTRIBUTE_UNUSED, |
| 665 | jstring javaCompilerFilter) { |
| 666 | ScopedUtfChars compiler_filter(env, javaCompilerFilter); |
| 667 | if (env->ExceptionCheck()) { |
| 668 | return -1; |
| 669 | } |
| 670 | |
| 671 | CompilerFilter::Filter filter; |
| 672 | return CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter) |
| 673 | ? JNI_TRUE : JNI_FALSE; |
| 674 | } |
| 675 | |
| 676 | static jboolean DexFile_isProfileGuidedCompilerFilter(JNIEnv* env, |
| 677 | jclass javeDexFileClass ATTRIBUTE_UNUSED, |
| 678 | jstring javaCompilerFilter) { |
| 679 | ScopedUtfChars compiler_filter(env, javaCompilerFilter); |
| 680 | if (env->ExceptionCheck()) { |
| 681 | return -1; |
| 682 | } |
| 683 | |
| 684 | CompilerFilter::Filter filter; |
| 685 | if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { |
| 686 | return JNI_FALSE; |
| 687 | } |
| 688 | return CompilerFilter::DependsOnProfile(filter) ? JNI_TRUE : JNI_FALSE; |
| 689 | } |
| 690 | |
| Andreas Gampe | 86a785d | 2016-03-30 17:19:48 -0700 | [diff] [blame] | 691 | static jstring DexFile_getNonProfileGuidedCompilerFilter(JNIEnv* env, |
| 692 | jclass javeDexFileClass ATTRIBUTE_UNUSED, |
| 693 | jstring javaCompilerFilter) { |
| 694 | ScopedUtfChars compiler_filter(env, javaCompilerFilter); |
| 695 | if (env->ExceptionCheck()) { |
| 696 | return nullptr; |
| 697 | } |
| 698 | |
| 699 | CompilerFilter::Filter filter; |
| 700 | if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { |
| 701 | return javaCompilerFilter; |
| 702 | } |
| 703 | |
| 704 | CompilerFilter::Filter new_filter = CompilerFilter::GetNonProfileDependentFilterFrom(filter); |
| 705 | |
| 706 | // Filter stayed the same, return input. |
| 707 | if (filter == new_filter) { |
| 708 | return javaCompilerFilter; |
| 709 | } |
| 710 | |
| 711 | // Create a new string object and return. |
| 712 | std::string new_filter_str = CompilerFilter::NameOfFilter(new_filter); |
| 713 | return env->NewStringUTF(new_filter_str.c_str()); |
| 714 | } |
| 715 | |
| Nicolas Geoffray | 741d426 | 2017-05-03 13:08:36 +0100 | [diff] [blame] | 716 | static jstring DexFile_getSafeModeCompilerFilter(JNIEnv* env, |
| 717 | jclass javeDexFileClass ATTRIBUTE_UNUSED, |
| 718 | jstring javaCompilerFilter) { |
| 719 | ScopedUtfChars compiler_filter(env, javaCompilerFilter); |
| 720 | if (env->ExceptionCheck()) { |
| 721 | return nullptr; |
| 722 | } |
| 723 | |
| 724 | CompilerFilter::Filter filter; |
| 725 | if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) { |
| 726 | return javaCompilerFilter; |
| 727 | } |
| 728 | |
| 729 | CompilerFilter::Filter new_filter = CompilerFilter::GetSafeModeFilterFrom(filter); |
| 730 | |
| 731 | // Filter stayed the same, return input. |
| 732 | if (filter == new_filter) { |
| 733 | return javaCompilerFilter; |
| 734 | } |
| 735 | |
| 736 | // Create a new string object and return. |
| 737 | std::string new_filter_str = CompilerFilter::NameOfFilter(new_filter); |
| 738 | return env->NewStringUTF(new_filter_str.c_str()); |
| 739 | } |
| 740 | |
| Jeff Hao | 90671be | 2016-04-22 14:00:06 -0700 | [diff] [blame] | 741 | static jboolean DexFile_isBackedByOatFile(JNIEnv* env, jclass, jobject cookie) { |
| 742 | const OatFile* oat_file = nullptr; |
| 743 | std::vector<const DexFile*> dex_files; |
| 744 | if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { |
| 745 | DCHECK(env->ExceptionCheck()); |
| 746 | return false; |
| 747 | } |
| 748 | return oat_file != nullptr; |
| 749 | } |
| 750 | |
| Calin Juravle | 367b9d8 | 2017-05-15 18:18:39 -0700 | [diff] [blame] | 751 | static jobjectArray DexFile_getDexFileOutputPaths(JNIEnv* env, |
| Philip Cuadra | b55ad7c | 2016-07-12 16:37:40 -0700 | [diff] [blame] | 752 | jclass, |
| 753 | jstring javaFilename, |
| 754 | jstring javaInstructionSet) { |
| 755 | ScopedUtfChars filename(env, javaFilename); |
| 756 | if (env->ExceptionCheck()) { |
| 757 | return nullptr; |
| 758 | } |
| 759 | |
| 760 | ScopedUtfChars instruction_set(env, javaInstructionSet); |
| 761 | if (env->ExceptionCheck()) { |
| 762 | return nullptr; |
| 763 | } |
| 764 | |
| 765 | const InstructionSet target_instruction_set = GetInstructionSetFromString( |
| 766 | instruction_set.c_str()); |
| Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 767 | if (target_instruction_set == InstructionSet::kNone) { |
| Philip Cuadra | b55ad7c | 2016-07-12 16:37:40 -0700 | [diff] [blame] | 768 | ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException")); |
| 769 | std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str())); |
| 770 | env->ThrowNew(iae.get(), message.c_str()); |
| 771 | return nullptr; |
| 772 | } |
| 773 | |
| 774 | OatFileAssistant oat_file_assistant(filename.c_str(), |
| 775 | target_instruction_set, |
| Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 776 | /* load_executable= */ false); |
| Philip Cuadra | b55ad7c | 2016-07-12 16:37:40 -0700 | [diff] [blame] | 777 | |
| 778 | std::unique_ptr<OatFile> best_oat_file = oat_file_assistant.GetBestOatFile(); |
| 779 | if (best_oat_file == nullptr) { |
| 780 | return nullptr; |
| 781 | } |
| 782 | |
| Calin Juravle | 367b9d8 | 2017-05-15 18:18:39 -0700 | [diff] [blame] | 783 | std::string oat_filename = best_oat_file->GetLocation(); |
| 784 | std::string vdex_filename = GetVdexFilename(best_oat_file->GetLocation()); |
| 785 | |
| 786 | ScopedLocalRef<jstring> jvdexFilename(env, env->NewStringUTF(vdex_filename.c_str())); |
| 787 | if (jvdexFilename.get() == nullptr) { |
| 788 | return nullptr; |
| 789 | } |
| 790 | ScopedLocalRef<jstring> joatFilename(env, env->NewStringUTF(oat_filename.c_str())); |
| 791 | if (joatFilename.get() == nullptr) { |
| 792 | return nullptr; |
| 793 | } |
| 794 | |
| 795 | // Now create output array and copy the set into it. |
| 796 | jobjectArray result = env->NewObjectArray(2, |
| 797 | WellKnownClasses::java_lang_String, |
| 798 | nullptr); |
| 799 | env->SetObjectArrayElement(result, 0, jvdexFilename.get()); |
| 800 | env->SetObjectArrayElement(result, 1, joatFilename.get()); |
| 801 | |
| 802 | return result; |
| Philip Cuadra | b55ad7c | 2016-07-12 16:37:40 -0700 | [diff] [blame] | 803 | } |
| 804 | |
| Richard Uhler | 24ed94f | 2017-11-16 11:54:29 +0000 | [diff] [blame] | 805 | static jlong DexFile_getStaticSizeOfDexFile(JNIEnv* env, jclass, jobject cookie) { |
| 806 | const OatFile* oat_file = nullptr; |
| 807 | std::vector<const DexFile*> dex_files; |
| 808 | if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) { |
| 809 | DCHECK(env->ExceptionCheck()); |
| 810 | return 0; |
| 811 | } |
| 812 | |
| 813 | uint64_t file_size = 0; |
| 814 | for (auto& dex_file : dex_files) { |
| 815 | if (dex_file) { |
| 816 | file_size += dex_file->GetHeader().file_size_; |
| 817 | } |
| 818 | } |
| 819 | return static_cast<jlong>(file_size); |
| 820 | } |
| 821 | |
| Nicolas Geoffray | 35a4f48 | 2018-05-09 14:49:54 +0100 | [diff] [blame] | 822 | static void DexFile_setTrusted(JNIEnv* env, jclass, jobject j_cookie) { |
| 823 | Runtime* runtime = Runtime::Current(); |
| 824 | ScopedObjectAccess soa(env); |
| 825 | |
| 826 | // Currently only allow this for debuggable apps. |
| 827 | if (!runtime->IsJavaDebuggable()) { |
| 828 | ThrowSecurityException("Can't exempt class, process is not debuggable."); |
| 829 | return; |
| 830 | } |
| 831 | |
| 832 | std::vector<const DexFile*> dex_files; |
| 833 | const OatFile* oat_file; |
| 834 | if (!ConvertJavaArrayToDexFiles(env, j_cookie, dex_files, oat_file)) { |
| 835 | Thread::Current()->AssertPendingException(); |
| 836 | return; |
| 837 | } |
| 838 | |
| David Brazdil | e768182 | 2018-12-14 16:25:33 +0000 | [diff] [blame] | 839 | // Assign core platform domain as the dex files are allowed to access all the other domains. |
| Nicolas Geoffray | 35a4f48 | 2018-05-09 14:49:54 +0100 | [diff] [blame] | 840 | for (const DexFile* dex_file : dex_files) { |
| David Brazdil | e768182 | 2018-12-14 16:25:33 +0000 | [diff] [blame] | 841 | const_cast<DexFile*>(dex_file)->SetHiddenapiDomain(hiddenapi::Domain::kCorePlatform); |
| Nicolas Geoffray | 35a4f48 | 2018-05-09 14:49:54 +0100 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 845 | static JNINativeMethod gMethods[] = { |
| Mathieu Chartier | 1d7d7f1 | 2015-09-25 16:48:57 -0700 | [diff] [blame] | 846 | NATIVE_METHOD(DexFile, closeDexFile, "(Ljava/lang/Object;)Z"), |
| Mathieu Chartier | 00310e0 | 2015-10-17 12:46:42 -0700 | [diff] [blame] | 847 | NATIVE_METHOD(DexFile, |
| 848 | defineClassNative, |
| 849 | "(Ljava/lang/String;" |
| 850 | "Ljava/lang/ClassLoader;" |
| 851 | "Ljava/lang/Object;" |
| 852 | "Ldalvik/system/DexFile;" |
| 853 | ")Ljava/lang/Class;"), |
| Andreas Gampe | 324b9bb | 2015-02-23 16:33:22 -0800 | [diff] [blame] | 854 | NATIVE_METHOD(DexFile, getClassNameList, "(Ljava/lang/Object;)[Ljava/lang/String;"), |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 855 | NATIVE_METHOD(DexFile, isDexOptNeeded, "(Ljava/lang/String;)Z"), |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 856 | NATIVE_METHOD(DexFile, getDexOptNeeded, |
| Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 857 | "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)I"), |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 858 | NATIVE_METHOD(DexFile, openDexFileNative, |
| Mathieu Chartier | 689a700 | 2015-11-20 10:29:42 -0800 | [diff] [blame] | 859 | "(Ljava/lang/String;" |
| 860 | "Ljava/lang/String;" |
| 861 | "I" |
| 862 | "Ljava/lang/ClassLoader;" |
| 863 | "[Ldalvik/system/DexPathList$Element;" |
| 864 | ")Ljava/lang/Object;"), |
| Alex Light | ea9465e | 2017-02-16 15:38:35 -0800 | [diff] [blame] | 865 | NATIVE_METHOD(DexFile, createCookieWithDirectBuffer, |
| 866 | "(Ljava/nio/ByteBuffer;II)Ljava/lang/Object;"), |
| 867 | NATIVE_METHOD(DexFile, createCookieWithArray, "([BII)Ljava/lang/Object;"), |
| Andreas Gampe | c38be81 | 2016-03-23 15:03:46 -0700 | [diff] [blame] | 868 | NATIVE_METHOD(DexFile, isValidCompilerFilter, "(Ljava/lang/String;)Z"), |
| 869 | NATIVE_METHOD(DexFile, isProfileGuidedCompilerFilter, "(Ljava/lang/String;)Z"), |
| Andreas Gampe | 86a785d | 2016-03-30 17:19:48 -0700 | [diff] [blame] | 870 | NATIVE_METHOD(DexFile, |
| 871 | getNonProfileGuidedCompilerFilter, |
| 872 | "(Ljava/lang/String;)Ljava/lang/String;"), |
| Nicolas Geoffray | 741d426 | 2017-05-03 13:08:36 +0100 | [diff] [blame] | 873 | NATIVE_METHOD(DexFile, |
| 874 | getSafeModeCompilerFilter, |
| 875 | "(Ljava/lang/String;)Ljava/lang/String;"), |
| Jeff Hao | 90671be | 2016-04-22 14:00:06 -0700 | [diff] [blame] | 876 | NATIVE_METHOD(DexFile, isBackedByOatFile, "(Ljava/lang/Object;)Z"), |
| Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 877 | NATIVE_METHOD(DexFile, getDexFileStatus, |
| Philip Cuadra | b55ad7c | 2016-07-12 16:37:40 -0700 | [diff] [blame] | 878 | "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;"), |
| Calin Juravle | 367b9d8 | 2017-05-15 18:18:39 -0700 | [diff] [blame] | 879 | NATIVE_METHOD(DexFile, getDexFileOutputPaths, |
| Richard Uhler | 24ed94f | 2017-11-16 11:54:29 +0000 | [diff] [blame] | 880 | "(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;"), |
| Calin Juravle | 5f9a801 | 2018-02-12 20:27:46 -0800 | [diff] [blame] | 881 | NATIVE_METHOD(DexFile, getStaticSizeOfDexFile, "(Ljava/lang/Object;)J"), |
| 882 | NATIVE_METHOD(DexFile, getDexFileOptimizationStatus, |
| Nicolas Geoffray | 35a4f48 | 2018-05-09 14:49:54 +0100 | [diff] [blame] | 883 | "(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;"), |
| 884 | NATIVE_METHOD(DexFile, setTrusted, "(Ljava/lang/Object;)V") |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 885 | }; |
| 886 | |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 887 | void register_dalvik_system_DexFile(JNIEnv* env) { |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 888 | REGISTER_NATIVE_METHODS("dalvik/system/DexFile"); |
| Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | } // namespace art |