e40982cd15a25784ec9ab12cc4cab5653d46c906
[oweals/busybox.git] / archival / gunzip.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Gzip implementation for busybox
4  *
5  * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.
6  *
7  * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
8  * based on gzip sources
9  *
10  * 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.
13  *
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>
16  * 
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.
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  *
31  *
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.
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
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.",
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 };
61 #endif
62
63 #include <stdlib.h>
64 #include <string.h>
65 #include <unistd.h>
66 #include <getopt.h>
67 #include "busybox.h"
68
69 extern int gunzip_main(int argc, char **argv)
70 {
71         int flags = 0;
72         int opt = 0;
73         int delete_old_file, file_count;
74         struct stat stat_buf;
75         FILE *in_file, *out_file;
76         char *if_name, *of_name, *delete_file_name;
77         const int gunzip_to_stdout = 1;
78         const int gunzip_force = 2;
79         const int gunzip_test = 4;
80         const int gunzip_verbose = 8;
81
82         /* if called as zcat */
83         if (strcmp(applet_name, "zcat") == 0)
84                 flags |= gunzip_to_stdout;
85
86         while ((opt = getopt(argc, argv, "ctfhdqv")) != -1) {
87                 switch (opt) {
88                 case 'c':
89                         flags |= gunzip_to_stdout;
90                         break;
91                 case 'f':
92                         flags |= gunzip_force;
93                         break;
94                 case 't':
95                         flags |= gunzip_test;
96                         break;
97                 case 'v':
98                         flags |= gunzip_verbose;
99                         break;
100                 case 'd': /* Used to convert gzip to gunzip. */
101                         break;
102                 case 'q':
103                         error_msg("-q option not supported, ignored");
104                         break;
105                 case 'h':
106                 default:
107                         show_usage(); /* exit's inside usage */
108                 }
109         }
110
111         file_count = argc - optind;
112         while (file_count==0 || optind < argc) {
113                 in_file = stdin;
114                 out_file = NULL;
115                 if_name = NULL;
116                 of_name = NULL;
117                 delete_file_name = NULL;
118                 delete_old_file = FALSE;
119
120                 /* Set input filename and number */
121                 if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) {
122                         flags |= gunzip_to_stdout;
123                         /* Skip to the end */
124                         optind = argc;
125                 } else {
126                         if_name = strdup(argv[optind]);
127                         /* Open input file */
128                         in_file = xfopen(if_name, "r");
129
130                         if (flags & gunzip_verbose) {
131                                 fprintf(stderr, "%s:\t", if_name);
132                         }
133
134                         /* set the buffer size */
135                         setvbuf(in_file, NULL, _IOFBF, 0x8000);
136
137                         /* Get the time stamp on the input file. */
138                         if (stat(if_name, &stat_buf) < 0) {
139                                 error_msg_and_die("Couldn't stat file %s", if_name);
140                         }
141                 }
142
143                 /* Check that the input is sane.  */
144                 if (isatty(fileno(in_file)) && (flags & gunzip_force) == 0)
145                         error_msg_and_die("compressed data not read from terminal.  Use -f to force it.");
146
147                 /* Set output filename and number */
148                 if (flags & gunzip_test) {
149                         out_file = xfopen("/dev/null", "w"); /* why does test use filenum 2 ? */
150                 } else if (flags & gunzip_to_stdout) {
151                         out_file = stdout;
152                 } else {
153                         char *extension;
154                         int length = strlen(if_name);
155
156                         delete_old_file = TRUE;
157                         extension = strrchr(if_name, '.');
158                         if (extension && strcmp(extension, ".gz") == 0) {
159                                 length -= 3;
160                         } else if (extension && strcmp(extension, ".tgz") == 0) {
161                                 length -= 4;
162                         } else {
163                                 error_msg_and_die("Invalid extension");
164                         }
165                         of_name = (char *) xcalloc(sizeof(char), length + 1);
166                         strncpy(of_name, if_name, length);
167
168                         /* Open output file */
169                         out_file = xfopen(of_name, "w");
170
171                         /* Set permissions on the file */
172                         chmod(of_name, stat_buf.st_mode);
173                 }
174
175                 /* do the decompression, and cleanup */
176                 if (unzip(in_file, out_file) == 0) {
177                         /* Success, remove .gz file */
178                         delete_file_name = if_name;
179                         if (flags & gunzip_verbose) {
180                                 fprintf(stderr, "OK\n");
181                         }
182                 } else {
183                         /* remove failed attempt */
184                         delete_file_name = of_name;
185                 }
186
187                 fclose(out_file);
188                 fclose(in_file);
189
190                 if (delete_old_file == TRUE && !(flags & gunzip_test)) {
191                         if (unlink(delete_file_name) < 0) {
192                                 error_msg_and_die("Couldnt remove %s", delete_file_name);
193                         }
194                 }
195
196                 free(of_name);
197                 optind++;
198         }      /* while () */
199
200         return(EXIT_SUCCESS);
201 }
202