2002-09-25 08:17:48 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
extern void check_header_gzip(int src_fd)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
} formated;
|
|
|
|
} header;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_xread_all(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 */
|
2002-09-25 08:17:48 +05:30
|
|
|
if (header.formated.method != 8) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("Unknown compression method %d",
|
2002-09-25 08:17:48 +05:30
|
|
|
header.formated.method);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (header.formated.flags & 0x04) {
|
|
|
|
/* bit 2 set: extra field present */
|
|
|
|
unsigned char extra_short;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
extra_short = bb_xread_char(src_fd) + (bb_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 */
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_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 */
|
2002-09-25 08:17:48 +05:30
|
|
|
if (header.formated.flags & 0x08) {
|
2002-11-03 16:27:25 +05:30
|
|
|
/* bit 3 set: original file name present */
|
2003-03-19 14:43:01 +05:30
|
|
|
while(bb_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 */
|
2002-09-25 08:17:48 +05:30
|
|
|
if (header.formated.flags & 0x10) {
|
2002-11-03 16:27:25 +05:30
|
|
|
/* bit 4 set: file comment present */
|
2003-03-19 14:43:01 +05:30
|
|
|
while(bb_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 */
|
2002-09-25 08:17:48 +05:30
|
|
|
if (header.formated.flags & 0x02) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_xread_char(src_fd);
|
|
|
|
bb_xread_char(src_fd);
|
2002-09-25 08:17:48 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|