2001-10-25 19:48:08 +05:30
|
|
|
/*
|
|
|
|
* 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 Library 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2002-09-25 08:17:48 +05:30
|
|
|
#include <unistd.h>
|
2001-10-25 19:48:08 +05:30
|
|
|
#include "unarchive.h"
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
extern char 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;
|
2001-10-25 19:48:08 +05:30
|
|
|
union {
|
|
|
|
char raw[60];
|
|
|
|
struct {
|
|
|
|
char name[16];
|
|
|
|
char date[12];
|
|
|
|
char uid[6];
|
|
|
|
char gid[6];
|
|
|
|
char mode[8];
|
|
|
|
char size[10];
|
|
|
|
char magic[2];
|
|
|
|
} formated;
|
|
|
|
} ar;
|
2002-09-25 08:17:48 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
|
2001-10-25 19:48:08 +05:30
|
|
|
static char *ar_long_names;
|
2002-09-25 08:17:48 +05:30
|
|
|
static unsigned int ar_long_name_size;
|
|
|
|
#endif
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* dont use bb_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 */
|
|
|
|
return(EXIT_FAILURE);
|
2003-07-31 07:23:50 +05:30
|
|
|
}
|
2002-09-25 08:17:48 +05:30
|
|
|
|
|
|
|
/* Some ar entries have a trailing '\n' after the previous data entry */
|
|
|
|
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);
|
2003-03-19 14:43:01 +05:30
|
|
|
ar.raw[59] = bb_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 */
|
|
|
|
if ((ar.formated.magic[0] != '`') || (ar.formated.magic[1] != '\n')) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("Invalid ar header");
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
typed->mode = strtol(ar.formated.mode, NULL, 8);
|
|
|
|
typed->mtime = atoi(ar.formated.date);
|
|
|
|
typed->uid = atoi(ar.formated.uid);
|
|
|
|
typed->gid = atoi(ar.formated.gid);
|
|
|
|
typed->size = atoi(ar.formated.size);
|
2001-10-25 19:48:08 +05:30
|
|
|
|
|
|
|
/* long filenames have '/' as the first character */
|
|
|
|
if (ar.formated.name[0] == '/') {
|
2002-09-25 08:17:48 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
|
2001-10-25 19:48:08 +05:30
|
|
|
if (ar.formated.name[1] == '/') {
|
|
|
|
/* If the second char is a '/' then this entries data section
|
|
|
|
* stores long filename for multiple entries, they are stored
|
|
|
|
* in static variable long_names for use in future entries */
|
2002-09-25 08:17:48 +05:30
|
|
|
ar_long_name_size = typed->size;
|
|
|
|
ar_long_names = xmalloc(ar_long_name_size);
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_xread_all(archive_handle->src_fd, ar_long_names, ar_long_name_size);
|
2002-09-25 08:17:48 +05:30
|
|
|
archive_handle->offset += ar_long_name_size;
|
2001-10-25 19:48:08 +05:30
|
|
|
/* This ar entries data section only contained filenames for other records
|
|
|
|
* they are stored in the static ar_long_names for future reference */
|
2002-09-25 08:17:48 +05:30
|
|
|
return (get_header_ar(archive_handle)); /* Return next header */
|
2001-10-25 19:48:08 +05:30
|
|
|
} else if (ar.formated.name[1] == ' ') {
|
|
|
|
/* This is the index of symbols in the file for compilers */
|
2002-09-25 08:17:48 +05:30
|
|
|
data_skip(archive_handle);
|
|
|
|
return (get_header_ar(archive_handle)); /* Return next header */
|
2001-10-25 19:48:08 +05:30
|
|
|
} else {
|
|
|
|
/* The number after the '/' indicates the offset in the ar data section
|
|
|
|
(saved in variable long_name) that conatains the real filename */
|
2002-09-25 08:17:48 +05:30
|
|
|
const unsigned int long_offset = atoi(&ar.formated.name[1]);
|
|
|
|
if (long_offset >= ar_long_name_size) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("Cant resolve long filename");
|
2001-10-25 19:48:08 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
typed->name = bb_xstrdup(ar_long_names + long_offset);
|
2001-10-25 19:48:08 +05:30
|
|
|
}
|
2002-09-25 08:17:48 +05:30
|
|
|
#else
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("long filenames not supported");
|
2002-09-25 08:17:48 +05:30
|
|
|
#endif
|
2001-10-25 19:48:08 +05:30
|
|
|
} else {
|
|
|
|
/* short filenames */
|
2003-03-19 14:43:01 +05:30
|
|
|
typed->name = bb_xstrndup(ar.formated.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);
|
|
|
|
if (archive_handle->sub_archive) {
|
|
|
|
while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS);
|
|
|
|
} else {
|
|
|
|
archive_handle->action_data(archive_handle);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
data_skip(archive_handle);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
return(EXIT_SUCCESS);
|
2002-07-11 16:41:56 +05:30
|
|
|
}
|
|
|
|
|