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
|
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-06-26 01:19:34 +00:00
|
|
|
*/
|
2011-03-27 20:40:30 +00:00
|
|
|
|
|
|
|
//usage:#define rpm2cpio_trivial_usage
|
|
|
|
//usage: "package.rpm"
|
|
|
|
//usage:#define rpm2cpio_full_usage "\n\n"
|
|
|
|
//usage: "Output a cpio archive of the rpm file"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2011-09-22 10:45:14 +00:00
|
|
|
#include "bb_archive.h"
|
2010-05-06 14:19:19 +00:00
|
|
|
#include "rpm.h"
|
2001-06-26 01:19:34 +00:00
|
|
|
|
2009-08-28 19:15:24 +00:00
|
|
|
enum { rpm_fd = STDIN_FILENO };
|
|
|
|
|
|
|
|
static unsigned skip_header(void)
|
2001-06-26 01:19:34 +00:00
|
|
|
{
|
|
|
|
struct rpm_header header;
|
2009-08-28 19:09:51 +00:00
|
|
|
unsigned len;
|
2001-06-26 01:19:34 +00:00
|
|
|
|
2009-08-28 04:20:33 +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");
|
|
|
|
// }
|
2009-08-28 19:15:24 +00:00
|
|
|
if (header.magic_and_ver != htonl(RPM_HEADER_MAGICnVER)) {
|
2009-08-28 04:20:33 +00:00
|
|
|
bb_error_msg_and_die("invalid RPM header magic or unsupported version");
|
2009-08-28 19:15:24 +00:00
|
|
|
// ": %x != %x", header.magic_and_ver, htonl(RPM_HEADER_MAGICnVER));
|
2002-09-25 02:47:48 +00:00
|
|
|
}
|
2009-08-28 19:09:51 +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 */
|
2007-10-11 10:05:36 +00:00
|
|
|
int rpm2cpio_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-08-28 04:20:33 +00:00
|
|
|
int rpm2cpio_main(int argc UNUSED_PARAM, char **argv)
|
2001-06-26 01:19:34 +00:00
|
|
|
{
|
|
|
|
struct rpm_lead lead;
|
2009-08-28 19:09:51 +00:00
|
|
|
unsigned pos;
|
2001-06-26 01:19:34 +00:00
|
|
|
|
2009-08-28 19:15:24 +00:00
|
|
|
if (argv[1]) {
|
|
|
|
xmove_fd(xopen(argv[1], O_RDONLY), rpm_fd);
|
2002-09-25 02:47:48 +00:00
|
|
|
}
|
2009-08-28 04:20:33 +00:00
|
|
|
xread(rpm_fd, &lead, sizeof(lead));
|
2002-09-25 02:47:48 +00:00
|
|
|
|
2009-08-28 04:20:33 +00:00
|
|
|
/* Just check the magic, the rest is irrelevant */
|
2010-05-06 14:19:19 +00:00
|
|
|
if (lead.magic != htonl(RPM_LEAD_MAGIC)) {
|
2009-08-28 04:20:33 +00:00
|
|
|
bb_error_msg_and_die("invalid RPM magic");
|
2001-06-26 01:19:34 +00:00
|
|
|
}
|
|
|
|
|
2009-08-28 04:20:33 +00:00
|
|
|
/* Skip the signature header, align to 8 bytes */
|
2009-08-28 19:15:24 +00:00
|
|
|
pos = skip_header();
|
2010-05-06 14:19:19 +00:00
|
|
|
seek_by_jump(rpm_fd, (-(int)pos) & 7);
|
2002-09-25 02:47:48 +00:00
|
|
|
|
2001-06-26 01:19:34 +00:00
|
|
|
/* Skip the main header */
|
2009-08-28 19:15:24 +00:00
|
|
|
skip_header();
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2012-03-06 15:33:42 +00:00
|
|
|
//if (SEAMLESS_COMPRESSION)
|
|
|
|
// /* We need to know whether child (gzip/bzip/etc) exits abnormally */
|
|
|
|
// signal(SIGCHLD, check_errors_in_children);
|
2012-03-06 15:27:48 +00:00
|
|
|
|
2010-05-06 14:19:19 +00:00
|
|
|
/* This works, but doesn't report uncompress errors (they happen in child) */
|
2012-03-06 15:27:48 +00:00
|
|
|
setup_unzip_on_fd(rpm_fd, /*fail_if_not_detected:*/ 1);
|
2010-05-06 14:19:19 +00:00
|
|
|
if (bb_copyfd_eof(rpm_fd, STDOUT_FILENO) < 0)
|
|
|
|
bb_error_msg_and_die("error unpacking");
|
2001-06-26 01:19:34 +00:00
|
|
|
|
2009-08-28 04:20:33 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
close(rpm_fd);
|
|
|
|
}
|
2001-07-13 06:49:18 +00:00
|
|
|
|
2012-03-06 15:33:42 +00:00
|
|
|
if (SEAMLESS_COMPRESSION) {
|
|
|
|
check_errors_in_children(0);
|
|
|
|
return bb_got_signal;
|
|
|
|
}
|
2012-03-06 15:27:48 +00:00
|
|
|
return EXIT_SUCCESS;
|
2001-06-26 01:19:34 +00:00
|
|
|
}
|