blob: 3e7a65a869e2c2baafe843d11414586bf7c4b149 [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 Andersencbe31da2001-02-20 06:14:08 +000038#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000039#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000040#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000041#include <unistd.h>
Glenn L McGrathf58efb52001-03-28 05:35:16 +000042#include <errno.h>
Eric Andersen3073dfb2001-07-02 17:57:32 +000043#include <sys/types.h>
44#include <signal.h>
45#include <utime.h>
46#include <ctype.h>
47#include <sys/types.h>
48#include <unistd.h>
49#include <dirent.h>
50#include <fcntl.h>
51#include <time.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000052#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000053
Erik Andersen61677fe2000-04-13 01:18:56 +000054#define memzero(s, n) memset ((void *)(s), 0, (n))
Eric Andersencc8ed391999-10-05 16:24:54 +000055
56#ifndef RETSIGTYPE
57# define RETSIGTYPE void
58#endif
59
Erik Andersene49d5ec2000-02-08 19:58:47 +000060typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000061typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000062typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000063
64/* Return codes from gzip */
65#define OK 0
66#define ERROR 1
67#define WARNING 2
68
69/* Compression methods (see algorithm.doc) */
Eric Andersen3073dfb2001-07-02 17:57:32 +000070/* Only STORED and DEFLATED are supported by this BusyBox module */
Eric Andersencc8ed391999-10-05 16:24:54 +000071#define STORED 0
Eric Andersencc8ed391999-10-05 16:24:54 +000072/* methods 4 to 7 reserved */
73#define DEFLATED 8
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
Eric Andersencc8ed391999-10-05 16:24:54 +000079 * For compression, input is done in window[]. For decompression, output
80 * is done in window except for unlzw.
81 */
82
83#ifndef INBUFSIZ
84# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000085# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000086# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000087# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000088# endif
89#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000090#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000091
92#ifndef OUTBUFSIZ
93# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000094# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000095# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000096# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000097# endif
98#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000099#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +0000100
101#ifndef DIST_BUFSIZE
102# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000104# else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +0000106# endif
107#endif
108
109#ifdef DYN_ALLOC
Eric Andersen3073dfb2001-07-02 17:57:32 +0000110# define DECLARE(type, array, size) static type * array
Eric Andersencc8ed391999-10-05 16:24:54 +0000111# define ALLOC(type, array, size) { \
Eric Andersen39eb0402001-08-22 04:15:47 +0000112 array = (type*)xcalloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Eric Andersencc8ed391999-10-05 16:24:54 +0000113 }
Erik Andersen61677fe2000-04-13 01:18:56 +0000114# define FREE(array) {if (array != NULL) free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +0000115#else
Eric Andersen3073dfb2001-07-02 17:57:32 +0000116# define DECLARE(type, array, size) static type array[size]
Eric Andersencc8ed391999-10-05 16:24:54 +0000117# define ALLOC(type, array, size)
118# define FREE(array)
119#endif
120
Eric Andersencc8ed391999-10-05 16:24:54 +0000121#define tab_suffix window
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000122#define tab_prefix prev /* hash link (see deflate.c) */
123#define head (prev+WSIZE) /* hash head (see deflate.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000124
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000125static long bytes_in; /* number of input bytes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000126
127#define isize bytes_in
128/* for compatibility with old zip sources (to be cleaned) */
129
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000130typedef int file_t; /* Do not use stdio */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000131
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000132#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000133
134
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135#define PACK_MAGIC "\037\036" /* Magic header for packed files */
136#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
137#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
138#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
139#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000140
141/* gzip flag byte */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000142#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
143#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
144#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
145#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
146#define COMMENT 0x10 /* bit 4 set: file comment present */
147#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000148
149/* internal file attribute */
150#define UNKNOWN 0xffff
151#define BINARY 0
152#define ASCII 1
153
154#ifndef WSIZE
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000155# define WSIZE 0x8000 /* window size--must be a power of two, and */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000157
158#define MIN_MATCH 3
159#define MAX_MATCH 258
160/* The minimum and maximum match lengths */
161
162#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
163/* Minimum amount of lookahead, except at the end of the input file.
164 * See deflate.c for comments about the MIN_MATCH+1.
165 */
166
167#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
168/* In order to simplify the code, particularly on 16 bit machines, match
169 * distances are limited to MAX_DIST instead of WSIZE.
170 */
171
Eric Andersen3073dfb2001-07-02 17:57:32 +0000172/* put_byte is used for the compressed output */
Eric Andersencc8ed391999-10-05 16:24:54 +0000173#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
174 flush_outbuf();}
Eric Andersencc8ed391999-10-05 16:24:54 +0000175
Eric Andersencc8ed391999-10-05 16:24:54 +0000176
177/* Output a 32 bit value to the bit stream, lsb first */
Eric Andersen39eb0402001-08-22 04:15:47 +0000178#if 0
Eric Andersencc8ed391999-10-05 16:24:54 +0000179#define put_long(n) { \
180 put_short((n) & 0xffff); \
181 put_short(((ulg)(n)) >> 16); \
182}
Eric Andersen39eb0402001-08-22 04:15:47 +0000183#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000184
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000185#define seekable() 0 /* force sequential output */
186#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000187
Eric Andersencc8ed391999-10-05 16:24:54 +0000188/* Diagnostic functions */
189#ifdef DEBUG
Mark Whitleyf57c9442000-12-07 19:56:48 +0000190# define Assert(cond,msg) {if(!(cond)) error_msg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000191# define Trace(x) fprintf x
192# define Tracev(x) {if (verbose) fprintf x ;}
193# define Tracevv(x) {if (verbose>1) fprintf x ;}
194# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
195# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
196#else
197# define Assert(cond,msg)
198# define Trace(x)
199# define Tracev(x)
200# define Tracevv(x)
201# define Tracec(c,x)
202# define Tracecv(c,x)
203#endif
204
205#define WARN(msg) {if (!quiet) fprintf msg ; \
206 if (exit_code == OK) exit_code = WARNING;}
207
Eric Andersen3073dfb2001-07-02 17:57:32 +0000208#ifndef MAX_PATH_LEN
209# define MAX_PATH_LEN 1024 /* max pathname length */
210#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000211
Eric Andersencc8ed391999-10-05 16:24:54 +0000212
Eric Andersen3073dfb2001-07-02 17:57:32 +0000213 /* from zip.c: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000214static int zip(int in, int out);
215static int file_read(char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000216
Eric Andersen3073dfb2001-07-02 17:57:32 +0000217 /* from gzip.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000218static RETSIGTYPE abort_gzip(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000219
Eric Andersen3073dfb2001-07-02 17:57:32 +0000220 /* from deflate.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000221static void lm_init(ush * flags);
222static ulg deflate(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000223
Eric Andersen3073dfb2001-07-02 17:57:32 +0000224 /* from trees.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000225static void ct_init(ush * attr, int *methodp);
226static int ct_tally(int dist, int lc);
227static ulg flush_block(char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000228
Eric Andersen3073dfb2001-07-02 17:57:32 +0000229 /* from bits.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000230static void bi_init(file_t zipfile);
231static void send_bits(int value, int length);
232static unsigned bi_reverse(unsigned value, int length);
233static void bi_windup(void);
234static void copy_block(char *buf, unsigned len, int header);
Eric Andersen3073dfb2001-07-02 17:57:32 +0000235static int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000236
Eric Andersen3073dfb2001-07-02 17:57:32 +0000237 /* from util.c: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000238static void flush_outbuf(void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239
Eric Andersencc8ed391999-10-05 16:24:54 +0000240/* lzw.h -- define the lzw functions.
241 * Copyright (C) 1992-1993 Jean-loup Gailly.
242 * This is free software; you can redistribute it and/or modify it under the
243 * terms of the GNU General Public License, see the file COPYING.
244 */
245
246#if !defined(OF) && defined(lint)
247# include "gzip.h"
248#endif
249
250#ifndef BITS
251# define BITS 16
252#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000253#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000254
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000255#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000256/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
257 * It's a pity that old uncompress does not check bit 0x20. That makes
258 * extension of the format actually undesirable because old compress
259 * would just crash on the new format instead of giving a meaningful
260 * error message. It does check the number of bits, but it's more
261 * helpful to say "unsupported format, get a new version" than
262 * "can only handle 16 bits".
263 */
264
Eric Andersencc8ed391999-10-05 16:24:54 +0000265/* tailor.h -- target dependent definitions
266 * Copyright (C) 1992-1993 Jean-loup Gailly.
267 * This is free software; you can redistribute it and/or modify it under the
268 * terms of the GNU General Public License, see the file COPYING.
269 */
270
271/* The target dependent definitions should be defined here only.
272 * The target dependent functions should be defined in tailor.c.
273 */
274
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Eric Andersencc8ed391999-10-05 16:24:54 +0000276 /* Common defaults */
277
278#ifndef OS_CODE
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000279# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000280#endif
281
282#ifndef PATH_SEP
283# define PATH_SEP '/'
284#endif
285
Eric Andersencc8ed391999-10-05 16:24:54 +0000286#ifndef OPTIONS_VAR
287# define OPTIONS_VAR "GZIP"
288#endif
289
290#ifndef Z_SUFFIX
291# define Z_SUFFIX ".gz"
292#endif
293
294#ifdef MAX_EXT_CHARS
295# define MAX_SUFFIX MAX_EXT_CHARS
296#else
297# define MAX_SUFFIX 30
298#endif
299
Eric Andersen3073dfb2001-07-02 17:57:32 +0000300 /* global buffers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000301
Eric Andersen3073dfb2001-07-02 17:57:32 +0000302DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
303DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
304DECLARE(ush, d_buf, DIST_BUFSIZE);
305DECLARE(uch, window, 2L * WSIZE);
306DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +0000307
Eric Andersen3073dfb2001-07-02 17:57:32 +0000308static int crc_table_empty = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000309
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000310static int foreground; /* set if program run in foreground */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000311static int method = DEFLATED; /* compression method */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000312static int exit_code = OK; /* program exit code */
313static int part_nb; /* number of parts in .gz file */
314static long time_stamp; /* original time stamp (modification time) */
315static long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000316static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000317static int z_len; /* strlen(z_suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000318
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000319static int ifd; /* input file descriptor */
320static int ofd; /* output file descriptor */
321static unsigned insize; /* valid bytes in inbuf */
322static unsigned outcnt; /* bytes in output buffer */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000323
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000324
325/* Output a 16 bit value, lsb first */
326static void put_short(ush w)
327{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000328 if (outcnt < OUTBUFSIZ - 2) {
329 outbuf[outcnt++] = (uch) ((w) & 0xff);
330 outbuf[outcnt++] = (uch) ((ush) (w) >> 8);
331 } else {
332 put_byte((uch) ((w) & 0xff));
333 put_byte((uch) ((ush) (w) >> 8));
334 }
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000335}
336
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000337/* ========================================================================
338 * Signal and error handler.
339 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000340static void abort_gzip()
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000341{
342 exit(ERROR);
343}
344
345/* ===========================================================================
346 * Clear input and output buffers
347 */
348static void clear_bufs(void)
349{
350 outcnt = 0;
Eric Andersen3073dfb2001-07-02 17:57:32 +0000351 insize = 0;
352 bytes_in = 0L;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000353}
354
Eric Andersen74400cc2001-10-18 04:11:39 +0000355static void write_error_msg(void)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000356{
357 fprintf(stderr, "\n");
358 perror("");
359 abort_gzip();
360}
361
362/* ===========================================================================
363 * Does the same as write(), but also handles partial pipe writes and checks
364 * for error return.
365 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000366static void write_buf(int fd, void *buf, unsigned cnt)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000367{
368 unsigned n;
369
370 while ((n = write(fd, buf, cnt)) != cnt) {
371 if (n == (unsigned) (-1)) {
372 write_error_msg();
373 }
374 cnt -= n;
375 buf = (void *) ((char *) buf + n);
376 }
377}
378
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000379/* ===========================================================================
380 * Run a set of bytes through the crc shift register. If s is a NULL
381 * pointer, then initialize the crc shift register contents instead.
382 * Return the current crc in either case.
383 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000384static ulg updcrc(uch * s, unsigned n)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000385{
386 static ulg crc = (ulg) 0xffffffffL; /* shift register contents */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000387 register ulg c; /* temporary variable */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000388 static unsigned long crc_32_tab[256];
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000389
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000390 if (crc_table_empty) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000391 unsigned long csr; /* crc shift register */
Eric Andersen39eb0402001-08-22 04:15:47 +0000392 const unsigned long e = 0xedb88320L; /* polynomial exclusive-or pattern */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000393 int i; /* counter for all possible eight bit values */
394 int k; /* byte being shifted into crc apparatus */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000395
Eric Andersen39eb0402001-08-22 04:15:47 +0000396 /* Compute table of CRC's. */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000397 crc_32_tab[0] = 0x00000000L;
398 for (i = 1; i < 256; i++) {
399 csr = i;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000400 /* The idea to initialize the register with the byte instead of
401 * zero was stolen from Haruhiko Okumura's ar002
402 */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000403 for (k = 8; k; k--)
404 csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000405 crc_32_tab[i] = csr;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000406 }
407 }
408
409 if (s == NULL) {
410 c = 0xffffffffL;
411 } else {
412 c = crc;
413 if (n)
414 do {
415 c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);
416 } while (--n);
417 }
418 crc = c;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000419 return c ^ 0xffffffffL; /* (instead of ~c for 64-bit machines) */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000420}
421
Eric Andersencc8ed391999-10-05 16:24:54 +0000422/* bits.c -- output variable-length bit strings
423 * Copyright (C) 1992-1993 Jean-loup Gailly
424 * This is free software; you can redistribute it and/or modify it under the
425 * terms of the GNU General Public License, see the file COPYING.
426 */
427
428
429/*
430 * PURPOSE
431 *
432 * Output variable-length bit strings. Compression can be done
433 * to a file or to memory. (The latter is not supported in this version.)
434 *
435 * DISCUSSION
436 *
437 * The PKZIP "deflate" file format interprets compressed file data
438 * as a sequence of bits. Multi-bit strings in the file may cross
439 * byte boundaries without restriction.
440 *
441 * The first bit of each byte is the low-order bit.
442 *
443 * The routines in this file allow a variable-length bit value to
444 * be output right-to-left (useful for literal values). For
445 * left-to-right output (useful for code strings from the tree routines),
446 * the bits must have been reversed first with bi_reverse().
447 *
448 * For in-memory compression, the compressed bit stream goes directly
449 * into the requested output buffer. The input data is read in blocks
450 * by the mem_read() function. The buffer is limited to 64K on 16 bit
451 * machines.
452 *
453 * INTERFACE
454 *
455 * void bi_init (FILE *zipfile)
456 * Initialize the bit string routines.
457 *
458 * void send_bits (int value, int length)
459 * Write out a bit string, taking the source bits right to
460 * left.
461 *
462 * int bi_reverse (int value, int length)
463 * Reverse the bits of a bit string, taking the source bits left to
464 * right and emitting them right to left.
465 *
466 * void bi_windup (void)
467 * Write out any remaining bits in an incomplete byte.
468 *
469 * void copy_block(char *buf, unsigned len, int header)
470 * Copy a stored block to the zip file, storing first the length and
471 * its one's complement if requested.
472 *
473 */
474
Eric Andersencc8ed391999-10-05 16:24:54 +0000475/* ===========================================================================
476 * Local data used by the "bit string" routines.
477 */
478
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000479static file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000480
Eric Andersen3073dfb2001-07-02 17:57:32 +0000481static unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000482
Eric Andersencc8ed391999-10-05 16:24:54 +0000483/* Output buffer. bits are inserted starting at the bottom (least significant
484 * bits).
485 */
486
487#define Buf_size (8 * 2*sizeof(char))
488/* Number of bits used within bi_buf. (bi_buf might be implemented on
489 * more than 16 bits on some systems.)
490 */
491
Eric Andersen3073dfb2001-07-02 17:57:32 +0000492static int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000493
Eric Andersencc8ed391999-10-05 16:24:54 +0000494/* Current input function. Set to mem_read for in-memory compression */
495
496#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000497ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000498#endif
499
500/* ===========================================================================
501 * Initialize the bit string routines.
502 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000503static void bi_init(file_t zipfile)
Eric Andersencc8ed391999-10-05 16:24:54 +0000504{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505 zfile = zipfile;
506 bi_buf = 0;
507 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000508#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000509 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000510#endif
511
Erik Andersene49d5ec2000-02-08 19:58:47 +0000512 /* Set the defaults for file compression. They are set by memcompress
513 * for in-memory compression.
514 */
515 if (zfile != NO_FILE) {
516 read_buf = file_read;
517 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000518}
519
520/* ===========================================================================
521 * Send a value on a given number of bits.
522 * IN assertion: length <= 16 and value fits in length bits.
523 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000524static void send_bits(int value, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000525{
526#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000527 Tracev((stderr, " l %2d v %4x ", length, value));
528 Assert(length > 0 && length <= 15, "invalid length");
529 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000530#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
532 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
533 * unused bits in value.
534 */
535 if (bi_valid > (int) Buf_size - length) {
536 bi_buf |= (value << bi_valid);
537 put_short(bi_buf);
538 bi_buf = (ush) value >> (Buf_size - bi_valid);
539 bi_valid += length - Buf_size;
540 } else {
541 bi_buf |= value << bi_valid;
542 bi_valid += length;
543 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000544}
545
546/* ===========================================================================
547 * Reverse the first len bits of a code, using straightforward code (a faster
548 * method would use a table)
549 * IN assertion: 1 <= len <= 15
550 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000551static unsigned bi_reverse(unsigned code, int len)
Eric Andersencc8ed391999-10-05 16:24:54 +0000552{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553 register unsigned res = 0;
554
555 do {
556 res |= code & 1;
557 code >>= 1, res <<= 1;
558 } while (--len > 0);
559 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000560}
561
562/* ===========================================================================
563 * Write out any remaining bits in an incomplete byte.
564 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000565static void bi_windup()
Eric Andersencc8ed391999-10-05 16:24:54 +0000566{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000567 if (bi_valid > 8) {
568 put_short(bi_buf);
569 } else if (bi_valid > 0) {
570 put_byte(bi_buf);
571 }
572 bi_buf = 0;
573 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000574#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000575 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000576#endif
577}
578
579/* ===========================================================================
580 * Copy a stored block to the zip file, storing first the length and its
581 * one's complement if requested.
582 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000583static void copy_block(char *buf, unsigned len, int header)
Eric Andersencc8ed391999-10-05 16:24:54 +0000584{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000585 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000586
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587 if (header) {
588 put_short((ush) len);
589 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000590#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000591 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000592#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000593 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000594#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000595 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000596#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000597 while (len--) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000598 put_byte(*buf++);
599 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000600}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000601
Eric Andersencc8ed391999-10-05 16:24:54 +0000602/* deflate.c -- compress data using the deflation algorithm
603 * Copyright (C) 1992-1993 Jean-loup Gailly
604 * This is free software; you can redistribute it and/or modify it under the
605 * terms of the GNU General Public License, see the file COPYING.
606 */
607
608/*
609 * PURPOSE
610 *
611 * Identify new text as repetitions of old text within a fixed-
612 * length sliding window trailing behind the new text.
613 *
614 * DISCUSSION
615 *
616 * The "deflation" process depends on being able to identify portions
617 * of the input text which are identical to earlier input (within a
618 * sliding window trailing behind the input currently being processed).
619 *
620 * The most straightforward technique turns out to be the fastest for
621 * most input files: try all possible matches and select the longest.
622 * The key feature of this algorithm is that insertions into the string
623 * dictionary are very simple and thus fast, and deletions are avoided
624 * completely. Insertions are performed at each input character, whereas
625 * string matches are performed only when the previous match ends. So it
626 * is preferable to spend more time in matches to allow very fast string
627 * insertions and avoid deletions. The matching algorithm for small
628 * strings is inspired from that of Rabin & Karp. A brute force approach
629 * is used to find longer strings when a small match has been found.
630 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
631 * (by Leonid Broukhis).
632 * A previous version of this file used a more sophisticated algorithm
633 * (by Fiala and Greene) which is guaranteed to run in linear amortized
634 * time, but has a larger average cost, uses more memory and is patented.
635 * However the F&G algorithm may be faster for some highly redundant
636 * files if the parameter max_chain_length (described below) is too large.
637 *
638 * ACKNOWLEDGEMENTS
639 *
640 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
641 * I found it in 'freeze' written by Leonid Broukhis.
642 * Thanks to many info-zippers for bug reports and testing.
643 *
644 * REFERENCES
645 *
646 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
647 *
648 * A description of the Rabin and Karp algorithm is given in the book
649 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
650 *
651 * Fiala,E.R., and Greene,D.H.
652 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
653 *
654 * INTERFACE
655 *
656 * void lm_init (int pack_level, ush *flags)
657 * Initialize the "longest match" routines for a new file
658 *
659 * ulg deflate (void)
660 * Processes a new input file and return its compressed length. Sets
661 * the compressed length, crc, deflate flags and internal file
662 * attributes.
663 */
664
Eric Andersencc8ed391999-10-05 16:24:54 +0000665
Eric Andersencc8ed391999-10-05 16:24:54 +0000666/* ===========================================================================
667 * Configuration parameters
668 */
669
670/* Compile with MEDIUM_MEM to reduce the memory requirements or
671 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
672 * entire input file can be held in memory (not possible on 16 bit systems).
673 * Warning: defining these symbols affects HASH_BITS (see below) and thus
674 * affects the compression ratio. The compressed output
675 * is still correct, and might even be smaller in some cases.
676 */
677
678#ifdef SMALL_MEM
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000679# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +0000680#endif
681#ifdef MEDIUM_MEM
682# define HASH_BITS 14
683#endif
684#ifndef HASH_BITS
685# define HASH_BITS 15
686 /* For portability to 16 bit machines, do not use values above 15. */
687#endif
688
689/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
690 * window with tab_suffix. Check that we can do this:
691 */
692#if (WSIZE<<1) > (1<<BITS)
Eric Andersen3073dfb2001-07-02 17:57:32 +0000693# error cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +0000694#endif
695#if HASH_BITS > BITS-1
Eric Andersen3073dfb2001-07-02 17:57:32 +0000696# error cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +0000697#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000698#define HASH_SIZE (unsigned)(1<<HASH_BITS)
699#define HASH_MASK (HASH_SIZE-1)
700#define WMASK (WSIZE-1)
701/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +0000702#define NIL 0
703/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +0000704#define FAST 4
705#define SLOW 2
706/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +0000707#ifndef TOO_FAR
708# define TOO_FAR 4096
709#endif
710/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +0000711/* ===========================================================================
712 * Local data used by the "longest match" routines.
713 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000714typedef ush Pos;
715typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000716
Eric Andersencc8ed391999-10-05 16:24:54 +0000717/* A Pos is an index in the character window. We use short instead of int to
718 * save space in the various tables. IPos is used only for parameter passing.
719 */
720
721/* DECLARE(uch, window, 2L*WSIZE); */
722/* Sliding window. Input bytes are read into the second half of the window,
723 * and move to the first half later to keep a dictionary of at least WSIZE
724 * bytes. With this organization, matches are limited to a distance of
725 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
726 * performed with a length multiple of the block size. Also, it limits
727 * the window size to 64K, which is quite useful on MSDOS.
728 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
729 * be less efficient).
730 */
731
732/* DECLARE(Pos, prev, WSIZE); */
733/* Link to older string with same hash index. To limit the size of this
734 * array to 64K, this link is maintained only for the last 32K strings.
735 * An index in this array is thus a window index modulo 32K.
736 */
737
738/* DECLARE(Pos, head, 1<<HASH_BITS); */
739/* Heads of the hash chains or NIL. */
740
Eric Andersen3073dfb2001-07-02 17:57:32 +0000741static const ulg window_size = (ulg) 2 * WSIZE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000742
Eric Andersencc8ed391999-10-05 16:24:54 +0000743/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
744 * input file length plus MIN_LOOKAHEAD.
745 */
746
Eric Andersen3073dfb2001-07-02 17:57:32 +0000747static long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000748
Eric Andersencc8ed391999-10-05 16:24:54 +0000749/* window position at the beginning of the current output block. Gets
750 * negative when the window is moved backwards.
751 */
752
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000753static unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +0000754
755#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
756/* Number of bits by which ins_h and del_h must be shifted at each
757 * input step. It must be such that after MIN_MATCH steps, the oldest
758 * byte no longer takes part in the hash key, that is:
759 * H_SHIFT * MIN_MATCH >= HASH_BITS
760 */
761
Eric Andersen3073dfb2001-07-02 17:57:32 +0000762static unsigned int prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000763
Eric Andersencc8ed391999-10-05 16:24:54 +0000764/* Length of the best match at previous step. Matches not greater than this
765 * are discarded. This is used in the lazy match evaluation.
766 */
767
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000768static unsigned strstart; /* start of string to insert */
769static unsigned match_start; /* start of matching string */
770static int eofile; /* flag set at end of input file */
771static unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +0000772
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000773static const unsigned max_chain_length = 4096;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000774
Eric Andersencc8ed391999-10-05 16:24:54 +0000775/* To speed up deflation, hash chains are never searched beyond this length.
776 * A higher limit improves compression ratio but degrades the speed.
777 */
778
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000779static const unsigned int max_lazy_match = 258;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000780
Eric Andersencc8ed391999-10-05 16:24:54 +0000781/* Attempt to find a better match only when the current match is strictly
782 * smaller than this value. This mechanism is used only for compression
783 * levels >= 4.
784 */
785#define max_insert_length max_lazy_match
786/* Insert new strings in the hash table only if the match length
787 * is not greater than this length. This saves time but degrades compression.
788 * max_insert_length is used only for compression levels <= 3.
789 */
790
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000791static const unsigned good_match = 32;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792
Eric Andersencc8ed391999-10-05 16:24:54 +0000793/* Use a faster search when the previous match is longer than this */
794
795
796/* Values for max_lazy_match, good_match and max_chain_length, depending on
797 * the desired pack level (0..9). The values given below have been tuned to
798 * exclude worst case performance for pathological files. Better values may be
799 * found for specific files.
800 */
801
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000802static const int nice_match = 258; /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +0000803
804/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
805 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
806 * meaning.
807 */
808
809#define EQUAL 0
810/* result of memcmp for equal strings */
811
812/* ===========================================================================
813 * Prototypes for local functions.
814 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000815static void fill_window(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000816
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000817static int longest_match(IPos cur_match);
Eric Andersencc8ed391999-10-05 16:24:54 +0000818
819#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000820static void check_match(IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +0000821#endif
822
823/* ===========================================================================
824 * Update a hash value with the given input byte
825 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
826 * input characters, so that a running hash key can be computed from the
827 * previous key instead of complete recalculation each time.
828 */
829#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
830
831/* ===========================================================================
832 * Insert string s in the dictionary and set match_head to the previous head
833 * of the hash chain (the most recent string with same hash key). Return
834 * the previous length of the hash chain.
835 * IN assertion: all calls to to INSERT_STRING are made with consecutive
836 * input characters and the first MIN_MATCH bytes of s are valid
837 * (except for the last MIN_MATCH-1 bytes of the input file).
838 */
839#define INSERT_STRING(s, match_head) \
840 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
841 prev[(s) & WMASK] = match_head = head[ins_h], \
842 head[ins_h] = (s))
843
844/* ===========================================================================
845 * Initialize the "longest match" routines for a new file
846 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000847static void lm_init(ush * flags)
Eric Andersencc8ed391999-10-05 16:24:54 +0000848{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000849 register unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +0000850
Erik Andersene49d5ec2000-02-08 19:58:47 +0000851 /* Initialize the hash table. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 memzero((char *) head, HASH_SIZE * sizeof(*head));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000853 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +0000854
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855 *flags |= SLOW;
856 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000857
Erik Andersene49d5ec2000-02-08 19:58:47 +0000858 strstart = 0;
859 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000860
Erik Andersene49d5ec2000-02-08 19:58:47 +0000861 lookahead = read_buf((char *) window,
862 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000863
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864 if (lookahead == 0 || lookahead == (unsigned) EOF) {
865 eofile = 1, lookahead = 0;
866 return;
867 }
868 eofile = 0;
869 /* Make sure that we always have enough lookahead. This is important
870 * if input comes from a device such as a tty.
871 */
872 while (lookahead < MIN_LOOKAHEAD && !eofile)
873 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +0000874
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 ins_h = 0;
876 for (j = 0; j < MIN_MATCH - 1; j++)
877 UPDATE_HASH(ins_h, window[j]);
878 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
879 * not important since only literal bytes will be emitted.
880 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000881}
882
883/* ===========================================================================
884 * Set match_start to the longest match starting at the given string and
885 * return its length. Matches shorter or equal to prev_length are discarded,
886 * in which case the result is equal to prev_length and match_start is
887 * garbage.
888 * IN assertions: cur_match is the head of the hash chain for the current
889 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
890 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000891
Eric Andersencc8ed391999-10-05 16:24:54 +0000892/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
893 * match.s. The code is functionally equivalent, so you can use the C version
894 * if desired.
895 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000896static int longest_match(IPos cur_match)
Eric Andersencc8ed391999-10-05 16:24:54 +0000897{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000898 unsigned chain_length = max_chain_length; /* max hash chain length */
899 register uch *scan = window + strstart; /* current string */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000900 register uch *match; /* matched string */
901 register int len; /* length of current match */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 int best_len = prev_length; /* best match length so far */
903 IPos limit =
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
905 /* Stop when cur_match becomes <= limit. To simplify the code,
906 * we prevent matches with the string of window index 0.
907 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000908
909/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
910 * It is easy to get rid of this optimization if necessary.
911 */
912#if HASH_BITS < 8 || MAX_MATCH != 258
Eric Andersen3073dfb2001-07-02 17:57:32 +0000913# error Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +0000914#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000915 register uch *strend = window + strstart + MAX_MATCH;
916 register uch scan_end1 = scan[best_len - 1];
917 register uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +0000918
Erik Andersene49d5ec2000-02-08 19:58:47 +0000919 /* Do not waste too much time if we already have a good match: */
920 if (prev_length >= good_match) {
921 chain_length >>= 2;
922 }
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000923 Assert(strstart <= window_size - MIN_LOOKAHEAD, "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +0000924
Erik Andersene49d5ec2000-02-08 19:58:47 +0000925 do {
926 Assert(cur_match < strstart, "no future");
927 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +0000928
Erik Andersene49d5ec2000-02-08 19:58:47 +0000929 /* Skip to next match if the match length cannot increase
930 * or if the match length is less than 2:
931 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 if (match[best_len] != scan_end ||
933 match[best_len - 1] != scan_end1 ||
934 *match != *scan || *++match != scan[1])
935 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +0000936
Erik Andersene49d5ec2000-02-08 19:58:47 +0000937 /* The check at best_len-1 can be removed because it will be made
938 * again later. (This heuristic is not always a win.)
939 * It is not necessary to compare scan[2] and match[2] since they
940 * are always equal when the other bytes match, given that
941 * the hash keys are equal and that HASH_BITS >= 8.
942 */
943 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +0000944
Erik Andersene49d5ec2000-02-08 19:58:47 +0000945 /* We check for insufficient lookahead only every 8th comparison;
946 * the 256th check will be made at strstart+258.
947 */
948 do {
949 } while (*++scan == *++match && *++scan == *++match &&
950 *++scan == *++match && *++scan == *++match &&
951 *++scan == *++match && *++scan == *++match &&
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000952 *++scan == *++match && *++scan == *++match && scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +0000953
Erik Andersene49d5ec2000-02-08 19:58:47 +0000954 len = MAX_MATCH - (int) (strend - scan);
955 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +0000956
Erik Andersene49d5ec2000-02-08 19:58:47 +0000957 if (len > best_len) {
958 match_start = cur_match;
959 best_len = len;
960 if (len >= nice_match)
961 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000962 scan_end1 = scan[best_len - 1];
963 scan_end = scan[best_len];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000964 }
965 } while ((cur_match = prev[cur_match & WMASK]) > limit
966 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +0000969}
Eric Andersencc8ed391999-10-05 16:24:54 +0000970
971#ifdef DEBUG
972/* ===========================================================================
973 * Check that the match at match_start is indeed a match.
974 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000975static void check_match(IPos start, IPos match, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000976{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000977 /* check that the match is indeed a match */
978 if (memcmp((char *) window + match,
979 (char *) window + start, length) != EQUAL) {
980 fprintf(stderr,
981 " start %d, match %d, length %d\n", start, match, length);
Matt Kraaidd19c692001-01-31 19:00:21 +0000982 error_msg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000983 }
984 if (verbose > 1) {
985 fprintf(stderr, "\\[%d,%d]", start - match, length);
986 do {
987 putc(window[start++], stderr);
988 } while (--length != 0);
989 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000990}
991#else
992# define check_match(start, match, length)
993#endif
994
995/* ===========================================================================
996 * Fill the window when the lookahead becomes insufficient.
997 * Updates strstart and lookahead, and sets eofile if end of input file.
998 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
999 * OUT assertions: at least one byte has been read, or eofile is set;
1000 * file reads are performed for at least two bytes (required for the
1001 * translate_eol option).
1002 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001003static void fill_window()
Eric Andersencc8ed391999-10-05 16:24:54 +00001004{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001005 register unsigned n, m;
1006 unsigned more =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001007 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
1008 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +00001009
Erik Andersene49d5ec2000-02-08 19:58:47 +00001010 /* If the window is almost full and there is insufficient lookahead,
1011 * move the upper half to the lower one to make room in the upper half.
1012 */
1013 if (more == (unsigned) EOF) {
1014 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1015 * and lookahead == 1 (input done one byte at time)
1016 */
1017 more--;
1018 } else if (strstart >= WSIZE + MAX_DIST) {
1019 /* By the IN assertion, the window is not empty so we can't confuse
1020 * more == 0 with more == 64K on a 16 bit machine.
1021 */
1022 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +00001023
Erik Andersene49d5ec2000-02-08 19:58:47 +00001024 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
1025 match_start -= WSIZE;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001026 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +00001027
Erik Andersene49d5ec2000-02-08 19:58:47 +00001028 block_start -= (long) WSIZE;
1029
1030 for (n = 0; n < HASH_SIZE; n++) {
1031 m = head[n];
1032 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1033 }
1034 for (n = 0; n < WSIZE; n++) {
1035 m = prev[n];
1036 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1037 /* If n is not on any hash chain, prev[n] is garbage but
1038 * its value will never be used.
1039 */
1040 }
1041 more += WSIZE;
1042 }
1043 /* At this point, more >= 2 */
1044 if (!eofile) {
1045 n = read_buf((char *) window + strstart + lookahead, more);
1046 if (n == 0 || n == (unsigned) EOF) {
1047 eofile = 1;
1048 } else {
1049 lookahead += n;
1050 }
1051 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001052}
1053
1054/* ===========================================================================
1055 * Flush the current block, with given end-of-file flag.
1056 * IN assertion: strstart is set to the end of the current match.
1057 */
1058#define FLUSH_BLOCK(eof) \
1059 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1060 (char*)NULL, (long)strstart - block_start, (eof))
1061
1062/* ===========================================================================
1063 * Same as above, but achieves better compression. We use a lazy
1064 * evaluation for matches: a match is finally adopted only if there is
1065 * no better match at the next window position.
1066 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001067static ulg deflate()
Eric Andersencc8ed391999-10-05 16:24:54 +00001068{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001069 IPos hash_head; /* head of hash chain */
1070 IPos prev_match; /* previous match */
1071 int flush; /* set if current block must be flushed */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001072 int match_available = 0; /* set if previous match exists */
1073 register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1074
Erik Andersene49d5ec2000-02-08 19:58:47 +00001075 /* Process the input block. */
1076 while (lookahead != 0) {
1077 /* Insert the string window[strstart .. strstart+2] in the
1078 * dictionary, and set hash_head to the head of the hash chain:
1079 */
1080 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001081
Erik Andersene49d5ec2000-02-08 19:58:47 +00001082 /* Find the longest match, discarding those <= prev_length.
1083 */
1084 prev_length = match_length, prev_match = match_start;
1085 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001086
Erik Andersene49d5ec2000-02-08 19:58:47 +00001087 if (hash_head != NIL && prev_length < max_lazy_match &&
1088 strstart - hash_head <= MAX_DIST) {
1089 /* To simplify the code, we prevent matches with the string
1090 * of window index 0 (in particular we have to avoid a match
1091 * of the string with itself at the start of the input file).
1092 */
1093 match_length = longest_match(hash_head);
1094 /* longest_match() sets match_start */
1095 if (match_length > lookahead)
1096 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001097
Erik Andersene49d5ec2000-02-08 19:58:47 +00001098 /* Ignore a length 3 match if it is too distant: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001099 if (match_length == MIN_MATCH && strstart - match_start > TOO_FAR) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001100 /* If prev_match is also MIN_MATCH, match_start is garbage
1101 * but we will ignore the current match anyway.
1102 */
1103 match_length--;
1104 }
1105 }
1106 /* If there was a match at the previous step and the current
1107 * match is not better, output the previous match:
1108 */
1109 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001110
Erik Andersene49d5ec2000-02-08 19:58:47 +00001111 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001112
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 flush =
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001114 ct_tally(strstart - 1 - prev_match, prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001115
Erik Andersene49d5ec2000-02-08 19:58:47 +00001116 /* Insert in hash table all strings up to the end of the match.
1117 * strstart-1 and strstart are already inserted.
1118 */
1119 lookahead -= prev_length - 1;
1120 prev_length -= 2;
1121 do {
1122 strstart++;
1123 INSERT_STRING(strstart, hash_head);
1124 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1125 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1126 * these bytes are garbage, but it does not matter since the
1127 * next lookahead bytes will always be emitted as literals.
1128 */
1129 } while (--prev_length != 0);
1130 match_available = 0;
1131 match_length = MIN_MATCH - 1;
1132 strstart++;
1133 if (flush)
1134 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001135
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136 } else if (match_available) {
1137 /* If there was no match at the previous position, output a
1138 * single literal. If there was a match but the current match
1139 * is longer, truncate the previous match to a single literal.
1140 */
1141 Tracevv((stderr, "%c", window[strstart - 1]));
1142 if (ct_tally(0, window[strstart - 1])) {
1143 FLUSH_BLOCK(0), block_start = strstart;
1144 }
1145 strstart++;
1146 lookahead--;
1147 } else {
1148 /* There is no previous match to compare with, wait for
1149 * the next step to decide.
1150 */
1151 match_available = 1;
1152 strstart++;
1153 lookahead--;
1154 }
1155 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001156
Erik Andersene49d5ec2000-02-08 19:58:47 +00001157 /* Make sure that we always have enough lookahead, except
1158 * at the end of the input file. We need MAX_MATCH bytes
1159 * for the next match, plus MIN_MATCH bytes to insert the
1160 * string following the next match.
1161 */
1162 while (lookahead < MIN_LOOKAHEAD && !eofile)
1163 fill_window();
1164 }
1165 if (match_available)
1166 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001167
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001168 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001169}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001170
Eric Andersencc8ed391999-10-05 16:24:54 +00001171/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1172 * Copyright (C) 1992-1993 Jean-loup Gailly
1173 * The unzip code was written and put in the public domain by Mark Adler.
1174 * Portions of the lzw code are derived from the public domain 'compress'
1175 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1176 * Ken Turkowski, Dave Mack and Peter Jannesen.
1177 *
1178 * See the license_msg below and the file COPYING for the software license.
1179 * See the file algorithm.doc for the compression algorithms and file formats.
1180 */
1181
1182/* Compress files with zip algorithm and 'compress' interface.
1183 * See usage() and help() functions below for all options.
1184 * Outputs:
1185 * file.gz: compressed file with same mode, owner, and utimes
1186 * or stdout with -c option or if stdin used as input.
1187 * If the output file name had to be truncated, the original name is kept
1188 * in the compressed file.
Eric Andersencc8ed391999-10-05 16:24:54 +00001189 */
1190
Eric Andersencc8ed391999-10-05 16:24:54 +00001191 /* configuration */
1192
Erik Andersene49d5ec2000-02-08 19:58:47 +00001193typedef struct dirent dir_type;
1194
Erik Andersen61677fe2000-04-13 01:18:56 +00001195typedef RETSIGTYPE(*sig_type) (int);
Eric Andersencc8ed391999-10-05 16:24:54 +00001196
Eric Andersencc8ed391999-10-05 16:24:54 +00001197/* ======================================================================== */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001198int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001199{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001200 int result;
1201 int inFileNum;
1202 int outFileNum;
1203 struct stat statBuf;
1204 char *delFileName;
1205 int tostdout = 0;
Eric Andersenea824fb2000-07-21 22:17:39 +00001206 int force = 0;
Matt Kraai53265542001-04-18 16:05:34 +00001207 int opt;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001208
Glenn L McGrath5bcfc9b2001-05-07 12:01:58 +00001209 while ((opt = getopt(argc, argv, "cf123456789dq")) != -1) {
Matt Kraai53265542001-04-18 16:05:34 +00001210 switch (opt) {
1211 case 'c':
Erik Andersene49d5ec2000-02-08 19:58:47 +00001212 tostdout = 1;
Matt Kraai53265542001-04-18 16:05:34 +00001213 break;
1214 case 'f':
1215 force = 1;
1216 break;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001217 /* Ignore 1-9 (compression level) options */
1218 case '1':
1219 case '2':
1220 case '3':
1221 case '4':
1222 case '5':
1223 case '6':
1224 case '7':
1225 case '8':
1226 case '9':
Matt Kraai53265542001-04-18 16:05:34 +00001227 break;
Glenn L McGrath5bcfc9b2001-05-07 12:01:58 +00001228 case 'q':
1229 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001230#ifdef CONFIG_GUNZIP
Matt Kraai53265542001-04-18 16:05:34 +00001231 case 'd':
1232 optind = 1;
1233 return gunzip_main(argc, argv);
Glenn L McGrath528ef502001-04-11 03:45:37 +00001234#endif
Matt Kraai53265542001-04-18 16:05:34 +00001235 default:
1236 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001237 }
1238 }
1239
1240 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1241 if (foreground) {
1242 (void) signal(SIGINT, (sig_type) abort_gzip);
1243 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001244#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001245 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1246 (void) signal(SIGTERM, (sig_type) abort_gzip);
1247 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001248#endif
1249#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001250 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1251 (void) signal(SIGHUP, (sig_type) abort_gzip);
1252 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001253#endif
1254
Erik Andersene49d5ec2000-02-08 19:58:47 +00001255 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1256 z_len = strlen(z_suffix);
Eric Andersencc8ed391999-10-05 16:24:54 +00001257
Erik Andersene49d5ec2000-02-08 19:58:47 +00001258 /* Allocate all global buffers (for DYN_ALLOC option) */
1259 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1260 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1261 ALLOC(ush, d_buf, DIST_BUFSIZE);
1262 ALLOC(uch, window, 2L * WSIZE);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001263 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001264
Matt Kraai9bd49d62002-02-05 22:31:48 +00001265 clear_bufs();
1266 part_nb = 0;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001267
Matt Kraai9bd49d62002-02-05 22:31:48 +00001268 if (optind == argc) {
1269 time_stamp = 0;
1270 ifile_size = -1L;
1271 zip(STDIN_FILENO, STDOUT_FILENO);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001272 } else {
Matt Kraai9bd49d62002-02-05 22:31:48 +00001273 int i;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001274
Matt Kraai9bd49d62002-02-05 22:31:48 +00001275 for (i = optind; i < argc; i++) {
1276 char *path = NULL;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001277
Matt Kraai9bd49d62002-02-05 22:31:48 +00001278 if (strcmp(argv[i], "-") == 0) {
1279 time_stamp = 0;
1280 ifile_size = -1L;
1281 inFileNum = STDIN_FILENO;
1282 outFileNum = STDOUT_FILENO;
1283 } else {
1284 inFileNum = open(argv[i], O_RDONLY);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001285 if (inFileNum < 0 || fstat(inFileNum, &statBuf) < 0)
Matt Kraai9bd49d62002-02-05 22:31:48 +00001286 perror_msg_and_die("%s", argv[i]);
1287 time_stamp = statBuf.st_ctime;
1288 ifile_size = statBuf.st_size;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001289
Matt Kraai9bd49d62002-02-05 22:31:48 +00001290 if (!tostdout) {
1291 path = xmalloc(strlen(argv[i]) + 4);
1292 strcpy(path, argv[i]);
1293 strcat(path, ".gz");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001294
Matt Kraai9bd49d62002-02-05 22:31:48 +00001295 /* Open output file */
Erik Andersen4d1d0111999-12-17 18:44:15 +00001296#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001297 outFileNum =
1298 open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001299#else
Matt Kraai9bd49d62002-02-05 22:31:48 +00001300 outFileNum = open(path, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001301#endif
Matt Kraai9bd49d62002-02-05 22:31:48 +00001302 if (outFileNum < 0) {
1303 perror_msg("%s", path);
1304 free(path);
1305 continue;
1306 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001307
Matt Kraai9bd49d62002-02-05 22:31:48 +00001308 /* Set permissions on the file */
1309 fchmod(outFileNum, statBuf.st_mode);
1310 } else
1311 outFileNum = STDOUT_FILENO;
1312 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001313
Matt Kraaief8b1122002-03-22 22:55:51 +00001314 if (path == NULL && isatty(outFileNum) && force == 0) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001315 error_msg
1316 ("compressed data not written to a terminal. Use -f to force compression.");
Matt Kraai9bd49d62002-02-05 22:31:48 +00001317 free(path);
1318 continue;
1319 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001320
Matt Kraai9bd49d62002-02-05 22:31:48 +00001321 result = zip(inFileNum, outFileNum);
1322
1323 if (path != NULL) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001324 close(inFileNum);
1325 close(outFileNum);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001326
1327 /* Delete the original file */
1328 if (result == OK)
1329 delFileName = argv[i];
1330 else
1331 delFileName = path;
1332
1333 if (unlink(delFileName) < 0)
1334 perror_msg("%s", delFileName);
1335 }
1336
1337 free(path);
1338 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001339 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001340
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001341 return (exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001342}
1343
Eric Andersencc8ed391999-10-05 16:24:54 +00001344/* trees.c -- output deflated data using Huffman coding
1345 * Copyright (C) 1992-1993 Jean-loup Gailly
1346 * This is free software; you can redistribute it and/or modify it under the
1347 * terms of the GNU General Public License, see the file COPYING.
1348 */
1349
1350/*
1351 * PURPOSE
1352 *
1353 * Encode various sets of source values using variable-length
1354 * binary code trees.
1355 *
1356 * DISCUSSION
1357 *
1358 * The PKZIP "deflation" process uses several Huffman trees. The more
1359 * common source values are represented by shorter bit sequences.
1360 *
1361 * Each code tree is stored in the ZIP file in a compressed form
1362 * which is itself a Huffman encoding of the lengths of
1363 * all the code strings (in ascending order by source values).
1364 * The actual code strings are reconstructed from the lengths in
1365 * the UNZIP process, as described in the "application note"
1366 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1367 *
1368 * REFERENCES
1369 *
1370 * Lynch, Thomas J.
1371 * Data Compression: Techniques and Applications, pp. 53-55.
1372 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1373 *
1374 * Storer, James A.
1375 * Data Compression: Methods and Theory, pp. 49-50.
1376 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1377 *
1378 * Sedgewick, R.
1379 * Algorithms, p290.
1380 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1381 *
1382 * INTERFACE
1383 *
1384 * void ct_init (ush *attr, int *methodp)
1385 * Allocate the match buffer, initialize the various tables and save
1386 * the location of the internal file attribute (ascii/binary) and
1387 * method (DEFLATE/STORE)
1388 *
1389 * void ct_tally (int dist, int lc);
1390 * Save the match info and tally the frequency counts.
1391 *
1392 * long flush_block (char *buf, ulg stored_len, int eof)
1393 * Determine the best encoding for the current block: dynamic trees,
1394 * static trees or store, and output the encoded block to the zip
1395 * file. Returns the total compressed length for the file so far.
1396 *
1397 */
1398
Eric Andersencc8ed391999-10-05 16:24:54 +00001399/* ===========================================================================
1400 * Constants
1401 */
1402
1403#define MAX_BITS 15
1404/* All codes must not exceed MAX_BITS bits */
1405
1406#define MAX_BL_BITS 7
1407/* Bit length codes must not exceed MAX_BL_BITS bits */
1408
1409#define LENGTH_CODES 29
1410/* number of length codes, not counting the special END_BLOCK code */
1411
1412#define LITERALS 256
1413/* number of literal bytes 0..255 */
1414
1415#define END_BLOCK 256
1416/* end of block literal code */
1417
1418#define L_CODES (LITERALS+1+LENGTH_CODES)
1419/* number of Literal or Length codes, including the END_BLOCK code */
1420
1421#define D_CODES 30
1422/* number of distance codes */
1423
1424#define BL_CODES 19
1425/* number of codes used to transfer the bit lengths */
1426
Eric Andersen39eb0402001-08-22 04:15:47 +00001427typedef uch extra_bits_t;
Eric Andersencc8ed391999-10-05 16:24:54 +00001428
Eric Andersen39eb0402001-08-22 04:15:47 +00001429/* extra bits for each length code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001430static const extra_bits_t extra_lbits[LENGTH_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001431 = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001432 4, 4, 5, 5, 5, 5, 0
1433};
Eric Andersencc8ed391999-10-05 16:24:54 +00001434
Eric Andersen39eb0402001-08-22 04:15:47 +00001435/* extra bits for each distance code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001436static const extra_bits_t extra_dbits[D_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001437 = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001438 10, 10, 11, 11, 12, 12, 13, 13
1439};
Eric Andersencc8ed391999-10-05 16:24:54 +00001440
Eric Andersen39eb0402001-08-22 04:15:47 +00001441/* extra bits for each bit length code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001442static const extra_bits_t extra_blbits[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001443= { 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 +00001444
1445#define STORED_BLOCK 0
1446#define STATIC_TREES 1
1447#define DYN_TREES 2
1448/* The three kinds of block type */
1449
1450#ifndef LIT_BUFSIZE
1451# ifdef SMALL_MEM
1452# define LIT_BUFSIZE 0x2000
1453# else
1454# ifdef MEDIUM_MEM
1455# define LIT_BUFSIZE 0x4000
1456# else
1457# define LIT_BUFSIZE 0x8000
1458# endif
1459# endif
1460#endif
1461#ifndef DIST_BUFSIZE
1462# define DIST_BUFSIZE LIT_BUFSIZE
1463#endif
1464/* Sizes of match buffers for literals/lengths and distances. There are
1465 * 4 reasons for limiting LIT_BUFSIZE to 64K:
1466 * - frequencies can be kept in 16 bit counters
1467 * - if compression is not successful for the first block, all input data is
1468 * still in the window so we can still emit a stored block even when input
1469 * comes from standard input. (This can also be done for all blocks if
1470 * LIT_BUFSIZE is not greater than 32K.)
1471 * - if compression is not successful for a file smaller than 64K, we can
1472 * even emit a stored file instead of a stored block (saving 5 bytes).
1473 * - creating new Huffman trees less frequently may not provide fast
1474 * adaptation to changes in the input data statistics. (Take for
1475 * example a binary file with poorly compressible code followed by
1476 * a highly compressible string table.) Smaller buffer sizes give
1477 * fast adaptation but have of course the overhead of transmitting trees
1478 * more frequently.
1479 * - I can't count above 4
1480 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
1481 * memory at the expense of compression). Some optimizations would be possible
1482 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
1483 */
1484#if LIT_BUFSIZE > INBUFSIZ
Aaron Lehmannb9df4702001-12-06 03:22:43 +00001485#error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00001486#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001487#define REP_3_6 16
1488/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001489#define REPZ_3_10 17
1490/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001491#define REPZ_11_138 18
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001492/* repeat a zero length 11-138 times (7 bits of repeat count) */
1493
1494/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00001495 * Local data
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001496 */
1497
1498/* Data structure describing a single value and its code string. */
1499typedef struct ct_data {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001500 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001501 ush freq; /* frequency count */
1502 ush code; /* bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001503 } fc;
1504 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001505 ush dad; /* father node in Huffman tree */
1506 ush len; /* length of bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001507 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00001508} ct_data;
1509
1510#define Freq fc.freq
1511#define Code fc.code
1512#define Dad dl.dad
1513#define Len dl.len
1514
1515#define HEAP_SIZE (2*L_CODES+1)
1516/* maximum heap size */
1517
Eric Andersen3073dfb2001-07-02 17:57:32 +00001518static ct_data dyn_ltree[HEAP_SIZE]; /* literal and length tree */
1519static ct_data dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001520
Eric Andersen3073dfb2001-07-02 17:57:32 +00001521static ct_data static_ltree[L_CODES + 2];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001522
Eric Andersencc8ed391999-10-05 16:24:54 +00001523/* The static literal tree. Since the bit lengths are imposed, there is no
1524 * need for the L_CODES extra codes used during heap construction. However
1525 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
1526 * below).
1527 */
1528
Eric Andersen3073dfb2001-07-02 17:57:32 +00001529static ct_data static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001530
Eric Andersencc8ed391999-10-05 16:24:54 +00001531/* The static distance tree. (Actually a trivial tree since all codes use
1532 * 5 bits.)
1533 */
1534
Eric Andersen3073dfb2001-07-02 17:57:32 +00001535static ct_data bl_tree[2 * BL_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001536
Eric Andersencc8ed391999-10-05 16:24:54 +00001537/* Huffman tree for the bit lengths */
1538
1539typedef struct tree_desc {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001540 ct_data *dyn_tree; /* the dynamic tree */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001541 ct_data *static_tree; /* corresponding static tree or NULL */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001542 const extra_bits_t *extra_bits; /* extra bits for each code or NULL */
1543 int extra_base; /* base index for extra_bits */
1544 int elems; /* max number of elements in the tree */
1545 int max_length; /* max bit length for the codes */
1546 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00001547} tree_desc;
1548
Eric Andersen3073dfb2001-07-02 17:57:32 +00001549static tree_desc l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001550 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001551 MAX_BITS, 0
1552};
Eric Andersencc8ed391999-10-05 16:24:54 +00001553
Eric Andersen3073dfb2001-07-02 17:57:32 +00001554static tree_desc d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001555 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00001556
Eric Andersen3073dfb2001-07-02 17:57:32 +00001557static tree_desc bl_desc =
1558 { bl_tree, (ct_data *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001559 0
1560};
Eric Andersencc8ed391999-10-05 16:24:54 +00001561
1562
Eric Andersen3073dfb2001-07-02 17:57:32 +00001563static ush bl_count[MAX_BITS + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001564
Eric Andersencc8ed391999-10-05 16:24:54 +00001565/* number of codes at each bit length for an optimal tree */
1566
Eric Andersen3073dfb2001-07-02 17:57:32 +00001567static const uch bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001568= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
1569
Eric Andersencc8ed391999-10-05 16:24:54 +00001570/* The lengths of the bit length codes are sent in order of decreasing
1571 * probability, to avoid transmitting the lengths for unused bit length codes.
1572 */
1573
Eric Andersen3073dfb2001-07-02 17:57:32 +00001574static int heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001575static int heap_len; /* number of elements in the heap */
1576static int heap_max; /* element of largest frequency */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001577
Eric Andersencc8ed391999-10-05 16:24:54 +00001578/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
1579 * The same heap array is used to build all trees.
1580 */
1581
Eric Andersen3073dfb2001-07-02 17:57:32 +00001582static uch depth[2 * L_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001583
Eric Andersencc8ed391999-10-05 16:24:54 +00001584/* Depth of each subtree used as tie breaker for trees of equal frequency */
1585
Eric Andersen3073dfb2001-07-02 17:57:32 +00001586static uch length_code[MAX_MATCH - MIN_MATCH + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001587
Eric Andersencc8ed391999-10-05 16:24:54 +00001588/* length code for each normalized match length (0 == MIN_MATCH) */
1589
Eric Andersen3073dfb2001-07-02 17:57:32 +00001590static uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001591
Eric Andersencc8ed391999-10-05 16:24:54 +00001592/* distance codes. The first 256 values correspond to the distances
1593 * 3 .. 258, the last 256 values correspond to the top 8 bits of
1594 * the 15 bit distances.
1595 */
1596
Eric Andersen3073dfb2001-07-02 17:57:32 +00001597static int base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001598
Eric Andersencc8ed391999-10-05 16:24:54 +00001599/* First normalized length for each code (0 = MIN_MATCH) */
1600
Eric Andersen3073dfb2001-07-02 17:57:32 +00001601static int base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001602
Eric Andersencc8ed391999-10-05 16:24:54 +00001603/* First normalized distance for each code (0 = distance of 1) */
1604
1605#define l_buf inbuf
1606/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
1607
1608/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
1609
Eric Andersen3073dfb2001-07-02 17:57:32 +00001610static uch flag_buf[(LIT_BUFSIZE / 8)];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001611
Eric Andersencc8ed391999-10-05 16:24:54 +00001612/* flag_buf is a bit array distinguishing literals from lengths in
1613 * l_buf, thus indicating the presence or absence of a distance.
1614 */
1615
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001616static unsigned last_lit; /* running index in l_buf */
1617static unsigned last_dist; /* running index in d_buf */
1618static unsigned last_flags; /* running index in flag_buf */
1619static uch flags; /* current flags not yet saved in flag_buf */
1620static uch flag_bit; /* current bit used in flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001621
Eric Andersencc8ed391999-10-05 16:24:54 +00001622/* bits are filled in flags starting at bit 0 (least significant).
1623 * Note: these flags are overkill in the current code since we don't
1624 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
1625 */
1626
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001627static ulg opt_len; /* bit length of current block with optimal trees */
1628static ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00001629
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001630static ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00001631
Erik Andersene49d5ec2000-02-08 19:58:47 +00001632
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001633static ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
1634static int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00001635
1636/* ===========================================================================
1637 * Local (static) routines in this file.
1638 */
1639
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001640static void init_block(void);
1641static void pqdownheap(ct_data * tree, int k);
1642static void gen_bitlen(tree_desc * desc);
1643static void gen_codes(ct_data * tree, int max_code);
1644static void build_tree(tree_desc * desc);
1645static void scan_tree(ct_data * tree, int max_code);
1646static void send_tree(ct_data * tree, int max_code);
1647static int build_bl_tree(void);
1648static void send_all_trees(int lcodes, int dcodes, int blcodes);
1649static void compress_block(ct_data * ltree, ct_data * dtree);
1650static void set_file_type(void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001651
1652
1653#ifndef DEBUG
1654# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
1655 /* Send a code of the given tree. c and tree must not have side effects */
1656
Erik Andersene49d5ec2000-02-08 19:58:47 +00001657#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00001658# define send_code(c, tree) \
1659 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
1660 send_bits(tree[c].Code, tree[c].Len); }
1661#endif
1662
1663#define d_code(dist) \
1664 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
1665/* Mapping from a distance to a distance code. dist is the distance - 1 and
1666 * must not have side effects. dist_code[256] and dist_code[257] are never
1667 * used.
1668 */
1669
Eric Andersencc8ed391999-10-05 16:24:54 +00001670/* the arguments must not have side effects */
1671
1672/* ===========================================================================
1673 * Allocate the match buffer, initialize the various tables and save the
1674 * location of the internal file attribute (ascii/binary) and method
1675 * (DEFLATE/STORE).
1676 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001677static void ct_init(ush * attr, int *methodp)
Eric Andersencc8ed391999-10-05 16:24:54 +00001678{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001679 int n; /* iterates over tree elements */
1680 int bits; /* bit counter */
1681 int length; /* length value */
1682 int code; /* code value */
1683 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001684
Erik Andersene49d5ec2000-02-08 19:58:47 +00001685 file_type = attr;
1686 file_method = methodp;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001687 compressed_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001688
Erik Andersene49d5ec2000-02-08 19:58:47 +00001689 if (static_dtree[0].Len != 0)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001690 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00001691
Erik Andersene49d5ec2000-02-08 19:58:47 +00001692 /* Initialize the mapping length (0..255) -> length code (0..28) */
1693 length = 0;
1694 for (code = 0; code < LENGTH_CODES - 1; code++) {
1695 base_length[code] = length;
1696 for (n = 0; n < (1 << extra_lbits[code]); n++) {
1697 length_code[length++] = (uch) code;
1698 }
1699 }
1700 Assert(length == 256, "ct_init: length != 256");
1701 /* Note that the length 255 (match length 258) can be represented
1702 * in two different ways: code 284 + 5 bits or code 285, so we
1703 * overwrite length_code[255] to use the best encoding:
1704 */
1705 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00001706
Erik Andersene49d5ec2000-02-08 19:58:47 +00001707 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
1708 dist = 0;
1709 for (code = 0; code < 16; code++) {
1710 base_dist[code] = dist;
1711 for (n = 0; n < (1 << extra_dbits[code]); n++) {
1712 dist_code[dist++] = (uch) code;
1713 }
1714 }
1715 Assert(dist == 256, "ct_init: dist != 256");
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001716 dist >>= 7; /* from now on, all distances are divided by 128 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001717 for (; code < D_CODES; code++) {
1718 base_dist[code] = dist << 7;
1719 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
1720 dist_code[256 + dist++] = (uch) code;
1721 }
1722 }
1723 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00001724
Erik Andersene49d5ec2000-02-08 19:58:47 +00001725 /* Construct the codes of the static literal tree */
1726 for (bits = 0; bits <= MAX_BITS; bits++)
1727 bl_count[bits] = 0;
1728 n = 0;
1729 while (n <= 143)
1730 static_ltree[n++].Len = 8, bl_count[8]++;
1731 while (n <= 255)
1732 static_ltree[n++].Len = 9, bl_count[9]++;
1733 while (n <= 279)
1734 static_ltree[n++].Len = 7, bl_count[7]++;
1735 while (n <= 287)
1736 static_ltree[n++].Len = 8, bl_count[8]++;
1737 /* Codes 286 and 287 do not exist, but we must include them in the
1738 * tree construction to get a canonical Huffman tree (longest code
1739 * all ones)
1740 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001741 gen_codes((ct_data *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001742
Erik Andersene49d5ec2000-02-08 19:58:47 +00001743 /* The static distance tree is trivial: */
1744 for (n = 0; n < D_CODES; n++) {
1745 static_dtree[n].Len = 5;
1746 static_dtree[n].Code = bi_reverse(n, 5);
1747 }
1748
1749 /* Initialize the first block of the first file: */
1750 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00001751}
1752
1753/* ===========================================================================
1754 * Initialize a new block.
1755 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001756static void init_block()
Eric Andersencc8ed391999-10-05 16:24:54 +00001757{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001758 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00001759
Erik Andersene49d5ec2000-02-08 19:58:47 +00001760 /* Initialize the trees. */
1761 for (n = 0; n < L_CODES; n++)
1762 dyn_ltree[n].Freq = 0;
1763 for (n = 0; n < D_CODES; n++)
1764 dyn_dtree[n].Freq = 0;
1765 for (n = 0; n < BL_CODES; n++)
1766 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001767
Erik Andersene49d5ec2000-02-08 19:58:47 +00001768 dyn_ltree[END_BLOCK].Freq = 1;
1769 opt_len = static_len = 0L;
1770 last_lit = last_dist = last_flags = 0;
1771 flags = 0;
1772 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001773}
1774
1775#define SMALLEST 1
1776/* Index within the heap array of least frequent node in the Huffman tree */
1777
1778
1779/* ===========================================================================
1780 * Remove the smallest element from the heap and recreate the heap with
1781 * one less element. Updates heap and heap_len.
1782 */
1783#define pqremove(tree, top) \
1784{\
1785 top = heap[SMALLEST]; \
1786 heap[SMALLEST] = heap[heap_len--]; \
1787 pqdownheap(tree, SMALLEST); \
1788}
1789
1790/* ===========================================================================
1791 * Compares to subtrees, using the tree depth as tie breaker when
1792 * the subtrees have equal frequency. This minimizes the worst case length.
1793 */
1794#define smaller(tree, n, m) \
1795 (tree[n].Freq < tree[m].Freq || \
1796 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
1797
1798/* ===========================================================================
1799 * Restore the heap property by moving down the tree starting at node k,
1800 * exchanging a node with the smallest of its two sons if necessary, stopping
1801 * when the heap property is re-established (each father smaller than its
1802 * two sons).
1803 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001804static void pqdownheap(ct_data * tree, int k)
Eric Andersencc8ed391999-10-05 16:24:54 +00001805{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001806 int v = heap[k];
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001807 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00001808
Erik Andersene49d5ec2000-02-08 19:58:47 +00001809 while (j <= heap_len) {
1810 /* Set j to the smallest of the two sons: */
1811 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
1812 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001813
Erik Andersene49d5ec2000-02-08 19:58:47 +00001814 /* Exit if v is smaller than both sons */
1815 if (smaller(tree, v, heap[j]))
1816 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001817
Erik Andersene49d5ec2000-02-08 19:58:47 +00001818 /* Exchange v with the smallest son */
1819 heap[k] = heap[j];
1820 k = j;
1821
1822 /* And continue down the tree, setting j to the left son of k */
1823 j <<= 1;
1824 }
1825 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00001826}
1827
1828/* ===========================================================================
1829 * Compute the optimal bit lengths for a tree and update the total bit length
1830 * for the current block.
1831 * IN assertion: the fields freq and dad are set, heap[heap_max] and
1832 * above are the tree nodes sorted by increasing frequency.
1833 * OUT assertions: the field len is set to the optimal bit length, the
1834 * array bl_count contains the frequencies for each bit length.
1835 * The length opt_len is updated; static_len is also updated if stree is
1836 * not null.
1837 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001838static void gen_bitlen(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001839{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001840 ct_data *tree = desc->dyn_tree;
Eric Andersen39eb0402001-08-22 04:15:47 +00001841 const extra_bits_t *extra = desc->extra_bits;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001842 int base = desc->extra_base;
1843 int max_code = desc->max_code;
1844 int max_length = desc->max_length;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001845 ct_data *stree = desc->static_tree;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001846 int h; /* heap index */
1847 int n, m; /* iterate over the tree elements */
1848 int bits; /* bit length */
1849 int xbits; /* extra bits */
1850 ush f; /* frequency */
1851 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00001852
Erik Andersene49d5ec2000-02-08 19:58:47 +00001853 for (bits = 0; bits <= MAX_BITS; bits++)
1854 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001855
Erik Andersene49d5ec2000-02-08 19:58:47 +00001856 /* In a first pass, compute the optimal bit lengths (which may
1857 * overflow in the case of the bit length tree).
1858 */
1859 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00001860
Erik Andersene49d5ec2000-02-08 19:58:47 +00001861 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
1862 n = heap[h];
1863 bits = tree[tree[n].Dad].Len + 1;
1864 if (bits > max_length)
1865 bits = max_length, overflow++;
1866 tree[n].Len = (ush) bits;
1867 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00001868
Erik Andersene49d5ec2000-02-08 19:58:47 +00001869 if (n > max_code)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001870 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00001871
Erik Andersene49d5ec2000-02-08 19:58:47 +00001872 bl_count[bits]++;
1873 xbits = 0;
1874 if (n >= base)
1875 xbits = extra[n - base];
1876 f = tree[n].Freq;
1877 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00001878
Erik Andersene49d5ec2000-02-08 19:58:47 +00001879 if (stree)
1880 static_len += (ulg) f *(stree[n].Len + xbits);
1881 }
1882 if (overflow == 0)
1883 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00001884
Erik Andersene49d5ec2000-02-08 19:58:47 +00001885 Trace((stderr, "\nbit length overflow\n"));
1886 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00001887
Erik Andersene49d5ec2000-02-08 19:58:47 +00001888 /* Find the first bit length which could increase: */
1889 do {
1890 bits = max_length - 1;
1891 while (bl_count[bits] == 0)
1892 bits--;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001893 bl_count[bits]--; /* move one leaf down the tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001894 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
1895 bl_count[max_length]--;
1896 /* The brother of the overflow item also moves one step up,
1897 * but this does not affect bl_count[max_length]
1898 */
1899 overflow -= 2;
1900 } while (overflow > 0);
1901
1902 /* Now recompute all bit lengths, scanning in increasing frequency.
1903 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
1904 * lengths instead of fixing only the wrong ones. This idea is taken
1905 * from 'ar' written by Haruhiko Okumura.)
1906 */
1907 for (bits = max_length; bits != 0; bits--) {
1908 n = bl_count[bits];
1909 while (n != 0) {
1910 m = heap[--h];
1911 if (m > max_code)
1912 continue;
1913 if (tree[m].Len != (unsigned) bits) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001914 Trace((stderr, "code %d bits %d->%d\n", m, tree[m].Len,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001915 bits));
1916 opt_len +=
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001917 ((long) bits - (long) tree[m].Len) * (long) tree[m].Freq;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001918 tree[m].Len = (ush) bits;
1919 }
1920 n--;
1921 }
1922 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001923}
1924
1925/* ===========================================================================
1926 * Generate the codes for a given tree and bit counts (which need not be
1927 * optimal).
1928 * IN assertion: the array bl_count contains the bit length statistics for
1929 * the given tree and the field len is set for all tree elements.
1930 * OUT assertion: the field code is set for all tree elements of non
1931 * zero code length.
1932 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001933static void gen_codes(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001934{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001935 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001936 ush code = 0; /* running code value */
1937 int bits; /* bit index */
1938 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001939
Erik Andersene49d5ec2000-02-08 19:58:47 +00001940 /* The distribution counts are first used to generate the code values
1941 * without bit reversal.
1942 */
1943 for (bits = 1; bits <= MAX_BITS; bits++) {
1944 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
1945 }
1946 /* Check that the bit counts in bl_count are consistent. The last code
1947 * must be all ones.
1948 */
1949 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
1950 "inconsistent bit counts");
1951 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00001952
Erik Andersene49d5ec2000-02-08 19:58:47 +00001953 for (n = 0; n <= max_code; n++) {
1954 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001955
Erik Andersene49d5ec2000-02-08 19:58:47 +00001956 if (len == 0)
1957 continue;
1958 /* Now reverse the bits */
1959 tree[n].Code = bi_reverse(next_code[len]++, len);
1960
1961 Tracec(tree != static_ltree,
1962 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
1963 (isgraph(n) ? n : ' '), len, tree[n].Code,
1964 next_code[len] - 1));
1965 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001966}
1967
1968/* ===========================================================================
1969 * Construct one Huffman tree and assigns the code bit strings and lengths.
1970 * Update the total bit length for the current block.
1971 * IN assertion: the field freq is set for all tree elements.
1972 * OUT assertions: the fields len and code are set to the optimal bit length
1973 * and corresponding code. The length opt_len is updated; static_len is
1974 * also updated if stree is not null. The field max_code is set.
1975 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001976static void build_tree(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001977{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001978 ct_data *tree = desc->dyn_tree;
1979 ct_data *stree = desc->static_tree;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001980 int elems = desc->elems;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001981 int n, m; /* iterate over heap elements */
1982 int max_code = -1; /* largest code with non zero frequency */
1983 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001984
Erik Andersene49d5ec2000-02-08 19:58:47 +00001985 /* Construct the initial heap, with least frequent element in
1986 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
1987 * heap[0] is not used.
1988 */
1989 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00001990
Erik Andersene49d5ec2000-02-08 19:58:47 +00001991 for (n = 0; n < elems; n++) {
1992 if (tree[n].Freq != 0) {
1993 heap[++heap_len] = max_code = n;
1994 depth[n] = 0;
1995 } else {
1996 tree[n].Len = 0;
1997 }
1998 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001999
Erik Andersene49d5ec2000-02-08 19:58:47 +00002000 /* The pkzip format requires that at least one distance code exists,
2001 * and that at least one bit should be sent even if there is only one
2002 * possible code. So to avoid special checks later on we force at least
2003 * two codes of non zero frequency.
2004 */
2005 while (heap_len < 2) {
2006 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002007
Erik Andersene49d5ec2000-02-08 19:58:47 +00002008 tree[new].Freq = 1;
2009 depth[new] = 0;
2010 opt_len--;
2011 if (stree)
2012 static_len -= stree[new].Len;
2013 /* new is 0 or 1 so it does not have extra bits */
2014 }
2015 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00002016
Erik Andersene49d5ec2000-02-08 19:58:47 +00002017 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2018 * establish sub-heaps of increasing lengths:
2019 */
2020 for (n = heap_len / 2; n >= 1; n--)
2021 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00002022
Erik Andersene49d5ec2000-02-08 19:58:47 +00002023 /* Construct the Huffman tree by repeatedly combining the least two
2024 * frequent nodes.
2025 */
2026 do {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002027 pqremove(tree, n); /* n = node of least frequency */
2028 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00002029
Erik Andersene49d5ec2000-02-08 19:58:47 +00002030 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2031 heap[--heap_max] = m;
2032
2033 /* Create a new node father of n and m */
2034 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2035 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2036 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00002037#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00002038 if (tree == bl_tree) {
2039 fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002040 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002041 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002042#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002043 /* and insert the new node in the heap */
2044 heap[SMALLEST] = node++;
2045 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00002046
Erik Andersene49d5ec2000-02-08 19:58:47 +00002047 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002048
Erik Andersene49d5ec2000-02-08 19:58:47 +00002049 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00002050
Erik Andersene49d5ec2000-02-08 19:58:47 +00002051 /* At this point, the fields freq and dad are set. We can now
2052 * generate the bit lengths.
2053 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002054 gen_bitlen((tree_desc *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00002055
Erik Andersene49d5ec2000-02-08 19:58:47 +00002056 /* The field len is now set, we can generate the bit codes */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002057 gen_codes((ct_data *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002058}
2059
2060/* ===========================================================================
2061 * Scan a literal or distance tree to determine the frequencies of the codes
2062 * in the bit length tree. Updates opt_len to take into account the repeat
2063 * counts. (The contribution of the bit length codes will be added later
2064 * during the construction of bl_tree.)
2065 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002066static void scan_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00002067{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002068 int n; /* iterates over all tree elements */
2069 int prevlen = -1; /* last emitted length */
2070 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002071 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002072 int count = 0; /* repeat count of the current code */
2073 int max_count = 7; /* max repeat count */
2074 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002075
Erik Andersene49d5ec2000-02-08 19:58:47 +00002076 if (nextlen == 0)
2077 max_count = 138, min_count = 3;
2078 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002079
Erik Andersene49d5ec2000-02-08 19:58:47 +00002080 for (n = 0; n <= max_code; n++) {
2081 curlen = nextlen;
2082 nextlen = tree[n + 1].Len;
2083 if (++count < max_count && curlen == nextlen) {
2084 continue;
2085 } else if (count < min_count) {
2086 bl_tree[curlen].Freq += count;
2087 } else if (curlen != 0) {
2088 if (curlen != prevlen)
2089 bl_tree[curlen].Freq++;
2090 bl_tree[REP_3_6].Freq++;
2091 } else if (count <= 10) {
2092 bl_tree[REPZ_3_10].Freq++;
2093 } else {
2094 bl_tree[REPZ_11_138].Freq++;
2095 }
2096 count = 0;
2097 prevlen = curlen;
2098 if (nextlen == 0) {
2099 max_count = 138, min_count = 3;
2100 } else if (curlen == nextlen) {
2101 max_count = 6, min_count = 3;
2102 } else {
2103 max_count = 7, min_count = 4;
2104 }
2105 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002106}
2107
2108/* ===========================================================================
2109 * Send a literal or distance tree in compressed form, using the codes in
2110 * bl_tree.
2111 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002112static void send_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00002113{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002114 int n; /* iterates over all tree elements */
2115 int prevlen = -1; /* last emitted length */
2116 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002117 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002118 int count = 0; /* repeat count of the current code */
2119 int max_count = 7; /* max repeat count */
2120 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002121
Erik Andersene49d5ec2000-02-08 19:58:47 +00002122/* tree[max_code+1].Len = -1; *//* guard already set */
2123 if (nextlen == 0)
2124 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002125
Erik Andersene49d5ec2000-02-08 19:58:47 +00002126 for (n = 0; n <= max_code; n++) {
2127 curlen = nextlen;
2128 nextlen = tree[n + 1].Len;
2129 if (++count < max_count && curlen == nextlen) {
2130 continue;
2131 } else if (count < min_count) {
2132 do {
2133 send_code(curlen, bl_tree);
2134 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002135
Erik Andersene49d5ec2000-02-08 19:58:47 +00002136 } else if (curlen != 0) {
2137 if (curlen != prevlen) {
2138 send_code(curlen, bl_tree);
2139 count--;
2140 }
2141 Assert(count >= 3 && count <= 6, " 3_6?");
2142 send_code(REP_3_6, bl_tree);
2143 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002144
Erik Andersene49d5ec2000-02-08 19:58:47 +00002145 } else if (count <= 10) {
2146 send_code(REPZ_3_10, bl_tree);
2147 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002148
Erik Andersene49d5ec2000-02-08 19:58:47 +00002149 } else {
2150 send_code(REPZ_11_138, bl_tree);
2151 send_bits(count - 11, 7);
2152 }
2153 count = 0;
2154 prevlen = curlen;
2155 if (nextlen == 0) {
2156 max_count = 138, min_count = 3;
2157 } else if (curlen == nextlen) {
2158 max_count = 6, min_count = 3;
2159 } else {
2160 max_count = 7, min_count = 4;
2161 }
2162 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002163}
2164
2165/* ===========================================================================
2166 * Construct the Huffman tree for the bit lengths and return the index in
2167 * bl_order of the last bit length code to send.
2168 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002169static const int build_bl_tree()
Eric Andersencc8ed391999-10-05 16:24:54 +00002170{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002171 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002172
Erik Andersene49d5ec2000-02-08 19:58:47 +00002173 /* Determine the bit length frequencies for literal and distance trees */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002174 scan_tree((ct_data *) dyn_ltree, l_desc.max_code);
2175 scan_tree((ct_data *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002176
Erik Andersene49d5ec2000-02-08 19:58:47 +00002177 /* Build the bit length tree: */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002178 build_tree((tree_desc *) (&bl_desc));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002179 /* opt_len now includes the length of the tree representations, except
2180 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2181 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002182
Erik Andersene49d5ec2000-02-08 19:58:47 +00002183 /* Determine the number of bit length codes to send. The pkzip format
2184 * requires that at least 4 bit length codes be sent. (appnote.txt says
2185 * 3 but the actual value used is 4.)
2186 */
2187 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2188 if (bl_tree[bl_order[max_blindex]].Len != 0)
2189 break;
2190 }
2191 /* Update opt_len to include the bit length tree and counts */
2192 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002193 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002194
Erik Andersene49d5ec2000-02-08 19:58:47 +00002195 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002196}
2197
2198/* ===========================================================================
2199 * Send the header for a block using dynamic Huffman trees: the counts, the
2200 * lengths of the bit length codes, the literal tree and the distance tree.
2201 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2202 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002203static void send_all_trees(int lcodes, int dcodes, int blcodes)
Eric Andersencc8ed391999-10-05 16:24:54 +00002204{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002205 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002206
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002207 Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
Erik Andersene49d5ec2000-02-08 19:58:47 +00002208 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2209 && blcodes <= BL_CODES, "too many codes");
2210 Tracev((stderr, "\nbl counts: "));
2211 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2212 send_bits(dcodes - 1, 5);
2213 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2214 for (rank = 0; rank < blcodes; rank++) {
2215 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2216 send_bits(bl_tree[bl_order[rank]].Len, 3);
2217 }
2218 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002219
Eric Andersen3073dfb2001-07-02 17:57:32 +00002220 send_tree((ct_data *) dyn_ltree, lcodes - 1); /* send the literal tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002221 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002222
Eric Andersen3073dfb2001-07-02 17:57:32 +00002223 send_tree((ct_data *) dyn_dtree, dcodes - 1); /* send the distance tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002224 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002225}
2226
2227/* ===========================================================================
2228 * Determine the best encoding for the current block: dynamic trees, static
2229 * trees or store, and output the encoded block to the zip file. This function
2230 * returns the total compressed length for the file so far.
2231 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002232static ulg flush_block(char *buf, ulg stored_len, int eof)
Eric Andersencc8ed391999-10-05 16:24:54 +00002233{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002234 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002235 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002236
Erik Andersene49d5ec2000-02-08 19:58:47 +00002237 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002238
Erik Andersene49d5ec2000-02-08 19:58:47 +00002239 /* Check if the file is ascii or binary */
2240 if (*file_type == (ush) UNKNOWN)
2241 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002242
Erik Andersene49d5ec2000-02-08 19:58:47 +00002243 /* Construct the literal and distance trees */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002244 build_tree((tree_desc *) (&l_desc));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002245 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002246
Eric Andersen3073dfb2001-07-02 17:57:32 +00002247 build_tree((tree_desc *) (&d_desc));
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002248 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", opt_len, static_len));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002249 /* At this point, opt_len and static_len are the total bit lengths of
2250 * the compressed block data, excluding the tree representations.
2251 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002252
Erik Andersene49d5ec2000-02-08 19:58:47 +00002253 /* Build the bit length tree for the above two trees, and get the index
2254 * in bl_order of the last bit length code to send.
2255 */
2256 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002257
Erik Andersene49d5ec2000-02-08 19:58:47 +00002258 /* Determine the best encoding. Compute first the block length in bytes */
2259 opt_lenb = (opt_len + 3 + 7) >> 3;
2260 static_lenb = (static_len + 3 + 7) >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002261
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002262 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00002263 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2264 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2265 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002266
Erik Andersene49d5ec2000-02-08 19:58:47 +00002267 if (static_lenb <= opt_lenb)
2268 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002269
Erik Andersene49d5ec2000-02-08 19:58:47 +00002270 /* If compression failed and this is the first and last block,
2271 * and if the zip file can be seeked (to rewrite the local header),
2272 * the whole file is transformed into a stored file:
2273 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002274 if (stored_len <= opt_lenb && eof && compressed_len == 0L && seekable()) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002275 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2276 if (buf == (char *) 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00002277 error_msg("block vanished");
Eric Andersencc8ed391999-10-05 16:24:54 +00002278
Erik Andersene49d5ec2000-02-08 19:58:47 +00002279 copy_block(buf, (unsigned) stored_len, 0); /* without header */
2280 compressed_len = stored_len << 3;
2281 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00002282
Erik Andersene49d5ec2000-02-08 19:58:47 +00002283 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
2284 /* 4: two words for the lengths */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002285 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2286 * Otherwise we can't have processed more than WSIZE input bytes since
2287 * the last block flush, because compression would have been
2288 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2289 * transform a block into a stored block.
2290 */
2291 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
2292 compressed_len = (compressed_len + 3 + 7) & ~7L;
2293 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002294
Erik Andersene49d5ec2000-02-08 19:58:47 +00002295 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002296
Erik Andersene49d5ec2000-02-08 19:58:47 +00002297 } else if (static_lenb == opt_lenb) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002298 send_bits((STATIC_TREES << 1) + eof, 3);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002299 compress_block((ct_data *) static_ltree, (ct_data *) static_dtree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002300 compressed_len += 3 + static_len;
2301 } else {
2302 send_bits((DYN_TREES << 1) + eof, 3);
2303 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
2304 max_blindex + 1);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002305 compress_block((ct_data *) dyn_ltree, (ct_data *) dyn_dtree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002306 compressed_len += 3 + opt_len;
2307 }
2308 Assert(compressed_len == bits_sent, "bad compressed size");
2309 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002310
Erik Andersene49d5ec2000-02-08 19:58:47 +00002311 if (eof) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002312 bi_windup();
2313 compressed_len += 7; /* align on byte boundary */
2314 }
2315 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
2316 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00002317
Erik Andersene49d5ec2000-02-08 19:58:47 +00002318 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002319}
2320
2321/* ===========================================================================
2322 * Save the match info and tally the frequency counts. Return true if
2323 * the current block must be flushed.
2324 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002325static int ct_tally(int dist, int lc)
Eric Andersencc8ed391999-10-05 16:24:54 +00002326{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002327 l_buf[last_lit++] = (uch) lc;
2328 if (dist == 0) {
2329 /* lc is the unmatched char */
2330 dyn_ltree[lc].Freq++;
2331 } else {
2332 /* Here, lc is the match length - MIN_MATCH */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002333 dist--; /* dist = match distance - 1 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002334 Assert((ush) dist < (ush) MAX_DIST &&
2335 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
2336 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00002337
Erik Andersene49d5ec2000-02-08 19:58:47 +00002338 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
2339 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002340
Erik Andersene49d5ec2000-02-08 19:58:47 +00002341 d_buf[last_dist++] = (ush) dist;
2342 flags |= flag_bit;
2343 }
2344 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002345
Erik Andersene49d5ec2000-02-08 19:58:47 +00002346 /* Output the flags if they fill a byte: */
2347 if ((last_lit & 7) == 0) {
2348 flag_buf[last_flags++] = flags;
2349 flags = 0, flag_bit = 1;
2350 }
2351 /* Try to guess if it is profitable to stop the current block here */
2352 if ((last_lit & 0xfff) == 0) {
2353 /* Compute an upper bound for the compressed length */
2354 ulg out_length = (ulg) last_lit * 8L;
2355 ulg in_length = (ulg) strstart - block_start;
2356 int dcode;
2357
2358 for (dcode = 0; dcode < D_CODES; dcode++) {
2359 out_length +=
2360 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
2361 }
2362 out_length >>= 3;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002363 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00002364 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2365 last_lit, last_dist, in_length, out_length,
2366 100L - out_length * 100L / in_length));
2367 if (last_dist < last_lit / 2 && out_length < in_length / 2)
2368 return 1;
2369 }
2370 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
2371 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
2372 * on 16 bit machines and because stored blocks are restricted to
2373 * 64K-1 bytes.
2374 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002375}
2376
2377/* ===========================================================================
2378 * Send the block data compressed using the given Huffman trees
2379 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002380static void compress_block(ct_data * ltree, ct_data * dtree)
Eric Andersencc8ed391999-10-05 16:24:54 +00002381{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002382 unsigned dist; /* distance of matched string */
2383 int lc; /* match length or unmatched char (if dist == 0) */
2384 unsigned lx = 0; /* running index in l_buf */
2385 unsigned dx = 0; /* running index in d_buf */
2386 unsigned fx = 0; /* running index in flag_buf */
2387 uch flag = 0; /* current flags */
2388 unsigned code; /* the code to send */
2389 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00002390
Erik Andersene49d5ec2000-02-08 19:58:47 +00002391 if (last_lit != 0)
2392 do {
2393 if ((lx & 7) == 0)
2394 flag = flag_buf[fx++];
2395 lc = l_buf[lx++];
2396 if ((flag & 1) == 0) {
2397 send_code(lc, ltree); /* send a literal byte */
2398 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
2399 } else {
2400 /* Here, lc is the match length - MIN_MATCH */
2401 code = length_code[lc];
2402 send_code(code + LITERALS + 1, ltree); /* send the length code */
2403 extra = extra_lbits[code];
2404 if (extra != 0) {
2405 lc -= base_length[code];
2406 send_bits(lc, extra); /* send the extra length bits */
2407 }
2408 dist = d_buf[dx++];
2409 /* Here, dist is the match distance - 1 */
2410 code = d_code(dist);
2411 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00002412
Erik Andersene49d5ec2000-02-08 19:58:47 +00002413 send_code(code, dtree); /* send the distance code */
2414 extra = extra_dbits[code];
2415 if (extra != 0) {
2416 dist -= base_dist[code];
2417 send_bits(dist, extra); /* send the extra distance bits */
2418 }
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002419 } /* literal or match pair ? */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002420 flag >>= 1;
2421 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00002422
Erik Andersene49d5ec2000-02-08 19:58:47 +00002423 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00002424}
2425
2426/* ===========================================================================
2427 * Set the file type to ASCII or BINARY, using a crude approximation:
2428 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
2429 * IN assertion: the fields freq of dyn_ltree are set and the total of all
2430 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
2431 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002432static void set_file_type()
Eric Andersencc8ed391999-10-05 16:24:54 +00002433{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002434 int n = 0;
2435 unsigned ascii_freq = 0;
2436 unsigned bin_freq = 0;
2437
2438 while (n < 7)
2439 bin_freq += dyn_ltree[n++].Freq;
2440 while (n < 128)
2441 ascii_freq += dyn_ltree[n++].Freq;
2442 while (n < LITERALS)
2443 bin_freq += dyn_ltree[n++].Freq;
2444 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
2445 if (*file_type == BINARY && translate_eol) {
Matt Kraaidd19c692001-01-31 19:00:21 +00002446 error_msg("-l used on binary file");
Erik Andersene49d5ec2000-02-08 19:58:47 +00002447 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002448}
Erik Andersene49d5ec2000-02-08 19:58:47 +00002449
Eric Andersencc8ed391999-10-05 16:24:54 +00002450/* zip.c -- compress files to the gzip or pkzip format
2451 * Copyright (C) 1992-1993 Jean-loup Gailly
2452 * This is free software; you can redistribute it and/or modify it under the
2453 * terms of the GNU General Public License, see the file COPYING.
2454 */
2455
Eric Andersencc8ed391999-10-05 16:24:54 +00002456
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002457static ulg crc; /* crc on uncompressed file data */
2458static long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002459
Eric Andersen39eb0402001-08-22 04:15:47 +00002460static void put_long(ulg n)
2461{
Aaron Lehmannb9df4702001-12-06 03:22:43 +00002462 put_short((n) & 0xffff);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002463 put_short(((ulg) (n)) >> 16);
Eric Andersen39eb0402001-08-22 04:15:47 +00002464}
2465
2466/* put_header_byte is used for the compressed output
2467 * - for the initial 4 bytes that can't overflow the buffer.
2468 */
2469#define put_header_byte(c) {outbuf[outcnt++]=(uch)(c);}
2470
Eric Andersencc8ed391999-10-05 16:24:54 +00002471/* ===========================================================================
2472 * Deflate in to out.
2473 * IN assertions: the input and output buffers are cleared.
2474 * The variables time_stamp and save_orig_name are initialized.
2475 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002476static int zip(int in, int out)
Eric Andersencc8ed391999-10-05 16:24:54 +00002477{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002478 uch my_flags = 0; /* general purpose bit flags */
2479 ush attr = 0; /* ascii/binary flag */
2480 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00002481
Erik Andersene49d5ec2000-02-08 19:58:47 +00002482 ifd = in;
2483 ofd = out;
2484 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002485
Erik Andersene49d5ec2000-02-08 19:58:47 +00002486 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00002487
Eric Andersen96bcfd31999-11-12 01:30:18 +00002488
Erik Andersene49d5ec2000-02-08 19:58:47 +00002489 method = DEFLATED;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002490 put_header_byte(GZIP_MAGIC[0]); /* magic header */
Eric Andersen39eb0402001-08-22 04:15:47 +00002491 put_header_byte(GZIP_MAGIC[1]);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002492 put_header_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002493
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002494 put_header_byte(my_flags); /* general flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002495 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00002496
Erik Andersene49d5ec2000-02-08 19:58:47 +00002497 /* Write deflated file to zip file */
2498 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002499
Erik Andersene49d5ec2000-02-08 19:58:47 +00002500 bi_init(out);
2501 ct_init(&attr, &method);
2502 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00002503
Erik Andersene49d5ec2000-02-08 19:58:47 +00002504 put_byte((uch) deflate_flags); /* extra flags */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002505 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00002506
Erik Andersene49d5ec2000-02-08 19:58:47 +00002507 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00002508
Erik Andersene49d5ec2000-02-08 19:58:47 +00002509 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00002510
Erik Andersene49d5ec2000-02-08 19:58:47 +00002511 /* Write the crc and uncompressed size */
2512 put_long(crc);
2513 put_long(isize);
2514 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00002515
Erik Andersene49d5ec2000-02-08 19:58:47 +00002516 flush_outbuf();
2517 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00002518}
2519
2520
2521/* ===========================================================================
2522 * Read a new buffer from the current input file, perform end-of-line
2523 * translation, and update the crc and input file size.
2524 * IN assertion: size >= 2 (for end-of-line translation)
2525 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002526static int file_read(char *buf, unsigned size)
Eric Andersencc8ed391999-10-05 16:24:54 +00002527{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002528 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002529
Erik Andersene49d5ec2000-02-08 19:58:47 +00002530 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00002531
Erik Andersene49d5ec2000-02-08 19:58:47 +00002532 len = read(ifd, buf, size);
2533 if (len == (unsigned) (-1) || len == 0)
2534 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002535
Erik Andersene49d5ec2000-02-08 19:58:47 +00002536 crc = updcrc((uch *) buf, len);
2537 isize += (ulg) len;
2538 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002539}
Matt Kraai7918e1f2000-11-08 06:52:57 +00002540
2541/* ===========================================================================
2542 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
2543 * (used for the compressed data only)
2544 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002545static void flush_outbuf()
Matt Kraai7918e1f2000-11-08 06:52:57 +00002546{
2547 if (outcnt == 0)
2548 return;
2549
2550 write_buf(ofd, (char *) outbuf, outcnt);
Matt Kraai7918e1f2000-11-08 06:52:57 +00002551 outcnt = 0;
2552}