blob: 9032852ed80818f8c331deaa72bfb359834d1ac7 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen61677fe2000-04-13 01:18:56 +00002/*
3 * Gzip implementation for busybox
4 *
5 * Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly.
6 *
7 * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
8 * based on gzip sources
9 *
10 * Adjusted further by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
11 * to support files as well as stdin/stdout, and to generally behave itself wrt
12 * command line handling.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 */
Eric Andersenb052b471999-11-18 00:21:59 +000029
30#include "internal.h"
Eric Andersen1e03add2000-07-06 09:56:35 +000031#include <getopt.h>
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000032
Matt Kraaibf181b92000-07-16 20:57:15 +000033/* These defines are very important for BusyBox. Without these,
Erik Andersen61677fe2000-04-13 01:18:56 +000034 * huge chunks of ram are pre-allocated making the BusyBox bss
35 * size Freaking Huge(tm), which is a bad thing.*/
36#define SMALL_MEM
37#define DYN_ALLOC
38
Erik Andersen61677fe2000-04-13 01:18:56 +000039#define BB_DECLARE_EXTERN
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000040#define bb_need_memory_exhausted
41#define bb_need_name_too_long
Erik Andersen61677fe2000-04-13 01:18:56 +000042#include "messages.c"
43
44
Eric Andersenb052b471999-11-18 00:21:59 +000045/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
46 * Copyright (C) 1992-1993 Jean-loup Gailly
47 * The unzip code was written and put in the public domain by Mark Adler.
48 * Portions of the lzw code are derived from the public domain 'compress'
49 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
50 * Ken Turkowski, Dave Mack and Peter Jannesen.
51 *
52 * See the license_msg below and the file COPYING for the software license.
53 * See the file algorithm.doc for the compression algorithms and file formats.
54 */
55
56#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000057static char *license_msg[] = {
58 " Copyright (C) 1992-1993 Jean-loup Gailly",
59 " This program is free software; you can redistribute it and/or modify",
60 " it under the terms of the GNU General Public License as published by",
61 " the Free Software Foundation; either version 2, or (at your option)",
62 " any later version.",
63 "",
64 " This program is distributed in the hope that it will be useful,",
65 " but WITHOUT ANY WARRANTY; without even the implied warranty of",
66 " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
67 " GNU General Public License for more details.",
68 "",
69 " You should have received a copy of the GNU General Public License",
70 " along with this program; if not, write to the Free Software",
71 " Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.",
72 0
73};
Eric Andersenb052b471999-11-18 00:21:59 +000074#endif
75
76/* Compress files with zip algorithm and 'compress' interface.
77 * See usage() and help() functions below for all options.
78 * Outputs:
79 * file.gz: compressed file with same mode, owner, and utimes
80 * or stdout with -c option or if stdin used as input.
81 * If the output file name had to be truncated, the original name is kept
82 * in the compressed file.
83 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
84 *
85 * Using gz on MSDOS would create too many file name conflicts. For
86 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
87 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
88 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
89 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
90 *
91 * For the meaning of all compilation flags, see comments in Makefile.in.
92 */
93
94#include <ctype.h>
95#include <sys/types.h>
96#include <signal.h>
Eric Andersenb052b471999-11-18 00:21:59 +000097#include <errno.h>
98
99/* #include "tailor.h" */
100
101/* tailor.h -- target dependent definitions
102 * Copyright (C) 1992-1993 Jean-loup Gailly.
103 * This is free software; you can redistribute it and/or modify it under the
104 * terms of the GNU General Public License, see the file COPYING.
105 */
106
107/* The target dependent definitions should be defined here only.
108 * The target dependent functions should be defined in tailor.c.
109 */
110
111#define RECORD_IO 0
112
113#define get_char() get_byte()
114#define put_char(c) put_byte(c)
115
Eric Andersenb052b471999-11-18 00:21:59 +0000116
117/* I don't like nested includes, but the string and io functions are used
118 * too often
119 */
120#include <stdio.h>
121#if !defined(NO_STRING_H) || defined(STDC_HEADERS)
122# include <string.h>
123# if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
124# include <memory.h>
125# endif
Erik Andersen61677fe2000-04-13 01:18:56 +0000126# define memzero(s, n) memset ((void *)(s), 0, (n))
Eric Andersenb052b471999-11-18 00:21:59 +0000127#else
128# include <strings.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +0000129# define strchr index
Eric Andersenb052b471999-11-18 00:21:59 +0000130# define strrchr rindex
Erik Andersene49d5ec2000-02-08 19:58:47 +0000131# define memcpy(d, s, n) bcopy((s), (d), (n))
132# define memcmp(s1, s2, n) bcmp((s1), (s2), (n))
Eric Andersenb052b471999-11-18 00:21:59 +0000133# define memzero(s, n) bzero((s), (n))
134#endif
135
136#ifndef RETSIGTYPE
137# define RETSIGTYPE void
138#endif
139
140#define local static
141
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142typedef unsigned char uch;
Eric Andersenb052b471999-11-18 00:21:59 +0000143typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144typedef unsigned long ulg;
Eric Andersenb052b471999-11-18 00:21:59 +0000145
146/* Return codes from gzip */
147#define OK 0
148#define ERROR 1
149#define WARNING 2
150
151/* Compression methods (see algorithm.doc) */
152#define DEFLATED 8
153
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154extern int method; /* compression method */
Eric Andersenb052b471999-11-18 00:21:59 +0000155
156/* To save memory for 16 bit systems, some arrays are overlaid between
157 * the various modules:
158 * deflate: prev+head window d_buf l_buf outbuf
159 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
160 * inflate: window inbuf
161 * unpack: window inbuf prefix_len
162 * unlzh: left+right window c_table inbuf c_len
163 * For compression, input is done in window[]. For decompression, output
164 * is done in window except for unlzw.
165 */
166
167#ifndef INBUFSIZ
168# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000169# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersenb052b471999-11-18 00:21:59 +0000170# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000171# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersenb052b471999-11-18 00:21:59 +0000172# endif
173#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000174#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersenb052b471999-11-18 00:21:59 +0000175
176#ifndef OUTBUFSIZ
177# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersenb052b471999-11-18 00:21:59 +0000179# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersenb052b471999-11-18 00:21:59 +0000181# endif
182#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000183#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersenb052b471999-11-18 00:21:59 +0000184
185#define SMALL_MEM
186
187#ifndef DIST_BUFSIZE
188# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersenb052b471999-11-18 00:21:59 +0000190# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersenb052b471999-11-18 00:21:59 +0000192# endif
193#endif
194
195/*#define DYN_ALLOC*/
196
197#ifdef DYN_ALLOC
198# define EXTERN(type, array) extern type * array
199# define DECLARE(type, array, size) type * array
200# define ALLOC(type, array, size) { \
201 array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Matt Kraaibe84cd42000-07-12 17:02:35 +0000202 if (array == NULL) errorMsg(memory_exhausted); \
Eric Andersenb052b471999-11-18 00:21:59 +0000203 }
204# define FREE(array) {if (array != NULL) free(array), array=NULL;}
205#else
206# define EXTERN(type, array) extern type array[]
207# define DECLARE(type, array, size) type array[size]
208# define ALLOC(type, array, size)
209# define FREE(array)
210#endif
211
Erik Andersene49d5ec2000-02-08 19:58:47 +0000212EXTERN(uch, inbuf); /* input buffer */
213EXTERN(uch, outbuf); /* output buffer */
214EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
215EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
Eric Andersenb052b471999-11-18 00:21:59 +0000216#define tab_suffix window
217#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218# define tab_prefix prev /* hash link (see deflate.c) */
219# define head (prev+WSIZE) /* hash head (see deflate.c) */
220EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
Eric Andersenb052b471999-11-18 00:21:59 +0000221#else
222# define tab_prefix0 prev
223# define head tab_prefix1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000224EXTERN(ush, tab_prefix0); /* prefix for even codes */
225EXTERN(ush, tab_prefix1); /* prefix for odd codes */
Eric Andersenb052b471999-11-18 00:21:59 +0000226#endif
227
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228extern unsigned insize; /* valid bytes in inbuf */
229extern unsigned inptr; /* index of next byte to be processed in inbuf */
230extern unsigned outcnt; /* bytes in output buffer */
Eric Andersenb052b471999-11-18 00:21:59 +0000231
Erik Andersene49d5ec2000-02-08 19:58:47 +0000232extern long bytes_in; /* number of input bytes */
233extern long bytes_out; /* number of output bytes */
234extern long header_bytes; /* number of bytes in gzip header */
Eric Andersenb052b471999-11-18 00:21:59 +0000235
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236extern long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersenb052b471999-11-18 00:21:59 +0000237
Erik Andersene49d5ec2000-02-08 19:58:47 +0000238typedef int file_t; /* Do not use stdio */
239
240#define NO_FILE (-1) /* in memory compression */
Eric Andersenb052b471999-11-18 00:21:59 +0000241
242
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
Eric Andersenb052b471999-11-18 00:21:59 +0000244
245/* gzip flag byte */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000246#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
247#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
248#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
249#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
250#define COMMENT 0x10 /* bit 4 set: file comment present */
251#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
252#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersenb052b471999-11-18 00:21:59 +0000253
254#ifndef WSIZE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255# define WSIZE 0x8000 /* window size--must be a power of two, and */
256#endif /* at least 32K for zip's deflate method */
Eric Andersenb052b471999-11-18 00:21:59 +0000257
258#define MIN_MATCH 3
259#define MAX_MATCH 258
260/* The minimum and maximum match lengths */
261
262#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
263/* Minimum amount of lookahead, except at the end of the input file.
264 * See deflate.c for comments about the MIN_MATCH+1.
265 */
266
267#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
268/* In order to simplify the code, particularly on 16 bit machines, match
269 * distances are limited to MAX_DIST instead of WSIZE.
270 */
271
Erik Andersene49d5ec2000-02-08 19:58:47 +0000272extern int exit_code; /* program exit code */
273extern int verbose; /* be verbose (-v) */
274extern int level; /* compression level */
275extern int test; /* check .z file integrity */
276extern int save_orig_name; /* set if original name must be saved */
Eric Andersenb052b471999-11-18 00:21:59 +0000277
278#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
279#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
280
281/* put_byte is used for the compressed output, put_ubyte for the
282 * uncompressed output. However unlzw() uses window for its
283 * suffix table instead of its output buffer, so it does not use put_ubyte
284 * (to be cleaned up).
285 */
286#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
287 flush_outbuf();}
288#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
289 flush_window();}
290
291/* Output a 16 bit value, lsb first */
292#define put_short(w) \
293{ if (outcnt < OUTBUFSIZ-2) { \
294 outbuf[outcnt++] = (uch) ((w) & 0xff); \
295 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
296 } else { \
297 put_byte((uch)((w) & 0xff)); \
298 put_byte((uch)((ush)(w) >> 8)); \
299 } \
300}
301
302/* Output a 32 bit value to the bit stream, lsb first */
303#define put_long(n) { \
304 put_short((n) & 0xffff); \
305 put_short(((ulg)(n)) >> 16); \
306}
307
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308#define seekable() 0 /* force sequential output */
309#define translate_eol 0 /* no option -a yet */
Eric Andersenb052b471999-11-18 00:21:59 +0000310
Erik Andersene49d5ec2000-02-08 19:58:47 +0000311#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
Eric Andersenb052b471999-11-18 00:21:59 +0000312
313/* Macros for getting two-byte and four-byte header values */
314#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
315#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
316
317/* Diagnostic functions */
318#ifdef DEBUG
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000319# define Assert(cond,msg) {if(!(cond)) errorMsg(msg);}
Eric Andersenb052b471999-11-18 00:21:59 +0000320# define Trace(x) fprintf x
321# define Tracev(x) {if (verbose) fprintf x ;}
322# define Tracevv(x) {if (verbose>1) fprintf x ;}
323# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
324# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
325#else
326# define Assert(cond,msg)
327# define Trace(x)
328# define Tracev(x)
329# define Tracevv(x)
330# define Tracec(c,x)
331# define Tracecv(c,x)
332#endif
333
334#define WARN(msg) {fprintf msg ; \
335 if (exit_code == OK) exit_code = WARNING;}
336
337 /* in unzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000338extern int unzip (int in, int out);
Eric Andersenb052b471999-11-18 00:21:59 +0000339
340 /* in gzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000341RETSIGTYPE abort_gzip (void);
Eric Andersenb052b471999-11-18 00:21:59 +0000342
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343 /* in deflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000344void lm_init (int pack_level, ush * flags);
345ulg deflate (void);
Eric Andersenb052b471999-11-18 00:21:59 +0000346
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 /* in trees.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000348void ct_init (ush * attr, int *method);
349int ct_tally (int dist, int lc);
350ulg flush_block (char *buf, ulg stored_len, int eof);
Eric Andersenb052b471999-11-18 00:21:59 +0000351
Erik Andersene49d5ec2000-02-08 19:58:47 +0000352 /* in bits.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000353void bi_init (file_t zipfile);
354void send_bits (int value, int length);
355unsigned bi_reverse (unsigned value, int length);
356void bi_windup (void);
357void copy_block (char *buf, unsigned len, int header);
Eric Andersenb052b471999-11-18 00:21:59 +0000358
359 /* in util.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000360extern ulg updcrc (uch * s, unsigned n);
361extern void clear_bufs (void);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000362static int fill_inbuf (int eof_ok);
Erik Andersen61677fe2000-04-13 01:18:56 +0000363extern void flush_outbuf (void);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000364static void flush_window (void);
Erik Andersen61677fe2000-04-13 01:18:56 +0000365extern void write_buf (int fd, void * buf, unsigned cnt);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000366
Eric Andersenb052b471999-11-18 00:21:59 +0000367#ifndef __linux__
Erik Andersen330fd2b2000-05-19 05:35:19 +0000368static char *basename (char *fname);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000369#endif /* not __linux__ */
Erik Andersen330fd2b2000-05-19 05:35:19 +0000370void read_error_msg (void);
371void write_error_msg (void);
Eric Andersenb052b471999-11-18 00:21:59 +0000372
373 /* in inflate.c */
Erik Andersen330fd2b2000-05-19 05:35:19 +0000374static int inflate (void);
Eric Andersenb052b471999-11-18 00:21:59 +0000375
376/* #include "lzw.h" */
377
378/* lzw.h -- define the lzw functions.
379 * Copyright (C) 1992-1993 Jean-loup Gailly.
380 * This is free software; you can redistribute it and/or modify it under the
381 * terms of the GNU General Public License, see the file COPYING.
382 */
383
384#if !defined(OF) && defined(lint)
385# include "gzip.h"
386#endif
387
388#ifndef BITS
389# define BITS 16
390#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000391#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersenb052b471999-11-18 00:21:59 +0000392
Erik Andersene49d5ec2000-02-08 19:58:47 +0000393#define LZW_MAGIC "\037\235" /* Magic header for lzw files, 1F 9D */
Eric Andersenb052b471999-11-18 00:21:59 +0000394
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersenb052b471999-11-18 00:21:59 +0000396/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
397 * It's a pity that old uncompress does not check bit 0x20. That makes
398 * extension of the format actually undesirable because old compress
399 * would just crash on the new format instead of giving a meaningful
400 * error message. It does check the number of bits, but it's more
401 * helpful to say "unsupported format, get a new version" than
402 * "can only handle 16 bits".
403 */
404
405#define BLOCK_MODE 0x80
406/* Block compression: if table is full and compression rate is dropping,
407 * clear the dictionary.
408 */
409
Erik Andersene49d5ec2000-02-08 19:58:47 +0000410#define LZW_RESERVED 0x60 /* reserved bits */
Eric Andersenb052b471999-11-18 00:21:59 +0000411
Erik Andersene49d5ec2000-02-08 19:58:47 +0000412#define CLEAR 256 /* flush the dictionary */
413#define FIRST (CLEAR+1) /* first free entry */
Eric Andersenb052b471999-11-18 00:21:59 +0000414
Erik Andersene49d5ec2000-02-08 19:58:47 +0000415extern int maxbits; /* max bits per code for LZW */
416extern int block_mode; /* block compress mode -C compatible with 2.0 */
Eric Andersenb052b471999-11-18 00:21:59 +0000417
Erik Andersen61677fe2000-04-13 01:18:56 +0000418extern int lzw (int in, int out);
419extern int unlzw (int in, int out);
Eric Andersenb052b471999-11-18 00:21:59 +0000420
421
422/* #include "revision.h" */
423
424/* revision.h -- define the version number
425 * Copyright (C) 1992-1993 Jean-loup Gailly.
426 * This is free software; you can redistribute it and/or modify it under the
427 * terms of the GNU General Public License, see the file COPYING.
428 */
429
430#define VERSION "1.2.4"
431#define PATCHLEVEL 0
432#define REVDATE "18 Aug 93"
433
434/* This version does not support compression into old compress format: */
435#ifdef LZW
436# undef LZW
437#endif
438
Eric Andersenb052b471999-11-18 00:21:59 +0000439#include <time.h>
440#include <fcntl.h>
441#include <unistd.h>
Eric Andersenb052b471999-11-18 00:21:59 +0000442#include <stdlib.h>
Eric Andersenb052b471999-11-18 00:21:59 +0000443#if defined(DIRENT)
444# include <dirent.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +0000445typedef struct dirent dir_type;
446
Eric Andersenb052b471999-11-18 00:21:59 +0000447# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
448# define DIR_OPT "DIRENT"
449#else
450# define NLENGTH(dirent) ((dirent)->d_namlen)
451# ifdef SYSDIR
452# include <sys/dir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453typedef struct direct dir_type;
454
Eric Andersenb052b471999-11-18 00:21:59 +0000455# define DIR_OPT "SYSDIR"
456# else
457# ifdef SYSNDIR
458# include <sys/ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459typedef struct direct dir_type;
460
Eric Andersenb052b471999-11-18 00:21:59 +0000461# define DIR_OPT "SYSNDIR"
462# else
463# ifdef NDIR
464# include <ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +0000465typedef struct direct dir_type;
466
Eric Andersenb052b471999-11-18 00:21:59 +0000467# define DIR_OPT "NDIR"
468# else
469# define NO_DIR
470# define DIR_OPT "NO_DIR"
471# endif
472# endif
473# endif
474#endif
Eric Andersenb052b471999-11-18 00:21:59 +0000475#if !defined(S_ISDIR) && defined(S_IFDIR)
476# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
477#endif
478#if !defined(S_ISREG) && defined(S_IFREG)
479# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
480#endif
Erik Andersen61677fe2000-04-13 01:18:56 +0000481typedef RETSIGTYPE(*sig_type) (int);
Eric Andersenb052b471999-11-18 00:21:59 +0000482
483#ifndef O_BINARY
Erik Andersene49d5ec2000-02-08 19:58:47 +0000484# define O_BINARY 0 /* creation mode for open() */
Eric Andersenb052b471999-11-18 00:21:59 +0000485#endif
486
487#ifndef O_CREAT
488 /* Pure BSD system? */
489# include <sys/file.h>
490# ifndef O_CREAT
491# define O_CREAT FCREAT
492# endif
493# ifndef O_EXCL
494# define O_EXCL FEXCL
495# endif
496#endif
497
498#ifndef S_IRUSR
499# define S_IRUSR 0400
500#endif
501#ifndef S_IWUSR
502# define S_IWUSR 0200
503#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000504#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
Eric Andersenb052b471999-11-18 00:21:59 +0000505
Erik Andersene49d5ec2000-02-08 19:58:47 +0000506#ifndef MAX_PATH_LEN /* max pathname length */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000507# ifdef BUFSIZ
508# define MAX_PATH_LEN BUFSIZ
Erik Andersenfac10d72000-02-07 05:29:42 +0000509# else
510# define MAX_PATH_LEN 1024
511# endif
Eric Andersenb052b471999-11-18 00:21:59 +0000512#endif
513
514#ifndef SEEK_END
515# define SEEK_END 2
516#endif
517
518#ifdef NO_OFF_T
Erik Andersene49d5ec2000-02-08 19:58:47 +0000519typedef long off_t;
Erik Andersen61677fe2000-04-13 01:18:56 +0000520off_t lseek (int fd, off_t offset, int whence);
Eric Andersenb052b471999-11-18 00:21:59 +0000521#endif
522
523
524 /* global buffers */
525
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
527DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
528DECLARE(ush, d_buf, DIST_BUFSIZE);
529DECLARE(uch, window, 2L * WSIZE);
Eric Andersenb052b471999-11-18 00:21:59 +0000530#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersenb052b471999-11-18 00:21:59 +0000532#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000533DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
534DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersenb052b471999-11-18 00:21:59 +0000535#endif
536
537 /* local variables */
538
Erik Andersene49d5ec2000-02-08 19:58:47 +0000539int test_mode = 0; /* check file integrity option */
540int foreground; /* set if program run in foreground */
541int maxbits = BITS; /* max bits per code for LZW */
542int method = DEFLATED; /* compression method */
543int exit_code = OK; /* program exit code */
544int last_member; /* set for .zip and .Z files */
545int part_nb; /* number of parts in .gz file */
546long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersenb052b471999-11-18 00:21:59 +0000547
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548long bytes_in; /* number of input bytes */
549long bytes_out; /* number of output bytes */
550long total_in = 0; /* input bytes for all files */
551long total_out = 0; /* output bytes for all files */
552struct stat istat; /* status for input file */
553int ifd; /* input file descriptor */
554int ofd; /* output file descriptor */
555unsigned insize; /* valid bytes in inbuf */
556unsigned inptr; /* index of next byte to be processed in inbuf */
557unsigned outcnt; /* bytes in output buffer */
Eric Andersenb052b471999-11-18 00:21:59 +0000558
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559long header_bytes; /* number of bytes in gzip header */
Eric Andersenb052b471999-11-18 00:21:59 +0000560
561/* local functions */
562
Erik Andersen61677fe2000-04-13 01:18:56 +0000563local int get_method (int in);
Eric Andersenb052b471999-11-18 00:21:59 +0000564
565#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
566
567/* ======================================================================== */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000568int gunzip_main(int argc, char **argv)
Eric Andersenb052b471999-11-18 00:21:59 +0000569{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000570 int file_count; /* number of files to precess */
Eric Andersenea824fb2000-07-21 22:17:39 +0000571 int tostdout = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000572 int fromstdin = 0;
573 int result;
574 int inFileNum;
575 int outFileNum;
576 int delInputFile = 0;
Eric Andersenea824fb2000-07-21 22:17:39 +0000577 int force = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000578 struct stat statBuf;
579 char *delFileName;
580 char ifname[MAX_PATH_LEN + 1]; /* input file name */
581 char ofname[MAX_PATH_LEN + 1]; /* output file name */
Eric Andersenb052b471999-11-18 00:21:59 +0000582
Matt Kraaie58771e2000-07-12 15:38:49 +0000583 if (strcmp(applet_name, "zcat") == 0) {
Eric Andersene99674a2000-09-01 00:41:10 +0000584 force = 1;
Erik Andersen59b9e872000-05-10 05:05:45 +0000585 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000586
587 /* Parse any options */
588 while (--argc > 0 && **(++argv) == '-') {
589 if (*((*argv) + 1) == '\0') {
Eric Andersenea824fb2000-07-21 22:17:39 +0000590 tostdout = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000591 }
592 while (*(++(*argv))) {
593 switch (**argv) {
594 case 'c':
Eric Andersenea824fb2000-07-21 22:17:39 +0000595 tostdout = 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000596 break;
597 case 't':
598 test_mode = 1;
599 break;
Eric Andersenea824fb2000-07-21 22:17:39 +0000600 case 'f':
601 force = 1;
602 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 default:
604 usage(gunzip_usage);
605 }
606 }
607 }
Eric Andersene99674a2000-09-01 00:41:10 +0000608
609 if (argc <= 0) {
610 tostdout = 1;
Eric Andersenea824fb2000-07-21 22:17:39 +0000611 fromstdin = 1;
Eric Andersene99674a2000-09-01 00:41:10 +0000612 }
Eric Andersenea824fb2000-07-21 22:17:39 +0000613
614 if (isatty(fileno(stdin)) && fromstdin==1 && force==0)
615 fatalError( "data not read from terminal. Use -f to force it.\n");
616 if (isatty(fileno(stdout)) && tostdout==1 && force==0)
617 fatalError( "data not written to terminal. Use -f to force it.\n");
618
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619
620 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
621 if (foreground) {
622 (void) signal(SIGINT, (sig_type) abort_gzip);
623 }
Eric Andersenb052b471999-11-18 00:21:59 +0000624#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
626 (void) signal(SIGTERM, (sig_type) abort_gzip);
627 }
Eric Andersenb052b471999-11-18 00:21:59 +0000628#endif
629#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +0000630 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
631 (void) signal(SIGHUP, (sig_type) abort_gzip);
632 }
Eric Andersenb052b471999-11-18 00:21:59 +0000633#endif
634
Erik Andersene49d5ec2000-02-08 19:58:47 +0000635 file_count = argc - optind;
Eric Andersenb052b471999-11-18 00:21:59 +0000636
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637 /* Allocate all global buffers (for DYN_ALLOC option) */
638 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
639 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
640 ALLOC(ush, d_buf, DIST_BUFSIZE);
641 ALLOC(uch, window, 2L * WSIZE);
Eric Andersenb052b471999-11-18 00:21:59 +0000642#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000643 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersenb052b471999-11-18 00:21:59 +0000644#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000645 ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
646 ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersenb052b471999-11-18 00:21:59 +0000647#endif
648
Erik Andersene49d5ec2000-02-08 19:58:47 +0000649 if (fromstdin == 1) {
650 strcpy(ofname, "stdin");
Eric Andersenb052b471999-11-18 00:21:59 +0000651
Erik Andersene49d5ec2000-02-08 19:58:47 +0000652 inFileNum = fileno(stdin);
653 ifile_size = -1L; /* convention for unknown size */
Eric Andersenb052b471999-11-18 00:21:59 +0000654 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000655 /* Open up the input file */
Eric Andersenea824fb2000-07-21 22:17:39 +0000656 if (argc <= 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000657 usage(gunzip_usage);
658 if (strlen(*argv) > MAX_PATH_LEN) {
Matt Kraaid537a952000-07-14 01:51:25 +0000659 errorMsg(name_too_long);
Erik Andersen61677fe2000-04-13 01:18:56 +0000660 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000661 }
662 strcpy(ifname, *argv);
663
664 /* Open input fille */
665 inFileNum = open(ifname, O_RDONLY);
666 if (inFileNum < 0) {
667 perror(ifname);
Erik Andersen61677fe2000-04-13 01:18:56 +0000668 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000669 }
670 /* Get the time stamp on the input file. */
671 result = stat(ifname, &statBuf);
672 if (result < 0) {
673 perror(ifname);
Erik Andersen61677fe2000-04-13 01:18:56 +0000674 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000675 }
676 ifile_size = statBuf.st_size;
Eric Andersenb052b471999-11-18 00:21:59 +0000677 }
678
Eric Andersenea824fb2000-07-21 22:17:39 +0000679 if (tostdout == 1) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000680 /* And get to work */
681 strcpy(ofname, "stdout");
682 outFileNum = fileno(stdout);
683
684 clear_bufs(); /* clear input and output buffers */
685 part_nb = 0;
686
687 /* Actually do the compression/decompression. */
688 unzip(inFileNum, outFileNum);
689
690 } else if (test_mode) {
691 /* Actually do the compression/decompression. */
692 unzip(inFileNum, 2);
693 } else {
694 char *pos;
695
696 /* And get to work */
697 if (strlen(ifname) > MAX_PATH_LEN - 4) {
Matt Kraaid537a952000-07-14 01:51:25 +0000698 errorMsg(name_too_long);
Erik Andersen61677fe2000-04-13 01:18:56 +0000699 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000700 }
701 strcpy(ofname, ifname);
702 pos = strstr(ofname, ".gz");
703 if (pos != NULL) {
704 *pos = '\0';
705 delInputFile = 1;
706 } else {
707 pos = strstr(ofname, ".tgz");
708 if (pos != NULL) {
709 *pos = '\0';
710 strcat(pos, ".tar");
711 delInputFile = 1;
712 }
713 }
714
715 /* Open output fille */
Erik Andersen4d1d0111999-12-17 18:44:15 +0000716#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000717 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +0000718#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000719 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +0000720#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000721 if (outFileNum < 0) {
722 perror(ofname);
Erik Andersen61677fe2000-04-13 01:18:56 +0000723 exit(WARNING);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000724 }
725 /* Set permissions on the file */
726 fchmod(outFileNum, statBuf.st_mode);
727
728 clear_bufs(); /* clear input and output buffers */
729 part_nb = 0;
730
731 /* Actually do the compression/decompression. */
732 result = unzip(inFileNum, outFileNum);
733
734 close(outFileNum);
735 close(inFileNum);
736 /* Delete the original file */
737 if (result == OK)
738 delFileName = ifname;
739 else
740 delFileName = ofname;
741
742 if (delInputFile == 1 && unlink(delFileName) < 0) {
743 perror(delFileName);
744 exit(FALSE);
745 }
Eric Andersenb052b471999-11-18 00:21:59 +0000746 }
Eric Andersenb6106152000-06-19 17:25:40 +0000747 return(exit_code);
Eric Andersenb052b471999-11-18 00:21:59 +0000748}
749
750
751/* ========================================================================
752 * Check the magic number of the input file and update ofname if an
Eric Andersenea824fb2000-07-21 22:17:39 +0000753 * original name was given and tostdout is not set.
Eric Andersenb052b471999-11-18 00:21:59 +0000754 * Return the compression method, -1 for error, -2 for warning.
755 * Set inptr to the offset of the next byte to be processed.
756 * Updates time_stamp if there is one and --no-time is not used.
757 * This function may be called repeatedly for an input file consisting
758 * of several contiguous gzip'ed members.
759 * IN assertions: there is at least one remaining compressed member.
760 * If the member is a zip file, it must be the only one.
761 */
762local int get_method(in)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000763int in; /* input file descriptor */
Eric Andersenb052b471999-11-18 00:21:59 +0000764{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000765 uch flags; /* compression flags */
766 char magic[2]; /* magic header */
Eric Andersenb052b471999-11-18 00:21:59 +0000767
Erik Andersene49d5ec2000-02-08 19:58:47 +0000768 magic[0] = (char) get_byte();
769 magic[1] = (char) get_byte();
770 method = -1; /* unknown yet */
771 part_nb++; /* number of parts in gzip file */
772 header_bytes = 0;
773 last_member = RECORD_IO;
774 /* assume multiple members in gzip file except for record oriented I/O */
Eric Andersenb052b471999-11-18 00:21:59 +0000775
Erik Andersene49d5ec2000-02-08 19:58:47 +0000776 if (memcmp(magic, GZIP_MAGIC, 2) == 0) {
Eric Andersenb052b471999-11-18 00:21:59 +0000777
Erik Andersene49d5ec2000-02-08 19:58:47 +0000778 method = (int) get_byte();
779 if (method != DEFLATED) {
Matt Kraaid537a952000-07-14 01:51:25 +0000780 errorMsg("unknown method %d -- get newer version of gzip\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781 method);
782 exit_code = ERROR;
783 return -1;
784 }
785 flags = (uch) get_byte();
Eric Andersenb052b471999-11-18 00:21:59 +0000786
Erik Andersene49d5ec2000-02-08 19:58:47 +0000787 (ulg) get_byte(); /* Ignore time stamp */
788 (ulg) get_byte();
789 (ulg) get_byte();
790 (ulg) get_byte();
Eric Andersenb052b471999-11-18 00:21:59 +0000791
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792 (void) get_byte(); /* Ignore extra flags for the moment */
793 (void) get_byte(); /* Ignore OS type for the moment */
Eric Andersenb052b471999-11-18 00:21:59 +0000794
Erik Andersene49d5ec2000-02-08 19:58:47 +0000795 if ((flags & EXTRA_FIELD) != 0) {
796 unsigned len = (unsigned) get_byte();
Eric Andersenb052b471999-11-18 00:21:59 +0000797
Erik Andersene49d5ec2000-02-08 19:58:47 +0000798 len |= ((unsigned) get_byte()) << 8;
799
800 while (len--)
801 (void) get_byte();
802 }
803
804 /* Discard original name if any */
805 if ((flags & ORIG_NAME) != 0) {
806 while (get_char() != 0) /* null */
807 ;
808 }
809
810 /* Discard file comment if any */
811 if ((flags & COMMENT) != 0) {
812 while (get_char() != 0) /* null */
813 ;
814 }
815 if (part_nb == 1) {
816 header_bytes = inptr + 2 * sizeof(long); /* include crc and size */
817 }
818
Eric Andersenb052b471999-11-18 00:21:59 +0000819 }
820
Erik Andersene49d5ec2000-02-08 19:58:47 +0000821 if (method >= 0)
822 return method;
Eric Andersenb052b471999-11-18 00:21:59 +0000823
Eric Andersenb052b471999-11-18 00:21:59 +0000824 if (part_nb == 1) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 fprintf(stderr, "\nnot in gzip format\n");
826 exit_code = ERROR;
827 return -1;
828 } else {
829 WARN((stderr, "\ndecompression OK, trailing garbage ignored\n"));
830 return -2;
Eric Andersenb052b471999-11-18 00:21:59 +0000831 }
Eric Andersenb052b471999-11-18 00:21:59 +0000832}
833
Eric Andersenb052b471999-11-18 00:21:59 +0000834/* ========================================================================
835 * Signal and error handler.
836 */
837RETSIGTYPE abort_gzip()
838{
Erik Andersen61677fe2000-04-13 01:18:56 +0000839 exit(ERROR);
Eric Andersenb052b471999-11-18 00:21:59 +0000840}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000841
Eric Andersenb052b471999-11-18 00:21:59 +0000842/* unzip.c -- decompress files in gzip or pkzip format.
843 * Copyright (C) 1992-1993 Jean-loup Gailly
844 * This is free software; you can redistribute it and/or modify it under the
845 * terms of the GNU General Public License, see the file COPYING.
846 *
847 * The code in this file is derived from the file funzip.c written
848 * and put in the public domain by Mark Adler.
849 */
850
851/*
852 This version can extract files in gzip or pkzip format.
853 For the latter, only the first entry is extracted, and it has to be
854 either deflated or stored.
855 */
856
857/* #include "crypt.h" */
858
859/* crypt.h (dummy version) -- do not perform encryption
860 * Hardly worth copyrighting :-)
861 */
862
863#ifdef CRYPT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864# undef CRYPT /* dummy version */
Eric Andersenb052b471999-11-18 00:21:59 +0000865#endif
866
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867#define RAND_HEAD_LEN 12 /* length of encryption random header */
Eric Andersenb052b471999-11-18 00:21:59 +0000868
869#define zencode
870#define zdecode
871
872/* PKZIP header definitions */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000873#define LOCSIG 0x04034b50L /* four-byte lead-in (lsb first) */
874#define LOCFLG 6 /* offset of bit flag */
875#define CRPFLG 1 /* bit for encrypted entry */
876#define EXTFLG 8 /* bit for extended local header */
877#define LOCHOW 8 /* offset of compression method */
878#define LOCTIM 10 /* file mod time (for decryption) */
879#define LOCCRC 14 /* offset of crc */
880#define LOCSIZ 18 /* offset of compressed size */
881#define LOCLEN 22 /* offset of uncompressed length */
882#define LOCFIL 26 /* offset of file name field length */
883#define LOCEXT 28 /* offset of extra field length */
884#define LOCHDR 30 /* size of local header, including sig */
885#define EXTHDR 16 /* size of extended local header, inc sig */
Eric Andersenb052b471999-11-18 00:21:59 +0000886
887
888/* Globals */
889
Erik Andersene49d5ec2000-02-08 19:58:47 +0000890char *key; /* not used--needed to link crypt.c */
891int pkzip = 0; /* set for a pkzip file */
892int ext_header = 0; /* set if extended local header */
Eric Andersenb052b471999-11-18 00:21:59 +0000893
894/* ===========================================================================
895 * Unzip in to out. This routine works on both gzip and pkzip files.
896 *
897 * IN assertions: the buffer inbuf contains already the beginning of
898 * the compressed data, from offsets inptr to insize-1 included.
899 * The magic header has already been checked. The output buffer is cleared.
900 */
901int unzip(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902int in, out; /* input and output file descriptors */
Eric Andersenb052b471999-11-18 00:21:59 +0000903{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 ulg orig_crc = 0; /* original crc */
905 ulg orig_len = 0; /* original uncompressed length */
906 int n;
907 uch buf[EXTHDR]; /* extended local header */
Eric Andersenb052b471999-11-18 00:21:59 +0000908
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 ifd = in;
910 ofd = out;
911 method = get_method(ifd);
912 if (method < 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000913 exit(exit_code); /* error message already emitted */
Eric Andersenb052b471999-11-18 00:21:59 +0000914 }
915
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916 updcrc(NULL, 0); /* initialize crc */
Eric Andersenb052b471999-11-18 00:21:59 +0000917
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918 if (pkzip && !ext_header) { /* crc and length at the end otherwise */
919 orig_crc = LG(inbuf + LOCCRC);
920 orig_len = LG(inbuf + LOCLEN);
Eric Andersenb052b471999-11-18 00:21:59 +0000921 }
Eric Andersenb052b471999-11-18 00:21:59 +0000922
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 /* Decompress */
924 if (method == DEFLATED) {
925
926 int res = inflate();
927
928 if (res == 3) {
Matt Kraaibe84cd42000-07-12 17:02:35 +0000929 errorMsg(memory_exhausted);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000930 } else if (res != 0) {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000931 errorMsg("invalid compressed data--format violated");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 }
933
934 } else {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000935 errorMsg("internal error, invalid method");
Eric Andersenb052b471999-11-18 00:21:59 +0000936 }
Eric Andersenb052b471999-11-18 00:21:59 +0000937
Erik Andersene49d5ec2000-02-08 19:58:47 +0000938 /* Get the crc and original length */
939 if (!pkzip) {
940 /* crc32 (see algorithm.doc)
941 * uncompressed input size modulo 2^32
942 */
943 for (n = 0; n < 8; n++) {
944 buf[n] = (uch) get_byte(); /* may cause an error if EOF */
945 }
946 orig_crc = LG(buf);
947 orig_len = LG(buf + 4);
Eric Andersenb052b471999-11-18 00:21:59 +0000948
Erik Andersene49d5ec2000-02-08 19:58:47 +0000949 } else if (ext_header) { /* If extended header, check it */
950 /* signature - 4bytes: 0x50 0x4b 0x07 0x08
951 * CRC-32 value
952 * compressed size 4-bytes
953 * uncompressed size 4-bytes
954 */
955 for (n = 0; n < EXTHDR; n++) {
956 buf[n] = (uch) get_byte(); /* may cause an error if EOF */
957 }
958 orig_crc = LG(buf + 4);
959 orig_len = LG(buf + 12);
960 }
961
962 /* Validate decompression */
963 if (orig_crc != updcrc(outbuf, 0)) {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000964 errorMsg("invalid compressed data--crc error");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000965 }
966 if (orig_len != (ulg) bytes_out) {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000967 errorMsg("invalid compressed data--length error");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 }
969
970 /* Check if there are more entries in a pkzip file */
971 if (pkzip && inptr + 4 < insize && LG(inbuf + inptr) == LOCSIG) {
972 WARN((stderr, "has more than one entry--rest ignored\n"));
973 }
974 ext_header = pkzip = 0; /* for next file */
975 return OK;
Eric Andersenb052b471999-11-18 00:21:59 +0000976}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000977
Eric Andersenb052b471999-11-18 00:21:59 +0000978/* util.c -- utility functions for gzip support
979 * Copyright (C) 1992-1993 Jean-loup Gailly
980 * This is free software; you can redistribute it and/or modify it under the
981 * terms of the GNU General Public License, see the file COPYING.
982 */
983
984#include <ctype.h>
985#include <errno.h>
986#include <sys/types.h>
987
988#ifdef HAVE_UNISTD_H
989# include <unistd.h>
990#endif
991#ifndef NO_FCNTL_H
992# include <fcntl.h>
993#endif
994
995#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
996# include <stdlib.h>
997#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000998extern int errno;
Eric Andersenb052b471999-11-18 00:21:59 +0000999#endif
1000
Erik Andersene49d5ec2000-02-08 19:58:47 +00001001static const ulg crc_32_tab[]; /* crc table, defined below */
Eric Andersenb052b471999-11-18 00:21:59 +00001002
1003/* ===========================================================================
1004 * Run a set of bytes through the crc shift register. If s is a NULL
1005 * pointer, then initialize the crc shift register contents instead.
1006 * Return the current crc in either case.
1007 */
1008ulg updcrc(s, n)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001009uch *s; /* pointer to bytes to pump through */
1010unsigned n; /* number of bytes in s[] */
Eric Andersenb052b471999-11-18 00:21:59 +00001011{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001012 register ulg c; /* temporary variable */
Eric Andersenb052b471999-11-18 00:21:59 +00001013
Erik Andersene49d5ec2000-02-08 19:58:47 +00001014 static ulg crc = (ulg) 0xffffffffL; /* shift register contents */
Eric Andersenb052b471999-11-18 00:21:59 +00001015
Erik Andersene49d5ec2000-02-08 19:58:47 +00001016 if (s == NULL) {
1017 c = 0xffffffffL;
1018 } else {
1019 c = crc;
1020 if (n)
1021 do {
1022 c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);
1023 } while (--n);
1024 }
1025 crc = c;
1026 return c ^ 0xffffffffL; /* (instead of ~c for 64-bit machines) */
Eric Andersenb052b471999-11-18 00:21:59 +00001027}
1028
1029/* ===========================================================================
1030 * Clear input and output buffers
1031 */
Erik Andersen330fd2b2000-05-19 05:35:19 +00001032void clear_bufs(void)
Eric Andersenb052b471999-11-18 00:21:59 +00001033{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001034 outcnt = 0;
1035 insize = inptr = 0;
1036 bytes_in = bytes_out = 0L;
Eric Andersenb052b471999-11-18 00:21:59 +00001037}
1038
1039/* ===========================================================================
1040 * Fill the input buffer. This is called only when the buffer is empty.
1041 */
1042int fill_inbuf(eof_ok)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001043int eof_ok; /* set if EOF acceptable as a result */
Eric Andersenb052b471999-11-18 00:21:59 +00001044{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001045 int len;
Eric Andersenb052b471999-11-18 00:21:59 +00001046
Erik Andersene49d5ec2000-02-08 19:58:47 +00001047 /* Read as much as possible */
1048 insize = 0;
1049 errno = 0;
1050 do {
1051 len = read(ifd, (char *) inbuf + insize, INBUFSIZ - insize);
1052 if (len == 0 || len == EOF)
1053 break;
1054 insize += len;
1055 } while (insize < INBUFSIZ);
Eric Andersenb052b471999-11-18 00:21:59 +00001056
Erik Andersene49d5ec2000-02-08 19:58:47 +00001057 if (insize == 0) {
1058 if (eof_ok)
1059 return EOF;
Erik Andersen330fd2b2000-05-19 05:35:19 +00001060 read_error_msg();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001061 }
1062 bytes_in += (ulg) insize;
1063 inptr = 1;
1064 return inbuf[0];
Eric Andersenb052b471999-11-18 00:21:59 +00001065}
1066
1067/* ===========================================================================
1068 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
1069 * (used for the compressed data only)
1070 */
1071void flush_outbuf()
1072{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001073 if (outcnt == 0)
1074 return;
Eric Andersenb052b471999-11-18 00:21:59 +00001075
Erik Andersene49d5ec2000-02-08 19:58:47 +00001076 if (!test_mode)
1077 write_buf(ofd, (char *) outbuf, outcnt);
1078 bytes_out += (ulg) outcnt;
1079 outcnt = 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001080}
1081
1082/* ===========================================================================
1083 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
1084 * (Used for the decompressed data only.)
1085 */
1086void flush_window()
1087{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001088 if (outcnt == 0)
1089 return;
1090 updcrc(window, outcnt);
Eric Andersenb052b471999-11-18 00:21:59 +00001091
Erik Andersene49d5ec2000-02-08 19:58:47 +00001092 if (!test_mode)
1093 write_buf(ofd, (char *) window, outcnt);
1094 bytes_out += (ulg) outcnt;
1095 outcnt = 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001096}
1097
1098/* ===========================================================================
1099 * Does the same as write(), but also handles partial pipe writes and checks
1100 * for error return.
1101 */
1102void write_buf(fd, buf, cnt)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001103int fd;
Erik Andersen61677fe2000-04-13 01:18:56 +00001104void * buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001105unsigned cnt;
Eric Andersenb052b471999-11-18 00:21:59 +00001106{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001107 unsigned n;
Eric Andersenb052b471999-11-18 00:21:59 +00001108
Erik Andersene49d5ec2000-02-08 19:58:47 +00001109 while ((n = write(fd, buf, cnt)) != cnt) {
1110 if (n == (unsigned) (-1)) {
Erik Andersen330fd2b2000-05-19 05:35:19 +00001111 write_error_msg();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001112 }
1113 cnt -= n;
Erik Andersen61677fe2000-04-13 01:18:56 +00001114 buf = (void *) ((char *) buf + n);
Eric Andersenb052b471999-11-18 00:21:59 +00001115 }
Eric Andersenb052b471999-11-18 00:21:59 +00001116}
1117
1118#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
1119
1120/* Provide missing strspn and strcspn functions. */
1121
1122# ifndef __STDC__
1123# define const
1124# endif
1125
Erik Andersen61677fe2000-04-13 01:18:56 +00001126int strspn (const char *s, const char *accept);
1127int strcspn (const char *s, const char *reject);
Eric Andersenb052b471999-11-18 00:21:59 +00001128
1129/* ========================================================================
1130 * Return the length of the maximum initial segment
1131 * of s which contains only characters in accept.
1132 */
1133int strspn(s, accept)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001134const char *s;
1135const char *accept;
Eric Andersenb052b471999-11-18 00:21:59 +00001136{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001137 register const char *p;
1138 register const char *a;
1139 register int count = 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001140
Erik Andersene49d5ec2000-02-08 19:58:47 +00001141 for (p = s; *p != '\0'; ++p) {
1142 for (a = accept; *a != '\0'; ++a) {
1143 if (*p == *a)
1144 break;
1145 }
1146 if (*a == '\0')
1147 return count;
1148 ++count;
Eric Andersenb052b471999-11-18 00:21:59 +00001149 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001150 return count;
Eric Andersenb052b471999-11-18 00:21:59 +00001151}
1152
1153/* ========================================================================
1154 * Return the length of the maximum inital segment of s
1155 * which contains no characters from reject.
1156 */
1157int strcspn(s, reject)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001158const char *s;
1159const char *reject;
Eric Andersenb052b471999-11-18 00:21:59 +00001160{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001161 register int count = 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001162
Erik Andersene49d5ec2000-02-08 19:58:47 +00001163 while (*s != '\0') {
1164 if (strchr(reject, *s++) != NULL)
1165 return count;
1166 ++count;
1167 }
1168 return count;
Eric Andersenb052b471999-11-18 00:21:59 +00001169}
1170
Erik Andersene49d5ec2000-02-08 19:58:47 +00001171#endif /* NO_STRING_H */
Eric Andersenb052b471999-11-18 00:21:59 +00001172
1173
1174/* ========================================================================
1175 * Error handlers.
1176 */
Erik Andersen330fd2b2000-05-19 05:35:19 +00001177void read_error_msg()
Eric Andersenb052b471999-11-18 00:21:59 +00001178{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001179 fprintf(stderr, "\n");
1180 if (errno != 0) {
1181 perror("");
1182 } else {
1183 fprintf(stderr, "unexpected end of file\n");
1184 }
1185 abort_gzip();
Eric Andersenb052b471999-11-18 00:21:59 +00001186}
1187
Erik Andersen330fd2b2000-05-19 05:35:19 +00001188void write_error_msg()
Eric Andersenb052b471999-11-18 00:21:59 +00001189{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001190 fprintf(stderr, "\n");
1191 perror("");
1192 abort_gzip();
Eric Andersenb052b471999-11-18 00:21:59 +00001193}
1194
1195
1196/* ========================================================================
Eric Andersenb052b471999-11-18 00:21:59 +00001197 * Table of CRC-32's of all single-byte values (made by makecrc.c)
1198 */
1199static const ulg crc_32_tab[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001200 0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,
1201 0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L,
1202 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L,
1203 0x90bf1d91L, 0x1db71064L, 0x6ab020f2L, 0xf3b97148L, 0x84be41deL,
1204 0x1adad47dL, 0x6ddde4ebL, 0xf4d4b551L, 0x83d385c7L, 0x136c9856L,
1205 0x646ba8c0L, 0xfd62f97aL, 0x8a65c9ecL, 0x14015c4fL, 0x63066cd9L,
1206 0xfa0f3d63L, 0x8d080df5L, 0x3b6e20c8L, 0x4c69105eL, 0xd56041e4L,
1207 0xa2677172L, 0x3c03e4d1L, 0x4b04d447L, 0xd20d85fdL, 0xa50ab56bL,
1208 0x35b5a8faL, 0x42b2986cL, 0xdbbbc9d6L, 0xacbcf940L, 0x32d86ce3L,
1209 0x45df5c75L, 0xdcd60dcfL, 0xabd13d59L, 0x26d930acL, 0x51de003aL,
1210 0xc8d75180L, 0xbfd06116L, 0x21b4f4b5L, 0x56b3c423L, 0xcfba9599L,
1211 0xb8bda50fL, 0x2802b89eL, 0x5f058808L, 0xc60cd9b2L, 0xb10be924L,
1212 0x2f6f7c87L, 0x58684c11L, 0xc1611dabL, 0xb6662d3dL, 0x76dc4190L,
1213 0x01db7106L, 0x98d220bcL, 0xefd5102aL, 0x71b18589L, 0x06b6b51fL,
1214 0x9fbfe4a5L, 0xe8b8d433L, 0x7807c9a2L, 0x0f00f934L, 0x9609a88eL,
1215 0xe10e9818L, 0x7f6a0dbbL, 0x086d3d2dL, 0x91646c97L, 0xe6635c01L,
1216 0x6b6b51f4L, 0x1c6c6162L, 0x856530d8L, 0xf262004eL, 0x6c0695edL,
1217 0x1b01a57bL, 0x8208f4c1L, 0xf50fc457L, 0x65b0d9c6L, 0x12b7e950L,
1218 0x8bbeb8eaL, 0xfcb9887cL, 0x62dd1ddfL, 0x15da2d49L, 0x8cd37cf3L,
1219 0xfbd44c65L, 0x4db26158L, 0x3ab551ceL, 0xa3bc0074L, 0xd4bb30e2L,
1220 0x4adfa541L, 0x3dd895d7L, 0xa4d1c46dL, 0xd3d6f4fbL, 0x4369e96aL,
1221 0x346ed9fcL, 0xad678846L, 0xda60b8d0L, 0x44042d73L, 0x33031de5L,
1222 0xaa0a4c5fL, 0xdd0d7cc9L, 0x5005713cL, 0x270241aaL, 0xbe0b1010L,
1223 0xc90c2086L, 0x5768b525L, 0x206f85b3L, 0xb966d409L, 0xce61e49fL,
1224 0x5edef90eL, 0x29d9c998L, 0xb0d09822L, 0xc7d7a8b4L, 0x59b33d17L,
1225 0x2eb40d81L, 0xb7bd5c3bL, 0xc0ba6cadL, 0xedb88320L, 0x9abfb3b6L,
1226 0x03b6e20cL, 0x74b1d29aL, 0xead54739L, 0x9dd277afL, 0x04db2615L,
1227 0x73dc1683L, 0xe3630b12L, 0x94643b84L, 0x0d6d6a3eL, 0x7a6a5aa8L,
1228 0xe40ecf0bL, 0x9309ff9dL, 0x0a00ae27L, 0x7d079eb1L, 0xf00f9344L,
1229 0x8708a3d2L, 0x1e01f268L, 0x6906c2feL, 0xf762575dL, 0x806567cbL,
1230 0x196c3671L, 0x6e6b06e7L, 0xfed41b76L, 0x89d32be0L, 0x10da7a5aL,
1231 0x67dd4accL, 0xf9b9df6fL, 0x8ebeeff9L, 0x17b7be43L, 0x60b08ed5L,
1232 0xd6d6a3e8L, 0xa1d1937eL, 0x38d8c2c4L, 0x4fdff252L, 0xd1bb67f1L,
1233 0xa6bc5767L, 0x3fb506ddL, 0x48b2364bL, 0xd80d2bdaL, 0xaf0a1b4cL,
1234 0x36034af6L, 0x41047a60L, 0xdf60efc3L, 0xa867df55L, 0x316e8eefL,
1235 0x4669be79L, 0xcb61b38cL, 0xbc66831aL, 0x256fd2a0L, 0x5268e236L,
1236 0xcc0c7795L, 0xbb0b4703L, 0x220216b9L, 0x5505262fL, 0xc5ba3bbeL,
1237 0xb2bd0b28L, 0x2bb45a92L, 0x5cb36a04L, 0xc2d7ffa7L, 0xb5d0cf31L,
1238 0x2cd99e8bL, 0x5bdeae1dL, 0x9b64c2b0L, 0xec63f226L, 0x756aa39cL,
1239 0x026d930aL, 0x9c0906a9L, 0xeb0e363fL, 0x72076785L, 0x05005713L,
1240 0x95bf4a82L, 0xe2b87a14L, 0x7bb12baeL, 0x0cb61b38L, 0x92d28e9bL,
1241 0xe5d5be0dL, 0x7cdcefb7L, 0x0bdbdf21L, 0x86d3d2d4L, 0xf1d4e242L,
1242 0x68ddb3f8L, 0x1fda836eL, 0x81be16cdL, 0xf6b9265bL, 0x6fb077e1L,
1243 0x18b74777L, 0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL,
1244 0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L, 0xa00ae278L,
1245 0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L, 0xa7672661L, 0xd06016f7L,
1246 0x4969474dL, 0x3e6e77dbL, 0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L,
1247 0x37d83bf0L, 0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L,
1248 0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L, 0xbad03605L,
1249 0xcdd70693L, 0x54de5729L, 0x23d967bfL, 0xb3667a2eL, 0xc4614ab8L,
1250 0x5d681b02L, 0x2a6f2b94L, 0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL,
1251 0x2d02ef8dL
Eric Andersenb052b471999-11-18 00:21:59 +00001252};
Erik Andersene49d5ec2000-02-08 19:58:47 +00001253
Eric Andersenb052b471999-11-18 00:21:59 +00001254/* inflate.c -- Not copyrighted 1992 by Mark Adler
1255 version c10p1, 10 January 1993 */
1256
1257/* You can do whatever you like with this source file, though I would
1258 prefer that if you modify it and redistribute it that you include
1259 comments to that effect with your name and the date. Thank you.
1260 [The history has been moved to the file ChangeLog.]
1261 */
1262
1263/*
1264 Inflate deflated (PKZIP's method 8 compressed) data. The compression
1265 method searches for as much of the current string of bytes (up to a
1266 length of 258) in the previous 32K bytes. If it doesn't find any
1267 matches (of at least length 3), it codes the next byte. Otherwise, it
1268 codes the length of the matched string and its distance backwards from
1269 the current position. There is a single Huffman code that codes both
1270 single bytes (called "literals") and match lengths. A second Huffman
1271 code codes the distance information, which follows a length code. Each
1272 length or distance code actually represents a base value and a number
1273 of "extra" (sometimes zero) bits to get to add to the base value. At
1274 the end of each deflated block is a special end-of-block (EOB) literal/
1275 length code. The decoding process is basically: get a literal/length
1276 code; if EOB then done; if a literal, emit the decoded byte; if a
1277 length then get the distance and emit the referred-to bytes from the
1278 sliding window of previously emitted data.
1279
1280 There are (currently) three kinds of inflate blocks: stored, fixed, and
1281 dynamic. The compressor deals with some chunk of data at a time, and
1282 decides which method to use on a chunk-by-chunk basis. A chunk might
1283 typically be 32K or 64K. If the chunk is uncompressible, then the
1284 "stored" method is used. In this case, the bytes are simply stored as
1285 is, eight bits per byte, with none of the above coding. The bytes are
1286 preceded by a count, since there is no longer an EOB code.
1287
1288 If the data is compressible, then either the fixed or dynamic methods
1289 are used. In the dynamic method, the compressed data is preceded by
1290 an encoding of the literal/length and distance Huffman codes that are
1291 to be used to decode this block. The representation is itself Huffman
1292 coded, and so is preceded by a description of that code. These code
1293 descriptions take up a little space, and so for small blocks, there is
1294 a predefined set of codes, called the fixed codes. The fixed method is
1295 used if the block codes up smaller that way (usually for quite small
1296 chunks), otherwise the dynamic method is used. In the latter case, the
1297 codes are customized to the probabilities in the current block, and so
1298 can code it much better than the pre-determined fixed codes.
1299
1300 The Huffman codes themselves are decoded using a mutli-level table
1301 lookup, in order to maximize the speed of decoding plus the speed of
1302 building the decoding tables. See the comments below that precede the
1303 lbits and dbits tuning parameters.
1304 */
1305
1306
1307/*
1308 Notes beyond the 1.93a appnote.txt:
1309
1310 1. Distance pointers never point before the beginning of the output
1311 stream.
1312 2. Distance pointers can point back across blocks, up to 32k away.
1313 3. There is an implied maximum of 7 bits for the bit length table and
1314 15 bits for the actual data.
1315 4. If only one code exists, then it is encoded using one bit. (Zero
1316 would be more efficient, but perhaps a little confusing.) If two
1317 codes exist, they are coded using one bit each (0 and 1).
1318 5. There is no way of sending zero distance codes--a dummy must be
1319 sent if there are none. (History: a pre 2.0 version of PKZIP would
1320 store blocks with no distance codes, but this was discovered to be
1321 too harsh a criterion.) Valid only for 1.93a. 2.04c does allow
1322 zero distance codes, which is sent as one code of zero bits in
1323 length.
1324 6. There are up to 286 literal/length codes. Code 256 represents the
1325 end-of-block. Note however that the static length tree defines
1326 288 codes just to fill out the Huffman codes. Codes 286 and 287
1327 cannot be used though, since there is no length base or extra bits
1328 defined for them. Similarly, there are up to 30 distance codes.
1329 However, static trees define 32 codes (all 5 bits) to fill out the
1330 Huffman codes, but the last two had better not show up in the data.
1331 7. Unzip can check dynamic Huffman blocks for complete code sets.
1332 The exception is that a single code would not be complete (see #4).
1333 8. The five bits following the block type is really the number of
1334 literal codes sent minus 257.
1335 9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
1336 (1+6+6). Therefore, to output three times the length, you output
1337 three codes (1+1+1), whereas to output four times the same length,
1338 you only need two codes (1+3). Hmm.
1339 10. In the tree reconstruction algorithm, Code = Code + Increment
1340 only if BitLength(i) is not zero. (Pretty obvious.)
1341 11. Correction: 4 Bits: # of Bit Length codes - 4 (4 - 19)
1342 12. Note: length code 284 can represent 227-258, but length code 285
1343 really is 258. The last length deserves its own, short code
1344 since it gets used a lot in very redundant files. The length
1345 258 is special since 258 - 3 (the min match length) is 255.
1346 13. The literal/length and distance code bit lengths are read as a
1347 single stream of lengths. It is possible (and advantageous) for
1348 a repeat code (16, 17, or 18) to go across the boundary between
1349 the two sets of lengths.
1350 */
1351
1352#include <sys/types.h>
1353
1354#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1355# include <stdlib.h>
1356#endif
1357
1358
1359#define slide window
1360
1361/* Huffman code lookup table entry--this entry is four bytes for machines
1362 that have 16-bit pointers (e.g. PC's in the small or medium model).
1363 Valid extra bits are 0..13. e == 15 is EOB (end of block), e == 16
1364 means that v is a literal, 16 < e < 32 means that v is a pointer to
1365 the next table, which codes e - 16 bits, and lastly e == 99 indicates
1366 an unused code. If a code with e == 99 is looked up, this implies an
1367 error in the data. */
1368struct huft {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001369 uch e; /* number of extra bits or operation */
1370 uch b; /* number of bits in this code or subcode */
1371 union {
1372 ush n; /* literal, length base, or distance base */
1373 struct huft *t; /* pointer to next level of table */
1374 } v;
Eric Andersenb052b471999-11-18 00:21:59 +00001375};
1376
1377
1378/* Function prototypes */
Erik Andersen61677fe2000-04-13 01:18:56 +00001379int huft_build (unsigned *, unsigned, unsigned, ush *, ush *,
1380 struct huft **, int *);
1381int huft_free (struct huft *);
1382int inflate_codes (struct huft *, struct huft *, int, int);
1383int inflate_stored (void);
1384int inflate_fixed (void);
1385int inflate_dynamic (void);
1386int inflate_block (int *);
1387int inflate (void);
Eric Andersenb052b471999-11-18 00:21:59 +00001388
1389
1390/* The inflate algorithm uses a sliding 32K byte window on the uncompressed
1391 stream to find repeated byte strings. This is implemented here as a
1392 circular buffer. The index is updated simply by incrementing and then
1393 and'ing with 0x7fff (32K-1). */
1394/* It is left to other modules to supply the 32K area. It is assumed
1395 to be usable as if it were declared "uch slide[32768];" or as just
1396 "uch *slide;" and then malloc'ed in the latter case. The definition
1397 must be in unzip.h, included above. */
1398/* unsigned wp; current position in slide */
1399#define wp outcnt
1400#define flush_output(w) (wp=(w),flush_window())
1401
1402/* Tables for deflate from PKZIP's appnote.txt. */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001403static unsigned border[] = { /* Order of the bit length code lengths */
1404 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15
1405};
1406static ush cplens[] = { /* Copy lengths for literal codes 257..285 */
1407 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
1408 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
1409};
1410
1411 /* note: see note #13 above about the 258 in this list. */
1412static ush cplext[] = { /* Extra bits for literal codes 257..285 */
1413 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
1414 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 99, 99
1415}; /* 99==invalid */
1416static ush cpdist[] = { /* Copy offsets for distance codes 0..29 */
1417 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
1418 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
1419 8193, 12289, 16385, 24577
1420};
1421static ush cpdext[] = { /* Extra bits for distance codes */
1422 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
1423 7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
1424 12, 12, 13, 13
1425};
Eric Andersenb052b471999-11-18 00:21:59 +00001426
1427
1428
1429/* Macros for inflate() bit peeking and grabbing.
1430 The usage is:
1431
1432 NEEDBITS(j)
1433 x = b & mask_bits[j];
1434 DUMPBITS(j)
1435
1436 where NEEDBITS makes sure that b has at least j bits in it, and
1437 DUMPBITS removes the bits from b. The macros use the variable k
1438 for the number of bits in b. Normally, b and k are register
1439 variables for speed, and are initialized at the beginning of a
1440 routine that uses these macros from a global bit buffer and count.
1441
1442 If we assume that EOB will be the longest code, then we will never
1443 ask for bits with NEEDBITS that are beyond the end of the stream.
1444 So, NEEDBITS should not read any more bytes than are needed to
1445 meet the request. Then no bytes need to be "returned" to the buffer
1446 at the end of the last block.
1447
1448 However, this assumption is not true for fixed blocks--the EOB code
1449 is 7 bits, but the other literal/length codes can be 8 or 9 bits.
1450 (The EOB code is shorter than other codes because fixed blocks are
1451 generally short. So, while a block always has an EOB, many other
1452 literal/length codes have a significantly lower probability of
1453 showing up at all.) However, by making the first table have a
1454 lookup of seven bits, the EOB code will be found in that first
1455 lookup, and so will not require that too many bits be pulled from
1456 the stream.
1457 */
1458
Erik Andersene49d5ec2000-02-08 19:58:47 +00001459ulg bb; /* bit buffer */
1460unsigned bk; /* bits in bit buffer */
Eric Andersenb052b471999-11-18 00:21:59 +00001461
1462ush mask_bits[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001463 0x0000,
1464 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
1465 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
Eric Andersenb052b471999-11-18 00:21:59 +00001466};
1467
1468#ifdef CRYPT
Erik Andersene49d5ec2000-02-08 19:58:47 +00001469uch cc;
1470
Eric Andersenb052b471999-11-18 00:21:59 +00001471# define NEXTBYTE() (cc = get_byte(), zdecode(cc), cc)
1472#else
1473# define NEXTBYTE() (uch)get_byte()
1474#endif
1475#define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
1476#define DUMPBITS(n) {b>>=(n);k-=(n);}
1477
1478
1479/*
1480 Huffman code decoding is performed using a multi-level table lookup.
1481 The fastest way to decode is to simply build a lookup table whose
1482 size is determined by the longest code. However, the time it takes
1483 to build this table can also be a factor if the data being decoded
1484 is not very long. The most common codes are necessarily the
1485 shortest codes, so those codes dominate the decoding time, and hence
1486 the speed. The idea is you can have a shorter table that decodes the
1487 shorter, more probable codes, and then point to subsidiary tables for
1488 the longer codes. The time it costs to decode the longer codes is
1489 then traded against the time it takes to make longer tables.
1490
1491 This results of this trade are in the variables lbits and dbits
1492 below. lbits is the number of bits the first level table for literal/
1493 length codes can decode in one step, and dbits is the same thing for
1494 the distance codes. Subsequent tables are also less than or equal to
1495 those sizes. These values may be adjusted either when all of the
1496 codes are shorter than that, in which case the longest code length in
1497 bits is used, or when the shortest code is *longer* than the requested
1498 table size, in which case the length of the shortest code in bits is
1499 used.
1500
1501 There are two different values for the two tables, since they code a
1502 different number of possibilities each. The literal/length table
1503 codes 286 possible values, or in a flat code, a little over eight
1504 bits. The distance table codes 30 possible values, or a little less
1505 than five bits, flat. The optimum values for speed end up being
1506 about one bit more than those, so lbits is 8+1 and dbits is 5+1.
1507 The optimum values may differ though from machine to machine, and
1508 possibly even between compilers. Your mileage may vary.
1509 */
1510
1511
Erik Andersene49d5ec2000-02-08 19:58:47 +00001512int lbits = 9; /* bits in base literal/length lookup table */
1513int dbits = 6; /* bits in base distance lookup table */
Eric Andersenb052b471999-11-18 00:21:59 +00001514
1515
1516/* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001517#define BMAX 16 /* maximum bit length of any code (16 for explode) */
1518#define N_MAX 288 /* maximum number of codes in any set */
Eric Andersenb052b471999-11-18 00:21:59 +00001519
1520
Erik Andersene49d5ec2000-02-08 19:58:47 +00001521unsigned hufts; /* track memory usage */
Eric Andersenb052b471999-11-18 00:21:59 +00001522
1523
1524int huft_build(b, n, s, d, e, t, m)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001525unsigned *b; /* code lengths in bits (all assumed <= BMAX) */
1526unsigned n; /* number of codes (assumed <= N_MAX) */
1527unsigned s; /* number of simple-valued codes (0..s-1) */
1528ush *d; /* list of base values for non-simple codes */
1529ush *e; /* list of extra bits for non-simple codes */
1530struct huft **t; /* result: starting table */
1531int *m; /* maximum lookup bits, returns actual */
1532
Eric Andersenb052b471999-11-18 00:21:59 +00001533/* Given a list of code lengths and a maximum table size, make a set of
1534 tables to decode that set of codes. Return zero on success, one if
1535 the given code set is incomplete (the tables are still built in this
1536 case), two if the input is invalid (all zero length codes or an
1537 oversubscribed set of lengths), and three if not enough memory. */
1538{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001539 unsigned a; /* counter for codes of length k */
1540 unsigned c[BMAX + 1]; /* bit length count table */
1541 unsigned f; /* i repeats in table every f entries */
1542 int g; /* maximum code length */
1543 int h; /* table level */
1544 register unsigned i; /* counter, current code */
1545 register unsigned j; /* counter */
1546 register int k; /* number of bits in current code */
1547 int l; /* bits per table (returned in m) */
1548 register unsigned *p; /* pointer into c[], b[], or v[] */
1549 register struct huft *q; /* points to current table */
1550 struct huft r; /* table entry for structure assignment */
1551 struct huft *u[BMAX]; /* table stack */
1552 unsigned v[N_MAX]; /* values in order of bit length */
1553 register int w; /* bits before this table == (l * h) */
1554 unsigned x[BMAX + 1]; /* bit offsets, then code stack */
1555 unsigned *xp; /* pointer into x */
1556 int y; /* number of dummy codes added */
1557 unsigned z; /* number of entries in current table */
Eric Andersenb052b471999-11-18 00:21:59 +00001558
1559
Erik Andersene49d5ec2000-02-08 19:58:47 +00001560 /* Generate counts for each bit length */
1561 memzero(c, sizeof(c));
1562 p = b;
1563 i = n;
1564 do {
1565 Tracecv(*p,
1566 (stderr,
1567 (n - i >= ' '
1568 && n - i <= '~' ? "%c %d\n" : "0x%x %d\n"), n - i, *p));
1569 c[*p]++; /* assume all entries <= BMAX */
1570 p++; /* Can't combine with above line (Solaris bug) */
1571 } while (--i);
1572 if (c[0] == n) { /* null input--all zero length codes */
1573 *t = (struct huft *) NULL;
1574 *m = 0;
1575 return 0;
1576 }
Eric Andersenb052b471999-11-18 00:21:59 +00001577
1578
Erik Andersene49d5ec2000-02-08 19:58:47 +00001579 /* Find minimum and maximum length, bound *m by those */
1580 l = *m;
1581 for (j = 1; j <= BMAX; j++)
1582 if (c[j])
1583 break;
1584 k = j; /* minimum code length */
1585 if ((unsigned) l < j)
1586 l = j;
1587 for (i = BMAX; i; i--)
1588 if (c[i])
1589 break;
1590 g = i; /* maximum code length */
1591 if ((unsigned) l > i)
1592 l = i;
1593 *m = l;
Eric Andersenb052b471999-11-18 00:21:59 +00001594
1595
Erik Andersene49d5ec2000-02-08 19:58:47 +00001596 /* Adjust last length count to fill out codes, if needed */
1597 for (y = 1 << j; j < i; j++, y <<= 1)
1598 if ((y -= c[j]) < 0)
1599 return 2; /* bad input: more codes than bits */
1600 if ((y -= c[i]) < 0)
1601 return 2;
1602 c[i] += y;
Eric Andersenb052b471999-11-18 00:21:59 +00001603
1604
Erik Andersene49d5ec2000-02-08 19:58:47 +00001605 /* Generate starting offsets into the value table for each length */
1606 x[1] = j = 0;
1607 p = c + 1;
1608 xp = x + 2;
1609 while (--i) { /* note that i == g from above */
1610 *xp++ = (j += *p++);
1611 }
Eric Andersenb052b471999-11-18 00:21:59 +00001612
1613
Erik Andersene49d5ec2000-02-08 19:58:47 +00001614 /* Make a table of values in order of bit lengths */
1615 p = b;
1616 i = 0;
1617 do {
1618 if ((j = *p++) != 0)
1619 v[x[j]++] = i;
1620 } while (++i < n);
Eric Andersenb052b471999-11-18 00:21:59 +00001621
1622
Erik Andersene49d5ec2000-02-08 19:58:47 +00001623 /* Generate the Huffman codes and for each, make the table entries */
1624 x[0] = i = 0; /* first Huffman code is zero */
1625 p = v; /* grab values in bit order */
1626 h = -1; /* no tables yet--level -1 */
1627 w = -l; /* bits decoded == (l * h) */
1628 u[0] = (struct huft *) NULL; /* just to keep compilers happy */
1629 q = (struct huft *) NULL; /* ditto */
1630 z = 0; /* ditto */
Eric Andersenb052b471999-11-18 00:21:59 +00001631
Erik Andersene49d5ec2000-02-08 19:58:47 +00001632 /* go through the bit lengths (k already is bits in shortest code) */
1633 for (; k <= g; k++) {
1634 a = c[k];
1635 while (a--) {
1636 /* here i is the Huffman code of length k bits for value *p */
1637 /* make tables up to required level */
1638 while (k > w + l) {
1639 h++;
1640 w += l; /* previous table always l bits */
Eric Andersenb052b471999-11-18 00:21:59 +00001641
Erik Andersene49d5ec2000-02-08 19:58:47 +00001642 /* compute minimum size table less than or equal to l bits */
1643 z = (z = g - w) > (unsigned) l ? l : z; /* upper limit on table size */
1644 if ((f = 1 << (j = k - w)) > a + 1) { /* try a k-w bit table *//* too few codes for k-w bit table */
1645 f -= a + 1; /* deduct codes from patterns left */
1646 xp = c + k;
1647 while (++j < z) { /* try smaller tables up to z bits */
1648 if ((f <<= 1) <= *++xp)
1649 break; /* enough codes to use up j bits */
1650 f -= *xp; /* else deduct codes from patterns */
1651 }
1652 }
1653 z = 1 << j; /* table entries for j-bit table */
Eric Andersenb052b471999-11-18 00:21:59 +00001654
Erik Andersene49d5ec2000-02-08 19:58:47 +00001655 /* allocate and link in new table */
1656 if (
1657 (q =
1658 (struct huft *) malloc((z + 1) *
1659 sizeof(struct huft))) ==
1660 (struct huft *) NULL) {
1661 if (h)
1662 huft_free(u[0]);
1663 return 3; /* not enough memory */
1664 }
1665 hufts += z + 1; /* track memory usage */
1666 *t = q + 1; /* link to list for huft_free() */
1667 *(t = &(q->v.t)) = (struct huft *) NULL;
1668 u[h] = ++q; /* table starts after link */
Eric Andersenb052b471999-11-18 00:21:59 +00001669
Erik Andersene49d5ec2000-02-08 19:58:47 +00001670 /* connect to last table, if there is one */
1671 if (h) {
1672 x[h] = i; /* save pattern for backing up */
1673 r.b = (uch) l; /* bits to dump before this table */
1674 r.e = (uch) (16 + j); /* bits in this table */
1675 r.v.t = q; /* pointer to this table */
1676 j = i >> (w - l); /* (get around Turbo C bug) */
1677 u[h - 1][j] = r; /* connect to last table */
1678 }
1679 }
Eric Andersenb052b471999-11-18 00:21:59 +00001680
Erik Andersene49d5ec2000-02-08 19:58:47 +00001681 /* set up table entry in r */
1682 r.b = (uch) (k - w);
1683 if (p >= v + n)
1684 r.e = 99; /* out of values--invalid code */
1685 else if (*p < s) {
1686 r.e = (uch) (*p < 256 ? 16 : 15); /* 256 is end-of-block code */
1687 r.v.n = (ush) (*p); /* simple code is just the value */
1688 p++; /* one compiler does not like *p++ */
1689 } else {
1690 r.e = (uch) e[*p - s]; /* non-simple--look up in lists */
1691 r.v.n = d[*p++ - s];
1692 }
Eric Andersenb052b471999-11-18 00:21:59 +00001693
Erik Andersene49d5ec2000-02-08 19:58:47 +00001694 /* fill code-like entries with r */
1695 f = 1 << (k - w);
1696 for (j = i >> w; j < z; j += f)
1697 q[j] = r;
Eric Andersenb052b471999-11-18 00:21:59 +00001698
Erik Andersene49d5ec2000-02-08 19:58:47 +00001699 /* backwards increment the k-bit code i */
1700 for (j = 1 << (k - 1); i & j; j >>= 1)
1701 i ^= j;
1702 i ^= j;
Eric Andersenb052b471999-11-18 00:21:59 +00001703
Erik Andersene49d5ec2000-02-08 19:58:47 +00001704 /* backup over finished tables */
1705 while ((i & ((1 << w) - 1)) != x[h]) {
1706 h--; /* don't need to update q */
1707 w -= l;
1708 }
1709 }
1710 }
Eric Andersenb052b471999-11-18 00:21:59 +00001711
1712
Erik Andersene49d5ec2000-02-08 19:58:47 +00001713 /* Return true (1) if we were given an incomplete table */
1714 return y != 0 && g != 1;
Eric Andersenb052b471999-11-18 00:21:59 +00001715}
1716
1717
1718
1719int huft_free(t)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001720struct huft *t; /* table to free */
1721
Eric Andersenb052b471999-11-18 00:21:59 +00001722/* Free the malloc'ed tables built by huft_build(), which makes a linked
1723 list of the tables it made, with the links in a dummy first entry of
1724 each table. */
1725{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001726 register struct huft *p, *q;
Eric Andersenb052b471999-11-18 00:21:59 +00001727
1728
Erik Andersene49d5ec2000-02-08 19:58:47 +00001729 /* Go through linked list, freeing from the malloced (t[-1]) address. */
1730 p = t;
1731 while (p != (struct huft *) NULL) {
1732 q = (--p)->v.t;
1733 free((char *) p);
1734 p = q;
1735 }
1736 return 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001737}
1738
1739
1740int inflate_codes(tl, td, bl, bd)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001741struct huft *tl, *td; /* literal/length and distance decoder tables */
1742int bl, bd; /* number of bits decoded by tl[] and td[] */
1743
Eric Andersenb052b471999-11-18 00:21:59 +00001744/* inflate (decompress) the codes in a deflated (compressed) block.
1745 Return an error code or zero if it all goes ok. */
1746{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001747 register unsigned e; /* table entry flag/number of extra bits */
1748 unsigned n, d; /* length and index for copy */
1749 unsigned w; /* current window position */
1750 struct huft *t; /* pointer to table entry */
1751 unsigned ml, md; /* masks for bl and bd bits */
1752 register ulg b; /* bit buffer */
1753 register unsigned k; /* number of bits in bit buffer */
Eric Andersenb052b471999-11-18 00:21:59 +00001754
1755
Erik Andersene49d5ec2000-02-08 19:58:47 +00001756 /* make local copies of globals */
1757 b = bb; /* initialize bit buffer */
1758 k = bk;
1759 w = wp; /* initialize window position */
Eric Andersenb052b471999-11-18 00:21:59 +00001760
Erik Andersene49d5ec2000-02-08 19:58:47 +00001761 /* inflate the coded data */
1762 ml = mask_bits[bl]; /* precompute masks for speed */
1763 md = mask_bits[bd];
1764 for (;;) { /* do until end of block */
1765 NEEDBITS((unsigned) bl)
1766 if ((e = (t = tl + ((unsigned) b & ml))->e) > 16)
1767 do {
1768 if (e == 99)
1769 return 1;
1770 DUMPBITS(t->b)
1771 e -= 16;
1772 NEEDBITS(e)
1773 } while ((e = (t = t->v.t + ((unsigned) b & mask_bits[e]))->e)
1774 > 16);
1775 DUMPBITS(t->b)
1776 if (e == 16) { /* then it's a literal */
1777 slide[w++] = (uch) t->v.n;
1778 Tracevv((stderr, "%c", slide[w - 1]));
1779 if (w == WSIZE) {
1780 flush_output(w);
1781 w = 0;
1782 }
1783 } else { /* it's an EOB or a length */
Eric Andersenb052b471999-11-18 00:21:59 +00001784
Erik Andersene49d5ec2000-02-08 19:58:47 +00001785 /* exit if end of block */
1786 if (e == 15)
1787 break;
Eric Andersenb052b471999-11-18 00:21:59 +00001788
Erik Andersene49d5ec2000-02-08 19:58:47 +00001789 /* get length of block to copy */
1790 NEEDBITS(e)
1791 n = t->v.n + ((unsigned) b & mask_bits[e]);
1792 DUMPBITS(e);
Eric Andersenb052b471999-11-18 00:21:59 +00001793
Erik Andersene49d5ec2000-02-08 19:58:47 +00001794 /* decode distance of block to copy */
1795 NEEDBITS((unsigned) bd)
1796 if ((e = (t = td + ((unsigned) b & md))->e) > 16)
1797 do {
1798 if (e == 99)
1799 return 1;
1800 DUMPBITS(t->b)
1801 e -= 16;
1802 NEEDBITS(e)
1803 }
1804 while (
1805 (e =
1806 (t =
1807 t->v.t + ((unsigned) b & mask_bits[e]))->e) >
1808 16);
1809 DUMPBITS(t->b)
1810 NEEDBITS(e)
1811 d = w - t->v.n - ((unsigned) b & mask_bits[e]);
1812 DUMPBITS(e)
1813 Tracevv((stderr, "\\[%d,%d]", w - d, n));
1814
1815 /* do the copy */
1816 do {
1817 n -= (e =
1818 (e =
1819 WSIZE - ((d &= WSIZE - 1) > w ? d : w)) >
1820 n ? n : e);
Eric Andersenb052b471999-11-18 00:21:59 +00001821#if !defined(NOMEMCPY) && !defined(DEBUG)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001822 if (w - d >= e) { /* (this test assumes unsigned comparison) */
1823 memcpy(slide + w, slide + d, e);
1824 w += e;
1825 d += e;
1826 } else /* do it slow to avoid memcpy() overlap */
1827#endif /* !NOMEMCPY */
1828 do {
1829 slide[w++] = slide[d++];
1830 Tracevv((stderr, "%c", slide[w - 1]));
1831 } while (--e);
1832 if (w == WSIZE) {
1833 flush_output(w);
1834 w = 0;
1835 }
1836 } while (n);
1837 }
1838 }
Eric Andersenb052b471999-11-18 00:21:59 +00001839
1840
Erik Andersene49d5ec2000-02-08 19:58:47 +00001841 /* restore the globals from the locals */
1842 wp = w; /* restore global window pointer */
1843 bb = b; /* restore global bit buffer */
1844 bk = k;
Eric Andersenb052b471999-11-18 00:21:59 +00001845
Erik Andersene49d5ec2000-02-08 19:58:47 +00001846 /* done */
1847 return 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001848}
1849
1850
1851
1852int inflate_stored()
1853/* "decompress" an inflated type 0 (stored) block. */
1854{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001855 unsigned n; /* number of bytes in block */
1856 unsigned w; /* current window position */
1857 register ulg b; /* bit buffer */
1858 register unsigned k; /* number of bits in bit buffer */
Eric Andersenb052b471999-11-18 00:21:59 +00001859
1860
Erik Andersene49d5ec2000-02-08 19:58:47 +00001861 /* make local copies of globals */
1862 b = bb; /* initialize bit buffer */
1863 k = bk;
1864 w = wp; /* initialize window position */
Eric Andersenb052b471999-11-18 00:21:59 +00001865
1866
Erik Andersene49d5ec2000-02-08 19:58:47 +00001867 /* go to byte boundary */
1868 n = k & 7;
1869 DUMPBITS(n);
Eric Andersenb052b471999-11-18 00:21:59 +00001870
1871
Erik Andersene49d5ec2000-02-08 19:58:47 +00001872 /* get the length and its complement */
1873 NEEDBITS(16)
1874 n = ((unsigned) b & 0xffff);
1875 DUMPBITS(16)
1876 NEEDBITS(16)
1877 if (n != (unsigned) ((~b) & 0xffff))
1878 return 1; /* error in compressed data */
1879 DUMPBITS(16)
Eric Andersenb052b471999-11-18 00:21:59 +00001880
1881
Erik Andersene49d5ec2000-02-08 19:58:47 +00001882 /* read and output the compressed data */
1883 while (n--) {
1884 NEEDBITS(8)
1885 slide[w++] = (uch) b;
1886 if (w == WSIZE) {
1887 flush_output(w);
1888 w = 0;
1889 }
1890 DUMPBITS(8)
1891 }
Eric Andersenb052b471999-11-18 00:21:59 +00001892
1893
Erik Andersene49d5ec2000-02-08 19:58:47 +00001894 /* restore the globals from the locals */
1895 wp = w; /* restore global window pointer */
1896 bb = b; /* restore global bit buffer */
1897 bk = k;
1898 return 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001899}
1900
1901
1902
1903int inflate_fixed()
1904/* decompress an inflated type 1 (fixed Huffman codes) block. We should
1905 either replace this with a custom decoder, or at least precompute the
1906 Huffman tables. */
1907{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001908 int i; /* temporary variable */
1909 struct huft *tl; /* literal/length code table */
1910 struct huft *td; /* distance code table */
1911 int bl; /* lookup bits for tl */
1912 int bd; /* lookup bits for td */
1913 unsigned l[288]; /* length list for huft_build */
Eric Andersenb052b471999-11-18 00:21:59 +00001914
1915
Erik Andersene49d5ec2000-02-08 19:58:47 +00001916 /* set up literal table */
1917 for (i = 0; i < 144; i++)
1918 l[i] = 8;
1919 for (; i < 256; i++)
1920 l[i] = 9;
1921 for (; i < 280; i++)
1922 l[i] = 7;
1923 for (; i < 288; i++) /* make a complete, but wrong code set */
1924 l[i] = 8;
1925 bl = 7;
1926 if ((i = huft_build(l, 288, 257, cplens, cplext, &tl, &bl)) != 0)
1927 return i;
Eric Andersenb052b471999-11-18 00:21:59 +00001928
1929
Erik Andersene49d5ec2000-02-08 19:58:47 +00001930 /* set up distance table */
1931 for (i = 0; i < 30; i++) /* make an incomplete code set */
1932 l[i] = 5;
1933 bd = 5;
1934 if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1) {
1935 huft_free(tl);
1936 return i;
1937 }
Eric Andersenb052b471999-11-18 00:21:59 +00001938
1939
Erik Andersene49d5ec2000-02-08 19:58:47 +00001940 /* decompress until an end-of-block code */
1941 if (inflate_codes(tl, td, bl, bd))
1942 return 1;
Eric Andersenb052b471999-11-18 00:21:59 +00001943
1944
Erik Andersene49d5ec2000-02-08 19:58:47 +00001945 /* free the decoding tables, return */
1946 huft_free(tl);
1947 huft_free(td);
1948 return 0;
Eric Andersenb052b471999-11-18 00:21:59 +00001949}
1950
1951
1952
1953int inflate_dynamic()
1954/* decompress an inflated type 2 (dynamic Huffman codes) block. */
1955{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001956 int i; /* temporary variables */
1957 unsigned j;
1958 unsigned l; /* last length */
1959 unsigned m; /* mask for bit lengths table */
1960 unsigned n; /* number of lengths to get */
1961 struct huft *tl; /* literal/length code table */
1962 struct huft *td; /* distance code table */
1963 int bl; /* lookup bits for tl */
1964 int bd; /* lookup bits for td */
1965 unsigned nb; /* number of bit length codes */
1966 unsigned nl; /* number of literal/length codes */
1967 unsigned nd; /* number of distance codes */
1968
Eric Andersenb052b471999-11-18 00:21:59 +00001969#ifdef PKZIP_BUG_WORKAROUND
Erik Andersene49d5ec2000-02-08 19:58:47 +00001970 unsigned ll[288 + 32]; /* literal/length and distance code lengths */
Eric Andersenb052b471999-11-18 00:21:59 +00001971#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001972 unsigned ll[286 + 30]; /* literal/length and distance code lengths */
Eric Andersenb052b471999-11-18 00:21:59 +00001973#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001974 register ulg b; /* bit buffer */
1975 register unsigned k; /* number of bits in bit buffer */
Eric Andersenb052b471999-11-18 00:21:59 +00001976
1977
Erik Andersene49d5ec2000-02-08 19:58:47 +00001978 /* make local bit buffer */
1979 b = bb;
1980 k = bk;
Eric Andersenb052b471999-11-18 00:21:59 +00001981
1982
Erik Andersene49d5ec2000-02-08 19:58:47 +00001983 /* read in table lengths */
1984 NEEDBITS(5)
1985 nl = 257 + ((unsigned) b & 0x1f); /* number of literal/length codes */
1986 DUMPBITS(5)
1987 NEEDBITS(5)
1988 nd = 1 + ((unsigned) b & 0x1f); /* number of distance codes */
1989 DUMPBITS(5)
1990 NEEDBITS(4)
1991 nb = 4 + ((unsigned) b & 0xf); /* number of bit length codes */
1992 DUMPBITS(4)
Eric Andersenb052b471999-11-18 00:21:59 +00001993#ifdef PKZIP_BUG_WORKAROUND
Erik Andersene49d5ec2000-02-08 19:58:47 +00001994 if (nl > 288 || nd > 32)
Eric Andersenb052b471999-11-18 00:21:59 +00001995#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001996 if (nl > 286 || nd > 30)
Eric Andersenb052b471999-11-18 00:21:59 +00001997#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001998 return 1; /* bad lengths */
Eric Andersenb052b471999-11-18 00:21:59 +00001999
2000
Erik Andersene49d5ec2000-02-08 19:58:47 +00002001 /* read in bit-length-code lengths */
2002 for (j = 0; j < nb; j++) {
2003 NEEDBITS(3)
2004 ll[border[j]] = (unsigned) b & 7;
2005 DUMPBITS(3)
2006 }
2007 for (; j < 19; j++)
2008 ll[border[j]] = 0;
Eric Andersenb052b471999-11-18 00:21:59 +00002009
2010
Erik Andersene49d5ec2000-02-08 19:58:47 +00002011 /* build decoding table for trees--single level, 7 bit lookup */
2012 bl = 7;
2013 if ((i = huft_build(ll, 19, 19, NULL, NULL, &tl, &bl)) != 0) {
2014 if (i == 1)
2015 huft_free(tl);
2016 return i; /* incomplete code set */
2017 }
Eric Andersenb052b471999-11-18 00:21:59 +00002018
2019
Erik Andersene49d5ec2000-02-08 19:58:47 +00002020 /* read in literal and distance code lengths */
2021 n = nl + nd;
2022 m = mask_bits[bl];
2023 i = l = 0;
2024 while ((unsigned) i < n) {
2025 NEEDBITS((unsigned) bl)
2026 j = (td = tl + ((unsigned) b & m))->b;
2027 DUMPBITS(j)
2028 j = td->v.n;
2029 if (j < 16) /* length of code in bits (0..15) */
2030 ll[i++] = l = j; /* save last length in l */
2031 else if (j == 16) { /* repeat last length 3 to 6 times */
2032 NEEDBITS(2)
2033 j = 3 + ((unsigned) b & 3);
2034 DUMPBITS(2)
2035 if ((unsigned) i + j > n)
2036 return 1;
2037 while (j--)
2038 ll[i++] = l;
2039 } else if (j == 17) { /* 3 to 10 zero length codes */
2040 NEEDBITS(3)
2041 j = 3 + ((unsigned) b & 7);
2042 DUMPBITS(3)
2043 if ((unsigned) i + j > n)
2044 return 1;
2045 while (j--)
2046 ll[i++] = 0;
2047 l = 0;
2048 } else { /* j == 18: 11 to 138 zero length codes */
2049
2050 NEEDBITS(7)
2051 j = 11 + ((unsigned) b & 0x7f);
2052 DUMPBITS(7)
2053 if ((unsigned) i + j > n)
2054 return 1;
2055 while (j--)
2056 ll[i++] = 0;
2057 l = 0;
2058 }
2059 }
Eric Andersenb052b471999-11-18 00:21:59 +00002060
2061
Erik Andersene49d5ec2000-02-08 19:58:47 +00002062 /* free decoding table for trees */
2063 huft_free(tl);
Eric Andersenb052b471999-11-18 00:21:59 +00002064
2065
Erik Andersene49d5ec2000-02-08 19:58:47 +00002066 /* restore the global bit buffer */
2067 bb = b;
2068 bk = k;
Eric Andersenb052b471999-11-18 00:21:59 +00002069
2070
Erik Andersene49d5ec2000-02-08 19:58:47 +00002071 /* build the decoding tables for literal/length and distance codes */
2072 bl = lbits;
2073 if ((i = huft_build(ll, nl, 257, cplens, cplext, &tl, &bl)) != 0) {
2074 if (i == 1) {
2075 fprintf(stderr, " incomplete literal tree\n");
2076 huft_free(tl);
2077 }
2078 return i; /* incomplete code set */
2079 }
2080 bd = dbits;
2081 if ((i = huft_build(ll + nl, nd, 0, cpdist, cpdext, &td, &bd)) != 0) {
2082 if (i == 1) {
2083 fprintf(stderr, " incomplete distance tree\n");
Eric Andersenb052b471999-11-18 00:21:59 +00002084#ifdef PKZIP_BUG_WORKAROUND
Erik Andersene49d5ec2000-02-08 19:58:47 +00002085 i = 0;
2086 }
Eric Andersenb052b471999-11-18 00:21:59 +00002087#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002088 huft_free(td);
2089 }
2090 huft_free(tl);
2091 return i; /* incomplete code set */
Eric Andersenb052b471999-11-18 00:21:59 +00002092#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002093 }
Eric Andersenb052b471999-11-18 00:21:59 +00002094
2095
Erik Andersene49d5ec2000-02-08 19:58:47 +00002096 /* decompress until an end-of-block code */
2097 if (inflate_codes(tl, td, bl, bd))
2098 return 1;
Eric Andersenb052b471999-11-18 00:21:59 +00002099
2100
Erik Andersene49d5ec2000-02-08 19:58:47 +00002101 /* free the decoding tables, return */
2102 huft_free(tl);
2103 huft_free(td);
2104 return 0;
Eric Andersenb052b471999-11-18 00:21:59 +00002105}
2106
2107
2108
2109int inflate_block(e)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002110int *e; /* last block flag */
2111
Eric Andersenb052b471999-11-18 00:21:59 +00002112/* decompress an inflated block */
2113{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002114 unsigned t; /* block type */
2115 register ulg b; /* bit buffer */
2116 register unsigned k; /* number of bits in bit buffer */
Eric Andersenb052b471999-11-18 00:21:59 +00002117
2118
Erik Andersene49d5ec2000-02-08 19:58:47 +00002119 /* make local bit buffer */
2120 b = bb;
2121 k = bk;
Eric Andersenb052b471999-11-18 00:21:59 +00002122
2123
Erik Andersene49d5ec2000-02-08 19:58:47 +00002124 /* read in last block bit */
2125 NEEDBITS(1)
2126 * e = (int) b & 1;
2127 DUMPBITS(1)
Eric Andersenb052b471999-11-18 00:21:59 +00002128
2129
Erik Andersene49d5ec2000-02-08 19:58:47 +00002130 /* read in block type */
2131 NEEDBITS(2)
2132 t = (unsigned) b & 3;
2133 DUMPBITS(2)
Eric Andersenb052b471999-11-18 00:21:59 +00002134
2135
Erik Andersene49d5ec2000-02-08 19:58:47 +00002136 /* restore the global bit buffer */
2137 bb = b;
2138 bk = k;
Eric Andersenb052b471999-11-18 00:21:59 +00002139
2140
Erik Andersene49d5ec2000-02-08 19:58:47 +00002141 /* inflate that block type */
2142 if (t == 2)
2143 return inflate_dynamic();
2144 if (t == 0)
2145 return inflate_stored();
2146 if (t == 1)
2147 return inflate_fixed();
Eric Andersenb052b471999-11-18 00:21:59 +00002148
2149
Erik Andersene49d5ec2000-02-08 19:58:47 +00002150 /* bad block type */
2151 return 2;
Eric Andersenb052b471999-11-18 00:21:59 +00002152}
2153
2154
2155
2156int inflate()
2157/* decompress an inflated entry */
2158{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002159 int e; /* last block flag */
2160 int r; /* result code */
2161 unsigned h; /* maximum struct huft's malloc'ed */
Eric Andersenb052b471999-11-18 00:21:59 +00002162
2163
Erik Andersene49d5ec2000-02-08 19:58:47 +00002164 /* initialize window, bit buffer */
2165 wp = 0;
2166 bk = 0;
2167 bb = 0;
Eric Andersenb052b471999-11-18 00:21:59 +00002168
2169
Erik Andersene49d5ec2000-02-08 19:58:47 +00002170 /* decompress until the last block */
2171 h = 0;
2172 do {
2173 hufts = 0;
2174 if ((r = inflate_block(&e)) != 0)
2175 return r;
2176 if (hufts > h)
2177 h = hufts;
2178 } while (!e);
Eric Andersenb052b471999-11-18 00:21:59 +00002179
Erik Andersene49d5ec2000-02-08 19:58:47 +00002180 /* Undo too much lookahead. The next read will be byte aligned so we
2181 * can discard unused bits in the last meaningful byte.
2182 */
2183 while (bk >= 8) {
2184 bk -= 8;
2185 inptr--;
2186 }
Eric Andersenb052b471999-11-18 00:21:59 +00002187
Erik Andersene49d5ec2000-02-08 19:58:47 +00002188 /* flush out slide */
2189 flush_output(wp);
Eric Andersenb052b471999-11-18 00:21:59 +00002190
2191
Erik Andersene49d5ec2000-02-08 19:58:47 +00002192 /* return success */
Eric Andersenb052b471999-11-18 00:21:59 +00002193#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00002194 fprintf(stderr, "<%u> ", h);
2195#endif /* DEBUG */
2196 return 0;
Eric Andersenb052b471999-11-18 00:21:59 +00002197}