20af97aed2c5e05b455f90b8c2093976153bf8b1
[oweals/busybox.git] / gunzip.c
1 /* vi: set sw=4 ts=4: */
2 /*
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  */
29
30 #include "internal.h"
31 #include <getopt.h>
32
33 /* These defines are very important for BusyBox.  Without these,
34  * 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
39 #define BB_DECLARE_EXTERN
40 #define bb_need_memory_exhausted
41 #define bb_need_name_too_long
42 #include "messages.c"
43
44
45 /* 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
57 static 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 };
74 #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>
97 #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
116
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
126 #  define memzero(s, n)     memset ((void *)(s), 0, (n))
127 #else
128 #  include <strings.h>
129 #  define strchr            index
130 #  define strrchr           rindex
131 #  define memcpy(d, s, n)   bcopy((s), (d), (n))
132 #  define memcmp(s1, s2, n) bcmp((s1), (s2), (n))
133 #  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
142 typedef unsigned char uch;
143 typedef unsigned short ush;
144 typedef unsigned long ulg;
145
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
154 extern int method;                              /* compression method */
155
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
169 #    define INBUFSIZ  0x2000    /* input buffer size */
170 #  else
171 #    define INBUFSIZ  0x8000    /* input buffer size */
172 #  endif
173 #endif
174 #define INBUF_EXTRA  64                 /* required by unlzw() */
175
176 #ifndef OUTBUFSIZ
177 #  ifdef SMALL_MEM
178 #    define OUTBUFSIZ   8192    /* output buffer size */
179 #  else
180 #    define OUTBUFSIZ  16384    /* output buffer size */
181 #  endif
182 #endif
183 #define OUTBUF_EXTRA 2048               /* required by unlzw() */
184
185 #define SMALL_MEM
186
187 #ifndef DIST_BUFSIZE
188 #  ifdef SMALL_MEM
189 #    define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
190 #  else
191 #    define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
192 #  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)); \
202       if (array == NULL) errorMsg(memory_exhausted); \
203    }
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
212 EXTERN(uch, inbuf);                             /* input buffer */
213 EXTERN(uch, outbuf);                    /* output buffer */
214 EXTERN(ush, d_buf);                             /* buffer for distances, see trees.c */
215 EXTERN(uch, window);                    /* Sliding window and suffix table (unlzw) */
216 #define tab_suffix window
217 #ifndef MAXSEG_64K
218 #  define tab_prefix prev               /* hash link (see deflate.c) */
219 #  define head (prev+WSIZE)             /* hash head (see deflate.c) */
220 EXTERN(ush, tab_prefix);                /* prefix code (see unlzw.c) */
221 #else
222 #  define tab_prefix0 prev
223 #  define head tab_prefix1
224 EXTERN(ush, tab_prefix0);               /* prefix for even codes */
225 EXTERN(ush, tab_prefix1);               /* prefix for odd  codes */
226 #endif
227
228 extern unsigned insize;                 /* valid bytes in inbuf */
229 extern unsigned inptr;                  /* index of next byte to be processed in inbuf */
230 extern unsigned outcnt;                 /* bytes in output buffer */
231
232 extern long bytes_in;                   /* number of input bytes */
233 extern long bytes_out;                  /* number of output bytes */
234 extern long header_bytes;               /* number of bytes in gzip header */
235
236 extern long ifile_size;                 /* input file size, -1 for devices (debug only) */
237
238 typedef int file_t;                             /* Do not use stdio */
239
240 #define NO_FILE  (-1)                   /* in memory compression */
241
242
243 #define GZIP_MAGIC     "\037\213"       /* Magic header for gzip files, 1F 8B */
244
245 /* gzip flag byte */
246 #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 */
253
254 #ifndef WSIZE
255 #  define WSIZE 0x8000                  /* window size--must be a power of two, and */
256 #endif                                                  /*  at least 32K for zip's deflate method */
257
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
272 extern int exit_code;                   /* program exit code */
273 extern int verbose;                             /* be verbose (-v) */
274 extern int level;                               /* compression level */
275 extern int test;                                /* check .z file integrity */
276 extern int save_orig_name;              /* set if original name must be saved */
277
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
308 #define seekable()    0                 /* force sequential output */
309 #define translate_eol 0                 /* no option -a yet */
310
311 #define tolow(c)  (isupper(c) ? (c)-'A'+'a' : (c))      /* force to lower case */
312
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
319 #  define Assert(cond,msg) {if(!(cond)) errorMsg(msg);}
320 #  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 */
338 extern int unzip (int in, int out);
339
340         /* in gzip.c */
341 RETSIGTYPE abort_gzip (void);
342
343                 /* in deflate.c */
344 void lm_init (int pack_level, ush * flags);
345 ulg deflate (void);
346
347                 /* in trees.c */
348 void ct_init (ush * attr, int *method);
349 int ct_tally (int dist, int lc);
350 ulg flush_block (char *buf, ulg stored_len, int eof);
351
352                 /* in bits.c */
353 void bi_init (file_t zipfile);
354 void send_bits (int value, int length);
355 unsigned bi_reverse (unsigned value, int length);
356 void bi_windup (void);
357 void copy_block (char *buf, unsigned len, int header);
358
359         /* in util.c: */
360 extern ulg updcrc (uch * s, unsigned n);
361 extern void clear_bufs (void);
362 static int fill_inbuf (int eof_ok);
363 extern void flush_outbuf (void);
364 static void flush_window (void);
365 extern void write_buf (int fd, void * buf, unsigned cnt);
366
367 #ifndef __linux__
368 static char *basename (char *fname);
369 #endif                                                  /* not __linux__ */
370 void read_error_msg (void);
371 void write_error_msg (void);
372
373         /* in inflate.c */
374 static int inflate (void);
375
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
391 #define INIT_BITS 9                             /* Initial number of bits per code */
392
393 #define LZW_MAGIC  "\037\235"   /* Magic header for lzw files, 1F 9D */
394
395 #define BIT_MASK    0x1f                /* Mask for 'number of compression bits' */
396 /* 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
410 #define LZW_RESERVED 0x60               /* reserved bits */
411
412 #define CLEAR  256                              /* flush the dictionary */
413 #define FIRST  (CLEAR+1)                /* first free entry */
414
415 extern int maxbits;                             /* max bits per code for LZW */
416 extern int block_mode;                  /* block compress mode -C compatible with 2.0 */
417
418 extern int lzw (int in, int out);
419 extern int unlzw (int in, int out);
420
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
439 #include <time.h>
440 #include <fcntl.h>
441 #include <unistd.h>
442 #include <stdlib.h>
443 #if defined(DIRENT)
444 #  include <dirent.h>
445 typedef struct dirent dir_type;
446
447 #  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>
453 typedef struct direct dir_type;
454
455 #    define DIR_OPT "SYSDIR"
456 #  else
457 #    ifdef SYSNDIR
458 #      include <sys/ndir.h>
459 typedef struct direct dir_type;
460
461 #      define DIR_OPT "SYSNDIR"
462 #    else
463 #      ifdef NDIR
464 #        include <ndir.h>
465 typedef struct direct dir_type;
466
467 #        define DIR_OPT "NDIR"
468 #      else
469 #        define NO_DIR
470 #        define DIR_OPT "NO_DIR"
471 #      endif
472 #    endif
473 #  endif
474 #endif
475 #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
481 typedef RETSIGTYPE(*sig_type) (int);
482
483 #ifndef O_BINARY
484 #  define  O_BINARY  0                  /* creation mode for open() */
485 #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
504 #define RW_USER (S_IRUSR | S_IWUSR)     /* creation mode for open() */
505
506 #ifndef MAX_PATH_LEN                    /* max pathname length */
507 #  ifdef BUFSIZ
508 #    define MAX_PATH_LEN   BUFSIZ
509 #  else
510 #    define MAX_PATH_LEN   1024
511 #  endif
512 #endif
513
514 #ifndef SEEK_END
515 #  define SEEK_END 2
516 #endif
517
518 #ifdef NO_OFF_T
519 typedef long off_t;
520 off_t lseek (int fd, off_t offset, int whence);
521 #endif
522
523
524                 /* global buffers */
525
526 DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
527 DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
528 DECLARE(ush, d_buf, DIST_BUFSIZE);
529 DECLARE(uch, window, 2L * WSIZE);
530 #ifndef MAXSEG_64K
531 DECLARE(ush, tab_prefix, 1L << BITS);
532 #else
533 DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
534 DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
535 #endif
536
537                 /* local variables */
538
539 int test_mode = 0;                              /* check file integrity option */
540 int foreground;                                 /* set if program run in foreground */
541 int maxbits = BITS;                             /* max bits per code for LZW */
542 int method = DEFLATED;                  /* compression method */
543 int exit_code = OK;                             /* program exit code */
544 int last_member;                                /* set for .zip and .Z files */
545 int part_nb;                                    /* number of parts in .gz file */
546 long ifile_size;                                /* input file size, -1 for devices (debug only) */
547
548 long bytes_in;                                  /* number of input bytes */
549 long bytes_out;                                 /* number of output bytes */
550 long total_in = 0;                              /* input bytes for all files */
551 long total_out = 0;                             /* output bytes for all files */
552 struct stat istat;                              /* status for input file */
553 int ifd;                                                /* input file descriptor */
554 int ofd;                                                /* output file descriptor */
555 unsigned insize;                                /* valid bytes in inbuf */
556 unsigned inptr;                                 /* index of next byte to be processed in inbuf */
557 unsigned outcnt;                                /* bytes in output buffer */
558
559 long header_bytes;                              /* number of bytes in gzip header */
560
561 /* local functions */
562
563 local int get_method (int in);
564
565 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
566
567 /* ======================================================================== */
568 int gunzip_main(int argc, char **argv)
569 {
570         int file_count;                         /* number of files to precess */
571         int tostdout = 0;
572         int fromstdin = 0;
573         int result;
574         int inFileNum;
575         int outFileNum;
576         int delInputFile = 0;
577         int force = 0;
578         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 */
582
583         if (strcmp(applet_name, "zcat") == 0) {
584                 tostdout = 1;
585                 if (argc == 1) {
586                         fromstdin = 1;
587                 }
588         }
589
590         /* Parse any options */
591         while (--argc > 0 && **(++argv) == '-') {
592                 if (*((*argv) + 1) == '\0') {
593                         tostdout = 1;
594                 }
595                 while (*(++(*argv))) {
596                         switch (**argv) {
597                         case 'c':
598                                 tostdout = 1;
599                                 break;
600                         case 't':
601                                 test_mode = 1;
602                                 break;
603                         case 'f':
604                                 force = 1;
605                                 break;
606                         default:
607                                 usage(gunzip_usage);
608                         }
609                 }
610         }
611         if (argc <= 0)
612                 fromstdin = 1;
613
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
619
620         foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
621         if (foreground) {
622                 (void) signal(SIGINT, (sig_type) abort_gzip);
623         }
624 #ifdef SIGTERM
625         if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
626                 (void) signal(SIGTERM, (sig_type) abort_gzip);
627         }
628 #endif
629 #ifdef SIGHUP
630         if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
631                 (void) signal(SIGHUP, (sig_type) abort_gzip);
632         }
633 #endif
634
635         file_count = argc - optind;
636
637         /* 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);
642 #ifndef MAXSEG_64K
643         ALLOC(ush, tab_prefix, 1L << BITS);
644 #else
645         ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
646         ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
647 #endif
648
649         if (fromstdin == 1) {
650                 strcpy(ofname, "stdin");
651
652                 inFileNum = fileno(stdin);
653                 ifile_size = -1L;               /* convention for unknown size */
654         } else {
655                 /* Open up the input file */
656                 if (argc <= 0)
657                         usage(gunzip_usage);
658                 if (strlen(*argv) > MAX_PATH_LEN) {
659                         errorMsg(name_too_long);
660                         exit(WARNING);
661                 }
662                 strcpy(ifname, *argv);
663
664                 /* Open input fille */
665                 inFileNum = open(ifname, O_RDONLY);
666                 if (inFileNum < 0) {
667                         perror(ifname);
668                         exit(WARNING);
669                 }
670                 /* Get the time stamp on the input file. */
671                 result = stat(ifname, &statBuf);
672                 if (result < 0) {
673                         perror(ifname);
674                         exit(WARNING);
675                 }
676                 ifile_size = statBuf.st_size;
677         }
678
679         if (tostdout == 1) {
680                 /* 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) {
698                         errorMsg(name_too_long);
699                         exit(WARNING);
700                 }
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 */
716 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
717                 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
718 #else
719                 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
720 #endif
721                 if (outFileNum < 0) {
722                         perror(ofname);
723                         exit(WARNING);
724                 }
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                 }
746         }
747         return(exit_code);
748 }
749
750
751 /* ========================================================================
752  * Check the magic number of the input file and update ofname if an
753  * original name was given and tostdout is not set.
754  * 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  */
762 local int get_method(in)
763 int in;                                                 /* input file descriptor */
764 {
765         uch flags;                                      /* compression flags */
766         char magic[2];                          /* magic header */
767
768         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 */
775
776         if (memcmp(magic, GZIP_MAGIC, 2) == 0) {
777
778                 method = (int) get_byte();
779                 if (method != DEFLATED) {
780                         errorMsg("unknown method %d -- get newer version of gzip\n",
781                                         method);
782                         exit_code = ERROR;
783                         return -1;
784                 }
785                 flags = (uch) get_byte();
786
787                 (ulg) get_byte();               /* Ignore time stamp */
788                 (ulg) get_byte();
789                 (ulg) get_byte();
790                 (ulg) get_byte();
791
792                 (void) get_byte();              /* Ignore extra flags for the moment */
793                 (void) get_byte();              /* Ignore OS type for the moment */
794
795                 if ((flags & EXTRA_FIELD) != 0) {
796                         unsigned len = (unsigned) get_byte();
797
798                         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
819         }
820
821         if (method >= 0)
822                 return method;
823
824         if (part_nb == 1) {
825                 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;
831         }
832 }
833
834 /* ========================================================================
835  * Signal and error handler.
836  */
837 RETSIGTYPE abort_gzip()
838 {
839         exit(ERROR);
840 }
841
842 /* 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
864 #  undef CRYPT                                  /* dummy version */
865 #endif
866
867 #define RAND_HEAD_LEN  12               /* length of encryption random header */
868
869 #define zencode
870 #define zdecode
871
872 /* PKZIP header definitions */
873 #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 */
886
887
888 /* Globals */
889
890 char *key;                                              /* not used--needed to link crypt.c */
891 int pkzip = 0;                                  /* set for a pkzip file */
892 int ext_header = 0;                             /* set if extended local header */
893
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  */
901 int unzip(in, out)
902 int in, out;                                    /* input and output file descriptors */
903 {
904         ulg orig_crc = 0;                       /* original crc */
905         ulg orig_len = 0;                       /* original uncompressed length */
906         int n;
907         uch buf[EXTHDR];                        /* extended local header */
908
909         ifd = in;
910         ofd = out;
911         method = get_method(ifd);
912         if (method < 0) {
913                 exit(exit_code);                /* error message already emitted */
914         }
915
916         updcrc(NULL, 0);                        /* initialize crc */
917
918         if (pkzip && !ext_header) {     /* crc and length at the end otherwise */
919                 orig_crc = LG(inbuf + LOCCRC);
920                 orig_len = LG(inbuf + LOCLEN);
921         }
922
923         /* Decompress */
924         if (method == DEFLATED) {
925
926                 int res = inflate();
927
928                 if (res == 3) {
929                         errorMsg(memory_exhausted);
930                 } else if (res != 0) {
931                         errorMsg("invalid compressed data--format violated");
932                 }
933
934         } else {
935                 errorMsg("internal error, invalid method");
936         }
937
938         /* 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);
948
949         } 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)) {
964                 errorMsg("invalid compressed data--crc error");
965         }
966         if (orig_len != (ulg) bytes_out) {
967                 errorMsg("invalid compressed data--length error");
968         }
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;
976 }
977
978 /* 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
998 extern int errno;
999 #endif
1000
1001 static const ulg crc_32_tab[];  /* crc table, defined below */
1002
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  */
1008 ulg updcrc(s, n)
1009 uch *s;                                                 /* pointer to bytes to pump through */
1010 unsigned n;                                             /* number of bytes in s[] */
1011 {
1012         register ulg c;                         /* temporary variable */
1013
1014         static ulg crc = (ulg) 0xffffffffL;     /* shift register contents */
1015
1016         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) */
1027 }
1028
1029 /* ===========================================================================
1030  * Clear input and output buffers
1031  */
1032 void clear_bufs(void)
1033 {
1034         outcnt = 0;
1035         insize = inptr = 0;
1036         bytes_in = bytes_out = 0L;
1037 }
1038
1039 /* ===========================================================================
1040  * Fill the input buffer. This is called only when the buffer is empty.
1041  */
1042 int fill_inbuf(eof_ok)
1043 int eof_ok;                                             /* set if EOF acceptable as a result */
1044 {
1045         int len;
1046
1047         /* 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);
1056
1057         if (insize == 0) {
1058                 if (eof_ok)
1059                         return EOF;
1060                 read_error_msg();
1061         }
1062         bytes_in += (ulg) insize;
1063         inptr = 1;
1064         return inbuf[0];
1065 }
1066
1067 /* ===========================================================================
1068  * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
1069  * (used for the compressed data only)
1070  */
1071 void flush_outbuf()
1072 {
1073         if (outcnt == 0)
1074                 return;
1075
1076         if (!test_mode)
1077                 write_buf(ofd, (char *) outbuf, outcnt);
1078         bytes_out += (ulg) outcnt;
1079         outcnt = 0;
1080 }
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  */
1086 void flush_window()
1087 {
1088         if (outcnt == 0)
1089                 return;
1090         updcrc(window, outcnt);
1091
1092         if (!test_mode)
1093                 write_buf(ofd, (char *) window, outcnt);
1094         bytes_out += (ulg) outcnt;
1095         outcnt = 0;
1096 }
1097
1098 /* ===========================================================================
1099  * Does the same as write(), but also handles partial pipe writes and checks
1100  * for error return.
1101  */
1102 void write_buf(fd, buf, cnt)
1103 int fd;
1104 void * buf;
1105 unsigned cnt;
1106 {
1107         unsigned n;
1108
1109         while ((n = write(fd, buf, cnt)) != cnt) {
1110                 if (n == (unsigned) (-1)) {
1111                         write_error_msg();
1112                 }
1113                 cnt -= n;
1114                 buf = (void *) ((char *) buf + n);
1115         }
1116 }
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
1126 int strspn (const char *s, const char *accept);
1127 int strcspn (const char *s, const char *reject);
1128
1129 /* ========================================================================
1130  * Return the length of the maximum initial segment
1131  * of s which contains only characters in accept.
1132  */
1133 int strspn(s, accept)
1134 const char *s;
1135 const char *accept;
1136 {
1137         register const char *p;
1138         register const char *a;
1139         register int count = 0;
1140
1141         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;
1149         }
1150         return count;
1151 }
1152
1153 /* ========================================================================
1154  * Return the length of the maximum inital segment of s
1155  * which contains no characters from reject.
1156  */
1157 int strcspn(s, reject)
1158 const char *s;
1159 const char *reject;
1160 {
1161         register int count = 0;
1162
1163         while (*s != '\0') {
1164                 if (strchr(reject, *s++) != NULL)
1165                         return count;
1166                 ++count;
1167         }
1168         return count;
1169 }
1170
1171 #endif                                                  /* NO_STRING_H */
1172
1173
1174 /* ========================================================================
1175  * Error handlers.
1176  */
1177 void read_error_msg()
1178 {
1179         fprintf(stderr, "\n");
1180         if (errno != 0) {
1181                 perror("");
1182         } else {
1183                 fprintf(stderr, "unexpected end of file\n");
1184         }
1185         abort_gzip();
1186 }
1187
1188 void write_error_msg()
1189 {
1190         fprintf(stderr, "\n");
1191         perror("");
1192         abort_gzip();
1193 }
1194
1195
1196 /* ========================================================================
1197  * Table of CRC-32's of all single-byte values (made by makecrc.c)
1198  */
1199 static const ulg crc_32_tab[] = {
1200         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
1252 };
1253
1254 /* 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. */
1368 struct huft {
1369         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;
1375 };
1376
1377
1378 /* Function prototypes */
1379 int huft_build (unsigned *, unsigned, unsigned, ush *, ush *,
1380                                    struct huft **, int *);
1381 int huft_free (struct huft *);
1382 int inflate_codes (struct huft *, struct huft *, int, int);
1383 int inflate_stored (void);
1384 int inflate_fixed (void);
1385 int inflate_dynamic (void);
1386 int inflate_block (int *);
1387 int inflate (void);
1388
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. */
1403 static 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 };
1406 static 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. */
1412 static 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 */
1416 static 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 };
1421 static 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 };
1426
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
1459 ulg bb;                                                 /* bit buffer */
1460 unsigned bk;                                    /* bits in bit buffer */
1461
1462 ush mask_bits[] = {
1463         0x0000,
1464         0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
1465         0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
1466 };
1467
1468 #ifdef CRYPT
1469 uch cc;
1470
1471 #  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
1512 int lbits = 9;                                  /* bits in base literal/length lookup table */
1513 int dbits = 6;                                  /* bits in base distance lookup table */
1514
1515
1516 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
1517 #define BMAX 16                                 /* maximum bit length of any code (16 for explode) */
1518 #define N_MAX 288                               /* maximum number of codes in any set */
1519
1520
1521 unsigned hufts;                                 /* track memory usage */
1522
1523
1524 int huft_build(b, n, s, d, e, t, m)
1525 unsigned *b;                                    /* code lengths in bits (all assumed <= BMAX) */
1526 unsigned n;                                             /* number of codes (assumed <= N_MAX) */
1527 unsigned s;                                             /* number of simple-valued codes (0..s-1) */
1528 ush *d;                                                 /* list of base values for non-simple codes */
1529 ush *e;                                                 /* list of extra bits for non-simple codes */
1530 struct huft **t;                                /* result: starting table */
1531 int *m;                                                 /* maximum lookup bits, returns actual */
1532
1533 /* 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 {
1539         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 */
1558
1559
1560         /* 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         }
1577
1578
1579         /* 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;
1594
1595
1596         /* 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;
1603
1604
1605         /* 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         }
1612
1613
1614         /* 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);
1621
1622
1623         /* 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 */
1631
1632         /* 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 */
1641
1642                                 /* 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 */
1654
1655                                 /* 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 */
1669
1670                                 /* 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                         }
1680
1681                         /* 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                         }
1693
1694                         /* fill code-like entries with r */
1695                         f = 1 << (k - w);
1696                         for (j = i >> w; j < z; j += f)
1697                                 q[j] = r;
1698
1699                         /* backwards increment the k-bit code i */
1700                         for (j = 1 << (k - 1); i & j; j >>= 1)
1701                                 i ^= j;
1702                         i ^= j;
1703
1704                         /* 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         }
1711
1712
1713         /* Return true (1) if we were given an incomplete table */
1714         return y != 0 && g != 1;
1715 }
1716
1717
1718
1719 int huft_free(t)
1720 struct huft *t;                                 /* table to free */
1721
1722 /* 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 {
1726         register struct huft *p, *q;
1727
1728
1729         /* 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;
1737 }
1738
1739
1740 int inflate_codes(tl, td, bl, bd)
1741 struct huft *tl, *td;                   /* literal/length and distance decoder tables */
1742 int bl, bd;                                             /* number of bits decoded by tl[] and td[] */
1743
1744 /* inflate (decompress) the codes in a deflated (compressed) block.
1745    Return an error code or zero if it all goes ok. */
1746 {
1747         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 */
1754
1755
1756         /* make local copies of globals */
1757         b = bb;                                         /* initialize bit buffer */
1758         k = bk;
1759         w = wp;                                         /* initialize window position */
1760
1761         /* 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 */
1784
1785                         /* exit if end of block */
1786                         if (e == 15)
1787                                 break;
1788
1789                         /* get length of block to copy */
1790                         NEEDBITS(e)
1791                                 n = t->v.n + ((unsigned) b & mask_bits[e]);
1792                         DUMPBITS(e);
1793
1794                         /* 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);
1821 #if !defined(NOMEMCPY) && !defined(DEBUG)
1822                                 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         }
1839
1840
1841         /* restore the globals from the locals */
1842         wp = w;                                         /* restore global window pointer */
1843         bb = b;                                         /* restore global bit buffer */
1844         bk = k;
1845
1846         /* done */
1847         return 0;
1848 }
1849
1850
1851
1852 int inflate_stored()
1853 /* "decompress" an inflated type 0 (stored) block. */
1854 {
1855         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 */
1859
1860
1861         /* make local copies of globals */
1862         b = bb;                                         /* initialize bit buffer */
1863         k = bk;
1864         w = wp;                                         /* initialize window position */
1865
1866
1867         /* go to byte boundary */
1868         n = k & 7;
1869         DUMPBITS(n);
1870
1871
1872         /* 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)
1880
1881
1882                 /* 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         }
1892
1893
1894         /* 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;
1899 }
1900
1901
1902
1903 int 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 {
1908         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 */
1914
1915
1916         /* 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;
1928
1929
1930         /* 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         }
1938
1939
1940         /* decompress until an end-of-block code */
1941         if (inflate_codes(tl, td, bl, bd))
1942                 return 1;
1943
1944
1945         /* free the decoding tables, return */
1946         huft_free(tl);
1947         huft_free(td);
1948         return 0;
1949 }
1950
1951
1952
1953 int inflate_dynamic()
1954 /* decompress an inflated type 2 (dynamic Huffman codes) block. */
1955 {
1956         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
1969 #ifdef PKZIP_BUG_WORKAROUND
1970         unsigned ll[288 + 32];          /* literal/length and distance code lengths */
1971 #else
1972         unsigned ll[286 + 30];          /* literal/length and distance code lengths */
1973 #endif
1974         register ulg b;                         /* bit buffer */
1975         register unsigned k;            /* number of bits in bit buffer */
1976
1977
1978         /* make local bit buffer */
1979         b = bb;
1980         k = bk;
1981
1982
1983         /* 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)
1993 #ifdef PKZIP_BUG_WORKAROUND
1994                 if (nl > 288 || nd > 32)
1995 #else
1996                 if (nl > 286 || nd > 30)
1997 #endif
1998                 return 1;                               /* bad lengths */
1999
2000
2001         /* 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;
2009
2010
2011         /* 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         }
2018
2019
2020         /* 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         }
2060
2061
2062         /* free decoding table for trees */
2063         huft_free(tl);
2064
2065
2066         /* restore the global bit buffer */
2067         bb = b;
2068         bk = k;
2069
2070
2071         /* 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");
2084 #ifdef PKZIP_BUG_WORKAROUND
2085                         i = 0;
2086                 }
2087 #else
2088                         huft_free(td);
2089                 }
2090                 huft_free(tl);
2091                 return i;                               /* incomplete code set */
2092 #endif
2093         }
2094
2095
2096         /* decompress until an end-of-block code */
2097         if (inflate_codes(tl, td, bl, bd))
2098                 return 1;
2099
2100
2101         /* free the decoding tables, return */
2102         huft_free(tl);
2103         huft_free(td);
2104         return 0;
2105 }
2106
2107
2108
2109 int inflate_block(e)
2110 int *e;                                                 /* last block flag */
2111
2112 /* decompress an inflated block */
2113 {
2114         unsigned t;                                     /* block type */
2115         register ulg b;                         /* bit buffer */
2116         register unsigned k;            /* number of bits in bit buffer */
2117
2118
2119         /* make local bit buffer */
2120         b = bb;
2121         k = bk;
2122
2123
2124         /* read in last block bit */
2125         NEEDBITS(1)
2126                 * e = (int) b & 1;
2127         DUMPBITS(1)
2128
2129
2130                 /* read in block type */
2131                 NEEDBITS(2)
2132                 t = (unsigned) b & 3;
2133         DUMPBITS(2)
2134
2135
2136                 /* restore the global bit buffer */
2137                 bb = b;
2138         bk = k;
2139
2140
2141         /* 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();
2148
2149
2150         /* bad block type */
2151         return 2;
2152 }
2153
2154
2155
2156 int inflate()
2157 /* decompress an inflated entry */
2158 {
2159         int e;                                          /* last block flag */
2160         int r;                                          /* result code */
2161         unsigned h;                                     /* maximum struct huft's malloc'ed */
2162
2163
2164         /* initialize window, bit buffer */
2165         wp = 0;
2166         bk = 0;
2167         bb = 0;
2168
2169
2170         /* 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);
2179
2180         /* 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         }
2187
2188         /* flush out slide */
2189         flush_output(wp);
2190
2191
2192         /* return success */
2193 #ifdef DEBUG
2194         fprintf(stderr, "<%u> ", h);
2195 #endif                                                  /* DEBUG */
2196         return 0;
2197 }