blob: 385f33dbf944a933a8158b1c6ac76139be32c662 [file] [log] [blame]
Glenn L McGrath95ebf612001-10-25 14:18:08 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000020#include <unistd.h>
Glenn L McGrath95ebf612001-10-25 14:18:08 +000021#include "unarchive.h"
22#include "libbb.h"
23
Rob Landleydfba7412006-03-06 20:47:33 +000024char get_header_ar(archive_handle_t *archive_handle)
Glenn L McGrath95ebf612001-10-25 14:18:08 +000025{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000026 file_header_t *typed = archive_handle->file_header;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000027 union {
28 char raw[60];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000029 struct {
30 char name[16];
31 char date[12];
32 char uid[6];
33 char gid[6];
34 char mode[8];
35 char size[10];
36 char magic[2];
37 } formated;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000038 } ar;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000039#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
Glenn L McGrath95ebf612001-10-25 14:18:08 +000040 static char *ar_long_names;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000041 static unsigned int ar_long_name_size;
42#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +000043
Manuel Novoa III cad53642003-03-19 09:13:01 +000044 /* dont use bb_xread as we want to handle the error ourself */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000045 if (read(archive_handle->src_fd, ar.raw, 60) != 60) {
46 /* End Of File */
47 return(EXIT_FAILURE);
Glenn L McGrath91e46462003-07-31 01:53:50 +000048 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000049
Glenn L McGrath958ac182004-04-09 06:59:05 +000050 /* ar header starts on an even byte (2 byte aligned)
51 * '\n' is used for padding
52 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000053 if (ar.raw[0] == '\n') {
54 /* fix up the header, we started reading 1 byte too early */
55 memmove(ar.raw, &ar.raw[1], 59);
Manuel Novoa III cad53642003-03-19 09:13:01 +000056 ar.raw[59] = bb_xread_char(archive_handle->src_fd);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000057 archive_handle->offset++;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000058 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000059 archive_handle->offset += 60;
Glenn L McGrath91e46462003-07-31 01:53:50 +000060
Glenn L McGrath95ebf612001-10-25 14:18:08 +000061 /* align the headers based on the header magic */
62 if ((ar.formated.magic[0] != '`') || (ar.formated.magic[1] != '\n')) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 bb_error_msg_and_die("Invalid ar header");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000064 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +000065
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000066 typed->mode = strtol(ar.formated.mode, NULL, 8);
67 typed->mtime = atoi(ar.formated.date);
68 typed->uid = atoi(ar.formated.uid);
69 typed->gid = atoi(ar.formated.gid);
70 typed->size = atoi(ar.formated.size);
71
Glenn L McGrath95ebf612001-10-25 14:18:08 +000072 /* long filenames have '/' as the first character */
73 if (ar.formated.name[0] == '/') {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000074#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
Glenn L McGrath95ebf612001-10-25 14:18:08 +000075 if (ar.formated.name[1] == '/') {
76 /* If the second char is a '/' then this entries data section
77 * stores long filename for multiple entries, they are stored
78 * in static variable long_names for use in future entries */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000079 ar_long_name_size = typed->size;
80 ar_long_names = xmalloc(ar_long_name_size);
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 bb_xread_all(archive_handle->src_fd, ar_long_names, ar_long_name_size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000082 archive_handle->offset += ar_long_name_size;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000083 /* This ar entries data section only contained filenames for other records
84 * they are stored in the static ar_long_names for future reference */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000085 return (get_header_ar(archive_handle)); /* Return next header */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000086 } else if (ar.formated.name[1] == ' ') {
87 /* This is the index of symbols in the file for compilers */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000088 data_skip(archive_handle);
Glenn L McGrath08ca7522004-01-04 11:06:34 +000089 archive_handle->offset += typed->size;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000090 return (get_header_ar(archive_handle)); /* Return next header */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000091 } else {
92 /* The number after the '/' indicates the offset in the ar data section
93 (saved in variable long_name) that conatains the real filename */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000094 const unsigned int long_offset = atoi(&ar.formated.name[1]);
95 if (long_offset >= ar_long_name_size) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 bb_error_msg_and_die("Cant resolve long filename");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000097 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 typed->name = bb_xstrdup(ar_long_names + long_offset);
Glenn L McGrath95ebf612001-10-25 14:18:08 +000099 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000100#else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 bb_error_msg_and_die("long filenames not supported");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000102#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000103 } else {
104 /* short filenames */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000105 typed->name = bb_xstrndup(ar.formated.name, 16);
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000106 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000107
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000108 typed->name[strcspn(typed->name, " /")] = '\0';
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000109
Glenn L McGrath8e940982002-11-04 23:47:31 +0000110 if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000111 archive_handle->action_header(typed);
112 if (archive_handle->sub_archive) {
113 while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS);
114 } else {
115 archive_handle->action_data(archive_handle);
116 }
117 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000118 data_skip(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000119 }
120
Glenn L McGrath91e46462003-07-31 01:53:50 +0000121 archive_handle->offset += typed->size;
122 /* Set the file pointer to the correct spot, we may have been reading a compressed file */
123 lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000124
125 return(EXIT_SUCCESS);
Eric Andersen2276d832002-07-11 11:11:56 +0000126}