blob: fc26f0f3e1ded45e29d2f64e5fc074af8072f794 [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 Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070027#include "UniquePtr.h"
28
Brian Carlstromb0460ea2011-07-29 10:08:05 -070029namespace art {
30
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070031static const size_t kBufSize = 32 * KB;
32
Brian Carlstromb0460ea2011-07-29 10:08:05 -070033// Get 2 little-endian bytes.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070034static uint32_t Le16ToHost(const byte* src) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -070035 return ((src[0] << 0) |
36 (src[1] << 8));
37}
38
39// Get 4 little-endian bytes.
Brian Carlstromdb4d5402011-08-09 12:18:28 -070040static uint32_t Le32ToHost(const byte* src) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -070041 return ((src[0] << 0) |
42 (src[1] << 8) |
43 (src[2] << 16) |
44 (src[3] << 24));
45}
46
47uint16_t ZipEntry::GetCompressionMethod() {
48 return Le16ToHost(ptr_ + ZipArchive::kCDEMethod);
49}
50
51uint32_t ZipEntry::GetCompressedLength() {
52 return Le32ToHost(ptr_ + ZipArchive::kCDECompLen);
53}
54
55uint32_t ZipEntry::GetUncompressedLength() {
56 return Le32ToHost(ptr_ + ZipArchive::kCDEUncompLen);
57}
58
59uint32_t ZipEntry::GetCrc32() {
60 return Le32ToHost(ptr_ + ZipArchive::kCDECRC);
61}
62
63off_t ZipEntry::GetDataOffset() {
64 // All we have is the offset to the Local File Header, which is
65 // variable size, so we have to read the contents of the struct to
66 // figure out where the actual data starts.
67
68 // We also need to make sure that the lengths are not so large that
69 // somebody trying to map the compressed or uncompressed data runs
70 // off the end of the mapped region.
71
72 off_t dir_offset = zip_archive_->dir_offset_;
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070073 int64_t lfh_offset = Le32ToHost(ptr_ + ZipArchive::kCDELocalOffset);
74 if (lfh_offset + ZipArchive::kLFHLen >= dir_offset) {
75 LOG(WARNING) << "Zip: bad LFH offset in zip";
Brian Carlstromb0460ea2011-07-29 10:08:05 -070076 return -1;
77 }
78
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070079 if (lseek(zip_archive_->fd_, lfh_offset, SEEK_SET) != lfh_offset) {
80 PLOG(WARNING) << "Zip: failed seeking to LFH at offset " << lfh_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070081 return -1;
82 }
83
84 uint8_t lfh_buf[ZipArchive::kLFHLen];
85 ssize_t actual = TEMP_FAILURE_RETRY(read(zip_archive_->fd_, lfh_buf, sizeof(lfh_buf)));
86 if (actual != sizeof(lfh_buf)) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070087 LOG(WARNING) << "Zip: failed reading LFH from offset " << lfh_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070088 return -1;
89 }
90
91 if (Le32ToHost(lfh_buf) != ZipArchive::kLFHSignature) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070092 LOG(WARNING) << "Zip: didn't find signature at start of LFH, offset " << lfh_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070093 return -1;
94 }
95
Brian Carlstrom0024d6c2011-08-09 08:26:12 -070096 off_t data_offset = (lfh_offset + ZipArchive::kLFHLen
Brian Carlstromb0460ea2011-07-29 10:08:05 -070097 + Le16ToHost(lfh_buf + ZipArchive::kLFHNameLen)
98 + Le16ToHost(lfh_buf + ZipArchive::kLFHExtraLen));
99 if (data_offset >= dir_offset) {
100 LOG(WARNING) << "Zip: bad data offset " << data_offset << " in zip";
101 return -1;
102 }
103
104 // check lengths
105
106 if (static_cast<off_t>(data_offset + GetCompressedLength()) > dir_offset) {
107 LOG(WARNING) << "Zip: bad compressed length in zip "
108 << "(" << data_offset << " + " << GetCompressedLength()
109 << " > " << dir_offset << ")";
110 return -1;
111 }
112
113 if (GetCompressionMethod() == kCompressStored
114 && static_cast<off_t>(data_offset + GetUncompressedLength()) > dir_offset) {
115 LOG(WARNING) << "Zip: bad uncompressed length in zip "
116 << "(" << data_offset << " + " << GetUncompressedLength()
117 << " > " << dir_offset << ")";
118 return -1;
119 }
120
121 return data_offset;
122}
123
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700124static bool CopyFdToMemory(uint8_t* begin, size_t size, int in, size_t count) {
125 uint8_t* dst = begin;
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700126 std::vector<uint8_t> buf(kBufSize);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700127 while (count != 0) {
128 size_t bytes_to_read = (count > kBufSize) ? kBufSize : count;
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700129 ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read));
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700130 if (actual != static_cast<ssize_t>(bytes_to_read)) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800131 PLOG(WARNING) << "Zip: short read";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700132 return false;
133 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800134 memcpy(dst, &buf[0], bytes_to_read);
135 dst += bytes_to_read;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700136 count -= bytes_to_read;
137 }
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700138 DCHECK_EQ(dst, begin + size);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700139 return true;
140}
141
142class ZStream {
143 public:
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700144 ZStream(byte* write_buf, size_t write_buf_size) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700145 // Initialize the zlib stream struct.
146 memset(&zstream_, 0, sizeof(zstream_));
147 zstream_.zalloc = Z_NULL;
148 zstream_.zfree = Z_NULL;
149 zstream_.opaque = Z_NULL;
150 zstream_.next_in = NULL;
151 zstream_.avail_in = 0;
152 zstream_.next_out = reinterpret_cast<Bytef*>(write_buf);
153 zstream_.avail_out = write_buf_size;
154 zstream_.data_type = Z_UNKNOWN;
155 }
156
157 z_stream& Get() {
158 return zstream_;
159 }
160
161 ~ZStream() {
162 inflateEnd(&zstream_);
163 }
164 private:
165 z_stream zstream_;
166};
167
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700168static bool InflateToMemory(uint8_t* begin, size_t size,
169 int in, size_t uncompressed_length, size_t compressed_length) {
170 uint8_t* dst = begin;
Elliott Hughes90a33692011-08-30 13:27:07 -0700171 UniquePtr<uint8_t[]> read_buf(new uint8_t[kBufSize]);
172 UniquePtr<uint8_t[]> write_buf(new uint8_t[kBufSize]);
173 if (read_buf.get() == NULL || write_buf.get() == NULL) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800174 LOG(WARNING) << "Zip: failed to allocate buffer to inflate";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700175 return false;
176 }
177
Elliott Hughes90a33692011-08-30 13:27:07 -0700178 UniquePtr<ZStream> zstream(new ZStream(write_buf.get(), kBufSize));
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700179
180 // Use the undocumented "negative window bits" feature to tell zlib
181 // that there's no zlib header waiting for it.
182 int zerr = inflateInit2(&zstream->Get(), -MAX_WBITS);
183 if (zerr != Z_OK) {
184 if (zerr == Z_VERSION_ERROR) {
185 LOG(ERROR) << "Installed zlib is not compatible with linked version (" << ZLIB_VERSION << ")";
186 } else {
187 LOG(WARNING) << "Call to inflateInit2 failed (zerr=" << zerr << ")";
188 }
189 return false;
190 }
191
192 size_t remaining = compressed_length;
193 do {
194 // read as much as we can
195 if (zstream->Get().avail_in == 0) {
196 size_t bytes_to_read = (remaining > kBufSize) ? kBufSize : remaining;
197
198 ssize_t actual = TEMP_FAILURE_RETRY(read(in, read_buf.get(), bytes_to_read));
199 if (actual != static_cast<ssize_t>(bytes_to_read)) {
200 LOG(WARNING) << "Zip: inflate read failed (" << actual << " vs " << bytes_to_read << ")";
201 return false;
202 }
203 remaining -= bytes_to_read;
204 zstream->Get().next_in = read_buf.get();
205 zstream->Get().avail_in = bytes_to_read;
206 }
207
208 // uncompress the data
209 zerr = inflate(&zstream->Get(), Z_NO_FLUSH);
210 if (zerr != Z_OK && zerr != Z_STREAM_END) {
211 LOG(WARNING) << "Zip: inflate zerr=" << zerr
Elliott Hughes24edeb52012-06-18 15:29:46 -0700212 << " (next_in=" << zstream->Get().next_in
213 << " avail_in=" << zstream->Get().avail_in
214 << " next_out=" << zstream->Get().next_out
215 << " avail_out=" << zstream->Get().avail_out
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700216 << ")";
217 return false;
218 }
219
220 // write when we're full or when we're done
221 if (zstream->Get().avail_out == 0 ||
222 (zerr == Z_STREAM_END && zstream->Get().avail_out != kBufSize)) {
223 size_t bytes_to_write = zstream->Get().next_out - write_buf.get();
Brian Carlstrom89521892011-12-07 22:05:07 -0800224 memcpy(dst, write_buf.get(), bytes_to_write);
225 dst += bytes_to_write;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700226 zstream->Get().next_out = write_buf.get();
227 zstream->Get().avail_out = kBufSize;
228 }
229 } while (zerr == Z_OK);
230
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700231 DCHECK_EQ(zerr, Z_STREAM_END); // other errors should've been caught
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700232
233 // paranoia
234 if (zstream->Get().total_out != uncompressed_length) {
235 LOG(WARNING) << "Zip: size mismatch on inflated file ("
236 << zstream->Get().total_out << " vs " << uncompressed_length << ")";
237 return false;
238 }
239
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700240 DCHECK_EQ(dst, begin + size);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700241 return true;
242}
243
Brian Carlstrom89521892011-12-07 22:05:07 -0800244bool ZipEntry::ExtractToFile(File& file) {
245 uint32_t length = GetUncompressedLength();
246 int result = TEMP_FAILURE_RETRY(ftruncate(file.Fd(), length));
247 if (result == -1) {
Elliott Hughes76160052012-12-12 16:31:20 -0800248 PLOG(WARNING) << "Zip: failed to ftruncate " << file.GetPath() << " to length " << length;
Brian Carlstrom89521892011-12-07 22:05:07 -0800249 return false;
250 }
251
252 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ | PROT_WRITE, MAP_SHARED, file.Fd(), 0));
253 if (map.get() == NULL) {
Elliott Hughes76160052012-12-12 16:31:20 -0800254 LOG(WARNING) << "Zip: failed to mmap space for " << file.GetPath();
Brian Carlstrom89521892011-12-07 22:05:07 -0800255 return false;
256 }
257
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700258 return ExtractToMemory(map->Begin(), map->Size());
Brian Carlstrom89521892011-12-07 22:05:07 -0800259}
260
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700261bool ZipEntry::ExtractToMemory(uint8_t* begin, size_t size) {
Brian Carlstromafa8ff62013-07-26 15:58:56 -0700262 // If size is zero, data offset will be meaningless, so bail out early.
263 if (size == 0) {
264 return true;
265 }
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700266 off_t data_offset = GetDataOffset();
267 if (data_offset == -1) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700268 LOG(WARNING) << "Zip: data_offset=" << data_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700269 return false;
270 }
271 if (lseek(zip_archive_->fd_, data_offset, SEEK_SET) != data_offset) {
272 PLOG(WARNING) << "Zip: lseek to data at " << data_offset << " failed";
273 return false;
274 }
275
276 // TODO: this doesn't verify the data's CRC, but probably should (especially
277 // for uncompressed data).
278 switch (GetCompressionMethod()) {
279 case kCompressStored:
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700280 return CopyFdToMemory(begin, size, zip_archive_->fd_, GetUncompressedLength());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700281 case kCompressDeflated:
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700282 return InflateToMemory(begin, size, zip_archive_->fd_,
283 GetUncompressedLength(), GetCompressedLength());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700284 default:
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700285 LOG(WARNING) << "Zip: unknown compression method " << std::hex << GetCompressionMethod();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700286 return false;
287 }
288}
289
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700290MemMap* ZipEntry::ExtractToMemMap(const char* entry_filename) {
291 std::string name(entry_filename);
292 name += " extracted in memory from ";
293 name += entry_filename;
294 UniquePtr<MemMap> map(MemMap::MapAnonymous(name.c_str(),
295 NULL,
296 GetUncompressedLength(),
297 PROT_READ | PROT_WRITE));
298 if (map.get() == NULL) {
299 LOG(ERROR) << "Zip: mmap for '" << entry_filename << "' failed";
300 return NULL;
301 }
302
303 bool success = ExtractToMemory(map->Begin(), map->Size());
304 if (!success) {
305 LOG(ERROR) << "Zip: Failed to extract '" << entry_filename << "' to memory";
306 return NULL;
307 }
308
309 return map.release();
310}
311
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800312static void SetCloseOnExec(int fd) {
313 // This dance is more portable than Linux's O_CLOEXEC open(2) flag.
314 int flags = fcntl(fd, F_GETFD);
315 if (flags == -1) {
316 PLOG(WARNING) << "fcntl(" << fd << ", F_GETFD) failed";
317 return;
318 }
319 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
320 if (rc == -1) {
321 PLOG(WARNING) << "fcntl(" << fd << ", F_SETFD, " << flags << ") failed";
322 return;
323 }
324}
325
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700326ZipArchive* ZipArchive::Open(const std::string& filename) {
327 DCHECK(!filename.empty());
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800328 int fd = open(filename.c_str(), O_RDONLY, 0);
329 if (fd == -1) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -0700330 PLOG(WARNING) << "Unable to open '" << filename << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700331 return NULL;
332 }
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800333 SetCloseOnExec(fd);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800334 return OpenFromFd(fd);
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700335}
336
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800337ZipArchive* ZipArchive::OpenFromFd(int fd) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700338 UniquePtr<ZipArchive> zip_archive(new ZipArchive(fd));
339 if (zip_archive.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700340 return NULL;
341 }
342 if (!zip_archive->MapCentralDirectory()) {
343 zip_archive->Close();
344 return NULL;
345 }
346 if (!zip_archive->Parse()) {
347 zip_archive->Close();
348 return NULL;
349 }
350 return zip_archive.release();
351}
352
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800353ZipEntry* ZipArchive::Find(const char* name) const {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700354 DCHECK(name != NULL);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700355 DirEntries::const_iterator it = dir_entries_.find(name);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700356 if (it == dir_entries_.end()) {
357 return NULL;
358 }
359 return new ZipEntry(this, (*it).second);
360}
361
362void ZipArchive::Close() {
363 if (fd_ != -1) {
364 close(fd_);
365 }
366 fd_ = -1;
367 num_entries_ = 0;
368 dir_offset_ = 0;
369}
370
371// Find the zip Central Directory and memory-map it.
372//
373// On success, returns true after populating fields from the EOCD area:
374// num_entries_
375// dir_offset_
376// dir_map_
377bool ZipArchive::MapCentralDirectory() {
378 /*
379 * Get and test file length.
380 */
381 off_t file_length = lseek(fd_, 0, SEEK_END);
382 if (file_length < kEOCDLen) {
383 LOG(WARNING) << "Zip: length " << file_length << " is too small to be zip";
384 return false;
385 }
386
387 // Perform the traditional EOCD snipe hunt.
388 //
389 // We're searching for the End of Central Directory magic number,
390 // which appears at the start of the EOCD block. It's followed by
391 // 18 bytes of EOCD stuff and up to 64KB of archive comment. We
392 // need to read the last part of the file into a buffer, dig through
393 // it to find the magic number, parse some values out, and use those
394 // to determine the extent of the CD.
395 //
396 // We start by pulling in the last part of the file.
397 size_t read_amount = kMaxEOCDSearch;
398 if (file_length < off_t(read_amount)) {
399 read_amount = file_length;
400 }
401
Elliott Hughes90a33692011-08-30 13:27:07 -0700402 UniquePtr<uint8_t[]> scan_buf(new uint8_t[read_amount]);
403 if (scan_buf.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700404 return false;
405 }
406
407 off_t search_start = file_length - read_amount;
408
409 if (lseek(fd_, search_start, SEEK_SET) != search_start) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700410 PLOG(WARNING) << "Zip: seek " << search_start << " failed";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700411 return false;
412 }
413 ssize_t actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), read_amount));
414 if (actual == -1) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700415 PLOG(WARNING) << "Zip: read " << read_amount << " failed";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700416 return false;
417 }
418
419
420 // Scan backward for the EOCD magic. In an archive without a trailing
421 // comment, we'll find it on the first try. (We may want to consider
422 // doing an initial minimal read; if we don't find it, retry with a
423 // second read as above.)
424 int i;
425 for (i = read_amount - kEOCDLen; i >= 0; i--) {
426 if (scan_buf.get()[i] == 0x50 && Le32ToHost(&(scan_buf.get())[i]) == kEOCDSignature) {
427 break;
428 }
429 }
430 if (i < 0) {
431 LOG(WARNING) << "Zip: EOCD not found, not a zip file";
432 return false;
433 }
434
435 off_t eocd_offset = search_start + i;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700436 const byte* eocd_ptr = scan_buf.get() + i;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700437
438 DCHECK(eocd_offset < file_length);
439
440 // Grab the CD offset and size, and the number of entries in the
441 // archive. Verify that they look reasonable.
442 uint16_t num_entries = Le16ToHost(eocd_ptr + kEOCDNumEntries);
443 uint32_t dir_size = Le32ToHost(eocd_ptr + kEOCDSize);
444 uint32_t dir_offset = Le32ToHost(eocd_ptr + kEOCDFileOffset);
445
446 if ((uint64_t) dir_offset + (uint64_t) dir_size > (uint64_t) eocd_offset) {
447 LOG(WARNING) << "Zip: bad offsets ("
448 << "dir=" << dir_offset << ", "
449 << "size=" << dir_size << ", "
450 << "eocd=" << eocd_offset << ")";
451 return false;
452 }
453 if (num_entries == 0) {
454 LOG(WARNING) << "Zip: empty archive?";
455 return false;
456 }
457
458 // It all looks good. Create a mapping for the CD.
Brian Carlstrom89521892011-12-07 22:05:07 -0800459 dir_map_.reset(MemMap::MapFile(dir_size, PROT_READ, MAP_SHARED, fd_, dir_offset));
Elliott Hughes90a33692011-08-30 13:27:07 -0700460 if (dir_map_.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700461 return false;
462 }
463
464 num_entries_ = num_entries;
465 dir_offset_ = dir_offset;
466 return true;
467}
468
469bool ZipArchive::Parse() {
Ian Rogers30fab402012-01-23 15:43:46 -0800470 const byte* cd_ptr = dir_map_->Begin();
471 size_t cd_length = dir_map_->Size();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700472
473 // Walk through the central directory, adding entries to the hash
474 // table and verifying values.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700475 const byte* ptr = cd_ptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700476 for (int i = 0; i < num_entries_; i++) {
477 if (Le32ToHost(ptr) != kCDESignature) {
478 LOG(WARNING) << "Zip: missed a central dir sig (at " << i << ")";
479 return false;
480 }
481 if (ptr + kCDELen > cd_ptr + cd_length) {
482 LOG(WARNING) << "Zip: ran off the end (at " << i << ")";
483 return false;
484 }
485
486 int64_t local_hdr_offset = Le32ToHost(ptr + kCDELocalOffset);
487 if (local_hdr_offset >= dir_offset_) {
488 LOG(WARNING) << "Zip: bad LFH offset " << local_hdr_offset << " at entry " << i;
489 return false;
490 }
491
492 uint16_t filename_len = Le16ToHost(ptr + kCDENameLen);
493 uint16_t extra_len = Le16ToHost(ptr + kCDEExtraLen);
494 uint16_t comment_len = Le16ToHost(ptr + kCDECommentLen);
495
496 // add the CDE filename to the hash table
497 const char* name = reinterpret_cast<const char*>(ptr + kCDELen);
Elliott Hughesa0e18062012-04-13 15:59:59 -0700498 dir_entries_.Put(StringPiece(name, filename_len), ptr);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700499 ptr += kCDELen + filename_len + extra_len + comment_len;
500 if (ptr > cd_ptr + cd_length) {
501 LOG(WARNING) << "Zip: bad CD advance "
502 << "(" << ptr << " vs " << (cd_ptr + cd_length) << ") "
503 << "at entry " << i;
504 return false;
505 }
506 }
507 return true;
508}
509
510} // namespace art