Standardize on the vi editing directives being on the first line.
[oweals/busybox.git] / archival / libunarchive / get_header_tar.c
1 /* vi: set sw=4 ts=4: */
2 /* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
3  *
4  *  FIXME:
5  *    In privileged mode if uname and gname map to a uid and gid then use the
6  *    mapped value instead of the uid/gid values in tar header
7  *
8  *  References:
9  *    GNU tar and star man pages,
10  *    Opengroup's ustar interchange format,
11  *      http://www.opengroup.org/onlinepubs/007904975/utilities/pax.html
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <sys/sysmacros.h>      /* For makedev */
18 #include "unarchive.h"
19 #include "libbb.h"
20
21 #ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
22 static char *longname = NULL;
23 static char *linkname = NULL;
24 #endif
25
26 char get_header_tar(archive_handle_t *archive_handle)
27 {
28         file_header_t *file_header = archive_handle->file_header;
29         union {
30                 /* ustar header, Posix 1003.1 */
31                 unsigned char raw[512];
32                 struct {
33                         char name[100]; /*   0-99 */
34                         char mode[8];   /* 100-107 */
35                         char uid[8];    /* 108-115 */
36                         char gid[8];    /* 116-123 */
37                         char size[12];  /* 124-135 */
38                         char mtime[12]; /* 136-147 */
39                         char chksum[8]; /* 148-155 */
40                         char typeflag;  /* 156-156 */
41                         char linkname[100];     /* 157-256 */
42                         char magic[6];  /* 257-262 */
43                         char version[2];        /* 263-264 */
44                         char uname[32]; /* 265-296 */
45                         char gname[32]; /* 297-328 */
46                         char devmajor[8];       /* 329-336 */
47                         char devminor[8];       /* 337-344 */
48                         char prefix[155];       /* 345-499 */
49                         char padding[12];       /* 500-512 */
50                 } formated;
51         } tar;
52         long sum = 0;
53         long i;
54         static int end = 0;
55
56         /* Align header */
57         data_align(archive_handle, 512);
58
59         if (bb_full_read(archive_handle->src_fd, tar.raw, 512) != 512) {
60                 /* Assume end of file */
61                 bb_error_msg_and_die("Short header");
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                 if (end) {
69                         /* This is the second consecutive empty header! End of archive!
70                          * Read until the end to empty the pipe from gz or bz2
71                          */
72                         while (bb_full_read(archive_handle->src_fd, tar.raw, 512) == 512);
73                         return(EXIT_FAILURE);
74                 }
75                 end = 1;
76                 return(EXIT_SUCCESS);
77         }
78         end = 0;
79
80         /* Check header has valid magic, "ustar" is for the proper tar
81          * 0's are for the old tar format
82          */
83         if (strncmp(tar.formated.magic, "ustar", 5) != 0) {
84 #ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
85                 if (strncmp(tar.formated.magic, "\0\0\0\0\0", 5) != 0)
86 #endif
87                         bb_error_msg_and_die("Invalid tar magic");
88         }
89         /* Do checksum on headers */
90         for (i =  0; i < 148 ; i++) {
91                 sum += tar.raw[i];
92         }
93         sum += ' ' * 8;
94         for (i =  156; i < 512 ; i++) {
95                 sum += tar.raw[i];
96         }
97         if (sum != strtol(tar.formated.chksum, NULL, 8)) {
98                 bb_error_msg("Invalid tar header checksum");
99                 return(EXIT_FAILURE);
100         }
101
102 #ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
103         if (longname) {
104                 file_header->name = longname;
105                 longname = NULL;
106         }
107         else if (linkname) {
108                 file_header->name = linkname;
109                 linkname = NULL;
110         } else
111 #endif
112         {
113                 file_header->name = bb_xstrndup(tar.formated.name,100);
114
115                 if (tar.formated.prefix[0]) {
116                         char *temp = file_header->name;
117                         file_header->name = concat_path_file(tar.formated.prefix, temp);
118                         free(temp);
119                 }
120         }
121
122         file_header->uid = strtol(tar.formated.uid, NULL, 8);
123         file_header->gid = strtol(tar.formated.gid, NULL, 8);
124         file_header->size = strtol(tar.formated.size, NULL, 8);
125         file_header->mtime = strtol(tar.formated.mtime, NULL, 8);
126         file_header->link_name = (tar.formated.linkname[0] != '\0') ?
127             bb_xstrdup(tar.formated.linkname) : NULL;
128         file_header->device = makedev(strtol(tar.formated.devmajor, NULL, 8),
129                 strtol(tar.formated.devminor, NULL, 8));
130
131         /* Set bits 0-11 of the files mode */
132         file_header->mode = 07777 & strtol(tar.formated.mode, NULL, 8);
133
134         /* Set bits 12-15 of the files mode */
135         switch (tar.formated.typeflag) {
136         /* busybox identifies hard links as being regular files with 0 size and a link name */
137         case '1':
138                 file_header->mode |= S_IFREG;
139                 break;
140         case 'x':
141         case 'g':
142                 bb_error_msg_and_die("pax is not tar");
143                 break;
144         case '7':
145                 /* Reserved for high performance files, treat as normal file */
146         case 0:
147         case '0':
148 #ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
149                 if (last_char_is(file_header->name, '/')) {
150                         file_header->mode |= S_IFDIR;
151                 } else
152 #endif
153                         file_header->mode |= S_IFREG;
154                 break;
155         case '2':
156                 file_header->mode |= S_IFLNK;
157                 break;
158         case '3':
159                 file_header->mode |= S_IFCHR;
160                 break;
161         case '4':
162                 file_header->mode |= S_IFBLK;
163                 break;
164         case '5':
165                 file_header->mode |= S_IFDIR;
166                 break;
167         case '6':
168                 file_header->mode |= S_IFIFO;
169                 break;
170 #ifdef CONFIG_FEATURE_TAR_GNU_EXTENSIONS
171         case 'L': {
172                         longname = xzalloc(file_header->size + 1);
173                         archive_xread_all(archive_handle, longname, file_header->size);
174                         archive_handle->offset += file_header->size;
175
176                         return(get_header_tar(archive_handle));
177                 }
178         case 'K': {
179                         linkname = xzalloc(file_header->size + 1);
180                         archive_xread_all(archive_handle, linkname, file_header->size);
181                         archive_handle->offset += file_header->size;
182
183                         file_header->name = linkname;
184                         return(get_header_tar(archive_handle));
185                 }
186         case 'D':       /* GNU dump dir */
187         case 'M':       /* Continuation of multi volume archive*/
188         case 'N':       /* Old GNU for names > 100 characters */
189         case 'S':       /* Sparse file */
190         case 'V':       /* Volume header */
191                 bb_error_msg("Ignoring GNU extension type %c", tar.formated.typeflag);
192 #endif
193         default:
194                 bb_error_msg("Unknown typeflag: 0x%x", tar.formated.typeflag);
195         }
196         {       /* Strip trailing '/' in directories */
197                 /* Must be done after mode is set as '/' is used to check if its a directory */
198                 char *tmp = last_char_is(file_header->name, '/');
199                 if (tmp) {
200                         *tmp = '\0';
201                 }
202         }
203
204         if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
205                 archive_handle->action_header(archive_handle->file_header);
206                 archive_handle->flags |= ARCHIVE_EXTRACT_QUIET;
207                 archive_handle->action_data(archive_handle);
208                 llist_add_to(&(archive_handle->passed), file_header->name);
209         } else {
210                 data_skip(archive_handle);
211         }
212         archive_handle->offset += file_header->size;
213
214         free(file_header->link_name);
215
216         return(EXIT_SUCCESS);
217 }