blob: 4fb77044a2bbace45815125e305a6cf79b8f69b4 [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 *
Erik Andersen61677fe2000-04-13 01:18:56 +000017 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 *
Glenn L McGrathc2bf5ca2000-09-29 06:46:59 +000031 *
32 * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
Eric Andersenb052b471999-11-18 00:21:59 +000033 * Copyright (C) 1992-1993 Jean-loup Gailly
34 * The unzip code was written and put in the public domain by Mark Adler.
35 * Portions of the lzw code are derived from the public domain 'compress'
36 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
37 * Ken Turkowski, Dave Mack and Peter Jannesen.
38 *
39 * See the license_msg below and the file COPYING for the software license.
40 * See the file algorithm.doc for the compression algorithms and file formats.
41 */
42
43#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000044static char *license_msg[] = {
45 " Copyright (C) 1992-1993 Jean-loup Gailly",
46 " This program is free software; you can redistribute it and/or modify",
47 " it under the terms of the GNU General Public License as published by",
48 " the Free Software Foundation; either version 2, or (at your option)",
49 " any later version.",
50 "",
51 " This program is distributed in the hope that it will be useful,",
52 " but WITHOUT ANY WARRANTY; without even the implied warranty of",
53 " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
54 " GNU General Public License for more details.",
55 "",
56 " You should have received a copy of the GNU General Public License",
57 " along with this program; if not, write to the Free Software",
58 " Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.",
59 0
60};
Eric Andersenb052b471999-11-18 00:21:59 +000061#endif
62
Glenn L McGrathc2bf5ca2000-09-29 06:46:59 +000063#include <stdlib.h>
Glenn L McGrath7fd92942001-04-11 03:11:33 +000064#include <string.h>
65#include <unistd.h>
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000066#include <sys/types.h>
67#include <sys/stat.h>
68#include <fcntl.h>
69
Eric Andersencbe31da2001-02-20 06:14:08 +000070#include "busybox.h"
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000071#include "unarchive.h"
Eric Andersenb052b471999-11-18 00:21:59 +000072
Glenn L McGrathab778062004-01-05 12:35:05 +000073#define GUNZIP_OPT_STDOUT 1
74#define GUNZIP_OPT_FORCE 2
75#define GUNZIP_OPT_TEST 4
76#define GUNZIP_OPT_DECOMPRESS 8
Matt Kraaia4a65e72002-04-29 15:32:32 +000077
Rob Landleydfba7412006-03-06 20:47:33 +000078int gunzip_main(int argc, char **argv)
Glenn L McGrath58e42d52001-03-28 05:38:24 +000079{
Glenn L McGrathabac53b2002-08-24 14:32:17 +000080 char status = EXIT_SUCCESS;
Glenn L McGrathab778062004-01-05 12:35:05 +000081 unsigned long opt;
Glenn L McGrath58e42d52001-03-28 05:38:24 +000082
Glenn L McGrathab778062004-01-05 12:35:05 +000083 opt = bb_getopt_ulflags(argc, argv, "cftd");
Glenn L McGrath58e42d52001-03-28 05:38:24 +000084 /* if called as zcat */
Manuel Novoa III cad53642003-03-19 09:13:01 +000085 if (strcmp(bb_applet_name, "zcat") == 0) {
Glenn L McGrathab778062004-01-05 12:35:05 +000086 opt |= GUNZIP_OPT_STDOUT;
Glenn L McGrathbcfeb2a2001-04-18 13:34:09 +000087 }
88
Glenn L McGrathabac53b2002-08-24 14:32:17 +000089 do {
Glenn L McGrathabac53b2002-08-24 14:32:17 +000090 struct stat stat_buf;
91 const char *old_path = argv[optind];
92 const char *delete_path = NULL;
93 char *new_path = NULL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000094 int src_fd;
95 int dst_fd;
Glenn L McGrathabac53b2002-08-24 14:32:17 +000096
97 optind++;
98
99 if (old_path == NULL || strcmp(old_path, "-") == 0) {
Eric Andersen70060d22004-03-27 10:02:48 +0000100 src_fd = STDIN_FILENO;
Glenn L McGrathab778062004-01-05 12:35:05 +0000101 opt |= GUNZIP_OPT_STDOUT;
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000102 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000103 src_fd = bb_xopen(old_path, O_RDONLY);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000104
105 /* Get the time stamp on the input file. */
106 if (stat(old_path, &stat_buf) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 bb_error_msg_and_die("Couldn't stat file %s", old_path);
Glenn L McGrath1ee52e82002-08-24 10:30:36 +0000108 }
109 }
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000110
111 /* Check that the input is sane. */
Glenn L McGrathab778062004-01-05 12:35:05 +0000112 if (isatty(src_fd) && ((opt & GUNZIP_OPT_FORCE) == 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 bb_error_msg_and_die
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000114 ("compressed data not read from terminal. Use -f to force it.");
115 }
116
117 /* Set output filename and number */
Glenn L McGrathab778062004-01-05 12:35:05 +0000118 if (opt & GUNZIP_OPT_TEST) {
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000119 dst_fd = bb_xopen(bb_dev_null, O_WRONLY); /* why does test use filenum 2 ? */
Glenn L McGrathab778062004-01-05 12:35:05 +0000120 } else if (opt & GUNZIP_OPT_STDOUT) {
Eric Andersen70060d22004-03-27 10:02:48 +0000121 dst_fd = STDOUT_FILENO;
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000122 } else {
123 char *extension;
124
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 new_path = bb_xstrdup(old_path);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000126
127 extension = strrchr(new_path, '.');
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +0000128#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
Glenn L McGrath9ef09442002-11-01 22:11:53 +0000129 if (extension && (strcmp(extension, ".Z") == 0)) {
130 *extension = '\0';
131 } else
132#endif
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000133 if (extension && (strcmp(extension, ".gz") == 0)) {
134 *extension = '\0';
135 } else if (extension && (strcmp(extension, ".tgz") == 0)) {
136 extension[2] = 'a';
137 extension[3] = 'r';
138 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139 bb_error_msg_and_die("Invalid extension");
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000140 }
141
142 /* Open output file */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143 dst_fd = bb_xopen(new_path, O_WRONLY | O_CREAT);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000144
145 /* Set permissions on the file */
Glenn L McGrathc3b7f7d2002-08-26 17:17:27 +0000146 chmod(new_path, stat_buf.st_mode);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000147
148 /* If unzip succeeds remove the old file */
149 delete_path = old_path;
150 }
151
152 /* do the decompression, and cleanup */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000153 if (bb_xread_char(src_fd) == 0x1f) {
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000154 unsigned char magic2;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000155
Manuel Novoa III cad53642003-03-19 09:13:01 +0000156 magic2 = bb_xread_char(src_fd);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +0000157#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000158 if (magic2 == 0x9d) {
Glenn L McGrath9ef09442002-11-01 22:11:53 +0000159 status = uncompress(src_fd, dst_fd);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000160 } else
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000161#endif
162 if (magic2 == 0x8b) {
163 check_header_gzip(src_fd);
Glenn L McGrath5699b852003-11-15 23:19:05 +0000164 status = inflate_gunzip(src_fd, dst_fd);
Glenn L McGrath5c995812002-09-30 05:30:29 +0000165 if (status != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166 bb_error_msg_and_die("Error inflating");
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000167 }
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000168 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 bb_error_msg_and_die("Invalid magic");
Glenn L McGrath2e41d0c2002-09-27 06:46:02 +0000170 }
Glenn L McGrath563ac6e2002-11-01 21:40:52 +0000171 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000172 bb_error_msg_and_die("Invalid magic");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000173 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000174
175 if ((status != EXIT_SUCCESS) && (new_path)) {
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000176 /* Unzip failed, remove new path instead of old path */
177 delete_path = new_path;
178 }
179
Eric Andersen70060d22004-03-27 10:02:48 +0000180 if (dst_fd != STDOUT_FILENO) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000181 close(dst_fd);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000182 }
Eric Andersen70060d22004-03-27 10:02:48 +0000183 if (src_fd != STDIN_FILENO) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000184 close(src_fd);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000185 }
186
187 /* delete_path will be NULL if in test mode or from stdin */
188 if (delete_path && (unlink(delete_path) == -1)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 bb_error_msg_and_die("Couldn't remove %s", delete_path);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000190 }
191
192 free(new_path);
193
194 } while (optind < argc);
195
Matt Kraaia4a65e72002-04-29 15:32:32 +0000196 return status;
Eric Andersenb052b471999-11-18 00:21:59 +0000197}