Making note of my changes
[oweals/busybox.git] / gunzip.c
1 /* zcat : stripped version based on gzip sources
2    Sven Rudolph <sr1@inf.tu-dresden.de>
3    */
4
5 #include "internal.h"
6
7 static const char gunzip_usage[] =
8     "gunzip [OPTION]... FILE\n\n"
9     "Uncompress FILE (or standard input if FILE is '-').\n\n"
10     "Options:\n"
11     "\t-c\tWrite output to standard output\n"
12     "\t-t\tTest compressed file integrity\n";
13
14 /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
15  * Copyright (C) 1992-1993 Jean-loup Gailly
16  * The unzip code was written and put in the public domain by Mark Adler.
17  * Portions of the lzw code are derived from the public domain 'compress'
18  * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
19  * Ken Turkowski, Dave Mack and Peter Jannesen.
20  *
21  * See the license_msg below and the file COPYING for the software license.
22  * See the file algorithm.doc for the compression algorithms and file formats.
23  */
24
25 #if 0
26 static char  *license_msg[] = {
27 "   Copyright (C) 1992-1993 Jean-loup Gailly",
28 "   This program is free software; you can redistribute it and/or modify",
29 "   it under the terms of the GNU General Public License as published by",
30 "   the Free Software Foundation; either version 2, or (at your option)",
31 "   any later version.",
32 "",
33 "   This program is distributed in the hope that it will be useful,",
34 "   but WITHOUT ANY WARRANTY; without even the implied warranty of",
35 "   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the",
36 "   GNU General Public License for more details.",
37 "",
38 "   You should have received a copy of the GNU General Public License",
39 "   along with this program; if not, write to the Free Software",
40 "   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.",
41 0};
42 #endif
43
44 /* Compress files with zip algorithm and 'compress' interface.
45  * See usage() and help() functions below for all options.
46  * Outputs:
47  *        file.gz:   compressed file with same mode, owner, and utimes
48  *     or stdout with -c option or if stdin used as input.
49  * If the output file name had to be truncated, the original name is kept
50  * in the compressed file.
51  * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
52  *
53  * Using gz on MSDOS would create too many file name conflicts. For
54  * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
55  * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
56  * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
57  * too heavily. There is no ideal solution given the MSDOS 8+3 limitation. 
58  *
59  * For the meaning of all compilation flags, see comments in Makefile.in.
60  */
61
62 #include <ctype.h>
63 #include <sys/types.h>
64 #include <signal.h>
65 #include <sys/stat.h>
66 #include <errno.h>
67
68 /* #include "tailor.h" */
69
70 /* tailor.h -- target dependent definitions
71  * Copyright (C) 1992-1993 Jean-loup Gailly.
72  * This is free software; you can redistribute it and/or modify it under the
73  * terms of the GNU General Public License, see the file COPYING.
74  */
75
76 /* The target dependent definitions should be defined here only.
77  * The target dependent functions should be defined in tailor.c.
78  */
79
80 #define RECORD_IO 0
81
82 #define get_char() get_byte()
83 #define put_char(c) put_byte(c)
84
85 /* #include "gzip.h" */
86
87 /* gzip.h -- common declarations for all gzip modules
88  * Copyright (C) 1992-1993 Jean-loup Gailly.
89  * This is free software; you can redistribute it and/or modify it under the
90  * terms of the GNU General Public License, see the file COPYING.
91  */
92
93 #if defined(__STDC__) || defined(PROTO)
94 #  define OF(args)  args
95 #else
96 #  define OF(args)  ()
97 #endif
98
99 #ifdef __STDC__
100    typedef void *voidp;
101 #else
102    typedef char *voidp;
103 #endif
104
105 /* I don't like nested includes, but the string and io functions are used
106  * too often
107  */
108 #include <stdio.h>
109 #if !defined(NO_STRING_H) || defined(STDC_HEADERS)
110 #  include <string.h>
111 #  if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
112 #    include <memory.h>
113 #  endif
114 #  define memzero(s, n)     memset ((voidp)(s), 0, (n))
115 #else
116 #  include <strings.h>
117 #  define strchr            index 
118 #  define strrchr           rindex
119 #  define memcpy(d, s, n)   bcopy((s), (d), (n)) 
120 #  define memcmp(s1, s2, n) bcmp((s1), (s2), (n)) 
121 #  define memzero(s, n)     bzero((s), (n))
122 #endif
123
124 #ifndef RETSIGTYPE
125 #  define RETSIGTYPE void
126 #endif
127
128 #define local static
129
130 typedef unsigned char  uch;
131 typedef unsigned short ush;
132 typedef unsigned long  ulg;
133
134 /* Return codes from gzip */
135 #define OK      0
136 #define ERROR   1
137 #define WARNING 2
138
139 /* Compression methods (see algorithm.doc) */
140 #define DEFLATED    8
141
142 extern int method;         /* compression method */
143
144 /* To save memory for 16 bit systems, some arrays are overlaid between
145  * the various modules:
146  * deflate:  prev+head   window      d_buf  l_buf  outbuf
147  * unlzw:    tab_prefix  tab_suffix  stack  inbuf  outbuf
148  * inflate:              window             inbuf
149  * unpack:               window             inbuf  prefix_len
150  * unlzh:    left+right  window      c_table inbuf c_len
151  * For compression, input is done in window[]. For decompression, output
152  * is done in window except for unlzw.
153  */
154
155 #ifndef INBUFSIZ
156 #  ifdef SMALL_MEM
157 #    define INBUFSIZ  0x2000  /* input buffer size */
158 #  else
159 #    define INBUFSIZ  0x8000  /* input buffer size */
160 #  endif
161 #endif
162 #define INBUF_EXTRA  64     /* required by unlzw() */
163
164 #ifndef OUTBUFSIZ
165 #  ifdef SMALL_MEM
166 #    define OUTBUFSIZ   8192  /* output buffer size */
167 #  else
168 #    define OUTBUFSIZ  16384  /* output buffer size */
169 #  endif
170 #endif
171 #define OUTBUF_EXTRA 2048   /* required by unlzw() */
172
173 #define SMALL_MEM
174
175 #ifndef DIST_BUFSIZE
176 #  ifdef SMALL_MEM
177 #    define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
178 #  else
179 #    define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
180 #  endif
181 #endif
182
183 /*#define DYN_ALLOC*/
184
185 #ifdef DYN_ALLOC
186 #  define EXTERN(type, array)  extern type * array
187 #  define DECLARE(type, array, size)  type * array
188 #  define ALLOC(type, array, size) { \
189       array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
190       if (array == NULL) error("insufficient memory"); \
191    }
192 #  define FREE(array) {if (array != NULL) free(array), array=NULL;}
193 #else
194 #  define EXTERN(type, array)  extern type array[]
195 #  define DECLARE(type, array, size)  type array[size]
196 #  define ALLOC(type, array, size)
197 #  define FREE(array)
198 #endif
199
200 EXTERN(uch, inbuf);          /* input buffer */
201 EXTERN(uch, outbuf);         /* output buffer */
202 EXTERN(ush, d_buf);          /* buffer for distances, see trees.c */
203 EXTERN(uch, window);         /* Sliding window and suffix table (unlzw) */
204 #define tab_suffix window
205 #ifndef MAXSEG_64K
206 #  define tab_prefix prev    /* hash link (see deflate.c) */
207 #  define head (prev+WSIZE)  /* hash head (see deflate.c) */
208    EXTERN(ush, tab_prefix);  /* prefix code (see unlzw.c) */
209 #else
210 #  define tab_prefix0 prev
211 #  define head tab_prefix1
212    EXTERN(ush, tab_prefix0); /* prefix for even codes */
213    EXTERN(ush, tab_prefix1); /* prefix for odd  codes */
214 #endif
215
216 extern unsigned insize; /* valid bytes in inbuf */
217 extern unsigned inptr;  /* index of next byte to be processed in inbuf */
218 extern unsigned outcnt; /* bytes in output buffer */
219
220 extern long bytes_in;   /* number of input bytes */
221 extern long bytes_out;  /* number of output bytes */
222 extern long header_bytes;/* number of bytes in gzip header */
223
224 extern long ifile_size; /* input file size, -1 for devices (debug only) */
225
226 typedef int file_t;     /* Do not use stdio */
227 #define NO_FILE  (-1)   /* in memory compression */
228
229
230 #define GZIP_MAGIC     "\037\213" /* Magic header for gzip files, 1F 8B */
231
232 /* gzip flag byte */
233 #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */
234 #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
235 #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
236 #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
237 #define COMMENT      0x10 /* bit 4 set: file comment present */
238 #define ENCRYPTED    0x20 /* bit 5 set: file is encrypted */
239 #define RESERVED     0xC0 /* bit 6,7:   reserved */
240
241 #ifndef WSIZE
242 #  define WSIZE 0x8000     /* window size--must be a power of two, and */
243 #endif                     /*  at least 32K for zip's deflate method */
244
245 #define MIN_MATCH  3
246 #define MAX_MATCH  258
247 /* The minimum and maximum match lengths */
248
249 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
250 /* Minimum amount of lookahead, except at the end of the input file.
251  * See deflate.c for comments about the MIN_MATCH+1.
252  */
253
254 #define MAX_DIST  (WSIZE-MIN_LOOKAHEAD)
255 /* In order to simplify the code, particularly on 16 bit machines, match
256  * distances are limited to MAX_DIST instead of WSIZE.
257  */
258
259 extern int exit_code;      /* program exit code */
260 extern int verbose;        /* be verbose (-v) */
261 extern int level;          /* compression level */
262 extern int test;           /* check .z file integrity */
263 extern int save_orig_name; /* set if original name must be saved */
264
265 #define get_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
266 #define try_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
267
268 /* put_byte is used for the compressed output, put_ubyte for the
269  * uncompressed output. However unlzw() uses window for its
270  * suffix table instead of its output buffer, so it does not use put_ubyte
271  * (to be cleaned up).
272  */
273 #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
274    flush_outbuf();}
275 #define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
276    flush_window();}
277
278 /* Output a 16 bit value, lsb first */
279 #define put_short(w) \
280 { if (outcnt < OUTBUFSIZ-2) { \
281     outbuf[outcnt++] = (uch) ((w) & 0xff); \
282     outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
283   } else { \
284     put_byte((uch)((w) & 0xff)); \
285     put_byte((uch)((ush)(w) >> 8)); \
286   } \
287 }
288
289 /* Output a 32 bit value to the bit stream, lsb first */
290 #define put_long(n) { \
291     put_short((n) & 0xffff); \
292     put_short(((ulg)(n)) >> 16); \
293 }
294
295 #define seekable()    0  /* force sequential output */
296 #define translate_eol 0  /* no option -a yet */
297
298 #define tolow(c)  (isupper(c) ? (c)-'A'+'a' : (c))    /* force to lower case */
299
300 /* Macros for getting two-byte and four-byte header values */
301 #define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
302 #define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
303
304 /* Diagnostic functions */
305 #ifdef DEBUG
306 #  define Assert(cond,msg) {if(!(cond)) error(msg);}
307 #  define Trace(x) fprintf x
308 #  define Tracev(x) {if (verbose) fprintf x ;}
309 #  define Tracevv(x) {if (verbose>1) fprintf x ;}
310 #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
311 #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
312 #else
313 #  define Assert(cond,msg)
314 #  define Trace(x)
315 #  define Tracev(x)
316 #  define Tracevv(x)
317 #  define Tracec(c,x)
318 #  define Tracecv(c,x)
319 #endif
320
321 #define WARN(msg) {fprintf msg ; \
322                    if (exit_code == OK) exit_code = WARNING;}
323
324         /* in unzip.c */
325 extern int unzip      OF((int in, int out));
326
327         /* in gzip.c */
328 RETSIGTYPE abort_gzip OF((void));
329
330         /* in deflate.c */
331 void lm_init OF((int pack_level, ush *flags));
332 ulg  deflate OF((void));
333
334         /* in trees.c */
335 void ct_init     OF((ush *attr, int *method));
336 int  ct_tally    OF((int dist, int lc));
337 ulg  flush_block OF((char *buf, ulg stored_len, int eof));
338
339         /* in bits.c */
340 void     bi_init    OF((file_t zipfile));
341 void     send_bits  OF((int value, int length));
342 unsigned bi_reverse OF((unsigned value, int length));
343 void     bi_windup  OF((void));
344 void     copy_block OF((char *buf, unsigned len, int header));
345 extern   int (*read_buf) OF((char *buf, unsigned size));
346
347         /* in util.c: */
348 extern int copy           OF((int in, int out));
349 extern ulg  updcrc        OF((uch *s, unsigned n));
350 extern void clear_bufs    OF((void));
351 extern int  fill_inbuf    OF((int eof_ok));
352 extern void flush_outbuf  OF((void));
353 extern void flush_window  OF((void));
354 extern void write_buf     OF((int fd, voidp buf, unsigned cnt));
355 #ifndef __linux__
356 extern char *basename     OF((char *fname));
357 #endif  /* not __linux__ */
358 extern void error         OF((char *m));
359 extern void warn          OF((char *a, char *b));
360 extern void read_error    OF((void));
361 extern void write_error   OF((void));
362 extern voidp xmalloc      OF((unsigned int size));
363
364         /* in inflate.c */
365 extern int inflate OF((void));
366
367 /* #include "lzw.h" */
368
369 /* lzw.h -- define the lzw functions.
370  * Copyright (C) 1992-1993 Jean-loup Gailly.
371  * This is free software; you can redistribute it and/or modify it under the
372  * terms of the GNU General Public License, see the file COPYING.
373  */
374
375 #if !defined(OF) && defined(lint)
376 #  include "gzip.h"
377 #endif
378
379 #ifndef BITS
380 #  define BITS 16
381 #endif
382 #define INIT_BITS 9              /* Initial number of bits per code */
383
384 #define LZW_MAGIC  "\037\235"   /* Magic header for lzw files, 1F 9D */
385
386 #define BIT_MASK    0x1f /* Mask for 'number of compression bits' */
387 /* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
388  * It's a pity that old uncompress does not check bit 0x20. That makes
389  * extension of the format actually undesirable because old compress
390  * would just crash on the new format instead of giving a meaningful
391  * error message. It does check the number of bits, but it's more
392  * helpful to say "unsupported format, get a new version" than
393  * "can only handle 16 bits".
394  */
395
396 #define BLOCK_MODE  0x80
397 /* Block compression: if table is full and compression rate is dropping,
398  * clear the dictionary.
399  */
400
401 #define LZW_RESERVED 0x60 /* reserved bits */
402
403 #define CLEAR  256       /* flush the dictionary */
404 #define FIRST  (CLEAR+1) /* first free entry */
405
406 extern int maxbits;      /* max bits per code for LZW */
407 extern int block_mode;   /* block compress mode -C compatible with 2.0 */
408
409 extern int lzw    OF((int in, int out));
410 extern int unlzw  OF((int in, int out));
411
412
413 /* #include "revision.h" */
414
415 /* revision.h -- define the version number
416  * Copyright (C) 1992-1993 Jean-loup Gailly.
417  * This is free software; you can redistribute it and/or modify it under the
418  * terms of the GNU General Public License, see the file COPYING.
419  */
420
421 #define VERSION "1.2.4"
422 #define PATCHLEVEL 0
423 #define REVDATE "18 Aug 93"
424
425 /* This version does not support compression into old compress format: */
426 #ifdef LZW
427 #  undef LZW
428 #endif
429
430 /* #include "getopt.h" */
431
432 /* Declarations for getopt.
433    Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
434
435    This program is free software; you can redistribute it and/or modify it
436    under the terms of the GNU General Public License as published by the
437    Free Software Foundation; either version 2, or (at your option) any
438    later version.
439
440    This program is distributed in the hope that it will be useful,
441    but WITHOUT ANY WARRANTY; without even the implied warranty of
442    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
443    GNU General Public License for more details.
444
445    You should have received a copy of the GNU General Public License
446    along with this program; if not, write to the Free Software
447    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
448
449 #ifndef _GETOPT_H
450 #define _GETOPT_H 1
451
452 #ifdef  __cplusplus
453 extern "C" {
454 #endif
455
456 /* For communication from `getopt' to the caller.
457    When `getopt' finds an option that takes an argument,
458    the argument value is returned here.
459    Also, when `ordering' is RETURN_IN_ORDER,
460    each non-option ARGV-element is returned here.  */
461
462 extern char *optarg;
463
464 /* Index in ARGV of the next element to be scanned.
465    This is used for communication to and from the caller
466    and for communication between successive calls to `getopt'.
467
468    On entry to `getopt', zero means this is the first call; initialize.
469
470    When `getopt' returns EOF, this is the index of the first of the
471    non-option elements that the caller should itself scan.
472
473    Otherwise, `optind' communicates from one call to the next
474    how much of ARGV has been scanned so far.  */
475
476 extern int optind;
477
478 /* Callers store zero here to inhibit the error message `getopt' prints
479    for unrecognized options.  */
480
481 extern int opterr;
482
483 /* Set to an option character which was unrecognized.  */
484
485 extern int optopt;
486
487 /* Describe the long-named options requested by the application.
488    The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
489    of `struct option' terminated by an element containing a name which is
490    zero.
491
492    The field `has_arg' is:
493    no_argument          (or 0) if the option does not take an argument,
494    required_argument    (or 1) if the option requires an argument,
495    optional_argument    (or 2) if the option takes an optional argument.
496
497    If the field `flag' is not NULL, it points to a variable that is set
498    to the value given in the field `val' when the option is found, but
499    left unchanged if the option is not found.
500
501    To have a long-named option do something other than set an `int' to
502    a compiled-in constant, such as set a value from `optarg', set the
503    option's `flag' field to zero and its `val' field to a nonzero
504    value (the equivalent single-letter option character, if there is
505    one).  For long options that have a zero `flag' field, `getopt'
506    returns the contents of the `val' field.  */
507
508 struct option
509 {
510 #if     __STDC__
511   const char *name;
512 #else
513   char *name;
514 #endif
515   /* has_arg can't be an enum because some compilers complain about
516      type mismatches in all the code that assumes it is an int.  */
517   int has_arg;
518   int *flag;
519   int val;
520 };
521
522 /* Names for the values of the `has_arg' field of `struct option'.  */
523
524 #define no_argument             0
525 #define required_argument       1
526 #define optional_argument       2
527
528 #if __STDC__ || defined(PROTO)
529 #if defined(__GNU_LIBRARY__)
530 /* Many other libraries have conflicting prototypes for getopt, with
531    differences in the consts, in stdlib.h.  To avoid compilation
532    errors, only prototype getopt for the GNU C library.  */
533 extern int getopt (int argc, char *const *argv, const char *shortopts);
534 #endif /* not __GNU_LIBRARY__ */
535 extern int getopt_long (int argc, char *const *argv, const char *shortopts,
536                         const struct option *longopts, int *longind);
537 extern int getopt_long_only (int argc, char *const *argv,
538                              const char *shortopts,
539                              const struct option *longopts, int *longind);
540
541 /* Internal only.  Users should not call this directly.  */
542 extern int _getopt_internal (int argc, char *const *argv,
543                              const char *shortopts,
544                              const struct option *longopts, int *longind,
545                              int long_only);
546 #else /* not __STDC__ */
547 extern int getopt ();
548 extern int getopt_long ();
549 extern int getopt_long_only ();
550
551 extern int _getopt_internal ();
552 #endif /* not __STDC__ */
553
554 #ifdef  __cplusplus
555 }
556 #endif
557
558 #endif /* _GETOPT_H */
559
560
561 #include <time.h>
562 #include <fcntl.h>
563 #include <unistd.h>
564
565 #include <stdlib.h>
566
567 #if defined(DIRENT)
568 #  include <dirent.h>
569    typedef struct dirent dir_type;
570 #  define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
571 #  define DIR_OPT "DIRENT"
572 #else
573 #  define NLENGTH(dirent) ((dirent)->d_namlen)
574 #  ifdef SYSDIR
575 #    include <sys/dir.h>
576      typedef struct direct dir_type;
577 #    define DIR_OPT "SYSDIR"
578 #  else
579 #    ifdef SYSNDIR
580 #      include <sys/ndir.h>
581        typedef struct direct dir_type;
582 #      define DIR_OPT "SYSNDIR"
583 #    else
584 #      ifdef NDIR
585 #        include <ndir.h>
586          typedef struct direct dir_type;
587 #        define DIR_OPT "NDIR"
588 #      else
589 #        define NO_DIR
590 #        define DIR_OPT "NO_DIR"
591 #      endif
592 #    endif
593 #  endif
594 #endif
595
596 #if !defined(S_ISDIR) && defined(S_IFDIR)
597 #  define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
598 #endif
599 #if !defined(S_ISREG) && defined(S_IFREG)
600 #  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
601 #endif
602
603 typedef RETSIGTYPE (*sig_type) OF((int));
604
605 #ifndef O_BINARY
606 #  define  O_BINARY  0  /* creation mode for open() */
607 #endif
608
609 #ifndef O_CREAT
610    /* Pure BSD system? */
611 #  include <sys/file.h>
612 #  ifndef O_CREAT
613 #    define O_CREAT FCREAT
614 #  endif
615 #  ifndef O_EXCL
616 #    define O_EXCL FEXCL
617 #  endif
618 #endif
619
620 #ifndef S_IRUSR
621 #  define S_IRUSR 0400
622 #endif
623 #ifndef S_IWUSR
624 #  define S_IWUSR 0200
625 #endif
626 #define RW_USER (S_IRUSR | S_IWUSR)  /* creation mode for open() */
627
628 #ifndef MAX_PATH_LEN
629 #  define MAX_PATH_LEN   1024 /* max pathname length */
630 #endif
631
632 #ifndef SEEK_END
633 #  define SEEK_END 2
634 #endif
635
636 #ifdef NO_OFF_T
637   typedef long off_t;
638   off_t lseek OF((int fd, off_t offset, int whence));
639 #endif
640
641
642                 /* global buffers */
643
644 DECLARE(uch, inbuf,  INBUFSIZ +INBUF_EXTRA);
645 DECLARE(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
646 DECLARE(ush, d_buf,  DIST_BUFSIZE);
647 DECLARE(uch, window, 2L*WSIZE);
648 #ifndef MAXSEG_64K
649     DECLARE(ush, tab_prefix, 1L<<BITS);
650 #else
651     DECLARE(ush, tab_prefix0, 1L<<(BITS-1));
652     DECLARE(ush, tab_prefix1, 1L<<(BITS-1));
653 #endif
654
655                 /* local variables */
656
657 int test_mode = 0;    /* check file integrity option */
658 int foreground;       /* set if program run in foreground */
659 int maxbits = BITS;   /* max bits per code for LZW */
660 int method = DEFLATED;/* compression method */
661 int exit_code = OK;   /* program exit code */
662 int last_member;      /* set for .zip and .Z files */
663 int part_nb;          /* number of parts in .gz file */
664 long ifile_size;      /* input file size, -1 for devices (debug only) */
665
666 long bytes_in;             /* number of input bytes */
667 long bytes_out;            /* number of output bytes */
668 long total_in = 0;         /* input bytes for all files */
669 long total_out = 0;        /* output bytes for all files */
670 struct stat istat;         /* status for input file */
671 int  ifd;                  /* input file descriptor */
672 int  ofd;                  /* output file descriptor */
673 unsigned insize;           /* valid bytes in inbuf */
674 unsigned inptr;            /* index of next byte to be processed in inbuf */
675 unsigned outcnt;           /* bytes in output buffer */
676
677 long header_bytes;   /* number of bytes in gzip header */
678
679 /* local functions */
680
681 local int  get_method   OF((int in));
682 local void do_exit(int exitcode) __attribute__ ((noreturn));
683
684 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
685
686 /* ======================================================================== */
687 int gunzip_main (int argc, char** argv)
688 {
689     int file_count;     /* number of files to precess */
690     int to_stdout = 0;
691     int fromstdin = 0;
692     int result;
693     int inFileNum;
694     int outFileNum;
695     int delInputFile=0;
696     struct stat statBuf;
697     char* delFileName; 
698     char ifname[MAX_PATH_LEN]; /* input file name */
699     char ofname[MAX_PATH_LEN]; /* output file name */
700
701     if (argc==1)
702         usage(gunzip_usage);
703     
704     if (strcmp(*argv, "zcat")==0)
705         to_stdout = 1;
706
707     /* Parse any options */
708     while (--argc > 0 && **(++argv) == '-') {
709         if (*((*argv)+1) == '\0') {
710             fromstdin = 1;
711             to_stdout = 1;
712         }
713         while (*(++(*argv))) {
714             switch (**argv) {
715             case 'c':
716                 to_stdout = 1;
717                 break;
718             case 't':
719                 test_mode = 1;
720                 break;
721
722             default:
723                 usage(gunzip_usage);
724             }
725         }
726     }
727
728     foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
729     if (foreground) {
730         (void) signal (SIGINT, (sig_type)abort_gzip);
731     }
732 #ifdef SIGTERM
733     if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
734         (void) signal(SIGTERM, (sig_type)abort_gzip);
735     }
736 #endif
737 #ifdef SIGHUP
738     if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
739         (void) signal(SIGHUP,  (sig_type)abort_gzip);
740     }
741 #endif
742
743     file_count = argc - optind;
744
745     /* Allocate all global buffers (for DYN_ALLOC option) */
746     ALLOC(uch, inbuf,  INBUFSIZ +INBUF_EXTRA);
747     ALLOC(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
748     ALLOC(ush, d_buf,  DIST_BUFSIZE);
749     ALLOC(uch, window, 2L*WSIZE);
750 #ifndef MAXSEG_64K
751     ALLOC(ush, tab_prefix, 1L<<BITS);
752 #else
753     ALLOC(ush, tab_prefix0, 1L<<(BITS-1));
754     ALLOC(ush, tab_prefix1, 1L<<(BITS-1));
755 #endif
756
757     if (fromstdin==1) {
758         strcpy(ofname, "stdin");
759
760         inFileNum=fileno(stdin);
761         ifile_size = -1L; /* convention for unknown size */
762     } else {
763         /* Open up the input file */
764         if (*argv=='\0')
765             usage(gunzip_usage);
766         strncpy(ifname, *argv, MAX_PATH_LEN);
767
768         /* Open input fille */
769         inFileNum=open( ifname, O_RDONLY);
770         if (inFileNum < 0) {
771             perror(ifname);
772             do_exit(WARNING);
773         }
774         /* Get the time stamp on the input file. */
775         result = stat(ifname, &statBuf);
776         if (result < 0) {
777             perror(ifname);
778             do_exit(WARNING);
779         }
780         ifile_size = statBuf.st_size;
781     }
782
783     if (to_stdout==1) {
784         /* And get to work */
785         strcpy(ofname, "stdout");
786         outFileNum=fileno(stdout);
787
788         clear_bufs(); /* clear input and output buffers */
789         part_nb = 0;
790
791         /* Actually do the compression/decompression. */
792         unzip(inFileNum, outFileNum);
793
794     } else if (test_mode) {
795         /* Actually do the compression/decompression. */
796         unzip(inFileNum, 2);
797     } else {
798         char* pos;
799
800         /* And get to work */
801         strncpy(ofname, ifname, MAX_PATH_LEN-4);
802         pos=strstr(ofname, ".gz");
803         if (pos != NULL) {
804             *pos='\0';
805             delInputFile=1;
806         } else {
807             pos=strstr(ofname, ".tgz");
808             if (pos != NULL) {
809                 *pos='\0';
810                 strcat( pos, ".tar");
811                 delInputFile=1;
812             }
813         }
814
815         /* Open output fille */
816 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
817         outFileNum=open( ofname, O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW);
818 #else
819         outFileNum=open( ofname, O_RDWR|O_CREAT|O_EXCL);
820 #endif
821         if (outFileNum < 0) {
822             perror(ofname);
823             do_exit(WARNING);
824         }
825         /* Set permissions on the file */
826         fchmod(outFileNum, statBuf.st_mode);
827
828         clear_bufs(); /* clear input and output buffers */
829         part_nb = 0;
830
831         /* Actually do the compression/decompression. */
832         result=unzip(inFileNum, outFileNum);
833         
834         close( outFileNum);
835         close( inFileNum);
836         /* Delete the original file */
837         if (result == OK)
838             delFileName=ifname;
839         else
840             delFileName=ofname;
841
842         if (delInputFile == 1 && unlink (delFileName) < 0) {
843             perror (delFileName);
844             exit( FALSE);
845         }
846     }
847     do_exit(exit_code);
848 }
849
850
851 /* ========================================================================
852  * Check the magic number of the input file and update ofname if an
853  * original name was given and to_stdout is not set.
854  * Return the compression method, -1 for error, -2 for warning.
855  * Set inptr to the offset of the next byte to be processed.
856  * Updates time_stamp if there is one and --no-time is not used.
857  * This function may be called repeatedly for an input file consisting
858  * of several contiguous gzip'ed members.
859  * IN assertions: there is at least one remaining compressed member.
860  *   If the member is a zip file, it must be the only one.
861  */
862 local int get_method(in)
863     int in;        /* input file descriptor */
864 {
865     uch flags;     /* compression flags */
866     char magic[2]; /* magic header */
867
868     magic[0] = (char)get_byte();
869     magic[1] = (char)get_byte();
870     method = -1;                 /* unknown yet */
871     part_nb++;                   /* number of parts in gzip file */
872     header_bytes = 0;
873     last_member = RECORD_IO;
874     /* assume multiple members in gzip file except for record oriented I/O */
875
876     if (memcmp(magic, GZIP_MAGIC, 2) == 0) {
877
878         method = (int)get_byte();
879         if (method != DEFLATED) {
880             fprintf(stderr,
881                     "unknown method %d -- get newer version of gzip\n",
882                     method);
883             exit_code = ERROR;
884             return -1;
885         }
886         flags  = (uch)get_byte();
887
888         (ulg)get_byte(); /* Ignore time stamp */
889         (ulg)get_byte();
890         (ulg)get_byte();
891         (ulg)get_byte();
892
893         (void)get_byte();  /* Ignore extra flags for the moment */
894         (void)get_byte();  /* Ignore OS type for the moment */
895
896         if ((flags & EXTRA_FIELD) != 0) {
897             unsigned len = (unsigned)get_byte();
898             len |= ((unsigned)get_byte())<<8;
899
900             while (len--) (void)get_byte();
901         }
902
903         /* Discard original name if any */
904         if ((flags & ORIG_NAME) != 0) {
905             while (get_char() != 0) /* null */ ;
906         }
907
908         /* Discard file comment if any */
909         if ((flags & COMMENT) != 0) {
910             while (get_char() != 0) /* null */ ;
911         }
912         if (part_nb == 1) {
913             header_bytes = inptr + 2*sizeof(long); /* include crc and size */
914         }
915
916     }
917
918     if (method >= 0) return method;
919
920     if (part_nb == 1) {
921         fprintf(stderr, "\nnot in gzip format\n");
922         exit_code = ERROR;
923         return -1;
924     } else {
925         WARN((stderr, "\ndecompression OK, trailing garbage ignored\n"));
926         return -2;
927     }
928 }
929
930
931 /* ========================================================================
932  * Free all dynamically allocated variables and exit with the given code.
933  */
934 local void do_exit(exitcode)
935     int exitcode;
936 {
937     static int in_exit = 0;
938
939     if (in_exit) exit(exitcode);
940     in_exit = 1;
941     FREE(inbuf);
942     FREE(outbuf);
943     FREE(d_buf);
944     FREE(window);
945 #ifndef MAXSEG_64K
946     FREE(tab_prefix);
947 #else
948     FREE(tab_prefix0);
949     FREE(tab_prefix1);
950 #endif
951     exit(exitcode);
952 }
953
954 /* ========================================================================
955  * Signal and error handler.
956  */
957 RETSIGTYPE abort_gzip()
958 {
959    do_exit(ERROR);
960 }
961 /* unzip.c -- decompress files in gzip or pkzip format.
962  * Copyright (C) 1992-1993 Jean-loup Gailly
963  * This is free software; you can redistribute it and/or modify it under the
964  * terms of the GNU General Public License, see the file COPYING.
965  *
966  * The code in this file is derived from the file funzip.c written
967  * and put in the public domain by Mark Adler.
968  */
969
970 /*
971    This version can extract files in gzip or pkzip format.
972    For the latter, only the first entry is extracted, and it has to be
973    either deflated or stored.
974  */
975
976 /* #include "crypt.h" */
977
978 /* crypt.h (dummy version) -- do not perform encryption
979  * Hardly worth copyrighting :-)
980  */
981
982 #ifdef CRYPT
983 #  undef CRYPT      /* dummy version */
984 #endif
985
986 #define RAND_HEAD_LEN  12  /* length of encryption random header */
987
988 #define zencode
989 #define zdecode
990
991 /* PKZIP header definitions */
992 #define LOCSIG 0x04034b50L      /* four-byte lead-in (lsb first) */
993 #define LOCFLG 6                /* offset of bit flag */
994 #define  CRPFLG 1               /*  bit for encrypted entry */
995 #define  EXTFLG 8               /*  bit for extended local header */
996 #define LOCHOW 8                /* offset of compression method */
997 #define LOCTIM 10               /* file mod time (for decryption) */
998 #define LOCCRC 14               /* offset of crc */
999 #define LOCSIZ 18               /* offset of compressed size */
1000 #define LOCLEN 22               /* offset of uncompressed length */
1001 #define LOCFIL 26               /* offset of file name field length */
1002 #define LOCEXT 28               /* offset of extra field length */
1003 #define LOCHDR 30               /* size of local header, including sig */
1004 #define EXTHDR 16               /* size of extended local header, inc sig */
1005
1006
1007 /* Globals */
1008
1009 char *key;          /* not used--needed to link crypt.c */
1010 int pkzip = 0;      /* set for a pkzip file */
1011 int ext_header = 0; /* set if extended local header */
1012
1013 /* ===========================================================================
1014  * Unzip in to out.  This routine works on both gzip and pkzip files.
1015  *
1016  * IN assertions: the buffer inbuf contains already the beginning of
1017  *   the compressed data, from offsets inptr to insize-1 included.
1018  *   The magic header has already been checked. The output buffer is cleared.
1019  */
1020 int unzip(in, out)
1021     int in, out;   /* input and output file descriptors */
1022 {
1023     ulg orig_crc = 0;       /* original crc */
1024     ulg orig_len = 0;       /* original uncompressed length */
1025     int n;
1026     uch buf[EXTHDR];        /* extended local header */
1027
1028     ifd = in;
1029     ofd = out;
1030     method = get_method(ifd);
1031     if (method < 0) {
1032       do_exit(exit_code); /* error message already emitted */
1033     }
1034
1035     updcrc(NULL, 0);           /* initialize crc */
1036
1037     if (pkzip && !ext_header) {  /* crc and length at the end otherwise */
1038         orig_crc = LG(inbuf + LOCCRC);
1039         orig_len = LG(inbuf + LOCLEN);
1040     }
1041
1042     /* Decompress */
1043     if (method == DEFLATED)  {
1044
1045         int res = inflate();
1046
1047         if (res == 3) {
1048             error("out of memory");
1049         } else if (res != 0) {
1050             error("invalid compressed data--format violated");
1051         }
1052
1053     } else {
1054         error("internal error, invalid method");
1055     }
1056
1057     /* Get the crc and original length */
1058     if (!pkzip) {
1059         /* crc32  (see algorithm.doc)
1060          * uncompressed input size modulo 2^32
1061          */
1062         for (n = 0; n < 8; n++) {
1063             buf[n] = (uch)get_byte(); /* may cause an error if EOF */
1064         }
1065         orig_crc = LG(buf);
1066         orig_len = LG(buf+4);
1067
1068     } else if (ext_header) {  /* If extended header, check it */
1069         /* signature - 4bytes: 0x50 0x4b 0x07 0x08
1070          * CRC-32 value
1071          * compressed size 4-bytes
1072          * uncompressed size 4-bytes
1073          */
1074         for (n = 0; n < EXTHDR; n++) {
1075             buf[n] = (uch)get_byte(); /* may cause an error if EOF */
1076         }
1077         orig_crc = LG(buf+4);
1078         orig_len = LG(buf+12);
1079     }
1080
1081     /* Validate decompression */
1082     if (orig_crc != updcrc(outbuf, 0)) {
1083         error("invalid compressed data--crc error");
1084     }
1085     if (orig_len != (ulg)bytes_out) {
1086         error("invalid compressed data--length error");
1087     }
1088
1089     /* Check if there are more entries in a pkzip file */
1090     if (pkzip && inptr + 4 < insize && LG(inbuf+inptr) == LOCSIG) {
1091       WARN((stderr,"has more than one entry--rest ignored\n"));
1092     }
1093     ext_header = pkzip = 0; /* for next file */
1094     return OK;
1095 }
1096 /* util.c -- utility functions for gzip support
1097  * Copyright (C) 1992-1993 Jean-loup Gailly
1098  * This is free software; you can redistribute it and/or modify it under the
1099  * terms of the GNU General Public License, see the file COPYING.
1100  */
1101
1102 #include <ctype.h>
1103 #include <errno.h>
1104 #include <sys/types.h>
1105
1106 #ifdef HAVE_UNISTD_H
1107 #  include <unistd.h>
1108 #endif
1109 #ifndef NO_FCNTL_H
1110 #  include <fcntl.h>
1111 #endif
1112
1113 #if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1114 #  include <stdlib.h>
1115 #else
1116    extern int errno;
1117 #endif
1118
1119 static const ulg crc_32_tab[];   /* crc table, defined below */
1120
1121 /* ===========================================================================
1122  * Run a set of bytes through the crc shift register.  If s is a NULL
1123  * pointer, then initialize the crc shift register contents instead.
1124  * Return the current crc in either case.
1125  */
1126 ulg updcrc(s, n)
1127     uch *s;                 /* pointer to bytes to pump through */
1128     unsigned n;             /* number of bytes in s[] */
1129 {
1130     register ulg c;         /* temporary variable */
1131
1132     static ulg crc = (ulg)0xffffffffL; /* shift register contents */
1133
1134     if (s == NULL) {
1135         c = 0xffffffffL;
1136     } else {
1137         c = crc;
1138         if (n) do {
1139             c = crc_32_tab[((int)c ^ (*s++)) & 0xff] ^ (c >> 8);
1140         } while (--n);
1141     }
1142     crc = c;
1143     return c ^ 0xffffffffL;       /* (instead of ~c for 64-bit machines) */
1144 }
1145
1146 /* ===========================================================================
1147  * Clear input and output buffers
1148  */
1149 void clear_bufs()
1150 {
1151     outcnt = 0;
1152     insize = inptr = 0;
1153     bytes_in = bytes_out = 0L;
1154 }
1155
1156 /* ===========================================================================
1157  * Fill the input buffer. This is called only when the buffer is empty.
1158  */
1159 int fill_inbuf(eof_ok)
1160     int eof_ok;          /* set if EOF acceptable as a result */
1161 {
1162     int len;
1163
1164     /* Read as much as possible */
1165     insize = 0;
1166     errno = 0;
1167     do {
1168         len = read(ifd, (char*)inbuf+insize, INBUFSIZ-insize);
1169         if (len == 0 || len == EOF) break;
1170         insize += len;
1171     } while (insize < INBUFSIZ);
1172
1173     if (insize == 0) {
1174         if (eof_ok) return EOF;
1175         read_error();
1176     }
1177     bytes_in += (ulg)insize;
1178     inptr = 1;
1179     return inbuf[0];
1180 }
1181
1182 /* ===========================================================================
1183  * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
1184  * (used for the compressed data only)
1185  */
1186 void flush_outbuf()
1187 {
1188     if (outcnt == 0) return;
1189
1190     if (!test_mode)
1191         write_buf(ofd, (char *)outbuf, outcnt);
1192     bytes_out += (ulg)outcnt;
1193     outcnt = 0;
1194 }
1195
1196 /* ===========================================================================
1197  * Write the output window window[0..outcnt-1] and update crc and bytes_out.
1198  * (Used for the decompressed data only.)
1199  */
1200 void flush_window()
1201 {
1202     if (outcnt == 0) return;
1203     updcrc(window, outcnt);
1204
1205     if (!test_mode)
1206         write_buf(ofd, (char *)window, outcnt);
1207     bytes_out += (ulg)outcnt;
1208     outcnt = 0;
1209 }
1210
1211 /* ===========================================================================
1212  * Does the same as write(), but also handles partial pipe writes and checks
1213  * for error return.
1214  */
1215 void write_buf(fd, buf, cnt)
1216     int       fd;
1217     voidp     buf;
1218     unsigned  cnt;
1219 {
1220     unsigned  n;
1221
1222     while ((n = write(fd, buf, cnt)) != cnt) {
1223         if (n == (unsigned)(-1)) {
1224             write_error();
1225         }
1226         cnt -= n;
1227         buf = (voidp)((char*)buf+n);
1228     }
1229 }
1230
1231 #if defined(NO_STRING_H) && !defined(STDC_HEADERS)
1232
1233 /* Provide missing strspn and strcspn functions. */
1234
1235 #  ifndef __STDC__
1236 #    define const
1237 #  endif
1238
1239 int strspn  OF((const char *s, const char *accept));
1240 int strcspn OF((const char *s, const char *reject));
1241
1242 /* ========================================================================
1243  * Return the length of the maximum initial segment
1244  * of s which contains only characters in accept.
1245  */
1246 int strspn(s, accept)
1247     const char *s;
1248     const char *accept;
1249 {
1250     register const char *p;
1251     register const char *a;
1252     register int count = 0;
1253
1254     for (p = s; *p != '\0'; ++p) {
1255         for (a = accept; *a != '\0'; ++a) {
1256             if (*p == *a) break;
1257         }
1258         if (*a == '\0') return count;
1259         ++count;
1260     }
1261     return count;
1262 }
1263
1264 /* ========================================================================
1265  * Return the length of the maximum inital segment of s
1266  * which contains no characters from reject.
1267  */
1268 int strcspn(s, reject)
1269     const char *s;
1270     const char *reject;
1271 {
1272     register int count = 0;
1273
1274     while (*s != '\0') {
1275         if (strchr(reject, *s++) != NULL) return count;
1276         ++count;
1277     }
1278     return count;
1279 }
1280
1281 #endif /* NO_STRING_H */
1282
1283
1284 /* ========================================================================
1285  * Error handlers.
1286  */
1287 void error(m)
1288     char *m;
1289 {
1290     fprintf(stderr, "\n%s\n", m);
1291     abort_gzip();
1292 }
1293
1294 void warn(a, b)
1295     char *a, *b;            /* message strings juxtaposed in output */
1296 {
1297     WARN((stderr, "warning: %s%s\n", a, b));
1298 }
1299
1300 void read_error()
1301 {
1302     fprintf(stderr, "\n");
1303     if (errno != 0) {
1304         perror("");
1305     } else {
1306         fprintf(stderr, "unexpected end of file\n");
1307     }
1308     abort_gzip();
1309 }
1310
1311 void write_error()
1312 {
1313     fprintf(stderr, "\n");
1314     perror("");
1315     abort_gzip();
1316 }
1317
1318
1319 /* ========================================================================
1320  * Semi-safe malloc -- never returns NULL.
1321  */
1322 voidp xmalloc (size)
1323     unsigned size;
1324 {
1325     voidp cp = (voidp)malloc (size);
1326
1327     if (cp == NULL) error("out of memory");
1328     return cp;
1329 }
1330
1331 /* ========================================================================
1332  * Table of CRC-32's of all single-byte values (made by makecrc.c)
1333  */
1334 static const ulg crc_32_tab[] = {
1335   0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,
1336   0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L,
1337   0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L,
1338   0x90bf1d91L, 0x1db71064L, 0x6ab020f2L, 0xf3b97148L, 0x84be41deL,
1339   0x1adad47dL, 0x6ddde4ebL, 0xf4d4b551L, 0x83d385c7L, 0x136c9856L,
1340   0x646ba8c0L, 0xfd62f97aL, 0x8a65c9ecL, 0x14015c4fL, 0x63066cd9L,
1341   0xfa0f3d63L, 0x8d080df5L, 0x3b6e20c8L, 0x4c69105eL, 0xd56041e4L,
1342   0xa2677172L, 0x3c03e4d1L, 0x4b04d447L, 0xd20d85fdL, 0xa50ab56bL,
1343   0x35b5a8faL, 0x42b2986cL, 0xdbbbc9d6L, 0xacbcf940L, 0x32d86ce3L,
1344   0x45df5c75L, 0xdcd60dcfL, 0xabd13d59L, 0x26d930acL, 0x51de003aL,
1345   0xc8d75180L, 0xbfd06116L, 0x21b4f4b5L, 0x56b3c423L, 0xcfba9599L,
1346   0xb8bda50fL, 0x2802b89eL, 0x5f058808L, 0xc60cd9b2L, 0xb10be924L,
1347   0x2f6f7c87L, 0x58684c11L, 0xc1611dabL, 0xb6662d3dL, 0x76dc4190L,
1348   0x01db7106L, 0x98d220bcL, 0xefd5102aL, 0x71b18589L, 0x06b6b51fL,
1349   0x9fbfe4a5L, 0xe8b8d433L, 0x7807c9a2L, 0x0f00f934L, 0x9609a88eL,
1350   0xe10e9818L, 0x7f6a0dbbL, 0x086d3d2dL, 0x91646c97L, 0xe6635c01L,
1351   0x6b6b51f4L, 0x1c6c6162L, 0x856530d8L, 0xf262004eL, 0x6c0695edL,
1352   0x1b01a57bL, 0x8208f4c1L, 0xf50fc457L, 0x65b0d9c6L, 0x12b7e950L,
1353   0x8bbeb8eaL, 0xfcb9887cL, 0x62dd1ddfL, 0x15da2d49L, 0x8cd37cf3L,
1354   0xfbd44c65L, 0x4db26158L, 0x3ab551ceL, 0xa3bc0074L, 0xd4bb30e2L,
1355   0x4adfa541L, 0x3dd895d7L, 0xa4d1c46dL, 0xd3d6f4fbL, 0x4369e96aL,
1356   0x346ed9fcL, 0xad678846L, 0xda60b8d0L, 0x44042d73L, 0x33031de5L,
1357   0xaa0a4c5fL, 0xdd0d7cc9L, 0x5005713cL, 0x270241aaL, 0xbe0b1010L,
1358   0xc90c2086L, 0x5768b525L, 0x206f85b3L, 0xb966d409L, 0xce61e49fL,
1359   0x5edef90eL, 0x29d9c998L, 0xb0d09822L, 0xc7d7a8b4L, 0x59b33d17L,
1360   0x2eb40d81L, 0xb7bd5c3bL, 0xc0ba6cadL, 0xedb88320L, 0x9abfb3b6L,
1361   0x03b6e20cL, 0x74b1d29aL, 0xead54739L, 0x9dd277afL, 0x04db2615L,
1362   0x73dc1683L, 0xe3630b12L, 0x94643b84L, 0x0d6d6a3eL, 0x7a6a5aa8L,
1363   0xe40ecf0bL, 0x9309ff9dL, 0x0a00ae27L, 0x7d079eb1L, 0xf00f9344L,
1364   0x8708a3d2L, 0x1e01f268L, 0x6906c2feL, 0xf762575dL, 0x806567cbL,
1365   0x196c3671L, 0x6e6b06e7L, 0xfed41b76L, 0x89d32be0L, 0x10da7a5aL,
1366   0x67dd4accL, 0xf9b9df6fL, 0x8ebeeff9L, 0x17b7be43L, 0x60b08ed5L,
1367   0xd6d6a3e8L, 0xa1d1937eL, 0x38d8c2c4L, 0x4fdff252L, 0xd1bb67f1L,
1368   0xa6bc5767L, 0x3fb506ddL, 0x48b2364bL, 0xd80d2bdaL, 0xaf0a1b4cL,
1369   0x36034af6L, 0x41047a60L, 0xdf60efc3L, 0xa867df55L, 0x316e8eefL,
1370   0x4669be79L, 0xcb61b38cL, 0xbc66831aL, 0x256fd2a0L, 0x5268e236L,
1371   0xcc0c7795L, 0xbb0b4703L, 0x220216b9L, 0x5505262fL, 0xc5ba3bbeL,
1372   0xb2bd0b28L, 0x2bb45a92L, 0x5cb36a04L, 0xc2d7ffa7L, 0xb5d0cf31L,
1373   0x2cd99e8bL, 0x5bdeae1dL, 0x9b64c2b0L, 0xec63f226L, 0x756aa39cL,
1374   0x026d930aL, 0x9c0906a9L, 0xeb0e363fL, 0x72076785L, 0x05005713L,
1375   0x95bf4a82L, 0xe2b87a14L, 0x7bb12baeL, 0x0cb61b38L, 0x92d28e9bL,
1376   0xe5d5be0dL, 0x7cdcefb7L, 0x0bdbdf21L, 0x86d3d2d4L, 0xf1d4e242L,
1377   0x68ddb3f8L, 0x1fda836eL, 0x81be16cdL, 0xf6b9265bL, 0x6fb077e1L,
1378   0x18b74777L, 0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL,
1379   0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L, 0xa00ae278L,
1380   0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L, 0xa7672661L, 0xd06016f7L,
1381   0x4969474dL, 0x3e6e77dbL, 0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L,
1382   0x37d83bf0L, 0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L,
1383   0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L, 0xbad03605L,
1384   0xcdd70693L, 0x54de5729L, 0x23d967bfL, 0xb3667a2eL, 0xc4614ab8L,
1385   0x5d681b02L, 0x2a6f2b94L, 0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL,
1386   0x2d02ef8dL
1387 };
1388 /* inflate.c -- Not copyrighted 1992 by Mark Adler
1389    version c10p1, 10 January 1993 */
1390
1391 /* You can do whatever you like with this source file, though I would
1392    prefer that if you modify it and redistribute it that you include
1393    comments to that effect with your name and the date.  Thank you.
1394    [The history has been moved to the file ChangeLog.]
1395  */
1396
1397 /*
1398    Inflate deflated (PKZIP's method 8 compressed) data.  The compression
1399    method searches for as much of the current string of bytes (up to a
1400    length of 258) in the previous 32K bytes.  If it doesn't find any
1401    matches (of at least length 3), it codes the next byte.  Otherwise, it
1402    codes the length of the matched string and its distance backwards from
1403    the current position.  There is a single Huffman code that codes both
1404    single bytes (called "literals") and match lengths.  A second Huffman
1405    code codes the distance information, which follows a length code.  Each
1406    length or distance code actually represents a base value and a number
1407    of "extra" (sometimes zero) bits to get to add to the base value.  At
1408    the end of each deflated block is a special end-of-block (EOB) literal/
1409    length code.  The decoding process is basically: get a literal/length
1410    code; if EOB then done; if a literal, emit the decoded byte; if a
1411    length then get the distance and emit the referred-to bytes from the
1412    sliding window of previously emitted data.
1413
1414    There are (currently) three kinds of inflate blocks: stored, fixed, and
1415    dynamic.  The compressor deals with some chunk of data at a time, and
1416    decides which method to use on a chunk-by-chunk basis.  A chunk might
1417    typically be 32K or 64K.  If the chunk is uncompressible, then the
1418    "stored" method is used.  In this case, the bytes are simply stored as
1419    is, eight bits per byte, with none of the above coding.  The bytes are
1420    preceded by a count, since there is no longer an EOB code.
1421
1422    If the data is compressible, then either the fixed or dynamic methods
1423    are used.  In the dynamic method, the compressed data is preceded by
1424    an encoding of the literal/length and distance Huffman codes that are
1425    to be used to decode this block.  The representation is itself Huffman
1426    coded, and so is preceded by a description of that code.  These code
1427    descriptions take up a little space, and so for small blocks, there is
1428    a predefined set of codes, called the fixed codes.  The fixed method is
1429    used if the block codes up smaller that way (usually for quite small
1430    chunks), otherwise the dynamic method is used.  In the latter case, the
1431    codes are customized to the probabilities in the current block, and so
1432    can code it much better than the pre-determined fixed codes.
1433  
1434    The Huffman codes themselves are decoded using a mutli-level table
1435    lookup, in order to maximize the speed of decoding plus the speed of
1436    building the decoding tables.  See the comments below that precede the
1437    lbits and dbits tuning parameters.
1438  */
1439
1440
1441 /*
1442    Notes beyond the 1.93a appnote.txt:
1443
1444    1. Distance pointers never point before the beginning of the output
1445       stream.
1446    2. Distance pointers can point back across blocks, up to 32k away.
1447    3. There is an implied maximum of 7 bits for the bit length table and
1448       15 bits for the actual data.
1449    4. If only one code exists, then it is encoded using one bit.  (Zero
1450       would be more efficient, but perhaps a little confusing.)  If two
1451       codes exist, they are coded using one bit each (0 and 1).
1452    5. There is no way of sending zero distance codes--a dummy must be
1453       sent if there are none.  (History: a pre 2.0 version of PKZIP would
1454       store blocks with no distance codes, but this was discovered to be
1455       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
1456       zero distance codes, which is sent as one code of zero bits in
1457       length.
1458    6. There are up to 286 literal/length codes.  Code 256 represents the
1459       end-of-block.  Note however that the static length tree defines
1460       288 codes just to fill out the Huffman codes.  Codes 286 and 287
1461       cannot be used though, since there is no length base or extra bits
1462       defined for them.  Similarly, there are up to 30 distance codes.
1463       However, static trees define 32 codes (all 5 bits) to fill out the
1464       Huffman codes, but the last two had better not show up in the data.
1465    7. Unzip can check dynamic Huffman blocks for complete code sets.
1466       The exception is that a single code would not be complete (see #4).
1467    8. The five bits following the block type is really the number of
1468       literal codes sent minus 257.
1469    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
1470       (1+6+6).  Therefore, to output three times the length, you output
1471       three codes (1+1+1), whereas to output four times the same length,
1472       you only need two codes (1+3).  Hmm.
1473   10. In the tree reconstruction algorithm, Code = Code + Increment
1474       only if BitLength(i) is not zero.  (Pretty obvious.)
1475   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
1476   12. Note: length code 284 can represent 227-258, but length code 285
1477       really is 258.  The last length deserves its own, short code
1478       since it gets used a lot in very redundant files.  The length
1479       258 is special since 258 - 3 (the min match length) is 255.
1480   13. The literal/length and distance code bit lengths are read as a
1481       single stream of lengths.  It is possible (and advantageous) for
1482       a repeat code (16, 17, or 18) to go across the boundary between
1483       the two sets of lengths.
1484  */
1485
1486 #include <sys/types.h>
1487
1488 #if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1489 #  include <stdlib.h>
1490 #endif
1491
1492
1493 #define slide window
1494
1495 /* Huffman code lookup table entry--this entry is four bytes for machines
1496    that have 16-bit pointers (e.g. PC's in the small or medium model).
1497    Valid extra bits are 0..13.  e == 15 is EOB (end of block), e == 16
1498    means that v is a literal, 16 < e < 32 means that v is a pointer to
1499    the next table, which codes e - 16 bits, and lastly e == 99 indicates
1500    an unused code.  If a code with e == 99 is looked up, this implies an
1501    error in the data. */
1502 struct huft {
1503   uch e;                /* number of extra bits or operation */
1504   uch b;                /* number of bits in this code or subcode */
1505   union {
1506     ush n;              /* literal, length base, or distance base */
1507     struct huft *t;     /* pointer to next level of table */
1508   } v;
1509 };
1510
1511
1512 /* Function prototypes */
1513 int huft_build OF((unsigned *, unsigned, unsigned, ush *, ush *,
1514                    struct huft **, int *));
1515 int huft_free OF((struct huft *));
1516 int inflate_codes OF((struct huft *, struct huft *, int, int));
1517 int inflate_stored OF((void));
1518 int inflate_fixed OF((void));
1519 int inflate_dynamic OF((void));
1520 int inflate_block OF((int *));
1521 int inflate OF((void));
1522
1523
1524 /* The inflate algorithm uses a sliding 32K byte window on the uncompressed
1525    stream to find repeated byte strings.  This is implemented here as a
1526    circular buffer.  The index is updated simply by incrementing and then
1527    and'ing with 0x7fff (32K-1). */
1528 /* It is left to other modules to supply the 32K area.  It is assumed
1529    to be usable as if it were declared "uch slide[32768];" or as just
1530    "uch *slide;" and then malloc'ed in the latter case.  The definition
1531    must be in unzip.h, included above. */
1532 /* unsigned wp;             current position in slide */
1533 #define wp outcnt
1534 #define flush_output(w) (wp=(w),flush_window())
1535
1536 /* Tables for deflate from PKZIP's appnote.txt. */
1537 static unsigned border[] = {    /* Order of the bit length code lengths */
1538         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
1539 static ush cplens[] = {         /* Copy lengths for literal codes 257..285 */
1540         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
1541         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
1542         /* note: see note #13 above about the 258 in this list. */
1543 static ush cplext[] = {         /* Extra bits for literal codes 257..285 */
1544         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
1545         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 99, 99}; /* 99==invalid */
1546 static ush cpdist[] = {         /* Copy offsets for distance codes 0..29 */
1547         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
1548         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
1549         8193, 12289, 16385, 24577};
1550 static ush cpdext[] = {         /* Extra bits for distance codes */
1551         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
1552         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
1553         12, 12, 13, 13};
1554
1555
1556
1557 /* Macros for inflate() bit peeking and grabbing.
1558    The usage is:
1559    
1560         NEEDBITS(j)
1561         x = b & mask_bits[j];
1562         DUMPBITS(j)
1563
1564    where NEEDBITS makes sure that b has at least j bits in it, and
1565    DUMPBITS removes the bits from b.  The macros use the variable k
1566    for the number of bits in b.  Normally, b and k are register
1567    variables for speed, and are initialized at the beginning of a
1568    routine that uses these macros from a global bit buffer and count.
1569
1570    If we assume that EOB will be the longest code, then we will never
1571    ask for bits with NEEDBITS that are beyond the end of the stream.
1572    So, NEEDBITS should not read any more bytes than are needed to
1573    meet the request.  Then no bytes need to be "returned" to the buffer
1574    at the end of the last block.
1575
1576    However, this assumption is not true for fixed blocks--the EOB code
1577    is 7 bits, but the other literal/length codes can be 8 or 9 bits.
1578    (The EOB code is shorter than other codes because fixed blocks are
1579    generally short.  So, while a block always has an EOB, many other
1580    literal/length codes have a significantly lower probability of
1581    showing up at all.)  However, by making the first table have a
1582    lookup of seven bits, the EOB code will be found in that first
1583    lookup, and so will not require that too many bits be pulled from
1584    the stream.
1585  */
1586
1587 ulg bb;                         /* bit buffer */
1588 unsigned bk;                    /* bits in bit buffer */
1589
1590 ush mask_bits[] = {
1591     0x0000,
1592     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
1593     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
1594 };
1595
1596 #ifdef CRYPT
1597   uch cc;
1598 #  define NEXTBYTE() (cc = get_byte(), zdecode(cc), cc)
1599 #else
1600 #  define NEXTBYTE()  (uch)get_byte()
1601 #endif
1602 #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
1603 #define DUMPBITS(n) {b>>=(n);k-=(n);}
1604
1605
1606 /*
1607    Huffman code decoding is performed using a multi-level table lookup.
1608    The fastest way to decode is to simply build a lookup table whose
1609    size is determined by the longest code.  However, the time it takes
1610    to build this table can also be a factor if the data being decoded
1611    is not very long.  The most common codes are necessarily the
1612    shortest codes, so those codes dominate the decoding time, and hence
1613    the speed.  The idea is you can have a shorter table that decodes the
1614    shorter, more probable codes, and then point to subsidiary tables for
1615    the longer codes.  The time it costs to decode the longer codes is
1616    then traded against the time it takes to make longer tables.
1617
1618    This results of this trade are in the variables lbits and dbits
1619    below.  lbits is the number of bits the first level table for literal/
1620    length codes can decode in one step, and dbits is the same thing for
1621    the distance codes.  Subsequent tables are also less than or equal to
1622    those sizes.  These values may be adjusted either when all of the
1623    codes are shorter than that, in which case the longest code length in
1624    bits is used, or when the shortest code is *longer* than the requested
1625    table size, in which case the length of the shortest code in bits is
1626    used.
1627
1628    There are two different values for the two tables, since they code a
1629    different number of possibilities each.  The literal/length table
1630    codes 286 possible values, or in a flat code, a little over eight
1631    bits.  The distance table codes 30 possible values, or a little less
1632    than five bits, flat.  The optimum values for speed end up being
1633    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
1634    The optimum values may differ though from machine to machine, and
1635    possibly even between compilers.  Your mileage may vary.
1636  */
1637
1638
1639 int lbits = 9;          /* bits in base literal/length lookup table */
1640 int dbits = 6;          /* bits in base distance lookup table */
1641
1642
1643 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
1644 #define BMAX 16         /* maximum bit length of any code (16 for explode) */
1645 #define N_MAX 288       /* maximum number of codes in any set */
1646
1647
1648 unsigned hufts;         /* track memory usage */
1649
1650
1651 int huft_build(b, n, s, d, e, t, m)
1652 unsigned *b;            /* code lengths in bits (all assumed <= BMAX) */
1653 unsigned n;             /* number of codes (assumed <= N_MAX) */
1654 unsigned s;             /* number of simple-valued codes (0..s-1) */
1655 ush *d;                 /* list of base values for non-simple codes */
1656 ush *e;                 /* list of extra bits for non-simple codes */
1657 struct huft **t;        /* result: starting table */
1658 int *m;                 /* maximum lookup bits, returns actual */
1659 /* Given a list of code lengths and a maximum table size, make a set of
1660    tables to decode that set of codes.  Return zero on success, one if
1661    the given code set is incomplete (the tables are still built in this
1662    case), two if the input is invalid (all zero length codes or an
1663    oversubscribed set of lengths), and three if not enough memory. */
1664 {
1665   unsigned a;                   /* counter for codes of length k */
1666   unsigned c[BMAX+1];           /* bit length count table */
1667   unsigned f;                   /* i repeats in table every f entries */
1668   int g;                        /* maximum code length */
1669   int h;                        /* table level */
1670   register unsigned i;          /* counter, current code */
1671   register unsigned j;          /* counter */
1672   register int k;               /* number of bits in current code */
1673   int l;                        /* bits per table (returned in m) */
1674   register unsigned *p;         /* pointer into c[], b[], or v[] */
1675   register struct huft *q;      /* points to current table */
1676   struct huft r;                /* table entry for structure assignment */
1677   struct huft *u[BMAX];         /* table stack */
1678   unsigned v[N_MAX];            /* values in order of bit length */
1679   register int w;               /* bits before this table == (l * h) */
1680   unsigned x[BMAX+1];           /* bit offsets, then code stack */
1681   unsigned *xp;                 /* pointer into x */
1682   int y;                        /* number of dummy codes added */
1683   unsigned z;                   /* number of entries in current table */
1684
1685
1686   /* Generate counts for each bit length */
1687   memzero(c, sizeof(c));
1688   p = b;  i = n;
1689   do {
1690     Tracecv(*p, (stderr, (n-i >= ' ' && n-i <= '~' ? "%c %d\n" : "0x%x %d\n"), 
1691             n-i, *p));
1692     c[*p]++;                    /* assume all entries <= BMAX */
1693     p++;                      /* Can't combine with above line (Solaris bug) */
1694   } while (--i);
1695   if (c[0] == n)                /* null input--all zero length codes */
1696   {
1697     *t = (struct huft *)NULL;
1698     *m = 0;
1699     return 0;
1700   }
1701
1702
1703   /* Find minimum and maximum length, bound *m by those */
1704   l = *m;
1705   for (j = 1; j <= BMAX; j++)
1706     if (c[j])
1707       break;
1708   k = j;                        /* minimum code length */
1709   if ((unsigned)l < j)
1710     l = j;
1711   for (i = BMAX; i; i--)
1712     if (c[i])
1713       break;
1714   g = i;                        /* maximum code length */
1715   if ((unsigned)l > i)
1716     l = i;
1717   *m = l;
1718
1719
1720   /* Adjust last length count to fill out codes, if needed */
1721   for (y = 1 << j; j < i; j++, y <<= 1)
1722     if ((y -= c[j]) < 0)
1723       return 2;                 /* bad input: more codes than bits */
1724   if ((y -= c[i]) < 0)
1725     return 2;
1726   c[i] += y;
1727
1728
1729   /* Generate starting offsets into the value table for each length */
1730   x[1] = j = 0;
1731   p = c + 1;  xp = x + 2;
1732   while (--i) {                 /* note that i == g from above */
1733     *xp++ = (j += *p++);
1734   }
1735
1736
1737   /* Make a table of values in order of bit lengths */
1738   p = b;  i = 0;
1739   do {
1740     if ((j = *p++) != 0)
1741       v[x[j]++] = i;
1742   } while (++i < n);
1743
1744
1745   /* Generate the Huffman codes and for each, make the table entries */
1746   x[0] = i = 0;                 /* first Huffman code is zero */
1747   p = v;                        /* grab values in bit order */
1748   h = -1;                       /* no tables yet--level -1 */
1749   w = -l;                       /* bits decoded == (l * h) */
1750   u[0] = (struct huft *)NULL;   /* just to keep compilers happy */
1751   q = (struct huft *)NULL;      /* ditto */
1752   z = 0;                        /* ditto */
1753
1754   /* go through the bit lengths (k already is bits in shortest code) */
1755   for (; k <= g; k++)
1756   {
1757     a = c[k];
1758     while (a--)
1759     {
1760       /* here i is the Huffman code of length k bits for value *p */
1761       /* make tables up to required level */
1762       while (k > w + l)
1763       {
1764         h++;
1765         w += l;                 /* previous table always l bits */
1766
1767         /* compute minimum size table less than or equal to l bits */
1768         z = (z = g - w) > (unsigned)l ? l : z;  /* upper limit on table size */
1769         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
1770         {                       /* too few codes for k-w bit table */
1771           f -= a + 1;           /* deduct codes from patterns left */
1772           xp = c + k;
1773           while (++j < z)       /* try smaller tables up to z bits */
1774           {
1775             if ((f <<= 1) <= *++xp)
1776               break;            /* enough codes to use up j bits */
1777             f -= *xp;           /* else deduct codes from patterns */
1778           }
1779         }
1780         z = 1 << j;             /* table entries for j-bit table */
1781
1782         /* allocate and link in new table */
1783         if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) ==
1784             (struct huft *)NULL)
1785         {
1786           if (h)
1787             huft_free(u[0]);
1788           return 3;             /* not enough memory */
1789         }
1790         hufts += z + 1;         /* track memory usage */
1791         *t = q + 1;             /* link to list for huft_free() */
1792         *(t = &(q->v.t)) = (struct huft *)NULL;
1793         u[h] = ++q;             /* table starts after link */
1794
1795         /* connect to last table, if there is one */
1796         if (h)
1797         {
1798           x[h] = i;             /* save pattern for backing up */
1799           r.b = (uch)l;         /* bits to dump before this table */
1800           r.e = (uch)(16 + j);  /* bits in this table */
1801           r.v.t = q;            /* pointer to this table */
1802           j = i >> (w - l);     /* (get around Turbo C bug) */
1803           u[h-1][j] = r;        /* connect to last table */
1804         }
1805       }
1806
1807       /* set up table entry in r */
1808       r.b = (uch)(k - w);
1809       if (p >= v + n)
1810         r.e = 99;               /* out of values--invalid code */
1811       else if (*p < s)
1812       {
1813         r.e = (uch)(*p < 256 ? 16 : 15);    /* 256 is end-of-block code */
1814         r.v.n = (ush)(*p);             /* simple code is just the value */
1815         p++;                           /* one compiler does not like *p++ */
1816       }
1817       else
1818       {
1819         r.e = (uch)e[*p - s];   /* non-simple--look up in lists */
1820         r.v.n = d[*p++ - s];
1821       }
1822
1823       /* fill code-like entries with r */
1824       f = 1 << (k - w);
1825       for (j = i >> w; j < z; j += f)
1826         q[j] = r;
1827
1828       /* backwards increment the k-bit code i */
1829       for (j = 1 << (k - 1); i & j; j >>= 1)
1830         i ^= j;
1831       i ^= j;
1832
1833       /* backup over finished tables */
1834       while ((i & ((1 << w) - 1)) != x[h])
1835       {
1836         h--;                    /* don't need to update q */
1837         w -= l;
1838       }
1839     }
1840   }
1841
1842
1843   /* Return true (1) if we were given an incomplete table */
1844   return y != 0 && g != 1;
1845 }
1846
1847
1848
1849 int huft_free(t)
1850 struct huft *t;         /* table to free */
1851 /* Free the malloc'ed tables built by huft_build(), which makes a linked
1852    list of the tables it made, with the links in a dummy first entry of
1853    each table. */
1854 {
1855   register struct huft *p, *q;
1856
1857
1858   /* Go through linked list, freeing from the malloced (t[-1]) address. */
1859   p = t;
1860   while (p != (struct huft *)NULL)
1861   {
1862     q = (--p)->v.t;
1863     free((char*)p);
1864     p = q;
1865   } 
1866   return 0;
1867 }
1868
1869
1870 int inflate_codes(tl, td, bl, bd)
1871 struct huft *tl, *td;   /* literal/length and distance decoder tables */
1872 int bl, bd;             /* number of bits decoded by tl[] and td[] */
1873 /* inflate (decompress) the codes in a deflated (compressed) block.
1874    Return an error code or zero if it all goes ok. */
1875 {
1876   register unsigned e;  /* table entry flag/number of extra bits */
1877   unsigned n, d;        /* length and index for copy */
1878   unsigned w;           /* current window position */
1879   struct huft *t;       /* pointer to table entry */
1880   unsigned ml, md;      /* masks for bl and bd bits */
1881   register ulg b;       /* bit buffer */
1882   register unsigned k;  /* number of bits in bit buffer */
1883
1884
1885   /* make local copies of globals */
1886   b = bb;                       /* initialize bit buffer */
1887   k = bk;
1888   w = wp;                       /* initialize window position */
1889
1890   /* inflate the coded data */
1891   ml = mask_bits[bl];           /* precompute masks for speed */
1892   md = mask_bits[bd];
1893   for (;;)                      /* do until end of block */
1894   {
1895     NEEDBITS((unsigned)bl)
1896     if ((e = (t = tl + ((unsigned)b & ml))->e) > 16)
1897       do {
1898         if (e == 99)
1899           return 1;
1900         DUMPBITS(t->b)
1901         e -= 16;
1902         NEEDBITS(e)
1903       } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16);
1904     DUMPBITS(t->b)
1905     if (e == 16)                /* then it's a literal */
1906     {
1907       slide[w++] = (uch)t->v.n;
1908       Tracevv((stderr, "%c", slide[w-1]));
1909       if (w == WSIZE)
1910       {
1911         flush_output(w);
1912         w = 0;
1913       }
1914     }
1915     else                        /* it's an EOB or a length */
1916     {
1917       /* exit if end of block */
1918       if (e == 15)
1919         break;
1920
1921       /* get length of block to copy */
1922       NEEDBITS(e)
1923       n = t->v.n + ((unsigned)b & mask_bits[e]);
1924       DUMPBITS(e);
1925
1926       /* decode distance of block to copy */
1927       NEEDBITS((unsigned)bd)
1928       if ((e = (t = td + ((unsigned)b & md))->e) > 16)
1929         do {
1930           if (e == 99)
1931             return 1;
1932           DUMPBITS(t->b)
1933           e -= 16;
1934           NEEDBITS(e)
1935         } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16);
1936       DUMPBITS(t->b)
1937       NEEDBITS(e)
1938       d = w - t->v.n - ((unsigned)b & mask_bits[e]);
1939       DUMPBITS(e)
1940       Tracevv((stderr,"\\[%d,%d]", w-d, n));
1941
1942       /* do the copy */
1943       do {
1944         n -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e);
1945 #if !defined(NOMEMCPY) && !defined(DEBUG)
1946         if (w - d >= e)         /* (this test assumes unsigned comparison) */
1947         {
1948           memcpy(slide + w, slide + d, e);
1949           w += e;
1950           d += e;
1951         }
1952         else                      /* do it slow to avoid memcpy() overlap */
1953 #endif /* !NOMEMCPY */
1954           do {
1955             slide[w++] = slide[d++];
1956             Tracevv((stderr, "%c", slide[w-1]));
1957           } while (--e);
1958         if (w == WSIZE)
1959         {
1960           flush_output(w);
1961           w = 0;
1962         }
1963       } while (n);
1964     }
1965   }
1966
1967
1968   /* restore the globals from the locals */
1969   wp = w;                       /* restore global window pointer */
1970   bb = b;                       /* restore global bit buffer */
1971   bk = k;
1972
1973   /* done */
1974   return 0;
1975 }
1976
1977
1978
1979 int inflate_stored()
1980 /* "decompress" an inflated type 0 (stored) block. */
1981 {
1982   unsigned n;           /* number of bytes in block */
1983   unsigned w;           /* current window position */
1984   register ulg b;       /* bit buffer */
1985   register unsigned k;  /* number of bits in bit buffer */
1986
1987
1988   /* make local copies of globals */
1989   b = bb;                       /* initialize bit buffer */
1990   k = bk;
1991   w = wp;                       /* initialize window position */
1992
1993
1994   /* go to byte boundary */
1995   n = k & 7;
1996   DUMPBITS(n);
1997
1998
1999   /* get the length and its complement */
2000   NEEDBITS(16)
2001   n = ((unsigned)b & 0xffff);
2002   DUMPBITS(16)
2003   NEEDBITS(16)
2004   if (n != (unsigned)((~b) & 0xffff))
2005     return 1;                   /* error in compressed data */
2006   DUMPBITS(16)
2007
2008
2009   /* read and output the compressed data */
2010   while (n--)
2011   {
2012     NEEDBITS(8)
2013     slide[w++] = (uch)b;
2014     if (w == WSIZE)
2015     {
2016       flush_output(w);
2017       w = 0;
2018     }
2019     DUMPBITS(8)
2020   }
2021
2022
2023   /* restore the globals from the locals */
2024   wp = w;                       /* restore global window pointer */
2025   bb = b;                       /* restore global bit buffer */
2026   bk = k;
2027   return 0;
2028 }
2029
2030
2031
2032 int inflate_fixed()
2033 /* decompress an inflated type 1 (fixed Huffman codes) block.  We should
2034    either replace this with a custom decoder, or at least precompute the
2035    Huffman tables. */
2036 {
2037   int i;                /* temporary variable */
2038   struct huft *tl;      /* literal/length code table */
2039   struct huft *td;      /* distance code table */
2040   int bl;               /* lookup bits for tl */
2041   int bd;               /* lookup bits for td */
2042   unsigned l[288];      /* length list for huft_build */
2043
2044
2045   /* set up literal table */
2046   for (i = 0; i < 144; i++)
2047     l[i] = 8;
2048   for (; i < 256; i++)
2049     l[i] = 9;
2050   for (; i < 280; i++)
2051     l[i] = 7;
2052   for (; i < 288; i++)          /* make a complete, but wrong code set */
2053     l[i] = 8;
2054   bl = 7;
2055   if ((i = huft_build(l, 288, 257, cplens, cplext, &tl, &bl)) != 0)
2056     return i;
2057
2058
2059   /* set up distance table */
2060   for (i = 0; i < 30; i++)      /* make an incomplete code set */
2061     l[i] = 5;
2062   bd = 5;
2063   if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1)
2064   {
2065     huft_free(tl);
2066     return i;
2067   }
2068
2069
2070   /* decompress until an end-of-block code */
2071   if (inflate_codes(tl, td, bl, bd))
2072     return 1;
2073
2074
2075   /* free the decoding tables, return */
2076   huft_free(tl);
2077   huft_free(td);
2078   return 0;
2079 }
2080
2081
2082
2083 int inflate_dynamic()
2084 /* decompress an inflated type 2 (dynamic Huffman codes) block. */
2085 {
2086   int i;                /* temporary variables */
2087   unsigned j;
2088   unsigned l;           /* last length */
2089   unsigned m;           /* mask for bit lengths table */
2090   unsigned n;           /* number of lengths to get */
2091   struct huft *tl;      /* literal/length code table */
2092   struct huft *td;      /* distance code table */
2093   int bl;               /* lookup bits for tl */
2094   int bd;               /* lookup bits for td */
2095   unsigned nb;          /* number of bit length codes */
2096   unsigned nl;          /* number of literal/length codes */
2097   unsigned nd;          /* number of distance codes */
2098 #ifdef PKZIP_BUG_WORKAROUND
2099   unsigned ll[288+32];  /* literal/length and distance code lengths */
2100 #else
2101   unsigned ll[286+30];  /* literal/length and distance code lengths */
2102 #endif
2103   register ulg b;       /* bit buffer */
2104   register unsigned k;  /* number of bits in bit buffer */
2105
2106
2107   /* make local bit buffer */
2108   b = bb;
2109   k = bk;
2110
2111
2112   /* read in table lengths */
2113   NEEDBITS(5)
2114   nl = 257 + ((unsigned)b & 0x1f);      /* number of literal/length codes */
2115   DUMPBITS(5)
2116   NEEDBITS(5)
2117   nd = 1 + ((unsigned)b & 0x1f);        /* number of distance codes */
2118   DUMPBITS(5)
2119   NEEDBITS(4)
2120   nb = 4 + ((unsigned)b & 0xf);         /* number of bit length codes */
2121   DUMPBITS(4)
2122 #ifdef PKZIP_BUG_WORKAROUND
2123   if (nl > 288 || nd > 32)
2124 #else
2125   if (nl > 286 || nd > 30)
2126 #endif
2127     return 1;                   /* bad lengths */
2128
2129
2130   /* read in bit-length-code lengths */
2131   for (j = 0; j < nb; j++)
2132   {
2133     NEEDBITS(3)
2134     ll[border[j]] = (unsigned)b & 7;
2135     DUMPBITS(3)
2136   }
2137   for (; j < 19; j++)
2138     ll[border[j]] = 0;
2139
2140
2141   /* build decoding table for trees--single level, 7 bit lookup */
2142   bl = 7;
2143   if ((i = huft_build(ll, 19, 19, NULL, NULL, &tl, &bl)) != 0)
2144   {
2145     if (i == 1)
2146       huft_free(tl);
2147     return i;                   /* incomplete code set */
2148   }
2149
2150
2151   /* read in literal and distance code lengths */
2152   n = nl + nd;
2153   m = mask_bits[bl];
2154   i = l = 0;
2155   while ((unsigned)i < n)
2156   {
2157     NEEDBITS((unsigned)bl)
2158     j = (td = tl + ((unsigned)b & m))->b;
2159     DUMPBITS(j)
2160     j = td->v.n;
2161     if (j < 16)                 /* length of code in bits (0..15) */
2162       ll[i++] = l = j;          /* save last length in l */
2163     else if (j == 16)           /* repeat last length 3 to 6 times */
2164     {
2165       NEEDBITS(2)
2166       j = 3 + ((unsigned)b & 3);
2167       DUMPBITS(2)
2168       if ((unsigned)i + j > n)
2169         return 1;
2170       while (j--)
2171         ll[i++] = l;
2172     }
2173     else if (j == 17)           /* 3 to 10 zero length codes */
2174     {
2175       NEEDBITS(3)
2176       j = 3 + ((unsigned)b & 7);
2177       DUMPBITS(3)
2178       if ((unsigned)i + j > n)
2179         return 1;
2180       while (j--)
2181         ll[i++] = 0;
2182       l = 0;
2183     }
2184     else                        /* j == 18: 11 to 138 zero length codes */
2185     {
2186       NEEDBITS(7)
2187       j = 11 + ((unsigned)b & 0x7f);
2188       DUMPBITS(7)
2189       if ((unsigned)i + j > n)
2190         return 1;
2191       while (j--)
2192         ll[i++] = 0;
2193       l = 0;
2194     }
2195   }
2196
2197
2198   /* free decoding table for trees */
2199   huft_free(tl);
2200
2201
2202   /* restore the global bit buffer */
2203   bb = b;
2204   bk = k;
2205
2206
2207   /* build the decoding tables for literal/length and distance codes */
2208   bl = lbits;
2209   if ((i = huft_build(ll, nl, 257, cplens, cplext, &tl, &bl)) != 0)
2210   {
2211     if (i == 1) {
2212       fprintf(stderr, " incomplete literal tree\n");
2213       huft_free(tl);
2214     }
2215     return i;                   /* incomplete code set */
2216   }
2217   bd = dbits;
2218   if ((i = huft_build(ll + nl, nd, 0, cpdist, cpdext, &td, &bd)) != 0)
2219   {
2220     if (i == 1) {
2221       fprintf(stderr, " incomplete distance tree\n");
2222 #ifdef PKZIP_BUG_WORKAROUND
2223       i = 0;
2224     }
2225 #else
2226       huft_free(td);
2227     }
2228     huft_free(tl);
2229     return i;                   /* incomplete code set */
2230 #endif
2231   }
2232
2233
2234   /* decompress until an end-of-block code */
2235   if (inflate_codes(tl, td, bl, bd))
2236     return 1;
2237
2238
2239   /* free the decoding tables, return */
2240   huft_free(tl);
2241   huft_free(td);
2242   return 0;
2243 }
2244
2245
2246
2247 int inflate_block(e)
2248 int *e;                 /* last block flag */
2249 /* decompress an inflated block */
2250 {
2251   unsigned t;           /* block type */
2252   register ulg b;       /* bit buffer */
2253   register unsigned k;  /* number of bits in bit buffer */
2254
2255
2256   /* make local bit buffer */
2257   b = bb;
2258   k = bk;
2259
2260
2261   /* read in last block bit */
2262   NEEDBITS(1)
2263   *e = (int)b & 1;
2264   DUMPBITS(1)
2265
2266
2267   /* read in block type */
2268   NEEDBITS(2)
2269   t = (unsigned)b & 3;
2270   DUMPBITS(2)
2271
2272
2273   /* restore the global bit buffer */
2274   bb = b;
2275   bk = k;
2276
2277
2278   /* inflate that block type */
2279   if (t == 2)
2280     return inflate_dynamic();
2281   if (t == 0)
2282     return inflate_stored();
2283   if (t == 1)
2284     return inflate_fixed();
2285
2286
2287   /* bad block type */
2288   return 2;
2289 }
2290
2291
2292
2293 int inflate()
2294 /* decompress an inflated entry */
2295 {
2296   int e;                /* last block flag */
2297   int r;                /* result code */
2298   unsigned h;           /* maximum struct huft's malloc'ed */
2299
2300
2301   /* initialize window, bit buffer */
2302   wp = 0;
2303   bk = 0;
2304   bb = 0;
2305
2306
2307   /* decompress until the last block */
2308   h = 0;
2309   do {
2310     hufts = 0;
2311     if ((r = inflate_block(&e)) != 0)
2312       return r;
2313     if (hufts > h)
2314       h = hufts;
2315   } while (!e);
2316
2317   /* Undo too much lookahead. The next read will be byte aligned so we
2318    * can discard unused bits in the last meaningful byte.
2319    */
2320   while (bk >= 8) {
2321     bk -= 8;
2322     inptr--;
2323   }
2324
2325   /* flush out slide */
2326   flush_output(wp);
2327
2328
2329   /* return success */
2330 #ifdef DEBUG
2331   fprintf(stderr, "<%u> ", h);
2332 #endif /* DEBUG */
2333   return 0;
2334 }