blob: 69bc85b59a309f83e1586b9fb1bf9aff596fb1cb [file] [log] [blame]
Brian Carlstromb0460ea2011-07-29 10:08:05 -07001/*
2 * Copyright (C) 2008 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#include "zip_archive.h"
18
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070019#include <vector>
20
Brian Carlstromb0460ea2011-07-29 10:08:05 -070021#include <fcntl.h>
22#include <sys/stat.h>
23#include <sys/types.h>
24#include <unistd.h>
25
Elliott Hughes90a33692011-08-30 13:27:07 -070026#include "UniquePtr.h"
27
Brian Carlstromb0460ea2011-07-29 10:08:05 -070028namespace art {
29
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070030static const size_t kBufSize = 32 * KB;
31
Brian Carlstromb0460ea2011-07-29 10:08:05 -070032// Get 2 little-endian bytes.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070033static uint32_t Le16ToHost(const byte* src) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -070034 return ((src[0] << 0) |
35 (src[1] << 8));
36}
37
38// Get 4 little-endian bytes.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070039static uint32_t Le32ToHost(const byte* src) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -070040 return ((src[0] << 0) |
41 (src[1] << 8) |
42 (src[2] << 16) |
43 (src[3] << 24));
44}
45
46uint16_t ZipEntry::GetCompressionMethod() {
47 return Le16ToHost(ptr_ + ZipArchive::kCDEMethod);
48}
49
50uint32_t ZipEntry::GetCompressedLength() {
51 return Le32ToHost(ptr_ + ZipArchive::kCDECompLen);
52}
53
54uint32_t ZipEntry::GetUncompressedLength() {
55 return Le32ToHost(ptr_ + ZipArchive::kCDEUncompLen);
56}
57
58uint32_t ZipEntry::GetCrc32() {
59 return Le32ToHost(ptr_ + ZipArchive::kCDECRC);
60}
61
62off_t ZipEntry::GetDataOffset() {
63 // All we have is the offset to the Local File Header, which is
64 // variable size, so we have to read the contents of the struct to
65 // figure out where the actual data starts.
66
67 // We also need to make sure that the lengths are not so large that
68 // somebody trying to map the compressed or uncompressed data runs
69 // off the end of the mapped region.
70
71 off_t dir_offset = zip_archive_->dir_offset_;
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070072 int64_t lfh_offset = Le32ToHost(ptr_ + ZipArchive::kCDELocalOffset);
73 if (lfh_offset + ZipArchive::kLFHLen >= dir_offset) {
74 LOG(WARNING) << "Zip: bad LFH offset in zip";
Brian Carlstromb0460ea2011-07-29 10:08:05 -070075 return -1;
76 }
77
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070078 if (lseek(zip_archive_->fd_, lfh_offset, SEEK_SET) != lfh_offset) {
79 PLOG(WARNING) << "Zip: failed seeking to LFH at offset " << lfh_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070080 return -1;
81 }
82
83 uint8_t lfh_buf[ZipArchive::kLFHLen];
84 ssize_t actual = TEMP_FAILURE_RETRY(read(zip_archive_->fd_, lfh_buf, sizeof(lfh_buf)));
85 if (actual != sizeof(lfh_buf)) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070086 LOG(WARNING) << "Zip: failed reading LFH from offset " << lfh_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070087 return -1;
88 }
89
90 if (Le32ToHost(lfh_buf) != ZipArchive::kLFHSignature) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070091 LOG(WARNING) << "Zip: didn't find signature at start of LFH, offset " << lfh_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070092 return -1;
93 }
94
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070095 off_t data_offset = (lfh_offset + ZipArchive::kLFHLen
Brian Carlstromb0460ea2011-07-29 10:08:05 -070096 + Le16ToHost(lfh_buf + ZipArchive::kLFHNameLen)
97 + Le16ToHost(lfh_buf + ZipArchive::kLFHExtraLen));
98 if (data_offset >= dir_offset) {
99 LOG(WARNING) << "Zip: bad data offset " << data_offset << " in zip";
100 return -1;
101 }
102
103 // check lengths
104
105 if (static_cast<off_t>(data_offset + GetCompressedLength()) > dir_offset) {
106 LOG(WARNING) << "Zip: bad compressed length in zip "
107 << "(" << data_offset << " + " << GetCompressedLength()
108 << " > " << dir_offset << ")";
109 return -1;
110 }
111
112 if (GetCompressionMethod() == kCompressStored
113 && static_cast<off_t>(data_offset + GetUncompressedLength()) > dir_offset) {
114 LOG(WARNING) << "Zip: bad uncompressed length in zip "
115 << "(" << data_offset << " + " << GetUncompressedLength()
116 << " > " << dir_offset << ")";
117 return -1;
118 }
119
120 return data_offset;
121}
122
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700123static bool CopyFdToFile(File& file, int in, size_t count) {
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700124 std::vector<uint8_t> buf(kBufSize);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700125 while (count != 0) {
126 size_t bytes_to_read = (count > kBufSize) ? kBufSize : count;
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700127 ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read));
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700128 if (actual != static_cast<ssize_t>(bytes_to_read)) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700129 PLOG(WARNING) << "Zip: short read writing to file " << file.name();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700130 return false;
131 }
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700132 if (!file.WriteFully(&buf[0], bytes_to_read)) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700133 PLOG(WARNING) << "Zip: failed to write to file " << file.name();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700134 return false;
135 }
136 count -= bytes_to_read;
137 }
138 return true;
139}
140
141class ZStream {
142 public:
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700143 ZStream(byte* write_buf, size_t write_buf_size) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700144 // Initialize the zlib stream struct.
145 memset(&zstream_, 0, sizeof(zstream_));
146 zstream_.zalloc = Z_NULL;
147 zstream_.zfree = Z_NULL;
148 zstream_.opaque = Z_NULL;
149 zstream_.next_in = NULL;
150 zstream_.avail_in = 0;
151 zstream_.next_out = reinterpret_cast<Bytef*>(write_buf);
152 zstream_.avail_out = write_buf_size;
153 zstream_.data_type = Z_UNKNOWN;
154 }
155
156 z_stream& Get() {
157 return zstream_;
158 }
159
160 ~ZStream() {
161 inflateEnd(&zstream_);
162 }
163 private:
164 z_stream zstream_;
165};
166
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700167static bool InflateToFile(File& out, int in, size_t uncompressed_length, size_t compressed_length) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700168 UniquePtr<uint8_t[]> read_buf(new uint8_t[kBufSize]);
169 UniquePtr<uint8_t[]> write_buf(new uint8_t[kBufSize]);
170 if (read_buf.get() == NULL || write_buf.get() == NULL) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700171 LOG(WARNING) << "Zip: failed to alloctate buffer to inflate to file " << out.name();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700172 return false;
173 }
174
Elliott Hughes90a33692011-08-30 13:27:07 -0700175 UniquePtr<ZStream> zstream(new ZStream(write_buf.get(), kBufSize));
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700176
177 // Use the undocumented "negative window bits" feature to tell zlib
178 // that there's no zlib header waiting for it.
179 int zerr = inflateInit2(&zstream->Get(), -MAX_WBITS);
180 if (zerr != Z_OK) {
181 if (zerr == Z_VERSION_ERROR) {
182 LOG(ERROR) << "Installed zlib is not compatible with linked version (" << ZLIB_VERSION << ")";
183 } else {
184 LOG(WARNING) << "Call to inflateInit2 failed (zerr=" << zerr << ")";
185 }
186 return false;
187 }
188
189 size_t remaining = compressed_length;
190 do {
191 // read as much as we can
192 if (zstream->Get().avail_in == 0) {
193 size_t bytes_to_read = (remaining > kBufSize) ? kBufSize : remaining;
194
195 ssize_t actual = TEMP_FAILURE_RETRY(read(in, read_buf.get(), bytes_to_read));
196 if (actual != static_cast<ssize_t>(bytes_to_read)) {
197 LOG(WARNING) << "Zip: inflate read failed (" << actual << " vs " << bytes_to_read << ")";
198 return false;
199 }
200 remaining -= bytes_to_read;
201 zstream->Get().next_in = read_buf.get();
202 zstream->Get().avail_in = bytes_to_read;
203 }
204
205 // uncompress the data
206 zerr = inflate(&zstream->Get(), Z_NO_FLUSH);
207 if (zerr != Z_OK && zerr != Z_STREAM_END) {
208 LOG(WARNING) << "Zip: inflate zerr=" << zerr
209 << " (nIn=" << zstream->Get().next_in
210 << " aIn=" << zstream->Get().avail_in
211 << " nOut=" << zstream->Get().next_out
212 << " aOut=" << zstream->Get().avail_out
213 << ")";
214 return false;
215 }
216
217 // write when we're full or when we're done
218 if (zstream->Get().avail_out == 0 ||
219 (zerr == Z_STREAM_END && zstream->Get().avail_out != kBufSize)) {
220 size_t bytes_to_write = zstream->Get().next_out - write_buf.get();
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700221 if (!out.WriteFully(write_buf.get(), bytes_to_write)) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700222 PLOG(WARNING) << "Zip: failed to write to file " << out.name();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700223 return false;
224 }
225 zstream->Get().next_out = write_buf.get();
226 zstream->Get().avail_out = kBufSize;
227 }
228 } while (zerr == Z_OK);
229
Elliott Hughesf5a7a472011-10-07 14:31:02 -0700230 DCHECK_EQ(zerr, Z_STREAM_END); // other errors should've been caught
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700231
232 // paranoia
233 if (zstream->Get().total_out != uncompressed_length) {
234 LOG(WARNING) << "Zip: size mismatch on inflated file ("
235 << zstream->Get().total_out << " vs " << uncompressed_length << ")";
236 return false;
237 }
238
239 return true;
240}
241
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700242bool ZipEntry::Extract(File& file) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700243 off_t data_offset = GetDataOffset();
244 if (data_offset == -1) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700245 LOG(WARNING) << "Zip: data_offset=" << data_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700246 return false;
247 }
248 if (lseek(zip_archive_->fd_, data_offset, SEEK_SET) != data_offset) {
249 PLOG(WARNING) << "Zip: lseek to data at " << data_offset << " failed";
250 return false;
251 }
252
253 // TODO: this doesn't verify the data's CRC, but probably should (especially
254 // for uncompressed data).
255 switch (GetCompressionMethod()) {
256 case kCompressStored:
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700257 return CopyFdToFile(file, zip_archive_->fd_, GetUncompressedLength());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700258 case kCompressDeflated:
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700259 return InflateToFile(file, zip_archive_->fd_, GetUncompressedLength(), GetCompressedLength());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700260 default:
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700261 LOG(WARNING) << "Zip: unknown compression method " << std::hex << GetCompressionMethod();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700262 return false;
263 }
264}
265
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700266ZipArchive* ZipArchive::Open(const std::string& filename) {
267 DCHECK(!filename.empty());
Brian Carlstrom0024d6c2011-08-09 08:26:12 -0700268 int fd = open(filename.c_str(), O_RDONLY | O_CLOEXEC, 0);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700269 if (fd < 0) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -0700270 PLOG(WARNING) << "Unable to open '" << filename << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700271 return NULL;
272 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700273 return Open(fd);
274}
275
276ZipArchive* ZipArchive::Open(int fd) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700277 UniquePtr<ZipArchive> zip_archive(new ZipArchive(fd));
278 if (zip_archive.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700279 return NULL;
280 }
281 if (!zip_archive->MapCentralDirectory()) {
282 zip_archive->Close();
283 return NULL;
284 }
285 if (!zip_archive->Parse()) {
286 zip_archive->Close();
287 return NULL;
288 }
289 return zip_archive.release();
290}
291
292ZipEntry* ZipArchive::Find(const char* name) {
293 DCHECK(name != NULL);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700294 DirEntries::const_iterator it = dir_entries_.find(name);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700295 if (it == dir_entries_.end()) {
296 return NULL;
297 }
298 return new ZipEntry(this, (*it).second);
299}
300
301void ZipArchive::Close() {
302 if (fd_ != -1) {
303 close(fd_);
304 }
305 fd_ = -1;
306 num_entries_ = 0;
307 dir_offset_ = 0;
308}
309
310// Find the zip Central Directory and memory-map it.
311//
312// On success, returns true after populating fields from the EOCD area:
313// num_entries_
314// dir_offset_
315// dir_map_
316bool ZipArchive::MapCentralDirectory() {
317 /*
318 * Get and test file length.
319 */
320 off_t file_length = lseek(fd_, 0, SEEK_END);
321 if (file_length < kEOCDLen) {
322 LOG(WARNING) << "Zip: length " << file_length << " is too small to be zip";
323 return false;
324 }
325
326 // Perform the traditional EOCD snipe hunt.
327 //
328 // We're searching for the End of Central Directory magic number,
329 // which appears at the start of the EOCD block. It's followed by
330 // 18 bytes of EOCD stuff and up to 64KB of archive comment. We
331 // need to read the last part of the file into a buffer, dig through
332 // it to find the magic number, parse some values out, and use those
333 // to determine the extent of the CD.
334 //
335 // We start by pulling in the last part of the file.
336 size_t read_amount = kMaxEOCDSearch;
337 if (file_length < off_t(read_amount)) {
338 read_amount = file_length;
339 }
340
Elliott Hughes90a33692011-08-30 13:27:07 -0700341 UniquePtr<uint8_t[]> scan_buf(new uint8_t[read_amount]);
342 if (scan_buf.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700343 return false;
344 }
345
346 off_t search_start = file_length - read_amount;
347
348 if (lseek(fd_, search_start, SEEK_SET) != search_start) {
349 LOG(WARNING) << "Zip: seek " << search_start << " failed: " << strerror(errno);
350 return false;
351 }
352 ssize_t actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), read_amount));
353 if (actual == -1) {
354 LOG(WARNING) << "Zip: read " << read_amount << " failed: " << strerror(errno);
355 return false;
356 }
357
358
359 // Scan backward for the EOCD magic. In an archive without a trailing
360 // comment, we'll find it on the first try. (We may want to consider
361 // doing an initial minimal read; if we don't find it, retry with a
362 // second read as above.)
363 int i;
364 for (i = read_amount - kEOCDLen; i >= 0; i--) {
365 if (scan_buf.get()[i] == 0x50 && Le32ToHost(&(scan_buf.get())[i]) == kEOCDSignature) {
366 break;
367 }
368 }
369 if (i < 0) {
370 LOG(WARNING) << "Zip: EOCD not found, not a zip file";
371 return false;
372 }
373
374 off_t eocd_offset = search_start + i;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700375 const byte* eocd_ptr = scan_buf.get() + i;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700376
377 DCHECK(eocd_offset < file_length);
378
379 // Grab the CD offset and size, and the number of entries in the
380 // archive. Verify that they look reasonable.
381 uint16_t num_entries = Le16ToHost(eocd_ptr + kEOCDNumEntries);
382 uint32_t dir_size = Le32ToHost(eocd_ptr + kEOCDSize);
383 uint32_t dir_offset = Le32ToHost(eocd_ptr + kEOCDFileOffset);
384
385 if ((uint64_t) dir_offset + (uint64_t) dir_size > (uint64_t) eocd_offset) {
386 LOG(WARNING) << "Zip: bad offsets ("
387 << "dir=" << dir_offset << ", "
388 << "size=" << dir_size << ", "
389 << "eocd=" << eocd_offset << ")";
390 return false;
391 }
392 if (num_entries == 0) {
393 LOG(WARNING) << "Zip: empty archive?";
394 return false;
395 }
396
397 // It all looks good. Create a mapping for the CD.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700398 dir_map_.reset(MemMap::Map(dir_size, PROT_READ, MAP_SHARED, fd_, dir_offset));
Elliott Hughes90a33692011-08-30 13:27:07 -0700399 if (dir_map_.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700400 return false;
401 }
402
403 num_entries_ = num_entries;
404 dir_offset_ = dir_offset;
405 return true;
406}
407
408bool ZipArchive::Parse() {
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700409 const byte* cd_ptr = dir_map_->GetAddress();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700410 size_t cd_length = dir_map_->GetLength();
411
412 // Walk through the central directory, adding entries to the hash
413 // table and verifying values.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700414 const byte* ptr = cd_ptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700415 for (int i = 0; i < num_entries_; i++) {
416 if (Le32ToHost(ptr) != kCDESignature) {
417 LOG(WARNING) << "Zip: missed a central dir sig (at " << i << ")";
418 return false;
419 }
420 if (ptr + kCDELen > cd_ptr + cd_length) {
421 LOG(WARNING) << "Zip: ran off the end (at " << i << ")";
422 return false;
423 }
424
425 int64_t local_hdr_offset = Le32ToHost(ptr + kCDELocalOffset);
426 if (local_hdr_offset >= dir_offset_) {
427 LOG(WARNING) << "Zip: bad LFH offset " << local_hdr_offset << " at entry " << i;
428 return false;
429 }
430
431 uint16_t filename_len = Le16ToHost(ptr + kCDENameLen);
432 uint16_t extra_len = Le16ToHost(ptr + kCDEExtraLen);
433 uint16_t comment_len = Le16ToHost(ptr + kCDECommentLen);
434
435 // add the CDE filename to the hash table
436 const char* name = reinterpret_cast<const char*>(ptr + kCDELen);
437 bool success = dir_entries_.insert(std::make_pair(StringPiece(name, filename_len), ptr)).second;
438 if (!success) {
439 return false;
440 }
441 ptr += kCDELen + filename_len + extra_len + comment_len;
442 if (ptr > cd_ptr + cd_length) {
443 LOG(WARNING) << "Zip: bad CD advance "
444 << "(" << ptr << " vs " << (cd_ptr + cd_length) << ") "
445 << "at entry " << i;
446 return false;
447 }
448 }
449 return true;
450}
451
452} // namespace art