blob: 709ebf81a8423fab18b7b3eb657f8b110a374af9 [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
Glenn L McGrath87ac7022002-01-02 13:52:26 +000027#include "busybox.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
35extern unsigned int gunzip_crc;
36extern unsigned int gunzip_bytes_out;
37
Paul Fox0840b762005-07-20 20:26:49 +000038typedef union {
39 unsigned char raw[26];
40 struct {
41 unsigned short version; /* 0-1 */
42 unsigned short flags; /* 2-3 */
43 unsigned short method; /* 4-5 */
44 unsigned short modtime; /* 6-7 */
45 unsigned short moddate; /* 8-9 */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000046 unsigned int crc32 ATTRIBUTE_PACKED; /* 10-13 */
47 unsigned int cmpsize ATTRIBUTE_PACKED; /* 14-17 */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000048 unsigned int ucmpsize ATTRIBUTE_PACKED; /* 18-21 */
Paul Fox0840b762005-07-20 20:26:49 +000049 unsigned short filename_len; /* 22-23 */
50 unsigned short extra_len; /* 24-25 */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000051 } formatted ATTRIBUTE_PACKED;
Paul Fox0840b762005-07-20 20:26:49 +000052} zip_header_t;
53
54static void unzip_skip(int fd, off_t skip)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000055{
Paul Fox0840b762005-07-20 20:26:49 +000056 if (lseek(fd, skip, SEEK_CUR) == (off_t)-1) {
57 if ((errno != ESPIPE) || (bb_copyfd_size(fd, -1, skip) != skip)) {
58 bb_error_msg_and_die("Seek failure");
59 }
60 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000061}
62
Paul Fox0840b762005-07-20 20:26:49 +000063static void unzip_create_leading_dirs(char *fn)
64{
65 /* Create all leading directories */
Rob Landleyd921b2e2006-08-03 15:41:12 +000066 char *name = xstrdup(fn);
Paul Fox0840b762005-07-20 20:26:49 +000067 if (bb_make_directory(dirname(name), 0777, FILEUTILS_RECUR)) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +000068 bb_error_msg_and_die("Exiting"); /* bb_make_directory is noisy */
Paul Fox0840b762005-07-20 20:26:49 +000069 }
70 free(name);
71}
72
Paul Fox986ab522006-03-27 23:09:14 +000073static int unzip_extract(zip_header_t *zip_header, int src_fd, int dst_fd)
Paul Fox0840b762005-07-20 20:26:49 +000074{
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000075 if (zip_header->formatted.method == 0) {
Paul Fox0840b762005-07-20 20:26:49 +000076 /* Method 0 - stored (not compressed) */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000077 int size = zip_header->formatted.ucmpsize;
Paul Fox0840b762005-07-20 20:26:49 +000078 if (size && (bb_copyfd_size(src_fd, dst_fd, size) != size)) {
79 bb_error_msg_and_die("Cannot complete extraction");
80 }
81
82 } else {
83 /* Method 8 - inflate */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000084 inflate_init(zip_header->formatted.cmpsize);
Paul Fox0840b762005-07-20 20:26:49 +000085 inflate_unzip(src_fd, dst_fd);
86 inflate_cleanup();
87 /* Validate decompression - crc */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000088 if (zip_header->formatted.crc32 != (gunzip_crc ^ 0xffffffffL)) {
Paul Fox0840b762005-07-20 20:26:49 +000089 bb_error_msg("Invalid compressed data--crc error");
Paul Fox986ab522006-03-27 23:09:14 +000090 return 1;
Paul Fox0840b762005-07-20 20:26:49 +000091 }
92 /* Validate decompression - size */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000093 if (zip_header->formatted.ucmpsize != gunzip_bytes_out) {
Paul Fox0840b762005-07-20 20:26:49 +000094 bb_error_msg("Invalid compressed data--length error");
Paul Fox986ab522006-03-27 23:09:14 +000095 return 1;
Paul Fox0840b762005-07-20 20:26:49 +000096 }
97 }
Paul Fox986ab522006-03-27 23:09:14 +000098 return 0;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000099}
100
Rob Landleydfba7412006-03-06 20:47:33 +0000101int unzip_main(int argc, char **argv)
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000102{
Paul Fox0840b762005-07-20 20:26:49 +0000103 zip_header_t zip_header;
104 enum {v_silent, v_normal, v_list} verbosity = v_normal;
105 enum {o_prompt, o_never, o_always} overwrite = o_prompt;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000106 unsigned int total_size = 0;
107 unsigned int total_entries = 0;
Paul Fox0840b762005-07-20 20:26:49 +0000108 int src_fd = -1, dst_fd = -1;
109 char *src_fn = NULL, *dst_fn = NULL;
Mike Frysinger69024552005-07-30 07:30:26 +0000110 llist_t *zaccept = NULL;
111 llist_t *zreject = NULL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000112 char *base_dir = NULL;
Paul Fox986ab522006-03-27 23:09:14 +0000113 int failed, i, opt, opt_range = 0, list_header_done = 0;
Paul Fox0840b762005-07-20 20:26:49 +0000114 char key_buf[512];
115 struct stat stat_buf;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000116
Paul Fox0840b762005-07-20 20:26:49 +0000117 while((opt = getopt(argc, argv, "-d:lnopqx")) != -1) {
118 switch(opt_range) {
119 case 0: /* Options */
120 switch(opt) {
121 case 'l': /* List */
122 verbosity = v_list;
123 break;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000124
Paul Fox0840b762005-07-20 20:26:49 +0000125 case 'n': /* Never overwrite existing files */
126 overwrite = o_never;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000127 break;
Paul Fox0840b762005-07-20 20:26:49 +0000128
129 case 'o': /* Always overwrite existing files */
130 overwrite = o_always;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000131 break;
Paul Fox0840b762005-07-20 20:26:49 +0000132
133 case 'p': /* Extract files to stdout and fall through to set verbosity */
134 dst_fd = STDOUT_FILENO;
135
136 case 'q': /* Be quiet */
137 verbosity = (verbosity == v_normal) ? v_silent : verbosity;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000138 break;
Paul Fox0840b762005-07-20 20:26:49 +0000139
140 case 1 : /* The zip file */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000141 src_fn = xstrndup(optarg, strlen(optarg)+4);
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 */
190 if (strcmp("-", src_fn) == 0) {
191 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 McGrath7ca04f32002-09-25 02:47:48 +0000194
Glenn L McGrath237ae422002-11-03 14:05:15 +0000195 } else {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000196 static const char *const extn[] = {"", ".zip", ".ZIP"};
Paul Fox0840b762005-07-20 20:26:49 +0000197 int orig_src_fn_len = strlen(src_fn);
198 for(i = 0; (i < 3) && (src_fd == -1); i++) {
199 strcpy(src_fn + orig_src_fn_len, extn[i]);
200 src_fd = open(src_fn, O_RDONLY);
201 }
202 if (src_fd == -1) {
203 src_fn[orig_src_fn_len] = 0;
204 bb_error_msg_and_die("Cannot open %s, %s.zip, %s.ZIP", src_fn, src_fn, src_fn);
205 }
Glenn L McGrath237ae422002-11-03 14:05:15 +0000206 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000207
Paul Fox0840b762005-07-20 20:26:49 +0000208 /* Change dir if necessary */
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +0000209 if (base_dir)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000210 xchdir(base_dir);
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000211
Paul Fox0840b762005-07-20 20:26:49 +0000212 if (verbosity != v_silent)
213 printf("Archive: %s\n", src_fn);
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000214
Paul Fox986ab522006-03-27 23:09:14 +0000215 failed = 0;
216
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000217 while (1) {
218 unsigned int magic;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000219
Paul Fox0840b762005-07-20 20:26:49 +0000220 /* Check magic number */
Rob Landley53437472006-07-16 08:14:35 +0000221 xread(src_fd, &magic, 4);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000222 if (magic == ZIP_CDS_MAGIC) {
223 break;
Paul Fox0840b762005-07-20 20:26:49 +0000224 } else if (magic != ZIP_FILEHEADER_MAGIC) {
225 bb_error_msg_and_die("Invalid zip magic %08X", magic);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000226 }
227
228 /* Read the file header */
Rob Landley53437472006-07-16 08:14:35 +0000229 xread(src_fd, zip_header.raw, 26);
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000230 zip_header.formatted.version = SWAP_LE32(zip_header.formatted.version);
231 zip_header.formatted.flags = SWAP_LE32(zip_header.formatted.flags);
232 zip_header.formatted.method = SWAP_LE32(zip_header.formatted.method);
233 zip_header.formatted.modtime = SWAP_LE32(zip_header.formatted.modtime);
234 zip_header.formatted.moddate = SWAP_LE32(zip_header.formatted.moddate);
235 zip_header.formatted.crc32 = SWAP_LE32(zip_header.formatted.crc32);
236 zip_header.formatted.cmpsize = SWAP_LE32(zip_header.formatted.cmpsize);
237 zip_header.formatted.ucmpsize = SWAP_LE32(zip_header.formatted.ucmpsize);
238 zip_header.formatted.filename_len = SWAP_LE32(zip_header.formatted.filename_len);
239 zip_header.formatted.extra_len = SWAP_LE32(zip_header.formatted.extra_len);
240 if ((zip_header.formatted.method != 0) && (zip_header.formatted.method != 8)) {
241 bb_error_msg_and_die("Unsupported compression method %d", zip_header.formatted.method);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000242 }
243
244 /* Read filename */
Paul Fox0840b762005-07-20 20:26:49 +0000245 free(dst_fn);
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000246 dst_fn = xzalloc(zip_header.formatted.filename_len + 1);
247 xread(src_fd, dst_fn, zip_header.formatted.filename_len);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000248
Paul Fox0840b762005-07-20 20:26:49 +0000249 /* Skip extra header bytes */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000250 unzip_skip(src_fd, zip_header.formatted.extra_len);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000251
Paul Fox0840b762005-07-20 20:26:49 +0000252 if ((verbosity == v_list) && !list_header_done){
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000253 printf(" Length Date Time Name\n"
254 " -------- ---- ---- ----\n");
Paul Fox0840b762005-07-20 20:26:49 +0000255 list_header_done = 1;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000256 }
257
Paul Fox0840b762005-07-20 20:26:49 +0000258 /* Filter zip entries */
Mike Frysinger69024552005-07-30 07:30:26 +0000259 if (find_list_entry(zreject, dst_fn) ||
260 (zaccept && !find_list_entry(zaccept, dst_fn))) { /* Skip entry */
Paul Fox0840b762005-07-20 20:26:49 +0000261 i = 'n';
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000262
Paul Fox0840b762005-07-20 20:26:49 +0000263 } else { /* Extract entry */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000264 total_size += zip_header.formatted.ucmpsize;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000265
Paul Fox0840b762005-07-20 20:26:49 +0000266 if (verbosity == v_list) { /* List entry */
"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++;
277 i = 'n';
278
279 } else if (dst_fd == STDOUT_FILENO) { /* Extracting to STDOUT */
280 i = -1;
281
282 } else if (last_char_is(dst_fn, '/')) { /* Extract directory */
283 if (stat(dst_fn, &stat_buf) == -1) {
284 if (errno != ENOENT) {
285 bb_perror_msg_and_die("Cannot stat '%s'",dst_fn);
286 }
287 if (verbosity == v_normal) {
288 printf(" creating: %s\n", dst_fn);
289 }
290 unzip_create_leading_dirs(dst_fn);
291 if (bb_make_directory(dst_fn, 0777, 0)) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000292 bb_error_msg_and_die("Exiting");
Paul Fox0840b762005-07-20 20:26:49 +0000293 }
294 } else {
295 if (!S_ISDIR(stat_buf.st_mode)) {
296 bb_error_msg_and_die("'%s' exists but is not directory", dst_fn);
297 }
298 }
299 i = 'n';
300
301 } else { /* Extract file */
302 _check_file:
303 if (stat(dst_fn, &stat_buf) == -1) { /* File does not exist */
304 if (errno != ENOENT) {
305 bb_perror_msg_and_die("Cannot stat '%s'",dst_fn);
306 }
307 i = 'y';
308
309 } else { /* File already exists */
310 if (overwrite == o_never) {
311 i = 'n';
312
313 } 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)) {
319 bb_perror_msg_and_die("Cannot read input");
320 }
321 i = key_buf[0];
322 }
323
324 } else { /* File is not regular file */
325 bb_error_msg_and_die("'%s' exists but is not regular file",dst_fn);
326 }
327 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000328 }
329 }
330
Paul Fox0840b762005-07-20 20:26:49 +0000331 switch (i) {
332 case 'A':
333 overwrite = o_always;
334 case 'y': /* Open file and fall into unzip */
335 unzip_create_leading_dirs(dst_fn);
Denis Vlasenko22dca232006-09-03 14:23:29 +0000336 dst_fd = xopen3(dst_fn, O_WRONLY | O_CREAT | O_TRUNC, 0777);
Paul Fox0840b762005-07-20 20:26:49 +0000337 case -1: /* Unzip */
338 if (verbosity == v_normal) {
339 printf(" inflating: %s\n", dst_fn);
340 }
Paul Fox986ab522006-03-27 23:09:14 +0000341 if (unzip_extract(&zip_header, src_fd, dst_fd)) {
342 failed = 1;
343 }
Paul Fox0840b762005-07-20 20:26:49 +0000344 if (dst_fd != STDOUT_FILENO) {
345 /* closing STDOUT is potentially bad for future business */
346 close(dst_fd);
347 }
348 break;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000349
Paul Fox0840b762005-07-20 20:26:49 +0000350 case 'N':
351 overwrite = o_never;
352 case 'n':
353 /* Skip entry data */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000354 unzip_skip(src_fd, zip_header.formatted.cmpsize);
Paul Fox0840b762005-07-20 20:26:49 +0000355 break;
356
357 case 'r':
358 /* Prompt for new name */
359 printf("new name: ");
360 if (!fgets(key_buf, 512, stdin)) {
361 bb_perror_msg_and_die("Cannot read input");
362 }
363 free(dst_fn);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000364 dst_fn = xstrdup(key_buf);
Paul Fox0840b762005-07-20 20:26:49 +0000365 chomp(dst_fn);
366 goto _check_file;
367
368 default:
Rob Landleye7c43b62006-03-01 16:39:45 +0000369 printf("error: invalid response [%c]\n",(char)i);
Paul Fox0840b762005-07-20 20:26:49 +0000370 goto _check_file;
371 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000372
373 /* Data descriptor section */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +0000374 if (zip_header.formatted.flags & 4) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000375 /* skip over duplicate crc, compressed size and uncompressed size */
Paul Fox0840b762005-07-20 20:26:49 +0000376 unzip_skip(src_fd, 12);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000377 }
378 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000379
Paul Fox0840b762005-07-20 20:26:49 +0000380 if (verbosity == v_list) {
Rob Landleye7c43b62006-03-01 16:39:45 +0000381 printf(" -------- -------\n"
382 "%9d %d files\n", total_size, total_entries);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000383 }
384
Paul Fox986ab522006-03-27 23:09:14 +0000385 return failed;
Glenn L McGrath87ac7022002-01-02 13:52:26 +0000386}