blob: ca775c787355909900b5af939997723d2b8c148b [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
Glenn L McGratha0b37052003-06-22 06:59:34 +000019 flags = bb_getopt_ulflags(argc, argv, "cf");
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000020
Glenn L McGratha0b37052003-06-22 06:59:34 +000021 while (optind < argc) {
22 const char *compressed_file = argv[optind++];
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000023 const 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)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +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);
Rob Landleyd921b2e2006-08-03 15:41:12 +000058 dst_fd = xopen3(uncompressed_file, O_WRONLY | O_CREAT,
Rob Landleyc4b67392006-06-13 16:09:16 +000059 stat_buf.st_mode);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000060
61 /* If unzip succeeds remove the old file */
Glenn L McGratha0b37052003-06-22 06:59:34 +000062 delete_path = compressed_file;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000063 }
64
65 /* do the decompression, and cleanup */
Rob Landley53437472006-07-16 08:14:35 +000066 if ((xread_char(src_fd) != 0x1f) || (xread_char(src_fd) != 0x9d)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000067 bb_error_msg_and_die("Invalid magic");
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000068 }
69
Glenn L McGratha0b37052003-06-22 06:59:34 +000070 status = uncompress(src_fd, dst_fd);
71
72 if ((status != EXIT_SUCCESS) && (uncompressed_file)) {
73 /* Unzip failed, remove the uncomressed file instead of compressed file */
74 delete_path = uncompressed_file;
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000075 }
76
Eric Andersen70060d22004-03-27 10:02:48 +000077 if (dst_fd != STDOUT_FILENO) {
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000078 close(dst_fd);
79 }
Eric Andersen70060d22004-03-27 10:02:48 +000080 if (src_fd != STDIN_FILENO) {
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000081 close(src_fd);
82 }
83
84 /* delete_path will be NULL if in test mode or from stdin */
85 if (delete_path && (unlink(delete_path) == -1)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 bb_error_msg_and_die("Couldn't remove %s", delete_path);
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000087 }
88
Glenn L McGratha0b37052003-06-22 06:59:34 +000089 free(uncompressed_file);
90 }
Glenn L McGrathbf1cc8b2002-11-01 23:38:54 +000091
92 return status;
93}