blob: 63ee4b1af0bfea7caa5f53b0409cff69b021c5d7 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Brian Carlstrome24fa612011-09-29 00:53:55 -070016
17#include "oat_file.h"
18
Brian Carlstrom700c8d32012-11-05 10:42:02 -080019#include <dlfcn.h>
Calin Juravle4e1d5792014-07-15 23:56:47 +010020#include <string.h>
Andreas Gampedaab38c2014-09-12 18:38:24 -070021#include <unistd.h>
Brian Carlstrom700c8d32012-11-05 10:42:02 -080022
Andreas Gampe7848da42015-04-09 11:15:04 -070023#include <cstdlib>
Richard Uhlere5fed032015-03-18 08:21:11 -070024#include <sstream>
25
Andreas Gampefa8429b2015-04-07 18:34:42 -070026// dlopen_ext support from bionic.
27#ifdef HAVE_ANDROID_OS
28#include "android/dlext.h"
29#endif
30
Brian Carlstromba150c32013-08-27 17:31:03 -070031#include "base/bit_vector.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080032#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080033#include "base/unix_file/fd_file.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080034#include "elf_file.h"
Alex Light84d76052014-08-22 17:49:35 -070035#include "elf_utils.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080036#include "oat.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070037#include "mirror/art_method.h"
38#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/class.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070040#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070041#include "os.h"
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070042#include "runtime.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "utils.h"
Ian Rogers1809a722013-08-09 22:05:32 -070044#include "vmap_table.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070045
46namespace art {
47
Andreas Gampefa8429b2015-04-07 18:34:42 -070048// Whether OatFile::Open will try DlOpen() first. Fallback is our own ELF loader.
49static constexpr bool kUseDlopen = false;
50
51// Whether OatFile::Open will try DlOpen() on the host. On the host we're not linking against
52// bionic, so cannot take advantage of the support for changed semantics (loading the same soname
53// multiple times). However, if/when we switch the above, we likely want to switch this, too,
54// to get test coverage of the code paths.
55static constexpr bool kUseDlopenOnHost = false;
56
57// For debugging, Open will print DlOpen error message if set to true.
58static constexpr bool kPrintDlOpenErrorMessage = false;
59
Richard Uhlere5fed032015-03-18 08:21:11 -070060std::string OatFile::ResolveRelativeEncodedDexLocation(
61 const char* abs_dex_location, const std::string& rel_dex_location) {
62 if (abs_dex_location != nullptr && rel_dex_location[0] != '/') {
63 // Strip :classes<N>.dex used for secondary multidex files.
64 std::string base = DexFile::GetBaseLocation(rel_dex_location);
65 std::string multidex_suffix = DexFile::GetMultiDexSuffix(rel_dex_location);
66
67 // Check if the base is a suffix of the provided abs_dex_location.
68 std::string target_suffix = "/" + base;
69 std::string abs_location(abs_dex_location);
70 if (abs_location.size() > target_suffix.size()) {
71 size_t pos = abs_location.size() - target_suffix.size();
72 if (abs_location.compare(pos, std::string::npos, target_suffix) == 0) {
73 return abs_location + multidex_suffix;
74 }
75 }
76 }
77 return rel_dex_location;
78}
79
Brian Carlstrom700c8d32012-11-05 10:42:02 -080080void OatFile::CheckLocation(const std::string& location) {
Brian Carlstrom7a967b32012-03-28 15:23:10 -070081 CHECK(!location.empty());
Brian Carlstrom700c8d32012-11-05 10:42:02 -080082}
83
Alex Light84d76052014-08-22 17:49:35 -070084OatFile* OatFile::OpenWithElfFile(ElfFile* elf_file,
85 const std::string& location,
Richard Uhlere5fed032015-03-18 08:21:11 -070086 const char* abs_dex_location,
Alex Light84d76052014-08-22 17:49:35 -070087 std::string* error_msg) {
88 std::unique_ptr<OatFile> oat_file(new OatFile(location, false));
89 oat_file->elf_file_.reset(elf_file);
Tong Shen62d1ca32014-09-03 17:24:56 -070090 uint64_t offset, size;
91 bool has_section = elf_file->GetSectionOffsetAndSize(".rodata", &offset, &size);
92 CHECK(has_section);
93 oat_file->begin_ = elf_file->Begin() + offset;
94 oat_file->end_ = elf_file->Begin() + size + offset;
Vladimir Marko5c42c292015-02-25 12:02:49 +000095 // Ignore the optional .bss section when opening non-executable.
Richard Uhlere5fed032015-03-18 08:21:11 -070096 return oat_file->Setup(abs_dex_location, error_msg) ? oat_file.release() : nullptr;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080097}
98
99OatFile* OatFile::Open(const std::string& filename,
100 const std::string& location,
Ian Rogers13735952014-10-08 12:43:28 -0700101 uint8_t* requested_base,
Igor Murashkin46774762014-10-22 11:37:02 -0700102 uint8_t* oat_file_begin,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700103 bool executable,
Richard Uhlere5fed032015-03-18 08:21:11 -0700104 const char* abs_dex_location,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700105 std::string* error_msg) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800106 CHECK(!filename.empty()) << location;
Andreas Gampe7ba64962014-10-23 11:37:40 -0700107 CheckLocation(location);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700108 std::unique_ptr<OatFile> ret;
Andreas Gampefa8429b2015-04-07 18:34:42 -0700109
110 // Use dlopen only when flagged to do so, and when it's OK to load things executable.
111 // TODO: Also try when not executable? The issue here could be re-mapping as writable (as
112 // !executable is a sign that we may want to patch), which may not be allowed for
113 // various reasons.
114 if (kUseDlopen && (kIsTargetBuild || kUseDlopenOnHost) && executable) {
115 // Try to use dlopen. This may fail for various reasons, outlined below. We try dlopen, as
116 // this will register the oat file with the linker and allows libunwind to find our info.
117 ret.reset(OpenDlopen(filename, location, requested_base, abs_dex_location, error_msg));
118 if (ret.get() != nullptr) {
119 return ret.release();
120 }
121 if (kPrintDlOpenErrorMessage) {
122 LOG(ERROR) << "Failed to dlopen: " << *error_msg;
123 }
124 }
125
Elliott Hughes956af0f2014-12-11 14:34:28 -0800126 // If we aren't trying to execute, we just use our own ElfFile loader for a couple reasons:
127 //
128 // On target, dlopen may fail when compiling due to selinux restrictions on installd.
129 //
130 // We use our own ELF loader for Quick to deal with legacy apps that
131 // open a generated dex file by name, remove the file, then open
132 // another generated dex file with the same name. http://b/10614658
133 //
134 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile.
Andreas Gampefa8429b2015-04-07 18:34:42 -0700135 //
136 //
137 // Another independent reason is the absolute placement of boot.oat. dlopen on the host usually
138 // does honor the virtual address encoded in the ELF file only for ET_EXEC files, not ET_DYN.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800139 std::unique_ptr<File> file(OS::OpenFileForReading(filename.c_str()));
Andreas Gampefa8429b2015-04-07 18:34:42 -0700140 if (file == nullptr) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800141 *error_msg = StringPrintf("Failed to open oat filename for reading: %s", strerror(errno));
142 return nullptr;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800143 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800144 ret.reset(OpenElfFile(file.get(), location, requested_base, oat_file_begin, false, executable,
Richard Uhlere5fed032015-03-18 08:21:11 -0700145 abs_dex_location, error_msg));
Elliott Hughes956af0f2014-12-11 14:34:28 -0800146
147 // It would be nice to unlink here. But we might have opened the file created by the
148 // ScopedLock, which we better not delete to avoid races. TODO: Investigate how to fix the API
149 // to allow removal when we know the ELF must be borked.
Dave Allison69dfe512014-07-11 17:11:58 +0000150 return ret.release();
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800151}
152
Richard Uhlere5fed032015-03-18 08:21:11 -0700153OatFile* OatFile::OpenWritable(File* file, const std::string& location,
154 const char* abs_dex_location,
155 std::string* error_msg) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800156 CheckLocation(location);
Richard Uhlere5fed032015-03-18 08:21:11 -0700157 return OpenElfFile(file, location, nullptr, nullptr, true, false, abs_dex_location, error_msg);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800158}
159
Richard Uhlere5fed032015-03-18 08:21:11 -0700160OatFile* OatFile::OpenReadable(File* file, const std::string& location,
161 const char* abs_dex_location,
162 std::string* error_msg) {
Alex Lighta59dd802014-07-02 16:28:08 -0700163 CheckLocation(location);
Richard Uhlere5fed032015-03-18 08:21:11 -0700164 return OpenElfFile(file, location, nullptr, nullptr, false, false, abs_dex_location, error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -0700165}
166
Andreas Gampefa8429b2015-04-07 18:34:42 -0700167OatFile* OatFile::OpenDlopen(const std::string& elf_filename,
168 const std::string& location,
169 uint8_t* requested_base,
170 const char* abs_dex_location,
171 std::string* error_msg) {
172 std::unique_ptr<OatFile> oat_file(new OatFile(location, true));
173 bool success = oat_file->Dlopen(elf_filename, requested_base, abs_dex_location, error_msg);
174 if (!success) {
175 return nullptr;
176 }
177 return oat_file.release();
178}
179
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800180OatFile* OatFile::OpenElfFile(File* file,
181 const std::string& location,
Ian Rogers13735952014-10-08 12:43:28 -0700182 uint8_t* requested_base,
Igor Murashkin46774762014-10-22 11:37:02 -0700183 uint8_t* oat_file_begin,
Brian Carlstromf1d34552013-07-12 20:22:23 -0700184 bool writable,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700185 bool executable,
Richard Uhlere5fed032015-03-18 08:21:11 -0700186 const char* abs_dex_location,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700187 std::string* error_msg) {
Alex Light9dcc4572014-08-14 14:16:26 -0700188 std::unique_ptr<OatFile> oat_file(new OatFile(location, executable));
Igor Murashkin46774762014-10-22 11:37:02 -0700189 bool success = oat_file->ElfFileOpen(file, requested_base, oat_file_begin, writable, executable,
Richard Uhlere5fed032015-03-18 08:21:11 -0700190 abs_dex_location, error_msg);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700191 if (!success) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700192 CHECK(!error_msg->empty());
193 return nullptr;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700194 }
195 return oat_file.release();
196}
197
Alex Light9dcc4572014-08-14 14:16:26 -0700198OatFile::OatFile(const std::string& location, bool is_executable)
Andreas Gampefa8429b2015-04-07 18:34:42 -0700199 : location_(location), begin_(nullptr), end_(nullptr), bss_begin_(nullptr), bss_end_(nullptr),
200 is_executable_(is_executable), dlopen_handle_(nullptr),
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100201 secondary_lookup_lock_("OatFile secondary lookup lock", kOatFileSecondaryLookupLock) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800202 CHECK(!location_.empty());
203}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700204
205OatFile::~OatFile() {
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100206 STLDeleteElements(&oat_dex_files_storage_);
Andreas Gampefa8429b2015-04-07 18:34:42 -0700207 if (dlopen_handle_ != nullptr) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800208 dlclose(dlopen_handle_);
209 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210}
211
Andreas Gampefa8429b2015-04-07 18:34:42 -0700212bool OatFile::Dlopen(const std::string& elf_filename, uint8_t* requested_base,
213 const char* abs_dex_location, std::string* error_msg) {
214 std::unique_ptr<char> absolute_path(realpath(elf_filename.c_str(), nullptr));
215 if (absolute_path == nullptr) {
216 *error_msg = StringPrintf("Failed to find absolute path for '%s'", elf_filename.c_str());
217 return false;
218 }
219#ifdef HAVE_ANDROID_OS
220 android_dlextinfo extinfo;
221 extinfo.flags = ANDROID_DLEXT_FORCE_LOAD;
222 dlopen_handle_ = android_dlopen_ext(absolute_path.get(), RTLD_NOW, &extinfo);
223#else
224 dlopen_handle_ = dlopen(absolute_path.get(), RTLD_NOW);
225#endif
226 if (dlopen_handle_ == nullptr) {
227 *error_msg = StringPrintf("Failed to dlopen '%s': %s", elf_filename.c_str(), dlerror());
228 return false;
229 }
230 begin_ = reinterpret_cast<uint8_t*>(dlsym(dlopen_handle_, "oatdata"));
231 if (begin_ == nullptr) {
232 *error_msg = StringPrintf("Failed to find oatdata symbol in '%s': %s", elf_filename.c_str(),
233 dlerror());
234 return false;
235 }
236 if (requested_base != nullptr && begin_ != requested_base) {
237 PrintFileToLog("/proc/self/maps", LogSeverity::WARNING);
238 *error_msg = StringPrintf("Failed to find oatdata symbol at expected address: "
239 "oatdata=%p != expected=%p, %s. See process maps in the log.",
240 begin_, requested_base, elf_filename.c_str());
241 return false;
242 }
243 end_ = reinterpret_cast<uint8_t*>(dlsym(dlopen_handle_, "oatlastword"));
244 if (end_ == nullptr) {
245 *error_msg = StringPrintf("Failed to find oatlastword symbol in '%s': %s", elf_filename.c_str(),
246 dlerror());
247 return false;
248 }
249 // Readjust to be non-inclusive upper bound.
250 end_ += sizeof(uint32_t);
251
252 bss_begin_ = reinterpret_cast<uint8_t*>(dlsym(dlopen_handle_, "oatbss"));
253 if (bss_begin_ == nullptr) {
254 // No .bss section. Clear dlerror().
255 bss_end_ = nullptr;
256 dlerror();
257 } else {
258 bss_end_ = reinterpret_cast<uint8_t*>(dlsym(dlopen_handle_, "oatbsslastword"));
259 if (bss_end_ == nullptr) {
260 *error_msg = StringPrintf("Failed to find oatbasslastword symbol in '%s'",
261 elf_filename.c_str());
262 return false;
263 }
264 // Readjust to be non-inclusive upper bound.
265 bss_end_ += sizeof(uint32_t);
266 }
267
268 return Setup(abs_dex_location, error_msg);
269}
270
Igor Murashkin46774762014-10-22 11:37:02 -0700271bool OatFile::ElfFileOpen(File* file, uint8_t* requested_base, uint8_t* oat_file_begin,
272 bool writable, bool executable,
Richard Uhlere5fed032015-03-18 08:21:11 -0700273 const char* abs_dex_location,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700274 std::string* error_msg) {
Igor Murashkin46774762014-10-22 11:37:02 -0700275 // TODO: rename requested_base to oat_data_begin
276 elf_file_.reset(ElfFile::Open(file, writable, /*program_header_only*/true, error_msg,
277 oat_file_begin));
Andreas Gampefa8429b2015-04-07 18:34:42 -0700278 if (elf_file_ == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700279 DCHECK(!error_msg->empty());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800280 return false;
281 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700282 bool loaded = elf_file_->Load(executable, error_msg);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800283 if (!loaded) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700284 DCHECK(!error_msg->empty());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800285 return false;
286 }
287 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
Andreas Gampefa8429b2015-04-07 18:34:42 -0700288 if (begin_ == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700289 *error_msg = StringPrintf("Failed to find oatdata symbol in '%s'", file->GetPath().c_str());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800290 return false;
291 }
Andreas Gampefa8429b2015-04-07 18:34:42 -0700292 if (requested_base != nullptr && begin_ != requested_base) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800293 PrintFileToLog("/proc/self/maps", LogSeverity::WARNING);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700294 *error_msg = StringPrintf("Failed to find oatdata symbol at expected address: "
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800295 "oatdata=%p != expected=%p. See process maps in the log.",
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700296 begin_, requested_base);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800297 return false;
298 }
299 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword");
Andreas Gampefa8429b2015-04-07 18:34:42 -0700300 if (end_ == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700301 *error_msg = StringPrintf("Failed to find oatlastword symbol in '%s'", file->GetPath().c_str());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800302 return false;
303 }
304 // Readjust to be non-inclusive upper bound.
305 end_ += sizeof(uint32_t);
Vladimir Marko5c42c292015-02-25 12:02:49 +0000306
307 bss_begin_ = elf_file_->FindDynamicSymbolAddress("oatbss");
308 if (bss_begin_ == nullptr) {
309 // No .bss section. Clear dlerror().
310 bss_end_ = nullptr;
311 dlerror();
312 } else {
313 bss_end_ = elf_file_->FindDynamicSymbolAddress("oatbsslastword");
314 if (bss_end_ == nullptr) {
315 *error_msg = StringPrintf("Failed to find oatbasslastword symbol in '%s'",
316 file->GetPath().c_str());
317 return false;
318 }
319 // Readjust to be non-inclusive upper bound.
320 bss_end_ += sizeof(uint32_t);
321 }
322
Richard Uhlere5fed032015-03-18 08:21:11 -0700323 return Setup(abs_dex_location, error_msg);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800324}
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800325
Richard Uhlere5fed032015-03-18 08:21:11 -0700326bool OatFile::Setup(const char* abs_dex_location, std::string* error_msg) {
Brian Carlstromf1b30302013-03-28 10:35:32 -0700327 if (!GetOatHeader().IsValid()) {
Andreas Gampe2bcb3b22014-12-12 15:25:14 -0800328 std::string cause = GetOatHeader().GetValidationErrorMessage();
329 *error_msg = StringPrintf("Invalid oat header for '%s': %s", GetLocation().c_str(),
330 cause.c_str());
Brian Carlstromf1b30302013-03-28 10:35:32 -0700331 return false;
332 }
Ian Rogers13735952014-10-08 12:43:28 -0700333 const uint8_t* oat = Begin();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700334 oat += sizeof(OatHeader);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700335 if (oat > End()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700336 *error_msg = StringPrintf("In oat file '%s' found truncated OatHeader", GetLocation().c_str());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700337 return false;
338 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700339
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700340 oat += GetOatHeader().GetKeyValueStoreSize();
Brian Carlstromfb331d72013-07-25 22:00:16 -0700341 if (oat > End()) {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700342 *error_msg = StringPrintf("In oat file '%s' found truncated variable-size data: "
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700343 "%p + %zd + %ud <= %p", GetLocation().c_str(),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700344 Begin(), sizeof(OatHeader), GetOatHeader().GetKeyValueStoreSize(),
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700345 End());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700346 return false;
347 }
348
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100349 uint32_t dex_file_count = GetOatHeader().GetDexFileCount();
350 oat_dex_files_storage_.reserve(dex_file_count);
351 for (size_t i = 0; i < dex_file_count; i++) {
Dmitry Petrochenko83bef922014-02-03 12:34:59 +0700352 uint32_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700353 if (UNLIKELY(dex_file_location_size == 0U)) {
354 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd with empty location name",
355 GetLocation().c_str(), i);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700356 return false;
357 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700358 oat += sizeof(dex_file_location_size);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700359 if (UNLIKELY(oat > End())) {
360 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd truncated after dex file "
361 "location size", GetLocation().c_str(), i);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700362 return false;
363 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700364
365 const char* dex_file_location_data = reinterpret_cast<const char*>(oat);
366 oat += dex_file_location_size;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700367 if (UNLIKELY(oat > End())) {
368 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd with truncated dex file "
369 "location", GetLocation().c_str(), i);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700370 return false;
371 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700372
Richard Uhlere5fed032015-03-18 08:21:11 -0700373 std::string dex_file_location = ResolveRelativeEncodedDexLocation(
374 abs_dex_location,
375 std::string(dex_file_location_data, dex_file_location_size));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700376
377 uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat);
378 oat += sizeof(dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700379 if (UNLIKELY(oat > End())) {
380 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' truncated after "
381 "dex file checksum", GetLocation().c_str(), i,
382 dex_file_location.c_str());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700383 return false;
384 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700385
Brian Carlstrom89521892011-12-07 22:05:07 -0800386 uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700387 if (UNLIKELY(dex_file_offset == 0U)) {
388 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with zero dex "
389 "file offset", GetLocation().c_str(), i, dex_file_location.c_str());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700390 return false;
391 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700392 if (UNLIKELY(dex_file_offset > Size())) {
393 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with dex file "
394 "offset %ud > %zd", GetLocation().c_str(), i,
395 dex_file_location.c_str(), dex_file_offset, Size());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700396 return false;
397 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800398 oat += sizeof(dex_file_offset);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700399 if (UNLIKELY(oat > End())) {
400 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' truncated "
Brian Carlstrom37628b72014-10-28 13:54:26 -0700401 "after dex file offsets", GetLocation().c_str(), i,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700402 dex_file_location.c_str());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700403 return false;
404 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800405
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800406 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700407 if (UNLIKELY(!DexFile::IsMagicValid(dex_file_pointer))) {
408 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with invalid "
Brian Carlstrom37628b72014-10-28 13:54:26 -0700409 "dex file magic '%s'", GetLocation().c_str(), i,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700410 dex_file_location.c_str(), dex_file_pointer);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700411 return false;
412 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700413 if (UNLIKELY(!DexFile::IsVersionValid(dex_file_pointer))) {
414 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with invalid "
Brian Carlstrom37628b72014-10-28 13:54:26 -0700415 "dex file version '%s'", GetLocation().c_str(), i,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700416 dex_file_location.c_str(), dex_file_pointer);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700417 return false;
418 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800419 const DexFile::Header* header = reinterpret_cast<const DexFile::Header*>(dex_file_pointer);
420 const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom89521892011-12-07 22:05:07 -0800421
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800422 oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700423 if (UNLIKELY(oat > End())) {
424 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with truncated "
Brian Carlstrom37628b72014-10-28 13:54:26 -0700425 "method offsets", GetLocation().c_str(), i,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700426 dex_file_location.c_str());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700427 return false;
428 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700429
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100430 std::string canonical_location = DexFile::GetDexCanonicalLocation(dex_file_location.c_str());
431
432 // Create the OatDexFile and add it to the owning container.
Vladimir Marko539690a2014-06-05 18:36:42 +0100433 OatDexFile* oat_dex_file = new OatDexFile(this,
434 dex_file_location,
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100435 canonical_location,
Vladimir Marko539690a2014-06-05 18:36:42 +0100436 dex_file_checksum,
437 dex_file_pointer,
438 methods_offsets_pointer);
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100439 oat_dex_files_storage_.push_back(oat_dex_file);
440
441 // Add the location and canonical location (if different) to the oat_dex_files_ table.
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100442 StringPiece key(oat_dex_file->GetDexFileLocation());
Vladimir Marko539690a2014-06-05 18:36:42 +0100443 oat_dex_files_.Put(key, oat_dex_file);
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100444 if (canonical_location != dex_file_location) {
445 StringPiece canonical_key(oat_dex_file->GetCanonicalDexFileLocation());
446 oat_dex_files_.Put(canonical_key, oat_dex_file);
447 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700448 }
Brian Carlstromf1b30302013-03-28 10:35:32 -0700449 return true;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700450}
451
452const OatHeader& OatFile::GetOatHeader() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800453 return *reinterpret_cast<const OatHeader*>(Begin());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700454}
455
Ian Rogers13735952014-10-08 12:43:28 -0700456const uint8_t* OatFile::Begin() const {
Andreas Gampefa8429b2015-04-07 18:34:42 -0700457 CHECK(begin_ != nullptr);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800458 return begin_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700459}
460
Ian Rogers13735952014-10-08 12:43:28 -0700461const uint8_t* OatFile::End() const {
Andreas Gampefa8429b2015-04-07 18:34:42 -0700462 CHECK(end_ != nullptr);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800463 return end_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700464}
465
Vladimir Marko5c42c292015-02-25 12:02:49 +0000466const uint8_t* OatFile::BssBegin() const {
467 return bss_begin_;
468}
469
470const uint8_t* OatFile::BssEnd() const {
471 return bss_end_;
472}
473
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700474const OatFile::OatDexFile* OatFile::GetOatDexFile(const char* dex_location,
475 const uint32_t* dex_location_checksum,
Ian Rogers7fe2c692011-12-06 16:35:59 -0800476 bool warn_if_not_found) const {
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100477 // NOTE: We assume here that the canonical location for a given dex_location never
478 // changes. If it does (i.e. some symlink used by the filename changes) we may return
479 // an incorrect OatDexFile. As long as we have a checksum to check, we shall return
480 // an identical file or fail; otherwise we may see some unpredictable failures.
Calin Juravle4e1d5792014-07-15 23:56:47 +0100481
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100482 // TODO: Additional analysis of usage patterns to see if this can be simplified
483 // without any performance loss, for example by not doing the first lock-free lookup.
484
485 const OatFile::OatDexFile* oat_dex_file = nullptr;
486 StringPiece key(dex_location);
487 // Try to find the key cheaply in the oat_dex_files_ map which holds dex locations
488 // directly mentioned in the oat file and doesn't require locking.
489 auto primary_it = oat_dex_files_.find(key);
490 if (primary_it != oat_dex_files_.end()) {
491 oat_dex_file = primary_it->second;
492 DCHECK(oat_dex_file != nullptr);
493 } else {
494 // This dex_location is not one of the dex locations directly mentioned in the
495 // oat file. The correct lookup is via the canonical location but first see in
496 // the secondary_oat_dex_files_ whether we've looked up this location before.
497 MutexLock mu(Thread::Current(), secondary_lookup_lock_);
498 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key);
499 if (secondary_lb != secondary_oat_dex_files_.end() && key == secondary_lb->first) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700500 oat_dex_file = secondary_lb->second; // May be null.
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100501 } else {
502 // We haven't seen this dex_location before, we must check the canonical location.
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100503 std::string dex_canonical_location = DexFile::GetDexCanonicalLocation(dex_location);
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100504 if (dex_canonical_location != dex_location) {
505 StringPiece canonical_key(dex_canonical_location);
506 auto canonical_it = oat_dex_files_.find(canonical_key);
507 if (canonical_it != oat_dex_files_.end()) {
508 oat_dex_file = canonical_it->second;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700509 } // else keep null.
510 } // else keep null.
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100511
512 // Copy the key to the string_cache_ and store the result in secondary map.
513 string_cache_.emplace_back(key.data(), key.length());
514 StringPiece key_copy(string_cache_.back());
515 secondary_oat_dex_files_.PutBefore(secondary_lb, key_copy, oat_dex_file);
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700516 }
517 }
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100518 if (oat_dex_file != nullptr &&
519 (dex_location_checksum == nullptr ||
520 oat_dex_file->GetDexFileLocationChecksum() == *dex_location_checksum)) {
521 return oat_dex_file;
522 }
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700523
524 if (warn_if_not_found) {
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100525 std::string dex_canonical_location = DexFile::GetDexCanonicalLocation(dex_location);
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800526 std::string checksum("<unspecified>");
Andreas Gampefa8429b2015-04-07 18:34:42 -0700527 if (dex_location_checksum != nullptr) {
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800528 checksum = StringPrintf("0x%08x", *dex_location_checksum);
529 }
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700530 LOG(WARNING) << "Failed to find OatDexFile for DexFile " << dex_location
Calin Juravle4e1d5792014-07-15 23:56:47 +0100531 << " ( canonical path " << dex_canonical_location << ")"
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800532 << " with checksum " << checksum << " in OatFile " << GetLocation();
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700533 if (kIsDebugBuild) {
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100534 for (const OatDexFile* odf : oat_dex_files_storage_) {
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700535 LOG(WARNING) << "OatFile " << GetLocation()
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100536 << " contains OatDexFile " << odf->GetDexFileLocation()
537 << " (canonical path " << odf->GetCanonicalDexFileLocation() << ")"
538 << " with checksum 0x" << std::hex << odf->GetDexFileLocationChecksum();
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700539 }
Ian Rogers7fe2c692011-12-06 16:35:59 -0800540 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700541 }
Calin Juravle4e1d5792014-07-15 23:56:47 +0100542
Andreas Gampefa8429b2015-04-07 18:34:42 -0700543 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700544}
545
Brian Carlstrome24fa612011-09-29 00:53:55 -0700546OatFile::OatDexFile::OatDexFile(const OatFile* oat_file,
Elliott Hughesaa6a5882012-01-13 19:39:16 -0800547 const std::string& dex_file_location,
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100548 const std::string& canonical_dex_file_location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800549 uint32_t dex_file_location_checksum,
Ian Rogers13735952014-10-08 12:43:28 -0700550 const uint8_t* dex_file_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800551 const uint32_t* oat_class_offsets_pointer)
Brian Carlstrome24fa612011-09-29 00:53:55 -0700552 : oat_file_(oat_file),
553 dex_file_location_(dex_file_location),
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100554 canonical_dex_file_location_(canonical_dex_file_location),
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800555 dex_file_location_checksum_(dex_file_location_checksum),
Brian Carlstrom89521892011-12-07 22:05:07 -0800556 dex_file_pointer_(dex_file_pointer),
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800557 oat_class_offsets_pointer_(oat_class_offsets_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700558
559OatFile::OatDexFile::~OatDexFile() {}
560
Ian Rogers05f28c62012-10-23 18:12:13 -0700561size_t OatFile::OatDexFile::FileSize() const {
562 return reinterpret_cast<const DexFile::Header*>(dex_file_pointer_)->file_size_;
563}
564
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800565std::unique_ptr<const DexFile> OatFile::OatDexFile::OpenDexFile(std::string* error_msg) const {
Ian Rogers05f28c62012-10-23 18:12:13 -0700566 return DexFile::Open(dex_file_pointer_, FileSize(), dex_file_location_,
Richard Uhler07b3c232015-03-31 15:57:54 -0700567 dex_file_location_checksum_, this, error_msg);
Brian Carlstrom89521892011-12-07 22:05:07 -0800568}
569
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700570uint32_t OatFile::OatDexFile::GetOatClassOffset(uint16_t class_def_index) const {
571 return oat_class_offsets_pointer_[class_def_index];
572}
573
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100574OatFile::OatClass OatFile::OatDexFile::GetOatClass(uint16_t class_def_index) const {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700575 uint32_t oat_class_offset = GetOatClassOffset(class_def_index);
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800576
Ian Rogers13735952014-10-08 12:43:28 -0700577 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700578 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800579
Ian Rogers13735952014-10-08 12:43:28 -0700580 const uint8_t* status_pointer = oat_class_pointer;
Brian Carlstromba150c32013-08-27 17:31:03 -0700581 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation();
582 mirror::Class::Status status =
583 static_cast<mirror::Class::Status>(*reinterpret_cast<const int16_t*>(status_pointer));
584 CHECK_LT(status, mirror::Class::kStatusMax);
585
Ian Rogers13735952014-10-08 12:43:28 -0700586 const uint8_t* type_pointer = status_pointer + sizeof(uint16_t);
Brian Carlstromba150c32013-08-27 17:31:03 -0700587 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation();
588 OatClassType type = static_cast<OatClassType>(*reinterpret_cast<const uint16_t*>(type_pointer));
589 CHECK_LT(type, kOatClassMax);
590
Ian Rogers13735952014-10-08 12:43:28 -0700591 const uint8_t* after_type_pointer = type_pointer + sizeof(int16_t);
Brian Carlstromcd937a92014-03-04 22:53:23 -0800592 CHECK_LE(after_type_pointer, oat_file_->End()) << oat_file_->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -0700593
Brian Carlstromcd937a92014-03-04 22:53:23 -0800594 uint32_t bitmap_size = 0;
Ian Rogers13735952014-10-08 12:43:28 -0700595 const uint8_t* bitmap_pointer = nullptr;
596 const uint8_t* methods_pointer = nullptr;
Ian Rogers97b52f82014-08-14 11:34:07 -0700597 if (type != kOatClassNoneCompiled) {
598 if (type == kOatClassSomeCompiled) {
599 bitmap_size = static_cast<uint32_t>(*reinterpret_cast<const uint32_t*>(after_type_pointer));
600 bitmap_pointer = after_type_pointer + sizeof(bitmap_size);
601 CHECK_LE(bitmap_pointer, oat_file_->End()) << oat_file_->GetLocation();
602 methods_pointer = bitmap_pointer + bitmap_size;
603 } else {
604 methods_pointer = after_type_pointer;
605 }
606 CHECK_LE(methods_pointer, oat_file_->End()) << oat_file_->GetLocation();
Brian Carlstromcd937a92014-03-04 22:53:23 -0800607 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800608
Richard Uhler07b3c232015-03-31 15:57:54 -0700609 return OatFile::OatClass(oat_file_,
610 status,
611 type,
612 bitmap_size,
613 reinterpret_cast<const uint32_t*>(bitmap_pointer),
614 reinterpret_cast<const OatMethodOffsets*>(methods_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700615}
616
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800617OatFile::OatClass::OatClass(const OatFile* oat_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800618 mirror::Class::Status status,
Brian Carlstromba150c32013-08-27 17:31:03 -0700619 OatClassType type,
620 uint32_t bitmap_size,
621 const uint32_t* bitmap_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800622 const OatMethodOffsets* methods_pointer)
Brian Carlstromba150c32013-08-27 17:31:03 -0700623 : oat_file_(oat_file), status_(status), type_(type),
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100624 bitmap_(bitmap_pointer), methods_pointer_(methods_pointer) {
Brian Carlstromba150c32013-08-27 17:31:03 -0700625 switch (type_) {
626 case kOatClassAllCompiled: {
627 CHECK_EQ(0U, bitmap_size);
Brian Carlstromcd937a92014-03-04 22:53:23 -0800628 CHECK(bitmap_pointer == nullptr);
Ian Rogers97b52f82014-08-14 11:34:07 -0700629 CHECK(methods_pointer != nullptr);
Brian Carlstromba150c32013-08-27 17:31:03 -0700630 break;
631 }
632 case kOatClassSomeCompiled: {
633 CHECK_NE(0U, bitmap_size);
Brian Carlstromcd937a92014-03-04 22:53:23 -0800634 CHECK(bitmap_pointer != nullptr);
Ian Rogers97b52f82014-08-14 11:34:07 -0700635 CHECK(methods_pointer != nullptr);
Brian Carlstromba150c32013-08-27 17:31:03 -0700636 break;
637 }
638 case kOatClassNoneCompiled: {
639 CHECK_EQ(0U, bitmap_size);
Brian Carlstromcd937a92014-03-04 22:53:23 -0800640 CHECK(bitmap_pointer == nullptr);
Ian Rogers97b52f82014-08-14 11:34:07 -0700641 CHECK(methods_pointer_ == nullptr);
Brian Carlstromba150c32013-08-27 17:31:03 -0700642 break;
643 }
644 case kOatClassMax: {
645 LOG(FATAL) << "Invalid OatClassType " << type_;
646 break;
647 }
648 }
649}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700650
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700651uint32_t OatFile::OatClass::GetOatMethodOffsetsOffset(uint32_t method_index) const {
652 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index);
653 if (oat_method_offsets == nullptr) {
654 return 0u;
655 }
656 return reinterpret_cast<const uint8_t*>(oat_method_offsets) - oat_file_->Begin();
657}
658
659const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const {
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100660 // NOTE: We don't keep the number of methods and cannot do a bounds check for method_index.
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700661 if (methods_pointer_ == nullptr) {
Brian Carlstromba150c32013-08-27 17:31:03 -0700662 CHECK_EQ(kOatClassNoneCompiled, type_);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700663 return nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700664 }
665 size_t methods_pointer_index;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700666 if (bitmap_ == nullptr) {
Brian Carlstromba150c32013-08-27 17:31:03 -0700667 CHECK_EQ(kOatClassAllCompiled, type_);
668 methods_pointer_index = method_index;
669 } else {
670 CHECK_EQ(kOatClassSomeCompiled, type_);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100671 if (!BitVector::IsBitSet(bitmap_, method_index)) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700672 return nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700673 }
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100674 size_t num_set_bits = BitVector::NumSetBits(bitmap_, method_index);
675 methods_pointer_index = num_set_bits;
Brian Carlstromba150c32013-08-27 17:31:03 -0700676 }
677 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index];
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700678 return &oat_method_offsets;
679}
680
681const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
682 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index);
683 if (oat_method_offsets == nullptr) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800684 return OatMethod(nullptr, 0);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700685 }
686 if (oat_file_->IsExecutable() ||
687 Runtime::Current() == nullptr || // This case applies for oatdump.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800688 Runtime::Current()->IsAotCompiler()) {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800689 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_);
Alex Light9dcc4572014-08-14 14:16:26 -0700690 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800691 // We aren't allowed to use the compiled code. We just force it down the interpreted / jit
692 // version.
693 return OatMethod(oat_file_->Begin(), 0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700694}
695
Brian Carlstromea46f952013-07-30 01:26:50 -0700696void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const {
Andreas Gampefa8429b2015-04-07 18:34:42 -0700697 CHECK(method != nullptr);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800698 method->SetEntryPointFromQuickCompiledCode(GetQuickCode());
Brian Carlstromae826982011-11-09 01:33:42 -0800699}
700
Andreas Gampe7ba64962014-10-23 11:37:40 -0700701bool OatFile::IsPic() const {
Igor Murashkin46774762014-10-22 11:37:02 -0700702 return GetOatHeader().IsPic();
Andreas Gampe7ba64962014-10-23 11:37:40 -0700703 // TODO: Check against oat_patches. b/18144996
704}
705
Sebastien Hertz0de11332015-05-13 12:14:05 +0200706bool OatFile::IsDebuggable() const {
707 return GetOatHeader().IsDebuggable();
708}
709
Andreas Gampe7848da42015-04-09 11:15:04 -0700710static constexpr char kDexClassPathEncodingSeparator = '*';
711
712std::string OatFile::EncodeDexFileDependencies(const std::vector<const DexFile*>& dex_files) {
713 std::ostringstream out;
714
715 for (const DexFile* dex_file : dex_files) {
716 out << dex_file->GetLocation().c_str();
717 out << kDexClassPathEncodingSeparator;
718 out << dex_file->GetLocationChecksum();
719 out << kDexClassPathEncodingSeparator;
720 }
721
722 return out.str();
723}
724
725bool OatFile::CheckStaticDexFileDependencies(const char* dex_dependencies, std::string* msg) {
726 if (dex_dependencies == nullptr || dex_dependencies[0] == 0) {
727 // No dependencies.
728 return true;
729 }
730
731 // Assumption: this is not performance-critical. So it's OK to do this with a std::string and
732 // Split() instead of manual parsing of the combined char*.
733 std::vector<std::string> split;
734 Split(dex_dependencies, kDexClassPathEncodingSeparator, &split);
735 if (split.size() % 2 != 0) {
736 // Expected pairs of location and checksum.
737 *msg = StringPrintf("Odd number of elements in dependency list %s", dex_dependencies);
738 return false;
739 }
740
741 for (auto it = split.begin(), end = split.end(); it != end; it += 2) {
742 std::string& location = *it;
743 std::string& checksum = *(it + 1);
744 int64_t converted = strtoll(checksum.c_str(), nullptr, 10);
745 if (converted == 0) {
746 // Conversion error.
747 *msg = StringPrintf("Conversion error for %s", checksum.c_str());
748 return false;
749 }
750
751 uint32_t dex_checksum;
752 std::string error_msg;
753 if (DexFile::GetChecksum(DexFile::GetDexCanonicalLocation(location.c_str()).c_str(),
754 &dex_checksum,
755 &error_msg)) {
756 if (converted != dex_checksum) {
757 *msg = StringPrintf("Checksums don't match for %s: %" PRId64 " vs %u",
758 location.c_str(), converted, dex_checksum);
759 return false;
760 }
761 } else {
762 // Problem retrieving checksum.
763 // TODO: odex files?
764 *msg = StringPrintf("Could not retrieve checksum for %s: %s", location.c_str(),
765 error_msg.c_str());
766 return false;
767 }
768 }
769
770 return true;
771}
772
773bool OatFile::GetDexLocationsFromDependencies(const char* dex_dependencies,
774 std::vector<std::string>* locations) {
775 DCHECK(locations != nullptr);
776 if (dex_dependencies == nullptr || dex_dependencies[0] == 0) {
777 return true;
778 }
779
780 // Assumption: this is not performance-critical. So it's OK to do this with a std::string and
781 // Split() instead of manual parsing of the combined char*.
782 std::vector<std::string> split;
783 Split(dex_dependencies, kDexClassPathEncodingSeparator, &split);
784 if (split.size() % 2 != 0) {
785 // Expected pairs of location and checksum.
786 return false;
787 }
788
789 for (auto it = split.begin(), end = split.end(); it != end; it += 2) {
790 locations->push_back(*it);
791 }
792
793 return true;
794}
795
Brian Carlstrome24fa612011-09-29 00:53:55 -0700796} // namespace art