blob: 8554fa26935ea39aab9954dad1a49366b6f17383 [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
Richard Uhler46cc64f2016-11-14 14:53:55 +000019#include <sstream>
20
Richard Uhler66d874d2015-01-15 09:37:19 -080021#include <sys/stat.h>
Andreas Gampe9186ced2016-12-12 14:28:21 -080022
23#include "android-base/strings.h"
24
Richard Uhler66d874d2015-01-15 09:37:19 -080025#include "base/logging.h"
Narayan Kamath8943c1d2016-05-02 13:14:48 +010026#include "compiler_filter.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080027#include "class_linker.h"
28#include "gc/heap.h"
29#include "gc/space/image_space.h"
30#include "image.h"
31#include "oat.h"
32#include "os.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080033#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070034#include "scoped_thread_state_change-inl.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080035#include "utils.h"
36
37namespace art {
38
Narayan Kamath8943c1d2016-05-02 13:14:48 +010039std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status) {
40 switch (status) {
Richard Uhler03bc6592016-11-22 09:42:04 +000041 case OatFileAssistant::kOatCannotOpen:
42 stream << "kOatCannotOpen";
43 break;
44 case OatFileAssistant::kOatDexOutOfDate:
45 stream << "kOatDexOutOfDate";
46 break;
47 case OatFileAssistant::kOatBootImageOutOfDate:
48 stream << "kOatBootImageOutOfDate";
49 break;
50 case OatFileAssistant::kOatRelocationOutOfDate:
51 stream << "kOatRelocationOutOfDate";
Narayan Kamath8943c1d2016-05-02 13:14:48 +010052 break;
53 case OatFileAssistant::kOatUpToDate:
54 stream << "kOatUpToDate";
55 break;
Narayan Kamath8943c1d2016-05-02 13:14:48 +010056 default:
57 UNREACHABLE();
58 }
59
60 return stream;
61}
62
Richard Uhler66d874d2015-01-15 09:37:19 -080063OatFileAssistant::OatFileAssistant(const char* dex_location,
64 const InstructionSet isa,
65 bool load_executable)
Richard Uhlerd1472a22016-04-15 15:18:56 -070066 : OatFileAssistant(dex_location, nullptr, isa, load_executable)
Calin Juravleb077e152016-02-18 18:47:37 +000067{ }
Richard Uhler66d874d2015-01-15 09:37:19 -080068
69OatFileAssistant::OatFileAssistant(const char* dex_location,
70 const char* oat_location,
71 const InstructionSet isa,
72 bool load_executable)
Richard Uhler88bc6732016-11-14 14:38:03 +000073 : isa_(isa),
74 load_executable_(load_executable),
75 odex_(this, /*is_oat_location*/ false),
76 oat_(this, /*is_oat_location*/ true) {
Richard Uhler740eec92015-10-15 15:12:23 -070077 CHECK(dex_location != nullptr) << "OatFileAssistant: null dex location";
78 dex_location_.assign(dex_location);
79
Richard Uhler66d874d2015-01-15 09:37:19 -080080 if (load_executable_ && isa != kRuntimeISA) {
81 LOG(WARNING) << "OatFileAssistant: Load executable specified, "
82 << "but isa is not kRuntimeISA. Will not attempt to load executable.";
83 load_executable_ = false;
84 }
85
Richard Uhler743bf362016-04-19 15:39:37 -070086 // Get the odex filename.
Richard Uhlerd684f522016-04-19 13:24:41 -070087 std::string error_msg;
Richard Uhler743bf362016-04-19 15:39:37 -070088 std::string odex_file_name;
89 if (DexLocationToOdexFilename(dex_location_, isa_, &odex_file_name, &error_msg)) {
90 odex_.Reset(odex_file_name);
91 } else {
Richard Uhlerd684f522016-04-19 13:24:41 -070092 LOG(WARNING) << "Failed to determine odex file name: " << error_msg;
93 }
94
Richard Uhler743bf362016-04-19 15:39:37 -070095 // Get the oat filename.
Richard Uhler66d874d2015-01-15 09:37:19 -080096 if (oat_location != nullptr) {
Richard Uhler743bf362016-04-19 15:39:37 -070097 oat_.Reset(oat_location);
Richard Uhlerd684f522016-04-19 13:24:41 -070098 } else {
Richard Uhler743bf362016-04-19 15:39:37 -070099 std::string oat_file_name;
100 if (DexLocationToOatFilename(dex_location_, isa_, &oat_file_name, &error_msg)) {
101 oat_.Reset(oat_file_name);
102 } else {
Richard Uhlerd684f522016-04-19 13:24:41 -0700103 LOG(WARNING) << "Failed to determine oat file name for dex location "
104 << dex_location_ << ": " << error_msg;
105 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800106 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800107}
108
109OatFileAssistant::~OatFileAssistant() {
110 // Clean up the lock file.
Richard Uhler581f4e92015-05-07 10:19:35 -0700111 if (flock_.HasFile()) {
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100112 unlink(flock_.GetFile()->GetPath().c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800113 }
114}
115
116bool OatFileAssistant::IsInBootClassPath() {
117 // Note: We check the current boot class path, regardless of the ISA
118 // specified by the user. This is okay, because the boot class path should
119 // be the same for all ISAs.
120 // TODO: Can we verify the boot class path is the same for all ISAs?
121 Runtime* runtime = Runtime::Current();
122 ClassLinker* class_linker = runtime->GetClassLinker();
123 const auto& boot_class_path = class_linker->GetBootClassPath();
124 for (size_t i = 0; i < boot_class_path.size(); i++) {
Richard Uhler740eec92015-10-15 15:12:23 -0700125 if (boot_class_path[i]->GetLocation() == dex_location_) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800126 VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path";
127 return true;
128 }
129 }
130 return false;
131}
132
133bool OatFileAssistant::Lock(std::string* error_msg) {
134 CHECK(error_msg != nullptr);
Richard Uhler581f4e92015-05-07 10:19:35 -0700135 CHECK(!flock_.HasFile()) << "OatFileAssistant::Lock already acquired";
Richard Uhler66d874d2015-01-15 09:37:19 -0800136
Richard Uhler743bf362016-04-19 15:39:37 -0700137 const std::string* oat_file_name = oat_.Filename();
138 if (oat_file_name == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800139 *error_msg = "Failed to determine lock file";
140 return false;
141 }
Richard Uhler743bf362016-04-19 15:39:37 -0700142 std::string lock_file_name = *oat_file_name + ".flock";
Richard Uhler66d874d2015-01-15 09:37:19 -0800143
Richard Uhler581f4e92015-05-07 10:19:35 -0700144 if (!flock_.Init(lock_file_name.c_str(), error_msg)) {
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100145 unlink(lock_file_name.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800146 return false;
147 }
148 return true;
149}
150
Richard Uhler7225a8d2016-11-22 10:12:03 +0000151int OatFileAssistant::GetDexOptNeeded(CompilerFilter::Filter target, bool profile_changed) {
Richard Uhler88bc6732016-11-14 14:38:03 +0000152 OatFileInfo& info = GetBestInfo();
153 DexOptNeeded dexopt_needed = info.GetDexOptNeeded(target, profile_changed);
Richard Uhler7225a8d2016-11-22 10:12:03 +0000154 if (info.IsOatLocation() || dexopt_needed == kDex2OatFromScratch) {
155 return dexopt_needed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800156 }
Richard Uhler7225a8d2016-11-22 10:12:03 +0000157 return -dexopt_needed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800158}
159
Richard Uhlerf4b34872016-04-13 11:03:46 -0700160// Figure out the currently specified compile filter option in the runtime.
161// Returns true on success, false if the compiler filter is invalid, in which
162// case error_msg describes the problem.
163static bool GetRuntimeCompilerFilterOption(CompilerFilter::Filter* filter,
164 std::string* error_msg) {
165 CHECK(filter != nullptr);
166 CHECK(error_msg != nullptr);
167
168 *filter = CompilerFilter::kDefaultCompilerFilter;
169 for (StringPiece option : Runtime::Current()->GetCompilerOptions()) {
170 if (option.starts_with("--compiler-filter=")) {
171 const char* compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
172 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_string, filter)) {
173 *error_msg = std::string("Unknown --compiler-filter value: ")
174 + std::string(compiler_filter_string);
175 return false;
176 }
177 }
178 }
179 return true;
180}
181
Richard Uhler01be6812016-05-17 10:34:52 -0700182bool OatFileAssistant::IsUpToDate() {
Richard Uhler88bc6732016-11-14 14:38:03 +0000183 return GetBestInfo().Status() == kOatUpToDate;
Richard Uhler01be6812016-05-17 10:34:52 -0700184}
185
Richard Uhler1e860612016-03-30 12:17:55 -0700186OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerd1472a22016-04-15 15:18:56 -0700187OatFileAssistant::MakeUpToDate(bool profile_changed, std::string* error_msg) {
Richard Uhlerf4b34872016-04-13 11:03:46 -0700188 CompilerFilter::Filter target;
189 if (!GetRuntimeCompilerFilterOption(&target, error_msg)) {
190 return kUpdateNotAttempted;
191 }
192
Richard Uhler88bc6732016-11-14 14:38:03 +0000193 OatFileInfo& info = GetBestInfo();
194 switch (info.GetDexOptNeeded(target, profile_changed)) {
Richard Uhler7225a8d2016-11-22 10:12:03 +0000195 case kNoDexOptNeeded:
196 return kUpdateSucceeded;
Richard Uhler88bc6732016-11-14 14:38:03 +0000197
Richard Uhler7225a8d2016-11-22 10:12:03 +0000198 // TODO: For now, don't bother with all the different ways we can call
199 // dex2oat to generate the oat file. Always generate the oat file as if it
200 // were kDex2OatFromScratch.
201 case kDex2OatFromScratch:
202 case kDex2OatForBootImage:
203 case kDex2OatForRelocation:
204 case kDex2OatForFilter:
205 return GenerateOatFile(error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800206 }
207 UNREACHABLE();
208}
209
210std::unique_ptr<OatFile> OatFileAssistant::GetBestOatFile() {
Richard Uhler88bc6732016-11-14 14:38:03 +0000211 return GetBestInfo().ReleaseFileForUse();
Richard Uhler66d874d2015-01-15 09:37:19 -0800212}
213
Richard Uhler46cc64f2016-11-14 14:53:55 +0000214std::string OatFileAssistant::GetStatusDump() {
215 std::ostringstream status;
216 bool oat_file_exists = false;
217 bool odex_file_exists = false;
Richard Uhler03bc6592016-11-22 09:42:04 +0000218 if (oat_.Status() != kOatCannotOpen) {
Andreas Gampeba037b12017-01-25 00:16:27 +0000219 // If we can open the file, neither Filename nor GetFile should return null.
Richard Uhler03bc6592016-11-22 09:42:04 +0000220 CHECK(oat_.Filename() != nullptr);
Andreas Gampeba037b12017-01-25 00:16:27 +0000221 CHECK(oat_.GetFile() != nullptr);
Richard Uhler03bc6592016-11-22 09:42:04 +0000222
Richard Uhler46cc64f2016-11-14 14:53:55 +0000223 oat_file_exists = true;
Andreas Gampeba037b12017-01-25 00:16:27 +0000224 status << *oat_.Filename() << " [compilation_filter=";
225 status << CompilerFilter::NameOfFilter(oat_.GetFile()->GetCompilerFilter());
226 status << ", status=" << oat_.Status();
Richard Uhler46cc64f2016-11-14 14:53:55 +0000227 }
228
Richard Uhler03bc6592016-11-22 09:42:04 +0000229 if (odex_.Status() != kOatCannotOpen) {
Andreas Gampeba037b12017-01-25 00:16:27 +0000230 // If we can open the file, neither Filename nor GetFile should return null.
Richard Uhler03bc6592016-11-22 09:42:04 +0000231 CHECK(odex_.Filename() != nullptr);
Andreas Gampeba037b12017-01-25 00:16:27 +0000232 CHECK(odex_.GetFile() != nullptr);
Richard Uhler03bc6592016-11-22 09:42:04 +0000233
Richard Uhler46cc64f2016-11-14 14:53:55 +0000234 odex_file_exists = true;
235 if (oat_file_exists) {
236 status << "] ";
237 }
Andreas Gampeba037b12017-01-25 00:16:27 +0000238 status << *odex_.Filename() << " [compilation_filter=";
239 status << CompilerFilter::NameOfFilter(odex_.GetFile()->GetCompilerFilter());
240 status << ", status=" << odex_.Status();
Richard Uhler46cc64f2016-11-14 14:53:55 +0000241 }
242
243 if (!oat_file_exists && !odex_file_exists) {
244 status << "invalid[";
245 }
246
247 status << "]";
248 return status.str();
249}
250
Richard Uhler66d874d2015-01-15 09:37:19 -0800251std::vector<std::unique_ptr<const DexFile>> OatFileAssistant::LoadDexFiles(
252 const OatFile& oat_file, const char* dex_location) {
253 std::vector<std::unique_ptr<const DexFile>> dex_files;
254
255 // Load the primary dex file.
256 std::string error_msg;
257 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(
Richard Uhler9a37efc2016-08-05 16:32:55 -0700258 dex_location, nullptr, &error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800259 if (oat_dex_file == nullptr) {
Richard Uhler9a37efc2016-08-05 16:32:55 -0700260 LOG(WARNING) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800261 return std::vector<std::unique_ptr<const DexFile>>();
262 }
263
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700264 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800265 if (dex_file.get() == nullptr) {
266 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
267 return std::vector<std::unique_ptr<const DexFile>>();
268 }
269 dex_files.push_back(std::move(dex_file));
270
271 // Load secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700272 for (size_t i = 1; ; i++) {
273 std::string secondary_dex_location = DexFile::GetMultiDexLocation(i, dex_location);
Richard Uhler9a37efc2016-08-05 16:32:55 -0700274 oat_dex_file = oat_file.GetOatDexFile(secondary_dex_location.c_str(), nullptr);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700275 if (oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800276 // There are no more secondary dex files to load.
277 break;
278 }
279
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700280 dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800281 if (dex_file.get() == nullptr) {
282 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
283 return std::vector<std::unique_ptr<const DexFile>>();
284 }
285 dex_files.push_back(std::move(dex_file));
286 }
287 return dex_files;
288}
289
Richard Uhler9b994ea2015-06-24 08:44:19 -0700290bool OatFileAssistant::HasOriginalDexFiles() {
291 // Ensure GetRequiredDexChecksum has been run so that
292 // has_original_dex_files_ is initialized. We don't care about the result of
293 // GetRequiredDexChecksum.
294 GetRequiredDexChecksum();
295 return has_original_dex_files_;
296}
297
Richard Uhler95abd042015-03-24 09:51:28 -0700298OatFileAssistant::OatStatus OatFileAssistant::OdexFileStatus() {
Richard Uhler743bf362016-04-19 15:39:37 -0700299 return odex_.Status();
Richard Uhler66d874d2015-01-15 09:37:19 -0800300}
301
Richard Uhler95abd042015-03-24 09:51:28 -0700302OatFileAssistant::OatStatus OatFileAssistant::OatFileStatus() {
Richard Uhler743bf362016-04-19 15:39:37 -0700303 return oat_.Status();
Richard Uhler66d874d2015-01-15 09:37:19 -0800304}
305
Andreas Gampeba037b12017-01-25 00:16:27 +0000306OatFileAssistant::OatStatus OatFileAssistant::GivenOatFileStatus(const OatFile& file) {
307 // Verify the ART_USE_READ_BARRIER state.
308 const bool is_cc = file.GetOatHeader().IsConcurrentCopying();
309 constexpr bool kRuntimeIsCC = kUseReadBarrier;
310 if (is_cc != kRuntimeIsCC) {
311 return kOatCannotOpen;
Andreas Gampef8cd8902017-01-18 16:05:01 -0800312 }
313
Andreas Gampeba037b12017-01-25 00:16:27 +0000314 // Verify the dex checksum.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700315 // Note: GetOatDexFile will return null if the dex checksum doesn't match
Richard Uhler66d874d2015-01-15 09:37:19 -0800316 // what we provide, which verifies the primary dex checksum for us.
Andreas Gampeba037b12017-01-25 00:16:27 +0000317 std::string error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800318 const uint32_t* dex_checksum_pointer = GetRequiredDexChecksum();
319 const OatFile::OatDexFile* oat_dex_file = file.GetOatDexFile(
Andreas Gampeba037b12017-01-25 00:16:27 +0000320 dex_location_.c_str(), dex_checksum_pointer, &error_msg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700321 if (oat_dex_file == nullptr) {
Andreas Gampeba037b12017-01-25 00:16:27 +0000322 LOG(ERROR) << error_msg;
323 return kOatDexOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800324 }
325
326 // Verify the dex checksums for any secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700327 for (size_t i = 1; ; i++) {
Richard Uhler9a37efc2016-08-05 16:32:55 -0700328 std::string secondary_dex_location = DexFile::GetMultiDexLocation(i, dex_location_.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800329 const OatFile::OatDexFile* secondary_oat_dex_file
Richard Uhler9a37efc2016-08-05 16:32:55 -0700330 = file.GetOatDexFile(secondary_dex_location.c_str(), nullptr);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700331 if (secondary_oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800332 // There are no more secondary dex files to check.
333 break;
334 }
335
Richard Uhler66d874d2015-01-15 09:37:19 -0800336 uint32_t expected_secondary_checksum = 0;
337 if (DexFile::GetChecksum(secondary_dex_location.c_str(),
Andreas Gampeba037b12017-01-25 00:16:27 +0000338 &expected_secondary_checksum, &error_msg)) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800339 uint32_t actual_secondary_checksum
340 = secondary_oat_dex_file->GetDexFileLocationChecksum();
341 if (expected_secondary_checksum != actual_secondary_checksum) {
342 VLOG(oat) << "Dex checksum does not match for secondary dex: "
343 << secondary_dex_location
344 << ". Expected: " << expected_secondary_checksum
345 << ", Actual: " << actual_secondary_checksum;
Andreas Gampeba037b12017-01-25 00:16:27 +0000346 return kOatDexOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800347 }
348 } else {
349 // If we can't get the checksum for the secondary location, we assume
350 // the dex checksum is up to date for this and all other secondary dex
351 // files.
352 break;
353 }
354 }
355
Andreas Gampe29d38e72016-03-23 15:31:51 +0000356 CompilerFilter::Filter current_compiler_filter = file.GetCompilerFilter();
David Brazdilce4b0ba2016-01-28 15:05:49 +0000357
Richard Uhler66d874d2015-01-15 09:37:19 -0800358 // Verify the image checksum
Andreas Gampe29d38e72016-03-23 15:31:51 +0000359 if (CompilerFilter::DependsOnImageChecksum(current_compiler_filter)) {
360 const ImageInfo* image_info = GetImageInfo();
361 if (image_info == nullptr) {
362 VLOG(oat) << "No image for oat image checksum to match against.";
Andreas Gampe29d38e72016-03-23 15:31:51 +0000363
Richard Uhler76f5cb62016-04-04 13:30:16 -0700364 if (HasOriginalDexFiles()) {
Richard Uhler03bc6592016-11-22 09:42:04 +0000365 return kOatBootImageOutOfDate;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700366 }
367
368 // If there is no original dex file to fall back to, grudgingly accept
369 // the oat file. This could technically lead to crashes, but there's no
370 // way we could find a better oat file to use for this dex location,
371 // and it's better than being stuck in a boot loop with no way out.
372 // The problem will hopefully resolve itself the next time the runtime
373 // starts up.
374 LOG(WARNING) << "Dex location " << dex_location_ << " does not seem to include dex file. "
375 << "Allow oat file use. This is potentially dangerous.";
376 } else if (file.GetOatHeader().GetImageFileLocationOatChecksum()
377 != GetCombinedImageChecksum()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000378 VLOG(oat) << "Oat image checksum does not match image checksum.";
Richard Uhler03bc6592016-11-22 09:42:04 +0000379 return kOatBootImageOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000380 }
381 } else {
382 VLOG(oat) << "Image checksum test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800383 }
384
Vladimir Markof6d1e0f2016-05-23 15:32:42 +0100385 if (CompilerFilter::IsBytecodeCompilationEnabled(current_compiler_filter)) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000386 if (!file.IsPic()) {
387 const ImageInfo* image_info = GetImageInfo();
388 if (image_info == nullptr) {
389 VLOG(oat) << "No image to check oat relocation against.";
Richard Uhler03bc6592016-11-22 09:42:04 +0000390 return kOatRelocationOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000391 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700392
Andreas Gampe29d38e72016-03-23 15:31:51 +0000393 // Verify the oat_data_begin recorded for the image in the oat file matches
394 // the actual oat_data_begin for boot.oat in the image.
395 const OatHeader& oat_header = file.GetOatHeader();
396 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin();
397 if (oat_data_begin != image_info->oat_data_begin) {
398 VLOG(oat) << file.GetLocation() <<
399 ": Oat file image oat_data_begin (" << oat_data_begin << ")"
400 << " does not match actual image oat_data_begin ("
401 << image_info->oat_data_begin << ")";
Richard Uhler03bc6592016-11-22 09:42:04 +0000402 return kOatRelocationOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000403 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700404
Andreas Gampe29d38e72016-03-23 15:31:51 +0000405 // Verify the oat_patch_delta recorded for the image in the oat file matches
406 // the actual oat_patch_delta for the image.
407 int32_t oat_patch_delta = oat_header.GetImagePatchDelta();
408 if (oat_patch_delta != image_info->patch_delta) {
409 VLOG(oat) << file.GetLocation() <<
410 ": Oat file image patch delta (" << oat_patch_delta << ")"
411 << " does not match actual image patch delta ("
412 << image_info->patch_delta << ")";
Richard Uhler03bc6592016-11-22 09:42:04 +0000413 return kOatRelocationOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000414 }
415 } else {
416 // Oat files compiled in PIC mode do not require relocation.
417 VLOG(oat) << "Oat relocation test skipped for PIC oat file";
418 }
419 } else {
420 VLOG(oat) << "Oat relocation test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800421 }
Richard Uhlere8109f72016-04-18 10:40:50 -0700422 return kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800423}
424
Richard Uhler1e860612016-03-30 12:17:55 -0700425OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerf4b34872016-04-13 11:03:46 -0700426OatFileAssistant::GenerateOatFile(std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800427 CHECK(error_msg != nullptr);
428
Richard Uhler8327cf72015-10-13 16:34:59 -0700429 Runtime* runtime = Runtime::Current();
430 if (!runtime->IsDex2OatEnabled()) {
431 *error_msg = "Generation of oat file for dex location " + dex_location_
432 + " not attempted because dex2oat is disabled.";
Richard Uhler1e860612016-03-30 12:17:55 -0700433 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700434 }
435
Richard Uhler743bf362016-04-19 15:39:37 -0700436 if (oat_.Filename() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700437 *error_msg = "Generation of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800438 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700439 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800440 }
Richard Uhler743bf362016-04-19 15:39:37 -0700441 const std::string& oat_file_name = *oat_.Filename();
David Brazdil7b49e6c2016-09-01 11:06:18 +0100442 const std::string& vdex_file_name = ReplaceFileExtension(oat_file_name, "vdex");
Richard Uhler66d874d2015-01-15 09:37:19 -0800443
Richard Uhler66d874d2015-01-15 09:37:19 -0800444 // dex2oat ignores missing dex files and doesn't report an error.
445 // Check explicitly here so we can detect the error properly.
446 // TODO: Why does dex2oat behave that way?
Richard Uhler740eec92015-10-15 15:12:23 -0700447 if (!OS::FileExists(dex_location_.c_str())) {
448 *error_msg = "Dex location " + dex_location_ + " does not exists.";
Richard Uhler1e860612016-03-30 12:17:55 -0700449 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800450 }
451
David Brazdil7b49e6c2016-09-01 11:06:18 +0100452 std::unique_ptr<File> vdex_file(OS::CreateEmptyFile(vdex_file_name.c_str()));
453 if (vdex_file.get() == nullptr) {
454 *error_msg = "Generation of oat file " + oat_file_name
455 + " not attempted because the vdex file " + vdex_file_name
456 + " could not be opened.";
457 return kUpdateNotAttempted;
458 }
459
460 if (fchmod(vdex_file->Fd(), 0644) != 0) {
461 *error_msg = "Generation of oat file " + oat_file_name
462 + " not attempted because the vdex file " + vdex_file_name
463 + " could not be made world readable.";
464 return kUpdateNotAttempted;
465 }
466
467 std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_file_name.c_str()));
Richard Uhler8327cf72015-10-13 16:34:59 -0700468 if (oat_file.get() == nullptr) {
469 *error_msg = "Generation of oat file " + oat_file_name
470 + " not attempted because the oat file could not be created.";
Richard Uhler1e860612016-03-30 12:17:55 -0700471 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700472 }
473
474 if (fchmod(oat_file->Fd(), 0644) != 0) {
475 *error_msg = "Generation of oat file " + oat_file_name
476 + " not attempted because the oat file could not be made world readable.";
477 oat_file->Erase();
Richard Uhler1e860612016-03-30 12:17:55 -0700478 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700479 }
480
481 std::vector<std::string> args;
482 args.push_back("--dex-file=" + dex_location_);
Nicolas Geoffraya6a448a2016-11-10 10:49:40 +0000483 args.push_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd()));
Richard Uhler8327cf72015-10-13 16:34:59 -0700484 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
485 args.push_back("--oat-location=" + oat_file_name);
486
Richard Uhler66d874d2015-01-15 09:37:19 -0800487 if (!Dex2Oat(args, error_msg)) {
David Brazdil7b49e6c2016-09-01 11:06:18 +0100488 // Manually delete the oat and vdex files. This ensures there is no garbage
489 // left over if the process unexpectedly died.
490 vdex_file->Erase();
491 unlink(vdex_file_name.c_str());
Richard Uhler8327cf72015-10-13 16:34:59 -0700492 oat_file->Erase();
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100493 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700494 return kUpdateFailed;
Richard Uhler8327cf72015-10-13 16:34:59 -0700495 }
496
David Brazdil7b49e6c2016-09-01 11:06:18 +0100497 if (vdex_file->FlushCloseOrErase() != 0) {
498 *error_msg = "Unable to close vdex file " + vdex_file_name;
499 unlink(vdex_file_name.c_str());
500 return kUpdateFailed;
501 }
502
Richard Uhler8327cf72015-10-13 16:34:59 -0700503 if (oat_file->FlushCloseOrErase() != 0) {
504 *error_msg = "Unable to close oat file " + oat_file_name;
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100505 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700506 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800507 }
508
509 // Mark that the oat file has changed and we should try to reload.
Richard Uhler743bf362016-04-19 15:39:37 -0700510 oat_.Reset();
Richard Uhler1e860612016-03-30 12:17:55 -0700511 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800512}
513
514bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
515 std::string* error_msg) {
516 Runtime* runtime = Runtime::Current();
517 std::string image_location = ImageLocation();
518 if (image_location.empty()) {
519 *error_msg = "No image location found for Dex2Oat.";
520 return false;
521 }
522
523 std::vector<std::string> argv;
524 argv.push_back(runtime->GetCompilerExecutable());
525 argv.push_back("--runtime-arg");
526 argv.push_back("-classpath");
527 argv.push_back("--runtime-arg");
Jeff Haof0192c82016-03-28 20:39:50 -0700528 std::string class_path = runtime->GetClassPathString();
529 if (class_path == "") {
530 class_path = OatFile::kSpecialSharedLibrary;
531 }
532 argv.push_back(class_path);
Nicolas Geoffray7a4d0152015-07-10 17:29:39 +0100533 if (runtime->IsDebuggable()) {
Sebastien Hertz0de11332015-05-13 12:14:05 +0200534 argv.push_back("--debuggable");
535 }
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700536 runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv);
Richard Uhler66d874d2015-01-15 09:37:19 -0800537
538 if (!runtime->IsVerificationEnabled()) {
539 argv.push_back("--compiler-filter=verify-none");
540 }
541
542 if (runtime->MustRelocateIfPossible()) {
543 argv.push_back("--runtime-arg");
544 argv.push_back("-Xrelocate");
545 } else {
546 argv.push_back("--runtime-arg");
547 argv.push_back("-Xnorelocate");
548 }
549
550 if (!kIsTargetBuild) {
551 argv.push_back("--host");
552 }
553
554 argv.push_back("--boot-image=" + image_location);
555
556 std::vector<std::string> compiler_options = runtime->GetCompilerOptions();
557 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
558
559 argv.insert(argv.end(), args.begin(), args.end());
560
Andreas Gampe9186ced2016-12-12 14:28:21 -0800561 std::string command_line(android::base::Join(argv, ' '));
Richard Uhler66d874d2015-01-15 09:37:19 -0800562 return Exec(argv, error_msg);
563}
564
Richard Uhlerb81881d2016-04-19 13:08:04 -0700565bool OatFileAssistant::DexLocationToOdexFilename(const std::string& location,
566 InstructionSet isa,
567 std::string* odex_filename,
568 std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800569 CHECK(odex_filename != nullptr);
570 CHECK(error_msg != nullptr);
571
572 // The odex file name is formed by replacing the dex_location extension with
Richard Uhler63434112015-03-16 14:32:16 -0700573 // .odex and inserting an oat/<isa> directory. For example:
Richard Uhler66d874d2015-01-15 09:37:19 -0800574 // location = /foo/bar/baz.jar
Richard Uhler63434112015-03-16 14:32:16 -0700575 // odex_location = /foo/bar/oat/<isa>/baz.odex
Richard Uhler66d874d2015-01-15 09:37:19 -0800576
Richard Uhler63434112015-03-16 14:32:16 -0700577 // Find the directory portion of the dex location and add the oat/<isa>
578 // directory.
Richard Uhler66d874d2015-01-15 09:37:19 -0800579 size_t pos = location.rfind('/');
580 if (pos == std::string::npos) {
581 *error_msg = "Dex location " + location + " has no directory.";
582 return false;
583 }
584 std::string dir = location.substr(0, pos+1);
Richard Uhler63434112015-03-16 14:32:16 -0700585 dir += "oat/" + std::string(GetInstructionSetString(isa));
Richard Uhler66d874d2015-01-15 09:37:19 -0800586
587 // Find the file portion of the dex location.
588 std::string file;
589 if (pos == std::string::npos) {
590 file = location;
591 } else {
592 file = location.substr(pos+1);
593 }
594
595 // Get the base part of the file without the extension.
596 pos = file.rfind('.');
597 if (pos == std::string::npos) {
598 *error_msg = "Dex location " + location + " has no extension.";
599 return false;
600 }
601 std::string base = file.substr(0, pos);
602
603 *odex_filename = dir + "/" + base + ".odex";
604 return true;
605}
606
Richard Uhlerb81881d2016-04-19 13:08:04 -0700607bool OatFileAssistant::DexLocationToOatFilename(const std::string& location,
608 InstructionSet isa,
609 std::string* oat_filename,
610 std::string* error_msg) {
611 CHECK(oat_filename != nullptr);
612 CHECK(error_msg != nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800613
Richard Uhler55b58b62016-08-12 09:05:13 -0700614 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa));
615 if (cache_dir.empty()) {
616 *error_msg = "Dalvik cache directory does not exist";
617 return false;
618 }
Richard Uhlerb81881d2016-04-19 13:08:04 -0700619
620 // TODO: The oat file assistant should be the definitive place for
621 // determining the oat file name from the dex location, not
622 // GetDalvikCacheFilename.
Richard Uhlerb81881d2016-04-19 13:08:04 -0700623 return GetDalvikCacheFilename(location.c_str(), cache_dir.c_str(), oat_filename, error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800624}
625
Richard Uhler66d874d2015-01-15 09:37:19 -0800626std::string OatFileAssistant::ImageLocation() {
627 Runtime* runtime = Runtime::Current();
Andreas Gampe8994a042015-12-30 19:03:17 +0000628 const std::vector<gc::space::ImageSpace*>& image_spaces =
629 runtime->GetHeap()->GetBootImageSpaces();
630 if (image_spaces.empty()) {
631 return "";
632 }
633 return image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800634}
635
636const uint32_t* OatFileAssistant::GetRequiredDexChecksum() {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700637 if (!required_dex_checksum_attempted_) {
638 required_dex_checksum_attempted_ = true;
639 required_dex_checksum_found_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800640 std::string error_msg;
Richard Uhler740eec92015-10-15 15:12:23 -0700641 if (DexFile::GetChecksum(dex_location_.c_str(), &cached_required_dex_checksum_, &error_msg)) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700642 required_dex_checksum_found_ = true;
643 has_original_dex_files_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800644 } else {
645 // This can happen if the original dex file has been stripped from the
646 // apk.
647 VLOG(oat) << "OatFileAssistant: " << error_msg;
Richard Uhler9b994ea2015-06-24 08:44:19 -0700648 has_original_dex_files_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800649
650 // Get the checksum from the odex if we can.
Richard Uhler743bf362016-04-19 15:39:37 -0700651 const OatFile* odex_file = odex_.GetFile();
Richard Uhler66d874d2015-01-15 09:37:19 -0800652 if (odex_file != nullptr) {
Richard Uhler9a37efc2016-08-05 16:32:55 -0700653 const OatFile::OatDexFile* odex_dex_file
654 = odex_file->GetOatDexFile(dex_location_.c_str(), nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800655 if (odex_dex_file != nullptr) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700656 cached_required_dex_checksum_ = odex_dex_file->GetDexFileLocationChecksum();
657 required_dex_checksum_found_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800658 }
659 }
660 }
661 }
Richard Uhler9b994ea2015-06-24 08:44:19 -0700662 return required_dex_checksum_found_ ? &cached_required_dex_checksum_ : nullptr;
Richard Uhler66d874d2015-01-15 09:37:19 -0800663}
664
Richard Uhler66d874d2015-01-15 09:37:19 -0800665const OatFileAssistant::ImageInfo* OatFileAssistant::GetImageInfo() {
666 if (!image_info_load_attempted_) {
667 image_info_load_attempted_ = true;
668
669 Runtime* runtime = Runtime::Current();
Jeff Haodcdc85b2015-12-04 14:06:18 -0800670 std::vector<gc::space::ImageSpace*> image_spaces = runtime->GetHeap()->GetBootImageSpaces();
671 if (!image_spaces.empty()) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800672 cached_image_info_.location = image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800673
674 if (isa_ == kRuntimeISA) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800675 const ImageHeader& image_header = image_spaces[0]->GetImageHeader();
Richard Uhler66d874d2015-01-15 09:37:19 -0800676 cached_image_info_.oat_checksum = image_header.GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -0800677 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
678 image_header.GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -0800679 cached_image_info_.patch_delta = image_header.GetPatchDelta();
680 } else {
Andreas Gampea463b6a2016-08-12 21:53:32 -0700681 std::string error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800682 std::unique_ptr<ImageHeader> image_header(
Andreas Gampea463b6a2016-08-12 21:53:32 -0700683 gc::space::ImageSpace::ReadImageHeader(cached_image_info_.location.c_str(),
684 isa_,
685 &error_msg));
686 CHECK(image_header != nullptr) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800687 cached_image_info_.oat_checksum = image_header->GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -0800688 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
689 image_header->GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -0800690 cached_image_info_.patch_delta = image_header->GetPatchDelta();
691 }
692 }
Jeff Haodcdc85b2015-12-04 14:06:18 -0800693 image_info_load_succeeded_ = (!image_spaces.empty());
Jeff Haob11ffb72016-04-07 15:40:54 -0700694
Jeff Haofd336c32016-04-07 19:46:31 -0700695 combined_image_checksum_ = CalculateCombinedImageChecksum(isa_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800696 }
697 return image_info_load_succeeded_ ? &cached_image_info_ : nullptr;
698}
699
Jeff Haob11ffb72016-04-07 15:40:54 -0700700// TODO: Use something better than xor.
Jeff Haofd336c32016-04-07 19:46:31 -0700701uint32_t OatFileAssistant::CalculateCombinedImageChecksum(InstructionSet isa) {
Jeff Haob11ffb72016-04-07 15:40:54 -0700702 uint32_t checksum = 0;
703 std::vector<gc::space::ImageSpace*> image_spaces =
704 Runtime::Current()->GetHeap()->GetBootImageSpaces();
Jeff Haofd336c32016-04-07 19:46:31 -0700705 if (isa == kRuntimeISA) {
706 for (gc::space::ImageSpace* image_space : image_spaces) {
707 checksum ^= image_space->GetImageHeader().GetOatChecksum();
708 }
709 } else {
710 for (gc::space::ImageSpace* image_space : image_spaces) {
711 std::string location = image_space->GetImageLocation();
Andreas Gampea463b6a2016-08-12 21:53:32 -0700712 std::string error_msg;
Jeff Haofd336c32016-04-07 19:46:31 -0700713 std::unique_ptr<ImageHeader> image_header(
Andreas Gampea463b6a2016-08-12 21:53:32 -0700714 gc::space::ImageSpace::ReadImageHeader(location.c_str(), isa, &error_msg));
715 CHECK(image_header != nullptr) << error_msg;
Jeff Haofd336c32016-04-07 19:46:31 -0700716 checksum ^= image_header->GetOatChecksum();
717 }
Jeff Haob11ffb72016-04-07 15:40:54 -0700718 }
719 return checksum;
720}
721
722uint32_t OatFileAssistant::GetCombinedImageChecksum() {
723 if (!image_info_load_attempted_) {
724 GetImageInfo();
725 }
726 return combined_image_checksum_;
727}
728
Richard Uhler88bc6732016-11-14 14:38:03 +0000729OatFileAssistant::OatFileInfo& OatFileAssistant::GetBestInfo() {
Richard Uhler03bc6592016-11-22 09:42:04 +0000730 bool use_oat = oat_.IsUseable() || odex_.Status() == kOatCannotOpen;
731 return use_oat ? oat_ : odex_;
Richard Uhler88bc6732016-11-14 14:38:03 +0000732}
733
Andreas Gampea463b6a2016-08-12 21:53:32 -0700734std::unique_ptr<gc::space::ImageSpace> OatFileAssistant::OpenImageSpace(const OatFile* oat_file) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800735 DCHECK(oat_file != nullptr);
David Brazdil7b49e6c2016-09-01 11:06:18 +0100736 std::string art_file = ReplaceFileExtension(oat_file->GetLocation(), "art");
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800737 if (art_file.empty()) {
738 return nullptr;
739 }
740 std::string error_msg;
741 ScopedObjectAccess soa(Thread::Current());
Andreas Gampea463b6a2016-08-12 21:53:32 -0700742 std::unique_ptr<gc::space::ImageSpace> ret =
743 gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(), oat_file, &error_msg);
Mathieu Chartiere778fc72016-01-25 20:11:28 -0800744 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800745 LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg;
746 }
747 return ret;
748}
749
Richard Uhler88bc6732016-11-14 14:38:03 +0000750OatFileAssistant::OatFileInfo::OatFileInfo(OatFileAssistant* oat_file_assistant,
751 bool is_oat_location)
752 : oat_file_assistant_(oat_file_assistant), is_oat_location_(is_oat_location)
Richard Uhler743bf362016-04-19 15:39:37 -0700753{}
754
Richard Uhler88bc6732016-11-14 14:38:03 +0000755bool OatFileAssistant::OatFileInfo::IsOatLocation() {
756 return is_oat_location_;
757}
758
Richard Uhler743bf362016-04-19 15:39:37 -0700759const std::string* OatFileAssistant::OatFileInfo::Filename() {
760 return filename_provided_ ? &filename_ : nullptr;
761}
762
Richard Uhler03bc6592016-11-22 09:42:04 +0000763bool OatFileAssistant::OatFileInfo::IsUseable() {
764 switch (Status()) {
765 case kOatCannotOpen:
766 case kOatDexOutOfDate:
767 case kOatBootImageOutOfDate: return false;
768
769 case kOatRelocationOutOfDate:
770 case kOatUpToDate: return true;
771 }
772 UNREACHABLE();
Richard Uhler743bf362016-04-19 15:39:37 -0700773}
774
775OatFileAssistant::OatStatus OatFileAssistant::OatFileInfo::Status() {
776 if (!status_attempted_) {
777 status_attempted_ = true;
778 const OatFile* file = GetFile();
779 if (file == nullptr) {
Andreas Gampeba037b12017-01-25 00:16:27 +0000780 status_ = kOatCannotOpen;
Richard Uhler743bf362016-04-19 15:39:37 -0700781 } else {
782 status_ = oat_file_assistant_->GivenOatFileStatus(*file);
Richard Uhler9a37efc2016-08-05 16:32:55 -0700783 VLOG(oat) << file->GetLocation() << " is " << status_
784 << " with filter " << file->GetCompilerFilter();
Richard Uhler743bf362016-04-19 15:39:37 -0700785 }
786 }
787 return status_;
788}
789
Richard Uhler70a84262016-11-08 16:51:51 +0000790OatFileAssistant::DexOptNeeded OatFileAssistant::OatFileInfo::GetDexOptNeeded(
791 CompilerFilter::Filter target, bool profile_changed) {
792 bool compilation_desired = CompilerFilter::IsBytecodeCompilationEnabled(target);
Richard Uhler7225a8d2016-11-22 10:12:03 +0000793 bool filter_okay = CompilerFilterIsOkay(target, profile_changed);
Richard Uhler70a84262016-11-08 16:51:51 +0000794
Richard Uhler7225a8d2016-11-22 10:12:03 +0000795 if (filter_okay && Status() == kOatUpToDate) {
796 // The oat file is in good shape as is.
797 return kNoDexOptNeeded;
Richard Uhler70a84262016-11-08 16:51:51 +0000798 }
799
Richard Uhler7225a8d2016-11-22 10:12:03 +0000800 if (filter_okay && !compilation_desired && Status() == kOatRelocationOutOfDate) {
801 // If no compilation is desired, then it doesn't matter if the oat
802 // file needs relocation. It's in good shape as is.
803 return kNoDexOptNeeded;
804 }
805
Richard Uhler7225a8d2016-11-22 10:12:03 +0000806 if (oat_file_assistant_->HasOriginalDexFiles()) {
Richard Uhler7225a8d2016-11-22 10:12:03 +0000807 if (filter_okay && Status() == kOatRelocationOutOfDate) {
808 return kDex2OatForRelocation;
809 }
810
811 if (IsUseable()) {
812 return kDex2OatForFilter;
813 }
814
815 if (Status() == kOatBootImageOutOfDate) {
816 return kDex2OatForBootImage;
817 }
818
819 return kDex2OatFromScratch;
820 }
821
822 // Otherwise there is nothing we can do, even if we want to.
823 return kNoDexOptNeeded;
Richard Uhler70a84262016-11-08 16:51:51 +0000824}
825
Richard Uhler743bf362016-04-19 15:39:37 -0700826const OatFile* OatFileAssistant::OatFileInfo::GetFile() {
827 CHECK(!file_released_) << "GetFile called after oat file released.";
828 if (!load_attempted_) {
829 load_attempted_ = true;
830 if (filename_provided_) {
831 std::string error_msg;
832 file_.reset(OatFile::Open(filename_.c_str(),
833 filename_.c_str(),
834 nullptr,
835 nullptr,
836 oat_file_assistant_->load_executable_,
837 /*low_4gb*/false,
838 oat_file_assistant_->dex_location_.c_str(),
839 &error_msg));
840 if (file_.get() == nullptr) {
841 VLOG(oat) << "OatFileAssistant test for existing oat file "
842 << filename_ << ": " << error_msg;
843 }
844 }
845 }
846 return file_.get();
847}
848
849bool OatFileAssistant::OatFileInfo::CompilerFilterIsOkay(
850 CompilerFilter::Filter target, bool profile_changed) {
851 const OatFile* file = GetFile();
852 if (file == nullptr) {
853 return false;
854 }
855
856 CompilerFilter::Filter current = file->GetCompilerFilter();
857 if (profile_changed && CompilerFilter::DependsOnProfile(current)) {
858 VLOG(oat) << "Compiler filter not okay because Profile changed";
859 return false;
860 }
861 return CompilerFilter::IsAsGoodAs(current, target);
862}
863
864bool OatFileAssistant::OatFileInfo::IsExecutable() {
865 const OatFile* file = GetFile();
866 return (file != nullptr && file->IsExecutable());
867}
868
Richard Uhler743bf362016-04-19 15:39:37 -0700869void OatFileAssistant::OatFileInfo::Reset() {
870 load_attempted_ = false;
871 file_.reset();
872 status_attempted_ = false;
873}
874
875void OatFileAssistant::OatFileInfo::Reset(const std::string& filename) {
876 filename_provided_ = true;
877 filename_ = filename;
878 Reset();
879}
880
881std::unique_ptr<OatFile> OatFileAssistant::OatFileInfo::ReleaseFile() {
882 file_released_ = true;
883 return std::move(file_);
884}
885
Richard Uhler70a84262016-11-08 16:51:51 +0000886std::unique_ptr<OatFile> OatFileAssistant::OatFileInfo::ReleaseFileForUse() {
Richard Uhler3e580bc2016-11-08 16:23:07 +0000887 if (Status() == kOatUpToDate) {
Richard Uhler70a84262016-11-08 16:51:51 +0000888 return ReleaseFile();
889 }
890
891 VLOG(oat) << "Oat File Assistant: No relocated oat file found,"
892 << " attempting to fall back to interpreting oat file instead.";
893
Richard Uhler03bc6592016-11-22 09:42:04 +0000894 if (Status() == kOatRelocationOutOfDate && !IsExecutable()) {
Richard Uhler70a84262016-11-08 16:51:51 +0000895 return ReleaseFile();
896 }
897
Richard Uhler03bc6592016-11-22 09:42:04 +0000898 if (Status() == kOatRelocationOutOfDate) {
Richard Uhler70a84262016-11-08 16:51:51 +0000899 // We are loading an oat file for runtime use that needs relocation.
900 // Reload the file non-executable to ensure that we interpret out of the
901 // dex code in the oat file rather than trying to execute the unrelocated
902 // compiled code.
903 oat_file_assistant_->load_executable_ = false;
904 Reset();
Richard Uhler03bc6592016-11-22 09:42:04 +0000905 if (IsUseable()) {
Richard Uhler70a84262016-11-08 16:51:51 +0000906 CHECK(!IsExecutable());
907 return ReleaseFile();
908 }
909 }
910 return std::unique_ptr<OatFile>();
911}
Richard Uhler66d874d2015-01-15 09:37:19 -0800912} // namespace art