Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Gzip implementation for busybox |
| 4 | * |
Glenn L McGrath | c2bf5ca | 2000-09-29 06:46:59 +0000 | [diff] [blame] | 5 | * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly. |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 6 | * |
| 7 | * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de> |
| 8 | * based on gzip sources |
| 9 | * |
| 10 | * Adjusted further by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
| 11 | * to support files as well as stdin/stdout, and to generally behave itself wrt |
| 12 | * command line handling. |
| 13 | * |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 14 | * General cleanup to better adhere to the style guide and make use of standard |
| 15 | * busybox functions by Glenn McGrath <bug1@optushome.com.au> |
| 16 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 17 | * This program is free software; you can redistribute it and/or modify |
| 18 | * it under the terms of the GNU General Public License as published by |
| 19 | * the Free Software Foundation; either version 2 of the License, or |
| 20 | * (at your option) any later version. |
| 21 | * |
| 22 | * This program is distributed in the hope that it will be useful, |
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 25 | * General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License |
| 28 | * along with this program; if not, write to the Free Software |
| 29 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 30 | * |
Glenn L McGrath | c2bf5ca | 2000-09-29 06:46:59 +0000 | [diff] [blame] | 31 | * |
| 32 | * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 33 | * Copyright (C) 1992-1993 Jean-loup Gailly |
| 34 | * The unzip code was written and put in the public domain by Mark Adler. |
| 35 | * Portions of the lzw code are derived from the public domain 'compress' |
| 36 | * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies, |
| 37 | * Ken Turkowski, Dave Mack and Peter Jannesen. |
| 38 | * |
| 39 | * See the license_msg below and the file COPYING for the software license. |
| 40 | * See the file algorithm.doc for the compression algorithms and file formats. |
| 41 | */ |
| 42 | |
| 43 | #if 0 |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 44 | static char *license_msg[] = { |
| 45 | " Copyright (C) 1992-1993 Jean-loup Gailly", |
| 46 | " This program is free software; you can redistribute it and/or modify", |
| 47 | " it under the terms of the GNU General Public License as published by", |
| 48 | " the Free Software Foundation; either version 2, or (at your option)", |
| 49 | " any later version.", |
| 50 | "", |
| 51 | " This program is distributed in the hope that it will be useful,", |
| 52 | " but WITHOUT ANY WARRANTY; without even the implied warranty of", |
| 53 | " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", |
| 54 | " GNU General Public License for more details.", |
| 55 | "", |
| 56 | " You should have received a copy of the GNU General Public License", |
| 57 | " along with this program; if not, write to the Free Software", |
| 58 | " Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.", |
| 59 | 0 |
| 60 | }; |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 61 | #endif |
| 62 | |
Glenn L McGrath | 7fd9294 | 2001-04-11 03:11:33 +0000 | [diff] [blame] | 63 | //#include <sys/types.h> |
| 64 | //#include <sys/wait.h> |
| 65 | //#include <signal.h> |
Glenn L McGrath | c2bf5ca | 2000-09-29 06:46:59 +0000 | [diff] [blame] | 66 | #include <stdlib.h> |
Glenn L McGrath | 7fd9294 | 2001-04-11 03:11:33 +0000 | [diff] [blame] | 67 | #include <string.h> |
| 68 | #include <unistd.h> |
| 69 | #include <getopt.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 70 | #include "busybox.h" |
Glenn L McGrath | c2bf5ca | 2000-09-29 06:46:59 +0000 | [diff] [blame] | 71 | #define BB_DECLARE_EXTERN |
| 72 | #define bb_need_memory_exhausted |
| 73 | #define bb_need_name_too_long |
| 74 | #include "messages.c" |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 75 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 76 | extern int gunzip_main(int argc, char **argv) |
| 77 | { |
Glenn L McGrath | 7fd9294 | 2001-04-11 03:11:33 +0000 | [diff] [blame] | 78 | FILE *in_file, *out_file; |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 79 | struct stat stat_buf; |
| 80 | |
| 81 | char *if_name = NULL; |
| 82 | char *of_name = NULL; |
| 83 | char *delete_file_name = NULL; |
| 84 | |
| 85 | const int gunzip_to_stdout = 1; |
| 86 | const int gunzip_from_stdin = 2; |
| 87 | const int gunzip_force = 4; |
| 88 | const int gunzip_test = 8; |
| 89 | |
| 90 | int flags = 0; |
| 91 | int opt = 0; |
| 92 | int delete_old_file = FALSE; |
| 93 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 94 | /* if called as zcat */ |
| 95 | if (strcmp(applet_name, "zcat") == 0) { |
| 96 | if (argc != 2) { |
| 97 | show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 98 | } |
Glenn L McGrath | 5f2ef46 | 2001-03-29 01:07:54 +0000 | [diff] [blame] | 99 | optind = 1; |
Glenn L McGrath | ed7a776 | 2001-03-29 00:57:20 +0000 | [diff] [blame] | 100 | flags |= (gunzip_force | gunzip_to_stdout); |
Glenn L McGrath | 5f2ef46 | 2001-03-29 01:07:54 +0000 | [diff] [blame] | 101 | } else { |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 102 | /* workout flags as regular gunzip */ |
| 103 | /* set default flags */ |
| 104 | if (argc == 1) { |
| 105 | flags |= (gunzip_from_stdin | gunzip_to_stdout); |
Glenn L McGrath | ed7a776 | 2001-03-29 00:57:20 +0000 | [diff] [blame] | 106 | } else { |
| 107 | /* Parse any options */ |
| 108 | while ((opt = getopt(argc, argv, "ctfh")) != -1) { |
| 109 | switch (opt) { |
| 110 | case 'c': |
| 111 | flags |= gunzip_to_stdout; |
| 112 | break; |
| 113 | case 'f': |
| 114 | flags |= gunzip_force; |
| 115 | break; |
| 116 | case 't': |
| 117 | flags |= gunzip_test; |
| 118 | break; |
| 119 | case 'h': |
| 120 | default: |
| 121 | show_usage(); /* exit's inside usage */ |
| 122 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | } |
Eric Andersen | e99674a | 2000-09-01 00:41:10 +0000 | [diff] [blame] | 126 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 127 | /* Set input filename and number */ |
| 128 | if (flags & gunzip_from_stdin) { |
| 129 | in_file = stdin; |
| 130 | if ((flags & gunzip_force) == 0) { |
| 131 | error_msg_and_die("data not written to terminal. Use -f to force it."); |
| 132 | } |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 133 | } else { |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 134 | if_name = strdup(argv[optind]); |
| 135 | /* Open input file */ |
| 136 | in_file = xfopen(if_name, "r"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 137 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 138 | /* Get the time stamp on the input file. */ |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 139 | if (stat(if_name, &stat_buf) < 0) { |
| 140 | error_msg_and_die("Couldnt stat file %s",if_name); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 141 | } |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 144 | /* Set output filename and number */ |
| 145 | if (flags & gunzip_to_stdout) { |
| 146 | out_file = stdout; |
| 147 | /* whats the best way to do this with streams ? */ |
| 148 | if (isatty(fileno(out_file)) && ((flags & gunzip_force) == 0)) { |
| 149 | error_msg_and_die("data not written to terminal. Use -f to force it."); |
| 150 | } |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 151 | } else if (flags & gunzip_test) { |
| 152 | out_file = xfopen("/dev/null", "w"); /* why does test use filenum 2 ? */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 153 | } else { |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 154 | char *extension; |
| 155 | int length = strlen(if_name); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 156 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 157 | delete_old_file = TRUE; |
| 158 | extension = strrchr(if_name, '.'); |
| 159 | if (strcmp(extension, ".gz") == 0) { |
| 160 | length -= 3; |
| 161 | } else if (strcmp(extension, ".tgz") == 0) { |
| 162 | length -= 4; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 163 | } else { |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 164 | error_msg_and_die("Invalid extension"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 165 | } |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 166 | of_name = (char *) xcalloc(sizeof(char), length + 1); |
| 167 | strncpy(of_name, if_name, length); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 168 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 169 | /* Open output file */ |
| 170 | out_file = xfopen(of_name, "w"); |
| 171 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 172 | /* Set permissions on the file */ |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 173 | chmod(of_name, stat_buf.st_mode); |
| 174 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 175 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 176 | /* do the decompression, and cleanup */ |
| 177 | if (unzip(in_file, out_file) == 0) { |
| 178 | /* Success, remove .gz file */ |
| 179 | delete_file_name = if_name; |
| 180 | } else { |
| 181 | /* remove failed attempt */ |
| 182 | delete_file_name = of_name; |
| 183 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 184 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 185 | fclose(out_file); |
| 186 | fclose(in_file); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 187 | |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 188 | if (delete_old_file == TRUE) { |
| 189 | if (unlink(delete_file_name) < 0) { |
| 190 | error_msg_and_die("Couldnt remove %s", delete_file_name); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 191 | } |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 192 | } |
Glenn L McGrath | 58e42d5 | 2001-03-28 05:38:24 +0000 | [diff] [blame] | 193 | |
| 194 | free(of_name); |
| 195 | |
| 196 | return(EXIT_SUCCESS); |
Eric Andersen | b052b47 | 1999-11-18 00:21:59 +0000 | [diff] [blame] | 197 | } |