zip_archive.cc revision 7934ac288acfb2552bb0b06ec1f61e5820d924a4
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
19#include <vector>
20
21#include <fcntl.h>
22#include <sys/stat.h>
23#include <sys/types.h>
24#include <unistd.h>
25
26#include "base/unix_file/fd_file.h"
27#include "UniquePtr.h"
28
29namespace art {
30
31static const size_t kBufSize = 32 * KB;
32
33// Get 2 little-endian bytes.
34static uint32_t Le16ToHost(const byte* src) {
35  return ((src[0] <<  0) |
36          (src[1] <<  8));
37}
38
39// Get 4 little-endian bytes.
40static uint32_t Le32ToHost(const byte* src) {
41  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_;
73  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";
76    return -1;
77  }
78
79  if (lseek(zip_archive_->fd_, lfh_offset, SEEK_SET) != lfh_offset) {
80    PLOG(WARNING) << "Zip: failed seeking to LFH at offset " << lfh_offset;
81    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)) {
87    LOG(WARNING) << "Zip: failed reading LFH from offset " << lfh_offset;
88    return -1;
89  }
90
91  if (Le32ToHost(lfh_buf) != ZipArchive::kLFHSignature) {
92    LOG(WARNING) << "Zip: didn't find signature at start of LFH, offset " << lfh_offset;
93    return -1;
94  }
95
96  off_t data_offset = (lfh_offset + ZipArchive::kLFHLen
97                       + 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
124static bool CopyFdToMemory(uint8_t* begin, size_t size, int in, size_t count) {
125  uint8_t* dst = begin;
126  std::vector<uint8_t> buf(kBufSize);
127  while (count != 0) {
128    size_t bytes_to_read = (count > kBufSize) ? kBufSize : count;
129    ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read));
130    if (actual != static_cast<ssize_t>(bytes_to_read)) {
131      PLOG(WARNING) << "Zip: short read";
132      return false;
133    }
134    memcpy(dst, &buf[0], bytes_to_read);
135    dst += bytes_to_read;
136    count -= bytes_to_read;
137  }
138  DCHECK_EQ(dst, begin + size);
139  return true;
140}
141
142class ZStream {
143 public:
144  ZStream(byte* write_buf, size_t write_buf_size) {
145    // 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
168static bool InflateToMemory(uint8_t* begin, size_t size,
169                            int in, size_t uncompressed_length, size_t compressed_length) {
170  uint8_t* dst = begin;
171  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) {
174    LOG(WARNING) << "Zip: failed to allocate buffer to inflate";
175    return false;
176  }
177
178  UniquePtr<ZStream> zstream(new ZStream(write_buf.get(), kBufSize));
179
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
212                   << " (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
216                   << ")";
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();
224      memcpy(dst, write_buf.get(), bytes_to_write);
225      dst += bytes_to_write;
226      zstream->Get().next_out = write_buf.get();
227      zstream->Get().avail_out = kBufSize;
228    }
229  } while (zerr == Z_OK);
230
231  DCHECK_EQ(zerr, Z_STREAM_END);  // other errors should've been caught
232
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
240  DCHECK_EQ(dst, begin + size);
241  return true;
242}
243
244bool ZipEntry::ExtractToFile(File& file) {
245  uint32_t length = GetUncompressedLength();
246  int result = TEMP_FAILURE_RETRY(ftruncate(file.Fd(), length));
247  if (result == -1) {
248    PLOG(WARNING) << "Zip: failed to ftruncate " << file.GetPath() << " to length " << length;
249    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) {
254    LOG(WARNING) << "Zip: failed to mmap space for " << file.GetPath();
255    return false;
256  }
257
258  return ExtractToMemory(map->Begin(), map->Size());
259}
260
261bool ZipEntry::ExtractToMemory(uint8_t* begin, size_t size) {
262  off_t data_offset = GetDataOffset();
263  if (data_offset == -1) {
264    LOG(WARNING) << "Zip: data_offset=" << data_offset;
265    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:
276      return CopyFdToMemory(begin, size, zip_archive_->fd_, GetUncompressedLength());
277    case kCompressDeflated:
278      return InflateToMemory(begin, size, zip_archive_->fd_,
279                             GetUncompressedLength(), GetCompressedLength());
280    default:
281      LOG(WARNING) << "Zip: unknown compression method " << std::hex << GetCompressionMethod();
282      return false;
283  }
284}
285
286MemMap* 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
308static 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
322ZipArchive* ZipArchive::Open(const std::string& filename) {
323  DCHECK(!filename.empty());
324  int fd = open(filename.c_str(), O_RDONLY, 0);
325  if (fd == -1) {
326    PLOG(WARNING) << "Unable to open '" << filename << "'";
327    return NULL;
328  }
329  SetCloseOnExec(fd);
330  return OpenFromFd(fd);
331}
332
333ZipArchive* ZipArchive::OpenFromFd(int fd) {
334  UniquePtr<ZipArchive> zip_archive(new ZipArchive(fd));
335  if (zip_archive.get() == NULL) {
336      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
349ZipEntry* ZipArchive::Find(const char* name) const {
350  DCHECK(name != NULL);
351  DirEntries::const_iterator it = dir_entries_.find(name);
352  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
398  UniquePtr<uint8_t[]> scan_buf(new uint8_t[read_amount]);
399  if (scan_buf.get() == NULL) {
400    return false;
401  }
402
403  off_t search_start = file_length - read_amount;
404
405  if (lseek(fd_, search_start, SEEK_SET) != search_start) {
406    PLOG(WARNING) << "Zip: seek " << search_start << " failed";
407    return false;
408  }
409  ssize_t actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), read_amount));
410  if (actual == -1) {
411    PLOG(WARNING) << "Zip: read " << read_amount << " failed";
412    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;
432  const byte* eocd_ptr = scan_buf.get() + i;
433
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.
455  dir_map_.reset(MemMap::MapFile(dir_size, PROT_READ, MAP_SHARED, fd_, dir_offset));
456  if (dir_map_.get() == NULL) {
457    return false;
458  }
459
460  num_entries_ = num_entries;
461  dir_offset_ = dir_offset;
462  return true;
463}
464
465bool ZipArchive::Parse() {
466  const byte* cd_ptr = dir_map_->Begin();
467  size_t cd_length = dir_map_->Size();
468
469  // Walk through the central directory, adding entries to the hash
470  // table and verifying values.
471  const byte* ptr = cd_ptr;
472  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);
494    dir_entries_.Put(StringPiece(name, filename_len), ptr);
495    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
507