blob: 31fd0921539a2306f8450cd5a5b4d0459890100b [file] [log] [blame]
Calin Juravle87e2cb62017-06-13 21:48:45 -07001/*
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#ifndef ART_RUNTIME_CLASS_LOADER_CONTEXT_H_
18#define ART_RUNTIME_CLASS_LOADER_CONTEXT_H_
19
20#include <string>
21#include <vector>
22
23#include "arch/instruction_set.h"
24#include "base/dchecked_vector.h"
Mathieu Chartieradc90862018-05-11 13:03:06 -070025#include "dex/dex_file.h"
Calin Juravle57d0acc2017-07-11 17:41:30 -070026#include "handle_scope.h"
27#include "mirror/class_loader.h"
Mathieu Chartieradc90862018-05-11 13:03:06 -070028#include "oat_file.h"
Calin Juravle57d0acc2017-07-11 17:41:30 -070029#include "scoped_thread_state_change.h"
Calin Juravle87e2cb62017-06-13 21:48:45 -070030
31namespace art {
32
33class DexFile;
34class OatFile;
35
36// Utility class which holds the class loader context used during compilation/verification.
37class ClassLoaderContext {
38 public:
Mathieu Chartieradc90862018-05-11 13:03:06 -070039 enum class VerificationResult {
40 kVerifies,
41 kForcedToSkipChecks,
42 kMismatch,
43 };
44
45 enum ClassLoaderType {
46 kInvalidClassLoader = 0,
47 kPathClassLoader = 1,
David Brazdil1a9ac532019-03-05 11:57:13 +000048 kDelegateLastClassLoader = 2,
49 kInMemoryDexClassLoader = 3
Mathieu Chartieradc90862018-05-11 13:03:06 -070050 };
51
Dan Zimmermanb682ea42019-12-23 06:59:06 -080052 // Special encoding used to denote a foreign ClassLoader was found when trying to encode class
53 // loader contexts for each classpath element in a ClassLoader. See
54 // EncodeClassPathContextsForClassLoader. Keep in sync with PackageDexUsage in the framework.
55 static constexpr const char* kUnsupportedClassLoaderContextEncoding =
56 "=UnsupportedClassLoaderContext=";
57
Calin Juravle57d0acc2017-07-11 17:41:30 -070058 ~ClassLoaderContext();
59
Calin Juravle87e2cb62017-06-13 21:48:45 -070060 // Opens requested class path files and appends them to ClassLoaderInfo::opened_dex_files.
61 // If the dex files have been stripped, the method opens them from their oat files which are added
62 // to ClassLoaderInfo::opened_oat_files. The 'classpath_dir' argument specifies the directory to
63 // use for the relative class paths.
64 // Returns true if all dex files where successfully opened.
Calin Juravlec5b215f2017-09-12 14:49:37 -070065 // It may be called only once per ClassLoaderContext. Subsequent calls will return the same
66 // result without doing anything.
David Brazdil89821862019-03-19 13:57:43 +000067 // If `context_fds` is an empty vector, files will be opened using the class path locations as
68 // filenames. Otherwise `context_fds` is expected to contain file descriptors to class path dex
69 // files, following the order of dex file locations in a flattened class loader context. If their
70 // number (size of `context_fds`) does not match the number of dex files, OpenDexFiles will fail.
Calin Juravlec5b215f2017-09-12 14:49:37 -070071 //
72 // This will replace the class path locations with the locations of the opened dex files.
73 // (Note that one dex file can contain multidexes. Each multidex will be added to the classpath
74 // separately.)
Calin Juravle87e2cb62017-06-13 21:48:45 -070075 //
76 // Note that a "false" return could mean that either an apk/jar contained no dex files or
77 // that we hit a I/O or checksum mismatch error.
78 // TODO(calin): Currently there's no easy way to tell the difference.
79 //
80 // TODO(calin): we're forced to complicate the flow in this class with a different
81 // OpenDexFiles step because the current dex2oat flow requires the dex files be opened before
82 // the class loader is created. Consider reworking the dex2oat part.
David Brazdil89821862019-03-19 13:57:43 +000083 bool OpenDexFiles(InstructionSet isa,
84 const std::string& classpath_dir,
85 const std::vector<int>& context_fds = std::vector<int>());
Calin Juravle87e2cb62017-06-13 21:48:45 -070086
87 // Remove the specified compilation sources from all classpaths present in this context.
88 // Should only be called before the first call to OpenDexFiles().
89 bool RemoveLocationsFromClassPaths(const dchecked_vector<std::string>& compilation_sources);
90
91 // Creates the entire class loader hierarchy according to the current context.
Calin Juravlec79470d2017-07-12 17:37:42 -070092 // Returns the first class loader from the chain.
93 //
94 // For example: if the context was built from the spec
95 // "ClassLoaderType1[ClasspathElem1:ClasspathElem2...];ClassLoaderType2[...]..."
96 // the method returns the class loader correponding to ClassLoader1. The parent chain will be
97 // ClassLoader1 --> ClassLoader2 --> ... --> BootClassLoader.
98 //
99 // The compilation sources are appended to the classpath of the first class loader (in the above
100 // example ClassLoader1).
101 //
Calin Juravle7b0648a2017-07-07 18:40:50 -0700102 // If the context is empty, this method only creates a single PathClassLoader with the
103 // given compilation_sources.
Calin Juravlec79470d2017-07-12 17:37:42 -0700104 //
Nicolas Geoffraycb2e1dd2018-11-20 11:15:13 +0000105 // Shared libraries found in the chain will be canonicalized based on the dex files they
106 // contain.
107 //
108 // Implementation notes:
Calin Juravlec79470d2017-07-12 17:37:42 -0700109 // 1) the objects are not completely set up. Do not use this outside of tests and the compiler.
110 // 2) should only be called before the first call to OpenDexFiles().
Calin Juravle87e2cb62017-06-13 21:48:45 -0700111 jobject CreateClassLoader(const std::vector<const DexFile*>& compilation_sources) const;
112
113 // Encodes the context as a string suitable to be added in oat files.
114 // (so that it can be read and verified at runtime against the actual class
115 // loader hierarchy).
116 // Should only be called if OpenDexFiles() returned true.
Mathieu Chartierc4440772018-04-16 14:40:56 -0700117 // If stored context is non-null, the stored names are overwritten by the class path from the
118 // stored context.
Calin Juravle27e0d1f2017-07-26 00:16:07 -0700119 // E.g. if the context is PCL[a.dex:b.dex] this will return
120 // "PCL[a.dex*a_checksum*b.dex*a_checksum]".
Mathieu Chartierc4440772018-04-16 14:40:56 -0700121 std::string EncodeContextForOatFile(const std::string& base_dir,
122 ClassLoaderContext* stored_context = nullptr) const;
Calin Juravle87e2cb62017-06-13 21:48:45 -0700123
Calin Juravle27e0d1f2017-07-26 00:16:07 -0700124 // Encodes the context as a string suitable to be passed to dex2oat.
125 // This is the same as EncodeContextForOatFile but without adding the checksums
126 // and only adding each dex files once (no multidex).
127 // Should only be called if OpenDexFiles() returned true.
128 std::string EncodeContextForDex2oat(const std::string& base_dir) const;
129
Dan Zimmermanb682ea42019-12-23 06:59:06 -0800130 // Encodes the contexts for each of the classpath elements in the child-most
131 // classloader. Under the hood EncodeContextForDex2oat is used, so no checksums
132 // will be encoded.
133 // Should only be called if the dex files are opened (either via OpenDexFiles() or by creating the
134 // context from a live class loader).
135 // Notably, for each classpath element the encoded classloader context will contain only the
136 // elements that appear before it in the containing classloader. E.g. if `this` contains
137 // (from child to parent):
138 //
139 // PathClassLoader { multidex.apk!classes.dex, multidex.apk!classes2.dex, foo.dex, bar.dex } ->
140 // PathClassLoader { baz.dex } -> BootClassLoader
141 //
142 // then the return value will look like:
143 //
144 // `{ "multidex.apk": "PCL[];PCL[baz.dex]",
145 // "foo.dex" : "PCL[multidex.apk];PCL[baz.dex]",
146 // "bar.dex" : "PCL[multidex.apk:foo.dex];PCL[baz.dex]" }`
147 std::map<std::string, std::string> EncodeClassPathContexts(const std::string& base_dir) const;
148
Calin Juravle87e2cb62017-06-13 21:48:45 -0700149 // Flattens the opened dex files into the given vector.
150 // Should only be called if OpenDexFiles() returned true.
151 std::vector<const DexFile*> FlattenOpenedDexFiles() const;
152
David Brazdil89821862019-03-19 13:57:43 +0000153 // Return a colon-separated list of dex file locations from this class loader
154 // context after flattening.
155 std::string FlattenDexPaths() const;
156
Calin Juravle3f918642017-07-11 19:04:20 -0700157 // Verifies that the current context is identical to the context encoded as `context_spec`.
158 // Identical means:
159 // - the number and type of the class loaders from the chain matches
160 // - the class loader from the same position have the same classpath
161 // (the order and checksum of the dex files matches)
Calin Juravlec5b215f2017-09-12 14:49:37 -0700162 // This should be called after OpenDexFiles().
Mathieu Chartierf5abfc42018-03-23 21:51:54 -0700163 // Names are only verified if verify_names is true.
164 // Checksums are only verified if verify_checksums is true.
Mathieu Chartieradc90862018-05-11 13:03:06 -0700165 VerificationResult VerifyClassLoaderContextMatch(const std::string& context_spec,
David Brazdil89821862019-03-19 13:57:43 +0000166 bool verify_names = true,
167 bool verify_checksums = true) const;
Calin Juravle3f918642017-07-11 19:04:20 -0700168
Calin Juravleb495e7f2020-04-06 19:29:45 -0700169 // Checks if any of the given dex files is already loaded in the current class loader context.
170 // Returns the list of duplicate dex files (empty if there are no duplicates).
171 std::vector<const DexFile*> CheckForDuplicateDexFiles(
172 const std::vector<const DexFile*>& dex_files);
173
Calin Juravle87e2cb62017-06-13 21:48:45 -0700174 // Creates the class loader context from the given string.
175 // The format: ClassLoaderType1[ClasspathElem1:ClasspathElem2...];ClassLoaderType2[...]...
176 // ClassLoaderType is either "PCL" (PathClassLoader) or "DLC" (DelegateLastClassLoader).
177 // ClasspathElem is the path of dex/jar/apk file.
Calin Juravlec79470d2017-07-12 17:37:42 -0700178 //
179 // The spec represents a class loader chain with the natural interpretation:
180 // ClassLoader1 has ClassLoader2 as parent which has ClassLoader3 as a parent and so on.
181 // The last class loader is assumed to have the BootClassLoader as a parent.
182 //
Calin Juravle87e2cb62017-06-13 21:48:45 -0700183 // Note that we allowed class loaders with an empty class path in order to support a custom
184 // class loader for the source dex files.
185 static std::unique_ptr<ClassLoaderContext> Create(const std::string& spec);
186
Calin Juravle57d0acc2017-07-11 17:41:30 -0700187 // Creates a context for the given class_loader and dex_elements.
188 // The method will walk the parent chain starting from `class_loader` and add their dex files
189 // to the current class loaders chain. The `dex_elements` will be added at the end of the
190 // classpath belonging to the `class_loader` argument.
191 // The ownership of the opened dex files will be retained by the given `class_loader`.
192 // If there are errors in processing the class loader chain (e.g. unsupported elements) the
193 // method returns null.
194 static std::unique_ptr<ClassLoaderContext> CreateContextForClassLoader(jobject class_loader,
195 jobjectArray dex_elements);
196
Calin Juravle19915892017-08-03 17:10:36 +0000197 // Returns the default class loader context to be used when none is specified.
198 // This will return a context with a single and empty PathClassLoader.
199 static std::unique_ptr<ClassLoaderContext> Default();
200
Dan Zimmermanb682ea42019-12-23 06:59:06 -0800201 // Encodes the contexts for each of the classpath elements in `class_loader`. See
202 // ClassLoaderContext::EncodeClassPathContexts for more information about the return value.
203 //
204 // If `class_loader` does not derive from BaseDexClassLoader then an empty map is returned.
205 // Otherwise if a foreign ClassLoader is found in the class loader chain then the results values
206 // will all be ClassLoaderContext::kUnsupportedClassLoaderContextEncoding.
207 static std::map<std::string, std::string> EncodeClassPathContextsForClassLoader(
208 jobject class_loader);
209
Dan Zimmermanc9fa7702020-01-31 13:35:12 -0800210 // Returns whether `encoded_class_loader_context` is a valid encoded ClassLoaderContext or
211 // EncodedUnsupportedClassLoaderContext.
212 static bool IsValidEncoding(const std::string& possible_encoded_class_loader_context);
213
Calin Juravle87e2cb62017-06-13 21:48:45 -0700214 struct ClassLoaderInfo {
215 // The type of this class loader.
216 ClassLoaderType type;
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000217 // Shared libraries this context has.
218 std::vector<std::unique_ptr<ClassLoaderInfo>> shared_libraries;
Calin Juravle87e2cb62017-06-13 21:48:45 -0700219 // The list of class path elements that this loader loads.
220 // Note that this list may contain relative paths.
221 std::vector<std::string> classpath;
Mathieu Chartierc4440772018-04-16 14:40:56 -0700222 // Original opened class path (ignoring multidex).
223 std::vector<std::string> original_classpath;
Calin Juravle7b0648a2017-07-07 18:40:50 -0700224 // The list of class path elements checksums.
225 // May be empty if the checksums are not given when the context is created.
226 std::vector<uint32_t> checksums;
Calin Juravle87e2cb62017-06-13 21:48:45 -0700227 // After OpenDexFiles is called this holds the opened dex files.
228 std::vector<std::unique_ptr<const DexFile>> opened_dex_files;
229 // After OpenDexFiles, in case some of the dex files were opened from their oat files
230 // this holds the list of opened oat files.
231 std::vector<std::unique_ptr<OatFile>> opened_oat_files;
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000232 // The parent class loader.
233 std::unique_ptr<ClassLoaderInfo> parent;
Calin Juravle87e2cb62017-06-13 21:48:45 -0700234
235 explicit ClassLoaderInfo(ClassLoaderType cl_type) : type(cl_type) {}
236 };
237
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000238 private:
Calin Juravle19915892017-08-03 17:10:36 +0000239 // Creates an empty context (with no class loaders).
240 ClassLoaderContext();
241
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000242 // Get the parent of the class loader chain at depth `index`.
243 ClassLoaderInfo* GetParent(size_t index) const {
244 ClassLoaderInfo* result = class_loader_chain_.get();
245 while ((result != nullptr) && (index-- != 0)) {
246 result = result->parent.get();
247 }
248 return result;
249 }
250
251 size_t GetParentChainSize() const {
252 size_t result = 0;
253 ClassLoaderInfo* info = class_loader_chain_.get();
254 while (info != nullptr) {
255 ++result;
256 info = info->parent.get();
257 }
258 return result;
259 }
260
Calin Juravle57d0acc2017-07-11 17:41:30 -0700261 // Constructs an empty context.
262 // `owns_the_dex_files` specifies whether or not the context will own the opened dex files
263 // present in the class loader chain. If `owns_the_dex_files` is true then OpenDexFiles cannot
264 // be called on this context (dex_files_open_attempted_ and dex_files_open_result_ will be set
265 // to true as well)
266 explicit ClassLoaderContext(bool owns_the_dex_files);
267
Calin Juravle87e2cb62017-06-13 21:48:45 -0700268 // Reads the class loader spec in place and returns true if the spec is valid and the
269 // compilation context was constructed.
Calin Juravle7b0648a2017-07-07 18:40:50 -0700270 bool Parse(const std::string& spec, bool parse_checksums = false);
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000271 ClassLoaderInfo* ParseInternal(const std::string& spec, bool parse_checksums);
Calin Juravle87e2cb62017-06-13 21:48:45 -0700272
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000273 // Attempts to parse a single class loader spec.
274 // Returns the ClassLoaderInfo abstraction for this spec, or null if it cannot be parsed.
275 std::unique_ptr<ClassLoaderInfo> ParseClassLoaderSpec(
276 const std::string& class_loader_spec,
277 bool parse_checksums = false);
Calin Juravle87e2cb62017-06-13 21:48:45 -0700278
Calin Juravle57d0acc2017-07-11 17:41:30 -0700279 // CHECKs that the dex files were opened (OpenDexFiles was called and set dex_files_open_result_
280 // to true). Aborts if not. The `calling_method` is used in the log message to identify the source
281 // of the call.
282 void CheckDexFilesOpened(const std::string& calling_method) const;
283
Nicolas Geoffraye1672732018-11-30 01:09:49 +0000284 // Creates the `ClassLoaderInfo` representing`class_loader` and attach it to `this`.
Calin Juravle57d0acc2017-07-11 17:41:30 -0700285 // The dex file present in `dex_elements` array (if not null) will be added at the end of
286 // the classpath.
Nicolas Geoffraye1672732018-11-30 01:09:49 +0000287 bool CreateInfoFromClassLoader(ScopedObjectAccessAlreadyRunnable& soa,
288 Handle<mirror::ClassLoader> class_loader,
289 Handle<mirror::ObjectArray<mirror::Object>> dex_elements,
290 ClassLoaderInfo* child_info,
291 bool is_shared_library)
Calin Juravle27e0d1f2017-07-26 00:16:07 -0700292 REQUIRES_SHARED(Locks::mutator_lock_);
293
294 // Encodes the context as a string suitable to be passed to dex2oat or to be added to the
295 // oat file as the class path key.
296 // If for_dex2oat is true, the encoding adds each file once (i.e. it does not add multidex
297 // location). Otherwise, for oat files, the encoding adds all the dex files (including multidex)
298 // together with their checksums.
299 // Should only be called if OpenDexFiles() returned true.
Mathieu Chartierc4440772018-04-16 14:40:56 -0700300 std::string EncodeContext(const std::string& base_dir,
301 bool for_dex2oat,
302 ClassLoaderContext* stored_context) const;
Calin Juravle57d0acc2017-07-11 17:41:30 -0700303
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000304 // Internal version of `EncodeContext`, which will be called recursively
305 // on the parent and shared libraries.
306 void EncodeContextInternal(const ClassLoaderInfo& info,
307 const std::string& base_dir,
308 bool for_dex2oat,
309 ClassLoaderInfo* stored_info,
310 std::ostringstream& out) const;
311
Dan Zimmerman7d511d92019-12-23 07:00:51 -0800312 // Encodes e.g. PCL[foo.dex:bar.dex]
313 void EncodeClassPath(const std::string& base_dir,
314 const std::vector<std::string>& dex_locations,
315 const std::vector<uint32_t>& checksums,
316 ClassLoaderType type,
317 std::ostringstream& out) const;
318
319 // Encodes the shared libraries classloaders and the parent classloader if
320 // either are present in info, e.g. {PCL[foo.dex]#PCL[bar.dex]};PCL[baz.dex]
321 void EncodeSharedLibAndParent(const ClassLoaderInfo& info,
322 const std::string& base_dir,
323 bool for_dex2oat,
324 ClassLoaderInfo* stored_info,
325 std::ostringstream& out) const;
326
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000327 bool ClassLoaderInfoMatch(const ClassLoaderInfo& info,
328 const ClassLoaderInfo& expected_info,
329 const std::string& context_spec,
330 bool verify_names,
331 bool verify_checksums) const;
332
Calin Juravle87e2cb62017-06-13 21:48:45 -0700333 // Extracts the class loader type from the given spec.
334 // Return ClassLoaderContext::kInvalidClassLoader if the class loader type is not
335 // recognized.
336 static ClassLoaderType ExtractClassLoaderType(const std::string& class_loader_spec);
337
338 // Returns the string representation of the class loader type.
339 // The returned format can be used when parsing a context spec.
340 static const char* GetClassLoaderTypeName(ClassLoaderType type);
341
Nicolas Geoffray06af3b42018-10-29 10:39:04 +0000342 // The class loader chain.
343 std::unique_ptr<ClassLoaderInfo> class_loader_chain_;
Calin Juravle87e2cb62017-06-13 21:48:45 -0700344
345 // Whether or not the class loader context should be ignored at runtime when loading the oat
346 // files. When true, dex2oat will use OatFile::kSpecialSharedLibrary as the classpath key in
347 // the oat file.
348 // TODO(calin): Can we get rid of this and cover all relevant use cases?
349 // (e.g. packages using prebuild system packages as shared libraries b/36480683)
350 bool special_shared_library_;
351
352 // Whether or not OpenDexFiles() was called.
353 bool dex_files_open_attempted_;
354 // The result of the last OpenDexFiles() operation.
355 bool dex_files_open_result_;
356
Calin Juravle57d0acc2017-07-11 17:41:30 -0700357 // Whether or not the context owns the opened dex and oat files.
358 // If true, the opened dex files will be de-allocated when the context is destructed.
359 // If false, the objects will continue to be alive.
360 // Note that for convenience the the opened dex/oat files are stored as unique pointers
361 // which will release their ownership in the destructor based on this flag.
362 const bool owns_the_dex_files_;
363
Calin Juravle87e2cb62017-06-13 21:48:45 -0700364 friend class ClassLoaderContextTest;
365
366 DISALLOW_COPY_AND_ASSIGN(ClassLoaderContext);
367};
368
369} // namespace art
370#endif // ART_RUNTIME_CLASS_LOADER_CONTEXT_H_