blob: fc92ac66191bc73a76de4ad4700a6bca4a6850b8 [file] [log] [blame]
Glenn L McGrath87ac7022002-01-02 13:52:26 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini unzip implementation for busybox
4 *
Paul Fox0840b762005-07-20 20:26:49 +00005 * Copyright (C) 2004 by Ed Clark
6 *
7 * Loosely based on original busybox unzip applet by Laurence Anderson.
8 * All options and features should work in this version.
Glenn L McGrath87ac7022002-01-02 13:52:26 +00009 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath87ac7022002-01-02 13:52:26 +000011 */
Glenn L McGrathf34b0e92004-06-06 10:22:43 +000012/* For reference see
Paul Fox0840b762005-07-20 20:26:49 +000013 * http://www.pkware.com/company/standards/appnote/
Glenn L McGrathf34b0e92004-06-06 10:22:43 +000014 * http://www.info-zip.org/pub/infozip/doc/appnote-iz-latest.zip
Denys Vlasenko66620fa2013-11-14 09:53:52 +010015 *
16 * TODO
Paul Fox0840b762005-07-20 20:26:49 +000017 * Zip64 + other methods
Paul Fox0840b762005-07-20 20:26:49 +000018 */
Denys Vlasenkof6beef62013-11-14 11:39:00 +010019//config:config UNZIP
Denys Vlasenkob097a842018-12-28 03:20:17 +010020//config: bool "unzip (26 kb)"
Denys Vlasenkof6beef62013-11-14 11:39:00 +010021//config: default y
22//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020023//config: unzip will list or extract files from a ZIP archive,
24//config: commonly found on DOS/WIN systems. The default behavior
25//config: (with no options) is to extract the archive into the
26//config: current directory.
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +010027//config:
28//config:config FEATURE_UNZIP_CDF
29//config: bool "Read and use Central Directory data"
30//config: default y
31//config: depends on UNZIP
32//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020033//config: If you know that you only need to deal with simple
34//config: ZIP files without deleted/updated files, SFX archives etc,
35//config: you can reduce code size by unselecting this option.
36//config: To support less trivial ZIPs, say Y.
Denys Vlasenko2a0867a2017-01-09 10:58:37 +010037//config:
38//config:config FEATURE_UNZIP_BZIP2
39//config: bool "Support compression method 12 (bzip2)"
40//config: default y
41//config: depends on FEATURE_UNZIP_CDF && DESKTOP
42// FEATURE_UNZIP_CDF is needed, otherwise we can't find start of next file
43// DESKTOP is needed to get back uncompressed length
44//config:
45//config:config FEATURE_UNZIP_LZMA
46//config: bool "Support compression method 14 (lzma)"
47//config: default y
48//config: depends on FEATURE_UNZIP_CDF && DESKTOP
Denys Vlasenko6b4f4b52017-01-09 11:12:01 +010049//config:
50//config:config FEATURE_UNZIP_XZ
51//config: bool "Support compression method 95 (xz)"
52//config: default y
53//config: depends on FEATURE_UNZIP_CDF && DESKTOP
Denys Vlasenkof6beef62013-11-14 11:39:00 +010054
Denys Vlasenkoac216872013-11-14 11:38:18 +010055//applet:IF_UNZIP(APPLET(unzip, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenko66620fa2013-11-14 09:53:52 +010056//kbuild:lib-$(CONFIG_UNZIP) += unzip.o
57
Pere Orga1f4447b2011-03-27 22:40:30 +020058//usage:#define unzip_trivial_usage
Denys Vlasenko1f60d882021-06-15 10:00:18 +020059//usage: "[-lnojpq] FILE[.zip] [FILE]... [-x FILE]... [-d DIR]"
Pere Orga1f4447b2011-03-27 22:40:30 +020060//usage:#define unzip_full_usage "\n\n"
Denys Vlasenkoe3e0d2b2012-06-19 12:46:59 +020061//usage: "Extract FILEs from ZIP archive\n"
62//usage: "\n -l List contents (with -q for short form)"
Denys Vlasenkoc5b01012012-06-15 16:43:26 +020063//usage: "\n -n Never overwrite files (default: ask)"
Pere Orga1f4447b2011-03-27 22:40:30 +020064//usage: "\n -o Overwrite"
Denys Vlasenko997ad2c2017-07-20 20:04:49 +020065//usage: "\n -j Do not restore paths"
Denys Vlasenko6b6826f2021-06-13 01:08:48 +020066//usage: "\n -p Write to stdout"
Denys Vlasenkocca4c9f2021-04-14 21:34:00 +020067//usage: "\n -t Test"
Pere Orga1f4447b2011-03-27 22:40:30 +020068//usage: "\n -q Quiet"
Denys Vlasenkoe3e0d2b2012-06-19 12:46:59 +020069//usage: "\n -x FILE Exclude FILEs"
70//usage: "\n -d DIR Extract into DIR"
Pere Orga1f4447b2011-03-27 22:40:30 +020071
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000072#include "libbb.h"
Denys Vlasenkod184a722011-09-22 12:45:14 +020073#include "bb_archive.h"
Glenn L McGrath87ac7022002-01-02 13:52:26 +000074
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +020075#if 0
76# define dbg(...) bb_error_msg(__VA_ARGS__)
77#else
78# define dbg(...) ((void)0)
79#endif
80
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +000081enum {
82#if BB_BIG_ENDIAN
83 ZIP_FILEHEADER_MAGIC = 0x504b0304,
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +010084 ZIP_CDF_MAGIC = 0x504b0102, /* CDF item */
85 ZIP_CDE_MAGIC = 0x504b0506, /* End of CDF */
Denys Vlasenkoafc766f2021-04-14 21:15:25 +020086 ZIP64_CDE_MAGIC = 0x504b0606, /* End of Zip64 CDF */
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +000087 ZIP_DD_MAGIC = 0x504b0708,
88#else
89 ZIP_FILEHEADER_MAGIC = 0x04034b50,
Denys Vlasenko4e8ff732010-05-24 04:33:02 +020090 ZIP_CDF_MAGIC = 0x02014b50,
Denis Vlasenko006e8622008-09-21 01:01:46 +000091 ZIP_CDE_MAGIC = 0x06054b50,
Denys Vlasenkoafc766f2021-04-14 21:15:25 +020092 ZIP64_CDE_MAGIC = 0x06064b50,
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +000093 ZIP_DD_MAGIC = 0x08074b50,
94#endif
95};
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000096
Paul Foxcb981632007-11-05 23:09:03 +000097#define ZIP_HEADER_LEN 26
98
Paul Fox0840b762005-07-20 20:26:49 +000099typedef union {
Paul Foxcb981632007-11-05 23:09:03 +0000100 uint8_t raw[ZIP_HEADER_LEN];
Paul Fox0840b762005-07-20 20:26:49 +0000101 struct {
Denis Vlasenko006e8622008-09-21 01:01:46 +0000102 uint16_t version; /* 0-1 */
Denys Vlasenkoe98884b2010-05-24 04:46:18 +0200103 uint16_t zip_flags; /* 2-3 */
Denis Vlasenko006e8622008-09-21 01:01:46 +0000104 uint16_t method; /* 4-5 */
105 uint16_t modtime; /* 6-7 */
106 uint16_t moddate; /* 8-9 */
107 uint32_t crc32 PACKED; /* 10-13 */
108 uint32_t cmpsize PACKED; /* 14-17 */
109 uint32_t ucmpsize PACKED; /* 18-21 */
110 uint16_t filename_len; /* 22-23 */
111 uint16_t extra_len; /* 24-25 */
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100112 /* filename follows (not NUL terminated) */
113 /* extra field follows */
114 /* data follows */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100115 } fmt PACKED;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000116} zip_header_t; /* PACKED - gcc 4.2.1 doesn't like it (spews warning) */
Paul Fox0840b762005-07-20 20:26:49 +0000117
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100118#define FIX_ENDIANNESS_ZIP(zip) \
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100119do { if (BB_BIG_ENDIAN) { \
Natanael Copa46f3f162017-07-25 20:44:50 +0200120 (zip).fmt.method = SWAP_LE16((zip).fmt.method ); \
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100121 (zip).fmt.crc32 = SWAP_LE32((zip).fmt.crc32 ); \
122 (zip).fmt.cmpsize = SWAP_LE32((zip).fmt.cmpsize ); \
123 (zip).fmt.ucmpsize = SWAP_LE32((zip).fmt.ucmpsize ); \
124 (zip).fmt.filename_len = SWAP_LE16((zip).fmt.filename_len); \
125 (zip).fmt.extra_len = SWAP_LE16((zip).fmt.extra_len ); \
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100126}} while (0)
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000127
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200128#define CDF_HEADER_LEN 42
Denis Vlasenko006e8622008-09-21 01:01:46 +0000129
130typedef union {
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200131 uint8_t raw[CDF_HEADER_LEN];
Denis Vlasenko006e8622008-09-21 01:01:46 +0000132 struct {
133 /* uint32_t signature; 50 4b 01 02 */
134 uint16_t version_made_by; /* 0-1 */
135 uint16_t version_needed; /* 2-3 */
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200136 uint16_t cdf_flags; /* 4-5 */
Denis Vlasenko006e8622008-09-21 01:01:46 +0000137 uint16_t method; /* 6-7 */
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100138 uint16_t modtime; /* 8-9 */
139 uint16_t moddate; /* 10-11 */
Denis Vlasenko006e8622008-09-21 01:01:46 +0000140 uint32_t crc32; /* 12-15 */
141 uint32_t cmpsize; /* 16-19 */
142 uint32_t ucmpsize; /* 20-23 */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100143 uint16_t filename_len; /* 24-25 */
144 uint16_t extra_len; /* 26-27 */
Denis Vlasenko006e8622008-09-21 01:01:46 +0000145 uint16_t file_comment_length; /* 28-29 */
146 uint16_t disk_number_start; /* 30-31 */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100147 uint16_t internal_attributes; /* 32-33 */
148 uint32_t external_attributes PACKED; /* 34-37 */
Denis Vlasenko006e8622008-09-21 01:01:46 +0000149 uint32_t relative_offset_of_local_header PACKED; /* 38-41 */
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100150 /* filename follows (not NUL terminated) */
151 /* extra field follows */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100152 /* file comment follows */
153 } fmt PACKED;
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200154} cdf_header_t;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000155
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100156#define FIX_ENDIANNESS_CDF(cdf) \
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100157do { if (BB_BIG_ENDIAN) { \
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100158 (cdf).fmt.version_made_by = SWAP_LE16((cdf).fmt.version_made_by); \
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200159 (cdf).fmt.version_needed = SWAP_LE16((cdf).fmt.version_needed ); \
160 (cdf).fmt.method = SWAP_LE16((cdf).fmt.method ); \
161 (cdf).fmt.modtime = SWAP_LE16((cdf).fmt.modtime ); \
162 (cdf).fmt.moddate = SWAP_LE16((cdf).fmt.moddate ); \
163 (cdf).fmt.crc32 = SWAP_LE32((cdf).fmt.crc32 ); \
164 (cdf).fmt.cmpsize = SWAP_LE32((cdf).fmt.cmpsize ); \
165 (cdf).fmt.ucmpsize = SWAP_LE32((cdf).fmt.ucmpsize ); \
166 (cdf).fmt.filename_len = SWAP_LE16((cdf).fmt.filename_len ); \
167 (cdf).fmt.extra_len = SWAP_LE16((cdf).fmt.extra_len ); \
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100168 (cdf).fmt.file_comment_length = SWAP_LE16((cdf).fmt.file_comment_length); \
169 (cdf).fmt.external_attributes = SWAP_LE32((cdf).fmt.external_attributes); \
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100170}} while (0)
Denis Vlasenko006e8622008-09-21 01:01:46 +0000171
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100172#define CDE_LEN 16
Denis Vlasenko006e8622008-09-21 01:01:46 +0000173
174typedef union {
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100175 uint8_t raw[CDE_LEN];
Denis Vlasenko006e8622008-09-21 01:01:46 +0000176 struct {
177 /* uint32_t signature; 50 4b 05 06 */
178 uint16_t this_disk_no;
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200179 uint16_t disk_with_cdf_no;
180 uint16_t cdf_entries_on_this_disk;
181 uint16_t cdf_entries_total;
182 uint32_t cdf_size;
183 uint32_t cdf_offset;
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100184 /* uint16_t archive_comment_length; */
185 /* archive comment follows */
186 } fmt PACKED;
187} cde_t;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000188
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100189#define FIX_ENDIANNESS_CDE(cde) \
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100190do { if (BB_BIG_ENDIAN) { \
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100191 (cde).fmt.cdf_offset = SWAP_LE32((cde).fmt.cdf_offset); \
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100192}} while (0)
193
194struct BUG {
195 /* Check the offset of the last element, not the length. This leniency
196 * allows for poor packing, whereby the overall struct may be too long,
197 * even though the elements are all in the right place.
198 */
199 char BUG_zip_header_must_be_26_bytes[
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100200 offsetof(zip_header_t, fmt.extra_len) + 2
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100201 == ZIP_HEADER_LEN ? 1 : -1];
202 char BUG_cdf_header_must_be_42_bytes[
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100203 offsetof(cdf_header_t, fmt.relative_offset_of_local_header) + 4
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100204 == CDF_HEADER_LEN ? 1 : -1];
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100205 char BUG_cde_must_be_16_bytes[
206 sizeof(cde_t) == CDE_LEN ? 1 : -1];
Denis Vlasenko006e8622008-09-21 01:01:46 +0000207};
208
Denis Vlasenko006e8622008-09-21 01:01:46 +0000209
210enum { zip_fd = 3 };
211
212
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100213/* This value means that we failed to find CDF */
214#define BAD_CDF_OFFSET ((uint32_t)0xffffffff)
Dan Fandrichb76f18d2010-06-17 21:39:44 -0700215
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100216#if !ENABLE_FEATURE_UNZIP_CDF
217
218# define find_cdf_offset() BAD_CDF_OFFSET
219
220#else
Denys Vlasenko5e87e8a2013-07-20 15:20:46 +0200221/* Seen in the wild:
222 * Self-extracting PRO2K3XP_32.exe contains 19078464 byte zip archive,
223 * where CDE was nearly 48 kbytes before EOF.
224 * (Surprisingly, it also apparently has *another* CDE structure
225 * closer to the end, with bogus cdf_offset).
226 * To make extraction work, bumped PEEK_FROM_END from 16k to 64k.
227 */
228#define PEEK_FROM_END (64*1024)
Denis Vlasenko006e8622008-09-21 01:01:46 +0000229/* NB: does not preserve file position! */
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200230static uint32_t find_cdf_offset(void)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000231{
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100232 cde_t cde;
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100233 unsigned char *buf;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000234 unsigned char *p;
235 off_t end;
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200236 uint32_t found;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000237
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100238 end = lseek(zip_fd, 0, SEEK_END);
239 if (end == (off_t) -1)
240 return BAD_CDF_OFFSET;
241
Dan Fandrichb76f18d2010-06-17 21:39:44 -0700242 end -= PEEK_FROM_END;
Denys Vlasenkofc2bb8f2010-05-24 13:07:55 +0200243 if (end < 0)
244 end = 0;
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100245
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200246 dbg("Looking for cdf_offset starting from 0x%"OFF_FMT"x", end);
Denys Vlasenko876c1212017-03-24 15:00:12 +0100247 xlseek(zip_fd, end, SEEK_SET);
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100248 buf = xzalloc(PEEK_FROM_END);
Dan Fandrichb76f18d2010-06-17 21:39:44 -0700249 full_read(zip_fd, buf, PEEK_FROM_END);
Denis Vlasenko006e8622008-09-21 01:01:46 +0000250
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200251 found = BAD_CDF_OFFSET;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000252 p = buf;
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100253 while (p <= buf + PEEK_FROM_END - CDE_LEN - 4) {
Denis Vlasenko006e8622008-09-21 01:01:46 +0000254 if (*p != 'P') {
255 p++;
256 continue;
257 }
258 if (*++p != 'K')
259 continue;
260 if (*++p != 5)
261 continue;
262 if (*++p != 6)
263 continue;
264 /* we found CDE! */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100265 memcpy(cde.raw, p + 1, CDE_LEN);
Denys Vlasenkoafc766f2021-04-14 21:15:25 +0200266 dbg("cde.this_disk_no:%d", cde.fmt.this_disk_no );
267 dbg("cde.disk_with_cdf_no:%d", cde.fmt.disk_with_cdf_no );
268 dbg("cde.cdf_entries_on_this_disk:%d", cde.fmt.cdf_entries_on_this_disk);
269 dbg("cde.cdf_entries_total:%d", cde.fmt.cdf_entries_total );
270 dbg("cde.cdf_size:%d", cde.fmt.cdf_size );
271 dbg("cde.cdf_offset:%x", cde.fmt.cdf_offset );
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100272 FIX_ENDIANNESS_CDE(cde);
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200273 /*
274 * I've seen .ZIP files with seemingly valid CDEs
275 * where cdf_offset points past EOF - ??
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200276 * This check ignores such CDEs:
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200277 */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100278 if (cde.fmt.cdf_offset < end + (p - buf)) {
279 found = cde.fmt.cdf_offset;
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200280 dbg("Possible cdf_offset:0x%x at 0x%"OFF_FMT"x",
281 (unsigned)found, end + (p-3 - buf));
282 dbg(" cdf_offset+cdf_size:0x%x",
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100283 (unsigned)(found + SWAP_LE32(cde.fmt.cdf_size)));
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200284 /*
285 * We do not "break" here because only the last CDE is valid.
286 * I've seen a .zip archive which contained a .zip file,
287 * uncompressed, and taking the first CDE was using
288 * the CDE inside that file!
289 */
290 }
Denis Vlasenko006e8622008-09-21 01:01:46 +0000291 }
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200292 free(buf);
Denys Vlasenko0ccf52a2016-04-17 21:05:34 +0200293 dbg("Found cdf_offset:0x%x", (unsigned)found);
294 return found;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000295};
296
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100297static uint32_t read_next_cdf(uint32_t cdf_offset, cdf_header_t *cdf)
Denis Vlasenko006e8622008-09-21 01:01:46 +0000298{
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100299 uint32_t magic;
300
301 if (cdf_offset == BAD_CDF_OFFSET)
302 return cdf_offset;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000303
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100304 dbg("Reading CDF at 0x%x", (unsigned)cdf_offset);
305 xlseek(zip_fd, cdf_offset, SEEK_SET);
306 xread(zip_fd, &magic, 4);
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100307 /* Central Directory End? Assume CDF has ended.
308 * (more correct method is to use cde.cdf_entries_total counter)
309 */
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100310 if (magic == ZIP_CDE_MAGIC) {
311 dbg("got ZIP_CDE_MAGIC");
312 return 0; /* EOF */
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200313 }
Denys Vlasenkoafc766f2021-04-14 21:15:25 +0200314 if (magic == ZIP64_CDE_MAGIC) { /* seen in .zip with >4GB files */
315 dbg("got ZIP64_CDE_MAGIC");
316 return 0; /* EOF */
317 }
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100318 xread(zip_fd, cdf->raw, CDF_HEADER_LEN);
Denis Vlasenko006e8622008-09-21 01:01:46 +0000319
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100320 FIX_ENDIANNESS_CDF(*cdf);
Denys Vlasenkoafc766f2021-04-14 21:15:25 +0200321 dbg(" magic:%08x filename_len:%u extra_len:%u file_comment_length:%u",
322 magic,
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100323 (unsigned)cdf->fmt.filename_len,
324 (unsigned)cdf->fmt.extra_len,
325 (unsigned)cdf->fmt.file_comment_length
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100326 );
Denys Vlasenkoafc766f2021-04-14 21:15:25 +0200327//TODO: require that magic == ZIP_CDF_MAGIC?
328
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100329 cdf_offset += 4 + CDF_HEADER_LEN
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100330 + cdf->fmt.filename_len
331 + cdf->fmt.extra_len
332 + cdf->fmt.file_comment_length;
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100333
Denys Vlasenkoafc766f2021-04-14 21:15:25 +0200334 dbg("Next cdf_offset 0x%x", cdf_offset);
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200335 return cdf_offset;
Denis Vlasenko006e8622008-09-21 01:01:46 +0000336};
337#endif
338
Denys Vlasenkoad37abf2017-07-20 20:21:50 +0200339static void die_if_bad_fnamesize(unsigned sz)
340{
341 if (sz > 0xfff) /* more than 4k?! no funny business please */
James Byrne69374872019-07-02 11:35:03 +0200342 bb_simple_error_msg_and_die("bad archive");
Denys Vlasenkoad37abf2017-07-20 20:21:50 +0200343}
344
Denis Vlasenko006e8622008-09-21 01:01:46 +0000345static void unzip_skip(off_t skip)
346{
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200347 if (skip != 0)
348 if (lseek(zip_fd, skip, SEEK_CUR) == (off_t)-1)
349 bb_copyfd_exact_size(zip_fd, -1, skip);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000350}
351
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000352static void unzip_create_leading_dirs(const char *fn)
Paul Fox0840b762005-07-20 20:26:49 +0000353{
354 /* Create all leading directories */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000355 char *name = xstrdup(fn);
Denys Vlasenko5cdd1202018-02-06 17:59:32 +0100356
357 /* mode of -1: set mode according to umask */
358 if (bb_make_directory(dirname(name), -1, FILEUTILS_RECUR)) {
Denys Vlasenko831756b2011-09-09 17:30:55 +0200359 xfunc_die(); /* bb_make_directory is noisy */
Paul Fox0840b762005-07-20 20:26:49 +0000360 }
361 free(name);
362}
363
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200364#if ENABLE_FEATURE_UNZIP_CDF
Denys Vlasenkoa84db182018-02-20 15:57:45 +0100365static void unzip_extract_symlink(llist_t **symlink_placeholders,
366 zip_header_t *zip,
367 const char *dst_fn)
Denys Vlasenko13ae85e2017-07-20 18:34:51 +0200368{
369 char *target;
370
Denys Vlasenkoad37abf2017-07-20 20:21:50 +0200371 die_if_bad_fnamesize(zip->fmt.ucmpsize);
Denys Vlasenko13ae85e2017-07-20 18:34:51 +0200372
373 if (zip->fmt.method == 0) {
374 /* Method 0 - stored (not compressed) */
375 target = xzalloc(zip->fmt.ucmpsize + 1);
376 xread(zip_fd, target, zip->fmt.ucmpsize);
377 } else {
378#if 1
James Byrne69374872019-07-02 11:35:03 +0200379 bb_simple_error_msg_and_die("compressed symlink is not supported");
Denys Vlasenko13ae85e2017-07-20 18:34:51 +0200380#else
381 transformer_state_t xstate;
382 init_transformer_state(&xstate);
383 xstate.mem_output_size_max = zip->fmt.ucmpsize;
384 /* ...unpack... */
385 if (!xstate.mem_output_buf)
386 WTF();
387 target = xstate.mem_output_buf;
388 target = xrealloc(target, xstate.mem_output_size + 1);
389 target[xstate.mem_output_size] = '\0';
390#endif
391 }
Harald van Dijk8c24af92018-05-22 17:34:31 +0200392 create_or_remember_link(symlink_placeholders,
Denys Vlasenkoa84db182018-02-20 15:57:45 +0100393 target,
Harald van Dijk8c24af92018-05-22 17:34:31 +0200394 dst_fn,
395 0);
Denys Vlasenko13ae85e2017-07-20 18:34:51 +0200396 free(target);
397}
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200398#endif
Denys Vlasenko13ae85e2017-07-20 18:34:51 +0200399
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100400static void unzip_extract(zip_header_t *zip, int dst_fd)
Paul Fox0840b762005-07-20 20:26:49 +0000401{
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100402 transformer_state_t xstate;
403
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100404 if (zip->fmt.method == 0) {
Paul Fox0840b762005-07-20 20:26:49 +0000405 /* Method 0 - stored (not compressed) */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100406 off_t size = zip->fmt.ucmpsize;
Denis Vlasenko714701c2006-12-22 00:21:07 +0000407 if (size)
Denis Vlasenko006e8622008-09-21 01:01:46 +0000408 bb_copyfd_exact_size(zip_fd, dst_fd, size);
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100409 return;
410 }
411
412 init_transformer_state(&xstate);
413 xstate.bytes_in = zip->fmt.cmpsize;
414 xstate.src_fd = zip_fd;
415 xstate.dst_fd = dst_fd;
416 if (zip->fmt.method == 8) {
Paul Fox0840b762005-07-20 20:26:49 +0000417 /* Method 8 - inflate */
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100418 if (inflate_unzip(&xstate) < 0)
James Byrne69374872019-07-02 11:35:03 +0200419 bb_simple_error_msg_and_die("inflate error");
Paul Fox0840b762005-07-20 20:26:49 +0000420 /* Validate decompression - crc */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100421 if (zip->fmt.crc32 != (xstate.crc32 ^ 0xffffffffL)) {
James Byrne69374872019-07-02 11:35:03 +0200422 bb_simple_error_msg_and_die("crc error");
Paul Fox0840b762005-07-20 20:26:49 +0000423 }
Paul Fox0840b762005-07-20 20:26:49 +0000424 }
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100425#if ENABLE_FEATURE_UNZIP_BZIP2
426 else if (zip->fmt.method == 12) {
427 /* Tested. Unpacker reads too much, but we use CDF
428 * and will seek to the correct beginning of next file.
429 */
430 xstate.bytes_out = unpack_bz2_stream(&xstate);
431 if (xstate.bytes_out < 0)
James Byrne69374872019-07-02 11:35:03 +0200432 bb_simple_error_msg_and_die("inflate error");
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100433 }
434#endif
435#if ENABLE_FEATURE_UNZIP_LZMA
436 else if (zip->fmt.method == 14) {
437 /* Not tested yet */
438 xstate.bytes_out = unpack_lzma_stream(&xstate);
439 if (xstate.bytes_out < 0)
James Byrne69374872019-07-02 11:35:03 +0200440 bb_simple_error_msg_and_die("inflate error");
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100441 }
442#endif
Denys Vlasenko6b4f4b52017-01-09 11:12:01 +0100443#if ENABLE_FEATURE_UNZIP_XZ
444 else if (zip->fmt.method == 95) {
445 /* Not tested yet */
446 xstate.bytes_out = unpack_xz_stream(&xstate);
447 if (xstate.bytes_out < 0)
James Byrne69374872019-07-02 11:35:03 +0200448 bb_simple_error_msg_and_die("inflate error");
Denys Vlasenko6b4f4b52017-01-09 11:12:01 +0100449 }
450#endif
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100451 else {
452 bb_error_msg_and_die("unsupported method %u", zip->fmt.method);
453 }
454
455 /* Validate decompression - size */
Denys Vlasenkoafc766f2021-04-14 21:15:25 +0200456 if (zip->fmt.ucmpsize != 0xffffffff /* seen on files with >4GB uncompressed data */
457 && zip->fmt.ucmpsize != xstate.bytes_out
458 ) {
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100459 /* Don't die. Who knows, maybe len calculation
460 * was botched somewhere. After all, crc matched! */
James Byrne69374872019-07-02 11:35:03 +0200461 bb_simple_error_msg("bad length");
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100462 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000463}
464
Denys Vlasenkobf998072013-01-22 11:16:08 +0100465static void my_fgets80(char *buf80)
466{
467 fflush_all();
468 if (!fgets(buf80, 80, stdin)) {
James Byrne69374872019-07-02 11:35:03 +0200469 bb_simple_perror_msg_and_die("can't read standard input");
Denys Vlasenkobf998072013-01-22 11:16:08 +0100470 }
471}
472
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200473static int get_lstat_mode(const char *dst_fn)
474{
475 struct stat stat_buf;
476 if (lstat(dst_fn, &stat_buf) == -1) {
477 if (errno != ENOENT) {
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200478 bb_perror_msg_and_die("can't stat '%s'",
479 dst_fn
480 );
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200481 }
482 /* File does not exist */
483 return -1;
484 }
485 return stat_buf.st_mode;
486}
487
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000488int unzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000489int unzip_main(int argc, char **argv)
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000490{
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200491 enum {
492 OPT_l = (1 << 0),
493 OPT_x = (1 << 1),
494 OPT_j = (1 << 2),
495 };
496 unsigned opts;
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200497 smallint quiet = 0;
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100498 IF_NOT_FEATURE_UNZIP_CDF(const) smallint verbose = 0;
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200499 enum { O_PROMPT, O_NEVER, O_ALWAYS };
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000500 smallint overwrite = O_PROMPT;
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200501 uint32_t cdf_offset;
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200502 unsigned long total_usize;
503 unsigned long total_size;
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000504 unsigned total_entries;
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000505 int dst_fd = -1;
506 char *src_fn = NULL;
507 char *dst_fn = NULL;
Mike Frysinger69024552005-07-30 07:30:26 +0000508 llist_t *zaccept = NULL;
509 llist_t *zreject = NULL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000510 char *base_dir = NULL;
Denys Vlasenkoa84db182018-02-20 15:57:45 +0100511#if ENABLE_FEATURE_UNZIP_CDF
512 llist_t *symlink_placeholders = NULL;
513#endif
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200514 int i;
Denys Vlasenkobf998072013-01-22 11:16:08 +0100515 char key_buf[80]; /* must match size used by my_fgets80 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000516
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200517/* -q, -l and -v: UnZip 5.52 of 28 February 2005, by Info-ZIP:
518 *
519 * # /usr/bin/unzip -qq -v decompress_unlzma.i.zip
520 * 204372 Defl:N 35278 83% 09-06-09 14:23 0d056252 decompress_unlzma.i
521 * # /usr/bin/unzip -q -v decompress_unlzma.i.zip
522 * Length Method Size Ratio Date Time CRC-32 Name
523 * -------- ------ ------- ----- ---- ---- ------ ----
524 * 204372 Defl:N 35278 83% 09-06-09 14:23 0d056252 decompress_unlzma.i
525 * -------- ------- --- -------
526 * 204372 35278 83% 1 file
527 * # /usr/bin/unzip -v decompress_unlzma.i.zip
528 * Archive: decompress_unlzma.i.zip
529 * Length Method Size Ratio Date Time CRC-32 Name
530 * -------- ------ ------- ----- ---- ---- ------ ----
531 * 204372 Defl:N 35278 83% 09-06-09 14:23 0d056252 decompress_unlzma.i
532 * -------- ------- --- -------
533 * 204372 35278 83% 1 file
534 * # unzip -v decompress_unlzma.i.zip
535 * Archive: decompress_unlzma.i.zip
536 * Length Date Time Name
537 * -------- ---- ---- ----
538 * 204372 09-06-09 14:23 decompress_unlzma.i
539 * -------- -------
540 * 204372 1 files
541 * # /usr/bin/unzip -l -qq decompress_unlzma.i.zip
542 * 204372 09-06-09 14:23 decompress_unlzma.i
543 * # /usr/bin/unzip -l -q decompress_unlzma.i.zip
544 * Length Date Time Name
545 * -------- ---- ---- ----
546 * 204372 09-06-09 14:23 decompress_unlzma.i
547 * -------- -------
548 * 204372 1 file
549 * # /usr/bin/unzip -l decompress_unlzma.i.zip
550 * Archive: decompress_unlzma.i.zip
551 * Length Date Time Name
552 * -------- ---- ---- ----
553 * 204372 09-06-09 14:23 decompress_unlzma.i
554 * -------- -------
555 * 204372 1 file
556 */
557
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200558 opts = 0;
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000559 /* '-' makes getopt return 1 for non-options */
Denys Vlasenkocca4c9f2021-04-14 21:34:00 +0200560 while ((i = getopt(argc, argv, "-d:lnotpqxjv")) != -1) {
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200561 switch (i) {
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200562 case 'd': /* Extract to base directory */
563 base_dir = optarg;
564 break;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000565
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200566 case 'l': /* List */
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200567 opts |= OPT_l;
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200568 break;
Paul Fox0840b762005-07-20 20:26:49 +0000569
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200570 case 'n': /* Never overwrite existing files */
571 overwrite = O_NEVER;
572 break;
Paul Fox0840b762005-07-20 20:26:49 +0000573
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200574 case 'o': /* Always overwrite existing files */
575 overwrite = O_ALWAYS;
576 break;
Paul Fox0840b762005-07-20 20:26:49 +0000577
Denys Vlasenkocca4c9f2021-04-14 21:34:00 +0200578 case 't': /* Extract files to /dev/null */
579 xmove_fd(xopen("/dev/null", O_WRONLY), STDOUT_FILENO);
580 /*fallthrough*/
581
582 case 'p': /* Extract files to stdout */
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200583 dst_fd = STDOUT_FILENO;
Denys Vlasenkocca4c9f2021-04-14 21:34:00 +0200584 /*fallthrough*/
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200585
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200586 case 'q': /* Be quiet */
587 quiet++;
588 break;
Paul Fox0840b762005-07-20 20:26:49 +0000589
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200590 case 'v': /* Verbose list */
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100591 IF_FEATURE_UNZIP_CDF(verbose++;)
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200592 opts |= OPT_l;
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200593 break;
594
595 case 'x':
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200596 opts |= OPT_x;
597 break;
598
599 case 'j':
600 opts |= OPT_j;
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200601 break;
602
603 case 1:
604 if (!src_fn) {
605 /* The zip file */
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000606 /* +5: space for ".zip" and NUL */
607 src_fn = xmalloc(strlen(optarg) + 5);
Denis Vlasenko666c40c2007-03-31 10:17:24 +0000608 strcpy(src_fn, optarg);
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200609 } else if (!(opts & OPT_x)) {
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200610 /* Include files */
611 llist_add_to(&zaccept, optarg);
612 } else {
613 /* Exclude files */
614 llist_add_to(&zreject, optarg);
Paul Fox0840b762005-07-20 20:26:49 +0000615 }
616 break;
617
Paul Fox0840b762005-07-20 20:26:49 +0000618 default:
619 bb_show_usage();
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000620 }
621 }
622
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200623#ifndef __GLIBC__
624 /*
625 * This code is needed for non-GNU getopt
626 * which doesn't understand "-" in option string.
627 * The -x option won't work properly in this case:
628 * "unzip a.zip q -x w e" will be interpreted as
629 * "unzip a.zip q w e -x" = "unzip a.zip q w e"
630 */
631 argv += optind;
632 if (argv[0]) {
633 /* +5: space for ".zip" and NUL */
634 src_fn = xmalloc(strlen(argv[0]) + 5);
635 strcpy(src_fn, argv[0]);
636 while (*++argv)
637 llist_add_to(&zaccept, *argv);
638 }
639#endif
640
641 if (!src_fn) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000642 bb_show_usage();
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000643 }
644
Paul Fox0840b762005-07-20 20:26:49 +0000645 /* Open input file */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000646 if (LONE_DASH(src_fn)) {
Denis Vlasenko006e8622008-09-21 01:01:46 +0000647 xdup2(STDIN_FILENO, zip_fd);
Paul Fox0840b762005-07-20 20:26:49 +0000648 /* Cannot use prompt mode since zip data is arriving on STDIN */
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000649 if (overwrite == O_PROMPT)
650 overwrite = O_NEVER;
Glenn L McGrath237ae422002-11-03 14:05:15 +0000651 } else {
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200652 static const char extn[][5] ALIGN1 = { ".zip", ".ZIP" };
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200653 char *ext = src_fn + strlen(src_fn);
654 int src_fd;
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000655
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200656 i = 0;
657 for (;;) {
Paul Fox0840b762005-07-20 20:26:49 +0000658 src_fd = open(src_fn, O_RDONLY);
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200659 if (src_fd >= 0)
660 break;
661 if (++i > 2) {
662 *ext = '\0';
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200663 bb_error_msg_and_die("can't open %s[.zip]",
664 src_fn
665 );
Denys Vlasenkoc5b01012012-06-15 16:43:26 +0200666 }
667 strcpy(ext, extn[i - 1]);
Paul Fox0840b762005-07-20 20:26:49 +0000668 }
Denis Vlasenko006e8622008-09-21 01:01:46 +0000669 xmove_fd(src_fd, zip_fd);
Glenn L McGrath237ae422002-11-03 14:05:15 +0000670 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000671
Paul Fox0840b762005-07-20 20:26:49 +0000672 /* Change dir if necessary */
Lauri Kasanenb9943742020-04-15 15:01:44 +0300673 if (base_dir) {
674 /* -p DIR: try to create, errors don't matter.
675 * UnZip 6.00 does no multi-level mkdir (-p DIR1/DIR2 syntax),
676 * not using bb_make_directory() here (yet?)
677 */
678 mkdir(base_dir, 0777);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000679 xchdir(base_dir);
Lauri Kasanenb9943742020-04-15 15:01:44 +0300680 }
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000681
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200682 if (quiet <= 1) { /* not -qq */
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200683 if (quiet == 0) {
684 printf("Archive: %s\n",
685 printable_string(src_fn)
686 );
687 }
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200688 if (opts & OPT_l) {
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200689 puts(verbose ?
Denys Vlasenko07bd9792016-04-18 01:43:24 +0200690 " Length Method Size Cmpr Date Time CRC-32 Name\n"
691 "-------- ------ ------- ---- ---------- ----- -------- ----"
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200692 :
Denys Vlasenko07bd9792016-04-18 01:43:24 +0200693 " Length Date Time Name\n"
694 "--------- ---------- ----- ----"
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200695 );
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000696 }
697 }
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000698
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200699/* Example of an archive with one 0-byte long file named 'z'
700 * created by Zip 2.31 on Unix:
701 * 0000 [50 4b]03 04 0a 00 00 00 00 00 42 1a b8 3c 00 00 |PK........B..<..|
702 * sig........ vneed flags compr mtime mdate crc32>
703 * 0010 00 00 00 00 00 00 00 00 00 00 01 00 15 00 7a 55 |..............zU|
704 * >..... csize...... usize...... fnlen exlen fn ex>
705 * 0020 54 09 00 03 cc d3 f9 4b cc d3 f9 4b 55 78 04 00 |T......K...KUx..|
706 * >tra_field......................................
707 * 0030 00 00 00 00[50 4b]01 02 17 03 0a 00 00 00 00 00 |....PK..........|
708 * ........... sig........ vmade vneed flags compr
709 * 0040 42 1a b8 3c 00 00 00 00 00 00 00 00 00 00 00 00 |B..<............|
710 * mtime mdate crc32...... csize...... usize......
711 * 0050 01 00 0d 00 00 00 00 00 00 00 00 00 a4 81 00 00 |................|
712 * fnlen exlen clen. dnum. iattr eattr...... relofs> (eattr = rw-r--r--)
713 * 0060 00 00 7a 55 54 05 00 03 cc d3 f9 4b 55 78 00 00 |..zUT......KUx..|
714 * >..... fn extra_field...........................
715 * 0070 [50 4b]05 06 00 00 00 00 01 00 01 00 3c 00 00 00 |PK..........<...|
716 * 0080 34 00 00 00 00 00 |4.....|
717 */
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200718 total_usize = 0;
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000719 total_size = 0;
720 total_entries = 0;
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100721 cdf_offset = find_cdf_offset(); /* try to seek to the end, find CDE and CDF start */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000722 while (1) {
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100723 zip_header_t zip;
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200724 mode_t dir_mode = 0777;
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100725#if ENABLE_FEATURE_UNZIP_CDF
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200726 mode_t file_mode = 0666;
727#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000728
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100729 if (!ENABLE_FEATURE_UNZIP_CDF || cdf_offset == BAD_CDF_OFFSET) {
730 /* Normally happens when input is unseekable.
731 *
732 * Valid ZIP file has Central Directory at the end
733 * with central directory file headers (CDFs).
734 * After it, there is a Central Directory End structure.
735 * CDFs identify what files are in the ZIP and where
736 * they are located. This allows ZIP readers to load
737 * the list of files without reading the entire ZIP archive.
738 * ZIP files may be appended to, only files specified in
739 * the CD are valid. Scanning for local file headers is
740 * not a correct algorithm.
741 *
742 * We try to do the above, and resort to "linear" reading
743 * of ZIP file only if seek failed or CDE wasn't found.
744 */
745 uint32_t magic;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000746
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100747 /* Check magic number */
748 xread(zip_fd, &magic, 4);
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100749 /* CDF item? Assume there are no more files, exit */
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100750 if (magic == ZIP_CDF_MAGIC) {
751 dbg("got ZIP_CDF_MAGIC");
752 break;
753 }
754 /* Data descriptor? It was a streaming file, go on */
755 if (magic == ZIP_DD_MAGIC) {
756 dbg("got ZIP_DD_MAGIC");
757 /* skip over duplicate crc32, cmpsize and ucmpsize */
758 unzip_skip(3 * 4);
759 continue;
760 }
761 if (magic != ZIP_FILEHEADER_MAGIC)
762 bb_error_msg_and_die("invalid zip magic %08X", (int)magic);
763 dbg("got ZIP_FILEHEADER_MAGIC");
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200764
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100765 xread(zip_fd, zip.raw, ZIP_HEADER_LEN);
766 FIX_ENDIANNESS_ZIP(zip);
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100767 if (zip.fmt.zip_flags & SWAP_LE16(0x0008)) {
768 bb_error_msg_and_die("zip flag %s is not supported",
769 "8 (streaming)");
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100770 }
771 }
772#if ENABLE_FEATURE_UNZIP_CDF
773 else {
774 /* cdf_offset is valid (and we know the file is seekable) */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100775 cdf_header_t cdf;
776 cdf_offset = read_next_cdf(cdf_offset, &cdf);
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100777 if (cdf_offset == 0) /* EOF? */
778 break;
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100779# if 1
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100780 xlseek(zip_fd,
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100781 SWAP_LE32(cdf.fmt.relative_offset_of_local_header) + 4,
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100782 SEEK_SET);
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100783 xread(zip_fd, zip.raw, ZIP_HEADER_LEN);
784 FIX_ENDIANNESS_ZIP(zip);
785 if (zip.fmt.zip_flags & SWAP_LE16(0x0008)) {
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200786 /* 0x0008 - streaming. [u]cmpsize can be reliably gotten
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100787 * only from Central Directory.
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200788 */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100789 zip.fmt.crc32 = cdf.fmt.crc32;
790 zip.fmt.cmpsize = cdf.fmt.cmpsize;
791 zip.fmt.ucmpsize = cdf.fmt.ucmpsize;
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200792 }
Denys Vlasenko38d96692017-07-11 22:10:52 +0200793// Seen in some zipfiles: central directory 9 byte extra field contains
794// a subfield with ID 0x5455 and 5 data bytes, which is a Unix-style UTC mtime.
795// Local header version:
796// u16 0x5455 ("UT")
797// u16 size (1 + 4 * n)
798// u8 flags: bit 0:mtime is present, bit 1:atime is present, bit 2:ctime is present
799// u32 mtime
800// u32 atime
801// u32 ctime
802// Central header version:
803// u16 0x5455 ("UT")
804// u16 size (5 (or 1?))
805// u8 flags: bit 0:mtime is present, bit 1:atime is present, bit 2:ctime is present
806// u32 mtime (CDF does not store atime/ctime)
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100807# else
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100808 /* CDF has the same data as local header, no need to read the latter...
809 * ...not really. An archive was seen with cdf.extra_len == 6 but
810 * zip.extra_len == 0.
811 */
812 memcpy(&zip.fmt.version,
813 &cdf.fmt.version_needed, ZIP_HEADER_LEN);
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100814 xlseek(zip_fd,
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100815 SWAP_LE32(cdf.fmt.relative_offset_of_local_header) + 4 + ZIP_HEADER_LEN,
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100816 SEEK_SET);
817# endif
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100818 if ((cdf.fmt.version_made_by >> 8) == 3) {
Denys Vlasenko26cd90c2013-07-21 02:31:08 +0200819 /* This archive is created on Unix */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100820 dir_mode = file_mode = (cdf.fmt.external_attributes >> 16);
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200821 }
Denis Vlasenko48a99712008-07-26 17:32:41 +0000822 }
Denis Vlasenko006e8622008-09-21 01:01:46 +0000823#endif
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100824
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100825 if (zip.fmt.zip_flags & SWAP_LE16(0x0001)) {
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100826 /* 0x0001 - encrypted */
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100827 bb_error_msg_and_die("zip flag %s is not supported",
828 "1 (encryption)");
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100829 }
Denys Vlasenkobca4dee2016-04-18 01:14:05 +0200830 dbg("File cmpsize:0x%x extra_len:0x%x ucmpsize:0x%x",
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100831 (unsigned)zip.fmt.cmpsize,
832 (unsigned)zip.fmt.extra_len,
833 (unsigned)zip.fmt.ucmpsize
Denys Vlasenkobca4dee2016-04-18 01:14:05 +0200834 );
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000835
836 /* Read filename */
Paul Fox0840b762005-07-20 20:26:49 +0000837 free(dst_fn);
Denys Vlasenkoad37abf2017-07-20 20:21:50 +0200838 die_if_bad_fnamesize(zip.fmt.filename_len);
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100839 dst_fn = xzalloc(zip.fmt.filename_len + 1);
840 xread(zip_fd, dst_fn, zip.fmt.filename_len);
Paul Fox0840b762005-07-20 20:26:49 +0000841 /* Skip extra header bytes */
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100842 unzip_skip(zip.fmt.extra_len);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000843
Denys Vlasenko8c06bc62015-02-10 01:30:43 +0100844 /* Guard against "/abspath", "/../" and similar attacks */
845 overlapping_strcpy(dst_fn, strip_unsafe_prefix(dst_fn));
846
Paul Fox0840b762005-07-20 20:26:49 +0000847 /* Filter zip entries */
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000848 if (find_list_entry(zreject, dst_fn)
849 || (zaccept && !find_list_entry(zaccept, dst_fn))
850 ) { /* Skip entry */
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100851 goto skip_cmpsize;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000852 }
853
Denys Vlasenko997ad2c2017-07-20 20:04:49 +0200854 if (opts & OPT_l) {
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100855 /* List entry */
856 char dtbuf[sizeof("mm-dd-yyyy hh:mm")];
857 sprintf(dtbuf, "%02u-%02u-%04u %02u:%02u",
858 (zip.fmt.moddate >> 5) & 0xf, // mm: 0x01e0
859 (zip.fmt.moddate) & 0x1f, // dd: 0x001f
860 (zip.fmt.moddate >> 9) + 1980, // yy: 0xfe00
861 (zip.fmt.modtime >> 11), // hh: 0xf800
862 (zip.fmt.modtime >> 5) & 0x3f // mm: 0x07e0
863 // seconds/2 not shown, encoded in -- 0x001f
864 );
865 if (!verbose) {
866 // " Length Date Time Name\n"
867 // "--------- ---------- ----- ----"
868 printf( "%9u " "%s " "%s\n",
869 (unsigned)zip.fmt.ucmpsize,
870 dtbuf,
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200871 printable_string(dst_fn)
872 );
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100873 } else {
874 char method6[7];
875 unsigned long percents;
876
877 sprintf(method6, "%6u", zip.fmt.method);
878 if (zip.fmt.method == 0) {
879 strcpy(method6, "Stored");
880 }
881 if (zip.fmt.method == 8) {
882 strcpy(method6, "Defl:N");
883 /* normal, maximum, fast, superfast */
884 IF_DESKTOP(method6[5] = "NXFS"[(zip.fmt.zip_flags >> 1) & 3];)
885 }
886 percents = zip.fmt.ucmpsize - zip.fmt.cmpsize;
887 if ((int32_t)percents < 0)
888 percents = 0; /* happens if ucmpsize < cmpsize */
889 percents = percents * 100;
890 if (zip.fmt.ucmpsize)
891 percents /= zip.fmt.ucmpsize;
892 // " Length Method Size Cmpr Date Time CRC-32 Name\n"
893 // "-------- ------ ------- ---- ---------- ----- -------- ----"
894 printf( "%8u %s" "%9u%4u%% " "%s " "%08x " "%s\n",
895 (unsigned)zip.fmt.ucmpsize,
896 method6,
897 (unsigned)zip.fmt.cmpsize,
898 (unsigned)percents,
899 dtbuf,
900 zip.fmt.crc32,
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200901 printable_string(dst_fn)
902 );
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100903 total_size += zip.fmt.cmpsize;
904 }
905 total_usize += zip.fmt.ucmpsize;
906 goto skip_cmpsize;
907 }
908
909 if (dst_fd == STDOUT_FILENO) {
910 /* Extracting to STDOUT */
911 goto do_extract;
912 }
Eugene Rudoyc6f213a2017-11-07 08:03:36 +0100913
914 /* Strip paths (after -l: unzip -lj a.zip lists full names) */
915 if (opts & OPT_j)
916 overlapping_strcpy(dst_fn, bb_basename(dst_fn));
917 /* Did this strip everything ("DIR/" case)? Then skip */
918 if (!dst_fn[0])
919 goto skip_cmpsize;
920
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100921 if (last_char_is(dst_fn, '/')) {
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200922 int mode;
923
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100924 /* Extract directory */
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200925 mode = get_lstat_mode(dst_fn);
926 if (mode == -1) { /* ENOENT */
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100927 if (!quiet) {
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200928 printf(" creating: %s\n", printable_string(dst_fn));
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100929 }
930 unzip_create_leading_dirs(dst_fn);
931 if (bb_make_directory(dst_fn, dir_mode, FILEUTILS_IGNORE_CHMOD_ERR)) {
932 xfunc_die();
933 }
934 } else {
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200935 if (!S_ISDIR(mode)) {
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100936 bb_error_msg_and_die("'%s' exists but is not a %s",
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200937 printable_string(dst_fn),
938 "directory"
939 );
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100940 }
941 }
942 goto skip_cmpsize;
943 }
944 check_file:
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200945 /* Does target file already exist? */
946 {
947 int mode = get_lstat_mode(dst_fn);
948 if (mode == -1) {
949 /* ENOENT: does not exist */
950 goto do_open_and_extract;
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100951 }
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200952 if (overwrite == O_NEVER) {
953 goto skip_cmpsize;
954 }
955 if (!S_ISREG(mode)) {
956 fishy:
957 bb_error_msg_and_die("'%s' exists but is not a %s",
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200958 printable_string(dst_fn),
959 "regular file"
960 );
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200961 }
962 if (overwrite == O_ALWAYS) {
963 goto do_open_and_extract;
964 }
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200965 printf("replace %s? [y]es, [n]o, [A]ll, [N]one, [r]ename: ",
966 printable_string(dst_fn)
967 );
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200968 my_fgets80(key_buf);
969 /* User input could take a long time. Is it still a regular file? */
970 mode = get_lstat_mode(dst_fn);
971 if (!S_ISREG(mode))
972 goto fishy;
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100973 }
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100974
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200975 /* Extract (or skip) it */
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100976 switch (key_buf[0]) {
Paul Fox0840b762005-07-20 20:26:49 +0000977 case 'A':
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +0000978 overwrite = O_ALWAYS;
Paul Fox0840b762005-07-20 20:26:49 +0000979 case 'y': /* Open file and fall into unzip */
Denys Vlasenko8c1d8572017-01-09 13:10:10 +0100980 do_open_and_extract:
Paul Fox0840b762005-07-20 20:26:49 +0000981 unzip_create_leading_dirs(dst_fn);
Denys Vlasenkoe3c4db82017-01-05 11:43:53 +0100982#if ENABLE_FEATURE_UNZIP_CDF
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200983 dst_fd = -1;
984 if (!S_ISLNK(file_mode)) {
985 dst_fd = xopen3(dst_fn,
986 O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW,
987 file_mode);
988 }
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200989#else
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +0200990 /* O_NOFOLLOW defends against symlink attacks */
991 dst_fd = xopen(dst_fn, O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW);
Denys Vlasenko4e8ff732010-05-24 04:33:02 +0200992#endif
Denys Vlasenko386bc9f2009-09-06 16:52:50 +0200993 if (!quiet) {
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +0100994 printf(/* zip.fmt.method == 0
995 ? " extracting: %s\n"
Denys Vlasenko349d72c2018-09-30 16:56:56 +0200996 : */ " inflating: %s\n",
997 printable_string(dst_fn)
998 );
Paul Fox0840b762005-07-20 20:26:49 +0000999 }
Denys Vlasenkocca4c9f2021-04-14 21:34:00 +02001000 do_extract:
Denys Vlasenko13ae85e2017-07-20 18:34:51 +02001001#if ENABLE_FEATURE_UNZIP_CDF
1002 if (S_ISLNK(file_mode)) {
Denys Vlasenkobff9bbc2017-07-20 18:56:05 +02001003 if (dst_fd != STDOUT_FILENO) /* not -p? */
Denys Vlasenkoa84db182018-02-20 15:57:45 +01001004 unzip_extract_symlink(&symlink_placeholders, &zip, dst_fn);
Denys Vlasenko13ae85e2017-07-20 18:34:51 +02001005 } else
1006#endif
1007 {
1008 unzip_extract(&zip, dst_fd);
1009 if (dst_fd != STDOUT_FILENO) {
1010 /* closing STDOUT is potentially bad for future business */
1011 close(dst_fd);
1012 }
Paul Fox0840b762005-07-20 20:26:49 +00001013 }
1014 break;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00001015
Paul Fox0840b762005-07-20 20:26:49 +00001016 case 'N':
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +00001017 overwrite = O_NEVER;
Denys Vlasenko8c1d8572017-01-09 13:10:10 +01001018 case 'n': /* Skip entry data */
1019 skip_cmpsize:
Denys Vlasenko0ffac1c2017-01-08 14:14:19 +01001020 unzip_skip(zip.fmt.cmpsize);
Paul Fox0840b762005-07-20 20:26:49 +00001021 break;
1022
1023 case 'r':
1024 /* Prompt for new name */
1025 printf("new name: ");
Denys Vlasenkobf998072013-01-22 11:16:08 +01001026 my_fgets80(key_buf);
Paul Fox0840b762005-07-20 20:26:49 +00001027 free(dst_fn);
Rob Landleyd921b2e2006-08-03 15:41:12 +00001028 dst_fn = xstrdup(key_buf);
Paul Fox0840b762005-07-20 20:26:49 +00001029 chomp(dst_fn);
Denis Vlasenko48a99712008-07-26 17:32:41 +00001030 goto check_file;
Paul Fox0840b762005-07-20 20:26:49 +00001031
1032 default:
Denys Vlasenko8c1d8572017-01-09 13:10:10 +01001033 printf("error: invalid response [%c]\n", (char)key_buf[0]);
Denis Vlasenko48a99712008-07-26 17:32:41 +00001034 goto check_file;
Paul Fox0840b762005-07-20 20:26:49 +00001035 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00001036
Denis Vlasenko006e8622008-09-21 01:01:46 +00001037 total_entries++;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00001038 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00001039
Denys Vlasenkoa84db182018-02-20 15:57:45 +01001040#if ENABLE_FEATURE_UNZIP_CDF
Harald van Dijk8c24af92018-05-22 17:34:31 +02001041 create_links_from_list(symlink_placeholders);
Denys Vlasenkoa84db182018-02-20 15:57:45 +01001042#endif
1043
Denys Vlasenko997ad2c2017-07-20 20:04:49 +02001044 if ((opts & OPT_l) && quiet <= 1) {
Denys Vlasenko386bc9f2009-09-06 16:52:50 +02001045 if (!verbose) {
Denys Vlasenko07bd9792016-04-18 01:43:24 +02001046 // " Length Date Time Name\n"
1047 // "--------- ---------- ----- ----"
1048 printf( " --------%21s" "-------\n"
1049 "%9lu%21s" "%u files\n",
1050 "",
1051 total_usize, "", total_entries);
Denys Vlasenko386bc9f2009-09-06 16:52:50 +02001052 } else {
1053 unsigned long percents = total_usize - total_size;
Denys Vlasenko07bd9792016-04-18 01:43:24 +02001054 if ((long)percents < 0)
1055 percents = 0; /* happens if usize < size */
Denys Vlasenko386bc9f2009-09-06 16:52:50 +02001056 percents = percents * 100;
1057 if (total_usize)
1058 percents /= total_usize;
Denys Vlasenko07bd9792016-04-18 01:43:24 +02001059 // " Length Method Size Cmpr Date Time CRC-32 Name\n"
1060 // "-------- ------ ------- ---- ---------- ----- -------- ----"
1061 printf( "-------- ------- ----%28s" "----\n"
1062 "%8lu" "%17lu%4u%%%28s" "%u files\n",
1063 "",
1064 total_usize, total_size, (unsigned)percents, "",
Denys Vlasenko386bc9f2009-09-06 16:52:50 +02001065 total_entries);
1066 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00001067 }
1068
Denis Vlasenkobc7c5d02007-10-18 23:27:46 +00001069 return 0;
Glenn L McGrath87ac7022002-01-02 13:52:26 +00001070}