Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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_OAT_FILE_MANAGER_H_ |
| 18 | #define ART_RUNTIME_OAT_FILE_MANAGER_H_ |
| 19 | |
| 20 | #include <memory> |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 21 | #include <set> |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 22 | #include <string> |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 23 | #include <unordered_map> |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 24 | #include <vector> |
| 25 | |
| 26 | #include "base/macros.h" |
| 27 | #include "base/mutex.h" |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 28 | #include "jni.h" |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 29 | |
| 30 | namespace art { |
| 31 | |
| 32 | namespace gc { |
| 33 | namespace space { |
| 34 | class ImageSpace; |
| 35 | } // namespace space |
| 36 | } // namespace gc |
| 37 | |
Calin Juravle | 27e0d1f | 2017-07-26 00:16:07 -0700 | [diff] [blame] | 38 | class ClassLoaderContext; |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 39 | class DexFile; |
| 40 | class OatFile; |
| 41 | |
| 42 | // Class for dealing with oat file management. |
| 43 | // |
| 44 | // This class knows about all the loaded oat files and provides utility functions. The oat file |
| 45 | // pointers returned from functions are always valid. |
| 46 | class OatFileManager { |
| 47 | public: |
Nicolas Geoffray | 68bf390 | 2017-09-07 14:40:48 +0100 | [diff] [blame] | 48 | OatFileManager() : have_non_pic_oat_file_(false), only_use_system_oat_files_(false) {} |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 49 | ~OatFileManager(); |
| 50 | |
| 51 | // Add an oat file to the internal accounting, std::aborts if there already exists an oat file |
| 52 | // with the same base address. Returns the oat file pointer from oat_file. |
| 53 | const OatFile* RegisterOatFile(std::unique_ptr<const OatFile> oat_file) |
| 54 | REQUIRES(!Locks::oat_file_manager_lock_); |
| 55 | |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 56 | void UnRegisterAndDeleteOatFile(const OatFile* oat_file) |
| 57 | REQUIRES(!Locks::oat_file_manager_lock_); |
| 58 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 59 | // Find the first opened oat file with the same location, returns null if there are none. |
| 60 | const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location) const |
| 61 | REQUIRES(!Locks::oat_file_manager_lock_); |
| 62 | |
Calin Juravle | 0b79127 | 2016-04-18 16:38:27 +0100 | [diff] [blame] | 63 | // Find the oat file which contains a dex files with the given dex base location, |
| 64 | // returns null if there are none. |
| 65 | const OatFile* FindOpenedOatFileFromDexLocation(const std::string& dex_base_location) const |
| 66 | REQUIRES(!Locks::oat_file_manager_lock_); |
| 67 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 68 | // Returns true if we have a non pic oat file. |
| 69 | bool HaveNonPicOatFile() const { |
| 70 | return have_non_pic_oat_file_; |
| 71 | } |
| 72 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 73 | // Returns the boot image oat files. |
| 74 | std::vector<const OatFile*> GetBootOatFiles() const; |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 75 | |
| 76 | // Returns the first non-image oat file in the class path. |
| 77 | const OatFile* GetPrimaryOatFile() const REQUIRES(!Locks::oat_file_manager_lock_); |
| 78 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 79 | // Returns the oat files for the images, registers the oat files. |
| 80 | // Takes ownership of the imagespace's underlying oat files. |
| 81 | std::vector<const OatFile*> RegisterImageOatFiles(std::vector<gc::space::ImageSpace*> spaces) |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 82 | REQUIRES(!Locks::oat_file_manager_lock_); |
| 83 | |
| 84 | // Finds or creates the oat file holding dex_location. Then loads and returns |
| 85 | // all corresponding dex files (there may be more than one dex file loaded |
| 86 | // in the case of multidex). |
| 87 | // This may return the original, unquickened dex files if the oat file could |
| 88 | // not be generated. |
| 89 | // |
| 90 | // Returns an empty vector if the dex files could not be loaded. In this |
| 91 | // case, there will be at least one error message returned describing why no |
| 92 | // dex files could not be loaded. The 'error_msgs' argument must not be |
| 93 | // null, regardless of whether there is an error or not. |
| 94 | // |
| 95 | // This method should not be called with the mutator_lock_ held, because it |
| 96 | // could end up starving GC if we need to generate or relocate any oat |
| 97 | // files. |
| 98 | std::vector<std::unique_ptr<const DexFile>> OpenDexFilesFromOat( |
| 99 | const char* dex_location, |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 100 | jobject class_loader, |
| 101 | jobjectArray dex_elements, |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 102 | /*out*/ const OatFile** out_oat_file, |
| 103 | /*out*/ std::vector<std::string>* error_msgs) |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 104 | REQUIRES(!Locks::oat_file_manager_lock_, !Locks::mutator_lock_); |
| 105 | |
Nicolas Geoffray | 04680f3 | 2016-03-17 11:56:54 +0000 | [diff] [blame] | 106 | void DumpForSigQuit(std::ostream& os); |
| 107 | |
Nicolas Geoffray | 68bf390 | 2017-09-07 14:40:48 +0100 | [diff] [blame] | 108 | void SetOnlyUseSystemOatFiles(); |
| 109 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 110 | private: |
Calin Juravle | 27e0d1f | 2017-07-26 00:16:07 -0700 | [diff] [blame] | 111 | // Check that the class loader context of the given oat file matches the given context. |
| 112 | // This will perform a check that all class loaders in the chain have the same type and |
| 113 | // classpath. |
| 114 | // If the context is null (which means the initial class loader was null or unsupported) |
| 115 | // this returns false. |
| 116 | // If the context does not validate the method will check for duplicate class definitions of |
| 117 | // the given oat file against the oat files (either from the class loaders if possible or all |
| 118 | // non-boot oat files otherwise). |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 119 | // Return true if there are any class definition collisions in the oat_file. |
Jeff Hao | f0192c8 | 2016-03-28 20:39:50 -0700 | [diff] [blame] | 120 | bool HasCollisions(const OatFile* oat_file, |
Calin Juravle | 27e0d1f | 2017-07-26 00:16:07 -0700 | [diff] [blame] | 121 | const ClassLoaderContext* context, |
Jeff Hao | f0192c8 | 2016-03-28 20:39:50 -0700 | [diff] [blame] | 122 | /*out*/ std::string* error_msg) const |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 123 | REQUIRES(!Locks::oat_file_manager_lock_); |
| 124 | |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 125 | const OatFile* FindOpenedOatFileFromOatLocationLocked(const std::string& oat_location) const |
| 126 | REQUIRES(Locks::oat_file_manager_lock_); |
| 127 | |
| 128 | std::set<std::unique_ptr<const OatFile>> oat_files_ GUARDED_BY(Locks::oat_file_manager_lock_); |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 129 | bool have_non_pic_oat_file_; |
Nicolas Geoffray | 68bf390 | 2017-09-07 14:40:48 +0100 | [diff] [blame] | 130 | bool only_use_system_oat_files_; |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 131 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 132 | DISALLOW_COPY_AND_ASSIGN(OatFileManager); |
| 133 | }; |
| 134 | |
| 135 | } // namespace art |
| 136 | |
| 137 | #endif // ART_RUNTIME_OAT_FILE_MANAGER_H_ |