Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 1 | /* |
| 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 Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 19 | #include <vector> |
| 20 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 21 | #include <fcntl.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/types.h> |
| 24 | #include <unistd.h> |
| 25 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 26 | #include "UniquePtr.h" |
| 27 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 28 | namespace art { |
| 29 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 30 | static const size_t kBufSize = 32 * KB; |
| 31 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 32 | // Get 2 little-endian bytes. |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 33 | static uint32_t Le16ToHost(const byte* src) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 34 | return ((src[0] << 0) | |
| 35 | (src[1] << 8)); |
| 36 | } |
| 37 | |
| 38 | // Get 4 little-endian bytes. |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 39 | static uint32_t Le32ToHost(const byte* src) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 40 | return ((src[0] << 0) | |
| 41 | (src[1] << 8) | |
| 42 | (src[2] << 16) | |
| 43 | (src[3] << 24)); |
| 44 | } |
| 45 | |
| 46 | uint16_t ZipEntry::GetCompressionMethod() { |
| 47 | return Le16ToHost(ptr_ + ZipArchive::kCDEMethod); |
| 48 | } |
| 49 | |
| 50 | uint32_t ZipEntry::GetCompressedLength() { |
| 51 | return Le32ToHost(ptr_ + ZipArchive::kCDECompLen); |
| 52 | } |
| 53 | |
| 54 | uint32_t ZipEntry::GetUncompressedLength() { |
| 55 | return Le32ToHost(ptr_ + ZipArchive::kCDEUncompLen); |
| 56 | } |
| 57 | |
| 58 | uint32_t ZipEntry::GetCrc32() { |
| 59 | return Le32ToHost(ptr_ + ZipArchive::kCDECRC); |
| 60 | } |
| 61 | |
| 62 | off_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 Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 72 | 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 Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 75 | return -1; |
| 76 | } |
| 77 | |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 78 | if (lseek(zip_archive_->fd_, lfh_offset, SEEK_SET) != lfh_offset) { |
| 79 | PLOG(WARNING) << "Zip: failed seeking to LFH at offset " << lfh_offset; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 80 | 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 Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 86 | LOG(WARNING) << "Zip: failed reading LFH from offset " << lfh_offset; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 87 | return -1; |
| 88 | } |
| 89 | |
| 90 | if (Le32ToHost(lfh_buf) != ZipArchive::kLFHSignature) { |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 91 | LOG(WARNING) << "Zip: didn't find signature at start of LFH, offset " << lfh_offset; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 92 | return -1; |
| 93 | } |
| 94 | |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 95 | off_t data_offset = (lfh_offset + ZipArchive::kLFHLen |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 96 | + 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 123 | static bool CopyFdToFile(File& file, int in, size_t count) { |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 124 | std::vector<uint8_t> buf(kBufSize); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 125 | while (count != 0) { |
| 126 | size_t bytes_to_read = (count > kBufSize) ? kBufSize : count; |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 127 | ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read)); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 128 | if (actual != static_cast<ssize_t>(bytes_to_read)) { |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 129 | PLOG(WARNING) << "Zip: short read writing to file " << file.name(); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 130 | return false; |
| 131 | } |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 132 | if (!file.WriteFully(&buf[0], bytes_to_read)) { |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 133 | PLOG(WARNING) << "Zip: failed to write to file " << file.name(); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 134 | return false; |
| 135 | } |
| 136 | count -= bytes_to_read; |
| 137 | } |
| 138 | return true; |
| 139 | } |
| 140 | |
| 141 | class ZStream { |
| 142 | public: |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 143 | ZStream(byte* write_buf, size_t write_buf_size) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 144 | // 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 167 | static bool InflateToFile(File& out, int in, size_t uncompressed_length, size_t compressed_length) { |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 168 | 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 Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 171 | LOG(WARNING) << "Zip: failed to alloctate buffer to inflate to file " << out.name(); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 172 | return false; |
| 173 | } |
| 174 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 175 | UniquePtr<ZStream> zstream(new ZStream(write_buf.get(), kBufSize)); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 176 | |
| 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 221 | if (!out.WriteFully(write_buf.get(), bytes_to_write)) { |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 222 | PLOG(WARNING) << "Zip: failed to write to file " << out.name(); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 223 | 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 Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 230 | DCHECK_EQ(zerr, Z_STREAM_END); // other errors should've been caught |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 231 | |
| 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 242 | bool ZipEntry::Extract(File& file) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 243 | off_t data_offset = GetDataOffset(); |
| 244 | if (data_offset == -1) { |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 245 | LOG(WARNING) << "Zip: data_offset=" << data_offset; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 246 | 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 257 | return CopyFdToFile(file, zip_archive_->fd_, GetUncompressedLength()); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 258 | case kCompressDeflated: |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 259 | return InflateToFile(file, zip_archive_->fd_, GetUncompressedLength(), GetCompressedLength()); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 260 | default: |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 261 | LOG(WARNING) << "Zip: unknown compression method " << std::hex << GetCompressionMethod(); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 262 | return false; |
| 263 | } |
| 264 | } |
| 265 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 266 | ZipArchive* ZipArchive::Open(const std::string& filename) { |
| 267 | DCHECK(!filename.empty()); |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 268 | int fd = open(filename.c_str(), O_RDONLY | O_CLOEXEC, 0); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 269 | if (fd < 0) { |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 270 | PLOG(WARNING) << "Unable to open '" << filename << "'"; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 271 | return NULL; |
| 272 | } |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 273 | return Open(fd); |
| 274 | } |
| 275 | |
| 276 | ZipArchive* ZipArchive::Open(int fd) { |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 277 | UniquePtr<ZipArchive> zip_archive(new ZipArchive(fd)); |
| 278 | if (zip_archive.get() == NULL) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 279 | 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 | |
| 292 | ZipEntry* ZipArchive::Find(const char* name) { |
| 293 | DCHECK(name != NULL); |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 294 | DirEntries::const_iterator it = dir_entries_.find(name); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 295 | if (it == dir_entries_.end()) { |
| 296 | return NULL; |
| 297 | } |
| 298 | return new ZipEntry(this, (*it).second); |
| 299 | } |
| 300 | |
| 301 | void 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_ |
| 316 | bool 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 Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 341 | UniquePtr<uint8_t[]> scan_buf(new uint8_t[read_amount]); |
| 342 | if (scan_buf.get() == NULL) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 343 | 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 375 | const byte* eocd_ptr = scan_buf.get() + i; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 376 | |
| 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 398 | dir_map_.reset(MemMap::Map(dir_size, PROT_READ, MAP_SHARED, fd_, dir_offset)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 399 | if (dir_map_.get() == NULL) { |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 400 | return false; |
| 401 | } |
| 402 | |
| 403 | num_entries_ = num_entries; |
| 404 | dir_offset_ = dir_offset; |
| 405 | return true; |
| 406 | } |
| 407 | |
| 408 | bool ZipArchive::Parse() { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 409 | const byte* cd_ptr = dir_map_->GetAddress(); |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 410 | 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 Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 414 | const byte* ptr = cd_ptr; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 415 | 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 |