"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 2 | /* Copyright 2001 Glenn McGrath. |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 3 | * |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 4 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 7 | #include "libbb.h" |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 8 | #include "unarchive.h" |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 9 | |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 10 | static unsigned read_num(const char *str, int base) |
| 11 | { |
| 12 | /* This code works because |
| 13 | * on misformatted numbers bb_strtou returns all-ones */ |
| 14 | int err = bb_strtou(str, NULL, base); |
| 15 | if (err == -1) |
| 16 | bb_error_msg_and_die("invalid ar header"); |
| 17 | return err; |
| 18 | } |
| 19 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 20 | char FAST_FUNC get_header_ar(archive_handle_t *archive_handle) |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 21 | { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 22 | file_header_t *typed = archive_handle->file_header; |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 23 | unsigned size; |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 24 | union { |
| 25 | char raw[60]; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 26 | struct { |
| 27 | char name[16]; |
| 28 | char date[12]; |
| 29 | char uid[6]; |
| 30 | char gid[6]; |
| 31 | char mode[8]; |
| 32 | char size[10]; |
| 33 | char magic[2]; |
"Robert P. J. Day" | eea5618 | 2006-07-20 19:02:24 +0000 | [diff] [blame] | 34 | } formatted; |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 35 | } ar; |
Denis Vlasenko | 04c99eb | 2007-04-07 00:44:31 +0000 | [diff] [blame] | 36 | #if ENABLE_FEATURE_AR_LONG_FILENAMES |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 37 | static char *ar_long_names; |
Denis Vlasenko | 04c99eb | 2007-04-07 00:44:31 +0000 | [diff] [blame] | 38 | static unsigned ar_long_name_size; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 39 | #endif |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 40 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 41 | /* dont use xread as we want to handle the error ourself */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 42 | if (read(archive_handle->src_fd, ar.raw, 60) != 60) { |
| 43 | /* End Of File */ |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 44 | return EXIT_FAILURE; |
Glenn L McGrath | 91e4646 | 2003-07-31 01:53:50 +0000 | [diff] [blame] | 45 | } |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 46 | |
Glenn L McGrath | 958ac18 | 2004-04-09 06:59:05 +0000 | [diff] [blame] | 47 | /* ar header starts on an even byte (2 byte aligned) |
| 48 | * '\n' is used for padding |
| 49 | */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 50 | if (ar.raw[0] == '\n') { |
| 51 | /* fix up the header, we started reading 1 byte too early */ |
| 52 | memmove(ar.raw, &ar.raw[1], 59); |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 53 | ar.raw[59] = xread_char(archive_handle->src_fd); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 54 | archive_handle->offset++; |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 55 | } |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 56 | archive_handle->offset += 60; |
Glenn L McGrath | 91e4646 | 2003-07-31 01:53:50 +0000 | [diff] [blame] | 57 | |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 58 | /* align the headers based on the header magic */ |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 59 | if (ar.formatted.magic[0] != '`' || ar.formatted.magic[1] != '\n') |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 60 | bb_error_msg_and_die("invalid ar header"); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 61 | |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 62 | /* FIXME: more thorough routine would be in order here |
| 63 | * (we have something like that in tar) |
| 64 | * but for now we are lax. */ |
| 65 | typed->size = size = read_num(ar.formatted.size, 10); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 66 | |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 67 | /* special filenames have '/' as the first character */ |
"Robert P. J. Day" | eea5618 | 2006-07-20 19:02:24 +0000 | [diff] [blame] | 68 | if (ar.formatted.name[0] == '/') { |
Denis Vlasenko | 650a045 | 2007-03-14 22:08:53 +0000 | [diff] [blame] | 69 | if (ar.formatted.name[1] == ' ') { |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 70 | /* This is the index of symbols in the file for compilers */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 71 | data_skip(archive_handle); |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 72 | archive_handle->offset += size; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 73 | return get_header_ar(archive_handle); /* Return next header */ |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 74 | } |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 75 | #if ENABLE_FEATURE_AR_LONG_FILENAMES |
| 76 | if (ar.formatted.name[1] == '/') { |
| 77 | /* If the second char is a '/' then this entries data section |
| 78 | * stores long filename for multiple entries, they are stored |
| 79 | * in static variable long_names for use in future entries |
| 80 | */ |
| 81 | ar_long_name_size = size; |
| 82 | free(ar_long_names); |
| 83 | ar_long_names = xmalloc(size); |
| 84 | xread(archive_handle->src_fd, ar_long_names, size); |
| 85 | archive_handle->offset += size; |
| 86 | /* Return next header */ |
| 87 | return get_header_ar(archive_handle); |
| 88 | } |
| 89 | #else |
| 90 | bb_error_msg_and_die("long filenames not supported"); |
| 91 | #endif |
| 92 | } |
| 93 | /* Only size is always present, the rest may be missing in |
| 94 | * long filename pseudo file. Thus we decode the rest |
| 95 | * after dealing with long filename pseudo file. |
| 96 | */ |
| 97 | typed->mode = read_num(ar.formatted.mode, 8); |
| 98 | typed->mtime = read_num(ar.formatted.date, 10); |
| 99 | typed->uid = read_num(ar.formatted.uid, 10); |
| 100 | typed->gid = read_num(ar.formatted.gid, 10); |
| 101 | |
| 102 | #if ENABLE_FEATURE_AR_LONG_FILENAMES |
| 103 | if (ar.formatted.name[0] == '/') { |
| 104 | unsigned long_offset; |
Denis Vlasenko | 650a045 | 2007-03-14 22:08:53 +0000 | [diff] [blame] | 105 | |
| 106 | /* The number after the '/' indicates the offset in the ar data section |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 107 | * (saved in ar_long_names) that conatains the real filename */ |
| 108 | long_offset = read_num(&ar.formatted.name[1], 10); |
Denis Vlasenko | 650a045 | 2007-03-14 22:08:53 +0000 | [diff] [blame] | 109 | if (long_offset >= ar_long_name_size) { |
| 110 | bb_error_msg_and_die("can't resolve long filename"); |
| 111 | } |
| 112 | typed->name = xstrdup(ar_long_names + long_offset); |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 113 | } else |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 114 | #endif |
Denys Vlasenko | 2bf6634 | 2009-09-20 01:28:27 +0200 | [diff] [blame] | 115 | { |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 116 | /* short filenames */ |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 117 | typed->name = xstrndup(ar.formatted.name, 16); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 118 | } |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 119 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 120 | typed->name[strcspn(typed->name, " /")] = '\0'; |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 121 | |
Glenn L McGrath | 8e94098 | 2002-11-04 23:47:31 +0000 | [diff] [blame] | 122 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 123 | archive_handle->action_header(typed); |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 124 | #if ENABLE_DPKG || ENABLE_DPKG_DEB |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 125 | if (archive_handle->sub_archive) { |
Denis Vlasenko | 714701c | 2006-12-22 00:21:07 +0000 | [diff] [blame] | 126 | while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS) |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 127 | continue; |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 128 | } else |
| 129 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 130 | archive_handle->action_data(archive_handle); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 131 | } else { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 132 | data_skip(archive_handle); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Glenn L McGrath | 91e4646 | 2003-07-31 01:53:50 +0000 | [diff] [blame] | 135 | archive_handle->offset += typed->size; |
| 136 | /* Set the file pointer to the correct spot, we may have been reading a compressed file */ |
| 137 | lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 139 | return EXIT_SUCCESS; |
Eric Andersen | 2276d83 | 2002-07-11 11:11:56 +0000 | [diff] [blame] | 140 | } |