blob: 078204518a83802da9027108fe751c64c3d8af60 [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
17#include "dex_file_verifier.h"
18
Narayan Kamath92572be2013-11-28 14:06:24 +000019#include <zlib.h>
Ian Rogers700a4022014-05-19 16:49:03 -070020#include <memory>
Narayan Kamath92572be2013-11-28 14:06:24 +000021
Elliott Hughese222ee02012-12-13 14:41:43 -080022#include "base/stringprintf.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070023#include "dex_file-inl.h"
jeffhao10037c82012-01-23 15:06:23 -080024#include "leb128.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070025#include "safe_map.h"
Ian Rogersa6724902013-09-23 09:23:37 -070026#include "utf-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "utils.h"
jeffhao10037c82012-01-23 15:06:23 -080028
29namespace art {
30
31static uint32_t MapTypeToBitMask(uint32_t map_type) {
32 switch (map_type) {
33 case DexFile::kDexTypeHeaderItem: return 1 << 0;
34 case DexFile::kDexTypeStringIdItem: return 1 << 1;
35 case DexFile::kDexTypeTypeIdItem: return 1 << 2;
36 case DexFile::kDexTypeProtoIdItem: return 1 << 3;
37 case DexFile::kDexTypeFieldIdItem: return 1 << 4;
38 case DexFile::kDexTypeMethodIdItem: return 1 << 5;
39 case DexFile::kDexTypeClassDefItem: return 1 << 6;
40 case DexFile::kDexTypeMapList: return 1 << 7;
41 case DexFile::kDexTypeTypeList: return 1 << 8;
42 case DexFile::kDexTypeAnnotationSetRefList: return 1 << 9;
43 case DexFile::kDexTypeAnnotationSetItem: return 1 << 10;
44 case DexFile::kDexTypeClassDataItem: return 1 << 11;
45 case DexFile::kDexTypeCodeItem: return 1 << 12;
46 case DexFile::kDexTypeStringDataItem: return 1 << 13;
47 case DexFile::kDexTypeDebugInfoItem: return 1 << 14;
48 case DexFile::kDexTypeAnnotationItem: return 1 << 15;
49 case DexFile::kDexTypeEncodedArrayItem: return 1 << 16;
50 case DexFile::kDexTypeAnnotationsDirectoryItem: return 1 << 17;
51 }
52 return 0;
53}
54
55static bool IsDataSectionType(uint32_t map_type) {
56 switch (map_type) {
57 case DexFile::kDexTypeHeaderItem:
58 case DexFile::kDexTypeStringIdItem:
59 case DexFile::kDexTypeTypeIdItem:
60 case DexFile::kDexTypeProtoIdItem:
61 case DexFile::kDexTypeFieldIdItem:
62 case DexFile::kDexTypeMethodIdItem:
63 case DexFile::kDexTypeClassDefItem:
64 return false;
65 }
66 return true;
67}
68
Andreas Gampee09269c2014-06-06 18:45:35 -070069const char* DexFileVerifier::CheckLoadStringByIdx(uint32_t idx, const char* error_string) {
Andreas Gampedf10b322014-06-11 21:46:05 -070070 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
Andreas Gampee09269c2014-06-06 18:45:35 -070071 return nullptr;
72 }
73 return dex_file_->StringDataByIdx(idx);
74}
75
76const char* DexFileVerifier::CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_string) {
Andreas Gampedf10b322014-06-11 21:46:05 -070077 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
Andreas Gampee09269c2014-06-06 18:45:35 -070078 return nullptr;
79 }
80 const DexFile::TypeId& type_id = dex_file_->GetTypeId(type_idx);
81 uint32_t idx = type_id.descriptor_idx_;
82 return CheckLoadStringByIdx(idx, error_string);
83}
84
85const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) {
Andreas Gampedf10b322014-06-11 21:46:05 -070086 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
Andreas Gampee09269c2014-06-06 18:45:35 -070087 return nullptr;
88 }
89 return &dex_file_->GetFieldId(idx);
90}
91
92const DexFile::MethodId* DexFileVerifier::CheckLoadMethodId(uint32_t idx, const char* err_string) {
Andreas Gampedf10b322014-06-11 21:46:05 -070093 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
Andreas Gampee09269c2014-06-06 18:45:35 -070094 return nullptr;
95 }
96 return &dex_file_->GetMethodId(idx);
97}
98
99// Helper macro to load string and return false on error.
100#define LOAD_STRING(var, idx, error) \
101 const char* var = CheckLoadStringByIdx(idx, error); \
Andreas Gampedf10b322014-06-11 21:46:05 -0700102 if (UNLIKELY(var == nullptr)) { \
Andreas Gampee09269c2014-06-06 18:45:35 -0700103 return false; \
104 }
105
106// Helper macro to load string by type idx and return false on error.
107#define LOAD_STRING_BY_TYPE(var, type_idx, error) \
108 const char* var = CheckLoadStringByTypeIdx(type_idx, error); \
Andreas Gampedf10b322014-06-11 21:46:05 -0700109 if (UNLIKELY(var == nullptr)) { \
Andreas Gampee09269c2014-06-06 18:45:35 -0700110 return false; \
111 }
112
113// Helper macro to load method id. Return last parameter on error.
Andreas Gampe5e31dda2014-06-13 11:35:12 -0700114#define LOAD_METHOD(var, idx, error_string, error_stmt) \
Andreas Gampee09269c2014-06-06 18:45:35 -0700115 const DexFile::MethodId* var = CheckLoadMethodId(idx, error_string); \
Andreas Gampedf10b322014-06-11 21:46:05 -0700116 if (UNLIKELY(var == nullptr)) { \
Andreas Gampe5e31dda2014-06-13 11:35:12 -0700117 error_stmt; \
Andreas Gampee09269c2014-06-06 18:45:35 -0700118 }
119
120// Helper macro to load method id. Return last parameter on error.
Andreas Gampe5e31dda2014-06-13 11:35:12 -0700121#define LOAD_FIELD(var, idx, fmt, error_stmt) \
Andreas Gampee09269c2014-06-06 18:45:35 -0700122 const DexFile::FieldId* var = CheckLoadFieldId(idx, fmt); \
Andreas Gampedf10b322014-06-11 21:46:05 -0700123 if (UNLIKELY(var == nullptr)) { \
Andreas Gampe5e31dda2014-06-13 11:35:12 -0700124 error_stmt; \
Andreas Gampee09269c2014-06-06 18:45:35 -0700125 }
126
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700127bool DexFileVerifier::Verify(const DexFile* dex_file, const byte* begin, size_t size,
128 const char* location, std::string* error_msg) {
Ian Rogers700a4022014-05-19 16:49:03 -0700129 std::unique_ptr<DexFileVerifier> verifier(new DexFileVerifier(dex_file, begin, size, location));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700130 if (!verifier->Verify()) {
131 *error_msg = verifier->FailureReason();
132 return false;
133 }
134 return true;
135}
136
137bool DexFileVerifier::CheckShortyDescriptorMatch(char shorty_char, const char* descriptor,
138 bool is_return_type) {
jeffhao10037c82012-01-23 15:06:23 -0800139 switch (shorty_char) {
140 case 'V':
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700141 if (UNLIKELY(!is_return_type)) {
142 ErrorStringPrintf("Invalid use of void");
jeffhao10037c82012-01-23 15:06:23 -0800143 return false;
144 }
145 // Intentional fallthrough.
146 case 'B':
147 case 'C':
148 case 'D':
149 case 'F':
150 case 'I':
151 case 'J':
152 case 'S':
153 case 'Z':
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700154 if (UNLIKELY((descriptor[0] != shorty_char) || (descriptor[1] != '\0'))) {
155 ErrorStringPrintf("Shorty vs. primitive type mismatch: '%c', '%s'",
156 shorty_char, descriptor);
jeffhao10037c82012-01-23 15:06:23 -0800157 return false;
158 }
159 break;
160 case 'L':
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700161 if (UNLIKELY((descriptor[0] != 'L') && (descriptor[0] != '['))) {
162 ErrorStringPrintf("Shorty vs. type mismatch: '%c', '%s'", shorty_char, descriptor);
jeffhao10037c82012-01-23 15:06:23 -0800163 return false;
164 }
165 break;
166 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700167 ErrorStringPrintf("Bad shorty character: '%c'", shorty_char);
jeffhao10037c82012-01-23 15:06:23 -0800168 return false;
169 }
170 return true;
171}
172
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700173bool DexFileVerifier::CheckListSize(const void* start, size_t count, size_t elem_size,
174 const char* label) {
175 // Check that size is not 0.
176 CHECK_NE(elem_size, 0U);
177
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800178 const byte* range_start = reinterpret_cast<const byte*>(start);
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800179 const byte* file_start = reinterpret_cast<const byte*>(begin_);
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700180
181 // Check for overflow.
182 uintptr_t max = 0 - 1;
183 size_t available_bytes_till_end_of_mem = max - reinterpret_cast<uintptr_t>(start);
184 size_t max_count = available_bytes_till_end_of_mem / elem_size;
185 if (max_count < count) {
186 ErrorStringPrintf("Overflow in range for %s: %zx for %zu@%zu", label,
187 static_cast<size_t>(range_start - file_start),
188 count, elem_size);
189 return false;
190 }
191
192 const byte* range_end = range_start + count * elem_size;
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800193 const byte* file_end = file_start + size_;
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700194 if (UNLIKELY((range_start < file_start) || (range_end > file_end))) {
195 // Note: these two tests are enough as we make sure above that there's no overflow.
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800196 ErrorStringPrintf("Bad range for %s: %zx to %zx", label,
Ian Rogerse3d55812014-06-11 13:00:44 -0700197 static_cast<size_t>(range_start - file_start),
198 static_cast<size_t>(range_end - file_start));
jeffhao10037c82012-01-23 15:06:23 -0800199 return false;
200 }
201 return true;
202}
203
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700204bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) {
205 if (UNLIKELY(field >= limit)) {
206 ErrorStringPrintf("Bad index for %s: %x >= %x", label, field, limit);
jeffhao10037c82012-01-23 15:06:23 -0800207 return false;
208 }
209 return true;
210}
211
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700212bool DexFileVerifier::CheckHeader() {
jeffhaof6174e82012-01-31 16:14:17 -0800213 // Check file size from the header.
214 uint32_t expected_size = header_->file_size_;
215 if (size_ != expected_size) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700216 ErrorStringPrintf("Bad file size (%zd, expected %ud)", size_, expected_size);
jeffhao10037c82012-01-23 15:06:23 -0800217 return false;
218 }
219
220 // Compute and verify the checksum in the header.
221 uint32_t adler_checksum = adler32(0L, Z_NULL, 0);
222 const uint32_t non_sum = sizeof(header_->magic_) + sizeof(header_->checksum_);
223 const byte* non_sum_ptr = reinterpret_cast<const byte*>(header_) + non_sum;
jeffhaof6174e82012-01-31 16:14:17 -0800224 adler_checksum = adler32(adler_checksum, non_sum_ptr, expected_size - non_sum);
jeffhao10037c82012-01-23 15:06:23 -0800225 if (adler_checksum != header_->checksum_) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700226 ErrorStringPrintf("Bad checksum (%08x, expected %08x)", adler_checksum, header_->checksum_);
jeffhao10037c82012-01-23 15:06:23 -0800227 return false;
228 }
229
230 // Check the contents of the header.
231 if (header_->endian_tag_ != DexFile::kDexEndianConstant) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700232 ErrorStringPrintf("Unexpected endian_tag: %x", header_->endian_tag_);
jeffhao10037c82012-01-23 15:06:23 -0800233 return false;
234 }
235
236 if (header_->header_size_ != sizeof(DexFile::Header)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700237 ErrorStringPrintf("Bad header size: %ud", header_->header_size_);
jeffhao10037c82012-01-23 15:06:23 -0800238 return false;
239 }
240
241 return true;
242}
243
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700244bool DexFileVerifier::CheckMap() {
Ian Rogers30fab402012-01-23 15:43:46 -0800245 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ + header_->map_off_);
jeffhao10037c82012-01-23 15:06:23 -0800246 const DexFile::MapItem* item = map->list_;
247
248 uint32_t count = map->size_;
249 uint32_t last_offset = 0;
250 uint32_t data_item_count = 0;
251 uint32_t data_items_left = header_->data_size_;
252 uint32_t used_bits = 0;
253
254 // Sanity check the size of the map list.
255 if (!CheckListSize(item, count, sizeof(DexFile::MapItem), "map size")) {
256 return false;
257 }
258
259 // Check the items listed in the map.
260 for (uint32_t i = 0; i < count; i++) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700261 if (UNLIKELY(last_offset >= item->offset_ && i != 0)) {
262 ErrorStringPrintf("Out of order map item: %x then %x", last_offset, item->offset_);
jeffhao10037c82012-01-23 15:06:23 -0800263 return false;
264 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700265 if (UNLIKELY(item->offset_ >= header_->file_size_)) {
266 ErrorStringPrintf("Map item after end of file: %x, size %x",
267 item->offset_, header_->file_size_);
jeffhao10037c82012-01-23 15:06:23 -0800268 return false;
269 }
270
271 if (IsDataSectionType(item->type_)) {
272 uint32_t icount = item->size_;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700273 if (UNLIKELY(icount > data_items_left)) {
274 ErrorStringPrintf("Too many items in data section: %ud", data_item_count + icount);
jeffhao10037c82012-01-23 15:06:23 -0800275 return false;
276 }
277 data_items_left -= icount;
278 data_item_count += icount;
279 }
280
281 uint32_t bit = MapTypeToBitMask(item->type_);
282
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700283 if (UNLIKELY(bit == 0)) {
284 ErrorStringPrintf("Unknown map section type %x", item->type_);
jeffhao10037c82012-01-23 15:06:23 -0800285 return false;
286 }
287
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700288 if (UNLIKELY((used_bits & bit) != 0)) {
289 ErrorStringPrintf("Duplicate map section of type %x", item->type_);
jeffhao10037c82012-01-23 15:06:23 -0800290 return false;
291 }
292
293 used_bits |= bit;
294 last_offset = item->offset_;
295 item++;
296 }
297
298 // Check for missing sections in the map.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700299 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeHeaderItem)) == 0)) {
300 ErrorStringPrintf("Map is missing header entry");
jeffhao10037c82012-01-23 15:06:23 -0800301 return false;
302 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700303 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeMapList)) == 0)) {
304 ErrorStringPrintf("Map is missing map_list entry");
jeffhao10037c82012-01-23 15:06:23 -0800305 return false;
306 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700307 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeStringIdItem)) == 0 &&
308 ((header_->string_ids_off_ != 0) || (header_->string_ids_size_ != 0)))) {
309 ErrorStringPrintf("Map is missing string_ids entry");
jeffhao10037c82012-01-23 15:06:23 -0800310 return false;
311 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700312 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeTypeIdItem)) == 0 &&
313 ((header_->type_ids_off_ != 0) || (header_->type_ids_size_ != 0)))) {
314 ErrorStringPrintf("Map is missing type_ids entry");
jeffhao10037c82012-01-23 15:06:23 -0800315 return false;
316 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700317 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeProtoIdItem)) == 0 &&
318 ((header_->proto_ids_off_ != 0) || (header_->proto_ids_size_ != 0)))) {
319 ErrorStringPrintf("Map is missing proto_ids entry");
jeffhao10037c82012-01-23 15:06:23 -0800320 return false;
321 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700322 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeFieldIdItem)) == 0 &&
323 ((header_->field_ids_off_ != 0) || (header_->field_ids_size_ != 0)))) {
324 ErrorStringPrintf("Map is missing field_ids entry");
jeffhao10037c82012-01-23 15:06:23 -0800325 return false;
326 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700327 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeMethodIdItem)) == 0 &&
328 ((header_->method_ids_off_ != 0) || (header_->method_ids_size_ != 0)))) {
329 ErrorStringPrintf("Map is missing method_ids entry");
jeffhao10037c82012-01-23 15:06:23 -0800330 return false;
331 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700332 if (UNLIKELY((used_bits & MapTypeToBitMask(DexFile::kDexTypeClassDefItem)) == 0 &&
333 ((header_->class_defs_off_ != 0) || (header_->class_defs_size_ != 0)))) {
334 ErrorStringPrintf("Map is missing class_defs entry");
jeffhao10037c82012-01-23 15:06:23 -0800335 return false;
336 }
jeffhao10037c82012-01-23 15:06:23 -0800337 return true;
338}
339
340uint32_t DexFileVerifier::ReadUnsignedLittleEndian(uint32_t size) {
341 uint32_t result = 0;
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700342 if (LIKELY(CheckListSize(ptr_, size, sizeof(byte), "encoded_value"))) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700343 for (uint32_t i = 0; i < size; i++) {
344 result |= ((uint32_t) *(ptr_++)) << (i * 8);
345 }
jeffhao10037c82012-01-23 15:06:23 -0800346 }
jeffhao10037c82012-01-23 15:06:23 -0800347 return result;
348}
349
350bool DexFileVerifier::CheckAndGetHandlerOffsets(const DexFile::CodeItem* code_item,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700351 uint32_t* handler_offsets, uint32_t handlers_size) {
jeffhao10037c82012-01-23 15:06:23 -0800352 const byte* handlers_base = DexFile::GetCatchHandlerData(*code_item, 0);
353
354 for (uint32_t i = 0; i < handlers_size; i++) {
355 bool catch_all;
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800356 size_t offset = ptr_ - handlers_base;
jeffhao10037c82012-01-23 15:06:23 -0800357 int32_t size = DecodeSignedLeb128(&ptr_);
358
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700359 if (UNLIKELY((size < -65536) || (size > 65536))) {
360 ErrorStringPrintf("Invalid exception handler size: %d", size);
jeffhao10037c82012-01-23 15:06:23 -0800361 return false;
362 }
363
364 if (size <= 0) {
365 catch_all = true;
366 size = -size;
367 } else {
368 catch_all = false;
369 }
370
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800371 handler_offsets[i] = static_cast<uint32_t>(offset);
jeffhao10037c82012-01-23 15:06:23 -0800372
373 while (size-- > 0) {
374 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_);
375 if (!CheckIndex(type_idx, header_->type_ids_size_, "handler type_idx")) {
376 return false;
377 }
378
379 uint32_t addr = DecodeUnsignedLeb128(&ptr_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700380 if (UNLIKELY(addr >= code_item->insns_size_in_code_units_)) {
381 ErrorStringPrintf("Invalid handler addr: %x", addr);
jeffhao10037c82012-01-23 15:06:23 -0800382 return false;
383 }
384 }
385
386 if (catch_all) {
387 uint32_t addr = DecodeUnsignedLeb128(&ptr_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700388 if (UNLIKELY(addr >= code_item->insns_size_in_code_units_)) {
389 ErrorStringPrintf("Invalid handler catch_all_addr: %x", addr);
jeffhao10037c82012-01-23 15:06:23 -0800390 return false;
391 }
392 }
393 }
394
395 return true;
396}
397
398bool DexFileVerifier::CheckClassDataItemField(uint32_t idx, uint32_t access_flags,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700399 bool expect_static) {
jeffhao10037c82012-01-23 15:06:23 -0800400 if (!CheckIndex(idx, header_->field_ids_size_, "class_data_item field_idx")) {
401 return false;
402 }
403
404 bool is_static = (access_flags & kAccStatic) != 0;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700405 if (UNLIKELY(is_static != expect_static)) {
406 ErrorStringPrintf("Static/instance field not in expected list");
jeffhao10037c82012-01-23 15:06:23 -0800407 return false;
408 }
409
410 uint32_t access_field_mask = kAccPublic | kAccPrivate | kAccProtected | kAccStatic |
411 kAccFinal | kAccVolatile | kAccTransient | kAccSynthetic | kAccEnum;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700412 if (UNLIKELY((access_flags & ~access_field_mask) != 0)) {
413 ErrorStringPrintf("Bad class_data_item field access_flags %x", access_flags);
jeffhao10037c82012-01-23 15:06:23 -0800414 return false;
415 }
416
417 return true;
418}
419
420bool DexFileVerifier::CheckClassDataItemMethod(uint32_t idx, uint32_t access_flags,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700421 uint32_t code_offset, bool expect_direct) {
jeffhao10037c82012-01-23 15:06:23 -0800422 if (!CheckIndex(idx, header_->method_ids_size_, "class_data_item method_idx")) {
423 return false;
424 }
425
426 bool is_direct = (access_flags & (kAccStatic | kAccPrivate | kAccConstructor)) != 0;
427 bool expect_code = (access_flags & (kAccNative | kAccAbstract)) == 0;
428 bool is_synchronized = (access_flags & kAccSynchronized) != 0;
429 bool allow_synchronized = (access_flags & kAccNative) != 0;
430
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700431 if (UNLIKELY(is_direct != expect_direct)) {
432 ErrorStringPrintf("Direct/virtual method not in expected list");
jeffhao10037c82012-01-23 15:06:23 -0800433 return false;
434 }
435
436 uint32_t access_method_mask = kAccPublic | kAccPrivate | kAccProtected | kAccStatic |
437 kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative | kAccAbstract |
438 kAccStrict | kAccSynthetic | kAccConstructor | kAccDeclaredSynchronized;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700439 if (UNLIKELY(((access_flags & ~access_method_mask) != 0) ||
440 (is_synchronized && !allow_synchronized))) {
441 ErrorStringPrintf("Bad class_data_item method access_flags %x", access_flags);
jeffhao10037c82012-01-23 15:06:23 -0800442 return false;
443 }
444
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700445 if (UNLIKELY(expect_code && (code_offset == 0))) {
446 ErrorStringPrintf("Unexpected zero value for class_data_item method code_off with access "
447 "flags %x", access_flags);
jeffhao10037c82012-01-23 15:06:23 -0800448 return false;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700449 } else if (UNLIKELY(!expect_code && (code_offset != 0))) {
450 ErrorStringPrintf("Unexpected non-zero value %x for class_data_item method code_off"
451 " with access flags %x", code_offset, access_flags);
jeffhao10037c82012-01-23 15:06:23 -0800452 return false;
453 }
454
455 return true;
456}
457
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800458bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) {
jeffhao10037c82012-01-23 15:06:23 -0800459 if (offset < aligned_offset) {
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700460 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(byte), "section")) {
jeffhao10037c82012-01-23 15:06:23 -0800461 return false;
462 }
463 while (offset < aligned_offset) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700464 if (UNLIKELY(*ptr_ != '\0')) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800465 ErrorStringPrintf("Non-zero padding %x before section start at %zx", *ptr_, offset);
jeffhao10037c82012-01-23 15:06:23 -0800466 return false;
467 }
468 ptr_++;
469 offset++;
470 }
471 }
472 return true;
473}
474
475bool DexFileVerifier::CheckEncodedValue() {
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700476 if (!CheckListSize(ptr_, 1, sizeof(byte), "encoded_value header")) {
jeffhao10037c82012-01-23 15:06:23 -0800477 return false;
478 }
479
480 uint8_t header_byte = *(ptr_++);
481 uint32_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask;
482 uint32_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift;
483
484 switch (value_type) {
485 case DexFile::kDexAnnotationByte:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700486 if (UNLIKELY(value_arg != 0)) {
487 ErrorStringPrintf("Bad encoded_value byte size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800488 return false;
489 }
490 ptr_++;
491 break;
492 case DexFile::kDexAnnotationShort:
493 case DexFile::kDexAnnotationChar:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700494 if (UNLIKELY(value_arg > 1)) {
495 ErrorStringPrintf("Bad encoded_value char/short size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800496 return false;
497 }
498 ptr_ += value_arg + 1;
499 break;
500 case DexFile::kDexAnnotationInt:
501 case DexFile::kDexAnnotationFloat:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700502 if (UNLIKELY(value_arg > 3)) {
503 ErrorStringPrintf("Bad encoded_value int/float size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800504 return false;
505 }
506 ptr_ += value_arg + 1;
507 break;
508 case DexFile::kDexAnnotationLong:
509 case DexFile::kDexAnnotationDouble:
510 ptr_ += value_arg + 1;
511 break;
512 case DexFile::kDexAnnotationString: {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700513 if (UNLIKELY(value_arg > 3)) {
514 ErrorStringPrintf("Bad encoded_value string size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800515 return false;
516 }
517 uint32_t idx = ReadUnsignedLittleEndian(value_arg + 1);
518 if (!CheckIndex(idx, header_->string_ids_size_, "encoded_value string")) {
519 return false;
520 }
521 break;
522 }
523 case DexFile::kDexAnnotationType: {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700524 if (UNLIKELY(value_arg > 3)) {
525 ErrorStringPrintf("Bad encoded_value type size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800526 return false;
527 }
528 uint32_t idx = ReadUnsignedLittleEndian(value_arg + 1);
529 if (!CheckIndex(idx, header_->type_ids_size_, "encoded_value type")) {
530 return false;
531 }
532 break;
533 }
534 case DexFile::kDexAnnotationField:
535 case DexFile::kDexAnnotationEnum: {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700536 if (UNLIKELY(value_arg > 3)) {
537 ErrorStringPrintf("Bad encoded_value field/enum size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800538 return false;
539 }
540 uint32_t idx = ReadUnsignedLittleEndian(value_arg + 1);
541 if (!CheckIndex(idx, header_->field_ids_size_, "encoded_value field")) {
542 return false;
543 }
544 break;
545 }
546 case DexFile::kDexAnnotationMethod: {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700547 if (UNLIKELY(value_arg > 3)) {
548 ErrorStringPrintf("Bad encoded_value method size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800549 return false;
550 }
551 uint32_t idx = ReadUnsignedLittleEndian(value_arg + 1);
552 if (!CheckIndex(idx, header_->method_ids_size_, "encoded_value method")) {
553 return false;
554 }
555 break;
556 }
557 case DexFile::kDexAnnotationArray:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700558 if (UNLIKELY(value_arg != 0)) {
559 ErrorStringPrintf("Bad encoded_value array value_arg %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800560 return false;
561 }
562 if (!CheckEncodedArray()) {
563 return false;
564 }
565 break;
566 case DexFile::kDexAnnotationAnnotation:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700567 if (UNLIKELY(value_arg != 0)) {
568 ErrorStringPrintf("Bad encoded_value annotation value_arg %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800569 return false;
570 }
571 if (!CheckEncodedAnnotation()) {
572 return false;
573 }
574 break;
575 case DexFile::kDexAnnotationNull:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700576 if (UNLIKELY(value_arg != 0)) {
577 ErrorStringPrintf("Bad encoded_value null value_arg %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800578 return false;
579 }
580 break;
581 case DexFile::kDexAnnotationBoolean:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700582 if (UNLIKELY(value_arg > 1)) {
583 ErrorStringPrintf("Bad encoded_value boolean size %x", value_arg);
jeffhao10037c82012-01-23 15:06:23 -0800584 return false;
585 }
586 break;
587 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700588 ErrorStringPrintf("Bogus encoded_value value_type %x", value_type);
jeffhao10037c82012-01-23 15:06:23 -0800589 return false;
590 }
591
592 return true;
593}
594
595bool DexFileVerifier::CheckEncodedArray() {
596 uint32_t size = DecodeUnsignedLeb128(&ptr_);
597
598 while (size--) {
599 if (!CheckEncodedValue()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700600 failure_reason_ = StringPrintf("Bad encoded_array value: %s", failure_reason_.c_str());
jeffhao10037c82012-01-23 15:06:23 -0800601 return false;
602 }
603 }
604 return true;
605}
606
607bool DexFileVerifier::CheckEncodedAnnotation() {
608 uint32_t idx = DecodeUnsignedLeb128(&ptr_);
609 if (!CheckIndex(idx, header_->type_ids_size_, "encoded_annotation type_idx")) {
610 return false;
611 }
612
613 uint32_t size = DecodeUnsignedLeb128(&ptr_);
614 uint32_t last_idx = 0;
615
616 for (uint32_t i = 0; i < size; i++) {
617 idx = DecodeUnsignedLeb128(&ptr_);
618 if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element name_idx")) {
619 return false;
620 }
621
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700622 if (UNLIKELY(last_idx >= idx && i != 0)) {
623 ErrorStringPrintf("Out-of-order annotation_element name_idx: %x then %x",
624 last_idx, idx);
jeffhao10037c82012-01-23 15:06:23 -0800625 return false;
626 }
627
628 if (!CheckEncodedValue()) {
629 return false;
630 }
631
632 last_idx = idx;
633 }
634 return true;
635}
636
637bool DexFileVerifier::CheckIntraClassDataItem() {
638 ClassDataItemIterator it(*dex_file_, ptr_);
639
640 for (; it.HasNextStaticField(); it.Next()) {
641 if (!CheckClassDataItemField(it.GetMemberIndex(), it.GetMemberAccessFlags(), true)) {
642 return false;
643 }
644 }
645 for (; it.HasNextInstanceField(); it.Next()) {
646 if (!CheckClassDataItemField(it.GetMemberIndex(), it.GetMemberAccessFlags(), false)) {
647 return false;
648 }
649 }
650 for (; it.HasNextDirectMethod(); it.Next()) {
651 if (!CheckClassDataItemMethod(it.GetMemberIndex(), it.GetMemberAccessFlags(),
652 it.GetMethodCodeItemOffset(), true)) {
653 return false;
654 }
655 }
656 for (; it.HasNextVirtualMethod(); it.Next()) {
657 if (!CheckClassDataItemMethod(it.GetMemberIndex(), it.GetMemberAccessFlags(),
658 it.GetMethodCodeItemOffset(), false)) {
659 return false;
660 }
661 }
662
663 ptr_ = it.EndDataPointer();
664 return true;
665}
666
667bool DexFileVerifier::CheckIntraCodeItem() {
668 const DexFile::CodeItem* code_item = reinterpret_cast<const DexFile::CodeItem*>(ptr_);
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700669 if (!CheckListSize(code_item, 1, sizeof(DexFile::CodeItem), "code")) {
jeffhao10037c82012-01-23 15:06:23 -0800670 return false;
671 }
672
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700673 if (UNLIKELY(code_item->ins_size_ > code_item->registers_size_)) {
674 ErrorStringPrintf("ins_size (%ud) > registers_size (%ud)",
675 code_item->ins_size_, code_item->registers_size_);
jeffhao10037c82012-01-23 15:06:23 -0800676 return false;
677 }
678
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700679 if (UNLIKELY((code_item->outs_size_ > 5) &&
680 (code_item->outs_size_ > code_item->registers_size_))) {
jeffhao10037c82012-01-23 15:06:23 -0800681 /*
682 * outs_size can be up to 5, even if registers_size is smaller, since the
683 * short forms of method invocation allow repetitions of a register multiple
684 * times within a single parameter list. However, longer parameter lists
685 * need to be represented in-order in the register file.
686 */
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700687 ErrorStringPrintf("outs_size (%ud) > registers_size (%ud)",
688 code_item->outs_size_, code_item->registers_size_);
jeffhao10037c82012-01-23 15:06:23 -0800689 return false;
690 }
691
692 const uint16_t* insns = code_item->insns_;
693 uint32_t insns_size = code_item->insns_size_in_code_units_;
694 if (!CheckListSize(insns, insns_size, sizeof(uint16_t), "insns size")) {
695 return false;
696 }
697
698 // Grab the end of the insns if there are no try_items.
699 uint32_t try_items_size = code_item->tries_size_;
700 if (try_items_size == 0) {
701 ptr_ = reinterpret_cast<const byte*>(&insns[insns_size]);
702 return true;
703 }
704
705 // try_items are 4-byte aligned. Verify the spacer is 0.
Ian Rogers8a6bbfc2014-01-23 13:29:07 -0800706 if (((reinterpret_cast<uintptr_t>(&insns[insns_size]) & 3) != 0) && (insns[insns_size] != 0)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700707 ErrorStringPrintf("Non-zero padding: %x", insns[insns_size]);
jeffhao10037c82012-01-23 15:06:23 -0800708 return false;
709 }
710
711 const DexFile::TryItem* try_items = DexFile::GetTryItems(*code_item, 0);
712 ptr_ = DexFile::GetCatchHandlerData(*code_item, 0);
713 uint32_t handlers_size = DecodeUnsignedLeb128(&ptr_);
714
715 if (!CheckListSize(try_items, try_items_size, sizeof(DexFile::TryItem), "try_items size")) {
716 return false;
717 }
718
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700719 if (UNLIKELY((handlers_size == 0) || (handlers_size >= 65536))) {
720 ErrorStringPrintf("Invalid handlers_size: %ud", handlers_size);
jeffhao10037c82012-01-23 15:06:23 -0800721 return false;
722 }
723
Ian Rogers700a4022014-05-19 16:49:03 -0700724 std::unique_ptr<uint32_t[]> handler_offsets(new uint32_t[handlers_size]);
Elliott Hughesee0fa762012-03-26 17:12:41 -0700725 if (!CheckAndGetHandlerOffsets(code_item, &handler_offsets[0], handlers_size)) {
jeffhao10037c82012-01-23 15:06:23 -0800726 return false;
727 }
728
729 uint32_t last_addr = 0;
730 while (try_items_size--) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700731 if (UNLIKELY(try_items->start_addr_ < last_addr)) {
732 ErrorStringPrintf("Out-of_order try_item with start_addr: %x", try_items->start_addr_);
jeffhao10037c82012-01-23 15:06:23 -0800733 return false;
734 }
735
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700736 if (UNLIKELY(try_items->start_addr_ >= insns_size)) {
737 ErrorStringPrintf("Invalid try_item start_addr: %x", try_items->start_addr_);
jeffhao10037c82012-01-23 15:06:23 -0800738 return false;
739 }
740
741 uint32_t i;
742 for (i = 0; i < handlers_size; i++) {
743 if (try_items->handler_off_ == handler_offsets[i]) {
744 break;
745 }
746 }
747
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700748 if (UNLIKELY(i == handlers_size)) {
749 ErrorStringPrintf("Bogus handler offset: %x", try_items->handler_off_);
jeffhao10037c82012-01-23 15:06:23 -0800750 return false;
751 }
752
753 last_addr = try_items->start_addr_ + try_items->insn_count_;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700754 if (UNLIKELY(last_addr > insns_size)) {
755 ErrorStringPrintf("Invalid try_item insn_count: %x", try_items->insn_count_);
jeffhao10037c82012-01-23 15:06:23 -0800756 return false;
757 }
758
759 try_items++;
760 }
761
762 return true;
763}
764
765bool DexFileVerifier::CheckIntraStringDataItem() {
766 uint32_t size = DecodeUnsignedLeb128(&ptr_);
jeffhaof6174e82012-01-31 16:14:17 -0800767 const byte* file_end = begin_ + size_;
jeffhao10037c82012-01-23 15:06:23 -0800768
769 for (uint32_t i = 0; i < size; i++) {
Brian Carlstromc6475642014-05-27 11:14:12 -0700770 CHECK_LT(i, size); // b/15014252 Prevents hitting the impossible case below
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700771 if (UNLIKELY(ptr_ >= file_end)) {
772 ErrorStringPrintf("String data would go beyond end-of-file");
jeffhao10037c82012-01-23 15:06:23 -0800773 return false;
774 }
775
776 uint8_t byte = *(ptr_++);
777
778 // Switch on the high 4 bits.
779 switch (byte >> 4) {
780 case 0x00:
781 // Special case of bit pattern 0xxx.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700782 if (UNLIKELY(byte == 0)) {
Brian Carlstromc6475642014-05-27 11:14:12 -0700783 CHECK_LT(i, size); // b/15014252 Actually hit this impossible case with clang
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700784 ErrorStringPrintf("String data shorter than indicated utf16_size %x", size);
jeffhao10037c82012-01-23 15:06:23 -0800785 return false;
786 }
787 break;
788 case 0x01:
789 case 0x02:
790 case 0x03:
791 case 0x04:
792 case 0x05:
793 case 0x06:
794 case 0x07:
795 // No extra checks necessary for bit pattern 0xxx.
796 break;
797 case 0x08:
798 case 0x09:
799 case 0x0a:
800 case 0x0b:
801 case 0x0f:
802 // Illegal bit patterns 10xx or 1111.
803 // Note: 1111 is valid for normal UTF-8, but not here.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700804 ErrorStringPrintf("Illegal start byte %x in string data", byte);
jeffhao10037c82012-01-23 15:06:23 -0800805 return false;
806 case 0x0c:
807 case 0x0d: {
808 // Bit pattern 110x has an additional byte.
809 uint8_t byte2 = *(ptr_++);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700810 if (UNLIKELY((byte2 & 0xc0) != 0x80)) {
811 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
jeffhao10037c82012-01-23 15:06:23 -0800812 return false;
813 }
814 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700815 if (UNLIKELY((value != 0) && (value < 0x80))) {
816 ErrorStringPrintf("Illegal representation for value %x in string data", value);
jeffhao10037c82012-01-23 15:06:23 -0800817 return false;
818 }
819 break;
820 }
821 case 0x0e: {
822 // Bit pattern 1110 has 2 additional bytes.
823 uint8_t byte2 = *(ptr_++);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700824 if (UNLIKELY((byte2 & 0xc0) != 0x80)) {
825 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
jeffhao10037c82012-01-23 15:06:23 -0800826 return false;
827 }
828 uint8_t byte3 = *(ptr_++);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700829 if (UNLIKELY((byte3 & 0xc0) != 0x80)) {
830 ErrorStringPrintf("Illegal continuation byte %x in string data", byte3);
jeffhao10037c82012-01-23 15:06:23 -0800831 return false;
832 }
833 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700834 if (UNLIKELY(value < 0x800)) {
835 ErrorStringPrintf("Illegal representation for value %x in string data", value);
jeffhao10037c82012-01-23 15:06:23 -0800836 return false;
837 }
838 break;
839 }
840 }
841 }
842
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700843 if (UNLIKELY(*(ptr_++) != '\0')) {
844 ErrorStringPrintf("String longer than indicated size %x", size);
jeffhao10037c82012-01-23 15:06:23 -0800845 return false;
846 }
847
848 return true;
849}
850
851bool DexFileVerifier::CheckIntraDebugInfoItem() {
852 DecodeUnsignedLeb128(&ptr_);
853 uint32_t parameters_size = DecodeUnsignedLeb128(&ptr_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700854 if (UNLIKELY(parameters_size > 65536)) {
855 ErrorStringPrintf("Invalid parameters_size: %x", parameters_size);
jeffhao10037c82012-01-23 15:06:23 -0800856 return false;
857 }
858
859 for (uint32_t j = 0; j < parameters_size; j++) {
860 uint32_t parameter_name = DecodeUnsignedLeb128(&ptr_);
861 if (parameter_name != 0) {
862 parameter_name--;
863 if (!CheckIndex(parameter_name, header_->string_ids_size_, "debug_info_item parameter_name")) {
864 return false;
865 }
866 }
867 }
868
869 while (true) {
870 uint8_t opcode = *(ptr_++);
871 switch (opcode) {
872 case DexFile::DBG_END_SEQUENCE: {
873 return true;
874 }
875 case DexFile::DBG_ADVANCE_PC: {
876 DecodeUnsignedLeb128(&ptr_);
877 break;
878 }
879 case DexFile::DBG_ADVANCE_LINE: {
880 DecodeSignedLeb128(&ptr_);
881 break;
882 }
883 case DexFile::DBG_START_LOCAL: {
884 uint32_t reg_num = DecodeUnsignedLeb128(&ptr_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700885 if (UNLIKELY(reg_num >= 65536)) {
886 ErrorStringPrintf("Bad reg_num for opcode %x", opcode);
jeffhao10037c82012-01-23 15:06:23 -0800887 return false;
888 }
889 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_);
890 if (name_idx != 0) {
891 name_idx--;
892 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) {
893 return false;
894 }
895 }
896 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_);
897 if (type_idx != 0) {
898 type_idx--;
899 if (!CheckIndex(type_idx, header_->string_ids_size_, "DBG_START_LOCAL type_idx")) {
900 return false;
901 }
902 }
903 break;
904 }
905 case DexFile::DBG_END_LOCAL:
906 case DexFile::DBG_RESTART_LOCAL: {
907 uint32_t reg_num = DecodeUnsignedLeb128(&ptr_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700908 if (UNLIKELY(reg_num >= 65536)) {
909 ErrorStringPrintf("Bad reg_num for opcode %x", opcode);
jeffhao10037c82012-01-23 15:06:23 -0800910 return false;
911 }
912 break;
913 }
914 case DexFile::DBG_START_LOCAL_EXTENDED: {
915 uint32_t reg_num = DecodeUnsignedLeb128(&ptr_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700916 if (UNLIKELY(reg_num >= 65536)) {
917 ErrorStringPrintf("Bad reg_num for opcode %x", opcode);
jeffhao10037c82012-01-23 15:06:23 -0800918 return false;
919 }
920 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_);
921 if (name_idx != 0) {
922 name_idx--;
923 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL_EXTENDED name_idx")) {
924 return false;
925 }
926 }
927 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_);
928 if (type_idx != 0) {
929 type_idx--;
930 if (!CheckIndex(type_idx, header_->string_ids_size_, "DBG_START_LOCAL_EXTENDED type_idx")) {
931 return false;
932 }
933 }
934 uint32_t sig_idx = DecodeUnsignedLeb128(&ptr_);
935 if (sig_idx != 0) {
936 sig_idx--;
937 if (!CheckIndex(sig_idx, header_->string_ids_size_, "DBG_START_LOCAL_EXTENDED sig_idx")) {
938 return false;
939 }
940 }
941 break;
942 }
943 case DexFile::DBG_SET_FILE: {
944 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_);
945 if (name_idx != 0) {
946 name_idx--;
947 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_SET_FILE name_idx")) {
948 return false;
949 }
950 }
951 break;
952 }
953 }
954 }
955}
956
957bool DexFileVerifier::CheckIntraAnnotationItem() {
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700958 if (!CheckListSize(ptr_, 1, sizeof(byte), "annotation visibility")) {
jeffhao10037c82012-01-23 15:06:23 -0800959 return false;
960 }
961
962 // Check visibility
963 switch (*(ptr_++)) {
964 case DexFile::kDexVisibilityBuild:
965 case DexFile::kDexVisibilityRuntime:
966 case DexFile::kDexVisibilitySystem:
967 break;
968 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700969 ErrorStringPrintf("Bad annotation visibility: %x", *ptr_);
jeffhao10037c82012-01-23 15:06:23 -0800970 return false;
971 }
972
973 if (!CheckEncodedAnnotation()) {
974 return false;
975 }
976
977 return true;
978}
979
980bool DexFileVerifier::CheckIntraAnnotationsDirectoryItem() {
981 const DexFile::AnnotationsDirectoryItem* item =
982 reinterpret_cast<const DexFile::AnnotationsDirectoryItem*>(ptr_);
Andreas Gampe50d1bc12014-07-17 21:49:24 -0700983 if (!CheckListSize(item, 1, sizeof(DexFile::AnnotationsDirectoryItem), "annotations_directory")) {
jeffhao10037c82012-01-23 15:06:23 -0800984 return false;
985 }
986
987 // Field annotations follow immediately after the annotations directory.
988 const DexFile::FieldAnnotationsItem* field_item =
989 reinterpret_cast<const DexFile::FieldAnnotationsItem*>(item + 1);
990 uint32_t field_count = item->fields_size_;
991 if (!CheckListSize(field_item, field_count, sizeof(DexFile::FieldAnnotationsItem), "field_annotations list")) {
992 return false;
993 }
994
995 uint32_t last_idx = 0;
996 for (uint32_t i = 0; i < field_count; i++) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700997 if (UNLIKELY(last_idx >= field_item->field_idx_ && i != 0)) {
998 ErrorStringPrintf("Out-of-order field_idx for annotation: %x then %x", last_idx, field_item->field_idx_);
jeffhao10037c82012-01-23 15:06:23 -0800999 return false;
1000 }
1001 last_idx = field_item->field_idx_;
1002 field_item++;
1003 }
1004
1005 // Method annotations follow immediately after field annotations.
1006 const DexFile::MethodAnnotationsItem* method_item =
1007 reinterpret_cast<const DexFile::MethodAnnotationsItem*>(field_item);
1008 uint32_t method_count = item->methods_size_;
1009 if (!CheckListSize(method_item, method_count, sizeof(DexFile::MethodAnnotationsItem), "method_annotations list")) {
1010 return false;
1011 }
1012
1013 last_idx = 0;
1014 for (uint32_t i = 0; i < method_count; i++) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001015 if (UNLIKELY(last_idx >= method_item->method_idx_ && i != 0)) {
1016 ErrorStringPrintf("Out-of-order method_idx for annotation: %x then %x",
1017 last_idx, method_item->method_idx_);
jeffhao10037c82012-01-23 15:06:23 -08001018 return false;
1019 }
1020 last_idx = method_item->method_idx_;
1021 method_item++;
1022 }
1023
1024 // Parameter annotations follow immediately after method annotations.
1025 const DexFile::ParameterAnnotationsItem* parameter_item =
1026 reinterpret_cast<const DexFile::ParameterAnnotationsItem*>(method_item);
1027 uint32_t parameter_count = item->parameters_size_;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001028 if (!CheckListSize(parameter_item, parameter_count, sizeof(DexFile::ParameterAnnotationsItem),
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001029 "parameter_annotations list")) {
jeffhao10037c82012-01-23 15:06:23 -08001030 return false;
1031 }
1032
1033 last_idx = 0;
1034 for (uint32_t i = 0; i < parameter_count; i++) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001035 if (UNLIKELY(last_idx >= parameter_item->method_idx_ && i != 0)) {
1036 ErrorStringPrintf("Out-of-order method_idx for annotation: %x then %x",
1037 last_idx, parameter_item->method_idx_);
jeffhao10037c82012-01-23 15:06:23 -08001038 return false;
1039 }
1040 last_idx = parameter_item->method_idx_;
1041 parameter_item++;
1042 }
1043
1044 // Return a pointer to the end of the annotations.
1045 ptr_ = reinterpret_cast<const byte*>(parameter_item);
1046 return true;
1047}
1048
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001049bool DexFileVerifier::CheckIntraSectionIterate(size_t offset, uint32_t count, uint16_t type) {
jeffhao10037c82012-01-23 15:06:23 -08001050 // Get the right alignment mask for the type of section.
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001051 size_t alignment_mask;
jeffhao10037c82012-01-23 15:06:23 -08001052 switch (type) {
1053 case DexFile::kDexTypeClassDataItem:
1054 case DexFile::kDexTypeStringDataItem:
1055 case DexFile::kDexTypeDebugInfoItem:
1056 case DexFile::kDexTypeAnnotationItem:
1057 case DexFile::kDexTypeEncodedArrayItem:
1058 alignment_mask = sizeof(uint8_t) - 1;
1059 break;
1060 default:
1061 alignment_mask = sizeof(uint32_t) - 1;
1062 break;
1063 }
1064
1065 // Iterate through the items in the section.
1066 for (uint32_t i = 0; i < count; i++) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001067 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask;
jeffhao10037c82012-01-23 15:06:23 -08001068
1069 // Check the padding between items.
1070 if (!CheckPadding(offset, aligned_offset)) {
1071 return false;
1072 }
1073
1074 // Check depending on the section type.
1075 switch (type) {
1076 case DexFile::kDexTypeStringIdItem: {
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001077 if (!CheckListSize(ptr_, 1, sizeof(DexFile::StringId), "string_ids")) {
jeffhao10037c82012-01-23 15:06:23 -08001078 return false;
1079 }
1080 ptr_ += sizeof(DexFile::StringId);
1081 break;
1082 }
1083 case DexFile::kDexTypeTypeIdItem: {
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001084 if (!CheckListSize(ptr_, 1, sizeof(DexFile::TypeId), "type_ids")) {
jeffhao10037c82012-01-23 15:06:23 -08001085 return false;
1086 }
1087 ptr_ += sizeof(DexFile::TypeId);
1088 break;
1089 }
1090 case DexFile::kDexTypeProtoIdItem: {
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001091 if (!CheckListSize(ptr_, 1, sizeof(DexFile::ProtoId), "proto_ids")) {
jeffhao10037c82012-01-23 15:06:23 -08001092 return false;
1093 }
1094 ptr_ += sizeof(DexFile::ProtoId);
1095 break;
1096 }
1097 case DexFile::kDexTypeFieldIdItem: {
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001098 if (!CheckListSize(ptr_, 1, sizeof(DexFile::FieldId), "field_ids")) {
jeffhao10037c82012-01-23 15:06:23 -08001099 return false;
1100 }
1101 ptr_ += sizeof(DexFile::FieldId);
1102 break;
1103 }
1104 case DexFile::kDexTypeMethodIdItem: {
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001105 if (!CheckListSize(ptr_, 1, sizeof(DexFile::MethodId), "method_ids")) {
jeffhao10037c82012-01-23 15:06:23 -08001106 return false;
1107 }
1108 ptr_ += sizeof(DexFile::MethodId);
1109 break;
1110 }
1111 case DexFile::kDexTypeClassDefItem: {
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001112 if (!CheckListSize(ptr_, 1, sizeof(DexFile::ClassDef), "class_defs")) {
jeffhao10037c82012-01-23 15:06:23 -08001113 return false;
1114 }
1115 ptr_ += sizeof(DexFile::ClassDef);
1116 break;
1117 }
1118 case DexFile::kDexTypeTypeList: {
1119 const DexFile::TypeList* list = reinterpret_cast<const DexFile::TypeList*>(ptr_);
jeffhao10037c82012-01-23 15:06:23 -08001120
Andreas Gampe31a7a0c2014-08-29 16:07:49 -07001121 // Check that at least the header (size) is available.
1122 if (!CheckListSize(list, 1, DexFile::TypeList::GetHeaderSize(), "type_list")) {
jeffhao10037c82012-01-23 15:06:23 -08001123 return false;
1124 }
Andreas Gampe31a7a0c2014-08-29 16:07:49 -07001125
1126 // Check that the whole list is available.
1127 const size_t list_size = DexFile::TypeList::GetListSize(list->Size());
1128 if (!CheckListSize(list, 1, list_size, "type_list size")) {
1129 return false;
1130 }
1131
1132 ptr_ += count;
jeffhao10037c82012-01-23 15:06:23 -08001133 break;
1134 }
1135 case DexFile::kDexTypeAnnotationSetRefList: {
1136 const DexFile::AnnotationSetRefList* list =
1137 reinterpret_cast<const DexFile::AnnotationSetRefList*>(ptr_);
1138 const DexFile::AnnotationSetRefItem* item = list->list_;
1139 uint32_t count = list->size_;
1140
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001141 if (!CheckListSize(list, 1, sizeof(DexFile::AnnotationSetRefList),
1142 "annotation_set_ref_list") ||
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001143 !CheckListSize(item, count, sizeof(DexFile::AnnotationSetRefItem),
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001144 "annotation_set_ref_list size")) {
jeffhao10037c82012-01-23 15:06:23 -08001145 return false;
1146 }
1147 ptr_ = reinterpret_cast<const byte*>(item + count);
1148 break;
1149 }
1150 case DexFile::kDexTypeAnnotationSetItem: {
1151 const DexFile::AnnotationSetItem* set =
1152 reinterpret_cast<const DexFile::AnnotationSetItem*>(ptr_);
1153 const uint32_t* item = set->entries_;
1154 uint32_t count = set->size_;
1155
Andreas Gampe50d1bc12014-07-17 21:49:24 -07001156 if (!CheckListSize(set, 1, sizeof(DexFile::AnnotationSetItem), "annotation_set_item") ||
jeffhao10037c82012-01-23 15:06:23 -08001157 !CheckListSize(item, count, sizeof(uint32_t), "annotation_set_item size")) {
1158 return false;
1159 }
1160 ptr_ = reinterpret_cast<const byte*>(item + count);
1161 break;
1162 }
1163 case DexFile::kDexTypeClassDataItem: {
1164 if (!CheckIntraClassDataItem()) {
1165 return false;
1166 }
1167 break;
1168 }
1169 case DexFile::kDexTypeCodeItem: {
1170 if (!CheckIntraCodeItem()) {
1171 return false;
1172 }
1173 break;
1174 }
1175 case DexFile::kDexTypeStringDataItem: {
1176 if (!CheckIntraStringDataItem()) {
1177 return false;
1178 }
1179 break;
1180 }
1181 case DexFile::kDexTypeDebugInfoItem: {
1182 if (!CheckIntraDebugInfoItem()) {
1183 return false;
1184 }
1185 break;
1186 }
1187 case DexFile::kDexTypeAnnotationItem: {
1188 if (!CheckIntraAnnotationItem()) {
1189 return false;
1190 }
1191 break;
1192 }
1193 case DexFile::kDexTypeEncodedArrayItem: {
1194 if (!CheckEncodedArray()) {
1195 return false;
1196 }
1197 break;
1198 }
1199 case DexFile::kDexTypeAnnotationsDirectoryItem: {
1200 if (!CheckIntraAnnotationsDirectoryItem()) {
1201 return false;
1202 }
1203 break;
1204 }
1205 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001206 ErrorStringPrintf("Unknown map item type %x", type);
jeffhao10037c82012-01-23 15:06:23 -08001207 return false;
1208 }
1209
1210 if (IsDataSectionType(type)) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07001211 offset_to_type_map_.Put(aligned_offset, type);
jeffhao10037c82012-01-23 15:06:23 -08001212 }
1213
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001214 aligned_offset = ptr_ - begin_;
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001215 if (UNLIKELY(aligned_offset > size_)) {
1216 ErrorStringPrintf("Item %d at ends out of bounds", i);
jeffhao10037c82012-01-23 15:06:23 -08001217 return false;
1218 }
1219
1220 offset = aligned_offset;
1221 }
1222
1223 return true;
1224}
1225
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001226bool DexFileVerifier::CheckIntraIdSection(size_t offset, uint32_t count, uint16_t type) {
jeffhao10037c82012-01-23 15:06:23 -08001227 uint32_t expected_offset;
1228 uint32_t expected_size;
1229
1230 // Get the expected offset and size from the header.
1231 switch (type) {
1232 case DexFile::kDexTypeStringIdItem:
1233 expected_offset = header_->string_ids_off_;
1234 expected_size = header_->string_ids_size_;
1235 break;
1236 case DexFile::kDexTypeTypeIdItem:
1237 expected_offset = header_->type_ids_off_;
1238 expected_size = header_->type_ids_size_;
1239 break;
1240 case DexFile::kDexTypeProtoIdItem:
1241 expected_offset = header_->proto_ids_off_;
1242 expected_size = header_->proto_ids_size_;
1243 break;
1244 case DexFile::kDexTypeFieldIdItem:
1245 expected_offset = header_->field_ids_off_;
1246 expected_size = header_->field_ids_size_;
1247 break;
1248 case DexFile::kDexTypeMethodIdItem:
1249 expected_offset = header_->method_ids_off_;
1250 expected_size = header_->method_ids_size_;
1251 break;
1252 case DexFile::kDexTypeClassDefItem:
1253 expected_offset = header_->class_defs_off_;
1254 expected_size = header_->class_defs_size_;
1255 break;
1256 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001257 ErrorStringPrintf("Bad type for id section: %x", type);
jeffhao10037c82012-01-23 15:06:23 -08001258 return false;
1259 }
1260
1261 // Check that the offset and size are what were expected from the header.
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001262 if (UNLIKELY(offset != expected_offset)) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001263 ErrorStringPrintf("Bad offset for section: got %zx, expected %x", offset, expected_offset);
jeffhao10037c82012-01-23 15:06:23 -08001264 return false;
1265 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001266 if (UNLIKELY(count != expected_size)) {
1267 ErrorStringPrintf("Bad size for section: got %x, expected %x", count, expected_size);
jeffhao10037c82012-01-23 15:06:23 -08001268 return false;
1269 }
1270
1271 return CheckIntraSectionIterate(offset, count, type);
1272}
1273
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001274bool DexFileVerifier::CheckIntraDataSection(size_t offset, uint32_t count, uint16_t type) {
1275 size_t data_start = header_->data_off_;
1276 size_t data_end = data_start + header_->data_size_;
jeffhao10037c82012-01-23 15:06:23 -08001277
1278 // Sanity check the offset of the section.
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001279 if (UNLIKELY((offset < data_start) || (offset > data_end))) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001280 ErrorStringPrintf("Bad offset for data subsection: %zx", offset);
jeffhao10037c82012-01-23 15:06:23 -08001281 return false;
1282 }
1283
1284 if (!CheckIntraSectionIterate(offset, count, type)) {
1285 return false;
1286 }
1287
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001288 size_t next_offset = ptr_ - begin_;
jeffhao10037c82012-01-23 15:06:23 -08001289 if (next_offset > data_end) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001290 ErrorStringPrintf("Out-of-bounds end of data subsection: %zx", next_offset);
jeffhao10037c82012-01-23 15:06:23 -08001291 return false;
1292 }
1293
1294 return true;
1295}
1296
1297bool DexFileVerifier::CheckIntraSection() {
Ian Rogers30fab402012-01-23 15:43:46 -08001298 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ + header_->map_off_);
jeffhao10037c82012-01-23 15:06:23 -08001299 const DexFile::MapItem* item = map->list_;
1300
1301 uint32_t count = map->size_;
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001302 size_t offset = 0;
Ian Rogers30fab402012-01-23 15:43:46 -08001303 ptr_ = begin_;
jeffhao10037c82012-01-23 15:06:23 -08001304
1305 // Check the items listed in the map.
1306 while (count--) {
1307 uint32_t section_offset = item->offset_;
1308 uint32_t section_count = item->size_;
1309 uint16_t type = item->type_;
1310
1311 // Check for padding and overlap between items.
1312 if (!CheckPadding(offset, section_offset)) {
1313 return false;
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001314 } else if (UNLIKELY(offset > section_offset)) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001315 ErrorStringPrintf("Section overlap or out-of-order map: %zx, %x", offset, section_offset);
jeffhao10037c82012-01-23 15:06:23 -08001316 return false;
1317 }
1318
1319 // Check each item based on its type.
1320 switch (type) {
1321 case DexFile::kDexTypeHeaderItem:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001322 if (UNLIKELY(section_count != 1)) {
1323 ErrorStringPrintf("Multiple header items");
jeffhao10037c82012-01-23 15:06:23 -08001324 return false;
1325 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001326 if (UNLIKELY(section_offset != 0)) {
1327 ErrorStringPrintf("Header at %x, not at start of file", section_offset);
jeffhao10037c82012-01-23 15:06:23 -08001328 return false;
1329 }
Ian Rogers30fab402012-01-23 15:43:46 -08001330 ptr_ = begin_ + header_->header_size_;
jeffhao10037c82012-01-23 15:06:23 -08001331 offset = header_->header_size_;
1332 break;
1333 case DexFile::kDexTypeStringIdItem:
1334 case DexFile::kDexTypeTypeIdItem:
1335 case DexFile::kDexTypeProtoIdItem:
1336 case DexFile::kDexTypeFieldIdItem:
1337 case DexFile::kDexTypeMethodIdItem:
1338 case DexFile::kDexTypeClassDefItem:
1339 if (!CheckIntraIdSection(section_offset, section_count, type)) {
1340 return false;
1341 }
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001342 offset = ptr_ - begin_;
jeffhao10037c82012-01-23 15:06:23 -08001343 break;
1344 case DexFile::kDexTypeMapList:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001345 if (UNLIKELY(section_count != 1)) {
1346 ErrorStringPrintf("Multiple map list items");
jeffhao10037c82012-01-23 15:06:23 -08001347 return false;
1348 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001349 if (UNLIKELY(section_offset != header_->map_off_)) {
1350 ErrorStringPrintf("Map not at header-defined offset: %x, expected %x",
1351 section_offset, header_->map_off_);
jeffhao10037c82012-01-23 15:06:23 -08001352 return false;
1353 }
1354 ptr_ += sizeof(uint32_t) + (map->size_ * sizeof(DexFile::MapItem));
1355 offset = section_offset + sizeof(uint32_t) + (map->size_ * sizeof(DexFile::MapItem));
1356 break;
1357 case DexFile::kDexTypeTypeList:
1358 case DexFile::kDexTypeAnnotationSetRefList:
1359 case DexFile::kDexTypeAnnotationSetItem:
1360 case DexFile::kDexTypeClassDataItem:
1361 case DexFile::kDexTypeCodeItem:
1362 case DexFile::kDexTypeStringDataItem:
1363 case DexFile::kDexTypeDebugInfoItem:
1364 case DexFile::kDexTypeAnnotationItem:
1365 case DexFile::kDexTypeEncodedArrayItem:
1366 case DexFile::kDexTypeAnnotationsDirectoryItem:
1367 if (!CheckIntraDataSection(section_offset, section_count, type)) {
1368 return false;
1369 }
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001370 offset = ptr_ - begin_;
jeffhao10037c82012-01-23 15:06:23 -08001371 break;
1372 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001373 ErrorStringPrintf("Unknown map item type %x", type);
jeffhao10037c82012-01-23 15:06:23 -08001374 return false;
1375 }
1376
1377 item++;
1378 }
1379
1380 return true;
1381}
1382
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001383bool DexFileVerifier::CheckOffsetToTypeMap(size_t offset, uint16_t type) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001384 auto it = offset_to_type_map_.find(offset);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001385 if (UNLIKELY(it == offset_to_type_map_.end())) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001386 ErrorStringPrintf("No data map entry found @ %zx; expected %x", offset, type);
jeffhao10037c82012-01-23 15:06:23 -08001387 return false;
1388 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001389 if (UNLIKELY(it->second != type)) {
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001390 ErrorStringPrintf("Unexpected data map entry @ %zx; expected %x, found %x",
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001391 offset, type, it->second);
jeffhao10037c82012-01-23 15:06:23 -08001392 return false;
1393 }
1394 return true;
1395}
1396
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001397uint16_t DexFileVerifier::FindFirstClassDataDefiner(const byte* ptr, bool* success) {
jeffhao10037c82012-01-23 15:06:23 -08001398 ClassDataItemIterator it(*dex_file_, ptr);
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001399 *success = true;
jeffhao10037c82012-01-23 15:06:23 -08001400
1401 if (it.HasNextStaticField() || it.HasNextInstanceField()) {
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001402 LOAD_FIELD(field, it.GetMemberIndex(), "first_class_data_definer field_id",
1403 *success = false; return DexFile::kDexNoIndex16)
Andreas Gampee09269c2014-06-06 18:45:35 -07001404 return field->class_idx_;
jeffhao10037c82012-01-23 15:06:23 -08001405 }
1406
1407 if (it.HasNextDirectMethod() || it.HasNextVirtualMethod()) {
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001408 LOAD_METHOD(method, it.GetMemberIndex(), "first_class_data_definer method_id",
1409 *success = false; return DexFile::kDexNoIndex16)
Andreas Gampee09269c2014-06-06 18:45:35 -07001410 return method->class_idx_;
jeffhao10037c82012-01-23 15:06:23 -08001411 }
1412
1413 return DexFile::kDexNoIndex16;
1414}
1415
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001416uint16_t DexFileVerifier::FindFirstAnnotationsDirectoryDefiner(const byte* ptr, bool* success) {
jeffhao10037c82012-01-23 15:06:23 -08001417 const DexFile::AnnotationsDirectoryItem* item =
1418 reinterpret_cast<const DexFile::AnnotationsDirectoryItem*>(ptr);
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001419 *success = true;
1420
jeffhao10037c82012-01-23 15:06:23 -08001421 if (item->fields_size_ != 0) {
1422 DexFile::FieldAnnotationsItem* field_items = (DexFile::FieldAnnotationsItem*) (item + 1);
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001423 LOAD_FIELD(field, field_items[0].field_idx_, "first_annotations_dir_definer field_id",
1424 *success = false; return DexFile::kDexNoIndex16)
Andreas Gampee09269c2014-06-06 18:45:35 -07001425 return field->class_idx_;
jeffhao10037c82012-01-23 15:06:23 -08001426 }
1427
1428 if (item->methods_size_ != 0) {
1429 DexFile::MethodAnnotationsItem* method_items = (DexFile::MethodAnnotationsItem*) (item + 1);
Andreas Gampee09269c2014-06-06 18:45:35 -07001430 LOAD_METHOD(method, method_items[0].method_idx_, "first_annotations_dir_definer method id",
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001431 *success = false; return DexFile::kDexNoIndex16)
Andreas Gampee09269c2014-06-06 18:45:35 -07001432 return method->class_idx_;
jeffhao10037c82012-01-23 15:06:23 -08001433 }
1434
1435 if (item->parameters_size_ != 0) {
1436 DexFile::ParameterAnnotationsItem* parameter_items = (DexFile::ParameterAnnotationsItem*) (item + 1);
Andreas Gampee09269c2014-06-06 18:45:35 -07001437 LOAD_METHOD(method, parameter_items[0].method_idx_, "first_annotations_dir_definer method id",
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001438 *success = false; return DexFile::kDexNoIndex16)
Andreas Gampee09269c2014-06-06 18:45:35 -07001439 return method->class_idx_;
jeffhao10037c82012-01-23 15:06:23 -08001440 }
1441
1442 return DexFile::kDexNoIndex16;
1443}
1444
1445bool DexFileVerifier::CheckInterStringIdItem() {
1446 const DexFile::StringId* item = reinterpret_cast<const DexFile::StringId*>(ptr_);
1447
1448 // Check the map to make sure it has the right offset->type.
1449 if (!CheckOffsetToTypeMap(item->string_data_off_, DexFile::kDexTypeStringDataItem)) {
1450 return false;
1451 }
1452
1453 // Check ordering between items.
1454 if (previous_item_ != NULL) {
1455 const DexFile::StringId* prev_item = reinterpret_cast<const DexFile::StringId*>(previous_item_);
1456 const char* prev_str = dex_file_->GetStringData(*prev_item);
1457 const char* str = dex_file_->GetStringData(*item);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001458 if (UNLIKELY(CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(prev_str, str) >= 0)) {
1459 ErrorStringPrintf("Out-of-order string_ids: '%s' then '%s'", prev_str, str);
jeffhao10037c82012-01-23 15:06:23 -08001460 return false;
1461 }
1462 }
1463
1464 ptr_ += sizeof(DexFile::StringId);
1465 return true;
1466}
1467
1468bool DexFileVerifier::CheckInterTypeIdItem() {
1469 const DexFile::TypeId* item = reinterpret_cast<const DexFile::TypeId*>(ptr_);
Andreas Gampee09269c2014-06-06 18:45:35 -07001470
1471 LOAD_STRING(descriptor, item->descriptor_idx_, "inter_type_id_item descriptor_idx")
jeffhao10037c82012-01-23 15:06:23 -08001472
1473 // Check that the descriptor is a valid type.
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001474 if (UNLIKELY(!IsValidDescriptor(descriptor))) {
1475 ErrorStringPrintf("Invalid type descriptor: '%s'", descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001476 return false;
1477 }
1478
1479 // Check ordering between items.
1480 if (previous_item_ != NULL) {
1481 const DexFile::TypeId* prev_item = reinterpret_cast<const DexFile::TypeId*>(previous_item_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001482 if (UNLIKELY(prev_item->descriptor_idx_ >= item->descriptor_idx_)) {
1483 ErrorStringPrintf("Out-of-order type_ids: %x then %x",
1484 prev_item->descriptor_idx_, item->descriptor_idx_);
jeffhao10037c82012-01-23 15:06:23 -08001485 return false;
1486 }
1487 }
1488
1489 ptr_ += sizeof(DexFile::TypeId);
1490 return true;
1491}
1492
1493bool DexFileVerifier::CheckInterProtoIdItem() {
1494 const DexFile::ProtoId* item = reinterpret_cast<const DexFile::ProtoId*>(ptr_);
Andreas Gampee09269c2014-06-06 18:45:35 -07001495
1496 LOAD_STRING(shorty, item->shorty_idx_, "inter_proto_id_item shorty_idx")
1497
jeffhao10037c82012-01-23 15:06:23 -08001498 if (item->parameters_off_ != 0 &&
1499 !CheckOffsetToTypeMap(item->parameters_off_, DexFile::kDexTypeTypeList)) {
1500 return false;
1501 }
1502
1503 // Check the return type and advance the shorty.
Andreas Gampee09269c2014-06-06 18:45:35 -07001504 LOAD_STRING_BY_TYPE(return_type, item->return_type_idx_, "inter_proto_id_item return_type_idx")
1505 if (!CheckShortyDescriptorMatch(*shorty, return_type, true)) {
jeffhao10037c82012-01-23 15:06:23 -08001506 return false;
1507 }
1508 shorty++;
1509
1510 DexFileParameterIterator it(*dex_file_, *item);
1511 while (it.HasNext() && *shorty != '\0') {
Andreas Gampebb836e12014-06-13 15:31:40 -07001512 if (!CheckIndex(it.GetTypeIdx(), dex_file_->NumTypeIds(),
1513 "inter_proto_id_item shorty type_idx")) {
1514 return false;
1515 }
jeffhao10037c82012-01-23 15:06:23 -08001516 const char* descriptor = it.GetDescriptor();
1517 if (!CheckShortyDescriptorMatch(*shorty, descriptor, false)) {
1518 return false;
1519 }
1520 it.Next();
1521 shorty++;
1522 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001523 if (UNLIKELY(it.HasNext() || *shorty != '\0')) {
1524 ErrorStringPrintf("Mismatched length for parameters and shorty");
jeffhao10037c82012-01-23 15:06:23 -08001525 return false;
1526 }
1527
1528 // Check ordering between items. This relies on type_ids being in order.
1529 if (previous_item_ != NULL) {
1530 const DexFile::ProtoId* prev = reinterpret_cast<const DexFile::ProtoId*>(previous_item_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001531 if (UNLIKELY(prev->return_type_idx_ > item->return_type_idx_)) {
1532 ErrorStringPrintf("Out-of-order proto_id return types");
jeffhao10037c82012-01-23 15:06:23 -08001533 return false;
1534 } else if (prev->return_type_idx_ == item->return_type_idx_) {
1535 DexFileParameterIterator curr_it(*dex_file_, *item);
1536 DexFileParameterIterator prev_it(*dex_file_, *prev);
1537
1538 while (curr_it.HasNext() && prev_it.HasNext()) {
1539 uint16_t prev_idx = prev_it.GetTypeIdx();
1540 uint16_t curr_idx = curr_it.GetTypeIdx();
1541 if (prev_idx == DexFile::kDexNoIndex16) {
1542 break;
1543 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001544 if (UNLIKELY(curr_idx == DexFile::kDexNoIndex16)) {
1545 ErrorStringPrintf("Out-of-order proto_id arguments");
jeffhao10037c82012-01-23 15:06:23 -08001546 return false;
1547 }
1548
1549 if (prev_idx < curr_idx) {
1550 break;
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001551 } else if (UNLIKELY(prev_idx > curr_idx)) {
1552 ErrorStringPrintf("Out-of-order proto_id arguments");
jeffhao10037c82012-01-23 15:06:23 -08001553 return false;
1554 }
1555
1556 prev_it.Next();
1557 curr_it.Next();
1558 }
1559 }
1560 }
1561
1562 ptr_ += sizeof(DexFile::ProtoId);
1563 return true;
1564}
1565
1566bool DexFileVerifier::CheckInterFieldIdItem() {
1567 const DexFile::FieldId* item = reinterpret_cast<const DexFile::FieldId*>(ptr_);
1568
1569 // Check that the class descriptor is valid.
Andreas Gampee09269c2014-06-06 18:45:35 -07001570 LOAD_STRING_BY_TYPE(class_descriptor, item->class_idx_, "inter_field_id_item class_idx")
1571 if (UNLIKELY(!IsValidDescriptor(class_descriptor) || class_descriptor[0] != 'L')) {
1572 ErrorStringPrintf("Invalid descriptor for class_idx: '%s'", class_descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001573 return false;
1574 }
1575
1576 // Check that the type descriptor is a valid field name.
Andreas Gampee09269c2014-06-06 18:45:35 -07001577 LOAD_STRING_BY_TYPE(type_descriptor, item->type_idx_, "inter_field_id_item type_idx")
1578 if (UNLIKELY(!IsValidDescriptor(type_descriptor) || type_descriptor[0] == 'V')) {
1579 ErrorStringPrintf("Invalid descriptor for type_idx: '%s'", type_descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001580 return false;
1581 }
1582
1583 // Check that the name is valid.
Andreas Gampee09269c2014-06-06 18:45:35 -07001584 LOAD_STRING(descriptor, item->name_idx_, "inter_field_id_item name_idx")
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001585 if (UNLIKELY(!IsValidMemberName(descriptor))) {
1586 ErrorStringPrintf("Invalid field name: '%s'", descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001587 return false;
1588 }
1589
1590 // Check ordering between items. This relies on the other sections being in order.
1591 if (previous_item_ != NULL) {
1592 const DexFile::FieldId* prev_item = reinterpret_cast<const DexFile::FieldId*>(previous_item_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001593 if (UNLIKELY(prev_item->class_idx_ > item->class_idx_)) {
1594 ErrorStringPrintf("Out-of-order field_ids");
jeffhao10037c82012-01-23 15:06:23 -08001595 return false;
1596 } else if (prev_item->class_idx_ == item->class_idx_) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001597 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1598 ErrorStringPrintf("Out-of-order field_ids");
jeffhao10037c82012-01-23 15:06:23 -08001599 return false;
1600 } else if (prev_item->name_idx_ == item->name_idx_) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001601 if (UNLIKELY(prev_item->type_idx_ >= item->type_idx_)) {
1602 ErrorStringPrintf("Out-of-order field_ids");
jeffhao10037c82012-01-23 15:06:23 -08001603 return false;
1604 }
1605 }
1606 }
1607 }
1608
1609 ptr_ += sizeof(DexFile::FieldId);
1610 return true;
1611}
1612
1613bool DexFileVerifier::CheckInterMethodIdItem() {
1614 const DexFile::MethodId* item = reinterpret_cast<const DexFile::MethodId*>(ptr_);
1615
1616 // Check that the class descriptor is a valid reference name.
Andreas Gampee09269c2014-06-06 18:45:35 -07001617 LOAD_STRING_BY_TYPE(class_descriptor, item->class_idx_, "inter_method_id_item class_idx")
1618 if (UNLIKELY(!IsValidDescriptor(class_descriptor) || (class_descriptor[0] != 'L' &&
1619 class_descriptor[0] != '['))) {
1620 ErrorStringPrintf("Invalid descriptor for class_idx: '%s'", class_descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001621 return false;
1622 }
1623
1624 // Check that the name is valid.
Andreas Gampedf10b322014-06-11 21:46:05 -07001625 LOAD_STRING(descriptor, item->name_idx_, "inter_method_id_item name_idx")
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001626 if (UNLIKELY(!IsValidMemberName(descriptor))) {
1627 ErrorStringPrintf("Invalid method name: '%s'", descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001628 return false;
1629 }
1630
Andreas Gampedf10b322014-06-11 21:46:05 -07001631 // Check that the proto id is valid.
1632 if (UNLIKELY(!CheckIndex(item->proto_idx_, dex_file_->NumProtoIds(),
1633 "inter_method_id_item proto_idx"))) {
1634 return false;
1635 }
1636
jeffhao10037c82012-01-23 15:06:23 -08001637 // Check ordering between items. This relies on the other sections being in order.
1638 if (previous_item_ != NULL) {
1639 const DexFile::MethodId* prev_item = reinterpret_cast<const DexFile::MethodId*>(previous_item_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001640 if (UNLIKELY(prev_item->class_idx_ > item->class_idx_)) {
1641 ErrorStringPrintf("Out-of-order method_ids");
jeffhao10037c82012-01-23 15:06:23 -08001642 return false;
1643 } else if (prev_item->class_idx_ == item->class_idx_) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001644 if (UNLIKELY(prev_item->name_idx_ > item->name_idx_)) {
1645 ErrorStringPrintf("Out-of-order method_ids");
jeffhao10037c82012-01-23 15:06:23 -08001646 return false;
1647 } else if (prev_item->name_idx_ == item->name_idx_) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001648 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) {
1649 ErrorStringPrintf("Out-of-order method_ids");
jeffhao10037c82012-01-23 15:06:23 -08001650 return false;
1651 }
1652 }
1653 }
1654 }
1655
1656 ptr_ += sizeof(DexFile::MethodId);
1657 return true;
1658}
1659
1660bool DexFileVerifier::CheckInterClassDefItem() {
1661 const DexFile::ClassDef* item = reinterpret_cast<const DexFile::ClassDef*>(ptr_);
jeffhao10037c82012-01-23 15:06:23 -08001662
Andreas Gampe0ba238d2014-07-29 01:22:07 -07001663 // Check for duplicate class def.
1664 if (defined_classes_.find(item->class_idx_) != defined_classes_.end()) {
1665 ErrorStringPrintf("Redefinition of class with type idx: '%d'", item->class_idx_);
1666 return false;
1667 }
1668 defined_classes_.insert(item->class_idx_);
1669
Andreas Gampee09269c2014-06-06 18:45:35 -07001670 LOAD_STRING_BY_TYPE(class_descriptor, item->class_idx_, "inter_class_def_item class_idx")
1671 if (UNLIKELY(!IsValidDescriptor(class_descriptor) || class_descriptor[0] != 'L')) {
1672 ErrorStringPrintf("Invalid class descriptor: '%s'", class_descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001673 return false;
1674 }
1675
Andreas Gampeacc2bb62014-07-17 19:26:50 -07001676 // Only allow non-runtime modifiers.
1677 if ((item->access_flags_ & ~kAccJavaFlagsMask) != 0) {
1678 ErrorStringPrintf("Invalid class flags: '%d'", item->access_flags_);
1679 return false;
1680 }
1681
jeffhao10037c82012-01-23 15:06:23 -08001682 if (item->interfaces_off_ != 0 &&
1683 !CheckOffsetToTypeMap(item->interfaces_off_, DexFile::kDexTypeTypeList)) {
1684 return false;
1685 }
1686 if (item->annotations_off_ != 0 &&
1687 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationsDirectoryItem)) {
1688 return false;
1689 }
1690 if (item->class_data_off_ != 0 &&
1691 !CheckOffsetToTypeMap(item->class_data_off_, DexFile::kDexTypeClassDataItem)) {
1692 return false;
1693 }
1694 if (item->static_values_off_ != 0 &&
1695 !CheckOffsetToTypeMap(item->static_values_off_, DexFile::kDexTypeEncodedArrayItem)) {
1696 return false;
1697 }
1698
1699 if (item->superclass_idx_ != DexFile::kDexNoIndex16) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001700 LOAD_STRING_BY_TYPE(superclass_descriptor, item->superclass_idx_,
1701 "inter_class_def_item superclass_idx")
1702 if (UNLIKELY(!IsValidDescriptor(superclass_descriptor) || superclass_descriptor[0] != 'L')) {
1703 ErrorStringPrintf("Invalid superclass: '%s'", superclass_descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001704 return false;
1705 }
1706 }
1707
1708 const DexFile::TypeList* interfaces = dex_file_->GetInterfacesList(*item);
1709 if (interfaces != NULL) {
1710 uint32_t size = interfaces->Size();
1711
1712 // Ensure that all interfaces refer to classes (not arrays or primitives).
1713 for (uint32_t i = 0; i < size; i++) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001714 LOAD_STRING_BY_TYPE(inf_descriptor, interfaces->GetTypeItem(i).type_idx_,
1715 "inter_class_def_item interface type_idx")
1716 if (UNLIKELY(!IsValidDescriptor(inf_descriptor) || inf_descriptor[0] != 'L')) {
1717 ErrorStringPrintf("Invalid interface: '%s'", inf_descriptor);
jeffhao10037c82012-01-23 15:06:23 -08001718 return false;
1719 }
1720 }
1721
1722 /*
1723 * Ensure that there are no duplicates. This is an O(N^2) test, but in
1724 * practice the number of interfaces implemented by any given class is low.
1725 */
1726 for (uint32_t i = 1; i < size; i++) {
1727 uint32_t idx1 = interfaces->GetTypeItem(i).type_idx_;
1728 for (uint32_t j =0; j < i; j++) {
1729 uint32_t idx2 = interfaces->GetTypeItem(j).type_idx_;
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001730 if (UNLIKELY(idx1 == idx2)) {
1731 ErrorStringPrintf("Duplicate interface: '%s'", dex_file_->StringByTypeIdx(idx1));
jeffhao10037c82012-01-23 15:06:23 -08001732 return false;
1733 }
1734 }
1735 }
1736 }
1737
1738 // Check that references in class_data_item are to the right class.
1739 if (item->class_data_off_ != 0) {
Ian Rogers30fab402012-01-23 15:43:46 -08001740 const byte* data = begin_ + item->class_data_off_;
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001741 bool success;
1742 uint16_t data_definer = FindFirstClassDataDefiner(data, &success);
1743 if (!success) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001744 return false;
1745 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001746 if (UNLIKELY((data_definer != item->class_idx_) && (data_definer != DexFile::kDexNoIndex16))) {
1747 ErrorStringPrintf("Invalid class_data_item");
jeffhao10037c82012-01-23 15:06:23 -08001748 return false;
1749 }
1750 }
1751
1752 // Check that references in annotations_directory_item are to right class.
1753 if (item->annotations_off_ != 0) {
Ian Rogers30fab402012-01-23 15:43:46 -08001754 const byte* data = begin_ + item->annotations_off_;
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001755 bool success;
1756 uint16_t annotations_definer = FindFirstAnnotationsDirectoryDefiner(data, &success);
1757 if (!success) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001758 return false;
1759 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001760 if (UNLIKELY((annotations_definer != item->class_idx_) &&
1761 (annotations_definer != DexFile::kDexNoIndex16))) {
1762 ErrorStringPrintf("Invalid annotations_directory_item");
jeffhao10037c82012-01-23 15:06:23 -08001763 return false;
1764 }
1765 }
1766
1767 ptr_ += sizeof(DexFile::ClassDef);
1768 return true;
1769}
1770
1771bool DexFileVerifier::CheckInterAnnotationSetRefList() {
1772 const DexFile::AnnotationSetRefList* list =
1773 reinterpret_cast<const DexFile::AnnotationSetRefList*>(ptr_);
1774 const DexFile::AnnotationSetRefItem* item = list->list_;
1775 uint32_t count = list->size_;
1776
1777 while (count--) {
1778 if (item->annotations_off_ != 0 &&
1779 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) {
1780 return false;
1781 }
1782 item++;
1783 }
1784
1785 ptr_ = reinterpret_cast<const byte*>(item);
1786 return true;
1787}
1788
1789bool DexFileVerifier::CheckInterAnnotationSetItem() {
1790 const DexFile::AnnotationSetItem* set = reinterpret_cast<const DexFile::AnnotationSetItem*>(ptr_);
1791 const uint32_t* offsets = set->entries_;
1792 uint32_t count = set->size_;
1793 uint32_t last_idx = 0;
1794
1795 for (uint32_t i = 0; i < count; i++) {
1796 if (*offsets != 0 && !CheckOffsetToTypeMap(*offsets, DexFile::kDexTypeAnnotationItem)) {
1797 return false;
1798 }
1799
1800 // Get the annotation from the offset and the type index for the annotation.
1801 const DexFile::AnnotationItem* annotation =
Ian Rogers30fab402012-01-23 15:43:46 -08001802 reinterpret_cast<const DexFile::AnnotationItem*>(begin_ + *offsets);
jeffhao10037c82012-01-23 15:06:23 -08001803 const uint8_t* data = annotation->annotation_;
1804 uint32_t idx = DecodeUnsignedLeb128(&data);
1805
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001806 if (UNLIKELY(last_idx >= idx && i != 0)) {
1807 ErrorStringPrintf("Out-of-order entry types: %x then %x", last_idx, idx);
jeffhao10037c82012-01-23 15:06:23 -08001808 return false;
1809 }
1810
1811 last_idx = idx;
1812 offsets++;
1813 }
1814
1815 ptr_ = reinterpret_cast<const byte*>(offsets);
1816 return true;
1817}
1818
1819bool DexFileVerifier::CheckInterClassDataItem() {
1820 ClassDataItemIterator it(*dex_file_, ptr_);
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001821 bool success;
1822 uint16_t defining_class = FindFirstClassDataDefiner(ptr_, &success);
1823 if (!success) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001824 return false;
1825 }
jeffhao10037c82012-01-23 15:06:23 -08001826
1827 for (; it.HasNextStaticField() || it.HasNextInstanceField(); it.Next()) {
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001828 LOAD_FIELD(field, it.GetMemberIndex(), "inter_class_data_item field_id", return false)
Andreas Gampee09269c2014-06-06 18:45:35 -07001829 if (UNLIKELY(field->class_idx_ != defining_class)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001830 ErrorStringPrintf("Mismatched defining class for class_data_item field");
jeffhao10037c82012-01-23 15:06:23 -08001831 return false;
1832 }
1833 }
1834 for (; it.HasNextDirectMethod() || it.HasNextVirtualMethod(); it.Next()) {
1835 uint32_t code_off = it.GetMethodCodeItemOffset();
1836 if (code_off != 0 && !CheckOffsetToTypeMap(code_off, DexFile::kDexTypeCodeItem)) {
1837 return false;
1838 }
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001839 LOAD_METHOD(method, it.GetMemberIndex(), "inter_class_data_item method_id", return false)
Andreas Gampee09269c2014-06-06 18:45:35 -07001840 if (UNLIKELY(method->class_idx_ != defining_class)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001841 ErrorStringPrintf("Mismatched defining class for class_data_item method");
jeffhao10037c82012-01-23 15:06:23 -08001842 return false;
1843 }
1844 }
1845
1846 ptr_ = it.EndDataPointer();
1847 return true;
1848}
1849
1850bool DexFileVerifier::CheckInterAnnotationsDirectoryItem() {
1851 const DexFile::AnnotationsDirectoryItem* item =
1852 reinterpret_cast<const DexFile::AnnotationsDirectoryItem*>(ptr_);
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001853 bool success;
1854 uint16_t defining_class = FindFirstAnnotationsDirectoryDefiner(ptr_, &success);
1855 if (!success) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001856 return false;
1857 }
jeffhao10037c82012-01-23 15:06:23 -08001858
1859 if (item->class_annotations_off_ != 0 &&
1860 !CheckOffsetToTypeMap(item->class_annotations_off_, DexFile::kDexTypeAnnotationSetItem)) {
1861 return false;
1862 }
1863
1864 // Field annotations follow immediately after the annotations directory.
1865 const DexFile::FieldAnnotationsItem* field_item =
1866 reinterpret_cast<const DexFile::FieldAnnotationsItem*>(item + 1);
1867 uint32_t field_count = item->fields_size_;
1868 for (uint32_t i = 0; i < field_count; i++) {
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001869 LOAD_FIELD(field, field_item->field_idx_, "inter_annotations_directory_item field_id",
1870 return false)
Andreas Gampee09269c2014-06-06 18:45:35 -07001871 if (UNLIKELY(field->class_idx_ != defining_class)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001872 ErrorStringPrintf("Mismatched defining class for field_annotation");
jeffhao10037c82012-01-23 15:06:23 -08001873 return false;
1874 }
1875 if (!CheckOffsetToTypeMap(field_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) {
1876 return false;
1877 }
1878 field_item++;
1879 }
1880
1881 // Method annotations follow immediately after field annotations.
1882 const DexFile::MethodAnnotationsItem* method_item =
1883 reinterpret_cast<const DexFile::MethodAnnotationsItem*>(field_item);
1884 uint32_t method_count = item->methods_size_;
1885 for (uint32_t i = 0; i < method_count; i++) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001886 LOAD_METHOD(method, method_item->method_idx_, "inter_annotations_directory_item method_id",
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001887 return false)
Andreas Gampee09269c2014-06-06 18:45:35 -07001888 if (UNLIKELY(method->class_idx_ != defining_class)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001889 ErrorStringPrintf("Mismatched defining class for method_annotation");
jeffhao10037c82012-01-23 15:06:23 -08001890 return false;
1891 }
1892 if (!CheckOffsetToTypeMap(method_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) {
1893 return false;
1894 }
1895 method_item++;
1896 }
1897
1898 // Parameter annotations follow immediately after method annotations.
1899 const DexFile::ParameterAnnotationsItem* parameter_item =
1900 reinterpret_cast<const DexFile::ParameterAnnotationsItem*>(method_item);
1901 uint32_t parameter_count = item->parameters_size_;
1902 for (uint32_t i = 0; i < parameter_count; i++) {
Andreas Gampee09269c2014-06-06 18:45:35 -07001903 LOAD_METHOD(parameter_method, parameter_item->method_idx_,
Andreas Gampe5e31dda2014-06-13 11:35:12 -07001904 "inter_annotations_directory_item parameter method_id", return false)
Andreas Gampee09269c2014-06-06 18:45:35 -07001905 if (UNLIKELY(parameter_method->class_idx_ != defining_class)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001906 ErrorStringPrintf("Mismatched defining class for parameter_annotation");
jeffhao10037c82012-01-23 15:06:23 -08001907 return false;
1908 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001909 if (!CheckOffsetToTypeMap(parameter_item->annotations_off_,
1910 DexFile::kDexTypeAnnotationSetRefList)) {
jeffhao10037c82012-01-23 15:06:23 -08001911 return false;
1912 }
1913 parameter_item++;
1914 }
1915
1916 ptr_ = reinterpret_cast<const byte*>(parameter_item);
1917 return true;
1918}
1919
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001920bool DexFileVerifier::CheckInterSectionIterate(size_t offset, uint32_t count, uint16_t type) {
jeffhao10037c82012-01-23 15:06:23 -08001921 // Get the right alignment mask for the type of section.
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08001922 size_t alignment_mask;
jeffhao10037c82012-01-23 15:06:23 -08001923 switch (type) {
1924 case DexFile::kDexTypeClassDataItem:
1925 alignment_mask = sizeof(uint8_t) - 1;
1926 break;
1927 default:
1928 alignment_mask = sizeof(uint32_t) - 1;
1929 break;
1930 }
1931
1932 // Iterate through the items in the section.
1933 previous_item_ = NULL;
1934 for (uint32_t i = 0; i < count; i++) {
1935 uint32_t new_offset = (offset + alignment_mask) & ~alignment_mask;
Ian Rogers30fab402012-01-23 15:43:46 -08001936 ptr_ = begin_ + new_offset;
jeffhao10037c82012-01-23 15:06:23 -08001937 const byte* prev_ptr = ptr_;
1938
1939 // Check depending on the section type.
1940 switch (type) {
1941 case DexFile::kDexTypeStringIdItem: {
1942 if (!CheckInterStringIdItem()) {
1943 return false;
1944 }
1945 break;
1946 }
1947 case DexFile::kDexTypeTypeIdItem: {
1948 if (!CheckInterTypeIdItem()) {
1949 return false;
1950 }
1951 break;
1952 }
1953 case DexFile::kDexTypeProtoIdItem: {
1954 if (!CheckInterProtoIdItem()) {
1955 return false;
1956 }
1957 break;
1958 }
1959 case DexFile::kDexTypeFieldIdItem: {
1960 if (!CheckInterFieldIdItem()) {
1961 return false;
1962 }
1963 break;
1964 }
1965 case DexFile::kDexTypeMethodIdItem: {
1966 if (!CheckInterMethodIdItem()) {
1967 return false;
1968 }
1969 break;
1970 }
1971 case DexFile::kDexTypeClassDefItem: {
1972 if (!CheckInterClassDefItem()) {
1973 return false;
1974 }
1975 break;
1976 }
1977 case DexFile::kDexTypeAnnotationSetRefList: {
1978 if (!CheckInterAnnotationSetRefList()) {
1979 return false;
1980 }
1981 break;
1982 }
1983 case DexFile::kDexTypeAnnotationSetItem: {
1984 if (!CheckInterAnnotationSetItem()) {
1985 return false;
1986 }
1987 break;
1988 }
1989 case DexFile::kDexTypeClassDataItem: {
1990 if (!CheckInterClassDataItem()) {
1991 return false;
1992 }
1993 break;
1994 }
1995 case DexFile::kDexTypeAnnotationsDirectoryItem: {
1996 if (!CheckInterAnnotationsDirectoryItem()) {
1997 return false;
1998 }
1999 break;
2000 }
2001 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07002002 ErrorStringPrintf("Unknown map item type %x", type);
jeffhao10037c82012-01-23 15:06:23 -08002003 return false;
2004 }
2005
2006 previous_item_ = prev_ptr;
Ian Rogers8a6bbfc2014-01-23 13:29:07 -08002007 offset = ptr_ - begin_;
jeffhao10037c82012-01-23 15:06:23 -08002008 }
2009
2010 return true;
2011}
2012
2013bool DexFileVerifier::CheckInterSection() {
Ian Rogers30fab402012-01-23 15:43:46 -08002014 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ + header_->map_off_);
jeffhao10037c82012-01-23 15:06:23 -08002015 const DexFile::MapItem* item = map->list_;
2016 uint32_t count = map->size_;
2017
2018 // Cross check the items listed in the map.
2019 while (count--) {
2020 uint32_t section_offset = item->offset_;
2021 uint32_t section_count = item->size_;
2022 uint16_t type = item->type_;
2023
2024 switch (type) {
2025 case DexFile::kDexTypeHeaderItem:
2026 case DexFile::kDexTypeMapList:
2027 case DexFile::kDexTypeTypeList:
2028 case DexFile::kDexTypeCodeItem:
2029 case DexFile::kDexTypeStringDataItem:
2030 case DexFile::kDexTypeDebugInfoItem:
2031 case DexFile::kDexTypeAnnotationItem:
2032 case DexFile::kDexTypeEncodedArrayItem:
2033 break;
2034 case DexFile::kDexTypeStringIdItem:
2035 case DexFile::kDexTypeTypeIdItem:
2036 case DexFile::kDexTypeProtoIdItem:
2037 case DexFile::kDexTypeFieldIdItem:
2038 case DexFile::kDexTypeMethodIdItem:
2039 case DexFile::kDexTypeClassDefItem:
2040 case DexFile::kDexTypeAnnotationSetRefList:
2041 case DexFile::kDexTypeAnnotationSetItem:
2042 case DexFile::kDexTypeClassDataItem:
2043 case DexFile::kDexTypeAnnotationsDirectoryItem: {
2044 if (!CheckInterSectionIterate(section_offset, section_count, type)) {
2045 return false;
2046 }
2047 break;
2048 }
2049 default:
Ian Rogers8d31bbd2013-10-13 10:44:14 -07002050 ErrorStringPrintf("Unknown map item type %x", type);
jeffhao10037c82012-01-23 15:06:23 -08002051 return false;
2052 }
2053
2054 item++;
2055 }
2056
2057 return true;
2058}
2059
2060bool DexFileVerifier::Verify() {
2061 // Check the header.
2062 if (!CheckHeader()) {
2063 return false;
2064 }
2065
2066 // Check the map section.
2067 if (!CheckMap()) {
2068 return false;
2069 }
2070
2071 // Check structure within remaining sections.
2072 if (!CheckIntraSection()) {
2073 return false;
2074 }
2075
2076 // Check references from one section to another.
2077 if (!CheckInterSection()) {
2078 return false;
2079 }
2080
2081 return true;
2082}
2083
Ian Rogers8d31bbd2013-10-13 10:44:14 -07002084void DexFileVerifier::ErrorStringPrintf(const char* fmt, ...) {
2085 va_list ap;
2086 va_start(ap, fmt);
2087 DCHECK(failure_reason_.empty()) << failure_reason_;
2088 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_);
2089 StringAppendV(&failure_reason_, fmt, ap);
2090 va_end(ap);
2091}
2092
jeffhao10037c82012-01-23 15:06:23 -08002093} // namespace art