diff options
Diffstat (limited to 'busybox/archival/bunzip2.c')
-rw-r--r-- | busybox/archival/bunzip2.c | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/busybox/archival/bunzip2.c b/busybox/archival/bunzip2.c new file mode 100644 index 000000000..bedd38c22 --- /dev/null +++ b/busybox/archival/bunzip2.c | |||
@@ -0,0 +1,91 @@ | |||
1 | /* | ||
2 | * Modified for busybox by Glenn McGrath <bug1@iinet.net.au> | ||
3 | * Added support output to stdout by Thomas Lundquist <thomasez@zelow.no> | ||
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 <fcntl.h> | ||
21 | #include <getopt.h> | ||
22 | #include <stdio.h> | ||
23 | #include <stdlib.h> | ||
24 | #include <string.h> | ||
25 | #include <unistd.h> | ||
26 | |||
27 | #include "busybox.h" | ||
28 | #include "unarchive.h" | ||
29 | |||
30 | #define BUNZIP2_OPT_STDOUT 1 | ||
31 | #define BUNZIP2_OPT_FORCE 2 | ||
32 | |||
33 | int bunzip2_main(int argc, char **argv) | ||
34 | { | ||
35 | char *compressed_name; | ||
36 | /* Note: Ignore the warning about save_name being used uninitialized. | ||
37 | * That is not the case, but gcc has trouble working that out... */ | ||
38 | char *save_name; | ||
39 | unsigned long opt; | ||
40 | int status; | ||
41 | int src_fd; | ||
42 | int dst_fd; | ||
43 | |||
44 | opt = bb_getopt_ulflags(argc, argv, "cf"); | ||
45 | |||
46 | /* if called as bzcat force the stdout flag */ | ||
47 | if (bb_applet_name[2] == 'c') { | ||
48 | opt |= BUNZIP2_OPT_STDOUT; | ||
49 | } | ||
50 | |||
51 | /* Set input filename and number */ | ||
52 | compressed_name = argv[optind]; | ||
53 | if ((compressed_name) && (compressed_name[0] != '-') && (compressed_name[1] != '\0')) { | ||
54 | /* Open input file */ | ||
55 | src_fd = bb_xopen(compressed_name, O_RDONLY); | ||
56 | } else { | ||
57 | src_fd = STDIN_FILENO; | ||
58 | opt |= BUNZIP2_OPT_STDOUT; | ||
59 | } | ||
60 | |||
61 | /* Check that the input is sane. */ | ||
62 | if (isatty(src_fd) && (opt & BUNZIP2_OPT_FORCE) == 0) { | ||
63 | bb_error_msg_and_die("compressed data not read from terminal. Use -f to force it."); | ||
64 | } | ||
65 | |||
66 | if (opt & BUNZIP2_OPT_STDOUT) { | ||
67 | dst_fd = STDOUT_FILENO; | ||
68 | } else { | ||
69 | int len = strlen(compressed_name) - 4; | ||
70 | if (strcmp(compressed_name + len, ".bz2") != 0) { | ||
71 | bb_error_msg_and_die("Invalid extension"); | ||
72 | } | ||
73 | save_name = bb_xstrndup(compressed_name, len); | ||
74 | dst_fd = bb_xopen(save_name, O_WRONLY | O_CREAT); | ||
75 | } | ||
76 | |||
77 | status = uncompressStream(src_fd, dst_fd); | ||
78 | if(!(opt & BUNZIP2_OPT_STDOUT)) { | ||
79 | char *delete_name; | ||
80 | if (status) { | ||
81 | delete_name = save_name; | ||
82 | } else { | ||
83 | delete_name = compressed_name; | ||
84 | } | ||
85 | if (unlink(delete_name) < 0) { | ||
86 | bb_error_msg_and_die("Couldn't remove %s", delete_name); | ||
87 | } | ||
88 | } | ||
89 | |||
90 | return status; | ||
91 | } | ||