blob: ef3724c3419b8eddfac624aa2a2af158006ef50e [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 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +000012 * Adjusted further by Erik Andersen <andersen@codepoet.org> to support
13 * files as well as stdin/stdout, and to generally behave itself wrt
Erik Andersen61677fe2000-04-13 01:18:56 +000014 * command line handling.
15 *
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +000016 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersencc8ed391999-10-05 16:24:54 +000017 */
Eric Andersencc8ed391999-10-05 16:24:54 +000018
Denis Vlasenkobb119d02006-10-01 16:44:04 +000019/* TODO: full support for -v for DESKTOP
20/usr/bin/gzip -v a bogus aa
21a: 85.1% -- replaced with a.gz
22gzip: bogus: No such file or directory
23aa: 85.1% -- replaced with aa.gz
24*/
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000025
Erik Andersen61677fe2000-04-13 01:18:56 +000026#define SMALL_MEM
Erik Andersen61677fe2000-04-13 01:18:56 +000027
Eric Andersencbe31da2001-02-20 06:14:08 +000028#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000029#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000030#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000031#include <unistd.h>
Glenn L McGrathf58efb52001-03-28 05:35:16 +000032#include <errno.h>
Eric Andersen3073dfb2001-07-02 17:57:32 +000033#include <sys/types.h>
34#include <signal.h>
35#include <utime.h>
36#include <ctype.h>
37#include <sys/types.h>
38#include <unistd.h>
39#include <dirent.h>
40#include <fcntl.h>
41#include <time.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000042#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000043
Erik Andersene49d5ec2000-02-08 19:58:47 +000044typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000045typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000046typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000047
48/* Return codes from gzip */
49#define OK 0
50#define ERROR 1
51#define WARNING 2
52
53/* Compression methods (see algorithm.doc) */
Eric Andersen3073dfb2001-07-02 17:57:32 +000054/* Only STORED and DEFLATED are supported by this BusyBox module */
Eric Andersencc8ed391999-10-05 16:24:54 +000055#define STORED 0
Eric Andersencc8ed391999-10-05 16:24:54 +000056/* methods 4 to 7 reserved */
57#define DEFLATED 8
Eric Andersencc8ed391999-10-05 16:24:54 +000058
59/* To save memory for 16 bit systems, some arrays are overlaid between
60 * the various modules:
61 * deflate: prev+head window d_buf l_buf outbuf
62 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
Eric Andersencc8ed391999-10-05 16:24:54 +000063 * For compression, input is done in window[]. For decompression, output
64 * is done in window except for unlzw.
65 */
66
67#ifndef INBUFSIZ
68# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000069# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000070# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000071# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000072# endif
73#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000074#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000075
76#ifndef OUTBUFSIZ
77# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000078# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000079# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000080# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000081# endif
82#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000083#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000084
85#ifndef DIST_BUFSIZE
86# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000087# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +000088# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000089# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +000090# endif
91#endif
92
Eric Andersen3073dfb2001-07-02 17:57:32 +000093# define DECLARE(type, array, size) static type * array
Eric Andersencc8ed391999-10-05 16:24:54 +000094# define ALLOC(type, array, size) { \
Rob Landley1ec5b292006-05-29 07:42:02 +000095 array = (type*)xzalloc((size_t)(((size)+1L)/2) * 2*sizeof(type)); \
Eric Andersencc8ed391999-10-05 16:24:54 +000096 }
Aaron Lehmanna170e1c2002-11-28 11:27:31 +000097# define FREE(array) {free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +000098
Eric Andersencc8ed391999-10-05 16:24:54 +000099#define tab_suffix window
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000100#define tab_prefix prev /* hash link (see deflate.c) */
101#define head (prev+WSIZE) /* hash head (see deflate.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000102
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000103static long bytes_in; /* number of input bytes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000104
105#define isize bytes_in
106/* for compatibility with old zip sources (to be cleaned) */
107
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000108typedef int file_t; /* Do not use stdio */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000110#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000111
112
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113#define PACK_MAGIC "\037\036" /* Magic header for packed files */
114#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
115#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
116#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
117#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000118
119/* gzip flag byte */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000120#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
121#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
122#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
123#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
124#define COMMENT 0x10 /* bit 4 set: file comment present */
125#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000126
127/* internal file attribute */
128#define UNKNOWN 0xffff
129#define BINARY 0
130#define ASCII 1
131
132#ifndef WSIZE
Denis Vlasenkobb119d02006-10-01 16:44:04 +0000133# define WSIZE 0x8000 /* window size--must be a power of two, and */
134#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000135
136#define MIN_MATCH 3
137#define MAX_MATCH 258
138/* The minimum and maximum match lengths */
139
140#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
141/* Minimum amount of lookahead, except at the end of the input file.
142 * See deflate.c for comments about the MIN_MATCH+1.
143 */
144
145#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
146/* In order to simplify the code, particularly on 16 bit machines, match
147 * distances are limited to MAX_DIST instead of WSIZE.
148 */
149
Eric Andersen3073dfb2001-07-02 17:57:32 +0000150/* put_byte is used for the compressed output */
Eric Andersencc8ed391999-10-05 16:24:54 +0000151#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
152 flush_outbuf();}
Eric Andersencc8ed391999-10-05 16:24:54 +0000153
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000154#define seekable() 0 /* force sequential output */
155#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000156
Eric Andersencc8ed391999-10-05 16:24:54 +0000157/* Diagnostic functions */
158#ifdef DEBUG
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159# define Assert(cond,msg) {if(!(cond)) bb_error_msg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000160# define Trace(x) fprintf x
161# define Tracev(x) {if (verbose) fprintf x ;}
162# define Tracevv(x) {if (verbose>1) fprintf x ;}
163# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
164# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
165#else
166# define Assert(cond,msg)
167# define Trace(x)
168# define Tracev(x)
169# define Tracevv(x)
170# define Tracec(c,x)
171# define Tracecv(c,x)
172#endif
173
174#define WARN(msg) {if (!quiet) fprintf msg ; \
175 if (exit_code == OK) exit_code = WARNING;}
176
Eric Andersen3073dfb2001-07-02 17:57:32 +0000177#ifndef MAX_PATH_LEN
178# define MAX_PATH_LEN 1024 /* max pathname length */
179#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000180
Eric Andersencc8ed391999-10-05 16:24:54 +0000181
Eric Andersen3073dfb2001-07-02 17:57:32 +0000182 /* from zip.c: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000183static int zip(int in, int out);
184static int file_read(char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000185
Eric Andersen3073dfb2001-07-02 17:57:32 +0000186 /* from deflate.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000187static void lm_init(ush * flags);
188static ulg deflate(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000189
Eric Andersen3073dfb2001-07-02 17:57:32 +0000190 /* from trees.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000191static void ct_init(ush * attr, int *methodp);
192static int ct_tally(int dist, int lc);
193static ulg flush_block(char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000194
Eric Andersen3073dfb2001-07-02 17:57:32 +0000195 /* from bits.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000196static void bi_init(file_t zipfile);
197static void send_bits(int value, int length);
198static unsigned bi_reverse(unsigned value, int length);
199static void bi_windup(void);
200static void copy_block(char *buf, unsigned len, int header);
Eric Andersen3073dfb2001-07-02 17:57:32 +0000201static int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000202
Eric Andersen3073dfb2001-07-02 17:57:32 +0000203 /* from util.c: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000204static void flush_outbuf(void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205
Eric Andersencc8ed391999-10-05 16:24:54 +0000206/* lzw.h -- define the lzw functions.
207 * Copyright (C) 1992-1993 Jean-loup Gailly.
208 * This is free software; you can redistribute it and/or modify it under the
209 * terms of the GNU General Public License, see the file COPYING.
210 */
211
Eric Andersencc8ed391999-10-05 16:24:54 +0000212#ifndef BITS
213# define BITS 16
214#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000215#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000216
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000217#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000218/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
219 * It's a pity that old uncompress does not check bit 0x20. That makes
220 * extension of the format actually undesirable because old compress
221 * would just crash on the new format instead of giving a meaningful
222 * error message. It does check the number of bits, but it's more
223 * helpful to say "unsupported format, get a new version" than
224 * "can only handle 16 bits".
225 */
226
Eric Andersencc8ed391999-10-05 16:24:54 +0000227/* tailor.h -- target dependent definitions
228 * Copyright (C) 1992-1993 Jean-loup Gailly.
229 * This is free software; you can redistribute it and/or modify it under the
230 * terms of the GNU General Public License, see the file COPYING.
231 */
232
233/* The target dependent definitions should be defined here only.
234 * The target dependent functions should be defined in tailor.c.
235 */
236
Eric Andersencc8ed391999-10-05 16:24:54 +0000237
Eric Andersencc8ed391999-10-05 16:24:54 +0000238 /* Common defaults */
239
240#ifndef OS_CODE
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000241# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000242#endif
243
244#ifndef PATH_SEP
245# define PATH_SEP '/'
246#endif
247
Eric Andersencc8ed391999-10-05 16:24:54 +0000248#ifndef OPTIONS_VAR
249# define OPTIONS_VAR "GZIP"
250#endif
251
252#ifndef Z_SUFFIX
253# define Z_SUFFIX ".gz"
254#endif
255
256#ifdef MAX_EXT_CHARS
257# define MAX_SUFFIX MAX_EXT_CHARS
258#else
259# define MAX_SUFFIX 30
260#endif
261
Eric Andersen3073dfb2001-07-02 17:57:32 +0000262 /* global buffers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000263
Eric Andersen3073dfb2001-07-02 17:57:32 +0000264DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
265DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
266DECLARE(ush, d_buf, DIST_BUFSIZE);
267DECLARE(uch, window, 2L * WSIZE);
268DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +0000269
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000270static int foreground; /* set if program run in foreground */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000271static int method = DEFLATED; /* compression method */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000272static int exit_code = OK; /* program exit code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000273static long time_stamp; /* original time stamp (modification time) */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000274static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000276static int ifd; /* input file descriptor */
277static int ofd; /* output file descriptor */
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000278#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000279static unsigned insize; /* valid bytes in inbuf */
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000280#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000281static unsigned outcnt; /* bytes in output buffer */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000282
Rob Landleyc57ec372006-04-10 17:07:15 +0000283static uint32_t *crc_32_tab;
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000284
285/* Output a 16 bit value, lsb first */
286static void put_short(ush w)
287{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000288 if (outcnt < OUTBUFSIZ - 2) {
289 outbuf[outcnt++] = (uch) ((w) & 0xff);
290 outbuf[outcnt++] = (uch) ((ush) (w) >> 8);
291 } else {
292 put_byte((uch) ((w) & 0xff));
293 put_byte((uch) ((ush) (w) >> 8));
294 }
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000295}
296
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000297/* ========================================================================
298 * Signal and error handler.
299 */
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +0000300static void abort_gzip(int ATTRIBUTE_UNUSED ignored)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000301{
302 exit(ERROR);
303}
304
305/* ===========================================================================
306 * Clear input and output buffers
307 */
308static void clear_bufs(void)
309{
310 outcnt = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000311#ifdef DEBUG
Eric Andersen3073dfb2001-07-02 17:57:32 +0000312 insize = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000313#endif
Eric Andersen3073dfb2001-07-02 17:57:32 +0000314 bytes_in = 0L;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000315}
316
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000317/* ===========================================================================
318 * Does the same as write(), but also handles partial pipe writes and checks
319 * for error return.
320 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000321static void write_buf(int fd, void *buf, unsigned cnt)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000322{
323 unsigned n;
324
325 while ((n = write(fd, buf, cnt)) != cnt) {
Bernhard Reutner-Fischer1b9d7c92006-06-03 22:45:37 +0000326 if (n == (unsigned) (-1)) bb_error_msg_and_die(bb_msg_write_error);
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000327 cnt -= n;
328 buf = (void *) ((char *) buf + n);
329 }
330}
331
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000332/* ===========================================================================
333 * Run a set of bytes through the crc shift register. If s is a NULL
334 * pointer, then initialize the crc shift register contents instead.
335 * Return the current crc in either case.
336 */
Rob Landleyc57ec372006-04-10 17:07:15 +0000337static uint32_t updcrc(uch * s, unsigned n)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000338{
Rob Landleyc57ec372006-04-10 17:07:15 +0000339 static uint32_t crc = ~0; /* shift register contents */
340 uint32_t c; /* temporary variable */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000341
342 if (s == NULL) {
Rob Landleyc57ec372006-04-10 17:07:15 +0000343 c = ~0;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000344 } else {
345 c = crc;
346 if (n)
347 do {
348 c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);
349 } while (--n);
350 }
351 crc = c;
Rob Landleyc57ec372006-04-10 17:07:15 +0000352 return ~c;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000353}
354
Eric Andersencc8ed391999-10-05 16:24:54 +0000355/* bits.c -- output variable-length bit strings
356 * Copyright (C) 1992-1993 Jean-loup Gailly
357 * This is free software; you can redistribute it and/or modify it under the
358 * terms of the GNU General Public License, see the file COPYING.
359 */
360
361
362/*
363 * PURPOSE
364 *
365 * Output variable-length bit strings. Compression can be done
366 * to a file or to memory. (The latter is not supported in this version.)
367 *
368 * DISCUSSION
369 *
370 * The PKZIP "deflate" file format interprets compressed file data
371 * as a sequence of bits. Multi-bit strings in the file may cross
372 * byte boundaries without restriction.
373 *
374 * The first bit of each byte is the low-order bit.
375 *
376 * The routines in this file allow a variable-length bit value to
377 * be output right-to-left (useful for literal values). For
378 * left-to-right output (useful for code strings from the tree routines),
379 * the bits must have been reversed first with bi_reverse().
380 *
381 * For in-memory compression, the compressed bit stream goes directly
382 * into the requested output buffer. The input data is read in blocks
383 * by the mem_read() function. The buffer is limited to 64K on 16 bit
384 * machines.
385 *
386 * INTERFACE
387 *
388 * void bi_init (FILE *zipfile)
389 * Initialize the bit string routines.
390 *
391 * void send_bits (int value, int length)
392 * Write out a bit string, taking the source bits right to
393 * left.
394 *
395 * int bi_reverse (int value, int length)
396 * Reverse the bits of a bit string, taking the source bits left to
397 * right and emitting them right to left.
398 *
399 * void bi_windup (void)
400 * Write out any remaining bits in an incomplete byte.
401 *
402 * void copy_block(char *buf, unsigned len, int header)
403 * Copy a stored block to the zip file, storing first the length and
404 * its one's complement if requested.
405 *
406 */
407
Eric Andersencc8ed391999-10-05 16:24:54 +0000408/* ===========================================================================
409 * Local data used by the "bit string" routines.
410 */
411
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000412static file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000413
Eric Andersen3073dfb2001-07-02 17:57:32 +0000414static unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000415
Eric Andersencc8ed391999-10-05 16:24:54 +0000416/* Output buffer. bits are inserted starting at the bottom (least significant
417 * bits).
418 */
419
420#define Buf_size (8 * 2*sizeof(char))
421/* Number of bits used within bi_buf. (bi_buf might be implemented on
422 * more than 16 bits on some systems.)
423 */
424
Eric Andersen3073dfb2001-07-02 17:57:32 +0000425static int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000426
Eric Andersencc8ed391999-10-05 16:24:54 +0000427/* Current input function. Set to mem_read for in-memory compression */
428
429#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000430ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000431#endif
432
433/* ===========================================================================
434 * Initialize the bit string routines.
435 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000436static void bi_init(file_t zipfile)
Eric Andersencc8ed391999-10-05 16:24:54 +0000437{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000438 zfile = zipfile;
439 bi_buf = 0;
440 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000441#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000442 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000443#endif
444
Erik Andersene49d5ec2000-02-08 19:58:47 +0000445 /* Set the defaults for file compression. They are set by memcompress
446 * for in-memory compression.
447 */
448 if (zfile != NO_FILE) {
449 read_buf = file_read;
450 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000451}
452
453/* ===========================================================================
454 * Send a value on a given number of bits.
455 * IN assertion: length <= 16 and value fits in length bits.
456 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000457static void send_bits(int value, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000458{
459#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000460 Tracev((stderr, " l %2d v %4x ", length, value));
461 Assert(length > 0 && length <= 15, "invalid length");
462 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000463#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000464 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
465 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
466 * unused bits in value.
467 */
468 if (bi_valid > (int) Buf_size - length) {
469 bi_buf |= (value << bi_valid);
470 put_short(bi_buf);
471 bi_buf = (ush) value >> (Buf_size - bi_valid);
472 bi_valid += length - Buf_size;
473 } else {
474 bi_buf |= value << bi_valid;
475 bi_valid += length;
476 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000477}
478
479/* ===========================================================================
480 * Reverse the first len bits of a code, using straightforward code (a faster
481 * method would use a table)
482 * IN assertion: 1 <= len <= 15
483 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000484static unsigned bi_reverse(unsigned code, int len)
Eric Andersencc8ed391999-10-05 16:24:54 +0000485{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000486 unsigned res = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000487
488 do {
489 res |= code & 1;
490 code >>= 1, res <<= 1;
491 } while (--len > 0);
492 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000493}
494
495/* ===========================================================================
496 * Write out any remaining bits in an incomplete byte.
497 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +0000498static void bi_windup(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000499{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000500 if (bi_valid > 8) {
501 put_short(bi_buf);
502 } else if (bi_valid > 0) {
503 put_byte(bi_buf);
504 }
505 bi_buf = 0;
506 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000507#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000508 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000509#endif
510}
511
512/* ===========================================================================
513 * Copy a stored block to the zip file, storing first the length and its
514 * one's complement if requested.
515 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000516static void copy_block(char *buf, unsigned len, int header)
Eric Andersencc8ed391999-10-05 16:24:54 +0000517{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000518 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000519
Erik Andersene49d5ec2000-02-08 19:58:47 +0000520 if (header) {
521 put_short((ush) len);
522 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000523#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000524 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000525#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000527#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000528 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000529#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000530 while (len--) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531 put_byte(*buf++);
532 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000533}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000534
Eric Andersencc8ed391999-10-05 16:24:54 +0000535/* deflate.c -- compress data using the deflation algorithm
536 * Copyright (C) 1992-1993 Jean-loup Gailly
537 * This is free software; you can redistribute it and/or modify it under the
538 * terms of the GNU General Public License, see the file COPYING.
539 */
540
541/*
542 * PURPOSE
543 *
544 * Identify new text as repetitions of old text within a fixed-
545 * length sliding window trailing behind the new text.
546 *
547 * DISCUSSION
548 *
549 * The "deflation" process depends on being able to identify portions
550 * of the input text which are identical to earlier input (within a
551 * sliding window trailing behind the input currently being processed).
552 *
553 * The most straightforward technique turns out to be the fastest for
554 * most input files: try all possible matches and select the longest.
555 * The key feature of this algorithm is that insertions into the string
556 * dictionary are very simple and thus fast, and deletions are avoided
557 * completely. Insertions are performed at each input character, whereas
558 * string matches are performed only when the previous match ends. So it
559 * is preferable to spend more time in matches to allow very fast string
560 * insertions and avoid deletions. The matching algorithm for small
561 * strings is inspired from that of Rabin & Karp. A brute force approach
562 * is used to find longer strings when a small match has been found.
563 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
564 * (by Leonid Broukhis).
565 * A previous version of this file used a more sophisticated algorithm
566 * (by Fiala and Greene) which is guaranteed to run in linear amortized
567 * time, but has a larger average cost, uses more memory and is patented.
568 * However the F&G algorithm may be faster for some highly redundant
569 * files if the parameter max_chain_length (described below) is too large.
570 *
Eric Andersenaff114c2004-04-14 17:51:38 +0000571 * ACKNOWLEDGMENTS
Eric Andersencc8ed391999-10-05 16:24:54 +0000572 *
573 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
574 * I found it in 'freeze' written by Leonid Broukhis.
575 * Thanks to many info-zippers for bug reports and testing.
576 *
577 * REFERENCES
578 *
579 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
580 *
581 * A description of the Rabin and Karp algorithm is given in the book
582 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
583 *
584 * Fiala,E.R., and Greene,D.H.
585 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
586 *
587 * INTERFACE
588 *
589 * void lm_init (int pack_level, ush *flags)
590 * Initialize the "longest match" routines for a new file
591 *
592 * ulg deflate (void)
593 * Processes a new input file and return its compressed length. Sets
594 * the compressed length, crc, deflate flags and internal file
595 * attributes.
596 */
597
Eric Andersencc8ed391999-10-05 16:24:54 +0000598
Eric Andersencc8ed391999-10-05 16:24:54 +0000599/* ===========================================================================
600 * Configuration parameters
601 */
602
603/* Compile with MEDIUM_MEM to reduce the memory requirements or
604 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
605 * entire input file can be held in memory (not possible on 16 bit systems).
606 * Warning: defining these symbols affects HASH_BITS (see below) and thus
607 * affects the compression ratio. The compressed output
608 * is still correct, and might even be smaller in some cases.
609 */
610
611#ifdef SMALL_MEM
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000612# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +0000613#endif
614#ifdef MEDIUM_MEM
615# define HASH_BITS 14
616#endif
617#ifndef HASH_BITS
618# define HASH_BITS 15
619 /* For portability to 16 bit machines, do not use values above 15. */
620#endif
621
622/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
623 * window with tab_suffix. Check that we can do this:
624 */
625#if (WSIZE<<1) > (1<<BITS)
Eric Andersen3073dfb2001-07-02 17:57:32 +0000626# error cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +0000627#endif
628#if HASH_BITS > BITS-1
Eric Andersen3073dfb2001-07-02 17:57:32 +0000629# error cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +0000630#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000631#define HASH_SIZE (unsigned)(1<<HASH_BITS)
632#define HASH_MASK (HASH_SIZE-1)
633#define WMASK (WSIZE-1)
634/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +0000635#define NIL 0
636/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +0000637#define FAST 4
638#define SLOW 2
639/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +0000640#ifndef TOO_FAR
641# define TOO_FAR 4096
642#endif
643/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +0000644/* ===========================================================================
645 * Local data used by the "longest match" routines.
646 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000647typedef ush Pos;
648typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000649
Eric Andersencc8ed391999-10-05 16:24:54 +0000650/* A Pos is an index in the character window. We use short instead of int to
651 * save space in the various tables. IPos is used only for parameter passing.
652 */
653
654/* DECLARE(uch, window, 2L*WSIZE); */
655/* Sliding window. Input bytes are read into the second half of the window,
656 * and move to the first half later to keep a dictionary of at least WSIZE
657 * bytes. With this organization, matches are limited to a distance of
658 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
659 * performed with a length multiple of the block size. Also, it limits
660 * the window size to 64K, which is quite useful on MSDOS.
661 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
662 * be less efficient).
663 */
664
665/* DECLARE(Pos, prev, WSIZE); */
666/* Link to older string with same hash index. To limit the size of this
667 * array to 64K, this link is maintained only for the last 32K strings.
668 * An index in this array is thus a window index modulo 32K.
669 */
670
671/* DECLARE(Pos, head, 1<<HASH_BITS); */
672/* Heads of the hash chains or NIL. */
673
Eric Andersen3073dfb2001-07-02 17:57:32 +0000674static const ulg window_size = (ulg) 2 * WSIZE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000675
Eric Andersencc8ed391999-10-05 16:24:54 +0000676/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
677 * input file length plus MIN_LOOKAHEAD.
678 */
679
Eric Andersen3073dfb2001-07-02 17:57:32 +0000680static long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000681
Eric Andersencc8ed391999-10-05 16:24:54 +0000682/* window position at the beginning of the current output block. Gets
683 * negative when the window is moved backwards.
684 */
685
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000686static unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +0000687
688#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
689/* Number of bits by which ins_h and del_h must be shifted at each
690 * input step. It must be such that after MIN_MATCH steps, the oldest
691 * byte no longer takes part in the hash key, that is:
692 * H_SHIFT * MIN_MATCH >= HASH_BITS
693 */
694
Eric Andersen3073dfb2001-07-02 17:57:32 +0000695static unsigned int prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000696
Eric Andersencc8ed391999-10-05 16:24:54 +0000697/* Length of the best match at previous step. Matches not greater than this
698 * are discarded. This is used in the lazy match evaluation.
699 */
700
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000701static unsigned strstart; /* start of string to insert */
702static unsigned match_start; /* start of matching string */
703static int eofile; /* flag set at end of input file */
704static unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +0000705
Rob Landleybc68cd12006-03-10 19:22:06 +0000706enum {
707 max_chain_length = 4096,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000708
Eric Andersencc8ed391999-10-05 16:24:54 +0000709/* To speed up deflation, hash chains are never searched beyond this length.
710 * A higher limit improves compression ratio but degrades the speed.
711 */
712
Rob Landleybc68cd12006-03-10 19:22:06 +0000713 max_lazy_match = 258,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000714
Eric Andersencc8ed391999-10-05 16:24:54 +0000715/* Attempt to find a better match only when the current match is strictly
716 * smaller than this value. This mechanism is used only for compression
717 * levels >= 4.
718 */
Rob Landleybc68cd12006-03-10 19:22:06 +0000719 max_insert_length = max_lazy_match,
Eric Andersencc8ed391999-10-05 16:24:54 +0000720/* Insert new strings in the hash table only if the match length
721 * is not greater than this length. This saves time but degrades compression.
722 * max_insert_length is used only for compression levels <= 3.
723 */
724
Rob Landleybc68cd12006-03-10 19:22:06 +0000725 good_match = 32,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000726
Eric Andersencc8ed391999-10-05 16:24:54 +0000727/* Use a faster search when the previous match is longer than this */
728
729
730/* Values for max_lazy_match, good_match and max_chain_length, depending on
731 * the desired pack level (0..9). The values given below have been tuned to
732 * exclude worst case performance for pathological files. Better values may be
733 * found for specific files.
734 */
735
Rob Landleybc68cd12006-03-10 19:22:06 +0000736 nice_match = 258 /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +0000737
738/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
739 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
740 * meaning.
741 */
Rob Landleybc68cd12006-03-10 19:22:06 +0000742};
Eric Andersencc8ed391999-10-05 16:24:54 +0000743
744#define EQUAL 0
745/* result of memcmp for equal strings */
746
747/* ===========================================================================
748 * Prototypes for local functions.
749 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000750static void fill_window(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000751
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000752static int longest_match(IPos cur_match);
Eric Andersencc8ed391999-10-05 16:24:54 +0000753
754#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000755static void check_match(IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +0000756#endif
757
758/* ===========================================================================
759 * Update a hash value with the given input byte
760 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
761 * input characters, so that a running hash key can be computed from the
762 * previous key instead of complete recalculation each time.
763 */
764#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
765
766/* ===========================================================================
767 * Insert string s in the dictionary and set match_head to the previous head
768 * of the hash chain (the most recent string with same hash key). Return
769 * the previous length of the hash chain.
770 * IN assertion: all calls to to INSERT_STRING are made with consecutive
771 * input characters and the first MIN_MATCH bytes of s are valid
772 * (except for the last MIN_MATCH-1 bytes of the input file).
773 */
774#define INSERT_STRING(s, match_head) \
775 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
776 prev[(s) & WMASK] = match_head = head[ins_h], \
777 head[ins_h] = (s))
778
779/* ===========================================================================
780 * Initialize the "longest match" routines for a new file
781 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000782static void lm_init(ush * flags)
Eric Andersencc8ed391999-10-05 16:24:54 +0000783{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000784 unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +0000785
Erik Andersene49d5ec2000-02-08 19:58:47 +0000786 /* Initialize the hash table. */
Rob Landleyec4f3d92004-12-17 05:23:36 +0000787 memset(head, 0, HASH_SIZE * sizeof(*head));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000788 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +0000789
Erik Andersene49d5ec2000-02-08 19:58:47 +0000790 *flags |= SLOW;
791 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000792
Erik Andersene49d5ec2000-02-08 19:58:47 +0000793 strstart = 0;
794 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000795
Erik Andersene49d5ec2000-02-08 19:58:47 +0000796 lookahead = read_buf((char *) window,
797 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000798
Erik Andersene49d5ec2000-02-08 19:58:47 +0000799 if (lookahead == 0 || lookahead == (unsigned) EOF) {
800 eofile = 1, lookahead = 0;
801 return;
802 }
803 eofile = 0;
804 /* Make sure that we always have enough lookahead. This is important
805 * if input comes from a device such as a tty.
806 */
807 while (lookahead < MIN_LOOKAHEAD && !eofile)
808 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +0000809
Erik Andersene49d5ec2000-02-08 19:58:47 +0000810 ins_h = 0;
811 for (j = 0; j < MIN_MATCH - 1; j++)
812 UPDATE_HASH(ins_h, window[j]);
813 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
814 * not important since only literal bytes will be emitted.
815 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000816}
817
818/* ===========================================================================
819 * Set match_start to the longest match starting at the given string and
820 * return its length. Matches shorter or equal to prev_length are discarded,
821 * in which case the result is equal to prev_length and match_start is
822 * garbage.
823 * IN assertions: cur_match is the head of the hash chain for the current
824 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
825 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000826
Eric Andersencc8ed391999-10-05 16:24:54 +0000827/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
828 * match.s. The code is functionally equivalent, so you can use the C version
829 * if desired.
830 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000831static int longest_match(IPos cur_match)
Eric Andersencc8ed391999-10-05 16:24:54 +0000832{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000833 unsigned chain_length = max_chain_length; /* max hash chain length */
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000834 uch *scan = window + strstart; /* current string */
835 uch *match; /* matched string */
836 int len; /* length of current match */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000837 int best_len = prev_length; /* best match length so far */
838 IPos limit =
Erik Andersene49d5ec2000-02-08 19:58:47 +0000839 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
840 /* Stop when cur_match becomes <= limit. To simplify the code,
841 * we prevent matches with the string of window index 0.
842 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000843
844/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
845 * It is easy to get rid of this optimization if necessary.
846 */
847#if HASH_BITS < 8 || MAX_MATCH != 258
Eric Andersen3073dfb2001-07-02 17:57:32 +0000848# error Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +0000849#endif
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000850 uch *strend = window + strstart + MAX_MATCH;
851 uch scan_end1 = scan[best_len - 1];
852 uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +0000853
Erik Andersene49d5ec2000-02-08 19:58:47 +0000854 /* Do not waste too much time if we already have a good match: */
855 if (prev_length >= good_match) {
856 chain_length >>= 2;
857 }
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000858 Assert(strstart <= window_size - MIN_LOOKAHEAD, "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +0000859
Erik Andersene49d5ec2000-02-08 19:58:47 +0000860 do {
861 Assert(cur_match < strstart, "no future");
862 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +0000863
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864 /* Skip to next match if the match length cannot increase
865 * or if the match length is less than 2:
866 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867 if (match[best_len] != scan_end ||
868 match[best_len - 1] != scan_end1 ||
869 *match != *scan || *++match != scan[1])
870 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +0000871
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872 /* The check at best_len-1 can be removed because it will be made
873 * again later. (This heuristic is not always a win.)
874 * It is not necessary to compare scan[2] and match[2] since they
875 * are always equal when the other bytes match, given that
876 * the hash keys are equal and that HASH_BITS >= 8.
877 */
878 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +0000879
Erik Andersene49d5ec2000-02-08 19:58:47 +0000880 /* We check for insufficient lookahead only every 8th comparison;
881 * the 256th check will be made at strstart+258.
882 */
883 do {
884 } while (*++scan == *++match && *++scan == *++match &&
885 *++scan == *++match && *++scan == *++match &&
886 *++scan == *++match && *++scan == *++match &&
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000887 *++scan == *++match && *++scan == *++match && scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +0000888
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 len = MAX_MATCH - (int) (strend - scan);
890 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +0000891
Erik Andersene49d5ec2000-02-08 19:58:47 +0000892 if (len > best_len) {
893 match_start = cur_match;
894 best_len = len;
895 if (len >= nice_match)
896 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000897 scan_end1 = scan[best_len - 1];
898 scan_end = scan[best_len];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899 }
900 } while ((cur_match = prev[cur_match & WMASK]) > limit
901 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000902
Erik Andersene49d5ec2000-02-08 19:58:47 +0000903 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +0000904}
Eric Andersencc8ed391999-10-05 16:24:54 +0000905
906#ifdef DEBUG
907/* ===========================================================================
908 * Check that the match at match_start is indeed a match.
909 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000910static void check_match(IPos start, IPos match, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000911{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 /* check that the match is indeed a match */
913 if (memcmp((char *) window + match,
914 (char *) window + start, length) != EQUAL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000915 bb_error_msg(" start %d, match %d, length %d", start, match, length);
916 bb_error_msg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000917 }
918 if (verbose > 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000919 bb_error_msg("\\[%d,%d]", start - match, length);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000920 do {
921 putc(window[start++], stderr);
922 } while (--length != 0);
923 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000924}
925#else
926# define check_match(start, match, length)
927#endif
928
929/* ===========================================================================
930 * Fill the window when the lookahead becomes insufficient.
931 * Updates strstart and lookahead, and sets eofile if end of input file.
932 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
933 * OUT assertions: at least one byte has been read, or eofile is set;
934 * file reads are performed for at least two bytes (required for the
935 * translate_eol option).
936 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +0000937static void fill_window(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000938{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000939 unsigned n, m;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000940 unsigned more =
Erik Andersene49d5ec2000-02-08 19:58:47 +0000941 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
942 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +0000943
Erik Andersene49d5ec2000-02-08 19:58:47 +0000944 /* If the window is almost full and there is insufficient lookahead,
945 * move the upper half to the lower one to make room in the upper half.
946 */
947 if (more == (unsigned) EOF) {
948 /* Very unlikely, but possible on 16 bit machine if strstart == 0
949 * and lookahead == 1 (input done one byte at time)
950 */
951 more--;
952 } else if (strstart >= WSIZE + MAX_DIST) {
953 /* By the IN assertion, the window is not empty so we can't confuse
954 * more == 0 with more == 64K on a 16 bit machine.
955 */
956 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +0000957
Erik Andersene49d5ec2000-02-08 19:58:47 +0000958 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
959 match_start -= WSIZE;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000960 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +0000961
Erik Andersene49d5ec2000-02-08 19:58:47 +0000962 block_start -= (long) WSIZE;
963
964 for (n = 0; n < HASH_SIZE; n++) {
965 m = head[n];
966 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
967 }
968 for (n = 0; n < WSIZE; n++) {
969 m = prev[n];
970 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
971 /* If n is not on any hash chain, prev[n] is garbage but
972 * its value will never be used.
973 */
974 }
975 more += WSIZE;
976 }
977 /* At this point, more >= 2 */
978 if (!eofile) {
979 n = read_buf((char *) window + strstart + lookahead, more);
980 if (n == 0 || n == (unsigned) EOF) {
981 eofile = 1;
982 } else {
983 lookahead += n;
984 }
985 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000986}
987
988/* ===========================================================================
989 * Flush the current block, with given end-of-file flag.
990 * IN assertion: strstart is set to the end of the current match.
991 */
992#define FLUSH_BLOCK(eof) \
993 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000994 (char*)NULL, (long)strstart - block_start, (eof))
Eric Andersencc8ed391999-10-05 16:24:54 +0000995
996/* ===========================================================================
997 * Same as above, but achieves better compression. We use a lazy
998 * evaluation for matches: a match is finally adopted only if there is
999 * no better match at the next window position.
1000 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00001001static ulg deflate(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00001002{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001003 IPos hash_head; /* head of hash chain */
1004 IPos prev_match; /* previous match */
1005 int flush; /* set if current block must be flushed */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001006 int match_available = 0; /* set if previous match exists */
"Robert P. J. Day"68229832006-07-01 13:08:46 +00001007 unsigned match_length = MIN_MATCH - 1; /* length of best match */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001008
Erik Andersene49d5ec2000-02-08 19:58:47 +00001009 /* Process the input block. */
1010 while (lookahead != 0) {
1011 /* Insert the string window[strstart .. strstart+2] in the
1012 * dictionary, and set hash_head to the head of the hash chain:
1013 */
1014 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001015
Erik Andersene49d5ec2000-02-08 19:58:47 +00001016 /* Find the longest match, discarding those <= prev_length.
1017 */
1018 prev_length = match_length, prev_match = match_start;
1019 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001020
Erik Andersene49d5ec2000-02-08 19:58:47 +00001021 if (hash_head != NIL && prev_length < max_lazy_match &&
1022 strstart - hash_head <= MAX_DIST) {
1023 /* To simplify the code, we prevent matches with the string
1024 * of window index 0 (in particular we have to avoid a match
1025 * of the string with itself at the start of the input file).
1026 */
1027 match_length = longest_match(hash_head);
1028 /* longest_match() sets match_start */
1029 if (match_length > lookahead)
1030 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001031
Erik Andersene49d5ec2000-02-08 19:58:47 +00001032 /* Ignore a length 3 match if it is too distant: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001033 if (match_length == MIN_MATCH && strstart - match_start > TOO_FAR) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001034 /* If prev_match is also MIN_MATCH, match_start is garbage
1035 * but we will ignore the current match anyway.
1036 */
1037 match_length--;
1038 }
1039 }
1040 /* If there was a match at the previous step and the current
1041 * match is not better, output the previous match:
1042 */
1043 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001044
Erik Andersene49d5ec2000-02-08 19:58:47 +00001045 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001046
Erik Andersene49d5ec2000-02-08 19:58:47 +00001047 flush =
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001048 ct_tally(strstart - 1 - prev_match, prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001049
Erik Andersene49d5ec2000-02-08 19:58:47 +00001050 /* Insert in hash table all strings up to the end of the match.
1051 * strstart-1 and strstart are already inserted.
1052 */
1053 lookahead -= prev_length - 1;
1054 prev_length -= 2;
1055 do {
1056 strstart++;
1057 INSERT_STRING(strstart, hash_head);
1058 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1059 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1060 * these bytes are garbage, but it does not matter since the
1061 * next lookahead bytes will always be emitted as literals.
1062 */
1063 } while (--prev_length != 0);
1064 match_available = 0;
1065 match_length = MIN_MATCH - 1;
1066 strstart++;
1067 if (flush)
1068 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001069
Erik Andersene49d5ec2000-02-08 19:58:47 +00001070 } else if (match_available) {
1071 /* If there was no match at the previous position, output a
1072 * single literal. If there was a match but the current match
1073 * is longer, truncate the previous match to a single literal.
1074 */
1075 Tracevv((stderr, "%c", window[strstart - 1]));
1076 if (ct_tally(0, window[strstart - 1])) {
1077 FLUSH_BLOCK(0), block_start = strstart;
1078 }
1079 strstart++;
1080 lookahead--;
1081 } else {
1082 /* There is no previous match to compare with, wait for
1083 * the next step to decide.
1084 */
1085 match_available = 1;
1086 strstart++;
1087 lookahead--;
1088 }
1089 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001090
Erik Andersene49d5ec2000-02-08 19:58:47 +00001091 /* Make sure that we always have enough lookahead, except
1092 * at the end of the input file. We need MAX_MATCH bytes
1093 * for the next match, plus MIN_MATCH bytes to insert the
1094 * string following the next match.
1095 */
1096 while (lookahead < MIN_LOOKAHEAD && !eofile)
1097 fill_window();
1098 }
1099 if (match_available)
1100 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001101
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001102 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001103}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001104
Eric Andersencc8ed391999-10-05 16:24:54 +00001105/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1106 * Copyright (C) 1992-1993 Jean-loup Gailly
1107 * The unzip code was written and put in the public domain by Mark Adler.
1108 * Portions of the lzw code are derived from the public domain 'compress'
1109 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1110 * Ken Turkowski, Dave Mack and Peter Jannesen.
1111 *
1112 * See the license_msg below and the file COPYING for the software license.
1113 * See the file algorithm.doc for the compression algorithms and file formats.
1114 */
1115
1116/* Compress files with zip algorithm and 'compress' interface.
1117 * See usage() and help() functions below for all options.
1118 * Outputs:
1119 * file.gz: compressed file with same mode, owner, and utimes
1120 * or stdout with -c option or if stdin used as input.
1121 * If the output file name had to be truncated, the original name is kept
1122 * in the compressed file.
Eric Andersencc8ed391999-10-05 16:24:54 +00001123 */
1124
Eric Andersencc8ed391999-10-05 16:24:54 +00001125 /* configuration */
1126
Erik Andersene49d5ec2000-02-08 19:58:47 +00001127typedef struct dirent dir_type;
1128
Eric Andersencc8ed391999-10-05 16:24:54 +00001129/* ======================================================================== */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001130int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001131{
Denis Vlasenko01e88f02006-09-22 15:13:38 +00001132 enum {
1133 OPT_tostdout = 0x1,
1134 OPT_force = 0x2,
1135 };
1136
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001137 unsigned opt;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001138 int result;
1139 int inFileNum;
1140 int outFileNum;
1141 struct stat statBuf;
1142 char *delFileName;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001143
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001144 opt = getopt32(argc, argv, "cf123456789qv" USE_GUNZIP("d"));
Denis Vlasenko01e88f02006-09-22 15:13:38 +00001145 //if (opt & 0x1) // -c
1146 //if (opt & 0x2) // -f
1147 /* Ignore 1-9 (compression level) options */
1148 //if (opt & 0x4) // -1
1149 //if (opt & 0x8) // -2
1150 //if (opt & 0x10) // -3
1151 //if (opt & 0x20) // -4
1152 //if (opt & 0x40) // -5
1153 //if (opt & 0x80) // -6
1154 //if (opt & 0x100) // -7
1155 //if (opt & 0x200) // -8
1156 //if (opt & 0x400) // -9
1157 //if (opt & 0x800) // -q
Denis Vlasenko97a8dd32006-10-01 15:55:11 +00001158 //if (opt & 0x1000) // -v
1159 if (ENABLE_GUNZIP && (opt & 0x2000)) { // -d
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001160 /* FIXME: getopt32 should not depend on optind */
Denis Vlasenko01e88f02006-09-22 15:13:38 +00001161 optind = 1;
1162 return gunzip_main(argc, argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001163 }
1164
1165 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1166 if (foreground) {
Rob Landleyec4f3d92004-12-17 05:23:36 +00001167 (void) signal(SIGINT, abort_gzip);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001168 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001169#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001170 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
Rob Landleyec4f3d92004-12-17 05:23:36 +00001171 (void) signal(SIGTERM, abort_gzip);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001172 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001173#endif
1174#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001175 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
Rob Landleyec4f3d92004-12-17 05:23:36 +00001176 (void) signal(SIGHUP, abort_gzip);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001177 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001178#endif
1179
Erik Andersene49d5ec2000-02-08 19:58:47 +00001180 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001181
Erik Andersene49d5ec2000-02-08 19:58:47 +00001182 /* Allocate all global buffers (for DYN_ALLOC option) */
1183 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1184 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1185 ALLOC(ush, d_buf, DIST_BUFSIZE);
1186 ALLOC(uch, window, 2L * WSIZE);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001187 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001188
Rob Landleyc57ec372006-04-10 17:07:15 +00001189 /* Initialise the CRC32 table */
Rob Landley86b4d642006-08-03 17:58:17 +00001190 crc_32_tab = crc32_filltable(0);
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +00001191
Matt Kraai9bd49d62002-02-05 22:31:48 +00001192 clear_bufs();
Eric Andersen96bcfd31999-11-12 01:30:18 +00001193
Matt Kraai9bd49d62002-02-05 22:31:48 +00001194 if (optind == argc) {
1195 time_stamp = 0;
Matt Kraai9bd49d62002-02-05 22:31:48 +00001196 zip(STDIN_FILENO, STDOUT_FILENO);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001197 } else {
Matt Kraai9bd49d62002-02-05 22:31:48 +00001198 int i;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001199
Matt Kraai9bd49d62002-02-05 22:31:48 +00001200 for (i = optind; i < argc; i++) {
1201 char *path = NULL;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001202
Manuel Novoa III df7bfb42005-03-02 04:10:46 +00001203 clear_bufs();
Matt Kraai9bd49d62002-02-05 22:31:48 +00001204 if (strcmp(argv[i], "-") == 0) {
1205 time_stamp = 0;
Matt Kraai9bd49d62002-02-05 22:31:48 +00001206 inFileNum = STDIN_FILENO;
1207 outFileNum = STDOUT_FILENO;
1208 } else {
Bernhard Reutner-Fischer64d7e932006-09-11 16:01:40 +00001209 inFileNum = xopen(argv[i], O_RDONLY);
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001210 if (fstat(inFileNum, &statBuf) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001211 bb_perror_msg_and_die("%s", argv[i]);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001212 time_stamp = statBuf.st_ctime;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001213
Denis Vlasenko01e88f02006-09-22 15:13:38 +00001214 if (!(opt & OPT_tostdout)) {
Denis Vlasenko9cac5212006-09-09 12:24:19 +00001215 path = xasprintf("%s.gz", argv[i]);
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001216
Matt Kraai9bd49d62002-02-05 22:31:48 +00001217 /* Open output file */
Bernhard Reutner-Fischer0b42a6a2005-10-07 11:34:50 +00001218#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) && defined O_NOFOLLOW
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001219 outFileNum =
1220 open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001221#else
Matt Kraai9bd49d62002-02-05 22:31:48 +00001222 outFileNum = open(path, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001223#endif
Matt Kraai9bd49d62002-02-05 22:31:48 +00001224 if (outFileNum < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001225 bb_perror_msg("%s", path);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001226 free(path);
1227 continue;
1228 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001229
Matt Kraai9bd49d62002-02-05 22:31:48 +00001230 /* Set permissions on the file */
1231 fchmod(outFileNum, statBuf.st_mode);
1232 } else
1233 outFileNum = STDOUT_FILENO;
1234 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001235
Denis Vlasenko01e88f02006-09-22 15:13:38 +00001236 if (path == NULL && isatty(outFileNum) && !(opt & OPT_force)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001237 bb_error_msg
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001238 ("compressed data not written to a terminal. Use -f to force compression.");
Matt Kraai9bd49d62002-02-05 22:31:48 +00001239 free(path);
1240 continue;
1241 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001242
Matt Kraai9bd49d62002-02-05 22:31:48 +00001243 result = zip(inFileNum, outFileNum);
1244
1245 if (path != NULL) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001246 close(inFileNum);
1247 close(outFileNum);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001248
1249 /* Delete the original file */
1250 if (result == OK)
1251 delFileName = argv[i];
1252 else
1253 delFileName = path;
1254
1255 if (unlink(delFileName) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001256 bb_perror_msg("%s", delFileName);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001257 }
1258
1259 free(path);
1260 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001261 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001262
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001263 return (exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001264}
1265
Eric Andersencc8ed391999-10-05 16:24:54 +00001266/* trees.c -- output deflated data using Huffman coding
1267 * Copyright (C) 1992-1993 Jean-loup Gailly
1268 * This is free software; you can redistribute it and/or modify it under the
1269 * terms of the GNU General Public License, see the file COPYING.
1270 */
1271
1272/*
1273 * PURPOSE
1274 *
1275 * Encode various sets of source values using variable-length
1276 * binary code trees.
1277 *
1278 * DISCUSSION
1279 *
1280 * The PKZIP "deflation" process uses several Huffman trees. The more
1281 * common source values are represented by shorter bit sequences.
1282 *
1283 * Each code tree is stored in the ZIP file in a compressed form
1284 * which is itself a Huffman encoding of the lengths of
1285 * all the code strings (in ascending order by source values).
1286 * The actual code strings are reconstructed from the lengths in
1287 * the UNZIP process, as described in the "application note"
1288 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1289 *
1290 * REFERENCES
1291 *
1292 * Lynch, Thomas J.
1293 * Data Compression: Techniques and Applications, pp. 53-55.
1294 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1295 *
1296 * Storer, James A.
1297 * Data Compression: Methods and Theory, pp. 49-50.
1298 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1299 *
1300 * Sedgewick, R.
1301 * Algorithms, p290.
1302 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1303 *
1304 * INTERFACE
1305 *
1306 * void ct_init (ush *attr, int *methodp)
1307 * Allocate the match buffer, initialize the various tables and save
1308 * the location of the internal file attribute (ascii/binary) and
1309 * method (DEFLATE/STORE)
1310 *
1311 * void ct_tally (int dist, int lc);
1312 * Save the match info and tally the frequency counts.
1313 *
1314 * long flush_block (char *buf, ulg stored_len, int eof)
1315 * Determine the best encoding for the current block: dynamic trees,
1316 * static trees or store, and output the encoded block to the zip
1317 * file. Returns the total compressed length for the file so far.
1318 *
1319 */
1320
Eric Andersencc8ed391999-10-05 16:24:54 +00001321/* ===========================================================================
1322 * Constants
1323 */
1324
1325#define MAX_BITS 15
1326/* All codes must not exceed MAX_BITS bits */
1327
1328#define MAX_BL_BITS 7
1329/* Bit length codes must not exceed MAX_BL_BITS bits */
1330
1331#define LENGTH_CODES 29
1332/* number of length codes, not counting the special END_BLOCK code */
1333
1334#define LITERALS 256
1335/* number of literal bytes 0..255 */
1336
1337#define END_BLOCK 256
1338/* end of block literal code */
1339
1340#define L_CODES (LITERALS+1+LENGTH_CODES)
1341/* number of Literal or Length codes, including the END_BLOCK code */
1342
1343#define D_CODES 30
1344/* number of distance codes */
1345
1346#define BL_CODES 19
1347/* number of codes used to transfer the bit lengths */
1348
Eric Andersen39eb0402001-08-22 04:15:47 +00001349typedef uch extra_bits_t;
Eric Andersencc8ed391999-10-05 16:24:54 +00001350
Eric Andersen39eb0402001-08-22 04:15:47 +00001351/* extra bits for each length code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001352static const extra_bits_t extra_lbits[LENGTH_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001353 = { 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 +00001354 4, 4, 5, 5, 5, 5, 0
1355};
Eric Andersencc8ed391999-10-05 16:24:54 +00001356
Eric Andersen39eb0402001-08-22 04:15:47 +00001357/* extra bits for each distance code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001358static const extra_bits_t extra_dbits[D_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001359 = { 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 +00001360 10, 10, 11, 11, 12, 12, 13, 13
1361};
Eric Andersencc8ed391999-10-05 16:24:54 +00001362
Eric Andersen39eb0402001-08-22 04:15:47 +00001363/* extra bits for each bit length code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001364static const extra_bits_t extra_blbits[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001365= { 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 +00001366
1367#define STORED_BLOCK 0
1368#define STATIC_TREES 1
1369#define DYN_TREES 2
1370/* The three kinds of block type */
1371
1372#ifndef LIT_BUFSIZE
1373# ifdef SMALL_MEM
1374# define LIT_BUFSIZE 0x2000
1375# else
1376# ifdef MEDIUM_MEM
1377# define LIT_BUFSIZE 0x4000
1378# else
1379# define LIT_BUFSIZE 0x8000
1380# endif
1381# endif
1382#endif
1383#ifndef DIST_BUFSIZE
1384# define DIST_BUFSIZE LIT_BUFSIZE
1385#endif
1386/* Sizes of match buffers for literals/lengths and distances. There are
1387 * 4 reasons for limiting LIT_BUFSIZE to 64K:
1388 * - frequencies can be kept in 16 bit counters
1389 * - if compression is not successful for the first block, all input data is
1390 * still in the window so we can still emit a stored block even when input
1391 * comes from standard input. (This can also be done for all blocks if
1392 * LIT_BUFSIZE is not greater than 32K.)
1393 * - if compression is not successful for a file smaller than 64K, we can
1394 * even emit a stored file instead of a stored block (saving 5 bytes).
1395 * - creating new Huffman trees less frequently may not provide fast
1396 * adaptation to changes in the input data statistics. (Take for
1397 * example a binary file with poorly compressible code followed by
1398 * a highly compressible string table.) Smaller buffer sizes give
1399 * fast adaptation but have of course the overhead of transmitting trees
1400 * more frequently.
1401 * - I can't count above 4
1402 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
1403 * memory at the expense of compression). Some optimizations would be possible
1404 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
1405 */
1406#if LIT_BUFSIZE > INBUFSIZ
Aaron Lehmannb9df4702001-12-06 03:22:43 +00001407#error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00001408#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001409#define REP_3_6 16
1410/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001411#define REPZ_3_10 17
1412/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001413#define REPZ_11_138 18
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001414/* repeat a zero length 11-138 times (7 bits of repeat count) */
1415
1416/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00001417 * Local data
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001418 */
1419
1420/* Data structure describing a single value and its code string. */
1421typedef struct ct_data {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001422 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001423 ush freq; /* frequency count */
1424 ush code; /* bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001425 } fc;
1426 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001427 ush dad; /* father node in Huffman tree */
1428 ush len; /* length of bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001429 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00001430} ct_data;
1431
1432#define Freq fc.freq
1433#define Code fc.code
1434#define Dad dl.dad
1435#define Len dl.len
1436
1437#define HEAP_SIZE (2*L_CODES+1)
1438/* maximum heap size */
1439
Eric Andersen3073dfb2001-07-02 17:57:32 +00001440static ct_data dyn_ltree[HEAP_SIZE]; /* literal and length tree */
1441static ct_data dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001442
Eric Andersen3073dfb2001-07-02 17:57:32 +00001443static ct_data static_ltree[L_CODES + 2];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001444
Eric Andersencc8ed391999-10-05 16:24:54 +00001445/* The static literal tree. Since the bit lengths are imposed, there is no
1446 * need for the L_CODES extra codes used during heap construction. However
1447 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
1448 * below).
1449 */
1450
Eric Andersen3073dfb2001-07-02 17:57:32 +00001451static ct_data static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001452
Eric Andersencc8ed391999-10-05 16:24:54 +00001453/* The static distance tree. (Actually a trivial tree since all codes use
1454 * 5 bits.)
1455 */
1456
Eric Andersen3073dfb2001-07-02 17:57:32 +00001457static ct_data bl_tree[2 * BL_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001458
Eric Andersencc8ed391999-10-05 16:24:54 +00001459/* Huffman tree for the bit lengths */
1460
1461typedef struct tree_desc {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001462 ct_data *dyn_tree; /* the dynamic tree */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001463 ct_data *static_tree; /* corresponding static tree or NULL */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001464 const extra_bits_t *extra_bits; /* extra bits for each code or NULL */
1465 int extra_base; /* base index for extra_bits */
1466 int elems; /* max number of elements in the tree */
1467 int max_length; /* max bit length for the codes */
1468 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00001469} tree_desc;
1470
Eric Andersen3073dfb2001-07-02 17:57:32 +00001471static tree_desc l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001472 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001473 MAX_BITS, 0
1474};
Eric Andersencc8ed391999-10-05 16:24:54 +00001475
Eric Andersen3073dfb2001-07-02 17:57:32 +00001476static tree_desc d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001477 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00001478
Eric Andersen3073dfb2001-07-02 17:57:32 +00001479static tree_desc bl_desc =
1480 { bl_tree, (ct_data *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001481 0
1482};
Eric Andersencc8ed391999-10-05 16:24:54 +00001483
1484
Eric Andersen3073dfb2001-07-02 17:57:32 +00001485static ush bl_count[MAX_BITS + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001486
Eric Andersencc8ed391999-10-05 16:24:54 +00001487/* number of codes at each bit length for an optimal tree */
1488
Eric Andersen3073dfb2001-07-02 17:57:32 +00001489static const uch bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001490= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
1491
Eric Andersencc8ed391999-10-05 16:24:54 +00001492/* The lengths of the bit length codes are sent in order of decreasing
1493 * probability, to avoid transmitting the lengths for unused bit length codes.
1494 */
1495
Eric Andersen3073dfb2001-07-02 17:57:32 +00001496static int heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001497static int heap_len; /* number of elements in the heap */
1498static int heap_max; /* element of largest frequency */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001499
Eric Andersencc8ed391999-10-05 16:24:54 +00001500/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
1501 * The same heap array is used to build all trees.
1502 */
1503
Eric Andersen3073dfb2001-07-02 17:57:32 +00001504static uch depth[2 * L_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001505
Eric Andersencc8ed391999-10-05 16:24:54 +00001506/* Depth of each subtree used as tie breaker for trees of equal frequency */
1507
Eric Andersen3073dfb2001-07-02 17:57:32 +00001508static uch length_code[MAX_MATCH - MIN_MATCH + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001509
Eric Andersencc8ed391999-10-05 16:24:54 +00001510/* length code for each normalized match length (0 == MIN_MATCH) */
1511
Eric Andersen3073dfb2001-07-02 17:57:32 +00001512static uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001513
Eric Andersencc8ed391999-10-05 16:24:54 +00001514/* distance codes. The first 256 values correspond to the distances
1515 * 3 .. 258, the last 256 values correspond to the top 8 bits of
1516 * the 15 bit distances.
1517 */
1518
Eric Andersen3073dfb2001-07-02 17:57:32 +00001519static int base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001520
Eric Andersencc8ed391999-10-05 16:24:54 +00001521/* First normalized length for each code (0 = MIN_MATCH) */
1522
Eric Andersen3073dfb2001-07-02 17:57:32 +00001523static int base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001524
Eric Andersencc8ed391999-10-05 16:24:54 +00001525/* First normalized distance for each code (0 = distance of 1) */
1526
1527#define l_buf inbuf
1528/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
1529
1530/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
1531
Eric Andersen3073dfb2001-07-02 17:57:32 +00001532static uch flag_buf[(LIT_BUFSIZE / 8)];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001533
Eric Andersencc8ed391999-10-05 16:24:54 +00001534/* flag_buf is a bit array distinguishing literals from lengths in
1535 * l_buf, thus indicating the presence or absence of a distance.
1536 */
1537
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001538static unsigned last_lit; /* running index in l_buf */
1539static unsigned last_dist; /* running index in d_buf */
1540static unsigned last_flags; /* running index in flag_buf */
1541static uch flags; /* current flags not yet saved in flag_buf */
1542static uch flag_bit; /* current bit used in flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001543
Eric Andersencc8ed391999-10-05 16:24:54 +00001544/* bits are filled in flags starting at bit 0 (least significant).
1545 * Note: these flags are overkill in the current code since we don't
1546 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
1547 */
1548
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001549static ulg opt_len; /* bit length of current block with optimal trees */
1550static ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00001551
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001552static ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00001553
Erik Andersene49d5ec2000-02-08 19:58:47 +00001554
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001555static ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
1556static int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00001557
1558/* ===========================================================================
1559 * Local (static) routines in this file.
1560 */
1561
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001562static void init_block(void);
1563static void pqdownheap(ct_data * tree, int k);
1564static void gen_bitlen(tree_desc * desc);
1565static void gen_codes(ct_data * tree, int max_code);
1566static void build_tree(tree_desc * desc);
1567static void scan_tree(ct_data * tree, int max_code);
1568static void send_tree(ct_data * tree, int max_code);
1569static int build_bl_tree(void);
1570static void send_all_trees(int lcodes, int dcodes, int blcodes);
1571static void compress_block(ct_data * ltree, ct_data * dtree);
1572static void set_file_type(void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001573
1574
1575#ifndef DEBUG
1576# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
1577 /* Send a code of the given tree. c and tree must not have side effects */
1578
Erik Andersene49d5ec2000-02-08 19:58:47 +00001579#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00001580# define send_code(c, tree) \
Manuel Novoa III cad53642003-03-19 09:13:01 +00001581 { if (verbose>1) bb_error_msg("\ncd %3d ",(c)); \
Eric Andersencc8ed391999-10-05 16:24:54 +00001582 send_bits(tree[c].Code, tree[c].Len); }
1583#endif
1584
1585#define d_code(dist) \
1586 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
1587/* Mapping from a distance to a distance code. dist is the distance - 1 and
1588 * must not have side effects. dist_code[256] and dist_code[257] are never
1589 * used.
1590 */
1591
Eric Andersencc8ed391999-10-05 16:24:54 +00001592/* the arguments must not have side effects */
1593
1594/* ===========================================================================
1595 * Allocate the match buffer, initialize the various tables and save the
1596 * location of the internal file attribute (ascii/binary) and method
1597 * (DEFLATE/STORE).
1598 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001599static void ct_init(ush * attr, int *methodp)
Eric Andersencc8ed391999-10-05 16:24:54 +00001600{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001601 int n; /* iterates over tree elements */
1602 int bits; /* bit counter */
1603 int length; /* length value */
1604 int code; /* code value */
1605 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001606
Erik Andersene49d5ec2000-02-08 19:58:47 +00001607 file_type = attr;
1608 file_method = methodp;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001609 compressed_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001610
Erik Andersene49d5ec2000-02-08 19:58:47 +00001611 if (static_dtree[0].Len != 0)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001612 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00001613
Erik Andersene49d5ec2000-02-08 19:58:47 +00001614 /* Initialize the mapping length (0..255) -> length code (0..28) */
1615 length = 0;
1616 for (code = 0; code < LENGTH_CODES - 1; code++) {
1617 base_length[code] = length;
1618 for (n = 0; n < (1 << extra_lbits[code]); n++) {
1619 length_code[length++] = (uch) code;
1620 }
1621 }
1622 Assert(length == 256, "ct_init: length != 256");
1623 /* Note that the length 255 (match length 258) can be represented
1624 * in two different ways: code 284 + 5 bits or code 285, so we
1625 * overwrite length_code[255] to use the best encoding:
1626 */
1627 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00001628
Erik Andersene49d5ec2000-02-08 19:58:47 +00001629 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
1630 dist = 0;
1631 for (code = 0; code < 16; code++) {
1632 base_dist[code] = dist;
1633 for (n = 0; n < (1 << extra_dbits[code]); n++) {
1634 dist_code[dist++] = (uch) code;
1635 }
1636 }
1637 Assert(dist == 256, "ct_init: dist != 256");
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001638 dist >>= 7; /* from now on, all distances are divided by 128 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001639 for (; code < D_CODES; code++) {
1640 base_dist[code] = dist << 7;
1641 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
1642 dist_code[256 + dist++] = (uch) code;
1643 }
1644 }
1645 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00001646
Erik Andersene49d5ec2000-02-08 19:58:47 +00001647 /* Construct the codes of the static literal tree */
1648 for (bits = 0; bits <= MAX_BITS; bits++)
1649 bl_count[bits] = 0;
1650 n = 0;
1651 while (n <= 143)
1652 static_ltree[n++].Len = 8, bl_count[8]++;
1653 while (n <= 255)
1654 static_ltree[n++].Len = 9, bl_count[9]++;
1655 while (n <= 279)
1656 static_ltree[n++].Len = 7, bl_count[7]++;
1657 while (n <= 287)
1658 static_ltree[n++].Len = 8, bl_count[8]++;
1659 /* Codes 286 and 287 do not exist, but we must include them in the
1660 * tree construction to get a canonical Huffman tree (longest code
1661 * all ones)
1662 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001663 gen_codes((ct_data *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001664
Erik Andersene49d5ec2000-02-08 19:58:47 +00001665 /* The static distance tree is trivial: */
1666 for (n = 0; n < D_CODES; n++) {
1667 static_dtree[n].Len = 5;
1668 static_dtree[n].Code = bi_reverse(n, 5);
1669 }
1670
1671 /* Initialize the first block of the first file: */
1672 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00001673}
1674
1675/* ===========================================================================
1676 * Initialize a new block.
1677 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00001678static void init_block(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00001679{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001680 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00001681
Erik Andersene49d5ec2000-02-08 19:58:47 +00001682 /* Initialize the trees. */
1683 for (n = 0; n < L_CODES; n++)
1684 dyn_ltree[n].Freq = 0;
1685 for (n = 0; n < D_CODES; n++)
1686 dyn_dtree[n].Freq = 0;
1687 for (n = 0; n < BL_CODES; n++)
1688 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001689
Erik Andersene49d5ec2000-02-08 19:58:47 +00001690 dyn_ltree[END_BLOCK].Freq = 1;
1691 opt_len = static_len = 0L;
1692 last_lit = last_dist = last_flags = 0;
1693 flags = 0;
1694 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001695}
1696
1697#define SMALLEST 1
1698/* Index within the heap array of least frequent node in the Huffman tree */
1699
1700
1701/* ===========================================================================
1702 * Remove the smallest element from the heap and recreate the heap with
1703 * one less element. Updates heap and heap_len.
1704 */
1705#define pqremove(tree, top) \
1706{\
1707 top = heap[SMALLEST]; \
1708 heap[SMALLEST] = heap[heap_len--]; \
1709 pqdownheap(tree, SMALLEST); \
1710}
1711
1712/* ===========================================================================
1713 * Compares to subtrees, using the tree depth as tie breaker when
1714 * the subtrees have equal frequency. This minimizes the worst case length.
1715 */
1716#define smaller(tree, n, m) \
1717 (tree[n].Freq < tree[m].Freq || \
1718 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
1719
1720/* ===========================================================================
1721 * Restore the heap property by moving down the tree starting at node k,
1722 * exchanging a node with the smallest of its two sons if necessary, stopping
1723 * when the heap property is re-established (each father smaller than its
1724 * two sons).
1725 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001726static void pqdownheap(ct_data * tree, int k)
Eric Andersencc8ed391999-10-05 16:24:54 +00001727{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001728 int v = heap[k];
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001729 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00001730
Erik Andersene49d5ec2000-02-08 19:58:47 +00001731 while (j <= heap_len) {
1732 /* Set j to the smallest of the two sons: */
1733 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
1734 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001735
Erik Andersene49d5ec2000-02-08 19:58:47 +00001736 /* Exit if v is smaller than both sons */
1737 if (smaller(tree, v, heap[j]))
1738 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001739
Erik Andersene49d5ec2000-02-08 19:58:47 +00001740 /* Exchange v with the smallest son */
1741 heap[k] = heap[j];
1742 k = j;
1743
1744 /* And continue down the tree, setting j to the left son of k */
1745 j <<= 1;
1746 }
1747 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00001748}
1749
1750/* ===========================================================================
1751 * Compute the optimal bit lengths for a tree and update the total bit length
1752 * for the current block.
1753 * IN assertion: the fields freq and dad are set, heap[heap_max] and
1754 * above are the tree nodes sorted by increasing frequency.
1755 * OUT assertions: the field len is set to the optimal bit length, the
1756 * array bl_count contains the frequencies for each bit length.
1757 * The length opt_len is updated; static_len is also updated if stree is
1758 * not null.
1759 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001760static void gen_bitlen(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001761{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001762 ct_data *tree = desc->dyn_tree;
Eric Andersen39eb0402001-08-22 04:15:47 +00001763 const extra_bits_t *extra = desc->extra_bits;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001764 int base = desc->extra_base;
1765 int max_code = desc->max_code;
1766 int max_length = desc->max_length;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001767 ct_data *stree = desc->static_tree;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001768 int h; /* heap index */
1769 int n, m; /* iterate over the tree elements */
1770 int bits; /* bit length */
1771 int xbits; /* extra bits */
1772 ush f; /* frequency */
1773 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00001774
Erik Andersene49d5ec2000-02-08 19:58:47 +00001775 for (bits = 0; bits <= MAX_BITS; bits++)
1776 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001777
Erik Andersene49d5ec2000-02-08 19:58:47 +00001778 /* In a first pass, compute the optimal bit lengths (which may
1779 * overflow in the case of the bit length tree).
1780 */
1781 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00001782
Erik Andersene49d5ec2000-02-08 19:58:47 +00001783 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
1784 n = heap[h];
1785 bits = tree[tree[n].Dad].Len + 1;
1786 if (bits > max_length)
1787 bits = max_length, overflow++;
1788 tree[n].Len = (ush) bits;
1789 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00001790
Erik Andersene49d5ec2000-02-08 19:58:47 +00001791 if (n > max_code)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001792 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00001793
Erik Andersene49d5ec2000-02-08 19:58:47 +00001794 bl_count[bits]++;
1795 xbits = 0;
1796 if (n >= base)
1797 xbits = extra[n - base];
1798 f = tree[n].Freq;
1799 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00001800
Erik Andersene49d5ec2000-02-08 19:58:47 +00001801 if (stree)
1802 static_len += (ulg) f *(stree[n].Len + xbits);
1803 }
1804 if (overflow == 0)
1805 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00001806
Erik Andersene49d5ec2000-02-08 19:58:47 +00001807 Trace((stderr, "\nbit length overflow\n"));
1808 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00001809
Erik Andersene49d5ec2000-02-08 19:58:47 +00001810 /* Find the first bit length which could increase: */
1811 do {
1812 bits = max_length - 1;
1813 while (bl_count[bits] == 0)
1814 bits--;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001815 bl_count[bits]--; /* move one leaf down the tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001816 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
1817 bl_count[max_length]--;
1818 /* The brother of the overflow item also moves one step up,
1819 * but this does not affect bl_count[max_length]
1820 */
1821 overflow -= 2;
1822 } while (overflow > 0);
1823
1824 /* Now recompute all bit lengths, scanning in increasing frequency.
1825 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
1826 * lengths instead of fixing only the wrong ones. This idea is taken
1827 * from 'ar' written by Haruhiko Okumura.)
1828 */
1829 for (bits = max_length; bits != 0; bits--) {
1830 n = bl_count[bits];
1831 while (n != 0) {
1832 m = heap[--h];
1833 if (m > max_code)
1834 continue;
1835 if (tree[m].Len != (unsigned) bits) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001836 Trace((stderr, "code %d bits %d->%d\n", m, tree[m].Len,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001837 bits));
1838 opt_len +=
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001839 ((long) bits - (long) tree[m].Len) * (long) tree[m].Freq;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001840 tree[m].Len = (ush) bits;
1841 }
1842 n--;
1843 }
1844 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001845}
1846
1847/* ===========================================================================
1848 * Generate the codes for a given tree and bit counts (which need not be
1849 * optimal).
1850 * IN assertion: the array bl_count contains the bit length statistics for
1851 * the given tree and the field len is set for all tree elements.
1852 * OUT assertion: the field code is set for all tree elements of non
1853 * zero code length.
1854 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001855static void gen_codes(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001856{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001857 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001858 ush code = 0; /* running code value */
1859 int bits; /* bit index */
1860 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001861
Erik Andersene49d5ec2000-02-08 19:58:47 +00001862 /* The distribution counts are first used to generate the code values
1863 * without bit reversal.
1864 */
1865 for (bits = 1; bits <= MAX_BITS; bits++) {
1866 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
1867 }
1868 /* Check that the bit counts in bl_count are consistent. The last code
1869 * must be all ones.
1870 */
1871 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
1872 "inconsistent bit counts");
1873 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00001874
Erik Andersene49d5ec2000-02-08 19:58:47 +00001875 for (n = 0; n <= max_code; n++) {
1876 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001877
Erik Andersene49d5ec2000-02-08 19:58:47 +00001878 if (len == 0)
1879 continue;
1880 /* Now reverse the bits */
1881 tree[n].Code = bi_reverse(next_code[len]++, len);
1882
1883 Tracec(tree != static_ltree,
1884 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
1885 (isgraph(n) ? n : ' '), len, tree[n].Code,
1886 next_code[len] - 1));
1887 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001888}
1889
1890/* ===========================================================================
1891 * Construct one Huffman tree and assigns the code bit strings and lengths.
1892 * Update the total bit length for the current block.
1893 * IN assertion: the field freq is set for all tree elements.
1894 * OUT assertions: the fields len and code are set to the optimal bit length
1895 * and corresponding code. The length opt_len is updated; static_len is
1896 * also updated if stree is not null. The field max_code is set.
1897 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001898static void build_tree(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001899{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001900 ct_data *tree = desc->dyn_tree;
1901 ct_data *stree = desc->static_tree;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001902 int elems = desc->elems;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001903 int n, m; /* iterate over heap elements */
1904 int max_code = -1; /* largest code with non zero frequency */
1905 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001906
Erik Andersene49d5ec2000-02-08 19:58:47 +00001907 /* Construct the initial heap, with least frequent element in
1908 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
1909 * heap[0] is not used.
1910 */
1911 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00001912
Erik Andersene49d5ec2000-02-08 19:58:47 +00001913 for (n = 0; n < elems; n++) {
1914 if (tree[n].Freq != 0) {
1915 heap[++heap_len] = max_code = n;
1916 depth[n] = 0;
1917 } else {
1918 tree[n].Len = 0;
1919 }
1920 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001921
Erik Andersene49d5ec2000-02-08 19:58:47 +00001922 /* The pkzip format requires that at least one distance code exists,
1923 * and that at least one bit should be sent even if there is only one
1924 * possible code. So to avoid special checks later on we force at least
1925 * two codes of non zero frequency.
1926 */
1927 while (heap_len < 2) {
1928 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001929
Erik Andersene49d5ec2000-02-08 19:58:47 +00001930 tree[new].Freq = 1;
1931 depth[new] = 0;
1932 opt_len--;
1933 if (stree)
1934 static_len -= stree[new].Len;
1935 /* new is 0 or 1 so it does not have extra bits */
1936 }
1937 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00001938
Erik Andersene49d5ec2000-02-08 19:58:47 +00001939 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
1940 * establish sub-heaps of increasing lengths:
1941 */
1942 for (n = heap_len / 2; n >= 1; n--)
1943 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00001944
Erik Andersene49d5ec2000-02-08 19:58:47 +00001945 /* Construct the Huffman tree by repeatedly combining the least two
1946 * frequent nodes.
1947 */
1948 do {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001949 pqremove(tree, n); /* n = node of least frequency */
1950 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00001951
Erik Andersene49d5ec2000-02-08 19:58:47 +00001952 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
1953 heap[--heap_max] = m;
1954
1955 /* Create a new node father of n and m */
1956 tree[node].Freq = tree[n].Freq + tree[m].Freq;
1957 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
1958 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00001959#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00001960 if (tree == bl_tree) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001961 bb_error_msg("\nnode %d(%d), sons %d(%d) %d(%d)",
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001962 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001963 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001964#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00001965 /* and insert the new node in the heap */
1966 heap[SMALLEST] = node++;
1967 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00001968
Erik Andersene49d5ec2000-02-08 19:58:47 +00001969 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00001970
Erik Andersene49d5ec2000-02-08 19:58:47 +00001971 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00001972
Erik Andersene49d5ec2000-02-08 19:58:47 +00001973 /* At this point, the fields freq and dad are set. We can now
1974 * generate the bit lengths.
1975 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001976 gen_bitlen((tree_desc *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00001977
Erik Andersene49d5ec2000-02-08 19:58:47 +00001978 /* The field len is now set, we can generate the bit codes */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001979 gen_codes((ct_data *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001980}
1981
1982/* ===========================================================================
1983 * Scan a literal or distance tree to determine the frequencies of the codes
1984 * in the bit length tree. Updates opt_len to take into account the repeat
1985 * counts. (The contribution of the bit length codes will be added later
1986 * during the construction of bl_tree.)
1987 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001988static void scan_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001989{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001990 int n; /* iterates over all tree elements */
1991 int prevlen = -1; /* last emitted length */
1992 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001993 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001994 int count = 0; /* repeat count of the current code */
1995 int max_count = 7; /* max repeat count */
1996 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00001997
Erik Andersene49d5ec2000-02-08 19:58:47 +00001998 if (nextlen == 0)
1999 max_count = 138, min_count = 3;
2000 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002001
Erik Andersene49d5ec2000-02-08 19:58:47 +00002002 for (n = 0; n <= max_code; n++) {
2003 curlen = nextlen;
2004 nextlen = tree[n + 1].Len;
2005 if (++count < max_count && curlen == nextlen) {
2006 continue;
2007 } else if (count < min_count) {
2008 bl_tree[curlen].Freq += count;
2009 } else if (curlen != 0) {
2010 if (curlen != prevlen)
2011 bl_tree[curlen].Freq++;
2012 bl_tree[REP_3_6].Freq++;
2013 } else if (count <= 10) {
2014 bl_tree[REPZ_3_10].Freq++;
2015 } else {
2016 bl_tree[REPZ_11_138].Freq++;
2017 }
2018 count = 0;
2019 prevlen = curlen;
2020 if (nextlen == 0) {
2021 max_count = 138, min_count = 3;
2022 } else if (curlen == nextlen) {
2023 max_count = 6, min_count = 3;
2024 } else {
2025 max_count = 7, min_count = 4;
2026 }
2027 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002028}
2029
2030/* ===========================================================================
2031 * Send a literal or distance tree in compressed form, using the codes in
2032 * bl_tree.
2033 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002034static void send_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00002035{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002036 int n; /* iterates over all tree elements */
2037 int prevlen = -1; /* last emitted length */
2038 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002039 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002040 int count = 0; /* repeat count of the current code */
2041 int max_count = 7; /* max repeat count */
2042 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002043
Erik Andersene49d5ec2000-02-08 19:58:47 +00002044/* tree[max_code+1].Len = -1; *//* guard already set */
2045 if (nextlen == 0)
2046 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002047
Erik Andersene49d5ec2000-02-08 19:58:47 +00002048 for (n = 0; n <= max_code; n++) {
2049 curlen = nextlen;
2050 nextlen = tree[n + 1].Len;
2051 if (++count < max_count && curlen == nextlen) {
2052 continue;
2053 } else if (count < min_count) {
2054 do {
2055 send_code(curlen, bl_tree);
2056 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002057
Erik Andersene49d5ec2000-02-08 19:58:47 +00002058 } else if (curlen != 0) {
2059 if (curlen != prevlen) {
2060 send_code(curlen, bl_tree);
2061 count--;
2062 }
2063 Assert(count >= 3 && count <= 6, " 3_6?");
2064 send_code(REP_3_6, bl_tree);
2065 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002066
Erik Andersene49d5ec2000-02-08 19:58:47 +00002067 } else if (count <= 10) {
2068 send_code(REPZ_3_10, bl_tree);
2069 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002070
Erik Andersene49d5ec2000-02-08 19:58:47 +00002071 } else {
2072 send_code(REPZ_11_138, bl_tree);
2073 send_bits(count - 11, 7);
2074 }
2075 count = 0;
2076 prevlen = curlen;
2077 if (nextlen == 0) {
2078 max_count = 138, min_count = 3;
2079 } else if (curlen == nextlen) {
2080 max_count = 6, min_count = 3;
2081 } else {
2082 max_count = 7, min_count = 4;
2083 }
2084 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002085}
2086
2087/* ===========================================================================
2088 * Construct the Huffman tree for the bit lengths and return the index in
2089 * bl_order of the last bit length code to send.
2090 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002091static int build_bl_tree(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00002092{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002093 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002094
Erik Andersene49d5ec2000-02-08 19:58:47 +00002095 /* Determine the bit length frequencies for literal and distance trees */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002096 scan_tree((ct_data *) dyn_ltree, l_desc.max_code);
2097 scan_tree((ct_data *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002098
Erik Andersene49d5ec2000-02-08 19:58:47 +00002099 /* Build the bit length tree: */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002100 build_tree((tree_desc *) (&bl_desc));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002101 /* opt_len now includes the length of the tree representations, except
2102 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2103 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002104
Erik Andersene49d5ec2000-02-08 19:58:47 +00002105 /* Determine the number of bit length codes to send. The pkzip format
2106 * requires that at least 4 bit length codes be sent. (appnote.txt says
2107 * 3 but the actual value used is 4.)
2108 */
2109 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2110 if (bl_tree[bl_order[max_blindex]].Len != 0)
2111 break;
2112 }
2113 /* Update opt_len to include the bit length tree and counts */
2114 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002115 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002116
Erik Andersene49d5ec2000-02-08 19:58:47 +00002117 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002118}
2119
2120/* ===========================================================================
2121 * Send the header for a block using dynamic Huffman trees: the counts, the
2122 * lengths of the bit length codes, the literal tree and the distance tree.
2123 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2124 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002125static void send_all_trees(int lcodes, int dcodes, int blcodes)
Eric Andersencc8ed391999-10-05 16:24:54 +00002126{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002127 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002128
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002129 Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
Erik Andersene49d5ec2000-02-08 19:58:47 +00002130 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2131 && blcodes <= BL_CODES, "too many codes");
2132 Tracev((stderr, "\nbl counts: "));
2133 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2134 send_bits(dcodes - 1, 5);
2135 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2136 for (rank = 0; rank < blcodes; rank++) {
2137 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2138 send_bits(bl_tree[bl_order[rank]].Len, 3);
2139 }
2140 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002141
Eric Andersen3073dfb2001-07-02 17:57:32 +00002142 send_tree((ct_data *) dyn_ltree, lcodes - 1); /* send the literal tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002143 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002144
Eric Andersen3073dfb2001-07-02 17:57:32 +00002145 send_tree((ct_data *) dyn_dtree, dcodes - 1); /* send the distance tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002146 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002147}
2148
2149/* ===========================================================================
2150 * Determine the best encoding for the current block: dynamic trees, static
2151 * trees or store, and output the encoded block to the zip file. This function
2152 * returns the total compressed length for the file so far.
2153 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002154static ulg flush_block(char *buf, ulg stored_len, int eof)
Eric Andersencc8ed391999-10-05 16:24:54 +00002155{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002156 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002157 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002158
Erik Andersene49d5ec2000-02-08 19:58:47 +00002159 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002160
Erik Andersene49d5ec2000-02-08 19:58:47 +00002161 /* Check if the file is ascii or binary */
2162 if (*file_type == (ush) UNKNOWN)
2163 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002164
Erik Andersene49d5ec2000-02-08 19:58:47 +00002165 /* Construct the literal and distance trees */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002166 build_tree((tree_desc *) (&l_desc));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002167 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002168
Eric Andersen3073dfb2001-07-02 17:57:32 +00002169 build_tree((tree_desc *) (&d_desc));
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002170 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", opt_len, static_len));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002171 /* At this point, opt_len and static_len are the total bit lengths of
2172 * the compressed block data, excluding the tree representations.
2173 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002174
Erik Andersene49d5ec2000-02-08 19:58:47 +00002175 /* Build the bit length tree for the above two trees, and get the index
2176 * in bl_order of the last bit length code to send.
2177 */
2178 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002179
Erik Andersene49d5ec2000-02-08 19:58:47 +00002180 /* Determine the best encoding. Compute first the block length in bytes */
2181 opt_lenb = (opt_len + 3 + 7) >> 3;
2182 static_lenb = (static_len + 3 + 7) >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002183
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002184 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00002185 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2186 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2187 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002188
Erik Andersene49d5ec2000-02-08 19:58:47 +00002189 if (static_lenb <= opt_lenb)
2190 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002191
Erik Andersene49d5ec2000-02-08 19:58:47 +00002192 /* If compression failed and this is the first and last block,
2193 * and if the zip file can be seeked (to rewrite the local header),
2194 * the whole file is transformed into a stored file:
2195 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002196 if (stored_len <= opt_lenb && eof && compressed_len == 0L && seekable()) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002197 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2198 if (buf == (char *) 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002199 bb_error_msg("block vanished");
Eric Andersencc8ed391999-10-05 16:24:54 +00002200
Erik Andersene49d5ec2000-02-08 19:58:47 +00002201 copy_block(buf, (unsigned) stored_len, 0); /* without header */
2202 compressed_len = stored_len << 3;
2203 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00002204
Erik Andersene49d5ec2000-02-08 19:58:47 +00002205 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
2206 /* 4: two words for the lengths */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002207 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2208 * Otherwise we can't have processed more than WSIZE input bytes since
2209 * the last block flush, because compression would have been
2210 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2211 * transform a block into a stored block.
2212 */
2213 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
2214 compressed_len = (compressed_len + 3 + 7) & ~7L;
2215 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002216
Erik Andersene49d5ec2000-02-08 19:58:47 +00002217 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002218
Erik Andersene49d5ec2000-02-08 19:58:47 +00002219 } else if (static_lenb == opt_lenb) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002220 send_bits((STATIC_TREES << 1) + eof, 3);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002221 compress_block((ct_data *) static_ltree, (ct_data *) static_dtree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002222 compressed_len += 3 + static_len;
2223 } else {
2224 send_bits((DYN_TREES << 1) + eof, 3);
2225 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
2226 max_blindex + 1);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002227 compress_block((ct_data *) dyn_ltree, (ct_data *) dyn_dtree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002228 compressed_len += 3 + opt_len;
2229 }
2230 Assert(compressed_len == bits_sent, "bad compressed size");
2231 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002232
Erik Andersene49d5ec2000-02-08 19:58:47 +00002233 if (eof) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002234 bi_windup();
2235 compressed_len += 7; /* align on byte boundary */
2236 }
2237 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
2238 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00002239
Erik Andersene49d5ec2000-02-08 19:58:47 +00002240 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002241}
2242
2243/* ===========================================================================
2244 * Save the match info and tally the frequency counts. Return true if
2245 * the current block must be flushed.
2246 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002247static int ct_tally(int dist, int lc)
Eric Andersencc8ed391999-10-05 16:24:54 +00002248{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002249 l_buf[last_lit++] = (uch) lc;
2250 if (dist == 0) {
2251 /* lc is the unmatched char */
2252 dyn_ltree[lc].Freq++;
2253 } else {
2254 /* Here, lc is the match length - MIN_MATCH */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002255 dist--; /* dist = match distance - 1 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002256 Assert((ush) dist < (ush) MAX_DIST &&
2257 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
2258 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00002259
Erik Andersene49d5ec2000-02-08 19:58:47 +00002260 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
2261 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002262
Erik Andersene49d5ec2000-02-08 19:58:47 +00002263 d_buf[last_dist++] = (ush) dist;
2264 flags |= flag_bit;
2265 }
2266 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002267
Erik Andersene49d5ec2000-02-08 19:58:47 +00002268 /* Output the flags if they fill a byte: */
2269 if ((last_lit & 7) == 0) {
2270 flag_buf[last_flags++] = flags;
2271 flags = 0, flag_bit = 1;
2272 }
2273 /* Try to guess if it is profitable to stop the current block here */
2274 if ((last_lit & 0xfff) == 0) {
2275 /* Compute an upper bound for the compressed length */
2276 ulg out_length = (ulg) last_lit * 8L;
2277 ulg in_length = (ulg) strstart - block_start;
2278 int dcode;
2279
2280 for (dcode = 0; dcode < D_CODES; dcode++) {
2281 out_length +=
2282 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
2283 }
2284 out_length >>= 3;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002285 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00002286 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2287 last_lit, last_dist, in_length, out_length,
2288 100L - out_length * 100L / in_length));
2289 if (last_dist < last_lit / 2 && out_length < in_length / 2)
2290 return 1;
2291 }
2292 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
2293 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
2294 * on 16 bit machines and because stored blocks are restricted to
2295 * 64K-1 bytes.
2296 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002297}
2298
2299/* ===========================================================================
2300 * Send the block data compressed using the given Huffman trees
2301 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002302static void compress_block(ct_data * ltree, ct_data * dtree)
Eric Andersencc8ed391999-10-05 16:24:54 +00002303{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002304 unsigned dist; /* distance of matched string */
2305 int lc; /* match length or unmatched char (if dist == 0) */
2306 unsigned lx = 0; /* running index in l_buf */
2307 unsigned dx = 0; /* running index in d_buf */
2308 unsigned fx = 0; /* running index in flag_buf */
2309 uch flag = 0; /* current flags */
2310 unsigned code; /* the code to send */
2311 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00002312
Erik Andersene49d5ec2000-02-08 19:58:47 +00002313 if (last_lit != 0)
2314 do {
2315 if ((lx & 7) == 0)
2316 flag = flag_buf[fx++];
2317 lc = l_buf[lx++];
2318 if ((flag & 1) == 0) {
2319 send_code(lc, ltree); /* send a literal byte */
2320 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
2321 } else {
2322 /* Here, lc is the match length - MIN_MATCH */
2323 code = length_code[lc];
2324 send_code(code + LITERALS + 1, ltree); /* send the length code */
2325 extra = extra_lbits[code];
2326 if (extra != 0) {
2327 lc -= base_length[code];
2328 send_bits(lc, extra); /* send the extra length bits */
2329 }
2330 dist = d_buf[dx++];
2331 /* Here, dist is the match distance - 1 */
2332 code = d_code(dist);
2333 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00002334
Erik Andersene49d5ec2000-02-08 19:58:47 +00002335 send_code(code, dtree); /* send the distance code */
2336 extra = extra_dbits[code];
2337 if (extra != 0) {
2338 dist -= base_dist[code];
2339 send_bits(dist, extra); /* send the extra distance bits */
2340 }
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002341 } /* literal or match pair ? */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002342 flag >>= 1;
2343 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00002344
Erik Andersene49d5ec2000-02-08 19:58:47 +00002345 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00002346}
2347
2348/* ===========================================================================
2349 * Set the file type to ASCII or BINARY, using a crude approximation:
2350 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
2351 * IN assertion: the fields freq of dyn_ltree are set and the total of all
2352 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
2353 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002354static void set_file_type(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00002355{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002356 int n = 0;
2357 unsigned ascii_freq = 0;
2358 unsigned bin_freq = 0;
2359
2360 while (n < 7)
2361 bin_freq += dyn_ltree[n++].Freq;
2362 while (n < 128)
2363 ascii_freq += dyn_ltree[n++].Freq;
2364 while (n < LITERALS)
2365 bin_freq += dyn_ltree[n++].Freq;
2366 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
2367 if (*file_type == BINARY && translate_eol) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002368 bb_error_msg("-l used on binary file");
Erik Andersene49d5ec2000-02-08 19:58:47 +00002369 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002370}
Erik Andersene49d5ec2000-02-08 19:58:47 +00002371
Eric Andersencc8ed391999-10-05 16:24:54 +00002372/* zip.c -- compress files to the gzip or pkzip format
2373 * Copyright (C) 1992-1993 Jean-loup Gailly
2374 * This is free software; you can redistribute it and/or modify it under the
2375 * terms of the GNU General Public License, see the file COPYING.
2376 */
2377
Eric Andersencc8ed391999-10-05 16:24:54 +00002378
Rob Landleyc57ec372006-04-10 17:07:15 +00002379static uint32_t crc; /* crc on uncompressed file data */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002380static long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002381
Eric Andersen39eb0402001-08-22 04:15:47 +00002382static void put_long(ulg n)
2383{
Aaron Lehmannb9df4702001-12-06 03:22:43 +00002384 put_short((n) & 0xffff);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002385 put_short(((ulg) (n)) >> 16);
Eric Andersen39eb0402001-08-22 04:15:47 +00002386}
2387
2388/* put_header_byte is used for the compressed output
2389 * - for the initial 4 bytes that can't overflow the buffer.
2390 */
2391#define put_header_byte(c) {outbuf[outcnt++]=(uch)(c);}
2392
Eric Andersencc8ed391999-10-05 16:24:54 +00002393/* ===========================================================================
2394 * Deflate in to out.
2395 * IN assertions: the input and output buffers are cleared.
2396 * The variables time_stamp and save_orig_name are initialized.
2397 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002398static int zip(int in, int out)
Eric Andersencc8ed391999-10-05 16:24:54 +00002399{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002400 uch my_flags = 0; /* general purpose bit flags */
2401 ush attr = 0; /* ascii/binary flag */
2402 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00002403
Erik Andersene49d5ec2000-02-08 19:58:47 +00002404 ifd = in;
2405 ofd = out;
2406 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002407
Erik Andersene49d5ec2000-02-08 19:58:47 +00002408 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00002409
Erik Andersene49d5ec2000-02-08 19:58:47 +00002410 method = DEFLATED;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002411 put_header_byte(GZIP_MAGIC[0]); /* magic header */
Eric Andersen39eb0402001-08-22 04:15:47 +00002412 put_header_byte(GZIP_MAGIC[1]);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002413 put_header_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002414
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002415 put_header_byte(my_flags); /* general flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002416 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00002417
Erik Andersene49d5ec2000-02-08 19:58:47 +00002418 /* Write deflated file to zip file */
2419 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002420
Erik Andersene49d5ec2000-02-08 19:58:47 +00002421 bi_init(out);
2422 ct_init(&attr, &method);
2423 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00002424
Erik Andersene49d5ec2000-02-08 19:58:47 +00002425 put_byte((uch) deflate_flags); /* extra flags */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002426 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00002427
Erik Andersene49d5ec2000-02-08 19:58:47 +00002428 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00002429
Erik Andersene49d5ec2000-02-08 19:58:47 +00002430 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00002431
Erik Andersene49d5ec2000-02-08 19:58:47 +00002432 /* Write the crc and uncompressed size */
2433 put_long(crc);
2434 put_long(isize);
2435 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00002436
Erik Andersene49d5ec2000-02-08 19:58:47 +00002437 flush_outbuf();
2438 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00002439}
2440
2441
2442/* ===========================================================================
2443 * Read a new buffer from the current input file, perform end-of-line
2444 * translation, and update the crc and input file size.
2445 * IN assertion: size >= 2 (for end-of-line translation)
2446 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002447static int file_read(char *buf, unsigned size)
Eric Andersencc8ed391999-10-05 16:24:54 +00002448{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002449 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002450
Erik Andersene49d5ec2000-02-08 19:58:47 +00002451 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00002452
Erik Andersene49d5ec2000-02-08 19:58:47 +00002453 len = read(ifd, buf, size);
2454 if (len == (unsigned) (-1) || len == 0)
2455 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002456
Erik Andersene49d5ec2000-02-08 19:58:47 +00002457 crc = updcrc((uch *) buf, len);
2458 isize += (ulg) len;
2459 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002460}
Matt Kraai7918e1f2000-11-08 06:52:57 +00002461
2462/* ===========================================================================
2463 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
2464 * (used for the compressed data only)
2465 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002466static void flush_outbuf(void)
Matt Kraai7918e1f2000-11-08 06:52:57 +00002467{
2468 if (outcnt == 0)
2469 return;
2470
2471 write_buf(ofd, (char *) outbuf, outcnt);
Matt Kraai7918e1f2000-11-08 06:52:57 +00002472 outcnt = 0;
2473}