blob: 57c7d4ced3dd1ef409ebaac40dabd4ebe28ddca9 [file] [log] [blame]
Richard Uhler66d874d2015-01-15 09:37:19 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "oat_file_assistant.h"
18
19#include <fcntl.h>
20#ifdef __linux__
21#include <sys/sendfile.h>
22#else
23#include <sys/socket.h>
24#endif
25#include <sys/types.h>
26#include <sys/stat.h>
27#include <unistd.h>
28
29#include <set>
30
31#include "base/logging.h"
32#include "base/stringprintf.h"
Narayan Kamath8943c1d2016-05-02 13:14:48 +010033#include "compiler_filter.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080034#include "class_linker.h"
35#include "gc/heap.h"
36#include "gc/space/image_space.h"
37#include "image.h"
38#include "oat.h"
39#include "os.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080040#include "runtime.h"
Mathieu Chartierfbc31082016-01-24 11:59:56 -080041#include "scoped_thread_state_change.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080042#include "ScopedFd.h"
43#include "utils.h"
44
45namespace art {
46
Narayan Kamath8943c1d2016-05-02 13:14:48 +010047std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status) {
48 switch (status) {
49 case OatFileAssistant::kOatOutOfDate:
50 stream << "kOatOutOfDate";
51 break;
52 case OatFileAssistant::kOatUpToDate:
53 stream << "kOatUpToDate";
54 break;
55 case OatFileAssistant::kOatNeedsRelocation:
56 stream << "kOatNeedsRelocation";
57 break;
58 default:
59 UNREACHABLE();
60 }
61
62 return stream;
63}
64
Richard Uhler66d874d2015-01-15 09:37:19 -080065OatFileAssistant::OatFileAssistant(const char* dex_location,
66 const InstructionSet isa,
Andreas Gampe29d38e72016-03-23 15:31:51 +000067 bool profile_changed,
Richard Uhler66d874d2015-01-15 09:37:19 -080068 bool load_executable)
Andreas Gampe29d38e72016-03-23 15:31:51 +000069 : OatFileAssistant(dex_location, nullptr, isa, profile_changed, load_executable)
Calin Juravleb077e152016-02-18 18:47:37 +000070{ }
Richard Uhler66d874d2015-01-15 09:37:19 -080071
72OatFileAssistant::OatFileAssistant(const char* dex_location,
73 const char* oat_location,
74 const InstructionSet isa,
Andreas Gampe29d38e72016-03-23 15:31:51 +000075 bool profile_changed,
Richard Uhler66d874d2015-01-15 09:37:19 -080076 bool load_executable)
Andreas Gampe29d38e72016-03-23 15:31:51 +000077 : isa_(isa), profile_changed_(profile_changed), load_executable_(load_executable) {
Richard Uhler740eec92015-10-15 15:12:23 -070078 CHECK(dex_location != nullptr) << "OatFileAssistant: null dex location";
79 dex_location_.assign(dex_location);
80
Richard Uhler66d874d2015-01-15 09:37:19 -080081 if (load_executable_ && isa != kRuntimeISA) {
82 LOG(WARNING) << "OatFileAssistant: Load executable specified, "
83 << "but isa is not kRuntimeISA. Will not attempt to load executable.";
84 load_executable_ = false;
85 }
86
87 // If the user gave a target oat location, save that as the cached oat
88 // location now so we won't try to construct the default location later.
89 if (oat_location != nullptr) {
90 cached_oat_file_name_ = std::string(oat_location);
91 cached_oat_file_name_attempted_ = true;
92 cached_oat_file_name_found_ = true;
93 }
Richard Uhler66d874d2015-01-15 09:37:19 -080094}
95
96OatFileAssistant::~OatFileAssistant() {
97 // Clean up the lock file.
Richard Uhler581f4e92015-05-07 10:19:35 -070098 if (flock_.HasFile()) {
Vladimir Marko66fdcbd2016-04-05 14:19:08 +010099 unlink(flock_.GetFile()->GetPath().c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800100 }
101}
102
103bool OatFileAssistant::IsInBootClassPath() {
104 // Note: We check the current boot class path, regardless of the ISA
105 // specified by the user. This is okay, because the boot class path should
106 // be the same for all ISAs.
107 // TODO: Can we verify the boot class path is the same for all ISAs?
108 Runtime* runtime = Runtime::Current();
109 ClassLinker* class_linker = runtime->GetClassLinker();
110 const auto& boot_class_path = class_linker->GetBootClassPath();
111 for (size_t i = 0; i < boot_class_path.size(); i++) {
Richard Uhler740eec92015-10-15 15:12:23 -0700112 if (boot_class_path[i]->GetLocation() == dex_location_) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800113 VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path";
114 return true;
115 }
116 }
117 return false;
118}
119
120bool OatFileAssistant::Lock(std::string* error_msg) {
121 CHECK(error_msg != nullptr);
Richard Uhler581f4e92015-05-07 10:19:35 -0700122 CHECK(!flock_.HasFile()) << "OatFileAssistant::Lock already acquired";
Richard Uhler66d874d2015-01-15 09:37:19 -0800123
124 if (OatFileName() == nullptr) {
125 *error_msg = "Failed to determine lock file";
126 return false;
127 }
128 std::string lock_file_name = *OatFileName() + ".flock";
129
Richard Uhler581f4e92015-05-07 10:19:35 -0700130 if (!flock_.Init(lock_file_name.c_str(), error_msg)) {
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100131 unlink(lock_file_name.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800132 return false;
133 }
134 return true;
135}
136
Andreas Gampe29d38e72016-03-23 15:31:51 +0000137bool OatFileAssistant::OatFileCompilerFilterIsOkay(CompilerFilter::Filter target) {
138 const OatFile* oat_file = GetOatFile();
139 if (oat_file != nullptr) {
140 CompilerFilter::Filter current = oat_file->GetCompilerFilter();
141 return CompilerFilter::IsAsGoodAs(current, target);
142 }
143 return false;
Calin Juravleb077e152016-02-18 18:47:37 +0000144}
Richard Uhler66d874d2015-01-15 09:37:19 -0800145
Andreas Gampe29d38e72016-03-23 15:31:51 +0000146bool OatFileAssistant::OdexFileCompilerFilterIsOkay(CompilerFilter::Filter target) {
147 const OatFile* odex_file = GetOdexFile();
148 if (odex_file != nullptr) {
149 CompilerFilter::Filter current = odex_file->GetCompilerFilter();
150 return CompilerFilter::IsAsGoodAs(current, target);
151 }
152 return false;
153}
154
155OatFileAssistant::DexOptNeeded OatFileAssistant::GetDexOptNeeded(CompilerFilter::Filter target) {
Vladimir Markof6d1e0f2016-05-23 15:32:42 +0100156 bool compilation_desired = CompilerFilter::IsBytecodeCompilationEnabled(target);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000157
158 // See if the oat file is in good shape as is.
159 bool oat_okay = OatFileCompilerFilterIsOkay(target);
160 if (oat_okay) {
161 if (compilation_desired) {
162 if (OatFileIsUpToDate()) {
163 return kNoDexOptNeeded;
164 }
165 } else {
166 if (!OatFileIsOutOfDate()) {
167 return kNoDexOptNeeded;
168 }
169 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800170 }
Richard Uhler95abd042015-03-24 09:51:28 -0700171
Andreas Gampe29d38e72016-03-23 15:31:51 +0000172 // See if the odex file is in good shape as is.
173 bool odex_okay = OdexFileCompilerFilterIsOkay(target);
174 if (odex_okay) {
175 if (compilation_desired) {
176 if (OdexFileIsUpToDate()) {
177 return kNoDexOptNeeded;
178 }
179 } else {
180 if (!OdexFileIsOutOfDate()) {
181 return kNoDexOptNeeded;
182 }
183 }
Richard Uhler95abd042015-03-24 09:51:28 -0700184 }
185
Andreas Gampe29d38e72016-03-23 15:31:51 +0000186 // See if we can get an up-to-date file by running patchoat.
187 if (compilation_desired) {
Richard Uhlerd1537b52016-03-29 13:27:41 -0700188 if (odex_okay && OdexFileNeedsRelocation() && OdexFileHasPatchInfo()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000189 return kPatchOatNeeded;
190 }
191
Richard Uhlerd1537b52016-03-29 13:27:41 -0700192 if (oat_okay && OatFileNeedsRelocation() && OatFileHasPatchInfo()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000193 return kSelfPatchOatNeeded;
194 }
Richard Uhler95abd042015-03-24 09:51:28 -0700195 }
196
Andreas Gampe29d38e72016-03-23 15:31:51 +0000197 // We can only run dex2oat if there are original dex files.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700198 return HasOriginalDexFiles() ? kDex2OatNeeded : kNoDexOptNeeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800199}
200
Richard Uhlerf4b34872016-04-13 11:03:46 -0700201// Figure out the currently specified compile filter option in the runtime.
202// Returns true on success, false if the compiler filter is invalid, in which
203// case error_msg describes the problem.
204static bool GetRuntimeCompilerFilterOption(CompilerFilter::Filter* filter,
205 std::string* error_msg) {
206 CHECK(filter != nullptr);
207 CHECK(error_msg != nullptr);
208
209 *filter = CompilerFilter::kDefaultCompilerFilter;
210 for (StringPiece option : Runtime::Current()->GetCompilerOptions()) {
211 if (option.starts_with("--compiler-filter=")) {
212 const char* compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
213 if (!CompilerFilter::ParseCompilerFilter(compiler_filter_string, filter)) {
214 *error_msg = std::string("Unknown --compiler-filter value: ")
215 + std::string(compiler_filter_string);
216 return false;
217 }
218 }
219 }
220 return true;
221}
222
Richard Uhler01be6812016-05-17 10:34:52 -0700223bool OatFileAssistant::IsUpToDate() {
224 return OatFileIsUpToDate() || OdexFileIsUpToDate();
225}
226
Richard Uhler1e860612016-03-30 12:17:55 -0700227OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerf4b34872016-04-13 11:03:46 -0700228OatFileAssistant::MakeUpToDate(std::string* error_msg) {
229 CompilerFilter::Filter target;
230 if (!GetRuntimeCompilerFilterOption(&target, error_msg)) {
231 return kUpdateNotAttempted;
232 }
233
Andreas Gampe29d38e72016-03-23 15:31:51 +0000234 switch (GetDexOptNeeded(target)) {
Richard Uhler1e860612016-03-30 12:17:55 -0700235 case kNoDexOptNeeded: return kUpdateSucceeded;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700236 case kDex2OatNeeded: return GenerateOatFile(error_msg);
Richard Uhler95abd042015-03-24 09:51:28 -0700237 case kPatchOatNeeded: return RelocateOatFile(OdexFileName(), error_msg);
238 case kSelfPatchOatNeeded: return RelocateOatFile(OatFileName(), error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800239 }
240 UNREACHABLE();
241}
242
243std::unique_ptr<OatFile> OatFileAssistant::GetBestOatFile() {
Richard Uhler5f946da2015-07-17 12:28:32 -0700244 // The best oat files are, in descending order of bestness:
245 // 1. Properly relocated files. These may be opened executable.
246 // 2. Not out-of-date files that are already opened non-executable.
247 // 3. Not out-of-date files that we must reopen non-executable.
248
Richard Uhler66d874d2015-01-15 09:37:19 -0800249 if (OatFileIsUpToDate()) {
250 oat_file_released_ = true;
251 return std::move(cached_oat_file_);
252 }
253
254 if (OdexFileIsUpToDate()) {
255 oat_file_released_ = true;
256 return std::move(cached_odex_file_);
257 }
258
Richard Uhler5f946da2015-07-17 12:28:32 -0700259 VLOG(oat) << "Oat File Assistant: No relocated oat file found,"
260 << " attempting to fall back to interpreting oat file instead.";
Richard Uhler66d874d2015-01-15 09:37:19 -0800261
Richard Uhler5f946da2015-07-17 12:28:32 -0700262 if (!OatFileIsOutOfDate() && !OatFileIsExecutable()) {
263 oat_file_released_ = true;
264 return std::move(cached_oat_file_);
265 }
266
267 if (!OdexFileIsOutOfDate() && !OdexFileIsExecutable()) {
268 oat_file_released_ = true;
269 return std::move(cached_odex_file_);
270 }
271
272 if (!OatFileIsOutOfDate()) {
273 load_executable_ = false;
274 ClearOatFileCache();
Richard Uhler66d874d2015-01-15 09:37:19 -0800275 if (!OatFileIsOutOfDate()) {
Richard Uhler5f946da2015-07-17 12:28:32 -0700276 CHECK(!OatFileIsExecutable());
277 oat_file_released_ = true;
278 return std::move(cached_oat_file_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800279 }
Richard Uhler5f946da2015-07-17 12:28:32 -0700280 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800281
Richard Uhler5f946da2015-07-17 12:28:32 -0700282 if (!OdexFileIsOutOfDate()) {
283 load_executable_ = false;
284 ClearOdexFileCache();
Richard Uhler66d874d2015-01-15 09:37:19 -0800285 if (!OdexFileIsOutOfDate()) {
Richard Uhler5f946da2015-07-17 12:28:32 -0700286 CHECK(!OdexFileIsExecutable());
287 oat_file_released_ = true;
288 return std::move(cached_odex_file_);
Richard Uhler66d874d2015-01-15 09:37:19 -0800289 }
290 }
291
292 return std::unique_ptr<OatFile>();
293}
294
295std::vector<std::unique_ptr<const DexFile>> OatFileAssistant::LoadDexFiles(
296 const OatFile& oat_file, const char* dex_location) {
297 std::vector<std::unique_ptr<const DexFile>> dex_files;
298
299 // Load the primary dex file.
300 std::string error_msg;
301 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(
302 dex_location, nullptr, false);
303 if (oat_dex_file == nullptr) {
304 LOG(WARNING) << "Attempt to load out-of-date oat file "
305 << oat_file.GetLocation() << " for dex location " << dex_location;
306 return std::vector<std::unique_ptr<const DexFile>>();
307 }
308
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700309 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800310 if (dex_file.get() == nullptr) {
311 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
312 return std::vector<std::unique_ptr<const DexFile>>();
313 }
314 dex_files.push_back(std::move(dex_file));
315
316 // Load secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700317 for (size_t i = 1; ; i++) {
318 std::string secondary_dex_location = DexFile::GetMultiDexLocation(i, dex_location);
Richard Uhler66d874d2015-01-15 09:37:19 -0800319 oat_dex_file = oat_file.GetOatDexFile(secondary_dex_location.c_str(), nullptr, false);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700320 if (oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800321 // There are no more secondary dex files to load.
322 break;
323 }
324
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700325 dex_file = oat_dex_file->OpenDexFile(&error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800326 if (dex_file.get() == nullptr) {
327 LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg;
328 return std::vector<std::unique_ptr<const DexFile>>();
329 }
330 dex_files.push_back(std::move(dex_file));
331 }
332 return dex_files;
333}
334
Richard Uhler9b994ea2015-06-24 08:44:19 -0700335bool OatFileAssistant::HasOriginalDexFiles() {
336 // Ensure GetRequiredDexChecksum has been run so that
337 // has_original_dex_files_ is initialized. We don't care about the result of
338 // GetRequiredDexChecksum.
339 GetRequiredDexChecksum();
340 return has_original_dex_files_;
341}
342
Richard Uhler66d874d2015-01-15 09:37:19 -0800343const std::string* OatFileAssistant::OdexFileName() {
344 if (!cached_odex_file_name_attempted_) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800345 cached_odex_file_name_attempted_ = true;
346
347 std::string error_msg;
348 cached_odex_file_name_found_ = DexFilenameToOdexFilename(
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700349 dex_location_, isa_, &cached_odex_file_name_, &error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800350 if (!cached_odex_file_name_found_) {
351 // If we can't figure out the odex file, we treat it as if the odex
352 // file was inaccessible.
353 LOG(WARNING) << "Failed to determine odex file name: " << error_msg;
354 }
355 }
356 return cached_odex_file_name_found_ ? &cached_odex_file_name_ : nullptr;
357}
358
359bool OatFileAssistant::OdexFileExists() {
360 return GetOdexFile() != nullptr;
361}
362
Richard Uhler95abd042015-03-24 09:51:28 -0700363OatFileAssistant::OatStatus OatFileAssistant::OdexFileStatus() {
Richard Uhler66d874d2015-01-15 09:37:19 -0800364 if (OdexFileIsOutOfDate()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700365 return kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800366 }
367 if (OdexFileIsUpToDate()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700368 return kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800369 }
Richard Uhler95abd042015-03-24 09:51:28 -0700370 return kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800371}
372
373bool OatFileAssistant::OdexFileIsOutOfDate() {
374 if (!odex_file_is_out_of_date_attempted_) {
375 odex_file_is_out_of_date_attempted_ = true;
376 const OatFile* odex_file = GetOdexFile();
377 if (odex_file == nullptr) {
378 cached_odex_file_is_out_of_date_ = true;
379 } else {
380 cached_odex_file_is_out_of_date_ = GivenOatFileIsOutOfDate(*odex_file);
381 }
382 }
383 return cached_odex_file_is_out_of_date_;
384}
385
386bool OatFileAssistant::OdexFileNeedsRelocation() {
Richard Uhler95abd042015-03-24 09:51:28 -0700387 return OdexFileStatus() == kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800388}
389
390bool OatFileAssistant::OdexFileIsUpToDate() {
391 if (!odex_file_is_up_to_date_attempted_) {
392 odex_file_is_up_to_date_attempted_ = true;
393 const OatFile* odex_file = GetOdexFile();
394 if (odex_file == nullptr) {
395 cached_odex_file_is_up_to_date_ = false;
396 } else {
397 cached_odex_file_is_up_to_date_ = GivenOatFileIsUpToDate(*odex_file);
398 }
399 }
400 return cached_odex_file_is_up_to_date_;
401}
402
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100403CompilerFilter::Filter OatFileAssistant::OdexFileCompilerFilter() {
404 const OatFile* odex_file = GetOdexFile();
405 CHECK(odex_file != nullptr);
406
407 return odex_file->GetCompilerFilter();
408}
Richard Uhler4c7f1932016-04-15 15:51:21 -0700409
410static std::string ArtFileName(const OatFile* oat_file) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800411 const std::string oat_file_location = oat_file->GetLocation();
412 // Replace extension with .art
413 const size_t last_ext = oat_file_location.find_last_of('.');
414 if (last_ext == std::string::npos) {
415 LOG(ERROR) << "No extension in oat file " << oat_file_location;
416 return std::string();
417 }
418 return oat_file_location.substr(0, last_ext) + ".art";
419}
420
Richard Uhler66d874d2015-01-15 09:37:19 -0800421const std::string* OatFileAssistant::OatFileName() {
422 if (!cached_oat_file_name_attempted_) {
423 cached_oat_file_name_attempted_ = true;
424
425 // Compute the oat file name from the dex location.
Richard Uhler66d874d2015-01-15 09:37:19 -0800426 // TODO: The oat file assistant should be the definitive place for
427 // determining the oat file name from the dex location, not
428 // GetDalvikCacheFilename.
429 std::string cache_dir = StringPrintf("%s%s",
430 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_));
431 std::string error_msg;
Richard Uhler740eec92015-10-15 15:12:23 -0700432 cached_oat_file_name_found_ = GetDalvikCacheFilename(dex_location_.c_str(),
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700433 cache_dir.c_str(), &cached_oat_file_name_, &error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800434 if (!cached_oat_file_name_found_) {
435 // If we can't determine the oat file name, we treat the oat file as
436 // inaccessible.
437 LOG(WARNING) << "Failed to determine oat file name for dex location "
438 << dex_location_ << ": " << error_msg;
439 }
440 }
441 return cached_oat_file_name_found_ ? &cached_oat_file_name_ : nullptr;
442}
443
444bool OatFileAssistant::OatFileExists() {
445 return GetOatFile() != nullptr;
446}
447
Richard Uhler95abd042015-03-24 09:51:28 -0700448OatFileAssistant::OatStatus OatFileAssistant::OatFileStatus() {
Richard Uhler66d874d2015-01-15 09:37:19 -0800449 if (OatFileIsOutOfDate()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700450 return kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800451 }
452 if (OatFileIsUpToDate()) {
Richard Uhler95abd042015-03-24 09:51:28 -0700453 return kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800454 }
Richard Uhler95abd042015-03-24 09:51:28 -0700455 return kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800456}
457
458bool OatFileAssistant::OatFileIsOutOfDate() {
459 if (!oat_file_is_out_of_date_attempted_) {
460 oat_file_is_out_of_date_attempted_ = true;
461 const OatFile* oat_file = GetOatFile();
462 if (oat_file == nullptr) {
463 cached_oat_file_is_out_of_date_ = true;
464 } else {
465 cached_oat_file_is_out_of_date_ = GivenOatFileIsOutOfDate(*oat_file);
466 }
467 }
468 return cached_oat_file_is_out_of_date_;
469}
470
471bool OatFileAssistant::OatFileNeedsRelocation() {
Richard Uhler95abd042015-03-24 09:51:28 -0700472 return OatFileStatus() == kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800473}
474
475bool OatFileAssistant::OatFileIsUpToDate() {
476 if (!oat_file_is_up_to_date_attempted_) {
477 oat_file_is_up_to_date_attempted_ = true;
478 const OatFile* oat_file = GetOatFile();
479 if (oat_file == nullptr) {
480 cached_oat_file_is_up_to_date_ = false;
481 } else {
482 cached_oat_file_is_up_to_date_ = GivenOatFileIsUpToDate(*oat_file);
483 }
484 }
485 return cached_oat_file_is_up_to_date_;
486}
487
Narayan Kamath8943c1d2016-05-02 13:14:48 +0100488CompilerFilter::Filter OatFileAssistant::OatFileCompilerFilter() {
489 const OatFile* oat_file = GetOatFile();
490 CHECK(oat_file != nullptr);
491
492 return oat_file->GetCompilerFilter();
493}
494
Richard Uhler95abd042015-03-24 09:51:28 -0700495OatFileAssistant::OatStatus OatFileAssistant::GivenOatFileStatus(const OatFile& file) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800496 // TODO: This could cause GivenOatFileIsOutOfDate to be called twice, which
497 // is more work than we need to do. If performance becomes a concern, and
498 // this method is actually called, this should be fixed.
499 if (GivenOatFileIsOutOfDate(file)) {
Richard Uhler95abd042015-03-24 09:51:28 -0700500 return kOatOutOfDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800501 }
502 if (GivenOatFileIsUpToDate(file)) {
Richard Uhler95abd042015-03-24 09:51:28 -0700503 return kOatUpToDate;
Richard Uhler66d874d2015-01-15 09:37:19 -0800504 }
Richard Uhler95abd042015-03-24 09:51:28 -0700505 return kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800506}
507
508bool OatFileAssistant::GivenOatFileIsOutOfDate(const OatFile& file) {
509 // Verify the dex checksum.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700510 // Note: GetOatDexFile will return null if the dex checksum doesn't match
Richard Uhler66d874d2015-01-15 09:37:19 -0800511 // what we provide, which verifies the primary dex checksum for us.
512 const uint32_t* dex_checksum_pointer = GetRequiredDexChecksum();
513 const OatFile::OatDexFile* oat_dex_file = file.GetOatDexFile(
Richard Uhler740eec92015-10-15 15:12:23 -0700514 dex_location_.c_str(), dex_checksum_pointer, false);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700515 if (oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800516 return true;
517 }
518
519 // Verify the dex checksums for any secondary multidex files
Andreas Gampe90e34042015-04-27 20:01:52 -0700520 for (size_t i = 1; ; i++) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800521 std::string secondary_dex_location
Richard Uhler740eec92015-10-15 15:12:23 -0700522 = DexFile::GetMultiDexLocation(i, dex_location_.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800523 const OatFile::OatDexFile* secondary_oat_dex_file
524 = file.GetOatDexFile(secondary_dex_location.c_str(), nullptr, false);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700525 if (secondary_oat_dex_file == nullptr) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800526 // There are no more secondary dex files to check.
527 break;
528 }
529
530 std::string error_msg;
531 uint32_t expected_secondary_checksum = 0;
532 if (DexFile::GetChecksum(secondary_dex_location.c_str(),
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700533 &expected_secondary_checksum, &error_msg)) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800534 uint32_t actual_secondary_checksum
535 = secondary_oat_dex_file->GetDexFileLocationChecksum();
536 if (expected_secondary_checksum != actual_secondary_checksum) {
537 VLOG(oat) << "Dex checksum does not match for secondary dex: "
538 << secondary_dex_location
539 << ". Expected: " << expected_secondary_checksum
540 << ", Actual: " << actual_secondary_checksum;
Richard Uhler67ff7d12015-05-14 13:21:13 -0700541 return true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800542 }
543 } else {
544 // If we can't get the checksum for the secondary location, we assume
545 // the dex checksum is up to date for this and all other secondary dex
546 // files.
547 break;
548 }
549 }
550
Andreas Gampe29d38e72016-03-23 15:31:51 +0000551 CompilerFilter::Filter current_compiler_filter = file.GetCompilerFilter();
552 VLOG(oat) << "Compiler filter for " << file.GetLocation() << " is " << current_compiler_filter;
David Brazdilce4b0ba2016-01-28 15:05:49 +0000553
Richard Uhler66d874d2015-01-15 09:37:19 -0800554 // Verify the image checksum
Andreas Gampe29d38e72016-03-23 15:31:51 +0000555 if (CompilerFilter::DependsOnImageChecksum(current_compiler_filter)) {
556 const ImageInfo* image_info = GetImageInfo();
557 if (image_info == nullptr) {
558 VLOG(oat) << "No image for oat image checksum to match against.";
Andreas Gampe29d38e72016-03-23 15:31:51 +0000559
Richard Uhler76f5cb62016-04-04 13:30:16 -0700560 if (HasOriginalDexFiles()) {
561 return true;
562 }
563
564 // If there is no original dex file to fall back to, grudgingly accept
565 // the oat file. This could technically lead to crashes, but there's no
566 // way we could find a better oat file to use for this dex location,
567 // and it's better than being stuck in a boot loop with no way out.
568 // The problem will hopefully resolve itself the next time the runtime
569 // starts up.
570 LOG(WARNING) << "Dex location " << dex_location_ << " does not seem to include dex file. "
571 << "Allow oat file use. This is potentially dangerous.";
572 } else if (file.GetOatHeader().GetImageFileLocationOatChecksum()
573 != GetCombinedImageChecksum()) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000574 VLOG(oat) << "Oat image checksum does not match image checksum.";
575 return true;
576 }
577 } else {
578 VLOG(oat) << "Image checksum test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800579 }
580
Andreas Gampe29d38e72016-03-23 15:31:51 +0000581 // Verify the profile hasn't changed recently.
582 // TODO: Move this check to OatFileCompilerFilterIsOkay? Nothing bad should
583 // happen if we use an oat file compiled with an out-of-date profile.
584 if (CompilerFilter::DependsOnProfile(current_compiler_filter)) {
585 if (profile_changed_) {
586 VLOG(oat) << "The profile has changed recently.";
587 return true;
588 }
589 } else {
590 VLOG(oat) << "Profile check skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800591 }
592
Andreas Gampe29d38e72016-03-23 15:31:51 +0000593 // Everything looks good; the dex file is not out of date.
Richard Uhler66d874d2015-01-15 09:37:19 -0800594 return false;
595}
596
597bool OatFileAssistant::GivenOatFileNeedsRelocation(const OatFile& file) {
Richard Uhler95abd042015-03-24 09:51:28 -0700598 return GivenOatFileStatus(file) == kOatNeedsRelocation;
Richard Uhler66d874d2015-01-15 09:37:19 -0800599}
600
601bool OatFileAssistant::GivenOatFileIsUpToDate(const OatFile& file) {
602 if (GivenOatFileIsOutOfDate(file)) {
603 return false;
604 }
605
Andreas Gampe29d38e72016-03-23 15:31:51 +0000606 CompilerFilter::Filter current_compiler_filter = file.GetCompilerFilter();
Richard Uhlera62d2f02016-03-18 15:05:30 -0700607
Vladimir Markof6d1e0f2016-05-23 15:32:42 +0100608 if (CompilerFilter::IsBytecodeCompilationEnabled(current_compiler_filter)) {
Andreas Gampe29d38e72016-03-23 15:31:51 +0000609 if (!file.IsPic()) {
610 const ImageInfo* image_info = GetImageInfo();
611 if (image_info == nullptr) {
612 VLOG(oat) << "No image to check oat relocation against.";
613 return false;
614 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700615
Andreas Gampe29d38e72016-03-23 15:31:51 +0000616 // Verify the oat_data_begin recorded for the image in the oat file matches
617 // the actual oat_data_begin for boot.oat in the image.
618 const OatHeader& oat_header = file.GetOatHeader();
619 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin();
620 if (oat_data_begin != image_info->oat_data_begin) {
621 VLOG(oat) << file.GetLocation() <<
622 ": Oat file image oat_data_begin (" << oat_data_begin << ")"
623 << " does not match actual image oat_data_begin ("
624 << image_info->oat_data_begin << ")";
625 return false;
626 }
Richard Uhlera62d2f02016-03-18 15:05:30 -0700627
Andreas Gampe29d38e72016-03-23 15:31:51 +0000628 // Verify the oat_patch_delta recorded for the image in the oat file matches
629 // the actual oat_patch_delta for the image.
630 int32_t oat_patch_delta = oat_header.GetImagePatchDelta();
631 if (oat_patch_delta != image_info->patch_delta) {
632 VLOG(oat) << file.GetLocation() <<
633 ": Oat file image patch delta (" << oat_patch_delta << ")"
634 << " does not match actual image patch delta ("
635 << image_info->patch_delta << ")";
636 return false;
637 }
638 } else {
639 // Oat files compiled in PIC mode do not require relocation.
640 VLOG(oat) << "Oat relocation test skipped for PIC oat file";
641 }
642 } else {
643 VLOG(oat) << "Oat relocation test skipped for compiler filter " << current_compiler_filter;
Richard Uhler66d874d2015-01-15 09:37:19 -0800644 }
645 return true;
646}
647
Richard Uhler1e860612016-03-30 12:17:55 -0700648OatFileAssistant::ResultOfAttemptToUpdate
649OatFileAssistant::RelocateOatFile(const std::string* input_file, std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800650 CHECK(error_msg != nullptr);
651
Richard Uhler95abd042015-03-24 09:51:28 -0700652 if (input_file == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700653 *error_msg = "Patching of oat file for dex location " + dex_location_
Richard Uhler95abd042015-03-24 09:51:28 -0700654 + " not attempted because the input file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700655 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800656 }
Richard Uhler95abd042015-03-24 09:51:28 -0700657 const std::string& input_file_name = *input_file;
Richard Uhler66d874d2015-01-15 09:37:19 -0800658
659 if (OatFileName() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700660 *error_msg = "Patching of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800661 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700662 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800663 }
664 const std::string& oat_file_name = *OatFileName();
665
666 const ImageInfo* image_info = GetImageInfo();
667 Runtime* runtime = Runtime::Current();
668 if (image_info == nullptr) {
669 *error_msg = "Patching of oat file " + oat_file_name
670 + " not attempted because no image location was found.";
Richard Uhler1e860612016-03-30 12:17:55 -0700671 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800672 }
673
674 if (!runtime->IsDex2OatEnabled()) {
675 *error_msg = "Patching of oat file " + oat_file_name
676 + " not attempted because dex2oat is disabled";
Richard Uhler1e860612016-03-30 12:17:55 -0700677 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800678 }
679
680 std::vector<std::string> argv;
681 argv.push_back(runtime->GetPatchoatExecutable());
682 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_)));
Richard Uhler95abd042015-03-24 09:51:28 -0700683 argv.push_back("--input-oat-file=" + input_file_name);
Richard Uhler66d874d2015-01-15 09:37:19 -0800684 argv.push_back("--output-oat-file=" + oat_file_name);
685 argv.push_back("--patched-image-location=" + image_info->location);
686
687 std::string command_line(Join(argv, ' '));
688 if (!Exec(argv, error_msg)) {
689 // Manually delete the file. This ensures there is no garbage left over if
690 // the process unexpectedly died.
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100691 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700692 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800693 }
694
695 // Mark that the oat file has changed and we should try to reload.
696 ClearOatFileCache();
Richard Uhler1e860612016-03-30 12:17:55 -0700697 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800698}
699
Richard Uhler1e860612016-03-30 12:17:55 -0700700OatFileAssistant::ResultOfAttemptToUpdate
Richard Uhlerf4b34872016-04-13 11:03:46 -0700701OatFileAssistant::GenerateOatFile(std::string* error_msg) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800702 CHECK(error_msg != nullptr);
703
Richard Uhler8327cf72015-10-13 16:34:59 -0700704 Runtime* runtime = Runtime::Current();
705 if (!runtime->IsDex2OatEnabled()) {
706 *error_msg = "Generation of oat file for dex location " + dex_location_
707 + " not attempted because dex2oat is disabled.";
Richard Uhler1e860612016-03-30 12:17:55 -0700708 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700709 }
710
Richard Uhler66d874d2015-01-15 09:37:19 -0800711 if (OatFileName() == nullptr) {
Richard Uhler740eec92015-10-15 15:12:23 -0700712 *error_msg = "Generation of oat file for dex location " + dex_location_
Richard Uhler66d874d2015-01-15 09:37:19 -0800713 + " not attempted because the oat file name could not be determined.";
Richard Uhler1e860612016-03-30 12:17:55 -0700714 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800715 }
716 const std::string& oat_file_name = *OatFileName();
717
Richard Uhler66d874d2015-01-15 09:37:19 -0800718 // dex2oat ignores missing dex files and doesn't report an error.
719 // Check explicitly here so we can detect the error properly.
720 // TODO: Why does dex2oat behave that way?
Richard Uhler740eec92015-10-15 15:12:23 -0700721 if (!OS::FileExists(dex_location_.c_str())) {
722 *error_msg = "Dex location " + dex_location_ + " does not exists.";
Richard Uhler1e860612016-03-30 12:17:55 -0700723 return kUpdateNotAttempted;
Richard Uhler66d874d2015-01-15 09:37:19 -0800724 }
725
Richard Uhler8327cf72015-10-13 16:34:59 -0700726 std::unique_ptr<File> oat_file;
727 oat_file.reset(OS::CreateEmptyFile(oat_file_name.c_str()));
728 if (oat_file.get() == nullptr) {
729 *error_msg = "Generation of oat file " + oat_file_name
730 + " not attempted because the oat file could not be created.";
Richard Uhler1e860612016-03-30 12:17:55 -0700731 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700732 }
733
734 if (fchmod(oat_file->Fd(), 0644) != 0) {
735 *error_msg = "Generation of oat file " + oat_file_name
736 + " not attempted because the oat file could not be made world readable.";
737 oat_file->Erase();
Richard Uhler1e860612016-03-30 12:17:55 -0700738 return kUpdateNotAttempted;
Richard Uhler8327cf72015-10-13 16:34:59 -0700739 }
740
741 std::vector<std::string> args;
742 args.push_back("--dex-file=" + dex_location_);
743 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
744 args.push_back("--oat-location=" + oat_file_name);
745
Richard Uhler66d874d2015-01-15 09:37:19 -0800746 if (!Dex2Oat(args, error_msg)) {
747 // Manually delete the file. This ensures there is no garbage left over if
748 // the process unexpectedly died.
Richard Uhler8327cf72015-10-13 16:34:59 -0700749 oat_file->Erase();
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100750 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700751 return kUpdateFailed;
Richard Uhler8327cf72015-10-13 16:34:59 -0700752 }
753
754 if (oat_file->FlushCloseOrErase() != 0) {
755 *error_msg = "Unable to close oat file " + oat_file_name;
Vladimir Marko66fdcbd2016-04-05 14:19:08 +0100756 unlink(oat_file_name.c_str());
Richard Uhler1e860612016-03-30 12:17:55 -0700757 return kUpdateFailed;
Richard Uhler66d874d2015-01-15 09:37:19 -0800758 }
759
760 // Mark that the oat file has changed and we should try to reload.
761 ClearOatFileCache();
Richard Uhler1e860612016-03-30 12:17:55 -0700762 return kUpdateSucceeded;
Richard Uhler66d874d2015-01-15 09:37:19 -0800763}
764
765bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
766 std::string* error_msg) {
767 Runtime* runtime = Runtime::Current();
768 std::string image_location = ImageLocation();
769 if (image_location.empty()) {
770 *error_msg = "No image location found for Dex2Oat.";
771 return false;
772 }
773
774 std::vector<std::string> argv;
775 argv.push_back(runtime->GetCompilerExecutable());
776 argv.push_back("--runtime-arg");
777 argv.push_back("-classpath");
778 argv.push_back("--runtime-arg");
Jeff Haof0192c82016-03-28 20:39:50 -0700779 std::string class_path = runtime->GetClassPathString();
780 if (class_path == "") {
781 class_path = OatFile::kSpecialSharedLibrary;
782 }
783 argv.push_back(class_path);
Nicolas Geoffray7a4d0152015-07-10 17:29:39 +0100784 if (runtime->IsDebuggable()) {
Sebastien Hertz0de11332015-05-13 12:14:05 +0200785 argv.push_back("--debuggable");
786 }
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700787 runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv);
Richard Uhler66d874d2015-01-15 09:37:19 -0800788
789 if (!runtime->IsVerificationEnabled()) {
790 argv.push_back("--compiler-filter=verify-none");
791 }
792
793 if (runtime->MustRelocateIfPossible()) {
794 argv.push_back("--runtime-arg");
795 argv.push_back("-Xrelocate");
796 } else {
797 argv.push_back("--runtime-arg");
798 argv.push_back("-Xnorelocate");
799 }
800
801 if (!kIsTargetBuild) {
802 argv.push_back("--host");
803 }
804
805 argv.push_back("--boot-image=" + image_location);
806
807 std::vector<std::string> compiler_options = runtime->GetCompilerOptions();
808 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
809
810 argv.insert(argv.end(), args.begin(), args.end());
811
812 std::string command_line(Join(argv, ' '));
813 return Exec(argv, error_msg);
814}
815
816bool OatFileAssistant::DexFilenameToOdexFilename(const std::string& location,
817 InstructionSet isa, std::string* odex_filename, std::string* error_msg) {
818 CHECK(odex_filename != nullptr);
819 CHECK(error_msg != nullptr);
820
821 // The odex file name is formed by replacing the dex_location extension with
Richard Uhler63434112015-03-16 14:32:16 -0700822 // .odex and inserting an oat/<isa> directory. For example:
Richard Uhler66d874d2015-01-15 09:37:19 -0800823 // location = /foo/bar/baz.jar
Richard Uhler63434112015-03-16 14:32:16 -0700824 // odex_location = /foo/bar/oat/<isa>/baz.odex
Richard Uhler66d874d2015-01-15 09:37:19 -0800825
Richard Uhler63434112015-03-16 14:32:16 -0700826 // Find the directory portion of the dex location and add the oat/<isa>
827 // directory.
Richard Uhler66d874d2015-01-15 09:37:19 -0800828 size_t pos = location.rfind('/');
829 if (pos == std::string::npos) {
830 *error_msg = "Dex location " + location + " has no directory.";
831 return false;
832 }
833 std::string dir = location.substr(0, pos+1);
Richard Uhler63434112015-03-16 14:32:16 -0700834 dir += "oat/" + std::string(GetInstructionSetString(isa));
Richard Uhler66d874d2015-01-15 09:37:19 -0800835
836 // Find the file portion of the dex location.
837 std::string file;
838 if (pos == std::string::npos) {
839 file = location;
840 } else {
841 file = location.substr(pos+1);
842 }
843
844 // Get the base part of the file without the extension.
845 pos = file.rfind('.');
846 if (pos == std::string::npos) {
847 *error_msg = "Dex location " + location + " has no extension.";
848 return false;
849 }
850 std::string base = file.substr(0, pos);
851
852 *odex_filename = dir + "/" + base + ".odex";
853 return true;
854}
855
856std::string OatFileAssistant::DalvikCacheDirectory() {
857 // Note: We don't cache this, because it will only be called once by
Andreas Gampe29d38e72016-03-23 15:31:51 +0000858 // OatFileName.
Richard Uhler66d874d2015-01-15 09:37:19 -0800859
860 // TODO: The work done in GetDalvikCache is overkill for what we need.
861 // Ideally a new API for getting the DalvikCacheDirectory the way we want
862 // (without existence testing, creation, or death) is provided with the rest
863 // of the GetDalvikCache family of functions. Until such an API is in place,
864 // we use GetDalvikCache to avoid duplicating the logic for determining the
865 // dalvik cache directory.
866 std::string result;
867 bool have_android_data;
868 bool dalvik_cache_exists;
869 bool is_global_cache;
870 GetDalvikCache("", false, &result, &have_android_data, &dalvik_cache_exists, &is_global_cache);
871 return result;
872}
873
Richard Uhler66d874d2015-01-15 09:37:19 -0800874std::string OatFileAssistant::ImageLocation() {
875 Runtime* runtime = Runtime::Current();
Andreas Gampe8994a042015-12-30 19:03:17 +0000876 const std::vector<gc::space::ImageSpace*>& image_spaces =
877 runtime->GetHeap()->GetBootImageSpaces();
878 if (image_spaces.empty()) {
879 return "";
880 }
881 return image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -0800882}
883
884const uint32_t* OatFileAssistant::GetRequiredDexChecksum() {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700885 if (!required_dex_checksum_attempted_) {
886 required_dex_checksum_attempted_ = true;
887 required_dex_checksum_found_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800888 std::string error_msg;
Richard Uhler740eec92015-10-15 15:12:23 -0700889 if (DexFile::GetChecksum(dex_location_.c_str(), &cached_required_dex_checksum_, &error_msg)) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700890 required_dex_checksum_found_ = true;
891 has_original_dex_files_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800892 } else {
893 // This can happen if the original dex file has been stripped from the
894 // apk.
895 VLOG(oat) << "OatFileAssistant: " << error_msg;
Richard Uhler9b994ea2015-06-24 08:44:19 -0700896 has_original_dex_files_ = false;
Richard Uhler66d874d2015-01-15 09:37:19 -0800897
898 // Get the checksum from the odex if we can.
899 const OatFile* odex_file = GetOdexFile();
900 if (odex_file != nullptr) {
901 const OatFile::OatDexFile* odex_dex_file = odex_file->GetOatDexFile(
Richard Uhler740eec92015-10-15 15:12:23 -0700902 dex_location_.c_str(), nullptr, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800903 if (odex_dex_file != nullptr) {
Richard Uhler9b994ea2015-06-24 08:44:19 -0700904 cached_required_dex_checksum_ = odex_dex_file->GetDexFileLocationChecksum();
905 required_dex_checksum_found_ = true;
Richard Uhler66d874d2015-01-15 09:37:19 -0800906 }
907 }
908 }
909 }
Richard Uhler9b994ea2015-06-24 08:44:19 -0700910 return required_dex_checksum_found_ ? &cached_required_dex_checksum_ : nullptr;
Richard Uhler66d874d2015-01-15 09:37:19 -0800911}
912
913const OatFile* OatFileAssistant::GetOdexFile() {
914 CHECK(!oat_file_released_) << "OdexFile called after oat file released.";
915 if (!odex_file_load_attempted_) {
916 odex_file_load_attempted_ = true;
917 if (OdexFileName() != nullptr) {
918 const std::string& odex_file_name = *OdexFileName();
919 std::string error_msg;
920 cached_odex_file_.reset(OatFile::Open(odex_file_name.c_str(),
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800921 odex_file_name.c_str(),
922 nullptr,
923 nullptr,
924 load_executable_,
925 /*low_4gb*/false,
926 dex_location_.c_str(),
927 &error_msg));
Richard Uhler66d874d2015-01-15 09:37:19 -0800928 if (cached_odex_file_.get() == nullptr) {
929 VLOG(oat) << "OatFileAssistant test for existing pre-compiled oat file "
930 << odex_file_name << ": " << error_msg;
931 }
932 }
933 }
934 return cached_odex_file_.get();
935}
936
Richard Uhler5f946da2015-07-17 12:28:32 -0700937bool OatFileAssistant::OdexFileIsExecutable() {
938 const OatFile* odex_file = GetOdexFile();
939 return (odex_file != nullptr && odex_file->IsExecutable());
940}
941
Richard Uhlerd1537b52016-03-29 13:27:41 -0700942bool OatFileAssistant::OdexFileHasPatchInfo() {
943 const OatFile* odex_file = GetOdexFile();
944 return (odex_file != nullptr && odex_file->HasPatchInfo());
945}
946
Richard Uhler66d874d2015-01-15 09:37:19 -0800947void OatFileAssistant::ClearOdexFileCache() {
948 odex_file_load_attempted_ = false;
949 cached_odex_file_.reset();
950 odex_file_is_out_of_date_attempted_ = false;
951 odex_file_is_up_to_date_attempted_ = false;
952}
953
954const OatFile* OatFileAssistant::GetOatFile() {
955 CHECK(!oat_file_released_) << "OatFile called after oat file released.";
956 if (!oat_file_load_attempted_) {
957 oat_file_load_attempted_ = true;
958 if (OatFileName() != nullptr) {
959 const std::string& oat_file_name = *OatFileName();
960 std::string error_msg;
961 cached_oat_file_.reset(OatFile::Open(oat_file_name.c_str(),
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800962 oat_file_name.c_str(),
963 nullptr,
964 nullptr,
965 load_executable_,
966 /*low_4gb*/false,
967 dex_location_.c_str(),
968 &error_msg));
Richard Uhler66d874d2015-01-15 09:37:19 -0800969 if (cached_oat_file_.get() == nullptr) {
970 VLOG(oat) << "OatFileAssistant test for existing oat file "
971 << oat_file_name << ": " << error_msg;
972 }
973 }
974 }
975 return cached_oat_file_.get();
976}
977
Richard Uhler5f946da2015-07-17 12:28:32 -0700978bool OatFileAssistant::OatFileIsExecutable() {
979 const OatFile* oat_file = GetOatFile();
980 return (oat_file != nullptr && oat_file->IsExecutable());
981}
982
Richard Uhlerd1537b52016-03-29 13:27:41 -0700983bool OatFileAssistant::OatFileHasPatchInfo() {
984 const OatFile* oat_file = GetOatFile();
985 return (oat_file != nullptr && oat_file->HasPatchInfo());
986}
987
Richard Uhler66d874d2015-01-15 09:37:19 -0800988void OatFileAssistant::ClearOatFileCache() {
989 oat_file_load_attempted_ = false;
990 cached_oat_file_.reset();
991 oat_file_is_out_of_date_attempted_ = false;
992 oat_file_is_up_to_date_attempted_ = false;
993}
994
995const OatFileAssistant::ImageInfo* OatFileAssistant::GetImageInfo() {
996 if (!image_info_load_attempted_) {
997 image_info_load_attempted_ = true;
998
999 Runtime* runtime = Runtime::Current();
Jeff Haodcdc85b2015-12-04 14:06:18 -08001000 std::vector<gc::space::ImageSpace*> image_spaces = runtime->GetHeap()->GetBootImageSpaces();
1001 if (!image_spaces.empty()) {
Jeff Haodcdc85b2015-12-04 14:06:18 -08001002 cached_image_info_.location = image_spaces[0]->GetImageLocation();
Richard Uhler66d874d2015-01-15 09:37:19 -08001003
1004 if (isa_ == kRuntimeISA) {
Jeff Haodcdc85b2015-12-04 14:06:18 -08001005 const ImageHeader& image_header = image_spaces[0]->GetImageHeader();
Richard Uhler66d874d2015-01-15 09:37:19 -08001006 cached_image_info_.oat_checksum = image_header.GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -08001007 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
1008 image_header.GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -08001009 cached_image_info_.patch_delta = image_header.GetPatchDelta();
1010 } else {
1011 std::unique_ptr<ImageHeader> image_header(
Jeff Haob11ffb72016-04-07 15:40:54 -07001012 gc::space::ImageSpace::ReadImageHeaderOrDie(cached_image_info_.location.c_str(), isa_));
Richard Uhler66d874d2015-01-15 09:37:19 -08001013 cached_image_info_.oat_checksum = image_header->GetOatChecksum();
Mathieu Chartier073b16c2015-11-10 14:13:23 -08001014 cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(
1015 image_header->GetOatDataBegin());
Richard Uhler66d874d2015-01-15 09:37:19 -08001016 cached_image_info_.patch_delta = image_header->GetPatchDelta();
1017 }
1018 }
Jeff Haodcdc85b2015-12-04 14:06:18 -08001019 image_info_load_succeeded_ = (!image_spaces.empty());
Jeff Haob11ffb72016-04-07 15:40:54 -07001020
Jeff Haofd336c32016-04-07 19:46:31 -07001021 combined_image_checksum_ = CalculateCombinedImageChecksum(isa_);
Richard Uhler66d874d2015-01-15 09:37:19 -08001022 }
1023 return image_info_load_succeeded_ ? &cached_image_info_ : nullptr;
1024}
1025
Jeff Haob11ffb72016-04-07 15:40:54 -07001026// TODO: Use something better than xor.
Jeff Haofd336c32016-04-07 19:46:31 -07001027uint32_t OatFileAssistant::CalculateCombinedImageChecksum(InstructionSet isa) {
Jeff Haob11ffb72016-04-07 15:40:54 -07001028 uint32_t checksum = 0;
1029 std::vector<gc::space::ImageSpace*> image_spaces =
1030 Runtime::Current()->GetHeap()->GetBootImageSpaces();
Jeff Haofd336c32016-04-07 19:46:31 -07001031 if (isa == kRuntimeISA) {
1032 for (gc::space::ImageSpace* image_space : image_spaces) {
1033 checksum ^= image_space->GetImageHeader().GetOatChecksum();
1034 }
1035 } else {
1036 for (gc::space::ImageSpace* image_space : image_spaces) {
1037 std::string location = image_space->GetImageLocation();
1038 std::unique_ptr<ImageHeader> image_header(
1039 gc::space::ImageSpace::ReadImageHeaderOrDie(location.c_str(), isa));
1040 checksum ^= image_header->GetOatChecksum();
1041 }
Jeff Haob11ffb72016-04-07 15:40:54 -07001042 }
1043 return checksum;
1044}
1045
1046uint32_t OatFileAssistant::GetCombinedImageChecksum() {
1047 if (!image_info_load_attempted_) {
1048 GetImageInfo();
1049 }
1050 return combined_image_checksum_;
1051}
1052
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001053gc::space::ImageSpace* OatFileAssistant::OpenImageSpace(const OatFile* oat_file) {
1054 DCHECK(oat_file != nullptr);
1055 std::string art_file = ArtFileName(oat_file);
1056 if (art_file.empty()) {
1057 return nullptr;
1058 }
1059 std::string error_msg;
1060 ScopedObjectAccess soa(Thread::Current());
1061 gc::space::ImageSpace* ret = gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(),
1062 oat_file,
1063 &error_msg);
Mathieu Chartiere778fc72016-01-25 20:11:28 -08001064 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001065 LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg;
1066 }
1067 return ret;
1068}
1069
Richard Uhler66d874d2015-01-15 09:37:19 -08001070} // namespace art
1071