2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-07-12 13:26:04 +05:30
|
|
|
/*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
2007-03-08 03:32:23 +05:30
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
#include "libbb.h"
|
2007-03-08 03:32:23 +05:30
|
|
|
#include "unarchive.h" /* for external decl of check_header_gzip_or_die */
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2007-03-08 03:32:23 +05:30
|
|
|
void check_header_gzip_or_die(int src_fd)
|
2002-09-25 08:17:48 +05:30
|
|
|
{
|
|
|
|
union {
|
2002-09-27 12:16:02 +05:30
|
|
|
unsigned char raw[8];
|
2002-09-25 08:17:48 +05:30
|
|
|
struct {
|
|
|
|
unsigned char method;
|
|
|
|
unsigned char flags;
|
|
|
|
unsigned int mtime;
|
|
|
|
unsigned char xtra_flags;
|
|
|
|
unsigned char os_flags;
|
2006-07-21 00:32:24 +05:30
|
|
|
} formatted;
|
2002-09-25 08:17:48 +05:30
|
|
|
} header;
|
|
|
|
|
2006-07-16 13:44:35 +05:30
|
|
|
xread(src_fd, header.raw, 8);
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2002-11-03 16:27:25 +05:30
|
|
|
/* Check the compression method */
|
2006-07-21 00:32:24 +05:30
|
|
|
if (header.formatted.method != 8) {
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_error_msg_and_die("unknown compression method %d",
|
2006-07-21 00:32:24 +05:30
|
|
|
header.formatted.method);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
|
2006-07-21 00:32:24 +05:30
|
|
|
if (header.formatted.flags & 0x04) {
|
2002-09-25 08:17:48 +05:30
|
|
|
/* bit 2 set: extra field present */
|
2007-03-16 05:00:18 +05:30
|
|
|
unsigned extra_short;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2006-07-16 13:44:35 +05:30
|
|
|
extra_short = xread_char(src_fd) + (xread_char(src_fd) << 8);
|
2002-09-25 08:17:48 +05:30
|
|
|
while (extra_short > 0) {
|
2002-11-03 16:27:25 +05:30
|
|
|
/* Ignore extra field */
|
2006-07-16 13:44:35 +05:30
|
|
|
xread_char(src_fd);
|
2002-09-25 08:17:48 +05:30
|
|
|
extra_short--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-03 16:27:25 +05:30
|
|
|
/* Discard original name if any */
|
2006-07-21 00:32:24 +05:30
|
|
|
if (header.formatted.flags & 0x08) {
|
2002-11-03 16:27:25 +05:30
|
|
|
/* bit 3 set: original file name present */
|
2006-12-26 16:12:51 +05:30
|
|
|
while (xread_char(src_fd) != 0);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
|
2002-11-03 16:27:25 +05:30
|
|
|
/* Discard file comment if any */
|
2006-07-21 00:32:24 +05:30
|
|
|
if (header.formatted.flags & 0x10) {
|
2002-11-03 16:27:25 +05:30
|
|
|
/* bit 4 set: file comment present */
|
2006-12-26 16:12:51 +05:30
|
|
|
while (xread_char(src_fd) != 0);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
|
2002-11-03 16:27:25 +05:30
|
|
|
/* Read the header checksum */
|
2006-07-21 00:32:24 +05:30
|
|
|
if (header.formatted.flags & 0x02) {
|
2006-07-16 13:44:35 +05:30
|
|
|
xread_char(src_fd);
|
|
|
|
xread_char(src_fd);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
}
|