blob: 957407beceb76e44eca6db20941859a69db264e0 [file] [log] [blame]
Damien Martin-Guillerezbf6281d2015-11-19 16:41:33 +00001// Copyright 2015 The Bazel Authors. All rights reserved.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// zip.cc -- .zip (.jar) file reading/writing routines.
16//
17
18// See README.txt for details.
19//
20// See http://www.pkware.com/documents/casestudies/APPNOTE.TXT
21// for definition of PKZIP file format.
22
23#define _FILE_OFFSET_BITS 64 // Support zip files larger than 2GB
24
25#include <errno.h>
26#include <fcntl.h>
27#include <stddef.h>
28#include <stdint.h>
Damien Martin-Guillerez08441122015-05-28 11:12:31 +000029#include <stdarg.h>
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010030#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
Damien Martin-Guillerezcd4637e2015-05-28 20:19:53 +000033#include <limits.h>
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010034#include <limits>
35#include <vector>
36
Lukacs Berki25733762016-02-16 12:20:45 +000037#include "third_party/ijar/mapped_file.h"
Laszlo Csomor645dbc42016-12-01 12:56:43 +000038#include "third_party/ijar/platform_utils.h"
Damien Martin-Guillerez08441122015-05-28 11:12:31 +000039#include "third_party/ijar/zip.h"
Rumou Duana518f632016-09-21 21:59:01 +000040#include "third_party/ijar/zlib_client.h"
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010041
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +000042#define LOCAL_FILE_HEADER_SIGNATURE 0x04034b50
43#define CENTRAL_FILE_HEADER_SIGNATURE 0x02014b50
44#define DIGITAL_SIGNATURE 0x05054b50
45#define ZIP64_EOCD_SIGNATURE 0x06064b50
46#define ZIP64_EOCD_LOCATOR_SIGNATURE 0x07064b50
47#define EOCD_SIGNATURE 0x06054b50
48#define DATA_DESCRIPTOR_SIGNATURE 0x08074b50
49
50#define U2_MAX 0xffff
51#define U4_MAX 0xffffffffUL
52
53#define ZIP64_EOCD_LOCATOR_SIZE 20
54// zip64 eocd is fixed size in the absence of a zip64 extensible data sector
55#define ZIP64_EOCD_FIXED_SIZE 56
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010056
57// version to extract: 1.0 - default value from APPNOTE.TXT.
58// Output JAR files contain no extra ZIP features, so this is enough.
59#define ZIP_VERSION_TO_EXTRACT 10
60#define COMPRESSION_METHOD_STORED 0 // no compression
61#define COMPRESSION_METHOD_DEFLATED 8
62
63#define GENERAL_PURPOSE_BIT_FLAG_COMPRESSED (1 << 3)
64#define GENERAL_PURPOSE_BIT_FLAG_UTF8_ENCODED (1 << 11)
Damien Martin-Guillerezeb6e9032015-06-01 14:45:21 +000065#define GENERAL_PURPOSE_BIT_FLAG_COMPRESSION_SPEED ((1 << 2) | (1 << 1))
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010066#define GENERAL_PURPOSE_BIT_FLAG_SUPPORTED \
Damien Martin-Guillerezeb6e9032015-06-01 14:45:21 +000067 (GENERAL_PURPOSE_BIT_FLAG_COMPRESSED \
68 | GENERAL_PURPOSE_BIT_FLAG_UTF8_ENCODED \
69 | GENERAL_PURPOSE_BIT_FLAG_COMPRESSION_SPEED)
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010070
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010071namespace devtools_ijar {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010072// In the absence of ZIP64 support, zip files are limited to 4GB.
73// http://www.info-zip.org/FAQ.html#limits
74static const u8 kMaximumOutputSize = std::numeric_limits<uint32_t>::max();
75
Liam Miller-Cushon899383d2016-12-12 23:32:57 +000076static const u4 kDosEpoch = 1 << 21 | 1 << 16; // January 1, 1980 in DOS time
77
Damien Martin-Guillerez08441122015-05-28 11:12:31 +000078//
79// A class representing a ZipFile for reading. Its public API is exposed
80// using the ZipExtractor abstract class.
81//
82class InputZipFile : public ZipExtractor {
83 public:
Lukacs Berki25733762016-02-16 12:20:45 +000084 InputZipFile(ZipExtractorProcessor *processor, const char* filename);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +000085 virtual ~InputZipFile();
86
87 virtual const char* GetError() {
88 if (errmsg[0] == 0) {
89 return NULL;
90 }
91 return errmsg;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010092 }
93
Lukacs Berki25733762016-02-16 12:20:45 +000094 bool Open();
Damien Martin-Guillerez08441122015-05-28 11:12:31 +000095 virtual bool ProcessNext();
96 virtual void Reset();
97 virtual size_t GetSize() {
Lukacs Berki25733762016-02-16 12:20:45 +000098 return input_file_->Length();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010099 }
100
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000101 virtual u8 CalculateOutputLength();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100102
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000103 virtual bool ProcessCentralDirEntry(const u1 *&p, size_t *compressed_size,
104 size_t *uncompressed_size, char *filename,
105 size_t filename_size, u4 *attr,
106 u4 *offset);
107
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100108 private:
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000109 ZipExtractorProcessor *processor;
Lukacs Berki25733762016-02-16 12:20:45 +0000110 const char* filename_;
111 MappedInputFile *input_file_;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100112
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000113 // InputZipFile is responsible for maintaining the following
114 // pointers. They are allocated by the Create() method before
115 // the object is actually created using mmap.
Lukacs Berki25733762016-02-16 12:20:45 +0000116 const u1 * zipdata_in_; // start of input file mmap
117 size_t bytes_unmapped_; // bytes that have already been unmapped
118 const u1 * central_dir_; // central directory in input file
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000119
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000120 size_t in_offset_; // offset the input file
121
122 const u1 *p; // input cursor
123
124 const u1* central_dir_current_; // central dir input cursor
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100125
126 // Buffer size is initially INITIAL_BUFFER_SIZE. It doubles in size every
127 // time it is found too small, until it reaches MAX_BUFFER_SIZE. If that is
128 // not enough, we bail out. We only decompress class files, so they should
129 // be smaller than 64K anyway, but we give a little leeway.
Damien Martin-Guillerezeb6e9032015-06-01 14:45:21 +0000130 // MAX_BUFFER_SIZE must be bigger than the size of the biggest file in the
Googler54d94d22016-04-05 15:47:22 +0000131 // ZIP. It is set to 2GB here because no one has audited the code for 64-bit
132 // cleanliness.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100133 static const size_t INITIAL_BUFFER_SIZE = 256 * 1024; // 256K
Googler54d94d22016-04-05 15:47:22 +0000134 static const size_t MAX_BUFFER_SIZE = std::numeric_limits<int32_t>::max();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100135 static const size_t MAX_MAPPED_REGION = 32 * 1024 * 1024;
136
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100137 // These metadata fields are the fields of the ZIP header of the file being
138 // processed.
139 u2 extract_version_;
140 u2 general_purpose_bit_flag_;
141 u2 compression_method_;
142 u4 uncompressed_size_;
143 u4 compressed_size_;
144 u2 file_name_length_;
145 u2 extra_field_length_;
146 const u1 *file_name_;
147 const u1 *extra_field_;
148
149 // Administration of memory reserved for decompressed data. We use the same
150 // buffer for each file to avoid some malloc()/free() calls and free the
151 // memory only in the dtor. C-style memory management is used so that we
152 // can call realloc.
153 u1 *uncompressed_data_;
154 size_t uncompressed_data_allocated_;
155
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000156 // Copy of the last filename entry - Null-terminated.
157 char filename[PATH_MAX];
158 // The external file attribute field
159 u4 attr;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100160
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000161 // last error
162 char errmsg[4*PATH_MAX];
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100163
Rumou Duana518f632016-09-21 21:59:01 +0000164 Decompressor *decompressor_;
165
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000166 int error(const char *fmt, ...) {
167 va_list ap;
168 va_start(ap, fmt);
169 vsnprintf(errmsg, 4*PATH_MAX, fmt, ap);
170 va_end(ap);
171 return -1;
172 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100173
174 // Check that at least n bytes remain in the input file, otherwise
175 // abort with an error message. "state" is the name of the field
176 // we're about to read, for diagnostics.
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000177 int EnsureRemaining(size_t n, const char *state) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100178 size_t in_offset = p - zipdata_in_;
Lukacs Berki25733762016-02-16 12:20:45 +0000179 size_t remaining = input_file_->Length() - in_offset;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100180 if (n > remaining) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000181 return error("Premature end of file (at offset %zd, state=%s); "
182 "expected %zd more bytes but found %zd.\n",
183 in_offset, state, n, remaining);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100184 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000185 return 0;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100186 }
187
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000188 // Read one entry from input zip file
189 int ProcessLocalFileEntry(size_t compressed_size, size_t uncompressed_size);
190
191 // Uncompress a file from the archive using zlib. The pointer returned
192 // is owned by InputZipFile, so it must not be freed. Advances the input
193 // cursor to the first byte after the compressed data.
194 u1* UncompressFile();
195
196 // Skip a file
197 int SkipFile(const bool compressed);
198
199 // Process a file
200 int ProcessFile(const bool compressed);
201};
202
203//
204// A class implementing ZipBuilder that represent an open zip file for writing.
205//
206class OutputZipFile : public ZipBuilder {
207 public:
Lukacs Berki25733762016-02-16 12:20:45 +0000208 OutputZipFile(const char* filename, u8 estimated_size) :
209 output_file_(NULL),
210 filename_(filename),
211 estimated_size_(estimated_size),
212 finished_(false) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000213 errmsg[0] = 0;
214 }
215
216 virtual const char* GetError() {
217 if (errmsg[0] == 0) {
218 return NULL;
219 }
220 return errmsg;
221 }
222
223 virtual ~OutputZipFile() { Finish(); }
224 virtual u1* NewFile(const char* filename, const u4 attr);
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000225 virtual int FinishFile(size_t filelength, bool compress = false,
226 bool compute_crc = false);
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000227 virtual int WriteEmptyFile(const char *filename);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000228 virtual size_t GetSize() {
229 return Offset(q);
230 }
231 virtual int GetNumberFiles() {
232 return entries_.size();
233 }
234 virtual int Finish();
Lukacs Berki25733762016-02-16 12:20:45 +0000235 bool Open();
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000236
237 private:
238 struct LocalFileEntry {
239 // Start of the local header (in the output buffer).
240 size_t local_header_offset;
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000241
242 // Sizes of the file entry
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000243 size_t uncompressed_length;
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000244 size_t compressed_length;
245
246 // Compression method
247 u2 compression_method;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000248
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000249 // CRC32
250 u4 crc32;
251
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000252 // external attributes field
253 u4 external_attr;
254
255 // Start/length of the file_name in the local header.
256 u1 *file_name;
257 u2 file_name_length;
258
259 // Start/length of the extra_field in the local header.
260 const u1 *extra_field;
261 u2 extra_field_length;
262 };
263
Lukacs Berki25733762016-02-16 12:20:45 +0000264 MappedOutputFile* output_file_;
265 const char* filename_;
266 u8 estimated_size_;
267 bool finished_;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000268
269 // OutputZipFile is responsible for maintaining the following
270 // pointers. They are allocated by the Create() method before
271 // the object is actually created using mmap.
Lukacs Berki25733762016-02-16 12:20:45 +0000272 u1 *zipdata_out_; // start of output file mmap
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000273 u1 *q; // output cursor
274
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000275 u1 *header_ptr; // Current pointer to "compression method" entry.
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000276
277 // List of entries to write the central directory
278 std::vector<LocalFileEntry*> entries_;
279
280 // last error
281 char errmsg[4*PATH_MAX];
282
283 int error(const char *fmt, ...) {
284 va_list ap;
285 va_start(ap, fmt);
286 vsnprintf(errmsg, 4*PATH_MAX, fmt, ap);
287 va_end(ap);
288 return -1;
289 }
290
291 // Write the ZIP central directory structure for each local file
292 // entry in "entries".
293 void WriteCentralDirectory();
294
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100295 // Returns the offset of the pointer relative to the start of the
296 // output zip file.
297 size_t Offset(const u1 *const x) {
298 return x - zipdata_out_;
299 }
300
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100301 // Write ZIP file header in the output. Since the compressed size is not
302 // known in advance, it must be recorded later. This method returns a pointer
303 // to "compressed size" in the file header that should be passed to
304 // WriteFileSizeInLocalFileHeader() later.
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000305 u1* WriteLocalFileHeader(const char *filename, const u4 attr);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100306
307 // Fill in the "compressed size" and "uncompressed size" fields in a local
308 // file header previously written by WriteLocalFileHeader().
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000309 size_t WriteFileSizeInLocalFileHeader(u1 *header_ptr,
310 size_t out_length,
311 bool compress = false,
312 const u4 crc = 0);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100313};
314
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000315//
316// Implementation of InputZipFile
317//
318bool InputZipFile::ProcessNext() {
319 // Process the next entry in the central directory. Also make sure that the
320 // content pointer is in sync.
321 size_t compressed, uncompressed;
322 u4 offset;
323 if (!ProcessCentralDirEntry(central_dir_current_, &compressed, &uncompressed,
324 filename, PATH_MAX, &attr, &offset)) {
325 return false;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100326 }
327
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000328 // There might be an offset specified in the central directory that does
329 // not match the file offset, if so, correct the pointer.
330 if (offset != 0 && (p != (zipdata_in_ + in_offset_ + offset))) {
331 p = zipdata_in_ + offset;
332 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100333
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000334 if (EnsureRemaining(4, "signature") < 0) {
335 return false;
336 }
337 u4 signature = get_u4le(p);
338 if (signature == LOCAL_FILE_HEADER_SIGNATURE) {
339 if (ProcessLocalFileEntry(compressed, uncompressed) < 0) {
340 return false;
341 }
342 } else {
343 error("local file header signature for file %s not found\n", filename);
344 return false;
345 }
346
347 return true;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100348}
349
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000350int InputZipFile::ProcessLocalFileEntry(
351 size_t compressed_size, size_t uncompressed_size) {
352 if (EnsureRemaining(26, "extract_version") < 0) {
353 return -1;
354 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100355 extract_version_ = get_u2le(p);
356 general_purpose_bit_flag_ = get_u2le(p);
357
358 if ((general_purpose_bit_flag_ & ~GENERAL_PURPOSE_BIT_FLAG_SUPPORTED) != 0) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000359 return error("Unsupported value (0x%04x) in general purpose bit flag.\n",
360 general_purpose_bit_flag_);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100361 }
362
363 compression_method_ = get_u2le(p);
364
365 if (compression_method_ != COMPRESSION_METHOD_DEFLATED &&
366 compression_method_ != COMPRESSION_METHOD_STORED) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000367 return error("Unsupported compression method (%d).\n",
368 compression_method_);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100369 }
370
371 // skip over: last_mod_file_time, last_mod_file_date, crc32
372 p += 2 + 2 + 4;
373 compressed_size_ = get_u4le(p);
374 uncompressed_size_ = get_u4le(p);
375 file_name_length_ = get_u2le(p);
376 extra_field_length_ = get_u2le(p);
377
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000378 if (EnsureRemaining(file_name_length_, "file_name") < 0) {
379 return -1;
380 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100381 file_name_ = p;
382 p += file_name_length_;
383
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000384 if (EnsureRemaining(extra_field_length_, "extra_field") < 0) {
385 return -1;
386 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100387 extra_field_ = p;
388 p += extra_field_length_;
389
390 bool is_compressed = compression_method_ == COMPRESSION_METHOD_DEFLATED;
391
392 // If the zip is compressed, compressed and uncompressed size members are
393 // zero in the local file header. If not, check that they are the same as the
394 // lengths from the central directory, otherwise, just believe the central
395 // directory
396 if (compressed_size_ == 0) {
397 compressed_size_ = compressed_size;
398 } else {
399 if (compressed_size_ != compressed_size) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000400 return error("central directory and file header inconsistent\n");
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100401 }
402 }
403
404 if (uncompressed_size_ == 0) {
405 uncompressed_size_ = uncompressed_size;
406 } else {
407 if (uncompressed_size_ != uncompressed_size) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000408 return error("central directory and file header inconsistent\n");
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100409 }
410 }
411
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000412 if (processor->Accept(filename, attr)) {
413 if (ProcessFile(is_compressed) < 0) {
414 return -1;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100415 }
416 } else {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000417 if (SkipFile(is_compressed) < 0) {
418 return -1;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100419 }
420 }
421
422 if (general_purpose_bit_flag_ & GENERAL_PURPOSE_BIT_FLAG_COMPRESSED) {
423 // Skip the data descriptor. Some implementations do not put the signature
424 // here, so check if the next 4 bytes are a signature, and if so, skip the
425 // next 12 bytes (for CRC, compressed/uncompressed size), otherwise skip
426 // the next 8 bytes (because the value just read was the CRC).
427 u4 signature = get_u4le(p);
428 if (signature == DATA_DESCRIPTOR_SIGNATURE) {
429 p += 4 * 3;
430 } else {
431 p += 4 * 2;
432 }
433 }
434
Damien Martin-Guillerez97786962016-04-01 09:13:00 +0000435 size_t bytes_processed = p - zipdata_in_;
436 if (bytes_processed > bytes_unmapped_ + MAX_MAPPED_REGION) {
Lukacs Berki25733762016-02-16 12:20:45 +0000437 input_file_->Discard(MAX_MAPPED_REGION);
438 bytes_unmapped_ += MAX_MAPPED_REGION;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100439 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000440
441 return 0;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100442}
443
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000444int InputZipFile::SkipFile(const bool compressed) {
445 if (!compressed) {
446 // In this case, compressed_size_ == uncompressed_size_ (since the file is
447 // uncompressed), so we can use either.
448 if (compressed_size_ != uncompressed_size_) {
449 return error("compressed size != uncompressed size, although the file "
450 "is uncompressed.\n");
451 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100452 }
453
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000454 if (EnsureRemaining(compressed_size_, "file_data") < 0) {
455 return -1;
456 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100457 p += compressed_size_;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000458 return 0;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100459}
460
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000461u1* InputZipFile::UncompressFile() {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100462 size_t in_offset = p - zipdata_in_;
Lukacs Berki25733762016-02-16 12:20:45 +0000463 size_t remaining = input_file_->Length() - in_offset;
Rumou Duana518f632016-09-21 21:59:01 +0000464 DecompressedFile *decompressed_file =
465 decompressor_->UncompressFile(p, remaining);
466 if (decompressed_file == NULL) {
467 if (decompressor_->GetError() != NULL) {
468 error(decompressor_->GetError());
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100469 }
Rumou Duana518f632016-09-21 21:59:01 +0000470 return NULL;
471 } else {
472 compressed_size_ = decompressed_file->compressed_size;
473 uncompressed_size_ = decompressed_file->uncompressed_size;
474 u1 *uncompressed_data = decompressed_file->uncompressed_data;
475 free(decompressed_file);
476 p += compressed_size_;
477 return uncompressed_data;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100478 }
479}
480
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000481int InputZipFile::ProcessFile(const bool compressed) {
482 const u1 *file_data;
483 if (compressed) {
484 file_data = UncompressFile();
485 if (file_data == NULL) {
486 return -1;
487 }
488 } else {
489 // In this case, compressed_size_ == uncompressed_size_ (since the file is
490 // uncompressed), so we can use either.
491 if (compressed_size_ != uncompressed_size_) {
492 return error("compressed size != uncompressed size, although the file "
493 "is uncompressed.\n");
494 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100495
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000496 if (EnsureRemaining(compressed_size_, "file_data") < 0) {
497 return -1;
498 }
499 file_data = p;
500 p += compressed_size_;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100501 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000502 processor->Process(filename, attr, file_data, uncompressed_size_);
503 return 0;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100504}
505
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100506
507// Reads and returns some metadata of the next file from the central directory:
508// - compressed size
509// - uncompressed size
510// - whether the entry is a class file (to be included in the output).
511// Precondition: p points to the beginning of an entry in the central dir
512// Postcondition: p points to the beginning of the next entry in the central dir
513// Returns true if the central directory contains another file and false if not.
514// Of course, in the latter case, the size output variables are not changed.
515// Note that the central directory is always followed by another data structure
516// that has a signature, so parsing it this way is safe.
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000517bool InputZipFile::ProcessCentralDirEntry(const u1 *&p, size_t *compressed_size,
518 size_t *uncompressed_size,
519 char *filename, size_t filename_size,
520 u4 *attr, u4 *offset) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100521 u4 signature = get_u4le(p);
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000522
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100523 if (signature != CENTRAL_FILE_HEADER_SIGNATURE) {
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000524 if (signature != DIGITAL_SIGNATURE && signature != EOCD_SIGNATURE &&
525 signature != ZIP64_EOCD_SIGNATURE) {
526 error("invalid central file header signature: 0x%x\n", signature);
527 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100528 return false;
529 }
530
531 p += 16; // skip to 'compressed size' field
532 *compressed_size = get_u4le(p);
533 *uncompressed_size = get_u4le(p);
534 u2 file_name_length = get_u2le(p);
535 u2 extra_field_length = get_u2le(p);
536 u2 file_comment_length = get_u2le(p);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000537 p += 4; // skip to external file attributes field
538 *attr = get_u4le(p);
539 *offset = get_u4le(p);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100540 {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000541 size_t len = (file_name_length < filename_size)
542 ? file_name_length
543 : (filename_size - 1);
544 memcpy(reinterpret_cast<void*>(filename), p, len);
545 filename[len] = 0;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100546 }
547 p += file_name_length;
548 p += extra_field_length;
549 p += file_comment_length;
550 return true;
551}
552
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000553// Gives a maximum bound on the size of the interface JAR. Basically, adds
554// the difference between the compressed and uncompressed sizes to the size
555// of the input file.
556u8 InputZipFile::CalculateOutputLength() {
557 const u1* current = central_dir_;
558
559 u8 compressed_size = 0;
560 u8 uncompressed_size = 0;
561 u8 skipped_compressed_size = 0;
562 u4 attr;
563 u4 offset;
564 char filename[PATH_MAX];
565
566 while (true) {
567 size_t file_compressed, file_uncompressed;
568 if (!ProcessCentralDirEntry(current,
569 &file_compressed, &file_uncompressed,
570 filename, PATH_MAX, &attr, &offset)) {
571 break;
572 }
573
574 if (processor->Accept(filename, attr)) {
575 compressed_size += (u8) file_compressed;
576 uncompressed_size += (u8) file_uncompressed;
577 } else {
578 skipped_compressed_size += file_compressed;
579 }
580 }
581
582 // The worst case is when the output is simply the input uncompressed. The
583 // metadata in the zip file will stay the same, so the file will grow by the
584 // difference between the compressed and uncompressed sizes.
Lukacs Berki25733762016-02-16 12:20:45 +0000585 return (u8) input_file_->Length() - skipped_compressed_size
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000586 + (uncompressed_size - compressed_size);
587}
588
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000589// An end of central directory record, sized for optional zip64 contents.
590struct EndOfCentralDirectoryRecord {
591 u4 number_of_this_disk;
592 u4 disk_with_central_dir;
593 u8 central_dir_entries_on_this_disk;
594 u8 central_dir_entries;
595 u8 central_dir_size;
596 u8 central_dir_offset;
597};
598
599// Checks for a zip64 end of central directory record. If a valid zip64 EOCD is
600// found, updates the original EOCD record and returns true.
601bool MaybeReadZip64CentralDirectory(const u1 *bytes, size_t in_length,
602 const u1 *current,
603 const u1 **end_of_central_dir,
604 EndOfCentralDirectoryRecord *cd) {
605 if (current < bytes) {
606 return false;
607 }
608 const u1 *candidate = current;
609 u4 zip64_directory_signature = get_u4le(current);
610 if (zip64_directory_signature != ZIP64_EOCD_SIGNATURE) {
611 return false;
612 }
613
614 // size of zip64 end of central directory record
615 // (fixed size unless there's a zip64 extensible data sector, which
616 // we don't need to read)
617 get_u8le(current);
618 get_u2be(current); // version made by
619 get_u2be(current); // version needed to extract
620
621 u4 number_of_this_disk = get_u4be(current);
622 u4 disk_with_central_dir = get_u4le(current);
623 u8 central_dir_entries_on_this_disk = get_u8le(current);
624 u8 central_dir_entries = get_u8le(current);
625 u8 central_dir_size = get_u8le(current);
626 u8 central_dir_offset = get_u8le(current);
627
628 // check for a zip64 EOCD that matches the regular EOCD
629 if (number_of_this_disk != cd->number_of_this_disk &&
630 cd->number_of_this_disk != U2_MAX) {
631 return false;
632 }
633 if (disk_with_central_dir != cd->disk_with_central_dir &&
634 cd->disk_with_central_dir != U2_MAX) {
635 return false;
636 }
637 if (central_dir_entries_on_this_disk !=
638 cd->central_dir_entries_on_this_disk &&
639 cd->central_dir_entries_on_this_disk != U2_MAX) {
640 return false;
641 }
642 if (central_dir_entries != cd->central_dir_entries &&
643 cd->central_dir_entries != U2_MAX) {
644 return false;
645 }
646 if (central_dir_size != cd->central_dir_size &&
647 cd->central_dir_size != U4_MAX) {
648 return false;
649 }
650 if (central_dir_offset != cd->central_dir_offset &&
651 cd->central_dir_offset != U4_MAX) {
652 return false;
653 }
654
655 *end_of_central_dir = candidate;
656 cd->number_of_this_disk = number_of_this_disk;
657 cd->disk_with_central_dir = disk_with_central_dir;
658 cd->central_dir_entries_on_this_disk = central_dir_entries_on_this_disk;
659 cd->central_dir_entries = central_dir_entries;
660 cd->central_dir_size = central_dir_size;
661 cd->central_dir_offset = central_dir_offset;
662 return true;
663}
664
665// Starting from the end of central directory record, attempts to locate a zip64
666// end of central directory record. If found, updates the given record and
667// offset with the zip64 data. Returns false on error.
668bool FindZip64CentralDirectory(const u1 *bytes, size_t in_length,
669 const u1 **end_of_central_dir,
670 EndOfCentralDirectoryRecord *cd) {
671 // In the absence of a zip64 extensible data sector, the zip64 EOCD is at a
672 // fixed offset from the regular central directory.
673 if (MaybeReadZip64CentralDirectory(
674 bytes, in_length,
675 *end_of_central_dir - ZIP64_EOCD_LOCATOR_SIZE - ZIP64_EOCD_FIXED_SIZE,
676 end_of_central_dir, cd)) {
677 return true;
678 }
679
680 // If we couldn't find a zip64 EOCD at a fixed offset, either it doesn't exist
681 // or there was a zip64 extensible data sector, so try going through the
682 // locator. This approach doesn't work if data was prepended to the archive
683 // without updating the offset in the locator.
684 const u1 *zip64_locator = *end_of_central_dir - ZIP64_EOCD_LOCATOR_SIZE;
685 if (zip64_locator - ZIP64_EOCD_FIXED_SIZE < bytes) {
686 return true;
687 }
688 u4 zip64_locator_signature = get_u4le(zip64_locator);
689 if (zip64_locator_signature != ZIP64_EOCD_LOCATOR_SIGNATURE) {
690 return true;
691 }
692 u4 disk_with_zip64_central_directory = get_u4le(zip64_locator);
693 u8 zip64_end_of_central_dir_offset = get_u8le(zip64_locator);
694 u4 zip64_total_disks = get_u4le(zip64_locator);
695 if (MaybeReadZip64CentralDirectory(bytes, in_length,
696 bytes + zip64_end_of_central_dir_offset,
697 end_of_central_dir, cd)) {
698 if (disk_with_zip64_central_directory != 0 || zip64_total_disks != 1) {
699 fprintf(stderr, "multi-disk JAR files are not supported\n");
700 return false;
701 }
702 return true;
703 }
704 return true;
705}
706
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100707// Given the data in the zip file, returns the offset of the central directory
708// and the number of files contained in it.
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000709bool FindZipCentralDirectory(const u1 *bytes, size_t in_length, u4 *offset,
710 const u1 **central_dir) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100711 static const int MAX_COMMENT_LENGTH = 0xffff;
712 static const int CENTRAL_DIR_LOCATOR_SIZE = 22;
713 // Maximum distance of start of central dir locator from end of file
714 static const int MAX_DELTA = MAX_COMMENT_LENGTH + CENTRAL_DIR_LOCATOR_SIZE;
715 const u1* last_pos_to_check = in_length < MAX_DELTA
716 ? bytes
717 : bytes + (in_length - MAX_DELTA);
718 const u1* current;
719 bool found = false;
720
721 for (current = bytes + in_length - CENTRAL_DIR_LOCATOR_SIZE;
722 current >= last_pos_to_check;
723 current-- ) {
724 const u1* p = current;
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000725 if (get_u4le(p) != EOCD_SIGNATURE) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100726 continue;
727 }
728
729 p += 16; // skip to comment length field
730 u2 comment_length = get_u2le(p);
731
732 // Does the comment go exactly till the end of the file?
733 if (current + comment_length + CENTRAL_DIR_LOCATOR_SIZE
734 != bytes + in_length) {
735 continue;
736 }
737
738 // Hooray, we found it!
739 found = true;
740 break;
741 }
742
743 if (!found) {
744 fprintf(stderr, "file is invalid or corrupted (missing end of central "
745 "directory record)\n");
746 return false;
747 }
748
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000749 EndOfCentralDirectoryRecord cd;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000750 const u1* end_of_central_dir = current;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100751 get_u4le(current); // central directory locator signature, already checked
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000752 cd.number_of_this_disk = get_u2le(current);
753 cd.disk_with_central_dir = get_u2le(current);
754 cd.central_dir_entries_on_this_disk = get_u2le(current);
755 cd.central_dir_entries = get_u2le(current);
756 cd.central_dir_size = get_u4le(current);
757 cd.central_dir_offset = get_u4le(current);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000758 u2 file_comment_length = get_u2le(current);
759 current += file_comment_length; // set current to the end of the central dir
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100760
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000761 if (!FindZip64CentralDirectory(bytes, in_length, &end_of_central_dir, &cd)) {
762 return false;
763 }
764
765 if (cd.number_of_this_disk != 0 || cd.disk_with_central_dir != 0 ||
766 cd.central_dir_entries_on_this_disk != cd.central_dir_entries) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100767 fprintf(stderr, "multi-disk JAR files are not supported\n");
768 return false;
769 }
770
771 // Do not change output values before determining that they are OK.
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000772 *offset = cd.central_dir_offset;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000773 // Central directory start can then be used to determine the actual
774 // starts of the zip file (which can be different in case of a non-zip
775 // header like for auto-extractable binaries).
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000776 *central_dir = end_of_central_dir - cd.central_dir_size;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100777 return true;
778}
779
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000780void InputZipFile::Reset() {
781 central_dir_current_ = central_dir_;
Lukacs Berki25733762016-02-16 12:20:45 +0000782 bytes_unmapped_ = 0;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000783 p = zipdata_in_ + in_offset_;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100784}
785
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000786int ZipExtractor::ProcessAll() {
787 while (ProcessNext()) {}
788 if (GetError() != NULL) {
789 return -1;
790 }
791 return 0;
792}
793
794ZipExtractor* ZipExtractor::Create(const char* filename,
795 ZipExtractorProcessor *processor) {
Lukacs Berki25733762016-02-16 12:20:45 +0000796 InputZipFile* result = new InputZipFile(processor, filename);
797 if (!result->Open()) {
798 fprintf(stderr, "%s\n", result->GetError());
799 delete result;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000800 return NULL;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100801 }
802
Lukacs Berki25733762016-02-16 12:20:45 +0000803 return result;
804}
805
806// zipdata_in_, in_offset_, p, central_dir_current_
807
808InputZipFile::InputZipFile(ZipExtractorProcessor *processor,
809 const char* filename)
810 : processor(processor), filename_(filename), input_file_(NULL),
811 bytes_unmapped_(0) {
Rumou Duana518f632016-09-21 21:59:01 +0000812 decompressor_ = new Decompressor();
Lukacs Berki25733762016-02-16 12:20:45 +0000813 errmsg[0] = 0;
814}
815
816bool InputZipFile::Open() {
817 MappedInputFile* input_file = new MappedInputFile(filename_);
818 if (!input_file->Opened()) {
819 snprintf(errmsg, sizeof(errmsg), "%s", input_file->Error());
820 delete input_file;
821 return false;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000822 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100823
Lukacs Berki25733762016-02-16 12:20:45 +0000824 void *zipdata_in = input_file->Buffer();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100825 u4 central_dir_offset;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000826 const u1 *central_dir = NULL;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100827
828 if (!devtools_ijar::FindZipCentralDirectory(
Lukacs Berki25733762016-02-16 12:20:45 +0000829 static_cast<const u1*>(zipdata_in), input_file->Length(),
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000830 &central_dir_offset, &central_dir)) {
831 errno = EIO; // we don't really have a good error number
Lukacs Berki25733762016-02-16 12:20:45 +0000832 error("Cannot find central directory");
833 delete input_file;
834 return false;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100835 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000836 const u1 *zipdata_start = static_cast<const u1*>(zipdata_in);
Lukacs Berki25733762016-02-16 12:20:45 +0000837 in_offset_ = - static_cast<off_t>(zipdata_start
838 + central_dir_offset
839 - central_dir);
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100840
Lukacs Berki25733762016-02-16 12:20:45 +0000841 input_file_ = input_file;
842 zipdata_in_ = zipdata_start;
843 central_dir_ = central_dir;
844 central_dir_current_ = central_dir;
845 p = zipdata_in_ + in_offset_;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000846 errmsg[0] = 0;
Lukacs Berki25733762016-02-16 12:20:45 +0000847 return true;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000848}
849
850InputZipFile::~InputZipFile() {
Rumou Duana518f632016-09-21 21:59:01 +0000851 delete decompressor_;
Lukacs Berki25733762016-02-16 12:20:45 +0000852 if (input_file_ != NULL) {
853 input_file_->Close();
854 delete input_file_;
855 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000856}
857
858
859//
860// Implementation of OutputZipFile
861//
862int OutputZipFile::WriteEmptyFile(const char *filename) {
863 const u1* file_name = (const u1*) filename;
864 size_t file_name_length = strlen(filename);
865
866 LocalFileEntry *entry = new LocalFileEntry;
867 entry->local_header_offset = Offset(q);
868 entry->external_attr = 0;
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000869 entry->crc32 = 0;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000870
871 // Output the ZIP local_file_header:
872 put_u4le(q, LOCAL_FILE_HEADER_SIGNATURE);
873 put_u2le(q, 10); // extract_version
874 put_u2le(q, 0); // general_purpose_bit_flag
875 put_u2le(q, 0); // compression_method
Liam Miller-Cushon899383d2016-12-12 23:32:57 +0000876 put_u4le(q, kDosEpoch); // last_mod_file date and time
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000877 put_u4le(q, entry->crc32); // crc32
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000878 put_u4le(q, 0); // compressed_size
879 put_u4le(q, 0); // uncompressed_size
880 put_u2le(q, file_name_length);
881 put_u2le(q, 0); // extra_field_length
882 put_n(q, file_name, file_name_length);
883
884 entry->file_name_length = file_name_length;
885 entry->extra_field_length = 0;
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000886 entry->compressed_length = 0;
887 entry->uncompressed_length = 0;
888 entry->compression_method = 0;
889 entry->extra_field = (const u1 *)"";
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000890 entry->file_name = (u1*) strdup((const char *) file_name);
891 entries_.push_back(entry);
892
893 return 0;
894}
895
896void OutputZipFile::WriteCentralDirectory() {
897 // central directory:
898 const u1 *central_directory_start = q;
Ulf Adams523bff52015-07-24 12:17:18 +0000899 for (size_t ii = 0; ii < entries_.size(); ++ii) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000900 LocalFileEntry *entry = entries_[ii];
901 put_u4le(q, CENTRAL_FILE_HEADER_SIGNATURE);
902 put_u2le(q, 0); // version made by
903
904 put_u2le(q, ZIP_VERSION_TO_EXTRACT); // version to extract
905 put_u2le(q, 0); // general purpose bit flag
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000906 put_u2le(q, entry->compression_method); // compression method:
Liam Miller-Cushon899383d2016-12-12 23:32:57 +0000907 put_u4le(q, kDosEpoch); // last_mod_file date and time
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000908 put_u4le(q, entry->crc32); // crc32
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000909 put_u4le(q, entry->compressed_length); // compressed_size
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000910 put_u4le(q, entry->uncompressed_length); // uncompressed_size
911 put_u2le(q, entry->file_name_length);
912 put_u2le(q, entry->extra_field_length);
913
914 put_u2le(q, 0); // file comment length
915 put_u2le(q, 0); // disk number start
916 put_u2le(q, 0); // internal file attributes
917 put_u4le(q, entry->external_attr); // external file attributes
918 // relative offset of local header:
919 put_u4le(q, entry->local_header_offset);
920
921 put_n(q, entry->file_name, entry->file_name_length);
922 put_n(q, entry->extra_field, entry->extra_field_length);
923 }
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000924 u8 central_directory_size = q - central_directory_start;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000925
Liam Miller-Cushon220be7a2015-12-03 18:23:09 +0000926 if (entries_.size() > U2_MAX || central_directory_size > U4_MAX ||
927 Offset(central_directory_start) > U4_MAX) {
928 u1 *zip64_end_of_central_directory_start = q;
929
930 put_u4le(q, ZIP64_EOCD_SIGNATURE);
931 // signature and size field doesn't count towards size
932 put_u8le(q, ZIP64_EOCD_FIXED_SIZE - 12);
933 put_u2le(q, 0); // version made by
934 put_u2le(q, 0); // version needed to extract
935 put_u4le(q, 0); // number of this disk
936 put_u4le(q, 0); // # of the disk with the start of the central directory
937 put_u8le(q, entries_.size()); // # central dir entries on this disk
938 put_u8le(q, entries_.size()); // total # entries in the central directory
939 put_u8le(q, central_directory_size); // size of the central directory
940 // offset of start of central directory wrt starting disk
941 put_u8le(q, Offset(central_directory_start));
942
943 put_u4le(q, ZIP64_EOCD_LOCATOR_SIGNATURE);
944 // number of the disk with the start of the zip64 end of central directory
945 put_u4le(q, 0);
946 // relative offset of the zip64 end of central directory record
947 put_u8le(q, Offset(zip64_end_of_central_directory_start));
948 // total number of disks
949 put_u4le(q, 1);
950
951 put_u4le(q, EOCD_SIGNATURE);
952 put_u2le(q, 0); // number of this disk
953 put_u2le(q, 0); // # of disk with the start of the central directory
954 // # central dir entries on this disk
955 put_u2le(q, entries_.size() > 0xffff ? 0xffff : entries_.size());
956 // total # entries in the central directory
957 put_u2le(q, entries_.size() > 0xffff ? 0xffff : entries_.size());
958 // size of the central directory
959 put_u4le(q,
960 central_directory_size > U4_MAX ? U4_MAX : central_directory_size);
961 // offset of start of central
962 put_u4le(q, Offset(central_directory_start) > U4_MAX
963 ? U4_MAX
964 : Offset(central_directory_start));
965 put_u2le(q, 0); // .ZIP file comment length
966
967 } else {
968 put_u4le(q, EOCD_SIGNATURE);
969 put_u2le(q, 0); // number of this disk
970 put_u2le(q, 0); // # of the disk with the start of the central directory
971 put_u2le(q, entries_.size()); // # central dir entries on this disk
972 put_u2le(q, entries_.size()); // total # entries in the central directory
973 put_u4le(q, central_directory_size); // size of the central directory
974 // offset of start of central directory wrt starting disk
975 put_u4le(q, Offset(central_directory_start));
976 put_u2le(q, 0); // .ZIP file comment length
977 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000978}
979
980u1* OutputZipFile::WriteLocalFileHeader(const char* filename, const u4 attr) {
Ulf Adams523bff52015-07-24 12:17:18 +0000981 off_t file_name_length_ = strlen(filename);
982 LocalFileEntry *entry = new LocalFileEntry;
983 entry->local_header_offset = Offset(q);
984 entry->file_name_length = file_name_length_;
985 entry->file_name = new u1[file_name_length_];
986 entry->external_attr = attr;
987 memcpy(entry->file_name, filename, file_name_length_);
988 entry->extra_field_length = 0;
989 entry->extra_field = (const u1 *)"";
Shinichiro Hamajia5004432016-05-02 09:44:43 +0000990 entry->crc32 = 0;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +0000991
Ulf Adams523bff52015-07-24 12:17:18 +0000992 // Output the ZIP local_file_header:
993 put_u4le(q, LOCAL_FILE_HEADER_SIGNATURE);
994 put_u2le(q, ZIP_VERSION_TO_EXTRACT); // version to extract
995 put_u2le(q, 0); // general purpose bit flag
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +0000996 u1 *header_ptr = q;
997 put_u2le(q, COMPRESSION_METHOD_STORED); // compression method = placeholder
Liam Miller-Cushon899383d2016-12-12 23:32:57 +0000998 put_u4le(q, kDosEpoch); // last_mod_file date and time
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +0000999 put_u4le(q, entry->crc32); // crc32
Ulf Adams523bff52015-07-24 12:17:18 +00001000 put_u4le(q, 0); // compressed_size = placeholder
1001 put_u4le(q, 0); // uncompressed_size = placeholder
1002 put_u2le(q, entry->file_name_length);
1003 put_u2le(q, entry->extra_field_length);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001004
Ulf Adams523bff52015-07-24 12:17:18 +00001005 put_n(q, entry->file_name, entry->file_name_length);
1006 put_n(q, entry->extra_field, entry->extra_field_length);
1007 entries_.push_back(entry);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001008
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001009 return header_ptr;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001010}
1011
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001012size_t OutputZipFile::WriteFileSizeInLocalFileHeader(u1 *header_ptr,
1013 size_t out_length,
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +00001014 bool compress,
1015 const u4 crc) {
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001016 size_t compressed_size = out_length;
1017 if (compress) {
1018 compressed_size = TryDeflate(q, out_length);
1019 }
1020 // compression method
1021 if (compressed_size < out_length) {
1022 put_u2le(header_ptr, COMPRESSION_METHOD_DEFLATED);
1023 } else {
1024 put_u2le(header_ptr, COMPRESSION_METHOD_STORED);
1025 }
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +00001026 header_ptr += 4;
1027 put_u4le(header_ptr, crc); // crc32
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001028 put_u4le(header_ptr, compressed_size); // compressed_size
1029 put_u4le(header_ptr, out_length); // uncompressed_size
1030 return compressed_size;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001031}
1032
1033int OutputZipFile::Finish() {
Lukacs Berki25733762016-02-16 12:20:45 +00001034 if (finished_) {
1035 return 0;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001036 }
Lukacs Berki25733762016-02-16 12:20:45 +00001037
1038 finished_ = true;
1039 WriteCentralDirectory();
1040 if (output_file_->Close(GetSize()) < 0) {
1041 return error("%s", output_file_->Error());
1042 }
1043 delete output_file_;
1044 output_file_ = NULL;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001045 return 0;
1046}
1047
1048u1* OutputZipFile::NewFile(const char* filename, const u4 attr) {
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001049 header_ptr = WriteLocalFileHeader(filename, attr);
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001050 return q;
1051}
1052
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +00001053int OutputZipFile::FinishFile(size_t filelength, bool compress,
1054 bool compute_crc) {
1055 u4 crc = 0;
1056 if (compute_crc) {
Rumou Duana518f632016-09-21 21:59:01 +00001057 crc = ComputeCrcChecksum(q, filelength);
1058
1059 if (filelength > 0 && crc == 0) {
1060 fprintf(stderr, "Error calculating CRC32 checksum.\n");
1061 return -1;
1062 }
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +00001063 }
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001064 size_t compressed_size =
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +00001065 WriteFileSizeInLocalFileHeader(header_ptr, filelength, compress, crc);
Rumou Duana518f632016-09-21 21:59:01 +00001066
1067 if (compressed_size == 0 && filelength > 0) {
1068 fprintf(stderr, "Error compressing files.\n");
1069 return -1;
1070 }
1071
Damien Martin-Guillerez4009d2c2015-09-11 14:44:53 +00001072 entries_.back()->crc32 = crc;
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001073 entries_.back()->compressed_length = compressed_size;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001074 entries_.back()->uncompressed_length = filelength;
Damien Martin-Guillerez3a160e72015-08-31 12:22:14 +00001075 if (compressed_size < filelength) {
1076 entries_.back()->compression_method = COMPRESSION_METHOD_DEFLATED;
1077 } else {
1078 entries_.back()->compression_method = COMPRESSION_METHOD_STORED;
1079 }
1080 q += compressed_size;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001081 return 0;
1082}
1083
Lukacs Berki25733762016-02-16 12:20:45 +00001084bool OutputZipFile::Open() {
1085 if (estimated_size_ > kMaximumOutputSize) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001086 fprintf(stderr,
1087 "Uncompressed input jar has size %llu, "
1088 "which exceeds the maximum supported output size %llu.\n"
1089 "Assuming that ijar will be smaller and hoping for the best.\n",
Lukacs Berki25733762016-02-16 12:20:45 +00001090 estimated_size_, kMaximumOutputSize);
1091 estimated_size_ = kMaximumOutputSize;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001092 }
1093
Lukacs Berki25733762016-02-16 12:20:45 +00001094 MappedOutputFile* output_file = new MappedOutputFile(
1095 filename_, estimated_size_);
1096 if (!output_file->Opened()) {
1097 snprintf(errmsg, sizeof(errmsg), "%s", output_file->Error());
1098 delete output_file;
Googlercfef2092016-02-29 21:42:27 +00001099 return false;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001100 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001101
Lukacs Berki25733762016-02-16 12:20:45 +00001102 output_file_ = output_file;
1103 q = output_file->Buffer();
1104 zipdata_out_ = output_file->Buffer();
1105 return true;
1106}
1107
1108ZipBuilder* ZipBuilder::Create(const char* zip_file, u8 estimated_size) {
1109 OutputZipFile* result = new OutputZipFile(zip_file, estimated_size);
1110 if (!result->Open()) {
1111 fprintf(stderr, "%s\n", result->GetError());
1112 delete result;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001113 return NULL;
1114 }
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001115
Lukacs Berki25733762016-02-16 12:20:45 +00001116 return result;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001117}
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001118
Rumou Duana518f632016-09-21 21:59:01 +00001119u8 ZipBuilder::EstimateSize(char const* const* files,
1120 char const* const* zip_paths,
1121 int nb_entries) {
Laszlo Csomor645dbc42016-12-01 12:56:43 +00001122 Stat file_stat;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001123 // Digital signature field size = 6, End of central directory = 22, Total = 28
1124 u8 size = 28;
1125 // Count the size of all the files in the input to estimate the size of the
1126 // output.
Yun Peng43302f42016-08-04 13:48:02 +00001127 for (int i = 0; i < nb_entries; i++) {
Laszlo Csomor645dbc42016-12-01 12:56:43 +00001128 file_stat.total_size = 0;
1129 if (files[i] != NULL && !stat_file(files[i], &file_stat)) {
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001130 fprintf(stderr, "File %s does not seem to exist.", files[i]);
1131 return 0;
1132 }
Laszlo Csomor645dbc42016-12-01 12:56:43 +00001133 size += file_stat.total_size;
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001134 // Add sizes of Zip meta data
1135 // local file header = 30 bytes
1136 // data descriptor = 12 bytes
1137 // central directory descriptor = 46 bytes
1138 // Total: 88bytes
1139 size += 88;
1140 // The filename is stored twice (once in the central directory
1141 // and once in the local file header).
Yun Peng43302f42016-08-04 13:48:02 +00001142 size += strlen((zip_paths[i] != NULL) ? zip_paths[i] : files[i]) * 2;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001143 }
Damien Martin-Guillerez08441122015-05-28 11:12:31 +00001144 return size;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001145}
1146
1147} // namespace devtools_ijar