1 /* vi: set sw=4 ts=4: */
3 * Gzip implementation for busybox
5 * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.
7 * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
8 * based on gzip sources
10 * Adjusted further by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
11 * to support files as well as stdin/stdout, and to generally behave itself wrt
12 * command line handling.
14 * General cleanup to better adhere to the style guide and make use of standard
15 * busybox functions by Glenn McGrath <bug1@optushome.com.au>
17 * 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.
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.
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
32 * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
33 * 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.
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.
44 static 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.",
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.",
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.",
69 extern int gunzip_main(int argc, char **argv)
71 FILE *in_file = stdin;
72 FILE *out_file = NULL;
77 char *delete_file_name = NULL;
79 const int gunzip_to_stdout = 1;
80 const int gunzip_force = 2;
81 const int gunzip_test = 4;
85 int delete_old_file = FALSE;
87 /* if called as zcat */
88 if (strcmp(applet_name, "zcat") == 0)
89 flags |= gunzip_to_stdout;
91 while ((opt = getopt(argc, argv, "ctfhdq")) != -1) {
94 flags |= gunzip_to_stdout;
97 flags |= gunzip_force;
100 flags |= gunzip_test;
102 case 'd': /* Used to convert gzip to gunzip. */
105 error_msg("-q option not supported, ignored");
109 show_usage(); /* exit's inside usage */
113 /* Set input filename and number */
114 if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) {
115 flags |= gunzip_to_stdout;
117 if_name = strdup(argv[optind]);
118 /* Open input file */
119 in_file = xfopen(if_name, "r");
121 /* Get the time stamp on the input file. */
122 if (stat(if_name, &stat_buf) < 0) {
123 error_msg_and_die("Couldn't stat file %s", if_name);
127 /* Check that the input is sane. */
128 if (isatty(fileno(in_file)) && (flags & gunzip_force) == 0)
129 error_msg_and_die("compressed data not read from terminal. Use -f to force it.");
131 /* Set output filename and number */
132 if (flags & gunzip_test) {
133 out_file = xfopen("/dev/null", "w"); /* why does test use filenum 2 ? */
134 } else if (flags & gunzip_to_stdout) {
138 int length = strlen(if_name);
140 delete_old_file = TRUE;
141 extension = strrchr(if_name, '.');
142 if (extension && strcmp(extension, ".gz") == 0) {
144 } else if (extension && strcmp(extension, ".tgz") == 0) {
147 error_msg_and_die("Invalid extension");
149 of_name = (char *) xcalloc(sizeof(char), length + 1);
150 strncpy(of_name, if_name, length);
152 /* Open output file */
153 out_file = xfopen(of_name, "w");
155 /* Set permissions on the file */
156 chmod(of_name, stat_buf.st_mode);
159 /* do the decompression, and cleanup */
160 if (unzip(in_file, out_file) == 0) {
161 /* Success, remove .gz file */
162 delete_file_name = if_name;
164 /* remove failed attempt */
165 delete_file_name = of_name;
171 if (delete_old_file == TRUE) {
172 if (unlink(delete_file_name) < 0) {
173 error_msg_and_die("Couldnt remove %s", delete_file_name);
179 return(EXIT_SUCCESS);