blob: 07b9ae36fed88d14ecf3a389eac5bf1734896a57 [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.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include "unarchive.h"
21#include "libbb.h"
22
23file_header_t *get_header_tar(FILE *tar_stream)
24{
25 union {
26 unsigned char raw[512];
27 struct {
28 char name[100]; /* 0-99 */
29 char mode[8]; /* 100-107 */
30 char uid[8]; /* 108-115 */
31 char gid[8]; /* 116-123 */
32 char size[12]; /* 124-135 */
33 char mtime[12]; /* 136-147 */
34 char chksum[8]; /* 148-155 */
35 char typeflag; /* 156-156 */
36 char linkname[100]; /* 157-256 */
37 char magic[6]; /* 257-262 */
38 char version[2]; /* 263-264 */
39 char uname[32]; /* 265-296 */
40 char gname[32]; /* 297-328 */
41 char devmajor[8]; /* 329-336 */
42 char devminor[8]; /* 337-344 */
43 char prefix[155]; /* 345-499 */
44 char padding[12]; /* 500-512 */
45 } formated;
46 } tar;
47 file_header_t *tar_entry = NULL;
48 long sum = 0;
49 long i;
50
51 if (archive_offset % 512 != 0) {
52 seek_sub_file(tar_stream, 512 - (archive_offset % 512));
53 }
54
55 if (fread(tar.raw, 1, 512, tar_stream) != 512) {
56 /* Unfortunatly its common for tar files to have all sorts of
57 * trailing garbage, fail silently */
58// error_msg("Couldnt read header");
59 return(NULL);
60 }
61 archive_offset += 512;
62
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +000063 /* Check header has valid magic, "ustar" is for the proper tar
64 * 0's are for the old tar format
Glenn L McGrath95ebf612001-10-25 14:18:08 +000065 */
66 if (strncmp(tar.formated.magic, "ustar", 5) != 0) {
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +000067#ifdef CONFIG_FEATURE_TAR_OLD_FORMAT
68 if (strncmp(tar.formated.magic, "\0\0\0\0\0", 5) != 0)
69#endif
70 return(NULL);
71 }
72
73 /* If there is no filename its an empty header, skip it */
74 if (xstrlen(tar.formated.name) == 0) {
Glenn L McGrath95ebf612001-10-25 14:18:08 +000075 return(NULL);
76 }
77
78 /* Do checksum on headers */
79 for (i = 0; i < 148 ; i++) {
80 sum += tar.raw[i];
81 }
82 sum += ' ' * 8;
83 for (i = 156; i < 512 ; i++) {
84 sum += tar.raw[i];
85 }
86 if (sum != strtol(tar.formated.chksum, NULL, 8)) {
87 error_msg("Invalid tar header checksum");
88 return(NULL);
89 }
90
91 /* convert to type'ed variables */
92 tar_entry = xcalloc(1, sizeof(file_header_t));
93 tar_entry->name = xstrdup(tar.formated.name);
94
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +000095 tar_entry->mode = strtol(tar.formated.mode, NULL, 8);
96#ifdef CONFIG_FEATURE_TAR_OLD_FORMAT
97 switch (tar.formated.typeflag) {
98 case 0:
99 tar_entry->mode |= S_IFREG;
100 break;
101 case 1:
102 error_msg("internal hard link not handled\n");
103 break;
104 case 2:
105 tar_entry->mode |= S_IFLNK;
106 break;
107 case 3:
108 tar_entry->mode |= S_IFCHR;
109 break;
110 case 4:
111 tar_entry->mode |= S_IFBLK;
112 break;
113 case 5:
114 tar_entry->mode |= S_IFDIR;
115 break;
116 case 6:
117 tar_entry->mode |= S_IFIFO;
118 break;
119 }
120#endif
Glenn L McGrath95ebf612001-10-25 14:18:08 +0000121 tar_entry->uid = strtol(tar.formated.uid, NULL, 8);
122 tar_entry->gid = strtol(tar.formated.gid, NULL, 8);
123 tar_entry->size = strtol(tar.formated.size, NULL, 8);
124 tar_entry->mtime = strtol(tar.formated.mtime, NULL, 8);
125 tar_entry->link_name = strlen(tar.formated.linkname) ?
126 xstrdup(tar.formated.linkname) : NULL;
127 tar_entry->device = (strtol(tar.formated.devmajor, NULL, 8) << 8) +
128 strtol(tar.formated.devminor, NULL, 8);
129
130 return(tar_entry);
Eric Andersen2276d832002-07-11 11:11:56 +0000131}
132