2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-29 13:12:02 +05:30
|
|
|
/* Copyright 2001 Glenn McGrath.
|
2001-10-25 19:48:08 +05:30
|
|
|
*
|
2006-05-29 13:12:02 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-10-25 19:48:08 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
2006-08-03 21:11:12 +05:30
|
|
|
#include "unarchive.h"
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2009-09-20 04:58:27 +05:30
|
|
|
static unsigned read_num(const char *str, int base)
|
|
|
|
{
|
|
|
|
/* This code works because
|
|
|
|
* on misformatted numbers bb_strtou returns all-ones */
|
|
|
|
int err = bb_strtou(str, NULL, base);
|
|
|
|
if (err == -1)
|
|
|
|
bb_error_msg_and_die("invalid ar header");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
char FAST_FUNC get_header_ar(archive_handle_t *archive_handle)
|
2001-10-25 19:48:08 +05:30
|
|
|
{
|
2002-09-25 08:17:48 +05:30
|
|
|
file_header_t *typed = archive_handle->file_header;
|
2009-09-20 04:58:27 +05:30
|
|
|
unsigned size;
|
2001-10-25 19:48:08 +05:30
|
|
|
union {
|
|
|
|
char raw[60];
|
2006-01-25 05:38:53 +05:30
|
|
|
struct {
|
|
|
|
char name[16];
|
|
|
|
char date[12];
|
|
|
|
char uid[6];
|
|
|
|
char gid[6];
|
|
|
|
char mode[8];
|
|
|
|
char size[10];
|
|
|
|
char magic[2];
|
2006-07-21 00:32:24 +05:30
|
|
|
} formatted;
|
2001-10-25 19:48:08 +05:30
|
|
|
} ar;
|
2007-04-07 06:14:31 +05:30
|
|
|
#if ENABLE_FEATURE_AR_LONG_FILENAMES
|
2001-10-25 19:48:08 +05:30
|
|
|
static char *ar_long_names;
|
2007-04-07 06:14:31 +05:30
|
|
|
static unsigned ar_long_name_size;
|
2002-09-25 08:17:48 +05:30
|
|
|
#endif
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
/* dont use xread as we want to handle the error ourself */
|
2002-09-25 08:17:48 +05:30
|
|
|
if (read(archive_handle->src_fd, ar.raw, 60) != 60) {
|
|
|
|
/* End Of File */
|
2006-11-27 22:19:31 +05:30
|
|
|
return EXIT_FAILURE;
|
2003-07-31 07:23:50 +05:30
|
|
|
}
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2004-04-09 12:29:05 +05:30
|
|
|
/* ar header starts on an even byte (2 byte aligned)
|
|
|
|
* '\n' is used for padding
|
|
|
|
*/
|
2002-09-25 08:17:48 +05:30
|
|
|
if (ar.raw[0] == '\n') {
|
2001-10-25 19:48:08 +05:30
|
|
|
/* fix up the header, we started reading 1 byte too early */
|
|
|
|
memmove(ar.raw, &ar.raw[1], 59);
|
2006-07-16 13:44:35 +05:30
|
|
|
ar.raw[59] = xread_char(archive_handle->src_fd);
|
2002-09-25 08:17:48 +05:30
|
|
|
archive_handle->offset++;
|
2001-10-25 19:48:08 +05:30
|
|
|
}
|
2002-09-25 08:17:48 +05:30
|
|
|
archive_handle->offset += 60;
|
2003-07-31 07:23:50 +05:30
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
/* align the headers based on the header magic */
|
2006-12-26 23:47:42 +05:30
|
|
|
if (ar.formatted.magic[0] != '`' || ar.formatted.magic[1] != '\n')
|
2006-10-08 18:19:22 +05:30
|
|
|
bb_error_msg_and_die("invalid ar header");
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2009-09-20 04:58:27 +05:30
|
|
|
/* FIXME: more thorough routine would be in order here
|
|
|
|
* (we have something like that in tar)
|
|
|
|
* but for now we are lax. */
|
|
|
|
typed->size = size = read_num(ar.formatted.size, 10);
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2009-09-20 04:58:27 +05:30
|
|
|
/* special filenames have '/' as the first character */
|
2006-07-21 00:32:24 +05:30
|
|
|
if (ar.formatted.name[0] == '/') {
|
2009-09-20 04:58:27 +05:30
|
|
|
if (ar.formatted.name[1] == ' ') {
|
|
|
|
/* This is the index of symbols in the file for compilers */
|
|
|
|
data_skip(archive_handle);
|
|
|
|
archive_handle->offset += size;
|
|
|
|
return get_header_ar(archive_handle); /* Return next header */
|
|
|
|
}
|
2007-03-20 02:29:20 +05:30
|
|
|
#if ENABLE_FEATURE_AR_LONG_FILENAMES
|
2006-07-21 00:32:24 +05:30
|
|
|
if (ar.formatted.name[1] == '/') {
|
2001-10-25 19:48:08 +05:30
|
|
|
/* If the second char is a '/' then this entries data section
|
|
|
|
* stores long filename for multiple entries, they are stored
|
2009-09-20 04:58:27 +05:30
|
|
|
* in static variable long_names for use in future entries
|
|
|
|
*/
|
|
|
|
ar_long_name_size = size;
|
|
|
|
free(ar_long_names);
|
|
|
|
ar_long_names = xmalloc(size);
|
|
|
|
xread(archive_handle->src_fd, ar_long_names, size);
|
|
|
|
archive_handle->offset += size;
|
|
|
|
/* Return next header */
|
|
|
|
return get_header_ar(archive_handle);
|
2007-03-15 03:38:53 +05:30
|
|
|
}
|
2009-09-20 04:58:27 +05:30
|
|
|
#else
|
|
|
|
bb_error_msg_and_die("long filenames not supported");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* Only size is always present, the rest may be missing in
|
|
|
|
* long filename pseudo file. Thus we decode the rest
|
|
|
|
* after dealing with long filename pseudo file.
|
|
|
|
*/
|
|
|
|
typed->mode = read_num(ar.formatted.mode, 8);
|
|
|
|
typed->mtime = read_num(ar.formatted.date, 10);
|
|
|
|
typed->uid = read_num(ar.formatted.uid, 10);
|
|
|
|
typed->gid = read_num(ar.formatted.gid, 10);
|
2007-03-15 03:38:53 +05:30
|
|
|
|
2009-09-20 04:58:27 +05:30
|
|
|
#if ENABLE_FEATURE_AR_LONG_FILENAMES
|
|
|
|
if (ar.formatted.name[0] == '/') {
|
|
|
|
unsigned long_offset;
|
2007-03-15 03:38:53 +05:30
|
|
|
|
|
|
|
/* The number after the '/' indicates the offset in the ar data section
|
2009-09-20 04:58:27 +05:30
|
|
|
* (saved in ar_long_names) that conatains the real filename */
|
|
|
|
long_offset = read_num(&ar.formatted.name[1], 10);
|
2007-03-15 03:38:53 +05:30
|
|
|
if (long_offset >= ar_long_name_size) {
|
|
|
|
bb_error_msg_and_die("can't resolve long filename");
|
|
|
|
}
|
|
|
|
typed->name = xstrdup(ar_long_names + long_offset);
|
2009-09-20 04:58:27 +05:30
|
|
|
} else
|
2002-09-25 08:17:48 +05:30
|
|
|
#endif
|
2009-09-20 04:58:27 +05:30
|
|
|
{
|
2001-10-25 19:48:08 +05:30
|
|
|
/* short filenames */
|
2006-11-24 22:51:44 +05:30
|
|
|
typed->name = xstrndup(ar.formatted.name, 16);
|
2001-10-25 19:48:08 +05:30
|
|
|
}
|
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
typed->name[strcspn(typed->name, " /")] = '\0';
|
|
|
|
|
2002-11-05 05:17:31 +05:30
|
|
|
if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
|
2002-09-25 08:17:48 +05:30
|
|
|
archive_handle->action_header(typed);
|
2008-07-11 04:36:00 +05:30
|
|
|
#if ENABLE_DPKG || ENABLE_DPKG_DEB
|
2002-09-25 08:17:48 +05:30
|
|
|
if (archive_handle->sub_archive) {
|
2006-12-22 05:51:07 +05:30
|
|
|
while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS)
|
2008-06-28 10:34:09 +05:30
|
|
|
continue;
|
2008-07-11 04:36:00 +05:30
|
|
|
} else
|
|
|
|
#endif
|
2002-09-25 08:17:48 +05:30
|
|
|
archive_handle->action_data(archive_handle);
|
|
|
|
} else {
|
2004-03-15 13:59:22 +05:30
|
|
|
data_skip(archive_handle);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
|
2003-07-31 07:23:50 +05:30
|
|
|
archive_handle->offset += typed->size;
|
|
|
|
/* Set the file pointer to the correct spot, we may have been reading a compressed file */
|
|
|
|
lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET);
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2006-11-27 22:19:31 +05:30
|
|
|
return EXIT_SUCCESS;
|
2002-07-11 16:41:56 +05:30
|
|
|
}
|