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