Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Uncompress applet for busybox (c) 2002 Glenn McGrath |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 18 | */ |
| 19 | |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <unistd.h> |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 23 | #include <sys/types.h> |
| 24 | #include <sys/stat.h> |
| 25 | #include <fcntl.h> |
| 26 | |
| 27 | #include "libbb.h" |
| 28 | #include "unarchive.h" |
| 29 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 30 | #define GUNZIP_TO_STDOUT 1 |
| 31 | #define GUNZIP_FORCE 2 |
| 32 | |
| 33 | extern int uncompress_main(int argc, char **argv) |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 34 | { |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 35 | int status = EXIT_SUCCESS; |
| 36 | unsigned long flags; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 37 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 38 | flags = bb_getopt_ulflags(argc, argv, "cf"); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 39 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 40 | while (optind < argc) { |
| 41 | const char *compressed_file = argv[optind++]; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 42 | const char *delete_path = NULL; |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 43 | char *uncompressed_file = NULL; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 44 | int src_fd; |
| 45 | int dst_fd; |
| 46 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 47 | if (strcmp(compressed_file, "-") == 0) { |
Eric Andersen | 70060d2 | 2004-03-27 10:02:48 +0000 | [diff] [blame] | 48 | src_fd = STDIN_FILENO; |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 49 | flags |= GUNZIP_TO_STDOUT; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 50 | } else { |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 51 | src_fd = bb_xopen(compressed_file, O_RDONLY); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | /* Check that the input is sane. */ |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 55 | if (isatty(src_fd) && ((flags & GUNZIP_FORCE) == 0)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 56 | bb_error_msg_and_die |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 57 | ("compressed data not read from terminal. Use -f to force it."); |
| 58 | } |
| 59 | |
| 60 | /* Set output filename and number */ |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 61 | if (flags & GUNZIP_TO_STDOUT) { |
Eric Andersen | 70060d2 | 2004-03-27 10:02:48 +0000 | [diff] [blame] | 62 | dst_fd = STDOUT_FILENO; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 63 | } else { |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 64 | struct stat stat_buf; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 65 | char *extension; |
| 66 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 67 | uncompressed_file = bb_xstrdup(compressed_file); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 68 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 69 | extension = strrchr(uncompressed_file, '.'); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 70 | if (!extension || (strcmp(extension, ".Z") != 0)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 71 | bb_error_msg_and_die("Invalid extension"); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 72 | } |
| 73 | *extension = '\0'; |
| 74 | |
| 75 | /* Open output file */ |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 76 | dst_fd = bb_xopen(uncompressed_file, O_WRONLY | O_CREAT); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 77 | |
| 78 | /* Set permissions on the file */ |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 79 | stat(compressed_file, &stat_buf); |
| 80 | chmod(uncompressed_file, stat_buf.st_mode); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 81 | |
| 82 | /* If unzip succeeds remove the old file */ |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 83 | delete_path = compressed_file; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | /* do the decompression, and cleanup */ |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 87 | if ((bb_xread_char(src_fd) != 0x1f) || (bb_xread_char(src_fd) != 0x9d)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 88 | bb_error_msg_and_die("Invalid magic"); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 91 | status = uncompress(src_fd, dst_fd); |
| 92 | |
| 93 | if ((status != EXIT_SUCCESS) && (uncompressed_file)) { |
| 94 | /* Unzip failed, remove the uncomressed file instead of compressed file */ |
| 95 | delete_path = uncompressed_file; |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Eric Andersen | 70060d2 | 2004-03-27 10:02:48 +0000 | [diff] [blame] | 98 | if (dst_fd != STDOUT_FILENO) { |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 99 | close(dst_fd); |
| 100 | } |
Eric Andersen | 70060d2 | 2004-03-27 10:02:48 +0000 | [diff] [blame] | 101 | if (src_fd != STDIN_FILENO) { |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 102 | close(src_fd); |
| 103 | } |
| 104 | |
| 105 | /* delete_path will be NULL if in test mode or from stdin */ |
| 106 | if (delete_path && (unlink(delete_path) == -1)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 107 | bb_error_msg_and_die("Couldn't remove %s", delete_path); |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Glenn L McGrath | a0b3705 | 2003-06-22 06:59:34 +0000 | [diff] [blame] | 110 | free(uncompressed_file); |
| 111 | } |
Glenn L McGrath | bf1cc8b | 2002-11-01 23:38:54 +0000 | [diff] [blame] | 112 | |
| 113 | return status; |
| 114 | } |