blob: 10f34d973b678fb5b23a64522c01fede8d91a70a [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 */
Carl Shapiro1fb86202011-06-27 17:43:13 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "dex_file.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070018
19#include <fcntl.h>
Brian Carlstrom1f870082011-08-23 16:02:11 -070020#include <limits.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070021#include <stdio.h>
Ian Rogersd81871c2011-10-03 13:57:23 -070022#include <stdlib.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070023#include <string.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070024#include <sys/file.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070025#include <sys/stat.h>
Ian Rogers700a4022014-05-19 16:49:03 -070026#include <memory>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070027
Elliott Hughes07ed66b2012-12-12 18:34:25 -080028#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080029#include "base/stringprintf.h"
Ian Rogers0571d352011-11-03 19:51:38 -070030#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070031#include "dex_file-inl.h"
jeffhao10037c82012-01-23 15:06:23 -080032#include "dex_file_verifier.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070033#include "globals.h"
Ian Rogers0571d352011-11-03 19:51:38 -070034#include "leb128.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070035#include "mirror/art_field-inl.h"
36#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/string.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070038#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070039#include "safe_map.h"
Vladimir Markofd995762013-11-06 16:36:36 +000040#include "ScopedFd.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070041#include "handle_scope-inl.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070042#include "thread.h"
Ian Rogersa6724902013-09-23 09:23:37 -070043#include "utf-inl.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070044#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070045#include "well_known_classes.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070046#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070047
48namespace art {
49
Brian Carlstromf615a612011-07-23 12:50:34 -070050const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
51const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070052
Ian Rogers8b2c0b92013-09-19 02:56:49 -070053DexFile::ClassPathEntry DexFile::FindInClassPath(const char* descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070054 const ClassPath& class_path) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070055 for (size_t i = 0; i != class_path.size(); ++i) {
56 const DexFile* dex_file = class_path[i];
57 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
58 if (dex_class_def != NULL) {
59 return ClassPathEntry(dex_file, dex_class_def);
60 }
61 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070062 // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
Brian Carlstrom7e93b502011-08-04 14:16:22 -070063 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
64 reinterpret_cast<const DexFile::ClassDef*>(NULL));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070065}
66
Ian Rogers8d31bbd2013-10-13 10:44:14 -070067static int OpenAndReadMagic(const char* filename, uint32_t* magic, std::string* error_msg) {
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070068 CHECK(magic != NULL);
Vladimir Markofd995762013-11-06 16:36:36 +000069 ScopedFd fd(open(filename, O_RDONLY, 0));
70 if (fd.get() == -1) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070071 *error_msg = StringPrintf("Unable to open '%s' : %s", filename, strerror(errno));
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070072 return -1;
73 }
Vladimir Markofd995762013-11-06 16:36:36 +000074 int n = TEMP_FAILURE_RETRY(read(fd.get(), magic, sizeof(*magic)));
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070075 if (n != sizeof(*magic)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070076 *error_msg = StringPrintf("Failed to find magic in '%s'", filename);
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070077 return -1;
78 }
Vladimir Markofd995762013-11-06 16:36:36 +000079 if (lseek(fd.get(), 0, SEEK_SET) != 0) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070080 *error_msg = StringPrintf("Failed to seek to beginning of file '%s' : %s", filename,
81 strerror(errno));
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070082 return -1;
83 }
Vladimir Markofd995762013-11-06 16:36:36 +000084 return fd.release();
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070085}
86
Ian Rogers8d31bbd2013-10-13 10:44:14 -070087bool DexFile::GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg) {
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070088 CHECK(checksum != NULL);
89 uint32_t magic;
Vladimir Markofd995762013-11-06 16:36:36 +000090 ScopedFd fd(OpenAndReadMagic(filename, &magic, error_msg));
91 if (fd.get() == -1) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070092 DCHECK(!error_msg->empty());
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070093 return false;
94 }
95 if (IsZipMagic(magic)) {
Ian Rogers700a4022014-05-19 16:49:03 -070096 std::unique_ptr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(fd.release(), filename, error_msg));
Brian Carlstrom5b332c82012-02-01 15:02:31 -080097 if (zip_archive.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070098 *error_msg = StringPrintf("Failed to open zip archive '%s'", filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -080099 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700100 }
Ian Rogers700a4022014-05-19 16:49:03 -0700101 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex, error_msg));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800102 if (zip_entry.get() == NULL) {
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800103 *error_msg = StringPrintf("Zip archive '%s' doesn't contain %s (error msg: %s)", filename,
Narayan Kamath92572be2013-11-28 14:06:24 +0000104 kClassesDex, error_msg->c_str());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800105 return false;
106 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700107 *checksum = zip_entry->GetCrc32();
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800108 return true;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700109 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700110 if (IsDexMagic(magic)) {
Ian Rogers700a4022014-05-19 16:49:03 -0700111 std::unique_ptr<const DexFile> dex_file(DexFile::OpenFile(fd.release(), filename, false, error_msg));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800112 if (dex_file.get() == NULL) {
113 return false;
114 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700115 *checksum = dex_file->GetHeader().checksum_;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800116 return true;
117 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700118 *error_msg = StringPrintf("Expected valid zip or dex file: '%s'", filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800119 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700120}
121
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700122const DexFile* DexFile::Open(const char* filename,
123 const char* location,
124 std::string* error_msg) {
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700125 uint32_t magic;
Vladimir Markofd995762013-11-06 16:36:36 +0000126 ScopedFd fd(OpenAndReadMagic(filename, &magic, error_msg));
127 if (fd.get() == -1) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700128 DCHECK(!error_msg->empty());
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700129 return NULL;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700130 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700131 if (IsZipMagic(magic)) {
Vladimir Markofd995762013-11-06 16:36:36 +0000132 return DexFile::OpenZip(fd.release(), location, error_msg);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700133 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700134 if (IsDexMagic(magic)) {
Vladimir Markofd995762013-11-06 16:36:36 +0000135 return DexFile::OpenFile(fd.release(), location, true, error_msg);
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700136 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700137 *error_msg = StringPrintf("Expected valid zip or dex file: '%s'", filename);
138 return nullptr;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700139}
140
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800141int DexFile::GetPermissions() const {
142 if (mem_map_.get() == NULL) {
143 return 0;
144 } else {
145 return mem_map_->GetProtect();
146 }
147}
148
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200149bool DexFile::IsReadOnly() const {
150 return GetPermissions() == PROT_READ;
151}
152
Brian Carlstrome0948e12013-08-29 09:36:15 -0700153bool DexFile::EnableWrite() const {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200154 CHECK(IsReadOnly());
155 if (mem_map_.get() == NULL) {
156 return false;
157 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700158 return mem_map_->Protect(PROT_READ | PROT_WRITE);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200159 }
160}
161
Brian Carlstrome0948e12013-08-29 09:36:15 -0700162bool DexFile::DisableWrite() const {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200163 CHECK(!IsReadOnly());
164 if (mem_map_.get() == NULL) {
165 return false;
166 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700167 return mem_map_->Protect(PROT_READ);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200168 }
169}
170
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700171const DexFile* DexFile::OpenFile(int fd, const char* location, bool verify,
172 std::string* error_msg) {
173 CHECK(location != nullptr);
Ian Rogers700a4022014-05-19 16:49:03 -0700174 std::unique_ptr<MemMap> map;
Vladimir Markofd995762013-11-06 16:36:36 +0000175 {
176 ScopedFd delayed_close(fd);
177 struct stat sbuf;
178 memset(&sbuf, 0, sizeof(sbuf));
179 if (fstat(fd, &sbuf) == -1) {
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800180 *error_msg = StringPrintf("DexFile: fstat '%s' failed: %s", location, strerror(errno));
Vladimir Markofd995762013-11-06 16:36:36 +0000181 return nullptr;
182 }
183 if (S_ISDIR(sbuf.st_mode)) {
184 *error_msg = StringPrintf("Attempt to mmap directory '%s'", location);
185 return nullptr;
186 }
187 size_t length = sbuf.st_size;
188 map.reset(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0, location, error_msg));
189 if (map.get() == nullptr) {
190 DCHECK(!error_msg->empty());
191 return nullptr;
192 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700193 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800194
195 if (map->Size() < sizeof(DexFile::Header)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700196 *error_msg = StringPrintf(
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800197 "DexFile: failed to open dex file '%s' that is too short to have a header", location);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700198 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800199 }
200
201 const Header* dex_header = reinterpret_cast<const Header*>(map->Begin());
202
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700203 const DexFile* dex_file = OpenMemory(location, dex_header->checksum_, map.release(), error_msg);
204 if (dex_file == nullptr) {
205 *error_msg = StringPrintf("Failed to open dex file '%s' from memory: %s", location,
206 error_msg->c_str());
207 return nullptr;
jeffhaof6174e82012-01-31 16:14:17 -0800208 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800209
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700210 if (verify && !DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size(), location,
211 error_msg)) {
212 return nullptr;
jeffhao54c1ceb2012-02-01 11:45:32 -0800213 }
214
jeffhaof6174e82012-01-31 16:14:17 -0800215 return dex_file;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700216}
217
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700218const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700219
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700220const DexFile* DexFile::OpenZip(int fd, const std::string& location, std::string* error_msg) {
Ian Rogers700a4022014-05-19 16:49:03 -0700221 std::unique_ptr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(fd, location.c_str(), error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700222 if (zip_archive.get() == nullptr) {
223 DCHECK(!error_msg->empty());
224 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700225 }
Vladimir Markofd995762013-11-06 16:36:36 +0000226 return DexFile::Open(*zip_archive, location, error_msg);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800227}
228
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800229const DexFile* DexFile::OpenMemory(const std::string& location,
230 uint32_t location_checksum,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700231 MemMap* mem_map,
232 std::string* error_msg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800233 return OpenMemory(mem_map->Begin(),
234 mem_map->Size(),
235 location,
236 location_checksum,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700237 mem_map,
238 error_msg);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800239}
240
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700241const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location,
242 std::string* error_msg) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800243 CHECK(!location.empty());
Ian Rogers700a4022014-05-19 16:49:03 -0700244 std::unique_ptr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex, error_msg));
Elliott Hughes90a33692011-08-30 13:27:07 -0700245 if (zip_entry.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700246 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700247 }
Brian Carlstrom0aa504b2014-05-23 02:47:28 -0700248 std::unique_ptr<MemMap> map(zip_entry->ExtractToMemMap(location.c_str(), kClassesDex, error_msg));
Brian Carlstrom89521892011-12-07 22:05:07 -0800249 if (map.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700250 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", kClassesDex, location.c_str(),
251 error_msg->c_str());
252 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700253 }
Ian Rogers700a4022014-05-19 16:49:03 -0700254 std::unique_ptr<const DexFile> dex_file(OpenMemory(location, zip_entry->GetCrc32(), map.release(),
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700255 error_msg));
256 if (dex_file.get() == nullptr) {
257 *error_msg = StringPrintf("Failed to open dex file '%s' from memory: %s", location.c_str(),
258 error_msg->c_str());
259 return nullptr;
jeffhaof6174e82012-01-31 16:14:17 -0800260 }
Brian Carlstrome0948e12013-08-29 09:36:15 -0700261 if (!dex_file->DisableWrite()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700262 *error_msg = StringPrintf("Failed to make dex file '%s' read only", location.c_str());
263 return nullptr;
Brian Carlstrome0948e12013-08-29 09:36:15 -0700264 }
265 CHECK(dex_file->IsReadOnly()) << location;
Brian Carlstromd6cec902014-05-25 16:08:51 -0700266 if (!DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
267 location.c_str(), error_msg)) {
268 return nullptr;
269 }
Brian Carlstrome0948e12013-08-29 09:36:15 -0700270 return dex_file.release();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700271}
272
Brian Carlstrom89521892011-12-07 22:05:07 -0800273const DexFile* DexFile::OpenMemory(const byte* base,
jeffhaof6174e82012-01-31 16:14:17 -0800274 size_t size,
Brian Carlstrom89521892011-12-07 22:05:07 -0800275 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800276 uint32_t location_checksum,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700277 MemMap* mem_map, std::string* error_msg) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700278 CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned
Ian Rogers700a4022014-05-19 16:49:03 -0700279 std::unique_ptr<DexFile> dex_file(new DexFile(base, size, location, location_checksum, mem_map));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700280 if (!dex_file->Init(error_msg)) {
281 return nullptr;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700282 } else {
Brian Carlstromf615a612011-07-23 12:50:34 -0700283 return dex_file.release();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700284 }
285}
286
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800287DexFile::DexFile(const byte* base, size_t size,
288 const std::string& location,
289 uint32_t location_checksum,
290 MemMap* mem_map)
291 : begin_(base),
292 size_(size),
293 location_(location),
294 location_checksum_(location_checksum),
295 mem_map_(mem_map),
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800296 header_(reinterpret_cast<const Header*>(base)),
297 string_ids_(reinterpret_cast<const StringId*>(base + header_->string_ids_off_)),
298 type_ids_(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)),
299 field_ids_(reinterpret_cast<const FieldId*>(base + header_->field_ids_off_)),
300 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)),
301 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
302 class_defs_(reinterpret_cast<const ClassDef*>(base + header_->class_defs_off_)) {
303 CHECK(begin_ != NULL) << GetLocation();
304 CHECK_GT(size_, 0U) << GetLocation();
305}
306
Jesse Wilson6bf19152011-09-29 13:12:33 -0400307DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700308 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
309 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
310 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
311 // the global reference table is otherwise empty!
Jesse Wilson6bf19152011-09-29 13:12:33 -0400312}
313
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700314bool DexFile::Init(std::string* error_msg) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700315 if (!CheckMagicAndVersion(error_msg)) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700316 return false;
317 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700318 return true;
319}
320
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700321bool DexFile::CheckMagicAndVersion(std::string* error_msg) const {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800322 CHECK(header_->magic_ != NULL) << GetLocation();
323 if (!IsMagicValid(header_->magic_)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700324 std::ostringstream oss;
325 oss << "Unrecognized magic number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800326 << " " << header_->magic_[0]
327 << " " << header_->magic_[1]
328 << " " << header_->magic_[2]
329 << " " << header_->magic_[3];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700330 *error_msg = oss.str();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700331 return false;
332 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800333 if (!IsVersionValid(header_->magic_)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700334 std::ostringstream oss;
335 oss << "Unrecognized version number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800336 << " " << header_->magic_[4]
337 << " " << header_->magic_[5]
338 << " " << header_->magic_[6]
339 << " " << header_->magic_[7];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700340 *error_msg = oss.str();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700341 return false;
342 }
343 return true;
344}
345
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800346bool DexFile::IsMagicValid(const byte* magic) {
347 return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0);
348}
349
350bool DexFile::IsVersionValid(const byte* magic) {
351 const byte* version = &magic[sizeof(kDexMagic)];
352 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0);
353}
354
Ian Rogersd81871c2011-10-03 13:57:23 -0700355uint32_t DexFile::GetVersion() const {
356 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
357 return atoi(version);
358}
359
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700360const DexFile::ClassDef* DexFile::FindClassDef(const char* descriptor) const {
361 size_t num_class_defs = NumClassDefs();
362 if (num_class_defs == 0) {
363 return NULL;
364 }
365 const StringId* string_id = FindStringId(descriptor);
366 if (string_id == NULL) {
367 return NULL;
368 }
369 const TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
370 if (type_id == NULL) {
371 return NULL;
372 }
373 uint16_t type_idx = GetIndexForTypeId(*type_id);
374 for (size_t i = 0; i < num_class_defs; ++i) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700375 const ClassDef& class_def = GetClassDef(i);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700376 if (class_def.class_idx_ == type_idx) {
377 return &class_def;
378 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700379 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700380 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700381}
382
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700383const DexFile::ClassDef* DexFile::FindClassDef(uint16_t type_idx) const {
384 size_t num_class_defs = NumClassDefs();
385 for (size_t i = 0; i < num_class_defs; ++i) {
386 const ClassDef& class_def = GetClassDef(i);
387 if (class_def.class_idx_ == type_idx) {
388 return &class_def;
389 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700390 }
391 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700392}
393
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800394const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass,
395 const DexFile::StringId& name,
396 const DexFile::TypeId& type) const {
397 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
398 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
399 const uint32_t name_idx = GetIndexForStringId(name);
400 const uint16_t type_idx = GetIndexForTypeId(type);
Ian Rogersf8582c32013-05-29 16:33:03 -0700401 int32_t lo = 0;
402 int32_t hi = NumFieldIds() - 1;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800403 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700404 int32_t mid = (hi + lo) / 2;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800405 const DexFile::FieldId& field = GetFieldId(mid);
406 if (class_idx > field.class_idx_) {
407 lo = mid + 1;
408 } else if (class_idx < field.class_idx_) {
409 hi = mid - 1;
410 } else {
411 if (name_idx > field.name_idx_) {
412 lo = mid + 1;
413 } else if (name_idx < field.name_idx_) {
414 hi = mid - 1;
415 } else {
416 if (type_idx > field.type_idx_) {
417 lo = mid + 1;
418 } else if (type_idx < field.type_idx_) {
419 hi = mid - 1;
420 } else {
421 return &field;
422 }
423 }
424 }
425 }
426 return NULL;
427}
428
429const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass,
Ian Rogers0571d352011-11-03 19:51:38 -0700430 const DexFile::StringId& name,
431 const DexFile::ProtoId& signature) const {
432 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800433 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
Ian Rogers0571d352011-11-03 19:51:38 -0700434 const uint32_t name_idx = GetIndexForStringId(name);
435 const uint16_t proto_idx = GetIndexForProtoId(signature);
Ian Rogersf8582c32013-05-29 16:33:03 -0700436 int32_t lo = 0;
437 int32_t hi = NumMethodIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700438 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700439 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700440 const DexFile::MethodId& method = GetMethodId(mid);
441 if (class_idx > method.class_idx_) {
442 lo = mid + 1;
443 } else if (class_idx < method.class_idx_) {
444 hi = mid - 1;
445 } else {
446 if (name_idx > method.name_idx_) {
447 lo = mid + 1;
448 } else if (name_idx < method.name_idx_) {
449 hi = mid - 1;
450 } else {
451 if (proto_idx > method.proto_idx_) {
452 lo = mid + 1;
453 } else if (proto_idx < method.proto_idx_) {
454 hi = mid - 1;
455 } else {
456 return &method;
457 }
458 }
459 }
460 }
461 return NULL;
462}
463
Ian Rogers637c65b2013-05-31 11:46:00 -0700464const DexFile::StringId* DexFile::FindStringId(const char* string) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700465 int32_t lo = 0;
466 int32_t hi = NumStringIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700467 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700468 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700469 const DexFile::StringId& str_id = GetStringId(mid);
Ian Rogerscf5077a2013-10-31 12:37:54 -0700470 const char* str = GetStringData(str_id);
Ian Rogers637c65b2013-05-31 11:46:00 -0700471 int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string, str);
472 if (compare > 0) {
473 lo = mid + 1;
474 } else if (compare < 0) {
475 hi = mid - 1;
476 } else {
477 return &str_id;
478 }
479 }
480 return NULL;
481}
482
483const DexFile::StringId* DexFile::FindStringId(const uint16_t* string) const {
484 int32_t lo = 0;
485 int32_t hi = NumStringIds() - 1;
486 while (hi >= lo) {
487 int32_t mid = (hi + lo) / 2;
Ian Rogers637c65b2013-05-31 11:46:00 -0700488 const DexFile::StringId& str_id = GetStringId(mid);
Ian Rogerscf5077a2013-10-31 12:37:54 -0700489 const char* str = GetStringData(str_id);
Ian Rogers637c65b2013-05-31 11:46:00 -0700490 int compare = CompareModifiedUtf8ToUtf16AsCodePointValues(str, string);
Ian Rogers0571d352011-11-03 19:51:38 -0700491 if (compare > 0) {
492 lo = mid + 1;
493 } else if (compare < 0) {
494 hi = mid - 1;
495 } else {
496 return &str_id;
497 }
498 }
499 return NULL;
500}
501
502const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700503 int32_t lo = 0;
504 int32_t hi = NumTypeIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700505 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700506 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700507 const TypeId& type_id = GetTypeId(mid);
508 if (string_idx > type_id.descriptor_idx_) {
509 lo = mid + 1;
510 } else if (string_idx < type_id.descriptor_idx_) {
511 hi = mid - 1;
512 } else {
513 return &type_id;
514 }
515 }
516 return NULL;
517}
518
519const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
Vladimir Marko5c96e6b2013-11-14 15:34:17 +0000520 const uint16_t* signature_type_idxs,
521 uint32_t signature_length) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700522 int32_t lo = 0;
523 int32_t hi = NumProtoIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700524 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700525 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700526 const DexFile::ProtoId& proto = GetProtoId(mid);
527 int compare = return_type_idx - proto.return_type_idx_;
528 if (compare == 0) {
529 DexFileParameterIterator it(*this, proto);
530 size_t i = 0;
Vladimir Marko5c96e6b2013-11-14 15:34:17 +0000531 while (it.HasNext() && i < signature_length && compare == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800532 compare = signature_type_idxs[i] - it.GetTypeIdx();
Ian Rogers0571d352011-11-03 19:51:38 -0700533 it.Next();
534 i++;
535 }
536 if (compare == 0) {
537 if (it.HasNext()) {
538 compare = -1;
Vladimir Marko5c96e6b2013-11-14 15:34:17 +0000539 } else if (i < signature_length) {
Ian Rogers0571d352011-11-03 19:51:38 -0700540 compare = 1;
541 }
542 }
543 }
544 if (compare > 0) {
545 lo = mid + 1;
546 } else if (compare < 0) {
547 hi = mid - 1;
548 } else {
549 return &proto;
550 }
551 }
552 return NULL;
553}
554
555// Given a signature place the type ids into the given vector
Ian Rogersd91d6d62013-09-25 20:26:14 -0700556bool DexFile::CreateTypeList(const StringPiece& signature, uint16_t* return_type_idx,
557 std::vector<uint16_t>* param_type_idxs) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700558 if (signature[0] != '(') {
559 return false;
560 }
561 size_t offset = 1;
562 size_t end = signature.size();
563 bool process_return = false;
564 while (offset < end) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000565 size_t start_offset = offset;
Ian Rogers0571d352011-11-03 19:51:38 -0700566 char c = signature[offset];
567 offset++;
568 if (c == ')') {
569 process_return = true;
570 continue;
571 }
Ian Rogers0571d352011-11-03 19:51:38 -0700572 while (c == '[') { // process array prefix
573 if (offset >= end) { // expect some descriptor following [
574 return false;
575 }
576 c = signature[offset];
577 offset++;
Ian Rogers0571d352011-11-03 19:51:38 -0700578 }
579 if (c == 'L') { // process type descriptors
580 do {
581 if (offset >= end) { // unexpected early termination of descriptor
582 return false;
583 }
584 c = signature[offset];
585 offset++;
Ian Rogers0571d352011-11-03 19:51:38 -0700586 } while (c != ';');
587 }
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000588 // TODO: avoid creating a std::string just to get a 0-terminated char array
589 std::string descriptor(signature.data() + start_offset, offset - start_offset);
Ian Rogers637c65b2013-05-31 11:46:00 -0700590 const DexFile::StringId* string_id = FindStringId(descriptor.c_str());
Ian Rogers0571d352011-11-03 19:51:38 -0700591 if (string_id == NULL) {
592 return false;
593 }
594 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
595 if (type_id == NULL) {
596 return false;
597 }
598 uint16_t type_idx = GetIndexForTypeId(*type_id);
599 if (!process_return) {
600 param_type_idxs->push_back(type_idx);
601 } else {
602 *return_type_idx = type_idx;
603 return offset == end; // return true if the signature had reached a sensible end
604 }
605 }
606 return false; // failed to correctly parse return type
607}
608
Ian Rogersd91d6d62013-09-25 20:26:14 -0700609const Signature DexFile::CreateSignature(const StringPiece& signature) const {
610 uint16_t return_type_idx;
611 std::vector<uint16_t> param_type_indices;
612 bool success = CreateTypeList(signature, &return_type_idx, &param_type_indices);
613 if (!success) {
614 return Signature::NoSignature();
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700615 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700616 const ProtoId* proto_id = FindProtoId(return_type_idx, param_type_indices);
617 if (proto_id == NULL) {
618 return Signature::NoSignature();
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700619 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700620 return Signature(this, *proto_id);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700621}
622
Ian Rogersef7d42f2014-01-06 12:55:46 -0800623int32_t DexFile::GetLineNumFromPC(mirror::ArtMethod* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700624 // For native method, lineno should be -2 to indicate it is native. Note that
625 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700626 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700627 return -2;
628 }
629
TDYa127c8dc1012012-04-19 07:03:33 -0700630 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Elliott Hughescaf76542012-06-28 16:08:22 -0700631 DCHECK(code_item != NULL) << PrettyMethod(method) << " " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700632
633 // A method with no line number info should return -1
634 LineNumFromPcContext context(rel_pc, -1);
TDYa127c8dc1012012-04-19 07:03:33 -0700635 DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800636 NULL, &context);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700637 return context.line_num_;
638}
639
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700640int32_t DexFile::FindTryItem(const CodeItem &code_item, uint32_t address) {
Ian Rogers0571d352011-11-03 19:51:38 -0700641 // Note: Signed type is important for max and min.
642 int32_t min = 0;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700643 int32_t max = code_item.tries_size_ - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700644
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700645 while (min <= max) {
646 int32_t mid = min + ((max - min) / 2);
647
648 const art::DexFile::TryItem* ti = GetTryItems(code_item, mid);
649 uint32_t start = ti->start_addr_;
650 uint32_t end = start + ti->insn_count_;
651
Ian Rogers0571d352011-11-03 19:51:38 -0700652 if (address < start) {
653 max = mid - 1;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700654 } else if (address >= end) {
655 min = mid + 1;
656 } else { // We have a winner!
657 return mid;
Ian Rogers0571d352011-11-03 19:51:38 -0700658 }
659 }
660 // No match.
661 return -1;
662}
663
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700664int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, uint32_t address) {
665 int32_t try_item = FindTryItem(code_item, address);
666 if (try_item == -1) {
667 return -1;
668 } else {
669 return DexFile::GetTryItems(code_item, try_item)->handler_off_;
670 }
671}
672
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800673void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800674 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
675 void* context, const byte* stream, LocalInfo* local_in_reg) const {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700676 uint32_t line = DecodeUnsignedLeb128(&stream);
677 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
678 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
679 uint32_t address = 0;
Elliott Hughes30646832011-10-13 16:59:46 -0700680 bool need_locals = (local_cb != NULL);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700681
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800682 if (!is_static) {
Elliott Hughes30646832011-10-13 16:59:46 -0700683 if (need_locals) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800684 const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700685 local_in_reg[arg_reg].name_ = "this";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800686 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800687 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700688 local_in_reg[arg_reg].start_address_ = 0;
689 local_in_reg[arg_reg].is_live_ = true;
690 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700691 arg_reg++;
692 }
693
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800694 DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx)));
Ian Rogers0571d352011-11-03 19:51:38 -0700695 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700696 if (arg_reg >= code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700697 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800698 << " >= " << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700699 return;
700 }
Elliott Hughes392b1242011-11-30 13:55:50 -0800701 uint32_t id = DecodeUnsignedLeb128P1(&stream);
Ian Rogers0571d352011-11-03 19:51:38 -0700702 const char* descriptor = it.GetDescriptor();
Elliott Hughes392b1242011-11-30 13:55:50 -0800703 if (need_locals && id != kDexNoIndex) {
Ian Rogers0571d352011-11-03 19:51:38 -0700704 const char* name = StringDataByIdx(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700705 local_in_reg[arg_reg].name_ = name;
706 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800707 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700708 local_in_reg[arg_reg].start_address_ = address;
709 local_in_reg[arg_reg].is_live_ = true;
710 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700711 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700712 case 'D':
713 case 'J':
714 arg_reg += 2;
715 break;
716 default:
717 arg_reg += 1;
718 break;
719 }
720 }
721
Ian Rogers0571d352011-11-03 19:51:38 -0700722 if (it.HasNext()) {
Brian Carlstromf79fccb2014-02-20 08:55:10 -0800723 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation()
724 << " for method " << PrettyMethod(method_idx, *this);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700725 return;
726 }
727
728 for (;;) {
729 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700730 uint16_t reg;
Jeff Haob7cefc72013-11-14 14:51:09 -0800731 uint32_t name_idx;
732 uint32_t descriptor_idx;
733 uint32_t signature_idx = 0;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700734
Shih-wei Liao195487c2011-08-20 13:29:04 -0700735 switch (opcode) {
736 case DBG_END_SEQUENCE:
737 return;
738
739 case DBG_ADVANCE_PC:
740 address += DecodeUnsignedLeb128(&stream);
741 break;
742
743 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700744 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700745 break;
746
747 case DBG_START_LOCAL:
748 case DBG_START_LOCAL_EXTENDED:
749 reg = DecodeUnsignedLeb128(&stream);
750 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700751 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800752 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700753 return;
754 }
755
jeffhaof8728872011-10-28 19:11:13 -0700756 name_idx = DecodeUnsignedLeb128P1(&stream);
757 descriptor_idx = DecodeUnsignedLeb128P1(&stream);
758 if (opcode == DBG_START_LOCAL_EXTENDED) {
759 signature_idx = DecodeUnsignedLeb128P1(&stream);
760 }
761
Shih-wei Liao195487c2011-08-20 13:29:04 -0700762 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700763 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800764 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700765
Ian Rogers0571d352011-11-03 19:51:38 -0700766 local_in_reg[reg].name_ = StringDataByIdx(name_idx);
767 local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700768 if (opcode == DBG_START_LOCAL_EXTENDED) {
Ian Rogers0571d352011-11-03 19:51:38 -0700769 local_in_reg[reg].signature_ = StringDataByIdx(signature_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700770 }
771 local_in_reg[reg].start_address_ = address;
772 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700773 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700774 break;
775
776 case DBG_END_LOCAL:
777 reg = DecodeUnsignedLeb128(&stream);
778 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700779 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800780 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700781 return;
782 }
783
Elliott Hughes30646832011-10-13 16:59:46 -0700784 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800785 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Elliott Hughes30646832011-10-13 16:59:46 -0700786 local_in_reg[reg].is_live_ = false;
787 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700788 break;
789
790 case DBG_RESTART_LOCAL:
791 reg = DecodeUnsignedLeb128(&stream);
792 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700793 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800794 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700795 return;
796 }
797
Elliott Hughes30646832011-10-13 16:59:46 -0700798 if (need_locals) {
799 if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800800 LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation();
Elliott Hughes30646832011-10-13 16:59:46 -0700801 return;
802 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700803
Elliott Hughes30646832011-10-13 16:59:46 -0700804 // If the register is live, the "restart" is superfluous,
805 // and we don't want to mess with the existing start address.
806 if (!local_in_reg[reg].is_live_) {
807 local_in_reg[reg].start_address_ = address;
808 local_in_reg[reg].is_live_ = true;
809 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700810 }
811 break;
812
813 case DBG_SET_PROLOGUE_END:
814 case DBG_SET_EPILOGUE_BEGIN:
815 case DBG_SET_FILE:
816 break;
817
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700818 default: {
819 int adjopcode = opcode - DBG_FIRST_SPECIAL;
820
Shih-wei Liao195487c2011-08-20 13:29:04 -0700821 address += adjopcode / DBG_LINE_RANGE;
822 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
823
Elliott Hughes2435a572012-02-17 16:07:41 -0800824 if (position_cb != NULL) {
825 if (position_cb(context, address, line)) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700826 // early exit
827 return;
828 }
829 }
830 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700831 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700832 }
833 }
834}
835
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800836void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800837 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
838 void* context) const {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +0100839 DCHECK(code_item != nullptr);
Ian Rogers0571d352011-11-03 19:51:38 -0700840 const byte* stream = GetDebugInfoStream(code_item);
Ian Rogers700a4022014-05-19 16:49:03 -0700841 std::unique_ptr<LocalInfo[]> local_in_reg(local_cb != NULL ?
Brian Carlstrome0948e12013-08-29 09:36:15 -0700842 new LocalInfo[code_item->registers_size_] :
843 NULL);
Ian Rogers0571d352011-11-03 19:51:38 -0700844 if (stream != NULL) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700845 DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream, &local_in_reg[0]);
Ian Rogers0571d352011-11-03 19:51:38 -0700846 }
847 for (int reg = 0; reg < code_item->registers_size_; reg++) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700848 InvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0], local_cb);
Ian Rogers0571d352011-11-03 19:51:38 -0700849 }
850}
851
Elliott Hughes2435a572012-02-17 16:07:41 -0800852bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) {
853 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context);
Ian Rogers0571d352011-11-03 19:51:38 -0700854
855 // We know that this callback will be called in
856 // ascending address order, so keep going until we find
857 // a match or we've just gone past it.
858 if (address > context->address_) {
859 // The line number from the previous positions callback
860 // wil be the final result.
861 return true;
862 } else {
863 context->line_num_ = line_num;
864 return address == context->address_;
865 }
866}
867
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800868std::ostream& operator<<(std::ostream& os, const DexFile& dex_file) {
869 os << StringPrintf("[DexFile: %s dex-checksum=%08x location-checksum=%08x %p-%p]",
870 dex_file.GetLocation().c_str(),
871 dex_file.GetHeader().checksum_, dex_file.GetLocationChecksum(),
872 dex_file.Begin(), dex_file.Begin() + dex_file.Size());
873 return os;
874}
Ian Rogersd91d6d62013-09-25 20:26:14 -0700875std::string Signature::ToString() const {
876 if (dex_file_ == nullptr) {
877 CHECK(proto_id_ == nullptr);
878 return "<no signature>";
879 }
880 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
881 std::string result;
882 if (params == nullptr) {
883 result += "()";
884 } else {
885 result += "(";
886 for (uint32_t i = 0; i < params->Size(); ++i) {
887 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_);
888 }
889 result += ")";
890 }
891 result += dex_file_->StringByTypeIdx(proto_id_->return_type_idx_);
892 return result;
893}
894
Vladimir Markod9cffea2013-11-25 15:08:02 +0000895bool Signature::operator==(const StringPiece& rhs) const {
896 if (dex_file_ == nullptr) {
897 return false;
898 }
899 StringPiece tail(rhs);
900 if (!tail.starts_with("(")) {
901 return false; // Invalid signature
902 }
903 tail.remove_prefix(1); // "(";
904 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
905 if (params != nullptr) {
906 for (uint32_t i = 0; i < params->Size(); ++i) {
907 StringPiece param(dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_));
908 if (!tail.starts_with(param)) {
909 return false;
910 }
911 tail.remove_prefix(param.length());
912 }
913 }
914 if (!tail.starts_with(")")) {
915 return false;
916 }
917 tail.remove_prefix(1); // ")";
918 return tail == dex_file_->StringByTypeIdx(proto_id_->return_type_idx_);
919}
920
Ian Rogersd91d6d62013-09-25 20:26:14 -0700921std::ostream& operator<<(std::ostream& os, const Signature& sig) {
922 return os << sig.ToString();
923}
924
Ian Rogers0571d352011-11-03 19:51:38 -0700925// Decodes the header section from the class data bytes.
926void ClassDataItemIterator::ReadClassDataHeader() {
927 CHECK(ptr_pos_ != NULL);
928 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
929 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
930 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
931 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
932}
933
934void ClassDataItemIterator::ReadClassDataField() {
935 field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
936 field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700937 if (last_idx_ != 0 && field_.field_idx_delta_ == 0) {
Andreas Gampe4fdbba02014-06-19 20:24:22 -0700938 LOG(WARNING) << "Duplicate field in " << dex_file_.GetLocation();
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700939 }
Ian Rogers0571d352011-11-03 19:51:38 -0700940}
941
942void ClassDataItemIterator::ReadClassDataMethod() {
943 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
944 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
945 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -0700946 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
Andreas Gampe4fdbba02014-06-19 20:24:22 -0700947 LOG(WARNING) << "Duplicate method in " << dex_file_.GetLocation();
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700948 }
Ian Rogers0571d352011-11-03 19:51:38 -0700949}
950
951// Read a signed integer. "zwidth" is the zero-based byte count.
952static int32_t ReadSignedInt(const byte* ptr, int zwidth) {
953 int32_t val = 0;
954 for (int i = zwidth; i >= 0; --i) {
955 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
956 }
957 val >>= (3 - zwidth) * 8;
958 return val;
959}
960
961// Read an unsigned integer. "zwidth" is the zero-based byte count,
962// "fill_on_right" indicates which side we want to zero-fill from.
963static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) {
964 uint32_t val = 0;
965 if (!fill_on_right) {
966 for (int i = zwidth; i >= 0; --i) {
967 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
968 }
969 val >>= (3 - zwidth) * 8;
970 } else {
971 for (int i = zwidth; i >= 0; --i) {
972 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
973 }
974 }
975 return val;
976}
977
978// Read a signed long. "zwidth" is the zero-based byte count.
979static int64_t ReadSignedLong(const byte* ptr, int zwidth) {
980 int64_t val = 0;
981 for (int i = zwidth; i >= 0; --i) {
982 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
983 }
984 val >>= (7 - zwidth) * 8;
985 return val;
986}
987
988// Read an unsigned long. "zwidth" is the zero-based byte count,
989// "fill_on_right" indicates which side we want to zero-fill from.
990static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) {
991 uint64_t val = 0;
992 if (!fill_on_right) {
993 for (int i = zwidth; i >= 0; --i) {
994 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
995 }
996 val >>= (7 - zwidth) * 8;
997 } else {
998 for (int i = zwidth; i >= 0; --i) {
999 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
1000 }
1001 }
1002 return val;
1003}
1004
1005EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(const DexFile& dex_file,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001006 Handle<mirror::DexCache>* dex_cache,
1007 Handle<mirror::ClassLoader>* class_loader,
Ian Rogersca190662012-06-26 15:45:57 -07001008 ClassLinker* linker,
1009 const DexFile::ClassDef& class_def)
Brian Carlstrom88f36542012-10-16 23:24:21 -07001010 : dex_file_(dex_file), dex_cache_(dex_cache), class_loader_(class_loader), linker_(linker),
1011 array_size_(), pos_(-1), type_(kByte) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001012 DCHECK(dex_cache != nullptr);
1013 DCHECK(class_loader != nullptr);
Ian Rogers0571d352011-11-03 19:51:38 -07001014 ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def);
1015 if (ptr_ == NULL) {
1016 array_size_ = 0;
1017 } else {
1018 array_size_ = DecodeUnsignedLeb128(&ptr_);
1019 }
1020 if (array_size_ > 0) {
1021 Next();
1022 }
1023}
1024
1025void EncodedStaticFieldValueIterator::Next() {
1026 pos_++;
1027 if (pos_ >= array_size_) {
1028 return;
1029 }
1030 byte value_type = *ptr_++;
1031 byte value_arg = value_type >> kEncodedValueArgShift;
1032 size_t width = value_arg + 1; // assume and correct later
Brian Carlstrom88f36542012-10-16 23:24:21 -07001033 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
Ian Rogers0571d352011-11-03 19:51:38 -07001034 switch (type_) {
1035 case kBoolean:
1036 jval_.i = (value_arg != 0) ? 1 : 0;
1037 width = 0;
1038 break;
1039 case kByte:
1040 jval_.i = ReadSignedInt(ptr_, value_arg);
1041 CHECK(IsInt(8, jval_.i));
1042 break;
1043 case kShort:
1044 jval_.i = ReadSignedInt(ptr_, value_arg);
1045 CHECK(IsInt(16, jval_.i));
1046 break;
1047 case kChar:
1048 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
1049 CHECK(IsUint(16, jval_.i));
1050 break;
1051 case kInt:
1052 jval_.i = ReadSignedInt(ptr_, value_arg);
1053 break;
1054 case kLong:
1055 jval_.j = ReadSignedLong(ptr_, value_arg);
1056 break;
1057 case kFloat:
1058 jval_.i = ReadUnsignedInt(ptr_, value_arg, true);
1059 break;
1060 case kDouble:
1061 jval_.j = ReadUnsignedLong(ptr_, value_arg, true);
1062 break;
1063 case kString:
1064 case kType:
Ian Rogers0571d352011-11-03 19:51:38 -07001065 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
1066 break;
1067 case kField:
Brian Carlstrom88f36542012-10-16 23:24:21 -07001068 case kMethod:
1069 case kEnum:
Ian Rogers0571d352011-11-03 19:51:38 -07001070 case kArray:
1071 case kAnnotation:
1072 UNIMPLEMENTED(FATAL) << ": type " << type_;
1073 break;
1074 case kNull:
1075 jval_.l = NULL;
1076 width = 0;
1077 break;
1078 default:
1079 LOG(FATAL) << "Unreached";
1080 }
1081 ptr_ += width;
1082}
1083
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001084template<bool kTransactionActive>
Brian Carlstromea46f952013-07-30 01:26:50 -07001085void EncodedStaticFieldValueIterator::ReadValueToField(mirror::ArtField* field) const {
Ian Rogers0571d352011-11-03 19:51:38 -07001086 switch (type_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001087 case kBoolean: field->SetBoolean<kTransactionActive>(field->GetDeclaringClass(), jval_.z); break;
1088 case kByte: field->SetByte<kTransactionActive>(field->GetDeclaringClass(), jval_.b); break;
1089 case kShort: field->SetShort<kTransactionActive>(field->GetDeclaringClass(), jval_.s); break;
1090 case kChar: field->SetChar<kTransactionActive>(field->GetDeclaringClass(), jval_.c); break;
1091 case kInt: field->SetInt<kTransactionActive>(field->GetDeclaringClass(), jval_.i); break;
1092 case kLong: field->SetLong<kTransactionActive>(field->GetDeclaringClass(), jval_.j); break;
1093 case kFloat: field->SetFloat<kTransactionActive>(field->GetDeclaringClass(), jval_.f); break;
1094 case kDouble: field->SetDouble<kTransactionActive>(field->GetDeclaringClass(), jval_.d); break;
1095 case kNull: field->SetObject<kTransactionActive>(field->GetDeclaringClass(), NULL); break;
Ian Rogers0571d352011-11-03 19:51:38 -07001096 case kString: {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001097 CHECK(!kMovingFields);
1098 mirror::String* resolved = linker_->ResolveString(dex_file_, jval_.i, *dex_cache_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001099 field->SetObject<kTransactionActive>(field->GetDeclaringClass(), resolved);
Ian Rogers0571d352011-11-03 19:51:38 -07001100 break;
1101 }
Brian Carlstrom88f36542012-10-16 23:24:21 -07001102 case kType: {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001103 CHECK(!kMovingFields);
1104 mirror::Class* resolved = linker_->ResolveType(dex_file_, jval_.i, *dex_cache_,
1105 *class_loader_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001106 field->SetObject<kTransactionActive>(field->GetDeclaringClass(), resolved);
Brian Carlstrom88f36542012-10-16 23:24:21 -07001107 break;
1108 }
Ian Rogers0571d352011-11-03 19:51:38 -07001109 default: UNIMPLEMENTED(FATAL) << ": type " << type_;
1110 }
1111}
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001112template void EncodedStaticFieldValueIterator::ReadValueToField<true>(mirror::ArtField* field) const;
1113template void EncodedStaticFieldValueIterator::ReadValueToField<false>(mirror::ArtField* field) const;
Ian Rogers0571d352011-11-03 19:51:38 -07001114
1115CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) {
1116 handler_.address_ = -1;
1117 int32_t offset = -1;
1118
1119 // Short-circuit the overwhelmingly common cases.
1120 switch (code_item.tries_size_) {
1121 case 0:
1122 break;
1123 case 1: {
1124 const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0);
1125 uint32_t start = tries->start_addr_;
1126 if (address >= start) {
1127 uint32_t end = start + tries->insn_count_;
1128 if (address < end) {
1129 offset = tries->handler_off_;
1130 }
1131 }
1132 break;
1133 }
1134 default:
Ian Rogersdbbc99d2013-04-18 16:51:54 -07001135 offset = DexFile::FindCatchHandlerOffset(code_item, address);
Ian Rogers0571d352011-11-03 19:51:38 -07001136 }
Logan Chien736df022012-04-27 16:25:57 +08001137 Init(code_item, offset);
1138}
1139
1140CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item,
1141 const DexFile::TryItem& try_item) {
1142 handler_.address_ = -1;
1143 Init(code_item, try_item.handler_off_);
1144}
1145
1146void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item,
1147 int32_t offset) {
Ian Rogers0571d352011-11-03 19:51:38 -07001148 if (offset >= 0) {
Logan Chien736df022012-04-27 16:25:57 +08001149 Init(DexFile::GetCatchHandlerData(code_item, offset));
Ian Rogers0571d352011-11-03 19:51:38 -07001150 } else {
1151 // Not found, initialize as empty
1152 current_data_ = NULL;
1153 remaining_count_ = -1;
1154 catch_all_ = false;
1155 DCHECK(!HasNext());
1156 }
1157}
1158
1159void CatchHandlerIterator::Init(const byte* handler_data) {
1160 current_data_ = handler_data;
1161 remaining_count_ = DecodeSignedLeb128(&current_data_);
1162
1163 // If remaining_count_ is non-positive, then it is the negative of
1164 // the number of catch types, and the catches are followed by a
1165 // catch-all handler.
1166 if (remaining_count_ <= 0) {
1167 catch_all_ = true;
1168 remaining_count_ = -remaining_count_;
1169 } else {
1170 catch_all_ = false;
1171 }
1172 Next();
1173}
1174
1175void CatchHandlerIterator::Next() {
1176 if (remaining_count_ > 0) {
1177 handler_.type_idx_ = DecodeUnsignedLeb128(&current_data_);
1178 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1179 remaining_count_--;
1180 return;
1181 }
1182
1183 if (catch_all_) {
1184 handler_.type_idx_ = DexFile::kDexNoIndex16;
1185 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1186 catch_all_ = false;
1187 return;
1188 }
1189
1190 // no more handler
1191 remaining_count_ = -1;
1192}
1193
Carl Shapiro1fb86202011-06-27 17:43:13 -07001194} // namespace art