blob: 9cf7a09155d7d91f44e80eb402f27d8be4811d45 [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
Elliott Hughesf5a7a472011-10-07 14:31:02 -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 Carlstromb0460ea2011-07-29 10:08:05 -0700262 off_t data_offset = GetDataOffset();
263 if (data_offset == -1) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700264 LOG(WARNING) << "Zip: data_offset=" << data_offset;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700265 return false;
266 }
267 if (lseek(zip_archive_->fd_, data_offset, SEEK_SET) != data_offset) {
268 PLOG(WARNING) << "Zip: lseek to data at " << data_offset << " failed";
269 return false;
270 }
271
272 // TODO: this doesn't verify the data's CRC, but probably should (especially
273 // for uncompressed data).
274 switch (GetCompressionMethod()) {
275 case kCompressStored:
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700276 return CopyFdToMemory(begin, size, zip_archive_->fd_, GetUncompressedLength());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700277 case kCompressDeflated:
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700278 return InflateToMemory(begin, size, zip_archive_->fd_,
279 GetUncompressedLength(), GetCompressedLength());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700280 default:
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700281 LOG(WARNING) << "Zip: unknown compression method " << std::hex << GetCompressionMethod();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700282 return false;
283 }
284}
285
Brian Carlstrom4922e9d2013-07-09 17:18:47 -0700286MemMap* ZipEntry::ExtractToMemMap(const char* entry_filename) {
287 std::string name(entry_filename);
288 name += " extracted in memory from ";
289 name += entry_filename;
290 UniquePtr<MemMap> map(MemMap::MapAnonymous(name.c_str(),
291 NULL,
292 GetUncompressedLength(),
293 PROT_READ | PROT_WRITE));
294 if (map.get() == NULL) {
295 LOG(ERROR) << "Zip: mmap for '" << entry_filename << "' failed";
296 return NULL;
297 }
298
299 bool success = ExtractToMemory(map->Begin(), map->Size());
300 if (!success) {
301 LOG(ERROR) << "Zip: Failed to extract '" << entry_filename << "' to memory";
302 return NULL;
303 }
304
305 return map.release();
306}
307
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800308static void SetCloseOnExec(int fd) {
309 // This dance is more portable than Linux's O_CLOEXEC open(2) flag.
310 int flags = fcntl(fd, F_GETFD);
311 if (flags == -1) {
312 PLOG(WARNING) << "fcntl(" << fd << ", F_GETFD) failed";
313 return;
314 }
315 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
316 if (rc == -1) {
317 PLOG(WARNING) << "fcntl(" << fd << ", F_SETFD, " << flags << ") failed";
318 return;
319 }
320}
321
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700322ZipArchive* ZipArchive::Open(const std::string& filename) {
323 DCHECK(!filename.empty());
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800324 int fd = open(filename.c_str(), O_RDONLY, 0);
325 if (fd == -1) {
Brian Carlstrom0024d6c2011-08-09 08:26:12 -0700326 PLOG(WARNING) << "Unable to open '" << filename << "'";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700327 return NULL;
328 }
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800329 SetCloseOnExec(fd);
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800330 return OpenFromFd(fd);
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700331}
332
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800333ZipArchive* ZipArchive::OpenFromFd(int fd) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700334 UniquePtr<ZipArchive> zip_archive(new ZipArchive(fd));
335 if (zip_archive.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700336 return NULL;
337 }
338 if (!zip_archive->MapCentralDirectory()) {
339 zip_archive->Close();
340 return NULL;
341 }
342 if (!zip_archive->Parse()) {
343 zip_archive->Close();
344 return NULL;
345 }
346 return zip_archive.release();
347}
348
Brian Carlstroma6cc8932012-01-04 14:44:07 -0800349ZipEntry* ZipArchive::Find(const char* name) const {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700350 DCHECK(name != NULL);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700351 DirEntries::const_iterator it = dir_entries_.find(name);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700352 if (it == dir_entries_.end()) {
353 return NULL;
354 }
355 return new ZipEntry(this, (*it).second);
356}
357
358void ZipArchive::Close() {
359 if (fd_ != -1) {
360 close(fd_);
361 }
362 fd_ = -1;
363 num_entries_ = 0;
364 dir_offset_ = 0;
365}
366
367// Find the zip Central Directory and memory-map it.
368//
369// On success, returns true after populating fields from the EOCD area:
370// num_entries_
371// dir_offset_
372// dir_map_
373bool ZipArchive::MapCentralDirectory() {
374 /*
375 * Get and test file length.
376 */
377 off_t file_length = lseek(fd_, 0, SEEK_END);
378 if (file_length < kEOCDLen) {
379 LOG(WARNING) << "Zip: length " << file_length << " is too small to be zip";
380 return false;
381 }
382
383 // Perform the traditional EOCD snipe hunt.
384 //
385 // We're searching for the End of Central Directory magic number,
386 // which appears at the start of the EOCD block. It's followed by
387 // 18 bytes of EOCD stuff and up to 64KB of archive comment. We
388 // need to read the last part of the file into a buffer, dig through
389 // it to find the magic number, parse some values out, and use those
390 // to determine the extent of the CD.
391 //
392 // We start by pulling in the last part of the file.
393 size_t read_amount = kMaxEOCDSearch;
394 if (file_length < off_t(read_amount)) {
395 read_amount = file_length;
396 }
397
Elliott Hughes90a33692011-08-30 13:27:07 -0700398 UniquePtr<uint8_t[]> scan_buf(new uint8_t[read_amount]);
399 if (scan_buf.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700400 return false;
401 }
402
403 off_t search_start = file_length - read_amount;
404
405 if (lseek(fd_, search_start, SEEK_SET) != search_start) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700406 PLOG(WARNING) << "Zip: seek " << search_start << " failed";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700407 return false;
408 }
409 ssize_t actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), read_amount));
410 if (actual == -1) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700411 PLOG(WARNING) << "Zip: read " << read_amount << " failed";
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700412 return false;
413 }
414
415
416 // Scan backward for the EOCD magic. In an archive without a trailing
417 // comment, we'll find it on the first try. (We may want to consider
418 // doing an initial minimal read; if we don't find it, retry with a
419 // second read as above.)
420 int i;
421 for (i = read_amount - kEOCDLen; i >= 0; i--) {
422 if (scan_buf.get()[i] == 0x50 && Le32ToHost(&(scan_buf.get())[i]) == kEOCDSignature) {
423 break;
424 }
425 }
426 if (i < 0) {
427 LOG(WARNING) << "Zip: EOCD not found, not a zip file";
428 return false;
429 }
430
431 off_t eocd_offset = search_start + i;
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700432 const byte* eocd_ptr = scan_buf.get() + i;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700433
434 DCHECK(eocd_offset < file_length);
435
436 // Grab the CD offset and size, and the number of entries in the
437 // archive. Verify that they look reasonable.
438 uint16_t num_entries = Le16ToHost(eocd_ptr + kEOCDNumEntries);
439 uint32_t dir_size = Le32ToHost(eocd_ptr + kEOCDSize);
440 uint32_t dir_offset = Le32ToHost(eocd_ptr + kEOCDFileOffset);
441
442 if ((uint64_t) dir_offset + (uint64_t) dir_size > (uint64_t) eocd_offset) {
443 LOG(WARNING) << "Zip: bad offsets ("
444 << "dir=" << dir_offset << ", "
445 << "size=" << dir_size << ", "
446 << "eocd=" << eocd_offset << ")";
447 return false;
448 }
449 if (num_entries == 0) {
450 LOG(WARNING) << "Zip: empty archive?";
451 return false;
452 }
453
454 // It all looks good. Create a mapping for the CD.
Brian Carlstrom89521892011-12-07 22:05:07 -0800455 dir_map_.reset(MemMap::MapFile(dir_size, PROT_READ, MAP_SHARED, fd_, dir_offset));
Elliott Hughes90a33692011-08-30 13:27:07 -0700456 if (dir_map_.get() == NULL) {
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700457 return false;
458 }
459
460 num_entries_ = num_entries;
461 dir_offset_ = dir_offset;
462 return true;
463}
464
465bool ZipArchive::Parse() {
Ian Rogers30fab402012-01-23 15:43:46 -0800466 const byte* cd_ptr = dir_map_->Begin();
467 size_t cd_length = dir_map_->Size();
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700468
469 // Walk through the central directory, adding entries to the hash
470 // table and verifying values.
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700471 const byte* ptr = cd_ptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700472 for (int i = 0; i < num_entries_; i++) {
473 if (Le32ToHost(ptr) != kCDESignature) {
474 LOG(WARNING) << "Zip: missed a central dir sig (at " << i << ")";
475 return false;
476 }
477 if (ptr + kCDELen > cd_ptr + cd_length) {
478 LOG(WARNING) << "Zip: ran off the end (at " << i << ")";
479 return false;
480 }
481
482 int64_t local_hdr_offset = Le32ToHost(ptr + kCDELocalOffset);
483 if (local_hdr_offset >= dir_offset_) {
484 LOG(WARNING) << "Zip: bad LFH offset " << local_hdr_offset << " at entry " << i;
485 return false;
486 }
487
488 uint16_t filename_len = Le16ToHost(ptr + kCDENameLen);
489 uint16_t extra_len = Le16ToHost(ptr + kCDEExtraLen);
490 uint16_t comment_len = Le16ToHost(ptr + kCDECommentLen);
491
492 // add the CDE filename to the hash table
493 const char* name = reinterpret_cast<const char*>(ptr + kCDELen);
Elliott Hughesa0e18062012-04-13 15:59:59 -0700494 dir_entries_.Put(StringPiece(name, filename_len), ptr);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700495 ptr += kCDELen + filename_len + extra_len + comment_len;
496 if (ptr > cd_ptr + cd_length) {
497 LOG(WARNING) << "Zip: bad CD advance "
498 << "(" << ptr << " vs " << (cd_ptr + cd_length) << ") "
499 << "at entry " << i;
500 return false;
501 }
502 }
503 return true;
504}
505
506} // namespace art