blob: 5c2ca24da94781851a8af8e828bd84f3a5e30ccb [file] [log] [blame]
Brian Carlstromf91c8c32011-09-21 17:30:34 -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 "dalvik_system_DexFile.h"
18
Narayan Kamath8943c1d2016-05-02 13:14:48 +010019#include <sstream>
20
Andreas Gampe46ee31b2016-12-14 10:11:49 -080021#include "android-base/stringprintf.h"
22
David Sehr891a50e2017-10-27 17:01:07 -070023#include "base/file_utils.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080024#include "base/logging.h"
David Sehrc431b9d2018-03-02 12:01:51 -080025#include "base/os.h"
Andreas Gampe833a4852014-05-21 18:46:59 -070026#include "base/stl_util.h"
David Sehrc431b9d2018-03-02 12:01:51 -080027#include "base/utils.h"
David Sehr79e26072018-04-06 17:58:50 -070028#include "base/zip_archive.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070029#include "class_linker.h"
Calin Juravle20c46442017-09-12 00:54:26 -070030#include <class_loader_context.h>
Ian Rogers62d6c772013-02-27 08:32:07 -080031#include "common_throws.h"
Andreas Gampec38be812016-03-23 15:03:46 -070032#include "compiler_filter.h"
David Sehr013fd802018-01-11 22:55:24 -080033#include "dex/art_dex_file_loader.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080034#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080035#include "dex/dex_file-inl.h"
36#include "dex/dex_file_loader.h"
David Srbeckyfb3de3d2018-01-29 16:11:49 +000037#include "jit/debugger_interface.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010038#include "jni/jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/class_loader.h"
Ian Rogers05f30572013-02-20 12:13:11 -080040#include "mirror/object-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/string.h"
Andreas Gampe87583b32017-05-25 11:22:18 -070042#include "native_util.h"
Steven Morelande431e272017-07-18 16:53:49 -070043#include "nativehelper/jni_macros.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070044#include "nativehelper/scoped_local_ref.h"
45#include "nativehelper/scoped_utf_chars.h"
Narayan Kamath8943c1d2016-05-02 13:14:48 +010046#include "oat_file.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080047#include "oat_file_assistant.h"
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070048#include "oat_file_manager.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070049#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070050#include "scoped_thread_state_change-inl.h"
Ian Rogersdd157d72014-05-15 14:47:50 -070051#include "well_known_classes.h"
Brian Carlstromf91c8c32011-09-21 17:30:34 -070052
53namespace art {
54
Andreas Gampe46ee31b2016-12-14 10:11:49 -080055using android::base::StringPrintf;
56
Mathieu Chartiere58991b2015-10-13 07:59:34 -070057static bool ConvertJavaArrayToDexFiles(
58 JNIEnv* env,
59 jobject arrayObject,
60 /*out*/ std::vector<const DexFile*>& dex_files,
61 /*out*/ const OatFile*& oat_file) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -080062 jarray array = reinterpret_cast<jarray>(arrayObject);
63
64 jsize array_size = env->GetArrayLength(array);
65 if (env->ExceptionCheck() == JNI_TRUE) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -070066 return false;
Andreas Gampe324b9bb2015-02-23 16:33:22 -080067 }
68
69 // TODO: Optimize. On 32bit we can use an int array.
70 jboolean is_long_data_copied;
71 jlong* long_data = env->GetLongArrayElements(reinterpret_cast<jlongArray>(array),
72 &is_long_data_copied);
73 if (env->ExceptionCheck() == JNI_TRUE) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -070074 return false;
Andreas Gampe324b9bb2015-02-23 16:33:22 -080075 }
76
Mathieu Chartiere58991b2015-10-13 07:59:34 -070077 oat_file = reinterpret_cast<const OatFile*>(static_cast<uintptr_t>(long_data[kOatFileIndex]));
78 dex_files.reserve(array_size - 1);
79 for (jsize i = kDexFileIndexStart; i < array_size; ++i) {
80 dex_files.push_back(reinterpret_cast<const DexFile*>(static_cast<uintptr_t>(long_data[i])));
Andreas Gampe324b9bb2015-02-23 16:33:22 -080081 }
82
83 env->ReleaseLongArrayElements(reinterpret_cast<jlongArray>(array), long_data, JNI_ABORT);
Mathieu Chartiere58991b2015-10-13 07:59:34 -070084 return env->ExceptionCheck() != JNI_TRUE;
Andreas Gampe324b9bb2015-02-23 16:33:22 -080085}
86
Mathieu Chartiere58991b2015-10-13 07:59:34 -070087static jlongArray ConvertDexFilesToJavaArray(JNIEnv* env,
88 const OatFile* oat_file,
89 std::vector<std::unique_ptr<const DexFile>>& vec) {
90 // Add one for the oat file.
Mathieu Chartier80b37b72015-10-12 18:13:39 -070091 jlongArray long_array = env->NewLongArray(static_cast<jsize>(kDexFileIndexStart + vec.size()));
Andreas Gampe324b9bb2015-02-23 16:33:22 -080092 if (env->ExceptionCheck() == JNI_TRUE) {
93 return nullptr;
94 }
95
96 jboolean is_long_data_copied;
97 jlong* long_data = env->GetLongArrayElements(long_array, &is_long_data_copied);
98 if (env->ExceptionCheck() == JNI_TRUE) {
99 return nullptr;
100 }
101
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700102 long_data[kOatFileIndex] = reinterpret_cast<uintptr_t>(oat_file);
103 for (size_t i = 0; i < vec.size(); ++i) {
104 long_data[kDexFileIndexStart + i] = reinterpret_cast<uintptr_t>(vec[i].get());
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800105 }
106
107 env->ReleaseLongArrayElements(long_array, long_data, 0);
108 if (env->ExceptionCheck() == JNI_TRUE) {
109 return nullptr;
110 }
111
112 // Now release all the unique_ptrs.
113 for (auto& dex_file : vec) {
114 dex_file.release();
115 }
116
117 return long_array;
118}
119
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700120// A smart pointer that provides read-only access to a Java string's UTF chars.
121// Unlike libcore's NullableScopedUtfChars, this will *not* throw NullPointerException if
122// passed a null jstring. The correct idiom is:
123//
124// NullableScopedUtfChars name(env, javaName);
Brian Carlstromc252c3e2011-10-16 23:21:02 -0700125// if (env->ExceptionCheck()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700126// return null;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700127// }
128// // ... use name.c_str()
129//
130// TODO: rewrite to get rid of this, or change ScopedUtfChars to offer this option.
131class NullableScopedUtfChars {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800132 public:
133 NullableScopedUtfChars(JNIEnv* env, jstring s) : mEnv(env), mString(s) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700134 mUtfChars = (s != nullptr) ? env->GetStringUTFChars(s, nullptr) : nullptr;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800135 }
136
137 ~NullableScopedUtfChars() {
138 if (mUtfChars) {
139 mEnv->ReleaseStringUTFChars(mString, mUtfChars);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700140 }
Elliott Hughesba8eee12012-01-24 20:25:24 -0800141 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700142
Elliott Hughesba8eee12012-01-24 20:25:24 -0800143 const char* c_str() const {
144 return mUtfChars;
145 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700146
Elliott Hughesba8eee12012-01-24 20:25:24 -0800147 size_t size() const {
148 return strlen(mUtfChars);
149 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700150
Elliott Hughesba8eee12012-01-24 20:25:24 -0800151 // Element access.
152 const char& operator[](size_t n) const {
153 return mUtfChars[n];
154 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700155
Elliott Hughesba8eee12012-01-24 20:25:24 -0800156 private:
157 JNIEnv* mEnv;
158 jstring mString;
159 const char* mUtfChars;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700160
Elliott Hughesba8eee12012-01-24 20:25:24 -0800161 // Disallow copy and assignment.
162 NullableScopedUtfChars(const NullableScopedUtfChars&);
163 void operator=(const NullableScopedUtfChars&);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700164};
165
Alex Lightea9465e2017-02-16 15:38:35 -0800166static std::unique_ptr<MemMap> AllocateDexMemoryMap(JNIEnv* env, jint start, jint end) {
167 if (end <= start) {
168 ScopedObjectAccess soa(env);
169 ThrowWrappedIOException("Bad range");
170 return nullptr;
171 }
172
173 std::string error_message;
174 size_t length = static_cast<size_t>(end - start);
175 std::unique_ptr<MemMap> dex_mem_map(MemMap::MapAnonymous("DEX data",
176 nullptr,
177 length,
178 PROT_READ | PROT_WRITE,
179 /* low_4gb */ false,
180 /* reuse */ false,
181 &error_message));
182 if (dex_mem_map == nullptr) {
183 ScopedObjectAccess soa(env);
184 ThrowWrappedIOException("%s", error_message.c_str());
185 }
186 return dex_mem_map;
187}
188
189static const DexFile* CreateDexFile(JNIEnv* env, std::unique_ptr<MemMap> dex_mem_map) {
190 std::string location = StringPrintf("Anonymous-DexFile@%p-%p",
191 dex_mem_map->Begin(),
192 dex_mem_map->End());
193 std::string error_message;
David Sehr013fd802018-01-11 22:55:24 -0800194 const ArtDexFileLoader dex_file_loader;
195 std::unique_ptr<const DexFile> dex_file(dex_file_loader.Open(location,
196 0,
197 std::move(dex_mem_map),
198 /* verify */ true,
199 /* verify_location */ true,
200 &error_message));
Alex Lightea9465e2017-02-16 15:38:35 -0800201 if (dex_file == nullptr) {
202 ScopedObjectAccess soa(env);
203 ThrowWrappedIOException("%s", error_message.c_str());
204 return nullptr;
205 }
206
207 if (!dex_file->DisableWrite()) {
208 ScopedObjectAccess soa(env);
209 ThrowWrappedIOException("Failed to make dex file read-only");
210 return nullptr;
211 }
212
213 return dex_file.release();
214}
215
216static jobject CreateSingleDexFileCookie(JNIEnv* env, std::unique_ptr<MemMap> data) {
217 std::unique_ptr<const DexFile> dex_file(CreateDexFile(env, std::move(data)));
218 if (dex_file.get() == nullptr) {
219 DCHECK(env->ExceptionCheck());
220 return nullptr;
221 }
222 std::vector<std::unique_ptr<const DexFile>> dex_files;
223 dex_files.push_back(std::move(dex_file));
224 return ConvertDexFilesToJavaArray(env, nullptr, dex_files);
225}
226
227static jobject DexFile_createCookieWithDirectBuffer(JNIEnv* env,
228 jclass,
229 jobject buffer,
230 jint start,
231 jint end) {
232 uint8_t* base_address = reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(buffer));
233 if (base_address == nullptr) {
234 ScopedObjectAccess soa(env);
235 ThrowWrappedIOException("dexFileBuffer not direct");
236 return 0;
237 }
238
239 std::unique_ptr<MemMap> dex_mem_map(AllocateDexMemoryMap(env, start, end));
240 if (dex_mem_map == nullptr) {
241 DCHECK(Thread::Current()->IsExceptionPending());
242 return 0;
243 }
244
245 size_t length = static_cast<size_t>(end - start);
246 memcpy(dex_mem_map->Begin(), base_address, length);
247 return CreateSingleDexFileCookie(env, std::move(dex_mem_map));
248}
249
250static jobject DexFile_createCookieWithArray(JNIEnv* env,
251 jclass,
252 jbyteArray buffer,
253 jint start,
254 jint end) {
255 std::unique_ptr<MemMap> dex_mem_map(AllocateDexMemoryMap(env, start, end));
256 if (dex_mem_map == nullptr) {
257 DCHECK(Thread::Current()->IsExceptionPending());
258 return 0;
259 }
260
261 auto destination = reinterpret_cast<jbyte*>(dex_mem_map.get()->Begin());
262 env->GetByteArrayRegion(buffer, start, end - start, destination);
263 return CreateSingleDexFileCookie(env, std::move(dex_mem_map));
264}
265
Calin Juravle1f7079b2017-04-18 21:25:37 -0700266// TODO(calin): clean up the unused parameters (here and in libcore).
Mathieu Chartierb190d942015-11-12 10:00:58 -0800267static jobject DexFile_openDexFileNative(JNIEnv* env,
268 jclass,
269 jstring javaSourceName,
Calin Juravle1f7079b2017-04-18 21:25:37 -0700270 jstring javaOutputName ATTRIBUTE_UNUSED,
Mathieu Chartierb190d942015-11-12 10:00:58 -0800271 jint flags ATTRIBUTE_UNUSED,
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800272 jobject class_loader,
273 jobjectArray dex_elements) {
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700274 ScopedUtfChars sourceName(env, javaSourceName);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700275 if (sourceName.c_str() == nullptr) {
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700276 return 0;
277 }
Calin Juravle1f7079b2017-04-18 21:25:37 -0700278
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700279 Runtime* const runtime = Runtime::Current();
280 ClassLinker* linker = runtime->GetClassLinker();
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800281 std::vector<std::unique_ptr<const DexFile>> dex_files;
Andreas Gampe833a4852014-05-21 18:46:59 -0700282 std::vector<std::string> error_msgs;
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700283 const OatFile* oat_file = nullptr;
Andreas Gampe833a4852014-05-21 18:46:59 -0700284
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700285 dex_files = runtime->GetOatFileManager().OpenDexFilesFromOat(sourceName.c_str(),
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800286 class_loader,
287 dex_elements,
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700288 /*out*/ &oat_file,
289 /*out*/ &error_msgs);
Andreas Gampe833a4852014-05-21 18:46:59 -0700290
Richard Uhler66d874d2015-01-15 09:37:19 -0800291 if (!dex_files.empty()) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700292 jlongArray array = ConvertDexFilesToJavaArray(env, oat_file, dex_files);
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800293 if (array == nullptr) {
294 ScopedObjectAccess soa(env);
295 for (auto& dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000296 if (linker->IsDexFileRegistered(soa.Self(), *dex_file)) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800297 dex_file.release();
298 }
299 }
300 }
301 return array;
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700302 } else {
Vladimir Marko60836d52014-01-16 15:53:38 +0000303 ScopedObjectAccess soa(env);
Andreas Gampe329d1882014-04-08 10:32:19 -0700304 CHECK(!error_msgs.empty());
305 // The most important message is at the end. So set up nesting by going forward, which will
306 // wrap the existing exception as a cause for the following one.
307 auto it = error_msgs.begin();
308 auto itEnd = error_msgs.end();
309 for ( ; it != itEnd; ++it) {
310 ThrowWrappedIOException("%s", it->c_str());
311 }
312
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800313 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700314 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700315}
316
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700317static jboolean DexFile_closeDexFile(JNIEnv* env, jclass, jobject cookie) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700318 std::vector<const DexFile*> dex_files;
319 const OatFile* oat_file;
320 if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) {
321 Thread::Current()->AssertPendingException();
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700322 return JNI_FALSE;
323 }
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700324 Runtime* const runtime = Runtime::Current();
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700325 bool all_deleted = true;
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700326 {
327 ScopedObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -0700328 ObjPtr<mirror::Object> dex_files_object = soa.Decode<mirror::Object>(cookie);
Mathieu Chartierbc5a7952016-10-17 15:46:31 -0700329 ObjPtr<mirror::LongArray> long_dex_files = dex_files_object->AsLongArray();
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700330 // Delete dex files associated with this dalvik.system.DexFile since there should not be running
331 // code using it. dex_files is a vector due to multidex.
332 ClassLinker* const class_linker = runtime->GetClassLinker();
333 int32_t i = kDexFileIndexStart; // Oat file is at index 0.
334 for (const DexFile* dex_file : dex_files) {
335 if (dex_file != nullptr) {
David Srbecky440a9b32018-02-15 17:47:29 +0000336 RemoveNativeDebugInfoForDex(soa.Self(), ArrayRef<const uint8_t>(dex_file->Begin(),
337 dex_file->Size()));
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700338 // Only delete the dex file if the dex cache is not found to prevent runtime crashes if there
339 // are calls to DexFile.close while the ART DexFile is still in use.
Vladimir Markocd556b02017-02-03 11:47:34 +0000340 if (!class_linker->IsDexFileRegistered(soa.Self(), *dex_file)) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700341 // Clear the element in the array so that we can call close again.
342 long_dex_files->Set(i, 0);
343 delete dex_file;
344 } else {
345 all_deleted = false;
346 }
347 }
348 ++i;
Andreas Gampe833a4852014-05-21 18:46:59 -0700349 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700350 }
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700351
Mathieu Chartierfdccbd42015-10-14 10:58:41 -0700352 // oat_file can be null if we are running without dex2oat.
353 if (all_deleted && oat_file != nullptr) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700354 // If all of the dex files are no longer in use we can unmap the corresponding oat file.
355 VLOG(class_linker) << "Unregistering " << oat_file;
356 runtime->GetOatFileManager().UnRegisterAndDeleteOatFile(oat_file);
357 }
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700358 return all_deleted ? JNI_TRUE : JNI_FALSE;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700359}
360
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700361static jclass DexFile_defineClassNative(JNIEnv* env,
362 jclass,
363 jstring javaName,
364 jobject javaLoader,
Mathieu Chartier00310e02015-10-17 12:46:42 -0700365 jobject cookie,
366 jobject dexFile) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700367 std::vector<const DexFile*> dex_files;
368 const OatFile* oat_file;
369 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out*/ dex_files, /*out*/ oat_file)) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700370 VLOG(class_linker) << "Failed to find dex_file";
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800371 DCHECK(env->ExceptionCheck());
372 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700373 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800374
Brian Carlstromdf143242011-10-10 18:05:34 -0700375 ScopedUtfChars class_name(env, javaName);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700376 if (class_name.c_str() == nullptr) {
Brian Carlstrom2e450bf2013-09-06 15:39:46 -0700377 VLOG(class_linker) << "Failed to find class_name";
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700378 return nullptr;
Brian Carlstromdf143242011-10-10 18:05:34 -0700379 }
Elliott Hughes95572412011-12-13 18:14:20 -0800380 const std::string descriptor(DotToDescriptor(class_name.c_str()));
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800381 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str()));
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700382 for (auto& dex_file : dex_files) {
David Sehr9aa352e2016-09-15 18:13:52 -0700383 const DexFile::ClassDef* dex_class_def =
384 OatDexFile::FindClassDef(*dex_file, descriptor.c_str(), hash);
Andreas Gampe833a4852014-05-21 18:46:59 -0700385 if (dex_class_def != nullptr) {
386 ScopedObjectAccess soa(env);
387 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampe833a4852014-05-21 18:46:59 -0700388 StackHandleScope<1> hs(soa.Self());
389 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700390 hs.NewHandle(soa.Decode<mirror::ClassLoader>(javaLoader)));
Vladimir Markocd556b02017-02-03 11:47:34 +0000391 ObjPtr<mirror::DexCache> dex_cache =
392 class_linker->RegisterDexFile(*dex_file, class_loader.Get());
393 if (dex_cache == nullptr) {
394 // OOME or InternalError (dexFile already registered with a different class loader).
395 soa.Self()->AssertPendingException();
396 return nullptr;
397 }
Mathieu Chartierbc5a7952016-10-17 15:46:31 -0700398 ObjPtr<mirror::Class> result = class_linker->DefineClass(soa.Self(),
399 descriptor.c_str(),
400 hash,
401 class_loader,
402 *dex_file,
403 *dex_class_def);
Mathieu Chartier00310e02015-10-17 12:46:42 -0700404 // Add the used dex file. This only required for the DexFile.loadClass API since normal
405 // class loaders already keep their dex files live.
Mathieu Chartierbc5a7952016-10-17 15:46:31 -0700406 class_linker->InsertDexFileInToClassLoader(soa.Decode<mirror::Object>(dexFile),
Mathieu Chartier00310e02015-10-17 12:46:42 -0700407 class_loader.Get());
Andreas Gampe833a4852014-05-21 18:46:59 -0700408 if (result != nullptr) {
Brian Carlstrom667ab7c2014-10-16 19:12:28 -0700409 VLOG(class_linker) << "DexFile_defineClassNative returning " << result
410 << " for " << class_name.c_str();
Andreas Gampe833a4852014-05-21 18:46:59 -0700411 return soa.AddLocalReference<jclass>(result);
412 }
413 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700414 }
Brian Carlstrom667ab7c2014-10-16 19:12:28 -0700415 VLOG(class_linker) << "Failed to find dex_class_def " << class_name.c_str();
Andreas Gampe833a4852014-05-21 18:46:59 -0700416 return nullptr;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700417}
418
Andreas Gampe833a4852014-05-21 18:46:59 -0700419// Needed as a compare functor for sets of const char
420struct CharPointerComparator {
421 bool operator()(const char *str1, const char *str2) const {
422 return strcmp(str1, str2) < 0;
423 }
424};
425
426// Note: this can be an expensive call, as we sort out duplicates in MultiDex files.
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800427static jobjectArray DexFile_getClassNameList(JNIEnv* env, jclass, jobject cookie) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700428 const OatFile* oat_file = nullptr;
429 std::vector<const DexFile*> dex_files;
430 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800431 DCHECK(env->ExceptionCheck());
432 return nullptr;
433 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700434
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800435 // Push all class descriptors into a set. Use set instead of unordered_set as we want to
436 // retrieve all in the end.
437 std::set<const char*, CharPointerComparator> descriptors;
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700438 for (auto& dex_file : dex_files) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800439 for (size_t i = 0; i < dex_file->NumClassDefs(); ++i) {
440 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
441 const char* descriptor = dex_file->GetClassDescriptor(class_def);
442 descriptors.insert(descriptor);
Andreas Gampe833a4852014-05-21 18:46:59 -0700443 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800444 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700445
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800446 // Now create output array and copy the set into it.
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700447 jobjectArray result = env->NewObjectArray(descriptors.size(),
448 WellKnownClasses::java_lang_String,
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800449 nullptr);
450 if (result != nullptr) {
451 auto it = descriptors.begin();
452 auto it_end = descriptors.end();
453 jsize i = 0;
454 for (; it != it_end; it++, ++i) {
455 std::string descriptor(DescriptorToDot(*it));
456 ScopedLocalRef<jstring> jdescriptor(env, env->NewStringUTF(descriptor.c_str()));
457 if (jdescriptor.get() == nullptr) {
458 return nullptr;
Ian Rogersdd157d72014-05-15 14:47:50 -0700459 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800460 env->SetObjectArrayElement(result, i, jdescriptor.get());
Ian Rogersdd157d72014-05-15 14:47:50 -0700461 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700462 }
Ian Rogersdd157d72014-05-15 14:47:50 -0700463 return result;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700464}
465
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700466static jint GetDexOptNeeded(JNIEnv* env,
467 const char* filename,
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700468 const char* instruction_set,
Andreas Gampe29d38e72016-03-23 15:31:51 +0000469 const char* compiler_filter_name,
Calin Juravle20c46442017-09-12 00:54:26 -0700470 const char* class_loader_context,
Shubham Ajmerae4e812a2017-05-25 20:09:58 -0700471 bool profile_changed,
472 bool downgrade) {
Narayan Kamath11d9f062014-04-23 20:24:57 +0100473 if ((filename == nullptr) || !OS::FileExists(filename)) {
Richard Uhler95abd042015-03-24 09:51:28 -0700474 LOG(ERROR) << "DexFile_getDexOptNeeded file '" << filename << "' does not exist";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700475 ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException"));
Narayan Kamath11d9f062014-04-23 20:24:57 +0100476 const char* message = (filename == nullptr) ? "<empty file name>" : filename;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700477 env->ThrowNew(fnfe.get(), message);
Calin Juravleb077e152016-02-18 18:47:37 +0000478 return -1;
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700479 }
480
Alex Light6e183f22014-07-18 14:57:04 -0700481 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set);
Vladimir Marko33bff252017-11-01 14:35:42 +0000482 if (target_instruction_set == InstructionSet::kNone) {
Andreas Gampe20c89302014-08-19 17:28:06 -0700483 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
484 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set));
485 env->ThrowNew(iae.get(), message.c_str());
Calin Juravleb077e152016-02-18 18:47:37 +0000486 return -1;
Andreas Gampe20c89302014-08-19 17:28:06 -0700487 }
Alex Light6e183f22014-07-18 14:57:04 -0700488
Andreas Gampe29d38e72016-03-23 15:31:51 +0000489 CompilerFilter::Filter filter;
490 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_name, &filter)) {
491 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
492 std::string message(StringPrintf("Compiler filter %s is invalid.", compiler_filter_name));
493 env->ThrowNew(iae.get(), message.c_str());
494 return -1;
495 }
496
Calin Juravle20c46442017-09-12 00:54:26 -0700497 std::unique_ptr<ClassLoaderContext> context = nullptr;
498 if (class_loader_context != nullptr) {
499 context = ClassLoaderContext::Create(class_loader_context);
500
501 if (context == nullptr) {
502 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
503 std::string message(StringPrintf("Class loader context '%s' is invalid.",
504 class_loader_context));
505 env->ThrowNew(iae.get(), message.c_str());
506 return -1;
507 }
508 }
509
Richard Uhler66d874d2015-01-15 09:37:19 -0800510 // TODO: Verify the dex location is well formed, and throw an IOException if
511 // not?
Andreas Gampe29d38e72016-03-23 15:31:51 +0000512
Richard Uhlerd1472a22016-04-15 15:18:56 -0700513 OatFileAssistant oat_file_assistant(filename, target_instruction_set, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800514
515 // Always treat elements of the bootclasspath as up-to-date.
516 if (oat_file_assistant.IsInBootClassPath()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700517 return OatFileAssistant::kNoDexOptNeeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800518 }
Calin Juravle44e5efa2017-09-12 00:54:26 -0700519
Calin Juravle20c46442017-09-12 00:54:26 -0700520 return oat_file_assistant.GetDexOptNeeded(filter,
521 profile_changed,
522 downgrade,
523 context.get());
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700524}
525
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100526static jstring DexFile_getDexFileStatus(JNIEnv* env,
527 jclass,
528 jstring javaFilename,
529 jstring javaInstructionSet) {
530 ScopedUtfChars filename(env, javaFilename);
531 if (env->ExceptionCheck()) {
532 return nullptr;
533 }
534
535 ScopedUtfChars instruction_set(env, javaInstructionSet);
536 if (env->ExceptionCheck()) {
537 return nullptr;
538 }
539
540 const InstructionSet target_instruction_set = GetInstructionSetFromString(
541 instruction_set.c_str());
Vladimir Marko33bff252017-11-01 14:35:42 +0000542 if (target_instruction_set == InstructionSet::kNone) {
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100543 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
544 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
545 env->ThrowNew(iae.get(), message.c_str());
546 return nullptr;
547 }
548
549 OatFileAssistant oat_file_assistant(filename.c_str(), target_instruction_set,
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100550 false /* load_executable */);
Richard Uhler46cc64f2016-11-14 14:53:55 +0000551 return env->NewStringUTF(oat_file_assistant.GetStatusDump().c_str());
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100552}
553
Calin Juravle5f9a8012018-02-12 20:27:46 -0800554// Return an array specifying the optimization status of the given file.
555// The array specification is [compiler_filter, compiler_reason].
556static jobjectArray DexFile_getDexFileOptimizationStatus(JNIEnv* env,
557 jclass,
558 jstring javaFilename,
559 jstring javaInstructionSet) {
560 ScopedUtfChars filename(env, javaFilename);
561 if (env->ExceptionCheck()) {
562 return nullptr;
563 }
564
565 ScopedUtfChars instruction_set(env, javaInstructionSet);
566 if (env->ExceptionCheck()) {
567 return nullptr;
568 }
569
570 const InstructionSet target_instruction_set = GetInstructionSetFromString(
571 instruction_set.c_str());
572 if (target_instruction_set == InstructionSet::kNone) {
573 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
574 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
575 env->ThrowNew(iae.get(), message.c_str());
576 return nullptr;
577 }
578
579 std::string compilation_filter;
580 std::string compilation_reason;
581 OatFileAssistant::GetOptimizationStatus(
582 filename.c_str(), target_instruction_set, &compilation_filter, &compilation_reason);
583
584 ScopedLocalRef<jstring> j_compilation_filter(env, env->NewStringUTF(compilation_filter.c_str()));
585 if (j_compilation_filter.get() == nullptr) {
586 return nullptr;
587 }
588 ScopedLocalRef<jstring> j_compilation_reason(env, env->NewStringUTF(compilation_reason.c_str()));
589 if (j_compilation_reason.get() == nullptr) {
590 return nullptr;
591 }
592
593 // Now create output array and copy the set into it.
594 jobjectArray result = env->NewObjectArray(2,
595 WellKnownClasses::java_lang_String,
596 nullptr);
597 env->SetObjectArrayElement(result, 0, j_compilation_filter.get());
598 env->SetObjectArrayElement(result, 1, j_compilation_reason.get());
599
600 return result;
601}
602
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700603static jint DexFile_getDexOptNeeded(JNIEnv* env,
604 jclass,
605 jstring javaFilename,
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700606 jstring javaInstructionSet,
Andreas Gampec38be812016-03-23 15:03:46 -0700607 jstring javaTargetCompilerFilter,
Calin Juravle20c46442017-09-12 00:54:26 -0700608 jstring javaClassLoaderContext,
Shubham Ajmerae4e812a2017-05-25 20:09:58 -0700609 jboolean newProfile,
610 jboolean downgrade) {
Narayan Kamath11d9f062014-04-23 20:24:57 +0100611 ScopedUtfChars filename(env, javaFilename);
Andreas Gampe20c89302014-08-19 17:28:06 -0700612 if (env->ExceptionCheck()) {
Calin Juravleb077e152016-02-18 18:47:37 +0000613 return -1;
Andreas Gampe20c89302014-08-19 17:28:06 -0700614 }
615
Narayan Kamath11d9f062014-04-23 20:24:57 +0100616 ScopedUtfChars instruction_set(env, javaInstructionSet);
Andreas Gampe20c89302014-08-19 17:28:06 -0700617 if (env->ExceptionCheck()) {
Calin Juravleb077e152016-02-18 18:47:37 +0000618 return -1;
Andreas Gampe20c89302014-08-19 17:28:06 -0700619 }
Narayan Kamath11d9f062014-04-23 20:24:57 +0100620
Andreas Gampec38be812016-03-23 15:03:46 -0700621 ScopedUtfChars target_compiler_filter(env, javaTargetCompilerFilter);
622 if (env->ExceptionCheck()) {
623 return -1;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000624 }
Andreas Gampec38be812016-03-23 15:03:46 -0700625
Calin Juravle20c46442017-09-12 00:54:26 -0700626 NullableScopedUtfChars class_loader_context(env, javaClassLoaderContext);
627 if (env->ExceptionCheck()) {
628 return -1;
629 }
630
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700631 return GetDexOptNeeded(env,
632 filename.c_str(),
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700633 instruction_set.c_str(),
Andreas Gampec38be812016-03-23 15:03:46 -0700634 target_compiler_filter.c_str(),
Calin Juravle20c46442017-09-12 00:54:26 -0700635 class_loader_context.c_str(),
Shubham Ajmerae4e812a2017-05-25 20:09:58 -0700636 newProfile == JNI_TRUE,
637 downgrade == JNI_TRUE);
Narayan Kamath11d9f062014-04-23 20:24:57 +0100638}
639
Calin Juravleb077e152016-02-18 18:47:37 +0000640// public API
Narayan Kamath11d9f062014-04-23 20:24:57 +0100641static jboolean DexFile_isDexOptNeeded(JNIEnv* env, jclass, jstring javaFilename) {
Richard Uhler06e3f4f2016-05-24 15:42:37 -0700642 ScopedUtfChars filename_utf(env, javaFilename);
643 if (env->ExceptionCheck()) {
644 return JNI_FALSE;
645 }
646
647 const char* filename = filename_utf.c_str();
648 if ((filename == nullptr) || !OS::FileExists(filename)) {
649 LOG(ERROR) << "DexFile_isDexOptNeeded file '" << filename << "' does not exist";
650 ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException"));
651 const char* message = (filename == nullptr) ? "<empty file name>" : filename;
652 env->ThrowNew(fnfe.get(), message);
653 return JNI_FALSE;
654 }
655
Richard Uhlerd1472a22016-04-15 15:18:56 -0700656 OatFileAssistant oat_file_assistant(filename, kRuntimeISA, false);
Richard Uhler06e3f4f2016-05-24 15:42:37 -0700657 return oat_file_assistant.IsUpToDate() ? JNI_FALSE : JNI_TRUE;
Dave Allison39c3bfb2014-01-28 18:33:52 -0800658}
659
Andreas Gampec38be812016-03-23 15:03:46 -0700660static jboolean DexFile_isValidCompilerFilter(JNIEnv* env,
661 jclass javeDexFileClass ATTRIBUTE_UNUSED,
662 jstring javaCompilerFilter) {
663 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
664 if (env->ExceptionCheck()) {
665 return -1;
666 }
667
668 CompilerFilter::Filter filter;
669 return CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)
670 ? JNI_TRUE : JNI_FALSE;
671}
672
673static jboolean DexFile_isProfileGuidedCompilerFilter(JNIEnv* env,
674 jclass javeDexFileClass ATTRIBUTE_UNUSED,
675 jstring javaCompilerFilter) {
676 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
677 if (env->ExceptionCheck()) {
678 return -1;
679 }
680
681 CompilerFilter::Filter filter;
682 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) {
683 return JNI_FALSE;
684 }
685 return CompilerFilter::DependsOnProfile(filter) ? JNI_TRUE : JNI_FALSE;
686}
687
Andreas Gampe86a785d2016-03-30 17:19:48 -0700688static jstring DexFile_getNonProfileGuidedCompilerFilter(JNIEnv* env,
689 jclass javeDexFileClass ATTRIBUTE_UNUSED,
690 jstring javaCompilerFilter) {
691 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
692 if (env->ExceptionCheck()) {
693 return nullptr;
694 }
695
696 CompilerFilter::Filter filter;
697 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) {
698 return javaCompilerFilter;
699 }
700
701 CompilerFilter::Filter new_filter = CompilerFilter::GetNonProfileDependentFilterFrom(filter);
702
703 // Filter stayed the same, return input.
704 if (filter == new_filter) {
705 return javaCompilerFilter;
706 }
707
708 // Create a new string object and return.
709 std::string new_filter_str = CompilerFilter::NameOfFilter(new_filter);
710 return env->NewStringUTF(new_filter_str.c_str());
711}
712
Nicolas Geoffray741d4262017-05-03 13:08:36 +0100713static jstring DexFile_getSafeModeCompilerFilter(JNIEnv* env,
714 jclass javeDexFileClass ATTRIBUTE_UNUSED,
715 jstring javaCompilerFilter) {
716 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
717 if (env->ExceptionCheck()) {
718 return nullptr;
719 }
720
721 CompilerFilter::Filter filter;
722 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) {
723 return javaCompilerFilter;
724 }
725
726 CompilerFilter::Filter new_filter = CompilerFilter::GetSafeModeFilterFrom(filter);
727
728 // Filter stayed the same, return input.
729 if (filter == new_filter) {
730 return javaCompilerFilter;
731 }
732
733 // Create a new string object and return.
734 std::string new_filter_str = CompilerFilter::NameOfFilter(new_filter);
735 return env->NewStringUTF(new_filter_str.c_str());
736}
737
Jeff Hao90671be2016-04-22 14:00:06 -0700738static jboolean DexFile_isBackedByOatFile(JNIEnv* env, jclass, jobject cookie) {
739 const OatFile* oat_file = nullptr;
740 std::vector<const DexFile*> dex_files;
741 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) {
742 DCHECK(env->ExceptionCheck());
743 return false;
744 }
745 return oat_file != nullptr;
746}
747
Calin Juravle367b9d82017-05-15 18:18:39 -0700748static jobjectArray DexFile_getDexFileOutputPaths(JNIEnv* env,
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700749 jclass,
750 jstring javaFilename,
751 jstring javaInstructionSet) {
752 ScopedUtfChars filename(env, javaFilename);
753 if (env->ExceptionCheck()) {
754 return nullptr;
755 }
756
757 ScopedUtfChars instruction_set(env, javaInstructionSet);
758 if (env->ExceptionCheck()) {
759 return nullptr;
760 }
761
762 const InstructionSet target_instruction_set = GetInstructionSetFromString(
763 instruction_set.c_str());
Vladimir Marko33bff252017-11-01 14:35:42 +0000764 if (target_instruction_set == InstructionSet::kNone) {
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700765 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
766 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
767 env->ThrowNew(iae.get(), message.c_str());
768 return nullptr;
769 }
770
771 OatFileAssistant oat_file_assistant(filename.c_str(),
772 target_instruction_set,
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700773 false /* load_executable */);
774
775 std::unique_ptr<OatFile> best_oat_file = oat_file_assistant.GetBestOatFile();
776 if (best_oat_file == nullptr) {
777 return nullptr;
778 }
779
Calin Juravle367b9d82017-05-15 18:18:39 -0700780 std::string oat_filename = best_oat_file->GetLocation();
781 std::string vdex_filename = GetVdexFilename(best_oat_file->GetLocation());
782
783 ScopedLocalRef<jstring> jvdexFilename(env, env->NewStringUTF(vdex_filename.c_str()));
784 if (jvdexFilename.get() == nullptr) {
785 return nullptr;
786 }
787 ScopedLocalRef<jstring> joatFilename(env, env->NewStringUTF(oat_filename.c_str()));
788 if (joatFilename.get() == nullptr) {
789 return nullptr;
790 }
791
792 // Now create output array and copy the set into it.
793 jobjectArray result = env->NewObjectArray(2,
794 WellKnownClasses::java_lang_String,
795 nullptr);
796 env->SetObjectArrayElement(result, 0, jvdexFilename.get());
797 env->SetObjectArrayElement(result, 1, joatFilename.get());
798
799 return result;
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700800}
801
Richard Uhler24ed94f2017-11-16 11:54:29 +0000802static jlong DexFile_getStaticSizeOfDexFile(JNIEnv* env, jclass, jobject cookie) {
803 const OatFile* oat_file = nullptr;
804 std::vector<const DexFile*> dex_files;
805 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) {
806 DCHECK(env->ExceptionCheck());
807 return 0;
808 }
809
810 uint64_t file_size = 0;
811 for (auto& dex_file : dex_files) {
812 if (dex_file) {
813 file_size += dex_file->GetHeader().file_size_;
814 }
815 }
816 return static_cast<jlong>(file_size);
817}
818
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700819static JNINativeMethod gMethods[] = {
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700820 NATIVE_METHOD(DexFile, closeDexFile, "(Ljava/lang/Object;)Z"),
Mathieu Chartier00310e02015-10-17 12:46:42 -0700821 NATIVE_METHOD(DexFile,
822 defineClassNative,
823 "(Ljava/lang/String;"
824 "Ljava/lang/ClassLoader;"
825 "Ljava/lang/Object;"
826 "Ldalvik/system/DexFile;"
827 ")Ljava/lang/Class;"),
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800828 NATIVE_METHOD(DexFile, getClassNameList, "(Ljava/lang/Object;)[Ljava/lang/String;"),
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700829 NATIVE_METHOD(DexFile, isDexOptNeeded, "(Ljava/lang/String;)Z"),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700830 NATIVE_METHOD(DexFile, getDexOptNeeded,
Calin Juravle20c46442017-09-12 00:54:26 -0700831 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)I"),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700832 NATIVE_METHOD(DexFile, openDexFileNative,
Mathieu Chartier689a7002015-11-20 10:29:42 -0800833 "(Ljava/lang/String;"
834 "Ljava/lang/String;"
835 "I"
836 "Ljava/lang/ClassLoader;"
837 "[Ldalvik/system/DexPathList$Element;"
838 ")Ljava/lang/Object;"),
Alex Lightea9465e2017-02-16 15:38:35 -0800839 NATIVE_METHOD(DexFile, createCookieWithDirectBuffer,
840 "(Ljava/nio/ByteBuffer;II)Ljava/lang/Object;"),
841 NATIVE_METHOD(DexFile, createCookieWithArray, "([BII)Ljava/lang/Object;"),
Andreas Gampec38be812016-03-23 15:03:46 -0700842 NATIVE_METHOD(DexFile, isValidCompilerFilter, "(Ljava/lang/String;)Z"),
843 NATIVE_METHOD(DexFile, isProfileGuidedCompilerFilter, "(Ljava/lang/String;)Z"),
Andreas Gampe86a785d2016-03-30 17:19:48 -0700844 NATIVE_METHOD(DexFile,
845 getNonProfileGuidedCompilerFilter,
846 "(Ljava/lang/String;)Ljava/lang/String;"),
Nicolas Geoffray741d4262017-05-03 13:08:36 +0100847 NATIVE_METHOD(DexFile,
848 getSafeModeCompilerFilter,
849 "(Ljava/lang/String;)Ljava/lang/String;"),
Jeff Hao90671be2016-04-22 14:00:06 -0700850 NATIVE_METHOD(DexFile, isBackedByOatFile, "(Ljava/lang/Object;)Z"),
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100851 NATIVE_METHOD(DexFile, getDexFileStatus,
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700852 "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;"),
Calin Juravle367b9d82017-05-15 18:18:39 -0700853 NATIVE_METHOD(DexFile, getDexFileOutputPaths,
Richard Uhler24ed94f2017-11-16 11:54:29 +0000854 "(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;"),
Calin Juravle5f9a8012018-02-12 20:27:46 -0800855 NATIVE_METHOD(DexFile, getStaticSizeOfDexFile, "(Ljava/lang/Object;)J"),
856 NATIVE_METHOD(DexFile, getDexFileOptimizationStatus,
857 "(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;")
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700858};
859
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700860void register_dalvik_system_DexFile(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700861 REGISTER_NATIVE_METHODS("dalvik/system/DexFile");
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700862}
863
864} // namespace art