blob: 0589cdd3a27b93d181632abd1ca80fb04bb53577 [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 Rogersc7dd2952014-10-21 23:31:19 -070026
Ian Rogers700a4022014-05-19 16:49:03 -070027#include <memory>
Ian Rogersc7dd2952014-10-21 23:31:19 -070028#include <sstream>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070029
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080031#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080032#include "base/stringprintf.h"
Ian Rogers0571d352011-11-03 19:51:38 -070033#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070034#include "dex_file-inl.h"
jeffhao10037c82012-01-23 15:06:23 -080035#include "dex_file_verifier.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070036#include "globals.h"
Ian Rogers0571d352011-11-03 19:51:38 -070037#include "leb128.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070038#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/string.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070040#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070041#include "safe_map.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070042#include "handle_scope-inl.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070043#include "thread.h"
Ian Rogersa6724902013-09-23 09:23:37 -070044#include "utf-inl.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070045#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070046#include "well_known_classes.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070047#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070048
Andreas Gampe277ccbd2014-11-03 21:36:10 -080049#pragma GCC diagnostic push
50#pragma GCC diagnostic ignored "-Wshadow"
51#include "ScopedFd.h"
52#pragma GCC diagnostic pop
53
Carl Shapiro1fb86202011-06-27 17:43:13 -070054namespace art {
55
Ian Rogers13735952014-10-08 12:43:28 -070056const uint8_t DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
57const uint8_t DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070058
Ian Rogers8d31bbd2013-10-13 10:44:14 -070059static int OpenAndReadMagic(const char* filename, uint32_t* magic, std::string* error_msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070060 CHECK(magic != nullptr);
Vladimir Markofd995762013-11-06 16:36:36 +000061 ScopedFd fd(open(filename, O_RDONLY, 0));
62 if (fd.get() == -1) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070063 *error_msg = StringPrintf("Unable to open '%s' : %s", filename, strerror(errno));
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070064 return -1;
65 }
Vladimir Markofd995762013-11-06 16:36:36 +000066 int n = TEMP_FAILURE_RETRY(read(fd.get(), magic, sizeof(*magic)));
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070067 if (n != sizeof(*magic)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070068 *error_msg = StringPrintf("Failed to find magic in '%s'", filename);
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070069 return -1;
70 }
Vladimir Markofd995762013-11-06 16:36:36 +000071 if (lseek(fd.get(), 0, SEEK_SET) != 0) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070072 *error_msg = StringPrintf("Failed to seek to beginning of file '%s' : %s", filename,
73 strerror(errno));
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070074 return -1;
75 }
Vladimir Markofd995762013-11-06 16:36:36 +000076 return fd.release();
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070077}
78
Ian Rogers8d31bbd2013-10-13 10:44:14 -070079bool DexFile::GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070080 CHECK(checksum != nullptr);
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070081 uint32_t magic;
Andreas Gampe833a4852014-05-21 18:46:59 -070082
83 // Strip ":...", which is the location
84 const char* zip_entry_name = kClassesDex;
85 const char* file_part = filename;
Vladimir Markoaa4497d2014-09-05 14:01:17 +010086 std::string file_part_storage;
Andreas Gampe833a4852014-05-21 18:46:59 -070087
Vladimir Markoaa4497d2014-09-05 14:01:17 +010088 if (DexFile::IsMultiDexLocation(filename)) {
89 file_part_storage = GetBaseLocation(filename);
90 file_part = file_part_storage.c_str();
91 zip_entry_name = filename + file_part_storage.size() + 1;
92 DCHECK_EQ(zip_entry_name[-1], kMultiDexSeparator);
Andreas Gampe833a4852014-05-21 18:46:59 -070093 }
94
95 ScopedFd fd(OpenAndReadMagic(file_part, &magic, error_msg));
Vladimir Markofd995762013-11-06 16:36:36 +000096 if (fd.get() == -1) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070097 DCHECK(!error_msg->empty());
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -070098 return false;
99 }
100 if (IsZipMagic(magic)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700101 std::unique_ptr<ZipArchive> zip_archive(
102 ZipArchive::OpenFromFd(fd.release(), filename, error_msg));
103 if (zip_archive.get() == nullptr) {
Andreas Gampe0b3ed3d2015-03-04 15:38:51 -0800104 *error_msg = StringPrintf("Failed to open zip archive '%s' (error msg: %s)", file_part,
105 error_msg->c_str());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800106 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700107 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700108 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(zip_entry_name, error_msg));
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700109 if (zip_entry.get() == nullptr) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700110 *error_msg = StringPrintf("Zip archive '%s' doesn't contain %s (error msg: %s)", file_part,
111 zip_entry_name, error_msg->c_str());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800112 return false;
113 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700114 *checksum = zip_entry->GetCrc32();
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800115 return true;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700116 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700117 if (IsDexMagic(magic)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700118 std::unique_ptr<const DexFile> dex_file(
119 DexFile::OpenFile(fd.release(), filename, false, error_msg));
120 if (dex_file.get() == nullptr) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800121 return false;
122 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700123 *checksum = dex_file->GetHeader().checksum_;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800124 return true;
125 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700126 *error_msg = StringPrintf("Expected valid zip or dex file: '%s'", filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800127 return false;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700128}
129
Andreas Gampe833a4852014-05-21 18:46:59 -0700130bool DexFile::Open(const char* filename, const char* location, std::string* error_msg,
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800131 std::vector<std::unique_ptr<const DexFile>>* dex_files) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700132 DCHECK(dex_files != nullptr) << "DexFile::Open: out-param is nullptr";
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700133 uint32_t magic;
Vladimir Markofd995762013-11-06 16:36:36 +0000134 ScopedFd fd(OpenAndReadMagic(filename, &magic, error_msg));
135 if (fd.get() == -1) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700136 DCHECK(!error_msg->empty());
Andreas Gampe833a4852014-05-21 18:46:59 -0700137 return false;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700138 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700139 if (IsZipMagic(magic)) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700140 return DexFile::OpenZip(fd.release(), location, error_msg, dex_files);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700141 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700142 if (IsDexMagic(magic)) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700143 std::unique_ptr<const DexFile> dex_file(DexFile::OpenFile(fd.release(), location, true,
144 error_msg));
145 if (dex_file.get() != nullptr) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800146 dex_files->push_back(std::move(dex_file));
Andreas Gampe833a4852014-05-21 18:46:59 -0700147 return true;
148 } else {
149 return false;
150 }
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700151 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700152 *error_msg = StringPrintf("Expected valid zip or dex file: '%s'", filename);
Alexander Ivchenkobacce5c2014-06-26 16:32:11 +0400153 return false;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700154}
155
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800156int DexFile::GetPermissions() const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700157 if (mem_map_.get() == nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800158 return 0;
159 } else {
160 return mem_map_->GetProtect();
161 }
162}
163
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200164bool DexFile::IsReadOnly() const {
165 return GetPermissions() == PROT_READ;
166}
167
Brian Carlstrome0948e12013-08-29 09:36:15 -0700168bool DexFile::EnableWrite() const {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200169 CHECK(IsReadOnly());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700170 if (mem_map_.get() == nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200171 return false;
172 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700173 return mem_map_->Protect(PROT_READ | PROT_WRITE);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200174 }
175}
176
Brian Carlstrome0948e12013-08-29 09:36:15 -0700177bool DexFile::DisableWrite() const {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200178 CHECK(!IsReadOnly());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700179 if (mem_map_.get() == nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200180 return false;
181 } else {
Brian Carlstrome0948e12013-08-29 09:36:15 -0700182 return mem_map_->Protect(PROT_READ);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200183 }
184}
185
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800186std::unique_ptr<const DexFile> DexFile::OpenFile(int fd, const char* location, bool verify,
187 std::string* error_msg) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700188 CHECK(location != nullptr);
Ian Rogers700a4022014-05-19 16:49:03 -0700189 std::unique_ptr<MemMap> map;
Vladimir Markofd995762013-11-06 16:36:36 +0000190 {
191 ScopedFd delayed_close(fd);
192 struct stat sbuf;
193 memset(&sbuf, 0, sizeof(sbuf));
194 if (fstat(fd, &sbuf) == -1) {
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800195 *error_msg = StringPrintf("DexFile: fstat '%s' failed: %s", location, strerror(errno));
Vladimir Markofd995762013-11-06 16:36:36 +0000196 return nullptr;
197 }
198 if (S_ISDIR(sbuf.st_mode)) {
199 *error_msg = StringPrintf("Attempt to mmap directory '%s'", location);
200 return nullptr;
201 }
202 size_t length = sbuf.st_size;
203 map.reset(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0, location, error_msg));
204 if (map.get() == nullptr) {
205 DCHECK(!error_msg->empty());
206 return nullptr;
207 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700208 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800209
210 if (map->Size() < sizeof(DexFile::Header)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700211 *error_msg = StringPrintf(
Brian Carlstrom4fa0bcd2013-12-10 11:24:21 -0800212 "DexFile: failed to open dex file '%s' that is too short to have a header", location);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700213 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800214 }
215
216 const Header* dex_header = reinterpret_cast<const Header*>(map->Begin());
217
Andreas Gampe928f72b2014-09-09 19:53:48 -0700218 std::unique_ptr<const DexFile> dex_file(OpenMemory(location, dex_header->checksum_, map.release(),
219 error_msg));
220 if (dex_file.get() == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700221 *error_msg = StringPrintf("Failed to open dex file '%s' from memory: %s", location,
222 error_msg->c_str());
223 return nullptr;
jeffhaof6174e82012-01-31 16:14:17 -0800224 }
jeffhao54c1ceb2012-02-01 11:45:32 -0800225
Andreas Gampe928f72b2014-09-09 19:53:48 -0700226 if (verify && !DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
227 location, error_msg)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700228 return nullptr;
jeffhao54c1ceb2012-02-01 11:45:32 -0800229 }
230
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800231 return dex_file;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700232}
233
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700234const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700235
Andreas Gampe833a4852014-05-21 18:46:59 -0700236bool DexFile::OpenZip(int fd, const std::string& location, std::string* error_msg,
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800237 std::vector<std::unique_ptr<const DexFile>>* dex_files) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700238 DCHECK(dex_files != nullptr) << "DexFile::OpenZip: out-param is nullptr";
Ian Rogers700a4022014-05-19 16:49:03 -0700239 std::unique_ptr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(fd, location.c_str(), error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700240 if (zip_archive.get() == nullptr) {
241 DCHECK(!error_msg->empty());
Andreas Gampe833a4852014-05-21 18:46:59 -0700242 return false;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700243 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700244 return DexFile::OpenFromZip(*zip_archive, location, error_msg, dex_files);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800245}
246
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800247std::unique_ptr<const DexFile> DexFile::OpenMemory(const std::string& location,
248 uint32_t location_checksum,
249 MemMap* mem_map,
250 std::string* error_msg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800251 return OpenMemory(mem_map->Begin(),
252 mem_map->Size(),
253 location,
254 location_checksum,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700255 mem_map,
Andreas Gampefd9eb392014-11-06 16:52:58 -0800256 nullptr,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700257 error_msg);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800258}
259
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800260std::unique_ptr<const DexFile> DexFile::Open(const ZipArchive& zip_archive, const char* entry_name,
261 const std::string& location, std::string* error_msg,
262 ZipOpenErrorCode* error_code) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800263 CHECK(!location.empty());
Andreas Gampe833a4852014-05-21 18:46:59 -0700264 std::unique_ptr<ZipEntry> zip_entry(zip_archive.Find(entry_name, error_msg));
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700265 if (zip_entry.get() == nullptr) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700266 *error_code = ZipOpenErrorCode::kEntryNotFound;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700267 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700268 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700269 std::unique_ptr<MemMap> map(zip_entry->ExtractToMemMap(location.c_str(), entry_name, error_msg));
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700270 if (map.get() == nullptr) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700271 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", entry_name, location.c_str(),
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700272 error_msg->c_str());
Andreas Gampe833a4852014-05-21 18:46:59 -0700273 *error_code = ZipOpenErrorCode::kExtractToMemoryError;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700274 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700275 }
Ian Rogers700a4022014-05-19 16:49:03 -0700276 std::unique_ptr<const DexFile> dex_file(OpenMemory(location, zip_entry->GetCrc32(), map.release(),
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700277 error_msg));
278 if (dex_file.get() == nullptr) {
279 *error_msg = StringPrintf("Failed to open dex file '%s' from memory: %s", location.c_str(),
280 error_msg->c_str());
Andreas Gampe833a4852014-05-21 18:46:59 -0700281 *error_code = ZipOpenErrorCode::kDexFileError;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700282 return nullptr;
jeffhaof6174e82012-01-31 16:14:17 -0800283 }
Brian Carlstrome0948e12013-08-29 09:36:15 -0700284 if (!dex_file->DisableWrite()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700285 *error_msg = StringPrintf("Failed to make dex file '%s' read only", location.c_str());
Andreas Gampe833a4852014-05-21 18:46:59 -0700286 *error_code = ZipOpenErrorCode::kMakeReadOnlyError;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700287 return nullptr;
Brian Carlstrome0948e12013-08-29 09:36:15 -0700288 }
289 CHECK(dex_file->IsReadOnly()) << location;
Brian Carlstromd6cec902014-05-25 16:08:51 -0700290 if (!DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
291 location.c_str(), error_msg)) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700292 *error_code = ZipOpenErrorCode::kVerifyError;
Brian Carlstromd6cec902014-05-25 16:08:51 -0700293 return nullptr;
294 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700295 *error_code = ZipOpenErrorCode::kNoError;
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800296 return dex_file;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700297}
298
Andreas Gampe833a4852014-05-21 18:46:59 -0700299bool DexFile::OpenFromZip(const ZipArchive& zip_archive, const std::string& location,
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800300 std::string* error_msg,
301 std::vector<std::unique_ptr<const DexFile>>* dex_files) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700302 DCHECK(dex_files != nullptr) << "DexFile::OpenFromZip: out-param is nullptr";
Andreas Gampe833a4852014-05-21 18:46:59 -0700303 ZipOpenErrorCode error_code;
304 std::unique_ptr<const DexFile> dex_file(Open(zip_archive, kClassesDex, location, error_msg,
305 &error_code));
306 if (dex_file.get() == nullptr) {
307 return false;
308 } else {
309 // Had at least classes.dex.
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800310 dex_files->push_back(std::move(dex_file));
Andreas Gampe833a4852014-05-21 18:46:59 -0700311
312 // Now try some more.
313 size_t i = 2;
314
315 // We could try to avoid std::string allocations by working on a char array directly. As we
316 // do not expect a lot of iterations, this seems too involved and brittle.
317
318 while (i < 100) {
319 std::string name = StringPrintf("classes%zu.dex", i);
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100320 std::string fake_location = location + kMultiDexSeparator + name;
Andreas Gampe833a4852014-05-21 18:46:59 -0700321 std::unique_ptr<const DexFile> next_dex_file(Open(zip_archive, name.c_str(), fake_location,
322 error_msg, &error_code));
323 if (next_dex_file.get() == nullptr) {
324 if (error_code != ZipOpenErrorCode::kEntryNotFound) {
325 LOG(WARNING) << error_msg;
326 }
327 break;
328 } else {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800329 dex_files->push_back(std::move(next_dex_file));
Andreas Gampe833a4852014-05-21 18:46:59 -0700330 }
331
332 i++;
333 }
334
335 return true;
336 }
337}
338
339
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800340std::unique_ptr<const DexFile> DexFile::OpenMemory(const uint8_t* base,
341 size_t size,
342 const std::string& location,
343 uint32_t location_checksum,
Andreas Gampefd9eb392014-11-06 16:52:58 -0800344 MemMap* mem_map,
Richard Uhler07b3c232015-03-31 15:57:54 -0700345 const OatDexFile* oat_dex_file,
Andreas Gampefd9eb392014-11-06 16:52:58 -0800346 std::string* error_msg) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700347 CHECK_ALIGNED(base, 4); // various dex file structures must be word aligned
Andreas Gampefd9eb392014-11-06 16:52:58 -0800348 std::unique_ptr<DexFile> dex_file(
Richard Uhler07b3c232015-03-31 15:57:54 -0700349 new DexFile(base, size, location, location_checksum, mem_map, oat_dex_file));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700350 if (!dex_file->Init(error_msg)) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800351 dex_file.reset();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700352 }
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800353 return std::unique_ptr<const DexFile>(dex_file.release());
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700354}
355
Ian Rogers13735952014-10-08 12:43:28 -0700356DexFile::DexFile(const uint8_t* base, size_t size,
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800357 const std::string& location,
358 uint32_t location_checksum,
Andreas Gampefd9eb392014-11-06 16:52:58 -0800359 MemMap* mem_map,
Richard Uhler07b3c232015-03-31 15:57:54 -0700360 const OatDexFile* oat_dex_file)
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800361 : begin_(base),
362 size_(size),
363 location_(location),
364 location_checksum_(location_checksum),
365 mem_map_(mem_map),
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800366 header_(reinterpret_cast<const Header*>(base)),
367 string_ids_(reinterpret_cast<const StringId*>(base + header_->string_ids_off_)),
368 type_ids_(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)),
369 field_ids_(reinterpret_cast<const FieldId*>(base + header_->field_ids_off_)),
370 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)),
371 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
Ian Rogers68b56852014-08-29 20:19:11 -0700372 class_defs_(reinterpret_cast<const ClassDef*>(base + header_->class_defs_off_)),
373 find_class_def_misses_(0),
Andreas Gampefd9eb392014-11-06 16:52:58 -0800374 class_def_index_(nullptr),
Richard Uhler07b3c232015-03-31 15:57:54 -0700375 oat_dex_file_(oat_dex_file) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700376 CHECK(begin_ != nullptr) << GetLocation();
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800377 CHECK_GT(size_, 0U) << GetLocation();
378}
379
Jesse Wilson6bf19152011-09-29 13:12:33 -0400380DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700381 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
382 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
383 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
384 // the global reference table is otherwise empty!
Ian Rogers68b56852014-08-29 20:19:11 -0700385 // Remove the index if one were created.
386 delete class_def_index_.LoadRelaxed();
Jesse Wilson6bf19152011-09-29 13:12:33 -0400387}
388
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700389bool DexFile::Init(std::string* error_msg) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700390 if (!CheckMagicAndVersion(error_msg)) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700391 return false;
392 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700393 return true;
394}
395
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700396bool DexFile::CheckMagicAndVersion(std::string* error_msg) const {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800397 if (!IsMagicValid(header_->magic_)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700398 std::ostringstream oss;
399 oss << "Unrecognized magic number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800400 << " " << header_->magic_[0]
401 << " " << header_->magic_[1]
402 << " " << header_->magic_[2]
403 << " " << header_->magic_[3];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700404 *error_msg = oss.str();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700405 return false;
406 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800407 if (!IsVersionValid(header_->magic_)) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700408 std::ostringstream oss;
409 oss << "Unrecognized version number in " << GetLocation() << ":"
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800410 << " " << header_->magic_[4]
411 << " " << header_->magic_[5]
412 << " " << header_->magic_[6]
413 << " " << header_->magic_[7];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700414 *error_msg = oss.str();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700415 return false;
416 }
417 return true;
418}
419
Ian Rogers13735952014-10-08 12:43:28 -0700420bool DexFile::IsMagicValid(const uint8_t* magic) {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800421 return (memcmp(magic, kDexMagic, sizeof(kDexMagic)) == 0);
422}
423
Ian Rogers13735952014-10-08 12:43:28 -0700424bool DexFile::IsVersionValid(const uint8_t* magic) {
425 const uint8_t* version = &magic[sizeof(kDexMagic)];
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800426 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0);
427}
428
Ian Rogersd81871c2011-10-03 13:57:23 -0700429uint32_t DexFile::GetVersion() const {
430 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
431 return atoi(version);
432}
433
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800434const DexFile::ClassDef* DexFile::FindClassDef(const char* descriptor, size_t hash) const {
435 DCHECK_EQ(ComputeModifiedUtf8Hash(descriptor), hash);
Ian Rogers68b56852014-08-29 20:19:11 -0700436 // If we have an index lookup the descriptor via that as its constant time to search.
437 Index* index = class_def_index_.LoadSequentiallyConsistent();
438 if (index != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800439 auto it = index->FindWithHash(descriptor, hash);
Ian Rogers68b56852014-08-29 20:19:11 -0700440 return (it == index->end()) ? nullptr : it->second;
441 }
442 // Fast path for rate no class defs case.
443 uint32_t num_class_defs = NumClassDefs();
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700444 if (num_class_defs == 0) {
Ian Rogers68b56852014-08-29 20:19:11 -0700445 return nullptr;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700446 }
Ian Rogers68b56852014-08-29 20:19:11 -0700447 // Search for class def with 2 binary searches and then a linear search.
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700448 const StringId* string_id = FindStringId(descriptor);
Ian Rogers68b56852014-08-29 20:19:11 -0700449 if (string_id != nullptr) {
450 const TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
451 if (type_id != nullptr) {
452 uint16_t type_idx = GetIndexForTypeId(*type_id);
453 for (size_t i = 0; i < num_class_defs; ++i) {
454 const ClassDef& class_def = GetClassDef(i);
455 if (class_def.class_idx_ == type_idx) {
456 return &class_def;
457 }
458 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700459 }
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700460 }
Ian Rogers68b56852014-08-29 20:19:11 -0700461 // A miss. If we've had kMaxFailedDexClassDefLookups misses then build an index to speed things
462 // up. This isn't done eagerly at construction as construction is not performed in multi-threaded
463 // sections of tools like dex2oat. If we're lazy we hopefully increase the chance of balancing
464 // out which thread builds the index.
Ian Rogers68b56852014-08-29 20:19:11 -0700465 const uint32_t kMaxFailedDexClassDefLookups = 100;
Ian Rogersecaebd32014-09-12 23:10:21 -0700466 uint32_t old_misses = find_class_def_misses_.FetchAndAddSequentiallyConsistent(1);
467 if (old_misses == kMaxFailedDexClassDefLookups) {
468 // Are we the ones moving the miss count past the max? Sanity check the index doesn't exist.
469 CHECK(class_def_index_.LoadSequentiallyConsistent() == nullptr);
470 // Build the index.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800471 index = new Index();
Ian Rogersecaebd32014-09-12 23:10:21 -0700472 for (uint32_t i = 0; i < num_class_defs; ++i) {
473 const ClassDef& class_def = GetClassDef(i);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800474 const char* class_descriptor = GetClassDescriptor(class_def);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -0800475 index->Insert(std::make_pair(class_descriptor, &class_def));
Ian Rogers68b56852014-08-29 20:19:11 -0700476 }
Ian Rogersecaebd32014-09-12 23:10:21 -0700477 // Sanity check the index still doesn't exist, only 1 thread should build it.
478 CHECK(class_def_index_.LoadSequentiallyConsistent() == nullptr);
479 class_def_index_.StoreSequentiallyConsistent(index);
Ian Rogers68b56852014-08-29 20:19:11 -0700480 }
481 return nullptr;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700482}
483
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700484const DexFile::ClassDef* DexFile::FindClassDef(uint16_t type_idx) const {
485 size_t num_class_defs = NumClassDefs();
486 for (size_t i = 0; i < num_class_defs; ++i) {
487 const ClassDef& class_def = GetClassDef(i);
488 if (class_def.class_idx_ == type_idx) {
489 return &class_def;
490 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700491 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700492 return nullptr;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700493}
494
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800495const DexFile::FieldId* DexFile::FindFieldId(const DexFile::TypeId& declaring_klass,
496 const DexFile::StringId& name,
497 const DexFile::TypeId& type) const {
498 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
499 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
500 const uint32_t name_idx = GetIndexForStringId(name);
501 const uint16_t type_idx = GetIndexForTypeId(type);
Ian Rogersf8582c32013-05-29 16:33:03 -0700502 int32_t lo = 0;
503 int32_t hi = NumFieldIds() - 1;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800504 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700505 int32_t mid = (hi + lo) / 2;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800506 const DexFile::FieldId& field = GetFieldId(mid);
507 if (class_idx > field.class_idx_) {
508 lo = mid + 1;
509 } else if (class_idx < field.class_idx_) {
510 hi = mid - 1;
511 } else {
512 if (name_idx > field.name_idx_) {
513 lo = mid + 1;
514 } else if (name_idx < field.name_idx_) {
515 hi = mid - 1;
516 } else {
517 if (type_idx > field.type_idx_) {
518 lo = mid + 1;
519 } else if (type_idx < field.type_idx_) {
520 hi = mid - 1;
521 } else {
522 return &field;
523 }
524 }
525 }
526 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700527 return nullptr;
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800528}
529
530const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass,
Ian Rogers0571d352011-11-03 19:51:38 -0700531 const DexFile::StringId& name,
532 const DexFile::ProtoId& signature) const {
533 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
Ian Rogers9b1a4f42011-11-14 18:35:10 -0800534 const uint16_t class_idx = GetIndexForTypeId(declaring_klass);
Ian Rogers0571d352011-11-03 19:51:38 -0700535 const uint32_t name_idx = GetIndexForStringId(name);
536 const uint16_t proto_idx = GetIndexForProtoId(signature);
Ian Rogersf8582c32013-05-29 16:33:03 -0700537 int32_t lo = 0;
538 int32_t hi = NumMethodIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700539 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700540 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700541 const DexFile::MethodId& method = GetMethodId(mid);
542 if (class_idx > method.class_idx_) {
543 lo = mid + 1;
544 } else if (class_idx < method.class_idx_) {
545 hi = mid - 1;
546 } else {
547 if (name_idx > method.name_idx_) {
548 lo = mid + 1;
549 } else if (name_idx < method.name_idx_) {
550 hi = mid - 1;
551 } else {
552 if (proto_idx > method.proto_idx_) {
553 lo = mid + 1;
554 } else if (proto_idx < method.proto_idx_) {
555 hi = mid - 1;
556 } else {
557 return &method;
558 }
559 }
560 }
561 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700562 return nullptr;
Ian Rogers0571d352011-11-03 19:51:38 -0700563}
564
Ian Rogers637c65b2013-05-31 11:46:00 -0700565const DexFile::StringId* DexFile::FindStringId(const char* string) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700566 int32_t lo = 0;
567 int32_t hi = NumStringIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700568 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700569 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700570 const DexFile::StringId& str_id = GetStringId(mid);
Ian Rogerscf5077a2013-10-31 12:37:54 -0700571 const char* str = GetStringData(str_id);
Ian Rogers637c65b2013-05-31 11:46:00 -0700572 int compare = CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(string, str);
573 if (compare > 0) {
574 lo = mid + 1;
575 } else if (compare < 0) {
576 hi = mid - 1;
577 } else {
578 return &str_id;
579 }
580 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700581 return nullptr;
Ian Rogers637c65b2013-05-31 11:46:00 -0700582}
583
Vladimir Markoa48aef42014-12-03 17:53:53 +0000584const DexFile::StringId* DexFile::FindStringId(const uint16_t* string, size_t length) const {
Ian Rogers637c65b2013-05-31 11:46:00 -0700585 int32_t lo = 0;
586 int32_t hi = NumStringIds() - 1;
587 while (hi >= lo) {
588 int32_t mid = (hi + lo) / 2;
Ian Rogers637c65b2013-05-31 11:46:00 -0700589 const DexFile::StringId& str_id = GetStringId(mid);
Ian Rogerscf5077a2013-10-31 12:37:54 -0700590 const char* str = GetStringData(str_id);
Vladimir Markoa48aef42014-12-03 17:53:53 +0000591 int compare = CompareModifiedUtf8ToUtf16AsCodePointValues(str, string, length);
Ian Rogers0571d352011-11-03 19:51:38 -0700592 if (compare > 0) {
593 lo = mid + 1;
594 } else if (compare < 0) {
595 hi = mid - 1;
596 } else {
597 return &str_id;
598 }
599 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700600 return nullptr;
Ian Rogers0571d352011-11-03 19:51:38 -0700601}
602
603const DexFile::TypeId* DexFile::FindTypeId(uint32_t string_idx) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700604 int32_t lo = 0;
605 int32_t hi = NumTypeIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700606 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700607 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700608 const TypeId& type_id = GetTypeId(mid);
609 if (string_idx > type_id.descriptor_idx_) {
610 lo = mid + 1;
611 } else if (string_idx < type_id.descriptor_idx_) {
612 hi = mid - 1;
613 } else {
614 return &type_id;
615 }
616 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700617 return nullptr;
Ian Rogers0571d352011-11-03 19:51:38 -0700618}
619
620const DexFile::ProtoId* DexFile::FindProtoId(uint16_t return_type_idx,
Vladimir Marko5c96e6b2013-11-14 15:34:17 +0000621 const uint16_t* signature_type_idxs,
622 uint32_t signature_length) const {
Ian Rogersf8582c32013-05-29 16:33:03 -0700623 int32_t lo = 0;
624 int32_t hi = NumProtoIds() - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700625 while (hi >= lo) {
Ian Rogersf8582c32013-05-29 16:33:03 -0700626 int32_t mid = (hi + lo) / 2;
Ian Rogers0571d352011-11-03 19:51:38 -0700627 const DexFile::ProtoId& proto = GetProtoId(mid);
628 int compare = return_type_idx - proto.return_type_idx_;
629 if (compare == 0) {
630 DexFileParameterIterator it(*this, proto);
631 size_t i = 0;
Vladimir Marko5c96e6b2013-11-14 15:34:17 +0000632 while (it.HasNext() && i < signature_length && compare == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800633 compare = signature_type_idxs[i] - it.GetTypeIdx();
Ian Rogers0571d352011-11-03 19:51:38 -0700634 it.Next();
635 i++;
636 }
637 if (compare == 0) {
638 if (it.HasNext()) {
639 compare = -1;
Vladimir Marko5c96e6b2013-11-14 15:34:17 +0000640 } else if (i < signature_length) {
Ian Rogers0571d352011-11-03 19:51:38 -0700641 compare = 1;
642 }
643 }
644 }
645 if (compare > 0) {
646 lo = mid + 1;
647 } else if (compare < 0) {
648 hi = mid - 1;
649 } else {
650 return &proto;
651 }
652 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700653 return nullptr;
Ian Rogers0571d352011-11-03 19:51:38 -0700654}
655
656// Given a signature place the type ids into the given vector
Ian Rogersd91d6d62013-09-25 20:26:14 -0700657bool DexFile::CreateTypeList(const StringPiece& signature, uint16_t* return_type_idx,
658 std::vector<uint16_t>* param_type_idxs) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700659 if (signature[0] != '(') {
660 return false;
661 }
662 size_t offset = 1;
663 size_t end = signature.size();
664 bool process_return = false;
665 while (offset < end) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000666 size_t start_offset = offset;
Ian Rogers0571d352011-11-03 19:51:38 -0700667 char c = signature[offset];
668 offset++;
669 if (c == ')') {
670 process_return = true;
671 continue;
672 }
Ian Rogers0571d352011-11-03 19:51:38 -0700673 while (c == '[') { // process array prefix
674 if (offset >= end) { // expect some descriptor following [
675 return false;
676 }
677 c = signature[offset];
678 offset++;
Ian Rogers0571d352011-11-03 19:51:38 -0700679 }
680 if (c == 'L') { // process type descriptors
681 do {
682 if (offset >= end) { // unexpected early termination of descriptor
683 return false;
684 }
685 c = signature[offset];
686 offset++;
Ian Rogers0571d352011-11-03 19:51:38 -0700687 } while (c != ';');
688 }
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000689 // TODO: avoid creating a std::string just to get a 0-terminated char array
690 std::string descriptor(signature.data() + start_offset, offset - start_offset);
Ian Rogers637c65b2013-05-31 11:46:00 -0700691 const DexFile::StringId* string_id = FindStringId(descriptor.c_str());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700692 if (string_id == nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -0700693 return false;
694 }
695 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id));
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700696 if (type_id == nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -0700697 return false;
698 }
699 uint16_t type_idx = GetIndexForTypeId(*type_id);
700 if (!process_return) {
701 param_type_idxs->push_back(type_idx);
702 } else {
703 *return_type_idx = type_idx;
704 return offset == end; // return true if the signature had reached a sensible end
705 }
706 }
707 return false; // failed to correctly parse return type
708}
709
Ian Rogersd91d6d62013-09-25 20:26:14 -0700710const Signature DexFile::CreateSignature(const StringPiece& signature) const {
711 uint16_t return_type_idx;
712 std::vector<uint16_t> param_type_indices;
713 bool success = CreateTypeList(signature, &return_type_idx, &param_type_indices);
714 if (!success) {
715 return Signature::NoSignature();
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700716 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700717 const ProtoId* proto_id = FindProtoId(return_type_idx, param_type_indices);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700718 if (proto_id == nullptr) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700719 return Signature::NoSignature();
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700720 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700721 return Signature(this, *proto_id);
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700722}
723
Ian Rogersef7d42f2014-01-06 12:55:46 -0800724int32_t DexFile::GetLineNumFromPC(mirror::ArtMethod* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700725 // For native method, lineno should be -2 to indicate it is native. Note that
726 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700727 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700728 return -2;
729 }
730
TDYa127c8dc1012012-04-19 07:03:33 -0700731 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700732 DCHECK(code_item != nullptr) << PrettyMethod(method) << " " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700733
734 // A method with no line number info should return -1
735 LineNumFromPcContext context(rel_pc, -1);
TDYa127c8dc1012012-04-19 07:03:33 -0700736 DecodeDebugInfo(code_item, method->IsStatic(), method->GetDexMethodIndex(), LineNumForPcCb,
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700737 nullptr, &context);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700738 return context.line_num_;
739}
740
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700741int32_t DexFile::FindTryItem(const CodeItem &code_item, uint32_t address) {
Ian Rogers0571d352011-11-03 19:51:38 -0700742 // Note: Signed type is important for max and min.
743 int32_t min = 0;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700744 int32_t max = code_item.tries_size_ - 1;
Ian Rogers0571d352011-11-03 19:51:38 -0700745
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700746 while (min <= max) {
747 int32_t mid = min + ((max - min) / 2);
748
749 const art::DexFile::TryItem* ti = GetTryItems(code_item, mid);
750 uint32_t start = ti->start_addr_;
751 uint32_t end = start + ti->insn_count_;
752
Ian Rogers0571d352011-11-03 19:51:38 -0700753 if (address < start) {
754 max = mid - 1;
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700755 } else if (address >= end) {
756 min = mid + 1;
757 } else { // We have a winner!
758 return mid;
Ian Rogers0571d352011-11-03 19:51:38 -0700759 }
760 }
761 // No match.
762 return -1;
763}
764
Ian Rogersdbbc99d2013-04-18 16:51:54 -0700765int32_t DexFile::FindCatchHandlerOffset(const CodeItem &code_item, uint32_t address) {
766 int32_t try_item = FindTryItem(code_item, address);
767 if (try_item == -1) {
768 return -1;
769 } else {
770 return DexFile::GetTryItems(code_item, try_item)->handler_off_;
771 }
772}
773
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800774void DexFile::DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800775 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700776 void* context, const uint8_t* stream, LocalInfo* local_in_reg)
777 const {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700778 uint32_t line = DecodeUnsignedLeb128(&stream);
779 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
780 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
781 uint32_t address = 0;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700782 bool need_locals = (local_cb != nullptr);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700783
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800784 if (!is_static) {
Elliott Hughes30646832011-10-13 16:59:46 -0700785 if (need_locals) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800786 const char* descriptor = GetMethodDeclaringClassDescriptor(GetMethodId(method_idx));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700787 local_in_reg[arg_reg].name_ = "this";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800788 local_in_reg[arg_reg].descriptor_ = descriptor;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700789 local_in_reg[arg_reg].signature_ = nullptr;
Elliott Hughes30646832011-10-13 16:59:46 -0700790 local_in_reg[arg_reg].start_address_ = 0;
791 local_in_reg[arg_reg].is_live_ = true;
792 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700793 arg_reg++;
794 }
795
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800796 DexFileParameterIterator it(*this, GetMethodPrototype(GetMethodId(method_idx)));
Ian Rogers0571d352011-11-03 19:51:38 -0700797 for (uint32_t i = 0; i < parameters_size && it.HasNext(); ++i, it.Next()) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700798 if (arg_reg >= code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700799 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800800 << " >= " << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700801 return;
802 }
Elliott Hughes392b1242011-11-30 13:55:50 -0800803 uint32_t id = DecodeUnsignedLeb128P1(&stream);
Ian Rogers0571d352011-11-03 19:51:38 -0700804 const char* descriptor = it.GetDescriptor();
Elliott Hughes392b1242011-11-30 13:55:50 -0800805 if (need_locals && id != kDexNoIndex) {
Ian Rogers0571d352011-11-03 19:51:38 -0700806 const char* name = StringDataByIdx(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700807 local_in_reg[arg_reg].name_ = name;
808 local_in_reg[arg_reg].descriptor_ = descriptor;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700809 local_in_reg[arg_reg].signature_ = nullptr;
Elliott Hughes30646832011-10-13 16:59:46 -0700810 local_in_reg[arg_reg].start_address_ = address;
811 local_in_reg[arg_reg].is_live_ = true;
812 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700813 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700814 case 'D':
815 case 'J':
816 arg_reg += 2;
817 break;
818 default:
819 arg_reg += 1;
820 break;
821 }
822 }
823
Ian Rogers0571d352011-11-03 19:51:38 -0700824 if (it.HasNext()) {
Brian Carlstromf79fccb2014-02-20 08:55:10 -0800825 LOG(ERROR) << "invalid stream - problem with parameter iterator in " << GetLocation()
826 << " for method " << PrettyMethod(method_idx, *this);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700827 return;
828 }
829
830 for (;;) {
831 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700832 uint16_t reg;
Jeff Haob7cefc72013-11-14 14:51:09 -0800833 uint32_t name_idx;
834 uint32_t descriptor_idx;
835 uint32_t signature_idx = 0;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700836
Shih-wei Liao195487c2011-08-20 13:29:04 -0700837 switch (opcode) {
838 case DBG_END_SEQUENCE:
839 return;
840
841 case DBG_ADVANCE_PC:
842 address += DecodeUnsignedLeb128(&stream);
843 break;
844
845 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700846 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700847 break;
848
849 case DBG_START_LOCAL:
850 case DBG_START_LOCAL_EXTENDED:
851 reg = DecodeUnsignedLeb128(&stream);
852 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700853 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800854 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700855 return;
856 }
857
jeffhaof8728872011-10-28 19:11:13 -0700858 name_idx = DecodeUnsignedLeb128P1(&stream);
859 descriptor_idx = DecodeUnsignedLeb128P1(&stream);
860 if (opcode == DBG_START_LOCAL_EXTENDED) {
861 signature_idx = DecodeUnsignedLeb128P1(&stream);
862 }
863
Shih-wei Liao195487c2011-08-20 13:29:04 -0700864 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700865 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800866 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700867
Ian Rogers0571d352011-11-03 19:51:38 -0700868 local_in_reg[reg].name_ = StringDataByIdx(name_idx);
869 local_in_reg[reg].descriptor_ = StringByTypeIdx(descriptor_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700870 if (opcode == DBG_START_LOCAL_EXTENDED) {
Ian Rogers0571d352011-11-03 19:51:38 -0700871 local_in_reg[reg].signature_ = StringDataByIdx(signature_idx);
Elliott Hughes30646832011-10-13 16:59:46 -0700872 }
873 local_in_reg[reg].start_address_ = address;
874 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700875 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700876 break;
877
878 case DBG_END_LOCAL:
879 reg = DecodeUnsignedLeb128(&stream);
880 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700881 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800882 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700883 return;
884 }
885
Elliott Hughes30646832011-10-13 16:59:46 -0700886 if (need_locals) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800887 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb);
Elliott Hughes30646832011-10-13 16:59:46 -0700888 local_in_reg[reg].is_live_ = false;
889 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700890 break;
891
892 case DBG_RESTART_LOCAL:
893 reg = DecodeUnsignedLeb128(&stream);
894 if (reg > code_item->registers_size_) {
jeffhaof8728872011-10-28 19:11:13 -0700895 LOG(ERROR) << "invalid stream - reg > reg size (" << reg << " > "
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800896 << code_item->registers_size_ << ") in " << GetLocation();
Shih-wei Liao195487c2011-08-20 13:29:04 -0700897 return;
898 }
899
Elliott Hughes30646832011-10-13 16:59:46 -0700900 if (need_locals) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700901 if (local_in_reg[reg].name_ == nullptr || local_in_reg[reg].descriptor_ == nullptr) {
Brian Carlstrom2aab9472011-12-12 15:21:43 -0800902 LOG(ERROR) << "invalid stream - no name or descriptor in " << GetLocation();
Elliott Hughes30646832011-10-13 16:59:46 -0700903 return;
904 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700905
Elliott Hughes30646832011-10-13 16:59:46 -0700906 // If the register is live, the "restart" is superfluous,
907 // and we don't want to mess with the existing start address.
908 if (!local_in_reg[reg].is_live_) {
909 local_in_reg[reg].start_address_ = address;
910 local_in_reg[reg].is_live_ = true;
911 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700912 }
913 break;
914
915 case DBG_SET_PROLOGUE_END:
916 case DBG_SET_EPILOGUE_BEGIN:
917 case DBG_SET_FILE:
918 break;
919
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700920 default: {
921 int adjopcode = opcode - DBG_FIRST_SPECIAL;
922
Shih-wei Liao195487c2011-08-20 13:29:04 -0700923 address += adjopcode / DBG_LINE_RANGE;
924 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
925
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700926 if (position_cb != nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800927 if (position_cb(context, address, line)) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700928 // early exit
929 return;
930 }
931 }
932 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700933 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700934 }
935 }
936}
937
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800938void DexFile::DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
Elliott Hughes2435a572012-02-17 16:07:41 -0800939 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
940 void* context) const {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +0100941 DCHECK(code_item != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700942 const uint8_t* stream = GetDebugInfoStream(code_item);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700943 std::unique_ptr<LocalInfo[]> local_in_reg(local_cb != nullptr ?
Brian Carlstrome0948e12013-08-29 09:36:15 -0700944 new LocalInfo[code_item->registers_size_] :
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700945 nullptr);
946 if (stream != nullptr) {
947 DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream,
948 &local_in_reg[0]);
Ian Rogers0571d352011-11-03 19:51:38 -0700949 }
950 for (int reg = 0; reg < code_item->registers_size_; reg++) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700951 InvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0],
952 local_cb);
Ian Rogers0571d352011-11-03 19:51:38 -0700953 }
954}
955
Elliott Hughes2435a572012-02-17 16:07:41 -0800956bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) {
957 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context);
Ian Rogers0571d352011-11-03 19:51:38 -0700958
959 // We know that this callback will be called in
960 // ascending address order, so keep going until we find
961 // a match or we've just gone past it.
962 if (address > context->address_) {
963 // The line number from the previous positions callback
964 // wil be the final result.
965 return true;
966 } else {
967 context->line_num_ = line_num;
968 return address == context->address_;
969 }
970}
971
Andreas Gampe833a4852014-05-21 18:46:59 -0700972bool DexFile::IsMultiDexLocation(const char* location) {
973 return strrchr(location, kMultiDexSeparator) != nullptr;
974}
975
Calin Juravle4e1d5792014-07-15 23:56:47 +0100976std::string DexFile::GetMultiDexClassesDexName(size_t number, const char* dex_location) {
977 if (number == 0) {
978 return dex_location;
979 } else {
980 return StringPrintf("%s" kMultiDexSeparatorString "classes%zu.dex", dex_location, number + 1);
981 }
982}
983
984std::string DexFile::GetDexCanonicalLocation(const char* dex_location) {
985 CHECK_NE(dex_location, static_cast<const char*>(nullptr));
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100986 std::string base_location = GetBaseLocation(dex_location);
987 const char* suffix = dex_location + base_location.size();
988 DCHECK(suffix[0] == 0 || suffix[0] == kMultiDexSeparator);
989 UniqueCPtr<const char[]> path(realpath(base_location.c_str(), nullptr));
990 if (path != nullptr && path.get() != base_location) {
991 return std::string(path.get()) + suffix;
992 } else if (suffix[0] == 0) {
993 return base_location;
Calin Juravle4e1d5792014-07-15 23:56:47 +0100994 } else {
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100995 return dex_location;
Calin Juravle4e1d5792014-07-15 23:56:47 +0100996 }
Calin Juravle4e1d5792014-07-15 23:56:47 +0100997}
998
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800999std::ostream& operator<<(std::ostream& os, const DexFile& dex_file) {
1000 os << StringPrintf("[DexFile: %s dex-checksum=%08x location-checksum=%08x %p-%p]",
1001 dex_file.GetLocation().c_str(),
1002 dex_file.GetHeader().checksum_, dex_file.GetLocationChecksum(),
1003 dex_file.Begin(), dex_file.Begin() + dex_file.Size());
1004 return os;
1005}
Calin Juravle4e1d5792014-07-15 23:56:47 +01001006
Ian Rogersd91d6d62013-09-25 20:26:14 -07001007std::string Signature::ToString() const {
1008 if (dex_file_ == nullptr) {
1009 CHECK(proto_id_ == nullptr);
1010 return "<no signature>";
1011 }
1012 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
1013 std::string result;
1014 if (params == nullptr) {
1015 result += "()";
1016 } else {
1017 result += "(";
1018 for (uint32_t i = 0; i < params->Size(); ++i) {
1019 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_);
1020 }
1021 result += ")";
1022 }
1023 result += dex_file_->StringByTypeIdx(proto_id_->return_type_idx_);
1024 return result;
1025}
1026
Vladimir Markod9cffea2013-11-25 15:08:02 +00001027bool Signature::operator==(const StringPiece& rhs) const {
1028 if (dex_file_ == nullptr) {
1029 return false;
1030 }
1031 StringPiece tail(rhs);
1032 if (!tail.starts_with("(")) {
1033 return false; // Invalid signature
1034 }
1035 tail.remove_prefix(1); // "(";
1036 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
1037 if (params != nullptr) {
1038 for (uint32_t i = 0; i < params->Size(); ++i) {
1039 StringPiece param(dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_));
1040 if (!tail.starts_with(param)) {
1041 return false;
1042 }
1043 tail.remove_prefix(param.length());
1044 }
1045 }
1046 if (!tail.starts_with(")")) {
1047 return false;
1048 }
1049 tail.remove_prefix(1); // ")";
1050 return tail == dex_file_->StringByTypeIdx(proto_id_->return_type_idx_);
1051}
1052
Ian Rogersd91d6d62013-09-25 20:26:14 -07001053std::ostream& operator<<(std::ostream& os, const Signature& sig) {
1054 return os << sig.ToString();
1055}
1056
Ian Rogers0571d352011-11-03 19:51:38 -07001057// Decodes the header section from the class data bytes.
1058void ClassDataItemIterator::ReadClassDataHeader() {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001059 CHECK(ptr_pos_ != nullptr);
Ian Rogers0571d352011-11-03 19:51:38 -07001060 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1061 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1062 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1063 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1064}
1065
1066void ClassDataItemIterator::ReadClassDataField() {
1067 field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
1068 field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -07001069 if (last_idx_ != 0 && field_.field_idx_delta_ == 0) {
Andreas Gampe4fdbba02014-06-19 20:24:22 -07001070 LOG(WARNING) << "Duplicate field in " << dex_file_.GetLocation();
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -07001071 }
Ian Rogers0571d352011-11-03 19:51:38 -07001072}
1073
1074void ClassDataItemIterator::ReadClassDataMethod() {
1075 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
1076 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
1077 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
Brian Carlstrom68adbe42012-05-11 17:18:08 -07001078 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
Andreas Gampe4fdbba02014-06-19 20:24:22 -07001079 LOG(WARNING) << "Duplicate method in " << dex_file_.GetLocation();
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -07001080 }
Ian Rogers0571d352011-11-03 19:51:38 -07001081}
1082
1083// Read a signed integer. "zwidth" is the zero-based byte count.
Ian Rogers13735952014-10-08 12:43:28 -07001084static int32_t ReadSignedInt(const uint8_t* ptr, int zwidth) {
Ian Rogers0571d352011-11-03 19:51:38 -07001085 int32_t val = 0;
1086 for (int i = zwidth; i >= 0; --i) {
1087 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
1088 }
1089 val >>= (3 - zwidth) * 8;
1090 return val;
1091}
1092
1093// Read an unsigned integer. "zwidth" is the zero-based byte count,
1094// "fill_on_right" indicates which side we want to zero-fill from.
Ian Rogers13735952014-10-08 12:43:28 -07001095static uint32_t ReadUnsignedInt(const uint8_t* ptr, int zwidth, bool fill_on_right) {
Ian Rogers0571d352011-11-03 19:51:38 -07001096 uint32_t val = 0;
1097 if (!fill_on_right) {
1098 for (int i = zwidth; i >= 0; --i) {
1099 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
1100 }
1101 val >>= (3 - zwidth) * 8;
1102 } else {
1103 for (int i = zwidth; i >= 0; --i) {
1104 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
1105 }
1106 }
1107 return val;
1108}
1109
1110// Read a signed long. "zwidth" is the zero-based byte count.
Ian Rogers13735952014-10-08 12:43:28 -07001111static int64_t ReadSignedLong(const uint8_t* ptr, int zwidth) {
Ian Rogers0571d352011-11-03 19:51:38 -07001112 int64_t val = 0;
1113 for (int i = zwidth; i >= 0; --i) {
1114 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
1115 }
1116 val >>= (7 - zwidth) * 8;
1117 return val;
1118}
1119
1120// Read an unsigned long. "zwidth" is the zero-based byte count,
1121// "fill_on_right" indicates which side we want to zero-fill from.
Ian Rogers13735952014-10-08 12:43:28 -07001122static uint64_t ReadUnsignedLong(const uint8_t* ptr, int zwidth, bool fill_on_right) {
Ian Rogers0571d352011-11-03 19:51:38 -07001123 uint64_t val = 0;
1124 if (!fill_on_right) {
1125 for (int i = zwidth; i >= 0; --i) {
1126 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
1127 }
1128 val >>= (7 - zwidth) * 8;
1129 } else {
1130 for (int i = zwidth; i >= 0; --i) {
1131 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
1132 }
1133 }
1134 return val;
1135}
1136
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001137EncodedStaticFieldValueIterator::EncodedStaticFieldValueIterator(
1138 const DexFile& dex_file, Handle<mirror::DexCache>* dex_cache,
1139 Handle<mirror::ClassLoader>* class_loader, ClassLinker* linker,
1140 const DexFile::ClassDef& class_def)
Brian Carlstrom88f36542012-10-16 23:24:21 -07001141 : dex_file_(dex_file), dex_cache_(dex_cache), class_loader_(class_loader), linker_(linker),
1142 array_size_(), pos_(-1), type_(kByte) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001143 DCHECK(dex_cache != nullptr);
1144 DCHECK(class_loader != nullptr);
Ian Rogers0571d352011-11-03 19:51:38 -07001145 ptr_ = dex_file.GetEncodedStaticFieldValuesArray(class_def);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001146 if (ptr_ == nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -07001147 array_size_ = 0;
1148 } else {
1149 array_size_ = DecodeUnsignedLeb128(&ptr_);
1150 }
1151 if (array_size_ > 0) {
1152 Next();
1153 }
1154}
1155
1156void EncodedStaticFieldValueIterator::Next() {
1157 pos_++;
1158 if (pos_ >= array_size_) {
1159 return;
1160 }
Ian Rogers13735952014-10-08 12:43:28 -07001161 uint8_t value_type = *ptr_++;
1162 uint8_t value_arg = value_type >> kEncodedValueArgShift;
Ian Rogers0571d352011-11-03 19:51:38 -07001163 size_t width = value_arg + 1; // assume and correct later
Brian Carlstrom88f36542012-10-16 23:24:21 -07001164 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
Ian Rogers0571d352011-11-03 19:51:38 -07001165 switch (type_) {
1166 case kBoolean:
1167 jval_.i = (value_arg != 0) ? 1 : 0;
1168 width = 0;
1169 break;
1170 case kByte:
1171 jval_.i = ReadSignedInt(ptr_, value_arg);
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08001172 CHECK(IsInt<8>(jval_.i));
Ian Rogers0571d352011-11-03 19:51:38 -07001173 break;
1174 case kShort:
1175 jval_.i = ReadSignedInt(ptr_, value_arg);
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08001176 CHECK(IsInt<16>(jval_.i));
Ian Rogers0571d352011-11-03 19:51:38 -07001177 break;
1178 case kChar:
1179 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08001180 CHECK(IsUint<16>(jval_.i));
Ian Rogers0571d352011-11-03 19:51:38 -07001181 break;
1182 case kInt:
1183 jval_.i = ReadSignedInt(ptr_, value_arg);
1184 break;
1185 case kLong:
1186 jval_.j = ReadSignedLong(ptr_, value_arg);
1187 break;
1188 case kFloat:
1189 jval_.i = ReadUnsignedInt(ptr_, value_arg, true);
1190 break;
1191 case kDouble:
1192 jval_.j = ReadUnsignedLong(ptr_, value_arg, true);
1193 break;
1194 case kString:
1195 case kType:
Ian Rogers0571d352011-11-03 19:51:38 -07001196 jval_.i = ReadUnsignedInt(ptr_, value_arg, false);
1197 break;
1198 case kField:
Brian Carlstrom88f36542012-10-16 23:24:21 -07001199 case kMethod:
1200 case kEnum:
Ian Rogers0571d352011-11-03 19:51:38 -07001201 case kArray:
1202 case kAnnotation:
1203 UNIMPLEMENTED(FATAL) << ": type " << type_;
Ian Rogers2c4257b2014-10-24 14:20:06 -07001204 UNREACHABLE();
Ian Rogers0571d352011-11-03 19:51:38 -07001205 case kNull:
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001206 jval_.l = nullptr;
Ian Rogers0571d352011-11-03 19:51:38 -07001207 width = 0;
1208 break;
1209 default:
1210 LOG(FATAL) << "Unreached";
Ian Rogers2c4257b2014-10-24 14:20:06 -07001211 UNREACHABLE();
Ian Rogers0571d352011-11-03 19:51:38 -07001212 }
1213 ptr_ += width;
1214}
1215
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001216template<bool kTransactionActive>
Mathieu Chartierc7853442015-03-27 14:35:38 -07001217void EncodedStaticFieldValueIterator::ReadValueToField(ArtField* field) const {
Ian Rogers0571d352011-11-03 19:51:38 -07001218 switch (type_) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001219 case kBoolean: field->SetBoolean<kTransactionActive>(field->GetDeclaringClass(), jval_.z);
1220 break;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001221 case kByte: field->SetByte<kTransactionActive>(field->GetDeclaringClass(), jval_.b); break;
1222 case kShort: field->SetShort<kTransactionActive>(field->GetDeclaringClass(), jval_.s); break;
1223 case kChar: field->SetChar<kTransactionActive>(field->GetDeclaringClass(), jval_.c); break;
1224 case kInt: field->SetInt<kTransactionActive>(field->GetDeclaringClass(), jval_.i); break;
1225 case kLong: field->SetLong<kTransactionActive>(field->GetDeclaringClass(), jval_.j); break;
1226 case kFloat: field->SetFloat<kTransactionActive>(field->GetDeclaringClass(), jval_.f); break;
1227 case kDouble: field->SetDouble<kTransactionActive>(field->GetDeclaringClass(), jval_.d); break;
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001228 case kNull: field->SetObject<kTransactionActive>(field->GetDeclaringClass(), nullptr); break;
Ian Rogers0571d352011-11-03 19:51:38 -07001229 case kString: {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001230 mirror::String* resolved = linker_->ResolveString(dex_file_, jval_.i, *dex_cache_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001231 field->SetObject<kTransactionActive>(field->GetDeclaringClass(), resolved);
Ian Rogers0571d352011-11-03 19:51:38 -07001232 break;
1233 }
Brian Carlstrom88f36542012-10-16 23:24:21 -07001234 case kType: {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001235 mirror::Class* resolved = linker_->ResolveType(dex_file_, jval_.i, *dex_cache_,
1236 *class_loader_);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001237 field->SetObject<kTransactionActive>(field->GetDeclaringClass(), resolved);
Brian Carlstrom88f36542012-10-16 23:24:21 -07001238 break;
1239 }
Ian Rogers0571d352011-11-03 19:51:38 -07001240 default: UNIMPLEMENTED(FATAL) << ": type " << type_;
1241 }
1242}
Mathieu Chartierc7853442015-03-27 14:35:38 -07001243template void EncodedStaticFieldValueIterator::ReadValueToField<true>(ArtField* field) const;
1244template void EncodedStaticFieldValueIterator::ReadValueToField<false>(ArtField* field) const;
Ian Rogers0571d352011-11-03 19:51:38 -07001245
1246CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item, uint32_t address) {
1247 handler_.address_ = -1;
1248 int32_t offset = -1;
1249
1250 // Short-circuit the overwhelmingly common cases.
1251 switch (code_item.tries_size_) {
1252 case 0:
1253 break;
1254 case 1: {
1255 const DexFile::TryItem* tries = DexFile::GetTryItems(code_item, 0);
1256 uint32_t start = tries->start_addr_;
1257 if (address >= start) {
1258 uint32_t end = start + tries->insn_count_;
1259 if (address < end) {
1260 offset = tries->handler_off_;
1261 }
1262 }
1263 break;
1264 }
1265 default:
Ian Rogersdbbc99d2013-04-18 16:51:54 -07001266 offset = DexFile::FindCatchHandlerOffset(code_item, address);
Ian Rogers0571d352011-11-03 19:51:38 -07001267 }
Logan Chien736df022012-04-27 16:25:57 +08001268 Init(code_item, offset);
1269}
1270
1271CatchHandlerIterator::CatchHandlerIterator(const DexFile::CodeItem& code_item,
1272 const DexFile::TryItem& try_item) {
1273 handler_.address_ = -1;
1274 Init(code_item, try_item.handler_off_);
1275}
1276
1277void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item,
1278 int32_t offset) {
Ian Rogers0571d352011-11-03 19:51:38 -07001279 if (offset >= 0) {
Logan Chien736df022012-04-27 16:25:57 +08001280 Init(DexFile::GetCatchHandlerData(code_item, offset));
Ian Rogers0571d352011-11-03 19:51:38 -07001281 } else {
1282 // Not found, initialize as empty
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001283 current_data_ = nullptr;
Ian Rogers0571d352011-11-03 19:51:38 -07001284 remaining_count_ = -1;
1285 catch_all_ = false;
1286 DCHECK(!HasNext());
1287 }
1288}
1289
Ian Rogers13735952014-10-08 12:43:28 -07001290void CatchHandlerIterator::Init(const uint8_t* handler_data) {
Ian Rogers0571d352011-11-03 19:51:38 -07001291 current_data_ = handler_data;
1292 remaining_count_ = DecodeSignedLeb128(&current_data_);
1293
1294 // If remaining_count_ is non-positive, then it is the negative of
1295 // the number of catch types, and the catches are followed by a
1296 // catch-all handler.
1297 if (remaining_count_ <= 0) {
1298 catch_all_ = true;
1299 remaining_count_ = -remaining_count_;
1300 } else {
1301 catch_all_ = false;
1302 }
1303 Next();
1304}
1305
1306void CatchHandlerIterator::Next() {
1307 if (remaining_count_ > 0) {
1308 handler_.type_idx_ = DecodeUnsignedLeb128(&current_data_);
1309 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1310 remaining_count_--;
1311 return;
1312 }
1313
1314 if (catch_all_) {
1315 handler_.type_idx_ = DexFile::kDexNoIndex16;
1316 handler_.address_ = DecodeUnsignedLeb128(&current_data_);
1317 catch_all_ = false;
1318 return;
1319 }
1320
1321 // no more handler
1322 remaining_count_ = -1;
1323}
1324
Carl Shapiro1fb86202011-06-27 17:43:13 -07001325} // namespace art