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