"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Rob Landley | 06249fe | 2006-02-20 19:28:53 +0000 | [diff] [blame] | 2 | /* Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 6aa5223 | 2004-02-17 11:55:06 +0000 | [diff] [blame] | 3 | * |
Glenn L McGrath | c9f1fce | 2004-02-20 02:25:18 +0000 | [diff] [blame] | 4 | * FIXME: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 5 | * 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] | 6 | * mapped value instead of the uid/gid values in tar header |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 7 | * |
| 8 | * References: |
| 9 | * GNU tar and star man pages, |
| 10 | * Opengroup's ustar interchange format, |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 11 | * http://www.opengroup.org/onlinepubs/007904975/utilities/pax.html |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 12 | */ |
| 13 | |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 14 | #include "libbb.h" |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 15 | #include "unarchive.h" |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 16 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 17 | /* NB: _DESTROYS_ str[len] character! */ |
| 18 | static unsigned long long getOctal(char *str, int len) |
| 19 | { |
| 20 | unsigned long long v; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 21 | /* NB: leading spaces are allowed. Using strtoull to handle that. |
| 22 | * The downside is that we accept e.g. "-123" too :) |
| 23 | */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 24 | str[len] = '\0'; |
| 25 | v = strtoull(str, &str, 8); |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 26 | if (*str && (!ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY || *str != ' ')) |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 27 | bb_error_msg_and_die("corrupted octal value in tar header"); |
| 28 | return v; |
| 29 | } |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 30 | #define GET_OCTAL(a) getOctal((a), sizeof(a)) |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 31 | |
| 32 | void BUG_tar_header_size(void); |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 33 | char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 34 | { |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 35 | file_header_t *file_header = archive_handle->file_header; |
| 36 | struct { |
| 37 | /* ustar header, Posix 1003.1 */ |
| 38 | char name[100]; /* 0-99 */ |
| 39 | char mode[8]; /* 100-107 */ |
| 40 | char uid[8]; /* 108-115 */ |
| 41 | char gid[8]; /* 116-123 */ |
| 42 | char size[12]; /* 124-135 */ |
| 43 | char mtime[12]; /* 136-147 */ |
| 44 | char chksum[8]; /* 148-155 */ |
| 45 | char typeflag; /* 156-156 */ |
| 46 | char linkname[100]; /* 157-256 */ |
Denis Vlasenko | 8512862 | 2007-11-16 20:35:30 +0000 | [diff] [blame] | 47 | /* POSIX: "ustar" NUL "00" */ |
| 48 | /* GNU tar: "ustar " NUL */ |
Paul Fox | 16aec39 | 2007-11-17 19:11:05 +0000 | [diff] [blame] | 49 | /* Normally it's defined as magic[6] followed by |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 50 | * version[2], but we put them together to simplify code |
Paul Fox | 16aec39 | 2007-11-17 19:11:05 +0000 | [diff] [blame] | 51 | */ |
Denis Vlasenko | 8512862 | 2007-11-16 20:35:30 +0000 | [diff] [blame] | 52 | char magic[8]; /* 257-264 */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 53 | char uname[32]; /* 265-296 */ |
| 54 | char gname[32]; /* 297-328 */ |
| 55 | char devmajor[8]; /* 329-336 */ |
| 56 | char devminor[8]; /* 337-344 */ |
| 57 | char prefix[155]; /* 345-499 */ |
| 58 | char padding[12]; /* 500-512 */ |
| 59 | } tar; |
| 60 | char *cp; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 61 | int i, sum_u, sum; |
| 62 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
| 63 | int sum_s; |
| 64 | #endif |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 65 | int parse_names; |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 66 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 67 | /* Our "private data" */ |
| 68 | #define p_end (*(smallint *)(&archive_handle->ah_priv[0])) |
| 69 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
| 70 | #define p_longname (*(char* *)(&archive_handle->ah_priv[1])) |
| 71 | #define p_linkname (*(char* *)(&archive_handle->ah_priv[2])) |
| 72 | #else |
| 73 | #define p_longname 0 |
| 74 | #define p_linkname 0 |
| 75 | #endif |
| 76 | // if (!archive_handle->ah_priv_inited) { |
| 77 | // archive_handle->ah_priv_inited = 1; |
| 78 | // p_end = 0; |
| 79 | // USE_FEATURE_TAR_GNU_EXTENSIONS(p_longname = NULL;) |
| 80 | // USE_FEATURE_TAR_GNU_EXTENSIONS(p_linkname = NULL;) |
| 81 | // } |
| 82 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 83 | if (sizeof(tar) != 512) |
| 84 | BUG_tar_header_size(); |
| 85 | |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 86 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
| 87 | again: |
| 88 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 89 | /* Align header */ |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 90 | data_align(archive_handle, 512); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 91 | |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 92 | again_after_align: |
| 93 | |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 94 | #if ENABLE_DESKTOP |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 95 | /* to prevent misdetection of bz2 sig */ |
| 96 | *(uint32_t*)(&tar) = 0; |
Denis Vlasenko | 23ffb6a | 2008-02-13 17:52:42 +0000 | [diff] [blame] | 97 | i = full_read(archive_handle->src_fd, &tar, 512); |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 98 | /* If GNU tar sees EOF in above read, it says: |
Denis Vlasenko | 23ffb6a | 2008-02-13 17:52:42 +0000 | [diff] [blame] | 99 | * "tar: A lone zero block at N", where N = kilobyte |
| 100 | * where EOF was met (not EOF block, actual EOF!), |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 101 | * and exits with EXIT_SUCCESS. |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 102 | * We will mimic exit(EXIT_SUCCESS), although we will not mimic |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 103 | * the message and we don't check whether we indeed |
| 104 | * saw zero block directly before this. */ |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 105 | if (i == 0) { |
Denis Vlasenko | 23ffb6a | 2008-02-13 17:52:42 +0000 | [diff] [blame] | 106 | xfunc_error_retval = 0; |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 107 | short_read: |
Denis Vlasenko | 23ffb6a | 2008-02-13 17:52:42 +0000 | [diff] [blame] | 108 | bb_error_msg_and_die("short read"); |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 109 | } |
| 110 | if (i != 512) { |
Denis Vlasenko | 86090e2 | 2008-07-11 08:23:52 +0000 | [diff] [blame] | 111 | USE_FEATURE_TAR_AUTODETECT(goto autodetect;) |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 112 | goto short_read; |
| 113 | } |
| 114 | |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 115 | #else |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 116 | i = 512; |
| 117 | xread(archive_handle->src_fd, &tar, i); |
Denis Vlasenko | 12c0622 | 2008-02-14 08:52:30 +0000 | [diff] [blame] | 118 | #endif |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 119 | archive_handle->offset += i; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 120 | |
| 121 | /* If there is no filename its an empty header */ |
Denis Vlasenko | 05efca9 | 2008-04-29 04:12:58 +0000 | [diff] [blame] | 122 | if (tar.name[0] == 0 && tar.prefix[0] == 0) { |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 123 | if (p_end) { |
| 124 | /* Second consecutive empty header - end of archive. |
Paul Fox | 94ff9f1 | 2005-07-20 19:24:13 +0000 | [diff] [blame] | 125 | * Read until the end to empty the pipe from gz or bz2 |
| 126 | */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 127 | while (full_read(archive_handle->src_fd, &tar, 512) == 512) |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 128 | continue; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 129 | return EXIT_FAILURE; |
Paul Fox | 94ff9f1 | 2005-07-20 19:24:13 +0000 | [diff] [blame] | 130 | } |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 131 | p_end = 1; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 132 | return EXIT_SUCCESS; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 133 | } |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 134 | p_end = 0; |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 135 | |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 136 | /* Check header has valid magic, "ustar" is for the proper tar, |
| 137 | * five NULs are for the old tar format */ |
| 138 | if (strncmp(tar.magic, "ustar", 5) != 0 |
| 139 | && (!ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY |
| 140 | || memcmp(tar.magic, "\0\0\0\0", 5) != 0) |
| 141 | ) { |
| 142 | #if ENABLE_FEATURE_TAR_AUTODETECT |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 143 | char FAST_FUNC (*get_header_ptr)(archive_handle_t *); |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 144 | |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 145 | USE_DESKTOP(autodetect:) |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 146 | /* tar gz/bz autodetect: check for gz/bz2 magic. |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 147 | * If we see the magic, and it is the very first block, |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 148 | * we can switch to get_header_tar_gz/bz2/lzma(). |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 149 | * Needs seekable fd. I wish recv(MSG_PEEK) works |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 150 | * on any fd... */ |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 151 | #if ENABLE_FEATURE_SEAMLESS_GZ |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 152 | if (tar.name[0] == 0x1f && tar.name[1] == (char)0x8b) { /* gzip */ |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 153 | get_header_ptr = get_header_tar_gz; |
| 154 | } else |
Glenn L McGrath | 1d23f3a | 2002-08-13 05:06:43 +0000 | [diff] [blame] | 155 | #endif |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 156 | #if ENABLE_FEATURE_SEAMLESS_BZ2 |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 157 | if (tar.name[0] == 'B' && tar.name[1] == 'Z' |
| 158 | && tar.name[2] == 'h' && isdigit(tar.name[3]) |
| 159 | ) { /* bzip2 */ |
| 160 | get_header_ptr = get_header_tar_bz2; |
| 161 | } else |
| 162 | #endif |
| 163 | goto err; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 164 | /* Two different causes for lseek() != 0: |
| 165 | * unseekable fd (would like to support that too, but...), |
| 166 | * or not first block (false positive, it's not .gz/.bz2!) */ |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 167 | if (lseek(archive_handle->src_fd, -i, SEEK_CUR) != 0) |
Denis Vlasenko | 431a7c9 | 2008-02-19 11:26:28 +0000 | [diff] [blame] | 168 | goto err; |
| 169 | while (get_header_ptr(archive_handle) == EXIT_SUCCESS) |
| 170 | continue; |
| 171 | return EXIT_FAILURE; |
| 172 | err: |
| 173 | #endif /* FEATURE_TAR_AUTODETECT */ |
| 174 | bb_error_msg_and_die("invalid tar magic"); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 175 | } |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 176 | |
| 177 | /* Do checksum on headers. |
| 178 | * POSIX says that checksum is done on unsigned bytes, but |
Denis Vlasenko | 940494f | 2007-03-04 18:09:50 +0000 | [diff] [blame] | 179 | * Sun and HP-UX gets it wrong... more details in |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 180 | * GNU tar source. */ |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 181 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
| 182 | sum_s = ' ' * sizeof(tar.chksum); |
| 183 | #endif |
| 184 | sum_u = ' ' * sizeof(tar.chksum); |
Denis Vlasenko | b71c668 | 2007-07-21 15:08:09 +0000 | [diff] [blame] | 185 | for (i = 0; i < 148; i++) { |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 186 | sum_u += ((unsigned char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 187 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 188 | sum_s += ((signed char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 189 | #endif |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 190 | } |
Denis Vlasenko | b71c668 | 2007-07-21 15:08:09 +0000 | [diff] [blame] | 191 | for (i = 156; i < 512; i++) { |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 192 | sum_u += ((unsigned char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 193 | #if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY |
Denis Vlasenko | dcbd51d | 2007-03-03 20:06:59 +0000 | [diff] [blame] | 194 | sum_s += ((signed char*)&tar)[i]; |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 195 | #endif |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 196 | } |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 197 | #if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY |
| 198 | sum = strtoul(tar.chksum, &cp, 8); |
| 199 | if ((*cp && *cp != ' ') |
| 200 | || (sum_u != sum USE_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) |
| 201 | ) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 202 | bb_error_msg_and_die("invalid tar header checksum"); |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 203 | } |
Denis Vlasenko | a80b4a0 | 2007-06-21 12:41:59 +0000 | [diff] [blame] | 204 | #else |
| 205 | /* This field does not need special treatment (getOctal) */ |
| 206 | sum = xstrtoul(tar.chksum, 8); |
| 207 | if (sum_u != sum USE_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) { |
| 208 | bb_error_msg_and_die("invalid tar header checksum"); |
| 209 | } |
| 210 | #endif |
Glenn L McGrath | 95ebf61 | 2001-10-25 14:18:08 +0000 | [diff] [blame] | 211 | |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 212 | /* 0 is reserved for high perf file, treat as normal file */ |
| 213 | if (!tar.typeflag) tar.typeflag = '0'; |
| 214 | parse_names = (tar.typeflag >= '0' && tar.typeflag <= '7'); |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 215 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 216 | /* getOctal trashes subsequent field, therefore we call it |
| 217 | * on fields in reverse order */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 218 | if (tar.devmajor[0]) { |
Denis Vlasenko | d93400b | 2008-04-29 03:54:16 +0000 | [diff] [blame] | 219 | char t = tar.prefix[0]; |
| 220 | /* we trash prefix[0] here, but we DO need it later! */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 221 | unsigned minor = GET_OCTAL(tar.devminor); |
| 222 | unsigned major = GET_OCTAL(tar.devmajor); |
| 223 | file_header->device = makedev(major, minor); |
Denis Vlasenko | d93400b | 2008-04-29 03:54:16 +0000 | [diff] [blame] | 224 | tar.prefix[0] = t; |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 225 | } |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 226 | file_header->link_target = NULL; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 227 | if (!p_linkname && parse_names && tar.linkname[0]) { |
Denis Vlasenko | bc1918a | 2008-04-15 01:17:50 +0000 | [diff] [blame] | 228 | file_header->link_target = xstrndup(tar.linkname, sizeof(tar.linkname)); |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 229 | /* FIXME: what if we have non-link object with link_target? */ |
| 230 | /* Will link_target be free()ed? */ |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 231 | } |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 232 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
| 233 | file_header->uname = tar.uname[0] ? xstrndup(tar.uname, sizeof(tar.uname)) : NULL; |
| 234 | file_header->gname = tar.gname[0] ? xstrndup(tar.gname, sizeof(tar.gname)) : NULL; |
| 235 | #endif |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 236 | file_header->mtime = GET_OCTAL(tar.mtime); |
| 237 | file_header->size = GET_OCTAL(tar.size); |
| 238 | file_header->gid = GET_OCTAL(tar.gid); |
| 239 | file_header->uid = GET_OCTAL(tar.uid); |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 240 | /* Set bits 0-11 of the files mode */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 241 | file_header->mode = 07777 & GET_OCTAL(tar.mode); |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 242 | |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 243 | file_header->name = NULL; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 244 | if (!p_longname && parse_names) { |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 245 | /* we trash mode[0] here, it's ok */ |
Denis Vlasenko | bc1918a | 2008-04-15 01:17:50 +0000 | [diff] [blame] | 246 | //tar.name[sizeof(tar.name)] = '\0'; - gcc 4.3.0 would complain |
| 247 | tar.mode[0] = '\0'; |
Denis Vlasenko | 87cd4a8 | 2006-11-25 23:47:32 +0000 | [diff] [blame] | 248 | if (tar.prefix[0]) { |
| 249 | /* and padding[0] */ |
Denis Vlasenko | bc1918a | 2008-04-15 01:17:50 +0000 | [diff] [blame] | 250 | //tar.prefix[sizeof(tar.prefix)] = '\0'; - gcc 4.3.0 would complain |
| 251 | tar.padding[0] = '\0'; |
Denis Vlasenko | cf30cc8 | 2006-11-24 14:53:18 +0000 | [diff] [blame] | 252 | file_header->name = concat_path_file(tar.prefix, tar.name); |
Denis Vlasenko | 87cd4a8 | 2006-11-25 23:47:32 +0000 | [diff] [blame] | 253 | } else |
Denis Vlasenko | cf30cc8 | 2006-11-24 14:53:18 +0000 | [diff] [blame] | 254 | file_header->name = xstrdup(tar.name); |
| 255 | } |
| 256 | |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 257 | /* Set bits 12-15 of the files mode */ |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 258 | /* (typeflag was not trashed because chksum does not use getOctal) */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 259 | switch (tar.typeflag) { |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 260 | /* busybox identifies hard links as being regular files with 0 size and a link name */ |
| 261 | case '1': |
Glenn L McGrath | 916ba53 | 2004-02-20 02:34:42 +0000 | [diff] [blame] | 262 | file_header->mode |= S_IFREG; |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 263 | break; |
Glenn L McGrath | c9f1fce | 2004-02-20 02:25:18 +0000 | [diff] [blame] | 264 | case '7': |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 265 | /* case 0: */ |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 266 | case '0': |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 267 | #if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY |
Glenn L McGrath | 87af49f | 2003-09-09 17:41:03 +0000 | [diff] [blame] | 268 | if (last_char_is(file_header->name, '/')) { |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 269 | goto set_dir; |
| 270 | } |
Glenn L McGrath | c9f1fce | 2004-02-20 02:25:18 +0000 | [diff] [blame] | 271 | #endif |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 272 | file_header->mode |= S_IFREG; |
Glenn L McGrath | 99b1254 | 2002-08-22 17:47:09 +0000 | [diff] [blame] | 273 | break; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 274 | case '2': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 275 | file_header->mode |= S_IFLNK; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 276 | /* have seen tarballs with size field containing |
| 277 | * the size of the link target's name */ |
| 278 | size0: |
| 279 | file_header->size = 0; |
Glenn L McGrath | 99b1254 | 2002-08-22 17:47:09 +0000 | [diff] [blame] | 280 | break; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 281 | case '3': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 282 | file_header->mode |= S_IFCHR; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 283 | goto size0; /* paranoia */ |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 284 | case '4': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 285 | file_header->mode |= S_IFBLK; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 286 | goto size0; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 287 | case '5': |
Denis Vlasenko | 68a192c | 2008-07-22 19:38:57 +0000 | [diff] [blame] | 288 | USE_FEATURE_TAR_OLDGNU_COMPATIBILITY(set_dir:) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 289 | file_header->mode |= S_IFDIR; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 290 | goto size0; |
Glenn L McGrath | 21110a0 | 2003-01-28 01:45:48 +0000 | [diff] [blame] | 291 | case '6': |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 292 | file_header->mode |= S_IFIFO; |
Denis Vlasenko | adc772a | 2008-07-20 17:10:43 +0000 | [diff] [blame] | 293 | goto size0; |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 294 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 295 | case 'L': |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 296 | /* free: paranoia: tar with several consecutive longnames */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 297 | free(p_longname); |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 298 | /* For paranoia reasons we allocate extra NUL char */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 299 | p_longname = xzalloc(file_header->size + 1); |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 300 | /* We read ASCIZ string, including NUL */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 301 | xread(archive_handle->src_fd, p_longname, file_header->size); |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 302 | archive_handle->offset += file_header->size; |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 303 | /* return get_header_tar(archive_handle); */ |
| 304 | /* gcc 4.1.1 didn't optimize it into jump */ |
| 305 | /* so we will do it ourself, this also saves stack */ |
| 306 | goto again; |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 307 | case 'K': |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 308 | free(p_linkname); |
| 309 | p_linkname = xzalloc(file_header->size + 1); |
| 310 | xread(archive_handle->src_fd, p_linkname, file_header->size); |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 311 | archive_handle->offset += file_header->size; |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 312 | /* return get_header_tar(archive_handle); */ |
| 313 | goto again; |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 314 | case 'D': /* GNU dump dir */ |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 315 | case 'M': /* Continuation of multi volume archive */ |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 316 | case 'N': /* Old GNU for names > 100 characters */ |
| 317 | case 'S': /* Sparse file */ |
| 318 | case 'V': /* Volume header */ |
Glenn L McGrath | 6aa5223 | 2004-02-17 11:55:06 +0000 | [diff] [blame] | 319 | #endif |
Rob Landley | ff6e21c | 2006-07-06 20:30:19 +0000 | [diff] [blame] | 320 | case 'g': /* pax global header */ |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 321 | case 'x': { /* pax extended header */ |
| 322 | off_t sz; |
| 323 | bb_error_msg("warning: skipping header '%c'", tar.typeflag); |
| 324 | sz = (file_header->size + 511) & ~(off_t)511; |
| 325 | archive_handle->offset += sz; |
| 326 | sz >>= 9; /* sz /= 512 but w/o contortions for signed div */ |
| 327 | while (sz--) |
| 328 | xread(archive_handle->src_fd, &tar, 512); |
| 329 | /* return get_header_tar(archive_handle); */ |
| 330 | goto again_after_align; |
| 331 | } |
Glenn L McGrath | b0e163a | 2004-02-19 08:48:30 +0000 | [diff] [blame] | 332 | default: |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 333 | bb_error_msg_and_die("unknown typeflag: 0x%x", tar.typeflag); |
Glenn L McGrath | 6aa5223 | 2004-02-17 11:55:06 +0000 | [diff] [blame] | 334 | } |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 335 | |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 336 | #if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 337 | if (p_longname) { |
| 338 | file_header->name = p_longname; |
| 339 | p_longname = NULL; |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 340 | } |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 341 | if (p_linkname) { |
| 342 | file_header->link_target = p_linkname; |
| 343 | p_linkname = NULL; |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 344 | } |
| 345 | #endif |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 346 | if (strncmp(file_header->name, "/../"+1, 3) == 0 |
Denis Vlasenko | c1660fe | 2006-11-26 15:42:03 +0000 | [diff] [blame] | 347 | || strstr(file_header->name, "/../") |
| 348 | ) { |
| 349 | bb_error_msg_and_die("name with '..' encountered: '%s'", |
| 350 | file_header->name); |
| 351 | } |
Denis Vlasenko | d677250 | 2006-11-24 17:21:44 +0000 | [diff] [blame] | 352 | |
Denis Vlasenko | 376ce1e | 2006-11-24 14:51:01 +0000 | [diff] [blame] | 353 | /* Strip trailing '/' in directories */ |
Denis Vlasenko | 714701c | 2006-12-22 00:21:07 +0000 | [diff] [blame] | 354 | /* 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] | 355 | cp = last_char_is(file_header->name, '/'); |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 356 | |
Glenn L McGrath | 8e94098 | 2002-11-04 23:47:31 +0000 | [diff] [blame] | 357 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 358 | archive_handle->action_header(/*archive_handle->*/ file_header); |
Denis Vlasenko | cf30cc8 | 2006-11-24 14:53:18 +0000 | [diff] [blame] | 359 | /* Note that we kill the '/' only after action_header() */ |
| 360 | /* (like GNU tar 1.15.1: verbose mode outputs "dir/dir/") */ |
| 361 | if (cp) *cp = '\0'; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 362 | archive_handle->ah_flags |= ARCHIVE_EXTRACT_QUIET; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 363 | archive_handle->action_data(archive_handle); |
Rob Landley | 8bb5078 | 2006-05-26 23:44:51 +0000 | [diff] [blame] | 364 | llist_add_to(&(archive_handle->passed), file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 365 | } else { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 366 | data_skip(archive_handle); |
Denis Vlasenko | b596335 | 2006-11-26 01:46:59 +0000 | [diff] [blame] | 367 | free(file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 368 | } |
| 369 | archive_handle->offset += file_header->size; |
| 370 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 371 | free(file_header->link_target); |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 372 | /* Do not free(file_header->name)! (why?) */ |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 373 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
| 374 | free(file_header->uname); |
| 375 | free(file_header->gname); |
| 376 | #endif |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 377 | return EXIT_SUCCESS; |
Eric Andersen | 2276d83 | 2002-07-11 11:11:56 +0000 | [diff] [blame] | 378 | } |