2001-06-26 06:49:34 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini rpm2cpio implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 by Laurence Anderson
|
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-06-26 06:49:34 +05:30
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2002-09-25 08:17:48 +05:30
|
|
|
#include "unarchive.h"
|
2010-05-06 19:49:19 +05:30
|
|
|
#include "rpm.h"
|
2001-06-26 06:49:34 +05:30
|
|
|
|
2009-08-29 00:45:24 +05:30
|
|
|
enum { rpm_fd = STDIN_FILENO };
|
|
|
|
|
|
|
|
static unsigned skip_header(void)
|
2001-06-26 06:49:34 +05:30
|
|
|
{
|
|
|
|
struct rpm_header header;
|
2009-08-29 00:39:51 +05:30
|
|
|
unsigned len;
|
2001-06-26 06:49:34 +05:30
|
|
|
|
2009-08-28 09:50:33 +05:30
|
|
|
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");
|
|
|
|
// }
|
2009-08-29 00:45:24 +05:30
|
|
|
if (header.magic_and_ver != htonl(RPM_HEADER_MAGICnVER)) {
|
2009-08-28 09:50:33 +05:30
|
|
|
bb_error_msg_and_die("invalid RPM header magic or unsupported version");
|
2009-08-29 00:45:24 +05:30
|
|
|
// ": %x != %x", header.magic_and_ver, htonl(RPM_HEADER_MAGICnVER));
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
2009-08-29 00:39:51 +05:30
|
|
|
|
|
|
|
/* 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 06:49:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* No getopt required */
|
2007-10-11 15:35:36 +05:30
|
|
|
int rpm2cpio_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-08-28 09:50:33 +05:30
|
|
|
int rpm2cpio_main(int argc UNUSED_PARAM, char **argv)
|
2001-06-26 06:49:34 +05:30
|
|
|
{
|
|
|
|
struct rpm_lead lead;
|
2009-08-29 00:39:51 +05:30
|
|
|
unsigned pos;
|
2001-06-26 06:49:34 +05:30
|
|
|
|
2009-08-29 00:45:24 +05:30
|
|
|
if (argv[1]) {
|
|
|
|
xmove_fd(xopen(argv[1], O_RDONLY), rpm_fd);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
2009-08-28 09:50:33 +05:30
|
|
|
xread(rpm_fd, &lead, sizeof(lead));
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2009-08-28 09:50:33 +05:30
|
|
|
/* Just check the magic, the rest is irrelevant */
|
2010-05-06 19:49:19 +05:30
|
|
|
if (lead.magic != htonl(RPM_LEAD_MAGIC)) {
|
2009-08-28 09:50:33 +05:30
|
|
|
bb_error_msg_and_die("invalid RPM magic");
|
2001-06-26 06:49:34 +05:30
|
|
|
}
|
|
|
|
|
2009-08-28 09:50:33 +05:30
|
|
|
/* Skip the signature header, align to 8 bytes */
|
2009-08-29 00:45:24 +05:30
|
|
|
pos = skip_header();
|
2010-05-06 19:49:19 +05:30
|
|
|
seek_by_jump(rpm_fd, (-(int)pos) & 7);
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2001-06-26 06:49:34 +05:30
|
|
|
/* Skip the main header */
|
2009-08-29 00:45:24 +05:30
|
|
|
skip_header();
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2010-05-06 19:49:19 +05:30
|
|
|
#if 0
|
|
|
|
/* This works, but doesn't report uncompress errors (they happen in child) */
|
|
|
|
setup_unzip_on_fd(rpm_fd /*fail_if_not_detected: 1*/);
|
|
|
|
if (bb_copyfd_eof(rpm_fd, STDOUT_FILENO) < 0)
|
|
|
|
bb_error_msg_and_die("error unpacking");
|
|
|
|
#else
|
|
|
|
/* BLOAT */
|
|
|
|
{
|
|
|
|
unsigned char magic[2];
|
|
|
|
IF_DESKTOP(long long) int FAST_FUNC (*unpack)(int src_fd, int dst_fd);
|
|
|
|
|
|
|
|
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;
|
2009-08-28 09:50:33 +05:30
|
|
|
}
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2010-05-06 19:49:19 +05:30
|
|
|
if (unpack(rpm_fd, STDOUT_FILENO) < 0)
|
|
|
|
bb_error_msg_and_die("error unpacking");
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
2010-05-06 19:49:19 +05:30
|
|
|
#endif
|
2001-06-26 06:49:34 +05:30
|
|
|
|
2009-08-28 09:50:33 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
close(rpm_fd);
|
|
|
|
}
|
2001-07-13 12:19:18 +05:30
|
|
|
|
2001-06-26 06:49:34 +05:30
|
|
|
return 0;
|
|
|
|
}
|