"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | 2ab9403 | 2017-10-05 15:33:28 +0200 | [diff] [blame^] | 2 | /* |
| 3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | 6aa5223 | 2004-02-17 11:55:06 +0000 | [diff] [blame] | 4 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | * FIXME: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 6 | * In privileged mode if uname and gname map to a uid and gid then use the |
Glenn L McGrath | c9f1fce | 2004-02-20 02:25:18 +0000 | [diff] [blame] | 7 | * mapped value instead of the uid/gid values in tar header |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 8 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 9 | * References: |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 10 | * GNU tar and star man pages, |
| 11 | * Opengroup's ustar interchange format, |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 12 | * http://www.opengroup.org/onlinepubs/007904975/utilities/pax.html |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 13 | */ |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 14 | #include "libbb.h" |
Denys Vlasenko | d184a72 | 2011-09-22 12:45:14 +0200 | [diff] [blame] | 15 | #include "bb_archive.h" |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 16 | |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 17 | typedef uint32_t aliased_uint32_t FIX_ALIASING; |
| 18 | typedef off_t aliased_off_t FIX_ALIASING; |
| 19 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 20 | /* NB: _DESTROYS_ str[len] character! */ |
| 21 | static unsigned long long getOctal(char *str, int len) |
| 22 | { |
| 23 | unsigned long long v; |
Denys Vlasenko | 7b48eb4 | 2010-05-06 20:08:14 +0200 | [diff] [blame] | 24 | char *end; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 25 | /* NB: leading spaces are allowed. Using strtoull to handle that. |
Denys Vlasenko | 8d33817 | 2009-09-23 17:16:37 +0200 | [diff] [blame] | 26 | * The downside is that we accept e.g. "-123" too :( |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 27 | */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 28 | str[len] = '\0'; |
Denys Vlasenko | 7b48eb4 | 2010-05-06 20:08:14 +0200 | [diff] [blame] | 29 | v = strtoull(str, &end, 8); |
Denys Vlasenko | 8d33817 | 2009-09-23 17:16:37 +0200 | [diff] [blame] | 30 | /* std: "Each numeric field is terminated by one or more |
| 31 | * <space> or NUL characters". We must support ' '! */ |
Denys Vlasenko | 7b48eb4 | 2010-05-06 20:08:14 +0200 | [diff] [blame] | 32 | if (*end != '\0' && *end != ' ') { |
| 33 | int8_t first = str[0]; |
| 34 | if (!(first & 0x80)) |
| 35 | bb_error_msg_and_die("corrupted octal value in tar header"); |
| 36 | /* |
| 37 | * GNU tar uses "base-256 encoding" for very large numbers. |
| 38 | * Encoding is binary, with highest bit always set as a marker |
| 39 | * and sign in next-highest bit: |
| 40 | * 80 00 .. 00 - zero |
| 41 | * bf ff .. ff - largest positive number |
| 42 | * ff ff .. ff - minus 1 |
| 43 | * c0 00 .. 00 - smallest negative number |
| 44 | * |
| 45 | * Example of tar file with 8914993153 (0x213600001) byte file. |
| 46 | * Field starts at offset 7c: |
| 47 | * 00070 30 30 30 00 30 30 30 30 30 30 30 00 80 00 00 00 |000.0000000.....| |
| 48 | * 00080 00 00 00 02 13 60 00 01 31 31 31 32 30 33 33 36 |.....`..11120336| |
| 49 | * |
| 50 | * NB: tarballs with NEGATIVE unix times encoded that way were seen! |
| 51 | */ |
Denys Vlasenko | f74f280 | 2011-10-19 14:51:12 +0200 | [diff] [blame] | 52 | /* Sign-extend 7bit 'first' to 64bit 'v' (that is, using 6th bit as sign): */ |
| 53 | first <<= 1; |
| 54 | first >>= 1; /* now 7th bit = 6th bit */ |
| 55 | v = first; /* sign-extend 8 bits to 64 */ |
Denys Vlasenko | 7b48eb4 | 2010-05-06 20:08:14 +0200 | [diff] [blame] | 56 | while (--len != 0) |
Etienne Le Sueur | cfc212c | 2012-06-09 08:37:05 +0200 | [diff] [blame] | 57 | v = (v << 8) + (uint8_t) *++str; |
Denys Vlasenko | 7b48eb4 | 2010-05-06 20:08:14 +0200 | [diff] [blame] | 58 | } |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 59 | return v; |
| 60 | } |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 61 | #define GET_OCTAL(a) getOctal((a), sizeof(a)) |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 62 | |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 63 | #define TAR_EXTD (ENABLE_FEATURE_TAR_GNU_EXTENSIONS || ENABLE_FEATURE_TAR_SELINUX) |
| 64 | #if !TAR_EXTD |
| 65 | #define process_pax_hdr(archive_handle, sz, global) \ |
| 66 | process_pax_hdr(archive_handle, sz) |
| 67 | #endif |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 68 | /* "global" is 0 or 1 */ |
| 69 | static void process_pax_hdr(archive_handle_t *archive_handle, unsigned sz, int global) |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 70 | { |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 71 | #if !TAR_EXTD |
| 72 | unsigned blk_sz = (sz + 511) & (~511); |
| 73 | seek_by_read(archive_handle->src_fd, blk_sz); |
| 74 | #else |
| 75 | unsigned blk_sz = (sz + 511) & (~511); |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 76 | char *buf, *p; |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 77 | |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 78 | p = buf = xmalloc(blk_sz + 1); |
| 79 | xread(archive_handle->src_fd, buf, blk_sz); |
| 80 | archive_handle->offset += blk_sz; |
| 81 | |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 82 | /* prevent bb_strtou from running off the buffer */ |
| 83 | buf[sz] = '\0'; |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 84 | |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 85 | while (sz != 0) { |
| 86 | char *end, *value; |
| 87 | unsigned len; |
| 88 | |
| 89 | /* Every record has this format: "LEN NAME=VALUE\n" */ |
| 90 | len = bb_strtou(p, &end, 10); |
| 91 | /* expect errno to be EINVAL, because the character |
| 92 | * following the digits should be a space |
| 93 | */ |
| 94 | p += len; |
| 95 | sz -= len; |
Denys Vlasenko | 0f592d7 | 2014-01-10 18:02:38 +0100 | [diff] [blame] | 96 | if ( |
| 97 | /** (int)sz < 0 - not good enough for huge malicious VALUE of 2^32-1 */ |
| 98 | (int)(sz|len) < 0 /* this works */ |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 99 | || len == 0 |
| 100 | || errno != EINVAL |
| 101 | || *end != ' ' |
| 102 | ) { |
| 103 | bb_error_msg("malformed extended header, skipped"); |
| 104 | // More verbose version: |
| 105 | //bb_error_msg("malformed extended header at %"OFF_FMT"d, skipped", |
| 106 | // archive_handle->offset - (sz + len)); |
| 107 | break; |
| 108 | } |
| 109 | /* overwrite the terminating newline with NUL |
| 110 | * (we do not bother to check that it *was* a newline) |
| 111 | */ |
| 112 | p[-1] = '\0'; |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 113 | value = end + 1; |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 114 | |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 115 | # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
Denys Vlasenko | 9655f95 | 2016-11-11 17:56:45 +0100 | [diff] [blame] | 116 | if (!global) { |
| 117 | if (is_prefixed_with(value, "path=")) { |
| 118 | value += sizeof("path=") - 1; |
| 119 | free(archive_handle->tar__longname); |
| 120 | archive_handle->tar__longname = xstrdup(value); |
| 121 | continue; |
| 122 | } |
| 123 | if (is_prefixed_with(value, "linkpath=")) { |
| 124 | value += sizeof("linkpath=") - 1; |
| 125 | free(archive_handle->tar__linkname); |
| 126 | archive_handle->tar__linkname = xstrdup(value); |
| 127 | continue; |
| 128 | } |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 129 | } |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 130 | # endif |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 131 | |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 132 | # if ENABLE_FEATURE_TAR_SELINUX |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 133 | /* Scan for SELinux contexts, via "RHT.security.selinux" keyword. |
| 134 | * This is what Red Hat's patched version of tar uses. |
| 135 | */ |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 136 | # define SELINUX_CONTEXT_KEYWORD "RHT.security.selinux" |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 137 | if (is_prefixed_with(value, SELINUX_CONTEXT_KEYWORD"=")) { |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 138 | value += sizeof(SELINUX_CONTEXT_KEYWORD"=") - 1; |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 139 | free(archive_handle->tar__sctx[global]); |
| 140 | archive_handle->tar__sctx[global] = xstrdup(value); |
| 141 | continue; |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 142 | } |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 143 | # endif |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | free(buf); |
Denys Vlasenko | 015db58 | 2016-06-19 18:15:33 +0200 | [diff] [blame] | 147 | #endif |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 148 | } |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 149 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 150 | char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 151 | { |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 152 | file_header_t *file_header = archive_handle->file_header; |
Denys Vlasenko | 52827e3 | 2010-06-26 18:21:36 +0200 | [diff] [blame] | 153 | struct tar_header_t tar; |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 154 | char *cp; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 155 | int i, sum_u, sum; |
| 156 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
| 157 | int sum_s; |
| 158 | #endif |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 159 | int parse_names; |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 160 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 161 | /* Our "private data" */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 162 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 163 | # define p_longname (archive_handle->tar__longname) |
| 164 | # define p_linkname (archive_handle->tar__linkname) |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 165 | #else |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 166 | # define p_longname 0 |
| 167 | # define p_linkname 0 |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 168 | #endif |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 169 | |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 170 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS || ENABLE_FEATURE_TAR_SELINUX |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 171 | again: |
| 172 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 173 | /* Align header */ |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 174 | data_align(archive_handle, 512); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 175 | |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 176 | again_after_align: |
| 177 | |
Denis Vlasenko | 1f0b95f | 2009-03-13 14:26:44 +0000 | [diff] [blame] | 178 | #if ENABLE_DESKTOP || ENABLE_FEATURE_TAR_AUTODETECT |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 179 | /* to prevent misdetection of bz2 sig */ |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 180 | *(aliased_uint32_t*)&tar = 0; |
Denis Vlasenko | 23ffb6a | 2008-02-13 17:52:42 +0000 | [diff] [blame] | 181 | i = full_read(archive_handle->src_fd, &tar, 512); |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 182 | /* If GNU tar sees EOF in above read, it says: |
Denis Vlasenko | 23ffb6a | 2008-02-13 17:52:42 +0000 | [diff] [blame] | 183 | * "tar: A lone zero block at N", where N = kilobyte |
| 184 | * where EOF was met (not EOF block, actual EOF!), |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 185 | * and exits with EXIT_SUCCESS. |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 186 | * We will mimic exit(EXIT_SUCCESS), although we will not mimic |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 187 | * the message and we don't check whether we indeed |
| 188 | * saw zero block directly before this. */ |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 189 | if (i == 0) { |
Denys Vlasenko | 9655f95 | 2016-11-11 17:56:45 +0100 | [diff] [blame] | 190 | /* GNU tar 1.29 will be silent if tar archive ends abruptly |
| 191 | * (if there are no zero blocks at all, and last read returns zero, |
| 192 | * not short read 0 < len < 512). Complain only if |
| 193 | * the very first read fails. Grrr. |
| 194 | */ |
| 195 | if (archive_handle->offset == 0) |
| 196 | bb_error_msg("short read"); |
Denys Vlasenko | ebfa9b5 | 2013-11-19 14:44:04 +0100 | [diff] [blame] | 197 | /* this merely signals end of archive, not exit(1): */ |
| 198 | return EXIT_FAILURE; |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 199 | } |
| 200 | if (i != 512) { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 201 | IF_FEATURE_TAR_AUTODETECT(goto autodetect;) |
Denys Vlasenko | ebfa9b5 | 2013-11-19 14:44:04 +0100 | [diff] [blame] | 202 | bb_error_msg_and_die("short read"); |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 203 | } |
| 204 | |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 205 | #else |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 206 | i = 512; |
| 207 | xread(archive_handle->src_fd, &tar, i); |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 208 | #endif |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 209 | archive_handle->offset += i; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 210 | |
| 211 | /* If there is no filename its an empty header */ |
Denys Vlasenko | 9655f95 | 2016-11-11 17:56:45 +0100 | [diff] [blame] | 212 | if (tar.name[0] == 0 && tar.prefix[0] == 0 |
| 213 | /* Have seen a tar archive with pax 'x' header supplying UTF8 filename, |
| 214 | * with actual file having all name fields NUL-filled. Check this: */ |
| 215 | && !p_longname |
| 216 | ) { |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 217 | if (archive_handle->tar__end) { |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 218 | /* Second consecutive empty header - end of archive. |
Paul Fox | 94ff9f1 | 2005-07-20 19:24:13 +0000 | [diff] [blame] | 219 | * Read until the end to empty the pipe from gz or bz2 |
| 220 | */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 221 | while (full_read(archive_handle->src_fd, &tar, 512) == 512) |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 222 | continue; |
Denys Vlasenko | ebfa9b5 | 2013-11-19 14:44:04 +0100 | [diff] [blame] | 223 | return EXIT_FAILURE; /* "end of archive" */ |
Paul Fox | 94ff9f1 | 2005-07-20 19:24:13 +0000 | [diff] [blame] | 224 | } |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 225 | archive_handle->tar__end = 1; |
Denys Vlasenko | ebfa9b5 | 2013-11-19 14:44:04 +0100 | [diff] [blame] | 226 | return EXIT_SUCCESS; /* "decoded one header" */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 227 | } |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 228 | archive_handle->tar__end = 0; |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 229 | |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 230 | /* Check header has valid magic, "ustar" is for the proper tar, |
| 231 | * five NULs are for the old tar format */ |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 232 | if (!is_prefixed_with(tar.magic, "ustar") |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 233 | && (!ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY |
| 234 | || memcmp(tar.magic, "\0\0\0\0", 5) != 0) |
| 235 | ) { |
| 236 | #if ENABLE_FEATURE_TAR_AUTODETECT |
Denis Vlasenko | 1f0b95f | 2009-03-13 14:26:44 +0000 | [diff] [blame] | 237 | autodetect: |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 238 | /* Two different causes for lseek() != 0: |
| 239 | * unseekable fd (would like to support that too, but...), |
| 240 | * or not first block (false positive, it's not .gz/.bz2!) */ |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 241 | if (lseek(archive_handle->src_fd, -i, SEEK_CUR) != 0) |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 242 | goto err; |
Denys Vlasenko | 640ce3d | 2014-02-02 02:06:38 +0100 | [diff] [blame] | 243 | if (setup_unzip_on_fd(archive_handle->src_fd, /*fail_if_not_compressed:*/ 0) != 0) |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 244 | err: |
Denys Vlasenko | 8a6a2f9 | 2012-03-06 16:27:48 +0100 | [diff] [blame] | 245 | bb_error_msg_and_die("invalid tar magic"); |
| 246 | archive_handle->offset = 0; |
| 247 | goto again_after_align; |
| 248 | #endif |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 249 | bb_error_msg_and_die("invalid tar magic"); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 250 | } |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 251 | |
| 252 | /* Do checksum on headers. |
| 253 | * POSIX says that checksum is done on unsigned bytes, but |
Denis Vlasenko | 940494f | 2007-03-04 18:09:50 +0000 | [diff] [blame] | 254 | * Sun and HP-UX gets it wrong... more details in |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 255 | * GNU tar source. */ |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 256 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
| 257 | sum_s = ' ' * sizeof(tar.chksum); |
| 258 | #endif |
| 259 | sum_u = ' ' * sizeof(tar.chksum); |
Denis Vlasenko | b71c668 | 2007-07-21 15:08:09 +0000 | [diff] [blame] | 260 | for (i = 0; i < 148; i++) { |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 261 | sum_u += ((unsigned char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 262 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 263 | sum_s += ((signed char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 264 | #endif |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 265 | } |
Denis Vlasenko | b71c668 | 2007-07-21 15:08:09 +0000 | [diff] [blame] | 266 | for (i = 156; i < 512; i++) { |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 267 | sum_u += ((unsigned char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 268 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 269 | sum_s += ((signed char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 270 | #endif |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 271 | } |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 272 | /* This field does not need special treatment (getOctal) */ |
Denys Vlasenko | 8d33817 | 2009-09-23 17:16:37 +0200 | [diff] [blame] | 273 | { |
| 274 | char *endp; /* gcc likes temp var for &endp */ |
| 275 | sum = strtoul(tar.chksum, &endp, 8); |
| 276 | if ((*endp != '\0' && *endp != ' ') |
| 277 | || (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) |
| 278 | ) { |
| 279 | bb_error_msg_and_die("invalid tar header checksum"); |
| 280 | } |
| 281 | } |
Denys Vlasenko | d645968 | 2010-01-03 23:41:11 +0100 | [diff] [blame] | 282 | /* don't use xstrtoul, tar.chksum may have leading spaces */ |
| 283 | sum = strtoul(tar.chksum, NULL, 8); |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 284 | if (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) { |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 285 | bb_error_msg_and_die("invalid tar header checksum"); |
| 286 | } |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 287 | |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 288 | /* 0 is reserved for high perf file, treat as normal file */ |
| 289 | if (!tar.typeflag) tar.typeflag = '0'; |
| 290 | parse_names = (tar.typeflag >= '0' && tar.typeflag <= '7'); |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 291 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 292 | /* getOctal trashes subsequent field, therefore we call it |
| 293 | * on fields in reverse order */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 294 | if (tar.devmajor[0]) { |
Denis Vlasenko | d93400b | 2008-04-29 03:54:16 +0000 | [diff] [blame] | 295 | char t = tar.prefix[0]; |
| 296 | /* we trash prefix[0] here, but we DO need it later! */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 297 | unsigned minor = GET_OCTAL(tar.devminor); |
| 298 | unsigned major = GET_OCTAL(tar.devmajor); |
| 299 | file_header->device = makedev(major, minor); |
Denis Vlasenko | d93400b | 2008-04-29 03:54:16 +0000 | [diff] [blame] | 300 | tar.prefix[0] = t; |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 301 | } |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 302 | file_header->link_target = NULL; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 303 | if (!p_linkname && parse_names && tar.linkname[0]) { |
Denis Vlasenko | bc1918a | 2008-04-15 01:17:50 +0000 | [diff] [blame] | 304 | file_header->link_target = xstrndup(tar.linkname, sizeof(tar.linkname)); |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 305 | /* FIXME: what if we have non-link object with link_target? */ |
| 306 | /* Will link_target be free()ed? */ |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 307 | } |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 308 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 309 | file_header->tar__uname = tar.uname[0] ? xstrndup(tar.uname, sizeof(tar.uname)) : NULL; |
| 310 | file_header->tar__gname = tar.gname[0] ? xstrndup(tar.gname, sizeof(tar.gname)) : NULL; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 311 | #endif |
Denys Vlasenko | 7b48eb4 | 2010-05-06 20:08:14 +0200 | [diff] [blame] | 312 | file_header->mtime = GET_OCTAL(tar.mtime); |
| 313 | file_header->size = GET_OCTAL(tar.size); |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 314 | file_header->gid = GET_OCTAL(tar.gid); |
| 315 | file_header->uid = GET_OCTAL(tar.uid); |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 316 | /* Set bits 0-11 of the files mode */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 317 | file_header->mode = 07777 & GET_OCTAL(tar.mode); |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 318 | |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 319 | file_header->name = NULL; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 320 | if (!p_longname && parse_names) { |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 321 | /* we trash mode[0] here, it's ok */ |
Denis Vlasenko | bc1918a | 2008-04-15 01:17:50 +0000 | [diff] [blame] | 322 | //tar.name[sizeof(tar.name)] = '\0'; - gcc 4.3.0 would complain |
| 323 | tar.mode[0] = '\0'; |
Denis Vlasenko | 87cd4a8 | 2006-11-25 23:47:32 +0000 | [diff] [blame] | 324 | if (tar.prefix[0]) { |
| 325 | /* and padding[0] */ |
Denis Vlasenko | bc1918a | 2008-04-15 01:17:50 +0000 | [diff] [blame] | 326 | //tar.prefix[sizeof(tar.prefix)] = '\0'; - gcc 4.3.0 would complain |
| 327 | tar.padding[0] = '\0'; |
Denis Vlasenko | cf30cc8 | 2006-11-24 14:53:18 +0000 | [diff] [blame] | 328 | file_header->name = concat_path_file(tar.prefix, tar.name); |
Denis Vlasenko | 87cd4a8 | 2006-11-25 23:47:32 +0000 | [diff] [blame] | 329 | } else |
Denis Vlasenko | cf30cc8 | 2006-11-24 14:53:18 +0000 | [diff] [blame] | 330 | file_header->name = xstrdup(tar.name); |
| 331 | } |
| 332 | |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 333 | /* Set bits 12-15 of the files mode */ |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 334 | /* (typeflag was not trashed because chksum does not use getOctal) */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 335 | switch (tar.typeflag) { |
Ian Wienand | 954dbd3 | 2011-07-29 08:33:47 +0200 | [diff] [blame] | 336 | case '1': /* hardlink */ |
| 337 | /* we mark hardlinks as regular files with zero size and a link name */ |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 338 | file_header->mode |= S_IFREG; |
Ian Wienand | 954dbd3 | 2011-07-29 08:33:47 +0200 | [diff] [blame] | 339 | /* on size of link fields from star(4) |
| 340 | * ... For tar archives written by pre POSIX.1-1988 |
| 341 | * implementations, the size field usually contains the size of |
| 342 | * the file and needs to be ignored as no data may follow this |
| 343 | * header type. For POSIX.1- 1988 compliant archives, the size |
| 344 | * field needs to be 0. For POSIX.1-2001 compliant archives, |
| 345 | * the size field may be non zero, indicating that file data is |
| 346 | * included in the archive. |
| 347 | * i.e; always assume this is zero for safety. |
| 348 | */ |
| 349 | goto size0; |
Glenn L McGrath | c9f1fce | 2004-02-20 02:25:18 +0000 | [diff] [blame] | 350 | case '7': |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 351 | /* case 0: */ |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 352 | case '0': |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 353 | #if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY |
Glenn L McGrath | 87af49f | 2003-09-09 17:41:03 +0000 | [diff] [blame] | 354 | if (last_char_is(file_header->name, '/')) { |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 355 | goto set_dir; |
| 356 | } |
Glenn L McGrath | c9f1fce | 2004-02-20 02:25:18 +0000 | [diff] [blame] | 357 | #endif |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 358 | file_header->mode |= S_IFREG; |
Glenn L McGrath | 99b1254 | 2002-08-22 17:47:09 +0000 | [diff] [blame] | 359 | break; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 360 | case '2': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 361 | file_header->mode |= S_IFLNK; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 362 | /* have seen tarballs with size field containing |
| 363 | * the size of the link target's name */ |
| 364 | size0: |
| 365 | file_header->size = 0; |
Glenn L McGrath | 99b1254 | 2002-08-22 17:47:09 +0000 | [diff] [blame] | 366 | break; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 367 | case '3': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 368 | file_header->mode |= S_IFCHR; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 369 | goto size0; /* paranoia */ |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 370 | case '4': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 371 | file_header->mode |= S_IFBLK; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 372 | goto size0; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 373 | case '5': |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 374 | IF_FEATURE_TAR_OLDGNU_COMPATIBILITY(set_dir:) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 375 | file_header->mode |= S_IFDIR; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 376 | goto size0; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 377 | case '6': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 378 | file_header->mode |= S_IFIFO; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 379 | goto size0; |
Denys Vlasenko | bdb540e | 2015-05-11 16:55:16 +0200 | [diff] [blame] | 380 | case 'g': /* pax global header */ |
| 381 | case 'x': { /* pax extended header */ |
| 382 | if ((uoff_t)file_header->size > 0xfffff) /* paranoia */ |
| 383 | goto skip_ext_hdr; |
| 384 | process_pax_hdr(archive_handle, file_header->size, (tar.typeflag == 'g')); |
| 385 | goto again_after_align; |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 386 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
Denys Vlasenko | bdb540e | 2015-05-11 16:55:16 +0200 | [diff] [blame] | 387 | /* See http://www.gnu.org/software/tar/manual/html_node/Extensions.html */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 388 | case 'L': |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 389 | /* free: paranoia: tar with several consecutive longnames */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 390 | free(p_longname); |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 391 | /* For paranoia reasons we allocate extra NUL char */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 392 | p_longname = xzalloc(file_header->size + 1); |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 393 | /* We read ASCIZ string, including NUL */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 394 | xread(archive_handle->src_fd, p_longname, file_header->size); |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 395 | archive_handle->offset += file_header->size; |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 396 | /* return get_header_tar(archive_handle); */ |
| 397 | /* gcc 4.1.1 didn't optimize it into jump */ |
| 398 | /* so we will do it ourself, this also saves stack */ |
| 399 | goto again; |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 400 | case 'K': |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 401 | free(p_linkname); |
| 402 | p_linkname = xzalloc(file_header->size + 1); |
| 403 | xread(archive_handle->src_fd, p_linkname, file_header->size); |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 404 | archive_handle->offset += file_header->size; |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 405 | /* return get_header_tar(archive_handle); */ |
| 406 | goto again; |
Denys Vlasenko | bdb540e | 2015-05-11 16:55:16 +0200 | [diff] [blame] | 407 | /* |
| 408 | * case 'S': // Sparse file |
| 409 | * Was seen in the wild. Not supported (yet?). |
| 410 | * See https://www.gnu.org/software/tar/manual/html_section/tar_92.html |
| 411 | * for the format. (An "Old GNU Format" was seen, not PAX formats). |
| 412 | */ |
| 413 | // case 'D': /* GNU dump dir */ |
| 414 | // case 'M': /* Continuation of multi volume archive */ |
| 415 | // case 'N': /* Old GNU for names > 100 characters */ |
| 416 | // case 'V': /* Volume header */ |
Glenn L McGrath | 6aa5223 | 2004-02-17 11:55:06 +0000 | [diff] [blame] | 417 | #endif |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 418 | } |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 419 | skip_ext_hdr: |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 420 | { |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 421 | off_t sz; |
| 422 | bb_error_msg("warning: skipping header '%c'", tar.typeflag); |
| 423 | sz = (file_header->size + 511) & ~(off_t)511; |
| 424 | archive_handle->offset += sz; |
| 425 | sz >>= 9; /* sz /= 512 but w/o contortions for signed div */ |
| 426 | while (sz--) |
| 427 | xread(archive_handle->src_fd, &tar, 512); |
| 428 | /* return get_header_tar(archive_handle); */ |
| 429 | goto again_after_align; |
| 430 | } |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 431 | default: |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 432 | bb_error_msg_and_die("unknown typeflag: 0x%x", tar.typeflag); |
Glenn L McGrath | 6aa5223 | 2004-02-17 11:55:06 +0000 | [diff] [blame] | 433 | } |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 434 | |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 435 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 436 | if (p_longname) { |
| 437 | file_header->name = p_longname; |
| 438 | p_longname = NULL; |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 439 | } |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 440 | if (p_linkname) { |
| 441 | file_header->link_target = p_linkname; |
| 442 | p_linkname = NULL; |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 443 | } |
| 444 | #endif |
Denys Vlasenko | 5e29e26 | 2011-03-01 17:21:07 +0100 | [diff] [blame] | 445 | |
| 446 | /* Everything up to and including last ".." component is stripped */ |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 447 | overlapping_strcpy(file_header->name, strip_unsafe_prefix(file_header->name)); |
Denys Vlasenko | 6c563e3 | 2015-10-22 01:07:13 +0200 | [diff] [blame] | 448 | //TODO: do the same for file_header->link_target? |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 449 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 450 | /* Strip trailing '/' in directories */ |
Denis Vlasenko | 714701c | 2006-12-22 00:21:07 +0000 | [diff] [blame] | 451 | /* Must be done after mode is set as '/' is used to check if it's a directory */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 452 | cp = last_char_is(file_header->name, '/'); |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 453 | |
Glenn L McGrath | 8e94098 | 2002-11-04 23:47:31 +0000 | [diff] [blame] | 454 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 455 | archive_handle->action_header(/*archive_handle->*/ file_header); |
Denis Vlasenko | cf30cc8 | 2006-11-24 14:53:18 +0000 | [diff] [blame] | 456 | /* Note that we kill the '/' only after action_header() */ |
| 457 | /* (like GNU tar 1.15.1: verbose mode outputs "dir/dir/") */ |
Denys Vlasenko | 02365a6 | 2010-04-09 10:52:52 +0200 | [diff] [blame] | 458 | if (cp) |
| 459 | *cp = '\0'; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 460 | archive_handle->action_data(archive_handle); |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 461 | if (archive_handle->accept || archive_handle->reject |
| 462 | || (archive_handle->ah_flags & ARCHIVE_REMEMBER_NAMES) |
| 463 | ) { |
Denys Vlasenko | b768aeb | 2010-06-26 18:22:41 +0200 | [diff] [blame] | 464 | llist_add_to(&archive_handle->passed, file_header->name); |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 465 | } else /* Caller isn't interested in list of unpacked files */ |
Denys Vlasenko | b768aeb | 2010-06-26 18:22:41 +0200 | [diff] [blame] | 466 | free(file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 467 | } else { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 468 | data_skip(archive_handle); |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 469 | free(file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 470 | } |
| 471 | archive_handle->offset += file_header->size; |
| 472 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 473 | free(file_header->link_target); |
Denys Vlasenko | b768aeb | 2010-06-26 18:22:41 +0200 | [diff] [blame] | 474 | /* Do not free(file_header->name)! |
| 475 | * It might be inserted in archive_handle->passed - see above */ |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 476 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 477 | free(file_header->tar__uname); |
| 478 | free(file_header->tar__gname); |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 479 | #endif |
Denys Vlasenko | ebfa9b5 | 2013-11-19 14:44:04 +0100 | [diff] [blame] | 480 | return EXIT_SUCCESS; /* "decoded one header" */ |
Eric Andersen | 2276d83 | 2002-07-11 11:11:56 +0000 | [diff] [blame] | 481 | } |