blob: ee7cf9deef64cfc771be90bdda01b1ec8cf5acd5 [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);
206
207 case kPatchoatForRelocation: {
208 return RelocateOatFile(info.Filename(), error_msg);
209 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800210 }
211 UNREACHABLE();
212}
213
214std::unique_ptr<OatFile> OatFileAssistant::GetBestOatFile() {
Richard Uhler88bc6732016-11-14 14:38:03 +0000215 return GetBestInfo().ReleaseFileForUse();
Richard Uhler66d874d2015-01-15 09:37:19 -0800216}
217
Richard Uhler46cc64f2016-11-14 14:53:55 +0000218std::string OatFileAssistant::GetStatusDump() {
219 std::ostringstream status;
220 bool oat_file_exists = false;
221 bool odex_file_exists = false;
Richard Uhler03bc6592016-11-22 09:42:04 +0000222 if (oat_.Status() != kOatCannotOpen) {
223 // If we can open the file, neither Filename nor GetFile should return null.
224 CHECK(oat_.Filename() != nullptr);
225 CHECK(oat_.GetFile() != nullptr);
226
Richard Uhler46cc64f2016-11-14 14:53:55 +0000227 oat_file_exists = true;
228 status << *oat_.Filename() << " [compilation_filter=";
Richard Uhler03bc6592016-11-22 09:42:04 +0000229 status << CompilerFilter::NameOfFilter(oat_.GetFile()->GetCompilerFilter());
Richard Uhler46cc64f2016-11-14 14:53:55 +0000230 status << ", status=" << oat_.Status();
231 }
232
Richard Uhler03bc6592016-11-22 09:42:04 +0000233 if (odex_.Status() != kOatCannotOpen) {
234 // If we can open the file, neither Filename nor GetFile should return null.
235 CHECK(odex_.Filename() != nullptr);
236 CHECK(odex_.GetFile() != nullptr);
237
Richard Uhler46cc64f2016-11-14 14:53:55 +0000238 odex_file_exists = true;
239 if (oat_file_exists) {
240 status << "] ";
241 }
242 status << *odex_.Filename() << " [compilation_filter=";
Richard Uhler03bc6592016-11-22 09:42:04 +0000243 status << CompilerFilter::NameOfFilter(odex_.GetFile()->GetCompilerFilter());
Richard Uhler46cc64f2016-11-14 14:53:55 +0000244 status << ", status=" << odex_.Status();
245 }
246
247 if (!oat_file_exists && !odex_file_exists) {
248 status << "invalid[";
249 }
250
251 status << "]";
252 return status.str();
253}
254
Richard Uhler66d874d2015-01-15 09:37:19 -0800255std::vector<std::unique_ptr<const DexFile>> OatFileAssistant::LoadDexFiles(
256 const OatFile& oat_file, const char* dex_location) {
257 std::vector<std::unique_ptr<const DexFile>> dex_files;
258
259 // Load the primary dex file.
260 std::string error_msg;
261 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(
Richard Uhler9a37efc2016-08-05 16:32:55 -0700262 dex_location, nullptr, &error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800263 if (oat_dex_file == nullptr) {
Richard Uhler9a37efc2016-08-05 16:32:55 -0700264 LOG(WARNING) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800265 return std::vector<std::unique_ptr<const DexFile>>();
266 }
267
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700268 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800269 if (dex_file.get() == nullptr) {
270 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
271 return std::vector<std::unique_ptr<const DexFile>>();
272 }
273 dex_files.push_back(std::move(dex_file));
274
275 // Load secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700276 for (size_t i = 1; ; i++) {
277 std::string secondary_dex_location = DexFile::GetMultiDexLocation(i, dex_location);
Richard Uhler9a37efc2016-08-05 16:32:55 -0700278 oat_dex_file = oat_file.GetOatDexFile(secondary_dex_location.c_str(), nullptr);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700279 if (oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800280 // There are no more secondary dex files to load.
281 break;
282 }
283
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700284 dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800285 if (dex_file.get() == nullptr) {
286 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
287 return std::vector<std::unique_ptr<const DexFile>>();
288 }
289 dex_files.push_back(std::move(dex_file));
290 }
291 return dex_files;
292}
293
Richard Uhler9b994ea2015-06-24 08:44:19 -0700294bool OatFileAssistant::HasOriginalDexFiles() {
295 // Ensure GetRequiredDexChecksum has been run so that
296 // has_original_dex_files_ is initialized. We don't care about the result of
297 // GetRequiredDexChecksum.
298 GetRequiredDexChecksum();
299 return has_original_dex_files_;
300}
301
Richard Uhler95abd042015-03-24 09:51:28 -0700302OatFileAssistant::OatStatus OatFileAssistant::OdexFileStatus() {
Richard Uhler743bf362016-04-19 15:39:37 -0700303 return odex_.Status();
Richard Uhler66d874d2015-01-15 09:37:19 -0800304}
305
Richard Uhler95abd042015-03-24 09:51:28 -0700306OatFileAssistant::OatStatus OatFileAssistant::OatFileStatus() {
Richard Uhler743bf362016-04-19 15:39:37 -0700307 return oat_.Status();
Richard Uhler66d874d2015-01-15 09:37:19 -0800308}
309
Richard Uhler95abd042015-03-24 09:51:28 -0700310OatFileAssistant::OatStatus OatFileAssistant::GivenOatFileStatus(const OatFile& file) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800311 // Verify the dex checksum.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700312 // Note: GetOatDexFile will return null if the dex checksum doesn't match
Richard Uhler66d874d2015-01-15 09:37:19 -0800313 // what we provide, which verifies the primary dex checksum for us.
Richard Uhler9a37efc2016-08-05 16:32:55 -0700314 std::string error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800315 const uint32_t* dex_checksum_pointer = GetRequiredDexChecksum();
316 const OatFile::OatDexFile* oat_dex_file = file.GetOatDexFile(
Richard Uhler9a37efc2016-08-05 16:32:55 -0700317 dex_location_.c_str(), dex_checksum_pointer, &error_msg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700318 if (oat_dex_file == nullptr) {
Nicolas Geoffrayf54e5df2016-12-01 10:45:08 +0000319 LOG(ERROR) << error_msg;
Richard Uhler03bc6592016-11-22 09:42:04 +0000320 return kOatDexOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800321 }
322
323 // Verify the dex checksums for any secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700324 for (size_t i = 1; ; i++) {
Richard Uhler9a37efc2016-08-05 16:32:55 -0700325 std::string secondary_dex_location = DexFile::GetMultiDexLocation(i, dex_location_.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800326 const OatFile::OatDexFile* secondary_oat_dex_file
Richard Uhler9a37efc2016-08-05 16:32:55 -0700327 = file.GetOatDexFile(secondary_dex_location.c_str(), nullptr);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700328 if (secondary_oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800329 // There are no more secondary dex files to check.
330 break;
331 }
332
Richard Uhler66d874d2015-01-15 09:37:19 -0800333 uint32_t expected_secondary_checksum = 0;
334 if (DexFile::GetChecksum(secondary_dex_location.c_str(),
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700335 &expected_secondary_checksum, &error_msg)) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800336 uint32_t actual_secondary_checksum
337 = secondary_oat_dex_file->GetDexFileLocationChecksum();
338 if (expected_secondary_checksum != actual_secondary_checksum) {
339 VLOG(oat) << "Dex checksum does not match for secondary dex: "
340 << secondary_dex_location
341 << ". Expected: " << expected_secondary_checksum
342 << ", Actual: " << actual_secondary_checksum;
Richard Uhler03bc6592016-11-22 09:42:04 +0000343 return kOatDexOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800344 }
345 } else {
346 // If we can't get the checksum for the secondary location, we assume
347 // the dex checksum is up to date for this and all other secondary dex
348 // files.
349 break;
350 }
351 }
352
Andreas Gampe29d38e72016-03-23 15:31:51 +0000353 CompilerFilter::Filter current_compiler_filter = file.GetCompilerFilter();
David Brazdilce4b0ba2016-01-28 15:05:49 +0000354
Richard Uhler66d874d2015-01-15 09:37:19 -0800355 // Verify the image checksum
Andreas Gampe29d38e72016-03-23 15:31:51 +0000356 if (CompilerFilter::DependsOnImageChecksum(current_compiler_filter)) {
357 const ImageInfo* image_info = GetImageInfo();
358 if (image_info == nullptr) {
359 VLOG(oat) << "No image for oat image checksum to match against.";
Andreas Gampe29d38e72016-03-23 15:31:51 +0000360
Richard Uhler76f5cb62016-04-04 13:30:16 -0700361 if (HasOriginalDexFiles()) {
Richard Uhler03bc6592016-11-22 09:42:04 +0000362 return kOatBootImageOutOfDate;
Richard Uhler76f5cb62016-04-04 13:30:16 -0700363 }
364
365 // If there is no original dex file to fall back to, grudgingly accept
366 // the oat file. This could technically lead to crashes, but there's no
367 // way we could find a better oat file to use for this dex location,
368 // and it's better than being stuck in a boot loop with no way out.
369 // The problem will hopefully resolve itself the next time the runtime
370 // starts up.
371 LOG(WARNING) << "Dex location " << dex_location_ << " does not seem to include dex file. "
372 << "Allow oat file use. This is potentially dangerous.";
373 } else if (file.GetOatHeader().GetImageFileLocationOatChecksum()
374 != GetCombinedImageChecksum()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000375 VLOG(oat) << "Oat image checksum does not match image checksum.";
Richard Uhler03bc6592016-11-22 09:42:04 +0000376 return kOatBootImageOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000377 }
378 } else {
379 VLOG(oat) << "Image checksum test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800380 }
381
Vladimir Markof6d1e0f2016-05-23 15:32:42 +0100382 if (CompilerFilter::IsBytecodeCompilationEnabled(current_compiler_filter)) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000383 if (!file.IsPic()) {
384 const ImageInfo* image_info = GetImageInfo();
385 if (image_info == nullptr) {
386 VLOG(oat) << "No image to check oat relocation against.";
Richard Uhler03bc6592016-11-22 09:42:04 +0000387 return kOatRelocationOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000388 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700389
Andreas Gampe29d38e72016-03-23 15:31:51 +0000390 // Verify the oat_data_begin recorded for the image in the oat file matches
391 // the actual oat_data_begin for boot.oat in the image.
392 const OatHeader& oat_header = file.GetOatHeader();
393 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin();
394 if (oat_data_begin != image_info->oat_data_begin) {
395 VLOG(oat) << file.GetLocation() <<
396 ": Oat file image oat_data_begin (" << oat_data_begin << ")"
397 << " does not match actual image oat_data_begin ("
398 << image_info->oat_data_begin << ")";
Richard Uhler03bc6592016-11-22 09:42:04 +0000399 return kOatRelocationOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000400 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700401
Andreas Gampe29d38e72016-03-23 15:31:51 +0000402 // Verify the oat_patch_delta recorded for the image in the oat file matches
403 // the actual oat_patch_delta for the image.
404 int32_t oat_patch_delta = oat_header.GetImagePatchDelta();
405 if (oat_patch_delta != image_info->patch_delta) {
406 VLOG(oat) << file.GetLocation() <<
407 ": Oat file image patch delta (" << oat_patch_delta << ")"
408 << " does not match actual image patch delta ("
409 << image_info->patch_delta << ")";
Richard Uhler03bc6592016-11-22 09:42:04 +0000410 return kOatRelocationOutOfDate;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000411 }
412 } else {
413 // Oat files compiled in PIC mode do not require relocation.
414 VLOG(oat) << "Oat relocation test skipped for PIC oat file";
415 }
416 } else {
417 VLOG(oat) << "Oat relocation test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800418 }
Richard Uhlere8109f72016-04-18 10:40:50 -0700419 return kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800420}
421
Richard Uhler1e860612016-03-30 12:17:55 -0700422OatFileAssistant::ResultOfAttemptToUpdate
423OatFileAssistant::RelocateOatFile(const std::string* input_file, std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800424 CHECK(error_msg != nullptr);
425
Richard Uhler95abd042015-03-24 09:51:28 -0700426 if (input_file == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700427 *error_msg = "Patching of oat file for dex location " + dex_location_
Richard Uhler95abd042015-03-24 09:51:28 -0700428 + " not attempted because the input file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700429 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800430 }
Richard Uhler95abd042015-03-24 09:51:28 -0700431 const std::string& input_file_name = *input_file;
Richard Uhler66d874d2015-01-15 09:37:19 -0800432
Richard Uhler743bf362016-04-19 15:39:37 -0700433 if (oat_.Filename() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700434 *error_msg = "Patching of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800435 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700436 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800437 }
Richard Uhler743bf362016-04-19 15:39:37 -0700438 const std::string& oat_file_name = *oat_.Filename();
Richard Uhler66d874d2015-01-15 09:37:19 -0800439
440 const ImageInfo* image_info = GetImageInfo();
441 Runtime* runtime = Runtime::Current();
442 if (image_info == nullptr) {
443 *error_msg = "Patching of oat file " + oat_file_name
444 + " not attempted because no image location was found.";
Richard Uhler1e860612016-03-30 12:17:55 -0700445 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800446 }
447
448 if (!runtime->IsDex2OatEnabled()) {
449 *error_msg = "Patching of oat file " + oat_file_name
450 + " not attempted because dex2oat is disabled";
Richard Uhler1e860612016-03-30 12:17:55 -0700451 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800452 }
453
454 std::vector<std::string> argv;
455 argv.push_back(runtime->GetPatchoatExecutable());
456 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_)));
Richard Uhler95abd042015-03-24 09:51:28 -0700457 argv.push_back("--input-oat-file=" + input_file_name);
Richard Uhler66d874d2015-01-15 09:37:19 -0800458 argv.push_back("--output-oat-file=" + oat_file_name);
459 argv.push_back("--patched-image-location=" + image_info->location);
460
Andreas Gampe9186ced2016-12-12 14:28:21 -0800461 std::string command_line(android::base::Join(argv, ' '));
Richard Uhler66d874d2015-01-15 09:37:19 -0800462 if (!Exec(argv, error_msg)) {
463 // Manually delete the file. This ensures there is no garbage left over if
464 // the process unexpectedly died.
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100465 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700466 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800467 }
468
469 // Mark that the oat file has changed and we should try to reload.
Richard Uhler743bf362016-04-19 15:39:37 -0700470 oat_.Reset();
Richard Uhler1e860612016-03-30 12:17:55 -0700471 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800472}
473
Richard Uhler1e860612016-03-30 12:17:55 -0700474OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerf4b34872016-04-13 11:03:46 -0700475OatFileAssistant::GenerateOatFile(std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800476 CHECK(error_msg != nullptr);
477
Richard Uhler8327cf72015-10-13 16:34:59 -0700478 Runtime* runtime = Runtime::Current();
479 if (!runtime->IsDex2OatEnabled()) {
480 *error_msg = "Generation of oat file for dex location " + dex_location_
481 + " not attempted because dex2oat is disabled.";
Richard Uhler1e860612016-03-30 12:17:55 -0700482 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700483 }
484
Richard Uhler743bf362016-04-19 15:39:37 -0700485 if (oat_.Filename() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700486 *error_msg = "Generation of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800487 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700488 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800489 }
Richard Uhler743bf362016-04-19 15:39:37 -0700490 const std::string& oat_file_name = *oat_.Filename();
David Brazdil7b49e6c2016-09-01 11:06:18 +0100491 const std::string& vdex_file_name = ReplaceFileExtension(oat_file_name, "vdex");
Richard Uhler66d874d2015-01-15 09:37:19 -0800492
Richard Uhler66d874d2015-01-15 09:37:19 -0800493 // dex2oat ignores missing dex files and doesn't report an error.
494 // Check explicitly here so we can detect the error properly.
495 // TODO: Why does dex2oat behave that way?
Richard Uhler740eec92015-10-15 15:12:23 -0700496 if (!OS::FileExists(dex_location_.c_str())) {
497 *error_msg = "Dex location " + dex_location_ + " does not exists.";
Richard Uhler1e860612016-03-30 12:17:55 -0700498 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800499 }
500
David Brazdil7b49e6c2016-09-01 11:06:18 +0100501 std::unique_ptr<File> vdex_file(OS::CreateEmptyFile(vdex_file_name.c_str()));
502 if (vdex_file.get() == nullptr) {
503 *error_msg = "Generation of oat file " + oat_file_name
504 + " not attempted because the vdex file " + vdex_file_name
505 + " could not be opened.";
506 return kUpdateNotAttempted;
507 }
508
509 if (fchmod(vdex_file->Fd(), 0644) != 0) {
510 *error_msg = "Generation of oat file " + oat_file_name
511 + " not attempted because the vdex file " + vdex_file_name
512 + " could not be made world readable.";
513 return kUpdateNotAttempted;
514 }
515
516 std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_file_name.c_str()));
Richard Uhler8327cf72015-10-13 16:34:59 -0700517 if (oat_file.get() == nullptr) {
518 *error_msg = "Generation of oat file " + oat_file_name
519 + " not attempted because the oat file could not be created.";
Richard Uhler1e860612016-03-30 12:17:55 -0700520 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700521 }
522
523 if (fchmod(oat_file->Fd(), 0644) != 0) {
524 *error_msg = "Generation of oat file " + oat_file_name
525 + " not attempted because the oat file could not be made world readable.";
526 oat_file->Erase();
Richard Uhler1e860612016-03-30 12:17:55 -0700527 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700528 }
529
530 std::vector<std::string> args;
531 args.push_back("--dex-file=" + dex_location_);
Nicolas Geoffraya6a448a2016-11-10 10:49:40 +0000532 args.push_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd()));
Richard Uhler8327cf72015-10-13 16:34:59 -0700533 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
534 args.push_back("--oat-location=" + oat_file_name);
535
Richard Uhler66d874d2015-01-15 09:37:19 -0800536 if (!Dex2Oat(args, error_msg)) {
David Brazdil7b49e6c2016-09-01 11:06:18 +0100537 // Manually delete the oat and vdex files. This ensures there is no garbage
538 // left over if the process unexpectedly died.
539 vdex_file->Erase();
540 unlink(vdex_file_name.c_str());
Richard Uhler8327cf72015-10-13 16:34:59 -0700541 oat_file->Erase();
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100542 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700543 return kUpdateFailed;
Richard Uhler8327cf72015-10-13 16:34:59 -0700544 }
545
David Brazdil7b49e6c2016-09-01 11:06:18 +0100546 if (vdex_file->FlushCloseOrErase() != 0) {
547 *error_msg = "Unable to close vdex file " + vdex_file_name;
548 unlink(vdex_file_name.c_str());
549 return kUpdateFailed;
550 }
551
Richard Uhler8327cf72015-10-13 16:34:59 -0700552 if (oat_file->FlushCloseOrErase() != 0) {
553 *error_msg = "Unable to close oat file " + oat_file_name;
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100554 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700555 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800556 }
557
558 // Mark that the oat file has changed and we should try to reload.
Richard Uhler743bf362016-04-19 15:39:37 -0700559 oat_.Reset();
Richard Uhler1e860612016-03-30 12:17:55 -0700560 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800561}
562
563bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
564 std::string* error_msg) {
565 Runtime* runtime = Runtime::Current();
566 std::string image_location = ImageLocation();
567 if (image_location.empty()) {
568 *error_msg = "No image location found for Dex2Oat.";
569 return false;
570 }
571
572 std::vector<std::string> argv;
573 argv.push_back(runtime->GetCompilerExecutable());
574 argv.push_back("--runtime-arg");
575 argv.push_back("-classpath");
576 argv.push_back("--runtime-arg");
Jeff Haof0192c82016-03-28 20:39:50 -0700577 std::string class_path = runtime->GetClassPathString();
578 if (class_path == "") {
579 class_path = OatFile::kSpecialSharedLibrary;
580 }
581 argv.push_back(class_path);
Nicolas Geoffray7a4d0152015-07-10 17:29:39 +0100582 if (runtime->IsDebuggable()) {
Sebastien Hertz0de11332015-05-13 12:14:05 +0200583 argv.push_back("--debuggable");
584 }
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700585 runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv);
Richard Uhler66d874d2015-01-15 09:37:19 -0800586
587 if (!runtime->IsVerificationEnabled()) {
588 argv.push_back("--compiler-filter=verify-none");
589 }
590
591 if (runtime->MustRelocateIfPossible()) {
592 argv.push_back("--runtime-arg");
593 argv.push_back("-Xrelocate");
594 } else {
595 argv.push_back("--runtime-arg");
596 argv.push_back("-Xnorelocate");
597 }
598
599 if (!kIsTargetBuild) {
600 argv.push_back("--host");
601 }
602
603 argv.push_back("--boot-image=" + image_location);
604
605 std::vector<std::string> compiler_options = runtime->GetCompilerOptions();
606 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
607
608 argv.insert(argv.end(), args.begin(), args.end());
609
Andreas Gampe9186ced2016-12-12 14:28:21 -0800610 std::string command_line(android::base::Join(argv, ' '));
Richard Uhler66d874d2015-01-15 09:37:19 -0800611 return Exec(argv, error_msg);
612}
613
Richard Uhlerb81881d2016-04-19 13:08:04 -0700614bool OatFileAssistant::DexLocationToOdexFilename(const std::string& location,
615 InstructionSet isa,
616 std::string* odex_filename,
617 std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800618 CHECK(odex_filename != nullptr);
619 CHECK(error_msg != nullptr);
620
621 // The odex file name is formed by replacing the dex_location extension with
Richard Uhler63434112015-03-16 14:32:16 -0700622 // .odex and inserting an oat/<isa> directory. For example:
Richard Uhler66d874d2015-01-15 09:37:19 -0800623 // location = /foo/bar/baz.jar
Richard Uhler63434112015-03-16 14:32:16 -0700624 // odex_location = /foo/bar/oat/<isa>/baz.odex
Richard Uhler66d874d2015-01-15 09:37:19 -0800625
Richard Uhler63434112015-03-16 14:32:16 -0700626 // Find the directory portion of the dex location and add the oat/<isa>
627 // directory.
Richard Uhler66d874d2015-01-15 09:37:19 -0800628 size_t pos = location.rfind('/');
629 if (pos == std::string::npos) {
630 *error_msg = "Dex location " + location + " has no directory.";
631 return false;
632 }
633 std::string dir = location.substr(0, pos+1);
Richard Uhler63434112015-03-16 14:32:16 -0700634 dir += "oat/" + std::string(GetInstructionSetString(isa));
Richard Uhler66d874d2015-01-15 09:37:19 -0800635
636 // Find the file portion of the dex location.
637 std::string file;
638 if (pos == std::string::npos) {
639 file = location;
640 } else {
641 file = location.substr(pos+1);
642 }
643
644 // Get the base part of the file without the extension.
645 pos = file.rfind('.');
646 if (pos == std::string::npos) {
647 *error_msg = "Dex location " + location + " has no extension.";
648 return false;
649 }
650 std::string base = file.substr(0, pos);
651
652 *odex_filename = dir + "/" + base + ".odex";
653 return true;
654}
655
Richard Uhlerb81881d2016-04-19 13:08:04 -0700656bool OatFileAssistant::DexLocationToOatFilename(const std::string& location,
657 InstructionSet isa,
658 std::string* oat_filename,
659 std::string* error_msg) {
660 CHECK(oat_filename != nullptr);
661 CHECK(error_msg != nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800662
Richard Uhler55b58b62016-08-12 09:05:13 -0700663 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa));
664 if (cache_dir.empty()) {
665 *error_msg = "Dalvik cache directory does not exist";
666 return false;
667 }
Richard Uhlerb81881d2016-04-19 13:08:04 -0700668
669 // TODO: The oat file assistant should be the definitive place for
670 // determining the oat file name from the dex location, not
671 // GetDalvikCacheFilename.
Richard Uhlerb81881d2016-04-19 13:08:04 -0700672 return GetDalvikCacheFilename(location.c_str(), cache_dir.c_str(), oat_filename, error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800673}
674
Richard Uhler66d874d2015-01-15 09:37:19 -0800675std::string OatFileAssistant::ImageLocation() {
676 Runtime* runtime = Runtime::Current();
Andreas Gampe8994a042015-12-30 19:03:17 +0000677 const std::vector<gc::space::ImageSpace*>& image_spaces =
678 runtime->GetHeap()->GetBootImageSpaces();
679 if (image_spaces.empty()) {
680 return "";
681 }
682 return image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800683}
684
685const uint32_t* OatFileAssistant::GetRequiredDexChecksum() {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700686 if (!required_dex_checksum_attempted_) {
687 required_dex_checksum_attempted_ = true;
688 required_dex_checksum_found_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800689 std::string error_msg;
Richard Uhler740eec92015-10-15 15:12:23 -0700690 if (DexFile::GetChecksum(dex_location_.c_str(), &cached_required_dex_checksum_, &error_msg)) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700691 required_dex_checksum_found_ = true;
692 has_original_dex_files_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800693 } else {
694 // This can happen if the original dex file has been stripped from the
695 // apk.
696 VLOG(oat) << "OatFileAssistant: " << error_msg;
Richard Uhler9b994ea2015-06-24 08:44:19 -0700697 has_original_dex_files_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800698
699 // Get the checksum from the odex if we can.
Richard Uhler743bf362016-04-19 15:39:37 -0700700 const OatFile* odex_file = odex_.GetFile();
Richard Uhler66d874d2015-01-15 09:37:19 -0800701 if (odex_file != nullptr) {
Richard Uhler9a37efc2016-08-05 16:32:55 -0700702 const OatFile::OatDexFile* odex_dex_file
703 = odex_file->GetOatDexFile(dex_location_.c_str(), nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800704 if (odex_dex_file != nullptr) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700705 cached_required_dex_checksum_ = odex_dex_file->GetDexFileLocationChecksum();
706 required_dex_checksum_found_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800707 }
708 }
709 }
710 }
Richard Uhler9b994ea2015-06-24 08:44:19 -0700711 return required_dex_checksum_found_ ? &cached_required_dex_checksum_ : nullptr;
Richard Uhler66d874d2015-01-15 09:37:19 -0800712}
713
Richard Uhler66d874d2015-01-15 09:37:19 -0800714const OatFileAssistant::ImageInfo* OatFileAssistant::GetImageInfo() {
715 if (!image_info_load_attempted_) {
716 image_info_load_attempted_ = true;
717
718 Runtime* runtime = Runtime::Current();
Jeff Haodcdc85b2015-12-04 14:06:18 -0800719 std::vector<gc::space::ImageSpace*> image_spaces = runtime->GetHeap()->GetBootImageSpaces();
720 if (!image_spaces.empty()) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800721 cached_image_info_.location = image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800722
723 if (isa_ == kRuntimeISA) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800724 const ImageHeader& image_header = image_spaces[0]->GetImageHeader();
Richard Uhler66d874d2015-01-15 09:37:19 -0800725 cached_image_info_.oat_checksum = image_header.GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -0800726 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
727 image_header.GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -0800728 cached_image_info_.patch_delta = image_header.GetPatchDelta();
729 } else {
Andreas Gampea463b6a2016-08-12 21:53:32 -0700730 std::string error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800731 std::unique_ptr<ImageHeader> image_header(
Andreas Gampea463b6a2016-08-12 21:53:32 -0700732 gc::space::ImageSpace::ReadImageHeader(cached_image_info_.location.c_str(),
733 isa_,
734 &error_msg));
735 CHECK(image_header != nullptr) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800736 cached_image_info_.oat_checksum = image_header->GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -0800737 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
738 image_header->GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -0800739 cached_image_info_.patch_delta = image_header->GetPatchDelta();
740 }
741 }
Jeff Haodcdc85b2015-12-04 14:06:18 -0800742 image_info_load_succeeded_ = (!image_spaces.empty());
Jeff Haob11ffb72016-04-07 15:40:54 -0700743
Jeff Haofd336c32016-04-07 19:46:31 -0700744 combined_image_checksum_ = CalculateCombinedImageChecksum(isa_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800745 }
746 return image_info_load_succeeded_ ? &cached_image_info_ : nullptr;
747}
748
Jeff Haob11ffb72016-04-07 15:40:54 -0700749// TODO: Use something better than xor.
Jeff Haofd336c32016-04-07 19:46:31 -0700750uint32_t OatFileAssistant::CalculateCombinedImageChecksum(InstructionSet isa) {
Jeff Haob11ffb72016-04-07 15:40:54 -0700751 uint32_t checksum = 0;
752 std::vector<gc::space::ImageSpace*> image_spaces =
753 Runtime::Current()->GetHeap()->GetBootImageSpaces();
Jeff Haofd336c32016-04-07 19:46:31 -0700754 if (isa == kRuntimeISA) {
755 for (gc::space::ImageSpace* image_space : image_spaces) {
756 checksum ^= image_space->GetImageHeader().GetOatChecksum();
757 }
758 } else {
759 for (gc::space::ImageSpace* image_space : image_spaces) {
760 std::string location = image_space->GetImageLocation();
Andreas Gampea463b6a2016-08-12 21:53:32 -0700761 std::string error_msg;
Jeff Haofd336c32016-04-07 19:46:31 -0700762 std::unique_ptr<ImageHeader> image_header(
Andreas Gampea463b6a2016-08-12 21:53:32 -0700763 gc::space::ImageSpace::ReadImageHeader(location.c_str(), isa, &error_msg));
764 CHECK(image_header != nullptr) << error_msg;
Jeff Haofd336c32016-04-07 19:46:31 -0700765 checksum ^= image_header->GetOatChecksum();
766 }
Jeff Haob11ffb72016-04-07 15:40:54 -0700767 }
768 return checksum;
769}
770
771uint32_t OatFileAssistant::GetCombinedImageChecksum() {
772 if (!image_info_load_attempted_) {
773 GetImageInfo();
774 }
775 return combined_image_checksum_;
776}
777
Richard Uhler88bc6732016-11-14 14:38:03 +0000778OatFileAssistant::OatFileInfo& OatFileAssistant::GetBestInfo() {
Richard Uhler03bc6592016-11-22 09:42:04 +0000779 bool use_oat = oat_.IsUseable() || odex_.Status() == kOatCannotOpen;
780 return use_oat ? oat_ : odex_;
Richard Uhler88bc6732016-11-14 14:38:03 +0000781}
782
Andreas Gampea463b6a2016-08-12 21:53:32 -0700783std::unique_ptr<gc::space::ImageSpace> OatFileAssistant::OpenImageSpace(const OatFile* oat_file) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800784 DCHECK(oat_file != nullptr);
David Brazdil7b49e6c2016-09-01 11:06:18 +0100785 std::string art_file = ReplaceFileExtension(oat_file->GetLocation(), "art");
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800786 if (art_file.empty()) {
787 return nullptr;
788 }
789 std::string error_msg;
790 ScopedObjectAccess soa(Thread::Current());
Andreas Gampea463b6a2016-08-12 21:53:32 -0700791 std::unique_ptr<gc::space::ImageSpace> ret =
792 gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(), oat_file, &error_msg);
Mathieu Chartiere778fc72016-01-25 20:11:28 -0800793 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800794 LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg;
795 }
796 return ret;
797}
798
Richard Uhler88bc6732016-11-14 14:38:03 +0000799OatFileAssistant::OatFileInfo::OatFileInfo(OatFileAssistant* oat_file_assistant,
800 bool is_oat_location)
801 : oat_file_assistant_(oat_file_assistant), is_oat_location_(is_oat_location)
Richard Uhler743bf362016-04-19 15:39:37 -0700802{}
803
Richard Uhler88bc6732016-11-14 14:38:03 +0000804bool OatFileAssistant::OatFileInfo::IsOatLocation() {
805 return is_oat_location_;
806}
807
Richard Uhler743bf362016-04-19 15:39:37 -0700808const std::string* OatFileAssistant::OatFileInfo::Filename() {
809 return filename_provided_ ? &filename_ : nullptr;
810}
811
Richard Uhler03bc6592016-11-22 09:42:04 +0000812bool OatFileAssistant::OatFileInfo::IsUseable() {
813 switch (Status()) {
814 case kOatCannotOpen:
815 case kOatDexOutOfDate:
816 case kOatBootImageOutOfDate: return false;
817
818 case kOatRelocationOutOfDate:
819 case kOatUpToDate: return true;
820 }
821 UNREACHABLE();
Richard Uhler743bf362016-04-19 15:39:37 -0700822}
823
824OatFileAssistant::OatStatus OatFileAssistant::OatFileInfo::Status() {
825 if (!status_attempted_) {
826 status_attempted_ = true;
827 const OatFile* file = GetFile();
828 if (file == nullptr) {
Richard Uhler03bc6592016-11-22 09:42:04 +0000829 status_ = kOatCannotOpen;
Richard Uhler743bf362016-04-19 15:39:37 -0700830 } else {
831 status_ = oat_file_assistant_->GivenOatFileStatus(*file);
Richard Uhler9a37efc2016-08-05 16:32:55 -0700832 VLOG(oat) << file->GetLocation() << " is " << status_
833 << " with filter " << file->GetCompilerFilter();
Richard Uhler743bf362016-04-19 15:39:37 -0700834 }
835 }
836 return status_;
837}
838
Richard Uhler70a84262016-11-08 16:51:51 +0000839OatFileAssistant::DexOptNeeded OatFileAssistant::OatFileInfo::GetDexOptNeeded(
840 CompilerFilter::Filter target, bool profile_changed) {
841 bool compilation_desired = CompilerFilter::IsBytecodeCompilationEnabled(target);
Richard Uhler7225a8d2016-11-22 10:12:03 +0000842 bool filter_okay = CompilerFilterIsOkay(target, profile_changed);
Richard Uhler70a84262016-11-08 16:51:51 +0000843
Richard Uhler7225a8d2016-11-22 10:12:03 +0000844 if (filter_okay && Status() == kOatUpToDate) {
845 // The oat file is in good shape as is.
846 return kNoDexOptNeeded;
Richard Uhler70a84262016-11-08 16:51:51 +0000847 }
848
Richard Uhler7225a8d2016-11-22 10:12:03 +0000849 if (filter_okay && !compilation_desired && Status() == kOatRelocationOutOfDate) {
850 // If no compilation is desired, then it doesn't matter if the oat
851 // file needs relocation. It's in good shape as is.
852 return kNoDexOptNeeded;
853 }
854
855 if (filter_okay && Status() == kOatRelocationOutOfDate && HasPatchInfo()) {
856 return kPatchoatForRelocation;
857 }
858
859 if (oat_file_assistant_->HasOriginalDexFiles()) {
860 // Run dex2oat for relocation if we didn't have the patch info necessary
861 // to use patchoat.
862 if (filter_okay && Status() == kOatRelocationOutOfDate) {
863 return kDex2OatForRelocation;
864 }
865
866 if (IsUseable()) {
867 return kDex2OatForFilter;
868 }
869
870 if (Status() == kOatBootImageOutOfDate) {
871 return kDex2OatForBootImage;
872 }
873
874 return kDex2OatFromScratch;
875 }
876
877 // Otherwise there is nothing we can do, even if we want to.
878 return kNoDexOptNeeded;
Richard Uhler70a84262016-11-08 16:51:51 +0000879}
880
Richard Uhler743bf362016-04-19 15:39:37 -0700881const OatFile* OatFileAssistant::OatFileInfo::GetFile() {
882 CHECK(!file_released_) << "GetFile called after oat file released.";
883 if (!load_attempted_) {
884 load_attempted_ = true;
885 if (filename_provided_) {
886 std::string error_msg;
887 file_.reset(OatFile::Open(filename_.c_str(),
888 filename_.c_str(),
889 nullptr,
890 nullptr,
891 oat_file_assistant_->load_executable_,
892 /*low_4gb*/false,
893 oat_file_assistant_->dex_location_.c_str(),
894 &error_msg));
895 if (file_.get() == nullptr) {
896 VLOG(oat) << "OatFileAssistant test for existing oat file "
897 << filename_ << ": " << error_msg;
898 }
899 }
900 }
901 return file_.get();
902}
903
904bool OatFileAssistant::OatFileInfo::CompilerFilterIsOkay(
905 CompilerFilter::Filter target, bool profile_changed) {
906 const OatFile* file = GetFile();
907 if (file == nullptr) {
908 return false;
909 }
910
911 CompilerFilter::Filter current = file->GetCompilerFilter();
912 if (profile_changed && CompilerFilter::DependsOnProfile(current)) {
913 VLOG(oat) << "Compiler filter not okay because Profile changed";
914 return false;
915 }
916 return CompilerFilter::IsAsGoodAs(current, target);
917}
918
919bool OatFileAssistant::OatFileInfo::IsExecutable() {
920 const OatFile* file = GetFile();
921 return (file != nullptr && file->IsExecutable());
922}
923
924bool OatFileAssistant::OatFileInfo::HasPatchInfo() {
925 const OatFile* file = GetFile();
926 return (file != nullptr && file->HasPatchInfo());
927}
928
929void OatFileAssistant::OatFileInfo::Reset() {
930 load_attempted_ = false;
931 file_.reset();
932 status_attempted_ = false;
933}
934
935void OatFileAssistant::OatFileInfo::Reset(const std::string& filename) {
936 filename_provided_ = true;
937 filename_ = filename;
938 Reset();
939}
940
941std::unique_ptr<OatFile> OatFileAssistant::OatFileInfo::ReleaseFile() {
942 file_released_ = true;
943 return std::move(file_);
944}
945
Richard Uhler70a84262016-11-08 16:51:51 +0000946std::unique_ptr<OatFile> OatFileAssistant::OatFileInfo::ReleaseFileForUse() {
Richard Uhler3e580bc2016-11-08 16:23:07 +0000947 if (Status() == kOatUpToDate) {
Richard Uhler70a84262016-11-08 16:51:51 +0000948 return ReleaseFile();
949 }
950
951 VLOG(oat) << "Oat File Assistant: No relocated oat file found,"
952 << " attempting to fall back to interpreting oat file instead.";
953
Richard Uhler03bc6592016-11-22 09:42:04 +0000954 if (Status() == kOatRelocationOutOfDate && !IsExecutable()) {
Richard Uhler70a84262016-11-08 16:51:51 +0000955 return ReleaseFile();
956 }
957
Richard Uhler03bc6592016-11-22 09:42:04 +0000958 if (Status() == kOatRelocationOutOfDate) {
Richard Uhler70a84262016-11-08 16:51:51 +0000959 // We are loading an oat file for runtime use that needs relocation.
960 // Reload the file non-executable to ensure that we interpret out of the
961 // dex code in the oat file rather than trying to execute the unrelocated
962 // compiled code.
963 oat_file_assistant_->load_executable_ = false;
964 Reset();
Richard Uhler03bc6592016-11-22 09:42:04 +0000965 if (IsUseable()) {
Richard Uhler70a84262016-11-08 16:51:51 +0000966 CHECK(!IsExecutable());
967 return ReleaseFile();
968 }
969 }
970 return std::unique_ptr<OatFile>();
971}
Richard Uhler66d874d2015-01-15 09:37:19 -0800972} // namespace art
973