b0e6b367567d72bf62dffe4da79267c667cb8ec1
[oweals/busybox.git] / archival / gzip.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 Charles P. Wright <cpw@unix.asb.com>
8  *              "this is a stripped down version of gzip I put into busybox, it does
9  *              only standard in to standard out with -9 compression.  It also requires
10  *              the zcat module for some important functions."
11  *
12  * Adjusted further by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
13  * to support files as well as stdin/stdout, and to generally behave itself wrt
14  * command line handling.
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24  * General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29  *
30  */
31
32 /* These defines are very important for BusyBox.  Without these,
33  * huge chunks of ram are pre-allocated making the BusyBox bss 
34  * size Freaking Huge(tm), which is a bad thing.*/
35 #define SMALL_MEM
36 #define DYN_ALLOC
37
38 /* I don't like nested includes, but the string and io functions are used
39  * too often
40  */
41 #include <stdlib.h>
42 #include <stdio.h>
43 #include <string.h>
44 #include <unistd.h>
45 #include <errno.h>
46 #include "busybox.h"
47 #define BB_DECLARE_EXTERN
48 #define bb_need_memory_exhausted
49 #include "messages.c"
50
51 #define memzero(s, n)     memset ((void *)(s), 0, (n))
52
53 #ifndef RETSIGTYPE
54 #  define RETSIGTYPE void
55 #endif
56
57 #define local static
58
59 typedef unsigned char uch;
60 typedef unsigned short ush;
61 typedef unsigned long ulg;
62
63 /* Return codes from gzip */
64 #define OK      0
65 #define ERROR   1
66 #define WARNING 2
67
68 /* Compression methods (see algorithm.doc) */
69 #define STORED      0
70 #define COMPRESSED  1
71 #define PACKED      2
72 #define LZHED       3
73 /* methods 4 to 7 reserved */
74 #define DEFLATED    8
75 #define MAX_METHODS 9
76 static int method;                              /* compression method */
77
78 /* To save memory for 16 bit systems, some arrays are overlaid between
79  * the various modules:
80  * deflate:  prev+head   window      d_buf  l_buf  outbuf
81  * unlzw:    tab_prefix  tab_suffix  stack  inbuf  outbuf
82  * inflate:              window             inbuf
83  * unpack:               window             inbuf  prefix_len
84  * unlzh:    left+right  window      c_table inbuf c_len
85  * For compression, input is done in window[]. For decompression, output
86  * is done in window except for unlzw.
87  */
88
89 #ifndef INBUFSIZ
90 #  ifdef SMALL_MEM
91 #    define INBUFSIZ  0x2000    /* input buffer size */
92 #  else
93 #    define INBUFSIZ  0x8000    /* input buffer size */
94 #  endif
95 #endif
96 #define INBUF_EXTRA  64                 /* required by unlzw() */
97
98 #ifndef OUTBUFSIZ
99 #  ifdef SMALL_MEM
100 #    define OUTBUFSIZ   8192    /* output buffer size */
101 #  else
102 #    define OUTBUFSIZ  16384    /* output buffer size */
103 #  endif
104 #endif
105 #define OUTBUF_EXTRA 2048               /* required by unlzw() */
106
107 #ifndef DIST_BUFSIZE
108 #  ifdef SMALL_MEM
109 #    define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
110 #  else
111 #    define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
112 #  endif
113 #endif
114
115 #ifdef DYN_ALLOC
116 #  define EXTERN(type, array)  extern type * array
117 #  define DECLARE(type, array, size)  type * array
118 #  define ALLOC(type, array, size) { \
119       array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
120       if (array == NULL) error_msg(memory_exhausted); \
121    }
122 #  define FREE(array) {if (array != NULL) free(array), array=NULL;}
123 #else
124 #  define EXTERN(type, array)  extern type array[]
125 #  define DECLARE(type, array, size)  type array[size]
126 #  define ALLOC(type, array, size)
127 #  define FREE(array)
128 #endif
129
130 EXTERN(uch, inbuf);                             /* input buffer */
131 EXTERN(uch, outbuf);                    /* output buffer */
132 EXTERN(ush, d_buf);                             /* buffer for distances, see trees.c */
133 EXTERN(uch, window);                    /* Sliding window and suffix table (unlzw) */
134 #define tab_suffix window
135 #ifndef MAXSEG_64K
136 #  define tab_prefix prev               /* hash link (see deflate.c) */
137 #  define head (prev+WSIZE)             /* hash head (see deflate.c) */
138 EXTERN(ush, tab_prefix);                /* prefix code (see unlzw.c) */
139 #else
140 #  define tab_prefix0 prev
141 #  define head tab_prefix1
142 EXTERN(ush, tab_prefix0);               /* prefix for even codes */
143 EXTERN(ush, tab_prefix1);               /* prefix for odd  codes */
144 #endif
145
146 extern unsigned insize;                 /* valid bytes in inbuf */
147 static unsigned inptr;                  /* index of next byte to be processed in inbuf */
148 extern unsigned outcnt;                 /* bytes in output buffer */
149
150 extern long bytes_in;                   /* number of input bytes */
151 extern long bytes_out;                  /* number of output bytes */
152 extern long header_bytes;               /* number of bytes in gzip header */
153
154 #define isize bytes_in
155 /* for compatibility with old zip sources (to be cleaned) */
156
157 extern int ifd;                                 /* input file descriptor */
158 extern int ofd;                                 /* output file descriptor */
159 extern char ifname[];                   /* input file name or "stdin" */
160 extern char ofname[];                   /* output file name or "stdout" */
161 extern char *progname;                  /* program name */
162
163 extern long time_stamp;                 /* original time stamp (modification time) */
164 extern long ifile_size;                 /* input file size, -1 for devices (debug only) */
165
166 typedef int file_t;                             /* Do not use stdio */
167
168 #define NO_FILE  (-1)                   /* in memory compression */
169
170
171 #define PACK_MAGIC     "\037\036"       /* Magic header for packed files */
172 #define GZIP_MAGIC     "\037\213"       /* Magic header for gzip files, 1F 8B */
173 #define OLD_GZIP_MAGIC "\037\236"       /* Magic header for gzip 0.5 = freeze 1.x */
174 #define LZH_MAGIC      "\037\240"       /* Magic header for SCO LZH Compress files */
175 #define PKZIP_MAGIC    "\120\113\003\004"       /* Magic header for pkzip files */
176
177 /* gzip flag byte */
178 #define ASCII_FLAG   0x01               /* bit 0 set: file probably ascii text */
179 #define CONTINUATION 0x02               /* bit 1 set: continuation of multi-part gzip file */
180 #define EXTRA_FIELD  0x04               /* bit 2 set: extra field present */
181 #define ORIG_NAME    0x08               /* bit 3 set: original file name present */
182 #define COMMENT      0x10               /* bit 4 set: file comment present */
183 #define ENCRYPTED    0x20               /* bit 5 set: file is encrypted */
184 #define RESERVED     0xC0               /* bit 6,7:   reserved */
185
186 /* internal file attribute */
187 #define UNKNOWN 0xffff
188 #define BINARY  0
189 #define ASCII   1
190
191 #ifndef WSIZE
192 #  define WSIZE 0x8000                  /* window size--must be a power of two, and */
193 #endif                                                  /*  at least 32K for zip's deflate method */
194
195 #define MIN_MATCH  3
196 #define MAX_MATCH  258
197 /* The minimum and maximum match lengths */
198
199 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
200 /* Minimum amount of lookahead, except at the end of the input file.
201  * See deflate.c for comments about the MIN_MATCH+1.
202  */
203
204 #define MAX_DIST  (WSIZE-MIN_LOOKAHEAD)
205 /* In order to simplify the code, particularly on 16 bit machines, match
206  * distances are limited to MAX_DIST instead of WSIZE.
207  */
208
209 extern int decrypt;                             /* flag to turn on decryption */
210 extern int exit_code;                   /* program exit code */
211 extern int verbose;                             /* be verbose (-v) */
212 extern int quiet;                               /* be quiet (-q) */
213 extern int test;                                /* check .z file integrity */
214 extern int save_orig_name;              /* set if original name must be saved */
215
216 #define get_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
217 #define try_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
218
219 /* put_byte is used for the compressed output, put_ubyte for the
220  * uncompressed output. However unlzw() uses window for its
221  * suffix table instead of its output buffer, so it does not use put_ubyte
222  * (to be cleaned up).
223  */
224 #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
225    flush_outbuf();}
226 #define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
227    flush_window();}
228
229 /* Output a 16 bit value, lsb first */
230 #define put_short(w) \
231 { if (outcnt < OUTBUFSIZ-2) { \
232     outbuf[outcnt++] = (uch) ((w) & 0xff); \
233     outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
234   } else { \
235     put_byte((uch)((w) & 0xff)); \
236     put_byte((uch)((ush)(w) >> 8)); \
237   } \
238 }
239
240 /* Output a 32 bit value to the bit stream, lsb first */
241 #define put_long(n) { \
242     put_short((n) & 0xffff); \
243     put_short(((ulg)(n)) >> 16); \
244 }
245
246 #define seekable()    0                 /* force sequential output */
247 #define translate_eol 0                 /* no option -a yet */
248
249 #define tolow(c)  (isupper(c) ? (c)-'A'+'a' : (c))      /* force to lower case */
250
251 /* Macros for getting two-byte and four-byte header values */
252 #define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
253 #define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
254
255 /* Diagnostic functions */
256 #ifdef DEBUG
257 #  define Assert(cond,msg) {if(!(cond)) error_msg(msg);}
258 #  define Trace(x) fprintf x
259 #  define Tracev(x) {if (verbose) fprintf x ;}
260 #  define Tracevv(x) {if (verbose>1) fprintf x ;}
261 #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
262 #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
263 #else
264 #  define Assert(cond,msg)
265 #  define Trace(x)
266 #  define Tracev(x)
267 #  define Tracevv(x)
268 #  define Tracec(c,x)
269 #  define Tracecv(c,x)
270 #endif
271
272 #define WARN(msg) {if (!quiet) fprintf msg ; \
273                    if (exit_code == OK) exit_code = WARNING;}
274
275
276         /* in zip.c: */
277 extern int zip (int in, int out);
278 extern int file_read (char *buf, unsigned size);
279
280         /* in unzip.c */
281 extern int check_zipfile (int in);
282
283         /* in unpack.c */
284 extern int unpack (int in, int out);
285
286         /* in unlzh.c */
287 extern int unlzh (int in, int out);
288
289         /* in gzip.c */
290 RETSIGTYPE abort_gzip (void);
291
292                 /* in deflate.c */
293 void lm_init (ush * flags);
294 ulg deflate (void);
295
296                 /* in trees.c */
297 void ct_init (ush * attr, int *methodp);
298 int ct_tally (int dist, int lc);
299 ulg flush_block (char *buf, ulg stored_len, int eof);
300
301                 /* in bits.c */
302 void bi_init (file_t zipfile);
303 void send_bits (int value, int length);
304 unsigned bi_reverse (unsigned value, int length);
305 void bi_windup (void);
306 void copy_block (char *buf, unsigned len, int header);
307 extern int (*read_buf) (char *buf, unsigned size);
308
309         /* in util.c: */
310 extern int copy (int in, int out);
311 //extern ulg updcrc (uch * s, unsigned n);
312 //extern void clear_bufs (void);
313 extern int fill_inbuf (int eof_ok);
314 extern void flush_outbuf (void);
315 extern void flush_window (void);
316 //extern void write_buf (int fd, void * buf, unsigned cnt);
317 extern char *strlwr (char *s);
318 extern char *add_envopt (int *argcp, char ***argvp, char *env);
319 //extern void read_error_msg (void);
320 //extern void write_error_msg (void);
321 extern void display_ratio (long num, long den, FILE * file);
322
323         /* in inflate.c */
324 extern int inflate (void);
325
326 /* lzw.h -- define the lzw functions.
327  * Copyright (C) 1992-1993 Jean-loup Gailly.
328  * This is free software; you can redistribute it and/or modify it under the
329  * terms of the GNU General Public License, see the file COPYING.
330  */
331
332 #if !defined(OF) && defined(lint)
333 #  include "gzip.h"
334 #endif
335
336 #ifndef BITS
337 #  define BITS 16
338 #endif
339 #define INIT_BITS 9                             /* Initial number of bits per code */
340
341 #define BIT_MASK    0x1f                /* Mask for 'number of compression bits' */
342 /* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
343  * It's a pity that old uncompress does not check bit 0x20. That makes
344  * extension of the format actually undesirable because old compress
345  * would just crash on the new format instead of giving a meaningful
346  * error message. It does check the number of bits, but it's more
347  * helpful to say "unsupported format, get a new version" than
348  * "can only handle 16 bits".
349  */
350
351 #define BLOCK_MODE  0x80
352 /* Block compression: if table is full and compression rate is dropping,
353  * clear the dictionary.
354  */
355
356 #define LZW_RESERVED 0x60               /* reserved bits */
357
358 #define CLEAR  256                              /* flush the dictionary */
359 #define FIRST  (CLEAR+1)                /* first free entry */
360
361 extern int maxbits;                             /* max bits per code for LZW */
362 extern int block_mode;                  /* block compress mode -C compatible with 2.0 */
363
364 /* revision.h -- define the version number
365  * Copyright (C) 1992-1993 Jean-loup Gailly.
366  * This is free software; you can redistribute it and/or modify it under the
367  * terms of the GNU General Public License, see the file COPYING.
368  */
369
370 #define VERSION "1.2.4"
371 #define PATCHLEVEL 0
372 #define REVDATE "18 Aug 93"
373
374 /* This version does not support compression into old compress format: */
375 #ifdef LZW
376 #  undef LZW
377 #endif
378
379 /* tailor.h -- target dependent definitions
380  * Copyright (C) 1992-1993 Jean-loup Gailly.
381  * This is free software; you can redistribute it and/or modify it under the
382  * terms of the GNU General Public License, see the file COPYING.
383  */
384
385 /* The target dependent definitions should be defined here only.
386  * The target dependent functions should be defined in tailor.c.
387  */
388
389
390 #if defined(__MSDOS__) && !defined(MSDOS)
391 #  define MSDOS
392 #endif
393
394 #if defined(__OS2__) && !defined(OS2)
395 #  define OS2
396 #endif
397
398 #if defined(OS2) && defined(MSDOS)      /* MS C under OS/2 */
399 #  undef MSDOS
400 #endif
401
402 #ifdef MSDOS
403 #  ifdef __GNUC__
404          /* DJGPP version 1.09+ on MS-DOS.
405           * The DJGPP 1.09 stat() function must be upgraded before gzip will
406           * fully work.
407           * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
408           * implies DIRENT.
409           */
410 #    define near
411 #  else
412 #    define MAXSEG_64K
413 #    ifdef __TURBOC__
414 #      define NO_OFF_T
415 #      ifdef __BORLANDC__
416 #        define DIRENT
417 #      else
418 #        define NO_UTIME
419 #      endif
420 #    else                                               /* MSC */
421 #      define HAVE_SYS_UTIME_H
422 #      define NO_UTIME_H
423 #    endif
424 #  endif
425 #  define PATH_SEP2 '\\'
426 #  define PATH_SEP3 ':'
427 #  define MAX_PATH_LEN  128
428 #  define NO_MULTIPLE_DOTS
429 #  define MAX_EXT_CHARS 3
430 #  define Z_SUFFIX "z"
431 #  define NO_CHOWN
432 #  define PROTO
433 #  define STDC_HEADERS
434 #  define NO_SIZE_CHECK
435 #  define casemap(c) tolow(c)   /* Force file names to lower case */
436 #  include <io.h>
437 #  define OS_CODE  0x00
438 #  define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
439 #  if !defined(NO_ASM) && !defined(ASMV)
440 #    define ASMV
441 #  endif
442 #else
443 #  define near
444 #endif
445
446 #ifdef OS2
447 #  define PATH_SEP2 '\\'
448 #  define PATH_SEP3 ':'
449 #  define MAX_PATH_LEN  260
450 #  ifdef OS2FAT
451 #    define NO_MULTIPLE_DOTS
452 #    define MAX_EXT_CHARS 3
453 #    define Z_SUFFIX "z"
454 #    define casemap(c) tolow(c)
455 #  endif
456 #  define NO_CHOWN
457 #  define PROTO
458 #  define STDC_HEADERS
459 #  include <io.h>
460 #  define OS_CODE  0x06
461 #  define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
462 #  ifdef _MSC_VER
463 #    define HAVE_SYS_UTIME_H
464 #    define NO_UTIME_H
465 #    define MAXSEG_64K
466 #    undef near
467 #    define near _near
468 #  endif
469 #  ifdef __EMX__
470 #    define HAVE_SYS_UTIME_H
471 #    define NO_UTIME_H
472 #    define DIRENT
473 #    define EXPAND(argc,argv) \
474        {_response(&argc, &argv); _wildcard(&argc, &argv);}
475 #  endif
476 #  ifdef __BORLANDC__
477 #    define DIRENT
478 #  endif
479 #  ifdef __ZTC__
480 #    define NO_DIR
481 #    define NO_UTIME_H
482 #    include <dos.h>
483 #    define EXPAND(argc,argv) \
484        {response_expand(&argc, &argv);}
485 #  endif
486 #endif
487
488 #ifdef WIN32                                    /* Windows NT */
489 #  define HAVE_SYS_UTIME_H
490 #  define NO_UTIME_H
491 #  define PATH_SEP2 '\\'
492 #  define PATH_SEP3 ':'
493 #  define MAX_PATH_LEN  260
494 #  define NO_CHOWN
495 #  define PROTO
496 #  define STDC_HEADERS
497 #  define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
498 #  include <io.h>
499 #  include <malloc.h>
500 #  ifdef NTFAT
501 #    define NO_MULTIPLE_DOTS
502 #    define MAX_EXT_CHARS 3
503 #    define Z_SUFFIX "z"
504 #    define casemap(c) tolow(c) /* Force file names to lower case */
505 #  endif
506 #  define OS_CODE  0x0b
507 #endif
508
509 #ifdef MSDOS
510 #  ifdef __TURBOC__
511 #    include <alloc.h>
512 #    define DYN_ALLOC
513          /* Turbo C 2.0 does not accept static allocations of large arrays */
514 void *fcalloc(unsigned items, unsigned size);
515 void fcfree(void *ptr);
516 #  else                                                 /* MSC */
517 #    include <malloc.h>
518 #    define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
519 #    define fcfree(ptr) hfree(ptr)
520 #  endif
521 #else
522 #  ifdef MAXSEG_64K
523 #    define fcalloc(items,size) calloc((items),(size))
524 #  else
525 #    define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
526 #  endif
527 #  define fcfree(ptr) free(ptr)
528 #endif
529
530 #if defined(VAXC) || defined(VMS)
531 #  define PATH_SEP ']'
532 #  define PATH_SEP2 ':'
533 #  define SUFFIX_SEP ';'
534 #  define NO_MULTIPLE_DOTS
535 #  define Z_SUFFIX "-gz"
536 #  define RECORD_IO 1
537 #  define casemap(c) tolow(c)
538 #  define OS_CODE  0x02
539 #  define OPTIONS_VAR "GZIP_OPT"
540 #  define STDC_HEADERS
541 #  define NO_UTIME
542 #  define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
543 #  include <file.h>
544 #  define unlink delete
545 #  ifdef VAXC
546 #    define NO_FCNTL_H
547 #    include <unixio.h>
548 #  endif
549 #endif
550
551 #ifdef AMIGA
552 #  define PATH_SEP2 ':'
553 #  define STDC_HEADERS
554 #  define OS_CODE  0x01
555 #  define ASMV
556 #  ifdef __GNUC__
557 #    define DIRENT
558 #    define HAVE_UNISTD_H
559 #  else                                                 /* SASC */
560 #    define NO_STDIN_FSTAT
561 #    define SYSDIR
562 #    define NO_SYMLINK
563 #    define NO_CHOWN
564 #    define NO_FCNTL_H
565 #    include <fcntl.h>                  /* for read() and write() */
566 #    define direct dirent
567 extern void _expand_args(int *argc, char ***argv);
568
569 #    define EXPAND(argc,argv) _expand_args(&argc,&argv);
570 #    undef  O_BINARY                    /* disable useless --ascii option */
571 #  endif
572 #endif
573
574 #if defined(ATARI) || defined(atarist)
575 #  ifndef STDC_HEADERS
576 #    define STDC_HEADERS
577 #    define HAVE_UNISTD_H
578 #    define DIRENT
579 #  endif
580 #  define ASMV
581 #  define OS_CODE  0x05
582 #  ifdef TOSFS
583 #    define PATH_SEP2 '\\'
584 #    define PATH_SEP3 ':'
585 #    define MAX_PATH_LEN  128
586 #    define NO_MULTIPLE_DOTS
587 #    define MAX_EXT_CHARS 3
588 #    define Z_SUFFIX "z"
589 #    define NO_CHOWN
590 #    define casemap(c) tolow(c) /* Force file names to lower case */
591 #    define NO_SYMLINK
592 #  endif
593 #endif
594
595 #ifdef MACOS
596 #  define PATH_SEP ':'
597 #  define DYN_ALLOC
598 #  define PROTO
599 #  define NO_STDIN_FSTAT
600 #  define NO_CHOWN
601 #  define NO_UTIME
602 #  define chmod(file, mode) (0)
603 #  define OPEN(name, flags, mode) open(name, flags)
604 #  define OS_CODE  0x07
605 #  ifdef MPW
606 #    define isatty(fd) ((fd) <= 2)
607 #  endif
608 #endif
609
610 #ifdef __50SERIES                               /* Prime/PRIMOS */
611 #  define PATH_SEP '>'
612 #  define STDC_HEADERS
613 #  define NO_MEMORY_H
614 #  define NO_UTIME_H
615 #  define NO_UTIME
616 #  define NO_CHOWN
617 #  define NO_STDIN_FSTAT
618 #  define NO_SIZE_CHECK
619 #  define NO_SYMLINK
620 #  define RECORD_IO  1
621 #  define casemap(c)  tolow(c)  /* Force file names to lower case */
622 #  define put_char(c) put_byte((c) & 0x7F)
623 #  define get_char(c) ascii2pascii(get_byte())
624 #  define OS_CODE  0x0F                 /* temporary, subject to change */
625 #  ifdef SIGTERM
626 #    undef SIGTERM                              /* We don't want a signal handler for SIGTERM */
627 #  endif
628 #endif
629
630 #if defined(pyr) && !defined(NOMEMCPY)  /* Pyramid */
631 #  define NOMEMCPY                              /* problem with overlapping copies */
632 #endif
633
634 #ifdef TOPS20
635 #  define OS_CODE  0x0a
636 #endif
637
638 #ifndef unix
639 #  define NO_ST_INO                             /* don't rely on inode numbers */
640 #endif
641
642
643         /* Common defaults */
644
645 #ifndef OS_CODE
646 #  define OS_CODE  0x03                 /* assume Unix */
647 #endif
648
649 #ifndef PATH_SEP
650 #  define PATH_SEP '/'
651 #endif
652
653 #ifndef casemap
654 #  define casemap(c) (c)
655 #endif
656
657 #ifndef OPTIONS_VAR
658 #  define OPTIONS_VAR "GZIP"
659 #endif
660
661 #ifndef Z_SUFFIX
662 #  define Z_SUFFIX ".gz"
663 #endif
664
665 #ifdef MAX_EXT_CHARS
666 #  define MAX_SUFFIX  MAX_EXT_CHARS
667 #else
668 #  define MAX_SUFFIX  30
669 #endif
670
671 #ifndef MAKE_LEGAL_NAME
672 #  ifdef NO_MULTIPLE_DOTS
673 #    define MAKE_LEGAL_NAME(name)   make_simple_name(name)
674 #  else
675 #    define MAKE_LEGAL_NAME(name)
676 #  endif
677 #endif
678
679 #ifndef MIN_PART
680 #  define MIN_PART 3
681    /* keep at least MIN_PART chars between dots in a file name. */
682 #endif
683
684 #ifndef EXPAND
685 #  define EXPAND(argc,argv)
686 #endif
687
688 #ifndef RECORD_IO
689 #  define RECORD_IO 0
690 #endif
691
692 #ifndef SET_BINARY_MODE
693 #  define SET_BINARY_MODE(fd)
694 #endif
695
696 #ifndef OPEN
697 #  define OPEN(name, flags, mode) open(name, flags, mode)
698 #endif
699
700 #ifndef get_char
701 #  define get_char() get_byte()
702 #endif
703
704 #ifndef put_char
705 #  define put_char(c) put_byte(c)
706 #endif
707
708 int crc_table_empty = 1;
709
710 /* ========================================================================
711  * Signal and error handler.
712  */
713 void abort_gzip()
714 {
715         exit(ERROR);
716 }
717
718 /* ===========================================================================
719  * Clear input and output buffers
720  */
721 static void clear_bufs(void)
722 {
723         outcnt = 0;
724         insize = inptr = 0;
725         bytes_in = bytes_out = 0L;
726 }
727
728 static void write_error_msg()
729 {
730         fprintf(stderr, "\n");
731         perror("");
732         abort_gzip();
733 }
734
735 /* ===========================================================================
736  * Does the same as write(), but also handles partial pipe writes and checks
737  * for error return.
738  */
739 static void write_buf(fd, buf, cnt)
740 int fd;
741 void * buf;
742 unsigned cnt;
743 {
744         unsigned n;
745
746         while ((n = write(fd, buf, cnt)) != cnt) {
747                 if (n == (unsigned) (-1)) {
748                         write_error_msg();
749                 }
750                 cnt -= n;
751                 buf = (void *) ((char *) buf + n);
752         }
753 }
754
755 /* ========================================================================
756  * Error handlers.
757  */
758 static void read_error_msg()
759 {
760         fprintf(stderr, "\n");
761         if (errno != 0) {
762                 perror("");
763         } else {
764                 fprintf(stderr, "unexpected end of file\n");
765         }
766         abort_gzip();
767 }
768
769 /* ===========================================================================
770  * Run a set of bytes through the crc shift register.  If s is a NULL
771  * pointer, then initialize the crc shift register contents instead.
772  * Return the current crc in either case.
773  */
774 static ulg updcrc(s, n)
775 uch *s;                                 /* pointer to bytes to pump through */
776 unsigned n;                             /* number of bytes in s[] */
777 {
778         static ulg crc = (ulg) 0xffffffffL;     /* shift register contents */
779         register ulg c;                         /* temporary variable */
780         static unsigned long crc_32_tab[256];
781         if (crc_table_empty) {
782                 unsigned long csr;      /* crc shift register */
783                 unsigned long e;      /* polynomial exclusive-or pattern */
784                 int i;                /* counter for all possible eight bit values */
785                 int k;                /* byte being shifted into crc apparatus */
786
787                 /* terms of polynomial defining this crc (except x^32): */
788                 static int p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
789
790                 /* Make exclusive-or pattern from polynomial (0xedb88320) */
791                 e = 0;
792                 for (i = 0; i < sizeof(p)/sizeof(int); i++)
793                         e |= 1L << (31 - p[i]);
794
795                 /* Compute and print table of CRC's, five per line */
796                 crc_32_tab[0] = 0x00000000L;
797                 for (i = 1; i < 256; i++) {
798                         csr = i;
799                    /* The idea to initialize the register with the byte instead of
800                      * zero was stolen from Haruhiko Okumura's ar002
801                      */
802                         for (k = 8; k; k--)
803                                 csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
804                         crc_32_tab[i]=csr;
805                 }
806         }
807
808         if (s == NULL) {
809                 c = 0xffffffffL;
810         } else {
811                 c = crc;
812                 if (n)
813                         do {
814                                 c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);
815                         } while (--n);
816         }
817         crc = c;
818         return c ^ 0xffffffffL;         /* (instead of ~c for 64-bit machines) */
819 }
820
821 /* bits.c -- output variable-length bit strings
822  * Copyright (C) 1992-1993 Jean-loup Gailly
823  * This is free software; you can redistribute it and/or modify it under the
824  * terms of the GNU General Public License, see the file COPYING.
825  */
826
827
828 /*
829  *  PURPOSE
830  *
831  *      Output variable-length bit strings. Compression can be done
832  *      to a file or to memory. (The latter is not supported in this version.)
833  *
834  *  DISCUSSION
835  *
836  *      The PKZIP "deflate" file format interprets compressed file data
837  *      as a sequence of bits.  Multi-bit strings in the file may cross
838  *      byte boundaries without restriction.
839  *
840  *      The first bit of each byte is the low-order bit.
841  *
842  *      The routines in this file allow a variable-length bit value to
843  *      be output right-to-left (useful for literal values). For
844  *      left-to-right output (useful for code strings from the tree routines),
845  *      the bits must have been reversed first with bi_reverse().
846  *
847  *      For in-memory compression, the compressed bit stream goes directly
848  *      into the requested output buffer. The input data is read in blocks
849  *      by the mem_read() function. The buffer is limited to 64K on 16 bit
850  *      machines.
851  *
852  *  INTERFACE
853  *
854  *      void bi_init (FILE *zipfile)
855  *          Initialize the bit string routines.
856  *
857  *      void send_bits (int value, int length)
858  *          Write out a bit string, taking the source bits right to
859  *          left.
860  *
861  *      int bi_reverse (int value, int length)
862  *          Reverse the bits of a bit string, taking the source bits left to
863  *          right and emitting them right to left.
864  *
865  *      void bi_windup (void)
866  *          Write out any remaining bits in an incomplete byte.
867  *
868  *      void copy_block(char *buf, unsigned len, int header)
869  *          Copy a stored block to the zip file, storing first the length and
870  *          its one's complement if requested.
871  *
872  */
873
874 #ifdef DEBUG
875 #  include <stdio.h>
876 #endif
877
878 /* ===========================================================================
879  * Local data used by the "bit string" routines.
880  */
881
882 local file_t zfile;                             /* output gzip file */
883
884 local unsigned short bi_buf;
885
886 /* Output buffer. bits are inserted starting at the bottom (least significant
887  * bits).
888  */
889
890 #define Buf_size (8 * 2*sizeof(char))
891 /* Number of bits used within bi_buf. (bi_buf might be implemented on
892  * more than 16 bits on some systems.)
893  */
894
895 local int bi_valid;
896
897 /* Number of valid bits in bi_buf.  All bits above the last valid bit
898  * are always zero.
899  */
900
901 int (*read_buf) (char *buf, unsigned size);
902
903 /* Current input function. Set to mem_read for in-memory compression */
904
905 #ifdef DEBUG
906 ulg bits_sent;                                  /* bit length of the compressed data */
907 #endif
908
909 /* ===========================================================================
910  * Initialize the bit string routines.
911  */
912 void bi_init(zipfile)
913 file_t zipfile;                                 /* output zip file, NO_FILE for in-memory compression */
914 {
915         zfile = zipfile;
916         bi_buf = 0;
917         bi_valid = 0;
918 #ifdef DEBUG
919         bits_sent = 0L;
920 #endif
921
922         /* Set the defaults for file compression. They are set by memcompress
923          * for in-memory compression.
924          */
925         if (zfile != NO_FILE) {
926                 read_buf = file_read;
927         }
928 }
929
930 /* ===========================================================================
931  * Send a value on a given number of bits.
932  * IN assertion: length <= 16 and value fits in length bits.
933  */
934 void send_bits(value, length)
935 int value;                                              /* value to send */
936 int length;                                             /* number of bits */
937 {
938 #ifdef DEBUG
939         Tracev((stderr, " l %2d v %4x ", length, value));
940         Assert(length > 0 && length <= 15, "invalid length");
941         bits_sent += (ulg) length;
942 #endif
943         /* If not enough room in bi_buf, use (valid) bits from bi_buf and
944          * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
945          * unused bits in value.
946          */
947         if (bi_valid > (int) Buf_size - length) {
948                 bi_buf |= (value << bi_valid);
949                 put_short(bi_buf);
950                 bi_buf = (ush) value >> (Buf_size - bi_valid);
951                 bi_valid += length - Buf_size;
952         } else {
953                 bi_buf |= value << bi_valid;
954                 bi_valid += length;
955         }
956 }
957
958 /* ===========================================================================
959  * Reverse the first len bits of a code, using straightforward code (a faster
960  * method would use a table)
961  * IN assertion: 1 <= len <= 15
962  */
963 unsigned bi_reverse(code, len)
964 unsigned code;                                  /* the value to invert */
965 int len;                                                /* its bit length */
966 {
967         register unsigned res = 0;
968
969         do {
970                 res |= code & 1;
971                 code >>= 1, res <<= 1;
972         } while (--len > 0);
973         return res >> 1;
974 }
975
976 /* ===========================================================================
977  * Write out any remaining bits in an incomplete byte.
978  */
979 void bi_windup()
980 {
981         if (bi_valid > 8) {
982                 put_short(bi_buf);
983         } else if (bi_valid > 0) {
984                 put_byte(bi_buf);
985         }
986         bi_buf = 0;
987         bi_valid = 0;
988 #ifdef DEBUG
989         bits_sent = (bits_sent + 7) & ~7;
990 #endif
991 }
992
993 /* ===========================================================================
994  * Copy a stored block to the zip file, storing first the length and its
995  * one's complement if requested.
996  */
997 void copy_block(buf, len, header)
998 char *buf;                                              /* the input data */
999 unsigned len;                                   /* its length */
1000 int header;                                             /* true if block header must be written */
1001 {
1002         bi_windup();                            /* align on byte boundary */
1003
1004         if (header) {
1005                 put_short((ush) len);
1006                 put_short((ush) ~ len);
1007 #ifdef DEBUG
1008                 bits_sent += 2 * 16;
1009 #endif
1010         }
1011 #ifdef DEBUG
1012         bits_sent += (ulg) len << 3;
1013 #endif
1014         while (len--) {
1015 #ifdef CRYPT
1016                 int t;
1017
1018                 if (key)
1019                         zencode(*buf, t);
1020 #endif
1021                 put_byte(*buf++);
1022         }
1023 }
1024
1025 /* deflate.c -- compress data using the deflation algorithm
1026  * Copyright (C) 1992-1993 Jean-loup Gailly
1027  * This is free software; you can redistribute it and/or modify it under the
1028  * terms of the GNU General Public License, see the file COPYING.
1029  */
1030
1031 /*
1032  *  PURPOSE
1033  *
1034  *      Identify new text as repetitions of old text within a fixed-
1035  *      length sliding window trailing behind the new text.
1036  *
1037  *  DISCUSSION
1038  *
1039  *      The "deflation" process depends on being able to identify portions
1040  *      of the input text which are identical to earlier input (within a
1041  *      sliding window trailing behind the input currently being processed).
1042  *
1043  *      The most straightforward technique turns out to be the fastest for
1044  *      most input files: try all possible matches and select the longest.
1045  *      The key feature of this algorithm is that insertions into the string
1046  *      dictionary are very simple and thus fast, and deletions are avoided
1047  *      completely. Insertions are performed at each input character, whereas
1048  *      string matches are performed only when the previous match ends. So it
1049  *      is preferable to spend more time in matches to allow very fast string
1050  *      insertions and avoid deletions. The matching algorithm for small
1051  *      strings is inspired from that of Rabin & Karp. A brute force approach
1052  *      is used to find longer strings when a small match has been found.
1053  *      A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
1054  *      (by Leonid Broukhis).
1055  *         A previous version of this file used a more sophisticated algorithm
1056  *      (by Fiala and Greene) which is guaranteed to run in linear amortized
1057  *      time, but has a larger average cost, uses more memory and is patented.
1058  *      However the F&G algorithm may be faster for some highly redundant
1059  *      files if the parameter max_chain_length (described below) is too large.
1060  *
1061  *  ACKNOWLEDGEMENTS
1062  *
1063  *      The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
1064  *      I found it in 'freeze' written by Leonid Broukhis.
1065  *      Thanks to many info-zippers for bug reports and testing.
1066  *
1067  *  REFERENCES
1068  *
1069  *      APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
1070  *
1071  *      A description of the Rabin and Karp algorithm is given in the book
1072  *         "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
1073  *
1074  *      Fiala,E.R., and Greene,D.H.
1075  *         Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
1076  *
1077  *  INTERFACE
1078  *
1079  *      void lm_init (int pack_level, ush *flags)
1080  *          Initialize the "longest match" routines for a new file
1081  *
1082  *      ulg deflate (void)
1083  *          Processes a new input file and return its compressed length. Sets
1084  *          the compressed length, crc, deflate flags and internal file
1085  *          attributes.
1086  */
1087
1088 #include <stdio.h>
1089
1090 /* ===========================================================================
1091  * Configuration parameters
1092  */
1093
1094 /* Compile with MEDIUM_MEM to reduce the memory requirements or
1095  * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
1096  * entire input file can be held in memory (not possible on 16 bit systems).
1097  * Warning: defining these symbols affects HASH_BITS (see below) and thus
1098  * affects the compression ratio. The compressed output
1099  * is still correct, and might even be smaller in some cases.
1100  */
1101
1102 #ifdef SMALL_MEM
1103 #   define HASH_BITS  13                /* Number of bits used to hash strings */
1104 #endif
1105 #ifdef MEDIUM_MEM
1106 #   define HASH_BITS  14
1107 #endif
1108 #ifndef HASH_BITS
1109 #   define HASH_BITS  15
1110    /* For portability to 16 bit machines, do not use values above 15. */
1111 #endif
1112
1113 /* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
1114  * window with tab_suffix. Check that we can do this:
1115  */
1116 #if (WSIZE<<1) > (1<<BITS)
1117 error:cannot overlay window with tab_suffix and prev with tab_prefix0
1118 #endif
1119 #if HASH_BITS > BITS-1
1120 error:cannot overlay head with tab_prefix1
1121 #endif
1122 #define HASH_SIZE (unsigned)(1<<HASH_BITS)
1123 #define HASH_MASK (HASH_SIZE-1)
1124 #define WMASK     (WSIZE-1)
1125 /* HASH_SIZE and WSIZE must be powers of two */
1126 #define NIL 0
1127 /* Tail of hash chains */
1128 #define FAST 4
1129 #define SLOW 2
1130 /* speed options for the general purpose bit flag */
1131 #ifndef TOO_FAR
1132 #  define TOO_FAR 4096
1133 #endif
1134 /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
1135 /* ===========================================================================
1136  * Local data used by the "longest match" routines.
1137  */
1138 typedef ush Pos;
1139 typedef unsigned IPos;
1140
1141 /* A Pos is an index in the character window. We use short instead of int to
1142  * save space in the various tables. IPos is used only for parameter passing.
1143  */
1144
1145 /* DECLARE(uch, window, 2L*WSIZE); */
1146 /* Sliding window. Input bytes are read into the second half of the window,
1147  * and move to the first half later to keep a dictionary of at least WSIZE
1148  * bytes. With this organization, matches are limited to a distance of
1149  * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1150  * performed with a length multiple of the block size. Also, it limits
1151  * the window size to 64K, which is quite useful on MSDOS.
1152  * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1153  * be less efficient).
1154  */
1155
1156 /* DECLARE(Pos, prev, WSIZE); */
1157 /* Link to older string with same hash index. To limit the size of this
1158  * array to 64K, this link is maintained only for the last 32K strings.
1159  * An index in this array is thus a window index modulo 32K.
1160  */
1161
1162 /* DECLARE(Pos, head, 1<<HASH_BITS); */
1163 /* Heads of the hash chains or NIL. */
1164
1165 ulg window_size = (ulg) 2 * WSIZE;
1166
1167 /* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1168  * input file length plus MIN_LOOKAHEAD.
1169  */
1170
1171 long block_start;
1172
1173 /* window position at the beginning of the current output block. Gets
1174  * negative when the window is moved backwards.
1175  */
1176
1177 local unsigned ins_h;                   /* hash index of string to be inserted */
1178
1179 #define H_SHIFT  ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1180 /* Number of bits by which ins_h and del_h must be shifted at each
1181  * input step. It must be such that after MIN_MATCH steps, the oldest
1182  * byte no longer takes part in the hash key, that is:
1183  *   H_SHIFT * MIN_MATCH >= HASH_BITS
1184  */
1185
1186 unsigned int near prev_length;
1187
1188 /* Length of the best match at previous step. Matches not greater than this
1189  * are discarded. This is used in the lazy match evaluation.
1190  */
1191
1192 unsigned near strstart;                 /* start of string to insert */
1193 unsigned near match_start;              /* start of matching string */
1194 local int eofile;                               /* flag set at end of input file */
1195 local unsigned lookahead;               /* number of valid bytes ahead in window */
1196
1197 unsigned near max_chain_length;
1198
1199 /* To speed up deflation, hash chains are never searched beyond this length.
1200  * A higher limit improves compression ratio but degrades the speed.
1201  */
1202
1203 local unsigned int max_lazy_match;
1204
1205 /* Attempt to find a better match only when the current match is strictly
1206  * smaller than this value. This mechanism is used only for compression
1207  * levels >= 4.
1208  */
1209 #define max_insert_length  max_lazy_match
1210 /* Insert new strings in the hash table only if the match length
1211  * is not greater than this length. This saves time but degrades compression.
1212  * max_insert_length is used only for compression levels <= 3.
1213  */
1214
1215 unsigned near good_match;
1216
1217 /* Use a faster search when the previous match is longer than this */
1218
1219
1220 /* Values for max_lazy_match, good_match and max_chain_length, depending on
1221  * the desired pack level (0..9). The values given below have been tuned to
1222  * exclude worst case performance for pathological files. Better values may be
1223  * found for specific files.
1224  */
1225
1226 typedef struct config {
1227         ush good_length;                        /* reduce lazy search above this match length */
1228         ush max_lazy;                           /* do not perform lazy search above this match length */
1229         ush nice_length;                        /* quit search above this match length */
1230         ush max_chain;
1231 } config;
1232
1233 #ifdef  FULL_SEARCH
1234 # define nice_match MAX_MATCH
1235 #else
1236 int near nice_match;                    /* Stop searching when current match exceeds this */
1237 #endif
1238
1239 local config configuration_table =
1240                                                                 /* 9 */ { 32, 258, 258, 4096 };
1241                                                                 /* maximum compression */
1242
1243 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1244  * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1245  * meaning.
1246  */
1247
1248 #define EQUAL 0
1249 /* result of memcmp for equal strings */
1250
1251 /* ===========================================================================
1252  *  Prototypes for local functions.
1253  */
1254 local void fill_window (void);
1255
1256 int longest_match (IPos cur_match);
1257
1258 #ifdef ASMV
1259 void match_init (void);         /* asm code initialization */
1260 #endif
1261
1262 #ifdef DEBUG
1263 local void check_match (IPos start, IPos match, int length);
1264 #endif
1265
1266 /* ===========================================================================
1267  * Update a hash value with the given input byte
1268  * IN  assertion: all calls to to UPDATE_HASH are made with consecutive
1269  *    input characters, so that a running hash key can be computed from the
1270  *    previous key instead of complete recalculation each time.
1271  */
1272 #define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1273
1274 /* ===========================================================================
1275  * Insert string s in the dictionary and set match_head to the previous head
1276  * of the hash chain (the most recent string with same hash key). Return
1277  * the previous length of the hash chain.
1278  * IN  assertion: all calls to to INSERT_STRING are made with consecutive
1279  *    input characters and the first MIN_MATCH bytes of s are valid
1280  *    (except for the last MIN_MATCH-1 bytes of the input file).
1281  */
1282 #define INSERT_STRING(s, match_head) \
1283    (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1284     prev[(s) & WMASK] = match_head = head[ins_h], \
1285     head[ins_h] = (s))
1286
1287 /* ===========================================================================
1288  * Initialize the "longest match" routines for a new file
1289  */
1290 void lm_init(flags)
1291 ush *flags;                                             /* general purpose bit flag */
1292 {
1293         register unsigned j;
1294
1295         /* Initialize the hash table. */
1296 #if defined(MAXSEG_64K) && HASH_BITS == 15
1297         for (j = 0; j < HASH_SIZE; j++)
1298                 head[j] = NIL;
1299 #else
1300         memzero((char *) head, HASH_SIZE * sizeof(*head));
1301 #endif
1302         /* prev will be initialized on the fly */
1303
1304         /* Set the default configuration parameters:
1305          */
1306         max_lazy_match = configuration_table.max_lazy;
1307         good_match = configuration_table.good_length;
1308 #ifndef FULL_SEARCH
1309         nice_match = configuration_table.nice_length;
1310 #endif
1311         max_chain_length = configuration_table.max_chain;
1312         *flags |= SLOW;
1313         /* ??? reduce max_chain_length for binary files */
1314
1315         strstart = 0;
1316         block_start = 0L;
1317 #ifdef ASMV
1318         match_init();                           /* initialize the asm code */
1319 #endif
1320
1321         lookahead = read_buf((char *) window,
1322                                                  sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
1323
1324         if (lookahead == 0 || lookahead == (unsigned) EOF) {
1325                 eofile = 1, lookahead = 0;
1326                 return;
1327         }
1328         eofile = 0;
1329         /* Make sure that we always have enough lookahead. This is important
1330          * if input comes from a device such as a tty.
1331          */
1332         while (lookahead < MIN_LOOKAHEAD && !eofile)
1333                 fill_window();
1334
1335         ins_h = 0;
1336         for (j = 0; j < MIN_MATCH - 1; j++)
1337                 UPDATE_HASH(ins_h, window[j]);
1338         /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1339          * not important since only literal bytes will be emitted.
1340          */
1341 }
1342
1343 /* ===========================================================================
1344  * Set match_start to the longest match starting at the given string and
1345  * return its length. Matches shorter or equal to prev_length are discarded,
1346  * in which case the result is equal to prev_length and match_start is
1347  * garbage.
1348  * IN assertions: cur_match is the head of the hash chain for the current
1349  *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1350  */
1351 #ifndef ASMV
1352 /* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1353  * match.s. The code is functionally equivalent, so you can use the C version
1354  * if desired.
1355  */
1356 int longest_match(cur_match)
1357 IPos cur_match;                                 /* current match */
1358 {
1359         unsigned chain_length = max_chain_length;       /* max hash chain length */
1360         register uch *scan = window + strstart; /* current string */
1361         register uch *match;            /* matched string */
1362         register int len;                       /* length of current match */
1363         int best_len = prev_length;     /* best match length so far */
1364         IPos limit =
1365
1366                 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
1367         /* Stop when cur_match becomes <= limit. To simplify the code,
1368          * we prevent matches with the string of window index 0.
1369          */
1370
1371 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1372  * It is easy to get rid of this optimization if necessary.
1373  */
1374 #if HASH_BITS < 8 || MAX_MATCH != 258
1375   error:Code too clever
1376 #endif
1377 #ifdef UNALIGNED_OK
1378                 /* Compare two bytes at a time. Note: this is not always beneficial.
1379                  * Try with and without -DUNALIGNED_OK to check.
1380                  */
1381         register uch *strend = window + strstart + MAX_MATCH - 1;
1382         register ush scan_start = *(ush *) scan;
1383         register ush scan_end = *(ush *) (scan + best_len - 1);
1384 #else
1385         register uch *strend = window + strstart + MAX_MATCH;
1386         register uch scan_end1 = scan[best_len - 1];
1387         register uch scan_end = scan[best_len];
1388 #endif
1389
1390         /* Do not waste too much time if we already have a good match: */
1391         if (prev_length >= good_match) {
1392                 chain_length >>= 2;
1393         }
1394         Assert(strstart <= window_size - MIN_LOOKAHEAD,
1395                    "insufficient lookahead");
1396
1397         do {
1398                 Assert(cur_match < strstart, "no future");
1399                 match = window + cur_match;
1400
1401                 /* Skip to next match if the match length cannot increase
1402                  * or if the match length is less than 2:
1403                  */
1404 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1405                 /* This code assumes sizeof(unsigned short) == 2. Do not use
1406                  * UNALIGNED_OK if your compiler uses a different size.
1407                  */
1408                 if (*(ush *) (match + best_len - 1) != scan_end ||
1409                         *(ush *) match != scan_start)
1410                         continue;
1411
1412                 /* It is not necessary to compare scan[2] and match[2] since they are
1413                  * always equal when the other bytes match, given that the hash keys
1414                  * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1415                  * strstart+3, +5, ... up to strstart+257. We check for insufficient
1416                  * lookahead only every 4th comparison; the 128th check will be made
1417                  * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1418                  * necessary to put more guard bytes at the end of the window, or
1419                  * to check more often for insufficient lookahead.
1420                  */
1421                 scan++, match++;
1422                 do {
1423                 } while (*(ush *) (scan += 2) == *(ush *) (match += 2) &&
1424                                  *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1425                                  *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1426                                  *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1427                                  scan < strend);
1428                 /* The funny "do {}" generates better code on most compilers */
1429
1430                 /* Here, scan <= window+strstart+257 */
1431                 Assert(scan <= window + (unsigned) (window_size - 1), "wild scan");
1432                 if (*scan == *match)
1433                         scan++;
1434
1435                 len = (MAX_MATCH - 1) - (int) (strend - scan);
1436                 scan = strend - (MAX_MATCH - 1);
1437
1438 #else                                                   /* UNALIGNED_OK */
1439
1440                 if (match[best_len] != scan_end ||
1441                         match[best_len - 1] != scan_end1 ||
1442                         *match != *scan || *++match != scan[1])
1443                         continue;
1444
1445                 /* The check at best_len-1 can be removed because it will be made
1446                  * again later. (This heuristic is not always a win.)
1447                  * It is not necessary to compare scan[2] and match[2] since they
1448                  * are always equal when the other bytes match, given that
1449                  * the hash keys are equal and that HASH_BITS >= 8.
1450                  */
1451                 scan += 2, match++;
1452
1453                 /* We check for insufficient lookahead only every 8th comparison;
1454                  * the 256th check will be made at strstart+258.
1455                  */
1456                 do {
1457                 } while (*++scan == *++match && *++scan == *++match &&
1458                                  *++scan == *++match && *++scan == *++match &&
1459                                  *++scan == *++match && *++scan == *++match &&
1460                                  *++scan == *++match && *++scan == *++match &&
1461                                  scan < strend);
1462
1463                 len = MAX_MATCH - (int) (strend - scan);
1464                 scan = strend - MAX_MATCH;
1465
1466 #endif                                                  /* UNALIGNED_OK */
1467
1468                 if (len > best_len) {
1469                         match_start = cur_match;
1470                         best_len = len;
1471                         if (len >= nice_match)
1472                                 break;
1473 #ifdef UNALIGNED_OK
1474                         scan_end = *(ush *) (scan + best_len - 1);
1475 #else
1476                         scan_end1 = scan[best_len - 1];
1477                         scan_end = scan[best_len];
1478 #endif
1479                 }
1480         } while ((cur_match = prev[cur_match & WMASK]) > limit
1481                          && --chain_length != 0);
1482
1483         return best_len;
1484 }
1485 #endif                                                  /* ASMV */
1486
1487 #ifdef DEBUG
1488 /* ===========================================================================
1489  * Check that the match at match_start is indeed a match.
1490  */
1491 local void check_match(start, match, length)
1492 IPos start, match;
1493 int length;
1494 {
1495         /* check that the match is indeed a match */
1496         if (memcmp((char *) window + match,
1497                            (char *) window + start, length) != EQUAL) {
1498                 fprintf(stderr,
1499                                 " start %d, match %d, length %d\n", start, match, length);
1500                 error_msg("invalid match");
1501         }
1502         if (verbose > 1) {
1503                 fprintf(stderr, "\\[%d,%d]", start - match, length);
1504                 do {
1505                         putc(window[start++], stderr);
1506                 } while (--length != 0);
1507         }
1508 }
1509 #else
1510 #  define check_match(start, match, length)
1511 #endif
1512
1513 /* ===========================================================================
1514  * Fill the window when the lookahead becomes insufficient.
1515  * Updates strstart and lookahead, and sets eofile if end of input file.
1516  * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1517  * OUT assertions: at least one byte has been read, or eofile is set;
1518  *    file reads are performed for at least two bytes (required for the
1519  *    translate_eol option).
1520  */
1521 local void fill_window()
1522 {
1523         register unsigned n, m;
1524         unsigned more =
1525
1526                 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
1527         /* Amount of free space at the end of the window. */
1528
1529         /* If the window is almost full and there is insufficient lookahead,
1530          * move the upper half to the lower one to make room in the upper half.
1531          */
1532         if (more == (unsigned) EOF) {
1533                 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1534                  * and lookahead == 1 (input done one byte at time)
1535                  */
1536                 more--;
1537         } else if (strstart >= WSIZE + MAX_DIST) {
1538                 /* By the IN assertion, the window is not empty so we can't confuse
1539                  * more == 0 with more == 64K on a 16 bit machine.
1540                  */
1541                 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
1542
1543                 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
1544                 match_start -= WSIZE;
1545                 strstart -= WSIZE;              /* we now have strstart >= MAX_DIST: */
1546
1547                 block_start -= (long) WSIZE;
1548
1549                 for (n = 0; n < HASH_SIZE; n++) {
1550                         m = head[n];
1551                         head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1552                 }
1553                 for (n = 0; n < WSIZE; n++) {
1554                         m = prev[n];
1555                         prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1556                         /* If n is not on any hash chain, prev[n] is garbage but
1557                          * its value will never be used.
1558                          */
1559                 }
1560                 more += WSIZE;
1561         }
1562         /* At this point, more >= 2 */
1563         if (!eofile) {
1564                 n = read_buf((char *) window + strstart + lookahead, more);
1565                 if (n == 0 || n == (unsigned) EOF) {
1566                         eofile = 1;
1567                 } else {
1568                         lookahead += n;
1569                 }
1570         }
1571 }
1572
1573 /* ===========================================================================
1574  * Flush the current block, with given end-of-file flag.
1575  * IN assertion: strstart is set to the end of the current match.
1576  */
1577 #define FLUSH_BLOCK(eof) \
1578    flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1579                 (char*)NULL, (long)strstart - block_start, (eof))
1580
1581 /* ===========================================================================
1582  * Same as above, but achieves better compression. We use a lazy
1583  * evaluation for matches: a match is finally adopted only if there is
1584  * no better match at the next window position.
1585  */
1586 ulg deflate()
1587 {
1588         IPos hash_head;                         /* head of hash chain */
1589         IPos prev_match;                        /* previous match */
1590         int flush;                                      /* set if current block must be flushed */
1591         int match_available = 0;        /* set if previous match exists */
1592         register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1593
1594 #ifdef DEBUG
1595         extern long isize;                      /* byte length of input file, for debug only */
1596 #endif
1597
1598         /* Process the input block. */
1599         while (lookahead != 0) {
1600                 /* Insert the string window[strstart .. strstart+2] in the
1601                  * dictionary, and set hash_head to the head of the hash chain:
1602                  */
1603                 INSERT_STRING(strstart, hash_head);
1604
1605                 /* Find the longest match, discarding those <= prev_length.
1606                  */
1607                 prev_length = match_length, prev_match = match_start;
1608                 match_length = MIN_MATCH - 1;
1609
1610                 if (hash_head != NIL && prev_length < max_lazy_match &&
1611                         strstart - hash_head <= MAX_DIST) {
1612                         /* To simplify the code, we prevent matches with the string
1613                          * of window index 0 (in particular we have to avoid a match
1614                          * of the string with itself at the start of the input file).
1615                          */
1616                         match_length = longest_match(hash_head);
1617                         /* longest_match() sets match_start */
1618                         if (match_length > lookahead)
1619                                 match_length = lookahead;
1620
1621                         /* Ignore a length 3 match if it is too distant: */
1622                         if (match_length == MIN_MATCH
1623                                 && strstart - match_start > TOO_FAR) {
1624                                 /* If prev_match is also MIN_MATCH, match_start is garbage
1625                                  * but we will ignore the current match anyway.
1626                                  */
1627                                 match_length--;
1628                         }
1629                 }
1630                 /* If there was a match at the previous step and the current
1631                  * match is not better, output the previous match:
1632                  */
1633                 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
1634
1635                         check_match(strstart - 1, prev_match, prev_length);
1636
1637                         flush =
1638                                 ct_tally(strstart - 1 - prev_match,
1639                                                  prev_length - MIN_MATCH);
1640
1641                         /* Insert in hash table all strings up to the end of the match.
1642                          * strstart-1 and strstart are already inserted.
1643                          */
1644                         lookahead -= prev_length - 1;
1645                         prev_length -= 2;
1646                         do {
1647                                 strstart++;
1648                                 INSERT_STRING(strstart, hash_head);
1649                                 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1650                                  * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1651                                  * these bytes are garbage, but it does not matter since the
1652                                  * next lookahead bytes will always be emitted as literals.
1653                                  */
1654                         } while (--prev_length != 0);
1655                         match_available = 0;
1656                         match_length = MIN_MATCH - 1;
1657                         strstart++;
1658                         if (flush)
1659                                 FLUSH_BLOCK(0), block_start = strstart;
1660
1661                 } else if (match_available) {
1662                         /* If there was no match at the previous position, output a
1663                          * single literal. If there was a match but the current match
1664                          * is longer, truncate the previous match to a single literal.
1665                          */
1666                         Tracevv((stderr, "%c", window[strstart - 1]));
1667                         if (ct_tally(0, window[strstart - 1])) {
1668                                 FLUSH_BLOCK(0), block_start = strstart;
1669                         }
1670                         strstart++;
1671                         lookahead--;
1672                 } else {
1673                         /* There is no previous match to compare with, wait for
1674                          * the next step to decide.
1675                          */
1676                         match_available = 1;
1677                         strstart++;
1678                         lookahead--;
1679                 }
1680                 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
1681
1682                 /* Make sure that we always have enough lookahead, except
1683                  * at the end of the input file. We need MAX_MATCH bytes
1684                  * for the next match, plus MIN_MATCH bytes to insert the
1685                  * string following the next match.
1686                  */
1687                 while (lookahead < MIN_LOOKAHEAD && !eofile)
1688                         fill_window();
1689         }
1690         if (match_available)
1691                 ct_tally(0, window[strstart - 1]);
1692
1693         return FLUSH_BLOCK(1);          /* eof */
1694 }
1695
1696 /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1697  * Copyright (C) 1992-1993 Jean-loup Gailly
1698  * The unzip code was written and put in the public domain by Mark Adler.
1699  * Portions of the lzw code are derived from the public domain 'compress'
1700  * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1701  * Ken Turkowski, Dave Mack and Peter Jannesen.
1702  *
1703  * See the license_msg below and the file COPYING for the software license.
1704  * See the file algorithm.doc for the compression algorithms and file formats.
1705  */
1706
1707 /* Compress files with zip algorithm and 'compress' interface.
1708  * See usage() and help() functions below for all options.
1709  * Outputs:
1710  *        file.gz:   compressed file with same mode, owner, and utimes
1711  *     or stdout with -c option or if stdin used as input.
1712  * If the output file name had to be truncated, the original name is kept
1713  * in the compressed file.
1714  * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1715  *
1716  * Using gz on MSDOS would create too many file name conflicts. For
1717  * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1718  * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1719  * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1720  * too heavily. There is no ideal solution given the MSDOS 8+3 limitation. 
1721  *
1722  * For the meaning of all compilation flags, see comments in Makefile.in.
1723  */
1724
1725 #include <ctype.h>
1726 #include <sys/types.h>
1727 #include <signal.h>
1728 #include <errno.h>
1729
1730                 /* configuration */
1731
1732 #ifdef NO_TIME_H
1733 #  include <sys/time.h>
1734 #else
1735 #  include <time.h>
1736 #endif
1737
1738 #ifndef NO_FCNTL_H
1739 #  include <fcntl.h>
1740 #endif
1741
1742 #ifdef HAVE_UNISTD_H
1743 #  include <unistd.h>
1744 #endif
1745
1746 #if defined(DIRENT)
1747 #  include <dirent.h>
1748 typedef struct dirent dir_type;
1749
1750 #  define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1751 #  define DIR_OPT "DIRENT"
1752 #else
1753 #  define NLENGTH(dirent) ((dirent)->d_namlen)
1754 #  ifdef SYSDIR
1755 #    include <sys/dir.h>
1756 typedef struct direct dir_type;
1757
1758 #    define DIR_OPT "SYSDIR"
1759 #  else
1760 #    ifdef SYSNDIR
1761 #      include <sys/ndir.h>
1762 typedef struct direct dir_type;
1763
1764 #      define DIR_OPT "SYSNDIR"
1765 #    else
1766 #      ifdef NDIR
1767 #        include <ndir.h>
1768 typedef struct direct dir_type;
1769
1770 #        define DIR_OPT "NDIR"
1771 #      else
1772 #        define NO_DIR
1773 #        define DIR_OPT "NO_DIR"
1774 #      endif
1775 #    endif
1776 #  endif
1777 #endif
1778
1779 #ifndef NO_UTIME
1780 #  ifndef NO_UTIME_H
1781 #    include <utime.h>
1782 #    define TIME_OPT "UTIME"
1783 #  else
1784 #    ifdef HAVE_SYS_UTIME_H
1785 #      include <sys/utime.h>
1786 #      define TIME_OPT "SYS_UTIME"
1787 #    else
1788 struct utimbuf {
1789         time_t actime;
1790         time_t modtime;
1791 };
1792
1793 #      define TIME_OPT ""
1794 #    endif
1795 #  endif
1796 #else
1797 #  define TIME_OPT "NO_UTIME"
1798 #endif
1799
1800 #if !defined(S_ISDIR) && defined(S_IFDIR)
1801 #  define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1802 #endif
1803 #if !defined(S_ISREG) && defined(S_IFREG)
1804 #  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1805 #endif
1806
1807 typedef RETSIGTYPE(*sig_type) (int);
1808
1809 #ifndef O_BINARY
1810 #  define  O_BINARY  0                  /* creation mode for open() */
1811 #endif
1812
1813 #ifndef O_CREAT
1814    /* Pure BSD system? */
1815 #  include <sys/file.h>
1816 #  ifndef O_CREAT
1817 #    define O_CREAT FCREAT
1818 #  endif
1819 #  ifndef O_EXCL
1820 #    define O_EXCL FEXCL
1821 #  endif
1822 #endif
1823
1824 #ifndef S_IRUSR
1825 #  define S_IRUSR 0400
1826 #endif
1827 #ifndef S_IWUSR
1828 #  define S_IWUSR 0200
1829 #endif
1830 #define RW_USER (S_IRUSR | S_IWUSR)     /* creation mode for open() */
1831
1832 #ifndef MAX_PATH_LEN
1833 #  define MAX_PATH_LEN   1024   /* max pathname length */
1834 #endif
1835
1836 #ifndef SEEK_END
1837 #  define SEEK_END 2
1838 #endif
1839
1840 #ifdef NO_OFF_T
1841 typedef long off_t;
1842 off_t lseek (int fd, off_t offset, int whence);
1843 #endif
1844
1845 /* Separator for file name parts (see shorten_name()) */
1846 #ifdef NO_MULTIPLE_DOTS
1847 #  define PART_SEP "-"
1848 #else
1849 #  define PART_SEP "."
1850 #endif
1851
1852                 /* global buffers */
1853
1854 DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1855 DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1856 DECLARE(ush, d_buf, DIST_BUFSIZE);
1857 DECLARE(uch, window, 2L * WSIZE);
1858 #ifndef MAXSEG_64K
1859 DECLARE(ush, tab_prefix, 1L << BITS);
1860 #else
1861 DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
1862 DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
1863 #endif
1864
1865                 /* local variables */
1866
1867 static int foreground;                                  /* set if program run in foreground */
1868 static int method = DEFLATED;   /* compression method */
1869 static int exit_code = OK;              /* program exit code */
1870 static int part_nb;                                     /* number of parts in .gz file */
1871 static long time_stamp;                         /* original time stamp (modification time) */
1872 static long ifile_size;                         /* input file size, -1 for devices (debug only) */
1873 static char z_suffix[MAX_SUFFIX + 1];   /* default suffix (can be set with --suffix) */
1874 static int z_len;                                               /* strlen(z_suffix) */
1875
1876 static long bytes_in;                                   /* number of input bytes */
1877 static long bytes_out;                                  /* number of output bytes */
1878 static char ifname[MAX_PATH_LEN];               /* input file name */
1879 static char ofname[MAX_PATH_LEN];               /* output file name */
1880 static int ifd;                                         /* input file descriptor */
1881 static int ofd;                                         /* output file descriptor */
1882 static unsigned insize;                         /* valid bytes in inbuf */
1883 static unsigned outcnt;                         /* bytes in output buffer */
1884
1885 /* local functions */
1886
1887 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1888
1889 /* ======================================================================== */
1890 // int main (argc, argv)
1891 //    int argc;
1892 //    char **argv;
1893 int gzip_main(int argc, char **argv)
1894 {
1895         int result;
1896         int inFileNum;
1897         int outFileNum;
1898         struct stat statBuf;
1899         char *delFileName;
1900         int tostdout = 0;
1901         int fromstdin = 0;
1902         int force = 0;
1903
1904         /* Parse any options */
1905         while (--argc > 0 && **(++argv) == '-') {
1906                 if (*((*argv) + 1) == '\0') {
1907                         tostdout = 1;
1908                 }
1909                 while (*(++(*argv))) {
1910                         switch (**argv) {
1911                         case 'c':
1912                                 tostdout = 1;
1913                                 break;
1914                         case 'f':
1915                                 force = 1;
1916                                 break;
1917                         /* Ignore 1-9 (compression level) options */
1918                         case '1': case '2': case '3': case '4': case '5':
1919                         case '6': case '7': case '8': case '9':
1920                                 break;
1921                         case 'd':
1922                                 exit(gunzip_main(argc, argv));
1923                         default:
1924                                 show_usage();
1925                         }
1926                 }
1927         }
1928         if (argc <= 0 ) {
1929                 fromstdin = 1;
1930                 tostdout = 1;
1931         }
1932
1933         if (isatty(fileno(stdin)) && fromstdin==1 && force==0)
1934                 error_msg_and_die( "data not read from terminal. Use -f to force it.");
1935         if (isatty(fileno(stdout)) && tostdout==1 && force==0)
1936                 error_msg_and_die( "data not written to terminal. Use -f to force it.");
1937
1938         foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1939         if (foreground) {
1940                 (void) signal(SIGINT, (sig_type) abort_gzip);
1941         }
1942 #ifdef SIGTERM
1943         if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1944                 (void) signal(SIGTERM, (sig_type) abort_gzip);
1945         }
1946 #endif
1947 #ifdef SIGHUP
1948         if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1949                 (void) signal(SIGHUP, (sig_type) abort_gzip);
1950         }
1951 #endif
1952
1953         strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1954         z_len = strlen(z_suffix);
1955
1956         /* Allocate all global buffers (for DYN_ALLOC option) */
1957         ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1958         ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1959         ALLOC(ush, d_buf, DIST_BUFSIZE);
1960         ALLOC(uch, window, 2L * WSIZE);
1961 #ifndef MAXSEG_64K
1962         ALLOC(ush, tab_prefix, 1L << BITS);
1963 #else
1964         ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
1965         ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
1966 #endif
1967
1968         if (fromstdin == 1) {
1969                 strcpy(ofname, "stdin");
1970
1971                 inFileNum = fileno(stdin);
1972                 time_stamp = 0;                 /* time unknown by default */
1973                 ifile_size = -1L;               /* convention for unknown size */
1974         } else {
1975                 /* Open up the input file */
1976                 if (argc <= 0)
1977                         show_usage();
1978                 strncpy(ifname, *argv, MAX_PATH_LEN);
1979
1980                 /* Open input file */
1981                 inFileNum = open(ifname, O_RDONLY);
1982                 if (inFileNum < 0)
1983                         perror_msg_and_die("%s", ifname);
1984                 /* Get the time stamp on the input file. */
1985                 if (stat(ifname, &statBuf) < 0)
1986                         perror_msg_and_die("%s", ifname);
1987                 time_stamp = statBuf.st_ctime;
1988                 ifile_size = statBuf.st_size;
1989         }
1990
1991
1992         if (tostdout == 1) {
1993                 /* And get to work */
1994                 strcpy(ofname, "stdout");
1995                 outFileNum = fileno(stdout);
1996                 SET_BINARY_MODE(fileno(stdout));
1997
1998                 clear_bufs();                   /* clear input and output buffers */
1999                 part_nb = 0;
2000
2001                 /* Actually do the compression/decompression. */
2002                 zip(inFileNum, outFileNum);
2003
2004         } else {
2005
2006                 /* And get to work */
2007                 strncpy(ofname, ifname, MAX_PATH_LEN - 4);
2008                 strcat(ofname, ".gz");
2009
2010
2011                 /* Open output fille */
2012 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
2013                 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
2014 #else
2015                 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
2016 #endif
2017                 if (outFileNum < 0)
2018                         perror_msg_and_die("%s", ofname);
2019                 SET_BINARY_MODE(outFileNum);
2020                 /* Set permissions on the file */
2021                 fchmod(outFileNum, statBuf.st_mode);
2022
2023                 clear_bufs();                   /* clear input and output buffers */
2024                 part_nb = 0;
2025
2026                 /* Actually do the compression/decompression. */
2027                 result = zip(inFileNum, outFileNum);
2028                 close(outFileNum);
2029                 close(inFileNum);
2030                 /* Delete the original file */
2031                 if (result == OK)
2032                         delFileName = ifname;
2033                 else
2034                         delFileName = ofname;
2035
2036                 if (unlink(delFileName) < 0)
2037                         perror_msg_and_die("%s", delFileName);
2038         }
2039
2040         return(exit_code);
2041 }
2042
2043 /* trees.c -- output deflated data using Huffman coding
2044  * Copyright (C) 1992-1993 Jean-loup Gailly
2045  * This is free software; you can redistribute it and/or modify it under the
2046  * terms of the GNU General Public License, see the file COPYING.
2047  */
2048
2049 /*
2050  *  PURPOSE
2051  *
2052  *      Encode various sets of source values using variable-length
2053  *      binary code trees.
2054  *
2055  *  DISCUSSION
2056  *
2057  *      The PKZIP "deflation" process uses several Huffman trees. The more
2058  *      common source values are represented by shorter bit sequences.
2059  *
2060  *      Each code tree is stored in the ZIP file in a compressed form
2061  *      which is itself a Huffman encoding of the lengths of
2062  *      all the code strings (in ascending order by source values).
2063  *      The actual code strings are reconstructed from the lengths in
2064  *      the UNZIP process, as described in the "application note"
2065  *      (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
2066  *
2067  *  REFERENCES
2068  *
2069  *      Lynch, Thomas J.
2070  *          Data Compression:  Techniques and Applications, pp. 53-55.
2071  *          Lifetime Learning Publications, 1985.  ISBN 0-534-03418-7.
2072  *
2073  *      Storer, James A.
2074  *          Data Compression:  Methods and Theory, pp. 49-50.
2075  *          Computer Science Press, 1988.  ISBN 0-7167-8156-5.
2076  *
2077  *      Sedgewick, R.
2078  *          Algorithms, p290.
2079  *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
2080  *
2081  *  INTERFACE
2082  *
2083  *      void ct_init (ush *attr, int *methodp)
2084  *          Allocate the match buffer, initialize the various tables and save
2085  *          the location of the internal file attribute (ascii/binary) and
2086  *          method (DEFLATE/STORE)
2087  *
2088  *      void ct_tally (int dist, int lc);
2089  *          Save the match info and tally the frequency counts.
2090  *
2091  *      long flush_block (char *buf, ulg stored_len, int eof)
2092  *          Determine the best encoding for the current block: dynamic trees,
2093  *          static trees or store, and output the encoded block to the zip
2094  *          file. Returns the total compressed length for the file so far.
2095  *
2096  */
2097
2098 #include <ctype.h>
2099
2100 /* ===========================================================================
2101  * Constants
2102  */
2103
2104 #define MAX_BITS 15
2105 /* All codes must not exceed MAX_BITS bits */
2106
2107 #define MAX_BL_BITS 7
2108 /* Bit length codes must not exceed MAX_BL_BITS bits */
2109
2110 #define LENGTH_CODES 29
2111 /* number of length codes, not counting the special END_BLOCK code */
2112
2113 #define LITERALS  256
2114 /* number of literal bytes 0..255 */
2115
2116 #define END_BLOCK 256
2117 /* end of block literal code */
2118
2119 #define L_CODES (LITERALS+1+LENGTH_CODES)
2120 /* number of Literal or Length codes, including the END_BLOCK code */
2121
2122 #define D_CODES   30
2123 /* number of distance codes */
2124
2125 #define BL_CODES  19
2126 /* number of codes used to transfer the bit lengths */
2127
2128
2129 local int near extra_lbits[LENGTH_CODES]        /* extra bits for each length code */
2130         = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
2131                 4, 4, 5, 5, 5, 5, 0 };
2132
2133 local int near extra_dbits[D_CODES]     /* extra bits for each distance code */
2134         = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
2135                 10, 10, 11, 11, 12, 12, 13, 13 };
2136
2137 local int near extra_blbits[BL_CODES]   /* extra bits for each bit length code */
2138 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7 };
2139
2140 #define STORED_BLOCK 0
2141 #define STATIC_TREES 1
2142 #define DYN_TREES    2
2143 /* The three kinds of block type */
2144
2145 #ifndef LIT_BUFSIZE
2146 #  ifdef SMALL_MEM
2147 #    define LIT_BUFSIZE  0x2000
2148 #  else
2149 #  ifdef MEDIUM_MEM
2150 #    define LIT_BUFSIZE  0x4000
2151 #  else
2152 #    define LIT_BUFSIZE  0x8000
2153 #  endif
2154 #  endif
2155 #endif
2156 #ifndef DIST_BUFSIZE
2157 #  define DIST_BUFSIZE  LIT_BUFSIZE
2158 #endif
2159 /* Sizes of match buffers for literals/lengths and distances.  There are
2160  * 4 reasons for limiting LIT_BUFSIZE to 64K:
2161  *   - frequencies can be kept in 16 bit counters
2162  *   - if compression is not successful for the first block, all input data is
2163  *     still in the window so we can still emit a stored block even when input
2164  *     comes from standard input.  (This can also be done for all blocks if
2165  *     LIT_BUFSIZE is not greater than 32K.)
2166  *   - if compression is not successful for a file smaller than 64K, we can
2167  *     even emit a stored file instead of a stored block (saving 5 bytes).
2168  *   - creating new Huffman trees less frequently may not provide fast
2169  *     adaptation to changes in the input data statistics. (Take for
2170  *     example a binary file with poorly compressible code followed by
2171  *     a highly compressible string table.) Smaller buffer sizes give
2172  *     fast adaptation but have of course the overhead of transmitting trees
2173  *     more frequently.
2174  *   - I can't count above 4
2175  * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2176  * memory at the expense of compression). Some optimizations would be possible
2177  * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2178  */
2179 #if LIT_BUFSIZE > INBUFSIZ
2180 error cannot overlay l_buf and inbuf
2181 #endif
2182 #define REP_3_6      16
2183 /* repeat previous bit length 3-6 times (2 bits of repeat count) */
2184 #define REPZ_3_10    17
2185 /* repeat a zero length 3-10 times  (3 bits of repeat count) */
2186 #define REPZ_11_138  18
2187 /* repeat a zero length 11-138 times  (7 bits of repeat count) *//* ===========================================================================
2188  * Local data
2189  *//* Data structure describing a single value and its code string. */ typedef struct ct_data {
2190         union {
2191                 ush freq;                               /* frequency count */
2192                 ush code;                               /* bit string */
2193         } fc;
2194         union {
2195                 ush dad;                                /* father node in Huffman tree */
2196                 ush len;                                /* length of bit string */
2197         } dl;
2198 } ct_data;
2199
2200 #define Freq fc.freq
2201 #define Code fc.code
2202 #define Dad  dl.dad
2203 #define Len  dl.len
2204
2205 #define HEAP_SIZE (2*L_CODES+1)
2206 /* maximum heap size */
2207
2208 local ct_data near dyn_ltree[HEAP_SIZE];        /* literal and length tree */
2209 local ct_data near dyn_dtree[2 * D_CODES + 1];  /* distance tree */
2210
2211 local ct_data near static_ltree[L_CODES + 2];
2212
2213 /* The static literal tree. Since the bit lengths are imposed, there is no
2214  * need for the L_CODES extra codes used during heap construction. However
2215  * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2216  * below).
2217  */
2218
2219 local ct_data near static_dtree[D_CODES];
2220
2221 /* The static distance tree. (Actually a trivial tree since all codes use
2222  * 5 bits.)
2223  */
2224
2225 local ct_data near bl_tree[2 * BL_CODES + 1];
2226
2227 /* Huffman tree for the bit lengths */
2228
2229 typedef struct tree_desc {
2230         ct_data near *dyn_tree;         /* the dynamic tree */
2231         ct_data near *static_tree;      /* corresponding static tree or NULL */
2232         int near *extra_bits;           /* extra bits for each code or NULL */
2233         int extra_base;                         /* base index for extra_bits */
2234         int elems;                                      /* max number of elements in the tree */
2235         int max_length;                         /* max bit length for the codes */
2236         int max_code;                           /* largest code with non zero frequency */
2237 } tree_desc;
2238
2239 local tree_desc near l_desc =
2240         { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
2241                 MAX_BITS, 0 };
2242
2243 local tree_desc near d_desc =
2244         { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
2245
2246 local tree_desc near bl_desc =
2247         { bl_tree, (ct_data near *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
2248                 0 };
2249
2250
2251 local ush near bl_count[MAX_BITS + 1];
2252
2253 /* number of codes at each bit length for an optimal tree */
2254
2255 local uch near bl_order[BL_CODES]
2256 = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
2257
2258 /* The lengths of the bit length codes are sent in order of decreasing
2259  * probability, to avoid transmitting the lengths for unused bit length codes.
2260  */
2261
2262 local int near heap[2 * L_CODES + 1];   /* heap used to build the Huffman trees */
2263 local int heap_len;                             /* number of elements in the heap */
2264 local int heap_max;                             /* element of largest frequency */
2265
2266 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2267  * The same heap array is used to build all trees.
2268  */
2269
2270 local uch near depth[2 * L_CODES + 1];
2271
2272 /* Depth of each subtree used as tie breaker for trees of equal frequency */
2273
2274 local uch length_code[MAX_MATCH - MIN_MATCH + 1];
2275
2276 /* length code for each normalized match length (0 == MIN_MATCH) */
2277
2278 local uch dist_code[512];
2279
2280 /* distance codes. The first 256 values correspond to the distances
2281  * 3 .. 258, the last 256 values correspond to the top 8 bits of
2282  * the 15 bit distances.
2283  */
2284
2285 local int near base_length[LENGTH_CODES];
2286
2287 /* First normalized length for each code (0 = MIN_MATCH) */
2288
2289 local int near base_dist[D_CODES];
2290
2291 /* First normalized distance for each code (0 = distance of 1) */
2292
2293 #define l_buf inbuf
2294 /* DECLARE(uch, l_buf, LIT_BUFSIZE);  buffer for literals or lengths */
2295
2296 /* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2297
2298 local uch near flag_buf[(LIT_BUFSIZE / 8)];
2299
2300 /* flag_buf is a bit array distinguishing literals from lengths in
2301  * l_buf, thus indicating the presence or absence of a distance.
2302  */
2303
2304 local unsigned last_lit;                /* running index in l_buf */
2305 local unsigned last_dist;               /* running index in d_buf */
2306 local unsigned last_flags;              /* running index in flag_buf */
2307 local uch flags;                                /* current flags not yet saved in flag_buf */
2308 local uch flag_bit;                             /* current bit used in flags */
2309
2310 /* bits are filled in flags starting at bit 0 (least significant).
2311  * Note: these flags are overkill in the current code since we don't
2312  * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2313  */
2314
2315 local ulg opt_len;                              /* bit length of current block with optimal trees */
2316 local ulg static_len;                   /* bit length of current block with static trees */
2317
2318 local ulg compressed_len;               /* total bit length of compressed file */
2319
2320 local ulg input_len;                    /* total byte length of input file */
2321
2322 /* input_len is for debugging only since we can get it by other means. */
2323
2324 ush *file_type;                                 /* pointer to UNKNOWN, BINARY or ASCII */
2325 int *file_method;                               /* pointer to DEFLATE or STORE */
2326
2327 #ifdef DEBUG
2328 extern ulg bits_sent;                   /* bit length of the compressed data */
2329 extern long isize;                              /* byte length of input file */
2330 #endif
2331
2332 extern long block_start;                /* window offset of current block */
2333 extern unsigned near strstart;  /* window offset of current string */
2334
2335 /* ===========================================================================
2336  * Local (static) routines in this file.
2337  */
2338
2339 local void init_block (void);
2340 local void pqdownheap (ct_data near * tree, int k);
2341 local void gen_bitlen (tree_desc near * desc);
2342 local void gen_codes (ct_data near * tree, int max_code);
2343 local void build_tree (tree_desc near * desc);
2344 local void scan_tree (ct_data near * tree, int max_code);
2345 local void send_tree (ct_data near * tree, int max_code);
2346 local int build_bl_tree (void);
2347 local void send_all_trees (int lcodes, int dcodes, int blcodes);
2348 local void compress_block (ct_data near * ltree, ct_data near * dtree);
2349 local void set_file_type (void);
2350
2351
2352 #ifndef DEBUG
2353 #  define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2354    /* Send a code of the given tree. c and tree must not have side effects */
2355
2356 #else                                                   /* DEBUG */
2357 #  define send_code(c, tree) \
2358      { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2359        send_bits(tree[c].Code, tree[c].Len); }
2360 #endif
2361
2362 #define d_code(dist) \
2363    ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2364 /* Mapping from a distance to a distance code. dist is the distance - 1 and
2365  * must not have side effects. dist_code[256] and dist_code[257] are never
2366  * used.
2367  */
2368
2369 /* the arguments must not have side effects */
2370
2371 /* ===========================================================================
2372  * Allocate the match buffer, initialize the various tables and save the
2373  * location of the internal file attribute (ascii/binary) and method
2374  * (DEFLATE/STORE).
2375  */
2376 void ct_init(attr, methodp)
2377 ush *attr;                                              /* pointer to internal file attribute */
2378 int *methodp;                                   /* pointer to compression method */
2379 {
2380         int n;                                          /* iterates over tree elements */
2381         int bits;                                       /* bit counter */
2382         int length;                                     /* length value */
2383         int code;                                       /* code value */
2384         int dist;                                       /* distance index */
2385
2386         file_type = attr;
2387         file_method = methodp;
2388         compressed_len = input_len = 0L;
2389
2390         if (static_dtree[0].Len != 0)
2391                 return;                                 /* ct_init already called */
2392
2393         /* Initialize the mapping length (0..255) -> length code (0..28) */
2394         length = 0;
2395         for (code = 0; code < LENGTH_CODES - 1; code++) {
2396                 base_length[code] = length;
2397                 for (n = 0; n < (1 << extra_lbits[code]); n++) {
2398                         length_code[length++] = (uch) code;
2399                 }
2400         }
2401         Assert(length == 256, "ct_init: length != 256");
2402         /* Note that the length 255 (match length 258) can be represented
2403          * in two different ways: code 284 + 5 bits or code 285, so we
2404          * overwrite length_code[255] to use the best encoding:
2405          */
2406         length_code[length - 1] = (uch) code;
2407
2408         /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2409         dist = 0;
2410         for (code = 0; code < 16; code++) {
2411                 base_dist[code] = dist;
2412                 for (n = 0; n < (1 << extra_dbits[code]); n++) {
2413                         dist_code[dist++] = (uch) code;
2414                 }
2415         }
2416         Assert(dist == 256, "ct_init: dist != 256");
2417         dist >>= 7;                                     /* from now on, all distances are divided by 128 */
2418         for (; code < D_CODES; code++) {
2419                 base_dist[code] = dist << 7;
2420                 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
2421                         dist_code[256 + dist++] = (uch) code;
2422                 }
2423         }
2424         Assert(dist == 256, "ct_init: 256+dist != 512");
2425
2426         /* Construct the codes of the static literal tree */
2427         for (bits = 0; bits <= MAX_BITS; bits++)
2428                 bl_count[bits] = 0;
2429         n = 0;
2430         while (n <= 143)
2431                 static_ltree[n++].Len = 8, bl_count[8]++;
2432         while (n <= 255)
2433                 static_ltree[n++].Len = 9, bl_count[9]++;
2434         while (n <= 279)
2435                 static_ltree[n++].Len = 7, bl_count[7]++;
2436         while (n <= 287)
2437                 static_ltree[n++].Len = 8, bl_count[8]++;
2438         /* Codes 286 and 287 do not exist, but we must include them in the
2439          * tree construction to get a canonical Huffman tree (longest code
2440          * all ones)
2441          */
2442         gen_codes((ct_data near *) static_ltree, L_CODES + 1);
2443
2444         /* The static distance tree is trivial: */
2445         for (n = 0; n < D_CODES; n++) {
2446                 static_dtree[n].Len = 5;
2447                 static_dtree[n].Code = bi_reverse(n, 5);
2448         }
2449
2450         /* Initialize the first block of the first file: */
2451         init_block();
2452 }
2453
2454 /* ===========================================================================
2455  * Initialize a new block.
2456  */
2457 local void init_block()
2458 {
2459         int n;                                          /* iterates over tree elements */
2460
2461         /* Initialize the trees. */
2462         for (n = 0; n < L_CODES; n++)
2463                 dyn_ltree[n].Freq = 0;
2464         for (n = 0; n < D_CODES; n++)
2465                 dyn_dtree[n].Freq = 0;
2466         for (n = 0; n < BL_CODES; n++)
2467                 bl_tree[n].Freq = 0;
2468
2469         dyn_ltree[END_BLOCK].Freq = 1;
2470         opt_len = static_len = 0L;
2471         last_lit = last_dist = last_flags = 0;
2472         flags = 0;
2473         flag_bit = 1;
2474 }
2475
2476 #define SMALLEST 1
2477 /* Index within the heap array of least frequent node in the Huffman tree */
2478
2479
2480 /* ===========================================================================
2481  * Remove the smallest element from the heap and recreate the heap with
2482  * one less element. Updates heap and heap_len.
2483  */
2484 #define pqremove(tree, top) \
2485 {\
2486     top = heap[SMALLEST]; \
2487     heap[SMALLEST] = heap[heap_len--]; \
2488     pqdownheap(tree, SMALLEST); \
2489 }
2490
2491 /* ===========================================================================
2492  * Compares to subtrees, using the tree depth as tie breaker when
2493  * the subtrees have equal frequency. This minimizes the worst case length.
2494  */
2495 #define smaller(tree, n, m) \
2496    (tree[n].Freq < tree[m].Freq || \
2497    (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2498
2499 /* ===========================================================================
2500  * Restore the heap property by moving down the tree starting at node k,
2501  * exchanging a node with the smallest of its two sons if necessary, stopping
2502  * when the heap property is re-established (each father smaller than its
2503  * two sons).
2504  */
2505 local void pqdownheap(tree, k)
2506 ct_data near *tree;                             /* the tree to restore */
2507 int k;                                                  /* node to move down */
2508 {
2509         int v = heap[k];
2510         int j = k << 1;                         /* left son of k */
2511
2512         while (j <= heap_len) {
2513                 /* Set j to the smallest of the two sons: */
2514                 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
2515                         j++;
2516
2517                 /* Exit if v is smaller than both sons */
2518                 if (smaller(tree, v, heap[j]))
2519                         break;
2520
2521                 /* Exchange v with the smallest son */
2522                 heap[k] = heap[j];
2523                 k = j;
2524
2525                 /* And continue down the tree, setting j to the left son of k */
2526                 j <<= 1;
2527         }
2528         heap[k] = v;
2529 }
2530
2531 /* ===========================================================================
2532  * Compute the optimal bit lengths for a tree and update the total bit length
2533  * for the current block.
2534  * IN assertion: the fields freq and dad are set, heap[heap_max] and
2535  *    above are the tree nodes sorted by increasing frequency.
2536  * OUT assertions: the field len is set to the optimal bit length, the
2537  *     array bl_count contains the frequencies for each bit length.
2538  *     The length opt_len is updated; static_len is also updated if stree is
2539  *     not null.
2540  */
2541 local void gen_bitlen(desc)
2542 tree_desc near *desc;                   /* the tree descriptor */
2543 {
2544         ct_data near *tree = desc->dyn_tree;
2545         int near *extra = desc->extra_bits;
2546         int base = desc->extra_base;
2547         int max_code = desc->max_code;
2548         int max_length = desc->max_length;
2549         ct_data near *stree = desc->static_tree;
2550         int h;                                          /* heap index */
2551         int n, m;                                       /* iterate over the tree elements */
2552         int bits;                                       /* bit length */
2553         int xbits;                                      /* extra bits */
2554         ush f;                                          /* frequency */
2555         int overflow = 0;                       /* number of elements with bit length too large */
2556
2557         for (bits = 0; bits <= MAX_BITS; bits++)
2558                 bl_count[bits] = 0;
2559
2560         /* In a first pass, compute the optimal bit lengths (which may
2561          * overflow in the case of the bit length tree).
2562          */
2563         tree[heap[heap_max]].Len = 0;   /* root of the heap */
2564
2565         for (h = heap_max + 1; h < HEAP_SIZE; h++) {
2566                 n = heap[h];
2567                 bits = tree[tree[n].Dad].Len + 1;
2568                 if (bits > max_length)
2569                         bits = max_length, overflow++;
2570                 tree[n].Len = (ush) bits;
2571                 /* We overwrite tree[n].Dad which is no longer needed */
2572
2573                 if (n > max_code)
2574                         continue;                       /* not a leaf node */
2575
2576                 bl_count[bits]++;
2577                 xbits = 0;
2578                 if (n >= base)
2579                         xbits = extra[n - base];
2580                 f = tree[n].Freq;
2581                 opt_len += (ulg) f *(bits + xbits);
2582
2583                 if (stree)
2584                         static_len += (ulg) f *(stree[n].Len + xbits);
2585         }
2586         if (overflow == 0)
2587                 return;
2588
2589         Trace((stderr, "\nbit length overflow\n"));
2590         /* This happens for example on obj2 and pic of the Calgary corpus */
2591
2592         /* Find the first bit length which could increase: */
2593         do {
2594                 bits = max_length - 1;
2595                 while (bl_count[bits] == 0)
2596                         bits--;
2597                 bl_count[bits]--;               /* move one leaf down the tree */
2598                 bl_count[bits + 1] += 2;        /* move one overflow item as its brother */
2599                 bl_count[max_length]--;
2600                 /* The brother of the overflow item also moves one step up,
2601                  * but this does not affect bl_count[max_length]
2602                  */
2603                 overflow -= 2;
2604         } while (overflow > 0);
2605
2606         /* Now recompute all bit lengths, scanning in increasing frequency.
2607          * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2608          * lengths instead of fixing only the wrong ones. This idea is taken
2609          * from 'ar' written by Haruhiko Okumura.)
2610          */
2611         for (bits = max_length; bits != 0; bits--) {
2612                 n = bl_count[bits];
2613                 while (n != 0) {
2614                         m = heap[--h];
2615                         if (m > max_code)
2616                                 continue;
2617                         if (tree[m].Len != (unsigned) bits) {
2618                                 Trace(
2619                                           (stderr, "code %d bits %d->%d\n", m, tree[m].Len,
2620                                            bits));
2621                                 opt_len +=
2622                                         ((long) bits -
2623                                          (long) tree[m].Len) * (long) tree[m].Freq;
2624                                 tree[m].Len = (ush) bits;
2625                         }
2626                         n--;
2627                 }
2628         }
2629 }
2630
2631 /* ===========================================================================
2632  * Generate the codes for a given tree and bit counts (which need not be
2633  * optimal).
2634  * IN assertion: the array bl_count contains the bit length statistics for
2635  * the given tree and the field len is set for all tree elements.
2636  * OUT assertion: the field code is set for all tree elements of non
2637  *     zero code length.
2638  */
2639 local void gen_codes(tree, max_code)
2640 ct_data near *tree;                             /* the tree to decorate */
2641 int max_code;                                   /* largest code with non zero frequency */
2642 {
2643         ush next_code[MAX_BITS + 1];    /* next code value for each bit length */
2644         ush code = 0;                           /* running code value */
2645         int bits;                                       /* bit index */
2646         int n;                                          /* code index */
2647
2648         /* The distribution counts are first used to generate the code values
2649          * without bit reversal.
2650          */
2651         for (bits = 1; bits <= MAX_BITS; bits++) {
2652                 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
2653         }
2654         /* Check that the bit counts in bl_count are consistent. The last code
2655          * must be all ones.
2656          */
2657         Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
2658                    "inconsistent bit counts");
2659         Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
2660
2661         for (n = 0; n <= max_code; n++) {
2662                 int len = tree[n].Len;
2663
2664                 if (len == 0)
2665                         continue;
2666                 /* Now reverse the bits */
2667                 tree[n].Code = bi_reverse(next_code[len]++, len);
2668
2669                 Tracec(tree != static_ltree,
2670                            (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
2671                                 (isgraph(n) ? n : ' '), len, tree[n].Code,
2672                                 next_code[len] - 1));
2673         }
2674 }
2675
2676 /* ===========================================================================
2677  * Construct one Huffman tree and assigns the code bit strings and lengths.
2678  * Update the total bit length for the current block.
2679  * IN assertion: the field freq is set for all tree elements.
2680  * OUT assertions: the fields len and code are set to the optimal bit length
2681  *     and corresponding code. The length opt_len is updated; static_len is
2682  *     also updated if stree is not null. The field max_code is set.
2683  */
2684 local void build_tree(desc)
2685 tree_desc near *desc;                   /* the tree descriptor */
2686 {
2687         ct_data near *tree = desc->dyn_tree;
2688         ct_data near *stree = desc->static_tree;
2689         int elems = desc->elems;
2690         int n, m;                                       /* iterate over heap elements */
2691         int max_code = -1;                      /* largest code with non zero frequency */
2692         int node = elems;                       /* next internal node of the tree */
2693
2694         /* Construct the initial heap, with least frequent element in
2695          * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2696          * heap[0] is not used.
2697          */
2698         heap_len = 0, heap_max = HEAP_SIZE;
2699
2700         for (n = 0; n < elems; n++) {
2701                 if (tree[n].Freq != 0) {
2702                         heap[++heap_len] = max_code = n;
2703                         depth[n] = 0;
2704                 } else {
2705                         tree[n].Len = 0;
2706                 }
2707         }
2708
2709         /* The pkzip format requires that at least one distance code exists,
2710          * and that at least one bit should be sent even if there is only one
2711          * possible code. So to avoid special checks later on we force at least
2712          * two codes of non zero frequency.
2713          */
2714         while (heap_len < 2) {
2715                 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
2716
2717                 tree[new].Freq = 1;
2718                 depth[new] = 0;
2719                 opt_len--;
2720                 if (stree)
2721                         static_len -= stree[new].Len;
2722                 /* new is 0 or 1 so it does not have extra bits */
2723         }
2724         desc->max_code = max_code;
2725
2726         /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2727          * establish sub-heaps of increasing lengths:
2728          */
2729         for (n = heap_len / 2; n >= 1; n--)
2730                 pqdownheap(tree, n);
2731
2732         /* Construct the Huffman tree by repeatedly combining the least two
2733          * frequent nodes.
2734          */
2735         do {
2736                 pqremove(tree, n);              /* n = node of least frequency */
2737                 m = heap[SMALLEST];             /* m = node of next least frequency */
2738
2739                 heap[--heap_max] = n;   /* keep the nodes sorted by frequency */
2740                 heap[--heap_max] = m;
2741
2742                 /* Create a new node father of n and m */
2743                 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2744                 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2745                 tree[n].Dad = tree[m].Dad = (ush) node;
2746 #ifdef DUMP_BL_TREE
2747                 if (tree == bl_tree) {
2748                         fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
2749                                         node, tree[node].Freq, n, tree[n].Freq, m,
2750                                         tree[m].Freq);
2751                 }
2752 #endif
2753                 /* and insert the new node in the heap */
2754                 heap[SMALLEST] = node++;
2755                 pqdownheap(tree, SMALLEST);
2756
2757         } while (heap_len >= 2);
2758
2759         heap[--heap_max] = heap[SMALLEST];
2760
2761         /* At this point, the fields freq and dad are set. We can now
2762          * generate the bit lengths.
2763          */
2764         gen_bitlen((tree_desc near *) desc);
2765
2766         /* The field len is now set, we can generate the bit codes */
2767         gen_codes((ct_data near *) tree, max_code);
2768 }
2769
2770 /* ===========================================================================
2771  * Scan a literal or distance tree to determine the frequencies of the codes
2772  * in the bit length tree. Updates opt_len to take into account the repeat
2773  * counts. (The contribution of the bit length codes will be added later
2774  * during the construction of bl_tree.)
2775  */
2776 local void scan_tree(tree, max_code)
2777 ct_data near *tree;                             /* the tree to be scanned */
2778 int max_code;                                   /* and its largest code of non zero frequency */
2779 {
2780         int n;                                          /* iterates over all tree elements */
2781         int prevlen = -1;                       /* last emitted length */
2782         int curlen;                                     /* length of current code */
2783         int nextlen = tree[0].Len;      /* length of next code */
2784         int count = 0;                          /* repeat count of the current code */
2785         int max_count = 7;                      /* max repeat count */
2786         int min_count = 4;                      /* min repeat count */
2787
2788         if (nextlen == 0)
2789                 max_count = 138, min_count = 3;
2790         tree[max_code + 1].Len = (ush) 0xffff;  /* guard */
2791
2792         for (n = 0; n <= max_code; n++) {
2793                 curlen = nextlen;
2794                 nextlen = tree[n + 1].Len;
2795                 if (++count < max_count && curlen == nextlen) {
2796                         continue;
2797                 } else if (count < min_count) {
2798                         bl_tree[curlen].Freq += count;
2799                 } else if (curlen != 0) {
2800                         if (curlen != prevlen)
2801                                 bl_tree[curlen].Freq++;
2802                         bl_tree[REP_3_6].Freq++;
2803                 } else if (count <= 10) {
2804                         bl_tree[REPZ_3_10].Freq++;
2805                 } else {
2806                         bl_tree[REPZ_11_138].Freq++;
2807                 }
2808                 count = 0;
2809                 prevlen = curlen;
2810                 if (nextlen == 0) {
2811                         max_count = 138, min_count = 3;
2812                 } else if (curlen == nextlen) {
2813                         max_count = 6, min_count = 3;
2814                 } else {
2815                         max_count = 7, min_count = 4;
2816                 }
2817         }
2818 }
2819
2820 /* ===========================================================================
2821  * Send a literal or distance tree in compressed form, using the codes in
2822  * bl_tree.
2823  */
2824 local void send_tree(tree, max_code)
2825 ct_data near *tree;                             /* the tree to be scanned */
2826 int max_code;                                   /* and its largest code of non zero frequency */
2827 {
2828         int n;                                          /* iterates over all tree elements */
2829         int prevlen = -1;                       /* last emitted length */
2830         int curlen;                                     /* length of current code */
2831         int nextlen = tree[0].Len;      /* length of next code */
2832         int count = 0;                          /* repeat count of the current code */
2833         int max_count = 7;                      /* max repeat count */
2834         int min_count = 4;                      /* min repeat count */
2835
2836 /* tree[max_code+1].Len = -1; *//* guard already set */
2837         if (nextlen == 0)
2838                 max_count = 138, min_count = 3;
2839
2840         for (n = 0; n <= max_code; n++) {
2841                 curlen = nextlen;
2842                 nextlen = tree[n + 1].Len;
2843                 if (++count < max_count && curlen == nextlen) {
2844                         continue;
2845                 } else if (count < min_count) {
2846                         do {
2847                                 send_code(curlen, bl_tree);
2848                         } while (--count != 0);
2849
2850                 } else if (curlen != 0) {
2851                         if (curlen != prevlen) {
2852                                 send_code(curlen, bl_tree);
2853                                 count--;
2854                         }
2855                         Assert(count >= 3 && count <= 6, " 3_6?");
2856                         send_code(REP_3_6, bl_tree);
2857                         send_bits(count - 3, 2);
2858
2859                 } else if (count <= 10) {
2860                         send_code(REPZ_3_10, bl_tree);
2861                         send_bits(count - 3, 3);
2862
2863                 } else {
2864                         send_code(REPZ_11_138, bl_tree);
2865                         send_bits(count - 11, 7);
2866                 }
2867                 count = 0;
2868                 prevlen = curlen;
2869                 if (nextlen == 0) {
2870                         max_count = 138, min_count = 3;
2871                 } else if (curlen == nextlen) {
2872                         max_count = 6, min_count = 3;
2873                 } else {
2874                         max_count = 7, min_count = 4;
2875                 }
2876         }
2877 }
2878
2879 /* ===========================================================================
2880  * Construct the Huffman tree for the bit lengths and return the index in
2881  * bl_order of the last bit length code to send.
2882  */
2883 local int build_bl_tree()
2884 {
2885         int max_blindex;                        /* index of last bit length code of non zero freq */
2886
2887         /* Determine the bit length frequencies for literal and distance trees */
2888         scan_tree((ct_data near *) dyn_ltree, l_desc.max_code);
2889         scan_tree((ct_data near *) dyn_dtree, d_desc.max_code);
2890
2891         /* Build the bit length tree: */
2892         build_tree((tree_desc near *) (&bl_desc));
2893         /* opt_len now includes the length of the tree representations, except
2894          * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2895          */
2896
2897         /* Determine the number of bit length codes to send. The pkzip format
2898          * requires that at least 4 bit length codes be sent. (appnote.txt says
2899          * 3 but the actual value used is 4.)
2900          */
2901         for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2902                 if (bl_tree[bl_order[max_blindex]].Len != 0)
2903                         break;
2904         }
2905         /* Update opt_len to include the bit length tree and counts */
2906         opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
2907         Tracev(
2908                    (stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len,
2909                         static_len));
2910
2911         return max_blindex;
2912 }
2913
2914 /* ===========================================================================
2915  * Send the header for a block using dynamic Huffman trees: the counts, the
2916  * lengths of the bit length codes, the literal tree and the distance tree.
2917  * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2918  */
2919 local void send_all_trees(lcodes, dcodes, blcodes)
2920 int lcodes, dcodes, blcodes;    /* number of codes for each tree */
2921 {
2922         int rank;                                       /* index in bl_order */
2923
2924         Assert(lcodes >= 257 && dcodes >= 1
2925                    && blcodes >= 4, "not enough codes");
2926         Assert(lcodes <= L_CODES && dcodes <= D_CODES
2927                    && blcodes <= BL_CODES, "too many codes");
2928         Tracev((stderr, "\nbl counts: "));
2929         send_bits(lcodes - 257, 5);     /* not +255 as stated in appnote.txt */
2930         send_bits(dcodes - 1, 5);
2931         send_bits(blcodes - 4, 4);      /* not -3 as stated in appnote.txt */
2932         for (rank = 0; rank < blcodes; rank++) {
2933                 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2934                 send_bits(bl_tree[bl_order[rank]].Len, 3);
2935         }
2936         Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
2937
2938         send_tree((ct_data near *) dyn_ltree, lcodes - 1);      /* send the literal tree */
2939         Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
2940
2941         send_tree((ct_data near *) dyn_dtree, dcodes - 1);      /* send the distance tree */
2942         Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
2943 }
2944
2945 /* ===========================================================================
2946  * Determine the best encoding for the current block: dynamic trees, static
2947  * trees or store, and output the encoded block to the zip file. This function
2948  * returns the total compressed length for the file so far.
2949  */
2950 ulg flush_block(buf, stored_len, eof)
2951 char *buf;                                              /* input block, or NULL if too old */
2952 ulg stored_len;                                 /* length of input block */
2953 int eof;                                                /* true if this is the last block for a file */
2954 {
2955         ulg opt_lenb, static_lenb;      /* opt_len and static_len in bytes */
2956         int max_blindex;                        /* index of last bit length code of non zero freq */
2957
2958         flag_buf[last_flags] = flags;   /* Save the flags for the last 8 items */
2959
2960         /* Check if the file is ascii or binary */
2961         if (*file_type == (ush) UNKNOWN)
2962                 set_file_type();
2963
2964         /* Construct the literal and distance trees */
2965         build_tree((tree_desc near *) (&l_desc));
2966         Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
2967
2968         build_tree((tree_desc near *) (&d_desc));
2969         Tracev(
2970                    (stderr, "\ndist data: dyn %ld, stat %ld", opt_len,
2971                         static_len));
2972         /* At this point, opt_len and static_len are the total bit lengths of
2973          * the compressed block data, excluding the tree representations.
2974          */
2975
2976         /* Build the bit length tree for the above two trees, and get the index
2977          * in bl_order of the last bit length code to send.
2978          */
2979         max_blindex = build_bl_tree();
2980
2981         /* Determine the best encoding. Compute first the block length in bytes */
2982         opt_lenb = (opt_len + 3 + 7) >> 3;
2983         static_lenb = (static_len + 3 + 7) >> 3;
2984         input_len += stored_len;        /* for debugging only */
2985
2986         Trace(
2987                   (stderr,
2988                    "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2989                    opt_lenb, opt_len, static_lenb, static_len, stored_len,
2990                    last_lit, last_dist));
2991
2992         if (static_lenb <= opt_lenb)
2993                 opt_lenb = static_lenb;
2994
2995         /* If compression failed and this is the first and last block,
2996          * and if the zip file can be seeked (to rewrite the local header),
2997          * the whole file is transformed into a stored file:
2998          */
2999 #ifdef FORCE_METHOD
3000 #else
3001         if (stored_len <= opt_lenb && eof && compressed_len == 0L
3002                 && seekable()) {
3003 #endif
3004                 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
3005                 if (buf == (char *) 0)
3006                         error_msg("block vanished");
3007
3008                 copy_block(buf, (unsigned) stored_len, 0);      /* without header */
3009                 compressed_len = stored_len << 3;
3010                 *file_method = STORED;
3011
3012 #ifdef FORCE_METHOD
3013 #else
3014         } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
3015                 /* 4: two words for the lengths */
3016 #endif
3017                 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
3018                  * Otherwise we can't have processed more than WSIZE input bytes since
3019                  * the last block flush, because compression would have been
3020                  * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
3021                  * transform a block into a stored block.
3022                  */
3023                 send_bits((STORED_BLOCK << 1) + eof, 3);        /* send block type */
3024                 compressed_len = (compressed_len + 3 + 7) & ~7L;
3025                 compressed_len += (stored_len + 4) << 3;
3026
3027                 copy_block(buf, (unsigned) stored_len, 1);      /* with header */
3028
3029 #ifdef FORCE_METHOD
3030 #else
3031         } else if (static_lenb == opt_lenb) {
3032 #endif
3033                 send_bits((STATIC_TREES << 1) + eof, 3);
3034                 compress_block((ct_data near *) static_ltree,
3035                                            (ct_data near *) static_dtree);
3036                 compressed_len += 3 + static_len;
3037         } else {
3038                 send_bits((DYN_TREES << 1) + eof, 3);
3039                 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
3040                                            max_blindex + 1);
3041                 compress_block((ct_data near *) dyn_ltree,
3042                                            (ct_data near *) dyn_dtree);
3043                 compressed_len += 3 + opt_len;
3044         }
3045         Assert(compressed_len == bits_sent, "bad compressed size");
3046         init_block();
3047
3048         if (eof) {
3049                 Assert(input_len == isize, "bad input size");
3050                 bi_windup();
3051                 compressed_len += 7;    /* align on byte boundary */
3052         }
3053         Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
3054                         compressed_len - 7 * eof));
3055
3056         return compressed_len >> 3;
3057 }
3058
3059 /* ===========================================================================
3060  * Save the match info and tally the frequency counts. Return true if
3061  * the current block must be flushed.
3062  */
3063 int ct_tally(dist, lc)
3064 int dist;                                               /* distance of matched string */
3065 int lc;                                                 /* match length-MIN_MATCH or unmatched char (if dist==0) */
3066 {
3067         l_buf[last_lit++] = (uch) lc;
3068         if (dist == 0) {
3069                 /* lc is the unmatched char */
3070                 dyn_ltree[lc].Freq++;
3071         } else {
3072                 /* Here, lc is the match length - MIN_MATCH */
3073                 dist--;                                 /* dist = match distance - 1 */
3074                 Assert((ush) dist < (ush) MAX_DIST &&
3075                            (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
3076                            (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
3077
3078                 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
3079                 dyn_dtree[d_code(dist)].Freq++;
3080
3081                 d_buf[last_dist++] = (ush) dist;
3082                 flags |= flag_bit;
3083         }
3084         flag_bit <<= 1;
3085
3086         /* Output the flags if they fill a byte: */
3087         if ((last_lit & 7) == 0) {
3088                 flag_buf[last_flags++] = flags;
3089                 flags = 0, flag_bit = 1;
3090         }
3091         /* Try to guess if it is profitable to stop the current block here */
3092         if ((last_lit & 0xfff) == 0) {
3093                 /* Compute an upper bound for the compressed length */
3094                 ulg out_length = (ulg) last_lit * 8L;
3095                 ulg in_length = (ulg) strstart - block_start;
3096                 int dcode;
3097
3098                 for (dcode = 0; dcode < D_CODES; dcode++) {
3099                         out_length +=
3100                                 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
3101                 }
3102                 out_length >>= 3;
3103                 Trace(
3104                           (stderr,
3105                            "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
3106                            last_lit, last_dist, in_length, out_length,
3107                            100L - out_length * 100L / in_length));
3108                 if (last_dist < last_lit / 2 && out_length < in_length / 2)
3109                         return 1;
3110         }
3111         return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
3112         /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
3113          * on 16 bit machines and because stored blocks are restricted to
3114          * 64K-1 bytes.
3115          */
3116 }
3117
3118 /* ===========================================================================
3119  * Send the block data compressed using the given Huffman trees
3120  */
3121 local void compress_block(ltree, dtree)
3122 ct_data near *ltree;                    /* literal tree */
3123 ct_data near *dtree;                    /* distance tree */
3124 {
3125         unsigned dist;                          /* distance of matched string */
3126         int lc;                                         /* match length or unmatched char (if dist == 0) */
3127         unsigned lx = 0;                        /* running index in l_buf */
3128         unsigned dx = 0;                        /* running index in d_buf */
3129         unsigned fx = 0;                        /* running index in flag_buf */
3130         uch flag = 0;                           /* current flags */
3131         unsigned code;                          /* the code to send */
3132         int extra;                                      /* number of extra bits to send */
3133
3134         if (last_lit != 0)
3135                 do {
3136                         if ((lx & 7) == 0)
3137                                 flag = flag_buf[fx++];
3138                         lc = l_buf[lx++];
3139                         if ((flag & 1) == 0) {
3140                                 send_code(lc, ltree);   /* send a literal byte */
3141                                 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
3142                         } else {
3143                                 /* Here, lc is the match length - MIN_MATCH */
3144                                 code = length_code[lc];
3145                                 send_code(code + LITERALS + 1, ltree);  /* send the length code */
3146                                 extra = extra_lbits[code];
3147                                 if (extra != 0) {
3148                                         lc -= base_length[code];
3149                                         send_bits(lc, extra);   /* send the extra length bits */
3150                                 }
3151                                 dist = d_buf[dx++];
3152                                 /* Here, dist is the match distance - 1 */
3153                                 code = d_code(dist);
3154                                 Assert(code < D_CODES, "bad d_code");
3155
3156                                 send_code(code, dtree); /* send the distance code */
3157                                 extra = extra_dbits[code];
3158                                 if (extra != 0) {
3159                                         dist -= base_dist[code];
3160                                         send_bits(dist, extra); /* send the extra distance bits */
3161                                 }
3162                         }                                       /* literal or match pair ? */
3163                         flag >>= 1;
3164                 } while (lx < last_lit);
3165
3166         send_code(END_BLOCK, ltree);
3167 }
3168
3169 /* ===========================================================================
3170  * Set the file type to ASCII or BINARY, using a crude approximation:
3171  * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
3172  * IN assertion: the fields freq of dyn_ltree are set and the total of all
3173  * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
3174  */
3175 local void set_file_type()
3176 {
3177         int n = 0;
3178         unsigned ascii_freq = 0;
3179         unsigned bin_freq = 0;
3180
3181         while (n < 7)
3182                 bin_freq += dyn_ltree[n++].Freq;
3183         while (n < 128)
3184                 ascii_freq += dyn_ltree[n++].Freq;
3185         while (n < LITERALS)
3186                 bin_freq += dyn_ltree[n++].Freq;
3187         *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
3188         if (*file_type == BINARY && translate_eol) {
3189                 error_msg("-l used on binary file");
3190         }
3191 }
3192
3193 /* util.c -- utility functions for gzip support
3194  * Copyright (C) 1992-1993 Jean-loup Gailly
3195  * This is free software; you can redistribute it and/or modify it under the
3196  * terms of the GNU General Public License, see the file COPYING.
3197  */
3198
3199 #include <ctype.h>
3200 #include <errno.h>
3201 #include <sys/types.h>
3202
3203 #ifdef HAVE_UNISTD_H
3204 #  include <unistd.h>
3205 #endif
3206 #ifndef NO_FCNTL_H
3207 #  include <fcntl.h>
3208 #endif
3209
3210 /* ===========================================================================
3211  * Copy input to output unchanged: zcat == cat with --force.
3212  * IN assertion: insize bytes have already been read in inbuf.
3213  */
3214 int copy(in, out)
3215 int in, out;                                    /* input and output file descriptors */
3216 {
3217         errno = 0;
3218         while (insize != 0 && (int) insize != EOF) {
3219                 write_buf(out, (char *) inbuf, insize);
3220                 bytes_out += insize;
3221                 insize = read(in, (char *) inbuf, INBUFSIZ);
3222         }
3223         if ((int) insize == EOF && errno != 0) {
3224                 read_error_msg();
3225         }
3226         bytes_in = bytes_out;
3227         return OK;
3228 }
3229
3230 /* ========================================================================
3231  * Put string s in lower case, return s.
3232  */
3233 char *strlwr(s)
3234 char *s;
3235 {
3236         char *t;
3237
3238         for (t = s; *t; t++)
3239                 *t = tolow(*t);
3240         return s;
3241 }
3242
3243 #if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3244
3245 /* Provide missing strspn and strcspn functions. */
3246
3247 int strspn (const char *s, const char *accept);
3248 int strcspn (const char *s, const char *reject);
3249
3250 /* ========================================================================
3251  * Return the length of the maximum initial segment
3252  * of s which contains only characters in accept.
3253  */
3254 int strspn(s, accept)
3255 const char *s;
3256 const char *accept;
3257 {
3258         register const char *p;
3259         register const char *a;
3260         register int count = 0;
3261
3262         for (p = s; *p != '\0'; ++p) {
3263                 for (a = accept; *a != '\0'; ++a) {
3264                         if (*p == *a)
3265                                 break;
3266                 }
3267                 if (*a == '\0')
3268                         return count;
3269                 ++count;
3270         }
3271         return count;
3272 }
3273
3274 /* ========================================================================
3275  * Return the length of the maximum inital segment of s
3276  * which contains no characters from reject.
3277  */
3278 int strcspn(s, reject)
3279 const char *s;
3280 const char *reject;
3281 {
3282         register int count = 0;
3283
3284         while (*s != '\0') {
3285                 if (strchr(reject, *s++) != NULL)
3286                         return count;
3287                 ++count;
3288         }
3289         return count;
3290 }
3291
3292 #endif                                                  /* NO_STRING_H */
3293
3294 /* ========================================================================
3295  * Add an environment variable (if any) before argv, and update argc.
3296  * Return the expanded environment variable to be freed later, or NULL 
3297  * if no options were added to argv.
3298  */
3299 #define SEPARATOR       " \t"           /* separators in env variable */
3300
3301 char *add_envopt(argcp, argvp, env)
3302 int *argcp;                                             /* pointer to argc */
3303 char ***argvp;                                  /* pointer to argv */
3304 char *env;                                              /* name of environment variable */
3305 {
3306         char *p;                                        /* running pointer through env variable */
3307         char **oargv;                           /* runs through old argv array */
3308         char **nargv;                           /* runs through new argv array */
3309         int oargc = *argcp;                     /* old argc */
3310         int nargc = 0;                          /* number of arguments in env variable */
3311
3312         env = (char *) getenv(env);
3313         if (env == NULL)
3314                 return NULL;
3315
3316         p = (char *) xmalloc(strlen(env) + 1);
3317         env = strcpy(p, env);           /* keep env variable intact */
3318
3319         for (p = env; *p; nargc++) {    /* move through env */
3320                 p += strspn(p, SEPARATOR);      /* skip leading separators */
3321                 if (*p == '\0')
3322                         break;
3323
3324                 p += strcspn(p, SEPARATOR);     /* find end of word */
3325                 if (*p)
3326                         *p++ = '\0';            /* mark it */
3327         }
3328         if (nargc == 0) {
3329                 free(env);
3330                 return NULL;
3331         }
3332         *argcp += nargc;
3333         /* Allocate the new argv array, with an extra element just in case
3334          * the original arg list did not end with a NULL.
3335          */
3336         nargv = (char **) calloc(*argcp + 1, sizeof(char *));
3337
3338         if (nargv == NULL)
3339                 error_msg(memory_exhausted);
3340         oargv = *argvp;
3341         *argvp = nargv;
3342
3343         /* Copy the program name first */
3344         if (oargc-- < 0)
3345                 error_msg("argc<=0");
3346         *(nargv++) = *(oargv++);
3347
3348         /* Then copy the environment args */
3349         for (p = env; nargc > 0; nargc--) {
3350                 p += strspn(p, SEPARATOR);      /* skip separators */
3351                 *(nargv++) = p;                 /* store start */
3352                 while (*p++);                   /* skip over word */
3353         }
3354
3355         /* Finally copy the old args and add a NULL (usual convention) */
3356         while (oargc--)
3357                 *(nargv++) = *(oargv++);
3358         *nargv = NULL;
3359         return env;
3360 }
3361
3362 /* ========================================================================
3363  * Display compression ratio on the given stream on 6 characters.
3364  */
3365 void display_ratio(num, den, file)
3366 long num;
3367 long den;
3368 FILE *file;
3369 {
3370         long ratio;                                     /* 1000 times the compression ratio */
3371
3372         if (den == 0) {
3373                 ratio = 0;                              /* no compression */
3374         } else if (den < 2147483L) {    /* (2**31 -1)/1000 */
3375                 ratio = 1000L * num / den;
3376         } else {
3377                 ratio = num / (den / 1000L);
3378         }
3379         if (ratio < 0) {
3380                 putc('-', file);
3381                 ratio = -ratio;
3382         } else {
3383                 putc(' ', file);
3384         }
3385         fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
3386 }
3387
3388
3389 /* zip.c -- compress files to the gzip or pkzip format
3390  * Copyright (C) 1992-1993 Jean-loup Gailly
3391  * This is free software; you can redistribute it and/or modify it under the
3392  * terms of the GNU General Public License, see the file COPYING.
3393  */
3394
3395 #include <ctype.h>
3396 #include <sys/types.h>
3397
3398 #ifdef HAVE_UNISTD_H
3399 #  include <unistd.h>
3400 #endif
3401 #ifndef NO_FCNTL_H
3402 #  include <fcntl.h>
3403 #endif
3404
3405 local ulg crc;                                  /* crc on uncompressed file data */
3406 long header_bytes;                              /* number of bytes in gzip header */
3407
3408 /* ===========================================================================
3409  * Deflate in to out.
3410  * IN assertions: the input and output buffers are cleared.
3411  *   The variables time_stamp and save_orig_name are initialized.
3412  */
3413 int zip(in, out)
3414 int in, out;                                    /* input and output file descriptors */
3415 {
3416         uch my_flags = 0;                               /* general purpose bit flags */
3417         ush attr = 0;                           /* ascii/binary flag */
3418         ush deflate_flags = 0;          /* pkzip -es, -en or -ex equivalent */
3419
3420         ifd = in;
3421         ofd = out;
3422         outcnt = 0;
3423
3424         /* Write the header to the gzip file. See algorithm.doc for the format */
3425
3426
3427         method = DEFLATED;
3428         put_byte(GZIP_MAGIC[0]);        /* magic header */
3429         put_byte(GZIP_MAGIC[1]);
3430         put_byte(DEFLATED);                     /* compression method */
3431
3432         put_byte(my_flags);                     /* general flags */
3433         put_long(time_stamp);
3434
3435         /* Write deflated file to zip file */
3436         crc = updcrc(0, 0);
3437
3438         bi_init(out);
3439         ct_init(&attr, &method);
3440         lm_init(&deflate_flags);
3441
3442         put_byte((uch) deflate_flags);  /* extra flags */
3443         put_byte(OS_CODE);                      /* OS identifier */
3444
3445         header_bytes = (long) outcnt;
3446
3447         (void) deflate();
3448
3449         /* Write the crc and uncompressed size */
3450         put_long(crc);
3451         put_long(isize);
3452         header_bytes += 2 * sizeof(long);
3453
3454         flush_outbuf();
3455         return OK;
3456 }
3457
3458
3459 /* ===========================================================================
3460  * Read a new buffer from the current input file, perform end-of-line
3461  * translation, and update the crc and input file size.
3462  * IN assertion: size >= 2 (for end-of-line translation)
3463  */
3464 int file_read(buf, size)
3465 char *buf;
3466 unsigned size;
3467 {
3468         unsigned len;
3469
3470         Assert(insize == 0, "inbuf not empty");
3471
3472         len = read(ifd, buf, size);
3473         if (len == (unsigned) (-1) || len == 0)
3474                 return (int) len;
3475
3476         crc = updcrc((uch *) buf, len);
3477         isize += (ulg) len;
3478         return (int) len;
3479 }
3480
3481 /* ===========================================================================
3482  * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
3483  * (used for the compressed data only)
3484  */
3485 void flush_outbuf()
3486 {
3487         if (outcnt == 0)
3488                 return;
3489
3490         write_buf(ofd, (char *) outbuf, outcnt);
3491         bytes_out += (ulg) outcnt;
3492         outcnt = 0;
3493 }