Dont unlink when testing !
[oweals/busybox.git] / archival / libunarchive / get_header_tar.c
1 /*
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.
15  */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include "unarchive.h"
21 #include "libbb.h"
22
23 #ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
24 static char *longname = NULL;
25 static char *linkname = NULL;
26 #endif
27
28 extern char get_header_tar(archive_handle_t *archive_handle)
29 {
30         file_header_t *file_header = archive_handle->file_header;
31         union {
32                 unsigned char raw[512];
33                 struct {
34                         char name[100]; /*   0-99 */
35                         char mode[8];   /* 100-107 */
36                         char uid[8];    /* 108-115 */
37                         char gid[8];    /* 116-123 */
38                         char size[12];  /* 124-135 */
39                         char mtime[12]; /* 136-147 */
40                         char chksum[8]; /* 148-155 */
41                         char typeflag;  /* 156-156 */
42                         char linkname[100];     /* 157-256 */
43                         char magic[6];  /* 257-262 */
44                         char version[2];        /* 263-264 */
45                         char uname[32]; /* 265-296 */
46                         char gname[32]; /* 297-328 */
47                         char devmajor[8];       /* 329-336 */
48                         char devminor[8];       /* 337-344 */
49                         char prefix[155];       /* 345-499 */
50                         char padding[12];       /* 500-512 */
51                 } formated;
52         } tar;
53         long sum = 0;
54         long i;
55         char *tmp;
56
57         /* Align header */
58         data_align(archive_handle, 512);
59
60         if (archive_xread(archive_handle, tar.raw, 512) != 512) {
61                 /* Assume end of file */
62                 return(EXIT_FAILURE);
63         }
64         archive_handle->offset += 512;
65
66         /* If there is no filename its an empty header */
67         if (tar.formated.name[0] == 0) {
68                 return(EXIT_SUCCESS);
69         }
70
71         /* Check header has valid magic, "ustar" is for the proper tar
72          * 0's are for the old tar format
73          */
74         if (strncmp(tar.formated.magic, "ustar", 5) != 0) {
75 #ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
76                 if (strncmp(tar.formated.magic, "\0\0\0\0\0", 5) != 0)
77 #endif
78                         bb_error_msg_and_die("Invalid tar magic");
79         }
80         /* Do checksum on headers */
81         for (i =  0; i < 148 ; i++) {
82                 sum += tar.raw[i];
83         }
84         sum += ' ' * 8;
85         for (i =  156; i < 512 ; i++) {
86                 sum += tar.raw[i];
87         }
88         if (sum != strtol(tar.formated.chksum, NULL, 8)) {
89                 bb_error_msg("Invalid tar header checksum");
90                 return(EXIT_FAILURE);
91         }
92
93 #ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
94         if (longname) {
95                 file_header->name = longname;
96                 longname = NULL;
97         }
98         else if (linkname) {
99                 file_header->name = linkname;
100                 linkname = NULL;
101         } else
102 #endif
103         if (tar.formated.prefix[0] == 0) {
104                 file_header->name = strdup(tar.formated.name);
105         } else {
106                 file_header->name = concat_path_file(tar.formated.prefix, tar.formated.name);
107         }
108         tmp = last_char_is(archive_handle->file_header->name, '/');
109         if (tmp) {
110                 *tmp = '\0';
111         }
112
113         file_header->mode = strtol(tar.formated.mode, NULL, 8);
114         file_header->uid = strtol(tar.formated.uid, NULL, 8);
115         file_header->gid = strtol(tar.formated.gid, NULL, 8);
116         file_header->size = strtol(tar.formated.size, NULL, 8);
117         file_header->mtime = strtol(tar.formated.mtime, NULL, 8);
118         file_header->link_name = (tar.formated.linkname[0] != '\0') ? 
119             bb_xstrdup(tar.formated.linkname) : NULL;
120         file_header->device = (dev_t) ((strtol(tar.formated.devmajor, NULL, 8) << 8) +
121                                  strtol(tar.formated.devminor, NULL, 8));
122
123 #if defined CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY || defined CONFIG_FEATURE_TAR_GNU_EXTENSIONS
124         /* Fix mode, used by the old format */
125         switch (tar.formated.typeflag) {
126 # ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
127         case 0:
128         case '0':
129                 file_header->mode |= S_IFREG;
130                 break;
131 #if 0
132         /* hard links are detected as entries with 0 size, a link name, 
133          * and not being a symlink, hence we have nothing to do here */
134         case '1':
135                 break;
136 #endif
137         case '2':
138                 file_header->mode |= S_IFLNK;
139                 break;
140         case '3':
141                 file_header->mode |= S_IFCHR;
142                 break;
143         case '4':
144                 file_header->mode |= S_IFBLK;
145                 break;
146         case '5':
147                 file_header->mode |= S_IFDIR;
148                 break;
149         case '6':
150                 file_header->mode |= S_IFIFO;
151                 break;
152 # endif
153 # ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
154         case 'L': {
155                         longname = xmalloc(file_header->size + 1);
156                         archive_xread_all(archive_handle, longname, file_header->size);
157                         longname[file_header->size] = '\0';
158                         archive_handle->offset += file_header->size;
159
160                         return(get_header_tar(archive_handle));
161                 }
162         case 'K': {
163                         linkname = xmalloc(file_header->size + 1);
164                         archive_xread_all(archive_handle, linkname, file_header->size);
165                         linkname[file_header->size] = '\0';
166                         archive_handle->offset += file_header->size;
167
168                         file_header->name = linkname;
169                         return(get_header_tar(archive_handle));
170                 }
171         case 'D':
172         case 'M':
173         case 'N':
174         case 'S':
175         case 'V':
176                 bb_error_msg("Ignoring GNU extension type %c", tar.formated.typeflag);
177 # endif
178         }
179 #endif
180
181         if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
182                 archive_handle->action_header(archive_handle->file_header);
183                 archive_handle->flags |= ARCHIVE_EXTRACT_QUIET;
184                 archive_handle->action_data(archive_handle);
185                 archive_handle->passed = llist_add_to(archive_handle->passed, archive_handle->file_header->name);
186         } else {
187                 data_skip(archive_handle);                      
188         }
189         archive_handle->offset += file_header->size;
190
191         return(EXIT_SUCCESS);
192 }