hush/archival/rpm2cpio.c

111 lines
2.7 KiB
C
Raw Normal View History

2001-06-26 01:19:34 +00:00
/* vi: set sw=4 ts=4: */
/*
* Mini rpm2cpio implementation for busybox
*
* Copyright (C) 2001 by Laurence Anderson
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
2001-06-26 01:19:34 +00:00
*/
#include "libbb.h"
2002-09-25 02:47:48 +00:00
#include "unarchive.h"
2001-06-26 01:19:34 +00:00
#define RPM_MAGIC 0xedabeedb
#define RPM_MAGIC_STR "\355\253\356\333"
2001-06-26 01:19:34 +00:00
struct rpm_lead {
uint32_t magic;
2008-03-28 01:00:09 +00:00
uint8_t major, minor;
uint16_t type;
uint16_t archnum;
char name[66];
uint16_t osnum;
uint16_t signature_type;
char reserved[16];
2001-06-26 01:19:34 +00:00
};
#define RPM_HEADER_MAGICnVER 0x8eade801
#define RPM_HEADER_MAGIC_STR "\216\255\350"
2001-06-26 01:19:34 +00:00
struct rpm_header {
uint32_t magic_and_ver; /* 3 byte magic: 0x8e 0xad 0xe8; 1 byte version */
2004-01-30 22:54:20 +00:00
uint32_t reserved; /* 4 bytes reserved */
uint32_t entries; /* Number of entries in header (4 bytes) */
uint32_t size; /* Size of store (4 bytes) */
2001-06-26 01:19:34 +00:00
};
enum { rpm_fd = STDIN_FILENO };
static unsigned skip_header(void)
2001-06-26 01:19:34 +00:00
{
struct rpm_header header;
unsigned len;
2001-06-26 01:19:34 +00:00
xread(rpm_fd, &header, sizeof(header));
// if (strncmp((char *) &header.magic, RPM_HEADER_MAGIC_STR, 3) != 0) {
// bb_error_msg_and_die("invalid RPM header magic");
// }
// if (header.version != 1) {
// bb_error_msg_and_die("unsupported RPM header version");
// }
if (header.magic_and_ver != htonl(RPM_HEADER_MAGICnVER)) {
bb_error_msg_and_die("invalid RPM header magic or unsupported version");
// ": %x != %x", header.magic_and_ver, htonl(RPM_HEADER_MAGICnVER));
2002-09-25 02:47:48 +00:00
}
/* Seek past index entries, and past store */
len = 16 * ntohl(header.entries) + ntohl(header.size);
seek_by_jump(rpm_fd, len);
return sizeof(header) + len;
2001-06-26 01:19:34 +00:00
}
/* No getopt required */
int rpm2cpio_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int rpm2cpio_main(int argc UNUSED_PARAM, char **argv)
2001-06-26 01:19:34 +00:00
{
struct rpm_lead lead;
unsigned pos;
unsigned char magic[2];
IF_DESKTOP(long long) int FAST_FUNC (*unpack)(int src_fd, int dst_fd);
2001-06-26 01:19:34 +00:00
if (argv[1]) {
xmove_fd(xopen(argv[1], O_RDONLY), rpm_fd);
2002-09-25 02:47:48 +00:00
}
xread(rpm_fd, &lead, sizeof(lead));
2002-09-25 02:47:48 +00:00
/* Just check the magic, the rest is irrelevant */
if (lead.magic != htonl(RPM_MAGIC)) {
bb_error_msg_and_die("invalid RPM magic");
2001-06-26 01:19:34 +00:00
}
/* Skip the signature header, align to 8 bytes */
pos = skip_header();
seek_by_jump(rpm_fd, (8 - pos) & 7);
2002-09-25 02:47:48 +00:00
2001-06-26 01:19:34 +00:00
/* Skip the main header */
skip_header();
xread(rpm_fd, &magic, 2);
unpack = unpack_gz_stream;
if (magic[0] != 0x1f || magic[1] != 0x8b) {
if (!ENABLE_FEATURE_SEAMLESS_BZ2
|| magic[0] != 'B' || magic[1] != 'Z'
) {
bb_error_msg_and_die("invalid gzip"
IF_FEATURE_SEAMLESS_BZ2("/bzip2")
" magic");
}
unpack = unpack_bz2_stream;
}
2002-09-25 02:47:48 +00:00
if (unpack(rpm_fd, STDOUT_FILENO) < 0) {
bb_error_msg_and_die("error unpacking");
2002-09-25 02:47:48 +00:00
}
2001-06-26 01:19:34 +00:00
if (ENABLE_FEATURE_CLEAN_UP) {
close(rpm_fd);
}
2001-06-26 01:19:34 +00:00
return 0;
}