blob: fb7a3678dfbf0e57451ff804aaf294e7fa8ffcf2 [file] [log] [blame]
Denis Vlasenkoab9eef22007-03-07 22:02:23 +00001/* vi: set sw=4 ts=4: */
2/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Common code for gunzip-like applets
Denis Vlasenkoab9eef22007-03-07 22:02:23 +00004 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenkoab9eef22007-03-07 22:02:23 +00006 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +00007#include "libbb.h"
Denys Vlasenkod184a722011-09-22 12:45:14 +02008#include "bb_archive.h"
Denis Vlasenkoab9eef22007-03-07 22:02:23 +00009
Denys Vlasenko66620fa2013-11-14 09:53:52 +010010/* lzop_main() uses bbunpack(), need this: */
11//kbuild:lib-$(CONFIG_LZOP) += bbunzip.o
Denys Vlasenko9cc3d3a2016-12-23 02:42:26 +010012//kbuild:lib-$(CONFIG_LZOPCAT) += bbunzip.o
13//kbuild:lib-$(CONFIG_UNLZOP) += bbunzip.o
Denys Vlasenko548620c2016-12-08 12:24:48 +010014/* bzip2_main() too: */
Kang-Che Sungb130f9f2017-01-08 14:28:34 +080015//kbuild:lib-$(CONFIG_FEATURE_BZIP2_DECOMPRESS) += bbunzip.o
Denys Vlasenko9cc3d3a2016-12-23 02:42:26 +010016/* gzip_main() too: */
Kang-Che Sungb130f9f2017-01-08 14:28:34 +080017//kbuild:lib-$(CONFIG_FEATURE_GZIP_DECOMPRESS) += bbunzip.o
Denys Vlasenko66620fa2013-11-14 09:53:52 +010018
Mike Frysinger93b51812013-03-03 00:48:53 -050019/* Note: must be kept in sync with archival/lzop.c */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000020enum {
Denys Vlasenkoccb88a62010-05-27 02:22:54 +020021 OPT_STDOUT = 1 << 0,
22 OPT_FORCE = 1 << 1,
23 /* only some decompressors: */
24 OPT_VERBOSE = 1 << 2,
Mike Frysinger920c1ba2013-02-28 17:21:50 -050025 OPT_QUIET = 1 << 3,
26 OPT_DECOMPRESS = 1 << 4,
27 OPT_TEST = 1 << 5,
Kang-Che Sungd5e7ff02017-01-08 14:31:06 +010028 SEAMLESS_MAGIC = (1 << 31) * ENABLE_ZCAT * SEAMLESS_COMPRESSION,
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000029};
30
31static
32int open_to_or_warn(int to_fd, const char *filename, int flags, int mode)
33{
Denis Vlasenko50f7f442007-04-11 23:20:53 +000034 int fd = open3_or_warn(filename, flags, mode);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000035 if (fd < 0) {
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000036 return 1;
37 }
Denis Vlasenko50f7f442007-04-11 23:20:53 +000038 xmove_fd(fd, to_fd);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000039 return 0;
40}
41
Denys Vlasenko39a04f72010-05-31 14:18:57 +020042char* FAST_FUNC append_ext(char *filename, const char *expected_ext)
43{
44 return xasprintf("%s.%s", filename, expected_ext);
45}
46
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000047int FAST_FUNC bbunpack(char **argv,
Denys Vlasenkoe7800f32014-12-07 00:42:49 +010048 IF_DESKTOP(long long) int FAST_FUNC (*unpacker)(transformer_state_t *xstate),
Denys Vlasenko39a04f72010-05-31 14:18:57 +020049 char* FAST_FUNC (*make_new_name)(char *filename, const char *expected_ext),
50 const char *expected_ext
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000051)
52{
53 struct stat stat_buf;
Denys Vlasenko8e96efa2013-02-28 18:06:09 +010054 IF_DESKTOP(long long) int status = 0;
Denis Vlasenko6c939e02007-03-07 23:22:47 +000055 char *filename, *new_name;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000056 smallint exitcode = 0;
Denys Vlasenkoe7800f32014-12-07 00:42:49 +010057 transformer_state_t xstate;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000058
59 do {
Denis Vlasenko6c939e02007-03-07 23:22:47 +000060 /* NB: new_name is *maybe* malloc'ed! */
61 new_name = NULL;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000062 filename = *argv; /* can be NULL - 'streaming' bunzip2 */
Denis Vlasenko6c939e02007-03-07 23:22:47 +000063
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000064 if (filename && LONE_DASH(filename))
65 filename = NULL;
66
67 /* Open src */
68 if (filename) {
Denys Vlasenko8e96efa2013-02-28 18:06:09 +010069 if (!(option_mask32 & SEAMLESS_MAGIC)) {
70 if (stat(filename, &stat_buf) != 0) {
71 err_name:
72 bb_simple_perror_msg(filename);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000073 err:
Denys Vlasenko8e96efa2013-02-28 18:06:09 +010074 exitcode = 1;
75 goto free_name;
76 }
77 if (open_to_or_warn(STDIN_FILENO, filename, O_RDONLY, 0))
78 goto err;
79 } else {
Denys Vlasenko41655432013-02-28 18:37:04 +010080 /* "clever zcat" with FILE */
Denys Vlasenko640ce3d2014-02-02 02:06:38 +010081 /* fail_if_not_compressed because zcat refuses uncompressed input */
82 int fd = open_zipped(filename, /*fail_if_not_compressed:*/ 1);
Denys Vlasenko8e96efa2013-02-28 18:06:09 +010083 if (fd < 0)
84 goto err_name;
85 xmove_fd(fd, STDIN_FILENO);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000086 }
Denys Vlasenko41655432013-02-28 18:37:04 +010087 } else
88 if (option_mask32 & SEAMLESS_MAGIC) {
89 /* "clever zcat" on stdin */
Denys Vlasenko640ce3d2014-02-02 02:06:38 +010090 if (setup_unzip_on_fd(STDIN_FILENO, /*fail_if_not_compressed*/ 1))
Denys Vlasenko41655432013-02-28 18:37:04 +010091 goto err;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000092 }
93
94 /* Special cases: test, stdout */
95 if (option_mask32 & (OPT_STDOUT|OPT_TEST)) {
96 if (option_mask32 & OPT_TEST)
97 if (open_to_or_warn(STDOUT_FILENO, bb_dev_null, O_WRONLY, 0))
Denys Vlasenkof2d84782013-02-28 18:04:22 +010098 xfunc_die();
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000099 filename = NULL;
100 }
101
Denis Vlasenko6c939e02007-03-07 23:22:47 +0000102 /* Open dst if we are going to unpack to file */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000103 if (filename) {
Denys Vlasenko39a04f72010-05-31 14:18:57 +0200104 new_name = make_new_name(filename, expected_ext);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000105 if (!new_name) {
106 bb_error_msg("%s: unknown suffix - ignored", filename);
107 goto err;
108 }
Denis Vlasenkoa04cc472008-06-25 20:54:45 +0000109
110 /* -f: overwrite existing output files */
111 if (option_mask32 & OPT_FORCE) {
112 unlink(new_name);
113 }
114
Denis Vlasenko6c939e02007-03-07 23:22:47 +0000115 /* O_EXCL: "real" bunzip2 doesn't overwrite files */
Denis Vlasenko5dd8a032007-10-05 15:26:08 +0000116 /* GNU gunzip does not bail out, but goes to next file */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000117 if (open_to_or_warn(STDOUT_FILENO, new_name, O_WRONLY | O_CREAT | O_EXCL,
118 stat_buf.st_mode))
119 goto err;
120 }
121
Denis Vlasenko6c939e02007-03-07 23:22:47 +0000122 /* Check that the input is sane */
Denys Vlasenkof2d84782013-02-28 18:04:22 +0100123 if (!(option_mask32 & OPT_FORCE) && isatty(STDIN_FILENO)) {
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000124 bb_error_msg_and_die("compressed data not read from terminal, "
125 "use -f to force it");
126 }
127
Denys Vlasenko8e96efa2013-02-28 18:06:09 +0100128 if (!(option_mask32 & SEAMLESS_MAGIC)) {
Denys Vlasenkoe7800f32014-12-07 00:42:49 +0100129 init_transformer_state(&xstate);
Denys Vlasenko2a0867a2017-01-09 10:58:37 +0100130 /*xstate.signature_skipped = 0; - already is */
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100131 /*xstate.src_fd = STDIN_FILENO; - already is */
132 xstate.dst_fd = STDOUT_FILENO;
Denys Vlasenkoe7800f32014-12-07 00:42:49 +0100133 status = unpacker(&xstate);
Denys Vlasenko8e96efa2013-02-28 18:06:09 +0100134 if (status < 0)
135 exitcode = 1;
136 } else {
Denys Vlasenko41655432013-02-28 18:37:04 +0100137 if (bb_copyfd_eof(STDIN_FILENO, STDOUT_FILENO) < 0)
Denys Vlasenko8e96efa2013-02-28 18:06:09 +0100138 /* Disk full, tty closed, etc. No point in continuing */
139 xfunc_die();
Denys Vlasenko8e96efa2013-02-28 18:06:09 +0100140 }
Denys Vlasenkoc531b9a2011-10-31 01:05:16 +0100141
142 if (!(option_mask32 & OPT_STDOUT))
143 xclose(STDOUT_FILENO); /* with error check! */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000144
145 if (filename) {
146 char *del = new_name;
Denys Vlasenkod0bc7082013-07-30 05:41:11 +0200147
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000148 if (status >= 0) {
Denys Vlasenkod0bc7082013-07-30 05:41:11 +0200149 unsigned new_name_len;
150
Denis Vlasenko1a9e9bd2008-11-01 12:54:56 +0000151 /* TODO: restore other things? */
Denys Vlasenkoe7800f32014-12-07 00:42:49 +0100152 if (xstate.mtime != 0) {
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100153 struct timeval times[2];
Denys Vlasenko389cca42009-11-15 02:28:56 +0100154
Denys Vlasenkoe7800f32014-12-07 00:42:49 +0100155 times[1].tv_sec = times[0].tv_sec = xstate.mtime;
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100156 times[1].tv_usec = times[0].tv_usec = 0;
Denys Vlasenkodcd27ab2009-10-05 03:03:07 +0200157 /* Note: we closed it first.
Denys Vlasenko389cca42009-11-15 02:28:56 +0100158 * On some systems calling utimes
Denys Vlasenkodcd27ab2009-10-05 03:03:07 +0200159 * then closing resets the mtime
160 * back to current time. */
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100161 utimes(new_name, times); /* ignoring errors */
Denis Vlasenko1a9e9bd2008-11-01 12:54:56 +0000162 }
163
Denys Vlasenkod0bc7082013-07-30 05:41:11 +0200164 if (ENABLE_DESKTOP)
165 new_name_len = strlen(new_name);
166 /* Restore source filename (unless tgz -> tar case) */
167 if (new_name == filename) {
168 new_name_len = strlen(filename);
169 filename[new_name_len] = '.';
170 }
171 /* Extreme bloat for gunzip compat */
172 /* Some users do want this info... */
173 if (ENABLE_DESKTOP && (option_mask32 & OPT_VERBOSE)) {
174 unsigned percent = status
175 ? ((uoff_t)stat_buf.st_size * 100u / (unsigned long long)status)
176 : 0;
177 fprintf(stderr, "%s: %u%% - replaced with %.*s\n",
178 filename,
179 100u - percent,
180 new_name_len, new_name
181 );
182 }
183 /* Delete _source_ file */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000184 del = filename;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000185 }
Denis Vlasenko1bb552b2007-04-05 21:25:15 +0000186 xunlink(del);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000187 free_name:
188 if (new_name != filename)
189 free(new_name);
190 }
191 } while (*argv && *++argv);
192
Denys Vlasenkoc531b9a2011-10-31 01:05:16 +0100193 if (option_mask32 & OPT_STDOUT)
194 xclose(STDOUT_FILENO); /* with error check! */
195
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000196 return exitcode;
197}
198
Denys Vlasenko548620c2016-12-08 12:24:48 +0100199#if ENABLE_UNCOMPRESS \
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800200 || ENABLE_FEATURE_BZIP2_DECOMPRESS \
Denys Vlasenko548620c2016-12-08 12:24:48 +0100201 || ENABLE_UNLZMA || ENABLE_LZCAT || ENABLE_LZMA \
202 || ENABLE_UNXZ || ENABLE_XZCAT || ENABLE_XZ
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000203static
Denys Vlasenko39a04f72010-05-31 14:18:57 +0200204char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext)
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000205{
206 char *extension = strrchr(filename, '.');
Denis Vlasenkobebbd8c2007-03-09 20:49:55 +0000207 if (!extension || strcmp(extension + 1, expected_ext) != 0) {
Denis Vlasenko6c939e02007-03-07 23:22:47 +0000208 /* Mimic GNU gunzip - "real" bunzip2 tries to */
209 /* unpack file anyway, to file.out */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000210 return NULL;
211 }
212 *extension = '\0';
213 return filename;
214}
Denis Vlasenkoa4688bf2007-03-11 10:56:37 +0000215#endif
216
217
Denis Vlasenkoa4688bf2007-03-11 10:56:37 +0000218/*
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200219 * Uncompress applet for busybox (c) 2002 Glenn McGrath
Denis Vlasenkoa4688bf2007-03-11 10:56:37 +0000220 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +0200221 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenkoa4688bf2007-03-11 10:56:37 +0000222 */
Pere Orga1f4447b2011-03-27 22:40:30 +0200223//usage:#define uncompress_trivial_usage
224//usage: "[-cf] [FILE]..."
225//usage:#define uncompress_full_usage "\n\n"
226//usage: "Decompress .Z file[s]\n"
Pere Orga1f4447b2011-03-27 22:40:30 +0200227//usage: "\n -c Write to stdout"
228//usage: "\n -f Overwrite"
229
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100230//config:config UNCOMPRESS
231//config: bool "uncompress"
Denys Vlasenkodb700332015-10-25 20:36:03 +0100232//config: default n # ancient
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100233//config: help
234//config: uncompress is used to decompress archives created by compress.
235//config: Not much used anymore, replaced by gzip/gunzip.
236
Denys Vlasenko36184a42013-11-14 09:54:24 +0100237//applet:IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko66620fa2013-11-14 09:53:52 +0100238//kbuild:lib-$(CONFIG_UNCOMPRESS) += bbunzip.o
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200239#if ENABLE_UNCOMPRESS
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200240int uncompress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
241int uncompress_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000242{
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200243 getopt32(argv, "cf");
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000244 argv += optind;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000245
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100246 return bbunpack(argv, unpack_Z_stream, make_new_name_generic, "Z");
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000247}
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000248#endif
249
250
251/*
252 * Gzip implementation for busybox
253 *
254 * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.
255 *
256 * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
257 * based on gzip sources
258 *
259 * Adjusted further by Erik Andersen <andersen@codepoet.org> to support files as
260 * well as stdin/stdout, and to generally behave itself wrt command line
261 * handling.
262 *
263 * General cleanup to better adhere to the style guide and make use of standard
Denis Vlasenko0beaff82007-09-21 13:16:32 +0000264 * busybox functions by Glenn McGrath
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000265 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +0200266 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000267 *
268 * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
269 * Copyright (C) 1992-1993 Jean-loup Gailly
270 * The unzip code was written and put in the public domain by Mark Adler.
271 * Portions of the lzw code are derived from the public domain 'compress'
272 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
273 * Ken Turkowski, Dave Mack and Peter Jannesen.
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000274 */
Pere Orga1f4447b2011-03-27 22:40:30 +0200275//usage:#define gunzip_trivial_usage
276//usage: "[-cft] [FILE]..."
277//usage:#define gunzip_full_usage "\n\n"
278//usage: "Decompress FILEs (or stdin)\n"
Pere Orga1f4447b2011-03-27 22:40:30 +0200279//usage: "\n -c Write to stdout"
280//usage: "\n -f Force"
281//usage: "\n -t Test file integrity"
282//usage:
283//usage:#define gunzip_example_usage
284//usage: "$ ls -la /tmp/BusyBox*\n"
285//usage: "-rw-rw-r-- 1 andersen andersen 557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz\n"
286//usage: "$ gunzip /tmp/BusyBox-0.43.tar.gz\n"
287//usage: "$ ls -la /tmp/BusyBox*\n"
288//usage: "-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n"
289//usage:
290//usage:#define zcat_trivial_usage
Denys Vlasenkof2d84782013-02-28 18:04:22 +0100291//usage: "[FILE]..."
Pere Orga1f4447b2011-03-27 22:40:30 +0200292//usage:#define zcat_full_usage "\n\n"
293//usage: "Decompress to stdout"
294
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100295//config:config GUNZIP
296//config: bool "gunzip"
297//config: default y
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800298//config: select FEATURE_GZIP_DECOMPRESS
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100299//config: help
300//config: gunzip is used to decompress archives created by gzip.
301//config: You can use the `-t' option to test the integrity of
302//config: an archive, without decompressing it.
Aaro Koskinenfbe50cf2015-10-26 23:42:32 +0200303//config:
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100304//config:config ZCAT
305//config: bool "zcat"
306//config: default y
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800307//config: select FEATURE_GZIP_DECOMPRESS
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100308//config: help
309//config: Alias to "gunzip -c".
310//config:
Aaro Koskinenfbe50cf2015-10-26 23:42:32 +0200311//config:config FEATURE_GUNZIP_LONG_OPTIONS
312//config: bool "Enable long options"
313//config: default y
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100314//config: depends on (GUNZIP || ZCAT) && LONG_OPTS
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100315
Denys Vlasenko36184a42013-11-14 09:54:24 +0100316//applet:IF_GUNZIP(APPLET(gunzip, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100317//applet:IF_ZCAT(APPLET_ODDNAME(zcat, gunzip, BB_DIR_BIN, BB_SUID_DROP, zcat))
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800318#if ENABLE_FEATURE_GZIP_DECOMPRESS
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000319static
Denys Vlasenko39a04f72010-05-31 14:18:57 +0200320char* FAST_FUNC make_new_name_gunzip(char *filename, const char *expected_ext UNUSED_PARAM)
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000321{
322 char *extension = strrchr(filename, '.');
323
324 if (!extension)
325 return NULL;
326
Denis Vlasenkobebbd8c2007-03-09 20:49:55 +0000327 extension++;
328 if (strcmp(extension, "tgz" + 1) == 0
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000329#if ENABLE_FEATURE_SEAMLESS_Z
330 || (extension[0] == 'Z' && extension[1] == '\0')
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000331#endif
332 ) {
Denis Vlasenkobebbd8c2007-03-09 20:49:55 +0000333 extension[-1] = '\0';
Denis Vlasenko51742f42007-04-12 00:32:05 +0000334 } else if (strcmp(extension, "tgz") == 0) {
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000335 filename = xstrdup(filename);
336 extension = strrchr(filename, '.');
337 extension[2] = 'a';
338 extension[3] = 'r';
339 } else {
340 return NULL;
341 }
342 return filename;
343}
Aaro Koskinenfbe50cf2015-10-26 23:42:32 +0200344
345#if ENABLE_FEATURE_GUNZIP_LONG_OPTIONS
346static const char gunzip_longopts[] ALIGN1 =
347 "stdout\0" No_argument "c"
348 "to-stdout\0" No_argument "c"
349 "force\0" No_argument "f"
350 "test\0" No_argument "t"
Aaro Koskinencddc98e2015-10-26 23:42:33 +0200351 "no-name\0" No_argument "n"
Aaro Koskinenfbe50cf2015-10-26 23:42:32 +0200352 ;
353#endif
354
Denis Vlasenko52978092008-03-30 13:11:47 +0000355/*
356 * Linux kernel build uses gzip -d -n. We accept and ignore it.
357 * Man page says:
358 * -n --no-name
359 * gzip: do not save the original file name and time stamp.
360 * (The original name is always saved if the name had to be truncated.)
361 * gunzip: do not restore the original file name/time even if present
362 * (remove only the gzip suffix from the compressed file name).
363 * This option is the default when decompressing.
364 * -N --name
365 * gzip: always save the original file name and time stamp (this is the default)
366 * gunzip: restore the original file name and time stamp if present.
367 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000368int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000369int gunzip_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000370{
Aaro Koskinenfbe50cf2015-10-26 23:42:32 +0200371#if ENABLE_FEATURE_GUNZIP_LONG_OPTIONS
372 applet_long_options = gunzip_longopts;
373#endif
Mike Frysinger08e28e82013-02-28 21:28:21 -0500374 getopt32(argv, "cfvqdtn");
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000375 argv += optind;
Denys Vlasenko8e96efa2013-02-28 18:06:09 +0100376
377 /* If called as zcat...
378 * Normally, "zcat" is just "gunzip -c".
379 * But if seamless magic is enabled, then we are much more clever.
380 */
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100381 if (ENABLE_ZCAT && applet_name[1] == 'c')
Denys Vlasenko8e96efa2013-02-28 18:06:09 +0100382 option_mask32 |= OPT_STDOUT | SEAMLESS_MAGIC;
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000383
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100384 return bbunpack(argv, unpack_gz_stream, make_new_name_gunzip, /*unused:*/ NULL);
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000385}
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800386#endif /* FEATURE_GZIP_DECOMPRESS */
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000387
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200388
389/*
390 * Modified for busybox by Glenn McGrath
391 * Added support output to stdout by Thomas Lundquist <thomasez@zelow.no>
392 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +0200393 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200394 */
Denys Vlasenkof0f94702010-06-06 01:53:38 +0200395//usage:#define bunzip2_trivial_usage
Denys Vlasenko3b2acb72010-10-09 21:10:32 +0200396//usage: "[-cf] [FILE]..."
Denys Vlasenkof0f94702010-06-06 01:53:38 +0200397//usage:#define bunzip2_full_usage "\n\n"
398//usage: "Decompress FILEs (or stdin)\n"
Denys Vlasenkof0f94702010-06-06 01:53:38 +0200399//usage: "\n -c Write to stdout"
400//usage: "\n -f Force"
401//usage:#define bzcat_trivial_usage
Denys Vlasenkof2d84782013-02-28 18:04:22 +0100402//usage: "[FILE]..."
Denys Vlasenkof0f94702010-06-06 01:53:38 +0200403//usage:#define bzcat_full_usage "\n\n"
404//usage: "Decompress to stdout"
Denys Vlasenko66620fa2013-11-14 09:53:52 +0100405
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100406//config:config BUNZIP2
407//config: bool "bunzip2"
408//config: default y
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800409//config: select FEATURE_BZIP2_DECOMPRESS
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100410//config: help
411//config: bunzip2 is a compression utility using the Burrows-Wheeler block
412//config: sorting text compression algorithm, and Huffman coding. Compression
413//config: is generally considerably better than that achieved by more
414//config: conventional LZ77/LZ78-based compressors, and approaches the
415//config: performance of the PPM family of statistical compressors.
416//config:
417//config: Unless you have a specific application which requires bunzip2, you
418//config: should probably say N here.
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100419//config:
420//config:config BZCAT
421//config: bool "bzcat"
422//config: default y
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800423//config: select FEATURE_BZIP2_DECOMPRESS
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100424//config: help
425//config: Alias to "bunzip2 -c".
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100426
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100427//applet:IF_BUNZIP2(APPLET(bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100428//applet:IF_BZCAT(APPLET_ODDNAME(bzcat, bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP, bzcat))
Kang-Che Sungb130f9f2017-01-08 14:28:34 +0800429#if ENABLE_FEATURE_BZIP2_DECOMPRESS
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200430int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
431int bunzip2_main(int argc UNUSED_PARAM, char **argv)
432{
Mike Frysinger08e28e82013-02-28 21:28:21 -0500433 getopt32(argv, "cfvqdt");
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200434 argv += optind;
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100435 if (ENABLE_BZCAT && applet_name[2] == 'c') /* bzcat */
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200436 option_mask32 |= OPT_STDOUT;
437
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100438 return bbunpack(argv, unpack_bz2_stream, make_new_name_generic, "bz2");
Denys Vlasenkod93f19e2010-05-30 03:46:54 +0200439}
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000440#endif
441
442
443/*
444 * Small lzma deflate implementation.
445 * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
446 *
447 * Based on bunzip.c from busybox
448 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +0200449 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000450 */
Pere Orga1f4447b2011-03-27 22:40:30 +0200451//usage:#define unlzma_trivial_usage
452//usage: "[-cf] [FILE]..."
453//usage:#define unlzma_full_usage "\n\n"
454//usage: "Decompress FILE (or stdin)\n"
Pere Orga1f4447b2011-03-27 22:40:30 +0200455//usage: "\n -c Write to stdout"
456//usage: "\n -f Force"
457//usage:
458//usage:#define lzma_trivial_usage
459//usage: "-d [-cf] [FILE]..."
460//usage:#define lzma_full_usage "\n\n"
461//usage: "Decompress FILE (or stdin)\n"
Pere Orga1f4447b2011-03-27 22:40:30 +0200462//usage: "\n -d Decompress"
463//usage: "\n -c Write to stdout"
464//usage: "\n -f Force"
465//usage:
466//usage:#define lzcat_trivial_usage
Denys Vlasenkof2d84782013-02-28 18:04:22 +0100467//usage: "[FILE]..."
Pere Orga1f4447b2011-03-27 22:40:30 +0200468//usage:#define lzcat_full_usage "\n\n"
469//usage: "Decompress to stdout"
470//usage:
471//usage:#define unxz_trivial_usage
472//usage: "[-cf] [FILE]..."
473//usage:#define unxz_full_usage "\n\n"
474//usage: "Decompress FILE (or stdin)\n"
Pere Orga1f4447b2011-03-27 22:40:30 +0200475//usage: "\n -c Write to stdout"
476//usage: "\n -f Force"
477//usage:
478//usage:#define xz_trivial_usage
479//usage: "-d [-cf] [FILE]..."
480//usage:#define xz_full_usage "\n\n"
481//usage: "Decompress FILE (or stdin)\n"
Pere Orga1f4447b2011-03-27 22:40:30 +0200482//usage: "\n -d Decompress"
483//usage: "\n -c Write to stdout"
484//usage: "\n -f Force"
485//usage:
486//usage:#define xzcat_trivial_usage
Denys Vlasenkof2d84782013-02-28 18:04:22 +0100487//usage: "[FILE]..."
Pere Orga1f4447b2011-03-27 22:40:30 +0200488//usage:#define xzcat_full_usage "\n\n"
489//usage: "Decompress to stdout"
490
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100491//config:config UNLZMA
492//config: bool "unlzma"
493//config: default y
494//config: help
495//config: unlzma is a compression utility using the Lempel-Ziv-Markov chain
496//config: compression algorithm, and range coding. Compression
497//config: is generally considerably better than that achieved by the bzip2
498//config: compressors.
499//config:
500//config: The BusyBox unlzma applet is limited to decompression only.
501//config: On an x86 system, this applet adds about 4K.
502//config:
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100503//config:config LZCAT
504//config: bool "lzcat"
505//config: default y
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100506//config: help
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100507//config: unlzma is a compression utility using the Lempel-Ziv-Markov chain
508//config: compression algorithm, and range coding. Compression
509//config: is generally considerably better than that achieved by the bzip2
510//config: compressors.
511//config:
512//config: The BusyBox unlzma applet is limited to decompression only.
513//config: On an x86 system, this applet adds about 4K.
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100514//config:
515//config:config LZMA
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100516//config: bool "lzma -d"
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100517//config: default y
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100518//config: help
519//config: Enable this option if you want commands like "lzma -d" to work.
520//config: IOW: you'll get lzma applet, but it will always require -d option.
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100521//config:
522//config:config FEATURE_LZMA_FAST
Denys Vlasenkof5604222017-01-10 14:58:54 +0100523//config: bool "Optimize for speed"
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100524//config: default n
525//config: depends on UNLZMA || LZCAT || LZMA
526//config: help
527//config: This option reduces decompression time by about 25% at the cost of
528//config: a 1K bigger binary.
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100529
Denys Vlasenko36184a42013-11-14 09:54:24 +0100530//applet:IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100531//applet:IF_LZCAT(APPLET_ODDNAME(lzcat, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzcat))
Denys Vlasenkoac216872013-11-14 11:38:18 +0100532//applet:IF_LZMA(APPLET_ODDNAME(lzma, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzma))
Denys Vlasenko66620fa2013-11-14 09:53:52 +0100533//kbuild:lib-$(CONFIG_UNLZMA) += bbunzip.o
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100534//kbuild:lib-$(CONFIG_LZCAT) += bbunzip.o
535//kbuild:lib-$(CONFIG_LZMA) += bbunzip.o
536#if ENABLE_UNLZMA || ENABLE_LZCAT || ENABLE_LZMA
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000537int unlzma_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000538int unlzma_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000539{
Mike Frysinger08e28e82013-02-28 21:28:21 -0500540 IF_LZMA(int opts =) getopt32(argv, "cfvqdt");
Denys Vlasenkoe04c8672010-05-30 03:33:50 +0200541# if ENABLE_LZMA
Denys Vlasenkoccb88a62010-05-27 02:22:54 +0200542 /* lzma without -d or -t? */
543 if (applet_name[2] == 'm' && !(opts & (OPT_DECOMPRESS|OPT_TEST)))
544 bb_show_usage();
545# endif
546 /* lzcat? */
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100547 if (ENABLE_LZCAT && applet_name[2] == 'c')
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000548 option_mask32 |= OPT_STDOUT;
549
Denys Vlasenkoccb88a62010-05-27 02:22:54 +0200550 argv += optind;
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100551 return bbunpack(argv, unpack_lzma_stream, make_new_name_generic, "lzma");
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000552}
Denis Vlasenkoab9eef22007-03-07 22:02:23 +0000553#endif
554
555
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100556//config:config UNXZ
557//config: bool "unxz"
558//config: default y
559//config: help
560//config: unxz is a unlzma successor.
561//config:
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100562//config:config XZCAT
563//config: bool "xzcat"
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100564//config: default y
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100565//config: help
566//config: Alias to "unxz -c".
567//config:
568//config:config XZ
569//config: bool "xz -d"
570//config: default y
Denys Vlasenkof6beef62013-11-14 11:39:00 +0100571//config: help
572//config: Enable this option if you want commands like "xz -d" to work.
573//config: IOW: you'll get xz applet, but it will always require -d option.
574
Denys Vlasenko36184a42013-11-14 09:54:24 +0100575//applet:IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100576//applet:IF_XZCAT(APPLET_ODDNAME(xzcat, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xzcat))
Denys Vlasenkoac216872013-11-14 11:38:18 +0100577//applet:IF_XZ(APPLET_ODDNAME(xz, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xz))
Denys Vlasenko66620fa2013-11-14 09:53:52 +0100578//kbuild:lib-$(CONFIG_UNXZ) += bbunzip.o
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100579//kbuild:lib-$(CONFIG_XZCAT) += bbunzip.o
580//kbuild:lib-$(CONFIG_XZ) += bbunzip.o
581#if ENABLE_UNXZ || ENABLE_XZCAT || ENABLE_XZ
Denys Vlasenko602ce692010-05-30 03:35:18 +0200582int unxz_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
583int unxz_main(int argc UNUSED_PARAM, char **argv)
584{
Mike Frysinger08e28e82013-02-28 21:28:21 -0500585 IF_XZ(int opts =) getopt32(argv, "cfvqdt");
Denys Vlasenko602ce692010-05-30 03:35:18 +0200586# if ENABLE_XZ
587 /* xz without -d or -t? */
588 if (applet_name[2] == '\0' && !(opts & (OPT_DECOMPRESS|OPT_TEST)))
589 bb_show_usage();
590# endif
591 /* xzcat? */
Denys Vlasenkoeb3fdc82016-11-16 15:45:05 +0100592 if (ENABLE_XZCAT && applet_name[2] == 'c')
Denys Vlasenko602ce692010-05-30 03:35:18 +0200593 option_mask32 |= OPT_STDOUT;
594
595 argv += optind;
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100596 return bbunpack(argv, unpack_xz_stream, make_new_name_generic, "xz");
Denys Vlasenko602ce692010-05-30 03:35:18 +0200597}
Denys Vlasenko602ce692010-05-30 03:35:18 +0200598#endif