blob: ac2fb17eda119eda766b053f84f4eba5d536f195 [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 Andersen50e4d662002-04-06 05:15:46 +000010 * Adjusted further by Erik Andersen <andersee@debian.org> to support files as
11 * 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
15 * busybox functions by Glenn McGrath <bug1@optushome.com.au>
16 *
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>
66#include <getopt.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000067#include "busybox.h"
Eric Andersenb052b471999-11-18 00:21:59 +000068
Glenn L McGrathabac53b2002-08-24 14:32:17 +000069const char gunzip_to_stdout = 1;
70const char gunzip_force = 2;
71const char gunzip_test = 4;
Matt Kraaia4a65e72002-04-29 15:32:32 +000072
Glenn L McGrath58e42d52001-03-28 05:38:24 +000073extern int gunzip_main(int argc, char **argv)
74{
Glenn L McGrathabac53b2002-08-24 14:32:17 +000075 char status = EXIT_SUCCESS;
76 char flags = 0;
77 int opt;
Glenn L McGrath58e42d52001-03-28 05:38:24 +000078
Glenn L McGrath58e42d52001-03-28 05:38:24 +000079 /* if called as zcat */
Glenn L McGrath1ee52e82002-08-24 10:30:36 +000080 if (strcmp(applet_name, "zcat") == 0) {
Matt Kraai96dcd192001-04-18 15:54:09 +000081 flags |= gunzip_to_stdout;
Glenn L McGrath1ee52e82002-08-24 10:30:36 +000082 }
Eric Andersene99674a2000-09-01 00:41:10 +000083
Glenn L McGrathabac53b2002-08-24 14:32:17 +000084 while ((opt = getopt(argc, argv, "ctfhd")) != -1) {
Matt Kraai96dcd192001-04-18 15:54:09 +000085 switch (opt) {
86 case 'c':
87 flags |= gunzip_to_stdout;
88 break;
89 case 'f':
90 flags |= gunzip_force;
91 break;
92 case 't':
93 flags |= gunzip_test;
94 break;
Glenn L McGrath1ee52e82002-08-24 10:30:36 +000095 case 'd': /* Used to convert gzip to gunzip. */
Matt Kraai53265542001-04-18 16:05:34 +000096 break;
Matt Kraai96dcd192001-04-18 15:54:09 +000097 default:
Glenn L McGrath1ee52e82002-08-24 10:30:36 +000098 show_usage(); /* exit's inside usage */
Matt Kraai96dcd192001-04-18 15:54:09 +000099 }
Glenn L McGrathbcfeb2a2001-04-18 13:34:09 +0000100 }
101
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000102 do {
103 FILE *in_file, *out_file;
104 struct stat stat_buf;
105 const char *old_path = argv[optind];
106 const char *delete_path = NULL;
107 char *new_path = NULL;
108
109 optind++;
110
111 if (old_path == NULL || strcmp(old_path, "-") == 0) {
112 in_file = stdin;
113 flags |= gunzip_to_stdout;
114 } else {
115 in_file = wfopen(old_path, "r");
116 if (in_file == NULL) {
Glenn L McGrath1ee52e82002-08-24 10:30:36 +0000117 status = EXIT_FAILURE;
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000118 break;
119 }
120
121 /* Get the time stamp on the input file. */
122 if (stat(old_path, &stat_buf) < 0) {
123 error_msg_and_die("Couldn't stat file %s", old_path);
Glenn L McGrath1ee52e82002-08-24 10:30:36 +0000124 }
125 }
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000126
127 /* Check that the input is sane. */
128 if (isatty(fileno(in_file)) && ((flags & gunzip_force) == 0)) {
129 error_msg_and_die
130 ("compressed data not read from terminal. Use -f to force it.");
131 }
132
133 /* Set output filename and number */
134 if (flags & gunzip_test) {
135 out_file = xfopen("/dev/null", "w"); /* why does test use filenum 2 ? */
136 } else if (flags & gunzip_to_stdout) {
137 out_file = stdout;
138 } else {
139 char *extension;
140
141 new_path = xstrdup(old_path);
142
143 extension = strrchr(new_path, '.');
144 if (extension && (strcmp(extension, ".gz") == 0)) {
145 *extension = '\0';
146 } else if (extension && (strcmp(extension, ".tgz") == 0)) {
147 extension[2] = 'a';
148 extension[3] = 'r';
149 } else {
150 error_msg_and_die("Invalid extension");
151 }
152
153 /* Open output file */
154 out_file = xfopen(new_path, "w");
155
156 /* Set permissions on the file */
Glenn L McGrathc3b7f7d2002-08-26 17:17:27 +0000157 chmod(new_path, stat_buf.st_mode);
Glenn L McGrathabac53b2002-08-24 14:32:17 +0000158
159 /* If unzip succeeds remove the old file */
160 delete_path = old_path;
161 }
162
163 /* do the decompression, and cleanup */
164 if ((unzip(in_file, out_file) != 0) && (new_path)) {
165 /* Unzip failed, remove new path instead of old path */
166 delete_path = new_path;
167 }
168
169 if (out_file != stdout) {
170 fclose(out_file);
171 }
172 if (in_file != stdin) {
173 fclose(in_file);
174 }
175
176 /* delete_path will be NULL if in test mode or from stdin */
177 if (delete_path && (unlink(delete_path) == -1)) {
178 error_msg_and_die("Couldn't remove %s", delete_path);
179 }
180
181 free(new_path);
182
183 } while (optind < argc);
184
Matt Kraaia4a65e72002-04-29 15:32:32 +0000185 return status;
Eric Andersenb052b471999-11-18 00:21:59 +0000186}