Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | */ |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_DEX_FILE_VERIFIER_H_ |
| 18 | #define ART_RUNTIME_DEX_FILE_VERIFIER_H_ |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 19 | |
Andreas Gampe | 0ba238d | 2014-07-29 01:22:07 -0700 | [diff] [blame] | 20 | #include <unordered_set> |
| 21 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 22 | #include "dex_file.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 23 | #include "safe_map.h" |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 24 | |
| 25 | namespace art { |
| 26 | |
| 27 | class DexFileVerifier { |
| 28 | public: |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 29 | static bool Verify(const DexFile* dex_file, const uint8_t* begin, size_t size, |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 30 | const char* location, std::string* error_msg); |
| 31 | |
| 32 | const std::string& FailureReason() const { |
| 33 | return failure_reason_; |
| 34 | } |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 35 | |
| 36 | private: |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 37 | DexFileVerifier(const DexFile* dex_file, const uint8_t* begin, size_t size, const char* location) |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 38 | : dex_file_(dex_file), begin_(begin), size_(size), location_(location), |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 39 | header_(&dex_file->GetHeader()), ptr_(nullptr), previous_item_(nullptr) { |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | bool Verify(); |
| 43 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 44 | bool CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, bool is_return_type); |
Andreas Gampe | 50d1bc1 | 2014-07-17 21:49:24 -0700 | [diff] [blame] | 45 | bool CheckListSize(const void* start, size_t count, size_t element_size, const char* label); |
Andreas Gampe | d4ae41f | 2014-09-02 11:17:34 -0700 | [diff] [blame] | 46 | // Check a list. The head is assumed to be at *ptr, and elements to be of size element_size. If |
| 47 | // successful, the ptr will be moved forward the amount covered by the list. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 48 | bool CheckList(size_t element_size, const char* label, const uint8_t* *ptr); |
Andreas Gampe | d4ae41f | 2014-09-02 11:17:34 -0700 | [diff] [blame] | 49 | // Checks whether the offset is zero (when size is zero) or that the offset falls within the area |
| 50 | // claimed by the file. |
| 51 | bool CheckValidOffsetAndSize(uint32_t offset, uint32_t size, const char* label); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 52 | bool CheckIndex(uint32_t field, uint32_t limit, const char* label); |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 53 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 54 | bool CheckHeader(); |
| 55 | bool CheckMap(); |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 56 | |
| 57 | uint32_t ReadUnsignedLittleEndian(uint32_t size); |
| 58 | bool CheckAndGetHandlerOffsets(const DexFile::CodeItem* code_item, |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 59 | uint32_t* handler_offsets, uint32_t handlers_size); |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 60 | bool CheckClassDataItemField(uint32_t idx, |
| 61 | uint32_t access_flags, |
| 62 | uint32_t class_access_flags, |
Andreas Gampe | 1a97357 | 2015-09-10 20:09:11 -0700 | [diff] [blame] | 63 | uint16_t class_type_index, |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 64 | bool expect_static); |
| 65 | bool CheckClassDataItemMethod(uint32_t idx, |
| 66 | uint32_t access_flags, |
| 67 | uint32_t class_access_flags, |
Andreas Gampe | 1a97357 | 2015-09-10 20:09:11 -0700 | [diff] [blame] | 68 | uint16_t class_type_index, |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 69 | uint32_t code_offset, |
| 70 | std::unordered_set<uint32_t>* direct_method_indexes, |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 71 | bool expect_direct); |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 72 | bool CheckOrderAndGetClassFlags(bool is_field, |
| 73 | const char* type_descr, |
| 74 | uint32_t curr_index, |
| 75 | uint32_t prev_index, |
| 76 | bool* have_class, |
| 77 | uint16_t* class_type_index, |
| 78 | uint32_t* class_access_flags); |
| 79 | |
Ian Rogers | 8a6bbfc | 2014-01-23 13:29:07 -0800 | [diff] [blame] | 80 | bool CheckPadding(size_t offset, uint32_t aligned_offset); |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 81 | bool CheckEncodedValue(); |
| 82 | bool CheckEncodedArray(); |
| 83 | bool CheckEncodedAnnotation(); |
| 84 | |
| 85 | bool CheckIntraClassDataItem(); |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 86 | // Check all fields of the given type from the given iterator. Load the class data from the first |
| 87 | // field, if necessary (and return it), or use the given values. |
| 88 | template <bool kStatic> |
| 89 | bool CheckIntraClassDataItemFields(ClassDataItemIterator* it, |
| 90 | bool* have_class, |
| 91 | uint16_t* class_type_index, |
| 92 | uint32_t* class_access_flags); |
| 93 | // Check all methods of the given type from the given iterator. Load the class data from the first |
| 94 | // method, if necessary (and return it), or use the given values. |
| 95 | template <bool kDirect> |
| 96 | bool CheckIntraClassDataItemMethods(ClassDataItemIterator* it, |
| 97 | std::unordered_set<uint32_t>* direct_method_indexes, |
| 98 | bool* have_class, |
| 99 | uint16_t* class_type_index, |
| 100 | uint32_t* class_access_flags); |
| 101 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 102 | bool CheckIntraCodeItem(); |
| 103 | bool CheckIntraStringDataItem(); |
| 104 | bool CheckIntraDebugInfoItem(); |
| 105 | bool CheckIntraAnnotationItem(); |
| 106 | bool CheckIntraAnnotationsDirectoryItem(); |
| 107 | |
Ian Rogers | 8a6bbfc | 2014-01-23 13:29:07 -0800 | [diff] [blame] | 108 | bool CheckIntraSectionIterate(size_t offset, uint32_t count, uint16_t type); |
| 109 | bool CheckIntraIdSection(size_t offset, uint32_t count, uint16_t type); |
| 110 | bool CheckIntraDataSection(size_t offset, uint32_t count, uint16_t type); |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 111 | bool CheckIntraSection(); |
| 112 | |
Ian Rogers | 8a6bbfc | 2014-01-23 13:29:07 -0800 | [diff] [blame] | 113 | bool CheckOffsetToTypeMap(size_t offset, uint16_t type); |
Andreas Gampe | e09269c | 2014-06-06 18:45:35 -0700 | [diff] [blame] | 114 | |
Andreas Gampe | 5e31dda | 2014-06-13 11:35:12 -0700 | [diff] [blame] | 115 | // Note: as sometimes kDexNoIndex16, being 0xFFFF, is a valid return value, we need an |
| 116 | // additional out parameter to signal any errors loading an index. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 117 | uint16_t FindFirstClassDataDefiner(const uint8_t* ptr, bool* success); |
| 118 | uint16_t FindFirstAnnotationsDirectoryDefiner(const uint8_t* ptr, bool* success); |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 119 | |
| 120 | bool CheckInterStringIdItem(); |
| 121 | bool CheckInterTypeIdItem(); |
| 122 | bool CheckInterProtoIdItem(); |
| 123 | bool CheckInterFieldIdItem(); |
| 124 | bool CheckInterMethodIdItem(); |
| 125 | bool CheckInterClassDefItem(); |
| 126 | bool CheckInterAnnotationSetRefList(); |
| 127 | bool CheckInterAnnotationSetItem(); |
| 128 | bool CheckInterClassDataItem(); |
| 129 | bool CheckInterAnnotationsDirectoryItem(); |
| 130 | |
Ian Rogers | 8a6bbfc | 2014-01-23 13:29:07 -0800 | [diff] [blame] | 131 | bool CheckInterSectionIterate(size_t offset, uint32_t count, uint16_t type); |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 132 | bool CheckInterSection(); |
| 133 | |
Andreas Gampe | e09269c | 2014-06-06 18:45:35 -0700 | [diff] [blame] | 134 | // Load a string by (type) index. Checks whether the index is in bounds, printing the error if |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 135 | // not. If there is an error, null is returned. |
Andreas Gampe | e09269c | 2014-06-06 18:45:35 -0700 | [diff] [blame] | 136 | const char* CheckLoadStringByIdx(uint32_t idx, const char* error_fmt); |
| 137 | const char* CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_fmt); |
| 138 | |
| 139 | // Load a field/method Id by index. Checks whether the index is in bounds, printing the error if |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 140 | // not. If there is an error, null is returned. |
Andreas Gampe | e09269c | 2014-06-06 18:45:35 -0700 | [diff] [blame] | 141 | const DexFile::FieldId* CheckLoadFieldId(uint32_t idx, const char* error_fmt); |
| 142 | const DexFile::MethodId* CheckLoadMethodId(uint32_t idx, const char* error_fmt); |
| 143 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 144 | void ErrorStringPrintf(const char* fmt, ...) |
| 145 | __attribute__((__format__(__printf__, 2, 3))) COLD_ATTR; |
| 146 | |
Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 147 | // Retrieve class index and class access flag from the given member. index is the member index, |
| 148 | // which is taken as either a field or a method index (as designated by is_field). The result, |
| 149 | // if the member and declaring class could be found, is stored in class_type_index and |
| 150 | // class_access_flags. |
| 151 | // This is an expensive lookup, as we have to find the class-def by type index, which is a |
| 152 | // linear search. The output values should thus be cached by the caller. |
| 153 | bool FindClassFlags(uint32_t index, |
| 154 | bool is_field, |
| 155 | uint16_t* class_type_index, |
| 156 | uint32_t* class_access_flags); |
| 157 | |
| 158 | // Check validity of the given access flags, interpreted for a field in the context of a class |
| 159 | // with the given second access flags. |
| 160 | static bool CheckFieldAccessFlags(uint32_t field_access_flags, |
| 161 | uint32_t class_access_flags, |
| 162 | std::string* error_msg); |
| 163 | // Check validity of the given method and access flags, in the context of a class with the given |
| 164 | // second access flags. |
| 165 | bool CheckMethodAccessFlags(uint32_t method_index, |
| 166 | uint32_t method_access_flags, |
| 167 | uint32_t class_access_flags, |
| 168 | bool has_code, |
| 169 | bool expect_direct, |
| 170 | std::string* error_msg); |
| 171 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 172 | const DexFile* const dex_file_; |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 173 | const uint8_t* const begin_; |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 174 | const size_t size_; |
| 175 | const char* const location_; |
| 176 | const DexFile::Header* const header_; |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 177 | |
Mathieu Chartier | 0f8e072 | 2015-10-26 14:52:42 -0700 | [diff] [blame] | 178 | struct OffsetTypeMapEmptyFn { |
| 179 | // Make a hash map slot empty by making the offset 0. Offset 0 is a valid dex file offset that |
| 180 | // is in the offset of the dex file header. However, we only store data section items in the |
| 181 | // map, and these are after the header. |
| 182 | void MakeEmpty(std::pair<uint32_t, uint16_t>& pair) const { |
| 183 | pair.first = 0u; |
| 184 | } |
| 185 | // Check if a hash map slot is empty. |
| 186 | bool IsEmpty(const std::pair<uint32_t, uint16_t>& pair) const { |
| 187 | return pair.first == 0; |
| 188 | } |
| 189 | }; |
| 190 | struct OffsetTypeMapHashCompareFn { |
| 191 | // Hash function for offset. |
| 192 | size_t operator()(const uint32_t key) const { |
| 193 | return key; |
| 194 | } |
| 195 | // std::equal function for offset. |
| 196 | bool operator()(const uint32_t a, const uint32_t b) const { |
| 197 | return a == b; |
| 198 | } |
| 199 | }; |
| 200 | // Map from offset to dex file type, HashMap for performance reasons. |
| 201 | AllocationTrackingHashMap<uint32_t, |
| 202 | uint16_t, |
| 203 | OffsetTypeMapEmptyFn, |
| 204 | kAllocatorTagDexFileVerifier, |
| 205 | OffsetTypeMapHashCompareFn, |
| 206 | OffsetTypeMapHashCompareFn> offset_to_type_map_; |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 207 | const uint8_t* ptr_; |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 208 | const void* previous_item_; |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 209 | |
| 210 | std::string failure_reason_; |
Andreas Gampe | 0ba238d | 2014-07-29 01:22:07 -0700 | [diff] [blame] | 211 | |
| 212 | // Set of type ids for which there are ClassDef elements in the dex file. |
| 213 | std::unordered_set<decltype(DexFile::ClassDef::class_idx_)> defined_classes_; |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 214 | }; |
| 215 | |
| 216 | } // namespace art |
| 217 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 218 | #endif // ART_RUNTIME_DEX_FILE_VERIFIER_H_ |