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