aboutsummaryrefslogtreecommitdiff
path: root/busybox/archival/gunzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/archival/gunzip.c')
-rw-r--r--busybox/archival/gunzip.c198
1 files changed, 198 insertions, 0 deletions
diff --git a/busybox/archival/gunzip.c b/busybox/archival/gunzip.c
new file mode 100644
index 000000000..beb7bd12e
--- /dev/null
+++ b/busybox/archival/gunzip.c
@@ -0,0 +1,198 @@
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#if 0
44static 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 <sys/types.h>
68#include <sys/stat.h>
69#include <fcntl.h>
70
71#include "busybox.h"
72#include "unarchive.h"
73
74#define GUNZIP_OPT_STDOUT 1
75#define GUNZIP_OPT_FORCE 2
76#define GUNZIP_OPT_TEST 4
77#define GUNZIP_OPT_DECOMPRESS 8
78
79extern int gunzip_main(int argc, char **argv)
80{
81 char status = EXIT_SUCCESS;
82 unsigned long opt;
83
84 opt = bb_getopt_ulflags(argc, argv, "cftd");
85 /* if called as zcat */
86 if (strcmp(bb_applet_name, "zcat") == 0) {
87 opt |= GUNZIP_OPT_STDOUT;
88 }
89
90 do {
91 struct stat stat_buf;
92 const char *old_path = argv[optind];
93 const char *delete_path = NULL;
94 char *new_path = NULL;
95 int src_fd;
96 int dst_fd;
97
98 optind++;
99
100 if (old_path == NULL || strcmp(old_path, "-") == 0) {
101 src_fd = STDIN_FILENO;
102 opt |= GUNZIP_OPT_STDOUT;
103 } else {
104 src_fd = bb_xopen(old_path, O_RDONLY);
105
106 /* Get the time stamp on the input file. */
107 if (stat(old_path, &stat_buf) < 0) {
108 bb_error_msg_and_die("Couldn't stat file %s", old_path);
109 }
110 }
111
112 /* Check that the input is sane. */
113 if (isatty(src_fd) && ((opt & GUNZIP_OPT_FORCE) == 0)) {
114 bb_error_msg_and_die
115 ("compressed data not read from terminal. Use -f to force it.");
116 }
117
118 /* Set output filename and number */
119 if (opt & GUNZIP_OPT_TEST) {
120 dst_fd = bb_xopen("/dev/null", O_WRONLY); /* why does test use filenum 2 ? */
121 } else if (opt & GUNZIP_OPT_STDOUT) {
122 dst_fd = STDOUT_FILENO;
123 } else {
124 char *extension;
125
126 new_path = bb_xstrdup(old_path);
127
128 extension = strrchr(new_path, '.');
129#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
130 if (extension && (strcmp(extension, ".Z") == 0)) {
131 *extension = '\0';
132 } else
133#endif
134 if (extension && (strcmp(extension, ".gz") == 0)) {
135 *extension = '\0';
136 } else if (extension && (strcmp(extension, ".tgz") == 0)) {
137 extension[2] = 'a';
138 extension[3] = 'r';
139 } else {
140 bb_error_msg_and_die("Invalid extension");
141 }
142
143 /* Open output file */
144 dst_fd = bb_xopen(new_path, O_WRONLY | O_CREAT);
145
146 /* Set permissions on the file */
147 chmod(new_path, stat_buf.st_mode);
148
149 /* If unzip succeeds remove the old file */
150 delete_path = old_path;
151 }
152
153 /* do the decompression, and cleanup */
154 if (bb_xread_char(src_fd) == 0x1f) {
155 unsigned char magic2;
156
157 magic2 = bb_xread_char(src_fd);
158#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
159 if (magic2 == 0x9d) {
160 status = uncompress(src_fd, dst_fd);
161 } else
162#endif
163 if (magic2 == 0x8b) {
164 check_header_gzip(src_fd);
165 status = inflate_gunzip(src_fd, dst_fd);
166 if (status != 0) {
167 bb_error_msg_and_die("Error inflating");
168 }
169 } else {
170 bb_error_msg_and_die("Invalid magic");
171 }
172 } else {
173 bb_error_msg_and_die("Invalid magic");
174 }
175
176 if ((status != EXIT_SUCCESS) && (new_path)) {
177 /* Unzip failed, remove new path instead of old path */
178 delete_path = new_path;
179 }
180
181 if (dst_fd != STDOUT_FILENO) {
182 close(dst_fd);
183 }
184 if (src_fd != STDIN_FILENO) {
185 close(src_fd);
186 }
187
188 /* delete_path will be NULL if in test mode or from stdin */
189 if (delete_path && (unlink(delete_path) == -1)) {
190 bb_error_msg_and_die("Couldn't remove %s", delete_path);
191 }
192
193 free(new_path);
194
195 } while (optind < argc);
196
197 return status;
198}