Home | History | Annotate | Download | only in dex
      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 #ifndef ART_LIBDEXFILE_DEX_DEX_FILE_LOADER_H_
     18 #define ART_LIBDEXFILE_DEX_DEX_FILE_LOADER_H_
     19 
     20 #include <cstdint>
     21 #include <memory>
     22 #include <string>
     23 #include <vector>
     24 
     25 namespace art {
     26 
     27 class DexFile;
     28 class DexFileContainer;
     29 class MemMap;
     30 class OatDexFile;
     31 
     32 class DexZipArchive;
     33 
     34 enum class DexFileLoaderErrorCode {
     35   kNoError,
     36   kEntryNotFound,
     37   kExtractToMemoryError,
     38   kDexFileError,
     39   kMakeReadOnlyError,
     40   kVerifyError
     41 };
     42 
     43 // Class that is used to open dex files and deal with corresponding multidex and location logic.
     44 class DexFileLoader {
     45  public:
     46   // name of the DexFile entry within a zip archive
     47   static constexpr const char* kClassesDex = "classes.dex";
     48 
     49   // The separator character in MultiDex locations.
     50   static constexpr char kMultiDexSeparator = '!';
     51 
     52   // Return true if the magic is valid for dex or cdex.
     53   static bool IsMagicValid(uint32_t magic);
     54   static bool IsMagicValid(const uint8_t* magic);
     55 
     56   // Return true if the corresponding version and magic is valid.
     57   static bool IsVersionAndMagicValid(const uint8_t* magic);
     58 
     59   // Check whether a location denotes a multidex dex file. This is a very simple check: returns
     60   // whether the string contains the separator character.
     61   static bool IsMultiDexLocation(const char* location);
     62 
     63   // Return the name of the index-th classes.dex in a multidex zip file. This is classes.dex for
     64   // index == 0, and classes{index + 1}.dex else.
     65   static std::string GetMultiDexClassesDexName(size_t index);
     66 
     67   // Return the (possibly synthetic) dex location for a multidex entry. This is dex_location for
     68   // index == 0, and dex_location + multi-dex-separator + GetMultiDexClassesDexName(index) else.
     69   static std::string GetMultiDexLocation(size_t index, const char* dex_location);
     70 
     71   // Returns the canonical form of the given dex location.
     72   //
     73   // There are different flavors of "dex locations" as follows:
     74   // the file name of a dex file:
     75   //     The actual file path that the dex file has on disk.
     76   // dex_location:
     77   //     This acts as a key for the class linker to know which dex file to load.
     78   //     It may correspond to either an old odex file or a particular dex file
     79   //     inside an oat file. In the first case it will also match the file name
     80   //     of the dex file. In the second case (oat) it will include the file name
     81   //     and possibly some multidex annotation to uniquely identify it.
     82   // canonical_dex_location:
     83   //     the dex_location where its file name part has been made canonical.
     84   static std::string GetDexCanonicalLocation(const char* dex_location);
     85 
     86   // For normal dex files, location and base location coincide. If a dex file is part of a multidex
     87   // archive, the base location is the name of the originating jar/apk, stripped of any internal
     88   // classes*.dex path.
     89   static std::string GetBaseLocation(const char* location) {
     90     const char* pos = strrchr(location, kMultiDexSeparator);
     91     return (pos == nullptr) ? location : std::string(location, pos - location);
     92   }
     93 
     94   static std::string GetBaseLocation(const std::string& location) {
     95     return GetBaseLocation(location.c_str());
     96   }
     97 
     98   // Returns the '!classes*.dex' part of the dex location. Returns an empty
     99   // string if there is no multidex suffix for the given location.
    100   // The kMultiDexSeparator is included in the returned suffix.
    101   static std::string GetMultiDexSuffix(const std::string& location) {
    102     size_t pos = location.rfind(kMultiDexSeparator);
    103     return (pos == std::string::npos) ? std::string() : location.substr(pos);
    104   }
    105 
    106   virtual ~DexFileLoader() { }
    107 
    108   // Returns the checksums of a file for comparison with GetLocationChecksum().
    109   // For .dex files, this is the single header checksum.
    110   // For zip files, this is the zip entry CRC32 checksum for classes.dex and
    111   // each additional multidex entry classes2.dex, classes3.dex, etc.
    112   // If a valid zip_fd is provided the file content will be read directly from
    113   // the descriptor and `filename` will be used as alias for error logging. If
    114   // zip_fd is -1, the method will try to open the `filename` and read the
    115   // content from it.
    116   // Return true if the checksums could be found, false otherwise.
    117   virtual bool GetMultiDexChecksums(const char* filename,
    118                                     std::vector<uint32_t>* checksums,
    119                                     std::string* error_msg,
    120                                     int zip_fd = -1,
    121                                     bool* zip_file_only_contains_uncompress_dex = nullptr) const;
    122 
    123   // Opens .dex file, backed by existing memory
    124   virtual std::unique_ptr<const DexFile> Open(
    125       const uint8_t* base,
    126       size_t size,
    127       const std::string& location,
    128       uint32_t location_checksum,
    129       const OatDexFile* oat_dex_file,
    130       bool verify,
    131       bool verify_checksum,
    132       std::string* error_msg,
    133       std::unique_ptr<DexFileContainer> container = nullptr) const;
    134 
    135   // Open a dex file with a separate data section.
    136   virtual std::unique_ptr<const DexFile> OpenWithDataSection(
    137       const uint8_t* base,
    138       size_t size,
    139       const uint8_t* data_base,
    140       size_t data_size,
    141       const std::string& location,
    142       uint32_t location_checksum,
    143       const OatDexFile* oat_dex_file,
    144       bool verify,
    145       bool verify_checksum,
    146       std::string* error_msg) const;
    147 
    148 
    149   // Opens all .dex files found in the memory map, guessing the container format based on file
    150   // extension.
    151   virtual bool OpenAll(const uint8_t* base,
    152                        size_t size,
    153                        const std::string& location,
    154                        bool verify,
    155                        bool verify_checksum,
    156                        DexFileLoaderErrorCode* error_code,
    157                        std::string* error_msg,
    158                        std::vector<std::unique_ptr<const DexFile>>* dex_files) const;
    159 
    160  protected:
    161   enum class VerifyResult {  // private
    162     kVerifyNotAttempted,
    163     kVerifySucceeded,
    164     kVerifyFailed
    165   };
    166 
    167   static std::unique_ptr<DexFile> OpenCommon(const uint8_t* base,
    168                                              size_t size,
    169                                              const uint8_t* data_base,
    170                                              size_t data_size,
    171                                              const std::string& location,
    172                                              uint32_t location_checksum,
    173                                              const OatDexFile* oat_dex_file,
    174                                              bool verify,
    175                                              bool verify_checksum,
    176                                              std::string* error_msg,
    177                                              std::unique_ptr<DexFileContainer> container,
    178                                              VerifyResult* verify_result);
    179 
    180  private:
    181   // Open all classesXXX.dex files from a zip archive.
    182   bool OpenAllDexFilesFromZip(const DexZipArchive& zip_archive,
    183                               const std::string& location,
    184                               bool verify,
    185                               bool verify_checksum,
    186                               DexFileLoaderErrorCode* error_code,
    187                               std::string* error_msg,
    188                               std::vector<std::unique_ptr<const DexFile>>* dex_files) const;
    189 
    190   // Opens .dex file from the entry_name in a zip archive. error_code is undefined when non-null
    191   // return.
    192   std::unique_ptr<const DexFile> OpenOneDexFileFromZip(const DexZipArchive& zip_archive,
    193                                                        const char* entry_name,
    194                                                        const std::string& location,
    195                                                        bool verify,
    196                                                        bool verify_checksum,
    197                                                        DexFileLoaderErrorCode* error_code,
    198                                                        std::string* error_msg) const;
    199 };
    200 
    201 }  // namespace art
    202 
    203 #endif  // ART_LIBDEXFILE_DEX_DEX_FILE_LOADER_H_
    204