blob: 4627695e43c0ad9f4ac0166be95f27f9c9fda9b4 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landley1ec5b292006-05-29 07:42:02 +00002/* Copyright 2001 Glenn McGrath.
Glenn L McGrath95ebf612001-10-25 14:18:08 +00003 *
Rob Landley1ec5b292006-05-29 07:42:02 +00004 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath95ebf612001-10-25 14:18:08 +00005 */
6
7#include <stdio.h>
8#include <stdlib.h>
9#include <string.h>
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000010#include <unistd.h>
Glenn L McGrath95ebf612001-10-25 14:18:08 +000011#include "unarchive.h"
12#include "libbb.h"
13
Rob Landleydfba7412006-03-06 20:47:33 +000014char get_header_ar(archive_handle_t *archive_handle)
Glenn L McGrath95ebf612001-10-25 14:18:08 +000015{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000016 file_header_t *typed = archive_handle->file_header;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000017 union {
18 char raw[60];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000019 struct {
20 char name[16];
21 char date[12];
22 char uid[6];
23 char gid[6];
24 char mode[8];
25 char size[10];
26 char magic[2];
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000027 } formatted;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000028 } ar;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000029#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
Glenn L McGrath95ebf612001-10-25 14:18:08 +000030 static char *ar_long_names;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000031 static unsigned int ar_long_name_size;
32#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +000033
Manuel Novoa III cad53642003-03-19 09:13:01 +000034 /* dont use bb_xread as we want to handle the error ourself */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000035 if (read(archive_handle->src_fd, ar.raw, 60) != 60) {
36 /* End Of File */
37 return(EXIT_FAILURE);
Glenn L McGrath91e46462003-07-31 01:53:50 +000038 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000039
Glenn L McGrath958ac182004-04-09 06:59:05 +000040 /* ar header starts on an even byte (2 byte aligned)
41 * '\n' is used for padding
42 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000043 if (ar.raw[0] == '\n') {
44 /* fix up the header, we started reading 1 byte too early */
45 memmove(ar.raw, &ar.raw[1], 59);
Rob Landley53437472006-07-16 08:14:35 +000046 ar.raw[59] = xread_char(archive_handle->src_fd);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000047 archive_handle->offset++;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000048 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000049 archive_handle->offset += 60;
Glenn L McGrath91e46462003-07-31 01:53:50 +000050
Glenn L McGrath95ebf612001-10-25 14:18:08 +000051 /* align the headers based on the header magic */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000052 if ((ar.formatted.magic[0] != '`') || (ar.formatted.magic[1] != '\n')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000053 bb_error_msg_and_die("Invalid ar header");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000054 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +000055
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000056 typed->mode = strtol(ar.formatted.mode, NULL, 8);
57 typed->mtime = atoi(ar.formatted.date);
58 typed->uid = atoi(ar.formatted.uid);
59 typed->gid = atoi(ar.formatted.gid);
60 typed->size = atoi(ar.formatted.size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000061
Glenn L McGrath95ebf612001-10-25 14:18:08 +000062 /* long filenames have '/' as the first character */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000063 if (ar.formatted.name[0] == '/') {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000064#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000065 if (ar.formatted.name[1] == '/') {
Glenn L McGrath95ebf612001-10-25 14:18:08 +000066 /* If the second char is a '/' then this entries data section
67 * stores long filename for multiple entries, they are stored
68 * in static variable long_names for use in future entries */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000069 ar_long_name_size = typed->size;
70 ar_long_names = xmalloc(ar_long_name_size);
Rob Landley53437472006-07-16 08:14:35 +000071 xread(archive_handle->src_fd, ar_long_names, ar_long_name_size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000072 archive_handle->offset += ar_long_name_size;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000073 /* This ar entries data section only contained filenames for other records
74 * they are stored in the static ar_long_names for future reference */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000075 return (get_header_ar(archive_handle)); /* Return next header */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000076 } else if (ar.formatted.name[1] == ' ') {
Glenn L McGrath95ebf612001-10-25 14:18:08 +000077 /* This is the index of symbols in the file for compilers */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000078 data_skip(archive_handle);
Glenn L McGrath08ca7522004-01-04 11:06:34 +000079 archive_handle->offset += typed->size;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000080 return (get_header_ar(archive_handle)); /* Return next header */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000081 } else {
82 /* The number after the '/' indicates the offset in the ar data section
83 (saved in variable long_name) that conatains the real filename */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000084 const unsigned int long_offset = atoi(&ar.formatted.name[1]);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000085 if (long_offset >= ar_long_name_size) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 bb_error_msg_and_die("Cant resolve long filename");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000087 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000088 typed->name = bb_xstrdup(ar_long_names + long_offset);
Glenn L McGrath95ebf612001-10-25 14:18:08 +000089 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000090#else
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 bb_error_msg_and_die("long filenames not supported");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000092#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +000093 } else {
94 /* short filenames */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000095 typed->name = bb_xstrndup(ar.formatted.name, 16);
Glenn L McGrath95ebf612001-10-25 14:18:08 +000096 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +000097
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000098 typed->name[strcspn(typed->name, " /")] = '\0';
Glenn L McGrath95ebf612001-10-25 14:18:08 +000099
Glenn L McGrath8e940982002-11-04 23:47:31 +0000100 if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000101 archive_handle->action_header(typed);
102 if (archive_handle->sub_archive) {
103 while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS);
104 } else {
105 archive_handle->action_data(archive_handle);
106 }
107 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000108 data_skip(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000109 }
110
Glenn L McGrath91e46462003-07-31 01:53:50 +0000111 archive_handle->offset += typed->size;
112 /* Set the file pointer to the correct spot, we may have been reading a compressed file */
113 lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000114
115 return(EXIT_SUCCESS);
Eric Andersen2276d832002-07-11 11:11:56 +0000116}