blob: 4e294b2c0e76cb4bb1a5d7087dd94da13e182369 [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
Glenn L McGrath95ebf612001-10-25 14:18:08 +00007#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +00008#include "unarchive.h"
Glenn L McGrath95ebf612001-10-25 14:18:08 +00009
Rob Landleydfba7412006-03-06 20:47:33 +000010char get_header_ar(archive_handle_t *archive_handle)
Glenn L McGrath95ebf612001-10-25 14:18:08 +000011{
Denis Vlasenko666da5e2006-12-26 18:17:42 +000012 int err;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000013 file_header_t *typed = archive_handle->file_header;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000014 union {
15 char raw[60];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000016 struct {
17 char name[16];
18 char date[12];
19 char uid[6];
20 char gid[6];
21 char mode[8];
22 char size[10];
23 char magic[2];
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000024 } formatted;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000025 } ar;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000026#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
Glenn L McGrath95ebf612001-10-25 14:18:08 +000027 static char *ar_long_names;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000028 static unsigned int ar_long_name_size;
29#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +000030
Rob Landleyd921b2e2006-08-03 15:41:12 +000031 /* dont use xread as we want to handle the error ourself */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000032 if (read(archive_handle->src_fd, ar.raw, 60) != 60) {
33 /* End Of File */
Denis Vlasenko079f8af2006-11-27 16:49:31 +000034 return EXIT_FAILURE;
Glenn L McGrath91e46462003-07-31 01:53:50 +000035 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000036
Glenn L McGrath958ac182004-04-09 06:59:05 +000037 /* ar header starts on an even byte (2 byte aligned)
38 * '\n' is used for padding
39 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000040 if (ar.raw[0] == '\n') {
41 /* fix up the header, we started reading 1 byte too early */
42 memmove(ar.raw, &ar.raw[1], 59);
Rob Landley53437472006-07-16 08:14:35 +000043 ar.raw[59] = xread_char(archive_handle->src_fd);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000044 archive_handle->offset++;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000045 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000046 archive_handle->offset += 60;
Glenn L McGrath91e46462003-07-31 01:53:50 +000047
Glenn L McGrath95ebf612001-10-25 14:18:08 +000048 /* align the headers based on the header magic */
Denis Vlasenko666da5e2006-12-26 18:17:42 +000049 if (ar.formatted.magic[0] != '`' || ar.formatted.magic[1] != '\n')
Denis Vlasenko13858992006-10-08 12:49:22 +000050 bb_error_msg_and_die("invalid ar header");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000051
Denis Vlasenko666da5e2006-12-26 18:17:42 +000052 /* FIXME: more thorough routine would be in order here */
53 /* (we have something like that in tar) */
54 /* but for now we are lax. This code works because */
55 /* on misformatted numbers bb_strtou returns all-ones */
56 typed->mode = err = bb_strtou(ar.formatted.mode, NULL, 8);
57 if (err == -1) bb_error_msg_and_die("invalid ar header");
58 typed->mtime = err = bb_strtou(ar.formatted.date, NULL, 10);
59 if (err == -1) bb_error_msg_and_die("invalid ar header");
60 typed->uid = err = bb_strtou(ar.formatted.uid, NULL, 10);
61 if (err == -1) bb_error_msg_and_die("invalid ar header");
62 typed->gid = err = bb_strtou(ar.formatted.gid, NULL, 10);
63 if (err == -1) bb_error_msg_and_die("invalid ar header");
64 typed->size = err = bb_strtou(ar.formatted.size, NULL, 10);
65 if (err == -1) bb_error_msg_and_die("invalid ar header");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000066
Glenn L McGrath95ebf612001-10-25 14:18:08 +000067 /* long filenames have '/' as the first character */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000068 if (ar.formatted.name[0] == '/') {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000069#ifdef CONFIG_FEATURE_AR_LONG_FILENAMES
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000070 if (ar.formatted.name[1] == '/') {
Glenn L McGrath95ebf612001-10-25 14:18:08 +000071 /* If the second char is a '/' then this entries data section
72 * stores long filename for multiple entries, they are stored
73 * in static variable long_names for use in future entries */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000074 ar_long_name_size = typed->size;
75 ar_long_names = xmalloc(ar_long_name_size);
Rob Landley53437472006-07-16 08:14:35 +000076 xread(archive_handle->src_fd, ar_long_names, ar_long_name_size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000077 archive_handle->offset += ar_long_name_size;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000078 /* This ar entries data section only contained filenames for other records
79 * they are stored in the static ar_long_names for future reference */
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000080 return get_header_ar(archive_handle); /* Return next header */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000081 } else if (ar.formatted.name[1] == ' ') {
Glenn L McGrath95ebf612001-10-25 14:18:08 +000082 /* This is the index of symbols in the file for compilers */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000083 data_skip(archive_handle);
Glenn L McGrath08ca7522004-01-04 11:06:34 +000084 archive_handle->offset += typed->size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000085 return get_header_ar(archive_handle); /* Return next header */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000086 } else {
87 /* The number after the '/' indicates the offset in the ar data section
88 (saved in variable long_name) that conatains the real filename */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000089 const unsigned int long_offset = atoi(&ar.formatted.name[1]);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000090 if (long_offset >= ar_long_name_size) {
Denis Vlasenkoea620772006-10-14 02:23:43 +000091 bb_error_msg_and_die("can't resolve long filename");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000092 }
Rob Landleyd921b2e2006-08-03 15:41:12 +000093 typed->name = xstrdup(ar_long_names + long_offset);
Glenn L McGrath95ebf612001-10-25 14:18:08 +000094 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000095#else
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 bb_error_msg_and_die("long filenames not supported");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000097#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +000098 } else {
99 /* short filenames */
Denis Vlasenkod6772502006-11-24 17:21:44 +0000100 typed->name = xstrndup(ar.formatted.name, 16);
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000101 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000102
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000103 typed->name[strcspn(typed->name, " /")] = '\0';
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000104
Glenn L McGrath8e940982002-11-04 23:47:31 +0000105 if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000106 archive_handle->action_header(typed);
107 if (archive_handle->sub_archive) {
Denis Vlasenko714701c2006-12-22 00:21:07 +0000108 while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS)
109 /* repeat */;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000110 } else {
111 archive_handle->action_data(archive_handle);
112 }
113 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000114 data_skip(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000115 }
116
Glenn L McGrath91e46462003-07-31 01:53:50 +0000117 archive_handle->offset += typed->size;
118 /* Set the file pointer to the correct spot, we may have been reading a compressed file */
119 lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000120
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000121 return EXIT_SUCCESS;
Eric Andersen2276d832002-07-11 11:11:56 +0000122}