blob: 97c743c438d65852c5bd1bfad9d39fc24d2be5fd [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 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000010 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrath87ac7022002-01-02 13:52:26 +000011 */
12
Glenn L McGrathf34b0e92004-06-06 10:22:43 +000013/* For reference see
Paul Fox0840b762005-07-20 20:26:49 +000014 * http://www.pkware.com/company/standards/appnote/
Glenn L McGrathf34b0e92004-06-06 10:22:43 +000015 * http://www.info-zip.org/pub/infozip/doc/appnote-iz-latest.zip
16 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000017
Paul Fox0840b762005-07-20 20:26:49 +000018/* TODO
19 * Endian issues
20 * Zip64 + other methods
21 * Improve handling of zip format, ie.
22 * - deferred CRC, comp. & uncomp. lengths (zip header flags bit 3)
23 * - unix file permissions, etc.
24 * - central directory
25 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000026
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000027#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000028#include "unarchive.h"
Glenn L McGrath87ac7022002-01-02 13:52:26 +000029
Rob Landley53437472006-07-16 08:14:35 +000030#define ZIP_FILEHEADER_MAGIC SWAP_LE32(0x04034b50)
31#define ZIP_CDS_MAGIC SWAP_LE32(0x02014b50)
32#define ZIP_CDS_END_MAGIC SWAP_LE32(0x06054b50)
33#define ZIP_DD_MAGIC SWAP_LE32(0x08074b50)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000034
Paul Fox0840b762005-07-20 20:26:49 +000035typedef union {
36 unsigned char raw[26];
37 struct {
38 unsigned short version; /* 0-1 */
39 unsigned short flags; /* 2-3 */
40 unsigned short method; /* 4-5 */
41 unsigned short modtime; /* 6-7 */
42 unsigned short moddate; /* 8-9 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000043 unsigned int crc32 ATTRIBUTE_PACKED; /* 10-13 */
44 unsigned int cmpsize ATTRIBUTE_PACKED; /* 14-17 */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000045 unsigned int ucmpsize ATTRIBUTE_PACKED; /* 18-21 */
Paul Fox0840b762005-07-20 20:26:49 +000046 unsigned short filename_len; /* 22-23 */
47 unsigned short extra_len; /* 24-25 */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000048 } formatted ATTRIBUTE_PACKED;
Paul Fox0840b762005-07-20 20:26:49 +000049} zip_header_t;
50
51static void unzip_skip(int fd, off_t skip)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000052{
Paul Fox0840b762005-07-20 20:26:49 +000053 if (lseek(fd, skip, SEEK_CUR) == (off_t)-1) {
Denis Vlasenko714701c2006-12-22 00:21:07 +000054 if (errno != ESPIPE)
Denis Vlasenko13858992006-10-08 12:49:22 +000055 bb_error_msg_and_die("seek failure");
Denis Vlasenko714701c2006-12-22 00:21:07 +000056 bb_copyfd_exact_size(fd, -1, skip);
Paul Fox0840b762005-07-20 20:26:49 +000057 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000058}
59
Paul Fox0840b762005-07-20 20:26:49 +000060static void unzip_create_leading_dirs(char *fn)
61{
62 /* Create all leading directories */
Rob Landleyd921b2e2006-08-03 15:41:12 +000063 char *name = xstrdup(fn);
Paul Fox0840b762005-07-20 20:26:49 +000064 if (bb_make_directory(dirname(name), 0777, FILEUTILS_RECUR)) {
Denis Vlasenko13858992006-10-08 12:49:22 +000065 bb_error_msg_and_die("exiting"); /* bb_make_directory is noisy */
Paul Fox0840b762005-07-20 20:26:49 +000066 }
67 free(name);
68}
69
Paul Fox986ab522006-03-27 23:09:14 +000070static int unzip_extract(zip_header_t *zip_header, int src_fd, int dst_fd)
Paul Fox0840b762005-07-20 20:26:49 +000071{
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000072 if (zip_header->formatted.method == 0) {
Paul Fox0840b762005-07-20 20:26:49 +000073 /* Method 0 - stored (not compressed) */
Denis Vlasenko7039a662006-10-08 17:54:47 +000074 off_t size = zip_header->formatted.ucmpsize;
Denis Vlasenko714701c2006-12-22 00:21:07 +000075 if (size)
76 bb_copyfd_exact_size(src_fd, dst_fd, size);
Paul Fox0840b762005-07-20 20:26:49 +000077 } else {
78 /* Method 8 - inflate */
Denis Vlasenkocd42cb82007-01-05 23:56:53 +000079 inflate_unzip_result res;
80 /* err = */ inflate_unzip(&res, zip_header->formatted.cmpsize, src_fd, dst_fd);
81// we should check for -1 error return
Paul Fox0840b762005-07-20 20:26:49 +000082 /* Validate decompression - crc */
Denis Vlasenkocd42cb82007-01-05 23:56:53 +000083 if (zip_header->formatted.crc32 != (res.crc ^ 0xffffffffL)) {
Denis Vlasenko13858992006-10-08 12:49:22 +000084 bb_error_msg("invalid compressed data--%s error", "crc");
Paul Fox986ab522006-03-27 23:09:14 +000085 return 1;
Paul Fox0840b762005-07-20 20:26:49 +000086 }
87 /* Validate decompression - size */
Denis Vlasenkocd42cb82007-01-05 23:56:53 +000088 if (zip_header->formatted.ucmpsize != res.bytes_out) {
Denis Vlasenko13858992006-10-08 12:49:22 +000089 bb_error_msg("invalid compressed data--%s error", "length");
Paul Fox986ab522006-03-27 23:09:14 +000090 return 1;
Paul Fox0840b762005-07-20 20:26:49 +000091 }
92 }
Paul Fox986ab522006-03-27 23:09:14 +000093 return 0;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000094}
95
Denis Vlasenko06af2162007-02-03 17:28:39 +000096int unzip_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000097int unzip_main(int argc, char **argv)
Glenn L McGrath87ac7022002-01-02 13:52:26 +000098{
Paul Fox0840b762005-07-20 20:26:49 +000099 zip_header_t zip_header;
Paul Fox9382b382007-09-07 20:28:25 +0000100 smallint verbose = 1;
101 smallint listing = 0;
102 smallint list_header_done = 0;
103 smallint failed;
Paul Fox0840b762005-07-20 20:26:49 +0000104 enum {o_prompt, o_never, o_always} overwrite = o_prompt;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000105 unsigned int total_size = 0;
106 unsigned int total_entries = 0;
Paul Fox0840b762005-07-20 20:26:49 +0000107 int src_fd = -1, dst_fd = -1;
108 char *src_fn = NULL, *dst_fn = NULL;
Mike Frysinger69024552005-07-30 07:30:26 +0000109 llist_t *zaccept = NULL;
110 llist_t *zreject = NULL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000111 char *base_dir = NULL;
Paul Fox9382b382007-09-07 20:28:25 +0000112 int i, opt, opt_range = 0;
Paul Fox0840b762005-07-20 20:26:49 +0000113 char key_buf[512];
114 struct stat stat_buf;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000115
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000116 while ((opt = getopt(argc, argv, "-d:lnopqx")) != -1) {
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000117 switch (opt_range) {
Paul Fox0840b762005-07-20 20:26:49 +0000118 case 0: /* Options */
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000119 switch (opt) {
Paul Fox0840b762005-07-20 20:26:49 +0000120 case 'l': /* List */
Paul Fox9382b382007-09-07 20:28:25 +0000121 listing = 1;
Paul Fox0840b762005-07-20 20:26:49 +0000122 break;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000123
Paul Fox0840b762005-07-20 20:26:49 +0000124 case 'n': /* Never overwrite existing files */
125 overwrite = o_never;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000126 break;
Paul Fox0840b762005-07-20 20:26:49 +0000127
128 case 'o': /* Always overwrite existing files */
129 overwrite = o_always;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000130 break;
Paul Fox0840b762005-07-20 20:26:49 +0000131
132 case 'p': /* Extract files to stdout and fall through to set verbosity */
133 dst_fd = STDOUT_FILENO;
134
135 case 'q': /* Be quiet */
Paul Fox9382b382007-09-07 20:28:25 +0000136 verbose = 0;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000137 break;
Paul Fox0840b762005-07-20 20:26:49 +0000138
139 case 1 : /* The zip file */
Denis Vlasenko666c40c2007-03-31 10:17:24 +0000140 src_fn = xmalloc(strlen(optarg)+4);
141 strcpy(src_fn, optarg);
Paul Fox0840b762005-07-20 20:26:49 +0000142 opt_range++;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000143 break;
Paul Fox0840b762005-07-20 20:26:49 +0000144
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000145 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146 bb_show_usage();
Paul Fox0840b762005-07-20 20:26:49 +0000147
148 }
149 break;
150
151 case 1: /* Include files */
152 if (opt == 1) {
Rob Landley8bb50782006-05-26 23:44:51 +0000153 llist_add_to(&zaccept, optarg);
Paul Fox0840b762005-07-20 20:26:49 +0000154
155 } else if (opt == 'd') {
156 base_dir = optarg;
157 opt_range += 2;
158
159 } else if (opt == 'x') {
160 opt_range++;
161
162 } else {
163 bb_show_usage();
164 }
165 break;
166
167 case 2 : /* Exclude files */
168 if (opt == 1) {
Rob Landley8bb50782006-05-26 23:44:51 +0000169 llist_add_to(&zreject, optarg);
Paul Fox0840b762005-07-20 20:26:49 +0000170
171 } else if (opt == 'd') { /* Extract to base directory */
172 base_dir = optarg;
173 opt_range++;
174
175 } else {
176 bb_show_usage();
177 }
178 break;
179
180 default:
181 bb_show_usage();
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000182 }
183 }
184
Paul Fox0840b762005-07-20 20:26:49 +0000185 if (src_fn == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000186 bb_show_usage();
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000187 }
188
Paul Fox0840b762005-07-20 20:26:49 +0000189 /* Open input file */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000190 if (LONE_DASH(src_fn)) {
Paul Fox0840b762005-07-20 20:26:49 +0000191 src_fd = STDIN_FILENO;
192 /* Cannot use prompt mode since zip data is arriving on STDIN */
193 overwrite = (overwrite == o_prompt) ? o_never : overwrite;
Glenn L McGrath237ae422002-11-03 14:05:15 +0000194 } else {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000195 static const char *const extn[] = {"", ".zip", ".ZIP"};
Paul Fox0840b762005-07-20 20:26:49 +0000196 int orig_src_fn_len = strlen(src_fn);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000197 for (i = 0; (i < 3) && (src_fd == -1); i++) {
Paul Fox0840b762005-07-20 20:26:49 +0000198 strcpy(src_fn + orig_src_fn_len, extn[i]);
199 src_fd = open(src_fn, O_RDONLY);
200 }
201 if (src_fd == -1) {
Denis Vlasenko666c40c2007-03-31 10:17:24 +0000202 src_fn[orig_src_fn_len] = '\0';
Denis Vlasenko7039a662006-10-08 17:54:47 +0000203 bb_error_msg_and_die("cannot open %s, %s.zip, %s.ZIP", src_fn, src_fn, src_fn);
Paul Fox0840b762005-07-20 20:26:49 +0000204 }
Glenn L McGrath237ae422002-11-03 14:05:15 +0000205 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000206
Paul Fox0840b762005-07-20 20:26:49 +0000207 /* Change dir if necessary */
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +0000208 if (base_dir)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000209 xchdir(base_dir);
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000210
Paul Fox9382b382007-09-07 20:28:25 +0000211 if (verbose)
Paul Fox0840b762005-07-20 20:26:49 +0000212 printf("Archive: %s\n", src_fn);
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000213
Paul Fox986ab522006-03-27 23:09:14 +0000214 failed = 0;
215
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000216 while (1) {
217 unsigned int magic;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000218
Paul Fox0840b762005-07-20 20:26:49 +0000219 /* Check magic number */
Rob Landley53437472006-07-16 08:14:35 +0000220 xread(src_fd, &magic, 4);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000221 if (magic == ZIP_CDS_MAGIC) {
222 break;
Paul Fox0840b762005-07-20 20:26:49 +0000223 } else if (magic != ZIP_FILEHEADER_MAGIC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000224 bb_error_msg_and_die("invalid zip magic %08X", magic);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000225 }
226
227 /* Read the file header */
Rob Landley53437472006-07-16 08:14:35 +0000228 xread(src_fd, zip_header.raw, 26);
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000229 zip_header.formatted.version = SWAP_LE32(zip_header.formatted.version);
230 zip_header.formatted.flags = SWAP_LE32(zip_header.formatted.flags);
231 zip_header.formatted.method = SWAP_LE32(zip_header.formatted.method);
232 zip_header.formatted.modtime = SWAP_LE32(zip_header.formatted.modtime);
233 zip_header.formatted.moddate = SWAP_LE32(zip_header.formatted.moddate);
234 zip_header.formatted.crc32 = SWAP_LE32(zip_header.formatted.crc32);
235 zip_header.formatted.cmpsize = SWAP_LE32(zip_header.formatted.cmpsize);
236 zip_header.formatted.ucmpsize = SWAP_LE32(zip_header.formatted.ucmpsize);
237 zip_header.formatted.filename_len = SWAP_LE32(zip_header.formatted.filename_len);
238 zip_header.formatted.extra_len = SWAP_LE32(zip_header.formatted.extra_len);
239 if ((zip_header.formatted.method != 0) && (zip_header.formatted.method != 8)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000240 bb_error_msg_and_die("unsupported compression method %d", zip_header.formatted.method);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000241 }
242
243 /* Read filename */
Paul Fox0840b762005-07-20 20:26:49 +0000244 free(dst_fn);
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000245 dst_fn = xzalloc(zip_header.formatted.filename_len + 1);
246 xread(src_fd, dst_fn, zip_header.formatted.filename_len);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000247
Paul Fox0840b762005-07-20 20:26:49 +0000248 /* Skip extra header bytes */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000249 unzip_skip(src_fd, zip_header.formatted.extra_len);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000250
Paul Fox9382b382007-09-07 20:28:25 +0000251 if (listing && verbose && !list_header_done){
Denis Vlasenko714701c2006-12-22 00:21:07 +0000252 puts(" Length Date Time Name\n"
253 " -------- ---- ---- ----");
Paul Fox0840b762005-07-20 20:26:49 +0000254 list_header_done = 1;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000255 }
256
Paul Fox0840b762005-07-20 20:26:49 +0000257 /* Filter zip entries */
Mike Frysinger69024552005-07-30 07:30:26 +0000258 if (find_list_entry(zreject, dst_fn) ||
259 (zaccept && !find_list_entry(zaccept, dst_fn))) { /* Skip entry */
Paul Fox0840b762005-07-20 20:26:49 +0000260 i = 'n';
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000261
Paul Fox0840b762005-07-20 20:26:49 +0000262 } else { /* Extract entry */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000263 total_size += zip_header.formatted.ucmpsize;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000264
Paul Fox9382b382007-09-07 20:28:25 +0000265 if (listing) { /* List entry */
266 if (verbose) {
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000267 unsigned int dostime = zip_header.formatted.modtime | (zip_header.formatted.moddate << 16);
Paul Fox0840b762005-07-20 20:26:49 +0000268 printf("%9u %02u-%02u-%02u %02u:%02u %s\n",
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000269 zip_header.formatted.ucmpsize,
Paul Fox0840b762005-07-20 20:26:49 +0000270 (dostime & 0x01e00000) >> 21,
271 (dostime & 0x001f0000) >> 16,
272 (((dostime & 0xfe000000) >> 25) + 1980) % 100,
273 (dostime & 0x0000f800) >> 11,
274 (dostime & 0x000007e0) >> 5,
275 dst_fn);
276 total_entries++;
Paul Fox9382b382007-09-07 20:28:25 +0000277 } else {
278 /* short listing -- filenames only */
279 printf("%s\n", dst_fn);
280 }
281 i = 'n';
Paul Fox0840b762005-07-20 20:26:49 +0000282 } else if (dst_fd == STDOUT_FILENO) { /* Extracting to STDOUT */
283 i = -1;
Paul Fox0840b762005-07-20 20:26:49 +0000284 } else if (last_char_is(dst_fn, '/')) { /* Extract directory */
285 if (stat(dst_fn, &stat_buf) == -1) {
286 if (errno != ENOENT) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000287 bb_perror_msg_and_die("cannot stat '%s'",dst_fn);
Paul Fox0840b762005-07-20 20:26:49 +0000288 }
Paul Fox9382b382007-09-07 20:28:25 +0000289 if (verbose) {
Paul Fox0840b762005-07-20 20:26:49 +0000290 printf(" creating: %s\n", dst_fn);
291 }
292 unzip_create_leading_dirs(dst_fn);
293 if (bb_make_directory(dst_fn, 0777, 0)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000294 bb_error_msg_and_die("exiting");
Paul Fox0840b762005-07-20 20:26:49 +0000295 }
296 } else {
297 if (!S_ISDIR(stat_buf.st_mode)) {
298 bb_error_msg_and_die("'%s' exists but is not directory", dst_fn);
299 }
300 }
301 i = 'n';
302
303 } else { /* Extract file */
Denis Vlasenko714701c2006-12-22 00:21:07 +0000304 _check_file:
Paul Fox0840b762005-07-20 20:26:49 +0000305 if (stat(dst_fn, &stat_buf) == -1) { /* File does not exist */
306 if (errno != ENOENT) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000307 bb_perror_msg_and_die("cannot stat '%s'",dst_fn);
Paul Fox0840b762005-07-20 20:26:49 +0000308 }
309 i = 'y';
Paul Fox0840b762005-07-20 20:26:49 +0000310 } else { /* File already exists */
311 if (overwrite == o_never) {
312 i = 'n';
Paul Fox0840b762005-07-20 20:26:49 +0000313 } else if (S_ISREG(stat_buf.st_mode)) { /* File is regular file */
314 if (overwrite == o_always) {
315 i = 'y';
316 } else {
317 printf("replace %s? [y]es, [n]o, [A]ll, [N]one, [r]ename: ", dst_fn);
318 if (!fgets(key_buf, 512, stdin)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000319 bb_perror_msg_and_die("cannot read input");
Paul Fox0840b762005-07-20 20:26:49 +0000320 }
321 i = key_buf[0];
322 }
Paul Fox0840b762005-07-20 20:26:49 +0000323 } else { /* File is not regular file */
324 bb_error_msg_and_die("'%s' exists but is not regular file",dst_fn);
325 }
326 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000327 }
328 }
329
Paul Fox0840b762005-07-20 20:26:49 +0000330 switch (i) {
331 case 'A':
332 overwrite = o_always;
333 case 'y': /* Open file and fall into unzip */
334 unzip_create_leading_dirs(dst_fn);
Bernhard Reutner-Fischer64d7e932006-09-11 16:01:40 +0000335 dst_fd = xopen(dst_fn, O_WRONLY | O_CREAT | O_TRUNC);
Paul Fox0840b762005-07-20 20:26:49 +0000336 case -1: /* Unzip */
Paul Fox9382b382007-09-07 20:28:25 +0000337 if (verbose) {
Paul Fox0840b762005-07-20 20:26:49 +0000338 printf(" inflating: %s\n", dst_fn);
339 }
Paul Fox986ab522006-03-27 23:09:14 +0000340 if (unzip_extract(&zip_header, src_fd, dst_fd)) {
Denis Vlasenko714701c2006-12-22 00:21:07 +0000341 failed = 1;
Paul Fox986ab522006-03-27 23:09:14 +0000342 }
Paul Fox0840b762005-07-20 20:26:49 +0000343 if (dst_fd != STDOUT_FILENO) {
344 /* closing STDOUT is potentially bad for future business */
345 close(dst_fd);
346 }
347 break;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000348
Paul Fox0840b762005-07-20 20:26:49 +0000349 case 'N':
350 overwrite = o_never;
351 case 'n':
352 /* Skip entry data */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000353 unzip_skip(src_fd, zip_header.formatted.cmpsize);
Paul Fox0840b762005-07-20 20:26:49 +0000354 break;
355
356 case 'r':
357 /* Prompt for new name */
358 printf("new name: ");
359 if (!fgets(key_buf, 512, stdin)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000360 bb_perror_msg_and_die("cannot read input");
Paul Fox0840b762005-07-20 20:26:49 +0000361 }
362 free(dst_fn);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000363 dst_fn = xstrdup(key_buf);
Paul Fox0840b762005-07-20 20:26:49 +0000364 chomp(dst_fn);
365 goto _check_file;
366
367 default:
Rob Landleye7c43b62006-03-01 16:39:45 +0000368 printf("error: invalid response [%c]\n",(char)i);
Paul Fox0840b762005-07-20 20:26:49 +0000369 goto _check_file;
370 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000371
372 /* Data descriptor section */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000373 if (zip_header.formatted.flags & 4) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000374 /* skip over duplicate crc, compressed size and uncompressed size */
Paul Fox0840b762005-07-20 20:26:49 +0000375 unzip_skip(src_fd, 12);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000376 }
377 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000378
Paul Fox9382b382007-09-07 20:28:25 +0000379 if (listing && verbose) {
Rob Landleye7c43b62006-03-01 16:39:45 +0000380 printf(" -------- -------\n"
381 "%9d %d files\n", total_size, total_entries);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000382 }
383
Paul Fox986ab522006-03-27 23:09:14 +0000384 return failed;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000385}