Damien Martin-Guillerez | bf6281d | 2015-11-19 16:41:33 +0000 | [diff] [blame] | 1 | // Copyright 2015 The Bazel Authors. All rights reserved. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 2 | // |
| 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 29 | #include <stdarg.h> |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 30 | #include <stdio.h> |
| 31 | #include <stdlib.h> |
| 32 | #include <string.h> |
Damien Martin-Guillerez | cd4637e | 2015-05-28 20:19:53 +0000 | [diff] [blame] | 33 | #include <limits.h> |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 34 | #include <limits> |
| 35 | #include <vector> |
| 36 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 37 | #include "third_party/ijar/mapped_file.h" |
Laszlo Csomor | 645dbc4 | 2016-12-01 12:56:43 +0000 | [diff] [blame] | 38 | #include "third_party/ijar/platform_utils.h" |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 39 | #include "third_party/ijar/zip.h" |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 40 | #include "third_party/ijar/zlib_client.h" |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 41 | |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 42 | #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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 56 | |
| 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-Guillerez | eb6e903 | 2015-06-01 14:45:21 +0000 | [diff] [blame] | 65 | #define GENERAL_PURPOSE_BIT_FLAG_COMPRESSION_SPEED ((1 << 2) | (1 << 1)) |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 66 | #define GENERAL_PURPOSE_BIT_FLAG_SUPPORTED \ |
Damien Martin-Guillerez | eb6e903 | 2015-06-01 14:45:21 +0000 | [diff] [blame] | 67 | (GENERAL_PURPOSE_BIT_FLAG_COMPRESSED \ |
| 68 | | GENERAL_PURPOSE_BIT_FLAG_UTF8_ENCODED \ |
| 69 | | GENERAL_PURPOSE_BIT_FLAG_COMPRESSION_SPEED) |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 70 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 71 | namespace devtools_ijar { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 72 | // In the absence of ZIP64 support, zip files are limited to 4GB. |
| 73 | // http://www.info-zip.org/FAQ.html#limits |
| 74 | static const u8 kMaximumOutputSize = std::numeric_limits<uint32_t>::max(); |
| 75 | |
Liam Miller-Cushon | 899383d | 2016-12-12 23:32:57 +0000 | [diff] [blame] | 76 | static const u4 kDosEpoch = 1 << 21 | 1 << 16; // January 1, 1980 in DOS time |
| 77 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 78 | // |
| 79 | // A class representing a ZipFile for reading. Its public API is exposed |
| 80 | // using the ZipExtractor abstract class. |
| 81 | // |
| 82 | class InputZipFile : public ZipExtractor { |
| 83 | public: |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 84 | InputZipFile(ZipExtractorProcessor *processor, const char* filename); |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 85 | virtual ~InputZipFile(); |
| 86 | |
| 87 | virtual const char* GetError() { |
| 88 | if (errmsg[0] == 0) { |
| 89 | return NULL; |
| 90 | } |
| 91 | return errmsg; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 92 | } |
| 93 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 94 | bool Open(); |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 95 | virtual bool ProcessNext(); |
| 96 | virtual void Reset(); |
| 97 | virtual size_t GetSize() { |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 98 | return input_file_->Length(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 99 | } |
| 100 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 101 | virtual u8 CalculateOutputLength(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 102 | |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 103 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 108 | private: |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 109 | ZipExtractorProcessor *processor; |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 110 | const char* filename_; |
| 111 | MappedInputFile *input_file_; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 112 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 113 | // 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 Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 116 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 119 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 120 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 125 | |
| 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-Guillerez | eb6e903 | 2015-06-01 14:45:21 +0000 | [diff] [blame] | 130 | // MAX_BUFFER_SIZE must be bigger than the size of the biggest file in the |
Googler | 54d94d2 | 2016-04-05 15:47:22 +0000 | [diff] [blame] | 131 | // ZIP. It is set to 2GB here because no one has audited the code for 64-bit |
| 132 | // cleanliness. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 133 | static const size_t INITIAL_BUFFER_SIZE = 256 * 1024; // 256K |
Googler | 54d94d2 | 2016-04-05 15:47:22 +0000 | [diff] [blame] | 134 | static const size_t MAX_BUFFER_SIZE = std::numeric_limits<int32_t>::max(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 135 | static const size_t MAX_MAPPED_REGION = 32 * 1024 * 1024; |
| 136 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 137 | // 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 156 | // Copy of the last filename entry - Null-terminated. |
| 157 | char filename[PATH_MAX]; |
| 158 | // The external file attribute field |
| 159 | u4 attr; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 160 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 161 | // last error |
| 162 | char errmsg[4*PATH_MAX]; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 163 | |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 164 | Decompressor *decompressor_; |
| 165 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 166 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 173 | |
| 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 177 | int EnsureRemaining(size_t n, const char *state) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 178 | size_t in_offset = p - zipdata_in_; |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 179 | size_t remaining = input_file_->Length() - in_offset; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 180 | if (n > remaining) { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 181 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 184 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 185 | return 0; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 186 | } |
| 187 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 188 | // 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 | // |
| 206 | class OutputZipFile : public ZipBuilder { |
| 207 | public: |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 208 | OutputZipFile(const char* filename, u8 estimated_size) : |
| 209 | output_file_(NULL), |
| 210 | filename_(filename), |
| 211 | estimated_size_(estimated_size), |
| 212 | finished_(false) { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 213 | 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-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 225 | virtual int FinishFile(size_t filelength, bool compress = false, |
| 226 | bool compute_crc = false); |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 227 | virtual int WriteEmptyFile(const char *filename); |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 228 | virtual size_t GetSize() { |
| 229 | return Offset(q); |
| 230 | } |
| 231 | virtual int GetNumberFiles() { |
| 232 | return entries_.size(); |
| 233 | } |
| 234 | virtual int Finish(); |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 235 | bool Open(); |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 236 | |
| 237 | private: |
| 238 | struct LocalFileEntry { |
| 239 | // Start of the local header (in the output buffer). |
| 240 | size_t local_header_offset; |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 241 | |
| 242 | // Sizes of the file entry |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 243 | size_t uncompressed_length; |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 244 | size_t compressed_length; |
| 245 | |
| 246 | // Compression method |
| 247 | u2 compression_method; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 248 | |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 249 | // CRC32 |
| 250 | u4 crc32; |
| 251 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 252 | // 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 Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 264 | MappedOutputFile* output_file_; |
| 265 | const char* filename_; |
| 266 | u8 estimated_size_; |
| 267 | bool finished_; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 268 | |
| 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 Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 272 | u1 *zipdata_out_; // start of output file mmap |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 273 | u1 *q; // output cursor |
| 274 | |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 275 | u1 *header_ptr; // Current pointer to "compression method" entry. |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 276 | |
| 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 295 | // 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 301 | // 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 305 | u1* WriteLocalFileHeader(const char *filename, const u4 attr); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 306 | |
| 307 | // Fill in the "compressed size" and "uncompressed size" fields in a local |
| 308 | // file header previously written by WriteLocalFileHeader(). |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 309 | size_t WriteFileSizeInLocalFileHeader(u1 *header_ptr, |
| 310 | size_t out_length, |
| 311 | bool compress = false, |
| 312 | const u4 crc = 0); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 313 | }; |
| 314 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 315 | // |
| 316 | // Implementation of InputZipFile |
| 317 | // |
| 318 | bool 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 326 | } |
| 327 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 328 | // 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 333 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 334 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 348 | } |
| 349 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 350 | int InputZipFile::ProcessLocalFileEntry( |
| 351 | size_t compressed_size, size_t uncompressed_size) { |
| 352 | if (EnsureRemaining(26, "extract_version") < 0) { |
| 353 | return -1; |
| 354 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 355 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 359 | return error("Unsupported value (0x%04x) in general purpose bit flag.\n", |
| 360 | general_purpose_bit_flag_); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | compression_method_ = get_u2le(p); |
| 364 | |
| 365 | if (compression_method_ != COMPRESSION_METHOD_DEFLATED && |
| 366 | compression_method_ != COMPRESSION_METHOD_STORED) { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 367 | return error("Unsupported compression method (%d).\n", |
| 368 | compression_method_); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 369 | } |
| 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 378 | if (EnsureRemaining(file_name_length_, "file_name") < 0) { |
| 379 | return -1; |
| 380 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 381 | file_name_ = p; |
| 382 | p += file_name_length_; |
| 383 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 384 | if (EnsureRemaining(extra_field_length_, "extra_field") < 0) { |
| 385 | return -1; |
| 386 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 387 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 400 | return error("central directory and file header inconsistent\n"); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 401 | } |
| 402 | } |
| 403 | |
| 404 | if (uncompressed_size_ == 0) { |
| 405 | uncompressed_size_ = uncompressed_size; |
| 406 | } else { |
| 407 | if (uncompressed_size_ != uncompressed_size) { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 408 | return error("central directory and file header inconsistent\n"); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 409 | } |
| 410 | } |
| 411 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 412 | if (processor->Accept(filename, attr)) { |
| 413 | if (ProcessFile(is_compressed) < 0) { |
| 414 | return -1; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 415 | } |
| 416 | } else { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 417 | if (SkipFile(is_compressed) < 0) { |
| 418 | return -1; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 419 | } |
| 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-Guillerez | 9778696 | 2016-04-01 09:13:00 +0000 | [diff] [blame] | 435 | size_t bytes_processed = p - zipdata_in_; |
| 436 | if (bytes_processed > bytes_unmapped_ + MAX_MAPPED_REGION) { |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 437 | input_file_->Discard(MAX_MAPPED_REGION); |
| 438 | bytes_unmapped_ += MAX_MAPPED_REGION; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 439 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 440 | |
| 441 | return 0; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 442 | } |
| 443 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 444 | int 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 452 | } |
| 453 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 454 | if (EnsureRemaining(compressed_size_, "file_data") < 0) { |
| 455 | return -1; |
| 456 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 457 | p += compressed_size_; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 458 | return 0; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 459 | } |
| 460 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 461 | u1* InputZipFile::UncompressFile() { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 462 | size_t in_offset = p - zipdata_in_; |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 463 | size_t remaining = input_file_->Length() - in_offset; |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 464 | DecompressedFile *decompressed_file = |
| 465 | decompressor_->UncompressFile(p, remaining); |
| 466 | if (decompressed_file == NULL) { |
| 467 | if (decompressor_->GetError() != NULL) { |
| 468 | error(decompressor_->GetError()); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 469 | } |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 470 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 478 | } |
| 479 | } |
| 480 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 481 | int 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 495 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 496 | if (EnsureRemaining(compressed_size_, "file_data") < 0) { |
| 497 | return -1; |
| 498 | } |
| 499 | file_data = p; |
| 500 | p += compressed_size_; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 501 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 502 | processor->Process(filename, attr, file_data, uncompressed_size_); |
| 503 | return 0; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 504 | } |
| 505 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 506 | |
| 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 517 | bool 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 521 | u4 signature = get_u4le(p); |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 522 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 523 | if (signature != CENTRAL_FILE_HEADER_SIGNATURE) { |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 524 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 528 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 537 | p += 4; // skip to external file attributes field |
| 538 | *attr = get_u4le(p); |
| 539 | *offset = get_u4le(p); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 540 | { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 541 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 546 | } |
| 547 | p += file_name_length; |
| 548 | p += extra_field_length; |
| 549 | p += file_comment_length; |
| 550 | return true; |
| 551 | } |
| 552 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 553 | // 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. |
| 556 | u8 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 Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 585 | return (u8) input_file_->Length() - skipped_compressed_size |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 586 | + (uncompressed_size - compressed_size); |
| 587 | } |
| 588 | |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 589 | // An end of central directory record, sized for optional zip64 contents. |
| 590 | struct 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. |
| 601 | bool 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. |
| 668 | bool 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 707 | // 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 709 | bool FindZipCentralDirectory(const u1 *bytes, size_t in_length, u4 *offset, |
| 710 | const u1 **central_dir) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 711 | 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 725 | if (get_u4le(p) != EOCD_SIGNATURE) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 726 | 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 749 | EndOfCentralDirectoryRecord cd; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 750 | const u1* end_of_central_dir = current; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 751 | get_u4le(current); // central directory locator signature, already checked |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 752 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 758 | u2 file_comment_length = get_u2le(current); |
| 759 | current += file_comment_length; // set current to the end of the central dir |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 760 | |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 761 | 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 767 | 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 772 | *offset = cd.central_dir_offset; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 773 | // 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 776 | *central_dir = end_of_central_dir - cd.central_dir_size; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 777 | return true; |
| 778 | } |
| 779 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 780 | void InputZipFile::Reset() { |
| 781 | central_dir_current_ = central_dir_; |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 782 | bytes_unmapped_ = 0; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 783 | p = zipdata_in_ + in_offset_; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 784 | } |
| 785 | |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 786 | int ZipExtractor::ProcessAll() { |
| 787 | while (ProcessNext()) {} |
| 788 | if (GetError() != NULL) { |
| 789 | return -1; |
| 790 | } |
| 791 | return 0; |
| 792 | } |
| 793 | |
| 794 | ZipExtractor* ZipExtractor::Create(const char* filename, |
| 795 | ZipExtractorProcessor *processor) { |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 796 | InputZipFile* result = new InputZipFile(processor, filename); |
| 797 | if (!result->Open()) { |
| 798 | fprintf(stderr, "%s\n", result->GetError()); |
| 799 | delete result; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 800 | return NULL; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 801 | } |
| 802 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 803 | return result; |
| 804 | } |
| 805 | |
| 806 | // zipdata_in_, in_offset_, p, central_dir_current_ |
| 807 | |
| 808 | InputZipFile::InputZipFile(ZipExtractorProcessor *processor, |
| 809 | const char* filename) |
| 810 | : processor(processor), filename_(filename), input_file_(NULL), |
| 811 | bytes_unmapped_(0) { |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 812 | decompressor_ = new Decompressor(); |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 813 | errmsg[0] = 0; |
| 814 | } |
| 815 | |
| 816 | bool 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 822 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 823 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 824 | void *zipdata_in = input_file->Buffer(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 825 | u4 central_dir_offset; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 826 | const u1 *central_dir = NULL; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 827 | |
| 828 | if (!devtools_ijar::FindZipCentralDirectory( |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 829 | static_cast<const u1*>(zipdata_in), input_file->Length(), |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 830 | ¢ral_dir_offset, ¢ral_dir)) { |
| 831 | errno = EIO; // we don't really have a good error number |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 832 | error("Cannot find central directory"); |
| 833 | delete input_file; |
| 834 | return false; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 835 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 836 | const u1 *zipdata_start = static_cast<const u1*>(zipdata_in); |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 837 | in_offset_ = - static_cast<off_t>(zipdata_start |
| 838 | + central_dir_offset |
| 839 | - central_dir); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 840 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 841 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 846 | errmsg[0] = 0; |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 847 | return true; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | InputZipFile::~InputZipFile() { |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 851 | delete decompressor_; |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 852 | if (input_file_ != NULL) { |
| 853 | input_file_->Close(); |
| 854 | delete input_file_; |
| 855 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | |
| 859 | // |
| 860 | // Implementation of OutputZipFile |
| 861 | // |
| 862 | int 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-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 869 | entry->crc32 = 0; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 870 | |
| 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-Cushon | 899383d | 2016-12-12 23:32:57 +0000 | [diff] [blame] | 876 | put_u4le(q, kDosEpoch); // last_mod_file date and time |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 877 | put_u4le(q, entry->crc32); // crc32 |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 878 | 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-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 886 | entry->compressed_length = 0; |
| 887 | entry->uncompressed_length = 0; |
| 888 | entry->compression_method = 0; |
| 889 | entry->extra_field = (const u1 *)""; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 890 | entry->file_name = (u1*) strdup((const char *) file_name); |
| 891 | entries_.push_back(entry); |
| 892 | |
| 893 | return 0; |
| 894 | } |
| 895 | |
| 896 | void OutputZipFile::WriteCentralDirectory() { |
| 897 | // central directory: |
| 898 | const u1 *central_directory_start = q; |
Ulf Adams | 523bff5 | 2015-07-24 12:17:18 +0000 | [diff] [blame] | 899 | for (size_t ii = 0; ii < entries_.size(); ++ii) { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 900 | 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-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 906 | put_u2le(q, entry->compression_method); // compression method: |
Liam Miller-Cushon | 899383d | 2016-12-12 23:32:57 +0000 | [diff] [blame] | 907 | put_u4le(q, kDosEpoch); // last_mod_file date and time |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 908 | put_u4le(q, entry->crc32); // crc32 |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 909 | put_u4le(q, entry->compressed_length); // compressed_size |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 910 | 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-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 924 | u8 central_directory_size = q - central_directory_start; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 925 | |
Liam Miller-Cushon | 220be7a | 2015-12-03 18:23:09 +0000 | [diff] [blame] | 926 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | u1* OutputZipFile::WriteLocalFileHeader(const char* filename, const u4 attr) { |
Ulf Adams | 523bff5 | 2015-07-24 12:17:18 +0000 | [diff] [blame] | 981 | 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 Hamaji | a500443 | 2016-05-02 09:44:43 +0000 | [diff] [blame] | 990 | entry->crc32 = 0; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 991 | |
Ulf Adams | 523bff5 | 2015-07-24 12:17:18 +0000 | [diff] [blame] | 992 | // 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-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 996 | u1 *header_ptr = q; |
| 997 | put_u2le(q, COMPRESSION_METHOD_STORED); // compression method = placeholder |
Liam Miller-Cushon | 899383d | 2016-12-12 23:32:57 +0000 | [diff] [blame] | 998 | put_u4le(q, kDosEpoch); // last_mod_file date and time |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 999 | put_u4le(q, entry->crc32); // crc32 |
Ulf Adams | 523bff5 | 2015-07-24 12:17:18 +0000 | [diff] [blame] | 1000 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1004 | |
Ulf Adams | 523bff5 | 2015-07-24 12:17:18 +0000 | [diff] [blame] | 1005 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1008 | |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1009 | return header_ptr; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1010 | } |
| 1011 | |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1012 | size_t OutputZipFile::WriteFileSizeInLocalFileHeader(u1 *header_ptr, |
| 1013 | size_t out_length, |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 1014 | bool compress, |
| 1015 | const u4 crc) { |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1016 | 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-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 1026 | header_ptr += 4; |
| 1027 | put_u4le(header_ptr, crc); // crc32 |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1028 | put_u4le(header_ptr, compressed_size); // compressed_size |
| 1029 | put_u4le(header_ptr, out_length); // uncompressed_size |
| 1030 | return compressed_size; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1031 | } |
| 1032 | |
| 1033 | int OutputZipFile::Finish() { |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1034 | if (finished_) { |
| 1035 | return 0; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1036 | } |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1037 | |
| 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1045 | return 0; |
| 1046 | } |
| 1047 | |
| 1048 | u1* OutputZipFile::NewFile(const char* filename, const u4 attr) { |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1049 | header_ptr = WriteLocalFileHeader(filename, attr); |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1050 | return q; |
| 1051 | } |
| 1052 | |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 1053 | int OutputZipFile::FinishFile(size_t filelength, bool compress, |
| 1054 | bool compute_crc) { |
| 1055 | u4 crc = 0; |
| 1056 | if (compute_crc) { |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 1057 | 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-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 1063 | } |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1064 | size_t compressed_size = |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 1065 | WriteFileSizeInLocalFileHeader(header_ptr, filelength, compress, crc); |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 1066 | |
| 1067 | if (compressed_size == 0 && filelength > 0) { |
| 1068 | fprintf(stderr, "Error compressing files.\n"); |
| 1069 | return -1; |
| 1070 | } |
| 1071 | |
Damien Martin-Guillerez | 4009d2c | 2015-09-11 14:44:53 +0000 | [diff] [blame] | 1072 | entries_.back()->crc32 = crc; |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1073 | entries_.back()->compressed_length = compressed_size; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1074 | entries_.back()->uncompressed_length = filelength; |
Damien Martin-Guillerez | 3a160e7 | 2015-08-31 12:22:14 +0000 | [diff] [blame] | 1075 | 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1081 | return 0; |
| 1082 | } |
| 1083 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1084 | bool OutputZipFile::Open() { |
| 1085 | if (estimated_size_ > kMaximumOutputSize) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1086 | 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 Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1090 | estimated_size_, kMaximumOutputSize); |
| 1091 | estimated_size_ = kMaximumOutputSize; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1092 | } |
| 1093 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1094 | 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; |
Googler | cfef209 | 2016-02-29 21:42:27 +0000 | [diff] [blame] | 1099 | return false; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1100 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1101 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1102 | output_file_ = output_file; |
| 1103 | q = output_file->Buffer(); |
| 1104 | zipdata_out_ = output_file->Buffer(); |
| 1105 | return true; |
| 1106 | } |
| 1107 | |
| 1108 | ZipBuilder* 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-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1113 | return NULL; |
| 1114 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1115 | |
Lukacs Berki | 2573376 | 2016-02-16 12:20:45 +0000 | [diff] [blame] | 1116 | return result; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1117 | } |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1118 | |
Rumou Duan | a518f63 | 2016-09-21 21:59:01 +0000 | [diff] [blame] | 1119 | u8 ZipBuilder::EstimateSize(char const* const* files, |
| 1120 | char const* const* zip_paths, |
| 1121 | int nb_entries) { |
Laszlo Csomor | 645dbc4 | 2016-12-01 12:56:43 +0000 | [diff] [blame] | 1122 | Stat file_stat; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1123 | // 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 Peng | 43302f4 | 2016-08-04 13:48:02 +0000 | [diff] [blame] | 1127 | for (int i = 0; i < nb_entries; i++) { |
Laszlo Csomor | 645dbc4 | 2016-12-01 12:56:43 +0000 | [diff] [blame] | 1128 | file_stat.total_size = 0; |
| 1129 | if (files[i] != NULL && !stat_file(files[i], &file_stat)) { |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1130 | fprintf(stderr, "File %s does not seem to exist.", files[i]); |
| 1131 | return 0; |
| 1132 | } |
Laszlo Csomor | 645dbc4 | 2016-12-01 12:56:43 +0000 | [diff] [blame] | 1133 | size += file_stat.total_size; |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1134 | // 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 Peng | 43302f4 | 2016-08-04 13:48:02 +0000 | [diff] [blame] | 1142 | size += strlen((zip_paths[i] != NULL) ? zip_paths[i] : files[i]) * 2; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1143 | } |
Damien Martin-Guillerez | 0844112 | 2015-05-28 11:12:31 +0000 | [diff] [blame] | 1144 | return size; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | } // namespace devtools_ijar |