blob: 659b75d9b26a00006148b210dd3e64ccad297c77 [file] [log] [blame]
Glenn L McGrath95ebf612001-10-25 14:18:08 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Glenn L McGrath6aa52232004-02-17 11:55:06 +000015 *
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +000016 * FIXME:
Eric Andersenaff114c2004-04-14 17:51:38 +000017 * In privileged mode if uname and gname map to a uid and gid then use the
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +000018 * mapped value instead of the uid/gid values in tar header
Glenn L McGrathb0e163a2004-02-19 08:48:30 +000019 *
20 * References:
21 * GNU tar and star man pages,
22 * Opengroup's ustar interchange format,
23 * http://www.opengroup.org/onlinepubs/007904975/utilities/pax.html
Glenn L McGrath95ebf612001-10-25 14:18:08 +000024 */
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
Rob Landley161aae72005-10-11 20:17:30 +000029#include <sys/sysmacros.h> /* For makedev */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000030#include "unarchive.h"
31#include "libbb.h"
32
Glenn L McGrath21110a02003-01-28 01:45:48 +000033#ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
Glenn L McGrathb7a76df2002-11-23 10:44:47 +000034static char *longname = NULL;
35static char *linkname = NULL;
36#endif
37
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000038extern char get_header_tar(archive_handle_t *archive_handle)
Glenn L McGrath95ebf612001-10-25 14:18:08 +000039{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000040 file_header_t *file_header = archive_handle->file_header;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000041 union {
Glenn L McGrathef91bf62003-09-12 06:31:28 +000042 /* ustar header, Posix 1003.1 */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000043 unsigned char raw[512];
44 struct {
Glenn L McGrath99b12542002-08-22 17:47:09 +000045 char name[100]; /* 0-99 */
46 char mode[8]; /* 100-107 */
47 char uid[8]; /* 108-115 */
48 char gid[8]; /* 116-123 */
49 char size[12]; /* 124-135 */
50 char mtime[12]; /* 136-147 */
51 char chksum[8]; /* 148-155 */
52 char typeflag; /* 156-156 */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000053 char linkname[100]; /* 157-256 */
Glenn L McGrath99b12542002-08-22 17:47:09 +000054 char magic[6]; /* 257-262 */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000055 char version[2]; /* 263-264 */
Glenn L McGrath99b12542002-08-22 17:47:09 +000056 char uname[32]; /* 265-296 */
57 char gname[32]; /* 297-328 */
Glenn L McGrath95ebf612001-10-25 14:18:08 +000058 char devmajor[8]; /* 329-336 */
59 char devminor[8]; /* 337-344 */
60 char prefix[155]; /* 345-499 */
61 char padding[12]; /* 500-512 */
62 } formated;
63 } tar;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000064 long sum = 0;
65 long i;
Paul Fox94ff9f12005-07-20 19:24:13 +000066 static int end = 0;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000067
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000068 /* Align header */
Glenn L McGrath237ae422002-11-03 14:05:15 +000069 data_align(archive_handle, 512);
Glenn L McGrath95ebf612001-10-25 14:18:08 +000070
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000071 if (bb_full_read(archive_handle->src_fd, tar.raw, 512) != 512) {
Glenn L McGrath7f2a9532002-11-05 02:56:57 +000072 /* Assume end of file */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000073 return(EXIT_FAILURE);
Glenn L McGrath95ebf612001-10-25 14:18:08 +000074 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000075 archive_handle->offset += 512;
76
77 /* If there is no filename its an empty header */
78 if (tar.formated.name[0] == 0) {
Paul Fox94ff9f12005-07-20 19:24:13 +000079 if (end) {
80 /* This is the second consecutive empty header! End of archive!
81 * Read until the end to empty the pipe from gz or bz2
82 */
83 while (bb_full_read(archive_handle->src_fd, tar.raw, 512) == 512);
84 return(EXIT_FAILURE);
85 }
86 end = 1;
Glenn L McGrathe57feeb2003-11-14 12:57:14 +000087 return(EXIT_SUCCESS);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000088 }
Paul Fox94ff9f12005-07-20 19:24:13 +000089 end = 0;
Glenn L McGrath95ebf612001-10-25 14:18:08 +000090
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +000091 /* Check header has valid magic, "ustar" is for the proper tar
92 * 0's are for the old tar format
Glenn L McGrath95ebf612001-10-25 14:18:08 +000093 */
94 if (strncmp(tar.formated.magic, "ustar", 5) != 0) {
Glenn L McGrath21110a02003-01-28 01:45:48 +000095#ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +000096 if (strncmp(tar.formated.magic, "\0\0\0\0\0", 5) != 0)
97#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 bb_error_msg_and_die("Invalid tar magic");
Glenn L McGrath95ebf612001-10-25 14:18:08 +000099 }
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000100 /* Do checksum on headers */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000101 for (i = 0; i < 148 ; i++) {
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000102 sum += tar.raw[i];
103 }
104 sum += ' ' * 8;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000105 for (i = 156; i < 512 ; i++) {
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000106 sum += tar.raw[i];
107 }
108 if (sum != strtol(tar.formated.chksum, NULL, 8)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 bb_error_msg("Invalid tar header checksum");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000110 return(EXIT_FAILURE);
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000111 }
112
Glenn L McGrath21110a02003-01-28 01:45:48 +0000113#ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
Glenn L McGrathb7a76df2002-11-23 10:44:47 +0000114 if (longname) {
115 file_header->name = longname;
116 longname = NULL;
117 }
118 else if (linkname) {
119 file_header->name = linkname;
120 linkname = NULL;
121 } else
122#endif
Glenn L McGrath75762702002-08-22 11:50:31 +0000123 if (tar.formated.prefix[0] == 0) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000124 file_header->name = strdup(tar.formated.name);
Glenn L McGrath75762702002-08-22 11:50:31 +0000125 } else {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000126 file_header->name = concat_path_file(tar.formated.prefix, tar.formated.name);
Glenn L McGrath75762702002-08-22 11:50:31 +0000127 }
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000128
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000129 file_header->uid = strtol(tar.formated.uid, NULL, 8);
130 file_header->gid = strtol(tar.formated.gid, NULL, 8);
131 file_header->size = strtol(tar.formated.size, NULL, 8);
132 file_header->mtime = strtol(tar.formated.mtime, NULL, 8);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000133 file_header->link_name = (tar.formated.linkname[0] != '\0') ?
Manuel Novoa III cad53642003-03-19 09:13:01 +0000134 bb_xstrdup(tar.formated.linkname) : NULL;
Eric Andersen4f807a82004-07-26 09:11:12 +0000135 file_header->device = makedev(strtol(tar.formated.devmajor, NULL, 8),
136 strtol(tar.formated.devminor, NULL, 8));
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +0000137
Glenn L McGrath916ba532004-02-20 02:34:42 +0000138 /* Set bits 0-11 of the files mode */
139 file_header->mode = 07777 & strtol(tar.formated.mode, NULL, 8);
140
141 /* Set bits 12-15 of the files mode */
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +0000142 switch (tar.formated.typeflag) {
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000143 /* busybox identifies hard links as being regular files with 0 size and a link name */
144 case '1':
Glenn L McGrath916ba532004-02-20 02:34:42 +0000145 file_header->mode |= S_IFREG;
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000146 break;
147 case 'x':
148 case 'g':
149 bb_error_msg_and_die("pax is not tar");
150 break;
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +0000151 case '7':
152 /* Reserved for high performance files, treat as normal file */
Glenn L McGrath99b12542002-08-22 17:47:09 +0000153 case 0:
Glenn L McGrath21110a02003-01-28 01:45:48 +0000154 case '0':
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +0000155#ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
Glenn L McGrath87af49f2003-09-09 17:41:03 +0000156 if (last_char_is(file_header->name, '/')) {
157 file_header->mode |= S_IFDIR;
Glenn L McGrathc9f1fce2004-02-20 02:25:18 +0000158 } else
159#endif
Glenn L McGrath87af49f2003-09-09 17:41:03 +0000160 file_header->mode |= S_IFREG;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000161 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000162 case '2':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000163 file_header->mode |= S_IFLNK;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000164 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000165 case '3':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000166 file_header->mode |= S_IFCHR;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000167 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000168 case '4':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000169 file_header->mode |= S_IFBLK;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000170 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000171 case '5':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000172 file_header->mode |= S_IFDIR;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000173 break;
Glenn L McGrath21110a02003-01-28 01:45:48 +0000174 case '6':
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000175 file_header->mode |= S_IFIFO;
Glenn L McGrath99b12542002-08-22 17:47:09 +0000176 break;
Glenn L McGrath6aa52232004-02-17 11:55:06 +0000177#ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +0000178 case 'L': {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000179 longname = xmalloc(file_header->size + 1);
Glenn L McGrath237ae422002-11-03 14:05:15 +0000180 archive_xread_all(archive_handle, longname, file_header->size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000181 longname[file_header->size] = '\0';
182 archive_handle->offset += file_header->size;
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +0000183
Glenn L McGrathb7a76df2002-11-23 10:44:47 +0000184 return(get_header_tar(archive_handle));
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +0000185 }
186 case 'K': {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000187 linkname = xmalloc(file_header->size + 1);
Glenn L McGrath237ae422002-11-03 14:05:15 +0000188 archive_xread_all(archive_handle, linkname, file_header->size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000189 linkname[file_header->size] = '\0';
190 archive_handle->offset += file_header->size;
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +0000191
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000192 file_header->name = linkname;
Glenn L McGrathb7a76df2002-11-23 10:44:47 +0000193 return(get_header_tar(archive_handle));
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +0000194 }
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000195 case 'D': /* GNU dump dir */
196 case 'M': /* Continuation of multi volume archive*/
197 case 'N': /* Old GNU for names > 100 characters */
198 case 'S': /* Sparse file */
199 case 'V': /* Volume header */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 bb_error_msg("Ignoring GNU extension type %c", tar.formated.typeflag);
Glenn L McGrath6aa52232004-02-17 11:55:06 +0000201#endif
Glenn L McGrathb0e163a2004-02-19 08:48:30 +0000202 default:
203 bb_error_msg("Unknown typeflag: 0x%x", tar.formated.typeflag);
Glenn L McGrath6aa52232004-02-17 11:55:06 +0000204 }
205 { /* Strip trailing '/' in directories */
206 /* Must be done after mode is set as '/' is used to check if its a directory */
207 char *tmp = last_char_is(file_header->name, '/');
208 if (tmp) {
209 *tmp = '\0';
210 }
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +0000211 }
Glenn L McGrath3d5828f2003-08-14 02:55:15 +0000212
Glenn L McGrath8e940982002-11-04 23:47:31 +0000213 if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000214 archive_handle->action_header(archive_handle->file_header);
215 archive_handle->flags |= ARCHIVE_EXTRACT_QUIET;
216 archive_handle->action_data(archive_handle);
Glenn L McGrathf074afc2003-11-17 21:58:00 +0000217 archive_handle->passed = llist_add_to(archive_handle->passed, file_header->name);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000218 } else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000219 data_skip(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000220 }
221 archive_handle->offset += file_header->size;
222
Glenn L McGrath54ac0572003-11-15 00:24:43 +0000223 free(file_header->link_name);
224
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000225 return(EXIT_SUCCESS);
Eric Andersen2276d832002-07-11 11:11:56 +0000226}