blob: c66bb3ee73954b1f494a40fbd50ca8e6cf2f44a2 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02004 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath95ebf612001-10-25 14:18:08 +00005 */
6
Glenn L McGrath95ebf612001-10-25 14:18:08 +00007#include "libbb.h"
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +02008#include "bb_archive.h"
Alexander Shishkin535584c2010-03-15 15:38:09 +01009#include "ar.h"
Glenn L McGrath95ebf612001-10-25 14:18:08 +000010
maxwen27116ba2015-08-14 21:41:28 +020011/* WARNING: Clobbers str[len], so fields must be read in reverse order! */
12static unsigned read_num(char *str, int base, int len)
Denys Vlasenko2bf66342009-09-20 01:28:27 +020013{
maxwen27116ba2015-08-14 21:41:28 +020014 int err;
15
16 /* ar fields are fixed length text strings (padded with spaces).
17 * Ensure bb_strtou doesn't read past the field in case the full
18 * width is used. */
19 str[len] = 0;
20
Denys Vlasenko2bf66342009-09-20 01:28:27 +020021 /* This code works because
22 * on misformatted numbers bb_strtou returns all-ones */
maxwen27116ba2015-08-14 21:41:28 +020023 err = bb_strtou(str, NULL, base);
Denys Vlasenko2bf66342009-09-20 01:28:27 +020024 if (err == -1)
25 bb_error_msg_and_die("invalid ar header");
26 return err;
27}
28
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000029char FAST_FUNC get_header_ar(archive_handle_t *archive_handle)
Glenn L McGrath95ebf612001-10-25 14:18:08 +000030{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000031 file_header_t *typed = archive_handle->file_header;
Denys Vlasenko2bf66342009-09-20 01:28:27 +020032 unsigned size;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000033 union {
34 char raw[60];
Alexander Shishkin535584c2010-03-15 15:38:09 +010035 struct ar_header formatted;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000036 } ar;
Denis Vlasenko04c99eb2007-04-07 00:44:31 +000037#if ENABLE_FEATURE_AR_LONG_FILENAMES
Glenn L McGrath95ebf612001-10-25 14:18:08 +000038 static char *ar_long_names;
Denis Vlasenko04c99eb2007-04-07 00:44:31 +000039 static unsigned ar_long_name_size;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000040#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +000041
Rob Landleyd921b2e2006-08-03 15:41:12 +000042 /* dont use xread as we want to handle the error ourself */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000043 if (read(archive_handle->src_fd, ar.raw, 60) != 60) {
44 /* End Of File */
Denis Vlasenko079f8af2006-11-27 16:49:31 +000045 return EXIT_FAILURE;
Glenn L McGrath91e46462003-07-31 01:53:50 +000046 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000047
Glenn L McGrath958ac182004-04-09 06:59:05 +000048 /* ar header starts on an even byte (2 byte aligned)
49 * '\n' is used for padding
50 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000051 if (ar.raw[0] == '\n') {
52 /* fix up the header, we started reading 1 byte too early */
53 memmove(ar.raw, &ar.raw[1], 59);
Rob Landley53437472006-07-16 08:14:35 +000054 ar.raw[59] = xread_char(archive_handle->src_fd);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000055 archive_handle->offset++;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000056 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000057 archive_handle->offset += 60;
Glenn L McGrath91e46462003-07-31 01:53:50 +000058
Denis Vlasenko666da5e2006-12-26 18:17:42 +000059 if (ar.formatted.magic[0] != '`' || ar.formatted.magic[1] != '\n')
Denis Vlasenko13858992006-10-08 12:49:22 +000060 bb_error_msg_and_die("invalid ar header");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000061
maxwen27116ba2015-08-14 21:41:28 +020062 /*
63 * Note that the fields MUST be read in reverse order as
64 * read_num() clobbers the next byte after the field!
65 * Order is: name, date, uid, gid, mode, size, magic.
66 */
67 typed->size = size = read_num(ar.formatted.size, 10,
68 sizeof(ar.formatted.size));
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000069
Denys Vlasenko2bf66342009-09-20 01:28:27 +020070 /* special filenames have '/' as the first character */
"Robert P. J. Day"eea56182006-07-20 19:02:24 +000071 if (ar.formatted.name[0] == '/') {
Denis Vlasenko650a0452007-03-14 22:08:53 +000072 if (ar.formatted.name[1] == ' ') {
Glenn L McGrath95ebf612001-10-25 14:18:08 +000073 /* This is the index of symbols in the file for compilers */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000074 data_skip(archive_handle);
Denys Vlasenko2bf66342009-09-20 01:28:27 +020075 archive_handle->offset += size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000076 return get_header_ar(archive_handle); /* Return next header */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000077 }
Denys Vlasenko2bf66342009-09-20 01:28:27 +020078#if ENABLE_FEATURE_AR_LONG_FILENAMES
79 if (ar.formatted.name[1] == '/') {
80 /* If the second char is a '/' then this entries data section
81 * stores long filename for multiple entries, they are stored
82 * in static variable long_names for use in future entries
83 */
84 ar_long_name_size = size;
85 free(ar_long_names);
86 ar_long_names = xmalloc(size);
87 xread(archive_handle->src_fd, ar_long_names, size);
88 archive_handle->offset += size;
89 /* Return next header */
90 return get_header_ar(archive_handle);
91 }
92#else
93 bb_error_msg_and_die("long filenames not supported");
94#endif
95 }
96 /* Only size is always present, the rest may be missing in
97 * long filename pseudo file. Thus we decode the rest
98 * after dealing with long filename pseudo file.
99 */
maxwen27116ba2015-08-14 21:41:28 +0200100 typed->mode = read_num(ar.formatted.mode, 8, sizeof(ar.formatted.mode));
101 typed->gid = read_num(ar.formatted.gid, 10, sizeof(ar.formatted.gid));
102 typed->uid = read_num(ar.formatted.uid, 10, sizeof(ar.formatted.uid));
103 typed->mtime = read_num(ar.formatted.date, 10, sizeof(ar.formatted.date));
Denys Vlasenko2bf66342009-09-20 01:28:27 +0200104
105#if ENABLE_FEATURE_AR_LONG_FILENAMES
106 if (ar.formatted.name[0] == '/') {
107 unsigned long_offset;
Denis Vlasenko650a0452007-03-14 22:08:53 +0000108
109 /* The number after the '/' indicates the offset in the ar data section
Denys Vlasenko2bf66342009-09-20 01:28:27 +0200110 * (saved in ar_long_names) that conatains the real filename */
maxwen27116ba2015-08-14 21:41:28 +0200111 long_offset = read_num(&ar.formatted.name[1], 10,
112 sizeof(ar.formatted.name) - 1);
Denis Vlasenko650a0452007-03-14 22:08:53 +0000113 if (long_offset >= ar_long_name_size) {
114 bb_error_msg_and_die("can't resolve long filename");
115 }
116 typed->name = xstrdup(ar_long_names + long_offset);
Denys Vlasenko2bf66342009-09-20 01:28:27 +0200117 } else
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000118#endif
Denys Vlasenko2bf66342009-09-20 01:28:27 +0200119 {
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000120 /* short filenames */
Denis Vlasenkod6772502006-11-24 17:21:44 +0000121 typed->name = xstrndup(ar.formatted.name, 16);
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000122 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000123
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000124 typed->name[strcspn(typed->name, " /")] = '\0';
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000125
Glenn L McGrath8e940982002-11-04 23:47:31 +0000126 if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000127 archive_handle->action_header(typed);
Denis Vlasenko0381d422008-07-10 23:06:00 +0000128#if ENABLE_DPKG || ENABLE_DPKG_DEB
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100129 if (archive_handle->dpkg__sub_archive) {
130 while (archive_handle->dpkg__action_data_subarchive(archive_handle->dpkg__sub_archive) == EXIT_SUCCESS)
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000131 continue;
Denis Vlasenko0381d422008-07-10 23:06:00 +0000132 } else
133#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000134 archive_handle->action_data(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000135 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000136 data_skip(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000137 }
138
Glenn L McGrath91e46462003-07-31 01:53:50 +0000139 archive_handle->offset += typed->size;
140 /* Set the file pointer to the correct spot, we may have been reading a compressed file */
141 lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000142
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000143 return EXIT_SUCCESS;
Eric Andersen2276d832002-07-11 11:11:56 +0000144}