blob: 6a6b55f55af347dd5342f62f23a0b7c533220282 [file] [log] [blame]
Than McIntoshf831e6d2016-02-01 19:50:20 -05001/*
2**
3** Copyright 2016, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#include "read_apk.h"
19
20#include <errno.h>
21#include <stdio.h>
22#include <string.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <unistd.h>
26
Yabin Cui8f680f62016-03-18 18:47:43 -070027#include <memory>
28
Than McIntoshf831e6d2016-02-01 19:50:20 -050029#include <android-base/file.h>
30#include <android-base/logging.h>
Yabin Cui569f64a2016-02-05 17:32:08 -080031#include <ziparchive/zip_archive.h>
Than McIntoshf831e6d2016-02-01 19:50:20 -050032#include "read_elf.h"
33#include "utils.h"
Than McIntoshf831e6d2016-02-01 19:50:20 -050034
Yabin Cuib1a885b2016-02-14 19:18:02 -080035std::map<ApkInspector::ApkOffset, std::unique_ptr<EmbeddedElf>> ApkInspector::embedded_elf_cache_;
Than McIntoshf831e6d2016-02-01 19:50:20 -050036
Yabin Cui41e32ca2016-02-18 12:11:40 -080037EmbeddedElf* ApkInspector::FindElfInApkByOffset(const std::string& apk_path, uint64_t file_offset) {
Than McIntoshf831e6d2016-02-01 19:50:20 -050038 // Already in cache?
Yabin Cuib1a885b2016-02-14 19:18:02 -080039 ApkOffset ami(apk_path, file_offset);
40 auto it = embedded_elf_cache_.find(ami);
41 if (it != embedded_elf_cache_.end()) {
42 return it->second.get();
Than McIntoshf831e6d2016-02-01 19:50:20 -050043 }
Yabin Cuib1a885b2016-02-14 19:18:02 -080044 std::unique_ptr<EmbeddedElf> elf = FindElfInApkByOffsetWithoutCache(apk_path, file_offset);
45 EmbeddedElf* result = elf.get();
46 embedded_elf_cache_[ami] = std::move(elf);
47 return result;
48}
Than McIntoshf831e6d2016-02-01 19:50:20 -050049
Yabin Cuib1a885b2016-02-14 19:18:02 -080050std::unique_ptr<EmbeddedElf> ApkInspector::FindElfInApkByOffsetWithoutCache(const std::string& apk_path,
Yabin Cui41e32ca2016-02-18 12:11:40 -080051 uint64_t file_offset) {
Than McIntoshf831e6d2016-02-01 19:50:20 -050052 // Crack open the apk(zip) file and take a look.
Yabin Cuib1a885b2016-02-14 19:18:02 -080053 if (!IsValidApkPath(apk_path)) {
Than McIntoshf831e6d2016-02-01 19:50:20 -050054 return nullptr;
55 }
Yabin Cui8f680f62016-03-18 18:47:43 -070056
Yabin Cuibe7ec662016-03-02 13:56:28 -080057 FileHelper fhelper = FileHelper::OpenReadOnly(apk_path);
Yabin Cuib1a885b2016-02-14 19:18:02 -080058 if (!fhelper) {
Than McIntoshf831e6d2016-02-01 19:50:20 -050059 return nullptr;
60 }
61
Yabin Cuib1a885b2016-02-14 19:18:02 -080062 ArchiveHelper ahelper(fhelper.fd(), apk_path);
Yabin Cuibe7ec662016-03-02 13:56:28 -080063 if (!ahelper) {
Than McIntoshf831e6d2016-02-01 19:50:20 -050064 return nullptr;
65 }
66 ZipArchiveHandle &handle = ahelper.archive_handle();
67
68 // Iterate through the zip file. Look for a zip entry corresponding
69 // to an uncompressed blob whose range intersects with the mmap
70 // offset we're interested in.
71 void* iteration_cookie;
72 if (StartIteration(handle, &iteration_cookie, nullptr, nullptr) < 0) {
73 return nullptr;
74 }
75 ZipEntry zentry;
76 ZipString zname;
77 bool found = false;
78 int zrc;
Than McIntoshf831e6d2016-02-01 19:50:20 -050079 while ((zrc = Next(iteration_cookie, &zentry, &zname)) == 0) {
80 if (zentry.method == kCompressStored &&
Yabin Cui41e32ca2016-02-18 12:11:40 -080081 file_offset >= static_cast<uint64_t>(zentry.offset) &&
82 file_offset < static_cast<uint64_t>(zentry.offset + zentry.uncompressed_length)) {
Than McIntoshf831e6d2016-02-01 19:50:20 -050083 // Found.
84 found = true;
85 break;
86 }
87 }
88 EndIteration(iteration_cookie);
89 if (!found) {
90 return nullptr;
91 }
92
93 // We found something in the zip file at the right spot. Is it an ELF?
94 if (lseek(fhelper.fd(), zentry.offset, SEEK_SET) != zentry.offset) {
95 PLOG(ERROR) << "lseek() failed in " << apk_path << " offset " << zentry.offset;
96 return nullptr;
97 }
98 std::string entry_name;
99 entry_name.resize(zname.name_length,'\0');
100 memcpy(&entry_name[0], zname.name, zname.name_length);
Yabin Cuidec43c12016-07-29 16:40:40 -0700101 ElfStatus result = IsValidElfFile(fhelper.fd());
102 if (result != ElfStatus::NO_ERROR) {
103 LOG(ERROR) << "problems reading ELF from " << apk_path << " entry '"
104 << entry_name << "': " << result;
Than McIntoshf831e6d2016-02-01 19:50:20 -0500105 return nullptr;
106 }
107
108 // Elf found: add EmbeddedElf to vector, update cache.
Yabin Cuib1a885b2016-02-14 19:18:02 -0800109 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, entry_name, zentry.offset,
110 zentry.uncompressed_length));
Than McIntoshf831e6d2016-02-01 19:50:20 -0500111}
112
Yabin Cuib1a885b2016-02-14 19:18:02 -0800113std::unique_ptr<EmbeddedElf> ApkInspector::FindElfInApkByName(const std::string& apk_path,
114 const std::string& elf_filename) {
115 if (!IsValidApkPath(apk_path)) {
116 return nullptr;
117 }
Yabin Cuibe7ec662016-03-02 13:56:28 -0800118 FileHelper fhelper = FileHelper::OpenReadOnly(apk_path);
Yabin Cuib1a885b2016-02-14 19:18:02 -0800119 if (!fhelper) {
120 return nullptr;
121 }
122 ArchiveHelper ahelper(fhelper.fd(), apk_path);
Yabin Cuibe7ec662016-03-02 13:56:28 -0800123 if (!ahelper) {
Yabin Cuib1a885b2016-02-14 19:18:02 -0800124 return nullptr;
125 }
126 ZipArchiveHandle& handle = ahelper.archive_handle();
127 ZipEntry zentry;
128 int32_t rc = FindEntry(handle, ZipString(elf_filename.c_str()), &zentry);
129 if (rc != 0) {
130 LOG(ERROR) << "failed to find " << elf_filename << " in " << apk_path
131 << ": " << ErrorCodeString(rc);
132 return nullptr;
133 }
134 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) {
135 LOG(ERROR) << "shared library " << elf_filename << " in " << apk_path << " is compressed";
136 return nullptr;
137 }
138 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, elf_filename, zentry.offset,
139 zentry.uncompressed_length));
Than McIntoshf831e6d2016-02-01 19:50:20 -0500140}
141
Yabin Cuib1a885b2016-02-14 19:18:02 -0800142bool IsValidApkPath(const std::string& apk_path) {
143 static const char zip_preamble[] = {0x50, 0x4b, 0x03, 0x04 };
144 if (!IsRegularFile(apk_path)) {
145 return false;
146 }
147 std::string mode = std::string("rb") + CLOSE_ON_EXEC_MODE;
148 FILE* fp = fopen(apk_path.c_str(), mode.c_str());
149 if (fp == nullptr) {
150 return false;
151 }
152 char buf[4];
153 if (fread(buf, 4, 1, fp) != 1) {
154 fclose(fp);
155 return false;
156 }
157 fclose(fp);
158 return memcmp(buf, zip_preamble, 4) == 0;
Than McIntoshf831e6d2016-02-01 19:50:20 -0500159}
160
Yabin Cuib1a885b2016-02-14 19:18:02 -0800161// Refer file in apk in compliance with http://developer.android.com/reference/java/net/JarURLConnection.html.
162std::string GetUrlInApk(const std::string& apk_path, const std::string& elf_filename) {
163 return apk_path + "!/" + elf_filename;
164}
165
166std::tuple<bool, std::string, std::string> SplitUrlInApk(const std::string& path) {
167 size_t pos = path.find("!/");
168 if (pos == std::string::npos) {
169 return std::make_tuple(false, "", "");
170 }
171 return std::make_tuple(true, path.substr(0, pos), path.substr(pos + 2));
172}
173
Yabin Cuidec43c12016-07-29 16:40:40 -0700174ElfStatus GetBuildIdFromApkFile(const std::string& apk_path, const std::string& elf_filename,
Yabin Cuib1a885b2016-02-14 19:18:02 -0800175 BuildId* build_id) {
176 std::unique_ptr<EmbeddedElf> ee = ApkInspector::FindElfInApkByName(apk_path, elf_filename);
177 if (ee == nullptr) {
Yabin Cuidec43c12016-07-29 16:40:40 -0700178 return ElfStatus::FILE_NOT_FOUND;
Yabin Cuib1a885b2016-02-14 19:18:02 -0800179 }
180 return GetBuildIdFromEmbeddedElfFile(apk_path, ee->entry_offset(), ee->entry_size(), build_id);
181}
182
Yabin Cuidec43c12016-07-29 16:40:40 -0700183ElfStatus ParseSymbolsFromApkFile(const std::string& apk_path, const std::string& elf_filename,
Yabin Cuib1a885b2016-02-14 19:18:02 -0800184 const BuildId& expected_build_id,
Yabin Cui3e4c5952016-07-26 15:03:27 -0700185 const std::function<void(const ElfFileSymbol&)>& callback) {
Yabin Cuib1a885b2016-02-14 19:18:02 -0800186 std::unique_ptr<EmbeddedElf> ee = ApkInspector::FindElfInApkByName(apk_path, elf_filename);
187 if (ee == nullptr) {
Yabin Cuidec43c12016-07-29 16:40:40 -0700188 return ElfStatus::FILE_NOT_FOUND;
Yabin Cuib1a885b2016-02-14 19:18:02 -0800189 }
190 return ParseSymbolsFromEmbeddedElfFile(apk_path, ee->entry_offset(), ee->entry_size(),
191 expected_build_id, callback);
Than McIntoshf831e6d2016-02-01 19:50:20 -0500192}