blob: eb48ded9c3077d0a836678ff169affdb7e2ed25b [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/mman.h>
26#include <sys/stat.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070027
Ian Rogers0571d352011-11-03 19:51:38 -070028#include "class_linker.h"
jeffhao10037c82012-01-23 15:06:23 -080029#include "dex_file_verifier.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "globals.h"
Ian Rogers0571d352011-11-03 19:51:38 -070031#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070032#include "logging.h"
33#include "object.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070034#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070035#include "safe_map.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070036#include "stringprintf.h"
37#include "thread.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070038#include "UniquePtr.h"
Ian Rogers0571d352011-11-03 19:51:38 -070039#include "utf.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070040#include "utils.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070041#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070042
43namespace art {
44
Brian Carlstromf615a612011-07-23 12:50:34 -070045const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
46const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070047
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070048DexFile::ClassPathEntry DexFile::FindInClassPath(const StringPiece& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070049 const ClassPath& class_path) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070050 for (size_t i = 0; i != class_path.size(); ++i) {
51 const DexFile* dex_file = class_path[i];
52 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
53 if (dex_class_def != NULL) {
54 return ClassPathEntry(dex_file, dex_class_def);
55 }
56 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070057 // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
Brian Carlstrom7e93b502011-08-04 14:16:22 -070058 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
59 reinterpret_cast<const DexFile::ClassDef*>(NULL));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070060}
61
Brian Carlstrom5b332c82012-02-01 15:02:31 -080062bool DexFile::GetChecksum(const std::string& filename, uint32_t& checksum) {
63 if (IsValidZipFilename(filename)) {
64 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
65 if (zip_archive.get() == NULL) {
66 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070067 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080068 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex));
69 if (zip_entry.get() == NULL) {
70 return false;
71 }
72 checksum = zip_entry->GetCrc32();
73 return true;
Brian Carlstrom78128a62011-09-15 17:21:19 -070074 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -080075 if (IsValidDexFilename(filename)) {
Brian Carlstrom1db858a2012-03-11 22:44:45 -070076 UniquePtr<const DexFile> dex_file(DexFile::OpenFile(filename, filename, false));
Brian Carlstrom5b332c82012-02-01 15:02:31 -080077 if (dex_file.get() == NULL) {
78 return false;
79 }
80 checksum = dex_file->GetHeader().checksum_;
81 return true;
82 }
83 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -070084}
85
Brian Carlstrom16192862011-09-12 17:50:06 -070086const DexFile* DexFile::Open(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -080087 const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070088 if (IsValidZipFilename(filename)) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080089 return DexFile::OpenZip(filename, location);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070090 }
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -070091 if (!IsValidDexFilename(filename)) {
92 LOG(WARNING) << "Attempting to open dex file with unknown extension '" << filename << "'";
93 }
Brian Carlstroma004aa92012-02-08 18:05:09 -080094 return DexFile::OpenFile(filename, location, true);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095}
96
jeffhaob4df5142011-09-19 20:25:32 -070097void DexFile::ChangePermissions(int prot) const {
Ian Rogers30fab402012-01-23 15:43:46 -080098 if (mprotect(mem_map_->Begin(), mem_map_->Size(), prot) != 0) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -080099 PLOG(FATAL) << "Failed to change dex file permissions to " << prot << " for " << GetLocation();
jeffhaob4df5142011-09-19 20:25:32 -0700100 }
101}
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700102
Brian Carlstrom16192862011-09-12 17:50:06 -0700103const DexFile* DexFile::OpenFile(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800104 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800105 bool verify) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800106 CHECK(!location.empty()) << filename;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700107 int fd = open(filename.c_str(), O_RDONLY); // TODO: scoped_fd
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700108 if (fd == -1) {
109 PLOG(ERROR) << "open(\"" << filename << "\", O_RDONLY) failed";
110 return NULL;
111 }
112 struct stat sbuf;
113 memset(&sbuf, 0, sizeof(sbuf));
114 if (fstat(fd, &sbuf) == -1) {
115 PLOG(ERROR) << "fstat \"" << filename << "\" failed";
116 close(fd);
117 return NULL;
118 }
Ian Rogers7cfb93e2012-01-17 19:46:36 -0800119 if (S_ISDIR(sbuf.st_mode)) {
120 LOG(ERROR) << "attempt to mmap directory \"" << filename << "\"";
121 return NULL;
122 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700123 size_t length = sbuf.st_size;
Brian Carlstrom89521892011-12-07 22:05:07 -0800124 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0));
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700125 if (map.get() == NULL) {
126 LOG(ERROR) << "mmap \"" << filename << "\" failed";
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700127 close(fd);
128 return NULL;
129 }
130 close(fd);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800131
132 if (map->Size() < sizeof(DexFile::Header)) {
133 LOG(ERROR) << "Failed to open dex file '" << filename << "' that is too short to have a header";
134 return NULL;
135 }
136
137 const Header* dex_header = reinterpret_cast<const Header*>(map->Begin());
138
139 const DexFile* dex_file = OpenMemory(location, dex_header->checksum_, map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800140 if (dex_file == NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800141 LOG(ERROR) << "Failed to open dex file '" << filename << "' from memory";
jeffhao54c1ceb2012-02-01 11:45:32 -0800142 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800143 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800144
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700145 if (verify && !DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800146 LOG(ERROR) << "Failed to verify dex file '" << filename << "'";
jeffhao54c1ceb2012-02-01 11:45:32 -0800147 return NULL;
148 }
149
jeffhaof6174e82012-01-31 16:14:17 -0800150 return dex_file;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700151}
152
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700153const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700154
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700155// Open classes.dex from within a .zip, .jar, .apk, ...
Brian Carlstrom16192862011-09-12 17:50:06 -0700156const DexFile* DexFile::OpenZip(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800157 const std::string& location) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700158 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
159 if (zip_archive.get() == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700160 LOG(ERROR) << "Failed to open " << filename << " when looking for classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700161 return NULL;
162 }
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800163 return DexFile::Open(*zip_archive.get(), location);
164}
165
166const DexFile* DexFile::Open(const ZipArchive& zip_archive, const std::string& location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800167 CHECK(!location.empty());
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800168 UniquePtr<ZipEntry> zip_entry(zip_archive.Find(kClassesDex));
Elliott Hughes90a33692011-08-30 13:27:07 -0700169 if (zip_entry.get() == NULL) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800170 LOG(ERROR) << "Failed to find classes.dex within " << location;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700171 return NULL;
172 }
173
Brian Carlstrom89521892011-12-07 22:05:07 -0800174 uint32_t length = zip_entry->GetUncompressedLength();
Elliott Hughes850162c2012-01-12 18:46:43 -0800175 std::string name("classes.dex extracted in memory from ");
176 name += location;
177 UniquePtr<MemMap> map(MemMap::MapAnonymous(name.c_str(), NULL, length, PROT_READ | PROT_WRITE));
Brian Carlstrom89521892011-12-07 22:05:07 -0800178 if (map.get() == NULL) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800179 LOG(ERROR) << "mmap classes.dex for \"" << location << "\" failed";
Brian Carlstrom89521892011-12-07 22:05:07 -0800180 return NULL;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700181 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800182
183 // Extract classes.dex
184 bool success = zip_entry->ExtractToMemory(*map.get());
185 if (!success) {
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800186 LOG(ERROR) << "Failed to extract classes.dex from '" << location << "' to memory";
Brian Carlstrom89521892011-12-07 22:05:07 -0800187 return NULL;
188 }
189
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800190 const DexFile* dex_file = OpenMemory(location, zip_entry->GetCrc32(), map.release());
jeffhao54c1ceb2012-02-01 11:45:32 -0800191 if (dex_file == NULL) {
192 LOG(ERROR) << "Failed to open dex file '" << location << "' from memory";
193 return NULL;
jeffhaof6174e82012-01-31 16:14:17 -0800194 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800195
196 if (!DexFileVerifier::Verify(dex_file, dex_file->Begin(), dex_file->Size())) {
197 LOG(ERROR) << "Failed to verify dex file '" << location << "'";
198 return NULL;
199 }
200
jeffhaof6174e82012-01-31 16:14:17 -0800201 return dex_file;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700202}
203
Brian Carlstrom89521892011-12-07 22:05:07 -0800204const DexFile* DexFile::OpenMemory(const byte* base,
jeffhaof6174e82012-01-31 16:14:17 -0800205 size_t size,
Brian Carlstrom89521892011-12-07 22:05:07 -0800206 const std::string& location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800207 uint32_t location_checksum,
Brian Carlstrom89521892011-12-07 22:05:07 -0800208 MemMap* mem_map) {
209 CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800210 UniquePtr<DexFile> dex_file(new DexFile(base, size, location, location_checksum, mem_map));
Brian Carlstromf615a612011-07-23 12:50:34 -0700211 if (!dex_file->Init()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700212 return NULL;
213 } else {
Brian Carlstromf615a612011-07-23 12:50:34 -0700214 return dex_file.release();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700215 }
216}
217
Jesse Wilson6bf19152011-09-29 13:12:33 -0400218DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700219 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
220 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
221 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
222 // the global reference table is otherwise empty!
Jesse Wilson6bf19152011-09-29 13:12:33 -0400223}
224
225jobject DexFile::GetDexObject(JNIEnv* env) const {
226 MutexLock mu(dex_object_lock_);
227 if (dex_object_ != NULL) {
228 return dex_object_;
229 }
230
Ian Rogers30fab402012-01-23 15:43:46 -0800231 void* address = const_cast<void*>(reinterpret_cast<const void*>(begin_));
jeffhaof6174e82012-01-31 16:14:17 -0800232 jobject byte_buffer = env->NewDirectByteBuffer(address, size_);
Jesse Wilson6bf19152011-09-29 13:12:33 -0400233 if (byte_buffer == NULL) {
234 return NULL;
235 }
236
237 jclass c = env->FindClass("com/android/dex/Dex");
238 if (c == NULL) {
239 return NULL;
240 }
241
242 jmethodID mid = env->GetStaticMethodID(c, "create", "(Ljava/nio/ByteBuffer;)Lcom/android/dex/Dex;");
243 if (mid == NULL) {
244 return NULL;
245 }
246
247 jvalue args[1];
248 args[0].l = byte_buffer;
249 jobject local = env->CallStaticObjectMethodA(c, mid, args);
250 if (local == NULL) {
251 return NULL;
252 }
253
254 dex_object_ = env->NewGlobalRef(local);
255 return dex_object_;
256}
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700257
Brian Carlstromf615a612011-07-23 12:50:34 -0700258bool DexFile::Init() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700259 InitMembers();
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800260 if (!CheckMagicAndVersion()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700261 return false;
262 }
263 InitIndex();
264 return true;
265}
266
Brian Carlstromf615a612011-07-23 12:50:34 -0700267void DexFile::InitMembers() {
Ian Rogers30fab402012-01-23 15:43:46 -0800268 const byte* b = begin_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700269 header_ = reinterpret_cast<const Header*>(b);
270 const Header* h = header_;
271 string_ids_ = reinterpret_cast<const StringId*>(b + h->string_ids_off_);
272 type_ids_ = reinterpret_cast<const TypeId*>(b + h->type_ids_off_);
273 field_ids_ = reinterpret_cast<const FieldId*>(b + h->field_ids_off_);
274 method_ids_ = reinterpret_cast<const MethodId*>(b + h->method_ids_off_);
275 proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_);
276 class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_);
jeffhaof6174e82012-01-31 16:14:17 -0800277 DCHECK_EQ(size_, header_->file_size_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700278}
279
jeffhao10037c82012-01-23 15:06:23 -0800280bool DexFile::CheckMagicAndVersion() const {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800281 CHECK(header_->magic_ != NULL) << GetLocation();
282 if (!IsMagicValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800283 LOG(ERROR) << "Unrecognized magic number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800284 << " " << header_->magic_[0]
285 << " " << header_->magic_[1]
286 << " " << header_->magic_[2]
287 << " " << header_->magic_[3];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700288 return false;
289 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800290 if (!IsVersionValid(header_->magic_)) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800291 LOG(ERROR) << "Unrecognized version number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800292 << " " << header_->magic_[4]
293 << " " << header_->magic_[5]
294 << " " << header_->magic_[6]
295 << " " << header_->magic_[7];
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700296 return false;
297 }
298 return true;
299}
300
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800301bool DexFile::IsMagicValid(const byte* magic) {
302 return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0);
303}
304
305bool DexFile::IsVersionValid(const byte* magic) {
306 const byte* version = &magic[sizeof(kDexMagic)];
307 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0);
308}
309
Ian Rogersd81871c2011-10-03 13:57:23 -0700310uint32_t DexFile::GetVersion() const {
311 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
312 return atoi(version);
313}
314
Ian Rogers0571d352011-11-03 19:51:38 -0700315int32_t DexFile::GetStringLength(const StringId& string_id) const {
Ian Rogers30fab402012-01-23 15:43:46 -0800316 const byte* ptr = begin_ + string_id.string_data_off_;
Ian Rogers0571d352011-11-03 19:51:38 -0700317 return DecodeUnsignedLeb128(&ptr);
318}
319
320// Returns a pointer to the UTF-8 string data referred to by the given string_id.
Elliott Hughes45651fd2012-02-21 15:48:20 -0800321const char* DexFile::GetStringDataAndLength(const StringId& string_id, uint32_t* length) const {
Ian Rogers7b0c5b42012-02-16 15:29:07 -0800322 DCHECK(length != NULL) << GetLocation();
Ian Rogers30fab402012-01-23 15:43:46 -0800323 const byte* ptr = begin_ + string_id.string_data_off_;
Ian Rogers0571d352011-11-03 19:51:38 -0700324 *length = DecodeUnsignedLeb128(&ptr);
325 return reinterpret_cast<const char*>(ptr);
326}
327
Brian Carlstromf615a612011-07-23 12:50:34 -0700328void DexFile::InitIndex() {
Brian Carlstrom61e513c2011-12-09 15:30:06 -0800329 CHECK_EQ(index_.size(), 0U) << GetLocation();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700330 for (size_t i = 0; i < NumClassDefs(); ++i) {
331 const ClassDef& class_def = GetClassDef(i);
332 const char* descriptor = GetClassDescriptor(class_def);
Elliott Hughesa0e18062012-04-13 15:59:59 -0700333 index_.Put(descriptor, i);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700334 }
335}
336
Brian Carlstrome24fa612011-09-29 00:53:55 -0700337bool DexFile::FindClassDefIndex(const StringPiece& descriptor, uint32_t& idx) const {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700338 Index::const_iterator it = index_.find(descriptor);
339 if (it == index_.end()) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700340 return false;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700341 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700342 idx = it->second;
343 return true;
344}
345
346const DexFile::ClassDef* DexFile::FindClassDef(const StringPiece& descriptor) const {
347 uint32_t idx;
348 if (FindClassDefIndex(descriptor, idx)) {
349 return &GetClassDef(idx);
350 }
351 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700352}
353
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800354const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass,
355 const DexFile::StringId& name,
356 const DexFile::TypeId& type) const {
357 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
358 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
359 const uint32_t name_idx = GetIndexForStringId(name);
360 const uint16_t type_idx = GetIndexForTypeId(type);
361 uint32_t lo = 0;
362 uint32_t hi = NumFieldIds() - 1;
363 while (hi >= lo) {
364 uint32_t mid = (hi + lo) / 2;
365 const DexFile::FieldId& field = GetFieldId(mid);
366 if (class_idx > field.class_idx_) {
367 lo = mid + 1;
368 } else if (class_idx < field.class_idx_) {
369 hi = mid - 1;
370 } else {
371 if (name_idx > field.name_idx_) {
372 lo = mid + 1;
373 } else if (name_idx < field.name_idx_) {
374 hi = mid - 1;
375 } else {
376 if (type_idx > field.type_idx_) {
377 lo = mid + 1;
378 } else if (type_idx < field.type_idx_) {
379 hi = mid - 1;
380 } else {
381 return &field;
382 }
383 }
384 }
385 }
386 return NULL;
387}
388
389const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass,
Ian Rogers0571d352011-11-03 19:51:38 -0700390 const DexFile::StringId& name,
391 const DexFile::ProtoId& signature) const {
392 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800393 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
Ian Rogers0571d352011-11-03 19:51:38 -0700394 const uint32_t name_idx = GetIndexForStringId(name);
395 const uint16_t proto_idx = GetIndexForProtoId(signature);
396 uint32_t lo = 0;
397 uint32_t hi = NumMethodIds() - 1;
398 while (hi >= lo) {
399 uint32_t mid = (hi + lo) / 2;
400 const DexFile::MethodId& method = GetMethodId(mid);
401 if (class_idx > method.class_idx_) {
402 lo = mid + 1;
403 } else if (class_idx < method.class_idx_) {
404 hi = mid - 1;
405 } else {
406 if (name_idx > method.name_idx_) {
407 lo = mid + 1;
408 } else if (name_idx < method.name_idx_) {
409 hi = mid - 1;
410 } else {
411 if (proto_idx > method.proto_idx_) {
412 lo = mid + 1;
413 } else if (proto_idx < method.proto_idx_) {
414 hi = mid - 1;
415 } else {
416 return &method;
417 }
418 }
419 }
420 }
421 return NULL;
422}
423
424const DexFile::StringId* DexFile::FindStringId(const std::string& string) const {
425 uint32_t lo = 0;
426 uint32_t hi = NumStringIds() - 1;
427 while (hi >= lo) {
428 uint32_t mid = (hi + lo) / 2;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800429 uint32_t length;
Ian Rogers0571d352011-11-03 19:51:38 -0700430 const DexFile::StringId& str_id = GetStringId(mid);
431 const char* str = GetStringDataAndLength(str_id, &length);
432 int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string.c_str(), str);
433 if (compare > 0) {
434 lo = mid + 1;
435 } else if (compare < 0) {
436 hi = mid - 1;
437 } else {
438 return &str_id;
439 }
440 }
441 return NULL;
442}
443
444const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const {
445 uint32_t lo = 0;
446 uint32_t hi = NumTypeIds() - 1;
447 while (hi >= lo) {
448 uint32_t mid = (hi + lo) / 2;
449 const TypeId& type_id = GetTypeId(mid);
450 if (string_idx > type_id.descriptor_idx_) {
451 lo = mid + 1;
452 } else if (string_idx < type_id.descriptor_idx_) {
453 hi = mid - 1;
454 } else {
455 return &type_id;
456 }
457 }
458 return NULL;
459}
460
461const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800462 const std::vector<uint16_t>& signature_type_idxs) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700463 uint32_t lo = 0;
464 uint32_t hi = NumProtoIds() - 1;
465 while (hi >= lo) {
466 uint32_t mid = (hi + lo) / 2;
467 const DexFile::ProtoId& proto = GetProtoId(mid);
468 int compare = return_type_idx - proto.return_type_idx_;
469 if (compare == 0) {
470 DexFileParameterIterator it(*this, proto);
471 size_t i = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800472 while (it.HasNext() && i < signature_type_idxs.size() && compare == 0) {
473 compare = signature_type_idxs[i] - it.GetTypeIdx();
Ian Rogers0571d352011-11-03 19:51:38 -0700474 it.Next();
475 i++;
476 }
477 if (compare == 0) {
478 if (it.HasNext()) {
479 compare = -1;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800480 } else if (i < signature_type_idxs.size()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700481 compare = 1;
482 }
483 }
484 }
485 if (compare > 0) {
486 lo = mid + 1;
487 } else if (compare < 0) {
488 hi = mid - 1;
489 } else {
490 return &proto;
491 }
492 }
493 return NULL;
494}
495
496// Given a signature place the type ids into the given vector
497bool DexFile::CreateTypeList(uint16_t* return_type_idx, std::vector<uint16_t>* param_type_idxs,
498 const std::string& signature) const {
499 if (signature[0] != '(') {
500 return false;
501 }
502 size_t offset = 1;
503 size_t end = signature.size();
504 bool process_return = false;
505 while (offset < end) {
506 char c = signature[offset];
507 offset++;
508 if (c == ')') {
509 process_return = true;
510 continue;
511 }
512 std::string descriptor;
513 descriptor += c;
514 while (c == '[') { // process array prefix
515 if (offset >= end) { // expect some descriptor following [
516 return false;
517 }
518 c = signature[offset];
519 offset++;
520 descriptor += c;
521 }
522 if (c == 'L') { // process type descriptors
523 do {
524 if (offset >= end) { // unexpected early termination of descriptor
525 return false;
526 }
527 c = signature[offset];
528 offset++;
529 descriptor += c;
530 } while (c != ';');
531 }
532 const DexFile::StringId* string_id = FindStringId(descriptor);
533 if (string_id == NULL) {
534 return false;
535 }
536 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
537 if (type_id == NULL) {
538 return false;
539 }
540 uint16_t type_idx = GetIndexForTypeId(*type_id);
541 if (!process_return) {
542 param_type_idxs->push_back(type_idx);
543 } else {
544 *return_type_idx = type_idx;
545 return offset == end; // return true if the signature had reached a sensible end
546 }
547 }
548 return false; // failed to correctly parse return type
549}
550
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700551// Materializes the method descriptor for a method prototype. Method
552// descriptors are not stored directly in the dex file. Instead, one
553// must assemble the descriptor from references in the prototype.
Ian Rogers0571d352011-11-03 19:51:38 -0700554std::string DexFile::CreateMethodSignature(uint32_t proto_idx, int32_t* unicode_length) const {
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700555 const ProtoId& proto_id = GetProtoId(proto_idx);
556 std::string descriptor;
557 descriptor.push_back('(');
558 const TypeList* type_list = GetProtoParameters(proto_id);
559 size_t parameter_length = 0;
560 if (type_list != NULL) {
561 // A non-zero number of arguments. Append the type names.
562 for (size_t i = 0; i < type_list->Size(); ++i) {
563 const TypeItem& type_item = type_list->GetTypeItem(i);
564 uint32_t type_idx = type_item.type_idx_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800565 uint32_t type_length;
Ian Rogers0571d352011-11-03 19:51:38 -0700566 const char* name = StringByTypeIdx(type_idx, &type_length);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700567 parameter_length += type_length;
568 descriptor.append(name);
569 }
570 }
571 descriptor.push_back(')');
572 uint32_t return_type_idx = proto_id.return_type_idx_;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800573 uint32_t return_type_length;
Ian Rogers0571d352011-11-03 19:51:38 -0700574 const char* name = StringByTypeIdx(return_type_idx, &return_type_length);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700575 descriptor.append(name);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700576 if (unicode_length != NULL) {
577 *unicode_length = parameter_length + return_type_length + 2; // 2 for ( and )
578 }
Elliott Hughes0c424cb2011-08-26 10:16:25 -0700579 return descriptor;
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700580}
581
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800582int32_t DexFile::GetLineNumFromPC(const Method* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700583 // For native method, lineno should be -2 to indicate it is native. Note that
584 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700585 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700586 return -2;
587 }
588
TDYa127c8dc1012012-04-19 07:03:33 -0700589 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom61e513c2011-12-09 15:30:06 -0800590 DCHECK(code_item != NULL) << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700591
592 // A method with no line number info should return -1
593 LineNumFromPcContext context(rel_pc, -1);
TDYa127c8dc1012012-04-19 07:03:33 -0700594 DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800595 NULL, &context);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700596 return context.line_num_;
597}
598
Ian Rogers0571d352011-11-03 19:51:38 -0700599int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, int32_t tries_size,
Elliott Hughesba8eee12012-01-24 20:25:24 -0800600 uint32_t address) {
Ian Rogers0571d352011-11-03 19:51:38 -0700601 // Note: Signed type is important for max and min.
602 int32_t min = 0;
603 int32_t max = tries_size - 1;
604
605 while (max >= min) {
606 int32_t mid = (min + max) / 2;
607 const TryItem* pTry = DexFile::GetTryItems(code_item, mid);
608 uint32_t start = pTry->start_addr_;
609 if (address < start) {
610 max = mid - 1;
611 } else {
612 uint32_t end = start + pTry->insn_count_;
613 if (address >= end) {
614 min = mid + 1;
615 } else { // We have a winner!
616 return (int32_t) pTry->handler_off_;
617 }
618 }
619 }
620 // No match.
621 return -1;
622}
623
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800624void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800625 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
626 void* context, const byte* stream, LocalInfo* local_in_reg) const {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700627 uint32_t line = DecodeUnsignedLeb128(&stream);
628 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
629 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
630 uint32_t address = 0;
Elliott Hughes30646832011-10-13 16:59:46 -0700631 bool need_locals = (local_cb != NULL);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700632
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800633 if (!is_static) {
Elliott Hughes30646832011-10-13 16:59:46 -0700634 if (need_locals) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800635 const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700636 local_in_reg[arg_reg].name_ = "this";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800637 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800638 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700639 local_in_reg[arg_reg].start_address_ = 0;
640 local_in_reg[arg_reg].is_live_ = true;
641 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700642 arg_reg++;
643 }
644
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800645 DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx)));
Ian Rogers0571d352011-11-03 19:51:38 -0700646 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700647 if (arg_reg >= code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700648 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800649 << " >= " << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700650 return;
651 }
Elliott Hughes392b1242011-11-30 13:55:50 -0800652 uint32_t id = DecodeUnsignedLeb128P1(&stream);
Ian Rogers0571d352011-11-03 19:51:38 -0700653 const char* descriptor = it.GetDescriptor();
Elliott Hughes392b1242011-11-30 13:55:50 -0800654 if (need_locals && id != kDexNoIndex) {
Ian Rogers0571d352011-11-03 19:51:38 -0700655 const char* name = StringDataByIdx(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700656 local_in_reg[arg_reg].name_ = name;
657 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes392b1242011-11-30 13:55:50 -0800658 local_in_reg[arg_reg].signature_ = NULL;
Elliott Hughes30646832011-10-13 16:59:46 -0700659 local_in_reg[arg_reg].start_address_ = address;
660 local_in_reg[arg_reg].is_live_ = true;
661 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700662 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700663 case 'D':
664 case 'J':
665 arg_reg += 2;
666 break;
667 default:
668 arg_reg += 1;
669 break;
670 }
671 }
672
Ian Rogers0571d352011-11-03 19:51:38 -0700673 if (it.HasNext()) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800674 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700675 return;
676 }
677
678 for (;;) {
679 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700680 uint16_t reg;
jeffhaof8728872011-10-28 19:11:13 -0700681 uint16_t name_idx;
682 uint16_t descriptor_idx;
683 uint16_t signature_idx = 0;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700684
Shih-wei Liao195487c2011-08-20 13:29:04 -0700685 switch (opcode) {
686 case DBG_END_SEQUENCE:
687 return;
688
689 case DBG_ADVANCE_PC:
690 address += DecodeUnsignedLeb128(&stream);
691 break;
692
693 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700694 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700695 break;
696
697 case DBG_START_LOCAL:
698 case DBG_START_LOCAL_EXTENDED:
699 reg = DecodeUnsignedLeb128(&stream);
700 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700701 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800702 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700703 return;
704 }
705
jeffhaof8728872011-10-28 19:11:13 -0700706 name_idx = DecodeUnsignedLeb128P1(&stream);
707 descriptor_idx = DecodeUnsignedLeb128P1(&stream);
708 if (opcode == DBG_START_LOCAL_EXTENDED) {
709 signature_idx = DecodeUnsignedLeb128P1(&stream);
710 }
711
Shih-wei Liao195487c2011-08-20 13:29:04 -0700712 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700713 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800714 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700715
Ian Rogers0571d352011-11-03 19:51:38 -0700716 local_in_reg[reg].name_ = StringDataByIdx(name_idx);
717 local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700718 if (opcode == DBG_START_LOCAL_EXTENDED) {
Ian Rogers0571d352011-11-03 19:51:38 -0700719 local_in_reg[reg].signature_ = StringDataByIdx(signature_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700720 }
721 local_in_reg[reg].start_address_ = address;
722 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700723 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700724 break;
725
726 case DBG_END_LOCAL:
727 reg = DecodeUnsignedLeb128(&stream);
728 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700729 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800730 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700731 return;
732 }
733
Elliott Hughes30646832011-10-13 16:59:46 -0700734 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800735 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Elliott Hughes30646832011-10-13 16:59:46 -0700736 local_in_reg[reg].is_live_ = false;
737 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700738 break;
739
740 case DBG_RESTART_LOCAL:
741 reg = DecodeUnsignedLeb128(&stream);
742 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700743 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800744 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700745 return;
746 }
747
Elliott Hughes30646832011-10-13 16:59:46 -0700748 if (need_locals) {
749 if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800750 LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation();
Elliott Hughes30646832011-10-13 16:59:46 -0700751 return;
752 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700753
Elliott Hughes30646832011-10-13 16:59:46 -0700754 // If the register is live, the "restart" is superfluous,
755 // and we don't want to mess with the existing start address.
756 if (!local_in_reg[reg].is_live_) {
757 local_in_reg[reg].start_address_ = address;
758 local_in_reg[reg].is_live_ = true;
759 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700760 }
761 break;
762
763 case DBG_SET_PROLOGUE_END:
764 case DBG_SET_EPILOGUE_BEGIN:
765 case DBG_SET_FILE:
766 break;
767
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700768 default: {
769 int adjopcode = opcode - DBG_FIRST_SPECIAL;
770
Shih-wei Liao195487c2011-08-20 13:29:04 -0700771 address += adjopcode / DBG_LINE_RANGE;
772 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
773
Elliott Hughes2435a572012-02-17 16:07:41 -0800774 if (position_cb != NULL) {
775 if (position_cb(context, address, line)) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700776 // early exit
777 return;
778 }
779 }
780 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700781 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700782 }
783 }
784}
785
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800786void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800787 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
788 void* context) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700789 const byte* stream = GetDebugInfoStream(code_item);
Elliott Hughesee0fa762012-03-26 17:12:41 -0700790 UniquePtr<LocalInfo[]> local_in_reg(local_cb != NULL ? new LocalInfo[code_item->registers_size_] : NULL);
Ian Rogers0571d352011-11-03 19:51:38 -0700791 if (stream != NULL) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700792 DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream, &local_in_reg[0]);
Ian Rogers0571d352011-11-03 19:51:38 -0700793 }
794 for (int reg = 0; reg < code_item->registers_size_; reg++) {
Elliott Hughesee0fa762012-03-26 17:12:41 -0700795 InvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0], local_cb);
Ian Rogers0571d352011-11-03 19:51:38 -0700796 }
797}
798
Elliott Hughes2435a572012-02-17 16:07:41 -0800799bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) {
800 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context);
Ian Rogers0571d352011-11-03 19:51:38 -0700801
802 // We know that this callback will be called in
803 // ascending address order, so keep going until we find
804 // a match or we've just gone past it.
805 if (address > context->address_) {
806 // The line number from the previous positions callback
807 // wil be the final result.
808 return true;
809 } else {
810 context->line_num_ = line_num;
811 return address == context->address_;
812 }
813}
814
815// Decodes the header section from the class data bytes.
816void ClassDataItemIterator::ReadClassDataHeader() {
817 CHECK(ptr_pos_ != NULL);
818 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
819 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
820 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
821 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
822}
823
824void ClassDataItemIterator::ReadClassDataField() {
825 field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
826 field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700827 if (field_.field_idx_delta_ == 0) {
828 LOG(WARNING) << "Duplicate field " << PrettyField(GetMemberIndex(), dex_file_)
829 << " in " << dex_file_.GetLocation();
830 }
Ian Rogers0571d352011-11-03 19:51:38 -0700831}
832
833void ClassDataItemIterator::ReadClassDataMethod() {
834 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
835 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
836 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700837 if (method_.method_idx_delta_ == 0) {
838 LOG(WARNING) << "Duplicate method " << PrettyMethod(GetMemberIndex(), dex_file_)
839 << " in " << dex_file_.GetLocation();
840 }
Ian Rogers0571d352011-11-03 19:51:38 -0700841}
842
843// Read a signed integer. "zwidth" is the zero-based byte count.
844static int32_t ReadSignedInt(const byte* ptr, int zwidth) {
845 int32_t val = 0;
846 for (int i = zwidth; i >= 0; --i) {
847 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
848 }
849 val >>= (3 - zwidth) * 8;
850 return val;
851}
852
853// Read an unsigned integer. "zwidth" is the zero-based byte count,
854// "fill_on_right" indicates which side we want to zero-fill from.
855static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) {
856 uint32_t val = 0;
857 if (!fill_on_right) {
858 for (int i = zwidth; i >= 0; --i) {
859 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
860 }
861 val >>= (3 - zwidth) * 8;
862 } else {
863 for (int i = zwidth; i >= 0; --i) {
864 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
865 }
866 }
867 return val;
868}
869
870// Read a signed long. "zwidth" is the zero-based byte count.
871static int64_t ReadSignedLong(const byte* ptr, int zwidth) {
872 int64_t val = 0;
873 for (int i = zwidth; i >= 0; --i) {
874 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
875 }
876 val >>= (7 - zwidth) * 8;
877 return val;
878}
879
880// Read an unsigned long. "zwidth" is the zero-based byte count,
881// "fill_on_right" indicates which side we want to zero-fill from.
882static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) {
883 uint64_t val = 0;
884 if (!fill_on_right) {
885 for (int i = zwidth; i >= 0; --i) {
886 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
887 }
888 val >>= (7 - zwidth) * 8;
889 } else {
890 for (int i = zwidth; i >= 0; --i) {
891 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
892 }
893 }
894 return val;
895}
896
897EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(const DexFile& dex_file,
898 DexCache* dex_cache, ClassLinker* linker, const DexFile::ClassDef& class_def) :
899 dex_file_(dex_file), dex_cache_(dex_cache), linker_(linker), array_size_(), pos_(-1), type_(0) {
900 ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def);
901 if (ptr_ == NULL) {
902 array_size_ = 0;
903 } else {
904 array_size_ = DecodeUnsignedLeb128(&ptr_);
905 }
906 if (array_size_ > 0) {
907 Next();
908 }
909}
910
911void EncodedStaticFieldValueIterator::Next() {
912 pos_++;
913 if (pos_ >= array_size_) {
914 return;
915 }
916 byte value_type = *ptr_++;
917 byte value_arg = value_type >> kEncodedValueArgShift;
918 size_t width = value_arg + 1; // assume and correct later
919 type_ = value_type & kEncodedValueTypeMask;
920 switch (type_) {
921 case kBoolean:
922 jval_.i = (value_arg != 0) ? 1 : 0;
923 width = 0;
924 break;
925 case kByte:
926 jval_.i = ReadSignedInt(ptr_, value_arg);
927 CHECK(IsInt(8, jval_.i));
928 break;
929 case kShort:
930 jval_.i = ReadSignedInt(ptr_, value_arg);
931 CHECK(IsInt(16, jval_.i));
932 break;
933 case kChar:
934 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
935 CHECK(IsUint(16, jval_.i));
936 break;
937 case kInt:
938 jval_.i = ReadSignedInt(ptr_, value_arg);
939 break;
940 case kLong:
941 jval_.j = ReadSignedLong(ptr_, value_arg);
942 break;
943 case kFloat:
944 jval_.i = ReadUnsignedInt(ptr_, value_arg, true);
945 break;
946 case kDouble:
947 jval_.j = ReadUnsignedLong(ptr_, value_arg, true);
948 break;
949 case kString:
950 case kType:
951 case kMethod:
952 case kEnum:
953 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
954 break;
955 case kField:
956 case kArray:
957 case kAnnotation:
958 UNIMPLEMENTED(FATAL) << ": type " << type_;
959 break;
960 case kNull:
961 jval_.l = NULL;
962 width = 0;
963 break;
964 default:
965 LOG(FATAL) << "Unreached";
966 }
967 ptr_ += width;
968}
969
970void EncodedStaticFieldValueIterator::ReadValueToField(Field* field) const {
971 switch (type_) {
972 case kBoolean: field->SetBoolean(NULL, jval_.z); break;
973 case kByte: field->SetByte(NULL, jval_.b); break;
974 case kShort: field->SetShort(NULL, jval_.s); break;
975 case kChar: field->SetChar(NULL, jval_.c); break;
976 case kInt: field->SetInt(NULL, jval_.i); break;
977 case kLong: field->SetLong(NULL, jval_.j); break;
978 case kFloat: field->SetFloat(NULL, jval_.f); break;
979 case kDouble: field->SetDouble(NULL, jval_.d); break;
980 case kNull: field->SetObject(NULL, NULL); break;
981 case kString: {
982 String* resolved = linker_->ResolveString(dex_file_, jval_.i, dex_cache_);
983 field->SetObject(NULL, resolved);
984 break;
985 }
986 default: UNIMPLEMENTED(FATAL) << ": type " << type_;
987 }
988}
989
990CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) {
991 handler_.address_ = -1;
992 int32_t offset = -1;
993
994 // Short-circuit the overwhelmingly common cases.
995 switch (code_item.tries_size_) {
996 case 0:
997 break;
998 case 1: {
999 const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0);
1000 uint32_t start = tries->start_addr_;
1001 if (address >= start) {
1002 uint32_t end = start + tries->insn_count_;
1003 if (address < end) {
1004 offset = tries->handler_off_;
1005 }
1006 }
1007 break;
1008 }
1009 default:
1010 offset = DexFile::FindCatchHandlerOffset(code_item, code_item.tries_size_, address);
1011 }
Logan Chien736df022012-04-27 16:25:57 +08001012 Init(code_item, offset);
1013}
1014
1015CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item,
1016 const DexFile::TryItem& try_item) {
1017 handler_.address_ = -1;
1018 Init(code_item, try_item.handler_off_);
1019}
1020
1021void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item,
1022 int32_t offset) {
Ian Rogers0571d352011-11-03 19:51:38 -07001023 if (offset >= 0) {
Logan Chien736df022012-04-27 16:25:57 +08001024 Init(DexFile::GetCatchHandlerData(code_item, offset));
Ian Rogers0571d352011-11-03 19:51:38 -07001025 } else {
1026 // Not found, initialize as empty
1027 current_data_ = NULL;
1028 remaining_count_ = -1;
1029 catch_all_ = false;
1030 DCHECK(!HasNext());
1031 }
1032}
1033
1034void CatchHandlerIterator::Init(const byte* handler_data) {
1035 current_data_ = handler_data;
1036 remaining_count_ = DecodeSignedLeb128(&current_data_);
1037
1038 // If remaining_count_ is non-positive, then it is the negative of
1039 // the number of catch types, and the catches are followed by a
1040 // catch-all handler.
1041 if (remaining_count_ <= 0) {
1042 catch_all_ = true;
1043 remaining_count_ = -remaining_count_;
1044 } else {
1045 catch_all_ = false;
1046 }
1047 Next();
1048}
1049
1050void CatchHandlerIterator::Next() {
1051 if (remaining_count_ > 0) {
1052 handler_.type_idx_ = DecodeUnsignedLeb128(&current_data_);
1053 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1054 remaining_count_--;
1055 return;
1056 }
1057
1058 if (catch_all_) {
1059 handler_.type_idx_ = DexFile::kDexNoIndex16;
1060 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1061 catch_all_ = false;
1062 return;
1063 }
1064
1065 // no more handler
1066 remaining_count_ = -1;
1067}
1068
Carl Shapiro1fb86202011-06-27 17:43:13 -07001069} // namespace art