blob: feaf619afabda750122b1da801f863dd6b8df001 [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
Vladimir Marko78baed52018-10-11 10:44:58 +010023#include "base/casts.h"
David Sehr891a50e2017-10-27 17:01:07 -070024#include "base/file_utils.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080025#include "base/logging.h"
David Sehrc431b9d2018-03-02 12:01:51 -080026#include "base/os.h"
Andreas Gampe833a4852014-05-21 18:46:59 -070027#include "base/stl_util.h"
David Sehrc431b9d2018-03-02 12:01:51 -080028#include "base/utils.h"
David Sehr79e26072018-04-06 17:58:50 -070029#include "base/zip_archive.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070030#include "class_linker.h"
David Brazdil74582912019-03-01 11:18:19 +000031#include "class_loader_context.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080032#include "common_throws.h"
Andreas Gampec38be812016-03-23 15:03:46 -070033#include "compiler_filter.h"
David Sehr013fd802018-01-11 22:55:24 -080034#include "dex/art_dex_file_loader.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080035#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080036#include "dex/dex_file-inl.h"
37#include "dex/dex_file_loader.h"
Andreas Gampe88dbad32018-06-26 19:54:12 -070038#include "handle_scope-inl.h"
David Srbeckyfb3de3d2018-01-29 16:11:49 +000039#include "jit/debugger_interface.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010040#include "jni/jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041#include "mirror/class_loader.h"
Ian Rogers05f30572013-02-20 12:13:11 -080042#include "mirror/object-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/string.h"
Andreas Gampe87583b32017-05-25 11:22:18 -070044#include "native_util.h"
Steven Morelande431e272017-07-18 16:53:49 -070045#include "nativehelper/jni_macros.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070046#include "nativehelper/scoped_local_ref.h"
47#include "nativehelper/scoped_utf_chars.h"
Narayan Kamath8943c1d2016-05-02 13:14:48 +010048#include "oat_file.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080049#include "oat_file_assistant.h"
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070050#include "oat_file_manager.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070051#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070052#include "scoped_thread_state_change-inl.h"
Ian Rogersdd157d72014-05-15 14:47:50 -070053#include "well_known_classes.h"
Brian Carlstromf91c8c32011-09-21 17:30:34 -070054
55namespace art {
56
Andreas Gampe46ee31b2016-12-14 10:11:49 -080057using android::base::StringPrintf;
58
Mathieu Chartiere58991b2015-10-13 07:59:34 -070059static bool ConvertJavaArrayToDexFiles(
60 JNIEnv* env,
61 jobject arrayObject,
62 /*out*/ std::vector<const DexFile*>& dex_files,
63 /*out*/ const OatFile*& oat_file) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -080064 jarray array = reinterpret_cast<jarray>(arrayObject);
65
66 jsize array_size = env->GetArrayLength(array);
67 if (env->ExceptionCheck() == JNI_TRUE) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -070068 return false;
Andreas Gampe324b9bb2015-02-23 16:33:22 -080069 }
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 Chartiere58991b2015-10-13 07:59:34 -070076 return false;
Andreas Gampe324b9bb2015-02-23 16:33:22 -080077 }
78
Vladimir Marko78baed52018-10-11 10:44:58 +010079 oat_file = reinterpret_cast64<const OatFile*>(long_data[kOatFileIndex]);
Mathieu Chartiere58991b2015-10-13 07:59:34 -070080 dex_files.reserve(array_size - 1);
81 for (jsize i = kDexFileIndexStart; i < array_size; ++i) {
Vladimir Marko78baed52018-10-11 10:44:58 +010082 dex_files.push_back(reinterpret_cast64<const DexFile*>(long_data[i]));
Andreas Gampe324b9bb2015-02-23 16:33:22 -080083 }
84
85 env->ReleaseLongArrayElements(reinterpret_cast<jlongArray>(array), long_data, JNI_ABORT);
Mathieu Chartiere58991b2015-10-13 07:59:34 -070086 return env->ExceptionCheck() != JNI_TRUE;
Andreas Gampe324b9bb2015-02-23 16:33:22 -080087}
88
Mathieu Chartiere58991b2015-10-13 07:59:34 -070089static 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 Chartier80b37b72015-10-12 18:13:39 -070093 jlongArray long_array = env->NewLongArray(static_cast<jsize>(kDexFileIndexStart + vec.size()));
Andreas Gampe324b9bb2015-02-23 16:33:22 -080094 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 Marko78baed52018-10-11 10:44:58 +0100104 long_data[kOatFileIndex] = reinterpret_cast64<jlong>(oat_file);
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700105 for (size_t i = 0; i < vec.size(); ++i) {
Vladimir Marko78baed52018-10-11 10:44:58 +0100106 long_data[kDexFileIndexStart + i] = reinterpret_cast64<jlong>(vec[i].get());
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800107 }
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 Gampeafaf7f82018-10-16 11:32:38 -0700116 dex_file.release(); // NOLINT
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800117 }
118
119 return long_array;
120}
121
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700122// 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 Carlstromc252c3e2011-10-16 23:21:02 -0700127// if (env->ExceptionCheck()) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700128// return null;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700129// }
130// // ... use name.c_str()
131//
132// TODO: rewrite to get rid of this, or change ScopedUtfChars to offer this option.
133class NullableScopedUtfChars {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800134 public:
135 NullableScopedUtfChars(JNIEnv* env, jstring s) : mEnv(env), mString(s) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700136 mUtfChars = (s != nullptr) ? env->GetStringUTFChars(s, nullptr) : nullptr;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800137 }
138
139 ~NullableScopedUtfChars() {
140 if (mUtfChars) {
141 mEnv->ReleaseStringUTFChars(mString, mUtfChars);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700142 }
Elliott Hughesba8eee12012-01-24 20:25:24 -0800143 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700144
Elliott Hughesba8eee12012-01-24 20:25:24 -0800145 const char* c_str() const {
146 return mUtfChars;
147 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700148
Elliott Hughesba8eee12012-01-24 20:25:24 -0800149 size_t size() const {
150 return strlen(mUtfChars);
151 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700152
Elliott Hughesba8eee12012-01-24 20:25:24 -0800153 // Element access.
154 const char& operator[](size_t n) const {
155 return mUtfChars[n];
156 }
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700157
Elliott Hughesba8eee12012-01-24 20:25:24 -0800158 private:
159 JNIEnv* mEnv;
160 jstring mString;
161 const char* mUtfChars;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700162
Elliott Hughesba8eee12012-01-24 20:25:24 -0800163 // Disallow copy and assignment.
164 NullableScopedUtfChars(const NullableScopedUtfChars&);
165 void operator=(const NullableScopedUtfChars&);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700166};
167
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100168static MemMap AllocateDexMemoryMap(JNIEnv* env, jint start, jint end) {
Alex Lightea9465e2017-02-16 15:38:35 -0800169 if (end <= start) {
170 ScopedObjectAccess soa(env);
171 ThrowWrappedIOException("Bad range");
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100172 return MemMap::Invalid();
Alex Lightea9465e2017-02-16 15:38:35 -0800173 }
174
175 std::string error_message;
176 size_t length = static_cast<size_t>(end - start);
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100177 MemMap dex_mem_map = MemMap::MapAnonymous("DEX data",
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100178 length,
179 PROT_READ | PROT_WRITE,
Vladimir Marko11306592018-10-26 14:22:59 +0100180 /*low_4gb=*/ false,
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100181 &error_message);
182 if (!dex_mem_map.IsValid()) {
Alex Lightea9465e2017-02-16 15:38:35 -0800183 ScopedObjectAccess soa(env);
184 ThrowWrappedIOException("%s", error_message.c_str());
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100185 return MemMap::Invalid();
Alex Lightea9465e2017-02-16 15:38:35 -0800186 }
187 return dex_mem_map;
188}
189
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100190static const DexFile* CreateDexFile(JNIEnv* env, MemMap&& dex_mem_map) {
Alex Lightea9465e2017-02-16 15:38:35 -0800191 std::string location = StringPrintf("Anonymous-DexFile@%p-%p",
Vladimir Markoc34bebf2018-08-16 16:12:49 +0100192 dex_mem_map.Begin(),
193 dex_mem_map.End());
Alex Lightea9465e2017-02-16 15:38:35 -0800194 std::string error_message;
David Sehr013fd802018-01-11 22:55:24 -0800195 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 Gampe98ea9d92018-10-19 14:06:15 -0700199 /* verify= */ true,
200 /* verify_checksum= */ true,
David Sehr013fd802018-01-11 22:55:24 -0800201 &error_message));
Alex Lightea9465e2017-02-16 15:38:35 -0800202 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
David Brazdil74582912019-03-01 11:18:19 +0000217struct ScopedIntArrayAccessor {
218 public:
219 ScopedIntArrayAccessor(JNIEnv* env, jintArray arr) : env_(env), array_(arr) {
220 elements_ = env_->GetIntArrayElements(array_, /* isCopy= */ nullptr);
221 CHECK(elements_ != nullptr);
Alex Lightea9465e2017-02-16 15:38:35 -0800222 }
David Brazdil74582912019-03-01 11:18:19 +0000223
224 ~ScopedIntArrayAccessor() {
225 env_->ReleaseIntArrayElements(array_, elements_, JNI_ABORT);
226 }
227
228 jint Get(jsize index) const { return elements_[index]; }
229
230 private:
231 JNIEnv* env_;
232 jintArray array_;
233 jint* elements_;
234};
235
236static jobject DexFile_openInMemoryDexFilesNative(JNIEnv* env,
237 jclass,
238 jobjectArray buffers,
239 jobjectArray arrays,
240 jintArray jstarts,
241 jintArray jends) {
242 jsize buffers_length = env->GetArrayLength(buffers);
243 CHECK_EQ(buffers_length, env->GetArrayLength(arrays));
244 CHECK_EQ(buffers_length, env->GetArrayLength(jstarts));
245 CHECK_EQ(buffers_length, env->GetArrayLength(jends));
246
247 ScopedIntArrayAccessor starts(env, jstarts);
248 ScopedIntArrayAccessor ends(env, jends);
249
250 // Allocate memory for dex files and copy data from ByteBuffers.
Alex Lightea9465e2017-02-16 15:38:35 -0800251 std::vector<std::unique_ptr<const DexFile>> dex_files;
David Brazdil74582912019-03-01 11:18:19 +0000252 dex_files.reserve(buffers_length);
253 for (jsize i = 0; i < buffers_length; ++i) {
254 jobject buffer = env->GetObjectArrayElement(buffers, i);
255 jbyteArray array = reinterpret_cast<jbyteArray>(env->GetObjectArrayElement(arrays, i));
256 jint start = starts.Get(i);
257 jint end = ends.Get(i);
Alex Lightea9465e2017-02-16 15:38:35 -0800258
David Brazdil74582912019-03-01 11:18:19 +0000259 MemMap dex_data = AllocateDexMemoryMap(env, start, end);
260 if (!dex_data.IsValid()) {
261 DCHECK(Thread::Current()->IsExceptionPending());
262 return nullptr;
263 }
264
265 if (array == nullptr) {
266 // Direct ByteBuffer
267 uint8_t* base_address = reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(buffer));
268 if (base_address == nullptr) {
269 ScopedObjectAccess soa(env);
270 ThrowWrappedIOException("dexFileBuffer not direct");
271 return nullptr;
272 }
273 size_t length = static_cast<size_t>(end - start);
274 memcpy(dex_data.Begin(), base_address + start, length);
275 } else {
276 // ByteBuffer backed by a byte array
277 jbyte* destination = reinterpret_cast<jbyte*>(dex_data.Begin());
278 env->GetByteArrayRegion(array, start, end - start, destination);
279 }
280
281 std::unique_ptr<const DexFile> dex_file(CreateDexFile(env, std::move(dex_data)));
282 if (dex_file == nullptr) {
283 DCHECK(env->ExceptionCheck());
284 return nullptr;
285 }
286 dex_files.push_back(std::move(dex_file));
Alex Lightea9465e2017-02-16 15:38:35 -0800287 }
288
David Brazdil74582912019-03-01 11:18:19 +0000289 return ConvertDexFilesToJavaArray(env, /* oat_file= */ nullptr, dex_files);
Alex Lightea9465e2017-02-16 15:38:35 -0800290}
291
Calin Juravle1f7079b2017-04-18 21:25:37 -0700292// TODO(calin): clean up the unused parameters (here and in libcore).
Mathieu Chartierb190d942015-11-12 10:00:58 -0800293static jobject DexFile_openDexFileNative(JNIEnv* env,
294 jclass,
295 jstring javaSourceName,
Calin Juravle1f7079b2017-04-18 21:25:37 -0700296 jstring javaOutputName ATTRIBUTE_UNUSED,
Mathieu Chartierb190d942015-11-12 10:00:58 -0800297 jint flags ATTRIBUTE_UNUSED,
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800298 jobject class_loader,
299 jobjectArray dex_elements) {
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700300 ScopedUtfChars sourceName(env, javaSourceName);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700301 if (sourceName.c_str() == nullptr) {
Yi Kong4b22b342018-08-02 14:43:21 -0700302 return nullptr;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700303 }
Calin Juravle1f7079b2017-04-18 21:25:37 -0700304
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700305 Runtime* const runtime = Runtime::Current();
306 ClassLinker* linker = runtime->GetClassLinker();
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800307 std::vector<std::unique_ptr<const DexFile>> dex_files;
Andreas Gampe833a4852014-05-21 18:46:59 -0700308 std::vector<std::string> error_msgs;
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700309 const OatFile* oat_file = nullptr;
Andreas Gampe833a4852014-05-21 18:46:59 -0700310
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700311 dex_files = runtime->GetOatFileManager().OpenDexFilesFromOat(sourceName.c_str(),
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800312 class_loader,
313 dex_elements,
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700314 /*out*/ &oat_file,
315 /*out*/ &error_msgs);
Andreas Gampe833a4852014-05-21 18:46:59 -0700316
Richard Uhler66d874d2015-01-15 09:37:19 -0800317 if (!dex_files.empty()) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700318 jlongArray array = ConvertDexFilesToJavaArray(env, oat_file, dex_files);
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800319 if (array == nullptr) {
320 ScopedObjectAccess soa(env);
321 for (auto& dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000322 if (linker->IsDexFileRegistered(soa.Self(), *dex_file)) {
Andreas Gampeafaf7f82018-10-16 11:32:38 -0700323 dex_file.release(); // NOLINT
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800324 }
325 }
326 }
327 return array;
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700328 } else {
Vladimir Marko60836d52014-01-16 15:53:38 +0000329 ScopedObjectAccess soa(env);
Andreas Gampe329d1882014-04-08 10:32:19 -0700330 CHECK(!error_msgs.empty());
331 // The most important message is at the end. So set up nesting by going forward, which will
332 // wrap the existing exception as a cause for the following one.
333 auto it = error_msgs.begin();
334 auto itEnd = error_msgs.end();
335 for ( ; it != itEnd; ++it) {
336 ThrowWrappedIOException("%s", it->c_str());
337 }
338
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800339 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700340 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700341}
342
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700343static jboolean DexFile_closeDexFile(JNIEnv* env, jclass, jobject cookie) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700344 std::vector<const DexFile*> dex_files;
345 const OatFile* oat_file;
346 if (!ConvertJavaArrayToDexFiles(env, cookie, dex_files, oat_file)) {
347 Thread::Current()->AssertPendingException();
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700348 return JNI_FALSE;
349 }
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700350 Runtime* const runtime = Runtime::Current();
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700351 bool all_deleted = true;
David Srbecky912f36c2018-09-08 12:22:58 +0100352 // We need to clear the caches since they may contain pointers to the dex instructions.
353 // Different dex file can be loaded at the same memory location later by chance.
354 Thread::ClearAllInterpreterCaches();
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700355 {
356 ScopedObjectAccess soa(env);
Mathieu Chartier0795f232016-09-27 18:43:30 -0700357 ObjPtr<mirror::Object> dex_files_object = soa.Decode<mirror::Object>(cookie);
Mathieu Chartierbc5a7952016-10-17 15:46:31 -0700358 ObjPtr<mirror::LongArray> long_dex_files = dex_files_object->AsLongArray();
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700359 // Delete dex files associated with this dalvik.system.DexFile since there should not be running
360 // code using it. dex_files is a vector due to multidex.
361 ClassLinker* const class_linker = runtime->GetClassLinker();
362 int32_t i = kDexFileIndexStart; // Oat file is at index 0.
363 for (const DexFile* dex_file : dex_files) {
364 if (dex_file != nullptr) {
David Srbeckyafc60cd2018-12-05 11:59:31 +0000365 RemoveNativeDebugInfoForDex(soa.Self(), dex_file);
David Brazdil74582912019-03-01 11:18:19 +0000366 // Only delete the dex file if the dex cache is not found to prevent runtime crashes
367 // if there are calls to DexFile.close while the ART DexFile is still in use.
Vladimir Markocd556b02017-02-03 11:47:34 +0000368 if (!class_linker->IsDexFileRegistered(soa.Self(), *dex_file)) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700369 // Clear the element in the array so that we can call close again.
370 long_dex_files->Set(i, 0);
371 delete dex_file;
372 } else {
373 all_deleted = false;
374 }
375 }
376 ++i;
Andreas Gampe833a4852014-05-21 18:46:59 -0700377 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700378 }
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700379
Mathieu Chartierfdccbd42015-10-14 10:58:41 -0700380 // oat_file can be null if we are running without dex2oat.
381 if (all_deleted && oat_file != nullptr) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700382 // If all of the dex files are no longer in use we can unmap the corresponding oat file.
383 VLOG(class_linker) << "Unregistering " << oat_file;
384 runtime->GetOatFileManager().UnRegisterAndDeleteOatFile(oat_file);
385 }
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700386 return all_deleted ? JNI_TRUE : JNI_FALSE;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700387}
388
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700389static jclass DexFile_defineClassNative(JNIEnv* env,
390 jclass,
391 jstring javaName,
392 jobject javaLoader,
Mathieu Chartier00310e02015-10-17 12:46:42 -0700393 jobject cookie,
394 jobject dexFile) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700395 std::vector<const DexFile*> dex_files;
396 const OatFile* oat_file;
397 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out*/ dex_files, /*out*/ oat_file)) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700398 VLOG(class_linker) << "Failed to find dex_file";
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800399 DCHECK(env->ExceptionCheck());
400 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700401 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800402
Brian Carlstromdf143242011-10-10 18:05:34 -0700403 ScopedUtfChars class_name(env, javaName);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700404 if (class_name.c_str() == nullptr) {
Brian Carlstrom2e450bf2013-09-06 15:39:46 -0700405 VLOG(class_linker) << "Failed to find class_name";
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700406 return nullptr;
Brian Carlstromdf143242011-10-10 18:05:34 -0700407 }
Elliott Hughes95572412011-12-13 18:14:20 -0800408 const std::string descriptor(DotToDescriptor(class_name.c_str()));
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800409 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str()));
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700410 for (auto& dex_file : dex_files) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800411 const dex::ClassDef* dex_class_def =
David Sehr9aa352e2016-09-15 18:13:52 -0700412 OatDexFile::FindClassDef(*dex_file, descriptor.c_str(), hash);
Andreas Gampe833a4852014-05-21 18:46:59 -0700413 if (dex_class_def != nullptr) {
414 ScopedObjectAccess soa(env);
415 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampe833a4852014-05-21 18:46:59 -0700416 StackHandleScope<1> hs(soa.Self());
417 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700418 hs.NewHandle(soa.Decode<mirror::ClassLoader>(javaLoader)));
Vladimir Markocd556b02017-02-03 11:47:34 +0000419 ObjPtr<mirror::DexCache> dex_cache =
420 class_linker->RegisterDexFile(*dex_file, class_loader.Get());
421 if (dex_cache == nullptr) {
422 // OOME or InternalError (dexFile already registered with a different class loader).
423 soa.Self()->AssertPendingException();
424 return nullptr;
425 }
Mathieu Chartierbc5a7952016-10-17 15:46:31 -0700426 ObjPtr<mirror::Class> result = class_linker->DefineClass(soa.Self(),
427 descriptor.c_str(),
428 hash,
429 class_loader,
430 *dex_file,
431 *dex_class_def);
Mathieu Chartier00310e02015-10-17 12:46:42 -0700432 // Add the used dex file. This only required for the DexFile.loadClass API since normal
433 // class loaders already keep their dex files live.
Mathieu Chartierbc5a7952016-10-17 15:46:31 -0700434 class_linker->InsertDexFileInToClassLoader(soa.Decode<mirror::Object>(dexFile),
Mathieu Chartier00310e02015-10-17 12:46:42 -0700435 class_loader.Get());
Andreas Gampe833a4852014-05-21 18:46:59 -0700436 if (result != nullptr) {
Brian Carlstrom667ab7c2014-10-16 19:12:28 -0700437 VLOG(class_linker) << "DexFile_defineClassNative returning " << result
438 << " for " << class_name.c_str();
Andreas Gampe833a4852014-05-21 18:46:59 -0700439 return soa.AddLocalReference<jclass>(result);
440 }
441 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700442 }
Brian Carlstrom667ab7c2014-10-16 19:12:28 -0700443 VLOG(class_linker) << "Failed to find dex_class_def " << class_name.c_str();
Andreas Gampe833a4852014-05-21 18:46:59 -0700444 return nullptr;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700445}
446
Andreas Gampe833a4852014-05-21 18:46:59 -0700447// Needed as a compare functor for sets of const char
448struct CharPointerComparator {
449 bool operator()(const char *str1, const char *str2) const {
450 return strcmp(str1, str2) < 0;
451 }
452};
453
454// Note: this can be an expensive call, as we sort out duplicates in MultiDex files.
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800455static jobjectArray DexFile_getClassNameList(JNIEnv* env, jclass, jobject cookie) {
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700456 const OatFile* oat_file = nullptr;
457 std::vector<const DexFile*> dex_files;
458 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800459 DCHECK(env->ExceptionCheck());
460 return nullptr;
461 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700462
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800463 // Push all class descriptors into a set. Use set instead of unordered_set as we want to
464 // retrieve all in the end.
465 std::set<const char*, CharPointerComparator> descriptors;
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700466 for (auto& dex_file : dex_files) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800467 for (size_t i = 0; i < dex_file->NumClassDefs(); ++i) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800468 const dex::ClassDef& class_def = dex_file->GetClassDef(i);
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800469 const char* descriptor = dex_file->GetClassDescriptor(class_def);
470 descriptors.insert(descriptor);
Andreas Gampe833a4852014-05-21 18:46:59 -0700471 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800472 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700473
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800474 // Now create output array and copy the set into it.
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700475 jobjectArray result = env->NewObjectArray(descriptors.size(),
476 WellKnownClasses::java_lang_String,
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800477 nullptr);
478 if (result != nullptr) {
479 auto it = descriptors.begin();
480 auto it_end = descriptors.end();
481 jsize i = 0;
482 for (; it != it_end; it++, ++i) {
483 std::string descriptor(DescriptorToDot(*it));
484 ScopedLocalRef<jstring> jdescriptor(env, env->NewStringUTF(descriptor.c_str()));
485 if (jdescriptor.get() == nullptr) {
486 return nullptr;
Ian Rogersdd157d72014-05-15 14:47:50 -0700487 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800488 env->SetObjectArrayElement(result, i, jdescriptor.get());
Ian Rogersdd157d72014-05-15 14:47:50 -0700489 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700490 }
Ian Rogersdd157d72014-05-15 14:47:50 -0700491 return result;
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700492}
493
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700494static jint GetDexOptNeeded(JNIEnv* env,
495 const char* filename,
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700496 const char* instruction_set,
Andreas Gampe29d38e72016-03-23 15:31:51 +0000497 const char* compiler_filter_name,
Calin Juravle20c46442017-09-12 00:54:26 -0700498 const char* class_loader_context,
Shubham Ajmerae4e812a2017-05-25 20:09:58 -0700499 bool profile_changed,
500 bool downgrade) {
Narayan Kamath11d9f062014-04-23 20:24:57 +0100501 if ((filename == nullptr) || !OS::FileExists(filename)) {
Richard Uhler95abd042015-03-24 09:51:28 -0700502 LOG(ERROR) << "DexFile_getDexOptNeeded file '" << filename << "' does not exist";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700503 ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException"));
Narayan Kamath11d9f062014-04-23 20:24:57 +0100504 const char* message = (filename == nullptr) ? "<empty file name>" : filename;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700505 env->ThrowNew(fnfe.get(), message);
Calin Juravleb077e152016-02-18 18:47:37 +0000506 return -1;
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700507 }
508
Alex Light6e183f22014-07-18 14:57:04 -0700509 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set);
Vladimir Marko33bff252017-11-01 14:35:42 +0000510 if (target_instruction_set == InstructionSet::kNone) {
Andreas Gampe20c89302014-08-19 17:28:06 -0700511 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
512 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set));
513 env->ThrowNew(iae.get(), message.c_str());
Calin Juravleb077e152016-02-18 18:47:37 +0000514 return -1;
Andreas Gampe20c89302014-08-19 17:28:06 -0700515 }
Alex Light6e183f22014-07-18 14:57:04 -0700516
Andreas Gampe29d38e72016-03-23 15:31:51 +0000517 CompilerFilter::Filter filter;
518 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_name, &filter)) {
519 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
520 std::string message(StringPrintf("Compiler filter %s is invalid.", compiler_filter_name));
521 env->ThrowNew(iae.get(), message.c_str());
522 return -1;
523 }
524
Calin Juravle20c46442017-09-12 00:54:26 -0700525 std::unique_ptr<ClassLoaderContext> context = nullptr;
526 if (class_loader_context != nullptr) {
527 context = ClassLoaderContext::Create(class_loader_context);
528
529 if (context == nullptr) {
530 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
531 std::string message(StringPrintf("Class loader context '%s' is invalid.",
532 class_loader_context));
533 env->ThrowNew(iae.get(), message.c_str());
534 return -1;
535 }
536 }
537
Richard Uhler66d874d2015-01-15 09:37:19 -0800538 // TODO: Verify the dex location is well formed, and throw an IOException if
539 // not?
Andreas Gampe29d38e72016-03-23 15:31:51 +0000540
Richard Uhlerd1472a22016-04-15 15:18:56 -0700541 OatFileAssistant oat_file_assistant(filename, target_instruction_set, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800542
543 // Always treat elements of the bootclasspath as up-to-date.
544 if (oat_file_assistant.IsInBootClassPath()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700545 return OatFileAssistant::kNoDexOptNeeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800546 }
Calin Juravle44e5efa2017-09-12 00:54:26 -0700547
Calin Juravle20c46442017-09-12 00:54:26 -0700548 return oat_file_assistant.GetDexOptNeeded(filter,
549 profile_changed,
550 downgrade,
551 context.get());
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700552}
553
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100554static jstring DexFile_getDexFileStatus(JNIEnv* env,
555 jclass,
556 jstring javaFilename,
557 jstring javaInstructionSet) {
558 ScopedUtfChars filename(env, javaFilename);
559 if (env->ExceptionCheck()) {
560 return nullptr;
561 }
562
563 ScopedUtfChars instruction_set(env, javaInstructionSet);
564 if (env->ExceptionCheck()) {
565 return nullptr;
566 }
567
568 const InstructionSet target_instruction_set = GetInstructionSetFromString(
569 instruction_set.c_str());
Vladimir Marko33bff252017-11-01 14:35:42 +0000570 if (target_instruction_set == InstructionSet::kNone) {
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100571 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
572 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
573 env->ThrowNew(iae.get(), message.c_str());
574 return nullptr;
575 }
576
577 OatFileAssistant oat_file_assistant(filename.c_str(), target_instruction_set,
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700578 /* load_executable= */ false);
Richard Uhler46cc64f2016-11-14 14:53:55 +0000579 return env->NewStringUTF(oat_file_assistant.GetStatusDump().c_str());
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100580}
581
Calin Juravle5f9a8012018-02-12 20:27:46 -0800582// Return an array specifying the optimization status of the given file.
583// The array specification is [compiler_filter, compiler_reason].
584static jobjectArray DexFile_getDexFileOptimizationStatus(JNIEnv* env,
585 jclass,
586 jstring javaFilename,
587 jstring javaInstructionSet) {
588 ScopedUtfChars filename(env, javaFilename);
589 if (env->ExceptionCheck()) {
590 return nullptr;
591 }
592
593 ScopedUtfChars instruction_set(env, javaInstructionSet);
594 if (env->ExceptionCheck()) {
595 return nullptr;
596 }
597
598 const InstructionSet target_instruction_set = GetInstructionSetFromString(
599 instruction_set.c_str());
600 if (target_instruction_set == InstructionSet::kNone) {
601 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
602 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
603 env->ThrowNew(iae.get(), message.c_str());
604 return nullptr;
605 }
606
607 std::string compilation_filter;
608 std::string compilation_reason;
609 OatFileAssistant::GetOptimizationStatus(
610 filename.c_str(), target_instruction_set, &compilation_filter, &compilation_reason);
611
612 ScopedLocalRef<jstring> j_compilation_filter(env, env->NewStringUTF(compilation_filter.c_str()));
613 if (j_compilation_filter.get() == nullptr) {
614 return nullptr;
615 }
616 ScopedLocalRef<jstring> j_compilation_reason(env, env->NewStringUTF(compilation_reason.c_str()));
617 if (j_compilation_reason.get() == nullptr) {
618 return nullptr;
619 }
620
621 // Now create output array and copy the set into it.
622 jobjectArray result = env->NewObjectArray(2,
623 WellKnownClasses::java_lang_String,
624 nullptr);
625 env->SetObjectArrayElement(result, 0, j_compilation_filter.get());
626 env->SetObjectArrayElement(result, 1, j_compilation_reason.get());
627
628 return result;
629}
630
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700631static jint DexFile_getDexOptNeeded(JNIEnv* env,
632 jclass,
633 jstring javaFilename,
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700634 jstring javaInstructionSet,
Andreas Gampec38be812016-03-23 15:03:46 -0700635 jstring javaTargetCompilerFilter,
Calin Juravle20c46442017-09-12 00:54:26 -0700636 jstring javaClassLoaderContext,
Shubham Ajmerae4e812a2017-05-25 20:09:58 -0700637 jboolean newProfile,
638 jboolean downgrade) {
Narayan Kamath11d9f062014-04-23 20:24:57 +0100639 ScopedUtfChars filename(env, javaFilename);
Andreas Gampe20c89302014-08-19 17:28:06 -0700640 if (env->ExceptionCheck()) {
Calin Juravleb077e152016-02-18 18:47:37 +0000641 return -1;
Andreas Gampe20c89302014-08-19 17:28:06 -0700642 }
643
Narayan Kamath11d9f062014-04-23 20:24:57 +0100644 ScopedUtfChars instruction_set(env, javaInstructionSet);
Andreas Gampe20c89302014-08-19 17:28:06 -0700645 if (env->ExceptionCheck()) {
Calin Juravleb077e152016-02-18 18:47:37 +0000646 return -1;
Andreas Gampe20c89302014-08-19 17:28:06 -0700647 }
Narayan Kamath11d9f062014-04-23 20:24:57 +0100648
Andreas Gampec38be812016-03-23 15:03:46 -0700649 ScopedUtfChars target_compiler_filter(env, javaTargetCompilerFilter);
650 if (env->ExceptionCheck()) {
651 return -1;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000652 }
Andreas Gampec38be812016-03-23 15:03:46 -0700653
Calin Juravle20c46442017-09-12 00:54:26 -0700654 NullableScopedUtfChars class_loader_context(env, javaClassLoaderContext);
655 if (env->ExceptionCheck()) {
656 return -1;
657 }
658
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700659 return GetDexOptNeeded(env,
660 filename.c_str(),
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700661 instruction_set.c_str(),
Andreas Gampec38be812016-03-23 15:03:46 -0700662 target_compiler_filter.c_str(),
Calin Juravle20c46442017-09-12 00:54:26 -0700663 class_loader_context.c_str(),
Shubham Ajmerae4e812a2017-05-25 20:09:58 -0700664 newProfile == JNI_TRUE,
665 downgrade == JNI_TRUE);
Narayan Kamath11d9f062014-04-23 20:24:57 +0100666}
667
Calin Juravleb077e152016-02-18 18:47:37 +0000668// public API
Narayan Kamath11d9f062014-04-23 20:24:57 +0100669static jboolean DexFile_isDexOptNeeded(JNIEnv* env, jclass, jstring javaFilename) {
Richard Uhler06e3f4f2016-05-24 15:42:37 -0700670 ScopedUtfChars filename_utf(env, javaFilename);
671 if (env->ExceptionCheck()) {
672 return JNI_FALSE;
673 }
674
675 const char* filename = filename_utf.c_str();
676 if ((filename == nullptr) || !OS::FileExists(filename)) {
677 LOG(ERROR) << "DexFile_isDexOptNeeded file '" << filename << "' does not exist";
678 ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException"));
679 const char* message = (filename == nullptr) ? "<empty file name>" : filename;
680 env->ThrowNew(fnfe.get(), message);
681 return JNI_FALSE;
682 }
683
Richard Uhlerd1472a22016-04-15 15:18:56 -0700684 OatFileAssistant oat_file_assistant(filename, kRuntimeISA, false);
Richard Uhler06e3f4f2016-05-24 15:42:37 -0700685 return oat_file_assistant.IsUpToDate() ? JNI_FALSE : JNI_TRUE;
Dave Allison39c3bfb2014-01-28 18:33:52 -0800686}
687
Andreas Gampec38be812016-03-23 15:03:46 -0700688static jboolean DexFile_isValidCompilerFilter(JNIEnv* env,
689 jclass javeDexFileClass ATTRIBUTE_UNUSED,
690 jstring javaCompilerFilter) {
691 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
692 if (env->ExceptionCheck()) {
693 return -1;
694 }
695
696 CompilerFilter::Filter filter;
697 return CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)
698 ? JNI_TRUE : JNI_FALSE;
699}
700
701static jboolean DexFile_isProfileGuidedCompilerFilter(JNIEnv* env,
702 jclass javeDexFileClass ATTRIBUTE_UNUSED,
703 jstring javaCompilerFilter) {
704 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
705 if (env->ExceptionCheck()) {
706 return -1;
707 }
708
709 CompilerFilter::Filter filter;
710 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) {
711 return JNI_FALSE;
712 }
713 return CompilerFilter::DependsOnProfile(filter) ? JNI_TRUE : JNI_FALSE;
714}
715
Andreas Gampe86a785d2016-03-30 17:19:48 -0700716static jstring DexFile_getNonProfileGuidedCompilerFilter(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::GetNonProfileDependentFilterFrom(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
Nicolas Geoffray741d4262017-05-03 13:08:36 +0100741static jstring DexFile_getSafeModeCompilerFilter(JNIEnv* env,
742 jclass javeDexFileClass ATTRIBUTE_UNUSED,
743 jstring javaCompilerFilter) {
744 ScopedUtfChars compiler_filter(env, javaCompilerFilter);
745 if (env->ExceptionCheck()) {
746 return nullptr;
747 }
748
749 CompilerFilter::Filter filter;
750 if (!CompilerFilter::ParseCompilerFilter(compiler_filter.c_str(), &filter)) {
751 return javaCompilerFilter;
752 }
753
754 CompilerFilter::Filter new_filter = CompilerFilter::GetSafeModeFilterFrom(filter);
755
756 // Filter stayed the same, return input.
757 if (filter == new_filter) {
758 return javaCompilerFilter;
759 }
760
761 // Create a new string object and return.
762 std::string new_filter_str = CompilerFilter::NameOfFilter(new_filter);
763 return env->NewStringUTF(new_filter_str.c_str());
764}
765
Jeff Hao90671be2016-04-22 14:00:06 -0700766static jboolean DexFile_isBackedByOatFile(JNIEnv* env, jclass, jobject cookie) {
767 const OatFile* oat_file = nullptr;
768 std::vector<const DexFile*> dex_files;
769 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) {
770 DCHECK(env->ExceptionCheck());
771 return false;
772 }
773 return oat_file != nullptr;
774}
775
Calin Juravle367b9d82017-05-15 18:18:39 -0700776static jobjectArray DexFile_getDexFileOutputPaths(JNIEnv* env,
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700777 jclass,
778 jstring javaFilename,
779 jstring javaInstructionSet) {
780 ScopedUtfChars filename(env, javaFilename);
781 if (env->ExceptionCheck()) {
782 return nullptr;
783 }
784
785 ScopedUtfChars instruction_set(env, javaInstructionSet);
786 if (env->ExceptionCheck()) {
787 return nullptr;
788 }
789
790 const InstructionSet target_instruction_set = GetInstructionSetFromString(
791 instruction_set.c_str());
Vladimir Marko33bff252017-11-01 14:35:42 +0000792 if (target_instruction_set == InstructionSet::kNone) {
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700793 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
794 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
795 env->ThrowNew(iae.get(), message.c_str());
796 return nullptr;
797 }
798
799 OatFileAssistant oat_file_assistant(filename.c_str(),
800 target_instruction_set,
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700801 /* load_executable= */ false);
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700802
803 std::unique_ptr<OatFile> best_oat_file = oat_file_assistant.GetBestOatFile();
804 if (best_oat_file == nullptr) {
805 return nullptr;
806 }
807
Calin Juravle367b9d82017-05-15 18:18:39 -0700808 std::string oat_filename = best_oat_file->GetLocation();
809 std::string vdex_filename = GetVdexFilename(best_oat_file->GetLocation());
810
811 ScopedLocalRef<jstring> jvdexFilename(env, env->NewStringUTF(vdex_filename.c_str()));
812 if (jvdexFilename.get() == nullptr) {
813 return nullptr;
814 }
815 ScopedLocalRef<jstring> joatFilename(env, env->NewStringUTF(oat_filename.c_str()));
816 if (joatFilename.get() == nullptr) {
817 return nullptr;
818 }
819
820 // Now create output array and copy the set into it.
821 jobjectArray result = env->NewObjectArray(2,
822 WellKnownClasses::java_lang_String,
823 nullptr);
824 env->SetObjectArrayElement(result, 0, jvdexFilename.get());
825 env->SetObjectArrayElement(result, 1, joatFilename.get());
826
827 return result;
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700828}
829
Richard Uhler24ed94f2017-11-16 11:54:29 +0000830static jlong DexFile_getStaticSizeOfDexFile(JNIEnv* env, jclass, jobject cookie) {
831 const OatFile* oat_file = nullptr;
832 std::vector<const DexFile*> dex_files;
833 if (!ConvertJavaArrayToDexFiles(env, cookie, /*out */ dex_files, /* out */ oat_file)) {
834 DCHECK(env->ExceptionCheck());
835 return 0;
836 }
837
838 uint64_t file_size = 0;
839 for (auto& dex_file : dex_files) {
840 if (dex_file) {
841 file_size += dex_file->GetHeader().file_size_;
842 }
843 }
844 return static_cast<jlong>(file_size);
845}
846
Nicolas Geoffray35a4f482018-05-09 14:49:54 +0100847static void DexFile_setTrusted(JNIEnv* env, jclass, jobject j_cookie) {
848 Runtime* runtime = Runtime::Current();
849 ScopedObjectAccess soa(env);
850
851 // Currently only allow this for debuggable apps.
852 if (!runtime->IsJavaDebuggable()) {
853 ThrowSecurityException("Can't exempt class, process is not debuggable.");
854 return;
855 }
856
857 std::vector<const DexFile*> dex_files;
858 const OatFile* oat_file;
859 if (!ConvertJavaArrayToDexFiles(env, j_cookie, dex_files, oat_file)) {
860 Thread::Current()->AssertPendingException();
861 return;
862 }
863
David Brazdile7681822018-12-14 16:25:33 +0000864 // Assign core platform domain as the dex files are allowed to access all the other domains.
Nicolas Geoffray35a4f482018-05-09 14:49:54 +0100865 for (const DexFile* dex_file : dex_files) {
David Brazdile7681822018-12-14 16:25:33 +0000866 const_cast<DexFile*>(dex_file)->SetHiddenapiDomain(hiddenapi::Domain::kCorePlatform);
Nicolas Geoffray35a4f482018-05-09 14:49:54 +0100867 }
868}
869
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700870static JNINativeMethod gMethods[] = {
Mathieu Chartier1d7d7f12015-09-25 16:48:57 -0700871 NATIVE_METHOD(DexFile, closeDexFile, "(Ljava/lang/Object;)Z"),
Mathieu Chartier00310e02015-10-17 12:46:42 -0700872 NATIVE_METHOD(DexFile,
873 defineClassNative,
874 "(Ljava/lang/String;"
875 "Ljava/lang/ClassLoader;"
876 "Ljava/lang/Object;"
877 "Ldalvik/system/DexFile;"
878 ")Ljava/lang/Class;"),
Andreas Gampe324b9bb2015-02-23 16:33:22 -0800879 NATIVE_METHOD(DexFile, getClassNameList, "(Ljava/lang/Object;)[Ljava/lang/String;"),
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700880 NATIVE_METHOD(DexFile, isDexOptNeeded, "(Ljava/lang/String;)Z"),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700881 NATIVE_METHOD(DexFile, getDexOptNeeded,
Calin Juravle20c46442017-09-12 00:54:26 -0700882 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)I"),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700883 NATIVE_METHOD(DexFile, openDexFileNative,
Mathieu Chartier689a7002015-11-20 10:29:42 -0800884 "(Ljava/lang/String;"
885 "Ljava/lang/String;"
886 "I"
887 "Ljava/lang/ClassLoader;"
888 "[Ldalvik/system/DexPathList$Element;"
889 ")Ljava/lang/Object;"),
David Brazdil74582912019-03-01 11:18:19 +0000890 NATIVE_METHOD(DexFile, openInMemoryDexFilesNative,
891 "([Ljava/nio/ByteBuffer;"
892 "[[B"
893 "[I"
894 "[I"
895 ")Ljava/lang/Object;"),
Andreas Gampec38be812016-03-23 15:03:46 -0700896 NATIVE_METHOD(DexFile, isValidCompilerFilter, "(Ljava/lang/String;)Z"),
897 NATIVE_METHOD(DexFile, isProfileGuidedCompilerFilter, "(Ljava/lang/String;)Z"),
Andreas Gampe86a785d2016-03-30 17:19:48 -0700898 NATIVE_METHOD(DexFile,
899 getNonProfileGuidedCompilerFilter,
900 "(Ljava/lang/String;)Ljava/lang/String;"),
Nicolas Geoffray741d4262017-05-03 13:08:36 +0100901 NATIVE_METHOD(DexFile,
902 getSafeModeCompilerFilter,
903 "(Ljava/lang/String;)Ljava/lang/String;"),
Jeff Hao90671be2016-04-22 14:00:06 -0700904 NATIVE_METHOD(DexFile, isBackedByOatFile, "(Ljava/lang/Object;)Z"),
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100905 NATIVE_METHOD(DexFile, getDexFileStatus,
Philip Cuadrab55ad7c2016-07-12 16:37:40 -0700906 "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;"),
Calin Juravle367b9d82017-05-15 18:18:39 -0700907 NATIVE_METHOD(DexFile, getDexFileOutputPaths,
Richard Uhler24ed94f2017-11-16 11:54:29 +0000908 "(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;"),
Calin Juravle5f9a8012018-02-12 20:27:46 -0800909 NATIVE_METHOD(DexFile, getStaticSizeOfDexFile, "(Ljava/lang/Object;)J"),
910 NATIVE_METHOD(DexFile, getDexFileOptimizationStatus,
Nicolas Geoffray35a4f482018-05-09 14:49:54 +0100911 "(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;"),
912 NATIVE_METHOD(DexFile, setTrusted, "(Ljava/lang/Object;)V")
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700913};
914
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700915void register_dalvik_system_DexFile(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700916 REGISTER_NATIVE_METHODS("dalvik/system/DexFile");
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700917}
918
919} // namespace art