blob: e77ac3df474c887a7ad8d3cc73a7ed88d51c8668 [file] [log] [blame]
Mathias Agopian1f5762e2013-05-06 20:20:34 -07001/*
2 * Copyright (C) 2007 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 */
16
17//
18// Read-only access to Zip archives, with minimal heap allocation.
19//
20#define LOG_TAG "zipro"
21//#define LOG_NDEBUG 0
22#include <androidfw/ZipFileRO.h>
23#include <utils/Log.h>
24#include <utils/Compat.h>
25#include <utils/misc.h>
26#include <utils/threads.h>
Narayan Kamathafd31e02013-12-03 13:16:03 +000027#include <ziparchive/zip_archive.h>
Mathias Agopian1f5762e2013-05-06 20:20:34 -070028
29#include <zlib.h>
30
31#include <string.h>
32#include <fcntl.h>
33#include <errno.h>
34#include <assert.h>
35#include <unistd.h>
36
Mathias Agopian1f5762e2013-05-06 20:20:34 -070037using namespace android;
38
Narayan Kamathafd31e02013-12-03 13:16:03 +000039class _ZipEntryRO {
40public:
41 ZipEntry entry;
Elliott Hughes78de4f92019-06-14 15:28:38 -070042 std::string_view name;
Narayan Kamathafd31e02013-12-03 13:16:03 +000043 void *cookie;
Mathias Agopian1f5762e2013-05-06 20:20:34 -070044
Piotr Jastrzebskie2134a42014-08-13 07:50:20 +010045 _ZipEntryRO() : cookie(NULL) {}
Mathias Agopian1f5762e2013-05-06 20:20:34 -070046
Piotr Jastrzebski1a68b072014-08-08 12:52:39 +010047 ~_ZipEntryRO() {
48 EndIteration(cookie);
49 }
50
Narayan Kamathafd31e02013-12-03 13:16:03 +000051private:
52 _ZipEntryRO(const _ZipEntryRO& other);
53 _ZipEntryRO& operator=(const _ZipEntryRO& other);
54};
Mathias Agopian1f5762e2013-05-06 20:20:34 -070055
56ZipFileRO::~ZipFileRO() {
Narayan Kamathafd31e02013-12-03 13:16:03 +000057 CloseArchive(mHandle);
Dianne Hackbornca3872c2017-10-30 14:19:32 -070058 if (mFileName != NULL) {
59 free(mFileName);
60 }
Mathias Agopian1f5762e2013-05-06 20:20:34 -070061}
62
63/*
Mathias Agopian1f5762e2013-05-06 20:20:34 -070064 * Open the specified file read-only. We memory-map the entire thing and
65 * close the file before returning.
66 */
Narayan Kamathafd31e02013-12-03 13:16:03 +000067/* static */ ZipFileRO* ZipFileRO::open(const char* zipFileName)
Mathias Agopian1f5762e2013-05-06 20:20:34 -070068{
Narayan Kamathafd31e02013-12-03 13:16:03 +000069 ZipArchiveHandle handle;
70 const int32_t error = OpenArchive(zipFileName, &handle);
71 if (error) {
72 ALOGW("Error opening archive %s: %s", zipFileName, ErrorCodeString(error));
Narayan Kamath5a7587f2015-05-11 15:45:36 +010073 CloseArchive(handle);
Mathias Agopian1f5762e2013-05-06 20:20:34 -070074 return NULL;
75 }
76
Narayan Kamathafd31e02013-12-03 13:16:03 +000077 return new ZipFileRO(handle, strdup(zipFileName));
Mathias Agopian1f5762e2013-05-06 20:20:34 -070078}
79
Narayan Kamathafd31e02013-12-03 13:16:03 +000080
Dianne Hackbornca3872c2017-10-30 14:19:32 -070081/* static */ ZipFileRO* ZipFileRO::openFd(int fd, const char* debugFileName,
82 bool assume_ownership)
83{
84 ZipArchiveHandle handle;
85 const int32_t error = OpenArchiveFd(fd, debugFileName, &handle, assume_ownership);
86 if (error) {
87 ALOGW("Error opening archive fd %d %s: %s", fd, debugFileName, ErrorCodeString(error));
88 CloseArchive(handle);
89 return NULL;
90 }
91
92 return new ZipFileRO(handle, strdup(debugFileName));
93}
94
Narayan Kamathafd31e02013-12-03 13:16:03 +000095ZipEntryRO ZipFileRO::findEntryByName(const char* entryName) const
Mathias Agopian1f5762e2013-05-06 20:20:34 -070096{
Narayan Kamathafd31e02013-12-03 13:16:03 +000097 _ZipEntryRO* data = new _ZipEntryRO;
Piotr Jastrzebskie2134a42014-08-13 07:50:20 +010098
Elliott Hughes78de4f92019-06-14 15:28:38 -070099 data->name = entryName;
Piotr Jastrzebskie2134a42014-08-13 07:50:20 +0100100
Elliott Hughesb97e7372019-05-03 22:42:31 -0700101 const int32_t error = FindEntry(mHandle, entryName, &(data->entry));
Narayan Kamathafd31e02013-12-03 13:16:03 +0000102 if (error) {
103 delete data;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700104 return NULL;
105 }
106
Narayan Kamathafd31e02013-12-03 13:16:03 +0000107 return (ZipEntryRO) data;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700108}
109
110/*
111 * Get the useful fields from the zip entry.
112 *
113 * Returns "false" if the offsets to the fields or the contents of the fields
114 * appear to be bogus.
115 */
Narayan Kamath4600dd02015-06-16 12:02:57 +0100116bool ZipFileRO::getEntryInfo(ZipEntryRO entry, uint16_t* pMethod,
117 uint32_t* pUncompLen, uint32_t* pCompLen, off64_t* pOffset,
118 uint32_t* pModWhen, uint32_t* pCrc32) const
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700119{
Narayan Kamathafd31e02013-12-03 13:16:03 +0000120 const _ZipEntryRO* zipEntry = reinterpret_cast<_ZipEntryRO*>(entry);
121 const ZipEntry& ze = zipEntry->entry;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700122
Narayan Kamathafd31e02013-12-03 13:16:03 +0000123 if (pMethod != NULL) {
124 *pMethod = ze.method;
Kenny Root0d6c2d72013-08-21 10:40:16 -0700125 }
Narayan Kamathafd31e02013-12-03 13:16:03 +0000126 if (pUncompLen != NULL) {
127 *pUncompLen = ze.uncompressed_length;
128 }
129 if (pCompLen != NULL) {
130 *pCompLen = ze.compressed_length;
131 }
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700132 if (pOffset != NULL) {
Narayan Kamathafd31e02013-12-03 13:16:03 +0000133 *pOffset = ze.offset;
134 }
135 if (pModWhen != NULL) {
136 *pModWhen = ze.mod_time;
137 }
138 if (pCrc32 != NULL) {
139 *pCrc32 = ze.crc32;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700140 }
141
142 return true;
143}
144
Yusuke Sato34fe3df2015-06-19 17:18:07 -0700145bool ZipFileRO::startIteration(void** cookie) {
146 return startIteration(cookie, NULL, NULL);
147}
148
149bool ZipFileRO::startIteration(void** cookie, const char* prefix, const char* suffix)
Narayan Kamathafd31e02013-12-03 13:16:03 +0000150{
151 _ZipEntryRO* ze = new _ZipEntryRO;
Yusuke Sato34fe3df2015-06-19 17:18:07 -0700152 int32_t error = StartIteration(mHandle, &(ze->cookie),
Elliott Hughes7a6cc0c2019-05-08 12:12:39 -0700153 prefix ? prefix : "", suffix ? suffix : "");
Narayan Kamathafd31e02013-12-03 13:16:03 +0000154 if (error) {
Dianne Hackbornca3872c2017-10-30 14:19:32 -0700155 ALOGW("Could not start iteration over %s: %s", mFileName != NULL ? mFileName : "<null>",
156 ErrorCodeString(error));
Narayan Kamathafd31e02013-12-03 13:16:03 +0000157 delete ze;
158 return false;
159 }
160
161 *cookie = ze;
162 return true;
163}
164
165ZipEntryRO ZipFileRO::nextEntry(void* cookie)
166{
167 _ZipEntryRO* ze = reinterpret_cast<_ZipEntryRO*>(cookie);
168 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name));
169 if (error) {
170 if (error != -1) {
Dianne Hackbornca3872c2017-10-30 14:19:32 -0700171 ALOGW("Error iteration over %s: %s", mFileName != NULL ? mFileName : "<null>",
172 ErrorCodeString(error));
Narayan Kamathafd31e02013-12-03 13:16:03 +0000173 }
174 return NULL;
175 }
176
177 return &(ze->entry);
178}
179
180void ZipFileRO::endIteration(void* cookie)
181{
182 delete reinterpret_cast<_ZipEntryRO*>(cookie);
183}
184
185void ZipFileRO::releaseEntry(ZipEntryRO entry) const
186{
187 delete reinterpret_cast<_ZipEntryRO*>(entry);
188}
189
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700190/*
191 * Copy the entry's filename to the buffer.
192 */
Narayan Kamath4600dd02015-06-16 12:02:57 +0100193int ZipFileRO::getEntryFileName(ZipEntryRO entry, char* buffer, size_t bufLen)
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700194 const
195{
Narayan Kamathafd31e02013-12-03 13:16:03 +0000196 const _ZipEntryRO* zipEntry = reinterpret_cast<_ZipEntryRO*>(entry);
Elliott Hughes78de4f92019-06-14 15:28:38 -0700197 const uint16_t requiredSize = zipEntry->name.length() + 1;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700198
Narayan Kamathafd31e02013-12-03 13:16:03 +0000199 if (bufLen < requiredSize) {
200 ALOGW("Buffer too short, requires %d bytes for entry name", requiredSize);
201 return requiredSize;
202 }
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700203
Elliott Hughes78de4f92019-06-14 15:28:38 -0700204 memcpy(buffer, zipEntry->name.data(), requiredSize - 1);
Narayan Kamathafd31e02013-12-03 13:16:03 +0000205 buffer[requiredSize - 1] = '\0';
206
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700207 return 0;
208}
209
210/*
211 * Create a new FileMap object that spans the data in "entry".
212 */
213FileMap* ZipFileRO::createEntryFileMap(ZipEntryRO entry) const
214{
Narayan Kamathafd31e02013-12-03 13:16:03 +0000215 const _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry);
216 const ZipEntry& ze = zipEntry->entry;
217 int fd = GetFileDescriptor(mHandle);
218 size_t actualLen = 0;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700219
Narayan Kamathafd31e02013-12-03 13:16:03 +0000220 if (ze.method == kCompressStored) {
221 actualLen = ze.uncompressed_length;
Kenny Root0d6c2d72013-08-21 10:40:16 -0700222 } else {
Narayan Kamathafd31e02013-12-03 13:16:03 +0000223 actualLen = ze.compressed_length;
Kenny Root0d6c2d72013-08-21 10:40:16 -0700224 }
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700225
Narayan Kamathafd31e02013-12-03 13:16:03 +0000226 FileMap* newMap = new FileMap();
227 if (!newMap->create(mFileName, fd, ze.offset, actualLen, true)) {
Narayan Kamath688ff4c2015-02-23 15:47:54 +0000228 delete newMap;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700229 return NULL;
230 }
231
232 return newMap;
233}
234
235/*
236 * Uncompress an entry, in its entirety, into the provided output buffer.
237 *
238 * This doesn't verify the data's CRC, which might be useful for
239 * uncompressed data. The caller should be able to manage it.
240 */
Narayan Kamathafd31e02013-12-03 13:16:03 +0000241bool ZipFileRO::uncompressEntry(ZipEntryRO entry, void* buffer, size_t size) const
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700242{
Narayan Kamathafd31e02013-12-03 13:16:03 +0000243 _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry);
244 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry),
245 (uint8_t*) buffer, size);
246 if (error) {
247 ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error));
Kenny Root0d6c2d72013-08-21 10:40:16 -0700248 return false;
249 }
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700250
Narayan Kamathafd31e02013-12-03 13:16:03 +0000251 return true;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700252}
253
254/*
255 * Uncompress an entry, in its entirety, to an open file descriptor.
256 *
257 * This doesn't verify the data's CRC, but probably should.
258 */
259bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const
260{
Narayan Kamathafd31e02013-12-03 13:16:03 +0000261 _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry);
262 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd);
263 if (error) {
264 ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error));
Kenny Root0d6c2d72013-08-21 10:40:16 -0700265 return false;
266 }
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700267
Narayan Kamathafd31e02013-12-03 13:16:03 +0000268 return true;
Mathias Agopian1f5762e2013-05-06 20:20:34 -0700269}