Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini rpm2cpio implementation for busybox |
| 4 | * |
| 5 | * Copyright (C) 2001 by Laurence Anderson |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
| 22 | #include "busybox.h" |
| 23 | #include <netinet/in.h> /* For ntohl & htonl function */ |
| 24 | #include <string.h> |
| 25 | |
| 26 | #define RPM_MAGIC "\355\253\356\333" |
| 27 | #define RPM_HEADER_MAGIC "\216\255\350" |
| 28 | |
Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 29 | struct rpm_lead { |
| 30 | unsigned char magic[4]; |
Eric Andersen | dcbca62 | 2001-08-29 19:02:26 +0000 | [diff] [blame] | 31 | u_int8_t major, minor; |
| 32 | u_int16_t type; |
| 33 | u_int16_t archnum; |
Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 34 | char name[66]; |
Eric Andersen | dcbca62 | 2001-08-29 19:02:26 +0000 | [diff] [blame] | 35 | u_int16_t osnum; |
| 36 | u_int16_t signature_type; |
Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 37 | char reserved[16]; |
| 38 | }; |
| 39 | |
| 40 | struct rpm_header { |
| 41 | char magic[3]; /* 3 byte magic: 0x8e 0xad 0xe8 */ |
Eric Andersen | dcbca62 | 2001-08-29 19:02:26 +0000 | [diff] [blame] | 42 | u_int8_t version; /* 1 byte version number */ |
| 43 | u_int32_t reserved; /* 4 bytes reserved */ |
| 44 | u_int32_t entries; /* Number of entries in header (4 bytes) */ |
| 45 | u_int32_t size; /* Size of store (4 bytes) */ |
Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | void skip_header(FILE *rpmfile) |
| 49 | { |
| 50 | struct rpm_header header; |
| 51 | |
| 52 | fread(&header, sizeof(struct rpm_header), 1, rpmfile); |
| 53 | if (strncmp((char *) &header.magic, RPM_HEADER_MAGIC, 3) != 0) error_msg_and_die("Invalid RPM header magic"); /* Invalid magic */ |
| 54 | if (header.version != 1) error_msg_and_die("Unsupported RPM header version"); /* This program only supports v1 headers */ |
| 55 | header.entries = ntohl(header.entries); |
| 56 | header.size = ntohl(header.size); |
| 57 | fseek (rpmfile, 16 * header.entries, SEEK_CUR); /* Seek past index entries */ |
| 58 | fseek (rpmfile, header.size, SEEK_CUR); /* Seek past store */ |
| 59 | } |
| 60 | |
| 61 | /* No getopt required */ |
| 62 | extern int rpm2cpio_main(int argc, char **argv) |
| 63 | { |
| 64 | struct rpm_lead lead; |
| 65 | int gunzip_pid; |
| 66 | FILE *rpmfile, *cpiofile; |
| 67 | |
| 68 | if (argc == 1) { |
| 69 | rpmfile = stdin; |
| 70 | } else { |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 71 | rpmfile = xfopen(argv[1], "r"); |
Glenn L McGrath | 26a0d9a | 2001-07-13 06:49:18 +0000 | [diff] [blame] | 72 | /* set the buffer size */ |
| 73 | setvbuf(rpmfile, NULL, _IOFBF, 0x8000); |
Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | fread (&lead, sizeof(struct rpm_lead), 1, rpmfile); |
| 77 | if (strncmp((char *) &lead.magic, RPM_MAGIC, 4) != 0) error_msg_and_die("Invalid RPM magic"); /* Just check the magic, the rest is irrelevant */ |
| 78 | /* Skip the signature header */ |
| 79 | skip_header(rpmfile); |
| 80 | fseek(rpmfile, (8 - (ftell(rpmfile) % 8)) % 8, SEEK_CUR); /* Pad to 8 byte boundary */ |
| 81 | /* Skip the main header */ |
| 82 | skip_header(rpmfile); |
| 83 | |
| 84 | cpiofile = gz_open(rpmfile, &gunzip_pid); |
Glenn L McGrath | 26a0d9a | 2001-07-13 06:49:18 +0000 | [diff] [blame] | 85 | |
Glenn L McGrath | f8736d2 | 2001-06-26 01:19:34 +0000 | [diff] [blame] | 86 | copyfd(fileno(cpiofile), fileno(stdout)); |
| 87 | gz_close(gunzip_pid); |
| 88 | fclose(rpmfile); |
| 89 | return 0; |
| 90 | } |