blob: fa6e85b666761bbbb18345a684390107e2486e07 [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
Erik Andersen61677fe2000-04-13 01:18:56 +000019/* These defines are very important for BusyBox. Without these,
Eric Andersenc7bda1c2004-03-15 08:29:22 +000020 * huge chunks of ram are pre-allocated making the BusyBox bss
Erik Andersen61677fe2000-04-13 01:18:56 +000021 * size Freaking Huge(tm), which is a bad thing.*/
22#define SMALL_MEM
23#define DYN_ALLOC
24
Eric Andersencbe31da2001-02-20 06:14:08 +000025#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <stdio.h>
Erik Andersen61677fe2000-04-13 01:18:56 +000027#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000028#include <unistd.h>
Glenn L McGrathf58efb52001-03-28 05:35:16 +000029#include <errno.h>
Eric Andersen3073dfb2001-07-02 17:57:32 +000030#include <sys/types.h>
31#include <signal.h>
32#include <utime.h>
33#include <ctype.h>
34#include <sys/types.h>
35#include <unistd.h>
36#include <dirent.h>
37#include <fcntl.h>
38#include <time.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000039#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000040
Erik Andersene49d5ec2000-02-08 19:58:47 +000041typedef unsigned char uch;
Eric Andersencc8ed391999-10-05 16:24:54 +000042typedef unsigned short ush;
Erik Andersene49d5ec2000-02-08 19:58:47 +000043typedef unsigned long ulg;
Eric Andersencc8ed391999-10-05 16:24:54 +000044
45/* Return codes from gzip */
46#define OK 0
47#define ERROR 1
48#define WARNING 2
49
50/* Compression methods (see algorithm.doc) */
Eric Andersen3073dfb2001-07-02 17:57:32 +000051/* Only STORED and DEFLATED are supported by this BusyBox module */
Eric Andersencc8ed391999-10-05 16:24:54 +000052#define STORED 0
Eric Andersencc8ed391999-10-05 16:24:54 +000053/* methods 4 to 7 reserved */
54#define DEFLATED 8
Eric Andersencc8ed391999-10-05 16:24:54 +000055
56/* To save memory for 16 bit systems, some arrays are overlaid between
57 * the various modules:
58 * deflate: prev+head window d_buf l_buf outbuf
59 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
Eric Andersencc8ed391999-10-05 16:24:54 +000060 * For compression, input is done in window[]. For decompression, output
61 * is done in window except for unlzw.
62 */
63
64#ifndef INBUFSIZ
65# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000066# define INBUFSIZ 0x2000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000067# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000068# define INBUFSIZ 0x8000 /* input buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000069# endif
70#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000071#define INBUF_EXTRA 64 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000072
73#ifndef OUTBUFSIZ
74# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000075# define OUTBUFSIZ 8192 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000076# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000077# define OUTBUFSIZ 16384 /* output buffer size */
Eric Andersencc8ed391999-10-05 16:24:54 +000078# endif
79#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +000080#define OUTBUF_EXTRA 2048 /* required by unlzw() */
Eric Andersencc8ed391999-10-05 16:24:54 +000081
82#ifndef DIST_BUFSIZE
83# ifdef SMALL_MEM
Erik Andersene49d5ec2000-02-08 19:58:47 +000084# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +000085# else
Erik Andersene49d5ec2000-02-08 19:58:47 +000086# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
Eric Andersencc8ed391999-10-05 16:24:54 +000087# endif
88#endif
89
90#ifdef DYN_ALLOC
Eric Andersen3073dfb2001-07-02 17:57:32 +000091# define DECLARE(type, array, size) static type * array
Eric Andersencc8ed391999-10-05 16:24:54 +000092# define ALLOC(type, array, size) { \
Eric Andersen39eb0402001-08-22 04:15:47 +000093 array = (type*)xcalloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
Eric Andersencc8ed391999-10-05 16:24:54 +000094 }
Aaron Lehmanna170e1c2002-11-28 11:27:31 +000095# define FREE(array) {free(array), array=NULL;}
Eric Andersencc8ed391999-10-05 16:24:54 +000096#else
Eric Andersen3073dfb2001-07-02 17:57:32 +000097# define DECLARE(type, array, size) static type array[size]
Eric Andersencc8ed391999-10-05 16:24:54 +000098# define ALLOC(type, array, size)
99# define FREE(array)
100#endif
101
Eric Andersencc8ed391999-10-05 16:24:54 +0000102#define tab_suffix window
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000103#define tab_prefix prev /* hash link (see deflate.c) */
104#define head (prev+WSIZE) /* hash head (see deflate.c) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000105
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000106static long bytes_in; /* number of input bytes */
Eric Andersencc8ed391999-10-05 16:24:54 +0000107
108#define isize bytes_in
109/* for compatibility with old zip sources (to be cleaned) */
110
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000111typedef int file_t; /* Do not use stdio */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000113#define NO_FILE (-1) /* in memory compression */
Eric Andersencc8ed391999-10-05 16:24:54 +0000114
115
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116#define PACK_MAGIC "\037\036" /* Magic header for packed files */
117#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
118#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
119#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files */
120#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000121
122/* gzip flag byte */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000123#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
124#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
125#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
126#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
127#define COMMENT 0x10 /* bit 4 set: file comment present */
128#define RESERVED 0xC0 /* bit 6,7: reserved */
Eric Andersencc8ed391999-10-05 16:24:54 +0000129
130/* internal file attribute */
131#define UNKNOWN 0xffff
132#define BINARY 0
133#define ASCII 1
134
135#ifndef WSIZE
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000136# define WSIZE 0x8000 /* window size--must be a power of two, and */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137#endif /* at least 32K for zip's deflate method */
Eric Andersencc8ed391999-10-05 16:24:54 +0000138
139#define MIN_MATCH 3
140#define MAX_MATCH 258
141/* The minimum and maximum match lengths */
142
143#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
144/* Minimum amount of lookahead, except at the end of the input file.
145 * See deflate.c for comments about the MIN_MATCH+1.
146 */
147
148#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
149/* In order to simplify the code, particularly on 16 bit machines, match
150 * distances are limited to MAX_DIST instead of WSIZE.
151 */
152
Eric Andersen3073dfb2001-07-02 17:57:32 +0000153/* put_byte is used for the compressed output */
Eric Andersencc8ed391999-10-05 16:24:54 +0000154#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
155 flush_outbuf();}
Eric Andersencc8ed391999-10-05 16:24:54 +0000156
Eric Andersencc8ed391999-10-05 16:24:54 +0000157
158/* Output a 32 bit value to the bit stream, lsb first */
Eric Andersen39eb0402001-08-22 04:15:47 +0000159#if 0
Eric Andersencc8ed391999-10-05 16:24:54 +0000160#define put_long(n) { \
161 put_short((n) & 0xffff); \
162 put_short(((ulg)(n)) >> 16); \
163}
Eric Andersen39eb0402001-08-22 04:15:47 +0000164#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000165
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000166#define seekable() 0 /* force sequential output */
167#define translate_eol 0 /* no option -a yet */
Eric Andersencc8ed391999-10-05 16:24:54 +0000168
Eric Andersencc8ed391999-10-05 16:24:54 +0000169/* Diagnostic functions */
170#ifdef DEBUG
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171# define Assert(cond,msg) {if(!(cond)) bb_error_msg(msg);}
Eric Andersencc8ed391999-10-05 16:24:54 +0000172# define Trace(x) fprintf x
173# define Tracev(x) {if (verbose) fprintf x ;}
174# define Tracevv(x) {if (verbose>1) fprintf x ;}
175# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
176# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
177#else
178# define Assert(cond,msg)
179# define Trace(x)
180# define Tracev(x)
181# define Tracevv(x)
182# define Tracec(c,x)
183# define Tracecv(c,x)
184#endif
185
186#define WARN(msg) {if (!quiet) fprintf msg ; \
187 if (exit_code == OK) exit_code = WARNING;}
188
Eric Andersen3073dfb2001-07-02 17:57:32 +0000189#ifndef MAX_PATH_LEN
190# define MAX_PATH_LEN 1024 /* max pathname length */
191#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000192
Eric Andersencc8ed391999-10-05 16:24:54 +0000193
Eric Andersen3073dfb2001-07-02 17:57:32 +0000194 /* from zip.c: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000195static int zip(int in, int out);
196static int file_read(char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000197
Eric Andersen3073dfb2001-07-02 17:57:32 +0000198 /* from deflate.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000199static void lm_init(ush * flags);
200static ulg deflate(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000201
Eric Andersen3073dfb2001-07-02 17:57:32 +0000202 /* from trees.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000203static void ct_init(ush * attr, int *methodp);
204static int ct_tally(int dist, int lc);
205static ulg flush_block(char *buf, ulg stored_len, int eof);
Eric Andersencc8ed391999-10-05 16:24:54 +0000206
Eric Andersen3073dfb2001-07-02 17:57:32 +0000207 /* from bits.c */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000208static void bi_init(file_t zipfile);
209static void send_bits(int value, int length);
210static unsigned bi_reverse(unsigned value, int length);
211static void bi_windup(void);
212static void copy_block(char *buf, unsigned len, int header);
Eric Andersen3073dfb2001-07-02 17:57:32 +0000213static int (*read_buf) (char *buf, unsigned size);
Eric Andersencc8ed391999-10-05 16:24:54 +0000214
Eric Andersen3073dfb2001-07-02 17:57:32 +0000215 /* from util.c: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000216static void flush_outbuf(void);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217
Eric Andersencc8ed391999-10-05 16:24:54 +0000218/* lzw.h -- define the lzw functions.
219 * Copyright (C) 1992-1993 Jean-loup Gailly.
220 * This is free software; you can redistribute it and/or modify it under the
221 * terms of the GNU General Public License, see the file COPYING.
222 */
223
Eric Andersencc8ed391999-10-05 16:24:54 +0000224#ifndef BITS
225# define BITS 16
226#endif
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000227#define INIT_BITS 9 /* Initial number of bits per code */
Eric Andersencc8ed391999-10-05 16:24:54 +0000228
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000229#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
Eric Andersencc8ed391999-10-05 16:24:54 +0000230/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
231 * It's a pity that old uncompress does not check bit 0x20. That makes
232 * extension of the format actually undesirable because old compress
233 * would just crash on the new format instead of giving a meaningful
234 * error message. It does check the number of bits, but it's more
235 * helpful to say "unsupported format, get a new version" than
236 * "can only handle 16 bits".
237 */
238
Eric Andersencc8ed391999-10-05 16:24:54 +0000239/* tailor.h -- target dependent definitions
240 * Copyright (C) 1992-1993 Jean-loup Gailly.
241 * This is free software; you can redistribute it and/or modify it under the
242 * terms of the GNU General Public License, see the file COPYING.
243 */
244
245/* The target dependent definitions should be defined here only.
246 * The target dependent functions should be defined in tailor.c.
247 */
248
Eric Andersencc8ed391999-10-05 16:24:54 +0000249
Eric Andersencc8ed391999-10-05 16:24:54 +0000250 /* Common defaults */
251
252#ifndef OS_CODE
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000253# define OS_CODE 0x03 /* assume Unix */
Eric Andersencc8ed391999-10-05 16:24:54 +0000254#endif
255
256#ifndef PATH_SEP
257# define PATH_SEP '/'
258#endif
259
Eric Andersencc8ed391999-10-05 16:24:54 +0000260#ifndef OPTIONS_VAR
261# define OPTIONS_VAR "GZIP"
262#endif
263
264#ifndef Z_SUFFIX
265# define Z_SUFFIX ".gz"
266#endif
267
268#ifdef MAX_EXT_CHARS
269# define MAX_SUFFIX MAX_EXT_CHARS
270#else
271# define MAX_SUFFIX 30
272#endif
273
Eric Andersen3073dfb2001-07-02 17:57:32 +0000274 /* global buffers */
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Eric Andersen3073dfb2001-07-02 17:57:32 +0000276DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
277DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
278DECLARE(ush, d_buf, DIST_BUFSIZE);
279DECLARE(uch, window, 2L * WSIZE);
280DECLARE(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +0000281
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000282static int foreground; /* set if program run in foreground */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000283static int method = DEFLATED; /* compression method */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000284static int exit_code = OK; /* program exit code */
285static int part_nb; /* number of parts in .gz file */
286static long time_stamp; /* original time stamp (modification time) */
287static long ifile_size; /* input file size, -1 for devices (debug only) */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000288static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000289static int z_len; /* strlen(z_suffix) */
Eric Andersencc8ed391999-10-05 16:24:54 +0000290
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000291static int ifd; /* input file descriptor */
292static int ofd; /* output file descriptor */
293static unsigned insize; /* valid bytes in inbuf */
294static unsigned outcnt; /* bytes in output buffer */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000295
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000296
297/* Output a 16 bit value, lsb first */
298static void put_short(ush w)
299{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000300 if (outcnt < OUTBUFSIZ - 2) {
301 outbuf[outcnt++] = (uch) ((w) & 0xff);
302 outbuf[outcnt++] = (uch) ((ush) (w) >> 8);
303 } else {
304 put_byte((uch) ((w) & 0xff));
305 put_byte((uch) ((ush) (w) >> 8));
306 }
Aaron Lehmannb9df4702001-12-06 03:22:43 +0000307}
308
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000309/* ========================================================================
310 * Signal and error handler.
311 */
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +0000312static void abort_gzip(int ATTRIBUTE_UNUSED ignored)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000313{
314 exit(ERROR);
315}
316
317/* ===========================================================================
318 * Clear input and output buffers
319 */
320static void clear_bufs(void)
321{
322 outcnt = 0;
Eric Andersen3073dfb2001-07-02 17:57:32 +0000323 insize = 0;
324 bytes_in = 0L;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000325}
326
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000327/* ===========================================================================
328 * Does the same as write(), but also handles partial pipe writes and checks
329 * for error return.
330 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000331static void write_buf(int fd, void *buf, unsigned cnt)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000332{
333 unsigned n;
334
335 while ((n = write(fd, buf, cnt)) != cnt) {
Rob Landleyec4f3d92004-12-17 05:23:36 +0000336 if (n == (unsigned) (-1)) bb_error_msg_and_die("can't write");
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000337 cnt -= n;
338 buf = (void *) ((char *) buf + n);
339 }
340}
341
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000342/* ===========================================================================
343 * Run a set of bytes through the crc shift register. If s is a NULL
344 * pointer, then initialize the crc shift register contents instead.
345 * Return the current crc in either case.
346 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000347static ulg updcrc(uch * s, unsigned n)
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000348{
349 static ulg crc = (ulg) 0xffffffffL; /* shift register contents */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000350 register ulg c; /* temporary variable */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000351 static unsigned long crc_32_tab[256];
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000352
Eric Andersen8211db52003-11-14 02:44:28 +0000353 if (crc_32_tab[1] == 0x00000000L) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000354 unsigned long csr; /* crc shift register */
Eric Andersen39eb0402001-08-22 04:15:47 +0000355 const unsigned long e = 0xedb88320L; /* polynomial exclusive-or pattern */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000356 int i; /* counter for all possible eight bit values */
357 int k; /* byte being shifted into crc apparatus */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000358
Eric Andersen39eb0402001-08-22 04:15:47 +0000359 /* Compute table of CRC's. */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000360 for (i = 1; i < 256; i++) {
361 csr = i;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000362 /* The idea to initialize the register with the byte instead of
363 * zero was stolen from Haruhiko Okumura's ar002
364 */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000365 for (k = 8; k; k--)
366 csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000367 crc_32_tab[i] = csr;
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000368 }
369 }
370
371 if (s == NULL) {
372 c = 0xffffffffL;
373 } else {
374 c = crc;
375 if (n)
376 do {
377 c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);
378 } while (--n);
379 }
380 crc = c;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000381 return c ^ 0xffffffffL; /* (instead of ~c for 64-bit machines) */
Glenn L McGrathf58efb52001-03-28 05:35:16 +0000382}
383
Eric Andersencc8ed391999-10-05 16:24:54 +0000384/* bits.c -- output variable-length bit strings
385 * Copyright (C) 1992-1993 Jean-loup Gailly
386 * This is free software; you can redistribute it and/or modify it under the
387 * terms of the GNU General Public License, see the file COPYING.
388 */
389
390
391/*
392 * PURPOSE
393 *
394 * Output variable-length bit strings. Compression can be done
395 * to a file or to memory. (The latter is not supported in this version.)
396 *
397 * DISCUSSION
398 *
399 * The PKZIP "deflate" file format interprets compressed file data
400 * as a sequence of bits. Multi-bit strings in the file may cross
401 * byte boundaries without restriction.
402 *
403 * The first bit of each byte is the low-order bit.
404 *
405 * The routines in this file allow a variable-length bit value to
406 * be output right-to-left (useful for literal values). For
407 * left-to-right output (useful for code strings from the tree routines),
408 * the bits must have been reversed first with bi_reverse().
409 *
410 * For in-memory compression, the compressed bit stream goes directly
411 * into the requested output buffer. The input data is read in blocks
412 * by the mem_read() function. The buffer is limited to 64K on 16 bit
413 * machines.
414 *
415 * INTERFACE
416 *
417 * void bi_init (FILE *zipfile)
418 * Initialize the bit string routines.
419 *
420 * void send_bits (int value, int length)
421 * Write out a bit string, taking the source bits right to
422 * left.
423 *
424 * int bi_reverse (int value, int length)
425 * Reverse the bits of a bit string, taking the source bits left to
426 * right and emitting them right to left.
427 *
428 * void bi_windup (void)
429 * Write out any remaining bits in an incomplete byte.
430 *
431 * void copy_block(char *buf, unsigned len, int header)
432 * Copy a stored block to the zip file, storing first the length and
433 * its one's complement if requested.
434 *
435 */
436
Eric Andersencc8ed391999-10-05 16:24:54 +0000437/* ===========================================================================
438 * Local data used by the "bit string" routines.
439 */
440
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000441static file_t zfile; /* output gzip file */
Eric Andersencc8ed391999-10-05 16:24:54 +0000442
Eric Andersen3073dfb2001-07-02 17:57:32 +0000443static unsigned short bi_buf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000444
Eric Andersencc8ed391999-10-05 16:24:54 +0000445/* Output buffer. bits are inserted starting at the bottom (least significant
446 * bits).
447 */
448
449#define Buf_size (8 * 2*sizeof(char))
450/* Number of bits used within bi_buf. (bi_buf might be implemented on
451 * more than 16 bits on some systems.)
452 */
453
Eric Andersen3073dfb2001-07-02 17:57:32 +0000454static int bi_valid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000455
Eric Andersencc8ed391999-10-05 16:24:54 +0000456/* Current input function. Set to mem_read for in-memory compression */
457
458#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000459ulg bits_sent; /* bit length of the compressed data */
Eric Andersencc8ed391999-10-05 16:24:54 +0000460#endif
461
462/* ===========================================================================
463 * Initialize the bit string routines.
464 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000465static void bi_init(file_t zipfile)
Eric Andersencc8ed391999-10-05 16:24:54 +0000466{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000467 zfile = zipfile;
468 bi_buf = 0;
469 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000470#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000471 bits_sent = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000472#endif
473
Erik Andersene49d5ec2000-02-08 19:58:47 +0000474 /* Set the defaults for file compression. They are set by memcompress
475 * for in-memory compression.
476 */
477 if (zfile != NO_FILE) {
478 read_buf = file_read;
479 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000480}
481
482/* ===========================================================================
483 * Send a value on a given number of bits.
484 * IN assertion: length <= 16 and value fits in length bits.
485 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000486static void send_bits(int value, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000487{
488#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000489 Tracev((stderr, " l %2d v %4x ", length, value));
490 Assert(length > 0 && length <= 15, "invalid length");
491 bits_sent += (ulg) length;
Eric Andersencc8ed391999-10-05 16:24:54 +0000492#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000493 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
494 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
495 * unused bits in value.
496 */
497 if (bi_valid > (int) Buf_size - length) {
498 bi_buf |= (value << bi_valid);
499 put_short(bi_buf);
500 bi_buf = (ush) value >> (Buf_size - bi_valid);
501 bi_valid += length - Buf_size;
502 } else {
503 bi_buf |= value << bi_valid;
504 bi_valid += length;
505 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000506}
507
508/* ===========================================================================
509 * Reverse the first len bits of a code, using straightforward code (a faster
510 * method would use a table)
511 * IN assertion: 1 <= len <= 15
512 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000513static unsigned bi_reverse(unsigned code, int len)
Eric Andersencc8ed391999-10-05 16:24:54 +0000514{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515 register unsigned res = 0;
516
517 do {
518 res |= code & 1;
519 code >>= 1, res <<= 1;
520 } while (--len > 0);
521 return res >> 1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000522}
523
524/* ===========================================================================
525 * Write out any remaining bits in an incomplete byte.
526 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +0000527static void bi_windup(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000528{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000529 if (bi_valid > 8) {
530 put_short(bi_buf);
531 } else if (bi_valid > 0) {
532 put_byte(bi_buf);
533 }
534 bi_buf = 0;
535 bi_valid = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000536#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000537 bits_sent = (bits_sent + 7) & ~7;
Eric Andersencc8ed391999-10-05 16:24:54 +0000538#endif
539}
540
541/* ===========================================================================
542 * Copy a stored block to the zip file, storing first the length and its
543 * one's complement if requested.
544 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000545static void copy_block(char *buf, unsigned len, int header)
Eric Andersencc8ed391999-10-05 16:24:54 +0000546{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000547 bi_windup(); /* align on byte boundary */
Eric Andersencc8ed391999-10-05 16:24:54 +0000548
Erik Andersene49d5ec2000-02-08 19:58:47 +0000549 if (header) {
550 put_short((ush) len);
551 put_short((ush) ~ len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000552#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553 bits_sent += 2 * 16;
Eric Andersencc8ed391999-10-05 16:24:54 +0000554#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000555 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000556#ifdef DEBUG
Erik Andersene49d5ec2000-02-08 19:58:47 +0000557 bits_sent += (ulg) len << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +0000558#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559 while (len--) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000560 put_byte(*buf++);
561 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000562}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000563
Eric Andersencc8ed391999-10-05 16:24:54 +0000564/* deflate.c -- compress data using the deflation algorithm
565 * Copyright (C) 1992-1993 Jean-loup Gailly
566 * This is free software; you can redistribute it and/or modify it under the
567 * terms of the GNU General Public License, see the file COPYING.
568 */
569
570/*
571 * PURPOSE
572 *
573 * Identify new text as repetitions of old text within a fixed-
574 * length sliding window trailing behind the new text.
575 *
576 * DISCUSSION
577 *
578 * The "deflation" process depends on being able to identify portions
579 * of the input text which are identical to earlier input (within a
580 * sliding window trailing behind the input currently being processed).
581 *
582 * The most straightforward technique turns out to be the fastest for
583 * most input files: try all possible matches and select the longest.
584 * The key feature of this algorithm is that insertions into the string
585 * dictionary are very simple and thus fast, and deletions are avoided
586 * completely. Insertions are performed at each input character, whereas
587 * string matches are performed only when the previous match ends. So it
588 * is preferable to spend more time in matches to allow very fast string
589 * insertions and avoid deletions. The matching algorithm for small
590 * strings is inspired from that of Rabin & Karp. A brute force approach
591 * is used to find longer strings when a small match has been found.
592 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
593 * (by Leonid Broukhis).
594 * A previous version of this file used a more sophisticated algorithm
595 * (by Fiala and Greene) which is guaranteed to run in linear amortized
596 * time, but has a larger average cost, uses more memory and is patented.
597 * However the F&G algorithm may be faster for some highly redundant
598 * files if the parameter max_chain_length (described below) is too large.
599 *
Eric Andersenaff114c2004-04-14 17:51:38 +0000600 * ACKNOWLEDGMENTS
Eric Andersencc8ed391999-10-05 16:24:54 +0000601 *
602 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
603 * I found it in 'freeze' written by Leonid Broukhis.
604 * Thanks to many info-zippers for bug reports and testing.
605 *
606 * REFERENCES
607 *
608 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
609 *
610 * A description of the Rabin and Karp algorithm is given in the book
611 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
612 *
613 * Fiala,E.R., and Greene,D.H.
614 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
615 *
616 * INTERFACE
617 *
618 * void lm_init (int pack_level, ush *flags)
619 * Initialize the "longest match" routines for a new file
620 *
621 * ulg deflate (void)
622 * Processes a new input file and return its compressed length. Sets
623 * the compressed length, crc, deflate flags and internal file
624 * attributes.
625 */
626
Eric Andersencc8ed391999-10-05 16:24:54 +0000627
Eric Andersencc8ed391999-10-05 16:24:54 +0000628/* ===========================================================================
629 * Configuration parameters
630 */
631
632/* Compile with MEDIUM_MEM to reduce the memory requirements or
633 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
634 * entire input file can be held in memory (not possible on 16 bit systems).
635 * Warning: defining these symbols affects HASH_BITS (see below) and thus
636 * affects the compression ratio. The compressed output
637 * is still correct, and might even be smaller in some cases.
638 */
639
640#ifdef SMALL_MEM
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000641# define HASH_BITS 13 /* Number of bits used to hash strings */
Eric Andersencc8ed391999-10-05 16:24:54 +0000642#endif
643#ifdef MEDIUM_MEM
644# define HASH_BITS 14
645#endif
646#ifndef HASH_BITS
647# define HASH_BITS 15
648 /* For portability to 16 bit machines, do not use values above 15. */
649#endif
650
651/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
652 * window with tab_suffix. Check that we can do this:
653 */
654#if (WSIZE<<1) > (1<<BITS)
Eric Andersen3073dfb2001-07-02 17:57:32 +0000655# error cannot overlay window with tab_suffix and prev with tab_prefix0
Eric Andersencc8ed391999-10-05 16:24:54 +0000656#endif
657#if HASH_BITS > BITS-1
Eric Andersen3073dfb2001-07-02 17:57:32 +0000658# error cannot overlay head with tab_prefix1
Eric Andersencc8ed391999-10-05 16:24:54 +0000659#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000660#define HASH_SIZE (unsigned)(1<<HASH_BITS)
661#define HASH_MASK (HASH_SIZE-1)
662#define WMASK (WSIZE-1)
663/* HASH_SIZE and WSIZE must be powers of two */
Eric Andersencc8ed391999-10-05 16:24:54 +0000664#define NIL 0
665/* Tail of hash chains */
Eric Andersencc8ed391999-10-05 16:24:54 +0000666#define FAST 4
667#define SLOW 2
668/* speed options for the general purpose bit flag */
Eric Andersencc8ed391999-10-05 16:24:54 +0000669#ifndef TOO_FAR
670# define TOO_FAR 4096
671#endif
672/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
Eric Andersencc8ed391999-10-05 16:24:54 +0000673/* ===========================================================================
674 * Local data used by the "longest match" routines.
675 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000676typedef ush Pos;
677typedef unsigned IPos;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000678
Eric Andersencc8ed391999-10-05 16:24:54 +0000679/* A Pos is an index in the character window. We use short instead of int to
680 * save space in the various tables. IPos is used only for parameter passing.
681 */
682
683/* DECLARE(uch, window, 2L*WSIZE); */
684/* Sliding window. Input bytes are read into the second half of the window,
685 * and move to the first half later to keep a dictionary of at least WSIZE
686 * bytes. With this organization, matches are limited to a distance of
687 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
688 * performed with a length multiple of the block size. Also, it limits
689 * the window size to 64K, which is quite useful on MSDOS.
690 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
691 * be less efficient).
692 */
693
694/* DECLARE(Pos, prev, WSIZE); */
695/* Link to older string with same hash index. To limit the size of this
696 * array to 64K, this link is maintained only for the last 32K strings.
697 * An index in this array is thus a window index modulo 32K.
698 */
699
700/* DECLARE(Pos, head, 1<<HASH_BITS); */
701/* Heads of the hash chains or NIL. */
702
Eric Andersen3073dfb2001-07-02 17:57:32 +0000703static const ulg window_size = (ulg) 2 * WSIZE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000704
Eric Andersencc8ed391999-10-05 16:24:54 +0000705/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
706 * input file length plus MIN_LOOKAHEAD.
707 */
708
Eric Andersen3073dfb2001-07-02 17:57:32 +0000709static long block_start;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000710
Eric Andersencc8ed391999-10-05 16:24:54 +0000711/* window position at the beginning of the current output block. Gets
712 * negative when the window is moved backwards.
713 */
714
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000715static unsigned ins_h; /* hash index of string to be inserted */
Eric Andersencc8ed391999-10-05 16:24:54 +0000716
717#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
718/* Number of bits by which ins_h and del_h must be shifted at each
719 * input step. It must be such that after MIN_MATCH steps, the oldest
720 * byte no longer takes part in the hash key, that is:
721 * H_SHIFT * MIN_MATCH >= HASH_BITS
722 */
723
Eric Andersen3073dfb2001-07-02 17:57:32 +0000724static unsigned int prev_length;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000725
Eric Andersencc8ed391999-10-05 16:24:54 +0000726/* Length of the best match at previous step. Matches not greater than this
727 * are discarded. This is used in the lazy match evaluation.
728 */
729
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000730static unsigned strstart; /* start of string to insert */
731static unsigned match_start; /* start of matching string */
732static int eofile; /* flag set at end of input file */
733static unsigned lookahead; /* number of valid bytes ahead in window */
Eric Andersencc8ed391999-10-05 16:24:54 +0000734
Rob Landleybc68cd12006-03-10 19:22:06 +0000735enum {
736 max_chain_length = 4096,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000737
Eric Andersencc8ed391999-10-05 16:24:54 +0000738/* To speed up deflation, hash chains are never searched beyond this length.
739 * A higher limit improves compression ratio but degrades the speed.
740 */
741
Rob Landleybc68cd12006-03-10 19:22:06 +0000742 max_lazy_match = 258,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000743
Eric Andersencc8ed391999-10-05 16:24:54 +0000744/* Attempt to find a better match only when the current match is strictly
745 * smaller than this value. This mechanism is used only for compression
746 * levels >= 4.
747 */
Rob Landleybc68cd12006-03-10 19:22:06 +0000748 max_insert_length = max_lazy_match,
Eric Andersencc8ed391999-10-05 16:24:54 +0000749/* Insert new strings in the hash table only if the match length
750 * is not greater than this length. This saves time but degrades compression.
751 * max_insert_length is used only for compression levels <= 3.
752 */
753
Rob Landleybc68cd12006-03-10 19:22:06 +0000754 good_match = 32,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000755
Eric Andersencc8ed391999-10-05 16:24:54 +0000756/* Use a faster search when the previous match is longer than this */
757
758
759/* Values for max_lazy_match, good_match and max_chain_length, depending on
760 * the desired pack level (0..9). The values given below have been tuned to
761 * exclude worst case performance for pathological files. Better values may be
762 * found for specific files.
763 */
764
Rob Landleybc68cd12006-03-10 19:22:06 +0000765 nice_match = 258 /* Stop searching when current match exceeds this */
Eric Andersencc8ed391999-10-05 16:24:54 +0000766
767/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
768 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
769 * meaning.
770 */
Rob Landleybc68cd12006-03-10 19:22:06 +0000771};
Eric Andersencc8ed391999-10-05 16:24:54 +0000772
773#define EQUAL 0
774/* result of memcmp for equal strings */
775
776/* ===========================================================================
777 * Prototypes for local functions.
778 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000779static void fill_window(void);
Eric Andersencc8ed391999-10-05 16:24:54 +0000780
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000781static int longest_match(IPos cur_match);
Eric Andersencc8ed391999-10-05 16:24:54 +0000782
783#ifdef DEBUG
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000784static void check_match(IPos start, IPos match, int length);
Eric Andersencc8ed391999-10-05 16:24:54 +0000785#endif
786
787/* ===========================================================================
788 * Update a hash value with the given input byte
789 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
790 * input characters, so that a running hash key can be computed from the
791 * previous key instead of complete recalculation each time.
792 */
793#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
794
795/* ===========================================================================
796 * Insert string s in the dictionary and set match_head to the previous head
797 * of the hash chain (the most recent string with same hash key). Return
798 * the previous length of the hash chain.
799 * IN assertion: all calls to to INSERT_STRING are made with consecutive
800 * input characters and the first MIN_MATCH bytes of s are valid
801 * (except for the last MIN_MATCH-1 bytes of the input file).
802 */
803#define INSERT_STRING(s, match_head) \
804 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
805 prev[(s) & WMASK] = match_head = head[ins_h], \
806 head[ins_h] = (s))
807
808/* ===========================================================================
809 * Initialize the "longest match" routines for a new file
810 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000811static void lm_init(ush * flags)
Eric Andersencc8ed391999-10-05 16:24:54 +0000812{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000813 register unsigned j;
Eric Andersencc8ed391999-10-05 16:24:54 +0000814
Erik Andersene49d5ec2000-02-08 19:58:47 +0000815 /* Initialize the hash table. */
Rob Landleyec4f3d92004-12-17 05:23:36 +0000816 memset(head, 0, HASH_SIZE * sizeof(*head));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 /* prev will be initialized on the fly */
Eric Andersencc8ed391999-10-05 16:24:54 +0000818
Erik Andersene49d5ec2000-02-08 19:58:47 +0000819 *flags |= SLOW;
820 /* ??? reduce max_chain_length for binary files */
Eric Andersencc8ed391999-10-05 16:24:54 +0000821
Erik Andersene49d5ec2000-02-08 19:58:47 +0000822 strstart = 0;
823 block_start = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +0000824
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 lookahead = read_buf((char *) window,
826 sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000827
Erik Andersene49d5ec2000-02-08 19:58:47 +0000828 if (lookahead == 0 || lookahead == (unsigned) EOF) {
829 eofile = 1, lookahead = 0;
830 return;
831 }
832 eofile = 0;
833 /* Make sure that we always have enough lookahead. This is important
834 * if input comes from a device such as a tty.
835 */
836 while (lookahead < MIN_LOOKAHEAD && !eofile)
837 fill_window();
Eric Andersencc8ed391999-10-05 16:24:54 +0000838
Erik Andersene49d5ec2000-02-08 19:58:47 +0000839 ins_h = 0;
840 for (j = 0; j < MIN_MATCH - 1; j++)
841 UPDATE_HASH(ins_h, window[j]);
842 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
843 * not important since only literal bytes will be emitted.
844 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000845}
846
847/* ===========================================================================
848 * Set match_start to the longest match starting at the given string and
849 * return its length. Matches shorter or equal to prev_length are discarded,
850 * in which case the result is equal to prev_length and match_start is
851 * garbage.
852 * IN assertions: cur_match is the head of the hash chain for the current
853 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
854 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000855
Eric Andersencc8ed391999-10-05 16:24:54 +0000856/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
857 * match.s. The code is functionally equivalent, so you can use the C version
858 * if desired.
859 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000860static int longest_match(IPos cur_match)
Eric Andersencc8ed391999-10-05 16:24:54 +0000861{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000862 unsigned chain_length = max_chain_length; /* max hash chain length */
863 register uch *scan = window + strstart; /* current string */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000864 register uch *match; /* matched string */
865 register int len; /* length of current match */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000866 int best_len = prev_length; /* best match length so far */
867 IPos limit =
Erik Andersene49d5ec2000-02-08 19:58:47 +0000868 strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL;
869 /* Stop when cur_match becomes <= limit. To simplify the code,
870 * we prevent matches with the string of window index 0.
871 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000872
873/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
874 * It is easy to get rid of this optimization if necessary.
875 */
876#if HASH_BITS < 8 || MAX_MATCH != 258
Eric Andersen3073dfb2001-07-02 17:57:32 +0000877# error Code too clever
Eric Andersencc8ed391999-10-05 16:24:54 +0000878#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000879 register uch *strend = window + strstart + MAX_MATCH;
880 register uch scan_end1 = scan[best_len - 1];
881 register uch scan_end = scan[best_len];
Eric Andersencc8ed391999-10-05 16:24:54 +0000882
Erik Andersene49d5ec2000-02-08 19:58:47 +0000883 /* Do not waste too much time if we already have a good match: */
884 if (prev_length >= good_match) {
885 chain_length >>= 2;
886 }
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000887 Assert(strstart <= window_size - MIN_LOOKAHEAD, "insufficient lookahead");
Eric Andersencc8ed391999-10-05 16:24:54 +0000888
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 do {
890 Assert(cur_match < strstart, "no future");
891 match = window + cur_match;
Eric Andersencc8ed391999-10-05 16:24:54 +0000892
Erik Andersene49d5ec2000-02-08 19:58:47 +0000893 /* Skip to next match if the match length cannot increase
894 * or if the match length is less than 2:
895 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000896 if (match[best_len] != scan_end ||
897 match[best_len - 1] != scan_end1 ||
898 *match != *scan || *++match != scan[1])
899 continue;
Eric Andersencc8ed391999-10-05 16:24:54 +0000900
Erik Andersene49d5ec2000-02-08 19:58:47 +0000901 /* The check at best_len-1 can be removed because it will be made
902 * again later. (This heuristic is not always a win.)
903 * It is not necessary to compare scan[2] and match[2] since they
904 * are always equal when the other bytes match, given that
905 * the hash keys are equal and that HASH_BITS >= 8.
906 */
907 scan += 2, match++;
Eric Andersencc8ed391999-10-05 16:24:54 +0000908
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 /* We check for insufficient lookahead only every 8th comparison;
910 * the 256th check will be made at strstart+258.
911 */
912 do {
913 } while (*++scan == *++match && *++scan == *++match &&
914 *++scan == *++match && *++scan == *++match &&
915 *++scan == *++match && *++scan == *++match &&
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000916 *++scan == *++match && *++scan == *++match && scan < strend);
Eric Andersencc8ed391999-10-05 16:24:54 +0000917
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918 len = MAX_MATCH - (int) (strend - scan);
919 scan = strend - MAX_MATCH;
Eric Andersencc8ed391999-10-05 16:24:54 +0000920
Erik Andersene49d5ec2000-02-08 19:58:47 +0000921 if (len > best_len) {
922 match_start = cur_match;
923 best_len = len;
924 if (len >= nice_match)
925 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000926 scan_end1 = scan[best_len - 1];
927 scan_end = scan[best_len];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000928 }
929 } while ((cur_match = prev[cur_match & WMASK]) > limit
930 && --chain_length != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000931
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 return best_len;
Eric Andersencc8ed391999-10-05 16:24:54 +0000933}
Eric Andersencc8ed391999-10-05 16:24:54 +0000934
935#ifdef DEBUG
936/* ===========================================================================
937 * Check that the match at match_start is indeed a match.
938 */
Eric Andersen3073dfb2001-07-02 17:57:32 +0000939static void check_match(IPos start, IPos match, int length)
Eric Andersencc8ed391999-10-05 16:24:54 +0000940{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000941 /* check that the match is indeed a match */
942 if (memcmp((char *) window + match,
943 (char *) window + start, length) != EQUAL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000944 bb_error_msg(" start %d, match %d, length %d", start, match, length);
945 bb_error_msg("invalid match");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 }
947 if (verbose > 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000948 bb_error_msg("\\[%d,%d]", start - match, length);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000949 do {
950 putc(window[start++], stderr);
951 } while (--length != 0);
952 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000953}
954#else
955# define check_match(start, match, length)
956#endif
957
958/* ===========================================================================
959 * Fill the window when the lookahead becomes insufficient.
960 * Updates strstart and lookahead, and sets eofile if end of input file.
961 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
962 * OUT assertions: at least one byte has been read, or eofile is set;
963 * file reads are performed for at least two bytes (required for the
964 * translate_eol option).
965 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +0000966static void fill_window(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000967{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 register unsigned n, m;
969 unsigned more =
Erik Andersene49d5ec2000-02-08 19:58:47 +0000970 (unsigned) (window_size - (ulg) lookahead - (ulg) strstart);
971 /* Amount of free space at the end of the window. */
Eric Andersencc8ed391999-10-05 16:24:54 +0000972
Erik Andersene49d5ec2000-02-08 19:58:47 +0000973 /* If the window is almost full and there is insufficient lookahead,
974 * move the upper half to the lower one to make room in the upper half.
975 */
976 if (more == (unsigned) EOF) {
977 /* Very unlikely, but possible on 16 bit machine if strstart == 0
978 * and lookahead == 1 (input done one byte at time)
979 */
980 more--;
981 } else if (strstart >= WSIZE + MAX_DIST) {
982 /* By the IN assertion, the window is not empty so we can't confuse
983 * more == 0 with more == 64K on a 16 bit machine.
984 */
985 Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM");
Eric Andersencc8ed391999-10-05 16:24:54 +0000986
Erik Andersene49d5ec2000-02-08 19:58:47 +0000987 memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE);
988 match_start -= WSIZE;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +0000989 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
Eric Andersencc8ed391999-10-05 16:24:54 +0000990
Erik Andersene49d5ec2000-02-08 19:58:47 +0000991 block_start -= (long) WSIZE;
992
993 for (n = 0; n < HASH_SIZE; n++) {
994 m = head[n];
995 head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
996 }
997 for (n = 0; n < WSIZE; n++) {
998 m = prev[n];
999 prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL);
1000 /* If n is not on any hash chain, prev[n] is garbage but
1001 * its value will never be used.
1002 */
1003 }
1004 more += WSIZE;
1005 }
1006 /* At this point, more >= 2 */
1007 if (!eofile) {
1008 n = read_buf((char *) window + strstart + lookahead, more);
1009 if (n == 0 || n == (unsigned) EOF) {
1010 eofile = 1;
1011 } else {
1012 lookahead += n;
1013 }
1014 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001015}
1016
1017/* ===========================================================================
1018 * Flush the current block, with given end-of-file flag.
1019 * IN assertion: strstart is set to the end of the current match.
1020 */
1021#define FLUSH_BLOCK(eof) \
1022 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001023 (char*)NULL, (long)strstart - block_start, (eof))
Eric Andersencc8ed391999-10-05 16:24:54 +00001024
1025/* ===========================================================================
1026 * Same as above, but achieves better compression. We use a lazy
1027 * evaluation for matches: a match is finally adopted only if there is
1028 * no better match at the next window position.
1029 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00001030static ulg deflate(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00001031{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001032 IPos hash_head; /* head of hash chain */
1033 IPos prev_match; /* previous match */
1034 int flush; /* set if current block must be flushed */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001035 int match_available = 0; /* set if previous match exists */
1036 register unsigned match_length = MIN_MATCH - 1; /* length of best match */
1037
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038 /* Process the input block. */
1039 while (lookahead != 0) {
1040 /* Insert the string window[strstart .. strstart+2] in the
1041 * dictionary, and set hash_head to the head of the hash chain:
1042 */
1043 INSERT_STRING(strstart, hash_head);
Eric Andersencc8ed391999-10-05 16:24:54 +00001044
Erik Andersene49d5ec2000-02-08 19:58:47 +00001045 /* Find the longest match, discarding those <= prev_length.
1046 */
1047 prev_length = match_length, prev_match = match_start;
1048 match_length = MIN_MATCH - 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001049
Erik Andersene49d5ec2000-02-08 19:58:47 +00001050 if (hash_head != NIL && prev_length < max_lazy_match &&
1051 strstart - hash_head <= MAX_DIST) {
1052 /* To simplify the code, we prevent matches with the string
1053 * of window index 0 (in particular we have to avoid a match
1054 * of the string with itself at the start of the input file).
1055 */
1056 match_length = longest_match(hash_head);
1057 /* longest_match() sets match_start */
1058 if (match_length > lookahead)
1059 match_length = lookahead;
Eric Andersencc8ed391999-10-05 16:24:54 +00001060
Erik Andersene49d5ec2000-02-08 19:58:47 +00001061 /* Ignore a length 3 match if it is too distant: */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001062 if (match_length == MIN_MATCH && strstart - match_start > TOO_FAR) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001063 /* If prev_match is also MIN_MATCH, match_start is garbage
1064 * but we will ignore the current match anyway.
1065 */
1066 match_length--;
1067 }
1068 }
1069 /* If there was a match at the previous step and the current
1070 * match is not better, output the previous match:
1071 */
1072 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
Eric Andersencc8ed391999-10-05 16:24:54 +00001073
Erik Andersene49d5ec2000-02-08 19:58:47 +00001074 check_match(strstart - 1, prev_match, prev_length);
Eric Andersencc8ed391999-10-05 16:24:54 +00001075
Erik Andersene49d5ec2000-02-08 19:58:47 +00001076 flush =
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001077 ct_tally(strstart - 1 - prev_match, prev_length - MIN_MATCH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001078
Erik Andersene49d5ec2000-02-08 19:58:47 +00001079 /* Insert in hash table all strings up to the end of the match.
1080 * strstart-1 and strstart are already inserted.
1081 */
1082 lookahead -= prev_length - 1;
1083 prev_length -= 2;
1084 do {
1085 strstart++;
1086 INSERT_STRING(strstart, hash_head);
1087 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1088 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1089 * these bytes are garbage, but it does not matter since the
1090 * next lookahead bytes will always be emitted as literals.
1091 */
1092 } while (--prev_length != 0);
1093 match_available = 0;
1094 match_length = MIN_MATCH - 1;
1095 strstart++;
1096 if (flush)
1097 FLUSH_BLOCK(0), block_start = strstart;
Eric Andersencc8ed391999-10-05 16:24:54 +00001098
Erik Andersene49d5ec2000-02-08 19:58:47 +00001099 } else if (match_available) {
1100 /* If there was no match at the previous position, output a
1101 * single literal. If there was a match but the current match
1102 * is longer, truncate the previous match to a single literal.
1103 */
1104 Tracevv((stderr, "%c", window[strstart - 1]));
1105 if (ct_tally(0, window[strstart - 1])) {
1106 FLUSH_BLOCK(0), block_start = strstart;
1107 }
1108 strstart++;
1109 lookahead--;
1110 } else {
1111 /* There is no previous match to compare with, wait for
1112 * the next step to decide.
1113 */
1114 match_available = 1;
1115 strstart++;
1116 lookahead--;
1117 }
1118 Assert(strstart <= isize && lookahead <= isize, "a bit too far");
Eric Andersencc8ed391999-10-05 16:24:54 +00001119
Erik Andersene49d5ec2000-02-08 19:58:47 +00001120 /* Make sure that we always have enough lookahead, except
1121 * at the end of the input file. We need MAX_MATCH bytes
1122 * for the next match, plus MIN_MATCH bytes to insert the
1123 * string following the next match.
1124 */
1125 while (lookahead < MIN_LOOKAHEAD && !eofile)
1126 fill_window();
1127 }
1128 if (match_available)
1129 ct_tally(0, window[strstart - 1]);
Eric Andersencc8ed391999-10-05 16:24:54 +00001130
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001131 return FLUSH_BLOCK(1); /* eof */
Eric Andersencc8ed391999-10-05 16:24:54 +00001132}
Erik Andersene49d5ec2000-02-08 19:58:47 +00001133
Eric Andersencc8ed391999-10-05 16:24:54 +00001134/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1135 * Copyright (C) 1992-1993 Jean-loup Gailly
1136 * The unzip code was written and put in the public domain by Mark Adler.
1137 * Portions of the lzw code are derived from the public domain 'compress'
1138 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1139 * Ken Turkowski, Dave Mack and Peter Jannesen.
1140 *
1141 * See the license_msg below and the file COPYING for the software license.
1142 * See the file algorithm.doc for the compression algorithms and file formats.
1143 */
1144
1145/* Compress files with zip algorithm and 'compress' interface.
1146 * See usage() and help() functions below for all options.
1147 * Outputs:
1148 * file.gz: compressed file with same mode, owner, and utimes
1149 * or stdout with -c option or if stdin used as input.
1150 * If the output file name had to be truncated, the original name is kept
1151 * in the compressed file.
Eric Andersencc8ed391999-10-05 16:24:54 +00001152 */
1153
Eric Andersencc8ed391999-10-05 16:24:54 +00001154 /* configuration */
1155
Erik Andersene49d5ec2000-02-08 19:58:47 +00001156typedef struct dirent dir_type;
1157
Eric Andersencc8ed391999-10-05 16:24:54 +00001158/* ======================================================================== */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001159int gzip_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +00001160{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001161 int result;
1162 int inFileNum;
1163 int outFileNum;
1164 struct stat statBuf;
1165 char *delFileName;
1166 int tostdout = 0;
Eric Andersenea824fb2000-07-21 22:17:39 +00001167 int force = 0;
Matt Kraai53265542001-04-18 16:05:34 +00001168 int opt;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001169
Glenn L McGrath5bcfc9b2001-05-07 12:01:58 +00001170 while ((opt = getopt(argc, argv, "cf123456789dq")) != -1) {
Matt Kraai53265542001-04-18 16:05:34 +00001171 switch (opt) {
1172 case 'c':
Erik Andersene49d5ec2000-02-08 19:58:47 +00001173 tostdout = 1;
Matt Kraai53265542001-04-18 16:05:34 +00001174 break;
1175 case 'f':
1176 force = 1;
1177 break;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001178 /* Ignore 1-9 (compression level) options */
1179 case '1':
1180 case '2':
1181 case '3':
1182 case '4':
1183 case '5':
1184 case '6':
1185 case '7':
1186 case '8':
1187 case '9':
Matt Kraai53265542001-04-18 16:05:34 +00001188 break;
Glenn L McGrath5bcfc9b2001-05-07 12:01:58 +00001189 case 'q':
1190 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001191#ifdef CONFIG_GUNZIP
Matt Kraai53265542001-04-18 16:05:34 +00001192 case 'd':
1193 optind = 1;
1194 return gunzip_main(argc, argv);
Glenn L McGrath528ef502001-04-11 03:45:37 +00001195#endif
Matt Kraai53265542001-04-18 16:05:34 +00001196 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +00001197 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001198 }
1199 }
1200
1201 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1202 if (foreground) {
Rob Landleyec4f3d92004-12-17 05:23:36 +00001203 (void) signal(SIGINT, abort_gzip);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001204 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001205#ifdef SIGTERM
Erik Andersene49d5ec2000-02-08 19:58:47 +00001206 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
Rob Landleyec4f3d92004-12-17 05:23:36 +00001207 (void) signal(SIGTERM, abort_gzip);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001208 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001209#endif
1210#ifdef SIGHUP
Erik Andersene49d5ec2000-02-08 19:58:47 +00001211 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
Rob Landleyec4f3d92004-12-17 05:23:36 +00001212 (void) signal(SIGHUP, abort_gzip);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001213 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001214#endif
1215
Erik Andersene49d5ec2000-02-08 19:58:47 +00001216 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1);
1217 z_len = strlen(z_suffix);
Eric Andersencc8ed391999-10-05 16:24:54 +00001218
Erik Andersene49d5ec2000-02-08 19:58:47 +00001219 /* Allocate all global buffers (for DYN_ALLOC option) */
1220 ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA);
1221 ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA);
1222 ALLOC(ush, d_buf, DIST_BUFSIZE);
1223 ALLOC(uch, window, 2L * WSIZE);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001224 ALLOC(ush, tab_prefix, 1L << BITS);
Eric Andersencc8ed391999-10-05 16:24:54 +00001225
Matt Kraai9bd49d62002-02-05 22:31:48 +00001226 clear_bufs();
1227 part_nb = 0;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001228
Matt Kraai9bd49d62002-02-05 22:31:48 +00001229 if (optind == argc) {
1230 time_stamp = 0;
1231 ifile_size = -1L;
1232 zip(STDIN_FILENO, STDOUT_FILENO);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001233 } else {
Matt Kraai9bd49d62002-02-05 22:31:48 +00001234 int i;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001235
Matt Kraai9bd49d62002-02-05 22:31:48 +00001236 for (i = optind; i < argc; i++) {
1237 char *path = NULL;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001238
Manuel Novoa III df7bfb42005-03-02 04:10:46 +00001239 clear_bufs();
Matt Kraai9bd49d62002-02-05 22:31:48 +00001240 if (strcmp(argv[i], "-") == 0) {
1241 time_stamp = 0;
1242 ifile_size = -1L;
1243 inFileNum = STDIN_FILENO;
1244 outFileNum = STDOUT_FILENO;
1245 } else {
1246 inFileNum = open(argv[i], O_RDONLY);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001247 if (inFileNum < 0 || fstat(inFileNum, &statBuf) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001248 bb_perror_msg_and_die("%s", argv[i]);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001249 time_stamp = statBuf.st_ctime;
1250 ifile_size = statBuf.st_size;
Eric Andersen96bcfd31999-11-12 01:30:18 +00001251
Matt Kraai9bd49d62002-02-05 22:31:48 +00001252 if (!tostdout) {
1253 path = xmalloc(strlen(argv[i]) + 4);
1254 strcpy(path, argv[i]);
1255 strcat(path, ".gz");
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001256
Matt Kraai9bd49d62002-02-05 22:31:48 +00001257 /* Open output file */
Bernhard Reutner-Fischer0b42a6a2005-10-07 11:34:50 +00001258#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) && defined O_NOFOLLOW
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001259 outFileNum =
1260 open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001261#else
Matt Kraai9bd49d62002-02-05 22:31:48 +00001262 outFileNum = open(path, O_RDWR | O_CREAT | O_EXCL);
Erik Andersen4d1d0111999-12-17 18:44:15 +00001263#endif
Matt Kraai9bd49d62002-02-05 22:31:48 +00001264 if (outFileNum < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001265 bb_perror_msg("%s", path);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001266 free(path);
1267 continue;
1268 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001269
Matt Kraai9bd49d62002-02-05 22:31:48 +00001270 /* Set permissions on the file */
1271 fchmod(outFileNum, statBuf.st_mode);
1272 } else
1273 outFileNum = STDOUT_FILENO;
1274 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001275
Matt Kraaief8b1122002-03-22 22:55:51 +00001276 if (path == NULL && isatty(outFileNum) && force == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001277 bb_error_msg
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001278 ("compressed data not written to a terminal. Use -f to force compression.");
Matt Kraai9bd49d62002-02-05 22:31:48 +00001279 free(path);
1280 continue;
1281 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001282
Matt Kraai9bd49d62002-02-05 22:31:48 +00001283 result = zip(inFileNum, outFileNum);
1284
1285 if (path != NULL) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001286 close(inFileNum);
1287 close(outFileNum);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001288
1289 /* Delete the original file */
1290 if (result == OK)
1291 delFileName = argv[i];
1292 else
1293 delFileName = path;
1294
1295 if (unlink(delFileName) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001296 bb_perror_msg("%s", delFileName);
Matt Kraai9bd49d62002-02-05 22:31:48 +00001297 }
1298
1299 free(path);
1300 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001301 }
Eric Andersen0dfac6b1999-11-11 05:46:32 +00001302
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001303 return (exit_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00001304}
1305
Eric Andersencc8ed391999-10-05 16:24:54 +00001306/* trees.c -- output deflated data using Huffman coding
1307 * Copyright (C) 1992-1993 Jean-loup Gailly
1308 * This is free software; you can redistribute it and/or modify it under the
1309 * terms of the GNU General Public License, see the file COPYING.
1310 */
1311
1312/*
1313 * PURPOSE
1314 *
1315 * Encode various sets of source values using variable-length
1316 * binary code trees.
1317 *
1318 * DISCUSSION
1319 *
1320 * The PKZIP "deflation" process uses several Huffman trees. The more
1321 * common source values are represented by shorter bit sequences.
1322 *
1323 * Each code tree is stored in the ZIP file in a compressed form
1324 * which is itself a Huffman encoding of the lengths of
1325 * all the code strings (in ascending order by source values).
1326 * The actual code strings are reconstructed from the lengths in
1327 * the UNZIP process, as described in the "application note"
1328 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1329 *
1330 * REFERENCES
1331 *
1332 * Lynch, Thomas J.
1333 * Data Compression: Techniques and Applications, pp. 53-55.
1334 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1335 *
1336 * Storer, James A.
1337 * Data Compression: Methods and Theory, pp. 49-50.
1338 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1339 *
1340 * Sedgewick, R.
1341 * Algorithms, p290.
1342 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1343 *
1344 * INTERFACE
1345 *
1346 * void ct_init (ush *attr, int *methodp)
1347 * Allocate the match buffer, initialize the various tables and save
1348 * the location of the internal file attribute (ascii/binary) and
1349 * method (DEFLATE/STORE)
1350 *
1351 * void ct_tally (int dist, int lc);
1352 * Save the match info and tally the frequency counts.
1353 *
1354 * long flush_block (char *buf, ulg stored_len, int eof)
1355 * Determine the best encoding for the current block: dynamic trees,
1356 * static trees or store, and output the encoded block to the zip
1357 * file. Returns the total compressed length for the file so far.
1358 *
1359 */
1360
Eric Andersencc8ed391999-10-05 16:24:54 +00001361/* ===========================================================================
1362 * Constants
1363 */
1364
1365#define MAX_BITS 15
1366/* All codes must not exceed MAX_BITS bits */
1367
1368#define MAX_BL_BITS 7
1369/* Bit length codes must not exceed MAX_BL_BITS bits */
1370
1371#define LENGTH_CODES 29
1372/* number of length codes, not counting the special END_BLOCK code */
1373
1374#define LITERALS 256
1375/* number of literal bytes 0..255 */
1376
1377#define END_BLOCK 256
1378/* end of block literal code */
1379
1380#define L_CODES (LITERALS+1+LENGTH_CODES)
1381/* number of Literal or Length codes, including the END_BLOCK code */
1382
1383#define D_CODES 30
1384/* number of distance codes */
1385
1386#define BL_CODES 19
1387/* number of codes used to transfer the bit lengths */
1388
Eric Andersen39eb0402001-08-22 04:15:47 +00001389typedef uch extra_bits_t;
Eric Andersencc8ed391999-10-05 16:24:54 +00001390
Eric Andersen39eb0402001-08-22 04:15:47 +00001391/* extra bits for each length code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001392static const extra_bits_t extra_lbits[LENGTH_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001393 = { 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 +00001394 4, 4, 5, 5, 5, 5, 0
1395};
Eric Andersencc8ed391999-10-05 16:24:54 +00001396
Eric Andersen39eb0402001-08-22 04:15:47 +00001397/* extra bits for each distance code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001398static const extra_bits_t extra_dbits[D_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001399 = { 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 +00001400 10, 10, 11, 11, 12, 12, 13, 13
1401};
Eric Andersencc8ed391999-10-05 16:24:54 +00001402
Eric Andersen39eb0402001-08-22 04:15:47 +00001403/* extra bits for each bit length code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001404static const extra_bits_t extra_blbits[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001405= { 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 +00001406
1407#define STORED_BLOCK 0
1408#define STATIC_TREES 1
1409#define DYN_TREES 2
1410/* The three kinds of block type */
1411
1412#ifndef LIT_BUFSIZE
1413# ifdef SMALL_MEM
1414# define LIT_BUFSIZE 0x2000
1415# else
1416# ifdef MEDIUM_MEM
1417# define LIT_BUFSIZE 0x4000
1418# else
1419# define LIT_BUFSIZE 0x8000
1420# endif
1421# endif
1422#endif
1423#ifndef DIST_BUFSIZE
1424# define DIST_BUFSIZE LIT_BUFSIZE
1425#endif
1426/* Sizes of match buffers for literals/lengths and distances. There are
1427 * 4 reasons for limiting LIT_BUFSIZE to 64K:
1428 * - frequencies can be kept in 16 bit counters
1429 * - if compression is not successful for the first block, all input data is
1430 * still in the window so we can still emit a stored block even when input
1431 * comes from standard input. (This can also be done for all blocks if
1432 * LIT_BUFSIZE is not greater than 32K.)
1433 * - if compression is not successful for a file smaller than 64K, we can
1434 * even emit a stored file instead of a stored block (saving 5 bytes).
1435 * - creating new Huffman trees less frequently may not provide fast
1436 * adaptation to changes in the input data statistics. (Take for
1437 * example a binary file with poorly compressible code followed by
1438 * a highly compressible string table.) Smaller buffer sizes give
1439 * fast adaptation but have of course the overhead of transmitting trees
1440 * more frequently.
1441 * - I can't count above 4
1442 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
1443 * memory at the expense of compression). Some optimizations would be possible
1444 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
1445 */
1446#if LIT_BUFSIZE > INBUFSIZ
Aaron Lehmannb9df4702001-12-06 03:22:43 +00001447#error cannot overlay l_buf and inbuf
Eric Andersencc8ed391999-10-05 16:24:54 +00001448#endif
Eric Andersencc8ed391999-10-05 16:24:54 +00001449#define REP_3_6 16
1450/* repeat previous bit length 3-6 times (2 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001451#define REPZ_3_10 17
1452/* repeat a zero length 3-10 times (3 bits of repeat count) */
Eric Andersencc8ed391999-10-05 16:24:54 +00001453#define REPZ_11_138 18
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001454/* repeat a zero length 11-138 times (7 bits of repeat count) */
1455
1456/* ===========================================================================
Eric Andersencc8ed391999-10-05 16:24:54 +00001457 * Local data
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001458 */
1459
1460/* Data structure describing a single value and its code string. */
1461typedef struct ct_data {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001462 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001463 ush freq; /* frequency count */
1464 ush code; /* bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001465 } fc;
1466 union {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001467 ush dad; /* father node in Huffman tree */
1468 ush len; /* length of bit string */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001469 } dl;
Eric Andersencc8ed391999-10-05 16:24:54 +00001470} ct_data;
1471
1472#define Freq fc.freq
1473#define Code fc.code
1474#define Dad dl.dad
1475#define Len dl.len
1476
1477#define HEAP_SIZE (2*L_CODES+1)
1478/* maximum heap size */
1479
Eric Andersen3073dfb2001-07-02 17:57:32 +00001480static ct_data dyn_ltree[HEAP_SIZE]; /* literal and length tree */
1481static ct_data dyn_dtree[2 * D_CODES + 1]; /* distance tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001482
Eric Andersen3073dfb2001-07-02 17:57:32 +00001483static ct_data static_ltree[L_CODES + 2];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001484
Eric Andersencc8ed391999-10-05 16:24:54 +00001485/* The static literal tree. Since the bit lengths are imposed, there is no
1486 * need for the L_CODES extra codes used during heap construction. However
1487 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
1488 * below).
1489 */
1490
Eric Andersen3073dfb2001-07-02 17:57:32 +00001491static ct_data static_dtree[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001492
Eric Andersencc8ed391999-10-05 16:24:54 +00001493/* The static distance tree. (Actually a trivial tree since all codes use
1494 * 5 bits.)
1495 */
1496
Eric Andersen3073dfb2001-07-02 17:57:32 +00001497static ct_data bl_tree[2 * BL_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001498
Eric Andersencc8ed391999-10-05 16:24:54 +00001499/* Huffman tree for the bit lengths */
1500
1501typedef struct tree_desc {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001502 ct_data *dyn_tree; /* the dynamic tree */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001503 ct_data *static_tree; /* corresponding static tree or NULL */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001504 const extra_bits_t *extra_bits; /* extra bits for each code or NULL */
1505 int extra_base; /* base index for extra_bits */
1506 int elems; /* max number of elements in the tree */
1507 int max_length; /* max bit length for the codes */
1508 int max_code; /* largest code with non zero frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00001509} tree_desc;
1510
Eric Andersen3073dfb2001-07-02 17:57:32 +00001511static tree_desc l_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001512 { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001513 MAX_BITS, 0
1514};
Eric Andersencc8ed391999-10-05 16:24:54 +00001515
Eric Andersen3073dfb2001-07-02 17:57:32 +00001516static tree_desc d_desc =
Erik Andersene49d5ec2000-02-08 19:58:47 +00001517 { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 };
Eric Andersencc8ed391999-10-05 16:24:54 +00001518
Eric Andersen3073dfb2001-07-02 17:57:32 +00001519static tree_desc bl_desc =
1520 { bl_tree, (ct_data *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS,
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001521 0
1522};
Eric Andersencc8ed391999-10-05 16:24:54 +00001523
1524
Eric Andersen3073dfb2001-07-02 17:57:32 +00001525static ush bl_count[MAX_BITS + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001526
Eric Andersencc8ed391999-10-05 16:24:54 +00001527/* number of codes at each bit length for an optimal tree */
1528
Eric Andersen3073dfb2001-07-02 17:57:32 +00001529static const uch bl_order[BL_CODES]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001530= { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
1531
Eric Andersencc8ed391999-10-05 16:24:54 +00001532/* The lengths of the bit length codes are sent in order of decreasing
1533 * probability, to avoid transmitting the lengths for unused bit length codes.
1534 */
1535
Eric Andersen3073dfb2001-07-02 17:57:32 +00001536static int heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001537static int heap_len; /* number of elements in the heap */
1538static int heap_max; /* element of largest frequency */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001539
Eric Andersencc8ed391999-10-05 16:24:54 +00001540/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
1541 * The same heap array is used to build all trees.
1542 */
1543
Eric Andersen3073dfb2001-07-02 17:57:32 +00001544static uch depth[2 * L_CODES + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001545
Eric Andersencc8ed391999-10-05 16:24:54 +00001546/* Depth of each subtree used as tie breaker for trees of equal frequency */
1547
Eric Andersen3073dfb2001-07-02 17:57:32 +00001548static uch length_code[MAX_MATCH - MIN_MATCH + 1];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001549
Eric Andersencc8ed391999-10-05 16:24:54 +00001550/* length code for each normalized match length (0 == MIN_MATCH) */
1551
Eric Andersen3073dfb2001-07-02 17:57:32 +00001552static uch dist_code[512];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001553
Eric Andersencc8ed391999-10-05 16:24:54 +00001554/* distance codes. The first 256 values correspond to the distances
1555 * 3 .. 258, the last 256 values correspond to the top 8 bits of
1556 * the 15 bit distances.
1557 */
1558
Eric Andersen3073dfb2001-07-02 17:57:32 +00001559static int base_length[LENGTH_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001560
Eric Andersencc8ed391999-10-05 16:24:54 +00001561/* First normalized length for each code (0 = MIN_MATCH) */
1562
Eric Andersen3073dfb2001-07-02 17:57:32 +00001563static int base_dist[D_CODES];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001564
Eric Andersencc8ed391999-10-05 16:24:54 +00001565/* First normalized distance for each code (0 = distance of 1) */
1566
1567#define l_buf inbuf
1568/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
1569
1570/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
1571
Eric Andersen3073dfb2001-07-02 17:57:32 +00001572static uch flag_buf[(LIT_BUFSIZE / 8)];
Erik Andersene49d5ec2000-02-08 19:58:47 +00001573
Eric Andersencc8ed391999-10-05 16:24:54 +00001574/* flag_buf is a bit array distinguishing literals from lengths in
1575 * l_buf, thus indicating the presence or absence of a distance.
1576 */
1577
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001578static unsigned last_lit; /* running index in l_buf */
1579static unsigned last_dist; /* running index in d_buf */
1580static unsigned last_flags; /* running index in flag_buf */
1581static uch flags; /* current flags not yet saved in flag_buf */
1582static uch flag_bit; /* current bit used in flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001583
Eric Andersencc8ed391999-10-05 16:24:54 +00001584/* bits are filled in flags starting at bit 0 (least significant).
1585 * Note: these flags are overkill in the current code since we don't
1586 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
1587 */
1588
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001589static ulg opt_len; /* bit length of current block with optimal trees */
1590static ulg static_len; /* bit length of current block with static trees */
Eric Andersencc8ed391999-10-05 16:24:54 +00001591
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001592static ulg compressed_len; /* total bit length of compressed file */
Eric Andersencc8ed391999-10-05 16:24:54 +00001593
Erik Andersene49d5ec2000-02-08 19:58:47 +00001594
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001595static ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
1596static int *file_method; /* pointer to DEFLATE or STORE */
Eric Andersencc8ed391999-10-05 16:24:54 +00001597
1598/* ===========================================================================
1599 * Local (static) routines in this file.
1600 */
1601
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001602static void init_block(void);
1603static void pqdownheap(ct_data * tree, int k);
1604static void gen_bitlen(tree_desc * desc);
1605static void gen_codes(ct_data * tree, int max_code);
1606static void build_tree(tree_desc * desc);
1607static void scan_tree(ct_data * tree, int max_code);
1608static void send_tree(ct_data * tree, int max_code);
1609static int build_bl_tree(void);
1610static void send_all_trees(int lcodes, int dcodes, int blcodes);
1611static void compress_block(ct_data * ltree, ct_data * dtree);
1612static void set_file_type(void);
Eric Andersencc8ed391999-10-05 16:24:54 +00001613
1614
1615#ifndef DEBUG
1616# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
1617 /* Send a code of the given tree. c and tree must not have side effects */
1618
Erik Andersene49d5ec2000-02-08 19:58:47 +00001619#else /* DEBUG */
Eric Andersencc8ed391999-10-05 16:24:54 +00001620# define send_code(c, tree) \
Manuel Novoa III cad53642003-03-19 09:13:01 +00001621 { if (verbose>1) bb_error_msg("\ncd %3d ",(c)); \
Eric Andersencc8ed391999-10-05 16:24:54 +00001622 send_bits(tree[c].Code, tree[c].Len); }
1623#endif
1624
1625#define d_code(dist) \
1626 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
1627/* Mapping from a distance to a distance code. dist is the distance - 1 and
1628 * must not have side effects. dist_code[256] and dist_code[257] are never
1629 * used.
1630 */
1631
Eric Andersencc8ed391999-10-05 16:24:54 +00001632/* the arguments must not have side effects */
1633
1634/* ===========================================================================
1635 * Allocate the match buffer, initialize the various tables and save the
1636 * location of the internal file attribute (ascii/binary) and method
1637 * (DEFLATE/STORE).
1638 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001639static void ct_init(ush * attr, int *methodp)
Eric Andersencc8ed391999-10-05 16:24:54 +00001640{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001641 int n; /* iterates over tree elements */
1642 int bits; /* bit counter */
1643 int length; /* length value */
1644 int code; /* code value */
1645 int dist; /* distance index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001646
Erik Andersene49d5ec2000-02-08 19:58:47 +00001647 file_type = attr;
1648 file_method = methodp;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001649 compressed_len = 0L;
Eric Andersencc8ed391999-10-05 16:24:54 +00001650
Erik Andersene49d5ec2000-02-08 19:58:47 +00001651 if (static_dtree[0].Len != 0)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001652 return; /* ct_init already called */
Eric Andersencc8ed391999-10-05 16:24:54 +00001653
Erik Andersene49d5ec2000-02-08 19:58:47 +00001654 /* Initialize the mapping length (0..255) -> length code (0..28) */
1655 length = 0;
1656 for (code = 0; code < LENGTH_CODES - 1; code++) {
1657 base_length[code] = length;
1658 for (n = 0; n < (1 << extra_lbits[code]); n++) {
1659 length_code[length++] = (uch) code;
1660 }
1661 }
1662 Assert(length == 256, "ct_init: length != 256");
1663 /* Note that the length 255 (match length 258) can be represented
1664 * in two different ways: code 284 + 5 bits or code 285, so we
1665 * overwrite length_code[255] to use the best encoding:
1666 */
1667 length_code[length - 1] = (uch) code;
Eric Andersencc8ed391999-10-05 16:24:54 +00001668
Erik Andersene49d5ec2000-02-08 19:58:47 +00001669 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
1670 dist = 0;
1671 for (code = 0; code < 16; code++) {
1672 base_dist[code] = dist;
1673 for (n = 0; n < (1 << extra_dbits[code]); n++) {
1674 dist_code[dist++] = (uch) code;
1675 }
1676 }
1677 Assert(dist == 256, "ct_init: dist != 256");
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001678 dist >>= 7; /* from now on, all distances are divided by 128 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001679 for (; code < D_CODES; code++) {
1680 base_dist[code] = dist << 7;
1681 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
1682 dist_code[256 + dist++] = (uch) code;
1683 }
1684 }
1685 Assert(dist == 256, "ct_init: 256+dist != 512");
Eric Andersencc8ed391999-10-05 16:24:54 +00001686
Erik Andersene49d5ec2000-02-08 19:58:47 +00001687 /* Construct the codes of the static literal tree */
1688 for (bits = 0; bits <= MAX_BITS; bits++)
1689 bl_count[bits] = 0;
1690 n = 0;
1691 while (n <= 143)
1692 static_ltree[n++].Len = 8, bl_count[8]++;
1693 while (n <= 255)
1694 static_ltree[n++].Len = 9, bl_count[9]++;
1695 while (n <= 279)
1696 static_ltree[n++].Len = 7, bl_count[7]++;
1697 while (n <= 287)
1698 static_ltree[n++].Len = 8, bl_count[8]++;
1699 /* Codes 286 and 287 do not exist, but we must include them in the
1700 * tree construction to get a canonical Huffman tree (longest code
1701 * all ones)
1702 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00001703 gen_codes((ct_data *) static_ltree, L_CODES + 1);
Eric Andersencc8ed391999-10-05 16:24:54 +00001704
Erik Andersene49d5ec2000-02-08 19:58:47 +00001705 /* The static distance tree is trivial: */
1706 for (n = 0; n < D_CODES; n++) {
1707 static_dtree[n].Len = 5;
1708 static_dtree[n].Code = bi_reverse(n, 5);
1709 }
1710
1711 /* Initialize the first block of the first file: */
1712 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00001713}
1714
1715/* ===========================================================================
1716 * Initialize a new block.
1717 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00001718static void init_block(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00001719{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001720 int n; /* iterates over tree elements */
Eric Andersencc8ed391999-10-05 16:24:54 +00001721
Erik Andersene49d5ec2000-02-08 19:58:47 +00001722 /* Initialize the trees. */
1723 for (n = 0; n < L_CODES; n++)
1724 dyn_ltree[n].Freq = 0;
1725 for (n = 0; n < D_CODES; n++)
1726 dyn_dtree[n].Freq = 0;
1727 for (n = 0; n < BL_CODES; n++)
1728 bl_tree[n].Freq = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001729
Erik Andersene49d5ec2000-02-08 19:58:47 +00001730 dyn_ltree[END_BLOCK].Freq = 1;
1731 opt_len = static_len = 0L;
1732 last_lit = last_dist = last_flags = 0;
1733 flags = 0;
1734 flag_bit = 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00001735}
1736
1737#define SMALLEST 1
1738/* Index within the heap array of least frequent node in the Huffman tree */
1739
1740
1741/* ===========================================================================
1742 * Remove the smallest element from the heap and recreate the heap with
1743 * one less element. Updates heap and heap_len.
1744 */
1745#define pqremove(tree, top) \
1746{\
1747 top = heap[SMALLEST]; \
1748 heap[SMALLEST] = heap[heap_len--]; \
1749 pqdownheap(tree, SMALLEST); \
1750}
1751
1752/* ===========================================================================
1753 * Compares to subtrees, using the tree depth as tie breaker when
1754 * the subtrees have equal frequency. This minimizes the worst case length.
1755 */
1756#define smaller(tree, n, m) \
1757 (tree[n].Freq < tree[m].Freq || \
1758 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
1759
1760/* ===========================================================================
1761 * Restore the heap property by moving down the tree starting at node k,
1762 * exchanging a node with the smallest of its two sons if necessary, stopping
1763 * when the heap property is re-established (each father smaller than its
1764 * two sons).
1765 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001766static void pqdownheap(ct_data * tree, int k)
Eric Andersencc8ed391999-10-05 16:24:54 +00001767{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001768 int v = heap[k];
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001769 int j = k << 1; /* left son of k */
Eric Andersencc8ed391999-10-05 16:24:54 +00001770
Erik Andersene49d5ec2000-02-08 19:58:47 +00001771 while (j <= heap_len) {
1772 /* Set j to the smallest of the two sons: */
1773 if (j < heap_len && smaller(tree, heap[j + 1], heap[j]))
1774 j++;
Eric Andersencc8ed391999-10-05 16:24:54 +00001775
Erik Andersene49d5ec2000-02-08 19:58:47 +00001776 /* Exit if v is smaller than both sons */
1777 if (smaller(tree, v, heap[j]))
1778 break;
Eric Andersencc8ed391999-10-05 16:24:54 +00001779
Erik Andersene49d5ec2000-02-08 19:58:47 +00001780 /* Exchange v with the smallest son */
1781 heap[k] = heap[j];
1782 k = j;
1783
1784 /* And continue down the tree, setting j to the left son of k */
1785 j <<= 1;
1786 }
1787 heap[k] = v;
Eric Andersencc8ed391999-10-05 16:24:54 +00001788}
1789
1790/* ===========================================================================
1791 * Compute the optimal bit lengths for a tree and update the total bit length
1792 * for the current block.
1793 * IN assertion: the fields freq and dad are set, heap[heap_max] and
1794 * above are the tree nodes sorted by increasing frequency.
1795 * OUT assertions: the field len is set to the optimal bit length, the
1796 * array bl_count contains the frequencies for each bit length.
1797 * The length opt_len is updated; static_len is also updated if stree is
1798 * not null.
1799 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001800static void gen_bitlen(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001801{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001802 ct_data *tree = desc->dyn_tree;
Eric Andersen39eb0402001-08-22 04:15:47 +00001803 const extra_bits_t *extra = desc->extra_bits;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001804 int base = desc->extra_base;
1805 int max_code = desc->max_code;
1806 int max_length = desc->max_length;
Eric Andersen3073dfb2001-07-02 17:57:32 +00001807 ct_data *stree = desc->static_tree;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001808 int h; /* heap index */
1809 int n, m; /* iterate over the tree elements */
1810 int bits; /* bit length */
1811 int xbits; /* extra bits */
1812 ush f; /* frequency */
1813 int overflow = 0; /* number of elements with bit length too large */
Eric Andersencc8ed391999-10-05 16:24:54 +00001814
Erik Andersene49d5ec2000-02-08 19:58:47 +00001815 for (bits = 0; bits <= MAX_BITS; bits++)
1816 bl_count[bits] = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00001817
Erik Andersene49d5ec2000-02-08 19:58:47 +00001818 /* In a first pass, compute the optimal bit lengths (which may
1819 * overflow in the case of the bit length tree).
1820 */
1821 tree[heap[heap_max]].Len = 0; /* root of the heap */
Eric Andersencc8ed391999-10-05 16:24:54 +00001822
Erik Andersene49d5ec2000-02-08 19:58:47 +00001823 for (h = heap_max + 1; h < HEAP_SIZE; h++) {
1824 n = heap[h];
1825 bits = tree[tree[n].Dad].Len + 1;
1826 if (bits > max_length)
1827 bits = max_length, overflow++;
1828 tree[n].Len = (ush) bits;
1829 /* We overwrite tree[n].Dad which is no longer needed */
Eric Andersencc8ed391999-10-05 16:24:54 +00001830
Erik Andersene49d5ec2000-02-08 19:58:47 +00001831 if (n > max_code)
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001832 continue; /* not a leaf node */
Eric Andersencc8ed391999-10-05 16:24:54 +00001833
Erik Andersene49d5ec2000-02-08 19:58:47 +00001834 bl_count[bits]++;
1835 xbits = 0;
1836 if (n >= base)
1837 xbits = extra[n - base];
1838 f = tree[n].Freq;
1839 opt_len += (ulg) f *(bits + xbits);
Eric Andersencc8ed391999-10-05 16:24:54 +00001840
Erik Andersene49d5ec2000-02-08 19:58:47 +00001841 if (stree)
1842 static_len += (ulg) f *(stree[n].Len + xbits);
1843 }
1844 if (overflow == 0)
1845 return;
Eric Andersencc8ed391999-10-05 16:24:54 +00001846
Erik Andersene49d5ec2000-02-08 19:58:47 +00001847 Trace((stderr, "\nbit length overflow\n"));
1848 /* This happens for example on obj2 and pic of the Calgary corpus */
Eric Andersencc8ed391999-10-05 16:24:54 +00001849
Erik Andersene49d5ec2000-02-08 19:58:47 +00001850 /* Find the first bit length which could increase: */
1851 do {
1852 bits = max_length - 1;
1853 while (bl_count[bits] == 0)
1854 bits--;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001855 bl_count[bits]--; /* move one leaf down the tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001856 bl_count[bits + 1] += 2; /* move one overflow item as its brother */
1857 bl_count[max_length]--;
1858 /* The brother of the overflow item also moves one step up,
1859 * but this does not affect bl_count[max_length]
1860 */
1861 overflow -= 2;
1862 } while (overflow > 0);
1863
1864 /* Now recompute all bit lengths, scanning in increasing frequency.
1865 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
1866 * lengths instead of fixing only the wrong ones. This idea is taken
1867 * from 'ar' written by Haruhiko Okumura.)
1868 */
1869 for (bits = max_length; bits != 0; bits--) {
1870 n = bl_count[bits];
1871 while (n != 0) {
1872 m = heap[--h];
1873 if (m > max_code)
1874 continue;
1875 if (tree[m].Len != (unsigned) bits) {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001876 Trace((stderr, "code %d bits %d->%d\n", m, tree[m].Len,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001877 bits));
1878 opt_len +=
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001879 ((long) bits - (long) tree[m].Len) * (long) tree[m].Freq;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001880 tree[m].Len = (ush) bits;
1881 }
1882 n--;
1883 }
1884 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001885}
1886
1887/* ===========================================================================
1888 * Generate the codes for a given tree and bit counts (which need not be
1889 * optimal).
1890 * IN assertion: the array bl_count contains the bit length statistics for
1891 * the given tree and the field len is set for all tree elements.
1892 * OUT assertion: the field code is set for all tree elements of non
1893 * zero code length.
1894 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001895static void gen_codes(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00001896{
Erik Andersene49d5ec2000-02-08 19:58:47 +00001897 ush next_code[MAX_BITS + 1]; /* next code value for each bit length */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001898 ush code = 0; /* running code value */
1899 int bits; /* bit index */
1900 int n; /* code index */
Eric Andersencc8ed391999-10-05 16:24:54 +00001901
Erik Andersene49d5ec2000-02-08 19:58:47 +00001902 /* The distribution counts are first used to generate the code values
1903 * without bit reversal.
1904 */
1905 for (bits = 1; bits <= MAX_BITS; bits++) {
1906 next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
1907 }
1908 /* Check that the bit counts in bl_count are consistent. The last code
1909 * must be all ones.
1910 */
1911 Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
1912 "inconsistent bit counts");
1913 Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
Eric Andersencc8ed391999-10-05 16:24:54 +00001914
Erik Andersene49d5ec2000-02-08 19:58:47 +00001915 for (n = 0; n <= max_code; n++) {
1916 int len = tree[n].Len;
Eric Andersencc8ed391999-10-05 16:24:54 +00001917
Erik Andersene49d5ec2000-02-08 19:58:47 +00001918 if (len == 0)
1919 continue;
1920 /* Now reverse the bits */
1921 tree[n].Code = bi_reverse(next_code[len]++, len);
1922
1923 Tracec(tree != static_ltree,
1924 (stderr, "\nn %3d %c l %2d c %4x (%x) ", n,
1925 (isgraph(n) ? n : ' '), len, tree[n].Code,
1926 next_code[len] - 1));
1927 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001928}
1929
1930/* ===========================================================================
1931 * Construct one Huffman tree and assigns the code bit strings and lengths.
1932 * Update the total bit length for the current block.
1933 * IN assertion: the field freq is set for all tree elements.
1934 * OUT assertions: the fields len and code are set to the optimal bit length
1935 * and corresponding code. The length opt_len is updated; static_len is
1936 * also updated if stree is not null. The field max_code is set.
1937 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001938static void build_tree(tree_desc * desc)
Eric Andersencc8ed391999-10-05 16:24:54 +00001939{
Eric Andersen3073dfb2001-07-02 17:57:32 +00001940 ct_data *tree = desc->dyn_tree;
1941 ct_data *stree = desc->static_tree;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001942 int elems = desc->elems;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001943 int n, m; /* iterate over heap elements */
1944 int max_code = -1; /* largest code with non zero frequency */
1945 int node = elems; /* next internal node of the tree */
Eric Andersencc8ed391999-10-05 16:24:54 +00001946
Erik Andersene49d5ec2000-02-08 19:58:47 +00001947 /* Construct the initial heap, with least frequent element in
1948 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
1949 * heap[0] is not used.
1950 */
1951 heap_len = 0, heap_max = HEAP_SIZE;
Eric Andersencc8ed391999-10-05 16:24:54 +00001952
Erik Andersene49d5ec2000-02-08 19:58:47 +00001953 for (n = 0; n < elems; n++) {
1954 if (tree[n].Freq != 0) {
1955 heap[++heap_len] = max_code = n;
1956 depth[n] = 0;
1957 } else {
1958 tree[n].Len = 0;
1959 }
1960 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001961
Erik Andersene49d5ec2000-02-08 19:58:47 +00001962 /* The pkzip format requires that at least one distance code exists,
1963 * and that at least one bit should be sent even if there is only one
1964 * possible code. So to avoid special checks later on we force at least
1965 * two codes of non zero frequency.
1966 */
1967 while (heap_len < 2) {
1968 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00001969
Erik Andersene49d5ec2000-02-08 19:58:47 +00001970 tree[new].Freq = 1;
1971 depth[new] = 0;
1972 opt_len--;
1973 if (stree)
1974 static_len -= stree[new].Len;
1975 /* new is 0 or 1 so it does not have extra bits */
1976 }
1977 desc->max_code = max_code;
Eric Andersencc8ed391999-10-05 16:24:54 +00001978
Erik Andersene49d5ec2000-02-08 19:58:47 +00001979 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
1980 * establish sub-heaps of increasing lengths:
1981 */
1982 for (n = heap_len / 2; n >= 1; n--)
1983 pqdownheap(tree, n);
Eric Andersencc8ed391999-10-05 16:24:54 +00001984
Erik Andersene49d5ec2000-02-08 19:58:47 +00001985 /* Construct the Huffman tree by repeatedly combining the least two
1986 * frequent nodes.
1987 */
1988 do {
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00001989 pqremove(tree, n); /* n = node of least frequency */
1990 m = heap[SMALLEST]; /* m = node of next least frequency */
Eric Andersencc8ed391999-10-05 16:24:54 +00001991
Erik Andersene49d5ec2000-02-08 19:58:47 +00001992 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
1993 heap[--heap_max] = m;
1994
1995 /* Create a new node father of n and m */
1996 tree[node].Freq = tree[n].Freq + tree[m].Freq;
1997 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
1998 tree[n].Dad = tree[m].Dad = (ush) node;
Eric Andersencc8ed391999-10-05 16:24:54 +00001999#ifdef DUMP_BL_TREE
Erik Andersene49d5ec2000-02-08 19:58:47 +00002000 if (tree == bl_tree) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002001 bb_error_msg("\nnode %d(%d), sons %d(%d) %d(%d)",
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002002 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002003 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002004#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +00002005 /* and insert the new node in the heap */
2006 heap[SMALLEST] = node++;
2007 pqdownheap(tree, SMALLEST);
Eric Andersencc8ed391999-10-05 16:24:54 +00002008
Erik Andersene49d5ec2000-02-08 19:58:47 +00002009 } while (heap_len >= 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002010
Erik Andersene49d5ec2000-02-08 19:58:47 +00002011 heap[--heap_max] = heap[SMALLEST];
Eric Andersencc8ed391999-10-05 16:24:54 +00002012
Erik Andersene49d5ec2000-02-08 19:58:47 +00002013 /* At this point, the fields freq and dad are set. We can now
2014 * generate the bit lengths.
2015 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002016 gen_bitlen((tree_desc *) desc);
Eric Andersencc8ed391999-10-05 16:24:54 +00002017
Erik Andersene49d5ec2000-02-08 19:58:47 +00002018 /* The field len is now set, we can generate the bit codes */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002019 gen_codes((ct_data *) tree, max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002020}
2021
2022/* ===========================================================================
2023 * Scan a literal or distance tree to determine the frequencies of the codes
2024 * in the bit length tree. Updates opt_len to take into account the repeat
2025 * counts. (The contribution of the bit length codes will be added later
2026 * during the construction of bl_tree.)
2027 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002028static void scan_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00002029{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002030 int n; /* iterates over all tree elements */
2031 int prevlen = -1; /* last emitted length */
2032 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002033 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002034 int count = 0; /* repeat count of the current code */
2035 int max_count = 7; /* max repeat count */
2036 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002037
Erik Andersene49d5ec2000-02-08 19:58:47 +00002038 if (nextlen == 0)
2039 max_count = 138, min_count = 3;
2040 tree[max_code + 1].Len = (ush) 0xffff; /* guard */
Eric Andersencc8ed391999-10-05 16:24:54 +00002041
Erik Andersene49d5ec2000-02-08 19:58:47 +00002042 for (n = 0; n <= max_code; n++) {
2043 curlen = nextlen;
2044 nextlen = tree[n + 1].Len;
2045 if (++count < max_count && curlen == nextlen) {
2046 continue;
2047 } else if (count < min_count) {
2048 bl_tree[curlen].Freq += count;
2049 } else if (curlen != 0) {
2050 if (curlen != prevlen)
2051 bl_tree[curlen].Freq++;
2052 bl_tree[REP_3_6].Freq++;
2053 } else if (count <= 10) {
2054 bl_tree[REPZ_3_10].Freq++;
2055 } else {
2056 bl_tree[REPZ_11_138].Freq++;
2057 }
2058 count = 0;
2059 prevlen = curlen;
2060 if (nextlen == 0) {
2061 max_count = 138, min_count = 3;
2062 } else if (curlen == nextlen) {
2063 max_count = 6, min_count = 3;
2064 } else {
2065 max_count = 7, min_count = 4;
2066 }
2067 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002068}
2069
2070/* ===========================================================================
2071 * Send a literal or distance tree in compressed form, using the codes in
2072 * bl_tree.
2073 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002074static void send_tree(ct_data * tree, int max_code)
Eric Andersencc8ed391999-10-05 16:24:54 +00002075{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002076 int n; /* iterates over all tree elements */
2077 int prevlen = -1; /* last emitted length */
2078 int curlen; /* length of current code */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002079 int nextlen = tree[0].Len; /* length of next code */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002080 int count = 0; /* repeat count of the current code */
2081 int max_count = 7; /* max repeat count */
2082 int min_count = 4; /* min repeat count */
Eric Andersencc8ed391999-10-05 16:24:54 +00002083
Erik Andersene49d5ec2000-02-08 19:58:47 +00002084/* tree[max_code+1].Len = -1; *//* guard already set */
2085 if (nextlen == 0)
2086 max_count = 138, min_count = 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002087
Erik Andersene49d5ec2000-02-08 19:58:47 +00002088 for (n = 0; n <= max_code; n++) {
2089 curlen = nextlen;
2090 nextlen = tree[n + 1].Len;
2091 if (++count < max_count && curlen == nextlen) {
2092 continue;
2093 } else if (count < min_count) {
2094 do {
2095 send_code(curlen, bl_tree);
2096 } while (--count != 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002097
Erik Andersene49d5ec2000-02-08 19:58:47 +00002098 } else if (curlen != 0) {
2099 if (curlen != prevlen) {
2100 send_code(curlen, bl_tree);
2101 count--;
2102 }
2103 Assert(count >= 3 && count <= 6, " 3_6?");
2104 send_code(REP_3_6, bl_tree);
2105 send_bits(count - 3, 2);
Eric Andersencc8ed391999-10-05 16:24:54 +00002106
Erik Andersene49d5ec2000-02-08 19:58:47 +00002107 } else if (count <= 10) {
2108 send_code(REPZ_3_10, bl_tree);
2109 send_bits(count - 3, 3);
Eric Andersencc8ed391999-10-05 16:24:54 +00002110
Erik Andersene49d5ec2000-02-08 19:58:47 +00002111 } else {
2112 send_code(REPZ_11_138, bl_tree);
2113 send_bits(count - 11, 7);
2114 }
2115 count = 0;
2116 prevlen = curlen;
2117 if (nextlen == 0) {
2118 max_count = 138, min_count = 3;
2119 } else if (curlen == nextlen) {
2120 max_count = 6, min_count = 3;
2121 } else {
2122 max_count = 7, min_count = 4;
2123 }
2124 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002125}
2126
2127/* ===========================================================================
2128 * Construct the Huffman tree for the bit lengths and return the index in
2129 * bl_order of the last bit length code to send.
2130 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002131static int build_bl_tree(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00002132{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002133 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002134
Erik Andersene49d5ec2000-02-08 19:58:47 +00002135 /* Determine the bit length frequencies for literal and distance trees */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002136 scan_tree((ct_data *) dyn_ltree, l_desc.max_code);
2137 scan_tree((ct_data *) dyn_dtree, d_desc.max_code);
Eric Andersencc8ed391999-10-05 16:24:54 +00002138
Erik Andersene49d5ec2000-02-08 19:58:47 +00002139 /* Build the bit length tree: */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002140 build_tree((tree_desc *) (&bl_desc));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002141 /* opt_len now includes the length of the tree representations, except
2142 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2143 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002144
Erik Andersene49d5ec2000-02-08 19:58:47 +00002145 /* Determine the number of bit length codes to send. The pkzip format
2146 * requires that at least 4 bit length codes be sent. (appnote.txt says
2147 * 3 but the actual value used is 4.)
2148 */
2149 for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
2150 if (bl_tree[bl_order[max_blindex]].Len != 0)
2151 break;
2152 }
2153 /* Update opt_len to include the bit length tree and counts */
2154 opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002155 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002156
Erik Andersene49d5ec2000-02-08 19:58:47 +00002157 return max_blindex;
Eric Andersencc8ed391999-10-05 16:24:54 +00002158}
2159
2160/* ===========================================================================
2161 * Send the header for a block using dynamic Huffman trees: the counts, the
2162 * lengths of the bit length codes, the literal tree and the distance tree.
2163 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2164 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002165static void send_all_trees(int lcodes, int dcodes, int blcodes)
Eric Andersencc8ed391999-10-05 16:24:54 +00002166{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002167 int rank; /* index in bl_order */
Eric Andersencc8ed391999-10-05 16:24:54 +00002168
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002169 Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
Erik Andersene49d5ec2000-02-08 19:58:47 +00002170 Assert(lcodes <= L_CODES && dcodes <= D_CODES
2171 && blcodes <= BL_CODES, "too many codes");
2172 Tracev((stderr, "\nbl counts: "));
2173 send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */
2174 send_bits(dcodes - 1, 5);
2175 send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */
2176 for (rank = 0; rank < blcodes; rank++) {
2177 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2178 send_bits(bl_tree[bl_order[rank]].Len, 3);
2179 }
2180 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002181
Eric Andersen3073dfb2001-07-02 17:57:32 +00002182 send_tree((ct_data *) dyn_ltree, lcodes - 1); /* send the literal tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002183 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002184
Eric Andersen3073dfb2001-07-02 17:57:32 +00002185 send_tree((ct_data *) dyn_dtree, dcodes - 1); /* send the distance tree */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002186 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
Eric Andersencc8ed391999-10-05 16:24:54 +00002187}
2188
2189/* ===========================================================================
2190 * Determine the best encoding for the current block: dynamic trees, static
2191 * trees or store, and output the encoded block to the zip file. This function
2192 * returns the total compressed length for the file so far.
2193 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002194static ulg flush_block(char *buf, ulg stored_len, int eof)
Eric Andersencc8ed391999-10-05 16:24:54 +00002195{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002196 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002197 int max_blindex; /* index of last bit length code of non zero freq */
Eric Andersencc8ed391999-10-05 16:24:54 +00002198
Erik Andersene49d5ec2000-02-08 19:58:47 +00002199 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
Eric Andersencc8ed391999-10-05 16:24:54 +00002200
Erik Andersene49d5ec2000-02-08 19:58:47 +00002201 /* Check if the file is ascii or binary */
2202 if (*file_type == (ush) UNKNOWN)
2203 set_file_type();
Eric Andersencc8ed391999-10-05 16:24:54 +00002204
Erik Andersene49d5ec2000-02-08 19:58:47 +00002205 /* Construct the literal and distance trees */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002206 build_tree((tree_desc *) (&l_desc));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002207 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
Eric Andersencc8ed391999-10-05 16:24:54 +00002208
Eric Andersen3073dfb2001-07-02 17:57:32 +00002209 build_tree((tree_desc *) (&d_desc));
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002210 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", opt_len, static_len));
Erik Andersene49d5ec2000-02-08 19:58:47 +00002211 /* At this point, opt_len and static_len are the total bit lengths of
2212 * the compressed block data, excluding the tree representations.
2213 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002214
Erik Andersene49d5ec2000-02-08 19:58:47 +00002215 /* Build the bit length tree for the above two trees, and get the index
2216 * in bl_order of the last bit length code to send.
2217 */
2218 max_blindex = build_bl_tree();
Eric Andersencc8ed391999-10-05 16:24:54 +00002219
Erik Andersene49d5ec2000-02-08 19:58:47 +00002220 /* Determine the best encoding. Compute first the block length in bytes */
2221 opt_lenb = (opt_len + 3 + 7) >> 3;
2222 static_lenb = (static_len + 3 + 7) >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002223
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002224 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00002225 "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2226 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2227 last_lit, last_dist));
Eric Andersencc8ed391999-10-05 16:24:54 +00002228
Erik Andersene49d5ec2000-02-08 19:58:47 +00002229 if (static_lenb <= opt_lenb)
2230 opt_lenb = static_lenb;
Eric Andersencc8ed391999-10-05 16:24:54 +00002231
Erik Andersene49d5ec2000-02-08 19:58:47 +00002232 /* If compression failed and this is the first and last block,
2233 * and if the zip file can be seeked (to rewrite the local header),
2234 * the whole file is transformed into a stored file:
2235 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002236 if (stored_len <= opt_lenb && eof && compressed_len == 0L && seekable()) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002237 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2238 if (buf == (char *) 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002239 bb_error_msg("block vanished");
Eric Andersencc8ed391999-10-05 16:24:54 +00002240
Erik Andersene49d5ec2000-02-08 19:58:47 +00002241 copy_block(buf, (unsigned) stored_len, 0); /* without header */
2242 compressed_len = stored_len << 3;
2243 *file_method = STORED;
Eric Andersencc8ed391999-10-05 16:24:54 +00002244
Erik Andersene49d5ec2000-02-08 19:58:47 +00002245 } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) {
2246 /* 4: two words for the lengths */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002247 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2248 * Otherwise we can't have processed more than WSIZE input bytes since
2249 * the last block flush, because compression would have been
2250 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2251 * transform a block into a stored block.
2252 */
2253 send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */
2254 compressed_len = (compressed_len + 3 + 7) & ~7L;
2255 compressed_len += (stored_len + 4) << 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002256
Erik Andersene49d5ec2000-02-08 19:58:47 +00002257 copy_block(buf, (unsigned) stored_len, 1); /* with header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002258
Erik Andersene49d5ec2000-02-08 19:58:47 +00002259 } else if (static_lenb == opt_lenb) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002260 send_bits((STATIC_TREES << 1) + eof, 3);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002261 compress_block((ct_data *) static_ltree, (ct_data *) static_dtree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002262 compressed_len += 3 + static_len;
2263 } else {
2264 send_bits((DYN_TREES << 1) + eof, 3);
2265 send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1,
2266 max_blindex + 1);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002267 compress_block((ct_data *) dyn_ltree, (ct_data *) dyn_dtree);
Erik Andersene49d5ec2000-02-08 19:58:47 +00002268 compressed_len += 3 + opt_len;
2269 }
2270 Assert(compressed_len == bits_sent, "bad compressed size");
2271 init_block();
Eric Andersencc8ed391999-10-05 16:24:54 +00002272
Erik Andersene49d5ec2000-02-08 19:58:47 +00002273 if (eof) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00002274 bi_windup();
2275 compressed_len += 7; /* align on byte boundary */
2276 }
2277 Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3,
2278 compressed_len - 7 * eof));
Eric Andersencc8ed391999-10-05 16:24:54 +00002279
Erik Andersene49d5ec2000-02-08 19:58:47 +00002280 return compressed_len >> 3;
Eric Andersencc8ed391999-10-05 16:24:54 +00002281}
2282
2283/* ===========================================================================
2284 * Save the match info and tally the frequency counts. Return true if
2285 * the current block must be flushed.
2286 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002287static int ct_tally(int dist, int lc)
Eric Andersencc8ed391999-10-05 16:24:54 +00002288{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002289 l_buf[last_lit++] = (uch) lc;
2290 if (dist == 0) {
2291 /* lc is the unmatched char */
2292 dyn_ltree[lc].Freq++;
2293 } else {
2294 /* Here, lc is the match length - MIN_MATCH */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002295 dist--; /* dist = match distance - 1 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002296 Assert((ush) dist < (ush) MAX_DIST &&
2297 (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) &&
2298 (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match");
Eric Andersencc8ed391999-10-05 16:24:54 +00002299
Erik Andersene49d5ec2000-02-08 19:58:47 +00002300 dyn_ltree[length_code[lc] + LITERALS + 1].Freq++;
2301 dyn_dtree[d_code(dist)].Freq++;
Eric Andersencc8ed391999-10-05 16:24:54 +00002302
Erik Andersene49d5ec2000-02-08 19:58:47 +00002303 d_buf[last_dist++] = (ush) dist;
2304 flags |= flag_bit;
2305 }
2306 flag_bit <<= 1;
Eric Andersencc8ed391999-10-05 16:24:54 +00002307
Erik Andersene49d5ec2000-02-08 19:58:47 +00002308 /* Output the flags if they fill a byte: */
2309 if ((last_lit & 7) == 0) {
2310 flag_buf[last_flags++] = flags;
2311 flags = 0, flag_bit = 1;
2312 }
2313 /* Try to guess if it is profitable to stop the current block here */
2314 if ((last_lit & 0xfff) == 0) {
2315 /* Compute an upper bound for the compressed length */
2316 ulg out_length = (ulg) last_lit * 8L;
2317 ulg in_length = (ulg) strstart - block_start;
2318 int dcode;
2319
2320 for (dcode = 0; dcode < D_CODES; dcode++) {
2321 out_length +=
2322 (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]);
2323 }
2324 out_length >>= 3;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002325 Trace((stderr,
Erik Andersene49d5ec2000-02-08 19:58:47 +00002326 "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2327 last_lit, last_dist, in_length, out_length,
2328 100L - out_length * 100L / in_length));
2329 if (last_dist < last_lit / 2 && out_length < in_length / 2)
2330 return 1;
2331 }
2332 return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE);
2333 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
2334 * on 16 bit machines and because stored blocks are restricted to
2335 * 64K-1 bytes.
2336 */
Eric Andersencc8ed391999-10-05 16:24:54 +00002337}
2338
2339/* ===========================================================================
2340 * Send the block data compressed using the given Huffman trees
2341 */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002342static void compress_block(ct_data * ltree, ct_data * dtree)
Eric Andersencc8ed391999-10-05 16:24:54 +00002343{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002344 unsigned dist; /* distance of matched string */
2345 int lc; /* match length or unmatched char (if dist == 0) */
2346 unsigned lx = 0; /* running index in l_buf */
2347 unsigned dx = 0; /* running index in d_buf */
2348 unsigned fx = 0; /* running index in flag_buf */
2349 uch flag = 0; /* current flags */
2350 unsigned code; /* the code to send */
2351 int extra; /* number of extra bits to send */
Eric Andersencc8ed391999-10-05 16:24:54 +00002352
Erik Andersene49d5ec2000-02-08 19:58:47 +00002353 if (last_lit != 0)
2354 do {
2355 if ((lx & 7) == 0)
2356 flag = flag_buf[fx++];
2357 lc = l_buf[lx++];
2358 if ((flag & 1) == 0) {
2359 send_code(lc, ltree); /* send a literal byte */
2360 Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
2361 } else {
2362 /* Here, lc is the match length - MIN_MATCH */
2363 code = length_code[lc];
2364 send_code(code + LITERALS + 1, ltree); /* send the length code */
2365 extra = extra_lbits[code];
2366 if (extra != 0) {
2367 lc -= base_length[code];
2368 send_bits(lc, extra); /* send the extra length bits */
2369 }
2370 dist = d_buf[dx++];
2371 /* Here, dist is the match distance - 1 */
2372 code = d_code(dist);
2373 Assert(code < D_CODES, "bad d_code");
Eric Andersencc8ed391999-10-05 16:24:54 +00002374
Erik Andersene49d5ec2000-02-08 19:58:47 +00002375 send_code(code, dtree); /* send the distance code */
2376 extra = extra_dbits[code];
2377 if (extra != 0) {
2378 dist -= base_dist[code];
2379 send_bits(dist, extra); /* send the extra distance bits */
2380 }
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002381 } /* literal or match pair ? */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002382 flag >>= 1;
2383 } while (lx < last_lit);
Eric Andersencc8ed391999-10-05 16:24:54 +00002384
Erik Andersene49d5ec2000-02-08 19:58:47 +00002385 send_code(END_BLOCK, ltree);
Eric Andersencc8ed391999-10-05 16:24:54 +00002386}
2387
2388/* ===========================================================================
2389 * Set the file type to ASCII or BINARY, using a crude approximation:
2390 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
2391 * IN assertion: the fields freq of dyn_ltree are set and the total of all
2392 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
2393 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002394static void set_file_type(void)
Eric Andersencc8ed391999-10-05 16:24:54 +00002395{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002396 int n = 0;
2397 unsigned ascii_freq = 0;
2398 unsigned bin_freq = 0;
2399
2400 while (n < 7)
2401 bin_freq += dyn_ltree[n++].Freq;
2402 while (n < 128)
2403 ascii_freq += dyn_ltree[n++].Freq;
2404 while (n < LITERALS)
2405 bin_freq += dyn_ltree[n++].Freq;
2406 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
2407 if (*file_type == BINARY && translate_eol) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002408 bb_error_msg("-l used on binary file");
Erik Andersene49d5ec2000-02-08 19:58:47 +00002409 }
Eric Andersencc8ed391999-10-05 16:24:54 +00002410}
Erik Andersene49d5ec2000-02-08 19:58:47 +00002411
Eric Andersencc8ed391999-10-05 16:24:54 +00002412/* zip.c -- compress files to the gzip or pkzip format
2413 * Copyright (C) 1992-1993 Jean-loup Gailly
2414 * This is free software; you can redistribute it and/or modify it under the
2415 * terms of the GNU General Public License, see the file COPYING.
2416 */
2417
Eric Andersencc8ed391999-10-05 16:24:54 +00002418
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002419static ulg crc; /* crc on uncompressed file data */
2420static long header_bytes; /* number of bytes in gzip header */
Eric Andersencc8ed391999-10-05 16:24:54 +00002421
Eric Andersen39eb0402001-08-22 04:15:47 +00002422static void put_long(ulg n)
2423{
Aaron Lehmannb9df4702001-12-06 03:22:43 +00002424 put_short((n) & 0xffff);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002425 put_short(((ulg) (n)) >> 16);
Eric Andersen39eb0402001-08-22 04:15:47 +00002426}
2427
2428/* put_header_byte is used for the compressed output
2429 * - for the initial 4 bytes that can't overflow the buffer.
2430 */
2431#define put_header_byte(c) {outbuf[outcnt++]=(uch)(c);}
2432
Eric Andersencc8ed391999-10-05 16:24:54 +00002433/* ===========================================================================
2434 * Deflate in to out.
2435 * IN assertions: the input and output buffers are cleared.
2436 * The variables time_stamp and save_orig_name are initialized.
2437 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002438static int zip(int in, int out)
Eric Andersencc8ed391999-10-05 16:24:54 +00002439{
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002440 uch my_flags = 0; /* general purpose bit flags */
2441 ush attr = 0; /* ascii/binary flag */
2442 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
Eric Andersencc8ed391999-10-05 16:24:54 +00002443
Erik Andersene49d5ec2000-02-08 19:58:47 +00002444 ifd = in;
2445 ofd = out;
2446 outcnt = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +00002447
Erik Andersene49d5ec2000-02-08 19:58:47 +00002448 /* Write the header to the gzip file. See algorithm.doc for the format */
Eric Andersencc8ed391999-10-05 16:24:54 +00002449
Eric Andersen96bcfd31999-11-12 01:30:18 +00002450
Erik Andersene49d5ec2000-02-08 19:58:47 +00002451 method = DEFLATED;
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002452 put_header_byte(GZIP_MAGIC[0]); /* magic header */
Eric Andersen39eb0402001-08-22 04:15:47 +00002453 put_header_byte(GZIP_MAGIC[1]);
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002454 put_header_byte(DEFLATED); /* compression method */
Eric Andersencc8ed391999-10-05 16:24:54 +00002455
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002456 put_header_byte(my_flags); /* general flags */
Erik Andersene49d5ec2000-02-08 19:58:47 +00002457 put_long(time_stamp);
Eric Andersencc8ed391999-10-05 16:24:54 +00002458
Erik Andersene49d5ec2000-02-08 19:58:47 +00002459 /* Write deflated file to zip file */
2460 crc = updcrc(0, 0);
Eric Andersencc8ed391999-10-05 16:24:54 +00002461
Erik Andersene49d5ec2000-02-08 19:58:47 +00002462 bi_init(out);
2463 ct_init(&attr, &method);
2464 lm_init(&deflate_flags);
Eric Andersencc8ed391999-10-05 16:24:54 +00002465
Erik Andersene49d5ec2000-02-08 19:58:47 +00002466 put_byte((uch) deflate_flags); /* extra flags */
Glenn L McGrathd827e8b2002-08-22 13:21:26 +00002467 put_byte(OS_CODE); /* OS identifier */
Eric Andersencc8ed391999-10-05 16:24:54 +00002468
Erik Andersene49d5ec2000-02-08 19:58:47 +00002469 header_bytes = (long) outcnt;
Eric Andersencc8ed391999-10-05 16:24:54 +00002470
Erik Andersene49d5ec2000-02-08 19:58:47 +00002471 (void) deflate();
Eric Andersencc8ed391999-10-05 16:24:54 +00002472
Erik Andersene49d5ec2000-02-08 19:58:47 +00002473 /* Write the crc and uncompressed size */
2474 put_long(crc);
2475 put_long(isize);
2476 header_bytes += 2 * sizeof(long);
Eric Andersencc8ed391999-10-05 16:24:54 +00002477
Erik Andersene49d5ec2000-02-08 19:58:47 +00002478 flush_outbuf();
2479 return OK;
Eric Andersencc8ed391999-10-05 16:24:54 +00002480}
2481
2482
2483/* ===========================================================================
2484 * Read a new buffer from the current input file, perform end-of-line
2485 * translation, and update the crc and input file size.
2486 * IN assertion: size >= 2 (for end-of-line translation)
2487 */
Eric Andersen3073dfb2001-07-02 17:57:32 +00002488static int file_read(char *buf, unsigned size)
Eric Andersencc8ed391999-10-05 16:24:54 +00002489{
Erik Andersene49d5ec2000-02-08 19:58:47 +00002490 unsigned len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002491
Erik Andersene49d5ec2000-02-08 19:58:47 +00002492 Assert(insize == 0, "inbuf not empty");
Eric Andersencc8ed391999-10-05 16:24:54 +00002493
Erik Andersene49d5ec2000-02-08 19:58:47 +00002494 len = read(ifd, buf, size);
2495 if (len == (unsigned) (-1) || len == 0)
2496 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002497
Erik Andersene49d5ec2000-02-08 19:58:47 +00002498 crc = updcrc((uch *) buf, len);
2499 isize += (ulg) len;
2500 return (int) len;
Eric Andersencc8ed391999-10-05 16:24:54 +00002501}
Matt Kraai7918e1f2000-11-08 06:52:57 +00002502
2503/* ===========================================================================
2504 * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
2505 * (used for the compressed data only)
2506 */
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002507static void flush_outbuf(void)
Matt Kraai7918e1f2000-11-08 06:52:57 +00002508{
2509 if (outcnt == 0)
2510 return;
2511
2512 write_buf(ofd, (char *) outbuf, outcnt);
Matt Kraai7918e1f2000-11-08 06:52:57 +00002513 outcnt = 0;
2514}