blob: 3c78961d579b7a9094c35f241b4e4e8757593649 [file] [log] [blame]
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Uncompress applet for busybox (c) 2002 Glenn McGrath
4 *
Bernhard Reutner-Fischer421d9e52006-04-03 16:39:31 +00005 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +00006 */
7
Bernhard Reutner-Fischer421d9e52006-04-03 16:39:31 +00008#include "busybox.h"
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +00009#include "unarchive.h"
10
Glenn L McGratha0b37052003-06-22 06:59:34 +000011#define GUNZIP_TO_STDOUT 1
12#define GUNZIP_FORCE 2
13
Rob Landleydfba7412006-03-06 20:47:33 +000014int uncompress_main(int argc, char **argv)
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000015{
Glenn L McGratha0b37052003-06-22 06:59:34 +000016 int status = EXIT_SUCCESS;
17 unsigned long flags;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000018
Denis Vlasenko67b23e62006-10-03 21:00:06 +000019 flags = getopt32(argc, argv, "cf");
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000020
Glenn L McGratha0b37052003-06-22 06:59:34 +000021 while (optind < argc) {
Rob Landley20cc6d52006-09-12 21:42:17 +000022 char *compressed_file = argv[optind++];
23 char *delete_path = NULL;
Glenn L McGratha0b37052003-06-22 06:59:34 +000024 char *uncompressed_file = NULL;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000025 int src_fd;
26 int dst_fd;
27
Glenn L McGratha0b37052003-06-22 06:59:34 +000028 if (strcmp(compressed_file, "-") == 0) {
Eric Andersen70060d22004-03-27 10:02:48 +000029 src_fd = STDIN_FILENO;
Glenn L McGratha0b37052003-06-22 06:59:34 +000030 flags |= GUNZIP_TO_STDOUT;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000031 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +000032 src_fd = xopen(compressed_file, O_RDONLY);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000033 }
34
35 /* Check that the input is sane. */
Glenn L McGratha0b37052003-06-22 06:59:34 +000036 if (isatty(src_fd) && ((flags & GUNZIP_FORCE) == 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000037 bb_error_msg_and_die
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000038 ("compressed data not read from terminal. Use -f to force it.");
39 }
40
41 /* Set output filename and number */
Glenn L McGratha0b37052003-06-22 06:59:34 +000042 if (flags & GUNZIP_TO_STDOUT) {
Eric Andersen70060d22004-03-27 10:02:48 +000043 dst_fd = STDOUT_FILENO;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000044 } else {
Glenn L McGratha0b37052003-06-22 06:59:34 +000045 struct stat stat_buf;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000046 char *extension;
47
Rob Landleyd921b2e2006-08-03 15:41:12 +000048 uncompressed_file = xstrdup(compressed_file);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000049
Glenn L McGratha0b37052003-06-22 06:59:34 +000050 extension = strrchr(uncompressed_file, '.');
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000051 if (!extension || (strcmp(extension, ".Z") != 0)) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000052 bb_error_msg_and_die("invalid extension");
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000053 }
54 *extension = '\0';
55
56 /* Open output file */
Rob Landleyc4b67392006-06-13 16:09:16 +000057 xstat(compressed_file, &stat_buf);
Denis Vlasenko22dca232006-09-03 14:23:29 +000058 dst_fd = xopen3(uncompressed_file,
59 O_WRONLY | O_CREAT | O_TRUNC,
Rob Landleyc4b67392006-06-13 16:09:16 +000060 stat_buf.st_mode);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000061
62 /* If unzip succeeds remove the old file */
Glenn L McGratha0b37052003-06-22 06:59:34 +000063 delete_path = compressed_file;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000064 }
65
66 /* do the decompression, and cleanup */
Rob Landley53437472006-07-16 08:14:35 +000067 if ((xread_char(src_fd) != 0x1f) || (xread_char(src_fd) != 0x9d)) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000068 bb_error_msg_and_die("invalid magic");
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000069 }
70
Glenn L McGratha0b37052003-06-22 06:59:34 +000071 status = uncompress(src_fd, dst_fd);
72
73 if ((status != EXIT_SUCCESS) && (uncompressed_file)) {
74 /* Unzip failed, remove the uncomressed file instead of compressed file */
75 delete_path = uncompressed_file;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000076 }
77
Eric Andersen70060d22004-03-27 10:02:48 +000078 if (dst_fd != STDOUT_FILENO) {
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000079 close(dst_fd);
80 }
Eric Andersen70060d22004-03-27 10:02:48 +000081 if (src_fd != STDIN_FILENO) {
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000082 close(src_fd);
83 }
84
85 /* delete_path will be NULL if in test mode or from stdin */
86 if (delete_path && (unlink(delete_path) == -1)) {
Denis Vlasenkoa9595882006-09-29 21:30:43 +000087 bb_error_msg_and_die("cannot remove %s", delete_path);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000088 }
89
Glenn L McGratha0b37052003-06-22 06:59:34 +000090 free(uncompressed_file);
91 }
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000092
93 return status;
94}