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