blob: fea80094da980df4773d1d083c0e811271e34905 [file] [log] [blame]
Carl Shapiro1fb86202011-06-27 17:43:13 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "dex_file.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07004
5#include <fcntl.h>
Brian Carlstrom1f870082011-08-23 16:02:11 -07006#include <limits.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -07007#include <stdio.h>
Ian Rogersd81871c2011-10-03 13:57:23 -07008#include <stdlib.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07009#include <string.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070010#include <sys/file.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070011#include <sys/mman.h>
12#include <sys/stat.h>
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070013
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include <map>
15
16#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "globals.h"
18#include "logging.h"
19#include "object.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070020#include "os.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070021#include "stringprintf.h"
22#include "thread.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070023#include "utils.h"
Brian Carlstromb0460ea2011-07-29 10:08:05 -070024#include "zip_archive.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070025
26namespace art {
27
Brian Carlstromf615a612011-07-23 12:50:34 -070028const byte DexFile::kDexMagic[] = { 'd', 'e', 'x', '\n' };
29const byte DexFile::kDexMagicVersion[] = { '0', '3', '5', '\0' };
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070030
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070031DexFile::ClassPathEntry DexFile::FindInClassPath(const StringPiece& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070032 const ClassPath& class_path) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070033 for (size_t i = 0; i != class_path.size(); ++i) {
34 const DexFile* dex_file = class_path[i];
35 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor);
36 if (dex_class_def != NULL) {
37 return ClassPathEntry(dex_file, dex_class_def);
38 }
39 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070040 // TODO: remove reinterpret_cast when issue with -std=gnu++0x host issue resolved
Brian Carlstrom7e93b502011-08-04 14:16:22 -070041 return ClassPathEntry(reinterpret_cast<const DexFile*>(NULL),
42 reinterpret_cast<const DexFile::ClassDef*>(NULL));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070043}
44
Brian Carlstrom78128a62011-09-15 17:21:19 -070045void DexFile::OpenDexFiles(std::vector<const char*>& dex_filenames,
46 std::vector<const DexFile*>& dex_files,
47 const std::string& strip_location_prefix) {
48 for (size_t i = 0; i < dex_filenames.size(); i++) {
49 const char* dex_filename = dex_filenames[i];
50 const DexFile* dex_file = Open(dex_filename, strip_location_prefix);
51 if (dex_file == NULL) {
52 fprintf(stderr, "could not open .dex from file %s\n", dex_filename);
53 exit(EXIT_FAILURE);
54 }
55 dex_files.push_back(dex_file);
56 }
57}
58
Brian Carlstrom16192862011-09-12 17:50:06 -070059const DexFile* DexFile::Open(const std::string& filename,
60 const std::string& strip_location_prefix) {
jeffhao262bf462011-10-20 18:36:32 -070061 if (IsValidZipFilename(filename)) {
Brian Carlstrom16192862011-09-12 17:50:06 -070062 return DexFile::OpenZip(filename, strip_location_prefix);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070063 } else {
jeffhao262bf462011-10-20 18:36:32 -070064 if (!IsValidDexFilename(filename)) {
65 LOG(WARNING) << "Attempting to open dex file with unknown extension '" << filename << "'";
66 }
Brian Carlstrom16192862011-09-12 17:50:06 -070067 return DexFile::OpenFile(filename, filename, strip_location_prefix);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070068 }
69}
70
jeffhaob4df5142011-09-19 20:25:32 -070071void DexFile::ChangePermissions(int prot) const {
Brian Carlstrom33f741e2011-10-03 11:24:05 -070072 if (mprotect(mem_map_->GetAddress(), mem_map_->GetLength(), prot) != 0) {
jeffhaob4df5142011-09-19 20:25:32 -070073 PLOG(FATAL) << "Failed to change dex file permissions to " << prot;
74 }
75}
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070076
Brian Carlstrom16192862011-09-12 17:50:06 -070077const DexFile* DexFile::OpenFile(const std::string& filename,
78 const std::string& original_location,
79 const std::string& strip_location_prefix) {
80 StringPiece location = original_location;
81 if (!location.starts_with(strip_location_prefix)) {
82 LOG(ERROR) << filename << " does not start with " << strip_location_prefix;
83 return NULL;
84 }
85 location.remove_prefix(strip_location_prefix.size());
Brian Carlstromb0460ea2011-07-29 10:08:05 -070086 int fd = open(filename.c_str(), O_RDONLY); // TODO: scoped_fd
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070087 if (fd == -1) {
88 PLOG(ERROR) << "open(\"" << filename << "\", O_RDONLY) failed";
89 return NULL;
90 }
91 struct stat sbuf;
92 memset(&sbuf, 0, sizeof(sbuf));
93 if (fstat(fd, &sbuf) == -1) {
94 PLOG(ERROR) << "fstat \"" << filename << "\" failed";
95 close(fd);
96 return NULL;
97 }
98 size_t length = sbuf.st_size;
Brian Carlstrom33f741e2011-10-03 11:24:05 -070099 UniquePtr<MemMap> map(MemMap::Map(length, PROT_READ, MAP_PRIVATE, fd, 0));
100 if (map.get() == NULL) {
101 LOG(ERROR) << "mmap \"" << filename << "\" failed";
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700102 close(fd);
103 return NULL;
104 }
105 close(fd);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700106 byte* dex_file = map->GetAddress();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700107 return OpenMemory(dex_file, length, location.ToString(), map.release());
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700108}
109
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700110const char* DexFile::kClassesDex = "classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700111
112class LockedFd {
113 public:
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700114 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700115 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
116 if (fd == -1) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700117 PLOG(ERROR) << "Failed to open file '" << name << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700118 return NULL;
119 }
120 fchmod(fd, mode);
121
122 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
123 int result = flock(fd, LOCK_EX | LOCK_NB);
124 if (result == -1) {
125 LOG(WARNING) << "sleeping while locking file " << name;
126 result = flock(fd, LOCK_EX);
127 }
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700128 if (result == -1) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700129 PLOG(ERROR) << "Failed to lock file '" << name << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700130 close(fd);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700131 return NULL;
132 }
133 return new LockedFd(fd);
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700134 }
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700135
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700136 int GetFd() const {
137 return fd_;
138 }
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700139
140 ~LockedFd() {
141 if (fd_ != -1) {
142 int result = flock(fd_, LOCK_UN);
143 if (result == -1) {
144 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
145 }
146 close(fd_);
147 }
148 }
149
150 private:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -0700151 explicit LockedFd(int fd) : fd_(fd) {}
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700152
153 int fd_;
154};
155
156class TmpFile {
157 public:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -0700158 explicit TmpFile(const std::string& name) : name_(name) {}
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700159 ~TmpFile() {
160 unlink(name_.c_str());
161 }
162 private:
163 const std::string name_;
164};
165
166// Open classes.dex from within a .zip, .jar, .apk, ...
Brian Carlstrom16192862011-09-12 17:50:06 -0700167const DexFile* DexFile::OpenZip(const std::string& filename,
168 const std::string& strip_location_prefix) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700169 // First, look for a ".dex" alongside the jar file. It will have
170 // the same name/path except for the extension.
171
172 // Example filename = dir/foo.jar
173 std::string adjacent_dex_filename(filename);
174 size_t found = adjacent_dex_filename.find_last_of(".");
175 if (found == std::string::npos) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700176 LOG(ERROR) << "No . in filename" << filename;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700177 return NULL;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700178 }
179 adjacent_dex_filename.replace(adjacent_dex_filename.begin() + found,
180 adjacent_dex_filename.end(),
181 ".dex");
182 // Example adjacent_dex_filename = dir/foo.dex
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700183 if (OS::FileExists(adjacent_dex_filename.c_str())) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700184 const DexFile* adjacent_dex_file = DexFile::OpenFile(adjacent_dex_filename,
185 filename,
186 strip_location_prefix);
Elliott Hughese0fc0ef2011-08-12 17:39:17 -0700187 if (adjacent_dex_file != NULL) {
Brian Carlstrom4e777d42011-08-15 13:53:52 -0700188 // We don't verify anything in this case, because we aren't in
189 // the cache and typically the file is in the readonly /system
190 // area, so if something is wrong, there is nothing we can do.
191 return adjacent_dex_file;
Elliott Hughese0fc0ef2011-08-12 17:39:17 -0700192 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700193 return NULL;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700194 }
195
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700196 UniquePtr<char[]> resolved(new char[PATH_MAX]);
197 char* absolute_path = realpath(filename.c_str(), resolved.get());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700198 if (absolute_path == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700199 LOG(ERROR) << "Failed to create absolute path for " << filename
200 << " when looking for classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700201 return NULL;
202 }
jeffhao262bf462011-10-20 18:36:32 -0700203 std::string cache_path_tmp(GetArtCacheFilenameOrDie(absolute_path));
204 cache_path_tmp.push_back('@');
205 cache_path_tmp.append(kClassesDex);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700206 // Example cache_path_tmp = /data/art-cache/parent@dir@foo.jar@classes.dex
207
Elliott Hughes90a33692011-08-30 13:27:07 -0700208 UniquePtr<ZipArchive> zip_archive(ZipArchive::Open(filename));
209 if (zip_archive.get() == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700210 LOG(ERROR) << "Failed to open " << filename << " when looking for classes.dex";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700211 return NULL;
212 }
Elliott Hughes90a33692011-08-30 13:27:07 -0700213 UniquePtr<ZipEntry> zip_entry(zip_archive->Find(kClassesDex));
214 if (zip_entry.get() == NULL) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700215 LOG(ERROR) << "Failed to find classes.dex within " << filename;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700216 return NULL;
217 }
218
219 std::string cache_path = StringPrintf("%s.%08x", cache_path_tmp.c_str(), zip_entry->GetCrc32());
220 // Example cache_path = /data/art-cache/parent@dir@foo.jar@classes.dex.1a2b3c4d
221
222 while (true) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700223 if (OS::FileExists(cache_path.c_str())) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700224 const DexFile* cached_dex_file = DexFile::OpenFile(cache_path,
225 filename,
226 strip_location_prefix);
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700227 if (cached_dex_file != NULL) {
228 return cached_dex_file;
229 }
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700230 }
231
232 // Try to open the temporary cache file, grabbing an exclusive
233 // lock. If somebody else is working on it, we'll block here until
234 // they complete. Because we're waiting on an external resource,
235 // we go into native mode.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700236 // Note that self can be NULL if we're parsing the bootclasspath
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700237 // during JNI_CreateJavaVM.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700238 Thread* self = Thread::Current();
239 UniquePtr<ScopedThreadStateChange> state_changer;
240 if (self != NULL) {
241 state_changer.reset(new ScopedThreadStateChange(self, Thread::kNative));
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700242 }
Elliott Hughes90a33692011-08-30 13:27:07 -0700243 UniquePtr<LockedFd> fd(LockedFd::CreateAndLock(cache_path_tmp, 0644));
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700244 state_changer.reset(NULL);
Elliott Hughes90a33692011-08-30 13:27:07 -0700245 if (fd.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700246 return NULL;
247 }
248
249 // Check to see if the fd we opened and locked matches the file in
250 // the filesystem. If they don't, then somebody else unlinked
251 // ours and created a new file, and we need to use that one
252 // instead. (If we caught them between the unlink and the create,
253 // we'll get an ENOENT from the file stat.)
254 struct stat fd_stat;
255 int fd_stat_result = fstat(fd->GetFd(), &fd_stat);
256 if (fd_stat_result == -1) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700257 PLOG(ERROR) << "Failed to stat open file '" << cache_path_tmp << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700258 return NULL;
259 }
260 struct stat file_stat;
261 int file_stat_result = stat(cache_path_tmp.c_str(), &file_stat);
262 if (file_stat_result == -1 ||
263 fd_stat.st_dev != file_stat.st_dev || fd_stat.st_ino != file_stat.st_ino) {
264 LOG(WARNING) << "our open cache file is stale; sleeping and retrying";
265 usleep(250 * 1000); // if something is hosed, don't peg machine
266 continue;
267 }
268
269 // We have the correct file open and locked. Extract classes.dex
270 TmpFile tmp_file(cache_path_tmp);
Elliott Hughes90a33692011-08-30 13:27:07 -0700271 UniquePtr<File> file(OS::FileFromFd(cache_path_tmp.c_str(), fd->GetFd()));
272 if (file.get() == NULL) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700273 return NULL;
274 }
275 bool success = zip_entry->Extract(*file);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700276 if (!success) {
277 return NULL;
278 }
279
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700280 // TODO: restat and check length against zip_entry->GetUncompressedLength()?
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700281
282 // Compute checksum and compare to zip. If things look okay, rename from tmp.
283 off_t lseek_result = lseek(fd->GetFd(), 0, SEEK_SET);
284 if (lseek_result == -1) {
285 return NULL;
286 }
287 const size_t kBufSize = 32768;
Elliott Hughes90a33692011-08-30 13:27:07 -0700288 UniquePtr<uint8_t[]> buf(new uint8_t[kBufSize]);
289 if (buf.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700290 return NULL;
291 }
292 uint32_t computed_crc = crc32(0L, Z_NULL, 0);
293 while (true) {
294 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd->GetFd(), buf.get(), kBufSize));
Brian Carlstrom0024d6c2011-08-09 08:26:12 -0700295 if (bytes_read == -1) {
296 PLOG(ERROR) << "Problem computing CRC of '" << cache_path_tmp << "'";
297 return NULL;
298 }
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700299 if (bytes_read == 0) {
300 break;
301 }
302 computed_crc = crc32(computed_crc, buf.get(), bytes_read);
303 }
304 if (computed_crc != zip_entry->GetCrc32()) {
305 return NULL;
306 }
307 int rename_result = rename(cache_path_tmp.c_str(), cache_path.c_str());
308 if (rename_result == -1) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700309 PLOG(ERROR) << "Failed to install dex cache file '" << cache_path << "'"
Brian Carlstrom0024d6c2011-08-09 08:26:12 -0700310 << " from '" << cache_path_tmp << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700311 unlink(cache_path.c_str());
312 }
313 }
314 // NOTREACHED
315}
316
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700317const DexFile* DexFile::OpenMemory(const byte* dex_bytes, size_t length,
318 const std::string& location, MemMap* mem_map) {
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700319 UniquePtr<DexFile> dex_file(new DexFile(dex_bytes, length, location, mem_map));
Brian Carlstromf615a612011-07-23 12:50:34 -0700320 if (!dex_file->Init()) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700321 return NULL;
322 } else {
Brian Carlstromf615a612011-07-23 12:50:34 -0700323 return dex_file.release();
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700324 }
325}
326
Jesse Wilson6bf19152011-09-29 13:12:33 -0400327DexFile::~DexFile() {
Elliott Hughes8cef0b82011-10-11 19:24:00 -0700328 // We don't call DeleteGlobalRef on dex_object_ because we're only called by DestroyJavaVM, and
329 // that's only called after DetachCurrentThread, which means there's no JNIEnv. We could
330 // re-attach, but cleaning up these global references is not obviously useful. It's not as if
331 // the global reference table is otherwise empty!
Jesse Wilson6bf19152011-09-29 13:12:33 -0400332}
333
334jobject DexFile::GetDexObject(JNIEnv* env) const {
335 MutexLock mu(dex_object_lock_);
336 if (dex_object_ != NULL) {
337 return dex_object_;
338 }
339
340 void* address = const_cast<void*>(reinterpret_cast<const void*>(base_));
341 jobject byte_buffer = env->NewDirectByteBuffer(address, length_);
342 if (byte_buffer == NULL) {
343 return NULL;
344 }
345
346 jclass c = env->FindClass("com/android/dex/Dex");
347 if (c == NULL) {
348 return NULL;
349 }
350
351 jmethodID mid = env->GetStaticMethodID(c, "create", "(Ljava/nio/ByteBuffer;)Lcom/android/dex/Dex;");
352 if (mid == NULL) {
353 return NULL;
354 }
355
356 jvalue args[1];
357 args[0].l = byte_buffer;
358 jobject local = env->CallStaticObjectMethodA(c, mid, args);
359 if (local == NULL) {
360 return NULL;
361 }
362
363 dex_object_ = env->NewGlobalRef(local);
364 return dex_object_;
365}
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700366
Brian Carlstromf615a612011-07-23 12:50:34 -0700367bool DexFile::Init() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700368 InitMembers();
369 if (!IsMagicValid()) {
370 return false;
371 }
372 InitIndex();
373 return true;
374}
375
Brian Carlstromf615a612011-07-23 12:50:34 -0700376void DexFile::InitMembers() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700377 const byte* b = base_;
378 header_ = reinterpret_cast<const Header*>(b);
379 const Header* h = header_;
380 string_ids_ = reinterpret_cast<const StringId*>(b + h->string_ids_off_);
381 type_ids_ = reinterpret_cast<const TypeId*>(b + h->type_ids_off_);
382 field_ids_ = reinterpret_cast<const FieldId*>(b + h->field_ids_off_);
383 method_ids_ = reinterpret_cast<const MethodId*>(b + h->method_ids_off_);
384 proto_ids_ = reinterpret_cast<const ProtoId*>(b + h->proto_ids_off_);
385 class_defs_ = reinterpret_cast<const ClassDef*>(b + h->class_defs_off_);
386}
387
Brian Carlstromf615a612011-07-23 12:50:34 -0700388bool DexFile::IsMagicValid() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700389 return CheckMagic(header_->magic_);
390}
391
Brian Carlstromf615a612011-07-23 12:50:34 -0700392bool DexFile::CheckMagic(const byte* magic) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700393 CHECK(magic != NULL);
394 if (memcmp(magic, kDexMagic, sizeof(kDexMagic)) != 0) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700395 LOG(ERROR) << "Unrecognized magic number:"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700396 << " " << magic[0]
397 << " " << magic[1]
398 << " " << magic[2]
399 << " " << magic[3];
400 return false;
401 }
402 const byte* version = &magic[sizeof(kDexMagic)];
403 if (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) != 0) {
Brian Carlstrom16192862011-09-12 17:50:06 -0700404 LOG(ERROR) << "Unrecognized version number:"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700405 << " " << version[0]
406 << " " << version[1]
407 << " " << version[2]
408 << " " << version[3];
409 return false;
410 }
411 return true;
412}
413
Ian Rogersd81871c2011-10-03 13:57:23 -0700414uint32_t DexFile::GetVersion() const {
415 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]);
416 return atoi(version);
417}
418
Brian Carlstromf615a612011-07-23 12:50:34 -0700419void DexFile::InitIndex() {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700420 CHECK_EQ(index_.size(), 0U);
421 for (size_t i = 0; i < NumClassDefs(); ++i) {
422 const ClassDef& class_def = GetClassDef(i);
423 const char* descriptor = GetClassDescriptor(class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700424 index_[descriptor] = i;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700425 }
426}
427
Brian Carlstrome24fa612011-09-29 00:53:55 -0700428bool DexFile::FindClassDefIndex(const StringPiece& descriptor, uint32_t& idx) const {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700429 Index::const_iterator it = index_.find(descriptor);
430 if (it == index_.end()) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700431 return false;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700432 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700433 idx = it->second;
434 return true;
435}
436
437const DexFile::ClassDef* DexFile::FindClassDef(const StringPiece& descriptor) const {
438 uint32_t idx;
439 if (FindClassDefIndex(descriptor, idx)) {
440 return &GetClassDef(idx);
441 }
442 return NULL;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700443}
444
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700445// Materializes the method descriptor for a method prototype. Method
446// descriptors are not stored directly in the dex file. Instead, one
447// must assemble the descriptor from references in the prototype.
Elliott Hughes0c424cb2011-08-26 10:16:25 -0700448std::string DexFile::CreateMethodDescriptor(uint32_t proto_idx,
449 int32_t* unicode_length) const {
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700450 const ProtoId& proto_id = GetProtoId(proto_idx);
451 std::string descriptor;
452 descriptor.push_back('(');
453 const TypeList* type_list = GetProtoParameters(proto_id);
454 size_t parameter_length = 0;
455 if (type_list != NULL) {
456 // A non-zero number of arguments. Append the type names.
457 for (size_t i = 0; i < type_list->Size(); ++i) {
458 const TypeItem& type_item = type_list->GetTypeItem(i);
459 uint32_t type_idx = type_item.type_idx_;
460 int32_t type_length;
461 const char* name = dexStringByTypeIdx(type_idx, &type_length);
462 parameter_length += type_length;
463 descriptor.append(name);
464 }
465 }
466 descriptor.push_back(')');
467 uint32_t return_type_idx = proto_id.return_type_idx_;
468 int32_t return_type_length;
469 const char* name = dexStringByTypeIdx(return_type_idx, &return_type_length);
470 descriptor.append(name);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700471 if (unicode_length != NULL) {
472 *unicode_length = parameter_length + return_type_length + 2; // 2 for ( and )
473 }
Elliott Hughes0c424cb2011-08-26 10:16:25 -0700474 return descriptor;
Carl Shapiro419ec7b2011-08-03 14:48:33 -0700475}
476
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700477// Read a signed integer. "zwidth" is the zero-based byte count.
478static int32_t ReadSignedInt(const byte* ptr, int zwidth)
479{
480 int32_t val = 0;
481 for (int i = zwidth; i >= 0; --i) {
482 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
483 }
484 val >>= (3 - zwidth) * 8;
485 return val;
486}
487
488// Read an unsigned integer. "zwidth" is the zero-based byte count,
489// "fill_on_right" indicates which side we want to zero-fill from.
490static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth,
491 bool fill_on_right) {
492 uint32_t val = 0;
493 if (!fill_on_right) {
494 for (int i = zwidth; i >= 0; --i) {
495 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
496 }
497 val >>= (3 - zwidth) * 8;
498 } else {
499 for (int i = zwidth; i >= 0; --i) {
500 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
501 }
502 }
503 return val;
504}
505
506// Read a signed long. "zwidth" is the zero-based byte count.
507static int64_t ReadSignedLong(const byte* ptr, int zwidth) {
508 int64_t val = 0;
509 for (int i = zwidth; i >= 0; --i) {
510 val = ((uint64_t)val >> 8) | (((int64_t)*ptr++) << 56);
511 }
512 val >>= (7 - zwidth) * 8;
513 return val;
514}
515
516// Read an unsigned long. "zwidth" is the zero-based byte count,
517// "fill_on_right" indicates which side we want to zero-fill from.
518static uint64_t ReadUnsignedLong(const byte* ptr, int zwidth,
519 bool fill_on_right) {
520 uint64_t val = 0;
521 if (!fill_on_right) {
522 for (int i = zwidth; i >= 0; --i) {
523 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
524 }
525 val >>= (7 - zwidth) * 8;
526 } else {
527 for (int i = zwidth; i >= 0; --i) {
528 val = (val >> 8) | (((uint64_t)*ptr++) << 56);
529 }
530 }
531 return val;
532}
533
Brian Carlstromf615a612011-07-23 12:50:34 -0700534DexFile::ValueType DexFile::ReadEncodedValue(const byte** stream,
535 JValue* value) const {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700536 const byte* ptr = *stream;
537 byte value_type = *ptr++;
538 byte value_arg = value_type >> kEncodedValueArgShift;
539 size_t width = value_arg + 1; // assume and correct later
540 int type = value_type & kEncodedValueTypeMask;
541 switch (type) {
Brian Carlstromf615a612011-07-23 12:50:34 -0700542 case DexFile::kByte: {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700543 int32_t b = ReadSignedInt(ptr, value_arg);
544 CHECK(IsInt(8, b));
545 value->i = b;
546 break;
547 }
Brian Carlstromf615a612011-07-23 12:50:34 -0700548 case DexFile::kShort: {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700549 int32_t s = ReadSignedInt(ptr, value_arg);
550 CHECK(IsInt(16, s));
551 value->i = s;
552 break;
553 }
Brian Carlstromf615a612011-07-23 12:50:34 -0700554 case DexFile::kChar: {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700555 uint32_t c = ReadUnsignedInt(ptr, value_arg, false);
556 CHECK(IsUint(16, c));
557 value->i = c;
558 break;
559 }
Brian Carlstromf615a612011-07-23 12:50:34 -0700560 case DexFile::kInt:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700561 value->i = ReadSignedInt(ptr, value_arg);
562 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700563 case DexFile::kLong:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700564 value->j = ReadSignedLong(ptr, value_arg);
565 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700566 case DexFile::kFloat:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700567 value->i = ReadUnsignedInt(ptr, value_arg, true);
568 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700569 case DexFile::kDouble:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700570 value->j = ReadUnsignedLong(ptr, value_arg, true);
571 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700572 case DexFile::kBoolean:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700573 value->i = (value_arg != 0);
574 width = 0;
575 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700576 case DexFile::kString:
577 case DexFile::kType:
578 case DexFile::kMethod:
579 case DexFile::kEnum:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700580 value->i = ReadUnsignedInt(ptr, value_arg, false);
581 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700582 case DexFile::kField:
583 case DexFile::kArray:
584 case DexFile::kAnnotation:
Elliott Hughes53b61312011-08-12 18:28:20 -0700585 UNIMPLEMENTED(FATAL) << ": type " << type;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700586 break;
Brian Carlstromf615a612011-07-23 12:50:34 -0700587 case DexFile::kNull:
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700588 value->i = 0;
589 width = 0;
590 break;
591 default:
592 LOG(FATAL) << "Unreached";
593 }
594 ptr += width;
595 *stream = ptr;
596 return static_cast<ValueType>(type);
Carl Shapiro1fb86202011-06-27 17:43:13 -0700597}
598
Shih-wei Liao195487c2011-08-20 13:29:04 -0700599int32_t DexFile::GetLineNumFromPC(const art::Method* method, uint32_t rel_pc) const {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700600 // For native method, lineno should be -2 to indicate it is native. Note that
601 // "line number == -2" is how libcore tells from StackTraceElement.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700602 if (method->GetCodeItemOffset() == 0) {
Shih-wei Liaoff0f9be2011-08-29 15:43:53 -0700603 return -2;
604 }
605
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700606 const CodeItem* code_item = GetCodeItem(method->GetCodeItemOffset());
Shih-wei Liao195487c2011-08-20 13:29:04 -0700607 DCHECK(code_item != NULL);
608
609 // A method with no line number info should return -1
610 LineNumFromPcContext context(rel_pc, -1);
611 dexDecodeDebugInfo(code_item, method, LineNumForPcCb, NULL, &context);
612 return context.line_num_;
613}
614
615void DexFile::dexDecodeDebugInfo0(const CodeItem* code_item, const art::Method* method,
616 DexDebugNewPositionCb posCb, DexDebugNewLocalCb local_cb,
617 void* cnxt, const byte* stream, LocalInfo* local_in_reg) const {
618 uint32_t line = DecodeUnsignedLeb128(&stream);
619 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
620 uint16_t arg_reg = code_item->registers_size_ - code_item->ins_size_;
621 uint32_t address = 0;
Elliott Hughes30646832011-10-13 16:59:46 -0700622 bool need_locals = (local_cb != NULL);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700623
624 if (!method->IsStatic()) {
Elliott Hughes30646832011-10-13 16:59:46 -0700625 if (need_locals) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700626 std::string descriptor = method->GetDeclaringClass()->GetDescriptor()->ToModifiedUtf8();
627 const ClassDef* class_def = FindClassDef(descriptor);
628 CHECK(class_def != NULL) << descriptor;
629 local_in_reg[arg_reg].name_ = "this";
630 local_in_reg[arg_reg].descriptor_ = GetClassDescriptor(*class_def);
Elliott Hughes30646832011-10-13 16:59:46 -0700631 local_in_reg[arg_reg].start_address_ = 0;
632 local_in_reg[arg_reg].is_live_ = true;
633 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700634 arg_reg++;
635 }
636
Elliott Hughes30646832011-10-13 16:59:46 -0700637 ParameterIterator* it = GetParameterIterator(GetProtoId(method->GetProtoIdx()));
Shih-wei Liao195487c2011-08-20 13:29:04 -0700638 for (uint32_t i = 0; i < parameters_size && it->HasNext(); ++i, it->Next()) {
639 if (arg_reg >= code_item->registers_size_) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700640 LOG(ERROR) << "invalid stream";
Shih-wei Liao195487c2011-08-20 13:29:04 -0700641 return;
642 }
Elliott Hughes30646832011-10-13 16:59:46 -0700643 int32_t id = DecodeUnsignedLeb128P1(&stream);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700644 const char* descriptor = it->GetDescriptor();
Elliott Hughes30646832011-10-13 16:59:46 -0700645 if (need_locals) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700646 const char* name = dexStringById(id);
Elliott Hughes30646832011-10-13 16:59:46 -0700647 local_in_reg[arg_reg].name_ = name;
648 local_in_reg[arg_reg].descriptor_ = descriptor;
Elliott Hughes30646832011-10-13 16:59:46 -0700649 local_in_reg[arg_reg].start_address_ = address;
650 local_in_reg[arg_reg].is_live_ = true;
651 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700652 switch (*descriptor) {
Shih-wei Liao195487c2011-08-20 13:29:04 -0700653 case 'D':
654 case 'J':
655 arg_reg += 2;
656 break;
657 default:
658 arg_reg += 1;
659 break;
660 }
661 }
662
663 if (it->HasNext()) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700664 LOG(ERROR) << "invalid stream";
Shih-wei Liao195487c2011-08-20 13:29:04 -0700665 return;
666 }
667
668 for (;;) {
669 uint8_t opcode = *stream++;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700670 uint16_t reg;
671
Shih-wei Liao195487c2011-08-20 13:29:04 -0700672 switch (opcode) {
673 case DBG_END_SEQUENCE:
674 return;
675
676 case DBG_ADVANCE_PC:
677 address += DecodeUnsignedLeb128(&stream);
678 break;
679
680 case DBG_ADVANCE_LINE:
Shih-wei Liao8a05d272011-10-15 18:45:43 -0700681 line += DecodeSignedLeb128(&stream);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700682 break;
683
684 case DBG_START_LOCAL:
685 case DBG_START_LOCAL_EXTENDED:
686 reg = DecodeUnsignedLeb128(&stream);
687 if (reg > code_item->registers_size_) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700688 LOG(ERROR) << "invalid stream";
Shih-wei Liao195487c2011-08-20 13:29:04 -0700689 return;
690 }
691
692 // Emit what was previously there, if anything
Elliott Hughes30646832011-10-13 16:59:46 -0700693 if (need_locals) {
694 InvokeLocalCbIfLive(cnxt, reg, address, local_in_reg, local_cb);
Shih-wei Liao195487c2011-08-20 13:29:04 -0700695
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700696 local_in_reg[reg].name_ = dexStringById(DecodeUnsignedLeb128P1(&stream));
697 local_in_reg[reg].descriptor_ = dexStringByTypeIdx(DecodeUnsignedLeb128P1(&stream));
Elliott Hughes30646832011-10-13 16:59:46 -0700698 if (opcode == DBG_START_LOCAL_EXTENDED) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700699 local_in_reg[reg].signature_ = dexStringById(DecodeUnsignedLeb128P1(&stream));
Elliott Hughes30646832011-10-13 16:59:46 -0700700 }
701 local_in_reg[reg].start_address_ = address;
702 local_in_reg[reg].is_live_ = true;
Shih-wei Liao195487c2011-08-20 13:29:04 -0700703 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700704 break;
705
706 case DBG_END_LOCAL:
707 reg = DecodeUnsignedLeb128(&stream);
708 if (reg > code_item->registers_size_) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700709 LOG(ERROR) << "invalid stream";
Shih-wei Liao195487c2011-08-20 13:29:04 -0700710 return;
711 }
712
Elliott Hughes30646832011-10-13 16:59:46 -0700713 if (need_locals) {
714 InvokeLocalCbIfLive(cnxt, reg, address, local_in_reg, local_cb);
715 local_in_reg[reg].is_live_ = false;
716 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700717 break;
718
719 case DBG_RESTART_LOCAL:
720 reg = DecodeUnsignedLeb128(&stream);
721 if (reg > code_item->registers_size_) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700722 LOG(ERROR) << "invalid stream";
Shih-wei Liao195487c2011-08-20 13:29:04 -0700723 return;
724 }
725
Elliott Hughes30646832011-10-13 16:59:46 -0700726 if (need_locals) {
727 if (local_in_reg[reg].name_ == NULL || local_in_reg[reg].descriptor_ == NULL) {
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700728 LOG(ERROR) << "invalid stream";
Elliott Hughes30646832011-10-13 16:59:46 -0700729 return;
730 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700731
Elliott Hughes30646832011-10-13 16:59:46 -0700732 // If the register is live, the "restart" is superfluous,
733 // and we don't want to mess with the existing start address.
734 if (!local_in_reg[reg].is_live_) {
735 local_in_reg[reg].start_address_ = address;
736 local_in_reg[reg].is_live_ = true;
737 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700738 }
739 break;
740
741 case DBG_SET_PROLOGUE_END:
742 case DBG_SET_EPILOGUE_BEGIN:
743 case DBG_SET_FILE:
744 break;
745
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700746 default: {
747 int adjopcode = opcode - DBG_FIRST_SPECIAL;
748
Shih-wei Liao195487c2011-08-20 13:29:04 -0700749 address += adjopcode / DBG_LINE_RANGE;
750 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE);
751
752 if (posCb != NULL) {
753 if (posCb(cnxt, address, line)) {
754 // early exit
755 return;
756 }
757 }
758 break;
Shih-wei Liao8e1b4ff2011-10-15 15:43:51 -0700759 }
Shih-wei Liao195487c2011-08-20 13:29:04 -0700760 }
761 }
762}
763
Carl Shapiro1fb86202011-06-27 17:43:13 -0700764} // namespace art