Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 1 | /* |
| 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 Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 19 | #include <sstream> |
| 20 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 21 | #include <sys/stat.h> |
David Brazdil | 35a3f6a | 2019-03-04 15:59:06 +0000 | [diff] [blame] | 22 | #include "zlib.h" |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 23 | |
Andreas Gampe | c15a2f4 | 2017-04-21 12:09:39 -0700 | [diff] [blame] | 24 | #include "android-base/stringprintf.h" |
Andreas Gampe | 9186ced | 2016-12-12 14:28:21 -0800 | [diff] [blame] | 25 | #include "android-base/strings.h" |
| 26 | |
David Sehr | 891a50e | 2017-10-27 17:01:07 -0700 | [diff] [blame] | 27 | #include "base/file_utils.h" |
Andreas Gampe | 5794381 | 2017-12-06 21:39:13 -0800 | [diff] [blame] | 28 | #include "base/logging.h" // For VLOG. |
Andreas Gampe | bd3e1ce | 2018-03-15 17:45:03 -0700 | [diff] [blame] | 29 | #include "base/macros.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 30 | #include "base/os.h" |
Andreas Gampe | 5678db5 | 2017-06-08 14:11:18 -0700 | [diff] [blame] | 31 | #include "base/stl_util.h" |
Vladimir Marko | bcd99be | 2019-03-22 16:21:31 +0000 | [diff] [blame] | 32 | #include "base/string_view_cpp20.h" |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 33 | #include "base/systrace.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 34 | #include "base/utils.h" |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 35 | #include "class_linker.h" |
David Brazdil | 35a3f6a | 2019-03-04 15:59:06 +0000 | [diff] [blame] | 36 | #include "class_loader_context.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 37 | #include "compiler_filter.h" |
David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 38 | #include "dex/art_dex_file_loader.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 39 | #include "dex/dex_file_loader.h" |
David Sehr | 97c381e | 2017-02-01 15:09:58 -0800 | [diff] [blame] | 40 | #include "exec_utils.h" |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 41 | #include "gc/heap.h" |
| 42 | #include "gc/space/image_space.h" |
| 43 | #include "image.h" |
| 44 | #include "oat.h" |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 45 | #include "runtime.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 46 | #include "scoped_thread_state_change-inl.h" |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 47 | #include "vdex_file.h" |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 48 | |
| 49 | namespace art { |
| 50 | |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 51 | using android::base::StringPrintf; |
| 52 | |
David Brazdil | 35a3f6a | 2019-03-04 15:59:06 +0000 | [diff] [blame] | 53 | static constexpr const char* kAnonymousDexPrefix = "Anonymous-DexFile@"; |
| 54 | static constexpr const char* kVdexExtension = ".vdex"; |
| 55 | |
Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 56 | std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status) { |
| 57 | switch (status) { |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 58 | case OatFileAssistant::kOatCannotOpen: |
| 59 | stream << "kOatCannotOpen"; |
| 60 | break; |
| 61 | case OatFileAssistant::kOatDexOutOfDate: |
| 62 | stream << "kOatDexOutOfDate"; |
| 63 | break; |
| 64 | case OatFileAssistant::kOatBootImageOutOfDate: |
| 65 | stream << "kOatBootImageOutOfDate"; |
| 66 | break; |
Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 67 | case OatFileAssistant::kOatUpToDate: |
| 68 | stream << "kOatUpToDate"; |
| 69 | break; |
Narayan Kamath | 8943c1d | 2016-05-02 13:14:48 +0100 | [diff] [blame] | 70 | default: |
| 71 | UNREACHABLE(); |
| 72 | } |
| 73 | |
| 74 | return stream; |
| 75 | } |
| 76 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 77 | OatFileAssistant::OatFileAssistant(const char* dex_location, |
| 78 | const InstructionSet isa, |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 79 | bool load_executable, |
| 80 | bool only_load_system_executable) |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 81 | : OatFileAssistant(dex_location, |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 82 | isa, |
| 83 | load_executable, |
| 84 | only_load_system_executable, |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 85 | /*vdex_fd=*/ -1, |
| 86 | /*oat_fd=*/ -1, |
| 87 | /*zip_fd=*/ -1) {} |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 88 | |
| 89 | |
| 90 | OatFileAssistant::OatFileAssistant(const char* dex_location, |
| 91 | const InstructionSet isa, |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 92 | bool load_executable, |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 93 | bool only_load_system_executable, |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 94 | int vdex_fd, |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 95 | int oat_fd, |
| 96 | int zip_fd) |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 97 | : isa_(isa), |
| 98 | load_executable_(load_executable), |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 99 | only_load_system_executable_(only_load_system_executable), |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 100 | odex_(this, /*is_oat_location=*/ false), |
| 101 | oat_(this, /*is_oat_location=*/ true), |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 102 | zip_fd_(zip_fd) { |
Richard Uhler | 740eec9 | 2015-10-15 15:12:23 -0700 | [diff] [blame] | 103 | CHECK(dex_location != nullptr) << "OatFileAssistant: null dex location"; |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 104 | |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 105 | if (zip_fd < 0) { |
| 106 | CHECK_LE(oat_fd, 0) << "zip_fd must be provided with valid oat_fd. zip_fd=" << zip_fd |
| 107 | << " oat_fd=" << oat_fd; |
| 108 | CHECK_LE(vdex_fd, 0) << "zip_fd must be provided with valid vdex_fd. zip_fd=" << zip_fd |
| 109 | << " vdex_fd=" << vdex_fd;; |
| 110 | } |
| 111 | |
Calin Juravle | 099f8d6 | 2017-09-05 19:04:04 -0700 | [diff] [blame] | 112 | dex_location_.assign(dex_location); |
Richard Uhler | 740eec9 | 2015-10-15 15:12:23 -0700 | [diff] [blame] | 113 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 114 | if (load_executable_ && isa != kRuntimeISA) { |
| 115 | LOG(WARNING) << "OatFileAssistant: Load executable specified, " |
| 116 | << "but isa is not kRuntimeISA. Will not attempt to load executable."; |
| 117 | load_executable_ = false; |
| 118 | } |
| 119 | |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 120 | // Get the odex filename. |
Richard Uhler | d684f52 | 2016-04-19 13:24:41 -0700 | [diff] [blame] | 121 | std::string error_msg; |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 122 | std::string odex_file_name; |
| 123 | if (DexLocationToOdexFilename(dex_location_, isa_, &odex_file_name, &error_msg)) { |
Nicolas Geoffray | 3002509 | 2018-04-19 14:43:29 +0100 | [diff] [blame] | 124 | odex_.Reset(odex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 125 | } else { |
Richard Uhler | d684f52 | 2016-04-19 13:24:41 -0700 | [diff] [blame] | 126 | LOG(WARNING) << "Failed to determine odex file name: " << error_msg; |
| 127 | } |
| 128 | |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 129 | if (!UseFdToReadFiles()) { |
| 130 | // Get the oat filename. |
| 131 | std::string oat_file_name; |
| 132 | if (DexLocationToOatFilename(dex_location_, isa_, &oat_file_name, &error_msg)) { |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 133 | oat_.Reset(oat_file_name, /*use_fd=*/ false); |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 134 | } else { |
| 135 | LOG(WARNING) << "Failed to determine oat file name for dex location " |
| 136 | << dex_location_ << ": " << error_msg; |
| 137 | } |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | // Check if the dex directory is writable. |
| 141 | // This will be needed in most uses of OatFileAssistant and so it's OK to |
| 142 | // compute it eagerly. (the only use which will not make use of it is |
| 143 | // OatFileAssistant::GetStatusDump()) |
| 144 | size_t pos = dex_location_.rfind('/'); |
| 145 | if (pos == std::string::npos) { |
| 146 | LOG(WARNING) << "Failed to determine dex file parent directory: " << dex_location_; |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 147 | } else if (!UseFdToReadFiles()) { |
| 148 | // We cannot test for parent access when using file descriptors. That's ok |
| 149 | // because in this case we will always pick the odex file anyway. |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 150 | std::string parent = dex_location_.substr(0, pos); |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 151 | if (access(parent.c_str(), W_OK) == 0) { |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 152 | dex_parent_writable_ = true; |
| 153 | } else { |
| 154 | VLOG(oat) << "Dex parent of " << dex_location_ << " is not writable: " << strerror(errno); |
Richard Uhler | d684f52 | 2016-04-19 13:24:41 -0700 | [diff] [blame] | 155 | } |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 156 | } |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | OatFileAssistant::~OatFileAssistant() { |
| 160 | // Clean up the lock file. |
Narayan Kamath | a3d27eb | 2017-05-11 13:50:59 +0100 | [diff] [blame] | 161 | if (flock_.get() != nullptr) { |
| 162 | unlink(flock_->GetPath().c_str()); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 166 | bool OatFileAssistant::UseFdToReadFiles() { |
| 167 | return zip_fd_ >= 0; |
| 168 | } |
| 169 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 170 | bool OatFileAssistant::IsInBootClassPath() { |
| 171 | // Note: We check the current boot class path, regardless of the ISA |
| 172 | // specified by the user. This is okay, because the boot class path should |
| 173 | // be the same for all ISAs. |
| 174 | // TODO: Can we verify the boot class path is the same for all ISAs? |
| 175 | Runtime* runtime = Runtime::Current(); |
| 176 | ClassLinker* class_linker = runtime->GetClassLinker(); |
| 177 | const auto& boot_class_path = class_linker->GetBootClassPath(); |
| 178 | for (size_t i = 0; i < boot_class_path.size(); i++) { |
Richard Uhler | 740eec9 | 2015-10-15 15:12:23 -0700 | [diff] [blame] | 179 | if (boot_class_path[i]->GetLocation() == dex_location_) { |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 180 | VLOG(oat) << "Dex location " << dex_location_ << " is in boot class path"; |
| 181 | return true; |
| 182 | } |
| 183 | } |
| 184 | return false; |
| 185 | } |
| 186 | |
Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 187 | int OatFileAssistant::GetDexOptNeeded(CompilerFilter::Filter target, |
Stefania Halac | e9818dd | 2020-02-14 17:58:26 +0000 | [diff] [blame] | 188 | ClassLoaderContext* class_loader_context, |
Calin Juravle | 0a5cad3 | 2020-02-14 20:29:26 +0000 | [diff] [blame] | 189 | const std::vector<int>& context_fds, |
| 190 | bool profile_changed, |
| 191 | bool downgrade) { |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 192 | OatFileInfo& info = GetBestInfo(); |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 193 | DexOptNeeded dexopt_needed = info.GetDexOptNeeded(target, |
Stefania Halac | e9818dd | 2020-02-14 17:58:26 +0000 | [diff] [blame] | 194 | class_loader_context, |
Calin Juravle | 0a5cad3 | 2020-02-14 20:29:26 +0000 | [diff] [blame] | 195 | context_fds, |
| 196 | profile_changed, |
| 197 | downgrade); |
Richard Uhler | 7225a8d | 2016-11-22 10:12:03 +0000 | [diff] [blame] | 198 | if (info.IsOatLocation() || dexopt_needed == kDex2OatFromScratch) { |
| 199 | return dexopt_needed; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 200 | } |
Richard Uhler | 7225a8d | 2016-11-22 10:12:03 +0000 | [diff] [blame] | 201 | return -dexopt_needed; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 202 | } |
| 203 | |
Richard Uhler | 01be681 | 2016-05-17 10:34:52 -0700 | [diff] [blame] | 204 | bool OatFileAssistant::IsUpToDate() { |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 205 | return GetBestInfo().Status() == kOatUpToDate; |
Richard Uhler | 01be681 | 2016-05-17 10:34:52 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 208 | std::unique_ptr<OatFile> OatFileAssistant::GetBestOatFile() { |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 209 | return GetBestInfo().ReleaseFileForUse(); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 210 | } |
| 211 | |
Richard Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 212 | std::string OatFileAssistant::GetStatusDump() { |
| 213 | std::ostringstream status; |
| 214 | bool oat_file_exists = false; |
| 215 | bool odex_file_exists = false; |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 216 | if (oat_.Status() != kOatCannotOpen) { |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 217 | // If we can open the file, Filename should not return null. |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 218 | CHECK(oat_.Filename() != nullptr); |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 219 | |
Richard Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 220 | oat_file_exists = true; |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 221 | status << *oat_.Filename() << "[status=" << oat_.Status() << ", "; |
| 222 | const OatFile* file = oat_.GetFile(); |
| 223 | if (file == nullptr) { |
| 224 | // If the file is null even though the status is not kOatCannotOpen, it |
| 225 | // means we must have a vdex file with no corresponding oat file. In |
| 226 | // this case we cannot determine the compilation filter. Indicate that |
| 227 | // we have only the vdex file instead. |
| 228 | status << "vdex-only"; |
| 229 | } else { |
| 230 | status << "compilation_filter=" << CompilerFilter::NameOfFilter(file->GetCompilerFilter()); |
| 231 | } |
Richard Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 234 | if (odex_.Status() != kOatCannotOpen) { |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 235 | // If we can open the file, Filename should not return null. |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 236 | CHECK(odex_.Filename() != nullptr); |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 237 | |
Richard Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 238 | odex_file_exists = true; |
| 239 | if (oat_file_exists) { |
| 240 | status << "] "; |
| 241 | } |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 242 | status << *odex_.Filename() << "[status=" << odex_.Status() << ", "; |
| 243 | const OatFile* file = odex_.GetFile(); |
| 244 | if (file == nullptr) { |
| 245 | status << "vdex-only"; |
| 246 | } else { |
| 247 | status << "compilation_filter=" << CompilerFilter::NameOfFilter(file->GetCompilerFilter()); |
| 248 | } |
Richard Uhler | 46cc64f | 2016-11-14 14:53:55 +0000 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | if (!oat_file_exists && !odex_file_exists) { |
| 252 | status << "invalid["; |
| 253 | } |
| 254 | |
| 255 | status << "]"; |
| 256 | return status.str(); |
| 257 | } |
| 258 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 259 | std::vector<std::unique_ptr<const DexFile>> OatFileAssistant::LoadDexFiles( |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 260 | const OatFile &oat_file, const char *dex_location) { |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 261 | std::vector<std::unique_ptr<const DexFile>> dex_files; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 262 | if (LoadDexFiles(oat_file, dex_location, &dex_files)) { |
| 263 | return dex_files; |
| 264 | } else { |
| 265 | return std::vector<std::unique_ptr<const DexFile>>(); |
| 266 | } |
| 267 | } |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 268 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 269 | bool OatFileAssistant::LoadDexFiles( |
| 270 | const OatFile &oat_file, |
| 271 | const std::string& dex_location, |
| 272 | std::vector<std::unique_ptr<const DexFile>>* out_dex_files) { |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 273 | // Load the main dex file. |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 274 | std::string error_msg; |
Andreas Gampe | b40d361 | 2018-06-26 15:49:42 -0700 | [diff] [blame] | 275 | const OatDexFile* oat_dex_file = oat_file.GetOatDexFile( |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 276 | dex_location.c_str(), nullptr, &error_msg); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 277 | if (oat_dex_file == nullptr) { |
Richard Uhler | 9a37efc | 2016-08-05 16:32:55 -0700 | [diff] [blame] | 278 | LOG(WARNING) << error_msg; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 279 | return false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 280 | } |
| 281 | |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 282 | std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 283 | if (dex_file.get() == nullptr) { |
| 284 | LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 285 | return false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 286 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 287 | out_dex_files->push_back(std::move(dex_file)); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 288 | |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 289 | // Load the rest of the multidex entries |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 290 | for (size_t i = 1;; i++) { |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 291 | std::string multidex_dex_location = DexFileLoader::GetMultiDexLocation(i, dex_location.c_str()); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 292 | oat_dex_file = oat_file.GetOatDexFile(multidex_dex_location.c_str(), nullptr); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 293 | if (oat_dex_file == nullptr) { |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 294 | // There are no more multidex entries to load. |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 295 | break; |
| 296 | } |
| 297 | |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 298 | dex_file = oat_dex_file->OpenDexFile(&error_msg); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 299 | if (dex_file.get() == nullptr) { |
| 300 | LOG(WARNING) << "Failed to open dex file from oat dex file: " << error_msg; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 301 | return false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 302 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 303 | out_dex_files->push_back(std::move(dex_file)); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 304 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 305 | return true; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 306 | } |
| 307 | |
Richard Uhler | 9b994ea | 2015-06-24 08:44:19 -0700 | [diff] [blame] | 308 | bool OatFileAssistant::HasOriginalDexFiles() { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 309 | ScopedTrace trace("HasOriginalDexFiles"); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 310 | // Ensure GetRequiredDexChecksums has been run so that |
Richard Uhler | 9b994ea | 2015-06-24 08:44:19 -0700 | [diff] [blame] | 311 | // has_original_dex_files_ is initialized. We don't care about the result of |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 312 | // GetRequiredDexChecksums. |
| 313 | GetRequiredDexChecksums(); |
Richard Uhler | 9b994ea | 2015-06-24 08:44:19 -0700 | [diff] [blame] | 314 | return has_original_dex_files_; |
| 315 | } |
| 316 | |
Richard Uhler | 95abd04 | 2015-03-24 09:51:28 -0700 | [diff] [blame] | 317 | OatFileAssistant::OatStatus OatFileAssistant::OdexFileStatus() { |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 318 | return odex_.Status(); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 319 | } |
| 320 | |
Richard Uhler | 95abd04 | 2015-03-24 09:51:28 -0700 | [diff] [blame] | 321 | OatFileAssistant::OatStatus OatFileAssistant::OatFileStatus() { |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 322 | return oat_.Status(); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 323 | } |
| 324 | |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 325 | bool OatFileAssistant::DexChecksumUpToDate(const VdexFile& file, std::string* error_msg) { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 326 | ScopedTrace trace("DexChecksumUpToDate(vdex)"); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 327 | const std::vector<uint32_t>* required_dex_checksums = GetRequiredDexChecksums(); |
| 328 | if (required_dex_checksums == nullptr) { |
| 329 | LOG(WARNING) << "Required dex checksums not found. Assuming dex checksums are up to date."; |
| 330 | return true; |
| 331 | } |
| 332 | |
Nicolas Geoffray | 3a29355 | 2018-03-02 10:52:16 +0000 | [diff] [blame] | 333 | uint32_t number_of_dex_files = file.GetVerifierDepsHeader().GetNumberOfDexFiles(); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 334 | if (required_dex_checksums->size() != number_of_dex_files) { |
| 335 | *error_msg = StringPrintf("expected %zu dex files but found %u", |
| 336 | required_dex_checksums->size(), |
| 337 | number_of_dex_files); |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 338 | return false; |
Andreas Gampe | f8cd890 | 2017-01-18 16:05:01 -0800 | [diff] [blame] | 339 | } |
| 340 | |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 341 | for (uint32_t i = 0; i < number_of_dex_files; i++) { |
| 342 | uint32_t expected_checksum = (*required_dex_checksums)[i]; |
| 343 | uint32_t actual_checksum = file.GetLocationChecksum(i); |
| 344 | if (expected_checksum != actual_checksum) { |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 345 | std::string dex = DexFileLoader::GetMultiDexLocation(i, dex_location_.c_str()); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 346 | *error_msg = StringPrintf("Dex checksum does not match for dex: %s." |
| 347 | "Expected: %u, actual: %u", |
| 348 | dex.c_str(), |
| 349 | expected_checksum, |
| 350 | actual_checksum); |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 351 | return false; |
| 352 | } |
| 353 | } |
| 354 | |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 355 | return true; |
| 356 | } |
| 357 | |
| 358 | bool OatFileAssistant::DexChecksumUpToDate(const OatFile& file, std::string* error_msg) { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 359 | ScopedTrace trace("DexChecksumUpToDate(oat)"); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 360 | const std::vector<uint32_t>* required_dex_checksums = GetRequiredDexChecksums(); |
| 361 | if (required_dex_checksums == nullptr) { |
| 362 | LOG(WARNING) << "Required dex checksums not found. Assuming dex checksums are up to date."; |
| 363 | return true; |
| 364 | } |
| 365 | |
| 366 | uint32_t number_of_dex_files = file.GetOatHeader().GetDexFileCount(); |
| 367 | if (required_dex_checksums->size() != number_of_dex_files) { |
| 368 | *error_msg = StringPrintf("expected %zu dex files but found %u", |
| 369 | required_dex_checksums->size(), |
| 370 | number_of_dex_files); |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 371 | return false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 372 | } |
| 373 | |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 374 | for (uint32_t i = 0; i < number_of_dex_files; i++) { |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 375 | std::string dex = DexFileLoader::GetMultiDexLocation(i, dex_location_.c_str()); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 376 | uint32_t expected_checksum = (*required_dex_checksums)[i]; |
Andreas Gampe | b40d361 | 2018-06-26 15:49:42 -0700 | [diff] [blame] | 377 | const OatDexFile* oat_dex_file = file.GetOatDexFile(dex.c_str(), nullptr); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 378 | if (oat_dex_file == nullptr) { |
| 379 | *error_msg = StringPrintf("failed to find %s in %s", dex.c_str(), file.GetLocation().c_str()); |
| 380 | return false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 381 | } |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 382 | uint32_t actual_checksum = oat_dex_file->GetDexFileLocationChecksum(); |
| 383 | if (expected_checksum != actual_checksum) { |
| 384 | VLOG(oat) << "Dex checksum does not match for dex: " << dex |
| 385 | << ". Expected: " << expected_checksum |
| 386 | << ", Actual: " << actual_checksum; |
| 387 | return false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 388 | } |
| 389 | } |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 390 | return true; |
| 391 | } |
| 392 | |
| 393 | OatFileAssistant::OatStatus OatFileAssistant::GivenOatFileStatus(const OatFile& file) { |
| 394 | // Verify the ART_USE_READ_BARRIER state. |
| 395 | // TODO: Don't fully reject files due to read barrier state. If they contain |
| 396 | // compiled code and are otherwise okay, we should return something like |
| 397 | // kOatRelocationOutOfDate. If they don't contain compiled code, the read |
| 398 | // barrier state doesn't matter. |
| 399 | const bool is_cc = file.GetOatHeader().IsConcurrentCopying(); |
| 400 | constexpr bool kRuntimeIsCC = kUseReadBarrier; |
| 401 | if (is_cc != kRuntimeIsCC) { |
| 402 | return kOatCannotOpen; |
| 403 | } |
| 404 | |
| 405 | // Verify the dex checksum. |
| 406 | std::string error_msg; |
Nicolas Geoffray | 8eaa8e5 | 2017-11-13 17:47:50 +0000 | [diff] [blame] | 407 | VdexFile* vdex = file.GetVdexFile(); |
| 408 | if (!DexChecksumUpToDate(*vdex, &error_msg)) { |
| 409 | LOG(ERROR) << error_msg; |
| 410 | return kOatDexOutOfDate; |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 411 | } |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 412 | |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 413 | CompilerFilter::Filter current_compiler_filter = file.GetCompilerFilter(); |
David Brazdil | ce4b0ba | 2016-01-28 15:05:49 +0000 | [diff] [blame] | 414 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 415 | // Verify the image checksum |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 416 | if (CompilerFilter::DependsOnImageChecksum(current_compiler_filter)) { |
Vladimir Marko | bcd99be | 2019-03-22 16:21:31 +0000 | [diff] [blame] | 417 | if (!ValidateBootClassPathChecksums(file)) { |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 418 | VLOG(oat) << "Oat image checksum does not match image checksum."; |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 419 | return kOatBootImageOutOfDate; |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 420 | } |
| 421 | } else { |
| 422 | VLOG(oat) << "Image checksum test skipped for compiler filter " << current_compiler_filter; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 423 | } |
| 424 | |
Nicolas Geoffray | 66ff8a8 | 2018-02-28 13:27:55 +0000 | [diff] [blame] | 425 | // zip_file_only_contains_uncompressed_dex_ is only set during fetching the dex checksums. |
| 426 | DCHECK(required_dex_checksums_attempted_); |
| 427 | if (only_load_system_executable_ && |
| 428 | !LocationIsOnSystem(file.GetLocation().c_str()) && |
| 429 | file.ContainsDexCode() && |
| 430 | zip_file_only_contains_uncompressed_dex_) { |
| 431 | LOG(ERROR) << "Not loading " |
| 432 | << dex_location_ |
| 433 | << ": oat file has dex code, but APK has uncompressed dex code"; |
| 434 | return kOatDexOutOfDate; |
| 435 | } |
| 436 | |
Richard Uhler | e8109f7 | 2016-04-18 10:40:50 -0700 | [diff] [blame] | 437 | return kOatUpToDate; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 438 | } |
| 439 | |
David Brazdil | 35a3f6a | 2019-03-04 15:59:06 +0000 | [diff] [blame] | 440 | bool OatFileAssistant::AnonymousDexVdexLocation(const std::vector<const DexFile::Header*>& headers, |
| 441 | InstructionSet isa, |
| 442 | /* out */ uint32_t* location_checksum, |
| 443 | /* out */ std::string* dex_location, |
| 444 | /* out */ std::string* vdex_filename) { |
| 445 | uint32_t checksum = adler32(0L, Z_NULL, 0); |
| 446 | for (const DexFile::Header* header : headers) { |
| 447 | checksum = adler32_combine(checksum, |
| 448 | header->checksum_, |
| 449 | header->file_size_ - DexFile::kNumNonChecksumBytes); |
| 450 | } |
| 451 | *location_checksum = checksum; |
| 452 | |
| 453 | const std::string& data_dir = Runtime::Current()->GetProcessDataDirectory(); |
| 454 | if (data_dir.empty() || Runtime::Current()->IsZygote()) { |
| 455 | *dex_location = StringPrintf("%s%u", kAnonymousDexPrefix, checksum); |
| 456 | return false; |
| 457 | } |
| 458 | *dex_location = StringPrintf("%s/%s%u.jar", data_dir.c_str(), kAnonymousDexPrefix, checksum); |
| 459 | |
| 460 | std::string odex_filename; |
| 461 | std::string error_msg; |
| 462 | if (!DexLocationToOdexFilename(*dex_location, isa, &odex_filename, &error_msg)) { |
| 463 | LOG(WARNING) << "Could not get odex filename for " << *dex_location << ": " << error_msg; |
| 464 | return false; |
| 465 | } |
| 466 | |
| 467 | *vdex_filename = GetVdexFilename(odex_filename); |
| 468 | return true; |
| 469 | } |
| 470 | |
| 471 | bool OatFileAssistant::IsAnonymousVdexBasename(const std::string& basename) { |
| 472 | DCHECK(basename.find('/') == std::string::npos); |
| 473 | // `basename` must have format: <kAnonymousDexPrefix><checksum><kVdexExtension> |
| 474 | if (basename.size() < strlen(kAnonymousDexPrefix) + strlen(kVdexExtension) + 1 || |
| 475 | !android::base::StartsWith(basename.c_str(), kAnonymousDexPrefix) || |
| 476 | !android::base::EndsWith(basename, kVdexExtension)) { |
| 477 | return false; |
| 478 | } |
| 479 | // Check that all characters between the prefix and extension are decimal digits. |
| 480 | for (size_t i = strlen(kAnonymousDexPrefix); i < basename.size() - strlen(kVdexExtension); ++i) { |
| 481 | if (!std::isdigit(basename[i])) { |
| 482 | return false; |
| 483 | } |
| 484 | } |
| 485 | return true; |
| 486 | } |
| 487 | |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 488 | static bool DexLocationToOdexNames(const std::string& location, |
| 489 | InstructionSet isa, |
| 490 | std::string* odex_filename, |
| 491 | std::string* oat_dir, |
| 492 | std::string* isa_dir, |
| 493 | std::string* error_msg) { |
| 494 | CHECK(odex_filename != nullptr); |
| 495 | CHECK(error_msg != nullptr); |
| 496 | |
| 497 | // The odex file name is formed by replacing the dex_location extension with |
| 498 | // .odex and inserting an oat/<isa> directory. For example: |
| 499 | // location = /foo/bar/baz.jar |
| 500 | // odex_location = /foo/bar/oat/<isa>/baz.odex |
| 501 | |
| 502 | // Find the directory portion of the dex location and add the oat/<isa> |
| 503 | // directory. |
| 504 | size_t pos = location.rfind('/'); |
| 505 | if (pos == std::string::npos) { |
| 506 | *error_msg = "Dex location " + location + " has no directory."; |
| 507 | return false; |
| 508 | } |
| 509 | std::string dir = location.substr(0, pos+1); |
| 510 | // Add the oat directory. |
| 511 | dir += "oat"; |
| 512 | if (oat_dir != nullptr) { |
| 513 | *oat_dir = dir; |
| 514 | } |
| 515 | // Add the isa directory |
| 516 | dir += "/" + std::string(GetInstructionSetString(isa)); |
| 517 | if (isa_dir != nullptr) { |
| 518 | *isa_dir = dir; |
| 519 | } |
| 520 | |
| 521 | // Get the base part of the file without the extension. |
| 522 | std::string file = location.substr(pos+1); |
| 523 | pos = file.rfind('.'); |
| 524 | if (pos == std::string::npos) { |
| 525 | *error_msg = "Dex location " + location + " has no extension."; |
| 526 | return false; |
| 527 | } |
| 528 | std::string base = file.substr(0, pos); |
| 529 | |
| 530 | *odex_filename = dir + "/" + base + ".odex"; |
| 531 | return true; |
| 532 | } |
| 533 | |
Richard Uhler | b81881d | 2016-04-19 13:08:04 -0700 | [diff] [blame] | 534 | bool OatFileAssistant::DexLocationToOdexFilename(const std::string& location, |
| 535 | InstructionSet isa, |
| 536 | std::string* odex_filename, |
| 537 | std::string* error_msg) { |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 538 | return DexLocationToOdexNames(location, isa, odex_filename, nullptr, nullptr, error_msg); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 539 | } |
| 540 | |
Richard Uhler | b81881d | 2016-04-19 13:08:04 -0700 | [diff] [blame] | 541 | bool OatFileAssistant::DexLocationToOatFilename(const std::string& location, |
| 542 | InstructionSet isa, |
| 543 | std::string* oat_filename, |
| 544 | std::string* error_msg) { |
| 545 | CHECK(oat_filename != nullptr); |
| 546 | CHECK(error_msg != nullptr); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 547 | |
Mathieu Chartier | 9e423af | 2018-05-14 10:08:29 -0700 | [diff] [blame] | 548 | // If ANDROID_DATA is not set, return false instead of aborting. |
| 549 | // This can occur for preopt when using a class loader context. |
Roland Levillain | 2e3cb54 | 2019-04-05 18:00:04 +0100 | [diff] [blame] | 550 | if (GetAndroidDataSafe(error_msg).empty()) { |
Mathieu Chartier | 9e423af | 2018-05-14 10:08:29 -0700 | [diff] [blame] | 551 | *error_msg = "GetAndroidDataSafe failed: " + *error_msg; |
| 552 | return false; |
| 553 | } |
| 554 | |
Richard Uhler | 55b58b6 | 2016-08-12 09:05:13 -0700 | [diff] [blame] | 555 | std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa)); |
| 556 | if (cache_dir.empty()) { |
| 557 | *error_msg = "Dalvik cache directory does not exist"; |
| 558 | return false; |
| 559 | } |
Richard Uhler | b81881d | 2016-04-19 13:08:04 -0700 | [diff] [blame] | 560 | |
| 561 | // TODO: The oat file assistant should be the definitive place for |
| 562 | // determining the oat file name from the dex location, not |
| 563 | // GetDalvikCacheFilename. |
Richard Uhler | b81881d | 2016-04-19 13:08:04 -0700 | [diff] [blame] | 564 | return GetDalvikCacheFilename(location.c_str(), cache_dir.c_str(), oat_filename, error_msg); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 565 | } |
| 566 | |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 567 | const std::vector<uint32_t>* OatFileAssistant::GetRequiredDexChecksums() { |
| 568 | if (!required_dex_checksums_attempted_) { |
| 569 | required_dex_checksums_attempted_ = true; |
| 570 | required_dex_checksums_found_ = false; |
| 571 | cached_required_dex_checksums_.clear(); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 572 | std::string error_msg; |
David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 573 | const ArtDexFileLoader dex_file_loader; |
| 574 | if (dex_file_loader.GetMultiDexChecksums(dex_location_.c_str(), |
| 575 | &cached_required_dex_checksums_, |
| 576 | &error_msg, |
Nicolas Geoffray | 66ff8a8 | 2018-02-28 13:27:55 +0000 | [diff] [blame] | 577 | zip_fd_, |
| 578 | &zip_file_only_contains_uncompressed_dex_)) { |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 579 | required_dex_checksums_found_ = true; |
Richard Uhler | 9b994ea | 2015-06-24 08:44:19 -0700 | [diff] [blame] | 580 | has_original_dex_files_ = true; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 581 | } else { |
| 582 | // This can happen if the original dex file has been stripped from the |
| 583 | // apk. |
| 584 | VLOG(oat) << "OatFileAssistant: " << error_msg; |
Richard Uhler | 9b994ea | 2015-06-24 08:44:19 -0700 | [diff] [blame] | 585 | has_original_dex_files_ = false; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 586 | |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 587 | // Get the checksums from the odex if we can. |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 588 | const OatFile* odex_file = odex_.GetFile(); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 589 | if (odex_file != nullptr) { |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 590 | required_dex_checksums_found_ = true; |
| 591 | for (size_t i = 0; i < odex_file->GetOatHeader().GetDexFileCount(); i++) { |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 592 | std::string dex = DexFileLoader::GetMultiDexLocation(i, dex_location_.c_str()); |
Andreas Gampe | b40d361 | 2018-06-26 15:49:42 -0700 | [diff] [blame] | 593 | const OatDexFile* odex_dex_file = odex_file->GetOatDexFile(dex.c_str(), nullptr); |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 594 | if (odex_dex_file == nullptr) { |
| 595 | required_dex_checksums_found_ = false; |
| 596 | break; |
| 597 | } |
| 598 | cached_required_dex_checksums_.push_back(odex_dex_file->GetDexFileLocationChecksum()); |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 599 | } |
| 600 | } |
| 601 | } |
| 602 | } |
Richard Uhler | 69bcf2c | 2017-01-24 10:25:21 +0000 | [diff] [blame] | 603 | return required_dex_checksums_found_ ? &cached_required_dex_checksums_ : nullptr; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 604 | } |
| 605 | |
Vladimir Marko | bcd99be | 2019-03-22 16:21:31 +0000 | [diff] [blame] | 606 | bool OatFileAssistant::ValidateBootClassPathChecksums(const OatFile& oat_file) { |
Vladimir Marko | 436c6f5 | 2019-07-25 14:50:14 +0100 | [diff] [blame] | 607 | // Get the checksums and the BCP from the oat file. |
Vladimir Marko | 0ace563 | 2018-12-14 11:11:47 +0000 | [diff] [blame] | 608 | const char* oat_boot_class_path_checksums = |
| 609 | oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kBootClassPathChecksumsKey); |
Vladimir Marko | 436c6f5 | 2019-07-25 14:50:14 +0100 | [diff] [blame] | 610 | const char* oat_boot_class_path = |
| 611 | oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kBootClassPathKey); |
| 612 | if (oat_boot_class_path_checksums == nullptr || oat_boot_class_path == nullptr) { |
Vladimir Marko | f3d88a8 | 2018-12-21 16:38:47 +0000 | [diff] [blame] | 613 | return false; |
| 614 | } |
Vladimir Marko | 436c6f5 | 2019-07-25 14:50:14 +0100 | [diff] [blame] | 615 | std::string_view oat_boot_class_path_checksums_view(oat_boot_class_path_checksums); |
| 616 | std::string_view oat_boot_class_path_view(oat_boot_class_path); |
| 617 | if (oat_boot_class_path_view == cached_boot_class_path_ && |
| 618 | oat_boot_class_path_checksums_view == cached_boot_class_path_checksums_) { |
| 619 | return true; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 620 | } |
Vladimir Marko | bcd99be | 2019-03-22 16:21:31 +0000 | [diff] [blame] | 621 | |
Vladimir Marko | 436c6f5 | 2019-07-25 14:50:14 +0100 | [diff] [blame] | 622 | Runtime* runtime = Runtime::Current(); |
| 623 | std::string error_msg; |
| 624 | bool result = gc::space::ImageSpace::VerifyBootClassPathChecksums( |
| 625 | oat_boot_class_path_checksums_view, |
| 626 | oat_boot_class_path_view, |
| 627 | runtime->GetImageLocation(), |
| 628 | ArrayRef<const std::string>(runtime->GetBootClassPathLocations()), |
| 629 | ArrayRef<const std::string>(runtime->GetBootClassPath()), |
| 630 | isa_, |
| 631 | runtime->GetImageSpaceLoadingOrder(), |
| 632 | &error_msg); |
| 633 | if (!result) { |
| 634 | VLOG(oat) << "Failed to verify checksums of oat file " << oat_file.GetLocation() |
| 635 | << " error: " << error_msg; |
| 636 | |
| 637 | if (HasOriginalDexFiles()) { |
| 638 | return false; |
| 639 | } |
| 640 | |
| 641 | // If there is no original dex file to fall back to, grudgingly accept |
| 642 | // the oat file. This could technically lead to crashes, but there's no |
| 643 | // way we could find a better oat file to use for this dex location, |
| 644 | // and it's better than being stuck in a boot loop with no way out. |
| 645 | // The problem will hopefully resolve itself the next time the runtime |
| 646 | // starts up. |
| 647 | LOG(WARNING) << "Dex location " << dex_location_ << " does not seem to include dex file. " |
| 648 | << "Allow oat file use. This is potentially dangerous."; |
| 649 | return true; |
| 650 | } |
| 651 | |
| 652 | // This checksum has been validated, so save it. |
| 653 | cached_boot_class_path_ = oat_boot_class_path_view; |
| 654 | cached_boot_class_path_checksums_ = oat_boot_class_path_checksums_view; |
| 655 | return true; |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 656 | } |
| 657 | |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 658 | OatFileAssistant::OatFileInfo& OatFileAssistant::GetBestInfo() { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 659 | ScopedTrace trace("GetBestInfo"); |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 660 | // TODO(calin): Document the side effects of class loading when |
| 661 | // running dalvikvm command line. |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 662 | if (dex_parent_writable_ || UseFdToReadFiles()) { |
Calin Juravle | 357c66d | 2017-05-04 01:57:17 +0000 | [diff] [blame] | 663 | // If the parent of the dex file is writable it means that we can |
| 664 | // create the odex file. In this case we unconditionally pick the odex |
| 665 | // as the best oat file. This corresponds to the regular use case when |
| 666 | // apps gets installed or when they load private, secondary dex file. |
| 667 | // For apps on the system partition the odex location will not be |
| 668 | // writable and thus the oat location might be more up to date. |
| 669 | return odex_; |
| 670 | } |
| 671 | |
| 672 | // We cannot write to the odex location. This must be a system app. |
| 673 | |
| 674 | // If the oat location is usable take it. |
| 675 | if (oat_.IsUseable()) { |
| 676 | return oat_; |
| 677 | } |
| 678 | |
| 679 | // The oat file is not usable but the odex file might be up to date. |
| 680 | // This is an indication that we are dealing with an up to date prebuilt |
| 681 | // (that doesn't need relocation). |
| 682 | if (odex_.Status() == kOatUpToDate) { |
| 683 | return odex_; |
| 684 | } |
| 685 | |
| 686 | // The oat file is not usable and the odex file is not up to date. |
| 687 | // However we have access to the original dex file which means we can make |
| 688 | // the oat location up to date. |
| 689 | if (HasOriginalDexFiles()) { |
| 690 | return oat_; |
| 691 | } |
| 692 | |
| 693 | // We got into the worst situation here: |
| 694 | // - the oat location is not usable |
| 695 | // - the prebuild odex location is not up to date |
| 696 | // - and we don't have the original dex file anymore (stripped). |
| 697 | // Pick the odex if it exists, or the oat if not. |
| 698 | return (odex_.Status() == kOatCannotOpen) ? oat_ : odex_; |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Andreas Gampe | a463b6a | 2016-08-12 21:53:32 -0700 | [diff] [blame] | 701 | std::unique_ptr<gc::space::ImageSpace> OatFileAssistant::OpenImageSpace(const OatFile* oat_file) { |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 702 | DCHECK(oat_file != nullptr); |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 703 | std::string art_file = ReplaceFileExtension(oat_file->GetLocation(), "art"); |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 704 | if (art_file.empty()) { |
| 705 | return nullptr; |
| 706 | } |
| 707 | std::string error_msg; |
| 708 | ScopedObjectAccess soa(Thread::Current()); |
Andreas Gampe | a463b6a | 2016-08-12 21:53:32 -0700 | [diff] [blame] | 709 | std::unique_ptr<gc::space::ImageSpace> ret = |
| 710 | gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(), oat_file, &error_msg); |
Mathieu Chartier | e778fc7 | 2016-01-25 20:11:28 -0800 | [diff] [blame] | 711 | if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) { |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 712 | LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg; |
| 713 | } |
| 714 | return ret; |
| 715 | } |
| 716 | |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 717 | OatFileAssistant::OatFileInfo::OatFileInfo(OatFileAssistant* oat_file_assistant, |
| 718 | bool is_oat_location) |
| 719 | : oat_file_assistant_(oat_file_assistant), is_oat_location_(is_oat_location) |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 720 | {} |
| 721 | |
Richard Uhler | 88bc673 | 2016-11-14 14:38:03 +0000 | [diff] [blame] | 722 | bool OatFileAssistant::OatFileInfo::IsOatLocation() { |
| 723 | return is_oat_location_; |
| 724 | } |
| 725 | |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 726 | const std::string* OatFileAssistant::OatFileInfo::Filename() { |
| 727 | return filename_provided_ ? &filename_ : nullptr; |
| 728 | } |
| 729 | |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 730 | bool OatFileAssistant::OatFileInfo::IsUseable() { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 731 | ScopedTrace trace("IsUseable"); |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 732 | switch (Status()) { |
| 733 | case kOatCannotOpen: |
| 734 | case kOatDexOutOfDate: |
| 735 | case kOatBootImageOutOfDate: return false; |
| 736 | |
Richard Uhler | 03bc659 | 2016-11-22 09:42:04 +0000 | [diff] [blame] | 737 | case kOatUpToDate: return true; |
| 738 | } |
| 739 | UNREACHABLE(); |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | OatFileAssistant::OatStatus OatFileAssistant::OatFileInfo::Status() { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 743 | ScopedTrace trace("Status"); |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 744 | if (!status_attempted_) { |
| 745 | status_attempted_ = true; |
| 746 | const OatFile* file = GetFile(); |
| 747 | if (file == nullptr) { |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 748 | // Check to see if there is a vdex file we can make use of. |
| 749 | std::string error_msg; |
Calin Juravle | 367b9d8 | 2017-05-15 18:18:39 -0700 | [diff] [blame] | 750 | std::string vdex_filename = GetVdexFilename(filename_); |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 751 | std::unique_ptr<VdexFile> vdex; |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 752 | if (use_fd_) { |
| 753 | if (vdex_fd_ >= 0) { |
| 754 | struct stat s; |
| 755 | int rc = TEMP_FAILURE_RETRY(fstat(vdex_fd_, &s)); |
| 756 | if (rc == -1) { |
| 757 | error_msg = StringPrintf("Failed getting length of the vdex file %s.", strerror(errno)); |
| 758 | } else { |
| 759 | vdex = VdexFile::Open(vdex_fd_, |
| 760 | s.st_size, |
| 761 | vdex_filename, |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 762 | /*writable=*/ false, |
| 763 | /*low_4gb=*/ false, |
| 764 | /*unquicken=*/ false, |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 765 | &error_msg); |
| 766 | } |
| 767 | } |
| 768 | } else { |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 769 | vdex = VdexFile::Open(vdex_filename, |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 770 | /*writable=*/ false, |
| 771 | /*low_4gb=*/ false, |
| 772 | /*unquicken=*/ false, |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 773 | &error_msg); |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 774 | } |
Richard Uhler | 2f27abd | 2017-01-31 14:02:34 +0000 | [diff] [blame] | 775 | if (vdex == nullptr) { |
| 776 | status_ = kOatCannotOpen; |
| 777 | VLOG(oat) << "unable to open vdex file " << vdex_filename << ": " << error_msg; |
| 778 | } else { |
| 779 | if (oat_file_assistant_->DexChecksumUpToDate(*vdex, &error_msg)) { |
| 780 | // The vdex file does not contain enough information to determine |
| 781 | // whether it is up to date with respect to the boot image, so we |
| 782 | // assume it is out of date. |
| 783 | VLOG(oat) << error_msg; |
| 784 | status_ = kOatBootImageOutOfDate; |
| 785 | } else { |
| 786 | status_ = kOatDexOutOfDate; |
| 787 | } |
| 788 | } |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 789 | } else { |
| 790 | status_ = oat_file_assistant_->GivenOatFileStatus(*file); |
Richard Uhler | 9a37efc | 2016-08-05 16:32:55 -0700 | [diff] [blame] | 791 | VLOG(oat) << file->GetLocation() << " is " << status_ |
| 792 | << " with filter " << file->GetCompilerFilter(); |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 793 | } |
| 794 | } |
| 795 | return status_; |
| 796 | } |
| 797 | |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 798 | OatFileAssistant::DexOptNeeded OatFileAssistant::OatFileInfo::GetDexOptNeeded( |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 799 | CompilerFilter::Filter target, |
Stefania Halac | e9818dd | 2020-02-14 17:58:26 +0000 | [diff] [blame] | 800 | ClassLoaderContext* context, |
Calin Juravle | 0a5cad3 | 2020-02-14 20:29:26 +0000 | [diff] [blame] | 801 | const std::vector<int>& context_fds, |
| 802 | bool profile_changed, |
| 803 | bool downgrade) { |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 804 | |
Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 805 | bool filter_okay = CompilerFilterIsOkay(target, profile_changed, downgrade); |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 806 | bool class_loader_context_okay = ClassLoaderContextIsOkay(context, context_fds); |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 807 | |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 808 | // Only check the filter and relocation if the class loader context is ok. |
| 809 | // If it is not, we will return kDex2OatFromScratch as the compilation needs to be redone. |
| 810 | if (class_loader_context_okay) { |
| 811 | if (filter_okay && Status() == kOatUpToDate) { |
| 812 | // The oat file is in good shape as is. |
| 813 | return kNoDexOptNeeded; |
| 814 | } |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 815 | |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 816 | if (IsUseable()) { |
| 817 | return kDex2OatForFilter; |
| 818 | } |
Nicolas Geoffray | 08e9eed | 2017-04-25 17:36:51 +0100 | [diff] [blame] | 819 | |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 820 | if (Status() == kOatBootImageOutOfDate) { |
| 821 | return kDex2OatForBootImage; |
| 822 | } |
Nicolas Geoffray | 08e9eed | 2017-04-25 17:36:51 +0100 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | if (oat_file_assistant_->HasOriginalDexFiles()) { |
| 826 | return kDex2OatFromScratch; |
| 827 | } else { |
| 828 | // Otherwise there is nothing we can do, even if we want to. |
| 829 | return kNoDexOptNeeded; |
| 830 | } |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 831 | } |
| 832 | |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 833 | const OatFile* OatFileAssistant::OatFileInfo::GetFile() { |
| 834 | CHECK(!file_released_) << "GetFile called after oat file released."; |
| 835 | if (!load_attempted_) { |
| 836 | load_attempted_ = true; |
| 837 | if (filename_provided_) { |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 838 | bool executable = oat_file_assistant_->load_executable_; |
| 839 | if (executable && oat_file_assistant_->only_load_system_executable_) { |
| 840 | executable = LocationIsOnSystem(filename_.c_str()); |
| 841 | } |
Nicolas Geoffray | de1b2a2 | 2019-02-27 09:10:57 +0000 | [diff] [blame] | 842 | VLOG(oat) << "Loading " << filename_ << " with executable: " << executable; |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 843 | std::string error_msg; |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 844 | if (use_fd_) { |
| 845 | if (oat_fd_ >= 0 && vdex_fd_ >= 0) { |
Vladimir Marko | b7bf843 | 2019-12-03 13:18:50 +0000 | [diff] [blame] | 846 | ArrayRef<const std::string> dex_locations(&oat_file_assistant_->dex_location_, |
| 847 | /*size=*/ 1u); |
Nicolas Geoffray | 3002509 | 2018-04-19 14:43:29 +0100 | [diff] [blame] | 848 | file_.reset(OatFile::Open(zip_fd_, |
| 849 | vdex_fd_, |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 850 | oat_fd_, |
| 851 | filename_.c_str(), |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 852 | executable, |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 853 | /*low_4gb=*/ false, |
Vladimir Marko | b7bf843 | 2019-12-03 13:18:50 +0000 | [diff] [blame] | 854 | dex_locations, |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 855 | /*reservation=*/ nullptr, |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 856 | &error_msg)); |
| 857 | } |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 858 | } else { |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 859 | file_.reset(OatFile::Open(/*zip_fd=*/ -1, |
Nicolas Geoffray | 3002509 | 2018-04-19 14:43:29 +0100 | [diff] [blame] | 860 | filename_.c_str(), |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 861 | filename_.c_str(), |
Nicolas Geoffray | 2974260 | 2017-12-14 10:09:03 +0000 | [diff] [blame] | 862 | executable, |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 863 | /*low_4gb=*/ false, |
Vladimir Marko | b7bf843 | 2019-12-03 13:18:50 +0000 | [diff] [blame] | 864 | oat_file_assistant_->dex_location_, |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 865 | &error_msg)); |
| 866 | } |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 867 | if (file_.get() == nullptr) { |
| 868 | VLOG(oat) << "OatFileAssistant test for existing oat file " |
| 869 | << filename_ << ": " << error_msg; |
Nicolas Geoffray | de1b2a2 | 2019-02-27 09:10:57 +0000 | [diff] [blame] | 870 | } else { |
| 871 | VLOG(oat) << "Successfully loaded " << filename_ << " with executable: " << executable; |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 872 | } |
| 873 | } |
| 874 | } |
| 875 | return file_.get(); |
| 876 | } |
| 877 | |
| 878 | bool OatFileAssistant::OatFileInfo::CompilerFilterIsOkay( |
Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 879 | CompilerFilter::Filter target, bool profile_changed, bool downgrade) { |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 880 | const OatFile* file = GetFile(); |
| 881 | if (file == nullptr) { |
| 882 | return false; |
| 883 | } |
| 884 | |
| 885 | CompilerFilter::Filter current = file->GetCompilerFilter(); |
| 886 | if (profile_changed && CompilerFilter::DependsOnProfile(current)) { |
| 887 | VLOG(oat) << "Compiler filter not okay because Profile changed"; |
| 888 | return false; |
| 889 | } |
Shubham Ajmera | e4e812a | 2017-05-25 20:09:58 -0700 | [diff] [blame] | 890 | return downgrade ? !CompilerFilter::IsBetter(current, target) : |
| 891 | CompilerFilter::IsAsGoodAs(current, target); |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 892 | } |
| 893 | |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 894 | bool OatFileAssistant::OatFileInfo::ClassLoaderContextIsOkay(ClassLoaderContext* context, |
| 895 | const std::vector<int>& context_fds) { |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 896 | const OatFile* file = GetFile(); |
| 897 | if (file == nullptr) { |
Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 898 | // No oat file means we have nothing to verify. |
| 899 | return true; |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 900 | } |
| 901 | |
Calin Juravle | af32242 | 2020-02-11 13:45:53 -0800 | [diff] [blame] | 902 | if (!CompilerFilter::IsVerificationEnabled(file->GetCompilerFilter())) { |
| 903 | // If verification is not enabled we don't need to verify the class loader context and we |
| 904 | // assume it's ok. |
| 905 | return true; |
| 906 | } |
| 907 | |
Calin Juravle | 0a5cad3 | 2020-02-14 20:29:26 +0000 | [diff] [blame] | 908 | |
Calin Juravle | af32242 | 2020-02-11 13:45:53 -0800 | [diff] [blame] | 909 | if (context == nullptr) { |
Calin Juravle | 0a5cad3 | 2020-02-14 20:29:26 +0000 | [diff] [blame] | 910 | // TODO(calin): stop using null for the unkown contexts. |
| 911 | // b/148494302 introduces runtime encoding for unknown context which will make this possible. |
| 912 | VLOG(oat) << "ClassLoaderContext check failed: uknown(null) context"; |
| 913 | return false; |
Calin Juravle | af32242 | 2020-02-11 13:45:53 -0800 | [diff] [blame] | 914 | } |
| 915 | |
Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 916 | size_t dir_index = oat_file_assistant_->dex_location_.rfind('/'); |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 917 | std::string classpath_dir = (dir_index != std::string::npos) |
Calin Juravle | 20c4644 | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 918 | ? oat_file_assistant_->dex_location_.substr(0, dir_index) |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 919 | : ""; |
| 920 | |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 921 | if (!context->OpenDexFiles(oat_file_assistant_->isa_, classpath_dir, context_fds)) { |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 922 | VLOG(oat) << "ClassLoaderContext check failed: dex files from the context could not be opened"; |
| 923 | return false; |
| 924 | } |
| 925 | |
Mathieu Chartier | adc9086 | 2018-05-11 13:03:06 -0700 | [diff] [blame] | 926 | const bool result = context->VerifyClassLoaderContextMatch(file->GetClassLoaderContext()) != |
| 927 | ClassLoaderContext::VerificationResult::kMismatch; |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 928 | if (!result) { |
| 929 | VLOG(oat) << "ClassLoaderContext check failed. Context was " |
| 930 | << file->GetClassLoaderContext() |
| 931 | << ". The expected context is " << context->EncodeContextForOatFile(classpath_dir); |
| 932 | } |
| 933 | return result; |
| 934 | } |
| 935 | |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 936 | bool OatFileAssistant::OatFileInfo::IsExecutable() { |
| 937 | const OatFile* file = GetFile(); |
| 938 | return (file != nullptr && file->IsExecutable()); |
| 939 | } |
| 940 | |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 941 | void OatFileAssistant::OatFileInfo::Reset() { |
| 942 | load_attempted_ = false; |
| 943 | file_.reset(); |
| 944 | status_attempted_ = false; |
| 945 | } |
| 946 | |
Nicolas Geoffray | 3002509 | 2018-04-19 14:43:29 +0100 | [diff] [blame] | 947 | void OatFileAssistant::OatFileInfo::Reset(const std::string& filename, |
| 948 | bool use_fd, |
| 949 | int zip_fd, |
| 950 | int vdex_fd, |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 951 | int oat_fd) { |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 952 | filename_provided_ = true; |
| 953 | filename_ = filename; |
Shubham Ajmera | c12bf4c | 2017-10-24 16:59:42 -0700 | [diff] [blame] | 954 | use_fd_ = use_fd; |
Nicolas Geoffray | 3002509 | 2018-04-19 14:43:29 +0100 | [diff] [blame] | 955 | zip_fd_ = zip_fd; |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 956 | vdex_fd_ = vdex_fd; |
| 957 | oat_fd_ = oat_fd; |
Richard Uhler | 743bf36 | 2016-04-19 15:39:37 -0700 | [diff] [blame] | 958 | Reset(); |
| 959 | } |
| 960 | |
| 961 | std::unique_ptr<OatFile> OatFileAssistant::OatFileInfo::ReleaseFile() { |
| 962 | file_released_ = true; |
| 963 | return std::move(file_); |
| 964 | } |
| 965 | |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 966 | std::unique_ptr<OatFile> OatFileAssistant::OatFileInfo::ReleaseFileForUse() { |
Mathieu Chartier | 4a17f8a | 2019-05-17 11:03:26 -0700 | [diff] [blame] | 967 | ScopedTrace trace("ReleaseFileForUse"); |
Richard Uhler | 3e580bc | 2016-11-08 16:23:07 +0000 | [diff] [blame] | 968 | if (Status() == kOatUpToDate) { |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 969 | return ReleaseFile(); |
| 970 | } |
| 971 | |
| 972 | VLOG(oat) << "Oat File Assistant: No relocated oat file found," |
| 973 | << " attempting to fall back to interpreting oat file instead."; |
| 974 | |
Andreas Gampe | 9ea84d0 | 2018-03-02 09:32:03 -0800 | [diff] [blame] | 975 | switch (Status()) { |
| 976 | case kOatBootImageOutOfDate: |
Andreas Gampe | 8f81de5 | 2018-03-06 08:39:21 -0800 | [diff] [blame] | 977 | // OutOfDate may be either a mismatched image, or a missing image. |
Andreas Gampe | 9ea84d0 | 2018-03-02 09:32:03 -0800 | [diff] [blame] | 978 | if (oat_file_assistant_->HasOriginalDexFiles()) { |
Andreas Gampe | 8f81de5 | 2018-03-06 08:39:21 -0800 | [diff] [blame] | 979 | // If there are original dex files, it is better to use them (to avoid a potential |
| 980 | // quickening mismatch because the boot image changed). |
Andreas Gampe | 9ea84d0 | 2018-03-02 09:32:03 -0800 | [diff] [blame] | 981 | break; |
| 982 | } |
Andreas Gampe | 8f81de5 | 2018-03-06 08:39:21 -0800 | [diff] [blame] | 983 | // If we do not accept the oat file, we may not have access to dex bytecode at all. Grudgingly |
| 984 | // go forward. |
Andreas Gampe | 9ea84d0 | 2018-03-02 09:32:03 -0800 | [diff] [blame] | 985 | FALLTHROUGH_INTENDED; |
| 986 | |
Andreas Gampe | 9ea84d0 | 2018-03-02 09:32:03 -0800 | [diff] [blame] | 987 | case kOatUpToDate: |
| 988 | case kOatCannotOpen: |
| 989 | case kOatDexOutOfDate: |
| 990 | break; |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 991 | } |
Andreas Gampe | 9ea84d0 | 2018-03-02 09:32:03 -0800 | [diff] [blame] | 992 | |
Richard Uhler | 70a8426 | 2016-11-08 16:51:51 +0000 | [diff] [blame] | 993 | return std::unique_ptr<OatFile>(); |
| 994 | } |
Calin Juravle | 5f9a801 | 2018-02-12 20:27:46 -0800 | [diff] [blame] | 995 | |
| 996 | // TODO(calin): we could provide a more refined status here |
| 997 | // (e.g. run from uncompressed apk, run with vdex but not oat etc). It will allow us to |
| 998 | // track more experiments but adds extra complexity. |
| 999 | void OatFileAssistant::GetOptimizationStatus( |
| 1000 | const std::string& filename, |
| 1001 | InstructionSet isa, |
| 1002 | std::string* out_compilation_filter, |
| 1003 | std::string* out_compilation_reason) { |
Andreas Gampe | bd3e1ce | 2018-03-15 17:45:03 -0700 | [diff] [blame] | 1004 | // It may not be possible to load an oat file executable (e.g., selinux restrictions). Load |
| 1005 | // non-executable and check the status manually. |
Vladimir Marko | f4efa9e | 2018-10-17 14:12:45 +0100 | [diff] [blame] | 1006 | OatFileAssistant oat_file_assistant(filename.c_str(), isa, /*load_executable=*/ false); |
Calin Juravle | 5f9a801 | 2018-02-12 20:27:46 -0800 | [diff] [blame] | 1007 | std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile(); |
| 1008 | |
| 1009 | if (oat_file == nullptr) { |
| 1010 | *out_compilation_filter = "run-from-apk"; |
| 1011 | *out_compilation_reason = "unknown"; |
Andreas Gampe | bd3e1ce | 2018-03-15 17:45:03 -0700 | [diff] [blame] | 1012 | return; |
Calin Juravle | 5f9a801 | 2018-02-12 20:27:46 -0800 | [diff] [blame] | 1013 | } |
Andreas Gampe | bd3e1ce | 2018-03-15 17:45:03 -0700 | [diff] [blame] | 1014 | |
| 1015 | OatStatus status = oat_file_assistant.GivenOatFileStatus(*oat_file); |
| 1016 | const char* reason = oat_file->GetCompilationReason(); |
| 1017 | *out_compilation_reason = reason == nullptr ? "unknown" : reason; |
| 1018 | switch (status) { |
| 1019 | case OatStatus::kOatUpToDate: |
| 1020 | *out_compilation_filter = CompilerFilter::NameOfFilter(oat_file->GetCompilerFilter()); |
| 1021 | return; |
| 1022 | |
| 1023 | case kOatCannotOpen: // This should never happen, but be robust. |
| 1024 | *out_compilation_filter = "error"; |
| 1025 | *out_compilation_reason = "error"; |
| 1026 | return; |
| 1027 | |
| 1028 | // kOatBootImageOutOfDate - The oat file is up to date with respect to the |
| 1029 | // dex file, but is out of date with respect to the boot image. |
| 1030 | case kOatBootImageOutOfDate: |
| 1031 | FALLTHROUGH_INTENDED; |
| 1032 | case kOatDexOutOfDate: |
| 1033 | if (oat_file_assistant.HasOriginalDexFiles()) { |
| 1034 | *out_compilation_filter = "run-from-apk-fallback"; |
| 1035 | } else { |
| 1036 | *out_compilation_filter = "run-from-vdex-fallback"; |
| 1037 | } |
| 1038 | return; |
Andreas Gampe | bd3e1ce | 2018-03-15 17:45:03 -0700 | [diff] [blame] | 1039 | } |
| 1040 | LOG(FATAL) << "Unreachable"; |
| 1041 | UNREACHABLE(); |
Calin Juravle | 5f9a801 | 2018-02-12 20:27:46 -0800 | [diff] [blame] | 1042 | } |
| 1043 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 1044 | } // namespace art |