blob: 1cde08b4d19c703301431f133f7d6418eab2d6d5 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen61677fe2000-04-13 01:18:56 +00002/*
3 * Gzip implementation for busybox
4 *
Glenn L McGrathc2bf5ca2000-09-29 06:46:59 +00005 * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.
Erik Andersen61677fe2000-04-13 01:18:56 +00006 *
7 * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
8 * based on gzip sources
9 *
Eric Andersencb81e642003-07-14 21:21:08 +000010 * Adjusted further by Erik Andersen <andersen@codepoet.org> to support files as
Eric Andersen50e4d662002-04-06 05:15:46 +000011 * well as stdin/stdout, and to generally behave itself wrt command line
12 * handling.
Erik Andersen61677fe2000-04-13 01:18:56 +000013 *
Glenn L McGrath58e42d52001-03-28 05:38:24 +000014 * General cleanup to better adhere to the style guide and make use of standard
Glenn L McGrathc6992fe2004-04-25 05:11:19 +000015 * busybox functions by Glenn McGrath <bug1@iinet.net.au>
Eric Andersenc7bda1c2004-03-15 08:29:22 +000016 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +000017 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrathc2bf5ca2000-09-29 06:46:59 +000018 *
19 * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
Eric Andersenb052b471999-11-18 00:21:59 +000020 * Copyright (C) 1992-1993 Jean-loup Gailly
21 * The unzip code was written and put in the public domain by Mark Adler.
22 * Portions of the lzw code are derived from the public domain 'compress'
23 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
24 * Ken Turkowski, Dave Mack and Peter Jannesen.
25 *
26 * See the license_msg below and the file COPYING for the software license.
27 * See the file algorithm.doc for the compression algorithms and file formats.
28 */
29
Eric Andersencbe31da2001-02-20 06:14:08 +000030#include "busybox.h"
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000031#include "unarchive.h"
Eric Andersenb052b471999-11-18 00:21:59 +000032
Glenn L McGrathab778062004-01-05 12:35:05 +000033#define GUNZIP_OPT_STDOUT 1
34#define GUNZIP_OPT_FORCE 2
35#define GUNZIP_OPT_TEST 4
36#define GUNZIP_OPT_DECOMPRESS 8
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000037#define GUNZIP_OPT_VERBOSE 0x10
Matt Kraaia4a65e72002-04-29 15:32:32 +000038
Rob Landleydfba7412006-03-06 20:47:33 +000039int gunzip_main(int argc, char **argv)
Glenn L McGrath58e42d52001-03-28 05:38:24 +000040{
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000041 USE_DESKTOP(long long) int status;
42 int exitcode = 0;
Denis Vlasenko67b23e62006-10-03 21:00:06 +000043 unsigned opt;
Glenn L McGrath58e42d52001-03-28 05:38:24 +000044
Denis Vlasenko67b23e62006-10-03 21:00:06 +000045 opt = getopt32(argc, argv, "cftdv");
Glenn L McGrath58e42d52001-03-28 05:38:24 +000046 /* if called as zcat */
Manuel Novoa III cad53642003-03-19 09:13:01 +000047 if (strcmp(bb_applet_name, "zcat") == 0) {
Glenn L McGrathab778062004-01-05 12:35:05 +000048 opt |= GUNZIP_OPT_STDOUT;
Glenn L McGrathbcfeb2a2001-04-18 13:34:09 +000049 }
50
Glenn L McGrathabac53b2002-08-24 14:32:17 +000051 do {
Glenn L McGrathabac53b2002-08-24 14:32:17 +000052 struct stat stat_buf;
Rob Landley20cc6d52006-09-12 21:42:17 +000053 char *old_path = argv[optind];
54 char *delete_path = NULL;
Glenn L McGrathabac53b2002-08-24 14:32:17 +000055 char *new_path = NULL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000056 int src_fd;
57 int dst_fd;
Glenn L McGrathabac53b2002-08-24 14:32:17 +000058
59 optind++;
60
61 if (old_path == NULL || strcmp(old_path, "-") == 0) {
Eric Andersen70060d22004-03-27 10:02:48 +000062 src_fd = STDIN_FILENO;
Glenn L McGrathab778062004-01-05 12:35:05 +000063 opt |= GUNZIP_OPT_STDOUT;
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000064 USE_DESKTOP(opt &= ~GUNZIP_OPT_VERBOSE;)
65 optind = argc; /* we don't handle "gunzip - a.gz b.gz" */
Glenn L McGrathabac53b2002-08-24 14:32:17 +000066 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +000067 src_fd = xopen(old_path, O_RDONLY);
Glenn L McGrathabac53b2002-08-24 14:32:17 +000068
69 /* Get the time stamp on the input file. */
Rob Landleyc5b1d4d2006-03-13 15:45:16 +000070 xstat(old_path, &stat_buf);
Glenn L McGrath1ee52e82002-08-24 10:30:36 +000071 }
Glenn L McGrathabac53b2002-08-24 14:32:17 +000072
73 /* Check that the input is sane. */
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000074 if (isatty(src_fd) && !(opt & GUNZIP_OPT_FORCE)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 bb_error_msg_and_die
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000076 ("compressed data not read from terminal, use -f to force it");
Glenn L McGrathabac53b2002-08-24 14:32:17 +000077 }
78
79 /* Set output filename and number */
Glenn L McGrathab778062004-01-05 12:35:05 +000080 if (opt & GUNZIP_OPT_TEST) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000081 dst_fd = xopen(bb_dev_null, O_WRONLY); /* why does test use filenum 2 ? */
Glenn L McGrathab778062004-01-05 12:35:05 +000082 } else if (opt & GUNZIP_OPT_STDOUT) {
Eric Andersen70060d22004-03-27 10:02:48 +000083 dst_fd = STDOUT_FILENO;
Glenn L McGrathabac53b2002-08-24 14:32:17 +000084 } else {
85 char *extension;
86
Rob Landleyd921b2e2006-08-03 15:41:12 +000087 new_path = xstrdup(old_path);
Glenn L McGrathabac53b2002-08-24 14:32:17 +000088
89 extension = strrchr(new_path, '.');
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000090#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
Glenn L McGrath9ef09442002-11-01 22:11:53 +000091 if (extension && (strcmp(extension, ".Z") == 0)) {
92 *extension = '\0';
93 } else
94#endif
Glenn L McGrathabac53b2002-08-24 14:32:17 +000095 if (extension && (strcmp(extension, ".gz") == 0)) {
96 *extension = '\0';
97 } else if (extension && (strcmp(extension, ".tgz") == 0)) {
98 extension[2] = 'a';
99 extension[3] = 'r';
100 } else {
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000101 // FIXME: should we die or just skip to next?
102 bb_error_msg_and_die("invalid extension");
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000103 }
104
Rob Landley9a202c92006-06-13 14:54:42 +0000105 /* Open output file (with correct permissions) */
Denis Vlasenko22dca232006-09-03 14:23:29 +0000106 dst_fd = xopen3(new_path, O_WRONLY | O_CREAT | O_TRUNC,
107 stat_buf.st_mode);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000108
109 /* If unzip succeeds remove the old file */
110 delete_path = old_path;
111 }
112
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000113 status = -1;
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000114 /* do the decompression, and cleanup */
Rob Landley53437472006-07-16 08:14:35 +0000115 if (xread_char(src_fd) == 0x1f) {
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000116 unsigned char magic2;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000117
Rob Landley53437472006-07-16 08:14:35 +0000118 magic2 = xread_char(src_fd);
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000119 if (ENABLE_FEATURE_GUNZIP_UNCOMPRESS && magic2 == 0x9d) {
Glenn L McGrath9ef09442002-11-01 22:11:53 +0000120 status = uncompress(src_fd, dst_fd);
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000121 } else if (magic2 == 0x8b) {
122 check_header_gzip(src_fd); // FIXME: xfunc? _or_die?
123 status = inflate_gunzip(src_fd, dst_fd);
124 } else {
125 bb_error_msg("invalid magic");
126 exitcode = 1;
127 }
128 if (status < 0) {
129 bb_error_msg("error inflating");
130 exitcode = 1;
131 }
132 else if (ENABLE_DESKTOP && (opt & GUNZIP_OPT_VERBOSE)) {
133 fprintf(stderr, "%s: %u%% - replaced with %s\n",
134 // TODO: LARGEFILE support for stat_buf.st_size?
135 old_path, (unsigned)(stat_buf.st_size*100 / (status+1)), new_path);
136 }
Glenn L McGrath563ac6e2002-11-01 21:40:52 +0000137 } else {
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000138 bb_error_msg("invalid magic"); exitcode = 1;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000139 }
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000140 if (status < 0 && new_path) {
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000141 /* Unzip failed, remove new path instead of old path */
142 delete_path = new_path;
143 }
144
Eric Andersen70060d22004-03-27 10:02:48 +0000145 if (dst_fd != STDOUT_FILENO) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000146 close(dst_fd);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000147 }
Eric Andersen70060d22004-03-27 10:02:48 +0000148 if (src_fd != STDIN_FILENO) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000149 close(src_fd);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000150 }
151
152 /* delete_path will be NULL if in test mode or from stdin */
153 if (delete_path && (unlink(delete_path) == -1)) {
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000154 bb_error_msg("cannot remove %s", delete_path);
155 exitcode = 1;
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000156 }
157
158 free(new_path);
159
160 } while (optind < argc);
161
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000162 return exitcode;
Eric Andersenb052b471999-11-18 00:21:59 +0000163}