Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 1 | /* |
Eric Andersen | 4bfb6b7 | 2000-11-29 21:39:02 +0000 | [diff] [blame] | 2 | * rpmunpack for busybox |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 3 | * |
| 4 | * rpmunpack.c - Utility program to unpack an RPM archive |
| 5 | * |
| 6 | * Gero Kuhlmann <gero@gkminix.han.de> 1998 |
| 7 | * |
| 8 | * This program is public domain software; you can do whatever you like |
| 9 | * with this source, including modifying and redistributing it. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 14 | */ |
| 15 | |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 16 | #include "busybox.h" |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 17 | #include <fcntl.h> |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 18 | |
| 19 | /* |
| 20 | * Some general definitions |
| 21 | */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 22 | |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 23 | #define RPM_MAGIC "\355\253\356\333" |
| 24 | #define GZ_MAGIC_1 '\037' |
| 25 | #define GZ_MAGIC_2 '\213' |
| 26 | |
| 27 | /* |
| 28 | * Global variables |
| 29 | */ |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 30 | static char *progname; |
| 31 | static int infile, outfile; |
| 32 | |
| 33 | /* |
| 34 | * Read a specified number of bytes from input file |
| 35 | */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 36 | static void myread(int num, char *buffer) |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 37 | { |
| 38 | int err; |
| 39 | |
| 40 | if ((err = read(infile, buffer, num)) != num) { |
| 41 | if (err < 0) |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 42 | perror_msg_and_die(progname); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 43 | else |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 44 | error_msg_and_die("Unexpected end of input file!\n"); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
| 48 | /* |
| 49 | * Main program |
| 50 | */ |
Eric Andersen | 4bfb6b7 | 2000-11-29 21:39:02 +0000 | [diff] [blame] | 51 | int rpmunpack_main(int argc, char **argv) |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 52 | { |
| 53 | int len, status = 0; |
Eric Andersen | d35c215 | 2001-01-25 23:49:09 +0000 | [diff] [blame] | 54 | RESERVE_BB_BUFFER(buffer, BUFSIZ); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 55 | |
| 56 | /* Get our own program name */ |
| 57 | if ((progname = strrchr(argv[0], '/')) == NULL) |
| 58 | progname = argv[0]; |
| 59 | else |
| 60 | progname++; |
| 61 | |
| 62 | /* Check for command line parameters */ |
| 63 | if (argc>=2 && *argv[1]=='-') { |
Eric Andersen | 4bfb6b7 | 2000-11-29 21:39:02 +0000 | [diff] [blame] | 64 | usage(rpmunpack_usage); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /* Open input file */ |
| 68 | if (argc == 1) |
| 69 | infile = STDIN_FILENO; |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 70 | else if ((infile = open(argv[1], O_RDONLY)) < 0) |
| 71 | perror_msg_and_die("%s", argv[1]); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 72 | |
| 73 | /* Read magic ID and output filename */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 74 | myread(4, buffer); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 75 | if (strncmp(buffer, RPM_MAGIC, 4)) { |
Eric Andersen | 4bfb6b7 | 2000-11-29 21:39:02 +0000 | [diff] [blame] | 76 | fprintf(stderr, "Input file is not in RPM format!\n"); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 77 | exit(1); |
| 78 | } |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 79 | myread(6, buffer); /* Skip flags */ |
| 80 | myread(64, buffer); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 81 | buffer[64] = '\0'; |
| 82 | |
| 83 | /* Open output file */ |
| 84 | strcat(buffer, ".cpio.gz"); |
| 85 | if (infile == STDIN_FILENO) |
| 86 | outfile = STDOUT_FILENO; |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 87 | else if ((outfile = open(buffer, O_WRONLY | O_CREAT | O_TRUNC, 0644)) < 0) |
| 88 | perror_msg_and_die("%s", buffer); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * Now search for the GZIP signature. This is rather awkward, but I don't |
| 92 | * know any other way how to find out the exact starting position of the |
| 93 | * archive within the input file. There are a couple of data structures |
| 94 | * and texts (obviously descriptions, installation shell scripts etc.) |
| 95 | * coming before the archive, but even they start at different offsets |
| 96 | * with different RPM files. However, it looks like the GZIP signature |
| 97 | * never appears before offset 0x200, so we skip these first couple of |
| 98 | * bytes to make the signature scan a little more reliable. |
| 99 | */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 100 | myread(0x200 - 74, buffer); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 101 | while (status < 2) { |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 102 | myread(1, buffer); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 103 | if (status == 0 && buffer[0] == GZ_MAGIC_1) |
| 104 | status++; |
| 105 | else if (status == 1 && buffer[0] == GZ_MAGIC_2) |
| 106 | status++; |
| 107 | else |
| 108 | status = 0; |
| 109 | } |
| 110 | buffer[0] = GZ_MAGIC_1; |
| 111 | buffer[1] = GZ_MAGIC_2; |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 112 | if (write(outfile, buffer, 2) < 0) |
| 113 | perror_msg_and_die("write"); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 114 | |
| 115 | /* Now simply copy the GZIP archive into the output file */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 116 | while ((len = read(infile, buffer, BUFSIZ)) > 0) { |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 117 | if (write(outfile, buffer, len) < 0) |
| 118 | perror_msg_and_die("write"); |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 119 | } |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 120 | if (len < 0) |
| 121 | perror_msg_and_die("read"); |
| 122 | return EXIT_SUCCESS; |
Eric Andersen | cff3fe3 | 2000-09-20 19:22:26 +0000 | [diff] [blame] | 123 | } |