blob: 6d46926ee1b6c7ba75df06372fb77ba6474a72ea [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen61677fe2000-04-13 01:18:56 +00002/*
3 * Gzip implementation for busybox
Eric Andersencc8ed391999-10-05 16:24:54 +00004 *
Erik Andersen61677fe2000-04-13 01:18:56 +00005 * Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly.
6 *
7 * Originally adjusted for busybox by Charles P. Wright <cpw@unix.asb.com>
8 * "this is a stripped down version of gzip I put into busybox, it does
9 * only standard in to standard out with -9 compression. It also requires
10 * the zcat module for some important functions."
11 *
12 * Adjusted further by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
13 * to support files as well as stdin/stdout, and to generally behave itself wrt
14 * command line handling.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 *
Eric Andersencc8ed391999-10-05 16:24:54 +000030 */
Eric Andersencc8ed391999-10-05 16:24:54 +000031
Erik Andersen61677fe2000-04-13 01:18:56 +000032/* These defines are very important for BusyBox. Without these,
33 * huge chunks of ram are pre-allocated making the BusyBox bss
34 * size Freaking Huge(tm), which is a bad thing.*/
35#define SMALL_MEM
36#define DYN_ALLOC
37
Eric Andersencc8ed391999-10-05 16:24:54 +000038/* I don't like nested includes, but the string and io functions are used
39 * too often
40 */
Eric Andersencbe31da2001-02-20 06:14:08 +000041#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000042#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000043#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000044#include <unistd.h>
Glenn L McGrathf58efb52001-03-28 05:35:16 +000045#include <errno.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000046#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000047
Erik Andersen61677fe2000-04-13 01:18:56 +000048#define memzero(s, n) memset ((void *)(s), 0, (n))
Eric Andersencc8ed391999-10-05 16:24:54 +000049
50#ifndef RETSIGTYPE
51# define RETSIGTYPE void
52#endif
53
54#define local static
55
Erik Andersene49d5ec2000-02-08 19:58:47 +000056typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000057typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000058typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000059
60/* Return codes from gzip */
61#define OK 0
62#define ERROR 1
63#define WARNING 2
64
65/* Compression methods (see algorithm.doc) */
66#define STORED 0
67#define COMPRESSED 1
68#define PACKED 2
69#define LZHED 3
70/* methods 4 to 7 reserved */
71#define DEFLATED 8
72#define MAX_METHODS 9
Glenn L McGrathf58efb52001-03-28 05:35:16 +000073static int method; /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +000074
75/* To save memory for 16 bit systems, some arrays are overlaid between
76 * the various modules:
77 * deflate: prev+head window d_buf l_buf outbuf
78 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
79 * inflate: window inbuf
80 * unpack: window inbuf prefix_len
81 * unlzh: left+right window c_table inbuf c_len
82 * For compression, input is done in window[]. For decompression, output
83 * is done in window except for unlzw.
84 */
85
86#ifndef INBUFSIZ
87# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000088# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000089# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000090# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000091# endif
92#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000093#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000094
95#ifndef OUTBUFSIZ
96# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000097# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000098# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000099# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +0000100# endif
101#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000102#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000103
104#ifndef DIST_BUFSIZE
105# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000107# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000109# endif
110#endif
111
112#ifdef DYN_ALLOC
Erik Andersen61677fe2000-04-13 01:18:56 +0000113# define EXTERN(type, array) extern type * array
114# define DECLARE(type, array, size) type * array
Eric Andersencc8ed391999-10-05 16:24:54 +0000115# define ALLOC(type, array, size) { \
Erik Andersen61677fe2000-04-13 01:18:56 +0000116 array = (type*)calloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Mark Whitleyf57c9442000-12-07 19:56:48 +0000117 if (array == NULL) error_msg(memory_exhausted); \
Eric Andersencc8ed391999-10-05 16:24:54 +0000118 }
Erik Andersen61677fe2000-04-13 01:18:56 +0000119# define FREE(array) {if (array != NULL) free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +0000120#else
121# define EXTERN(type, array) extern type array[]
122# define DECLARE(type, array, size) type array[size]
123# define ALLOC(type, array, size)
124# define FREE(array)
125#endif
126
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127EXTERN(uch, inbuf); /* input buffer */
128EXTERN(uch, outbuf); /* output buffer */
129EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
130EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000131#define tab_suffix window
132#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133# define tab_prefix prev /* hash link (see deflate.c) */
134# define head (prev+WSIZE) /* hash head (see deflate.c) */
135EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000136#else
137# define tab_prefix0 prev
138# define head tab_prefix1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139EXTERN(ush, tab_prefix0); /* prefix for even codes */
140EXTERN(ush, tab_prefix1); /* prefix for odd codes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000141#endif
142
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143extern unsigned insize; /* valid bytes in inbuf */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000144static unsigned inptr; /* index of next byte to be processed in inbuf */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145extern unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +0000146
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147extern long bytes_in; /* number of input bytes */
148extern long bytes_out; /* number of output bytes */
149extern long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +0000150
151#define isize bytes_in
152/* for compatibility with old zip sources (to be cleaned) */
153
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154extern int ifd; /* input file descriptor */
155extern int ofd; /* output file descriptor */
156extern char ifname[]; /* input file name or "stdin" */
157extern char ofname[]; /* output file name or "stdout" */
158extern char *progname; /* program name */
Eric Andersencc8ed391999-10-05 16:24:54 +0000159
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160extern long time_stamp; /* original time stamp (modification time) */
161extern long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000162
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163typedef int file_t; /* Do not use stdio */
164
165#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000166
167
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168#define PACK_MAGIC "\037\036" /* Magic header for packed files */
169#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
170#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
171#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
172#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000173
174/* gzip flag byte */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
176#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
177#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
178#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
179#define COMMENT 0x10 /* bit 4 set: file comment present */
180#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
181#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000182
183/* internal file attribute */
184#define UNKNOWN 0xffff
185#define BINARY 0
186#define ASCII 1
187
188#ifndef WSIZE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189# define WSIZE 0x8000 /* window size--must be a power of two, and */
190#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000191
192#define MIN_MATCH 3
193#define MAX_MATCH 258
194/* The minimum and maximum match lengths */
195
196#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
197/* Minimum amount of lookahead, except at the end of the input file.
198 * See deflate.c for comments about the MIN_MATCH+1.
199 */
200
201#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
202/* In order to simplify the code, particularly on 16 bit machines, match
203 * distances are limited to MAX_DIST instead of WSIZE.
204 */
205
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206extern int decrypt; /* flag to turn on decryption */
207extern int exit_code; /* program exit code */
208extern int verbose; /* be verbose (-v) */
209extern int quiet; /* be quiet (-q) */
210extern int test; /* check .z file integrity */
211extern int save_orig_name; /* set if original name must be saved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000212
213#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
214#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
215
216/* put_byte is used for the compressed output, put_ubyte for the
217 * uncompressed output. However unlzw() uses window for its
218 * suffix table instead of its output buffer, so it does not use put_ubyte
219 * (to be cleaned up).
220 */
221#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
222 flush_outbuf();}
223#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
224 flush_window();}
225
226/* Output a 16 bit value, lsb first */
227#define put_short(w) \
228{ if (outcnt < OUTBUFSIZ-2) { \
229 outbuf[outcnt++] = (uch) ((w) & 0xff); \
230 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
231 } else { \
232 put_byte((uch)((w) & 0xff)); \
233 put_byte((uch)((ush)(w) >> 8)); \
234 } \
235}
236
237/* Output a 32 bit value to the bit stream, lsb first */
238#define put_long(n) { \
239 put_short((n) & 0xffff); \
240 put_short(((ulg)(n)) >> 16); \
241}
242
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243#define seekable() 0 /* force sequential output */
244#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000245
Erik Andersene49d5ec2000-02-08 19:58:47 +0000246#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000247
248/* Macros for getting two-byte and four-byte header values */
249#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
250#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
251
252/* Diagnostic functions */
253#ifdef DEBUG
Mark Whitleyf57c9442000-12-07 19:56:48 +0000254# define Assert(cond,msg) {if(!(cond)) error_msg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000255# define Trace(x) fprintf x
256# define Tracev(x) {if (verbose) fprintf x ;}
257# define Tracevv(x) {if (verbose>1) fprintf x ;}
258# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
259# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
260#else
261# define Assert(cond,msg)
262# define Trace(x)
263# define Tracev(x)
264# define Tracevv(x)
265# define Tracec(c,x)
266# define Tracecv(c,x)
267#endif
268
269#define WARN(msg) {if (!quiet) fprintf msg ; \
270 if (exit_code == OK) exit_code = WARNING;}
271
Eric Andersencc8ed391999-10-05 16:24:54 +0000272
273 /* in zip.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000274extern int zip (int in, int out);
275extern int file_read (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000276
277 /* in unzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000278extern int check_zipfile (int in);
Eric Andersencc8ed391999-10-05 16:24:54 +0000279
280 /* in unpack.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000281extern int unpack (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000282
283 /* in unlzh.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000284extern int unlzh (int in, int out);
Eric Andersencc8ed391999-10-05 16:24:54 +0000285
286 /* in gzip.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000287RETSIGTYPE abort_gzip (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000288
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 /* in deflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000290void lm_init (ush * flags);
291ulg deflate (void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000292
Erik Andersene49d5ec2000-02-08 19:58:47 +0000293 /* in trees.c */
Eric Andersen851895a2001-03-21 21:52:25 +0000294void ct_init (ush * attr, int *methodp);
Erik Andersen61677fe2000-04-13 01:18:56 +0000295int ct_tally (int dist, int lc);
296ulg flush_block (char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000297
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 /* in bits.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000299void bi_init (file_t zipfile);
300void send_bits (int value, int length);
301unsigned bi_reverse (unsigned value, int length);
302void bi_windup (void);
303void copy_block (char *buf, unsigned len, int header);
304extern int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000305
306 /* in util.c: */
Erik Andersen61677fe2000-04-13 01:18:56 +0000307extern int copy (int in, int out);
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000308//extern ulg updcrc (uch * s, unsigned n);
309//extern void clear_bufs (void);
Erik Andersen61677fe2000-04-13 01:18:56 +0000310extern int fill_inbuf (int eof_ok);
311extern void flush_outbuf (void);
312extern void flush_window (void);
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000313//extern void write_buf (int fd, void * buf, unsigned cnt);
Erik Andersen61677fe2000-04-13 01:18:56 +0000314extern char *strlwr (char *s);
315extern char *add_envopt (int *argcp, char ***argvp, char *env);
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000316//extern void read_error_msg (void);
317//extern void write_error_msg (void);
Erik Andersen61677fe2000-04-13 01:18:56 +0000318extern void display_ratio (long num, long den, FILE * file);
Eric Andersencc8ed391999-10-05 16:24:54 +0000319
320 /* in inflate.c */
Erik Andersen61677fe2000-04-13 01:18:56 +0000321extern int inflate (void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000322
Eric Andersencc8ed391999-10-05 16:24:54 +0000323/* lzw.h -- define the lzw functions.
324 * Copyright (C) 1992-1993 Jean-loup Gailly.
325 * This is free software; you can redistribute it and/or modify it under the
326 * terms of the GNU General Public License, see the file COPYING.
327 */
328
329#if !defined(OF) && defined(lint)
330# include "gzip.h"
331#endif
332
333#ifndef BITS
334# define BITS 16
335#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000336#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000337
Erik Andersene49d5ec2000-02-08 19:58:47 +0000338#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000339/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
340 * It's a pity that old uncompress does not check bit 0x20. That makes
341 * extension of the format actually undesirable because old compress
342 * would just crash on the new format instead of giving a meaningful
343 * error message. It does check the number of bits, but it's more
344 * helpful to say "unsupported format, get a new version" than
345 * "can only handle 16 bits".
346 */
347
348#define BLOCK_MODE 0x80
349/* Block compression: if table is full and compression rate is dropping,
350 * clear the dictionary.
351 */
352
Erik Andersene49d5ec2000-02-08 19:58:47 +0000353#define LZW_RESERVED 0x60 /* reserved bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000354
Erik Andersene49d5ec2000-02-08 19:58:47 +0000355#define CLEAR 256 /* flush the dictionary */
356#define FIRST (CLEAR+1) /* first free entry */
Eric Andersencc8ed391999-10-05 16:24:54 +0000357
Erik Andersene49d5ec2000-02-08 19:58:47 +0000358extern int maxbits; /* max bits per code for LZW */
359extern int block_mode; /* block compress mode -C compatible with 2.0 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000360
361/* revision.h -- define the version number
362 * Copyright (C) 1992-1993 Jean-loup Gailly.
363 * This is free software; you can redistribute it and/or modify it under the
364 * terms of the GNU General Public License, see the file COPYING.
365 */
366
367#define VERSION "1.2.4"
368#define PATCHLEVEL 0
369#define REVDATE "18 Aug 93"
370
371/* This version does not support compression into old compress format: */
372#ifdef LZW
373# undef LZW
374#endif
375
Eric Andersencc8ed391999-10-05 16:24:54 +0000376/* tailor.h -- target dependent definitions
377 * Copyright (C) 1992-1993 Jean-loup Gailly.
378 * This is free software; you can redistribute it and/or modify it under the
379 * terms of the GNU General Public License, see the file COPYING.
380 */
381
382/* The target dependent definitions should be defined here only.
383 * The target dependent functions should be defined in tailor.c.
384 */
385
Eric Andersencc8ed391999-10-05 16:24:54 +0000386
387#if defined(__MSDOS__) && !defined(MSDOS)
388# define MSDOS
389#endif
390
391#if defined(__OS2__) && !defined(OS2)
392# define OS2
393#endif
394
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395#if defined(OS2) && defined(MSDOS) /* MS C under OS/2 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000396# undef MSDOS
397#endif
398
399#ifdef MSDOS
400# ifdef __GNUC__
Erik Andersene49d5ec2000-02-08 19:58:47 +0000401 /* DJGPP version 1.09+ on MS-DOS.
402 * The DJGPP 1.09 stat() function must be upgraded before gzip will
403 * fully work.
404 * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
405 * implies DIRENT.
406 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000407# define near
408# else
409# define MAXSEG_64K
410# ifdef __TURBOC__
411# define NO_OFF_T
412# ifdef __BORLANDC__
413# define DIRENT
414# else
415# define NO_UTIME
416# endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000418# define HAVE_SYS_UTIME_H
419# define NO_UTIME_H
420# endif
421# endif
422# define PATH_SEP2 '\\'
423# define PATH_SEP3 ':'
424# define MAX_PATH_LEN 128
425# define NO_MULTIPLE_DOTS
426# define MAX_EXT_CHARS 3
427# define Z_SUFFIX "z"
428# define NO_CHOWN
429# define PROTO
430# define STDC_HEADERS
431# define NO_SIZE_CHECK
Erik Andersene49d5ec2000-02-08 19:58:47 +0000432# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000433# include <io.h>
434# define OS_CODE 0x00
435# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
436# if !defined(NO_ASM) && !defined(ASMV)
437# define ASMV
438# endif
439#else
440# define near
441#endif
442
443#ifdef OS2
444# define PATH_SEP2 '\\'
445# define PATH_SEP3 ':'
446# define MAX_PATH_LEN 260
447# ifdef OS2FAT
448# define NO_MULTIPLE_DOTS
449# define MAX_EXT_CHARS 3
450# define Z_SUFFIX "z"
451# define casemap(c) tolow(c)
452# endif
453# define NO_CHOWN
454# define PROTO
455# define STDC_HEADERS
456# include <io.h>
457# define OS_CODE 0x06
458# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
459# ifdef _MSC_VER
460# define HAVE_SYS_UTIME_H
461# define NO_UTIME_H
462# define MAXSEG_64K
463# undef near
464# define near _near
465# endif
466# ifdef __EMX__
467# define HAVE_SYS_UTIME_H
468# define NO_UTIME_H
469# define DIRENT
470# define EXPAND(argc,argv) \
471 {_response(&argc, &argv); _wildcard(&argc, &argv);}
472# endif
473# ifdef __BORLANDC__
474# define DIRENT
475# endif
476# ifdef __ZTC__
477# define NO_DIR
478# define NO_UTIME_H
479# include <dos.h>
480# define EXPAND(argc,argv) \
481 {response_expand(&argc, &argv);}
482# endif
483#endif
484
Erik Andersene49d5ec2000-02-08 19:58:47 +0000485#ifdef WIN32 /* Windows NT */
Eric Andersencc8ed391999-10-05 16:24:54 +0000486# define HAVE_SYS_UTIME_H
487# define NO_UTIME_H
488# define PATH_SEP2 '\\'
489# define PATH_SEP3 ':'
490# define MAX_PATH_LEN 260
491# define NO_CHOWN
492# define PROTO
493# define STDC_HEADERS
494# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
495# include <io.h>
496# include <malloc.h>
497# ifdef NTFAT
498# define NO_MULTIPLE_DOTS
499# define MAX_EXT_CHARS 3
500# define Z_SUFFIX "z"
Erik Andersene49d5ec2000-02-08 19:58:47 +0000501# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000502# endif
503# define OS_CODE 0x0b
504#endif
505
506#ifdef MSDOS
507# ifdef __TURBOC__
508# include <alloc.h>
509# define DYN_ALLOC
Erik Andersene49d5ec2000-02-08 19:58:47 +0000510 /* Turbo C 2.0 does not accept static allocations of large arrays */
511void *fcalloc(unsigned items, unsigned size);
512void fcfree(void *ptr);
513# else /* MSC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000514# include <malloc.h>
515# define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
516# define fcfree(ptr) hfree(ptr)
517# endif
518#else
519# ifdef MAXSEG_64K
520# define fcalloc(items,size) calloc((items),(size))
521# else
522# define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
523# endif
524# define fcfree(ptr) free(ptr)
525#endif
526
527#if defined(VAXC) || defined(VMS)
528# define PATH_SEP ']'
529# define PATH_SEP2 ':'
530# define SUFFIX_SEP ';'
531# define NO_MULTIPLE_DOTS
532# define Z_SUFFIX "-gz"
533# define RECORD_IO 1
534# define casemap(c) tolow(c)
535# define OS_CODE 0x02
536# define OPTIONS_VAR "GZIP_OPT"
537# define STDC_HEADERS
538# define NO_UTIME
539# define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
540# include <file.h>
541# define unlink delete
542# ifdef VAXC
543# define NO_FCNTL_H
544# include <unixio.h>
545# endif
546#endif
547
548#ifdef AMIGA
549# define PATH_SEP2 ':'
550# define STDC_HEADERS
551# define OS_CODE 0x01
552# define ASMV
553# ifdef __GNUC__
554# define DIRENT
555# define HAVE_UNISTD_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556# else /* SASC */
Eric Andersencc8ed391999-10-05 16:24:54 +0000557# define NO_STDIN_FSTAT
558# define SYSDIR
559# define NO_SYMLINK
560# define NO_CHOWN
561# define NO_FCNTL_H
Erik Andersene49d5ec2000-02-08 19:58:47 +0000562# include <fcntl.h> /* for read() and write() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000563# define direct dirent
Erik Andersene49d5ec2000-02-08 19:58:47 +0000564extern void _expand_args(int *argc, char ***argv);
565
Eric Andersencc8ed391999-10-05 16:24:54 +0000566# define EXPAND(argc,argv) _expand_args(&argc,&argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000567# undef O_BINARY /* disable useless --ascii option */
Eric Andersencc8ed391999-10-05 16:24:54 +0000568# endif
569#endif
570
571#if defined(ATARI) || defined(atarist)
572# ifndef STDC_HEADERS
573# define STDC_HEADERS
574# define HAVE_UNISTD_H
575# define DIRENT
576# endif
577# define ASMV
578# define OS_CODE 0x05
579# ifdef TOSFS
580# define PATH_SEP2 '\\'
581# define PATH_SEP3 ':'
582# define MAX_PATH_LEN 128
583# define NO_MULTIPLE_DOTS
584# define MAX_EXT_CHARS 3
585# define Z_SUFFIX "z"
586# define NO_CHOWN
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000588# define NO_SYMLINK
589# endif
590#endif
591
592#ifdef MACOS
593# define PATH_SEP ':'
594# define DYN_ALLOC
595# define PROTO
596# define NO_STDIN_FSTAT
597# define NO_CHOWN
598# define NO_UTIME
599# define chmod(file, mode) (0)
600# define OPEN(name, flags, mode) open(name, flags)
601# define OS_CODE 0x07
602# ifdef MPW
603# define isatty(fd) ((fd) <= 2)
604# endif
605#endif
606
Erik Andersene49d5ec2000-02-08 19:58:47 +0000607#ifdef __50SERIES /* Prime/PRIMOS */
Eric Andersencc8ed391999-10-05 16:24:54 +0000608# define PATH_SEP '>'
609# define STDC_HEADERS
610# define NO_MEMORY_H
611# define NO_UTIME_H
612# define NO_UTIME
Erik Andersene49d5ec2000-02-08 19:58:47 +0000613# define NO_CHOWN
614# define NO_STDIN_FSTAT
615# define NO_SIZE_CHECK
Eric Andersencc8ed391999-10-05 16:24:54 +0000616# define NO_SYMLINK
617# define RECORD_IO 1
Erik Andersene49d5ec2000-02-08 19:58:47 +0000618# define casemap(c) tolow(c) /* Force file names to lower case */
Eric Andersencc8ed391999-10-05 16:24:54 +0000619# define put_char(c) put_byte((c) & 0x7F)
620# define get_char(c) ascii2pascii(get_byte())
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621# define OS_CODE 0x0F /* temporary, subject to change */
Eric Andersencc8ed391999-10-05 16:24:54 +0000622# ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623# undef SIGTERM /* We don't want a signal handler for SIGTERM */
Eric Andersencc8ed391999-10-05 16:24:54 +0000624# endif
625#endif
626
Erik Andersene49d5ec2000-02-08 19:58:47 +0000627#if defined(pyr) && !defined(NOMEMCPY) /* Pyramid */
628# define NOMEMCPY /* problem with overlapping copies */
Eric Andersencc8ed391999-10-05 16:24:54 +0000629#endif
630
631#ifdef TOPS20
632# define OS_CODE 0x0a
633#endif
634
635#ifndef unix
Erik Andersene49d5ec2000-02-08 19:58:47 +0000636# define NO_ST_INO /* don't rely on inode numbers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000637#endif
638
639
640 /* Common defaults */
641
642#ifndef OS_CODE
Erik Andersene49d5ec2000-02-08 19:58:47 +0000643# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000644#endif
645
646#ifndef PATH_SEP
647# define PATH_SEP '/'
648#endif
649
650#ifndef casemap
651# define casemap(c) (c)
652#endif
653
654#ifndef OPTIONS_VAR
655# define OPTIONS_VAR "GZIP"
656#endif
657
658#ifndef Z_SUFFIX
659# define Z_SUFFIX ".gz"
660#endif
661
662#ifdef MAX_EXT_CHARS
663# define MAX_SUFFIX MAX_EXT_CHARS
664#else
665# define MAX_SUFFIX 30
666#endif
667
668#ifndef MAKE_LEGAL_NAME
669# ifdef NO_MULTIPLE_DOTS
670# define MAKE_LEGAL_NAME(name) make_simple_name(name)
671# else
672# define MAKE_LEGAL_NAME(name)
673# endif
674#endif
675
676#ifndef MIN_PART
677# define MIN_PART 3
678 /* keep at least MIN_PART chars between dots in a file name. */
679#endif
680
681#ifndef EXPAND
682# define EXPAND(argc,argv)
683#endif
684
685#ifndef RECORD_IO
686# define RECORD_IO 0
687#endif
688
689#ifndef SET_BINARY_MODE
690# define SET_BINARY_MODE(fd)
691#endif
692
693#ifndef OPEN
694# define OPEN(name, flags, mode) open(name, flags, mode)
695#endif
696
697#ifndef get_char
698# define get_char() get_byte()
699#endif
700
701#ifndef put_char
702# define put_char(c) put_byte(c)
703#endif
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000704
705int crc_table_empty = 1;
706
707/* ========================================================================
708 * Signal and error handler.
709 */
710void abort_gzip()
711{
712 exit(ERROR);
713}
714
715/* ===========================================================================
716 * Clear input and output buffers
717 */
718static void clear_bufs(void)
719{
720 outcnt = 0;
721 insize = inptr = 0;
722 bytes_in = bytes_out = 0L;
723}
724
725static void write_error_msg()
726{
727 fprintf(stderr, "\n");
728 perror("");
729 abort_gzip();
730}
731
732/* ===========================================================================
733 * Does the same as write(), but also handles partial pipe writes and checks
734 * for error return.
735 */
736static void write_buf(fd, buf, cnt)
737int fd;
738void * buf;
739unsigned cnt;
740{
741 unsigned n;
742
743 while ((n = write(fd, buf, cnt)) != cnt) {
744 if (n == (unsigned) (-1)) {
745 write_error_msg();
746 }
747 cnt -= n;
748 buf = (void *) ((char *) buf + n);
749 }
750}
751
752/* ========================================================================
753 * Error handlers.
754 */
755static void read_error_msg()
756{
757 fprintf(stderr, "\n");
758 if (errno != 0) {
759 perror("");
760 } else {
761 fprintf(stderr, "unexpected end of file\n");
762 }
763 abort_gzip();
764}
765
766/* ===========================================================================
767 * Run a set of bytes through the crc shift register. If s is a NULL
768 * pointer, then initialize the crc shift register contents instead.
769 * Return the current crc in either case.
770 */
771static ulg updcrc(s, n)
772uch *s; /* pointer to bytes to pump through */
773unsigned n; /* number of bytes in s[] */
774{
775 static ulg crc = (ulg) 0xffffffffL; /* shift register contents */
776 register ulg c; /* temporary variable */
777 static unsigned long crc_32_tab[256];
778 if (crc_table_empty) {
779 unsigned long csr; /* crc shift register */
780 unsigned long e; /* polynomial exclusive-or pattern */
781 int i; /* counter for all possible eight bit values */
782 int k; /* byte being shifted into crc apparatus */
783
784 /* terms of polynomial defining this crc (except x^32): */
785 static int p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
786
787 /* Make exclusive-or pattern from polynomial (0xedb88320) */
788 e = 0;
789 for (i = 0; i < sizeof(p)/sizeof(int); i++)
790 e |= 1L << (31 - p[i]);
791
792 /* Compute and print table of CRC's, five per line */
793 crc_32_tab[0] = 0x00000000L;
794 for (i = 1; i < 256; i++) {
795 csr = i;
796 /* The idea to initialize the register with the byte instead of
797 * zero was stolen from Haruhiko Okumura's ar002
798 */
799 for (k = 8; k; k--)
800 csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
801 crc_32_tab[i]=csr;
802 }
803 }
804
805 if (s == NULL) {
806 c = 0xffffffffL;
807 } else {
808 c = crc;
809 if (n)
810 do {
811 c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);
812 } while (--n);
813 }
814 crc = c;
815 return c ^ 0xffffffffL; /* (instead of ~c for 64-bit machines) */
816}
817
Eric Andersencc8ed391999-10-05 16:24:54 +0000818/* bits.c -- output variable-length bit strings
819 * Copyright (C) 1992-1993 Jean-loup Gailly
820 * This is free software; you can redistribute it and/or modify it under the
821 * terms of the GNU General Public License, see the file COPYING.
822 */
823
824
825/*
826 * PURPOSE
827 *
828 * Output variable-length bit strings. Compression can be done
829 * to a file or to memory. (The latter is not supported in this version.)
830 *
831 * DISCUSSION
832 *
833 * The PKZIP "deflate" file format interprets compressed file data
834 * as a sequence of bits. Multi-bit strings in the file may cross
835 * byte boundaries without restriction.
836 *
837 * The first bit of each byte is the low-order bit.
838 *
839 * The routines in this file allow a variable-length bit value to
840 * be output right-to-left (useful for literal values). For
841 * left-to-right output (useful for code strings from the tree routines),
842 * the bits must have been reversed first with bi_reverse().
843 *
844 * For in-memory compression, the compressed bit stream goes directly
845 * into the requested output buffer. The input data is read in blocks
846 * by the mem_read() function. The buffer is limited to 64K on 16 bit
847 * machines.
848 *
849 * INTERFACE
850 *
851 * void bi_init (FILE *zipfile)
852 * Initialize the bit string routines.
853 *
854 * void send_bits (int value, int length)
855 * Write out a bit string, taking the source bits right to
856 * left.
857 *
858 * int bi_reverse (int value, int length)
859 * Reverse the bits of a bit string, taking the source bits left to
860 * right and emitting them right to left.
861 *
862 * void bi_windup (void)
863 * Write out any remaining bits in an incomplete byte.
864 *
865 * void copy_block(char *buf, unsigned len, int header)
866 * Copy a stored block to the zip file, storing first the length and
867 * its one's complement if requested.
868 *
869 */
870
871#ifdef DEBUG
872# include <stdio.h>
873#endif
874
Eric Andersencc8ed391999-10-05 16:24:54 +0000875/* ===========================================================================
876 * Local data used by the "bit string" routines.
877 */
878
Erik Andersene49d5ec2000-02-08 19:58:47 +0000879local file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000880
881local unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882
Eric Andersencc8ed391999-10-05 16:24:54 +0000883/* Output buffer. bits are inserted starting at the bottom (least significant
884 * bits).
885 */
886
887#define Buf_size (8 * 2*sizeof(char))
888/* Number of bits used within bi_buf. (bi_buf might be implemented on
889 * more than 16 bits on some systems.)
890 */
891
892local int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000893
Eric Andersencc8ed391999-10-05 16:24:54 +0000894/* Number of valid bits in bi_buf. All bits above the last valid bit
895 * are always zero.
896 */
897
Erik Andersen61677fe2000-04-13 01:18:56 +0000898int (*read_buf) (char *buf, unsigned size);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899
Eric Andersencc8ed391999-10-05 16:24:54 +0000900/* Current input function. Set to mem_read for in-memory compression */
901
902#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000903ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000904#endif
905
906/* ===========================================================================
907 * Initialize the bit string routines.
908 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909void bi_init(zipfile)
910file_t zipfile; /* output zip file, NO_FILE for in-memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000911{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 zfile = zipfile;
913 bi_buf = 0;
914 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000915#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000917#endif
918
Erik Andersene49d5ec2000-02-08 19:58:47 +0000919 /* Set the defaults for file compression. They are set by memcompress
920 * for in-memory compression.
921 */
922 if (zfile != NO_FILE) {
923 read_buf = file_read;
924 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000925}
926
927/* ===========================================================================
928 * Send a value on a given number of bits.
929 * IN assertion: length <= 16 and value fits in length bits.
930 */
931void send_bits(value, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932int value; /* value to send */
933int length; /* number of bits */
Eric Andersencc8ed391999-10-05 16:24:54 +0000934{
935#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000936 Tracev((stderr, " l %2d v %4x ", length, value));
937 Assert(length > 0 && length <= 15, "invalid length");
938 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000939#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000940 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
941 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
942 * unused bits in value.
943 */
944 if (bi_valid > (int) Buf_size - length) {
945 bi_buf |= (value << bi_valid);
946 put_short(bi_buf);
947 bi_buf = (ush) value >> (Buf_size - bi_valid);
948 bi_valid += length - Buf_size;
949 } else {
950 bi_buf |= value << bi_valid;
951 bi_valid += length;
952 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000953}
954
955/* ===========================================================================
956 * Reverse the first len bits of a code, using straightforward code (a faster
957 * method would use a table)
958 * IN assertion: 1 <= len <= 15
959 */
960unsigned bi_reverse(code, len)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000961unsigned code; /* the value to invert */
962int len; /* its bit length */
Eric Andersencc8ed391999-10-05 16:24:54 +0000963{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000964 register unsigned res = 0;
965
966 do {
967 res |= code & 1;
968 code >>= 1, res <<= 1;
969 } while (--len > 0);
970 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000971}
972
973/* ===========================================================================
974 * Write out any remaining bits in an incomplete byte.
975 */
976void bi_windup()
977{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000978 if (bi_valid > 8) {
979 put_short(bi_buf);
980 } else if (bi_valid > 0) {
981 put_byte(bi_buf);
982 }
983 bi_buf = 0;
984 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000985#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000986 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000987#endif
988}
989
990/* ===========================================================================
991 * Copy a stored block to the zip file, storing first the length and its
992 * one's complement if requested.
993 */
994void copy_block(buf, len, header)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000995char *buf; /* the input data */
996unsigned len; /* its length */
997int header; /* true if block header must be written */
Eric Andersencc8ed391999-10-05 16:24:54 +0000998{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000999 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +00001000
Erik Andersene49d5ec2000-02-08 19:58:47 +00001001 if (header) {
1002 put_short((ush) len);
1003 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +00001004#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00001005 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +00001006#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001007 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001008#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00001009 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00001010#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001011 while (len--) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001012#ifdef CRYPT
Erik Andersene49d5ec2000-02-08 19:58:47 +00001013 int t;
1014
1015 if (key)
1016 zencode(*buf, t);
Eric Andersencc8ed391999-10-05 16:24:54 +00001017#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001018 put_byte(*buf++);
1019 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001020}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001021
Eric Andersencc8ed391999-10-05 16:24:54 +00001022/* deflate.c -- compress data using the deflation algorithm
1023 * Copyright (C) 1992-1993 Jean-loup Gailly
1024 * This is free software; you can redistribute it and/or modify it under the
1025 * terms of the GNU General Public License, see the file COPYING.
1026 */
1027
1028/*
1029 * PURPOSE
1030 *
1031 * Identify new text as repetitions of old text within a fixed-
1032 * length sliding window trailing behind the new text.
1033 *
1034 * DISCUSSION
1035 *
1036 * The "deflation" process depends on being able to identify portions
1037 * of the input text which are identical to earlier input (within a
1038 * sliding window trailing behind the input currently being processed).
1039 *
1040 * The most straightforward technique turns out to be the fastest for
1041 * most input files: try all possible matches and select the longest.
1042 * The key feature of this algorithm is that insertions into the string
1043 * dictionary are very simple and thus fast, and deletions are avoided
1044 * completely. Insertions are performed at each input character, whereas
1045 * string matches are performed only when the previous match ends. So it
1046 * is preferable to spend more time in matches to allow very fast string
1047 * insertions and avoid deletions. The matching algorithm for small
1048 * strings is inspired from that of Rabin & Karp. A brute force approach
1049 * is used to find longer strings when a small match has been found.
1050 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
1051 * (by Leonid Broukhis).
1052 * A previous version of this file used a more sophisticated algorithm
1053 * (by Fiala and Greene) which is guaranteed to run in linear amortized
1054 * time, but has a larger average cost, uses more memory and is patented.
1055 * However the F&G algorithm may be faster for some highly redundant
1056 * files if the parameter max_chain_length (described below) is too large.
1057 *
1058 * ACKNOWLEDGEMENTS
1059 *
1060 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
1061 * I found it in 'freeze' written by Leonid Broukhis.
1062 * Thanks to many info-zippers for bug reports and testing.
1063 *
1064 * REFERENCES
1065 *
1066 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
1067 *
1068 * A description of the Rabin and Karp algorithm is given in the book
1069 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
1070 *
1071 * Fiala,E.R., and Greene,D.H.
1072 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
1073 *
1074 * INTERFACE
1075 *
1076 * void lm_init (int pack_level, ush *flags)
1077 * Initialize the "longest match" routines for a new file
1078 *
1079 * ulg deflate (void)
1080 * Processes a new input file and return its compressed length. Sets
1081 * the compressed length, crc, deflate flags and internal file
1082 * attributes.
1083 */
1084
1085#include <stdio.h>
1086
Eric Andersencc8ed391999-10-05 16:24:54 +00001087/* ===========================================================================
1088 * Configuration parameters
1089 */
1090
1091/* Compile with MEDIUM_MEM to reduce the memory requirements or
1092 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
1093 * entire input file can be held in memory (not possible on 16 bit systems).
1094 * Warning: defining these symbols affects HASH_BITS (see below) and thus
1095 * affects the compression ratio. The compressed output
1096 * is still correct, and might even be smaller in some cases.
1097 */
1098
1099#ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001100# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +00001101#endif
1102#ifdef MEDIUM_MEM
1103# define HASH_BITS 14
1104#endif
1105#ifndef HASH_BITS
1106# define HASH_BITS 15
1107 /* For portability to 16 bit machines, do not use values above 15. */
1108#endif
1109
1110/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
1111 * window with tab_suffix. Check that we can do this:
1112 */
1113#if (WSIZE<<1) > (1<<BITS)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001114error:cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +00001115#endif
1116#if HASH_BITS > BITS-1
Erik Andersene49d5ec2000-02-08 19:58:47 +00001117error:cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +00001118#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001119#define HASH_SIZE (unsigned)(1<<HASH_BITS)
1120#define HASH_MASK (HASH_SIZE-1)
1121#define WMASK (WSIZE-1)
1122/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +00001123#define NIL 0
1124/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +00001125#define FAST 4
1126#define SLOW 2
1127/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001128#ifndef TOO_FAR
1129# define TOO_FAR 4096
1130#endif
1131/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +00001132/* ===========================================================================
1133 * Local data used by the "longest match" routines.
1134 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001135typedef ush Pos;
1136typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001137
Eric Andersencc8ed391999-10-05 16:24:54 +00001138/* A Pos is an index in the character window. We use short instead of int to
1139 * save space in the various tables. IPos is used only for parameter passing.
1140 */
1141
1142/* DECLARE(uch, window, 2L*WSIZE); */
1143/* Sliding window. Input bytes are read into the second half of the window,
1144 * and move to the first half later to keep a dictionary of at least WSIZE
1145 * bytes. With this organization, matches are limited to a distance of
1146 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1147 * performed with a length multiple of the block size. Also, it limits
1148 * the window size to 64K, which is quite useful on MSDOS.
1149 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1150 * be less efficient).
1151 */
1152
1153/* DECLARE(Pos, prev, WSIZE); */
1154/* Link to older string with same hash index. To limit the size of this
1155 * array to 64K, this link is maintained only for the last 32K strings.
1156 * An index in this array is thus a window index modulo 32K.
1157 */
1158
1159/* DECLARE(Pos, head, 1<<HASH_BITS); */
1160/* Heads of the hash chains or NIL. */
1161
Erik Andersene49d5ec2000-02-08 19:58:47 +00001162ulg window_size = (ulg) 2 * WSIZE;
1163
Eric Andersencc8ed391999-10-05 16:24:54 +00001164/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1165 * input file length plus MIN_LOOKAHEAD.
1166 */
1167
1168long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001169
Eric Andersencc8ed391999-10-05 16:24:54 +00001170/* window position at the beginning of the current output block. Gets
1171 * negative when the window is moved backwards.
1172 */
1173
Erik Andersene49d5ec2000-02-08 19:58:47 +00001174local unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +00001175
1176#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1177/* Number of bits by which ins_h and del_h must be shifted at each
1178 * input step. It must be such that after MIN_MATCH steps, the oldest
1179 * byte no longer takes part in the hash key, that is:
1180 * H_SHIFT * MIN_MATCH >= HASH_BITS
1181 */
1182
1183unsigned int near prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001184
Eric Andersencc8ed391999-10-05 16:24:54 +00001185/* Length of the best match at previous step. Matches not greater than this
1186 * are discarded. This is used in the lazy match evaluation.
1187 */
1188
Erik Andersene49d5ec2000-02-08 19:58:47 +00001189unsigned near strstart; /* start of string to insert */
1190unsigned near match_start; /* start of matching string */
1191local int eofile; /* flag set at end of input file */
1192local unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +00001193
1194unsigned near max_chain_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001195
Eric Andersencc8ed391999-10-05 16:24:54 +00001196/* To speed up deflation, hash chains are never searched beyond this length.
1197 * A higher limit improves compression ratio but degrades the speed.
1198 */
1199
1200local unsigned int max_lazy_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001201
Eric Andersencc8ed391999-10-05 16:24:54 +00001202/* Attempt to find a better match only when the current match is strictly
1203 * smaller than this value. This mechanism is used only for compression
1204 * levels >= 4.
1205 */
1206#define max_insert_length max_lazy_match
1207/* Insert new strings in the hash table only if the match length
1208 * is not greater than this length. This saves time but degrades compression.
1209 * max_insert_length is used only for compression levels <= 3.
1210 */
1211
1212unsigned near good_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001213
Eric Andersencc8ed391999-10-05 16:24:54 +00001214/* Use a faster search when the previous match is longer than this */
1215
1216
1217/* Values for max_lazy_match, good_match and max_chain_length, depending on
1218 * the desired pack level (0..9). The values given below have been tuned to
1219 * exclude worst case performance for pathological files. Better values may be
1220 * found for specific files.
1221 */
1222
1223typedef struct config {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001224 ush good_length; /* reduce lazy search above this match length */
1225 ush max_lazy; /* do not perform lazy search above this match length */
1226 ush nice_length; /* quit search above this match length */
1227 ush max_chain;
Eric Andersencc8ed391999-10-05 16:24:54 +00001228} config;
1229
1230#ifdef FULL_SEARCH
1231# define nice_match MAX_MATCH
1232#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001233int near nice_match; /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +00001234#endif
1235
Erik Andersene49d5ec2000-02-08 19:58:47 +00001236local config configuration_table =
1237 /* 9 */ { 32, 258, 258, 4096 };
1238 /* maximum compression */
Eric Andersencc8ed391999-10-05 16:24:54 +00001239
1240/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1241 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1242 * meaning.
1243 */
1244
1245#define EQUAL 0
1246/* result of memcmp for equal strings */
1247
1248/* ===========================================================================
1249 * Prototypes for local functions.
1250 */
Erik Andersen61677fe2000-04-13 01:18:56 +00001251local void fill_window (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001252
Erik Andersen61677fe2000-04-13 01:18:56 +00001253int longest_match (IPos cur_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001254
Eric Andersencc8ed391999-10-05 16:24:54 +00001255#ifdef ASMV
Erik Andersen61677fe2000-04-13 01:18:56 +00001256void match_init (void); /* asm code initialization */
Eric Andersencc8ed391999-10-05 16:24:54 +00001257#endif
1258
1259#ifdef DEBUG
Erik Andersen61677fe2000-04-13 01:18:56 +00001260local void check_match (IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001261#endif
1262
1263/* ===========================================================================
1264 * Update a hash value with the given input byte
1265 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1266 * input characters, so that a running hash key can be computed from the
1267 * previous key instead of complete recalculation each time.
1268 */
1269#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1270
1271/* ===========================================================================
1272 * Insert string s in the dictionary and set match_head to the previous head
1273 * of the hash chain (the most recent string with same hash key). Return
1274 * the previous length of the hash chain.
1275 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1276 * input characters and the first MIN_MATCH bytes of s are valid
1277 * (except for the last MIN_MATCH-1 bytes of the input file).
1278 */
1279#define INSERT_STRING(s, match_head) \
1280 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1281 prev[(s) & WMASK] = match_head = head[ins_h], \
1282 head[ins_h] = (s))
1283
1284/* ===========================================================================
1285 * Initialize the "longest match" routines for a new file
1286 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001287void lm_init(flags)
1288ush *flags; /* general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +00001289{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001290 register unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +00001291
Erik Andersene49d5ec2000-02-08 19:58:47 +00001292 /* Initialize the hash table. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001293#if defined(MAXSEG_64K) && HASH_BITS == 15
Erik Andersene49d5ec2000-02-08 19:58:47 +00001294 for (j = 0; j < HASH_SIZE; j++)
1295 head[j] = NIL;
Eric Andersencc8ed391999-10-05 16:24:54 +00001296#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001297 memzero((char *) head, HASH_SIZE * sizeof(*head));
Eric Andersencc8ed391999-10-05 16:24:54 +00001298#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001299 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +00001300
Erik Andersene49d5ec2000-02-08 19:58:47 +00001301 /* Set the default configuration parameters:
1302 */
1303 max_lazy_match = configuration_table.max_lazy;
1304 good_match = configuration_table.good_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001305#ifndef FULL_SEARCH
Erik Andersene49d5ec2000-02-08 19:58:47 +00001306 nice_match = configuration_table.nice_length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001307#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001308 max_chain_length = configuration_table.max_chain;
1309 *flags |= SLOW;
1310 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +00001311
Erik Andersene49d5ec2000-02-08 19:58:47 +00001312 strstart = 0;
1313 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001314#ifdef ASMV
Erik Andersene49d5ec2000-02-08 19:58:47 +00001315 match_init(); /* initialize the asm code */
Eric Andersencc8ed391999-10-05 16:24:54 +00001316#endif
1317
Erik Andersene49d5ec2000-02-08 19:58:47 +00001318 lookahead = read_buf((char *) window,
1319 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001320
Erik Andersene49d5ec2000-02-08 19:58:47 +00001321 if (lookahead == 0 || lookahead == (unsigned) EOF) {
1322 eofile = 1, lookahead = 0;
1323 return;
1324 }
1325 eofile = 0;
1326 /* Make sure that we always have enough lookahead. This is important
1327 * if input comes from a device such as a tty.
1328 */
1329 while (lookahead < MIN_LOOKAHEAD && !eofile)
1330 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +00001331
Erik Andersene49d5ec2000-02-08 19:58:47 +00001332 ins_h = 0;
1333 for (j = 0; j < MIN_MATCH - 1; j++)
1334 UPDATE_HASH(ins_h, window[j]);
1335 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1336 * not important since only literal bytes will be emitted.
1337 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001338}
1339
1340/* ===========================================================================
1341 * Set match_start to the longest match starting at the given string and
1342 * return its length. Matches shorter or equal to prev_length are discarded,
1343 * in which case the result is equal to prev_length and match_start is
1344 * garbage.
1345 * IN assertions: cur_match is the head of the hash chain for the current
1346 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1347 */
1348#ifndef ASMV
1349/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1350 * match.s. The code is functionally equivalent, so you can use the C version
1351 * if desired.
1352 */
1353int longest_match(cur_match)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001354IPos cur_match; /* current match */
Eric Andersencc8ed391999-10-05 16:24:54 +00001355{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001356 unsigned chain_length = max_chain_length; /* max hash chain length */
1357 register uch *scan = window + strstart; /* current string */
1358 register uch *match; /* matched string */
1359 register int len; /* length of current match */
1360 int best_len = prev_length; /* best match length so far */
1361 IPos limit =
1362
1363 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
1364 /* Stop when cur_match becomes <= limit. To simplify the code,
1365 * we prevent matches with the string of window index 0.
1366 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001367
1368/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1369 * It is easy to get rid of this optimization if necessary.
1370 */
1371#if HASH_BITS < 8 || MAX_MATCH != 258
Erik Andersene49d5ec2000-02-08 19:58:47 +00001372 error:Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +00001373#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001374#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001375 /* Compare two bytes at a time. Note: this is not always beneficial.
1376 * Try with and without -DUNALIGNED_OK to check.
1377 */
1378 register uch *strend = window + strstart + MAX_MATCH - 1;
1379 register ush scan_start = *(ush *) scan;
1380 register ush scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001381#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001382 register uch *strend = window + strstart + MAX_MATCH;
1383 register uch scan_end1 = scan[best_len - 1];
1384 register uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001385#endif
1386
Erik Andersene49d5ec2000-02-08 19:58:47 +00001387 /* Do not waste too much time if we already have a good match: */
1388 if (prev_length >= good_match) {
1389 chain_length >>= 2;
1390 }
1391 Assert(strstart <= window_size - MIN_LOOKAHEAD,
1392 "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +00001393
Erik Andersene49d5ec2000-02-08 19:58:47 +00001394 do {
1395 Assert(cur_match < strstart, "no future");
1396 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +00001397
Erik Andersene49d5ec2000-02-08 19:58:47 +00001398 /* Skip to next match if the match length cannot increase
1399 * or if the match length is less than 2:
1400 */
Eric Andersencc8ed391999-10-05 16:24:54 +00001401#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001402 /* This code assumes sizeof(unsigned short) == 2. Do not use
1403 * UNALIGNED_OK if your compiler uses a different size.
1404 */
1405 if (*(ush *) (match + best_len - 1) != scan_end ||
1406 *(ush *) match != scan_start)
1407 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001408
Erik Andersene49d5ec2000-02-08 19:58:47 +00001409 /* It is not necessary to compare scan[2] and match[2] since they are
1410 * always equal when the other bytes match, given that the hash keys
1411 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1412 * strstart+3, +5, ... up to strstart+257. We check for insufficient
1413 * lookahead only every 4th comparison; the 128th check will be made
1414 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1415 * necessary to put more guard bytes at the end of the window, or
1416 * to check more often for insufficient lookahead.
1417 */
1418 scan++, match++;
1419 do {
1420 } while (*(ush *) (scan += 2) == *(ush *) (match += 2) &&
1421 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1422 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1423 *(ush *) (scan += 2) == *(ush *) (match += 2) &&
1424 scan < strend);
1425 /* The funny "do {}" generates better code on most compilers */
Eric Andersencc8ed391999-10-05 16:24:54 +00001426
Erik Andersene49d5ec2000-02-08 19:58:47 +00001427 /* Here, scan <= window+strstart+257 */
1428 Assert(scan <= window + (unsigned) (window_size - 1), "wild scan");
1429 if (*scan == *match)
1430 scan++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001431
Erik Andersene49d5ec2000-02-08 19:58:47 +00001432 len = (MAX_MATCH - 1) - (int) (strend - scan);
1433 scan = strend - (MAX_MATCH - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001434
Erik Andersene49d5ec2000-02-08 19:58:47 +00001435#else /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001436
Erik Andersene49d5ec2000-02-08 19:58:47 +00001437 if (match[best_len] != scan_end ||
1438 match[best_len - 1] != scan_end1 ||
1439 *match != *scan || *++match != scan[1])
1440 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +00001441
Erik Andersene49d5ec2000-02-08 19:58:47 +00001442 /* The check at best_len-1 can be removed because it will be made
1443 * again later. (This heuristic is not always a win.)
1444 * It is not necessary to compare scan[2] and match[2] since they
1445 * are always equal when the other bytes match, given that
1446 * the hash keys are equal and that HASH_BITS >= 8.
1447 */
1448 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001449
Erik Andersene49d5ec2000-02-08 19:58:47 +00001450 /* We check for insufficient lookahead only every 8th comparison;
1451 * the 256th check will be made at strstart+258.
1452 */
1453 do {
1454 } while (*++scan == *++match && *++scan == *++match &&
1455 *++scan == *++match && *++scan == *++match &&
1456 *++scan == *++match && *++scan == *++match &&
1457 *++scan == *++match && *++scan == *++match &&
1458 scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +00001459
Erik Andersene49d5ec2000-02-08 19:58:47 +00001460 len = MAX_MATCH - (int) (strend - scan);
1461 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +00001462
Erik Andersene49d5ec2000-02-08 19:58:47 +00001463#endif /* UNALIGNED_OK */
Eric Andersencc8ed391999-10-05 16:24:54 +00001464
Erik Andersene49d5ec2000-02-08 19:58:47 +00001465 if (len > best_len) {
1466 match_start = cur_match;
1467 best_len = len;
1468 if (len >= nice_match)
1469 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001470#ifdef UNALIGNED_OK
Erik Andersene49d5ec2000-02-08 19:58:47 +00001471 scan_end = *(ush *) (scan + best_len - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001472#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001473 scan_end1 = scan[best_len - 1];
1474 scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +00001475#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001476 }
1477 } while ((cur_match = prev[cur_match & WMASK]) > limit
1478 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001479
Erik Andersene49d5ec2000-02-08 19:58:47 +00001480 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001481}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001482#endif /* ASMV */
Eric Andersencc8ed391999-10-05 16:24:54 +00001483
1484#ifdef DEBUG
1485/* ===========================================================================
1486 * Check that the match at match_start is indeed a match.
1487 */
1488local void check_match(start, match, length)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001489IPos start, match;
1490int length;
Eric Andersencc8ed391999-10-05 16:24:54 +00001491{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001492 /* check that the match is indeed a match */
1493 if (memcmp((char *) window + match,
1494 (char *) window + start, length) != EQUAL) {
1495 fprintf(stderr,
1496 " start %d, match %d, length %d\n", start, match, length);
Matt Kraaidd19c692001-01-31 19:00:21 +00001497 error_msg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001498 }
1499 if (verbose > 1) {
1500 fprintf(stderr, "\\[%d,%d]", start - match, length);
1501 do {
1502 putc(window[start++], stderr);
1503 } while (--length != 0);
1504 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001505}
1506#else
1507# define check_match(start, match, length)
1508#endif
1509
1510/* ===========================================================================
1511 * Fill the window when the lookahead becomes insufficient.
1512 * Updates strstart and lookahead, and sets eofile if end of input file.
1513 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1514 * OUT assertions: at least one byte has been read, or eofile is set;
1515 * file reads are performed for at least two bytes (required for the
1516 * translate_eol option).
1517 */
1518local void fill_window()
1519{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001520 register unsigned n, m;
1521 unsigned more =
Eric Andersencc8ed391999-10-05 16:24:54 +00001522
Erik Andersene49d5ec2000-02-08 19:58:47 +00001523 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
1524 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001525
Erik Andersene49d5ec2000-02-08 19:58:47 +00001526 /* If the window is almost full and there is insufficient lookahead,
1527 * move the upper half to the lower one to make room in the upper half.
1528 */
1529 if (more == (unsigned) EOF) {
1530 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1531 * and lookahead == 1 (input done one byte at time)
1532 */
1533 more--;
1534 } else if (strstart >= WSIZE + MAX_DIST) {
1535 /* By the IN assertion, the window is not empty so we can't confuse
1536 * more == 0 with more == 64K on a 16 bit machine.
1537 */
1538 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +00001539
Erik Andersene49d5ec2000-02-08 19:58:47 +00001540 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
1541 match_start -= WSIZE;
1542 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +00001543
Erik Andersene49d5ec2000-02-08 19:58:47 +00001544 block_start -= (long) WSIZE;
1545
1546 for (n = 0; n < HASH_SIZE; n++) {
1547 m = head[n];
1548 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1549 }
1550 for (n = 0; n < WSIZE; n++) {
1551 m = prev[n];
1552 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1553 /* If n is not on any hash chain, prev[n] is garbage but
1554 * its value will never be used.
1555 */
1556 }
1557 more += WSIZE;
1558 }
1559 /* At this point, more >= 2 */
1560 if (!eofile) {
1561 n = read_buf((char *) window + strstart + lookahead, more);
1562 if (n == 0 || n == (unsigned) EOF) {
1563 eofile = 1;
1564 } else {
1565 lookahead += n;
1566 }
1567 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001568}
1569
1570/* ===========================================================================
1571 * Flush the current block, with given end-of-file flag.
1572 * IN assertion: strstart is set to the end of the current match.
1573 */
1574#define FLUSH_BLOCK(eof) \
1575 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1576 (char*)NULL, (long)strstart - block_start, (eof))
1577
1578/* ===========================================================================
1579 * Same as above, but achieves better compression. We use a lazy
1580 * evaluation for matches: a match is finally adopted only if there is
1581 * no better match at the next window position.
1582 */
1583ulg deflate()
1584{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001585 IPos hash_head; /* head of hash chain */
1586 IPos prev_match; /* previous match */
1587 int flush; /* set if current block must be flushed */
1588 int match_available = 0; /* set if previous match exists */
1589 register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1590
Eric Andersencc8ed391999-10-05 16:24:54 +00001591#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00001592 extern long isize; /* byte length of input file, for debug only */
Eric Andersencc8ed391999-10-05 16:24:54 +00001593#endif
1594
Erik Andersene49d5ec2000-02-08 19:58:47 +00001595 /* Process the input block. */
1596 while (lookahead != 0) {
1597 /* Insert the string window[strstart .. strstart+2] in the
1598 * dictionary, and set hash_head to the head of the hash chain:
1599 */
1600 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001601
Erik Andersene49d5ec2000-02-08 19:58:47 +00001602 /* Find the longest match, discarding those <= prev_length.
1603 */
1604 prev_length = match_length, prev_match = match_start;
1605 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001606
Erik Andersene49d5ec2000-02-08 19:58:47 +00001607 if (hash_head != NIL && prev_length < max_lazy_match &&
1608 strstart - hash_head <= MAX_DIST) {
1609 /* To simplify the code, we prevent matches with the string
1610 * of window index 0 (in particular we have to avoid a match
1611 * of the string with itself at the start of the input file).
1612 */
1613 match_length = longest_match(hash_head);
1614 /* longest_match() sets match_start */
1615 if (match_length > lookahead)
1616 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001617
Erik Andersene49d5ec2000-02-08 19:58:47 +00001618 /* Ignore a length 3 match if it is too distant: */
1619 if (match_length == MIN_MATCH
1620 && strstart - match_start > TOO_FAR) {
1621 /* If prev_match is also MIN_MATCH, match_start is garbage
1622 * but we will ignore the current match anyway.
1623 */
1624 match_length--;
1625 }
1626 }
1627 /* If there was a match at the previous step and the current
1628 * match is not better, output the previous match:
1629 */
1630 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001631
Erik Andersene49d5ec2000-02-08 19:58:47 +00001632 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001633
Erik Andersene49d5ec2000-02-08 19:58:47 +00001634 flush =
1635 ct_tally(strstart - 1 - prev_match,
1636 prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001637
Erik Andersene49d5ec2000-02-08 19:58:47 +00001638 /* Insert in hash table all strings up to the end of the match.
1639 * strstart-1 and strstart are already inserted.
1640 */
1641 lookahead -= prev_length - 1;
1642 prev_length -= 2;
1643 do {
1644 strstart++;
1645 INSERT_STRING(strstart, hash_head);
1646 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1647 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1648 * these bytes are garbage, but it does not matter since the
1649 * next lookahead bytes will always be emitted as literals.
1650 */
1651 } while (--prev_length != 0);
1652 match_available = 0;
1653 match_length = MIN_MATCH - 1;
1654 strstart++;
1655 if (flush)
1656 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001657
Erik Andersene49d5ec2000-02-08 19:58:47 +00001658 } else if (match_available) {
1659 /* If there was no match at the previous position, output a
1660 * single literal. If there was a match but the current match
1661 * is longer, truncate the previous match to a single literal.
1662 */
1663 Tracevv((stderr, "%c", window[strstart - 1]));
1664 if (ct_tally(0, window[strstart - 1])) {
1665 FLUSH_BLOCK(0), block_start = strstart;
1666 }
1667 strstart++;
1668 lookahead--;
1669 } else {
1670 /* There is no previous match to compare with, wait for
1671 * the next step to decide.
1672 */
1673 match_available = 1;
1674 strstart++;
1675 lookahead--;
1676 }
1677 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001678
Erik Andersene49d5ec2000-02-08 19:58:47 +00001679 /* Make sure that we always have enough lookahead, except
1680 * at the end of the input file. We need MAX_MATCH bytes
1681 * for the next match, plus MIN_MATCH bytes to insert the
1682 * string following the next match.
1683 */
1684 while (lookahead < MIN_LOOKAHEAD && !eofile)
1685 fill_window();
1686 }
1687 if (match_available)
1688 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001689
Erik Andersene49d5ec2000-02-08 19:58:47 +00001690 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001691}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001692
Eric Andersencc8ed391999-10-05 16:24:54 +00001693/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1694 * Copyright (C) 1992-1993 Jean-loup Gailly
1695 * The unzip code was written and put in the public domain by Mark Adler.
1696 * Portions of the lzw code are derived from the public domain 'compress'
1697 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1698 * Ken Turkowski, Dave Mack and Peter Jannesen.
1699 *
1700 * See the license_msg below and the file COPYING for the software license.
1701 * See the file algorithm.doc for the compression algorithms and file formats.
1702 */
1703
1704/* Compress files with zip algorithm and 'compress' interface.
1705 * See usage() and help() functions below for all options.
1706 * Outputs:
1707 * file.gz: compressed file with same mode, owner, and utimes
1708 * or stdout with -c option or if stdin used as input.
1709 * If the output file name had to be truncated, the original name is kept
1710 * in the compressed file.
1711 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1712 *
1713 * Using gz on MSDOS would create too many file name conflicts. For
1714 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1715 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1716 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1717 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
1718 *
1719 * For the meaning of all compilation flags, see comments in Makefile.in.
1720 */
1721
Eric Andersencc8ed391999-10-05 16:24:54 +00001722#include <ctype.h>
1723#include <sys/types.h>
1724#include <signal.h>
Eric Andersencc8ed391999-10-05 16:24:54 +00001725#include <errno.h>
1726
1727 /* configuration */
1728
1729#ifdef NO_TIME_H
1730# include <sys/time.h>
1731#else
1732# include <time.h>
1733#endif
1734
1735#ifndef NO_FCNTL_H
1736# include <fcntl.h>
1737#endif
1738
1739#ifdef HAVE_UNISTD_H
1740# include <unistd.h>
1741#endif
1742
Eric Andersencc8ed391999-10-05 16:24:54 +00001743#if defined(DIRENT)
1744# include <dirent.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001745typedef struct dirent dir_type;
1746
Eric Andersencc8ed391999-10-05 16:24:54 +00001747# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1748# define DIR_OPT "DIRENT"
1749#else
1750# define NLENGTH(dirent) ((dirent)->d_namlen)
1751# ifdef SYSDIR
1752# include <sys/dir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001753typedef struct direct dir_type;
1754
Eric Andersencc8ed391999-10-05 16:24:54 +00001755# define DIR_OPT "SYSDIR"
1756# else
1757# ifdef SYSNDIR
1758# include <sys/ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001759typedef struct direct dir_type;
1760
Eric Andersencc8ed391999-10-05 16:24:54 +00001761# define DIR_OPT "SYSNDIR"
1762# else
1763# ifdef NDIR
1764# include <ndir.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +00001765typedef struct direct dir_type;
1766
Eric Andersencc8ed391999-10-05 16:24:54 +00001767# define DIR_OPT "NDIR"
1768# else
1769# define NO_DIR
1770# define DIR_OPT "NO_DIR"
1771# endif
1772# endif
1773# endif
1774#endif
1775
1776#ifndef NO_UTIME
1777# ifndef NO_UTIME_H
1778# include <utime.h>
1779# define TIME_OPT "UTIME"
1780# else
1781# ifdef HAVE_SYS_UTIME_H
1782# include <sys/utime.h>
1783# define TIME_OPT "SYS_UTIME"
1784# else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001785struct utimbuf {
1786 time_t actime;
1787 time_t modtime;
1788};
1789
Eric Andersencc8ed391999-10-05 16:24:54 +00001790# define TIME_OPT ""
1791# endif
1792# endif
1793#else
1794# define TIME_OPT "NO_UTIME"
1795#endif
1796
1797#if !defined(S_ISDIR) && defined(S_IFDIR)
1798# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1799#endif
1800#if !defined(S_ISREG) && defined(S_IFREG)
1801# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1802#endif
1803
Erik Andersen61677fe2000-04-13 01:18:56 +00001804typedef RETSIGTYPE(*sig_type) (int);
Eric Andersencc8ed391999-10-05 16:24:54 +00001805
1806#ifndef O_BINARY
Erik Andersene49d5ec2000-02-08 19:58:47 +00001807# define O_BINARY 0 /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001808#endif
1809
1810#ifndef O_CREAT
1811 /* Pure BSD system? */
1812# include <sys/file.h>
1813# ifndef O_CREAT
1814# define O_CREAT FCREAT
1815# endif
1816# ifndef O_EXCL
1817# define O_EXCL FEXCL
1818# endif
1819#endif
1820
1821#ifndef S_IRUSR
1822# define S_IRUSR 0400
1823#endif
1824#ifndef S_IWUSR
1825# define S_IWUSR 0200
1826#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001827#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
Eric Andersencc8ed391999-10-05 16:24:54 +00001828
1829#ifndef MAX_PATH_LEN
Erik Andersene49d5ec2000-02-08 19:58:47 +00001830# define MAX_PATH_LEN 1024 /* max pathname length */
Eric Andersencc8ed391999-10-05 16:24:54 +00001831#endif
1832
1833#ifndef SEEK_END
1834# define SEEK_END 2
1835#endif
1836
1837#ifdef NO_OFF_T
Erik Andersene49d5ec2000-02-08 19:58:47 +00001838typedef long off_t;
Erik Andersen61677fe2000-04-13 01:18:56 +00001839off_t lseek (int fd, off_t offset, int whence);
Eric Andersencc8ed391999-10-05 16:24:54 +00001840#endif
1841
1842/* Separator for file name parts (see shorten_name()) */
1843#ifdef NO_MULTIPLE_DOTS
1844# define PART_SEP "-"
1845#else
1846# define PART_SEP "."
1847#endif
1848
1849 /* global buffers */
1850
Erik Andersene49d5ec2000-02-08 19:58:47 +00001851DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1852DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1853DECLARE(ush, d_buf, DIST_BUFSIZE);
1854DECLARE(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001855#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001856DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001857#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001858DECLARE(ush, tab_prefix0, 1L << (BITS - 1));
1859DECLARE(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001860#endif
1861
1862 /* local variables */
1863
Eric Andersen63a86222000-11-07 06:52:13 +00001864static int foreground; /* set if program run in foreground */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001865static int method = DEFLATED; /* compression method */
1866static int exit_code = OK; /* program exit code */
Eric Andersen63a86222000-11-07 06:52:13 +00001867static int part_nb; /* number of parts in .gz file */
1868static long time_stamp; /* original time stamp (modification time) */
1869static long ifile_size; /* input file size, -1 for devices (debug only) */
1870static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
1871static int z_len; /* strlen(z_suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001872
Eric Andersen63a86222000-11-07 06:52:13 +00001873static long bytes_in; /* number of input bytes */
1874static long bytes_out; /* number of output bytes */
1875static char ifname[MAX_PATH_LEN]; /* input file name */
1876static char ofname[MAX_PATH_LEN]; /* output file name */
1877static int ifd; /* input file descriptor */
1878static int ofd; /* output file descriptor */
1879static unsigned insize; /* valid bytes in inbuf */
1880static unsigned outcnt; /* bytes in output buffer */
Eric Andersencc8ed391999-10-05 16:24:54 +00001881
1882/* local functions */
1883
Eric Andersencc8ed391999-10-05 16:24:54 +00001884#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1885
1886/* ======================================================================== */
1887// int main (argc, argv)
1888// int argc;
1889// char **argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001890int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001891{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001892 int result;
1893 int inFileNum;
1894 int outFileNum;
1895 struct stat statBuf;
1896 char *delFileName;
1897 int tostdout = 0;
1898 int fromstdin = 0;
Eric Andersenea824fb2000-07-21 22:17:39 +00001899 int force = 0;
Matt Kraai53265542001-04-18 16:05:34 +00001900 int opt;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001901
Matt Kraai53265542001-04-18 16:05:34 +00001902 while ((opt = getopt(argc, argv, "cf123456789d")) != -1) {
1903 switch (opt) {
1904 case 'c':
Erik Andersene49d5ec2000-02-08 19:58:47 +00001905 tostdout = 1;
Matt Kraai53265542001-04-18 16:05:34 +00001906 break;
1907 case 'f':
1908 force = 1;
1909 break;
1910 /* Ignore 1-9 (compression level) options */
1911 case '1': case '2': case '3': case '4': case '5':
1912 case '6': case '7': case '8': case '9':
1913 break;
Glenn L McGrath528ef502001-04-11 03:45:37 +00001914#ifdef BB_GUNZIP
Matt Kraai53265542001-04-18 16:05:34 +00001915 case 'd':
1916 optind = 1;
1917 return gunzip_main(argc, argv);
Glenn L McGrath528ef502001-04-11 03:45:37 +00001918#endif
Matt Kraai53265542001-04-18 16:05:34 +00001919 default:
1920 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001921 }
1922 }
Matt Kraai53265542001-04-18 16:05:34 +00001923 if (optind == argc) {
Eric Andersenea824fb2000-07-21 22:17:39 +00001924 fromstdin = 1;
Eric Andersen5eb59122000-09-01 00:33:06 +00001925 tostdout = 1;
1926 }
Eric Andersenea824fb2000-07-21 22:17:39 +00001927
Eric Andersenea824fb2000-07-21 22:17:39 +00001928 if (isatty(fileno(stdout)) && tostdout==1 && force==0)
Matt Kraai53265542001-04-18 16:05:34 +00001929 error_msg_and_die( "compressed data not written to terminal. Use -f to force it.");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001930
1931 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1932 if (foreground) {
1933 (void) signal(SIGINT, (sig_type) abort_gzip);
1934 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001935#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001936 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1937 (void) signal(SIGTERM, (sig_type) abort_gzip);
1938 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001939#endif
1940#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001941 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1942 (void) signal(SIGHUP, (sig_type) abort_gzip);
1943 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001944#endif
1945
Erik Andersene49d5ec2000-02-08 19:58:47 +00001946 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1947 z_len = strlen(z_suffix);
Eric Andersencc8ed391999-10-05 16:24:54 +00001948
Erik Andersene49d5ec2000-02-08 19:58:47 +00001949 /* Allocate all global buffers (for DYN_ALLOC option) */
1950 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1951 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1952 ALLOC(ush, d_buf, DIST_BUFSIZE);
1953 ALLOC(uch, window, 2L * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +00001954#ifndef MAXSEG_64K
Erik Andersene49d5ec2000-02-08 19:58:47 +00001955 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001956#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00001957 ALLOC(ush, tab_prefix0, 1L << (BITS - 1));
1958 ALLOC(ush, tab_prefix1, 1L << (BITS - 1));
Eric Andersencc8ed391999-10-05 16:24:54 +00001959#endif
1960
Erik Andersene49d5ec2000-02-08 19:58:47 +00001961 if (fromstdin == 1) {
1962 strcpy(ofname, "stdin");
Eric Andersen96bcfd31999-11-12 01:30:18 +00001963
Erik Andersene49d5ec2000-02-08 19:58:47 +00001964 inFileNum = fileno(stdin);
1965 time_stamp = 0; /* time unknown by default */
1966 ifile_size = -1L; /* convention for unknown size */
1967 } else {
1968 /* Open up the input file */
Matt Kraai53265542001-04-18 16:05:34 +00001969 strncpy(ifname, argv[optind], MAX_PATH_LEN);
Eric Andersen96bcfd31999-11-12 01:30:18 +00001970
Matt Kraaia9819b22000-12-22 01:48:07 +00001971 /* Open input file */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001972 inFileNum = open(ifname, O_RDONLY);
Matt Kraaia9819b22000-12-22 01:48:07 +00001973 if (inFileNum < 0)
1974 perror_msg_and_die("%s", ifname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001975 /* Get the time stamp on the input file. */
Matt Kraaia9819b22000-12-22 01:48:07 +00001976 if (stat(ifname, &statBuf) < 0)
1977 perror_msg_and_die("%s", ifname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001978 time_stamp = statBuf.st_ctime;
1979 ifile_size = statBuf.st_size;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001980 }
Eric Andersen96bcfd31999-11-12 01:30:18 +00001981
1982
Erik Andersene49d5ec2000-02-08 19:58:47 +00001983 if (tostdout == 1) {
1984 /* And get to work */
1985 strcpy(ofname, "stdout");
1986 outFileNum = fileno(stdout);
1987 SET_BINARY_MODE(fileno(stdout));
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001988
Erik Andersene49d5ec2000-02-08 19:58:47 +00001989 clear_bufs(); /* clear input and output buffers */
1990 part_nb = 0;
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001991
Erik Andersene49d5ec2000-02-08 19:58:47 +00001992 /* Actually do the compression/decompression. */
1993 zip(inFileNum, outFileNum);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001994
Erik Andersene49d5ec2000-02-08 19:58:47 +00001995 } else {
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001996
Erik Andersene49d5ec2000-02-08 19:58:47 +00001997 /* And get to work */
1998 strncpy(ofname, ifname, MAX_PATH_LEN - 4);
1999 strcat(ofname, ".gz");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00002000
Eric Andersen0dfac6b1999-11-11 05:46:32 +00002001
Erik Andersene49d5ec2000-02-08 19:58:47 +00002002 /* Open output fille */
Erik Andersen4d1d0111999-12-17 18:44:15 +00002003#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002004 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00002005#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002006 outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00002007#endif
Matt Kraaia9819b22000-12-22 01:48:07 +00002008 if (outFileNum < 0)
2009 perror_msg_and_die("%s", ofname);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002010 SET_BINARY_MODE(outFileNum);
2011 /* Set permissions on the file */
2012 fchmod(outFileNum, statBuf.st_mode);
2013
2014 clear_bufs(); /* clear input and output buffers */
2015 part_nb = 0;
2016
2017 /* Actually do the compression/decompression. */
2018 result = zip(inFileNum, outFileNum);
2019 close(outFileNum);
2020 close(inFileNum);
2021 /* Delete the original file */
2022 if (result == OK)
2023 delFileName = ifname;
2024 else
2025 delFileName = ofname;
2026
Matt Kraaia9819b22000-12-22 01:48:07 +00002027 if (unlink(delFileName) < 0)
2028 perror_msg_and_die("%s", delFileName);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00002029 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00002030
Eric Andersenb6106152000-06-19 17:25:40 +00002031 return(exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002032}
2033
Eric Andersencc8ed391999-10-05 16:24:54 +00002034/* trees.c -- output deflated data using Huffman coding
2035 * Copyright (C) 1992-1993 Jean-loup Gailly
2036 * This is free software; you can redistribute it and/or modify it under the
2037 * terms of the GNU General Public License, see the file COPYING.
2038 */
2039
2040/*
2041 * PURPOSE
2042 *
2043 * Encode various sets of source values using variable-length
2044 * binary code trees.
2045 *
2046 * DISCUSSION
2047 *
2048 * The PKZIP "deflation" process uses several Huffman trees. The more
2049 * common source values are represented by shorter bit sequences.
2050 *
2051 * Each code tree is stored in the ZIP file in a compressed form
2052 * which is itself a Huffman encoding of the lengths of
2053 * all the code strings (in ascending order by source values).
2054 * The actual code strings are reconstructed from the lengths in
2055 * the UNZIP process, as described in the "application note"
2056 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
2057 *
2058 * REFERENCES
2059 *
2060 * Lynch, Thomas J.
2061 * Data Compression: Techniques and Applications, pp. 53-55.
2062 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
2063 *
2064 * Storer, James A.
2065 * Data Compression: Methods and Theory, pp. 49-50.
2066 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
2067 *
2068 * Sedgewick, R.
2069 * Algorithms, p290.
2070 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
2071 *
2072 * INTERFACE
2073 *
2074 * void ct_init (ush *attr, int *methodp)
2075 * Allocate the match buffer, initialize the various tables and save
2076 * the location of the internal file attribute (ascii/binary) and
2077 * method (DEFLATE/STORE)
2078 *
2079 * void ct_tally (int dist, int lc);
2080 * Save the match info and tally the frequency counts.
2081 *
2082 * long flush_block (char *buf, ulg stored_len, int eof)
2083 * Determine the best encoding for the current block: dynamic trees,
2084 * static trees or store, and output the encoded block to the zip
2085 * file. Returns the total compressed length for the file so far.
2086 *
2087 */
2088
2089#include <ctype.h>
2090
Eric Andersencc8ed391999-10-05 16:24:54 +00002091/* ===========================================================================
2092 * Constants
2093 */
2094
2095#define MAX_BITS 15
2096/* All codes must not exceed MAX_BITS bits */
2097
2098#define MAX_BL_BITS 7
2099/* Bit length codes must not exceed MAX_BL_BITS bits */
2100
2101#define LENGTH_CODES 29
2102/* number of length codes, not counting the special END_BLOCK code */
2103
2104#define LITERALS 256
2105/* number of literal bytes 0..255 */
2106
2107#define END_BLOCK 256
2108/* end of block literal code */
2109
2110#define L_CODES (LITERALS+1+LENGTH_CODES)
2111/* number of Literal or Length codes, including the END_BLOCK code */
2112
2113#define D_CODES 30
2114/* number of distance codes */
2115
2116#define BL_CODES 19
2117/* number of codes used to transfer the bit lengths */
2118
2119
Erik Andersene49d5ec2000-02-08 19:58:47 +00002120local int near extra_lbits[LENGTH_CODES] /* extra bits for each length code */
2121 = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
2122 4, 4, 5, 5, 5, 5, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002123
Erik Andersene49d5ec2000-02-08 19:58:47 +00002124local int near extra_dbits[D_CODES] /* extra bits for each distance code */
2125 = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
2126 10, 10, 11, 11, 12, 12, 13, 13 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002127
Erik Andersene49d5ec2000-02-08 19:58:47 +00002128local int near extra_blbits[BL_CODES] /* extra bits for each bit length code */
2129= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002130
2131#define STORED_BLOCK 0
2132#define STATIC_TREES 1
2133#define DYN_TREES 2
2134/* The three kinds of block type */
2135
2136#ifndef LIT_BUFSIZE
2137# ifdef SMALL_MEM
2138# define LIT_BUFSIZE 0x2000
2139# else
2140# ifdef MEDIUM_MEM
2141# define LIT_BUFSIZE 0x4000
2142# else
2143# define LIT_BUFSIZE 0x8000
2144# endif
2145# endif
2146#endif
2147#ifndef DIST_BUFSIZE
2148# define DIST_BUFSIZE LIT_BUFSIZE
2149#endif
2150/* Sizes of match buffers for literals/lengths and distances. There are
2151 * 4 reasons for limiting LIT_BUFSIZE to 64K:
2152 * - frequencies can be kept in 16 bit counters
2153 * - if compression is not successful for the first block, all input data is
2154 * still in the window so we can still emit a stored block even when input
2155 * comes from standard input. (This can also be done for all blocks if
2156 * LIT_BUFSIZE is not greater than 32K.)
2157 * - if compression is not successful for a file smaller than 64K, we can
2158 * even emit a stored file instead of a stored block (saving 5 bytes).
2159 * - creating new Huffman trees less frequently may not provide fast
2160 * adaptation to changes in the input data statistics. (Take for
2161 * example a binary file with poorly compressible code followed by
2162 * a highly compressible string table.) Smaller buffer sizes give
2163 * fast adaptation but have of course the overhead of transmitting trees
2164 * more frequently.
2165 * - I can't count above 4
2166 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2167 * memory at the expense of compression). Some optimizations would be possible
2168 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2169 */
2170#if LIT_BUFSIZE > INBUFSIZ
Erik Andersene49d5ec2000-02-08 19:58:47 +00002171error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00002172#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00002173#define REP_3_6 16
2174/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002175#define REPZ_3_10 17
2176/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00002177#define REPZ_11_138 18
Erik Andersene49d5ec2000-02-08 19:58:47 +00002178/* repeat a zero length 11-138 times (7 bits of repeat count) *//* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00002179 * Local data
Erik Andersene49d5ec2000-02-08 19:58:47 +00002180 *//* Data structure describing a single value and its code string. */ typedef struct ct_data {
2181 union {
2182 ush freq; /* frequency count */
2183 ush code; /* bit string */
2184 } fc;
2185 union {
2186 ush dad; /* father node in Huffman tree */
2187 ush len; /* length of bit string */
2188 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00002189} ct_data;
2190
2191#define Freq fc.freq
2192#define Code fc.code
2193#define Dad dl.dad
2194#define Len dl.len
2195
2196#define HEAP_SIZE (2*L_CODES+1)
2197/* maximum heap size */
2198
Erik Andersene49d5ec2000-02-08 19:58:47 +00002199local ct_data near dyn_ltree[HEAP_SIZE]; /* literal and length tree */
2200local ct_data near dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002201
Erik Andersene49d5ec2000-02-08 19:58:47 +00002202local ct_data near static_ltree[L_CODES + 2];
2203
Eric Andersencc8ed391999-10-05 16:24:54 +00002204/* The static literal tree. Since the bit lengths are imposed, there is no
2205 * need for the L_CODES extra codes used during heap construction. However
2206 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2207 * below).
2208 */
2209
2210local ct_data near static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002211
Eric Andersencc8ed391999-10-05 16:24:54 +00002212/* The static distance tree. (Actually a trivial tree since all codes use
2213 * 5 bits.)
2214 */
2215
Erik Andersene49d5ec2000-02-08 19:58:47 +00002216local ct_data near bl_tree[2 * BL_CODES + 1];
2217
Eric Andersencc8ed391999-10-05 16:24:54 +00002218/* Huffman tree for the bit lengths */
2219
2220typedef struct tree_desc {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002221 ct_data near *dyn_tree; /* the dynamic tree */
2222 ct_data near *static_tree; /* corresponding static tree or NULL */
2223 int near *extra_bits; /* extra bits for each code or NULL */
2224 int extra_base; /* base index for extra_bits */
2225 int elems; /* max number of elements in the tree */
2226 int max_length; /* max bit length for the codes */
2227 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002228} tree_desc;
2229
2230local tree_desc near l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002231 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
2232 MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002233
2234local tree_desc near d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002235 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002236
2237local tree_desc near bl_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00002238 { bl_tree, (ct_data near *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
2239 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00002240
2241
Erik Andersene49d5ec2000-02-08 19:58:47 +00002242local ush near bl_count[MAX_BITS + 1];
2243
Eric Andersencc8ed391999-10-05 16:24:54 +00002244/* number of codes at each bit length for an optimal tree */
2245
2246local uch near bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00002247= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
2248
Eric Andersencc8ed391999-10-05 16:24:54 +00002249/* The lengths of the bit length codes are sent in order of decreasing
2250 * probability, to avoid transmitting the lengths for unused bit length codes.
2251 */
2252
Erik Andersene49d5ec2000-02-08 19:58:47 +00002253local int near heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
2254local int heap_len; /* number of elements in the heap */
2255local int heap_max; /* element of largest frequency */
2256
Eric Andersencc8ed391999-10-05 16:24:54 +00002257/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2258 * The same heap array is used to build all trees.
2259 */
2260
Erik Andersene49d5ec2000-02-08 19:58:47 +00002261local uch near depth[2 * L_CODES + 1];
2262
Eric Andersencc8ed391999-10-05 16:24:54 +00002263/* Depth of each subtree used as tie breaker for trees of equal frequency */
2264
Erik Andersene49d5ec2000-02-08 19:58:47 +00002265local uch length_code[MAX_MATCH - MIN_MATCH + 1];
2266
Eric Andersencc8ed391999-10-05 16:24:54 +00002267/* length code for each normalized match length (0 == MIN_MATCH) */
2268
2269local uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002270
Eric Andersencc8ed391999-10-05 16:24:54 +00002271/* distance codes. The first 256 values correspond to the distances
2272 * 3 .. 258, the last 256 values correspond to the top 8 bits of
2273 * the 15 bit distances.
2274 */
2275
2276local int near base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002277
Eric Andersencc8ed391999-10-05 16:24:54 +00002278/* First normalized length for each code (0 = MIN_MATCH) */
2279
2280local int near base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00002281
Eric Andersencc8ed391999-10-05 16:24:54 +00002282/* First normalized distance for each code (0 = distance of 1) */
2283
2284#define l_buf inbuf
2285/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
2286
2287/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2288
Erik Andersene49d5ec2000-02-08 19:58:47 +00002289local uch near flag_buf[(LIT_BUFSIZE / 8)];
2290
Eric Andersencc8ed391999-10-05 16:24:54 +00002291/* flag_buf is a bit array distinguishing literals from lengths in
2292 * l_buf, thus indicating the presence or absence of a distance.
2293 */
2294
Erik Andersene49d5ec2000-02-08 19:58:47 +00002295local unsigned last_lit; /* running index in l_buf */
2296local unsigned last_dist; /* running index in d_buf */
2297local unsigned last_flags; /* running index in flag_buf */
2298local uch flags; /* current flags not yet saved in flag_buf */
2299local uch flag_bit; /* current bit used in flags */
2300
Eric Andersencc8ed391999-10-05 16:24:54 +00002301/* bits are filled in flags starting at bit 0 (least significant).
2302 * Note: these flags are overkill in the current code since we don't
2303 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2304 */
2305
Erik Andersene49d5ec2000-02-08 19:58:47 +00002306local ulg opt_len; /* bit length of current block with optimal trees */
2307local ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00002308
Erik Andersene49d5ec2000-02-08 19:58:47 +00002309local ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002310
Erik Andersene49d5ec2000-02-08 19:58:47 +00002311local ulg input_len; /* total byte length of input file */
2312
Eric Andersencc8ed391999-10-05 16:24:54 +00002313/* input_len is for debugging only since we can get it by other means. */
2314
Erik Andersene49d5ec2000-02-08 19:58:47 +00002315ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
2316int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00002317
2318#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +00002319extern ulg bits_sent; /* bit length of the compressed data */
2320extern long isize; /* byte length of input file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002321#endif
2322
Erik Andersene49d5ec2000-02-08 19:58:47 +00002323extern long block_start; /* window offset of current block */
2324extern unsigned near strstart; /* window offset of current string */
Eric Andersencc8ed391999-10-05 16:24:54 +00002325
2326/* ===========================================================================
2327 * Local (static) routines in this file.
2328 */
2329
Erik Andersen61677fe2000-04-13 01:18:56 +00002330local void init_block (void);
2331local void pqdownheap (ct_data near * tree, int k);
2332local void gen_bitlen (tree_desc near * desc);
2333local void gen_codes (ct_data near * tree, int max_code);
2334local void build_tree (tree_desc near * desc);
2335local void scan_tree (ct_data near * tree, int max_code);
2336local void send_tree (ct_data near * tree, int max_code);
2337local int build_bl_tree (void);
2338local void send_all_trees (int lcodes, int dcodes, int blcodes);
2339local void compress_block (ct_data near * ltree, ct_data near * dtree);
2340local void set_file_type (void);
Eric Andersencc8ed391999-10-05 16:24:54 +00002341
2342
2343#ifndef DEBUG
2344# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2345 /* Send a code of the given tree. c and tree must not have side effects */
2346
Erik Andersene49d5ec2000-02-08 19:58:47 +00002347#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00002348# define send_code(c, tree) \
2349 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2350 send_bits(tree[c].Code, tree[c].Len); }
2351#endif
2352
2353#define d_code(dist) \
2354 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2355/* Mapping from a distance to a distance code. dist is the distance - 1 and
2356 * must not have side effects. dist_code[256] and dist_code[257] are never
2357 * used.
2358 */
2359
Eric Andersencc8ed391999-10-05 16:24:54 +00002360/* the arguments must not have side effects */
2361
2362/* ===========================================================================
2363 * Allocate the match buffer, initialize the various tables and save the
2364 * location of the internal file attribute (ascii/binary) and method
2365 * (DEFLATE/STORE).
2366 */
2367void ct_init(attr, methodp)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002368ush *attr; /* pointer to internal file attribute */
2369int *methodp; /* pointer to compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002370{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002371 int n; /* iterates over tree elements */
2372 int bits; /* bit counter */
2373 int length; /* length value */
2374 int code; /* code value */
2375 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002376
Erik Andersene49d5ec2000-02-08 19:58:47 +00002377 file_type = attr;
2378 file_method = methodp;
2379 compressed_len = input_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00002380
Erik Andersene49d5ec2000-02-08 19:58:47 +00002381 if (static_dtree[0].Len != 0)
2382 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00002383
Erik Andersene49d5ec2000-02-08 19:58:47 +00002384 /* Initialize the mapping length (0..255) -> length code (0..28) */
2385 length = 0;
2386 for (code = 0; code < LENGTH_CODES - 1; code++) {
2387 base_length[code] = length;
2388 for (n = 0; n < (1 << extra_lbits[code]); n++) {
2389 length_code[length++] = (uch) code;
2390 }
2391 }
2392 Assert(length == 256, "ct_init: length != 256");
2393 /* Note that the length 255 (match length 258) can be represented
2394 * in two different ways: code 284 + 5 bits or code 285, so we
2395 * overwrite length_code[255] to use the best encoding:
2396 */
2397 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002398
Erik Andersene49d5ec2000-02-08 19:58:47 +00002399 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2400 dist = 0;
2401 for (code = 0; code < 16; code++) {
2402 base_dist[code] = dist;
2403 for (n = 0; n < (1 << extra_dbits[code]); n++) {
2404 dist_code[dist++] = (uch) code;
2405 }
2406 }
2407 Assert(dist == 256, "ct_init: dist != 256");
2408 dist >>= 7; /* from now on, all distances are divided by 128 */
2409 for (; code < D_CODES; code++) {
2410 base_dist[code] = dist << 7;
2411 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
2412 dist_code[256 + dist++] = (uch) code;
2413 }
2414 }
2415 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00002416
Erik Andersene49d5ec2000-02-08 19:58:47 +00002417 /* Construct the codes of the static literal tree */
2418 for (bits = 0; bits <= MAX_BITS; bits++)
2419 bl_count[bits] = 0;
2420 n = 0;
2421 while (n <= 143)
2422 static_ltree[n++].Len = 8, bl_count[8]++;
2423 while (n <= 255)
2424 static_ltree[n++].Len = 9, bl_count[9]++;
2425 while (n <= 279)
2426 static_ltree[n++].Len = 7, bl_count[7]++;
2427 while (n <= 287)
2428 static_ltree[n++].Len = 8, bl_count[8]++;
2429 /* Codes 286 and 287 do not exist, but we must include them in the
2430 * tree construction to get a canonical Huffman tree (longest code
2431 * all ones)
2432 */
2433 gen_codes((ct_data near *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00002434
Erik Andersene49d5ec2000-02-08 19:58:47 +00002435 /* The static distance tree is trivial: */
2436 for (n = 0; n < D_CODES; n++) {
2437 static_dtree[n].Len = 5;
2438 static_dtree[n].Code = bi_reverse(n, 5);
2439 }
2440
2441 /* Initialize the first block of the first file: */
2442 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002443}
2444
2445/* ===========================================================================
2446 * Initialize a new block.
2447 */
2448local void init_block()
2449{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002450 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00002451
Erik Andersene49d5ec2000-02-08 19:58:47 +00002452 /* Initialize the trees. */
2453 for (n = 0; n < L_CODES; n++)
2454 dyn_ltree[n].Freq = 0;
2455 for (n = 0; n < D_CODES; n++)
2456 dyn_dtree[n].Freq = 0;
2457 for (n = 0; n < BL_CODES; n++)
2458 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002459
Erik Andersene49d5ec2000-02-08 19:58:47 +00002460 dyn_ltree[END_BLOCK].Freq = 1;
2461 opt_len = static_len = 0L;
2462 last_lit = last_dist = last_flags = 0;
2463 flags = 0;
2464 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002465}
2466
2467#define SMALLEST 1
2468/* Index within the heap array of least frequent node in the Huffman tree */
2469
2470
2471/* ===========================================================================
2472 * Remove the smallest element from the heap and recreate the heap with
2473 * one less element. Updates heap and heap_len.
2474 */
2475#define pqremove(tree, top) \
2476{\
2477 top = heap[SMALLEST]; \
2478 heap[SMALLEST] = heap[heap_len--]; \
2479 pqdownheap(tree, SMALLEST); \
2480}
2481
2482/* ===========================================================================
2483 * Compares to subtrees, using the tree depth as tie breaker when
2484 * the subtrees have equal frequency. This minimizes the worst case length.
2485 */
2486#define smaller(tree, n, m) \
2487 (tree[n].Freq < tree[m].Freq || \
2488 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2489
2490/* ===========================================================================
2491 * Restore the heap property by moving down the tree starting at node k,
2492 * exchanging a node with the smallest of its two sons if necessary, stopping
2493 * when the heap property is re-established (each father smaller than its
2494 * two sons).
2495 */
2496local void pqdownheap(tree, k)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002497ct_data near *tree; /* the tree to restore */
2498int k; /* node to move down */
Eric Andersencc8ed391999-10-05 16:24:54 +00002499{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002500 int v = heap[k];
2501 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00002502
Erik Andersene49d5ec2000-02-08 19:58:47 +00002503 while (j <= heap_len) {
2504 /* Set j to the smallest of the two sons: */
2505 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
2506 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002507
Erik Andersene49d5ec2000-02-08 19:58:47 +00002508 /* Exit if v is smaller than both sons */
2509 if (smaller(tree, v, heap[j]))
2510 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00002511
Erik Andersene49d5ec2000-02-08 19:58:47 +00002512 /* Exchange v with the smallest son */
2513 heap[k] = heap[j];
2514 k = j;
2515
2516 /* And continue down the tree, setting j to the left son of k */
2517 j <<= 1;
2518 }
2519 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00002520}
2521
2522/* ===========================================================================
2523 * Compute the optimal bit lengths for a tree and update the total bit length
2524 * for the current block.
2525 * IN assertion: the fields freq and dad are set, heap[heap_max] and
2526 * above are the tree nodes sorted by increasing frequency.
2527 * OUT assertions: the field len is set to the optimal bit length, the
2528 * array bl_count contains the frequencies for each bit length.
2529 * The length opt_len is updated; static_len is also updated if stree is
2530 * not null.
2531 */
2532local void gen_bitlen(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002533tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002534{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002535 ct_data near *tree = desc->dyn_tree;
2536 int near *extra = desc->extra_bits;
2537 int base = desc->extra_base;
2538 int max_code = desc->max_code;
2539 int max_length = desc->max_length;
2540 ct_data near *stree = desc->static_tree;
2541 int h; /* heap index */
2542 int n, m; /* iterate over the tree elements */
2543 int bits; /* bit length */
2544 int xbits; /* extra bits */
2545 ush f; /* frequency */
2546 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00002547
Erik Andersene49d5ec2000-02-08 19:58:47 +00002548 for (bits = 0; bits <= MAX_BITS; bits++)
2549 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002550
Erik Andersene49d5ec2000-02-08 19:58:47 +00002551 /* In a first pass, compute the optimal bit lengths (which may
2552 * overflow in the case of the bit length tree).
2553 */
2554 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00002555
Erik Andersene49d5ec2000-02-08 19:58:47 +00002556 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
2557 n = heap[h];
2558 bits = tree[tree[n].Dad].Len + 1;
2559 if (bits > max_length)
2560 bits = max_length, overflow++;
2561 tree[n].Len = (ush) bits;
2562 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00002563
Erik Andersene49d5ec2000-02-08 19:58:47 +00002564 if (n > max_code)
2565 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00002566
Erik Andersene49d5ec2000-02-08 19:58:47 +00002567 bl_count[bits]++;
2568 xbits = 0;
2569 if (n >= base)
2570 xbits = extra[n - base];
2571 f = tree[n].Freq;
2572 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00002573
Erik Andersene49d5ec2000-02-08 19:58:47 +00002574 if (stree)
2575 static_len += (ulg) f *(stree[n].Len + xbits);
2576 }
2577 if (overflow == 0)
2578 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00002579
Erik Andersene49d5ec2000-02-08 19:58:47 +00002580 Trace((stderr, "\nbit length overflow\n"));
2581 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00002582
Erik Andersene49d5ec2000-02-08 19:58:47 +00002583 /* Find the first bit length which could increase: */
2584 do {
2585 bits = max_length - 1;
2586 while (bl_count[bits] == 0)
2587 bits--;
2588 bl_count[bits]--; /* move one leaf down the tree */
2589 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
2590 bl_count[max_length]--;
2591 /* The brother of the overflow item also moves one step up,
2592 * but this does not affect bl_count[max_length]
2593 */
2594 overflow -= 2;
2595 } while (overflow > 0);
2596
2597 /* Now recompute all bit lengths, scanning in increasing frequency.
2598 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2599 * lengths instead of fixing only the wrong ones. This idea is taken
2600 * from 'ar' written by Haruhiko Okumura.)
2601 */
2602 for (bits = max_length; bits != 0; bits--) {
2603 n = bl_count[bits];
2604 while (n != 0) {
2605 m = heap[--h];
2606 if (m > max_code)
2607 continue;
2608 if (tree[m].Len != (unsigned) bits) {
2609 Trace(
2610 (stderr, "code %d bits %d->%d\n", m, tree[m].Len,
2611 bits));
2612 opt_len +=
2613 ((long) bits -
2614 (long) tree[m].Len) * (long) tree[m].Freq;
2615 tree[m].Len = (ush) bits;
2616 }
2617 n--;
2618 }
2619 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002620}
2621
2622/* ===========================================================================
2623 * Generate the codes for a given tree and bit counts (which need not be
2624 * optimal).
2625 * IN assertion: the array bl_count contains the bit length statistics for
2626 * the given tree and the field len is set for all tree elements.
2627 * OUT assertion: the field code is set for all tree elements of non
2628 * zero code length.
2629 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002630local void gen_codes(tree, max_code)
2631ct_data near *tree; /* the tree to decorate */
2632int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002633{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002634 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
2635 ush code = 0; /* running code value */
2636 int bits; /* bit index */
2637 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00002638
Erik Andersene49d5ec2000-02-08 19:58:47 +00002639 /* The distribution counts are first used to generate the code values
2640 * without bit reversal.
2641 */
2642 for (bits = 1; bits <= MAX_BITS; bits++) {
2643 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
2644 }
2645 /* Check that the bit counts in bl_count are consistent. The last code
2646 * must be all ones.
2647 */
2648 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
2649 "inconsistent bit counts");
2650 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00002651
Erik Andersene49d5ec2000-02-08 19:58:47 +00002652 for (n = 0; n <= max_code; n++) {
2653 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002654
Erik Andersene49d5ec2000-02-08 19:58:47 +00002655 if (len == 0)
2656 continue;
2657 /* Now reverse the bits */
2658 tree[n].Code = bi_reverse(next_code[len]++, len);
2659
2660 Tracec(tree != static_ltree,
2661 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
2662 (isgraph(n) ? n : ' '), len, tree[n].Code,
2663 next_code[len] - 1));
2664 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002665}
2666
2667/* ===========================================================================
2668 * Construct one Huffman tree and assigns the code bit strings and lengths.
2669 * Update the total bit length for the current block.
2670 * IN assertion: the field freq is set for all tree elements.
2671 * OUT assertions: the fields len and code are set to the optimal bit length
2672 * and corresponding code. The length opt_len is updated; static_len is
2673 * also updated if stree is not null. The field max_code is set.
2674 */
2675local void build_tree(desc)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002676tree_desc near *desc; /* the tree descriptor */
Eric Andersencc8ed391999-10-05 16:24:54 +00002677{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002678 ct_data near *tree = desc->dyn_tree;
2679 ct_data near *stree = desc->static_tree;
2680 int elems = desc->elems;
2681 int n, m; /* iterate over heap elements */
2682 int max_code = -1; /* largest code with non zero frequency */
2683 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002684
Erik Andersene49d5ec2000-02-08 19:58:47 +00002685 /* Construct the initial heap, with least frequent element in
2686 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2687 * heap[0] is not used.
2688 */
2689 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00002690
Erik Andersene49d5ec2000-02-08 19:58:47 +00002691 for (n = 0; n < elems; n++) {
2692 if (tree[n].Freq != 0) {
2693 heap[++heap_len] = max_code = n;
2694 depth[n] = 0;
2695 } else {
2696 tree[n].Len = 0;
2697 }
2698 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002699
Erik Andersene49d5ec2000-02-08 19:58:47 +00002700 /* The pkzip format requires that at least one distance code exists,
2701 * and that at least one bit should be sent even if there is only one
2702 * possible code. So to avoid special checks later on we force at least
2703 * two codes of non zero frequency.
2704 */
2705 while (heap_len < 2) {
2706 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002707
Erik Andersene49d5ec2000-02-08 19:58:47 +00002708 tree[new].Freq = 1;
2709 depth[new] = 0;
2710 opt_len--;
2711 if (stree)
2712 static_len -= stree[new].Len;
2713 /* new is 0 or 1 so it does not have extra bits */
2714 }
2715 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002716
Erik Andersene49d5ec2000-02-08 19:58:47 +00002717 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2718 * establish sub-heaps of increasing lengths:
2719 */
2720 for (n = heap_len / 2; n >= 1; n--)
2721 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00002722
Erik Andersene49d5ec2000-02-08 19:58:47 +00002723 /* Construct the Huffman tree by repeatedly combining the least two
2724 * frequent nodes.
2725 */
2726 do {
2727 pqremove(tree, n); /* n = node of least frequency */
2728 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002729
Erik Andersene49d5ec2000-02-08 19:58:47 +00002730 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2731 heap[--heap_max] = m;
2732
2733 /* Create a new node father of n and m */
2734 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2735 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2736 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00002737#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00002738 if (tree == bl_tree) {
2739 fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
2740 node, tree[node].Freq, n, tree[n].Freq, m,
2741 tree[m].Freq);
2742 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002743#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002744 /* and insert the new node in the heap */
2745 heap[SMALLEST] = node++;
2746 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00002747
Erik Andersene49d5ec2000-02-08 19:58:47 +00002748 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002749
Erik Andersene49d5ec2000-02-08 19:58:47 +00002750 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00002751
Erik Andersene49d5ec2000-02-08 19:58:47 +00002752 /* At this point, the fields freq and dad are set. We can now
2753 * generate the bit lengths.
2754 */
2755 gen_bitlen((tree_desc near *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00002756
Erik Andersene49d5ec2000-02-08 19:58:47 +00002757 /* The field len is now set, we can generate the bit codes */
2758 gen_codes((ct_data near *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002759}
2760
2761/* ===========================================================================
2762 * Scan a literal or distance tree to determine the frequencies of the codes
2763 * in the bit length tree. Updates opt_len to take into account the repeat
2764 * counts. (The contribution of the bit length codes will be added later
2765 * during the construction of bl_tree.)
2766 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002767local void scan_tree(tree, max_code)
2768ct_data near *tree; /* the tree to be scanned */
2769int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002770{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002771 int n; /* iterates over all tree elements */
2772 int prevlen = -1; /* last emitted length */
2773 int curlen; /* length of current code */
2774 int nextlen = tree[0].Len; /* length of next code */
2775 int count = 0; /* repeat count of the current code */
2776 int max_count = 7; /* max repeat count */
2777 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002778
Erik Andersene49d5ec2000-02-08 19:58:47 +00002779 if (nextlen == 0)
2780 max_count = 138, min_count = 3;
2781 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002782
Erik Andersene49d5ec2000-02-08 19:58:47 +00002783 for (n = 0; n <= max_code; n++) {
2784 curlen = nextlen;
2785 nextlen = tree[n + 1].Len;
2786 if (++count < max_count && curlen == nextlen) {
2787 continue;
2788 } else if (count < min_count) {
2789 bl_tree[curlen].Freq += count;
2790 } else if (curlen != 0) {
2791 if (curlen != prevlen)
2792 bl_tree[curlen].Freq++;
2793 bl_tree[REP_3_6].Freq++;
2794 } else if (count <= 10) {
2795 bl_tree[REPZ_3_10].Freq++;
2796 } else {
2797 bl_tree[REPZ_11_138].Freq++;
2798 }
2799 count = 0;
2800 prevlen = curlen;
2801 if (nextlen == 0) {
2802 max_count = 138, min_count = 3;
2803 } else if (curlen == nextlen) {
2804 max_count = 6, min_count = 3;
2805 } else {
2806 max_count = 7, min_count = 4;
2807 }
2808 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002809}
2810
2811/* ===========================================================================
2812 * Send a literal or distance tree in compressed form, using the codes in
2813 * bl_tree.
2814 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002815local void send_tree(tree, max_code)
2816ct_data near *tree; /* the tree to be scanned */
2817int max_code; /* and its largest code of non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002818{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002819 int n; /* iterates over all tree elements */
2820 int prevlen = -1; /* last emitted length */
2821 int curlen; /* length of current code */
2822 int nextlen = tree[0].Len; /* length of next code */
2823 int count = 0; /* repeat count of the current code */
2824 int max_count = 7; /* max repeat count */
2825 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002826
Erik Andersene49d5ec2000-02-08 19:58:47 +00002827/* tree[max_code+1].Len = -1; *//* guard already set */
2828 if (nextlen == 0)
2829 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002830
Erik Andersene49d5ec2000-02-08 19:58:47 +00002831 for (n = 0; n <= max_code; n++) {
2832 curlen = nextlen;
2833 nextlen = tree[n + 1].Len;
2834 if (++count < max_count && curlen == nextlen) {
2835 continue;
2836 } else if (count < min_count) {
2837 do {
2838 send_code(curlen, bl_tree);
2839 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002840
Erik Andersene49d5ec2000-02-08 19:58:47 +00002841 } else if (curlen != 0) {
2842 if (curlen != prevlen) {
2843 send_code(curlen, bl_tree);
2844 count--;
2845 }
2846 Assert(count >= 3 && count <= 6, " 3_6?");
2847 send_code(REP_3_6, bl_tree);
2848 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002849
Erik Andersene49d5ec2000-02-08 19:58:47 +00002850 } else if (count <= 10) {
2851 send_code(REPZ_3_10, bl_tree);
2852 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002853
Erik Andersene49d5ec2000-02-08 19:58:47 +00002854 } else {
2855 send_code(REPZ_11_138, bl_tree);
2856 send_bits(count - 11, 7);
2857 }
2858 count = 0;
2859 prevlen = curlen;
2860 if (nextlen == 0) {
2861 max_count = 138, min_count = 3;
2862 } else if (curlen == nextlen) {
2863 max_count = 6, min_count = 3;
2864 } else {
2865 max_count = 7, min_count = 4;
2866 }
2867 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002868}
2869
2870/* ===========================================================================
2871 * Construct the Huffman tree for the bit lengths and return the index in
2872 * bl_order of the last bit length code to send.
2873 */
2874local int build_bl_tree()
2875{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002876 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002877
Erik Andersene49d5ec2000-02-08 19:58:47 +00002878 /* Determine the bit length frequencies for literal and distance trees */
2879 scan_tree((ct_data near *) dyn_ltree, l_desc.max_code);
2880 scan_tree((ct_data near *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002881
Erik Andersene49d5ec2000-02-08 19:58:47 +00002882 /* Build the bit length tree: */
2883 build_tree((tree_desc near *) (&bl_desc));
2884 /* opt_len now includes the length of the tree representations, except
2885 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2886 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002887
Erik Andersene49d5ec2000-02-08 19:58:47 +00002888 /* Determine the number of bit length codes to send. The pkzip format
2889 * requires that at least 4 bit length codes be sent. (appnote.txt says
2890 * 3 but the actual value used is 4.)
2891 */
2892 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2893 if (bl_tree[bl_order[max_blindex]].Len != 0)
2894 break;
2895 }
2896 /* Update opt_len to include the bit length tree and counts */
2897 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
2898 Tracev(
2899 (stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len,
2900 static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002901
Erik Andersene49d5ec2000-02-08 19:58:47 +00002902 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002903}
2904
2905/* ===========================================================================
2906 * Send the header for a block using dynamic Huffman trees: the counts, the
2907 * lengths of the bit length codes, the literal tree and the distance tree.
2908 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2909 */
2910local void send_all_trees(lcodes, dcodes, blcodes)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002911int lcodes, dcodes, blcodes; /* number of codes for each tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00002912{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002913 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002914
Erik Andersene49d5ec2000-02-08 19:58:47 +00002915 Assert(lcodes >= 257 && dcodes >= 1
2916 && blcodes >= 4, "not enough codes");
2917 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2918 && blcodes <= BL_CODES, "too many codes");
2919 Tracev((stderr, "\nbl counts: "));
2920 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2921 send_bits(dcodes - 1, 5);
2922 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2923 for (rank = 0; rank < blcodes; rank++) {
2924 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2925 send_bits(bl_tree[bl_order[rank]].Len, 3);
2926 }
2927 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002928
Erik Andersene49d5ec2000-02-08 19:58:47 +00002929 send_tree((ct_data near *) dyn_ltree, lcodes - 1); /* send the literal tree */
2930 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002931
Erik Andersene49d5ec2000-02-08 19:58:47 +00002932 send_tree((ct_data near *) dyn_dtree, dcodes - 1); /* send the distance tree */
2933 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002934}
2935
2936/* ===========================================================================
2937 * Determine the best encoding for the current block: dynamic trees, static
2938 * trees or store, and output the encoded block to the zip file. This function
2939 * returns the total compressed length for the file so far.
2940 */
2941ulg flush_block(buf, stored_len, eof)
Erik Andersene49d5ec2000-02-08 19:58:47 +00002942char *buf; /* input block, or NULL if too old */
2943ulg stored_len; /* length of input block */
2944int eof; /* true if this is the last block for a file */
Eric Andersencc8ed391999-10-05 16:24:54 +00002945{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002946 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2947 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002948
Erik Andersene49d5ec2000-02-08 19:58:47 +00002949 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002950
Erik Andersene49d5ec2000-02-08 19:58:47 +00002951 /* Check if the file is ascii or binary */
2952 if (*file_type == (ush) UNKNOWN)
2953 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002954
Erik Andersene49d5ec2000-02-08 19:58:47 +00002955 /* Construct the literal and distance trees */
2956 build_tree((tree_desc near *) (&l_desc));
2957 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002958
Erik Andersene49d5ec2000-02-08 19:58:47 +00002959 build_tree((tree_desc near *) (&d_desc));
2960 Tracev(
2961 (stderr, "\ndist data: dyn %ld, stat %ld", opt_len,
2962 static_len));
2963 /* At this point, opt_len and static_len are the total bit lengths of
2964 * the compressed block data, excluding the tree representations.
2965 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002966
Erik Andersene49d5ec2000-02-08 19:58:47 +00002967 /* Build the bit length tree for the above two trees, and get the index
2968 * in bl_order of the last bit length code to send.
2969 */
2970 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002971
Erik Andersene49d5ec2000-02-08 19:58:47 +00002972 /* Determine the best encoding. Compute first the block length in bytes */
2973 opt_lenb = (opt_len + 3 + 7) >> 3;
2974 static_lenb = (static_len + 3 + 7) >> 3;
2975 input_len += stored_len; /* for debugging only */
Eric Andersencc8ed391999-10-05 16:24:54 +00002976
Erik Andersene49d5ec2000-02-08 19:58:47 +00002977 Trace(
2978 (stderr,
2979 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2980 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2981 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002982
Erik Andersene49d5ec2000-02-08 19:58:47 +00002983 if (static_lenb <= opt_lenb)
2984 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002985
Erik Andersene49d5ec2000-02-08 19:58:47 +00002986 /* If compression failed and this is the first and last block,
2987 * and if the zip file can be seeked (to rewrite the local header),
2988 * the whole file is transformed into a stored file:
2989 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002990#ifdef FORCE_METHOD
2991#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00002992 if (stored_len <= opt_lenb && eof && compressed_len == 0L
2993 && seekable()) {
Eric Andersencc8ed391999-10-05 16:24:54 +00002994#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002995 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2996 if (buf == (char *) 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00002997 error_msg("block vanished");
Eric Andersencc8ed391999-10-05 16:24:54 +00002998
Erik Andersene49d5ec2000-02-08 19:58:47 +00002999 copy_block(buf, (unsigned) stored_len, 0); /* without header */
3000 compressed_len = stored_len << 3;
3001 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00003002
3003#ifdef FORCE_METHOD
3004#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00003005 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
3006 /* 4: two words for the lengths */
Eric Andersencc8ed391999-10-05 16:24:54 +00003007#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00003008 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
3009 * Otherwise we can't have processed more than WSIZE input bytes since
3010 * the last block flush, because compression would have been
3011 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
3012 * transform a block into a stored block.
3013 */
3014 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
3015 compressed_len = (compressed_len + 3 + 7) & ~7L;
3016 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00003017
Erik Andersene49d5ec2000-02-08 19:58:47 +00003018 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00003019
3020#ifdef FORCE_METHOD
3021#else
Erik Andersene49d5ec2000-02-08 19:58:47 +00003022 } else if (static_lenb == opt_lenb) {
Eric Andersencc8ed391999-10-05 16:24:54 +00003023#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00003024 send_bits((STATIC_TREES << 1) + eof, 3);
3025 compress_block((ct_data near *) static_ltree,
3026 (ct_data near *) static_dtree);
3027 compressed_len += 3 + static_len;
3028 } else {
3029 send_bits((DYN_TREES << 1) + eof, 3);
3030 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
3031 max_blindex + 1);
3032 compress_block((ct_data near *) dyn_ltree,
3033 (ct_data near *) dyn_dtree);
3034 compressed_len += 3 + opt_len;
3035 }
3036 Assert(compressed_len == bits_sent, "bad compressed size");
3037 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00003038
Erik Andersene49d5ec2000-02-08 19:58:47 +00003039 if (eof) {
3040 Assert(input_len == isize, "bad input size");
3041 bi_windup();
3042 compressed_len += 7; /* align on byte boundary */
3043 }
3044 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
3045 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00003046
Erik Andersene49d5ec2000-02-08 19:58:47 +00003047 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00003048}
3049
3050/* ===========================================================================
3051 * Save the match info and tally the frequency counts. Return true if
3052 * the current block must be flushed.
3053 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003054int ct_tally(dist, lc)
3055int dist; /* distance of matched string */
3056int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
Eric Andersencc8ed391999-10-05 16:24:54 +00003057{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003058 l_buf[last_lit++] = (uch) lc;
3059 if (dist == 0) {
3060 /* lc is the unmatched char */
3061 dyn_ltree[lc].Freq++;
3062 } else {
3063 /* Here, lc is the match length - MIN_MATCH */
3064 dist--; /* dist = match distance - 1 */
3065 Assert((ush) dist < (ush) MAX_DIST &&
3066 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
3067 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00003068
Erik Andersene49d5ec2000-02-08 19:58:47 +00003069 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
3070 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00003071
Erik Andersene49d5ec2000-02-08 19:58:47 +00003072 d_buf[last_dist++] = (ush) dist;
3073 flags |= flag_bit;
3074 }
3075 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00003076
Erik Andersene49d5ec2000-02-08 19:58:47 +00003077 /* Output the flags if they fill a byte: */
3078 if ((last_lit & 7) == 0) {
3079 flag_buf[last_flags++] = flags;
3080 flags = 0, flag_bit = 1;
3081 }
3082 /* Try to guess if it is profitable to stop the current block here */
3083 if ((last_lit & 0xfff) == 0) {
3084 /* Compute an upper bound for the compressed length */
3085 ulg out_length = (ulg) last_lit * 8L;
3086 ulg in_length = (ulg) strstart - block_start;
3087 int dcode;
3088
3089 for (dcode = 0; dcode < D_CODES; dcode++) {
3090 out_length +=
3091 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
3092 }
3093 out_length >>= 3;
3094 Trace(
3095 (stderr,
3096 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
3097 last_lit, last_dist, in_length, out_length,
3098 100L - out_length * 100L / in_length));
3099 if (last_dist < last_lit / 2 && out_length < in_length / 2)
3100 return 1;
3101 }
3102 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
3103 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
3104 * on 16 bit machines and because stored blocks are restricted to
3105 * 64K-1 bytes.
3106 */
Eric Andersencc8ed391999-10-05 16:24:54 +00003107}
3108
3109/* ===========================================================================
3110 * Send the block data compressed using the given Huffman trees
3111 */
3112local void compress_block(ltree, dtree)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003113ct_data near *ltree; /* literal tree */
3114ct_data near *dtree; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00003115{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003116 unsigned dist; /* distance of matched string */
3117 int lc; /* match length or unmatched char (if dist == 0) */
3118 unsigned lx = 0; /* running index in l_buf */
3119 unsigned dx = 0; /* running index in d_buf */
3120 unsigned fx = 0; /* running index in flag_buf */
3121 uch flag = 0; /* current flags */
3122 unsigned code; /* the code to send */
3123 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00003124
Erik Andersene49d5ec2000-02-08 19:58:47 +00003125 if (last_lit != 0)
3126 do {
3127 if ((lx & 7) == 0)
3128 flag = flag_buf[fx++];
3129 lc = l_buf[lx++];
3130 if ((flag & 1) == 0) {
3131 send_code(lc, ltree); /* send a literal byte */
3132 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
3133 } else {
3134 /* Here, lc is the match length - MIN_MATCH */
3135 code = length_code[lc];
3136 send_code(code + LITERALS + 1, ltree); /* send the length code */
3137 extra = extra_lbits[code];
3138 if (extra != 0) {
3139 lc -= base_length[code];
3140 send_bits(lc, extra); /* send the extra length bits */
3141 }
3142 dist = d_buf[dx++];
3143 /* Here, dist is the match distance - 1 */
3144 code = d_code(dist);
3145 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00003146
Erik Andersene49d5ec2000-02-08 19:58:47 +00003147 send_code(code, dtree); /* send the distance code */
3148 extra = extra_dbits[code];
3149 if (extra != 0) {
3150 dist -= base_dist[code];
3151 send_bits(dist, extra); /* send the extra distance bits */
3152 }
3153 } /* literal or match pair ? */
3154 flag >>= 1;
3155 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00003156
Erik Andersene49d5ec2000-02-08 19:58:47 +00003157 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00003158}
3159
3160/* ===========================================================================
3161 * Set the file type to ASCII or BINARY, using a crude approximation:
3162 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
3163 * IN assertion: the fields freq of dyn_ltree are set and the total of all
3164 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
3165 */
3166local void set_file_type()
3167{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003168 int n = 0;
3169 unsigned ascii_freq = 0;
3170 unsigned bin_freq = 0;
3171
3172 while (n < 7)
3173 bin_freq += dyn_ltree[n++].Freq;
3174 while (n < 128)
3175 ascii_freq += dyn_ltree[n++].Freq;
3176 while (n < LITERALS)
3177 bin_freq += dyn_ltree[n++].Freq;
3178 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
3179 if (*file_type == BINARY && translate_eol) {
Matt Kraaidd19c692001-01-31 19:00:21 +00003180 error_msg("-l used on binary file");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003181 }
Eric Andersencc8ed391999-10-05 16:24:54 +00003182}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003183
Eric Andersencc8ed391999-10-05 16:24:54 +00003184/* util.c -- utility functions for gzip support
3185 * Copyright (C) 1992-1993 Jean-loup Gailly
3186 * This is free software; you can redistribute it and/or modify it under the
3187 * terms of the GNU General Public License, see the file COPYING.
3188 */
3189
Eric Andersencc8ed391999-10-05 16:24:54 +00003190#include <ctype.h>
3191#include <errno.h>
3192#include <sys/types.h>
3193
3194#ifdef HAVE_UNISTD_H
3195# include <unistd.h>
3196#endif
3197#ifndef NO_FCNTL_H
3198# include <fcntl.h>
3199#endif
3200
Eric Andersencc8ed391999-10-05 16:24:54 +00003201/* ===========================================================================
3202 * Copy input to output unchanged: zcat == cat with --force.
3203 * IN assertion: insize bytes have already been read in inbuf.
3204 */
3205int copy(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003206int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003207{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003208 errno = 0;
3209 while (insize != 0 && (int) insize != EOF) {
3210 write_buf(out, (char *) inbuf, insize);
3211 bytes_out += insize;
3212 insize = read(in, (char *) inbuf, INBUFSIZ);
3213 }
3214 if ((int) insize == EOF && errno != 0) {
Erik Andersen330fd2b2000-05-19 05:35:19 +00003215 read_error_msg();
Erik Andersene49d5ec2000-02-08 19:58:47 +00003216 }
3217 bytes_in = bytes_out;
3218 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003219}
3220
3221/* ========================================================================
3222 * Put string s in lower case, return s.
3223 */
3224char *strlwr(s)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003225char *s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003226{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003227 char *t;
3228
3229 for (t = s; *t; t++)
3230 *t = tolow(*t);
3231 return s;
Eric Andersencc8ed391999-10-05 16:24:54 +00003232}
3233
3234#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3235
3236/* Provide missing strspn and strcspn functions. */
3237
Erik Andersen61677fe2000-04-13 01:18:56 +00003238int strspn (const char *s, const char *accept);
3239int strcspn (const char *s, const char *reject);
Eric Andersencc8ed391999-10-05 16:24:54 +00003240
3241/* ========================================================================
3242 * Return the length of the maximum initial segment
3243 * of s which contains only characters in accept.
3244 */
3245int strspn(s, accept)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003246const char *s;
3247const char *accept;
Eric Andersencc8ed391999-10-05 16:24:54 +00003248{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003249 register const char *p;
3250 register const char *a;
3251 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003252
Erik Andersene49d5ec2000-02-08 19:58:47 +00003253 for (p = s; *p != '\0'; ++p) {
3254 for (a = accept; *a != '\0'; ++a) {
3255 if (*p == *a)
3256 break;
3257 }
3258 if (*a == '\0')
3259 return count;
3260 ++count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003261 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00003262 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003263}
3264
3265/* ========================================================================
3266 * Return the length of the maximum inital segment of s
3267 * which contains no characters from reject.
3268 */
3269int strcspn(s, reject)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003270const char *s;
3271const char *reject;
Eric Andersencc8ed391999-10-05 16:24:54 +00003272{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003273 register int count = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003274
Erik Andersene49d5ec2000-02-08 19:58:47 +00003275 while (*s != '\0') {
3276 if (strchr(reject, *s++) != NULL)
3277 return count;
3278 ++count;
3279 }
3280 return count;
Eric Andersencc8ed391999-10-05 16:24:54 +00003281}
3282
Erik Andersene49d5ec2000-02-08 19:58:47 +00003283#endif /* NO_STRING_H */
Eric Andersencc8ed391999-10-05 16:24:54 +00003284
3285/* ========================================================================
3286 * Add an environment variable (if any) before argv, and update argc.
3287 * Return the expanded environment variable to be freed later, or NULL
3288 * if no options were added to argv.
3289 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003290#define SEPARATOR " \t" /* separators in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003291
3292char *add_envopt(argcp, argvp, env)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003293int *argcp; /* pointer to argc */
3294char ***argvp; /* pointer to argv */
3295char *env; /* name of environment variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003296{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003297 char *p; /* running pointer through env variable */
3298 char **oargv; /* runs through old argv array */
3299 char **nargv; /* runs through new argv array */
3300 int oargc = *argcp; /* old argc */
3301 int nargc = 0; /* number of arguments in env variable */
Eric Andersencc8ed391999-10-05 16:24:54 +00003302
Erik Andersene49d5ec2000-02-08 19:58:47 +00003303 env = (char *) getenv(env);
3304 if (env == NULL)
3305 return NULL;
Eric Andersencc8ed391999-10-05 16:24:54 +00003306
Erik Andersene49d5ec2000-02-08 19:58:47 +00003307 p = (char *) xmalloc(strlen(env) + 1);
3308 env = strcpy(p, env); /* keep env variable intact */
Eric Andersencc8ed391999-10-05 16:24:54 +00003309
Erik Andersene49d5ec2000-02-08 19:58:47 +00003310 for (p = env; *p; nargc++) { /* move through env */
3311 p += strspn(p, SEPARATOR); /* skip leading separators */
3312 if (*p == '\0')
3313 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00003314
Erik Andersene49d5ec2000-02-08 19:58:47 +00003315 p += strcspn(p, SEPARATOR); /* find end of word */
3316 if (*p)
3317 *p++ = '\0'; /* mark it */
3318 }
3319 if (nargc == 0) {
3320 free(env);
3321 return NULL;
3322 }
3323 *argcp += nargc;
3324 /* Allocate the new argv array, with an extra element just in case
3325 * the original arg list did not end with a NULL.
3326 */
3327 nargv = (char **) calloc(*argcp + 1, sizeof(char *));
Eric Andersencc8ed391999-10-05 16:24:54 +00003328
Erik Andersene49d5ec2000-02-08 19:58:47 +00003329 if (nargv == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +00003330 error_msg(memory_exhausted);
Erik Andersene49d5ec2000-02-08 19:58:47 +00003331 oargv = *argvp;
3332 *argvp = nargv;
Eric Andersencc8ed391999-10-05 16:24:54 +00003333
Erik Andersene49d5ec2000-02-08 19:58:47 +00003334 /* Copy the program name first */
3335 if (oargc-- < 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00003336 error_msg("argc<=0");
Erik Andersene49d5ec2000-02-08 19:58:47 +00003337 *(nargv++) = *(oargv++);
Eric Andersencc8ed391999-10-05 16:24:54 +00003338
Erik Andersene49d5ec2000-02-08 19:58:47 +00003339 /* Then copy the environment args */
3340 for (p = env; nargc > 0; nargc--) {
3341 p += strspn(p, SEPARATOR); /* skip separators */
3342 *(nargv++) = p; /* store start */
3343 while (*p++); /* skip over word */
3344 }
3345
3346 /* Finally copy the old args and add a NULL (usual convention) */
3347 while (oargc--)
3348 *(nargv++) = *(oargv++);
3349 *nargv = NULL;
3350 return env;
Eric Andersencc8ed391999-10-05 16:24:54 +00003351}
Erik Andersene49d5ec2000-02-08 19:58:47 +00003352
Eric Andersencc8ed391999-10-05 16:24:54 +00003353/* ========================================================================
3354 * Display compression ratio on the given stream on 6 characters.
3355 */
3356void display_ratio(num, den, file)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003357long num;
3358long den;
3359FILE *file;
Eric Andersencc8ed391999-10-05 16:24:54 +00003360{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003361 long ratio; /* 1000 times the compression ratio */
Eric Andersencc8ed391999-10-05 16:24:54 +00003362
Erik Andersene49d5ec2000-02-08 19:58:47 +00003363 if (den == 0) {
3364 ratio = 0; /* no compression */
3365 } else if (den < 2147483L) { /* (2**31 -1)/1000 */
3366 ratio = 1000L * num / den;
3367 } else {
3368 ratio = num / (den / 1000L);
3369 }
3370 if (ratio < 0) {
3371 putc('-', file);
3372 ratio = -ratio;
3373 } else {
3374 putc(' ', file);
3375 }
3376 fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
Eric Andersencc8ed391999-10-05 16:24:54 +00003377}
3378
3379
3380/* zip.c -- compress files to the gzip or pkzip format
3381 * Copyright (C) 1992-1993 Jean-loup Gailly
3382 * This is free software; you can redistribute it and/or modify it under the
3383 * terms of the GNU General Public License, see the file COPYING.
3384 */
3385
Eric Andersencc8ed391999-10-05 16:24:54 +00003386#include <ctype.h>
3387#include <sys/types.h>
3388
3389#ifdef HAVE_UNISTD_H
3390# include <unistd.h>
3391#endif
3392#ifndef NO_FCNTL_H
3393# include <fcntl.h>
3394#endif
3395
Erik Andersene49d5ec2000-02-08 19:58:47 +00003396local ulg crc; /* crc on uncompressed file data */
3397long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00003398
3399/* ===========================================================================
3400 * Deflate in to out.
3401 * IN assertions: the input and output buffers are cleared.
3402 * The variables time_stamp and save_orig_name are initialized.
3403 */
3404int zip(in, out)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003405int in, out; /* input and output file descriptors */
Eric Andersencc8ed391999-10-05 16:24:54 +00003406{
Eric Andersen851895a2001-03-21 21:52:25 +00003407 uch my_flags = 0; /* general purpose bit flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003408 ush attr = 0; /* ascii/binary flag */
3409 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00003410
Erik Andersene49d5ec2000-02-08 19:58:47 +00003411 ifd = in;
3412 ofd = out;
3413 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00003414
Erik Andersene49d5ec2000-02-08 19:58:47 +00003415 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00003416
Eric Andersen96bcfd31999-11-12 01:30:18 +00003417
Erik Andersene49d5ec2000-02-08 19:58:47 +00003418 method = DEFLATED;
3419 put_byte(GZIP_MAGIC[0]); /* magic header */
3420 put_byte(GZIP_MAGIC[1]);
3421 put_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00003422
Eric Andersen851895a2001-03-21 21:52:25 +00003423 put_byte(my_flags); /* general flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00003424 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00003425
Erik Andersene49d5ec2000-02-08 19:58:47 +00003426 /* Write deflated file to zip file */
3427 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00003428
Erik Andersene49d5ec2000-02-08 19:58:47 +00003429 bi_init(out);
3430 ct_init(&attr, &method);
3431 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00003432
Erik Andersene49d5ec2000-02-08 19:58:47 +00003433 put_byte((uch) deflate_flags); /* extra flags */
3434 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00003435
Erik Andersene49d5ec2000-02-08 19:58:47 +00003436 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00003437
Erik Andersene49d5ec2000-02-08 19:58:47 +00003438 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00003439
Erik Andersene49d5ec2000-02-08 19:58:47 +00003440 /* Write the crc and uncompressed size */
3441 put_long(crc);
3442 put_long(isize);
3443 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00003444
Erik Andersene49d5ec2000-02-08 19:58:47 +00003445 flush_outbuf();
3446 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00003447}
3448
3449
3450/* ===========================================================================
3451 * Read a new buffer from the current input file, perform end-of-line
3452 * translation, and update the crc and input file size.
3453 * IN assertion: size >= 2 (for end-of-line translation)
3454 */
3455int file_read(buf, size)
Erik Andersene49d5ec2000-02-08 19:58:47 +00003456char *buf;
3457unsigned size;
Eric Andersencc8ed391999-10-05 16:24:54 +00003458{
Erik Andersene49d5ec2000-02-08 19:58:47 +00003459 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003460
Erik Andersene49d5ec2000-02-08 19:58:47 +00003461 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00003462
Erik Andersene49d5ec2000-02-08 19:58:47 +00003463 len = read(ifd, buf, size);
3464 if (len == (unsigned) (-1) || len == 0)
3465 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003466
Erik Andersene49d5ec2000-02-08 19:58:47 +00003467 crc = updcrc((uch *) buf, len);
3468 isize += (ulg) len;
3469 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00003470}
Matt Kraai7918e1f2000-11-08 06:52:57 +00003471
3472/* ===========================================================================
3473 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
3474 * (used for the compressed data only)
3475 */
3476void flush_outbuf()
3477{
3478 if (outcnt == 0)
3479 return;
3480
3481 write_buf(ofd, (char *) outbuf, outcnt);
3482 bytes_out += (ulg) outcnt;
3483 outcnt = 0;
3484}