blob: aae9d97aebcb759241dc538363b8230601c710e4 [file] [log] [blame]
Richard Uhler66d874d2015-01-15 09:37:19 -08001/*
2 * Copyright (C) 2014 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
17#include "oat_file_assistant.h"
18
19#include <fcntl.h>
20#ifdef __linux__
21#include <sys/sendfile.h>
22#else
23#include <sys/socket.h>
24#endif
25#include <sys/types.h>
26#include <sys/stat.h>
27#include <unistd.h>
28
29#include <set>
30
31#include "base/logging.h"
32#include "base/stringprintf.h"
Narayan Kamath8943c1d2016-05-02 13:14:48 +010033#include "compiler_filter.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080034#include "class_linker.h"
35#include "gc/heap.h"
36#include "gc/space/image_space.h"
37#include "image.h"
38#include "oat.h"
39#include "os.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080040#include "runtime.h"
Mathieu Chartierfbc31082016-01-24 11:59:56 -080041#include "scoped_thread_state_change.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080042#include "ScopedFd.h"
43#include "utils.h"
44
45namespace art {
46
Narayan Kamath8943c1d2016-05-02 13:14:48 +010047std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status) {
48 switch (status) {
49 case OatFileAssistant::kOatOutOfDate:
50 stream << "kOatOutOfDate";
51 break;
52 case OatFileAssistant::kOatUpToDate:
53 stream << "kOatUpToDate";
54 break;
55 case OatFileAssistant::kOatNeedsRelocation:
56 stream << "kOatNeedsRelocation";
57 break;
58 default:
59 UNREACHABLE();
60 }
61
62 return stream;
63}
64
Richard Uhler66d874d2015-01-15 09:37:19 -080065OatFileAssistant::OatFileAssistant(const char* dex_location,
66 const InstructionSet isa,
67 bool load_executable)
Richard Uhlerd1472a22016-04-15 15:18:56 -070068 : OatFileAssistant(dex_location, nullptr, isa, load_executable)
Calin Juravleb077e152016-02-18 18:47:37 +000069{ }
Richard Uhler66d874d2015-01-15 09:37:19 -080070
71OatFileAssistant::OatFileAssistant(const char* dex_location,
72 const char* oat_location,
73 const InstructionSet isa,
74 bool load_executable)
Richard Uhlerd1472a22016-04-15 15:18:56 -070075 : isa_(isa), load_executable_(load_executable) {
Richard Uhler740eec92015-10-15 15:12:23 -070076 CHECK(dex_location != nullptr) << "OatFileAssistant: null dex location";
77 dex_location_.assign(dex_location);
78
Richard Uhler66d874d2015-01-15 09:37:19 -080079 if (load_executable_ && isa != kRuntimeISA) {
80 LOG(WARNING) << "OatFileAssistant: Load executable specified, "
81 << "but isa is not kRuntimeISA. Will not attempt to load executable.";
82 load_executable_ = false;
83 }
84
85 // If the user gave a target oat location, save that as the cached oat
86 // location now so we won't try to construct the default location later.
87 if (oat_location != nullptr) {
88 cached_oat_file_name_ = std::string(oat_location);
89 cached_oat_file_name_attempted_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -080090 }
Richard Uhler66d874d2015-01-15 09:37:19 -080091}
92
93OatFileAssistant::~OatFileAssistant() {
94 // Clean up the lock file.
Richard Uhler581f4e92015-05-07 10:19:35 -070095 if (flock_.HasFile()) {
Vladimir Marko66fdcbd2016-04-05 14:19:08 +010096 unlink(flock_.GetFile()->GetPath().c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -080097 }
98}
99
100bool OatFileAssistant::IsInBootClassPath() {
101 // Note: We check the current boot class path, regardless of the ISA
102 // specified by the user. This is okay, because the boot class path should
103 // be the same for all ISAs.
104 // TODO: Can we verify the boot class path is the same for all ISAs?
105 Runtime* runtime = Runtime::Current();
106 ClassLinker* class_linker = runtime->GetClassLinker();
107 const auto& boot_class_path = class_linker->GetBootClassPath();
108 for (size_t i = 0; i < boot_class_path.size(); i++) {
Richard Uhler740eec92015-10-15 15:12:23 -0700109 if (boot_class_path[i]->GetLocation() == dex_location_) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800110 VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path";
111 return true;
112 }
113 }
114 return false;
115}
116
117bool OatFileAssistant::Lock(std::string* error_msg) {
118 CHECK(error_msg != nullptr);
Richard Uhler581f4e92015-05-07 10:19:35 -0700119 CHECK(!flock_.HasFile()) << "OatFileAssistant::Lock already acquired";
Richard Uhler66d874d2015-01-15 09:37:19 -0800120
121 if (OatFileName() == nullptr) {
122 *error_msg = "Failed to determine lock file";
123 return false;
124 }
125 std::string lock_file_name = *OatFileName() + ".flock";
126
Richard Uhler581f4e92015-05-07 10:19:35 -0700127 if (!flock_.Init(lock_file_name.c_str(), error_msg)) {
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100128 unlink(lock_file_name.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800129 return false;
130 }
131 return true;
132}
133
Richard Uhlerd1472a22016-04-15 15:18:56 -0700134static bool GivenOatFileCompilerFilterIsOkay(const OatFile& oat_file,
135 CompilerFilter::Filter target,
136 bool profile_changed) {
137 CompilerFilter::Filter current = oat_file.GetCompilerFilter();
138
139 if (profile_changed && CompilerFilter::DependsOnProfile(current)) {
140 VLOG(oat) << "Compiler filter not okay because Profile changed";
141 return false;
142 }
143 return CompilerFilter::IsAsGoodAs(current, target);
144}
145
146bool OatFileAssistant::OatFileCompilerFilterIsOkay(CompilerFilter::Filter target,
147 bool profile_changed) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000148 const OatFile* oat_file = GetOatFile();
149 if (oat_file != nullptr) {
Richard Uhlerd1472a22016-04-15 15:18:56 -0700150 return GivenOatFileCompilerFilterIsOkay(*oat_file, target, profile_changed);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000151 }
152 return false;
Calin Juravleb077e152016-02-18 18:47:37 +0000153}
Richard Uhler66d874d2015-01-15 09:37:19 -0800154
Richard Uhlerd1472a22016-04-15 15:18:56 -0700155bool OatFileAssistant::OdexFileCompilerFilterIsOkay(CompilerFilter::Filter target,
156 bool profile_changed) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000157 const OatFile* odex_file = GetOdexFile();
158 if (odex_file != nullptr) {
Richard Uhlerd1472a22016-04-15 15:18:56 -0700159 return GivenOatFileCompilerFilterIsOkay(*odex_file, target, profile_changed);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000160 }
161 return false;
162}
163
Richard Uhlerd1472a22016-04-15 15:18:56 -0700164OatFileAssistant::DexOptNeeded
165OatFileAssistant::GetDexOptNeeded(CompilerFilter::Filter target,
166 bool profile_changed) {
Vladimir Markof6d1e0f2016-05-23 15:32:42 +0100167 bool compilation_desired = CompilerFilter::IsBytecodeCompilationEnabled(target);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000168
169 // See if the oat file is in good shape as is.
Richard Uhlerd1472a22016-04-15 15:18:56 -0700170 bool oat_okay = OatFileCompilerFilterIsOkay(target, profile_changed);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000171 if (oat_okay) {
172 if (compilation_desired) {
173 if (OatFileIsUpToDate()) {
174 return kNoDexOptNeeded;
175 }
176 } else {
177 if (!OatFileIsOutOfDate()) {
178 return kNoDexOptNeeded;
179 }
180 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800181 }
Richard Uhler95abd042015-03-24 09:51:28 -0700182
Andreas Gampe29d38e72016-03-23 15:31:51 +0000183 // See if the odex file is in good shape as is.
Richard Uhlerd1472a22016-04-15 15:18:56 -0700184 bool odex_okay = OdexFileCompilerFilterIsOkay(target, profile_changed);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000185 if (odex_okay) {
186 if (compilation_desired) {
187 if (OdexFileIsUpToDate()) {
188 return kNoDexOptNeeded;
189 }
190 } else {
191 if (!OdexFileIsOutOfDate()) {
192 return kNoDexOptNeeded;
193 }
194 }
Richard Uhler95abd042015-03-24 09:51:28 -0700195 }
196
Andreas Gampe29d38e72016-03-23 15:31:51 +0000197 // See if we can get an up-to-date file by running patchoat.
198 if (compilation_desired) {
Richard Uhlerd1537b52016-03-29 13:27:41 -0700199 if (odex_okay && OdexFileNeedsRelocation() && OdexFileHasPatchInfo()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000200 return kPatchOatNeeded;
201 }
202
Richard Uhlerd1537b52016-03-29 13:27:41 -0700203 if (oat_okay && OatFileNeedsRelocation() && OatFileHasPatchInfo()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000204 return kSelfPatchOatNeeded;
205 }
Richard Uhler95abd042015-03-24 09:51:28 -0700206 }
207
Andreas Gampe29d38e72016-03-23 15:31:51 +0000208 // We can only run dex2oat if there are original dex files.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700209 return HasOriginalDexFiles() ? kDex2OatNeeded : kNoDexOptNeeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800210}
211
Richard Uhlerf4b34872016-04-13 11:03:46 -0700212// Figure out the currently specified compile filter option in the runtime.
213// Returns true on success, false if the compiler filter is invalid, in which
214// case error_msg describes the problem.
215static bool GetRuntimeCompilerFilterOption(CompilerFilter::Filter* filter,
216 std::string* error_msg) {
217 CHECK(filter != nullptr);
218 CHECK(error_msg != nullptr);
219
220 *filter = CompilerFilter::kDefaultCompilerFilter;
221 for (StringPiece option : Runtime::Current()->GetCompilerOptions()) {
222 if (option.starts_with("--compiler-filter=")) {
223 const char* compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
224 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_string, filter)) {
225 *error_msg = std::string("Unknown --compiler-filter value: ")
226 + std::string(compiler_filter_string);
227 return false;
228 }
229 }
230 }
231 return true;
232}
233
Richard Uhler01be6812016-05-17 10:34:52 -0700234bool OatFileAssistant::IsUpToDate() {
235 return OatFileIsUpToDate() || OdexFileIsUpToDate();
236}
237
Richard Uhler1e860612016-03-30 12:17:55 -0700238OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerd1472a22016-04-15 15:18:56 -0700239OatFileAssistant::MakeUpToDate(bool profile_changed, std::string* error_msg) {
Richard Uhlerf4b34872016-04-13 11:03:46 -0700240 CompilerFilter::Filter target;
241 if (!GetRuntimeCompilerFilterOption(&target, error_msg)) {
242 return kUpdateNotAttempted;
243 }
244
Richard Uhlerd1472a22016-04-15 15:18:56 -0700245 switch (GetDexOptNeeded(target, profile_changed)) {
Richard Uhler1e860612016-03-30 12:17:55 -0700246 case kNoDexOptNeeded: return kUpdateSucceeded;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700247 case kDex2OatNeeded: return GenerateOatFile(error_msg);
Richard Uhler95abd042015-03-24 09:51:28 -0700248 case kPatchOatNeeded: return RelocateOatFile(OdexFileName(), error_msg);
249 case kSelfPatchOatNeeded: return RelocateOatFile(OatFileName(), error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800250 }
251 UNREACHABLE();
252}
253
254std::unique_ptr<OatFile> OatFileAssistant::GetBestOatFile() {
Richard Uhler5f946da2015-07-17 12:28:32 -0700255 // The best oat files are, in descending order of bestness:
256 // 1. Properly relocated files. These may be opened executable.
257 // 2. Not out-of-date files that are already opened non-executable.
258 // 3. Not out-of-date files that we must reopen non-executable.
259
Richard Uhler66d874d2015-01-15 09:37:19 -0800260 if (OatFileIsUpToDate()) {
261 oat_file_released_ = true;
262 return std::move(cached_oat_file_);
263 }
264
265 if (OdexFileIsUpToDate()) {
266 oat_file_released_ = true;
267 return std::move(cached_odex_file_);
268 }
269
Richard Uhler5f946da2015-07-17 12:28:32 -0700270 VLOG(oat) << "Oat File Assistant: No relocated oat file found,"
271 << " attempting to fall back to interpreting oat file instead.";
Richard Uhler66d874d2015-01-15 09:37:19 -0800272
Richard Uhler5f946da2015-07-17 12:28:32 -0700273 if (!OatFileIsOutOfDate() && !OatFileIsExecutable()) {
274 oat_file_released_ = true;
275 return std::move(cached_oat_file_);
276 }
277
278 if (!OdexFileIsOutOfDate() && !OdexFileIsExecutable()) {
279 oat_file_released_ = true;
280 return std::move(cached_odex_file_);
281 }
282
283 if (!OatFileIsOutOfDate()) {
284 load_executable_ = false;
285 ClearOatFileCache();
Richard Uhler66d874d2015-01-15 09:37:19 -0800286 if (!OatFileIsOutOfDate()) {
Richard Uhler5f946da2015-07-17 12:28:32 -0700287 CHECK(!OatFileIsExecutable());
288 oat_file_released_ = true;
289 return std::move(cached_oat_file_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800290 }
Richard Uhler5f946da2015-07-17 12:28:32 -0700291 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800292
Richard Uhler5f946da2015-07-17 12:28:32 -0700293 if (!OdexFileIsOutOfDate()) {
294 load_executable_ = false;
295 ClearOdexFileCache();
Richard Uhler66d874d2015-01-15 09:37:19 -0800296 if (!OdexFileIsOutOfDate()) {
Richard Uhler5f946da2015-07-17 12:28:32 -0700297 CHECK(!OdexFileIsExecutable());
298 oat_file_released_ = true;
299 return std::move(cached_odex_file_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800300 }
301 }
302
303 return std::unique_ptr<OatFile>();
304}
305
306std::vector<std::unique_ptr<const DexFile>> OatFileAssistant::LoadDexFiles(
307 const OatFile& oat_file, const char* dex_location) {
308 std::vector<std::unique_ptr<const DexFile>> dex_files;
309
310 // Load the primary dex file.
311 std::string error_msg;
312 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(
313 dex_location, nullptr, false);
314 if (oat_dex_file == nullptr) {
315 LOG(WARNING) << "Attempt to load out-of-date oat file "
316 << oat_file.GetLocation() << " for dex location " << dex_location;
317 return std::vector<std::unique_ptr<const DexFile>>();
318 }
319
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700320 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800321 if (dex_file.get() == nullptr) {
322 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
323 return std::vector<std::unique_ptr<const DexFile>>();
324 }
325 dex_files.push_back(std::move(dex_file));
326
327 // Load secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700328 for (size_t i = 1; ; i++) {
329 std::string secondary_dex_location = DexFile::GetMultiDexLocation(i, dex_location);
Richard Uhler66d874d2015-01-15 09:37:19 -0800330 oat_dex_file = oat_file.GetOatDexFile(secondary_dex_location.c_str(), nullptr, false);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700331 if (oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800332 // There are no more secondary dex files to load.
333 break;
334 }
335
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700336 dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800337 if (dex_file.get() == nullptr) {
338 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
339 return std::vector<std::unique_ptr<const DexFile>>();
340 }
341 dex_files.push_back(std::move(dex_file));
342 }
343 return dex_files;
344}
345
Richard Uhler9b994ea2015-06-24 08:44:19 -0700346bool OatFileAssistant::HasOriginalDexFiles() {
347 // Ensure GetRequiredDexChecksum has been run so that
348 // has_original_dex_files_ is initialized. We don't care about the result of
349 // GetRequiredDexChecksum.
350 GetRequiredDexChecksum();
351 return has_original_dex_files_;
352}
353
Richard Uhler66d874d2015-01-15 09:37:19 -0800354const std::string* OatFileAssistant::OdexFileName() {
355 if (!cached_odex_file_name_attempted_) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800356 cached_odex_file_name_attempted_ = true;
357
358 std::string error_msg;
Richard Uhlere8e48ae2016-04-19 12:41:04 -0700359 if (!DexFilenameToOdexFilename(dex_location_, isa_, &cached_odex_file_name_, &error_msg)) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800360 // If we can't figure out the odex file, we treat it as if the odex
361 // file was inaccessible.
362 LOG(WARNING) << "Failed to determine odex file name: " << error_msg;
363 }
364 }
Richard Uhlere8e48ae2016-04-19 12:41:04 -0700365 return cached_odex_file_name_.empty() ? nullptr : &cached_odex_file_name_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800366}
367
368bool OatFileAssistant::OdexFileExists() {
369 return GetOdexFile() != nullptr;
370}
371
Richard Uhler95abd042015-03-24 09:51:28 -0700372OatFileAssistant::OatStatus OatFileAssistant::OdexFileStatus() {
Richard Uhlere8109f72016-04-18 10:40:50 -0700373 if (!odex_file_status_attempted_) {
374 odex_file_status_attempted_ = true;
375 const OatFile* odex_file = GetOdexFile();
376 if (odex_file == nullptr) {
377 cached_odex_file_status_ = kOatOutOfDate;
378 } else {
379 cached_odex_file_status_ = GivenOatFileStatus(*odex_file);
380 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800381 }
Richard Uhlere8109f72016-04-18 10:40:50 -0700382 return cached_odex_file_status_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800383}
384
385bool OatFileAssistant::OdexFileIsOutOfDate() {
Richard Uhlere8109f72016-04-18 10:40:50 -0700386 return OdexFileStatus() == kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800387}
388
389bool OatFileAssistant::OdexFileNeedsRelocation() {
Richard Uhler95abd042015-03-24 09:51:28 -0700390 return OdexFileStatus() == kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800391}
392
393bool OatFileAssistant::OdexFileIsUpToDate() {
Richard Uhlere8109f72016-04-18 10:40:50 -0700394 return OdexFileStatus() == kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800395}
396
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100397CompilerFilter::Filter OatFileAssistant::OdexFileCompilerFilter() {
398 const OatFile* odex_file = GetOdexFile();
399 CHECK(odex_file != nullptr);
400
401 return odex_file->GetCompilerFilter();
402}
Richard Uhler4c7f1932016-04-15 15:51:21 -0700403
404static std::string ArtFileName(const OatFile* oat_file) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800405 const std::string oat_file_location = oat_file->GetLocation();
406 // Replace extension with .art
407 const size_t last_ext = oat_file_location.find_last_of('.');
408 if (last_ext == std::string::npos) {
409 LOG(ERROR) << "No extension in oat file " << oat_file_location;
410 return std::string();
411 }
412 return oat_file_location.substr(0, last_ext) + ".art";
413}
414
Richard Uhler66d874d2015-01-15 09:37:19 -0800415const std::string* OatFileAssistant::OatFileName() {
416 if (!cached_oat_file_name_attempted_) {
417 cached_oat_file_name_attempted_ = true;
418
419 // Compute the oat file name from the dex location.
Richard Uhler66d874d2015-01-15 09:37:19 -0800420 // TODO: The oat file assistant should be the definitive place for
421 // determining the oat file name from the dex location, not
422 // GetDalvikCacheFilename.
423 std::string cache_dir = StringPrintf("%s%s",
424 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_));
425 std::string error_msg;
Richard Uhlere8e48ae2016-04-19 12:41:04 -0700426 if (!GetDalvikCacheFilename(dex_location_.c_str(),
427 cache_dir.c_str(), &cached_oat_file_name_, &error_msg)) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800428 // If we can't determine the oat file name, we treat the oat file as
429 // inaccessible.
430 LOG(WARNING) << "Failed to determine oat file name for dex location "
431 << dex_location_ << ": " << error_msg;
432 }
433 }
Richard Uhlere8e48ae2016-04-19 12:41:04 -0700434 return cached_oat_file_name_.empty() ? nullptr : &cached_oat_file_name_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800435}
436
437bool OatFileAssistant::OatFileExists() {
438 return GetOatFile() != nullptr;
439}
440
Richard Uhler95abd042015-03-24 09:51:28 -0700441OatFileAssistant::OatStatus OatFileAssistant::OatFileStatus() {
Richard Uhlere8109f72016-04-18 10:40:50 -0700442 if (!oat_file_status_attempted_) {
443 oat_file_status_attempted_ = true;
444 const OatFile* oat_file = GetOatFile();
445 if (oat_file == nullptr) {
446 cached_oat_file_status_ = kOatOutOfDate;
447 } else {
448 cached_oat_file_status_ = GivenOatFileStatus(*oat_file);
449 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800450 }
Richard Uhlere8109f72016-04-18 10:40:50 -0700451 return cached_oat_file_status_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800452}
453
454bool OatFileAssistant::OatFileIsOutOfDate() {
Richard Uhlere8109f72016-04-18 10:40:50 -0700455 return OatFileStatus() == kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800456}
457
458bool OatFileAssistant::OatFileNeedsRelocation() {
Richard Uhler95abd042015-03-24 09:51:28 -0700459 return OatFileStatus() == kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800460}
461
462bool OatFileAssistant::OatFileIsUpToDate() {
Richard Uhlere8109f72016-04-18 10:40:50 -0700463 return OatFileStatus() == kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800464}
465
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100466CompilerFilter::Filter OatFileAssistant::OatFileCompilerFilter() {
467 const OatFile* oat_file = GetOatFile();
468 CHECK(oat_file != nullptr);
469
470 return oat_file->GetCompilerFilter();
471}
472
Richard Uhler95abd042015-03-24 09:51:28 -0700473OatFileAssistant::OatStatus OatFileAssistant::GivenOatFileStatus(const OatFile& file) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800474 // Verify the dex checksum.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700475 // Note: GetOatDexFile will return null if the dex checksum doesn't match
Richard Uhler66d874d2015-01-15 09:37:19 -0800476 // what we provide, which verifies the primary dex checksum for us.
477 const uint32_t* dex_checksum_pointer = GetRequiredDexChecksum();
478 const OatFile::OatDexFile* oat_dex_file = file.GetOatDexFile(
Richard Uhler740eec92015-10-15 15:12:23 -0700479 dex_location_.c_str(), dex_checksum_pointer, false);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700480 if (oat_dex_file == nullptr) {
Richard Uhlere8109f72016-04-18 10:40:50 -0700481 return kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800482 }
483
484 // Verify the dex checksums for any secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700485 for (size_t i = 1; ; i++) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800486 std::string secondary_dex_location
Richard Uhler740eec92015-10-15 15:12:23 -0700487 = DexFile::GetMultiDexLocation(i, dex_location_.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800488 const OatFile::OatDexFile* secondary_oat_dex_file
489 = file.GetOatDexFile(secondary_dex_location.c_str(), nullptr, false);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700490 if (secondary_oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800491 // There are no more secondary dex files to check.
492 break;
493 }
494
495 std::string error_msg;
496 uint32_t expected_secondary_checksum = 0;
497 if (DexFile::GetChecksum(secondary_dex_location.c_str(),
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700498 &expected_secondary_checksum, &error_msg)) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800499 uint32_t actual_secondary_checksum
500 = secondary_oat_dex_file->GetDexFileLocationChecksum();
501 if (expected_secondary_checksum != actual_secondary_checksum) {
502 VLOG(oat) << "Dex checksum does not match for secondary dex: "
503 << secondary_dex_location
504 << ". Expected: " << expected_secondary_checksum
505 << ", Actual: " << actual_secondary_checksum;
Richard Uhlere8109f72016-04-18 10:40:50 -0700506 return kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800507 }
508 } else {
509 // If we can't get the checksum for the secondary location, we assume
510 // the dex checksum is up to date for this and all other secondary dex
511 // files.
512 break;
513 }
514 }
515
Andreas Gampe29d38e72016-03-23 15:31:51 +0000516 CompilerFilter::Filter current_compiler_filter = file.GetCompilerFilter();
517 VLOG(oat) << "Compiler filter for " << file.GetLocation() << " is " << current_compiler_filter;
David Brazdilce4b0ba2016-01-28 15:05:49 +0000518
Richard Uhler66d874d2015-01-15 09:37:19 -0800519 // Verify the image checksum
Andreas Gampe29d38e72016-03-23 15:31:51 +0000520 if (CompilerFilter::DependsOnImageChecksum(current_compiler_filter)) {
521 const ImageInfo* image_info = GetImageInfo();
522 if (image_info == nullptr) {
523 VLOG(oat) << "No image for oat image checksum to match against.";
Andreas Gampe29d38e72016-03-23 15:31:51 +0000524
Richard Uhler76f5cb62016-04-04 13:30:16 -0700525 if (HasOriginalDexFiles()) {
Richard Uhlere8109f72016-04-18 10:40:50 -0700526 return kOatOutOfDate;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700527 }
528
529 // If there is no original dex file to fall back to, grudgingly accept
530 // the oat file. This could technically lead to crashes, but there's no
531 // way we could find a better oat file to use for this dex location,
532 // and it's better than being stuck in a boot loop with no way out.
533 // The problem will hopefully resolve itself the next time the runtime
534 // starts up.
535 LOG(WARNING) << "Dex location " << dex_location_ << " does not seem to include dex file. "
536 << "Allow oat file use. This is potentially dangerous.";
537 } else if (file.GetOatHeader().GetImageFileLocationOatChecksum()
538 != GetCombinedImageChecksum()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000539 VLOG(oat) << "Oat image checksum does not match image checksum.";
Richard Uhlere8109f72016-04-18 10:40:50 -0700540 return kOatOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000541 }
542 } else {
543 VLOG(oat) << "Image checksum test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800544 }
545
Vladimir Markof6d1e0f2016-05-23 15:32:42 +0100546 if (CompilerFilter::IsBytecodeCompilationEnabled(current_compiler_filter)) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000547 if (!file.IsPic()) {
548 const ImageInfo* image_info = GetImageInfo();
549 if (image_info == nullptr) {
550 VLOG(oat) << "No image to check oat relocation against.";
Richard Uhlere8109f72016-04-18 10:40:50 -0700551 return kOatNeedsRelocation;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000552 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700553
Andreas Gampe29d38e72016-03-23 15:31:51 +0000554 // Verify the oat_data_begin recorded for the image in the oat file matches
555 // the actual oat_data_begin for boot.oat in the image.
556 const OatHeader& oat_header = file.GetOatHeader();
557 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin();
558 if (oat_data_begin != image_info->oat_data_begin) {
559 VLOG(oat) << file.GetLocation() <<
560 ": Oat file image oat_data_begin (" << oat_data_begin << ")"
561 << " does not match actual image oat_data_begin ("
562 << image_info->oat_data_begin << ")";
Richard Uhlere8109f72016-04-18 10:40:50 -0700563 return kOatNeedsRelocation;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000564 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700565
Andreas Gampe29d38e72016-03-23 15:31:51 +0000566 // Verify the oat_patch_delta recorded for the image in the oat file matches
567 // the actual oat_patch_delta for the image.
568 int32_t oat_patch_delta = oat_header.GetImagePatchDelta();
569 if (oat_patch_delta != image_info->patch_delta) {
570 VLOG(oat) << file.GetLocation() <<
571 ": Oat file image patch delta (" << oat_patch_delta << ")"
572 << " does not match actual image patch delta ("
573 << image_info->patch_delta << ")";
Richard Uhlere8109f72016-04-18 10:40:50 -0700574 return kOatNeedsRelocation;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000575 }
576 } else {
577 // Oat files compiled in PIC mode do not require relocation.
578 VLOG(oat) << "Oat relocation test skipped for PIC oat file";
579 }
580 } else {
581 VLOG(oat) << "Oat relocation test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800582 }
Richard Uhlere8109f72016-04-18 10:40:50 -0700583 return kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800584}
585
Richard Uhler1e860612016-03-30 12:17:55 -0700586OatFileAssistant::ResultOfAttemptToUpdate
587OatFileAssistant::RelocateOatFile(const std::string* input_file, std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800588 CHECK(error_msg != nullptr);
589
Richard Uhler95abd042015-03-24 09:51:28 -0700590 if (input_file == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700591 *error_msg = "Patching of oat file for dex location " + dex_location_
Richard Uhler95abd042015-03-24 09:51:28 -0700592 + " not attempted because the input file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700593 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800594 }
Richard Uhler95abd042015-03-24 09:51:28 -0700595 const std::string& input_file_name = *input_file;
Richard Uhler66d874d2015-01-15 09:37:19 -0800596
597 if (OatFileName() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700598 *error_msg = "Patching of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800599 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700600 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800601 }
602 const std::string& oat_file_name = *OatFileName();
603
604 const ImageInfo* image_info = GetImageInfo();
605 Runtime* runtime = Runtime::Current();
606 if (image_info == nullptr) {
607 *error_msg = "Patching of oat file " + oat_file_name
608 + " not attempted because no image location was found.";
Richard Uhler1e860612016-03-30 12:17:55 -0700609 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800610 }
611
612 if (!runtime->IsDex2OatEnabled()) {
613 *error_msg = "Patching of oat file " + oat_file_name
614 + " not attempted because dex2oat is disabled";
Richard Uhler1e860612016-03-30 12:17:55 -0700615 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800616 }
617
618 std::vector<std::string> argv;
619 argv.push_back(runtime->GetPatchoatExecutable());
620 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_)));
Richard Uhler95abd042015-03-24 09:51:28 -0700621 argv.push_back("--input-oat-file=" + input_file_name);
Richard Uhler66d874d2015-01-15 09:37:19 -0800622 argv.push_back("--output-oat-file=" + oat_file_name);
623 argv.push_back("--patched-image-location=" + image_info->location);
624
625 std::string command_line(Join(argv, ' '));
626 if (!Exec(argv, error_msg)) {
627 // Manually delete the file. This ensures there is no garbage left over if
628 // the process unexpectedly died.
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100629 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700630 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800631 }
632
633 // Mark that the oat file has changed and we should try to reload.
634 ClearOatFileCache();
Richard Uhler1e860612016-03-30 12:17:55 -0700635 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800636}
637
Richard Uhler1e860612016-03-30 12:17:55 -0700638OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerf4b34872016-04-13 11:03:46 -0700639OatFileAssistant::GenerateOatFile(std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800640 CHECK(error_msg != nullptr);
641
Richard Uhler8327cf72015-10-13 16:34:59 -0700642 Runtime* runtime = Runtime::Current();
643 if (!runtime->IsDex2OatEnabled()) {
644 *error_msg = "Generation of oat file for dex location " + dex_location_
645 + " not attempted because dex2oat is disabled.";
Richard Uhler1e860612016-03-30 12:17:55 -0700646 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700647 }
648
Richard Uhler66d874d2015-01-15 09:37:19 -0800649 if (OatFileName() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700650 *error_msg = "Generation of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800651 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700652 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800653 }
654 const std::string& oat_file_name = *OatFileName();
655
Richard Uhler66d874d2015-01-15 09:37:19 -0800656 // dex2oat ignores missing dex files and doesn't report an error.
657 // Check explicitly here so we can detect the error properly.
658 // TODO: Why does dex2oat behave that way?
Richard Uhler740eec92015-10-15 15:12:23 -0700659 if (!OS::FileExists(dex_location_.c_str())) {
660 *error_msg = "Dex location " + dex_location_ + " does not exists.";
Richard Uhler1e860612016-03-30 12:17:55 -0700661 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800662 }
663
Richard Uhler8327cf72015-10-13 16:34:59 -0700664 std::unique_ptr<File> oat_file;
665 oat_file.reset(OS::CreateEmptyFile(oat_file_name.c_str()));
666 if (oat_file.get() == nullptr) {
667 *error_msg = "Generation of oat file " + oat_file_name
668 + " not attempted because the oat file could not be created.";
Richard Uhler1e860612016-03-30 12:17:55 -0700669 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700670 }
671
672 if (fchmod(oat_file->Fd(), 0644) != 0) {
673 *error_msg = "Generation of oat file " + oat_file_name
674 + " not attempted because the oat file could not be made world readable.";
675 oat_file->Erase();
Richard Uhler1e860612016-03-30 12:17:55 -0700676 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700677 }
678
679 std::vector<std::string> args;
680 args.push_back("--dex-file=" + dex_location_);
681 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
682 args.push_back("--oat-location=" + oat_file_name);
683
Richard Uhler66d874d2015-01-15 09:37:19 -0800684 if (!Dex2Oat(args, error_msg)) {
685 // Manually delete the file. This ensures there is no garbage left over if
686 // the process unexpectedly died.
Richard Uhler8327cf72015-10-13 16:34:59 -0700687 oat_file->Erase();
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100688 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700689 return kUpdateFailed;
Richard Uhler8327cf72015-10-13 16:34:59 -0700690 }
691
692 if (oat_file->FlushCloseOrErase() != 0) {
693 *error_msg = "Unable to close oat file " + oat_file_name;
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100694 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700695 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800696 }
697
698 // Mark that the oat file has changed and we should try to reload.
699 ClearOatFileCache();
Richard Uhler1e860612016-03-30 12:17:55 -0700700 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800701}
702
703bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
704 std::string* error_msg) {
705 Runtime* runtime = Runtime::Current();
706 std::string image_location = ImageLocation();
707 if (image_location.empty()) {
708 *error_msg = "No image location found for Dex2Oat.";
709 return false;
710 }
711
712 std::vector<std::string> argv;
713 argv.push_back(runtime->GetCompilerExecutable());
714 argv.push_back("--runtime-arg");
715 argv.push_back("-classpath");
716 argv.push_back("--runtime-arg");
Jeff Haof0192c82016-03-28 20:39:50 -0700717 std::string class_path = runtime->GetClassPathString();
718 if (class_path == "") {
719 class_path = OatFile::kSpecialSharedLibrary;
720 }
721 argv.push_back(class_path);
Nicolas Geoffray7a4d0152015-07-10 17:29:39 +0100722 if (runtime->IsDebuggable()) {
Sebastien Hertz0de11332015-05-13 12:14:05 +0200723 argv.push_back("--debuggable");
724 }
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700725 runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv);
Richard Uhler66d874d2015-01-15 09:37:19 -0800726
727 if (!runtime->IsVerificationEnabled()) {
728 argv.push_back("--compiler-filter=verify-none");
729 }
730
731 if (runtime->MustRelocateIfPossible()) {
732 argv.push_back("--runtime-arg");
733 argv.push_back("-Xrelocate");
734 } else {
735 argv.push_back("--runtime-arg");
736 argv.push_back("-Xnorelocate");
737 }
738
739 if (!kIsTargetBuild) {
740 argv.push_back("--host");
741 }
742
743 argv.push_back("--boot-image=" + image_location);
744
745 std::vector<std::string> compiler_options = runtime->GetCompilerOptions();
746 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
747
748 argv.insert(argv.end(), args.begin(), args.end());
749
750 std::string command_line(Join(argv, ' '));
751 return Exec(argv, error_msg);
752}
753
754bool OatFileAssistant::DexFilenameToOdexFilename(const std::string& location,
755 InstructionSet isa, std::string* odex_filename, std::string* error_msg) {
756 CHECK(odex_filename != nullptr);
757 CHECK(error_msg != nullptr);
758
759 // The odex file name is formed by replacing the dex_location extension with
Richard Uhler63434112015-03-16 14:32:16 -0700760 // .odex and inserting an oat/<isa> directory. For example:
Richard Uhler66d874d2015-01-15 09:37:19 -0800761 // location = /foo/bar/baz.jar
Richard Uhler63434112015-03-16 14:32:16 -0700762 // odex_location = /foo/bar/oat/<isa>/baz.odex
Richard Uhler66d874d2015-01-15 09:37:19 -0800763
Richard Uhler63434112015-03-16 14:32:16 -0700764 // Find the directory portion of the dex location and add the oat/<isa>
765 // directory.
Richard Uhler66d874d2015-01-15 09:37:19 -0800766 size_t pos = location.rfind('/');
767 if (pos == std::string::npos) {
768 *error_msg = "Dex location " + location + " has no directory.";
769 return false;
770 }
771 std::string dir = location.substr(0, pos+1);
Richard Uhler63434112015-03-16 14:32:16 -0700772 dir += "oat/" + std::string(GetInstructionSetString(isa));
Richard Uhler66d874d2015-01-15 09:37:19 -0800773
774 // Find the file portion of the dex location.
775 std::string file;
776 if (pos == std::string::npos) {
777 file = location;
778 } else {
779 file = location.substr(pos+1);
780 }
781
782 // Get the base part of the file without the extension.
783 pos = file.rfind('.');
784 if (pos == std::string::npos) {
785 *error_msg = "Dex location " + location + " has no extension.";
786 return false;
787 }
788 std::string base = file.substr(0, pos);
789
790 *odex_filename = dir + "/" + base + ".odex";
791 return true;
792}
793
794std::string OatFileAssistant::DalvikCacheDirectory() {
795 // Note: We don't cache this, because it will only be called once by
Andreas Gampe29d38e72016-03-23 15:31:51 +0000796 // OatFileName.
Richard Uhler66d874d2015-01-15 09:37:19 -0800797
798 // TODO: The work done in GetDalvikCache is overkill for what we need.
799 // Ideally a new API for getting the DalvikCacheDirectory the way we want
800 // (without existence testing, creation, or death) is provided with the rest
801 // of the GetDalvikCache family of functions. Until such an API is in place,
802 // we use GetDalvikCache to avoid duplicating the logic for determining the
803 // dalvik cache directory.
804 std::string result;
805 bool have_android_data;
806 bool dalvik_cache_exists;
807 bool is_global_cache;
808 GetDalvikCache("", false, &result, &have_android_data, &dalvik_cache_exists, &is_global_cache);
809 return result;
810}
811
Richard Uhler66d874d2015-01-15 09:37:19 -0800812std::string OatFileAssistant::ImageLocation() {
813 Runtime* runtime = Runtime::Current();
Andreas Gampe8994a042015-12-30 19:03:17 +0000814 const std::vector<gc::space::ImageSpace*>& image_spaces =
815 runtime->GetHeap()->GetBootImageSpaces();
816 if (image_spaces.empty()) {
817 return "";
818 }
819 return image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800820}
821
822const uint32_t* OatFileAssistant::GetRequiredDexChecksum() {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700823 if (!required_dex_checksum_attempted_) {
824 required_dex_checksum_attempted_ = true;
825 required_dex_checksum_found_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800826 std::string error_msg;
Richard Uhler740eec92015-10-15 15:12:23 -0700827 if (DexFile::GetChecksum(dex_location_.c_str(), &cached_required_dex_checksum_, &error_msg)) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700828 required_dex_checksum_found_ = true;
829 has_original_dex_files_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800830 } else {
831 // This can happen if the original dex file has been stripped from the
832 // apk.
833 VLOG(oat) << "OatFileAssistant: " << error_msg;
Richard Uhler9b994ea2015-06-24 08:44:19 -0700834 has_original_dex_files_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800835
836 // Get the checksum from the odex if we can.
837 const OatFile* odex_file = GetOdexFile();
838 if (odex_file != nullptr) {
839 const OatFile::OatDexFile* odex_dex_file = odex_file->GetOatDexFile(
Richard Uhler740eec92015-10-15 15:12:23 -0700840 dex_location_.c_str(), nullptr, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800841 if (odex_dex_file != nullptr) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700842 cached_required_dex_checksum_ = odex_dex_file->GetDexFileLocationChecksum();
843 required_dex_checksum_found_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800844 }
845 }
846 }
847 }
Richard Uhler9b994ea2015-06-24 08:44:19 -0700848 return required_dex_checksum_found_ ? &cached_required_dex_checksum_ : nullptr;
Richard Uhler66d874d2015-01-15 09:37:19 -0800849}
850
851const OatFile* OatFileAssistant::GetOdexFile() {
852 CHECK(!oat_file_released_) << "OdexFile called after oat file released.";
853 if (!odex_file_load_attempted_) {
854 odex_file_load_attempted_ = true;
855 if (OdexFileName() != nullptr) {
856 const std::string& odex_file_name = *OdexFileName();
857 std::string error_msg;
858 cached_odex_file_.reset(OatFile::Open(odex_file_name.c_str(),
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800859 odex_file_name.c_str(),
860 nullptr,
861 nullptr,
862 load_executable_,
863 /*low_4gb*/false,
864 dex_location_.c_str(),
865 &error_msg));
Richard Uhler66d874d2015-01-15 09:37:19 -0800866 if (cached_odex_file_.get() == nullptr) {
867 VLOG(oat) << "OatFileAssistant test for existing pre-compiled oat file "
868 << odex_file_name << ": " << error_msg;
869 }
870 }
871 }
872 return cached_odex_file_.get();
873}
874
Richard Uhler5f946da2015-07-17 12:28:32 -0700875bool OatFileAssistant::OdexFileIsExecutable() {
876 const OatFile* odex_file = GetOdexFile();
877 return (odex_file != nullptr && odex_file->IsExecutable());
878}
879
Richard Uhlerd1537b52016-03-29 13:27:41 -0700880bool OatFileAssistant::OdexFileHasPatchInfo() {
881 const OatFile* odex_file = GetOdexFile();
882 return (odex_file != nullptr && odex_file->HasPatchInfo());
883}
884
Richard Uhler66d874d2015-01-15 09:37:19 -0800885void OatFileAssistant::ClearOdexFileCache() {
886 odex_file_load_attempted_ = false;
887 cached_odex_file_.reset();
Richard Uhlere8109f72016-04-18 10:40:50 -0700888 odex_file_status_attempted_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800889}
890
891const OatFile* OatFileAssistant::GetOatFile() {
892 CHECK(!oat_file_released_) << "OatFile called after oat file released.";
893 if (!oat_file_load_attempted_) {
894 oat_file_load_attempted_ = true;
895 if (OatFileName() != nullptr) {
896 const std::string& oat_file_name = *OatFileName();
897 std::string error_msg;
898 cached_oat_file_.reset(OatFile::Open(oat_file_name.c_str(),
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800899 oat_file_name.c_str(),
900 nullptr,
901 nullptr,
902 load_executable_,
903 /*low_4gb*/false,
904 dex_location_.c_str(),
905 &error_msg));
Richard Uhler66d874d2015-01-15 09:37:19 -0800906 if (cached_oat_file_.get() == nullptr) {
907 VLOG(oat) << "OatFileAssistant test for existing oat file "
908 << oat_file_name << ": " << error_msg;
909 }
910 }
911 }
912 return cached_oat_file_.get();
913}
914
Richard Uhler5f946da2015-07-17 12:28:32 -0700915bool OatFileAssistant::OatFileIsExecutable() {
916 const OatFile* oat_file = GetOatFile();
917 return (oat_file != nullptr && oat_file->IsExecutable());
918}
919
Richard Uhlerd1537b52016-03-29 13:27:41 -0700920bool OatFileAssistant::OatFileHasPatchInfo() {
921 const OatFile* oat_file = GetOatFile();
922 return (oat_file != nullptr && oat_file->HasPatchInfo());
923}
924
Richard Uhler66d874d2015-01-15 09:37:19 -0800925void OatFileAssistant::ClearOatFileCache() {
926 oat_file_load_attempted_ = false;
927 cached_oat_file_.reset();
Richard Uhlere8109f72016-04-18 10:40:50 -0700928 oat_file_status_attempted_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800929}
930
931const OatFileAssistant::ImageInfo* OatFileAssistant::GetImageInfo() {
932 if (!image_info_load_attempted_) {
933 image_info_load_attempted_ = true;
934
935 Runtime* runtime = Runtime::Current();
Jeff Haodcdc85b2015-12-04 14:06:18 -0800936 std::vector<gc::space::ImageSpace*> image_spaces = runtime->GetHeap()->GetBootImageSpaces();
937 if (!image_spaces.empty()) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800938 cached_image_info_.location = image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800939
940 if (isa_ == kRuntimeISA) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800941 const ImageHeader& image_header = image_spaces[0]->GetImageHeader();
Richard Uhler66d874d2015-01-15 09:37:19 -0800942 cached_image_info_.oat_checksum = image_header.GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -0800943 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
944 image_header.GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -0800945 cached_image_info_.patch_delta = image_header.GetPatchDelta();
946 } else {
947 std::unique_ptr<ImageHeader> image_header(
Jeff Haob11ffb72016-04-07 15:40:54 -0700948 gc::space::ImageSpace::ReadImageHeaderOrDie(cached_image_info_.location.c_str(), isa_));
Richard Uhler66d874d2015-01-15 09:37:19 -0800949 cached_image_info_.oat_checksum = image_header->GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -0800950 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
951 image_header->GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -0800952 cached_image_info_.patch_delta = image_header->GetPatchDelta();
953 }
954 }
Jeff Haodcdc85b2015-12-04 14:06:18 -0800955 image_info_load_succeeded_ = (!image_spaces.empty());
Jeff Haob11ffb72016-04-07 15:40:54 -0700956
Jeff Haofd336c32016-04-07 19:46:31 -0700957 combined_image_checksum_ = CalculateCombinedImageChecksum(isa_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800958 }
959 return image_info_load_succeeded_ ? &cached_image_info_ : nullptr;
960}
961
Jeff Haob11ffb72016-04-07 15:40:54 -0700962// TODO: Use something better than xor.
Jeff Haofd336c32016-04-07 19:46:31 -0700963uint32_t OatFileAssistant::CalculateCombinedImageChecksum(InstructionSet isa) {
Jeff Haob11ffb72016-04-07 15:40:54 -0700964 uint32_t checksum = 0;
965 std::vector<gc::space::ImageSpace*> image_spaces =
966 Runtime::Current()->GetHeap()->GetBootImageSpaces();
Jeff Haofd336c32016-04-07 19:46:31 -0700967 if (isa == kRuntimeISA) {
968 for (gc::space::ImageSpace* image_space : image_spaces) {
969 checksum ^= image_space->GetImageHeader().GetOatChecksum();
970 }
971 } else {
972 for (gc::space::ImageSpace* image_space : image_spaces) {
973 std::string location = image_space->GetImageLocation();
974 std::unique_ptr<ImageHeader> image_header(
975 gc::space::ImageSpace::ReadImageHeaderOrDie(location.c_str(), isa));
976 checksum ^= image_header->GetOatChecksum();
977 }
Jeff Haob11ffb72016-04-07 15:40:54 -0700978 }
979 return checksum;
980}
981
982uint32_t OatFileAssistant::GetCombinedImageChecksum() {
983 if (!image_info_load_attempted_) {
984 GetImageInfo();
985 }
986 return combined_image_checksum_;
987}
988
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800989gc::space::ImageSpace* OatFileAssistant::OpenImageSpace(const OatFile* oat_file) {
990 DCHECK(oat_file != nullptr);
991 std::string art_file = ArtFileName(oat_file);
992 if (art_file.empty()) {
993 return nullptr;
994 }
995 std::string error_msg;
996 ScopedObjectAccess soa(Thread::Current());
997 gc::space::ImageSpace* ret = gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(),
998 oat_file,
999 &error_msg);
Mathieu Chartiere778fc72016-01-25 20:11:28 -08001000 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001001 LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg;
1002 }
1003 return ret;
1004}
1005
Richard Uhler66d874d2015-01-15 09:37:19 -08001006} // namespace art
1007