| /* |
| * Copyright (C) 2014 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #ifndef ART_RUNTIME_OAT_FILE_ASSISTANT_H_ |
| #define ART_RUNTIME_OAT_FILE_ASSISTANT_H_ |
| |
| #include <cstdint> |
| #include <memory> |
| #include <sstream> |
| #include <string> |
| |
| #include "arch/instruction_set.h" |
| #include "base/scoped_flock.h" |
| #include "base/unix_file/fd_file.h" |
| #include "compiler_filter.h" |
| #include "oat_file.h" |
| #include "os.h" |
| |
| namespace art { |
| |
| namespace gc { |
| namespace space { |
| class ImageSpace; |
| } // namespace space |
| } // namespace gc |
| |
| // Class for assisting with oat file management. |
| // |
| // This class collects common utilities for determining the status of an oat |
| // file on the device, updating the oat file, and loading the oat file. |
| // |
| // The oat file assistant is intended to be used with dex locations not on the |
| // boot class path. See the IsInBootClassPath method for a way to check if the |
| // dex location is in the boot class path. |
| class OatFileAssistant { |
| public: |
| // The default compile filter to use when optimizing dex file at load time if they |
| // are out of date. |
| static const CompilerFilter::Filter kDefaultCompilerFilterForDexLoading = |
| CompilerFilter::kQuicken; |
| |
| enum DexOptNeeded { |
| // No dexopt should (or can) be done to update the apk/jar. |
| // Matches Java: dalvik.system.DexFile.NO_DEXOPT_NEEDED = 0 |
| kNoDexOptNeeded = 0, |
| |
| // dex2oat should be run to update the apk/jar from scratch. |
| // Matches Java: dalvik.system.DexFile.DEX2OAT_FROM_SCRATCH = 1 |
| kDex2OatFromScratch = 1, |
| |
| // dex2oat should be run to update the apk/jar because the existing code |
| // is out of date with respect to the boot image. |
| // Matches Java: dalvik.system.DexFile.DEX2OAT_FOR_BOOT_IMAGE |
| kDex2OatForBootImage = 2, |
| |
| // dex2oat should be run to update the apk/jar because the existing code |
| // is out of date with respect to the target compiler filter. |
| // Matches Java: dalvik.system.DexFile.DEX2OAT_FOR_FILTER |
| kDex2OatForFilter = 3, |
| |
| // dex2oat should be run to update the apk/jar because the existing code |
| // is not relocated to match the boot image. |
| // Matches Java: dalvik.system.DexFile.DEX2OAT_FOR_RELOCATION |
| kDex2OatForRelocation = 4, |
| }; |
| |
| enum OatStatus { |
| // kOatCannotOpen - The oat file cannot be opened, because it does not |
| // exist, is unreadable, or otherwise corrupted. |
| kOatCannotOpen, |
| |
| // kOatDexOutOfDate - The oat file is out of date with respect to the dex file. |
| kOatDexOutOfDate, |
| |
| // kOatBootImageOutOfDate - The oat file is up to date with respect to the |
| // dex file, but is out of date with respect to the boot image. |
| kOatBootImageOutOfDate, |
| |
| // kOatRelocationOutOfDate - The oat file is up to date with respect to |
| // the dex file and boot image, but contains compiled code that has the |
| // wrong patch delta with respect to the boot image. Patchoat should be |
| // run on the oat file to update the patch delta of the compiled code to |
| // match the boot image. |
| kOatRelocationOutOfDate, |
| |
| // kOatUpToDate - The oat file is completely up to date with respect to |
| // the dex file and boot image. |
| kOatUpToDate, |
| }; |
| |
| // Constructs an OatFileAssistant object to assist the oat file |
| // corresponding to the given dex location with the target instruction set. |
| // |
| // The dex_location must not be null and should remain available and |
| // unchanged for the duration of the lifetime of the OatFileAssistant object. |
| // Typically the dex_location is the absolute path to the original, |
| // un-optimized dex file. |
| // |
| // Note: Currently the dex_location must have an extension. |
| // TODO: Relax this restriction? |
| // |
| // The isa should be either the 32 bit or 64 bit variant for the current |
| // device. For example, on an arm device, use arm or arm64. An oat file can |
| // be loaded executable only if the ISA matches the current runtime. |
| // |
| // load_executable should be true if the caller intends to try and load |
| // executable code for this dex location. |
| OatFileAssistant(const char* dex_location, |
| const InstructionSet isa, |
| bool load_executable); |
| |
| ~OatFileAssistant(); |
| |
| // Returns true if the dex location refers to an element of the boot class |
| // path. |
| bool IsInBootClassPath(); |
| |
| // Obtains a lock on the target oat file. |
| // Only one OatFileAssistant object can hold the lock for a target oat file |
| // at a time. The Lock is released automatically when the OatFileAssistant |
| // object goes out of scope. The Lock() method must not be called if the |
| // lock has already been acquired. |
| // |
| // Returns true on success. |
| // Returns false on error, in which case error_msg will contain more |
| // information on the error. |
| // |
| // The 'error_msg' argument must not be null. |
| // |
| // This is intended to be used to avoid race conditions when multiple |
| // processes generate oat files, such as when a foreground Activity and |
| // a background Service both use DexClassLoaders pointing to the same dex |
| // file. |
| bool Lock(std::string* error_msg); |
| |
| // Return what action needs to be taken to produce up-to-date code for this |
| // dex location that is at least as good as an oat file generated with the |
| // given compiler filter. profile_changed should be true to indicate the |
| // profile has recently changed for this dex location. |
| // Returns a positive status code if the status refers to the oat file in |
| // the oat location. Returns a negative status code if the status refers to |
| // the oat file in the odex location. |
| int GetDexOptNeeded(CompilerFilter::Filter target_compiler_filter, bool profile_changed = false); |
| |
| // Returns true if there is up-to-date code for this dex location, |
| // irrespective of the compiler filter of the up-to-date code. |
| bool IsUpToDate(); |
| |
| // Return code used when attempting to generate updated code. |
| enum ResultOfAttemptToUpdate { |
| kUpdateFailed, // We tried making the code up to date, but |
| // encountered an unexpected failure. |
| kUpdateNotAttempted, // We wanted to update the code, but determined we |
| // should not make the attempt. |
| kUpdateSucceeded // We successfully made the code up to date |
| // (possibly by doing nothing). |
| }; |
| |
| // Attempts to generate or relocate the oat file as needed to make it up to |
| // date based on the current runtime and compiler options. |
| // profile_changed should be true to indicate the profile has recently |
| // changed for this dex location. |
| // |
| // Returns the result of attempting to update the code. |
| // |
| // If the result is not kUpdateSucceeded, the value of error_msg will be set |
| // to a string describing why there was a failure or the update was not |
| // attempted. error_msg must not be null. |
| ResultOfAttemptToUpdate MakeUpToDate(bool profile_changed, std::string* error_msg); |
| |
| // Returns an oat file that can be used for loading dex files. |
| // Returns null if no suitable oat file was found. |
| // |
| // After this call, no other methods of the OatFileAssistant should be |
| // called, because access to the loaded oat file has been taken away from |
| // the OatFileAssistant object. |
| std::unique_ptr<OatFile> GetBestOatFile(); |
| |
| // Returns a human readable description of the status of the code for the |
| // dex file. The returned description is for debugging purposes only. |
| std::string GetStatusDump(); |
| |
| // Open and returns an image space associated with the oat file. |
| static std::unique_ptr<gc::space::ImageSpace> OpenImageSpace(const OatFile* oat_file); |
| |
| // Loads the dex files in the given oat file for the given dex location. |
| // The oat file should be up to date for the given dex location. |
| // This loads multiple dex files in the case of multidex. |
| // Returns an empty vector if no dex files for that location could be loaded |
| // from the oat file. |
| // |
| // The caller is responsible for freeing the dex_files returned, if any. The |
| // dex_files will only remain valid as long as the oat_file is valid. |
| static std::vector<std::unique_ptr<const DexFile>> LoadDexFiles( |
| const OatFile& oat_file, const char* dex_location); |
| |
| // Returns true if there are dex files in the original dex location that can |
| // be compiled with dex2oat for this dex location. |
| // Returns false if there is no original dex file, or if the original dex |
| // file is an apk/zip without a classes.dex entry. |
| bool HasOriginalDexFiles(); |
| |
| // If the dex file has been installed with a compiled oat file alongside |
| // it, the compiled oat file will have the extension .odex, and is referred |
| // to as the odex file. It is called odex for legacy reasons; the file is |
| // really an oat file. The odex file will often, but not always, have a |
| // patch delta of 0 and need to be relocated before use for the purposes of |
| // ASLR. The odex file is treated as if it were read-only. |
| // |
| // Returns the status of the odex file for the dex location. |
| OatStatus OdexFileStatus(); |
| |
| // When the dex files is compiled on the target device, the oat file is the |
| // result. The oat file will have been relocated to some |
| // (possibly-out-of-date) offset for ASLR. |
| // |
| // Returns the status of the oat file for the dex location. |
| OatStatus OatFileStatus(); |
| |
| // Executes dex2oat using the current runtime configuration overridden with |
| // the given arguments. This does not check to see if dex2oat is enabled in |
| // the runtime configuration. |
| // Returns true on success. |
| // |
| // If there is a failure, the value of error_msg will be set to a string |
| // describing why there was failure. error_msg must not be null. |
| // |
| // TODO: The OatFileAssistant probably isn't the right place to have this |
| // function. |
| static bool Dex2Oat(const std::vector<std::string>& args, std::string* error_msg); |
| |
| // Constructs the odex file name for the given dex location. |
| // Returns true on success, in which case odex_filename is set to the odex |
| // file name. |
| // Returns false on error, in which case error_msg describes the error and |
| // odex_filename is not changed. |
| // Neither odex_filename nor error_msg may be null. |
| static bool DexLocationToOdexFilename(const std::string& location, |
| InstructionSet isa, |
| std::string* odex_filename, |
| std::string* error_msg); |
| |
| // Constructs the oat file name for the given dex location. |
| // Returns true on success, in which case oat_filename is set to the oat |
| // file name. |
| // Returns false on error, in which case error_msg describes the error and |
| // oat_filename is not changed. |
| // Neither oat_filename nor error_msg may be null. |
| static bool DexLocationToOatFilename(const std::string& location, |
| InstructionSet isa, |
| std::string* oat_filename, |
| std::string* error_msg); |
| |
| private: |
| struct ImageInfo { |
| uint32_t oat_checksum = 0; |
| uintptr_t oat_data_begin = 0; |
| int32_t patch_delta = 0; |
| std::string location; |
| |
| static std::unique_ptr<ImageInfo> GetRuntimeImageInfo(InstructionSet isa, |
| std::string* error_msg); |
| }; |
| |
| class OatFileInfo { |
| public: |
| // Initially the info is for no file in particular. It will treat the |
| // file as out of date until Reset is called with a real filename to use |
| // the cache for. |
| // Pass true for is_oat_location if the information associated with this |
| // OatFileInfo is for the oat location, as opposed to the odex location. |
| OatFileInfo(OatFileAssistant* oat_file_assistant, bool is_oat_location); |
| |
| bool IsOatLocation(); |
| |
| const std::string* Filename(); |
| |
| // Returns true if this oat file can be used for running code. The oat |
| // file can be used for running code as long as it is not out of date with |
| // respect to the dex code or boot image. An oat file that is out of date |
| // with respect to relocation is considered useable, because it's possible |
| // to interpret the dex code rather than run the unrelocated compiled |
| // code. |
| bool IsUseable(); |
| |
| // Returns the status of this oat file. |
| OatStatus Status(); |
| |
| // Return the DexOptNeeded value for this oat file with respect to the |
| // given target_compilation_filter. |
| // profile_changed should be true to indicate the profile has recently |
| // changed for this dex location. |
| DexOptNeeded GetDexOptNeeded(CompilerFilter::Filter target_compiler_filter, |
| bool profile_changed); |
| |
| // Returns the loaded file. |
| // Loads the file if needed. Returns null if the file failed to load. |
| // The caller shouldn't clean up or free the returned pointer. |
| const OatFile* GetFile(); |
| |
| // Returns true if the file is opened executable. |
| bool IsExecutable(); |
| |
| // Clear any cached information about the file that depends on the |
| // contents of the file. This does not reset the provided filename. |
| void Reset(); |
| |
| // Clear any cached information and switch to getting info about the oat |
| // file with the given filename. |
| void Reset(const std::string& filename); |
| |
| // Release the loaded oat file for runtime use. |
| // Returns null if the oat file hasn't been loaded or is out of date. |
| // Ensures the returned file is not loaded executable if it has unuseable |
| // compiled code. |
| // |
| // After this call, no other methods of the OatFileInfo should be |
| // called, because access to the loaded oat file has been taken away from |
| // the OatFileInfo object. |
| std::unique_ptr<OatFile> ReleaseFileForUse(); |
| |
| private: |
| // Returns true if the compiler filter used to generate the file is at |
| // least as good as the given target filter. profile_changed should be |
| // true to indicate the profile has recently changed for this dex |
| // location. |
| bool CompilerFilterIsOkay(CompilerFilter::Filter target, bool profile_changed); |
| |
| // Release the loaded oat file. |
| // Returns null if the oat file hasn't been loaded. |
| // |
| // After this call, no other methods of the OatFileInfo should be |
| // called, because access to the loaded oat file has been taken away from |
| // the OatFileInfo object. |
| std::unique_ptr<OatFile> ReleaseFile(); |
| |
| OatFileAssistant* oat_file_assistant_; |
| const bool is_oat_location_; |
| |
| bool filename_provided_ = false; |
| std::string filename_; |
| |
| bool load_attempted_ = false; |
| std::unique_ptr<OatFile> file_; |
| |
| bool status_attempted_ = false; |
| OatStatus status_ = OatStatus::kOatCannotOpen; |
| |
| // For debugging only. |
| // If this flag is set, the file has been released to the user and the |
| // OatFileInfo object is in a bad state and should no longer be used. |
| bool file_released_ = false; |
| }; |
| |
| // Generate the oat file for the given info from the dex file using the |
| // current runtime compiler options. |
| // This does not check the current status before attempting to generate the |
| // oat file. |
| // |
| // If the result is not kUpdateSucceeded, the value of error_msg will be set |
| // to a string describing why there was a failure or the update was not |
| // attempted. error_msg must not be null. |
| ResultOfAttemptToUpdate GenerateOatFileNoChecks(OatFileInfo& info, std::string* error_msg); |
| |
| // Return info for the best oat file. |
| OatFileInfo& GetBestInfo(); |
| |
| // Returns true if the dex checksums in the given vdex file are up to date |
| // with respect to the dex location. If the dex checksums are not up to |
| // date, error_msg is updated with a message describing the problem. |
| bool DexChecksumUpToDate(const VdexFile& file, std::string* error_msg); |
| |
| // Returns true if the dex checksums in the given oat file are up to date |
| // with respect to the dex location. If the dex checksums are not up to |
| // date, error_msg is updated with a message describing the problem. |
| bool DexChecksumUpToDate(const OatFile& file, std::string* error_msg); |
| |
| // Return the status for a given opened oat file with respect to the dex |
| // location. |
| OatStatus GivenOatFileStatus(const OatFile& file); |
| |
| // Returns the current image location. |
| // Returns an empty string if the image location could not be retrieved. |
| // |
| // TODO: This method should belong with an image file manager, not |
| // the oat file assistant. |
| static std::string ImageLocation(); |
| |
| // Gets the dex checksums required for an up-to-date oat file. |
| // Returns cached_required_dex_checksums if the required checksums were |
| // located. Returns null if the required checksums were not found. The |
| // caller shouldn't clean up or free the returned pointer. This sets the |
| // has_original_dex_files_ field to true if the checksums were found for the |
| // dex_location_ dex file. |
| const std::vector<uint32_t>* GetRequiredDexChecksums(); |
| |
| // Returns the loaded image info. |
| // Loads the image info if needed. Returns null if the image info failed |
| // to load. |
| // The caller shouldn't clean up or free the returned pointer. |
| const ImageInfo* GetImageInfo(); |
| |
| // To implement Lock(), we lock a dummy file where the oat file would go |
| // (adding ".flock" to the target file name) and retain the lock for the |
| // remaining lifetime of the OatFileAssistant object. |
| ScopedFlock flock_; |
| |
| std::string dex_location_; |
| |
| // Whether or not the parent directory of the dex file is writable. |
| bool dex_parent_writable_ = false; |
| |
| // In a properly constructed OatFileAssistant object, isa_ should be either |
| // the 32 or 64 bit variant for the current device. |
| const InstructionSet isa_ = kNone; |
| |
| // Whether we will attempt to load oat files executable. |
| bool load_executable_ = false; |
| |
| // Cached value of the required dex checksums. |
| // This should be accessed only by the GetRequiredDexChecksums() method. |
| std::vector<uint32_t> cached_required_dex_checksums_; |
| bool required_dex_checksums_attempted_ = false; |
| bool required_dex_checksums_found_; |
| bool has_original_dex_files_; |
| |
| OatFileInfo odex_; |
| OatFileInfo oat_; |
| |
| // Cached value of the image info. |
| // Use the GetImageInfo method rather than accessing these directly. |
| // TODO: The image info should probably be moved out of the oat file |
| // assistant to an image file manager. |
| bool image_info_load_attempted_ = false; |
| std::unique_ptr<ImageInfo> cached_image_info_; |
| |
| friend class OatFileAssistantTest; |
| |
| DISALLOW_COPY_AND_ASSIGN(OatFileAssistant); |
| }; |
| |
| std::ostream& operator << (std::ostream& stream, const OatFileAssistant::OatStatus status); |
| |
| } // namespace art |
| |
| #endif // ART_RUNTIME_OAT_FILE_ASSISTANT_H_ |