busybox/archival/rpm2cpio.c

107 lines
3.0 KiB
C
Raw Normal View History

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
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2002-09-25 08:17:48 +05:30
#include <sys/types.h>
2001-06-26 06:49:34 +05:30
#include <netinet/in.h> /* For ntohl & htonl function */
2002-09-25 08:17:48 +05:30
#include <fcntl.h>
#include <unistd.h>
2001-06-26 06:49:34 +05:30
#include <string.h>
2002-09-25 08:17:48 +05:30
#include "busybox.h"
#include "unarchive.h"
2001-06-26 06:49:34 +05:30
#define RPM_MAGIC "\355\253\356\333"
#define RPM_HEADER_MAGIC "\216\255\350"
struct rpm_lead {
unsigned char magic[4];
u_int8_t major, minor;
u_int16_t type;
u_int16_t archnum;
2001-06-26 06:49:34 +05:30
char name[66];
u_int16_t osnum;
u_int16_t signature_type;
2001-06-26 06:49:34 +05:30
char reserved[16];
};
struct rpm_header {
char magic[3]; /* 3 byte magic: 0x8e 0xad 0xe8 */
u_int8_t version; /* 1 byte version number */
u_int32_t reserved; /* 4 bytes reserved */
u_int32_t entries; /* Number of entries in header (4 bytes) */
u_int32_t size; /* Size of store (4 bytes) */
2001-06-26 06:49:34 +05:30
};
2002-09-25 08:17:48 +05:30
void skip_header(int rpm_fd)
2001-06-26 06:49:34 +05:30
{
struct rpm_header header;
2003-03-19 14:43:01 +05:30
bb_xread_all(rpm_fd, &header, sizeof(struct rpm_header));
2002-09-25 08:17:48 +05:30
if (strncmp((char *) &header.magic, RPM_HEADER_MAGIC, 3) != 0) {
2003-03-19 14:43:01 +05:30
bb_error_msg_and_die("Invalid RPM header magic"); /* Invalid magic */
2002-09-25 08:17:48 +05:30
}
if (header.version != 1) {
2003-03-19 14:43:01 +05:30
bb_error_msg_and_die("Unsupported RPM header version"); /* This program only supports v1 headers */
2002-09-25 08:17:48 +05:30
}
2001-06-26 06:49:34 +05:30
header.entries = ntohl(header.entries);
header.size = ntohl(header.size);
2002-09-25 08:17:48 +05:30
lseek (rpm_fd, 16 * header.entries, SEEK_CUR); /* Seek past index entries */
lseek (rpm_fd, header.size, SEEK_CUR); /* Seek past store */
2001-06-26 06:49:34 +05:30
}
/* No getopt required */
extern int rpm2cpio_main(int argc, char **argv)
{
struct rpm_lead lead;
2002-09-25 08:17:48 +05:30
int rpm_fd;
unsigned char magic[2];
2001-06-26 06:49:34 +05:30
if (argc == 1) {
2002-09-25 08:17:48 +05:30
rpm_fd = fileno(stdin);
2001-06-26 06:49:34 +05:30
} else {
2003-03-19 14:43:01 +05:30
rpm_fd = bb_xopen(argv[1], O_RDONLY);
2002-09-25 08:17:48 +05:30
}
2003-03-19 14:43:01 +05:30
bb_xread_all(rpm_fd, &lead, sizeof(struct rpm_lead));
2002-09-25 08:17:48 +05:30
if (strncmp((char *) &lead.magic, RPM_MAGIC, 4) != 0) {
2003-03-19 14:43:01 +05:30
bb_error_msg_and_die("Invalid RPM magic"); /* Just check the magic, the rest is irrelevant */
2001-06-26 06:49:34 +05:30
}
/* Skip the signature header */
2002-09-25 08:17:48 +05:30
skip_header(rpm_fd);
lseek(rpm_fd, (8 - (lseek(rpm_fd, 0, SEEK_CUR) % 8)) % 8, SEEK_CUR);
2002-09-25 08:17:48 +05:30
2001-06-26 06:49:34 +05:30
/* Skip the main header */
2002-09-25 08:17:48 +05:30
skip_header(rpm_fd);
2003-03-19 14:43:01 +05:30
bb_xread_all(rpm_fd, &magic, 2);
2002-10-19 04:01:02 +05:30
if ((magic[0] != 0x1f) || (magic[1] != 0x8b)) {
2003-03-19 14:43:01 +05:30
bb_error_msg_and_die("Invalid gzip magic");
}
2002-09-25 08:17:48 +05:30
check_header_gzip(rpm_fd);
if (inflate_gunzip(rpm_fd, fileno(stdout)) != 0) {
2003-03-19 14:43:01 +05:30
bb_error_msg("Error inflating");
2002-09-25 08:17:48 +05:30
}
2001-06-26 06:49:34 +05:30
2002-09-25 08:17:48 +05:30
close(rpm_fd);
2001-06-26 06:49:34 +05:30
return 0;
}