Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 "class_loader_context.h" |
| 18 | |
Andreas Gampe | f941170 | 2018-09-06 17:16:57 -0700 | [diff] [blame] | 19 | #include <android-base/parseint.h> |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 20 | #include <android-base/strings.h> |
Andreas Gampe | f941170 | 2018-09-06 17:16:57 -0700 | [diff] [blame] | 21 | |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 22 | #include "art_field-inl.h" |
Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 23 | #include "base/casts.h" |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 24 | #include "base/dchecked_vector.h" |
Andreas Gampe | 19f5416 | 2019-05-14 16:16:28 -0700 | [diff] [blame] | 25 | #include "base/file_utils.h" |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 26 | #include "base/stl_util.h" |
| 27 | #include "class_linker.h" |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 28 | #include "class_loader_utils.h" |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 29 | #include "class_root.h" |
David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 30 | #include "dex/art_dex_file_loader.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 31 | #include "dex/dex_file.h" |
| 32 | #include "dex/dex_file_loader.h" |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 33 | #include "handle_scope-inl.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 34 | #include "jni/jni_internal.h" |
Vladimir Marko | bdc93b4 | 2019-03-29 16:12:04 +0000 | [diff] [blame] | 35 | #include "mirror/class_loader-inl.h" |
Alex Light | a9bbc08 | 2019-11-14 14:51:41 -0800 | [diff] [blame] | 36 | #include "mirror/object.h" |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 37 | #include "mirror/object_array-alloc-inl.h" |
| 38 | #include "nativehelper/scoped_local_ref.h" |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 39 | #include "oat_file_assistant.h" |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 40 | #include "obj_ptr-inl.h" |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 41 | #include "runtime.h" |
| 42 | #include "scoped_thread_state_change-inl.h" |
| 43 | #include "thread.h" |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 44 | #include "well_known_classes.h" |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 45 | |
| 46 | namespace art { |
| 47 | |
| 48 | static constexpr char kPathClassLoaderString[] = "PCL"; |
| 49 | static constexpr char kDelegateLastClassLoaderString[] = "DLC"; |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 50 | static constexpr char kInMemoryDexClassLoaderString[] = "IMC"; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 51 | static constexpr char kClassLoaderOpeningMark = '['; |
| 52 | static constexpr char kClassLoaderClosingMark = ']'; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 53 | static constexpr char kClassLoaderSharedLibraryOpeningMark = '{'; |
| 54 | static constexpr char kClassLoaderSharedLibraryClosingMark = '}'; |
| 55 | static constexpr char kClassLoaderSharedLibrarySeparator = '#'; |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 56 | static constexpr char kClassLoaderSeparator = ';'; |
| 57 | static constexpr char kClasspathSeparator = ':'; |
| 58 | static constexpr char kDexFileChecksumSeparator = '*'; |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 59 | static constexpr char kInMemoryDexClassLoaderDexLocationMagic[] = "<unknown>"; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 60 | |
| 61 | ClassLoaderContext::ClassLoaderContext() |
| 62 | : special_shared_library_(false), |
| 63 | dex_files_open_attempted_(false), |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 64 | dex_files_open_result_(false), |
Calin Juravle | 41acdc1 | 2017-07-18 17:45:32 -0700 | [diff] [blame] | 65 | owns_the_dex_files_(true) {} |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 66 | |
| 67 | ClassLoaderContext::ClassLoaderContext(bool owns_the_dex_files) |
| 68 | : special_shared_library_(false), |
| 69 | dex_files_open_attempted_(true), |
| 70 | dex_files_open_result_(true), |
| 71 | owns_the_dex_files_(owns_the_dex_files) {} |
| 72 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 73 | // Utility method to add parent and shared libraries of `info` into |
| 74 | // the `work_list`. |
| 75 | static void AddToWorkList( |
| 76 | ClassLoaderContext::ClassLoaderInfo* info, |
| 77 | std::vector<ClassLoaderContext::ClassLoaderInfo*>& work_list) { |
| 78 | if (info->parent != nullptr) { |
| 79 | work_list.push_back(info->parent.get()); |
| 80 | } |
| 81 | for (size_t i = 0; i < info->shared_libraries.size(); ++i) { |
| 82 | work_list.push_back(info->shared_libraries[i].get()); |
| 83 | } |
| 84 | } |
| 85 | |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 86 | ClassLoaderContext::~ClassLoaderContext() { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 87 | if (!owns_the_dex_files_ && class_loader_chain_ != nullptr) { |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 88 | // If the context does not own the dex/oat files release the unique pointers to |
| 89 | // make sure we do not de-allocate them. |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 90 | std::vector<ClassLoaderInfo*> work_list; |
| 91 | work_list.push_back(class_loader_chain_.get()); |
| 92 | while (!work_list.empty()) { |
| 93 | ClassLoaderInfo* info = work_list.back(); |
| 94 | work_list.pop_back(); |
| 95 | for (std::unique_ptr<OatFile>& oat_file : info->opened_oat_files) { |
Andreas Gampe | afaf7f8 | 2018-10-16 11:32:38 -0700 | [diff] [blame] | 96 | oat_file.release(); // NOLINT b/117926937 |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 97 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 98 | for (std::unique_ptr<const DexFile>& dex_file : info->opened_dex_files) { |
Andreas Gampe | afaf7f8 | 2018-10-16 11:32:38 -0700 | [diff] [blame] | 99 | dex_file.release(); // NOLINT b/117926937 |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 100 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 101 | AddToWorkList(info, work_list); |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 105 | |
Calin Juravle | 1991589 | 2017-08-03 17:10:36 +0000 | [diff] [blame] | 106 | std::unique_ptr<ClassLoaderContext> ClassLoaderContext::Default() { |
| 107 | return Create(""); |
| 108 | } |
| 109 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 110 | std::unique_ptr<ClassLoaderContext> ClassLoaderContext::Create(const std::string& spec) { |
| 111 | std::unique_ptr<ClassLoaderContext> result(new ClassLoaderContext()); |
| 112 | if (result->Parse(spec)) { |
| 113 | return result; |
| 114 | } else { |
| 115 | return nullptr; |
| 116 | } |
| 117 | } |
| 118 | |
Nicolas Geoffray | f378fff | 2018-11-19 12:52:26 +0000 | [diff] [blame] | 119 | static size_t FindMatchingSharedLibraryCloseMarker(const std::string& spec, |
| 120 | size_t shared_library_open_index) { |
| 121 | // Counter of opened shared library marker we've encountered so far. |
| 122 | uint32_t counter = 1; |
| 123 | // The index at which we're operating in the loop. |
| 124 | uint32_t string_index = shared_library_open_index + 1; |
| 125 | size_t shared_library_close = std::string::npos; |
| 126 | while (counter != 0) { |
| 127 | shared_library_close = |
| 128 | spec.find_first_of(kClassLoaderSharedLibraryClosingMark, string_index); |
| 129 | size_t shared_library_open = |
| 130 | spec.find_first_of(kClassLoaderSharedLibraryOpeningMark, string_index); |
| 131 | if (shared_library_close == std::string::npos) { |
| 132 | // No matching closing marker. Return an error. |
| 133 | break; |
| 134 | } |
| 135 | |
| 136 | if ((shared_library_open == std::string::npos) || |
| 137 | (shared_library_close < shared_library_open)) { |
| 138 | // We have seen a closing marker. Decrement the counter. |
| 139 | --counter; |
| 140 | // Move the search index forward. |
| 141 | string_index = shared_library_close + 1; |
| 142 | } else { |
| 143 | // New nested opening marker. Increment the counter and move the search |
| 144 | // index after the marker. |
| 145 | ++counter; |
| 146 | string_index = shared_library_open + 1; |
| 147 | } |
| 148 | } |
| 149 | return shared_library_close; |
| 150 | } |
| 151 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 152 | // The expected format is: |
| 153 | // "ClassLoaderType1[ClasspathElem1*Checksum1:ClasspathElem2*Checksum2...]{ClassLoaderType2[...]}". |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 154 | // The checksum part of the format is expected only if parse_cheksums is true. |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 155 | std::unique_ptr<ClassLoaderContext::ClassLoaderInfo> ClassLoaderContext::ParseClassLoaderSpec( |
| 156 | const std::string& class_loader_spec, |
| 157 | bool parse_checksums) { |
| 158 | ClassLoaderType class_loader_type = ExtractClassLoaderType(class_loader_spec); |
| 159 | if (class_loader_type == kInvalidClassLoader) { |
| 160 | return nullptr; |
| 161 | } |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 162 | |
| 163 | // InMemoryDexClassLoader's dex location is always bogus. Special-case it. |
| 164 | if (class_loader_type == kInMemoryDexClassLoader) { |
| 165 | if (parse_checksums) { |
| 166 | // Make sure that OpenDexFiles() will never be attempted on this context |
| 167 | // because the dex locations of IMC do not correspond to real files. |
| 168 | CHECK(!dex_files_open_attempted_ || !dex_files_open_result_) |
| 169 | << "Parsing spec not supported when context created from a ClassLoader object"; |
| 170 | dex_files_open_attempted_ = true; |
| 171 | dex_files_open_result_ = false; |
| 172 | } else { |
| 173 | // Checksums are not provided and dex locations themselves have no meaning |
| 174 | // (although we keep them in the spec to simplify parsing). Treat this as |
| 175 | // an unknown class loader. |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 176 | // We can hit this case if dex2oat is invoked with a spec containing IMC. |
| 177 | // Because the dex file data is only available at runtime, we cannot proceed. |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 178 | return nullptr; |
| 179 | } |
| 180 | } |
| 181 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 182 | const char* class_loader_type_str = GetClassLoaderTypeName(class_loader_type); |
| 183 | size_t type_str_size = strlen(class_loader_type_str); |
| 184 | |
| 185 | CHECK_EQ(0, class_loader_spec.compare(0, type_str_size, class_loader_type_str)); |
| 186 | |
| 187 | // Check the opening and closing markers. |
| 188 | if (class_loader_spec[type_str_size] != kClassLoaderOpeningMark) { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 189 | return nullptr; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 190 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 191 | if ((class_loader_spec[class_loader_spec.length() - 1] != kClassLoaderClosingMark) && |
| 192 | (class_loader_spec[class_loader_spec.length() - 1] != kClassLoaderSharedLibraryClosingMark)) { |
| 193 | return nullptr; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 196 | size_t closing_index = class_loader_spec.find_first_of(kClassLoaderClosingMark); |
| 197 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 198 | // At this point we know the format is ok; continue and extract the classpath. |
| 199 | // Note that class loaders with an empty class path are allowed. |
| 200 | std::string classpath = class_loader_spec.substr(type_str_size + 1, |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 201 | closing_index - type_str_size - 1); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 202 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 203 | std::unique_ptr<ClassLoaderInfo> info(new ClassLoaderInfo(class_loader_type)); |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 204 | |
| 205 | if (!parse_checksums) { |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 206 | DCHECK(class_loader_type != kInMemoryDexClassLoader); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 207 | Split(classpath, kClasspathSeparator, &info->classpath); |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 208 | } else { |
| 209 | std::vector<std::string> classpath_elements; |
| 210 | Split(classpath, kClasspathSeparator, &classpath_elements); |
| 211 | for (const std::string& element : classpath_elements) { |
| 212 | std::vector<std::string> dex_file_with_checksum; |
| 213 | Split(element, kDexFileChecksumSeparator, &dex_file_with_checksum); |
| 214 | if (dex_file_with_checksum.size() != 2) { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 215 | return nullptr; |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 216 | } |
| 217 | uint32_t checksum = 0; |
Tom Cherry | 7bc8e8f | 2018-10-05 14:34:13 -0700 | [diff] [blame] | 218 | if (!android::base::ParseUint(dex_file_with_checksum[1].c_str(), &checksum)) { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 219 | return nullptr; |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 220 | } |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 221 | if ((class_loader_type == kInMemoryDexClassLoader) && |
| 222 | (dex_file_with_checksum[0] != kInMemoryDexClassLoaderDexLocationMagic)) { |
| 223 | return nullptr; |
| 224 | } |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 225 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 226 | info->classpath.push_back(dex_file_with_checksum[0]); |
| 227 | info->checksums.push_back(checksum); |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 228 | } |
| 229 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 230 | |
Nicolas Geoffray | f378fff | 2018-11-19 12:52:26 +0000 | [diff] [blame] | 231 | if ((class_loader_spec[class_loader_spec.length() - 1] == kClassLoaderSharedLibraryClosingMark) && |
| 232 | (class_loader_spec[class_loader_spec.length() - 2] != kClassLoaderSharedLibraryOpeningMark)) { |
| 233 | // Non-empty list of shared libraries. |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 234 | size_t start_index = class_loader_spec.find_first_of(kClassLoaderSharedLibraryOpeningMark); |
| 235 | if (start_index == std::string::npos) { |
| 236 | return nullptr; |
| 237 | } |
| 238 | std::string shared_libraries_spec = |
| 239 | class_loader_spec.substr(start_index + 1, class_loader_spec.length() - start_index - 2); |
| 240 | std::vector<std::string> shared_libraries; |
Nicolas Geoffray | f378fff | 2018-11-19 12:52:26 +0000 | [diff] [blame] | 241 | size_t cursor = 0; |
| 242 | while (cursor != shared_libraries_spec.length()) { |
| 243 | size_t shared_library_separator = |
| 244 | shared_libraries_spec.find_first_of(kClassLoaderSharedLibrarySeparator, cursor); |
| 245 | size_t shared_library_open = |
| 246 | shared_libraries_spec.find_first_of(kClassLoaderSharedLibraryOpeningMark, cursor); |
| 247 | std::string shared_library_spec; |
| 248 | if (shared_library_separator == std::string::npos) { |
| 249 | // Only one shared library, for example: |
| 250 | // PCL[...] |
| 251 | shared_library_spec = |
| 252 | shared_libraries_spec.substr(cursor, shared_libraries_spec.length() - cursor); |
| 253 | cursor = shared_libraries_spec.length(); |
| 254 | } else if ((shared_library_open == std::string::npos) || |
| 255 | (shared_library_open > shared_library_separator)) { |
| 256 | // We found a shared library without nested shared libraries, for example: |
| 257 | // PCL[...]#PCL[...]{...} |
| 258 | shared_library_spec = |
| 259 | shared_libraries_spec.substr(cursor, shared_library_separator - cursor); |
| 260 | cursor = shared_library_separator + 1; |
| 261 | } else { |
| 262 | // The shared library contains nested shared libraries. Find the matching closing shared |
| 263 | // marker for it. |
| 264 | size_t closing_marker = |
| 265 | FindMatchingSharedLibraryCloseMarker(shared_libraries_spec, shared_library_open); |
| 266 | if (closing_marker == std::string::npos) { |
| 267 | // No matching closing marker, return an error. |
| 268 | return nullptr; |
| 269 | } |
| 270 | shared_library_spec = shared_libraries_spec.substr(cursor, closing_marker + 1 - cursor); |
| 271 | cursor = closing_marker + 1; |
| 272 | if (cursor != shared_libraries_spec.length() && |
| 273 | shared_libraries_spec[cursor] == kClassLoaderSharedLibrarySeparator) { |
| 274 | // Pass the shared library separator marker. |
| 275 | ++cursor; |
| 276 | } |
| 277 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 278 | std::unique_ptr<ClassLoaderInfo> shared_library( |
| 279 | ParseInternal(shared_library_spec, parse_checksums)); |
| 280 | if (shared_library == nullptr) { |
| 281 | return nullptr; |
| 282 | } |
| 283 | info->shared_libraries.push_back(std::move(shared_library)); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | return info; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | // Extracts the class loader type from the given spec. |
| 291 | // Return ClassLoaderContext::kInvalidClassLoader if the class loader type is not |
| 292 | // recognized. |
| 293 | ClassLoaderContext::ClassLoaderType |
| 294 | ClassLoaderContext::ExtractClassLoaderType(const std::string& class_loader_spec) { |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 295 | const ClassLoaderType kValidTypes[] = { kPathClassLoader, |
| 296 | kDelegateLastClassLoader, |
| 297 | kInMemoryDexClassLoader }; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 298 | for (const ClassLoaderType& type : kValidTypes) { |
| 299 | const char* type_str = GetClassLoaderTypeName(type); |
| 300 | if (class_loader_spec.compare(0, strlen(type_str), type_str) == 0) { |
| 301 | return type; |
| 302 | } |
| 303 | } |
| 304 | return kInvalidClassLoader; |
| 305 | } |
| 306 | |
| 307 | // The format: ClassLoaderType1[ClasspathElem1:ClasspathElem2...];ClassLoaderType2[...]... |
| 308 | // ClassLoaderType is either "PCL" (PathClassLoader) or "DLC" (DelegateLastClassLoader). |
| 309 | // ClasspathElem is the path of dex/jar/apk file. |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 310 | bool ClassLoaderContext::Parse(const std::string& spec, bool parse_checksums) { |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 311 | if (spec.empty()) { |
Calin Juravle | 1a509c8 | 2017-07-24 16:51:21 -0700 | [diff] [blame] | 312 | // By default we load the dex files in a PathClassLoader. |
| 313 | // So an empty spec is equivalent to an empty PathClassLoader (this happens when running |
| 314 | // tests) |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 315 | class_loader_chain_.reset(new ClassLoaderInfo(kPathClassLoader)); |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 316 | return true; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 317 | } |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 318 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 319 | // Stop early if we detect the special shared library, which may be passed as the classpath |
| 320 | // for dex2oat when we want to skip the shared libraries check. |
| 321 | if (spec == OatFile::kSpecialSharedLibrary) { |
| 322 | LOG(INFO) << "The ClassLoaderContext is a special shared library."; |
| 323 | special_shared_library_ = true; |
| 324 | return true; |
| 325 | } |
| 326 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 327 | CHECK(class_loader_chain_ == nullptr); |
| 328 | class_loader_chain_.reset(ParseInternal(spec, parse_checksums)); |
| 329 | return class_loader_chain_ != nullptr; |
| 330 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 331 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 332 | ClassLoaderContext::ClassLoaderInfo* ClassLoaderContext::ParseInternal( |
| 333 | const std::string& spec, bool parse_checksums) { |
| 334 | CHECK(!spec.empty()); |
| 335 | CHECK_NE(spec, OatFile::kSpecialSharedLibrary); |
| 336 | std::string remaining = spec; |
| 337 | std::unique_ptr<ClassLoaderInfo> first(nullptr); |
| 338 | ClassLoaderInfo* previous_iteration = nullptr; |
| 339 | while (!remaining.empty()) { |
| 340 | std::string class_loader_spec; |
| 341 | size_t first_class_loader_separator = remaining.find_first_of(kClassLoaderSeparator); |
| 342 | size_t first_shared_library_open = |
| 343 | remaining.find_first_of(kClassLoaderSharedLibraryOpeningMark); |
| 344 | if (first_class_loader_separator == std::string::npos) { |
| 345 | // Only one class loader, for example: |
| 346 | // PCL[...] |
| 347 | class_loader_spec = remaining; |
| 348 | remaining = ""; |
| 349 | } else if ((first_shared_library_open == std::string::npos) || |
| 350 | (first_shared_library_open > first_class_loader_separator)) { |
| 351 | // We found a class loader spec without shared libraries, for example: |
| 352 | // PCL[...];PCL[...]{...} |
| 353 | class_loader_spec = remaining.substr(0, first_class_loader_separator); |
| 354 | remaining = remaining.substr(first_class_loader_separator + 1, |
| 355 | remaining.size() - first_class_loader_separator - 1); |
| 356 | } else { |
| 357 | // The class loader spec contains shared libraries. Find the matching closing |
| 358 | // shared library marker for it. |
| 359 | |
Yi Kong | d5fe17e | 2019-10-01 16:18:47 -0700 | [diff] [blame] | 360 | size_t shared_library_close = |
Nicolas Geoffray | f378fff | 2018-11-19 12:52:26 +0000 | [diff] [blame] | 361 | FindMatchingSharedLibraryCloseMarker(remaining, first_shared_library_open); |
| 362 | if (shared_library_close == std::string::npos) { |
| 363 | LOG(ERROR) << "Invalid class loader spec: " << class_loader_spec; |
| 364 | return nullptr; |
| 365 | } |
| 366 | class_loader_spec = remaining.substr(0, shared_library_close + 1); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 367 | |
Nicolas Geoffray | f378fff | 2018-11-19 12:52:26 +0000 | [diff] [blame] | 368 | // Compute the remaining string to analyze. |
| 369 | if (remaining.size() == shared_library_close + 1) { |
| 370 | remaining = ""; |
| 371 | } else if ((remaining.size() == shared_library_close + 2) || |
| 372 | (remaining.at(shared_library_close + 1) != kClassLoaderSeparator)) { |
| 373 | LOG(ERROR) << "Invalid class loader spec: " << class_loader_spec; |
| 374 | return nullptr; |
| 375 | } else { |
| 376 | remaining = remaining.substr(shared_library_close + 2, |
| 377 | remaining.size() - shared_library_close - 2); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 378 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 379 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 380 | |
| 381 | std::unique_ptr<ClassLoaderInfo> info = |
| 382 | ParseClassLoaderSpec(class_loader_spec, parse_checksums); |
| 383 | if (info == nullptr) { |
| 384 | LOG(ERROR) << "Invalid class loader spec: " << class_loader_spec; |
| 385 | return nullptr; |
| 386 | } |
| 387 | if (first == nullptr) { |
Andreas Gampe | 41c911f | 2018-11-19 11:34:16 -0800 | [diff] [blame] | 388 | first = std::move(info); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 389 | previous_iteration = first.get(); |
| 390 | } else { |
| 391 | CHECK(previous_iteration != nullptr); |
Andreas Gampe | 41c911f | 2018-11-19 11:34:16 -0800 | [diff] [blame] | 392 | previous_iteration->parent = std::move(info); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 393 | previous_iteration = previous_iteration->parent.get(); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 394 | } |
| 395 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 396 | return first.release(); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | // Opens requested class path files and appends them to opened_dex_files. If the dex files have |
| 400 | // been stripped, this opens them from their oat files (which get added to opened_oat_files). |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 401 | bool ClassLoaderContext::OpenDexFiles(InstructionSet isa, |
| 402 | const std::string& classpath_dir, |
| 403 | const std::vector<int>& fds) { |
Calin Juravle | c5b215f | 2017-09-12 14:49:37 -0700 | [diff] [blame] | 404 | if (dex_files_open_attempted_) { |
| 405 | // Do not attempt to re-open the files if we already tried. |
| 406 | return dex_files_open_result_; |
| 407 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 408 | |
| 409 | dex_files_open_attempted_ = true; |
| 410 | // Assume we can open all dex files. If not, we will set this to false as we go. |
| 411 | dex_files_open_result_ = true; |
| 412 | |
| 413 | if (special_shared_library_) { |
| 414 | // Nothing to open if the context is a special shared library. |
| 415 | return true; |
| 416 | } |
| 417 | |
| 418 | // Note that we try to open all dex files even if some fail. |
| 419 | // We may get resource-only apks which we cannot load. |
| 420 | // TODO(calin): Refine the dex opening interface to be able to tell if an archive contains |
| 421 | // no dex files. So that we can distinguish the real failures... |
David Sehr | 013fd80 | 2018-01-11 22:55:24 -0800 | [diff] [blame] | 422 | const ArtDexFileLoader dex_file_loader; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 423 | std::vector<ClassLoaderInfo*> work_list; |
Nicolas Geoffray | 9893c47 | 2018-11-13 15:39:53 +0000 | [diff] [blame] | 424 | CHECK(class_loader_chain_ != nullptr); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 425 | work_list.push_back(class_loader_chain_.get()); |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 426 | size_t dex_file_index = 0; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 427 | while (!work_list.empty()) { |
| 428 | ClassLoaderInfo* info = work_list.back(); |
| 429 | work_list.pop_back(); |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 430 | DCHECK(info->type != kInMemoryDexClassLoader) << __FUNCTION__ << " not supported for IMC"; |
| 431 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 432 | size_t opened_dex_files_index = info->opened_dex_files.size(); |
| 433 | for (const std::string& cp_elem : info->classpath) { |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 434 | // If path is relative, append it to the provided base directory. |
Calin Juravle | 92003fe | 2017-09-06 02:22:57 +0000 | [diff] [blame] | 435 | std::string location = cp_elem; |
| 436 | if (location[0] != '/' && !classpath_dir.empty()) { |
Nicolas Geoffray | 06ffecf | 2017-11-14 10:31:54 +0000 | [diff] [blame] | 437 | location = classpath_dir + (classpath_dir.back() == '/' ? "" : "/") + location; |
Calin Juravle | 821a259 | 2017-08-11 14:33:38 -0700 | [diff] [blame] | 438 | } |
| 439 | |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 440 | // If file descriptors were provided for the class loader context dex paths, |
| 441 | // get the descriptor which correponds to this dex path. We assume the `fds` |
| 442 | // vector follows the same order as a flattened class loader context. |
| 443 | int fd = -1; |
| 444 | if (!fds.empty()) { |
| 445 | if (dex_file_index >= fds.size()) { |
| 446 | LOG(WARNING) << "Number of FDs is smaller than number of dex files in the context"; |
| 447 | dex_files_open_result_ = false; |
| 448 | return false; |
| 449 | } |
| 450 | |
| 451 | fd = fds[dex_file_index++]; |
| 452 | DCHECK_GE(fd, 0); |
| 453 | } |
| 454 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 455 | std::string error_msg; |
| 456 | // When opening the dex files from the context we expect their checksum to match their |
| 457 | // contents. So pass true to verify_checksum. |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 458 | if (fd < 0) { |
| 459 | if (!dex_file_loader.Open(location.c_str(), |
| 460 | location.c_str(), |
| 461 | Runtime::Current()->IsVerificationEnabled(), |
| 462 | /*verify_checksum=*/ true, |
| 463 | &error_msg, |
| 464 | &info->opened_dex_files)) { |
| 465 | // If we fail to open the dex file because it's been stripped, try to |
| 466 | // open the dex file from its corresponding oat file. |
| 467 | // This could happen when we need to recompile a pre-build whose dex |
| 468 | // code has been stripped (for example, if the pre-build is only |
| 469 | // quicken and we want to re-compile it speed-profile). |
| 470 | // TODO(calin): Use the vdex directly instead of going through the oat file. |
| 471 | OatFileAssistant oat_file_assistant(location.c_str(), isa, false); |
| 472 | std::unique_ptr<OatFile> oat_file(oat_file_assistant.GetBestOatFile()); |
| 473 | std::vector<std::unique_ptr<const DexFile>> oat_dex_files; |
| 474 | if (oat_file != nullptr && |
| 475 | OatFileAssistant::LoadDexFiles(*oat_file, location, &oat_dex_files)) { |
| 476 | info->opened_oat_files.push_back(std::move(oat_file)); |
| 477 | info->opened_dex_files.insert(info->opened_dex_files.end(), |
| 478 | std::make_move_iterator(oat_dex_files.begin()), |
| 479 | std::make_move_iterator(oat_dex_files.end())); |
| 480 | } else { |
| 481 | LOG(WARNING) << "Could not open dex files from location: " << location; |
| 482 | dex_files_open_result_ = false; |
| 483 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 484 | } |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 485 | } else if (!dex_file_loader.Open(fd, |
| 486 | location.c_str(), |
| 487 | Runtime::Current()->IsVerificationEnabled(), |
| 488 | /*verify_checksum=*/ true, |
| 489 | &error_msg, |
| 490 | &info->opened_dex_files)) { |
| 491 | LOG(WARNING) << "Could not open dex files from fd " << fd << " for location: " << location; |
| 492 | dex_files_open_result_ = false; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 493 | } |
| 494 | } |
Calin Juravle | c5b215f | 2017-09-12 14:49:37 -0700 | [diff] [blame] | 495 | |
| 496 | // We finished opening the dex files from the classpath. |
| 497 | // Now update the classpath and the checksum with the locations of the dex files. |
| 498 | // |
| 499 | // We do this because initially the classpath contains the paths of the dex files; and |
| 500 | // some of them might be multi-dexes. So in order to have a consistent view we replace all the |
| 501 | // file paths with the actual dex locations being loaded. |
| 502 | // This will allow the context to VerifyClassLoaderContextMatch which expects or multidex |
| 503 | // location in the class paths. |
| 504 | // Note that this will also remove the paths that could not be opened. |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 505 | info->original_classpath = std::move(info->classpath); |
| 506 | info->classpath.clear(); |
| 507 | info->checksums.clear(); |
| 508 | for (size_t k = opened_dex_files_index; k < info->opened_dex_files.size(); k++) { |
| 509 | std::unique_ptr<const DexFile>& dex = info->opened_dex_files[k]; |
| 510 | info->classpath.push_back(dex->GetLocation()); |
| 511 | info->checksums.push_back(dex->GetLocationChecksum()); |
Calin Juravle | c5b215f | 2017-09-12 14:49:37 -0700 | [diff] [blame] | 512 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 513 | AddToWorkList(info, work_list); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 514 | } |
| 515 | |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 516 | // Check that if file descriptors were provided, there were exactly as many |
| 517 | // as we have encountered while iterating over this class loader context. |
| 518 | if (dex_file_index != fds.size()) { |
| 519 | LOG(WARNING) << fds.size() << " FDs provided but only " << dex_file_index |
| 520 | << " dex files are in the class loader context"; |
| 521 | dex_files_open_result_ = false; |
| 522 | } |
| 523 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 524 | return dex_files_open_result_; |
| 525 | } |
| 526 | |
| 527 | bool ClassLoaderContext::RemoveLocationsFromClassPaths( |
| 528 | const dchecked_vector<std::string>& locations) { |
| 529 | CHECK(!dex_files_open_attempted_) |
| 530 | << "RemoveLocationsFromClasspaths cannot be call after OpenDexFiles"; |
| 531 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 532 | if (class_loader_chain_ == nullptr) { |
| 533 | return false; |
| 534 | } |
| 535 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 536 | std::set<std::string> canonical_locations; |
| 537 | for (const std::string& location : locations) { |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 538 | canonical_locations.insert(DexFileLoader::GetDexCanonicalLocation(location.c_str())); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 539 | } |
| 540 | bool removed_locations = false; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 541 | std::vector<ClassLoaderInfo*> work_list; |
| 542 | work_list.push_back(class_loader_chain_.get()); |
| 543 | while (!work_list.empty()) { |
| 544 | ClassLoaderInfo* info = work_list.back(); |
| 545 | work_list.pop_back(); |
| 546 | size_t initial_size = info->classpath.size(); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 547 | auto kept_it = std::remove_if( |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 548 | info->classpath.begin(), |
| 549 | info->classpath.end(), |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 550 | [canonical_locations](const std::string& location) { |
| 551 | return ContainsElement(canonical_locations, |
Mathieu Chartier | 79c87da | 2017-10-10 11:54:29 -0700 | [diff] [blame] | 552 | DexFileLoader::GetDexCanonicalLocation(location.c_str())); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 553 | }); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 554 | info->classpath.erase(kept_it, info->classpath.end()); |
| 555 | if (initial_size != info->classpath.size()) { |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 556 | removed_locations = true; |
| 557 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 558 | AddToWorkList(info, work_list); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 559 | } |
| 560 | return removed_locations; |
| 561 | } |
| 562 | |
Calin Juravle | 27e0d1f | 2017-07-26 00:16:07 -0700 | [diff] [blame] | 563 | std::string ClassLoaderContext::EncodeContextForDex2oat(const std::string& base_dir) const { |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 564 | return EncodeContext(base_dir, /*for_dex2oat=*/ true, /*stored_context=*/ nullptr); |
Calin Juravle | 27e0d1f | 2017-07-26 00:16:07 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Mathieu Chartier | c444077 | 2018-04-16 14:40:56 -0700 | [diff] [blame] | 567 | std::string ClassLoaderContext::EncodeContextForOatFile(const std::string& base_dir, |
| 568 | ClassLoaderContext* stored_context) const { |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 569 | return EncodeContext(base_dir, /*for_dex2oat=*/ false, stored_context); |
Calin Juravle | 27e0d1f | 2017-07-26 00:16:07 -0700 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | std::string ClassLoaderContext::EncodeContext(const std::string& base_dir, |
Mathieu Chartier | c444077 | 2018-04-16 14:40:56 -0700 | [diff] [blame] | 573 | bool for_dex2oat, |
| 574 | ClassLoaderContext* stored_context) const { |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 575 | CheckDexFilesOpened("EncodeContextForOatFile"); |
| 576 | if (special_shared_library_) { |
| 577 | return OatFile::kSpecialSharedLibrary; |
| 578 | } |
| 579 | |
Mathieu Chartier | c444077 | 2018-04-16 14:40:56 -0700 | [diff] [blame] | 580 | if (stored_context != nullptr) { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 581 | DCHECK_EQ(GetParentChainSize(), stored_context->GetParentChainSize()); |
Mathieu Chartier | c444077 | 2018-04-16 14:40:56 -0700 | [diff] [blame] | 582 | } |
| 583 | |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 584 | std::ostringstream out; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 585 | if (class_loader_chain_ == nullptr) { |
Calin Juravle | 1a509c8 | 2017-07-24 16:51:21 -0700 | [diff] [blame] | 586 | // We can get in this situation if the context was created with a class path containing the |
| 587 | // source dex files which were later removed (happens during run-tests). |
| 588 | out << GetClassLoaderTypeName(kPathClassLoader) |
| 589 | << kClassLoaderOpeningMark |
| 590 | << kClassLoaderClosingMark; |
| 591 | return out.str(); |
| 592 | } |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 593 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 594 | EncodeContextInternal( |
| 595 | *class_loader_chain_, |
| 596 | base_dir, |
| 597 | for_dex2oat, |
| 598 | (stored_context == nullptr ? nullptr : stored_context->class_loader_chain_.get()), |
| 599 | out); |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 600 | return out.str(); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 601 | } |
| 602 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 603 | void ClassLoaderContext::EncodeContextInternal(const ClassLoaderInfo& info, |
| 604 | const std::string& base_dir, |
| 605 | bool for_dex2oat, |
| 606 | ClassLoaderInfo* stored_info, |
| 607 | std::ostringstream& out) const { |
| 608 | out << GetClassLoaderTypeName(info.type); |
| 609 | out << kClassLoaderOpeningMark; |
| 610 | std::set<std::string> seen_locations; |
| 611 | SafeMap<std::string, std::string> remap; |
| 612 | if (stored_info != nullptr) { |
| 613 | for (size_t k = 0; k < info.original_classpath.size(); ++k) { |
| 614 | // Note that we don't care if the same name appears twice. |
| 615 | remap.Put(info.original_classpath[k], stored_info->classpath[k]); |
| 616 | } |
| 617 | } |
| 618 | for (size_t k = 0; k < info.opened_dex_files.size(); k++) { |
| 619 | const std::unique_ptr<const DexFile>& dex_file = info.opened_dex_files[k]; |
| 620 | if (for_dex2oat) { |
| 621 | // dex2oat only needs the base location. It cannot accept multidex locations. |
| 622 | // So ensure we only add each file once. |
| 623 | bool new_insert = seen_locations.insert( |
| 624 | DexFileLoader::GetBaseLocation(dex_file->GetLocation())).second; |
| 625 | if (!new_insert) { |
| 626 | continue; |
| 627 | } |
| 628 | } |
| 629 | std::string location = dex_file->GetLocation(); |
| 630 | // If there is a stored class loader remap, fix up the multidex strings. |
| 631 | if (!remap.empty()) { |
| 632 | std::string base_dex_location = DexFileLoader::GetBaseLocation(location); |
| 633 | auto it = remap.find(base_dex_location); |
| 634 | CHECK(it != remap.end()) << base_dex_location; |
| 635 | location = it->second + DexFileLoader::GetMultiDexSuffix(location); |
| 636 | } |
| 637 | if (k > 0) { |
| 638 | out << kClasspathSeparator; |
| 639 | } |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 640 | if (info.type == kInMemoryDexClassLoader) { |
| 641 | out << kInMemoryDexClassLoaderDexLocationMagic; |
| 642 | } else if (!base_dir.empty() && location.substr(0, base_dir.length()) == base_dir) { |
| 643 | // Find paths that were relative and convert them back from absolute. |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 644 | out << location.substr(base_dir.length() + 1).c_str(); |
| 645 | } else { |
| 646 | out << location.c_str(); |
| 647 | } |
| 648 | // dex2oat does not need the checksums. |
| 649 | if (!for_dex2oat) { |
| 650 | out << kDexFileChecksumSeparator; |
| 651 | out << dex_file->GetLocationChecksum(); |
| 652 | } |
| 653 | } |
| 654 | out << kClassLoaderClosingMark; |
| 655 | |
| 656 | if (!info.shared_libraries.empty()) { |
| 657 | out << kClassLoaderSharedLibraryOpeningMark; |
| 658 | for (uint32_t i = 0; i < info.shared_libraries.size(); ++i) { |
| 659 | if (i > 0) { |
| 660 | out << kClassLoaderSharedLibrarySeparator; |
| 661 | } |
| 662 | EncodeContextInternal( |
| 663 | *info.shared_libraries[i].get(), |
| 664 | base_dir, |
| 665 | for_dex2oat, |
| 666 | (stored_info == nullptr ? nullptr : stored_info->shared_libraries[i].get()), |
| 667 | out); |
| 668 | } |
| 669 | out << kClassLoaderSharedLibraryClosingMark; |
| 670 | } |
| 671 | if (info.parent != nullptr) { |
| 672 | out << kClassLoaderSeparator; |
| 673 | EncodeContextInternal( |
| 674 | *info.parent.get(), |
| 675 | base_dir, |
| 676 | for_dex2oat, |
| 677 | (stored_info == nullptr ? nullptr : stored_info->parent.get()), |
| 678 | out); |
| 679 | } |
| 680 | } |
| 681 | |
| 682 | // Returns the WellKnownClass for the given class loader type. |
| 683 | static jclass GetClassLoaderClass(ClassLoaderContext::ClassLoaderType type) { |
| 684 | switch (type) { |
| 685 | case ClassLoaderContext::kPathClassLoader: |
| 686 | return WellKnownClasses::dalvik_system_PathClassLoader; |
| 687 | case ClassLoaderContext::kDelegateLastClassLoader: |
| 688 | return WellKnownClasses::dalvik_system_DelegateLastClassLoader; |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 689 | case ClassLoaderContext::kInMemoryDexClassLoader: |
| 690 | return WellKnownClasses::dalvik_system_InMemoryDexClassLoader; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 691 | case ClassLoaderContext::kInvalidClassLoader: break; // will fail after the switch. |
| 692 | } |
| 693 | LOG(FATAL) << "Invalid class loader type " << type; |
| 694 | UNREACHABLE(); |
| 695 | } |
| 696 | |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 697 | static std::string FlattenClasspath(const std::vector<std::string>& classpath) { |
| 698 | return android::base::Join(classpath, ':'); |
| 699 | } |
| 700 | |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 701 | static ObjPtr<mirror::ClassLoader> CreateClassLoaderInternal( |
| 702 | Thread* self, |
| 703 | ScopedObjectAccess& soa, |
| 704 | const ClassLoaderContext::ClassLoaderInfo& info, |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 705 | bool for_shared_library, |
| 706 | VariableSizedHandleScope& map_scope, |
| 707 | std::map<std::string, Handle<mirror::ClassLoader>>& canonicalized_libraries, |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 708 | bool add_compilation_sources, |
| 709 | const std::vector<const DexFile*>& compilation_sources) |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 710 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 711 | if (for_shared_library) { |
| 712 | // Check if the shared library has already been created. |
| 713 | auto search = canonicalized_libraries.find(FlattenClasspath(info.classpath)); |
| 714 | if (search != canonicalized_libraries.end()) { |
| 715 | return search->second.Get(); |
| 716 | } |
| 717 | } |
| 718 | |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 719 | StackHandleScope<3> hs(self); |
| 720 | MutableHandle<mirror::ObjectArray<mirror::ClassLoader>> libraries( |
| 721 | hs.NewHandle<mirror::ObjectArray<mirror::ClassLoader>>(nullptr)); |
| 722 | |
| 723 | if (!info.shared_libraries.empty()) { |
| 724 | libraries.Assign(mirror::ObjectArray<mirror::ClassLoader>::Alloc( |
| 725 | self, |
| 726 | GetClassRoot<mirror::ObjectArray<mirror::ClassLoader>>(), |
| 727 | info.shared_libraries.size())); |
| 728 | for (uint32_t i = 0; i < info.shared_libraries.size(); ++i) { |
| 729 | // We should only add the compilation sources to the first class loader. |
| 730 | libraries->Set(i, |
| 731 | CreateClassLoaderInternal( |
| 732 | self, |
| 733 | soa, |
| 734 | *info.shared_libraries[i].get(), |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 735 | /* for_shared_library= */ true, |
| 736 | map_scope, |
| 737 | canonicalized_libraries, |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 738 | /* add_compilation_sources= */ false, |
| 739 | compilation_sources)); |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | MutableHandle<mirror::ClassLoader> parent = hs.NewHandle<mirror::ClassLoader>(nullptr); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 744 | if (info.parent != nullptr) { |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 745 | // We should only add the compilation sources to the first class loader. |
| 746 | parent.Assign(CreateClassLoaderInternal( |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 747 | self, |
| 748 | soa, |
| 749 | *info.parent.get(), |
| 750 | /* for_shared_library= */ false, |
| 751 | map_scope, |
| 752 | canonicalized_libraries, |
| 753 | /* add_compilation_sources= */ false, |
| 754 | compilation_sources)); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 755 | } |
| 756 | std::vector<const DexFile*> class_path_files = MakeNonOwningPointerVector( |
| 757 | info.opened_dex_files); |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 758 | if (add_compilation_sources) { |
| 759 | // For the first class loader, its classpath comes first, followed by compilation sources. |
| 760 | // This ensures that whenever we need to resolve classes from it the classpath elements |
| 761 | // come first. |
| 762 | class_path_files.insert(class_path_files.end(), |
| 763 | compilation_sources.begin(), |
| 764 | compilation_sources.end()); |
| 765 | } |
| 766 | Handle<mirror::Class> loader_class = hs.NewHandle<mirror::Class>( |
| 767 | soa.Decode<mirror::Class>(GetClassLoaderClass(info.type))); |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 768 | ObjPtr<mirror::ClassLoader> loader = |
| 769 | Runtime::Current()->GetClassLinker()->CreateWellKnownClassLoader( |
| 770 | self, |
| 771 | class_path_files, |
| 772 | loader_class, |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 773 | parent, |
| 774 | libraries); |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 775 | if (for_shared_library) { |
| 776 | canonicalized_libraries[FlattenClasspath(info.classpath)] = |
| 777 | map_scope.NewHandle<mirror::ClassLoader>(loader); |
| 778 | } |
| 779 | return loader; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 780 | } |
| 781 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 782 | jobject ClassLoaderContext::CreateClassLoader( |
| 783 | const std::vector<const DexFile*>& compilation_sources) const { |
| 784 | CheckDexFilesOpened("CreateClassLoader"); |
| 785 | |
| 786 | Thread* self = Thread::Current(); |
| 787 | ScopedObjectAccess soa(self); |
| 788 | |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 789 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 790 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 791 | if (class_loader_chain_ == nullptr) { |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 792 | CHECK(special_shared_library_); |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 793 | return class_linker->CreatePathClassLoader(self, compilation_sources); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 794 | } |
| 795 | |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 796 | // Create a map of canonicalized shared libraries. As we're holding objects, |
| 797 | // we're creating a variable size handle scope to put handles in the map. |
| 798 | VariableSizedHandleScope map_scope(self); |
| 799 | std::map<std::string, Handle<mirror::ClassLoader>> canonicalized_libraries; |
| 800 | |
| 801 | // Create the class loader. |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 802 | ObjPtr<mirror::ClassLoader> loader = |
| 803 | CreateClassLoaderInternal(self, |
| 804 | soa, |
| 805 | *class_loader_chain_.get(), |
Nicolas Geoffray | cb2e1dd | 2018-11-20 11:15:13 +0000 | [diff] [blame] | 806 | /* for_shared_library= */ false, |
| 807 | map_scope, |
| 808 | canonicalized_libraries, |
Nicolas Geoffray | 6b9fd8c | 2018-11-16 10:25:42 +0000 | [diff] [blame] | 809 | /* add_compilation_sources= */ true, |
| 810 | compilation_sources); |
| 811 | // Make it a global ref and return. |
| 812 | ScopedLocalRef<jobject> local_ref( |
| 813 | soa.Env(), soa.Env()->AddLocalReference<jobject>(loader)); |
| 814 | return soa.Env()->NewGlobalRef(local_ref.get()); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 815 | } |
| 816 | |
| 817 | std::vector<const DexFile*> ClassLoaderContext::FlattenOpenedDexFiles() const { |
| 818 | CheckDexFilesOpened("FlattenOpenedDexFiles"); |
| 819 | |
| 820 | std::vector<const DexFile*> result; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 821 | if (class_loader_chain_ == nullptr) { |
| 822 | return result; |
| 823 | } |
| 824 | std::vector<ClassLoaderInfo*> work_list; |
| 825 | work_list.push_back(class_loader_chain_.get()); |
| 826 | while (!work_list.empty()) { |
| 827 | ClassLoaderInfo* info = work_list.back(); |
| 828 | work_list.pop_back(); |
| 829 | for (const std::unique_ptr<const DexFile>& dex_file : info->opened_dex_files) { |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 830 | result.push_back(dex_file.get()); |
| 831 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 832 | AddToWorkList(info, work_list); |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 833 | } |
| 834 | return result; |
| 835 | } |
| 836 | |
David Brazdil | 8982186 | 2019-03-19 13:57:43 +0000 | [diff] [blame] | 837 | std::string ClassLoaderContext::FlattenDexPaths() const { |
| 838 | if (class_loader_chain_ == nullptr) { |
| 839 | return ""; |
| 840 | } |
| 841 | |
| 842 | std::vector<std::string> result; |
| 843 | std::vector<ClassLoaderInfo*> work_list; |
| 844 | work_list.push_back(class_loader_chain_.get()); |
| 845 | while (!work_list.empty()) { |
| 846 | ClassLoaderInfo* info = work_list.back(); |
| 847 | work_list.pop_back(); |
| 848 | for (const std::string& dex_path : info->classpath) { |
| 849 | result.push_back(dex_path); |
| 850 | } |
| 851 | AddToWorkList(info, work_list); |
| 852 | } |
| 853 | return FlattenClasspath(result); |
| 854 | } |
| 855 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 856 | const char* ClassLoaderContext::GetClassLoaderTypeName(ClassLoaderType type) { |
| 857 | switch (type) { |
| 858 | case kPathClassLoader: return kPathClassLoaderString; |
| 859 | case kDelegateLastClassLoader: return kDelegateLastClassLoaderString; |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 860 | case kInMemoryDexClassLoader: return kInMemoryDexClassLoaderString; |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 861 | default: |
| 862 | LOG(FATAL) << "Invalid class loader type " << type; |
| 863 | UNREACHABLE(); |
| 864 | } |
| 865 | } |
| 866 | |
| 867 | void ClassLoaderContext::CheckDexFilesOpened(const std::string& calling_method) const { |
| 868 | CHECK(dex_files_open_attempted_) |
| 869 | << "Dex files were not successfully opened before the call to " << calling_method |
| 870 | << "attempt=" << dex_files_open_attempted_ << ", result=" << dex_files_open_result_; |
| 871 | } |
Calin Juravle | 7b0648a | 2017-07-07 18:40:50 -0700 | [diff] [blame] | 872 | |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 873 | // Collects the dex files from the give Java dex_file object. Only the dex files with |
| 874 | // at least 1 class are collected. If a null java_dex_file is passed this method does nothing. |
| 875 | static bool CollectDexFilesFromJavaDexFile(ObjPtr<mirror::Object> java_dex_file, |
| 876 | ArtField* const cookie_field, |
| 877 | std::vector<const DexFile*>* out_dex_files) |
| 878 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 879 | if (java_dex_file == nullptr) { |
| 880 | return true; |
| 881 | } |
| 882 | // On the Java side, the dex files are stored in the cookie field. |
Vladimir Marko | 4617d58 | 2019-03-28 13:48:31 +0000 | [diff] [blame] | 883 | ObjPtr<mirror::LongArray> long_array = cookie_field->GetObject(java_dex_file)->AsLongArray(); |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 884 | if (long_array == nullptr) { |
| 885 | // This should never happen so log a warning. |
| 886 | LOG(ERROR) << "Unexpected null cookie"; |
| 887 | return false; |
| 888 | } |
| 889 | int32_t long_array_size = long_array->GetLength(); |
| 890 | // Index 0 from the long array stores the oat file. The dex files start at index 1. |
| 891 | for (int32_t j = 1; j < long_array_size; ++j) { |
Vladimir Marko | 78baed5 | 2018-10-11 10:44:58 +0100 | [diff] [blame] | 892 | const DexFile* cp_dex_file = |
| 893 | reinterpret_cast64<const DexFile*>(long_array->GetWithoutChecks(j)); |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 894 | if (cp_dex_file != nullptr && cp_dex_file->NumClassDefs() > 0) { |
| 895 | // TODO(calin): It's unclear why the dex files with no classes are skipped here and when |
| 896 | // cp_dex_file can be null. |
| 897 | out_dex_files->push_back(cp_dex_file); |
| 898 | } |
| 899 | } |
| 900 | return true; |
| 901 | } |
| 902 | |
| 903 | // Collects all the dex files loaded by the given class loader. |
| 904 | // Returns true for success or false if an unexpected state is discovered (e.g. a null dex cookie, |
| 905 | // a null list of dex elements or a null dex element). |
| 906 | static bool CollectDexFilesFromSupportedClassLoader(ScopedObjectAccessAlreadyRunnable& soa, |
| 907 | Handle<mirror::ClassLoader> class_loader, |
| 908 | std::vector<const DexFile*>* out_dex_files) |
| 909 | REQUIRES_SHARED(Locks::mutator_lock_) { |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 910 | CHECK(IsPathOrDexClassLoader(soa, class_loader) || |
| 911 | IsDelegateLastClassLoader(soa, class_loader) || |
| 912 | IsInMemoryDexClassLoader(soa, class_loader)); |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 913 | |
| 914 | // All supported class loaders inherit from BaseDexClassLoader. |
| 915 | // We need to get the DexPathList and loop through it. |
| 916 | ArtField* const cookie_field = |
| 917 | jni::DecodeArtField(WellKnownClasses::dalvik_system_DexFile_cookie); |
| 918 | ArtField* const dex_file_field = |
| 919 | jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile); |
| 920 | ObjPtr<mirror::Object> dex_path_list = |
| 921 | jni::DecodeArtField(WellKnownClasses::dalvik_system_BaseDexClassLoader_pathList)-> |
| 922 | GetObject(class_loader.Get()); |
| 923 | CHECK(cookie_field != nullptr); |
| 924 | CHECK(dex_file_field != nullptr); |
| 925 | if (dex_path_list == nullptr) { |
| 926 | // This may be null if the current class loader is under construction and it does not |
| 927 | // have its fields setup yet. |
| 928 | return true; |
| 929 | } |
| 930 | // DexPathList has an array dexElements of Elements[] which each contain a dex file. |
| 931 | ObjPtr<mirror::Object> dex_elements_obj = |
| 932 | jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList_dexElements)-> |
| 933 | GetObject(dex_path_list); |
| 934 | // Loop through each dalvik.system.DexPathList$Element's dalvik.system.DexFile and look |
| 935 | // at the mCookie which is a DexFile vector. |
| 936 | if (dex_elements_obj == nullptr) { |
| 937 | // TODO(calin): It's unclear if we should just assert here. For now be prepared for the worse |
| 938 | // and assume we have no elements. |
| 939 | return true; |
| 940 | } else { |
| 941 | StackHandleScope<1> hs(soa.Self()); |
| 942 | Handle<mirror::ObjectArray<mirror::Object>> dex_elements( |
| 943 | hs.NewHandle(dex_elements_obj->AsObjectArray<mirror::Object>())); |
Alex Light | a9bbc08 | 2019-11-14 14:51:41 -0800 | [diff] [blame] | 944 | for (auto element : dex_elements.Iterate<mirror::Object>()) { |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 945 | if (element == nullptr) { |
| 946 | // Should never happen, log an error and break. |
| 947 | // TODO(calin): It's unclear if we should just assert here. |
| 948 | // This code was propagated to oat_file_manager from the class linker where it would |
| 949 | // throw a NPE. For now, return false which will mark this class loader as unsupported. |
| 950 | LOG(ERROR) << "Unexpected null in the dex element list"; |
| 951 | return false; |
| 952 | } |
| 953 | ObjPtr<mirror::Object> dex_file = dex_file_field->GetObject(element); |
| 954 | if (!CollectDexFilesFromJavaDexFile(dex_file, cookie_field, out_dex_files)) { |
| 955 | return false; |
| 956 | } |
| 957 | } |
| 958 | } |
| 959 | |
| 960 | return true; |
| 961 | } |
| 962 | |
| 963 | static bool GetDexFilesFromDexElementsArray( |
| 964 | ScopedObjectAccessAlreadyRunnable& soa, |
| 965 | Handle<mirror::ObjectArray<mirror::Object>> dex_elements, |
| 966 | std::vector<const DexFile*>* out_dex_files) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 967 | DCHECK(dex_elements != nullptr); |
| 968 | |
| 969 | ArtField* const cookie_field = |
| 970 | jni::DecodeArtField(WellKnownClasses::dalvik_system_DexFile_cookie); |
| 971 | ArtField* const dex_file_field = |
| 972 | jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile); |
Vladimir Marko | 0984e48 | 2019-03-27 16:41:41 +0000 | [diff] [blame] | 973 | const ObjPtr<mirror::Class> element_class = soa.Decode<mirror::Class>( |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 974 | WellKnownClasses::dalvik_system_DexPathList__Element); |
Vladimir Marko | 0984e48 | 2019-03-27 16:41:41 +0000 | [diff] [blame] | 975 | const ObjPtr<mirror::Class> dexfile_class = soa.Decode<mirror::Class>( |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 976 | WellKnownClasses::dalvik_system_DexFile); |
| 977 | |
Alex Light | a9bbc08 | 2019-11-14 14:51:41 -0800 | [diff] [blame] | 978 | for (auto element : dex_elements.Iterate<mirror::Object>()) { |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 979 | // We can hit a null element here because this is invoked with a partially filled dex_elements |
| 980 | // array from DexPathList. DexPathList will open each dex sequentially, each time passing the |
| 981 | // list of dex files which were opened before. |
| 982 | if (element == nullptr) { |
| 983 | continue; |
| 984 | } |
| 985 | |
| 986 | // We support this being dalvik.system.DexPathList$Element and dalvik.system.DexFile. |
| 987 | // TODO(calin): Code caried over oat_file_manager: supporting both classes seem to be |
| 988 | // a historical glitch. All the java code opens dex files using an array of Elements. |
| 989 | ObjPtr<mirror::Object> dex_file; |
| 990 | if (element_class == element->GetClass()) { |
| 991 | dex_file = dex_file_field->GetObject(element); |
| 992 | } else if (dexfile_class == element->GetClass()) { |
| 993 | dex_file = element; |
| 994 | } else { |
| 995 | LOG(ERROR) << "Unsupported element in dex_elements: " |
| 996 | << mirror::Class::PrettyClass(element->GetClass()); |
| 997 | return false; |
| 998 | } |
| 999 | |
| 1000 | if (!CollectDexFilesFromJavaDexFile(dex_file, cookie_field, out_dex_files)) { |
| 1001 | return false; |
| 1002 | } |
| 1003 | } |
| 1004 | return true; |
| 1005 | } |
| 1006 | |
| 1007 | // Adds the `class_loader` info to the `context`. |
| 1008 | // The dex file present in `dex_elements` array (if not null) will be added at the end of |
| 1009 | // the classpath. |
| 1010 | // This method is recursive (w.r.t. the class loader parent) and will stop once it reaches the |
| 1011 | // BootClassLoader. Note that the class loader chain is expected to be short. |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1012 | bool ClassLoaderContext::CreateInfoFromClassLoader( |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1013 | ScopedObjectAccessAlreadyRunnable& soa, |
| 1014 | Handle<mirror::ClassLoader> class_loader, |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1015 | Handle<mirror::ObjectArray<mirror::Object>> dex_elements, |
| 1016 | ClassLoaderInfo* child_info, |
| 1017 | bool is_shared_library) |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1018 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 1019 | if (ClassLinker::IsBootClassLoader(soa, class_loader.Get())) { |
| 1020 | // Nothing to do for the boot class loader as we don't add its dex files to the context. |
| 1021 | return true; |
| 1022 | } |
| 1023 | |
| 1024 | ClassLoaderContext::ClassLoaderType type; |
| 1025 | if (IsPathOrDexClassLoader(soa, class_loader)) { |
| 1026 | type = kPathClassLoader; |
| 1027 | } else if (IsDelegateLastClassLoader(soa, class_loader)) { |
| 1028 | type = kDelegateLastClassLoader; |
David Brazdil | 1a9ac53 | 2019-03-05 11:57:13 +0000 | [diff] [blame] | 1029 | } else if (IsInMemoryDexClassLoader(soa, class_loader)) { |
| 1030 | type = kInMemoryDexClassLoader; |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1031 | } else { |
| 1032 | LOG(WARNING) << "Unsupported class loader"; |
| 1033 | return false; |
| 1034 | } |
| 1035 | |
| 1036 | // Inspect the class loader for its dex files. |
| 1037 | std::vector<const DexFile*> dex_files_loaded; |
| 1038 | CollectDexFilesFromSupportedClassLoader(soa, class_loader, &dex_files_loaded); |
| 1039 | |
| 1040 | // If we have a dex_elements array extract its dex elements now. |
| 1041 | // This is used in two situations: |
| 1042 | // 1) when a new ClassLoader is created DexPathList will open each dex file sequentially |
| 1043 | // passing the list of already open dex files each time. This ensures that we see the |
| 1044 | // correct context even if the ClassLoader under construction is not fully build. |
| 1045 | // 2) when apk splits are loaded on the fly, the framework will load their dex files by |
| 1046 | // appending them to the current class loader. When the new code paths are loaded in |
| 1047 | // BaseDexClassLoader, the paths already present in the class loader will be passed |
| 1048 | // in the dex_elements array. |
| 1049 | if (dex_elements != nullptr) { |
| 1050 | GetDexFilesFromDexElementsArray(soa, dex_elements, &dex_files_loaded); |
| 1051 | } |
| 1052 | |
Nicolas Geoffray | 1717a49 | 2018-11-30 01:02:50 +0000 | [diff] [blame] | 1053 | ClassLoaderInfo* info = new ClassLoaderContext::ClassLoaderInfo(type); |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1054 | // Attach the `ClassLoaderInfo` now, before populating dex files, as only the |
| 1055 | // `ClassLoaderContext` knows whether these dex files should be deleted or not. |
| 1056 | if (child_info == nullptr) { |
Nicolas Geoffray | 1717a49 | 2018-11-30 01:02:50 +0000 | [diff] [blame] | 1057 | class_loader_chain_.reset(info); |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1058 | } else if (is_shared_library) { |
| 1059 | child_info->shared_libraries.push_back(std::unique_ptr<ClassLoaderInfo>(info)); |
Nicolas Geoffray | 1717a49 | 2018-11-30 01:02:50 +0000 | [diff] [blame] | 1060 | } else { |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1061 | child_info->parent.reset(info); |
Nicolas Geoffray | 1717a49 | 2018-11-30 01:02:50 +0000 | [diff] [blame] | 1062 | } |
| 1063 | |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1064 | // Now that `info` is in the chain, populate dex files. |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1065 | for (const DexFile* dex_file : dex_files_loaded) { |
David Brazdil | 93d339d | 2019-03-27 09:56:45 +0000 | [diff] [blame] | 1066 | // Dex location of dex files loaded with InMemoryDexClassLoader is always bogus. |
| 1067 | // Use a magic value for the classpath instead. |
| 1068 | info->classpath.push_back((type == kInMemoryDexClassLoader) |
| 1069 | ? kInMemoryDexClassLoaderDexLocationMagic |
| 1070 | : dex_file->GetLocation()); |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1071 | info->checksums.push_back(dex_file->GetLocationChecksum()); |
| 1072 | info->opened_dex_files.emplace_back(dex_file); |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1075 | // Note that dex_elements array is null here. The elements are considered to be part of the |
| 1076 | // current class loader and are not passed to the parents. |
| 1077 | ScopedNullHandle<mirror::ObjectArray<mirror::Object>> null_dex_elements; |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1078 | |
| 1079 | // Add the shared libraries. |
| 1080 | StackHandleScope<3> hs(Thread::Current()); |
| 1081 | ArtField* field = |
| 1082 | jni::DecodeArtField(WellKnownClasses::dalvik_system_BaseDexClassLoader_sharedLibraryLoaders); |
| 1083 | ObjPtr<mirror::Object> raw_shared_libraries = field->GetObject(class_loader.Get()); |
| 1084 | if (raw_shared_libraries != nullptr) { |
| 1085 | Handle<mirror::ObjectArray<mirror::ClassLoader>> shared_libraries = |
| 1086 | hs.NewHandle(raw_shared_libraries->AsObjectArray<mirror::ClassLoader>()); |
| 1087 | MutableHandle<mirror::ClassLoader> temp_loader = hs.NewHandle<mirror::ClassLoader>(nullptr); |
Alex Light | a9bbc08 | 2019-11-14 14:51:41 -0800 | [diff] [blame] | 1088 | for (auto library : shared_libraries.Iterate<mirror::ClassLoader>()) { |
| 1089 | temp_loader.Assign(library); |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1090 | if (!CreateInfoFromClassLoader( |
| 1091 | soa, temp_loader, null_dex_elements, info, /*is_shared_library=*/ true)) { |
| 1092 | return false; |
| 1093 | } |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | // We created the ClassLoaderInfo for the current loader. Move on to its parent. |
| 1098 | Handle<mirror::ClassLoader> parent = hs.NewHandle(class_loader->GetParent()); |
| 1099 | if (!CreateInfoFromClassLoader( |
| 1100 | soa, parent, null_dex_elements, info, /*is_shared_library=*/ false)) { |
| 1101 | return false; |
| 1102 | } |
| 1103 | return true; |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | std::unique_ptr<ClassLoaderContext> ClassLoaderContext::CreateContextForClassLoader( |
| 1107 | jobject class_loader, |
| 1108 | jobjectArray dex_elements) { |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1109 | CHECK(class_loader != nullptr); |
| 1110 | |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1111 | ScopedObjectAccess soa(Thread::Current()); |
| 1112 | StackHandleScope<2> hs(soa.Self()); |
| 1113 | Handle<mirror::ClassLoader> h_class_loader = |
| 1114 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)); |
| 1115 | Handle<mirror::ObjectArray<mirror::Object>> h_dex_elements = |
| 1116 | hs.NewHandle(soa.Decode<mirror::ObjectArray<mirror::Object>>(dex_elements)); |
Nicolas Geoffray | 1717a49 | 2018-11-30 01:02:50 +0000 | [diff] [blame] | 1117 | std::unique_ptr<ClassLoaderContext> result(new ClassLoaderContext(/*owns_the_dex_files=*/ false)); |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1118 | if (!result->CreateInfoFromClassLoader( |
| 1119 | soa, h_class_loader, h_dex_elements, nullptr, /*is_shared_library=*/ false)) { |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1120 | return nullptr; |
| 1121 | } |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1122 | return result; |
Calin Juravle | 57d0acc | 2017-07-11 17:41:30 -0700 | [diff] [blame] | 1123 | } |
| 1124 | |
Mathieu Chartier | adc9086 | 2018-05-11 13:03:06 -0700 | [diff] [blame] | 1125 | ClassLoaderContext::VerificationResult ClassLoaderContext::VerifyClassLoaderContextMatch( |
| 1126 | const std::string& context_spec, |
| 1127 | bool verify_names, |
| 1128 | bool verify_checksums) const { |
Mathieu Chartier | f5abfc4 | 2018-03-23 21:51:54 -0700 | [diff] [blame] | 1129 | if (verify_names || verify_checksums) { |
| 1130 | DCHECK(dex_files_open_attempted_); |
| 1131 | DCHECK(dex_files_open_result_); |
| 1132 | } |
Calin Juravle | c5b215f | 2017-09-12 14:49:37 -0700 | [diff] [blame] | 1133 | |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1134 | ClassLoaderContext expected_context; |
Mathieu Chartier | f5abfc4 | 2018-03-23 21:51:54 -0700 | [diff] [blame] | 1135 | if (!expected_context.Parse(context_spec, verify_checksums)) { |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1136 | LOG(WARNING) << "Invalid class loader context: " << context_spec; |
Mathieu Chartier | adc9086 | 2018-05-11 13:03:06 -0700 | [diff] [blame] | 1137 | return VerificationResult::kMismatch; |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1138 | } |
| 1139 | |
Calin Juravle | c5b215f | 2017-09-12 14:49:37 -0700 | [diff] [blame] | 1140 | // Special shared library contexts always match. They essentially instruct the runtime |
| 1141 | // to ignore the class path check because the oat file is known to be loaded in different |
| 1142 | // contexts. OatFileManager will further verify if the oat file can be loaded based on the |
| 1143 | // collision check. |
Mathieu Chartier | adc9086 | 2018-05-11 13:03:06 -0700 | [diff] [blame] | 1144 | if (expected_context.special_shared_library_) { |
| 1145 | // Special case where we are the only entry in the class path. |
Nicolas Geoffray | 9893c47 | 2018-11-13 15:39:53 +0000 | [diff] [blame] | 1146 | if (class_loader_chain_ != nullptr && |
| 1147 | class_loader_chain_->parent == nullptr && |
| 1148 | class_loader_chain_->classpath.size() == 0) { |
Mathieu Chartier | adc9086 | 2018-05-11 13:03:06 -0700 | [diff] [blame] | 1149 | return VerificationResult::kVerifies; |
| 1150 | } |
| 1151 | return VerificationResult::kForcedToSkipChecks; |
| 1152 | } else if (special_shared_library_) { |
| 1153 | return VerificationResult::kForcedToSkipChecks; |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1154 | } |
| 1155 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1156 | ClassLoaderInfo* info = class_loader_chain_.get(); |
| 1157 | ClassLoaderInfo* expected = expected_context.class_loader_chain_.get(); |
| 1158 | CHECK(info != nullptr); |
| 1159 | CHECK(expected != nullptr); |
| 1160 | if (!ClassLoaderInfoMatch(*info, *expected, context_spec, verify_names, verify_checksums)) { |
Mathieu Chartier | adc9086 | 2018-05-11 13:03:06 -0700 | [diff] [blame] | 1161 | return VerificationResult::kMismatch; |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1162 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1163 | return VerificationResult::kVerifies; |
| 1164 | } |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1165 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1166 | bool ClassLoaderContext::ClassLoaderInfoMatch( |
| 1167 | const ClassLoaderInfo& info, |
| 1168 | const ClassLoaderInfo& expected_info, |
| 1169 | const std::string& context_spec, |
| 1170 | bool verify_names, |
| 1171 | bool verify_checksums) const { |
| 1172 | if (info.type != expected_info.type) { |
| 1173 | LOG(WARNING) << "ClassLoaderContext type mismatch" |
| 1174 | << ". expected=" << GetClassLoaderTypeName(expected_info.type) |
| 1175 | << ", found=" << GetClassLoaderTypeName(info.type) |
| 1176 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
| 1177 | return false; |
| 1178 | } |
| 1179 | if (info.classpath.size() != expected_info.classpath.size()) { |
| 1180 | LOG(WARNING) << "ClassLoaderContext classpath size mismatch" |
| 1181 | << ". expected=" << expected_info.classpath.size() |
| 1182 | << ", found=" << info.classpath.size() |
Andreas Gampe | 7d0f81c | 2017-07-25 18:25:41 -0700 | [diff] [blame] | 1183 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1184 | return false; |
| 1185 | } |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1186 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1187 | if (verify_checksums) { |
| 1188 | DCHECK_EQ(info.classpath.size(), info.checksums.size()); |
| 1189 | DCHECK_EQ(expected_info.classpath.size(), expected_info.checksums.size()); |
| 1190 | } |
Mathieu Chartier | f5abfc4 | 2018-03-23 21:51:54 -0700 | [diff] [blame] | 1191 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1192 | if (verify_names) { |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1193 | for (size_t k = 0; k < info.classpath.size(); k++) { |
Calin Juravle | 1e96a5d | 2017-09-05 17:10:48 -0700 | [diff] [blame] | 1194 | // Compute the dex location that must be compared. |
| 1195 | // We shouldn't do a naive comparison `info.classpath[k] == expected_info.classpath[k]` |
| 1196 | // because even if they refer to the same file, one could be encoded as a relative location |
| 1197 | // and the other as an absolute one. |
| 1198 | bool is_dex_name_absolute = IsAbsoluteLocation(info.classpath[k]); |
| 1199 | bool is_expected_dex_name_absolute = IsAbsoluteLocation(expected_info.classpath[k]); |
| 1200 | std::string dex_name; |
| 1201 | std::string expected_dex_name; |
| 1202 | |
| 1203 | if (is_dex_name_absolute == is_expected_dex_name_absolute) { |
| 1204 | // If both locations are absolute or relative then compare them as they are. |
| 1205 | // This is usually the case for: shared libraries and secondary dex files. |
| 1206 | dex_name = info.classpath[k]; |
| 1207 | expected_dex_name = expected_info.classpath[k]; |
| 1208 | } else if (is_dex_name_absolute) { |
| 1209 | // The runtime name is absolute but the compiled name (the expected one) is relative. |
| 1210 | // This is the case for split apks which depend on base or on other splits. |
| 1211 | dex_name = info.classpath[k]; |
David Brazdil | 3e8aae0 | 2019-03-26 18:48:02 +0000 | [diff] [blame] | 1212 | OatFile::ResolveRelativeEncodedDexLocation(info.classpath[k].c_str(), |
| 1213 | expected_info.classpath[k], |
| 1214 | &expected_dex_name); |
Calin Juravle | 92003fe | 2017-09-06 02:22:57 +0000 | [diff] [blame] | 1215 | } else if (is_expected_dex_name_absolute) { |
Calin Juravle | 1e96a5d | 2017-09-05 17:10:48 -0700 | [diff] [blame] | 1216 | // The runtime name is relative but the compiled name is absolute. |
| 1217 | // There is no expected use case that would end up here as dex files are always loaded |
| 1218 | // with their absolute location. However, be tolerant and do the best effort (in case |
| 1219 | // there are unexpected new use case...). |
David Brazdil | 3e8aae0 | 2019-03-26 18:48:02 +0000 | [diff] [blame] | 1220 | OatFile::ResolveRelativeEncodedDexLocation(expected_info.classpath[k].c_str(), |
| 1221 | info.classpath[k], |
| 1222 | &dex_name); |
Calin Juravle | 1e96a5d | 2017-09-05 17:10:48 -0700 | [diff] [blame] | 1223 | expected_dex_name = expected_info.classpath[k]; |
Calin Juravle | 92003fe | 2017-09-06 02:22:57 +0000 | [diff] [blame] | 1224 | } else { |
| 1225 | // Both locations are relative. In this case there's not much we can be sure about |
| 1226 | // except that the names are the same. The checksum will ensure that the files are |
| 1227 | // are same. This should not happen outside testing and manual invocations. |
| 1228 | dex_name = info.classpath[k]; |
| 1229 | expected_dex_name = expected_info.classpath[k]; |
Calin Juravle | 1e96a5d | 2017-09-05 17:10:48 -0700 | [diff] [blame] | 1230 | } |
| 1231 | |
| 1232 | // Compare the locations. |
| 1233 | if (dex_name != expected_dex_name) { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1234 | LOG(WARNING) << "ClassLoaderContext classpath element mismatch" |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1235 | << ". expected=" << expected_info.classpath[k] |
Andreas Gampe | 7d0f81c | 2017-07-25 18:25:41 -0700 | [diff] [blame] | 1236 | << ", found=" << info.classpath[k] |
| 1237 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1238 | return false; |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1239 | } |
Calin Juravle | 1e96a5d | 2017-09-05 17:10:48 -0700 | [diff] [blame] | 1240 | |
| 1241 | // Compare the checksums. |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1242 | if (info.checksums[k] != expected_info.checksums[k]) { |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1243 | LOG(WARNING) << "ClassLoaderContext classpath element checksum mismatch" |
Calin Juravle | 1e96a5d | 2017-09-05 17:10:48 -0700 | [diff] [blame] | 1244 | << ". expected=" << expected_info.checksums[k] |
| 1245 | << ", found=" << info.checksums[k] |
| 1246 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1247 | return false; |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1248 | } |
| 1249 | } |
| 1250 | } |
Calin Juravle | 3f91864 | 2017-07-11 19:04:20 -0700 | [diff] [blame] | 1251 | |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1252 | if (info.shared_libraries.size() != expected_info.shared_libraries.size()) { |
| 1253 | LOG(WARNING) << "ClassLoaderContext shared library size mismatch. " |
Nicolas Geoffray | e167273 | 2018-11-30 01:09:49 +0000 | [diff] [blame] | 1254 | << "Expected=" << expected_info.shared_libraries.size() |
| 1255 | << ", found=" << info.shared_libraries.size() |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1256 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
| 1257 | return false; |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 1258 | } |
Nicolas Geoffray | 06af3b4 | 2018-10-29 10:39:04 +0000 | [diff] [blame] | 1259 | for (size_t i = 0; i < info.shared_libraries.size(); ++i) { |
| 1260 | if (!ClassLoaderInfoMatch(*info.shared_libraries[i].get(), |
| 1261 | *expected_info.shared_libraries[i].get(), |
| 1262 | context_spec, |
| 1263 | verify_names, |
| 1264 | verify_checksums)) { |
| 1265 | return false; |
| 1266 | } |
| 1267 | } |
| 1268 | if (info.parent.get() == nullptr) { |
| 1269 | if (expected_info.parent.get() != nullptr) { |
| 1270 | LOG(WARNING) << "ClassLoaderContext parent mismatch. " |
| 1271 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
| 1272 | return false; |
| 1273 | } |
| 1274 | return true; |
| 1275 | } else if (expected_info.parent.get() == nullptr) { |
| 1276 | LOG(WARNING) << "ClassLoaderContext parent mismatch. " |
| 1277 | << " (" << context_spec << " | " << EncodeContextForOatFile("") << ")"; |
| 1278 | return false; |
| 1279 | } else { |
| 1280 | return ClassLoaderInfoMatch(*info.parent.get(), |
| 1281 | *expected_info.parent.get(), |
| 1282 | context_spec, |
| 1283 | verify_names, |
| 1284 | verify_checksums); |
| 1285 | } |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 1286 | } |
| 1287 | |
Calin Juravle | 87e2cb6 | 2017-06-13 21:48:45 -0700 | [diff] [blame] | 1288 | } // namespace art |