blob: 278c8fbdc58e22d9b0290a40734ea595d54a56d9 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02002/* Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath6aa52232004-02-17 11:55:06 +00003 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02004 * FIXME:
Eric Andersenaff114c2004-04-14 17:51:38 +00005 * In privileged mode if uname and gname map to a uid and gid then use the
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +00006 * mapped value instead of the uid/gid values in tar header
Glenn L McGrathb0e163a2004-02-19 08:48:30 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * References:
Glenn L McGrathb0e163a2004-02-19 08:48:30 +00009 * GNU tar and star man pages,
10 * Opengroup's ustar interchange format,
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020011 * http://www.opengroup.org/onlinepubs/007904975/utilities/pax.html
Glenn L McGrath95ebf612001-10-25 14:18:08 +000012 */
13
Glenn L McGrath95ebf612001-10-25 14:18:08 +000014#include "libbb.h"
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020015#include "bb_archive.h"
Glenn L McGrath95ebf612001-10-25 14:18:08 +000016
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010017typedef uint32_t aliased_uint32_t FIX_ALIASING;
18typedef off_t aliased_off_t FIX_ALIASING;
19
20
Denys Vlasenkob80acf52011-03-02 01:21:02 +010021const char* FAST_FUNC strip_unsafe_prefix(const char *str)
22{
23 const char *cp = str;
24 while (1) {
25 char *cp2;
26 if (*cp == '/') {
27 cp++;
28 continue;
29 }
30 if (strncmp(cp, "/../"+1, 3) == 0) {
31 cp += 3;
32 continue;
33 }
34 cp2 = strstr(cp, "/../");
35 if (!cp2)
36 break;
37 cp = cp2 + 4;
38 }
39 if (cp != str) {
40 static smallint warned = 0;
41 if (!warned) {
42 warned = 1;
43 bb_error_msg("removing leading '%.*s' from member names",
44 (int)(cp - str), str);
45 }
46 }
47 return cp;
48}
49
Denis Vlasenko376ce1e2006-11-24 14:51:01 +000050/* NB: _DESTROYS_ str[len] character! */
51static unsigned long long getOctal(char *str, int len)
52{
53 unsigned long long v;
Denys Vlasenko7b48eb42010-05-06 20:08:14 +020054 char *end;
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000055 /* NB: leading spaces are allowed. Using strtoull to handle that.
Denys Vlasenko8d338172009-09-23 17:16:37 +020056 * The downside is that we accept e.g. "-123" too :(
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000057 */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +000058 str[len] = '\0';
Denys Vlasenko7b48eb42010-05-06 20:08:14 +020059 v = strtoull(str, &end, 8);
Denys Vlasenko8d338172009-09-23 17:16:37 +020060 /* std: "Each numeric field is terminated by one or more
61 * <space> or NUL characters". We must support ' '! */
Denys Vlasenko7b48eb42010-05-06 20:08:14 +020062 if (*end != '\0' && *end != ' ') {
63 int8_t first = str[0];
64 if (!(first & 0x80))
65 bb_error_msg_and_die("corrupted octal value in tar header");
66 /*
67 * GNU tar uses "base-256 encoding" for very large numbers.
68 * Encoding is binary, with highest bit always set as a marker
69 * and sign in next-highest bit:
70 * 80 00 .. 00 - zero
71 * bf ff .. ff - largest positive number
72 * ff ff .. ff - minus 1
73 * c0 00 .. 00 - smallest negative number
74 *
75 * Example of tar file with 8914993153 (0x213600001) byte file.
76 * Field starts at offset 7c:
77 * 00070 30 30 30 00 30 30 30 30 30 30 30 00 80 00 00 00 |000.0000000.....|
78 * 00080 00 00 00 02 13 60 00 01 31 31 31 32 30 33 33 36 |.....`..11120336|
79 *
80 * NB: tarballs with NEGATIVE unix times encoded that way were seen!
81 */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020082 /* Sign-extend 7bit 'first' to 64bit 'v' (that is, using 6th bit as sign): */
83 first <<= 1;
84 first >>= 1; /* now 7th bit = 6th bit */
85 v = first; /* sign-extend 8 bits to 64 */
Denys Vlasenko7b48eb42010-05-06 20:08:14 +020086 while (--len != 0)
Etienne Le Sueur86129212012-06-09 08:37:05 +020087 v = (v << 8) + (uint8_t) *++str;
Denys Vlasenko7b48eb42010-05-06 20:08:14 +020088 }
Denis Vlasenko376ce1e2006-11-24 14:51:01 +000089 return v;
90}
Denis Vlasenkob5963352006-11-26 01:46:59 +000091#define GET_OCTAL(a) getOctal((a), sizeof(a))
Denis Vlasenko376ce1e2006-11-24 14:51:01 +000092
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020093/* "global" is 0 or 1 */
94static void process_pax_hdr(archive_handle_t *archive_handle, unsigned sz, int global)
J. Tang77a2c512010-03-19 14:48:51 +010095{
96 char *buf, *p;
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020097 unsigned blk_sz;
J. Tang77a2c512010-03-19 14:48:51 +010098
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020099 blk_sz = (sz + 511) & (~511);
100 p = buf = xmalloc(blk_sz + 1);
101 xread(archive_handle->src_fd, buf, blk_sz);
102 archive_handle->offset += blk_sz;
103
J. Tang77a2c512010-03-19 14:48:51 +0100104 /* prevent bb_strtou from running off the buffer */
105 buf[sz] = '\0';
J. Tang77a2c512010-03-19 14:48:51 +0100106
J. Tang77a2c512010-03-19 14:48:51 +0100107 while (sz != 0) {
108 char *end, *value;
109 unsigned len;
110
111 /* Every record has this format: "LEN NAME=VALUE\n" */
112 len = bb_strtou(p, &end, 10);
113 /* expect errno to be EINVAL, because the character
114 * following the digits should be a space
115 */
116 p += len;
117 sz -= len;
118 if ((int)sz < 0
119 || len == 0
120 || errno != EINVAL
121 || *end != ' '
122 ) {
123 bb_error_msg("malformed extended header, skipped");
124 // More verbose version:
125 //bb_error_msg("malformed extended header at %"OFF_FMT"d, skipped",
126 // archive_handle->offset - (sz + len));
127 break;
128 }
129 /* overwrite the terminating newline with NUL
130 * (we do not bother to check that it *was* a newline)
131 */
132 p[-1] = '\0';
J. Tang77a2c512010-03-19 14:48:51 +0100133 value = end + 1;
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200134
135#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
136 if (!global && strncmp(value, "path=", sizeof("path=") - 1) == 0) {
137 value += sizeof("path=") - 1;
138 free(archive_handle->tar__longname);
139 archive_handle->tar__longname = xstrdup(value);
140 continue;
141 }
142#endif
143
144#if ENABLE_FEATURE_TAR_SELINUX
145 /* Scan for SELinux contexts, via "RHT.security.selinux" keyword.
146 * This is what Red Hat's patched version of tar uses.
147 */
148# define SELINUX_CONTEXT_KEYWORD "RHT.security.selinux"
J. Tang77a2c512010-03-19 14:48:51 +0100149 if (strncmp(value, SELINUX_CONTEXT_KEYWORD"=", sizeof(SELINUX_CONTEXT_KEYWORD"=") - 1) == 0) {
150 value += sizeof(SELINUX_CONTEXT_KEYWORD"=") - 1;
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200151 free(archive_handle->tar__sctx[global]);
152 archive_handle->tar__sctx[global] = xstrdup(value);
153 continue;
J. Tang77a2c512010-03-19 14:48:51 +0100154 }
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200155#endif
J. Tang77a2c512010-03-19 14:48:51 +0100156 }
157
158 free(buf);
J. Tang77a2c512010-03-19 14:48:51 +0100159}
J. Tang77a2c512010-03-19 14:48:51 +0100160
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000161char FAST_FUNC get_header_tar(archive_handle_t *archive_handle)
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000162{
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000163 file_header_t *file_header = archive_handle->file_header;
Denys Vlasenko52827e32010-06-26 18:21:36 +0200164 struct tar_header_t tar;
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000165 char *cp;
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000166 int i, sum_u, sum;
167#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY
168 int sum_s;
169#endif
Denis Vlasenkod6772502006-11-24 17:21:44 +0000170 int parse_names;
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000171
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000172 /* Our "private data" */
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000173#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100174# define p_longname (archive_handle->tar__longname)
175# define p_linkname (archive_handle->tar__linkname)
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000176#else
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100177# define p_longname 0
178# define p_linkname 0
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000179#endif
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000180
J. Tang77a2c512010-03-19 14:48:51 +0100181#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS || ENABLE_FEATURE_TAR_SELINUX
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000182 again:
183#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000184 /* Align header */
Glenn L McGrath237ae422002-11-03 14:05:15 +0000185 data_align(archive_handle, 512);
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000186
Denis Vlasenkob5963352006-11-26 01:46:59 +0000187 again_after_align:
188
Denis Vlasenko1f0b95f2009-03-13 14:26:44 +0000189#if ENABLE_DESKTOP || ENABLE_FEATURE_TAR_AUTODETECT
Denis Vlasenko0381d422008-07-10 23:06:00 +0000190 /* to prevent misdetection of bz2 sig */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100191 *(aliased_uint32_t*)&tar = 0;
Denis Vlasenko23ffb6a2008-02-13 17:52:42 +0000192 i = full_read(archive_handle->src_fd, &tar, 512);
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000193 /* If GNU tar sees EOF in above read, it says:
Denis Vlasenko23ffb6a2008-02-13 17:52:42 +0000194 * "tar: A lone zero block at N", where N = kilobyte
195 * where EOF was met (not EOF block, actual EOF!),
Denis Vlasenko0381d422008-07-10 23:06:00 +0000196 * and exits with EXIT_SUCCESS.
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000197 * We will mimic exit(EXIT_SUCCESS), although we will not mimic
Denis Vlasenko12c06222008-02-14 08:52:30 +0000198 * the message and we don't check whether we indeed
199 * saw zero block directly before this. */
Denis Vlasenko0381d422008-07-10 23:06:00 +0000200 if (i == 0) {
maxwen27116ba2015-08-14 21:41:28 +0200201 bb_error_msg("short read");
202 /* this merely signals end of archive, not exit(1): */
203 return EXIT_FAILURE;
Denis Vlasenko0381d422008-07-10 23:06:00 +0000204 }
205 if (i != 512) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000206 IF_FEATURE_TAR_AUTODETECT(goto autodetect;)
maxwen27116ba2015-08-14 21:41:28 +0200207 bb_error_msg_and_die("short read");
Denis Vlasenko0381d422008-07-10 23:06:00 +0000208 }
209
Denis Vlasenko12c06222008-02-14 08:52:30 +0000210#else
Denis Vlasenko0381d422008-07-10 23:06:00 +0000211 i = 512;
212 xread(archive_handle->src_fd, &tar, i);
Denis Vlasenko12c06222008-02-14 08:52:30 +0000213#endif
Denis Vlasenko0381d422008-07-10 23:06:00 +0000214 archive_handle->offset += i;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000215
216 /* If there is no filename its an empty header */
Denis Vlasenko05efca92008-04-29 04:12:58 +0000217 if (tar.name[0] == 0 && tar.prefix[0] == 0) {
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100218 if (archive_handle->tar__end) {
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000219 /* Second consecutive empty header - end of archive.
Paul Fox94ff9f12005-07-20 19:24:13 +0000220 * Read until the end to empty the pipe from gz or bz2
221 */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000222 while (full_read(archive_handle->src_fd, &tar, 512) == 512)
Denis Vlasenko431a7c92008-02-19 11:26:28 +0000223 continue;
maxwen27116ba2015-08-14 21:41:28 +0200224 return EXIT_FAILURE; /* "end of archive" */
Paul Fox94ff9f12005-07-20 19:24:13 +0000225 }
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100226 archive_handle->tar__end = 1;
maxwen27116ba2015-08-14 21:41:28 +0200227 return EXIT_SUCCESS; /* "decoded one header" */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000228 }
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100229 archive_handle->tar__end = 0;
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000230
Denis Vlasenko431a7c92008-02-19 11:26:28 +0000231 /* Check header has valid magic, "ustar" is for the proper tar,
232 * five NULs are for the old tar format */
233 if (strncmp(tar.magic, "ustar", 5) != 0
234 && (!ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY
235 || memcmp(tar.magic, "\0\0\0\0", 5) != 0)
236 ) {
237#if ENABLE_FEATURE_TAR_AUTODETECT
Denis Vlasenko1f0b95f2009-03-13 14:26:44 +0000238 autodetect:
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000239 /* Two different causes for lseek() != 0:
240 * unseekable fd (would like to support that too, but...),
241 * or not first block (false positive, it's not .gz/.bz2!) */
Denis Vlasenko0381d422008-07-10 23:06:00 +0000242 if (lseek(archive_handle->src_fd, -i, SEEK_CUR) != 0)
Denis Vlasenko431a7c92008-02-19 11:26:28 +0000243 goto err;
maxwen27116ba2015-08-14 21:41:28 +0200244 if (setup_unzip_on_fd(archive_handle->src_fd, /*fail_if_not_compressed:*/ 0) != 0)
Denis Vlasenko431a7c92008-02-19 11:26:28 +0000245 err:
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200246 bb_error_msg_and_die("invalid tar magic");
247 archive_handle->offset = 0;
248 goto again_after_align;
249#endif
Denis Vlasenko431a7c92008-02-19 11:26:28 +0000250 bb_error_msg_and_die("invalid tar magic");
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000251 }
Denis Vlasenkodcbd51d2007-03-03 20:06:59 +0000252
253 /* Do checksum on headers.
254 * POSIX says that checksum is done on unsigned bytes, but
Denis Vlasenko940494f2007-03-04 18:09:50 +0000255 * Sun and HP-UX gets it wrong... more details in
Denis Vlasenkodcbd51d2007-03-03 20:06:59 +0000256 * GNU tar source. */
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000257#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY
258 sum_s = ' ' * sizeof(tar.chksum);
259#endif
260 sum_u = ' ' * sizeof(tar.chksum);
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000261 for (i = 0; i < 148; i++) {
Denis Vlasenkodcbd51d2007-03-03 20:06:59 +0000262 sum_u += ((unsigned char*)&tar)[i];
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000263#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY
Denis Vlasenkodcbd51d2007-03-03 20:06:59 +0000264 sum_s += ((signed char*)&tar)[i];
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000265#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000266 }
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000267 for (i = 156; i < 512; i++) {
Denis Vlasenkodcbd51d2007-03-03 20:06:59 +0000268 sum_u += ((unsigned char*)&tar)[i];
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000269#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY
Denis Vlasenkodcbd51d2007-03-03 20:06:59 +0000270 sum_s += ((signed char*)&tar)[i];
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000271#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000272 }
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000273 /* This field does not need special treatment (getOctal) */
Denys Vlasenko8d338172009-09-23 17:16:37 +0200274 {
275 char *endp; /* gcc likes temp var for &endp */
276 sum = strtoul(tar.chksum, &endp, 8);
277 if ((*endp != '\0' && *endp != ' ')
278 || (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum))
279 ) {
280 bb_error_msg_and_die("invalid tar header checksum");
281 }
282 }
Denys Vlasenkod6459682010-01-03 23:41:11 +0100283 /* don't use xstrtoul, tar.chksum may have leading spaces */
284 sum = strtoul(tar.chksum, NULL, 8);
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000285 if (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) {
Denis Vlasenkoa80b4a02007-06-21 12:41:59 +0000286 bb_error_msg_and_die("invalid tar header checksum");
287 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000288
Denis Vlasenkob5963352006-11-26 01:46:59 +0000289 /* 0 is reserved for high perf file, treat as normal file */
290 if (!tar.typeflag) tar.typeflag = '0';
291 parse_names = (tar.typeflag >= '0' && tar.typeflag <= '7');
Denis Vlasenkod6772502006-11-24 17:21:44 +0000292
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000293 /* getOctal trashes subsequent field, therefore we call it
294 * on fields in reverse order */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000295 if (tar.devmajor[0]) {
Denis Vlasenkod93400b2008-04-29 03:54:16 +0000296 char t = tar.prefix[0];
297 /* we trash prefix[0] here, but we DO need it later! */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000298 unsigned minor = GET_OCTAL(tar.devminor);
299 unsigned major = GET_OCTAL(tar.devmajor);
300 file_header->device = makedev(major, minor);
Denis Vlasenkod93400b2008-04-29 03:54:16 +0000301 tar.prefix[0] = t;
Denis Vlasenkocba9ef52006-10-10 21:00:47 +0000302 }
Denis Vlasenko75103842007-06-20 14:49:47 +0000303 file_header->link_target = NULL;
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000304 if (!p_linkname && parse_names && tar.linkname[0]) {
Denis Vlasenkobc1918a2008-04-15 01:17:50 +0000305 file_header->link_target = xstrndup(tar.linkname, sizeof(tar.linkname));
Denis Vlasenko75103842007-06-20 14:49:47 +0000306 /* FIXME: what if we have non-link object with link_target? */
307 /* Will link_target be free()ed? */
Denis Vlasenkod6772502006-11-24 17:21:44 +0000308 }
Denis Vlasenkoe00e5022008-02-14 20:37:54 +0000309#if ENABLE_FEATURE_TAR_UNAME_GNAME
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100310 file_header->tar__uname = tar.uname[0] ? xstrndup(tar.uname, sizeof(tar.uname)) : NULL;
311 file_header->tar__gname = tar.gname[0] ? xstrndup(tar.gname, sizeof(tar.gname)) : NULL;
Denis Vlasenkoe00e5022008-02-14 20:37:54 +0000312#endif
Denys Vlasenko7b48eb42010-05-06 20:08:14 +0200313 file_header->mtime = GET_OCTAL(tar.mtime);
314 file_header->size = GET_OCTAL(tar.size);
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000315 file_header->gid = GET_OCTAL(tar.gid);
316 file_header->uid = GET_OCTAL(tar.uid);
Glenn L McGrath916ba532004-02-20 02:34:42 +0000317 /* Set bits 0-11 of the files mode */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000318 file_header->mode = 07777 & GET_OCTAL(tar.mode);
Glenn L McGrath916ba532004-02-20 02:34:42 +0000319
Denis Vlasenkob5963352006-11-26 01:46:59 +0000320 file_header->name = NULL;
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000321 if (!p_longname && parse_names) {
Denis Vlasenkod6772502006-11-24 17:21:44 +0000322 /* we trash mode[0] here, it's ok */
Denis Vlasenkobc1918a2008-04-15 01:17:50 +0000323 //tar.name[sizeof(tar.name)] = '\0'; - gcc 4.3.0 would complain
324 tar.mode[0] = '\0';
Denis Vlasenko87cd4a82006-11-25 23:47:32 +0000325 if (tar.prefix[0]) {
326 /* and padding[0] */
Denis Vlasenkobc1918a2008-04-15 01:17:50 +0000327 //tar.prefix[sizeof(tar.prefix)] = '\0'; - gcc 4.3.0 would complain
328 tar.padding[0] = '\0';
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000329 file_header->name = concat_path_file(tar.prefix, tar.name);
Denis Vlasenko87cd4a82006-11-25 23:47:32 +0000330 } else
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000331 file_header->name = xstrdup(tar.name);
332 }
333
Glenn L McGrath916ba532004-02-20 02:34:42 +0000334 /* Set bits 12-15 of the files mode */
Denis Vlasenkod6772502006-11-24 17:21:44 +0000335 /* (typeflag was not trashed because chksum does not use getOctal) */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000336 switch (tar.typeflag) {
Ian Wienand954dbd32011-07-29 08:33:47 +0200337 case '1': /* hardlink */
338 /* we mark hardlinks as regular files with zero size and a link name */
Glenn L McGrath916ba532004-02-20 02:34:42 +0000339 file_header->mode |= S_IFREG;
Ian Wienand954dbd32011-07-29 08:33:47 +0200340 /* on size of link fields from star(4)
341 * ... For tar archives written by pre POSIX.1-1988
342 * implementations, the size field usually contains the size of
343 * the file and needs to be ignored as no data may follow this
344 * header type. For POSIX.1- 1988 compliant archives, the size
345 * field needs to be 0. For POSIX.1-2001 compliant archives,
346 * the size field may be non zero, indicating that file data is
347 * included in the archive.
348 * i.e; always assume this is zero for safety.
349 */
350 goto size0;
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +0000351 case '7':
Denis Vlasenkob5963352006-11-26 01:46:59 +0000352 /* case 0: */
Glenn L McGrath21110a02003-01-28 01:45:48 +0000353 case '0':
Denis Vlasenkod6772502006-11-24 17:21:44 +0000354#if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY
Glenn L McGrath87af49f2003-09-09 17:41:03 +0000355 if (last_char_is(file_header->name, '/')) {
Denis Vlasenkoadc772a2008-07-20 17:10:43 +0000356 goto set_dir;
357 }
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +0000358#endif
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000359 file_header->mode |= S_IFREG;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000360 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000361 case '2':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000362 file_header->mode |= S_IFLNK;
Denis Vlasenkoadc772a2008-07-20 17:10:43 +0000363 /* have seen tarballs with size field containing
364 * the size of the link target's name */
365 size0:
366 file_header->size = 0;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000367 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000368 case '3':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000369 file_header->mode |= S_IFCHR;
Denis Vlasenkoadc772a2008-07-20 17:10:43 +0000370 goto size0; /* paranoia */
Glenn L McGrath21110a02003-01-28 01:45:48 +0000371 case '4':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000372 file_header->mode |= S_IFBLK;
Denis Vlasenkoadc772a2008-07-20 17:10:43 +0000373 goto size0;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000374 case '5':
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000375 IF_FEATURE_TAR_OLDGNU_COMPATIBILITY(set_dir:)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000376 file_header->mode |= S_IFDIR;
Denis Vlasenkoadc772a2008-07-20 17:10:43 +0000377 goto size0;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000378 case '6':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000379 file_header->mode |= S_IFIFO;
Denis Vlasenkoadc772a2008-07-20 17:10:43 +0000380 goto size0;
Denis Vlasenkod6772502006-11-24 17:21:44 +0000381#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000382 case 'L':
Denis Vlasenkob5963352006-11-26 01:46:59 +0000383 /* free: paranoia: tar with several consecutive longnames */
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000384 free(p_longname);
Denis Vlasenkob5963352006-11-26 01:46:59 +0000385 /* For paranoia reasons we allocate extra NUL char */
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000386 p_longname = xzalloc(file_header->size + 1);
Denis Vlasenkob5963352006-11-26 01:46:59 +0000387 /* We read ASCIZ string, including NUL */
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000388 xread(archive_handle->src_fd, p_longname, file_header->size);
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000389 archive_handle->offset += file_header->size;
Denis Vlasenkob5963352006-11-26 01:46:59 +0000390 /* return get_header_tar(archive_handle); */
391 /* gcc 4.1.1 didn't optimize it into jump */
392 /* so we will do it ourself, this also saves stack */
393 goto again;
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000394 case 'K':
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000395 free(p_linkname);
396 p_linkname = xzalloc(file_header->size + 1);
397 xread(archive_handle->src_fd, p_linkname, file_header->size);
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000398 archive_handle->offset += file_header->size;
Denis Vlasenkob5963352006-11-26 01:46:59 +0000399 /* return get_header_tar(archive_handle); */
400 goto again;
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000401 case 'D': /* GNU dump dir */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000402 case 'M': /* Continuation of multi volume archive */
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000403 case 'N': /* Old GNU for names > 100 characters */
404 case 'S': /* Sparse file */
405 case 'V': /* Volume header */
Glenn L McGrath6aa52232004-02-17 11:55:06 +0000406#endif
Rob Landleyff6e21c2006-07-06 20:30:19 +0000407 case 'g': /* pax global header */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200408 case 'x': { /* pax extended header */
409 if ((uoff_t)file_header->size > 0xfffff) /* paranoia */
410 goto skip_ext_hdr;
411 process_pax_hdr(archive_handle, file_header->size, (tar.typeflag == 'g'));
412 goto again_after_align;
413 }
J. Tang77a2c512010-03-19 14:48:51 +0100414 skip_ext_hdr:
J. Tang77a2c512010-03-19 14:48:51 +0100415 {
Denis Vlasenkob5963352006-11-26 01:46:59 +0000416 off_t sz;
417 bb_error_msg("warning: skipping header '%c'", tar.typeflag);
418 sz = (file_header->size + 511) & ~(off_t)511;
419 archive_handle->offset += sz;
420 sz >>= 9; /* sz /= 512 but w/o contortions for signed div */
421 while (sz--)
422 xread(archive_handle->src_fd, &tar, 512);
423 /* return get_header_tar(archive_handle); */
424 goto again_after_align;
425 }
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000426 default:
Denis Vlasenkob5963352006-11-26 01:46:59 +0000427 bb_error_msg_and_die("unknown typeflag: 0x%x", tar.typeflag);
Glenn L McGrath6aa52232004-02-17 11:55:06 +0000428 }
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000429
Denis Vlasenkod6772502006-11-24 17:21:44 +0000430#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000431 if (p_longname) {
432 file_header->name = p_longname;
433 p_longname = NULL;
Denis Vlasenkod6772502006-11-24 17:21:44 +0000434 }
Denis Vlasenkoa60936d2008-06-28 05:04:09 +0000435 if (p_linkname) {
436 file_header->link_target = p_linkname;
437 p_linkname = NULL;
Denis Vlasenkod6772502006-11-24 17:21:44 +0000438 }
439#endif
Denys Vlasenko5e29e262011-03-01 17:21:07 +0100440
441 /* Everything up to and including last ".." component is stripped */
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100442 overlapping_strcpy(file_header->name, strip_unsafe_prefix(file_header->name));
Denis Vlasenkod6772502006-11-24 17:21:44 +0000443
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000444 /* Strip trailing '/' in directories */
Denis Vlasenko714701c2006-12-22 00:21:07 +0000445 /* Must be done after mode is set as '/' is used to check if it's a directory */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000446 cp = last_char_is(file_header->name, '/');
Glenn L McGrath3d5828f2003-08-14 02:55:15 +0000447
Glenn L McGrath8e940982002-11-04 23:47:31 +0000448 if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
Denis Vlasenko0381d422008-07-10 23:06:00 +0000449 archive_handle->action_header(/*archive_handle->*/ file_header);
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000450 /* Note that we kill the '/' only after action_header() */
451 /* (like GNU tar 1.15.1: verbose mode outputs "dir/dir/") */
Denys Vlasenko02365a62010-04-09 10:52:52 +0200452 if (cp)
453 *cp = '\0';
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000454 archive_handle->action_data(archive_handle);
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100455 if (archive_handle->accept || archive_handle->reject
456 || (archive_handle->ah_flags & ARCHIVE_REMEMBER_NAMES)
457 ) {
Denys Vlasenkob768aeb2010-06-26 18:22:41 +0200458 llist_add_to(&archive_handle->passed, file_header->name);
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100459 } else /* Caller isn't interested in list of unpacked files */
Denys Vlasenkob768aeb2010-06-26 18:22:41 +0200460 free(file_header->name);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000461 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000462 data_skip(archive_handle);
Denis Vlasenkob5963352006-11-26 01:46:59 +0000463 free(file_header->name);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000464 }
465 archive_handle->offset += file_header->size;
466
Denis Vlasenko75103842007-06-20 14:49:47 +0000467 free(file_header->link_target);
Denys Vlasenkob768aeb2010-06-26 18:22:41 +0200468 /* Do not free(file_header->name)!
469 * It might be inserted in archive_handle->passed - see above */
Denis Vlasenkoe00e5022008-02-14 20:37:54 +0000470#if ENABLE_FEATURE_TAR_UNAME_GNAME
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100471 free(file_header->tar__uname);
472 free(file_header->tar__gname);
Denis Vlasenkoe00e5022008-02-14 20:37:54 +0000473#endif
maxwen27116ba2015-08-14 21:41:28 +0200474 return EXIT_SUCCESS; /* "decoded one header" */
Eric Andersen2276d832002-07-11 11:11:56 +0000475}