uncompress.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. #include <stdlib.h>
  20. #include <string.h>
  21. #include <unistd.h>
  22. #include <getopt.h>
  23. #include <sys/types.h>
  24. #include <sys/stat.h>
  25. #include <fcntl.h>
  26. #include "libbb.h"
  27. #include "unarchive.h"
  28. #define GUNZIP_TO_STDOUT 1
  29. #define GUNZIP_FORCE 2
  30. extern int uncompress_main(int argc, char **argv)
  31. {
  32. int status = EXIT_SUCCESS;
  33. unsigned long flags;
  34. flags = bb_getopt_ulflags(argc, argv, "cf");
  35. while (optind < argc) {
  36. const char *compressed_file = argv[optind++];
  37. const char *delete_path = NULL;
  38. char *uncompressed_file = NULL;
  39. int src_fd;
  40. int dst_fd;
  41. if (strcmp(compressed_file, "-") == 0) {
  42. src_fd = STDIN_FILENO;
  43. flags |= GUNZIP_TO_STDOUT;
  44. } else {
  45. src_fd = bb_xopen(compressed_file, O_RDONLY);
  46. }
  47. /* Check that the input is sane. */
  48. if (isatty(src_fd) && ((flags & GUNZIP_FORCE) == 0)) {
  49. bb_error_msg_and_die
  50. ("compressed data not read from terminal. Use -f to force it.");
  51. }
  52. /* Set output filename and number */
  53. if (flags & GUNZIP_TO_STDOUT) {
  54. dst_fd = STDOUT_FILENO;
  55. } else {
  56. struct stat stat_buf;
  57. char *extension;
  58. uncompressed_file = bb_xstrdup(compressed_file);
  59. extension = strrchr(uncompressed_file, '.');
  60. if (!extension || (strcmp(extension, ".Z") != 0)) {
  61. bb_error_msg_and_die("Invalid extension");
  62. }
  63. *extension = '\0';
  64. /* Open output file */
  65. dst_fd = bb_xopen(uncompressed_file, O_WRONLY | O_CREAT);
  66. /* Set permissions on the file */
  67. stat(compressed_file, &stat_buf);
  68. chmod(uncompressed_file, stat_buf.st_mode);
  69. /* If unzip succeeds remove the old file */
  70. delete_path = compressed_file;
  71. }
  72. /* do the decompression, and cleanup */
  73. if ((bb_xread_char(src_fd) != 0x1f) || (bb_xread_char(src_fd) != 0x9d)) {
  74. bb_error_msg_and_die("Invalid magic");
  75. }
  76. status = uncompress(src_fd, dst_fd);
  77. if ((status != EXIT_SUCCESS) && (uncompressed_file)) {
  78. /* Unzip failed, remove the uncomressed file instead of compressed file */
  79. delete_path = uncompressed_file;
  80. }
  81. if (dst_fd != STDOUT_FILENO) {
  82. close(dst_fd);
  83. }
  84. if (src_fd != STDIN_FILENO) {
  85. close(src_fd);
  86. }
  87. /* delete_path will be NULL if in test mode or from stdin */
  88. if (delete_path && (unlink(delete_path) == -1)) {
  89. bb_error_msg_and_die("Couldn't remove %s", delete_path);
  90. }
  91. free(uncompressed_file);
  92. }
  93. return status;
  94. }