blob: 90409db44bf9e461d219d3e55b67c11a580aa6ea [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 */
jeffhao10037c82012-01-23 15:06:23 -080016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_DEX_FILE_VERIFIER_H_
18#define ART_RUNTIME_DEX_FILE_VERIFIER_H_
jeffhao10037c82012-01-23 15:06:23 -080019
Andreas Gampe0ba238d2014-07-29 01:22:07 -070020#include <unordered_set>
21
jeffhao10037c82012-01-23 15:06:23 -080022#include "dex_file.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070023#include "safe_map.h"
jeffhao10037c82012-01-23 15:06:23 -080024
25namespace art {
26
27class DexFileVerifier {
28 public:
Ian Rogers13735952014-10-08 12:43:28 -070029 static bool Verify(const DexFile* dex_file, const uint8_t* begin, size_t size,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070030 const char* location, std::string* error_msg);
31
32 const std::string& FailureReason() const {
33 return failure_reason_;
34 }
jeffhao10037c82012-01-23 15:06:23 -080035
36 private:
Ian Rogers13735952014-10-08 12:43:28 -070037 DexFileVerifier(const DexFile* dex_file, const uint8_t* begin, size_t size, const char* location)
Ian Rogers8d31bbd2013-10-13 10:44:14 -070038 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
Mathieu Chartier2cebb242015-04-21 16:50:40 -070039 header_(&dex_file->GetHeader()), ptr_(nullptr), previous_item_(nullptr) {
jeffhao10037c82012-01-23 15:06:23 -080040 }
41
42 bool Verify();
43
Ian Rogers8d31bbd2013-10-13 10:44:14 -070044 bool CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, bool is_return_type);
Andreas Gampe50d1bc12014-07-17 21:49:24 -070045 bool CheckListSize(const void* start, size_t count, size_t element_size, const char* label);
Andreas Gamped4ae41f2014-09-02 11:17:34 -070046 // 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 Rogers13735952014-10-08 12:43:28 -070048 bool CheckList(size_t element_size, const char* label, const uint8_t* *ptr);
Andreas Gamped4ae41f2014-09-02 11:17:34 -070049 // Checks whether the offset is zero (when size is zero) or that the offset falls within the area
50 // claimed by the file.
Andreas Gampeb512c0e2016-02-19 19:45:34 -080051 bool CheckValidOffsetAndSize(uint32_t offset, uint32_t size, size_t alignment, const char* label);
Vladimir Marko0ca8add2016-05-03 17:17:50 +010052 // Checks whether the size is less than the limit.
53 bool CheckSizeLimit(uint32_t size, uint32_t limit, const char* label);
Ian Rogers8d31bbd2013-10-13 10:44:14 -070054 bool CheckIndex(uint32_t field, uint32_t limit, const char* label);
jeffhao10037c82012-01-23 15:06:23 -080055
Ian Rogers8d31bbd2013-10-13 10:44:14 -070056 bool CheckHeader();
57 bool CheckMap();
jeffhao10037c82012-01-23 15:06:23 -080058
59 uint32_t ReadUnsignedLittleEndian(uint32_t size);
60 bool CheckAndGetHandlerOffsets(const DexFile::CodeItem* code_item,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070061 uint32_t* handler_offsets, uint32_t handlers_size);
Andreas Gampee6215c02015-08-31 18:54:38 -070062 bool CheckClassDataItemField(uint32_t idx,
63 uint32_t access_flags,
64 uint32_t class_access_flags,
Andreas Gampe1a973572015-09-10 20:09:11 -070065 uint16_t class_type_index,
Andreas Gampee6215c02015-08-31 18:54:38 -070066 bool expect_static);
67 bool CheckClassDataItemMethod(uint32_t idx,
68 uint32_t access_flags,
69 uint32_t class_access_flags,
Andreas Gampe1a973572015-09-10 20:09:11 -070070 uint16_t class_type_index,
Andreas Gampee6215c02015-08-31 18:54:38 -070071 uint32_t code_offset,
72 std::unordered_set<uint32_t>* direct_method_indexes,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070073 bool expect_direct);
Andreas Gampee6215c02015-08-31 18:54:38 -070074 bool CheckOrderAndGetClassFlags(bool is_field,
75 const char* type_descr,
76 uint32_t curr_index,
77 uint32_t prev_index,
78 bool* have_class,
79 uint16_t* class_type_index,
80 uint32_t* class_access_flags);
81
Ian Rogers8a6bbfc2014-01-23 13:29:07 -080082 bool CheckPadding(size_t offset, uint32_t aligned_offset);
jeffhao10037c82012-01-23 15:06:23 -080083 bool CheckEncodedValue();
84 bool CheckEncodedArray();
85 bool CheckEncodedAnnotation();
86
87 bool CheckIntraClassDataItem();
Andreas Gampee6215c02015-08-31 18:54:38 -070088 // Check all fields of the given type from the given iterator. Load the class data from the first
89 // field, if necessary (and return it), or use the given values.
90 template <bool kStatic>
91 bool CheckIntraClassDataItemFields(ClassDataItemIterator* it,
92 bool* have_class,
93 uint16_t* class_type_index,
94 uint32_t* class_access_flags);
95 // Check all methods of the given type from the given iterator. Load the class data from the first
96 // method, if necessary (and return it), or use the given values.
97 template <bool kDirect>
98 bool CheckIntraClassDataItemMethods(ClassDataItemIterator* it,
99 std::unordered_set<uint32_t>* direct_method_indexes,
100 bool* have_class,
101 uint16_t* class_type_index,
102 uint32_t* class_access_flags);
103
jeffhao10037c82012-01-23 15:06:23 -0800104 bool CheckIntraCodeItem();
105 bool CheckIntraStringDataItem();
106 bool CheckIntraDebugInfoItem();
107 bool CheckIntraAnnotationItem();
108 bool CheckIntraAnnotationsDirectoryItem();
109
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800110 bool CheckIntraSectionIterate(size_t offset, uint32_t count, uint16_t type);
111 bool CheckIntraIdSection(size_t offset, uint32_t count, uint16_t type);
112 bool CheckIntraDataSection(size_t offset, uint32_t count, uint16_t type);
jeffhao10037c82012-01-23 15:06:23 -0800113 bool CheckIntraSection();
114
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800115 bool CheckOffsetToTypeMap(size_t offset, uint16_t type);
Andreas Gampee09269c2014-06-06 18:45:35 -0700116
Andreas Gampe5e31dda2014-06-13 11:35:12 -0700117 // Note: as sometimes kDexNoIndex16, being 0xFFFF, is a valid return value, we need an
118 // additional out parameter to signal any errors loading an index.
Ian Rogers13735952014-10-08 12:43:28 -0700119 uint16_t FindFirstClassDataDefiner(const uint8_t* ptr, bool* success);
120 uint16_t FindFirstAnnotationsDirectoryDefiner(const uint8_t* ptr, bool* success);
jeffhao10037c82012-01-23 15:06:23 -0800121
122 bool CheckInterStringIdItem();
123 bool CheckInterTypeIdItem();
124 bool CheckInterProtoIdItem();
125 bool CheckInterFieldIdItem();
126 bool CheckInterMethodIdItem();
127 bool CheckInterClassDefItem();
128 bool CheckInterAnnotationSetRefList();
129 bool CheckInterAnnotationSetItem();
130 bool CheckInterClassDataItem();
131 bool CheckInterAnnotationsDirectoryItem();
132
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800133 bool CheckInterSectionIterate(size_t offset, uint32_t count, uint16_t type);
jeffhao10037c82012-01-23 15:06:23 -0800134 bool CheckInterSection();
135
Andreas Gampee09269c2014-06-06 18:45:35 -0700136 // Load a string by (type) index. Checks whether the index is in bounds, printing the error if
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700137 // not. If there is an error, null is returned.
Andreas Gampee09269c2014-06-06 18:45:35 -0700138 const char* CheckLoadStringByIdx(uint32_t idx, const char* error_fmt);
139 const char* CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_fmt);
140
141 // Load a field/method Id by index. Checks whether the index is in bounds, printing the error if
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700142 // not. If there is an error, null is returned.
Andreas Gampee09269c2014-06-06 18:45:35 -0700143 const DexFile::FieldId* CheckLoadFieldId(uint32_t idx, const char* error_fmt);
144 const DexFile::MethodId* CheckLoadMethodId(uint32_t idx, const char* error_fmt);
145
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700146 void ErrorStringPrintf(const char* fmt, ...)
147 __attribute__((__format__(__printf__, 2, 3))) COLD_ATTR;
148
Andreas Gampee6215c02015-08-31 18:54:38 -0700149 // Retrieve class index and class access flag from the given member. index is the member index,
150 // which is taken as either a field or a method index (as designated by is_field). The result,
151 // if the member and declaring class could be found, is stored in class_type_index and
152 // class_access_flags.
153 // This is an expensive lookup, as we have to find the class-def by type index, which is a
154 // linear search. The output values should thus be cached by the caller.
155 bool FindClassFlags(uint32_t index,
156 bool is_field,
157 uint16_t* class_type_index,
158 uint32_t* class_access_flags);
159
160 // Check validity of the given access flags, interpreted for a field in the context of a class
161 // with the given second access flags.
Andreas Gampec9f0ba12016-02-09 09:21:04 -0800162 bool CheckFieldAccessFlags(uint32_t idx,
163 uint32_t field_access_flags,
164 uint32_t class_access_flags,
165 std::string* error_msg);
Andreas Gampee6215c02015-08-31 18:54:38 -0700166 // Check validity of the given method and access flags, in the context of a class with the given
167 // second access flags.
168 bool CheckMethodAccessFlags(uint32_t method_index,
169 uint32_t method_access_flags,
170 uint32_t class_access_flags,
171 bool has_code,
172 bool expect_direct,
173 std::string* error_msg);
174
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700175 const DexFile* const dex_file_;
Ian Rogers13735952014-10-08 12:43:28 -0700176 const uint8_t* const begin_;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700177 const size_t size_;
178 const char* const location_;
179 const DexFile::Header* const header_;
jeffhao10037c82012-01-23 15:06:23 -0800180
Mathieu Chartier0f8e0722015-10-26 14:52:42 -0700181 struct OffsetTypeMapEmptyFn {
182 // Make a hash map slot empty by making the offset 0. Offset 0 is a valid dex file offset that
183 // is in the offset of the dex file header. However, we only store data section items in the
184 // map, and these are after the header.
185 void MakeEmpty(std::pair<uint32_t, uint16_t>& pair) const {
186 pair.first = 0u;
187 }
188 // Check if a hash map slot is empty.
189 bool IsEmpty(const std::pair<uint32_t, uint16_t>& pair) const {
190 return pair.first == 0;
191 }
192 };
193 struct OffsetTypeMapHashCompareFn {
194 // Hash function for offset.
195 size_t operator()(const uint32_t key) const {
196 return key;
197 }
198 // std::equal function for offset.
199 bool operator()(const uint32_t a, const uint32_t b) const {
200 return a == b;
201 }
202 };
203 // Map from offset to dex file type, HashMap for performance reasons.
204 AllocationTrackingHashMap<uint32_t,
205 uint16_t,
206 OffsetTypeMapEmptyFn,
207 kAllocatorTagDexFileVerifier,
208 OffsetTypeMapHashCompareFn,
209 OffsetTypeMapHashCompareFn> offset_to_type_map_;
Ian Rogers13735952014-10-08 12:43:28 -0700210 const uint8_t* ptr_;
jeffhao10037c82012-01-23 15:06:23 -0800211 const void* previous_item_;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700212
213 std::string failure_reason_;
Andreas Gampe0ba238d2014-07-29 01:22:07 -0700214
215 // Set of type ids for which there are ClassDef elements in the dex file.
216 std::unordered_set<decltype(DexFile::ClassDef::class_idx_)> defined_classes_;
jeffhao10037c82012-01-23 15:06:23 -0800217};
218
219} // namespace art
220
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700221#endif // ART_RUNTIME_DEX_FILE_VERIFIER_H_