2000-09-21 00:52:26 +05:30
|
|
|
/*
|
2000-11-30 03:09:02 +05:30
|
|
|
* rpmunpack for busybox
|
2000-09-21 00:52:26 +05:30
|
|
|
*
|
|
|
|
* rpmunpack.c - Utility program to unpack an RPM archive
|
|
|
|
*
|
|
|
|
* Gero Kuhlmann <gero@gkminix.han.de> 1998
|
|
|
|
*
|
|
|
|
* This program is public domain software; you can do whatever you like
|
|
|
|
* with this source, including modifying and redistributing it.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-09-21 00:52:26 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Some general definitions
|
|
|
|
*/
|
2001-01-24 04:00:04 +05:30
|
|
|
|
2000-09-21 00:52:26 +05:30
|
|
|
#define RPM_MAGIC "\355\253\356\333"
|
|
|
|
#define GZ_MAGIC_1 '\037'
|
|
|
|
#define GZ_MAGIC_2 '\213'
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
static char *progname;
|
|
|
|
static int infile, outfile;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a specified number of bytes from input file
|
|
|
|
*/
|
2001-01-24 04:00:04 +05:30
|
|
|
static void myread(int num, char *buffer)
|
2000-09-21 00:52:26 +05:30
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if ((err = read(infile, buffer, num)) != num) {
|
|
|
|
if (err < 0)
|
2000-12-22 07:18:07 +05:30
|
|
|
perror_msg_and_die(progname);
|
2000-09-21 00:52:26 +05:30
|
|
|
else
|
2001-02-01 00:30:21 +05:30
|
|
|
error_msg_and_die("Unexpected end of input file!");
|
2000-09-21 00:52:26 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main program
|
|
|
|
*/
|
2000-11-30 03:09:02 +05:30
|
|
|
int rpmunpack_main(int argc, char **argv)
|
2000-09-21 00:52:26 +05:30
|
|
|
{
|
|
|
|
int len, status = 0;
|
2001-01-26 05:19:09 +05:30
|
|
|
RESERVE_BB_BUFFER(buffer, BUFSIZ);
|
2000-09-21 00:52:26 +05:30
|
|
|
|
|
|
|
/* Get our own program name */
|
|
|
|
if ((progname = strrchr(argv[0], '/')) == NULL)
|
|
|
|
progname = argv[0];
|
|
|
|
else
|
|
|
|
progname++;
|
|
|
|
|
|
|
|
/* Check for command line parameters */
|
|
|
|
if (argc>=2 && *argv[1]=='-') {
|
2001-02-15 02:53:06 +05:30
|
|
|
show_usage();
|
2000-09-21 00:52:26 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Open input file */
|
|
|
|
if (argc == 1)
|
|
|
|
infile = STDIN_FILENO;
|
2000-12-22 07:18:07 +05:30
|
|
|
else if ((infile = open(argv[1], O_RDONLY)) < 0)
|
|
|
|
perror_msg_and_die("%s", argv[1]);
|
2000-09-21 00:52:26 +05:30
|
|
|
|
|
|
|
/* Read magic ID and output filename */
|
2001-01-24 04:00:04 +05:30
|
|
|
myread(4, buffer);
|
2000-09-21 00:52:26 +05:30
|
|
|
if (strncmp(buffer, RPM_MAGIC, 4)) {
|
2000-11-30 03:09:02 +05:30
|
|
|
fprintf(stderr, "Input file is not in RPM format!\n");
|
2000-09-21 00:52:26 +05:30
|
|
|
exit(1);
|
|
|
|
}
|
2001-01-24 04:00:04 +05:30
|
|
|
myread(6, buffer); /* Skip flags */
|
|
|
|
myread(64, buffer);
|
2000-09-21 00:52:26 +05:30
|
|
|
buffer[64] = '\0';
|
|
|
|
|
|
|
|
/* Open output file */
|
|
|
|
strcat(buffer, ".cpio.gz");
|
|
|
|
if (infile == STDIN_FILENO)
|
|
|
|
outfile = STDOUT_FILENO;
|
2000-12-22 07:18:07 +05:30
|
|
|
else if ((outfile = open(buffer, O_WRONLY | O_CREAT | O_TRUNC, 0644)) < 0)
|
|
|
|
perror_msg_and_die("%s", buffer);
|
2000-09-21 00:52:26 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Now search for the GZIP signature. This is rather awkward, but I don't
|
|
|
|
* know any other way how to find out the exact starting position of the
|
|
|
|
* archive within the input file. There are a couple of data structures
|
|
|
|
* and texts (obviously descriptions, installation shell scripts etc.)
|
|
|
|
* coming before the archive, but even they start at different offsets
|
|
|
|
* with different RPM files. However, it looks like the GZIP signature
|
|
|
|
* never appears before offset 0x200, so we skip these first couple of
|
|
|
|
* bytes to make the signature scan a little more reliable.
|
|
|
|
*/
|
2001-01-24 04:00:04 +05:30
|
|
|
myread(0x200 - 74, buffer);
|
2000-09-21 00:52:26 +05:30
|
|
|
while (status < 2) {
|
2001-01-24 04:00:04 +05:30
|
|
|
myread(1, buffer);
|
2000-09-21 00:52:26 +05:30
|
|
|
if (status == 0 && buffer[0] == GZ_MAGIC_1)
|
|
|
|
status++;
|
|
|
|
else if (status == 1 && buffer[0] == GZ_MAGIC_2)
|
|
|
|
status++;
|
|
|
|
else
|
|
|
|
status = 0;
|
|
|
|
}
|
|
|
|
buffer[0] = GZ_MAGIC_1;
|
|
|
|
buffer[1] = GZ_MAGIC_2;
|
2000-12-22 07:18:07 +05:30
|
|
|
if (write(outfile, buffer, 2) < 0)
|
|
|
|
perror_msg_and_die("write");
|
2000-09-21 00:52:26 +05:30
|
|
|
|
|
|
|
/* Now simply copy the GZIP archive into the output file */
|
2001-01-24 04:00:04 +05:30
|
|
|
while ((len = read(infile, buffer, BUFSIZ)) > 0) {
|
2000-12-22 07:18:07 +05:30
|
|
|
if (write(outfile, buffer, len) < 0)
|
|
|
|
perror_msg_and_die("write");
|
2000-09-21 00:52:26 +05:30
|
|
|
}
|
2000-12-22 07:18:07 +05:30
|
|
|
if (len < 0)
|
|
|
|
perror_msg_and_die("read");
|
|
|
|
return EXIT_SUCCESS;
|
2000-09-21 00:52:26 +05:30
|
|
|
}
|