ebbce411240ef415136688816e659830e26f4a37
[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 <andersen@codepoet.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@iinet.net.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 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <fcntl.h>
49
50 #include "busybox.h"
51 #include "unarchive.h"
52
53 #define GUNZIP_OPT_STDOUT       1
54 #define GUNZIP_OPT_FORCE        2
55 #define GUNZIP_OPT_TEST         4
56 #define GUNZIP_OPT_DECOMPRESS   8
57
58 int gunzip_main(int argc, char **argv)
59 {
60         char status = EXIT_SUCCESS;
61         unsigned long opt;
62
63         opt = bb_getopt_ulflags(argc, argv, "cftd");
64         /* if called as zcat */
65         if (strcmp(bb_applet_name, "zcat") == 0) {
66                 opt |= GUNZIP_OPT_STDOUT;
67         }
68
69         do {
70                 struct stat stat_buf;
71                 const char *old_path = argv[optind];
72                 const char *delete_path = NULL;
73                 char *new_path = NULL;
74                 int src_fd;
75                 int dst_fd;
76
77                 optind++;
78
79                 if (old_path == NULL || strcmp(old_path, "-") == 0) {
80                         src_fd = STDIN_FILENO;
81                         opt |= GUNZIP_OPT_STDOUT;
82                 } else {
83                         src_fd = bb_xopen(old_path, O_RDONLY);
84
85                         /* Get the time stamp on the input file. */
86                         xstat(old_path, &stat_buf);
87                 }
88
89                 /* Check that the input is sane.  */
90                 if (isatty(src_fd) && ((opt & GUNZIP_OPT_FORCE) == 0)) {
91                         bb_error_msg_and_die
92                                 ("compressed data not read from terminal.  Use -f to force it.");
93                 }
94
95                 /* Set output filename and number */
96                 if (opt & GUNZIP_OPT_TEST) {
97                         dst_fd = bb_xopen(bb_dev_null, O_WRONLY);       /* why does test use filenum 2 ? */
98                 } else if (opt & GUNZIP_OPT_STDOUT) {
99                         dst_fd = STDOUT_FILENO;
100                 } else {
101                         char *extension;
102
103                         new_path = bb_xstrdup(old_path);
104
105                         extension = strrchr(new_path, '.');
106 #ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
107                         if (extension && (strcmp(extension, ".Z") == 0)) {
108                                 *extension = '\0';
109                         } else
110 #endif
111                         if (extension && (strcmp(extension, ".gz") == 0)) {
112                                 *extension = '\0';
113                         } else if (extension && (strcmp(extension, ".tgz") == 0)) {
114                                 extension[2] = 'a';
115                                 extension[3] = 'r';
116                         } else {
117                                 bb_error_msg_and_die("Invalid extension");
118                         }
119
120                         /* Open output file (with correct permissions) */
121                         dst_fd = bb_xopen3(new_path, O_WRONLY | O_CREAT, stat_buf.st_mode);
122
123                         /* If unzip succeeds remove the old file */
124                         delete_path = old_path;
125                 }
126
127                 /* do the decompression, and cleanup */
128                 if (bb_xread_char(src_fd) == 0x1f) {
129                         unsigned char magic2;
130
131                         magic2 = bb_xread_char(src_fd);
132 #ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
133                         if (magic2 == 0x9d) {
134                                 status = uncompress(src_fd, dst_fd);
135                         } else
136 #endif
137                                 if (magic2 == 0x8b) {
138                                         check_header_gzip(src_fd);
139                                         status = inflate_gunzip(src_fd, dst_fd);
140                                         if (status != 0) {
141                                                 bb_error_msg_and_die("Error inflating");
142                                         }
143                                 } else {
144                                         bb_error_msg_and_die("Invalid magic");
145                                 }
146                 } else {
147                         bb_error_msg_and_die("Invalid magic");
148                 }
149
150                 if ((status != EXIT_SUCCESS) && (new_path)) {
151                         /* Unzip failed, remove new path instead of old path */
152                         delete_path = new_path;
153                 }
154
155                 if (dst_fd != STDOUT_FILENO) {
156                         close(dst_fd);
157                 }
158                 if (src_fd != STDIN_FILENO) {
159                         close(src_fd);
160                 }
161
162                 /* delete_path will be NULL if in test mode or from stdin */
163                 if (delete_path && (unlink(delete_path) == -1)) {
164                         bb_error_msg_and_die("Couldn't remove %s", delete_path);
165                 }
166
167                 free(new_path);
168
169         } while (optind < argc);
170
171         return status;
172 }