Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Gzip implementation for busybox |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 4 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 5 | * 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 Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 12 | * Adjusted further by Erik Andersen <andersen@codepoet.org> to support |
| 13 | * files as well as stdin/stdout, and to generally behave itself wrt |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 14 | * command line handling. |
| 15 | * |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 16 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 17 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 18 | |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 19 | /* These defines are very important for BusyBox. Without these, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 20 | * huge chunks of ram are pre-allocated making the BusyBox bss |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 21 | * size Freaking Huge(tm), which is a bad thing.*/ |
| 22 | #define SMALL_MEM |
| 23 | #define DYN_ALLOC |
| 24 | |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 25 | #include <stdlib.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 27 | #include <string.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 28 | #include <unistd.h> |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 29 | #include <errno.h> |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 30 | #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 Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 39 | #include "busybox.h" |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 40 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 41 | typedef unsigned char uch; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 42 | typedef unsigned short ush; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 43 | typedef unsigned long ulg; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 44 | |
| 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 Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 51 | /* Only STORED and DEFLATED are supported by this BusyBox module */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 52 | #define STORED 0 |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 53 | /* methods 4 to 7 reserved */ |
| 54 | #define DEFLATED 8 |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 55 | |
| 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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 60 | * 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 Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 66 | # define INBUFSIZ 0x2000 /* input buffer size */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 67 | # else |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 68 | # define INBUFSIZ 0x8000 /* input buffer size */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 69 | # endif |
| 70 | #endif |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 71 | #define INBUF_EXTRA 64 /* required by unlzw() */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 72 | |
| 73 | #ifndef OUTBUFSIZ |
| 74 | # ifdef SMALL_MEM |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 75 | # define OUTBUFSIZ 8192 /* output buffer size */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 76 | # else |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 77 | # define OUTBUFSIZ 16384 /* output buffer size */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 78 | # endif |
| 79 | #endif |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 80 | #define OUTBUF_EXTRA 2048 /* required by unlzw() */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 81 | |
| 82 | #ifndef DIST_BUFSIZE |
| 83 | # ifdef SMALL_MEM |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 84 | # define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 85 | # else |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 86 | # define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 87 | # endif |
| 88 | #endif |
| 89 | |
| 90 | #ifdef DYN_ALLOC |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 91 | # define DECLARE(type, array, size) static type * array |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 92 | # define ALLOC(type, array, size) { \ |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 93 | array = (type*)xcalloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 94 | } |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 95 | # define FREE(array) {free(array), array=NULL;} |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 96 | #else |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 97 | # define DECLARE(type, array, size) static type array[size] |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 98 | # define ALLOC(type, array, size) |
| 99 | # define FREE(array) |
| 100 | #endif |
| 101 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 102 | #define tab_suffix window |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 103 | #define tab_prefix prev /* hash link (see deflate.c) */ |
| 104 | #define head (prev+WSIZE) /* hash head (see deflate.c) */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 105 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 106 | static long bytes_in; /* number of input bytes */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 107 | |
| 108 | #define isize bytes_in |
| 109 | /* for compatibility with old zip sources (to be cleaned) */ |
| 110 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 111 | typedef int file_t; /* Do not use stdio */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 112 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 113 | #define NO_FILE (-1) /* in memory compression */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 114 | |
| 115 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 116 | #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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 121 | |
| 122 | /* gzip flag byte */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 123 | #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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 129 | |
| 130 | /* internal file attribute */ |
| 131 | #define UNKNOWN 0xffff |
| 132 | #define BINARY 0 |
| 133 | #define ASCII 1 |
| 134 | |
| 135 | #ifndef WSIZE |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 136 | # define WSIZE 0x8000 /* window size--must be a power of two, and */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 137 | #endif /* at least 32K for zip's deflate method */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 138 | |
| 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 Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 153 | /* put_byte is used for the compressed output */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 154 | #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\ |
| 155 | flush_outbuf();} |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 156 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 157 | |
| 158 | /* Output a 32 bit value to the bit stream, lsb first */ |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 159 | #if 0 |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 160 | #define put_long(n) { \ |
| 161 | put_short((n) & 0xffff); \ |
| 162 | put_short(((ulg)(n)) >> 16); \ |
| 163 | } |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 164 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 165 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 166 | #define seekable() 0 /* force sequential output */ |
| 167 | #define translate_eol 0 /* no option -a yet */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 168 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 169 | /* Diagnostic functions */ |
| 170 | #ifdef DEBUG |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 171 | # define Assert(cond,msg) {if(!(cond)) bb_error_msg(msg);} |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 172 | # 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 Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 189 | #ifndef MAX_PATH_LEN |
| 190 | # define MAX_PATH_LEN 1024 /* max pathname length */ |
| 191 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 192 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 193 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 194 | /* from zip.c: */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 195 | static int zip(int in, int out); |
| 196 | static int file_read(char *buf, unsigned size); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 197 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 198 | /* from deflate.c */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 199 | static void lm_init(ush * flags); |
| 200 | static ulg deflate(void); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 201 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 202 | /* from trees.c */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 203 | static void ct_init(ush * attr, int *methodp); |
| 204 | static int ct_tally(int dist, int lc); |
| 205 | static ulg flush_block(char *buf, ulg stored_len, int eof); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 206 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 207 | /* from bits.c */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 208 | static void bi_init(file_t zipfile); |
| 209 | static void send_bits(int value, int length); |
| 210 | static unsigned bi_reverse(unsigned value, int length); |
| 211 | static void bi_windup(void); |
| 212 | static void copy_block(char *buf, unsigned len, int header); |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 213 | static int (*read_buf) (char *buf, unsigned size); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 214 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 215 | /* from util.c: */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 216 | static void flush_outbuf(void); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 217 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 218 | /* 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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 224 | #ifndef BITS |
| 225 | # define BITS 16 |
| 226 | #endif |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 227 | #define INIT_BITS 9 /* Initial number of bits per code */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 228 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 229 | #define BIT_MASK 0x1f /* Mask for 'number of compression bits' */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 230 | /* 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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 239 | /* 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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 249 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 250 | /* Common defaults */ |
| 251 | |
| 252 | #ifndef OS_CODE |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 253 | # define OS_CODE 0x03 /* assume Unix */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 254 | #endif |
| 255 | |
| 256 | #ifndef PATH_SEP |
| 257 | # define PATH_SEP '/' |
| 258 | #endif |
| 259 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 260 | #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 Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 274 | /* global buffers */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 275 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 276 | DECLARE(uch, inbuf, INBUFSIZ + INBUF_EXTRA); |
| 277 | DECLARE(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA); |
| 278 | DECLARE(ush, d_buf, DIST_BUFSIZE); |
| 279 | DECLARE(uch, window, 2L * WSIZE); |
| 280 | DECLARE(ush, tab_prefix, 1L << BITS); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 281 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 282 | static int foreground; /* set if program run in foreground */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 283 | static int method = DEFLATED; /* compression method */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 284 | static int exit_code = OK; /* program exit code */ |
| 285 | static int part_nb; /* number of parts in .gz file */ |
| 286 | static long time_stamp; /* original time stamp (modification time) */ |
| 287 | static long ifile_size; /* input file size, -1 for devices (debug only) */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 288 | static char z_suffix[MAX_SUFFIX + 1]; /* default suffix (can be set with --suffix) */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 289 | static int z_len; /* strlen(z_suffix) */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 290 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 291 | static int ifd; /* input file descriptor */ |
| 292 | static int ofd; /* output file descriptor */ |
| 293 | static unsigned insize; /* valid bytes in inbuf */ |
| 294 | static unsigned outcnt; /* bytes in output buffer */ |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 295 | |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 296 | static uint32_t *crc_32_tab; |
Aaron Lehmann | b9df470 | 2001-12-06 03:22:43 +0000 | [diff] [blame] | 297 | |
| 298 | /* Output a 16 bit value, lsb first */ |
| 299 | static void put_short(ush w) |
| 300 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 301 | if (outcnt < OUTBUFSIZ - 2) { |
| 302 | outbuf[outcnt++] = (uch) ((w) & 0xff); |
| 303 | outbuf[outcnt++] = (uch) ((ush) (w) >> 8); |
| 304 | } else { |
| 305 | put_byte((uch) ((w) & 0xff)); |
| 306 | put_byte((uch) ((ush) (w) >> 8)); |
| 307 | } |
Aaron Lehmann | b9df470 | 2001-12-06 03:22:43 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 310 | /* ======================================================================== |
| 311 | * Signal and error handler. |
| 312 | */ |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 313 | static void abort_gzip(int ATTRIBUTE_UNUSED ignored) |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 314 | { |
| 315 | exit(ERROR); |
| 316 | } |
| 317 | |
| 318 | /* =========================================================================== |
| 319 | * Clear input and output buffers |
| 320 | */ |
| 321 | static void clear_bufs(void) |
| 322 | { |
| 323 | outcnt = 0; |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 324 | insize = 0; |
| 325 | bytes_in = 0L; |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 328 | /* =========================================================================== |
| 329 | * Does the same as write(), but also handles partial pipe writes and checks |
| 330 | * for error return. |
| 331 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 332 | static void write_buf(int fd, void *buf, unsigned cnt) |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 333 | { |
| 334 | unsigned n; |
| 335 | |
| 336 | while ((n = write(fd, buf, cnt)) != cnt) { |
Rob Landley | ec4f3d9 | 2004-12-17 05:23:36 +0000 | [diff] [blame] | 337 | if (n == (unsigned) (-1)) bb_error_msg_and_die("can't write"); |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 338 | cnt -= n; |
| 339 | buf = (void *) ((char *) buf + n); |
| 340 | } |
| 341 | } |
| 342 | |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 343 | /* =========================================================================== |
| 344 | * Run a set of bytes through the crc shift register. If s is a NULL |
| 345 | * pointer, then initialize the crc shift register contents instead. |
| 346 | * Return the current crc in either case. |
| 347 | */ |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 348 | static uint32_t updcrc(uch * s, unsigned n) |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 349 | { |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 350 | static uint32_t crc = ~0; /* shift register contents */ |
| 351 | uint32_t c; /* temporary variable */ |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 352 | |
| 353 | if (s == NULL) { |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 354 | c = ~0; |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 355 | } else { |
| 356 | c = crc; |
| 357 | if (n) |
| 358 | do { |
| 359 | c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8); |
| 360 | } while (--n); |
| 361 | } |
| 362 | crc = c; |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 363 | return ~c; |
Glenn L McGrath | f58efb5 | 2001-03-28 05:35:16 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 366 | /* bits.c -- output variable-length bit strings |
| 367 | * Copyright (C) 1992-1993 Jean-loup Gailly |
| 368 | * This is free software; you can redistribute it and/or modify it under the |
| 369 | * terms of the GNU General Public License, see the file COPYING. |
| 370 | */ |
| 371 | |
| 372 | |
| 373 | /* |
| 374 | * PURPOSE |
| 375 | * |
| 376 | * Output variable-length bit strings. Compression can be done |
| 377 | * to a file or to memory. (The latter is not supported in this version.) |
| 378 | * |
| 379 | * DISCUSSION |
| 380 | * |
| 381 | * The PKZIP "deflate" file format interprets compressed file data |
| 382 | * as a sequence of bits. Multi-bit strings in the file may cross |
| 383 | * byte boundaries without restriction. |
| 384 | * |
| 385 | * The first bit of each byte is the low-order bit. |
| 386 | * |
| 387 | * The routines in this file allow a variable-length bit value to |
| 388 | * be output right-to-left (useful for literal values). For |
| 389 | * left-to-right output (useful for code strings from the tree routines), |
| 390 | * the bits must have been reversed first with bi_reverse(). |
| 391 | * |
| 392 | * For in-memory compression, the compressed bit stream goes directly |
| 393 | * into the requested output buffer. The input data is read in blocks |
| 394 | * by the mem_read() function. The buffer is limited to 64K on 16 bit |
| 395 | * machines. |
| 396 | * |
| 397 | * INTERFACE |
| 398 | * |
| 399 | * void bi_init (FILE *zipfile) |
| 400 | * Initialize the bit string routines. |
| 401 | * |
| 402 | * void send_bits (int value, int length) |
| 403 | * Write out a bit string, taking the source bits right to |
| 404 | * left. |
| 405 | * |
| 406 | * int bi_reverse (int value, int length) |
| 407 | * Reverse the bits of a bit string, taking the source bits left to |
| 408 | * right and emitting them right to left. |
| 409 | * |
| 410 | * void bi_windup (void) |
| 411 | * Write out any remaining bits in an incomplete byte. |
| 412 | * |
| 413 | * void copy_block(char *buf, unsigned len, int header) |
| 414 | * Copy a stored block to the zip file, storing first the length and |
| 415 | * its one's complement if requested. |
| 416 | * |
| 417 | */ |
| 418 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 419 | /* =========================================================================== |
| 420 | * Local data used by the "bit string" routines. |
| 421 | */ |
| 422 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 423 | static file_t zfile; /* output gzip file */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 424 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 425 | static unsigned short bi_buf; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 426 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 427 | /* Output buffer. bits are inserted starting at the bottom (least significant |
| 428 | * bits). |
| 429 | */ |
| 430 | |
| 431 | #define Buf_size (8 * 2*sizeof(char)) |
| 432 | /* Number of bits used within bi_buf. (bi_buf might be implemented on |
| 433 | * more than 16 bits on some systems.) |
| 434 | */ |
| 435 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 436 | static int bi_valid; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 437 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 438 | /* Current input function. Set to mem_read for in-memory compression */ |
| 439 | |
| 440 | #ifdef DEBUG |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 441 | ulg bits_sent; /* bit length of the compressed data */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 442 | #endif |
| 443 | |
| 444 | /* =========================================================================== |
| 445 | * Initialize the bit string routines. |
| 446 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 447 | static void bi_init(file_t zipfile) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 448 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 449 | zfile = zipfile; |
| 450 | bi_buf = 0; |
| 451 | bi_valid = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 452 | #ifdef DEBUG |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 453 | bits_sent = 0L; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 454 | #endif |
| 455 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 456 | /* Set the defaults for file compression. They are set by memcompress |
| 457 | * for in-memory compression. |
| 458 | */ |
| 459 | if (zfile != NO_FILE) { |
| 460 | read_buf = file_read; |
| 461 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | /* =========================================================================== |
| 465 | * Send a value on a given number of bits. |
| 466 | * IN assertion: length <= 16 and value fits in length bits. |
| 467 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 468 | static void send_bits(int value, int length) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 469 | { |
| 470 | #ifdef DEBUG |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 471 | Tracev((stderr, " l %2d v %4x ", length, value)); |
| 472 | Assert(length > 0 && length <= 15, "invalid length"); |
| 473 | bits_sent += (ulg) length; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 474 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 475 | /* If not enough room in bi_buf, use (valid) bits from bi_buf and |
| 476 | * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid)) |
| 477 | * unused bits in value. |
| 478 | */ |
| 479 | if (bi_valid > (int) Buf_size - length) { |
| 480 | bi_buf |= (value << bi_valid); |
| 481 | put_short(bi_buf); |
| 482 | bi_buf = (ush) value >> (Buf_size - bi_valid); |
| 483 | bi_valid += length - Buf_size; |
| 484 | } else { |
| 485 | bi_buf |= value << bi_valid; |
| 486 | bi_valid += length; |
| 487 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | /* =========================================================================== |
| 491 | * Reverse the first len bits of a code, using straightforward code (a faster |
| 492 | * method would use a table) |
| 493 | * IN assertion: 1 <= len <= 15 |
| 494 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 495 | static unsigned bi_reverse(unsigned code, int len) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 496 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 497 | register unsigned res = 0; |
| 498 | |
| 499 | do { |
| 500 | res |= code & 1; |
| 501 | code >>= 1, res <<= 1; |
| 502 | } while (--len > 0); |
| 503 | return res >> 1; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | /* =========================================================================== |
| 507 | * Write out any remaining bits in an incomplete byte. |
| 508 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 509 | static void bi_windup(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 510 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 511 | if (bi_valid > 8) { |
| 512 | put_short(bi_buf); |
| 513 | } else if (bi_valid > 0) { |
| 514 | put_byte(bi_buf); |
| 515 | } |
| 516 | bi_buf = 0; |
| 517 | bi_valid = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 518 | #ifdef DEBUG |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 519 | bits_sent = (bits_sent + 7) & ~7; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 520 | #endif |
| 521 | } |
| 522 | |
| 523 | /* =========================================================================== |
| 524 | * Copy a stored block to the zip file, storing first the length and its |
| 525 | * one's complement if requested. |
| 526 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 527 | static void copy_block(char *buf, unsigned len, int header) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 528 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 529 | bi_windup(); /* align on byte boundary */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 530 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 531 | if (header) { |
| 532 | put_short((ush) len); |
| 533 | put_short((ush) ~ len); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 534 | #ifdef DEBUG |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 535 | bits_sent += 2 * 16; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 536 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 537 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 538 | #ifdef DEBUG |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 539 | bits_sent += (ulg) len << 3; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 540 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 541 | while (len--) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 542 | put_byte(*buf++); |
| 543 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 544 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 545 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 546 | /* deflate.c -- compress data using the deflation algorithm |
| 547 | * Copyright (C) 1992-1993 Jean-loup Gailly |
| 548 | * This is free software; you can redistribute it and/or modify it under the |
| 549 | * terms of the GNU General Public License, see the file COPYING. |
| 550 | */ |
| 551 | |
| 552 | /* |
| 553 | * PURPOSE |
| 554 | * |
| 555 | * Identify new text as repetitions of old text within a fixed- |
| 556 | * length sliding window trailing behind the new text. |
| 557 | * |
| 558 | * DISCUSSION |
| 559 | * |
| 560 | * The "deflation" process depends on being able to identify portions |
| 561 | * of the input text which are identical to earlier input (within a |
| 562 | * sliding window trailing behind the input currently being processed). |
| 563 | * |
| 564 | * The most straightforward technique turns out to be the fastest for |
| 565 | * most input files: try all possible matches and select the longest. |
| 566 | * The key feature of this algorithm is that insertions into the string |
| 567 | * dictionary are very simple and thus fast, and deletions are avoided |
| 568 | * completely. Insertions are performed at each input character, whereas |
| 569 | * string matches are performed only when the previous match ends. So it |
| 570 | * is preferable to spend more time in matches to allow very fast string |
| 571 | * insertions and avoid deletions. The matching algorithm for small |
| 572 | * strings is inspired from that of Rabin & Karp. A brute force approach |
| 573 | * is used to find longer strings when a small match has been found. |
| 574 | * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze |
| 575 | * (by Leonid Broukhis). |
| 576 | * A previous version of this file used a more sophisticated algorithm |
| 577 | * (by Fiala and Greene) which is guaranteed to run in linear amortized |
| 578 | * time, but has a larger average cost, uses more memory and is patented. |
| 579 | * However the F&G algorithm may be faster for some highly redundant |
| 580 | * files if the parameter max_chain_length (described below) is too large. |
| 581 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 582 | * ACKNOWLEDGMENTS |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 583 | * |
| 584 | * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and |
| 585 | * I found it in 'freeze' written by Leonid Broukhis. |
| 586 | * Thanks to many info-zippers for bug reports and testing. |
| 587 | * |
| 588 | * REFERENCES |
| 589 | * |
| 590 | * APPNOTE.TXT documentation file in PKZIP 1.93a distribution. |
| 591 | * |
| 592 | * A description of the Rabin and Karp algorithm is given in the book |
| 593 | * "Algorithms" by R. Sedgewick, Addison-Wesley, p252. |
| 594 | * |
| 595 | * Fiala,E.R., and Greene,D.H. |
| 596 | * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595 |
| 597 | * |
| 598 | * INTERFACE |
| 599 | * |
| 600 | * void lm_init (int pack_level, ush *flags) |
| 601 | * Initialize the "longest match" routines for a new file |
| 602 | * |
| 603 | * ulg deflate (void) |
| 604 | * Processes a new input file and return its compressed length. Sets |
| 605 | * the compressed length, crc, deflate flags and internal file |
| 606 | * attributes. |
| 607 | */ |
| 608 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 609 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 610 | /* =========================================================================== |
| 611 | * Configuration parameters |
| 612 | */ |
| 613 | |
| 614 | /* Compile with MEDIUM_MEM to reduce the memory requirements or |
| 615 | * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the |
| 616 | * entire input file can be held in memory (not possible on 16 bit systems). |
| 617 | * Warning: defining these symbols affects HASH_BITS (see below) and thus |
| 618 | * affects the compression ratio. The compressed output |
| 619 | * is still correct, and might even be smaller in some cases. |
| 620 | */ |
| 621 | |
| 622 | #ifdef SMALL_MEM |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 623 | # define HASH_BITS 13 /* Number of bits used to hash strings */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 624 | #endif |
| 625 | #ifdef MEDIUM_MEM |
| 626 | # define HASH_BITS 14 |
| 627 | #endif |
| 628 | #ifndef HASH_BITS |
| 629 | # define HASH_BITS 15 |
| 630 | /* For portability to 16 bit machines, do not use values above 15. */ |
| 631 | #endif |
| 632 | |
| 633 | /* To save space (see unlzw.c), we overlay prev+head with tab_prefix and |
| 634 | * window with tab_suffix. Check that we can do this: |
| 635 | */ |
| 636 | #if (WSIZE<<1) > (1<<BITS) |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 637 | # error cannot overlay window with tab_suffix and prev with tab_prefix0 |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 638 | #endif |
| 639 | #if HASH_BITS > BITS-1 |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 640 | # error cannot overlay head with tab_prefix1 |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 641 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 642 | #define HASH_SIZE (unsigned)(1<<HASH_BITS) |
| 643 | #define HASH_MASK (HASH_SIZE-1) |
| 644 | #define WMASK (WSIZE-1) |
| 645 | /* HASH_SIZE and WSIZE must be powers of two */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 646 | #define NIL 0 |
| 647 | /* Tail of hash chains */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 648 | #define FAST 4 |
| 649 | #define SLOW 2 |
| 650 | /* speed options for the general purpose bit flag */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 651 | #ifndef TOO_FAR |
| 652 | # define TOO_FAR 4096 |
| 653 | #endif |
| 654 | /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 655 | /* =========================================================================== |
| 656 | * Local data used by the "longest match" routines. |
| 657 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 658 | typedef ush Pos; |
| 659 | typedef unsigned IPos; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 660 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 661 | /* A Pos is an index in the character window. We use short instead of int to |
| 662 | * save space in the various tables. IPos is used only for parameter passing. |
| 663 | */ |
| 664 | |
| 665 | /* DECLARE(uch, window, 2L*WSIZE); */ |
| 666 | /* Sliding window. Input bytes are read into the second half of the window, |
| 667 | * and move to the first half later to keep a dictionary of at least WSIZE |
| 668 | * bytes. With this organization, matches are limited to a distance of |
| 669 | * WSIZE-MAX_MATCH bytes, but this ensures that IO is always |
| 670 | * performed with a length multiple of the block size. Also, it limits |
| 671 | * the window size to 64K, which is quite useful on MSDOS. |
| 672 | * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would |
| 673 | * be less efficient). |
| 674 | */ |
| 675 | |
| 676 | /* DECLARE(Pos, prev, WSIZE); */ |
| 677 | /* Link to older string with same hash index. To limit the size of this |
| 678 | * array to 64K, this link is maintained only for the last 32K strings. |
| 679 | * An index in this array is thus a window index modulo 32K. |
| 680 | */ |
| 681 | |
| 682 | /* DECLARE(Pos, head, 1<<HASH_BITS); */ |
| 683 | /* Heads of the hash chains or NIL. */ |
| 684 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 685 | static const ulg window_size = (ulg) 2 * WSIZE; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 686 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 687 | /* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the |
| 688 | * input file length plus MIN_LOOKAHEAD. |
| 689 | */ |
| 690 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 691 | static long block_start; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 692 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 693 | /* window position at the beginning of the current output block. Gets |
| 694 | * negative when the window is moved backwards. |
| 695 | */ |
| 696 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 697 | static unsigned ins_h; /* hash index of string to be inserted */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 698 | |
| 699 | #define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH) |
| 700 | /* Number of bits by which ins_h and del_h must be shifted at each |
| 701 | * input step. It must be such that after MIN_MATCH steps, the oldest |
| 702 | * byte no longer takes part in the hash key, that is: |
| 703 | * H_SHIFT * MIN_MATCH >= HASH_BITS |
| 704 | */ |
| 705 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 706 | static unsigned int prev_length; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 707 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 708 | /* Length of the best match at previous step. Matches not greater than this |
| 709 | * are discarded. This is used in the lazy match evaluation. |
| 710 | */ |
| 711 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 712 | static unsigned strstart; /* start of string to insert */ |
| 713 | static unsigned match_start; /* start of matching string */ |
| 714 | static int eofile; /* flag set at end of input file */ |
| 715 | static unsigned lookahead; /* number of valid bytes ahead in window */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 716 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 717 | enum { |
| 718 | max_chain_length = 4096, |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 719 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 720 | /* To speed up deflation, hash chains are never searched beyond this length. |
| 721 | * A higher limit improves compression ratio but degrades the speed. |
| 722 | */ |
| 723 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 724 | max_lazy_match = 258, |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 725 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 726 | /* Attempt to find a better match only when the current match is strictly |
| 727 | * smaller than this value. This mechanism is used only for compression |
| 728 | * levels >= 4. |
| 729 | */ |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 730 | max_insert_length = max_lazy_match, |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 731 | /* Insert new strings in the hash table only if the match length |
| 732 | * is not greater than this length. This saves time but degrades compression. |
| 733 | * max_insert_length is used only for compression levels <= 3. |
| 734 | */ |
| 735 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 736 | good_match = 32, |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 737 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 738 | /* Use a faster search when the previous match is longer than this */ |
| 739 | |
| 740 | |
| 741 | /* Values for max_lazy_match, good_match and max_chain_length, depending on |
| 742 | * the desired pack level (0..9). The values given below have been tuned to |
| 743 | * exclude worst case performance for pathological files. Better values may be |
| 744 | * found for specific files. |
| 745 | */ |
| 746 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 747 | nice_match = 258 /* Stop searching when current match exceeds this */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 748 | |
| 749 | /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 |
| 750 | * For deflate_fast() (levels <= 3) good is ignored and lazy has a different |
| 751 | * meaning. |
| 752 | */ |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 753 | }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 754 | |
| 755 | #define EQUAL 0 |
| 756 | /* result of memcmp for equal strings */ |
| 757 | |
| 758 | /* =========================================================================== |
| 759 | * Prototypes for local functions. |
| 760 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 761 | static void fill_window(void); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 762 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 763 | static int longest_match(IPos cur_match); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 764 | |
| 765 | #ifdef DEBUG |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 766 | static void check_match(IPos start, IPos match, int length); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 767 | #endif |
| 768 | |
| 769 | /* =========================================================================== |
| 770 | * Update a hash value with the given input byte |
| 771 | * IN assertion: all calls to to UPDATE_HASH are made with consecutive |
| 772 | * input characters, so that a running hash key can be computed from the |
| 773 | * previous key instead of complete recalculation each time. |
| 774 | */ |
| 775 | #define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK) |
| 776 | |
| 777 | /* =========================================================================== |
| 778 | * Insert string s in the dictionary and set match_head to the previous head |
| 779 | * of the hash chain (the most recent string with same hash key). Return |
| 780 | * the previous length of the hash chain. |
| 781 | * IN assertion: all calls to to INSERT_STRING are made with consecutive |
| 782 | * input characters and the first MIN_MATCH bytes of s are valid |
| 783 | * (except for the last MIN_MATCH-1 bytes of the input file). |
| 784 | */ |
| 785 | #define INSERT_STRING(s, match_head) \ |
| 786 | (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \ |
| 787 | prev[(s) & WMASK] = match_head = head[ins_h], \ |
| 788 | head[ins_h] = (s)) |
| 789 | |
| 790 | /* =========================================================================== |
| 791 | * Initialize the "longest match" routines for a new file |
| 792 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 793 | static void lm_init(ush * flags) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 794 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 795 | register unsigned j; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 796 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 797 | /* Initialize the hash table. */ |
Rob Landley | ec4f3d9 | 2004-12-17 05:23:36 +0000 | [diff] [blame] | 798 | memset(head, 0, HASH_SIZE * sizeof(*head)); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 799 | /* prev will be initialized on the fly */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 800 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 801 | *flags |= SLOW; |
| 802 | /* ??? reduce max_chain_length for binary files */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 803 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 804 | strstart = 0; |
| 805 | block_start = 0L; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 806 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 807 | lookahead = read_buf((char *) window, |
| 808 | sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 809 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 810 | if (lookahead == 0 || lookahead == (unsigned) EOF) { |
| 811 | eofile = 1, lookahead = 0; |
| 812 | return; |
| 813 | } |
| 814 | eofile = 0; |
| 815 | /* Make sure that we always have enough lookahead. This is important |
| 816 | * if input comes from a device such as a tty. |
| 817 | */ |
| 818 | while (lookahead < MIN_LOOKAHEAD && !eofile) |
| 819 | fill_window(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 820 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 821 | ins_h = 0; |
| 822 | for (j = 0; j < MIN_MATCH - 1; j++) |
| 823 | UPDATE_HASH(ins_h, window[j]); |
| 824 | /* If lookahead < MIN_MATCH, ins_h is garbage, but this is |
| 825 | * not important since only literal bytes will be emitted. |
| 826 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 827 | } |
| 828 | |
| 829 | /* =========================================================================== |
| 830 | * Set match_start to the longest match starting at the given string and |
| 831 | * return its length. Matches shorter or equal to prev_length are discarded, |
| 832 | * in which case the result is equal to prev_length and match_start is |
| 833 | * garbage. |
| 834 | * IN assertions: cur_match is the head of the hash chain for the current |
| 835 | * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 |
| 836 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 837 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 838 | /* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or |
| 839 | * match.s. The code is functionally equivalent, so you can use the C version |
| 840 | * if desired. |
| 841 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 842 | static int longest_match(IPos cur_match) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 843 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 844 | unsigned chain_length = max_chain_length; /* max hash chain length */ |
| 845 | register uch *scan = window + strstart; /* current string */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 846 | register uch *match; /* matched string */ |
| 847 | register int len; /* length of current match */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 848 | int best_len = prev_length; /* best match length so far */ |
| 849 | IPos limit = |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 850 | strstart > (IPos) MAX_DIST ? strstart - (IPos) MAX_DIST : NIL; |
| 851 | /* Stop when cur_match becomes <= limit. To simplify the code, |
| 852 | * we prevent matches with the string of window index 0. |
| 853 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 854 | |
| 855 | /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16. |
| 856 | * It is easy to get rid of this optimization if necessary. |
| 857 | */ |
| 858 | #if HASH_BITS < 8 || MAX_MATCH != 258 |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 859 | # error Code too clever |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 860 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 861 | register uch *strend = window + strstart + MAX_MATCH; |
| 862 | register uch scan_end1 = scan[best_len - 1]; |
| 863 | register uch scan_end = scan[best_len]; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 864 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 865 | /* Do not waste too much time if we already have a good match: */ |
| 866 | if (prev_length >= good_match) { |
| 867 | chain_length >>= 2; |
| 868 | } |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 869 | Assert(strstart <= window_size - MIN_LOOKAHEAD, "insufficient lookahead"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 870 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 871 | do { |
| 872 | Assert(cur_match < strstart, "no future"); |
| 873 | match = window + cur_match; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 874 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 875 | /* Skip to next match if the match length cannot increase |
| 876 | * or if the match length is less than 2: |
| 877 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 878 | if (match[best_len] != scan_end || |
| 879 | match[best_len - 1] != scan_end1 || |
| 880 | *match != *scan || *++match != scan[1]) |
| 881 | continue; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 882 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 883 | /* The check at best_len-1 can be removed because it will be made |
| 884 | * again later. (This heuristic is not always a win.) |
| 885 | * It is not necessary to compare scan[2] and match[2] since they |
| 886 | * are always equal when the other bytes match, given that |
| 887 | * the hash keys are equal and that HASH_BITS >= 8. |
| 888 | */ |
| 889 | scan += 2, match++; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 890 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 891 | /* We check for insufficient lookahead only every 8th comparison; |
| 892 | * the 256th check will be made at strstart+258. |
| 893 | */ |
| 894 | do { |
| 895 | } while (*++scan == *++match && *++scan == *++match && |
| 896 | *++scan == *++match && *++scan == *++match && |
| 897 | *++scan == *++match && *++scan == *++match && |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 898 | *++scan == *++match && *++scan == *++match && scan < strend); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 899 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 900 | len = MAX_MATCH - (int) (strend - scan); |
| 901 | scan = strend - MAX_MATCH; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 902 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 903 | if (len > best_len) { |
| 904 | match_start = cur_match; |
| 905 | best_len = len; |
| 906 | if (len >= nice_match) |
| 907 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 908 | scan_end1 = scan[best_len - 1]; |
| 909 | scan_end = scan[best_len]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 910 | } |
| 911 | } while ((cur_match = prev[cur_match & WMASK]) > limit |
| 912 | && --chain_length != 0); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 913 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 914 | return best_len; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 915 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 916 | |
| 917 | #ifdef DEBUG |
| 918 | /* =========================================================================== |
| 919 | * Check that the match at match_start is indeed a match. |
| 920 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 921 | static void check_match(IPos start, IPos match, int length) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 922 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 923 | /* check that the match is indeed a match */ |
| 924 | if (memcmp((char *) window + match, |
| 925 | (char *) window + start, length) != EQUAL) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 926 | bb_error_msg(" start %d, match %d, length %d", start, match, length); |
| 927 | bb_error_msg("invalid match"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 928 | } |
| 929 | if (verbose > 1) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 930 | bb_error_msg("\\[%d,%d]", start - match, length); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 931 | do { |
| 932 | putc(window[start++], stderr); |
| 933 | } while (--length != 0); |
| 934 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 935 | } |
| 936 | #else |
| 937 | # define check_match(start, match, length) |
| 938 | #endif |
| 939 | |
| 940 | /* =========================================================================== |
| 941 | * Fill the window when the lookahead becomes insufficient. |
| 942 | * Updates strstart and lookahead, and sets eofile if end of input file. |
| 943 | * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0 |
| 944 | * OUT assertions: at least one byte has been read, or eofile is set; |
| 945 | * file reads are performed for at least two bytes (required for the |
| 946 | * translate_eol option). |
| 947 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 948 | static void fill_window(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 949 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 950 | register unsigned n, m; |
| 951 | unsigned more = |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 952 | (unsigned) (window_size - (ulg) lookahead - (ulg) strstart); |
| 953 | /* Amount of free space at the end of the window. */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 954 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 955 | /* If the window is almost full and there is insufficient lookahead, |
| 956 | * move the upper half to the lower one to make room in the upper half. |
| 957 | */ |
| 958 | if (more == (unsigned) EOF) { |
| 959 | /* Very unlikely, but possible on 16 bit machine if strstart == 0 |
| 960 | * and lookahead == 1 (input done one byte at time) |
| 961 | */ |
| 962 | more--; |
| 963 | } else if (strstart >= WSIZE + MAX_DIST) { |
| 964 | /* By the IN assertion, the window is not empty so we can't confuse |
| 965 | * more == 0 with more == 64K on a 16 bit machine. |
| 966 | */ |
| 967 | Assert(window_size == (ulg) 2 * WSIZE, "no sliding with BIG_MEM"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 968 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 969 | memcpy((char *) window, (char *) window + WSIZE, (unsigned) WSIZE); |
| 970 | match_start -= WSIZE; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 971 | strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 972 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 973 | block_start -= (long) WSIZE; |
| 974 | |
| 975 | for (n = 0; n < HASH_SIZE; n++) { |
| 976 | m = head[n]; |
| 977 | head[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL); |
| 978 | } |
| 979 | for (n = 0; n < WSIZE; n++) { |
| 980 | m = prev[n]; |
| 981 | prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : NIL); |
| 982 | /* If n is not on any hash chain, prev[n] is garbage but |
| 983 | * its value will never be used. |
| 984 | */ |
| 985 | } |
| 986 | more += WSIZE; |
| 987 | } |
| 988 | /* At this point, more >= 2 */ |
| 989 | if (!eofile) { |
| 990 | n = read_buf((char *) window + strstart + lookahead, more); |
| 991 | if (n == 0 || n == (unsigned) EOF) { |
| 992 | eofile = 1; |
| 993 | } else { |
| 994 | lookahead += n; |
| 995 | } |
| 996 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | /* =========================================================================== |
| 1000 | * Flush the current block, with given end-of-file flag. |
| 1001 | * IN assertion: strstart is set to the end of the current match. |
| 1002 | */ |
| 1003 | #define FLUSH_BLOCK(eof) \ |
| 1004 | flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1005 | (char*)NULL, (long)strstart - block_start, (eof)) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1006 | |
| 1007 | /* =========================================================================== |
| 1008 | * Same as above, but achieves better compression. We use a lazy |
| 1009 | * evaluation for matches: a match is finally adopted only if there is |
| 1010 | * no better match at the next window position. |
| 1011 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 1012 | static ulg deflate(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1013 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1014 | IPos hash_head; /* head of hash chain */ |
| 1015 | IPos prev_match; /* previous match */ |
| 1016 | int flush; /* set if current block must be flushed */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1017 | int match_available = 0; /* set if previous match exists */ |
| 1018 | register unsigned match_length = MIN_MATCH - 1; /* length of best match */ |
| 1019 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1020 | /* Process the input block. */ |
| 1021 | while (lookahead != 0) { |
| 1022 | /* Insert the string window[strstart .. strstart+2] in the |
| 1023 | * dictionary, and set hash_head to the head of the hash chain: |
| 1024 | */ |
| 1025 | INSERT_STRING(strstart, hash_head); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1026 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1027 | /* Find the longest match, discarding those <= prev_length. |
| 1028 | */ |
| 1029 | prev_length = match_length, prev_match = match_start; |
| 1030 | match_length = MIN_MATCH - 1; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1031 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1032 | if (hash_head != NIL && prev_length < max_lazy_match && |
| 1033 | strstart - hash_head <= MAX_DIST) { |
| 1034 | /* To simplify the code, we prevent matches with the string |
| 1035 | * of window index 0 (in particular we have to avoid a match |
| 1036 | * of the string with itself at the start of the input file). |
| 1037 | */ |
| 1038 | match_length = longest_match(hash_head); |
| 1039 | /* longest_match() sets match_start */ |
| 1040 | if (match_length > lookahead) |
| 1041 | match_length = lookahead; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1042 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1043 | /* Ignore a length 3 match if it is too distant: */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1044 | if (match_length == MIN_MATCH && strstart - match_start > TOO_FAR) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1045 | /* If prev_match is also MIN_MATCH, match_start is garbage |
| 1046 | * but we will ignore the current match anyway. |
| 1047 | */ |
| 1048 | match_length--; |
| 1049 | } |
| 1050 | } |
| 1051 | /* If there was a match at the previous step and the current |
| 1052 | * match is not better, output the previous match: |
| 1053 | */ |
| 1054 | if (prev_length >= MIN_MATCH && match_length <= prev_length) { |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1055 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1056 | check_match(strstart - 1, prev_match, prev_length); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1057 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1058 | flush = |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1059 | ct_tally(strstart - 1 - prev_match, prev_length - MIN_MATCH); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1060 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1061 | /* Insert in hash table all strings up to the end of the match. |
| 1062 | * strstart-1 and strstart are already inserted. |
| 1063 | */ |
| 1064 | lookahead -= prev_length - 1; |
| 1065 | prev_length -= 2; |
| 1066 | do { |
| 1067 | strstart++; |
| 1068 | INSERT_STRING(strstart, hash_head); |
| 1069 | /* strstart never exceeds WSIZE-MAX_MATCH, so there are |
| 1070 | * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH |
| 1071 | * these bytes are garbage, but it does not matter since the |
| 1072 | * next lookahead bytes will always be emitted as literals. |
| 1073 | */ |
| 1074 | } while (--prev_length != 0); |
| 1075 | match_available = 0; |
| 1076 | match_length = MIN_MATCH - 1; |
| 1077 | strstart++; |
| 1078 | if (flush) |
| 1079 | FLUSH_BLOCK(0), block_start = strstart; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1080 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1081 | } else if (match_available) { |
| 1082 | /* If there was no match at the previous position, output a |
| 1083 | * single literal. If there was a match but the current match |
| 1084 | * is longer, truncate the previous match to a single literal. |
| 1085 | */ |
| 1086 | Tracevv((stderr, "%c", window[strstart - 1])); |
| 1087 | if (ct_tally(0, window[strstart - 1])) { |
| 1088 | FLUSH_BLOCK(0), block_start = strstart; |
| 1089 | } |
| 1090 | strstart++; |
| 1091 | lookahead--; |
| 1092 | } else { |
| 1093 | /* There is no previous match to compare with, wait for |
| 1094 | * the next step to decide. |
| 1095 | */ |
| 1096 | match_available = 1; |
| 1097 | strstart++; |
| 1098 | lookahead--; |
| 1099 | } |
| 1100 | Assert(strstart <= isize && lookahead <= isize, "a bit too far"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1101 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1102 | /* Make sure that we always have enough lookahead, except |
| 1103 | * at the end of the input file. We need MAX_MATCH bytes |
| 1104 | * for the next match, plus MIN_MATCH bytes to insert the |
| 1105 | * string following the next match. |
| 1106 | */ |
| 1107 | while (lookahead < MIN_LOOKAHEAD && !eofile) |
| 1108 | fill_window(); |
| 1109 | } |
| 1110 | if (match_available) |
| 1111 | ct_tally(0, window[strstart - 1]); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1112 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1113 | return FLUSH_BLOCK(1); /* eof */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1114 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1115 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1116 | /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface |
| 1117 | * Copyright (C) 1992-1993 Jean-loup Gailly |
| 1118 | * The unzip code was written and put in the public domain by Mark Adler. |
| 1119 | * Portions of the lzw code are derived from the public domain 'compress' |
| 1120 | * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies, |
| 1121 | * Ken Turkowski, Dave Mack and Peter Jannesen. |
| 1122 | * |
| 1123 | * See the license_msg below and the file COPYING for the software license. |
| 1124 | * See the file algorithm.doc for the compression algorithms and file formats. |
| 1125 | */ |
| 1126 | |
| 1127 | /* Compress files with zip algorithm and 'compress' interface. |
| 1128 | * See usage() and help() functions below for all options. |
| 1129 | * Outputs: |
| 1130 | * file.gz: compressed file with same mode, owner, and utimes |
| 1131 | * or stdout with -c option or if stdin used as input. |
| 1132 | * If the output file name had to be truncated, the original name is kept |
| 1133 | * in the compressed file. |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1134 | */ |
| 1135 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1136 | /* configuration */ |
| 1137 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1138 | typedef struct dirent dir_type; |
| 1139 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1140 | /* ======================================================================== */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1141 | int gzip_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1142 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1143 | int result; |
| 1144 | int inFileNum; |
| 1145 | int outFileNum; |
| 1146 | struct stat statBuf; |
| 1147 | char *delFileName; |
| 1148 | int tostdout = 0; |
Eric Andersen | ea824fb | 2000-07-21 22:17:39 +0000 | [diff] [blame] | 1149 | int force = 0; |
Matt Kraai | 5326554 | 2001-04-18 16:05:34 +0000 | [diff] [blame] | 1150 | int opt; |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 1151 | |
Glenn L McGrath | 5bcfc9b | 2001-05-07 12:01:58 +0000 | [diff] [blame] | 1152 | while ((opt = getopt(argc, argv, "cf123456789dq")) != -1) { |
Matt Kraai | 5326554 | 2001-04-18 16:05:34 +0000 | [diff] [blame] | 1153 | switch (opt) { |
| 1154 | case 'c': |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1155 | tostdout = 1; |
Matt Kraai | 5326554 | 2001-04-18 16:05:34 +0000 | [diff] [blame] | 1156 | break; |
| 1157 | case 'f': |
| 1158 | force = 1; |
| 1159 | break; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1160 | /* Ignore 1-9 (compression level) options */ |
| 1161 | case '1': |
| 1162 | case '2': |
| 1163 | case '3': |
| 1164 | case '4': |
| 1165 | case '5': |
| 1166 | case '6': |
| 1167 | case '7': |
| 1168 | case '8': |
| 1169 | case '9': |
Matt Kraai | 5326554 | 2001-04-18 16:05:34 +0000 | [diff] [blame] | 1170 | break; |
Glenn L McGrath | 5bcfc9b | 2001-05-07 12:01:58 +0000 | [diff] [blame] | 1171 | case 'q': |
| 1172 | break; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1173 | #ifdef CONFIG_GUNZIP |
Matt Kraai | 5326554 | 2001-04-18 16:05:34 +0000 | [diff] [blame] | 1174 | case 'd': |
| 1175 | optind = 1; |
| 1176 | return gunzip_main(argc, argv); |
Glenn L McGrath | 528ef50 | 2001-04-11 03:45:37 +0000 | [diff] [blame] | 1177 | #endif |
Matt Kraai | 5326554 | 2001-04-18 16:05:34 +0000 | [diff] [blame] | 1178 | default: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1179 | bb_show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1180 | } |
| 1181 | } |
| 1182 | |
| 1183 | foreground = signal(SIGINT, SIG_IGN) != SIG_IGN; |
| 1184 | if (foreground) { |
Rob Landley | ec4f3d9 | 2004-12-17 05:23:36 +0000 | [diff] [blame] | 1185 | (void) signal(SIGINT, abort_gzip); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1186 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1187 | #ifdef SIGTERM |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1188 | if (signal(SIGTERM, SIG_IGN) != SIG_IGN) { |
Rob Landley | ec4f3d9 | 2004-12-17 05:23:36 +0000 | [diff] [blame] | 1189 | (void) signal(SIGTERM, abort_gzip); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1190 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1191 | #endif |
| 1192 | #ifdef SIGHUP |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1193 | if (signal(SIGHUP, SIG_IGN) != SIG_IGN) { |
Rob Landley | ec4f3d9 | 2004-12-17 05:23:36 +0000 | [diff] [blame] | 1194 | (void) signal(SIGHUP, abort_gzip); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1195 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1196 | #endif |
| 1197 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1198 | strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix) - 1); |
| 1199 | z_len = strlen(z_suffix); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1200 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1201 | /* Allocate all global buffers (for DYN_ALLOC option) */ |
| 1202 | ALLOC(uch, inbuf, INBUFSIZ + INBUF_EXTRA); |
| 1203 | ALLOC(uch, outbuf, OUTBUFSIZ + OUTBUF_EXTRA); |
| 1204 | ALLOC(ush, d_buf, DIST_BUFSIZE); |
| 1205 | ALLOC(uch, window, 2L * WSIZE); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1206 | ALLOC(ush, tab_prefix, 1L << BITS); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1207 | |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 1208 | /* Initialise the CRC32 table */ |
| 1209 | crc_32_tab = bb_crc32_filltable(0); |
| 1210 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1211 | clear_bufs(); |
| 1212 | part_nb = 0; |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 1213 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1214 | if (optind == argc) { |
| 1215 | time_stamp = 0; |
| 1216 | ifile_size = -1L; |
| 1217 | zip(STDIN_FILENO, STDOUT_FILENO); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1218 | } else { |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1219 | int i; |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 1220 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1221 | for (i = optind; i < argc; i++) { |
| 1222 | char *path = NULL; |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 1223 | |
Manuel Novoa III | df7bfb4 | 2005-03-02 04:10:46 +0000 | [diff] [blame] | 1224 | clear_bufs(); |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1225 | if (strcmp(argv[i], "-") == 0) { |
| 1226 | time_stamp = 0; |
| 1227 | ifile_size = -1L; |
| 1228 | inFileNum = STDIN_FILENO; |
| 1229 | outFileNum = STDOUT_FILENO; |
| 1230 | } else { |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 1231 | inFileNum = bb_xopen3(argv[i], O_RDONLY, 0); |
Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 1232 | if (fstat(inFileNum, &statBuf) < 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1233 | bb_perror_msg_and_die("%s", argv[i]); |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1234 | time_stamp = statBuf.st_ctime; |
| 1235 | ifile_size = statBuf.st_size; |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 1236 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1237 | if (!tostdout) { |
| 1238 | path = xmalloc(strlen(argv[i]) + 4); |
| 1239 | strcpy(path, argv[i]); |
| 1240 | strcat(path, ".gz"); |
Eric Andersen | 0dfac6b | 1999-11-11 05:46:32 +0000 | [diff] [blame] | 1241 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1242 | /* Open output file */ |
Bernhard Reutner-Fischer | 0b42a6a | 2005-10-07 11:34:50 +0000 | [diff] [blame] | 1243 | #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) && defined O_NOFOLLOW |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1244 | outFileNum = |
| 1245 | open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW); |
Erik Andersen | 4d1d011 | 1999-12-17 18:44:15 +0000 | [diff] [blame] | 1246 | #else |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1247 | outFileNum = open(path, O_RDWR | O_CREAT | O_EXCL); |
Erik Andersen | 4d1d011 | 1999-12-17 18:44:15 +0000 | [diff] [blame] | 1248 | #endif |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1249 | if (outFileNum < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1250 | bb_perror_msg("%s", path); |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1251 | free(path); |
| 1252 | continue; |
| 1253 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1254 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1255 | /* Set permissions on the file */ |
| 1256 | fchmod(outFileNum, statBuf.st_mode); |
| 1257 | } else |
| 1258 | outFileNum = STDOUT_FILENO; |
| 1259 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1260 | |
Matt Kraai | ef8b112 | 2002-03-22 22:55:51 +0000 | [diff] [blame] | 1261 | if (path == NULL && isatty(outFileNum) && force == 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1262 | bb_error_msg |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1263 | ("compressed data not written to a terminal. Use -f to force compression."); |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1264 | free(path); |
| 1265 | continue; |
| 1266 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1267 | |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1268 | result = zip(inFileNum, outFileNum); |
| 1269 | |
| 1270 | if (path != NULL) { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1271 | close(inFileNum); |
| 1272 | close(outFileNum); |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1273 | |
| 1274 | /* Delete the original file */ |
| 1275 | if (result == OK) |
| 1276 | delFileName = argv[i]; |
| 1277 | else |
| 1278 | delFileName = path; |
| 1279 | |
| 1280 | if (unlink(delFileName) < 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1281 | bb_perror_msg("%s", delFileName); |
Matt Kraai | 9bd49d6 | 2002-02-05 22:31:48 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
| 1284 | free(path); |
| 1285 | } |
Eric Andersen | 0dfac6b | 1999-11-11 05:46:32 +0000 | [diff] [blame] | 1286 | } |
Eric Andersen | 0dfac6b | 1999-11-11 05:46:32 +0000 | [diff] [blame] | 1287 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1288 | return (exit_code); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1289 | } |
| 1290 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1291 | /* trees.c -- output deflated data using Huffman coding |
| 1292 | * Copyright (C) 1992-1993 Jean-loup Gailly |
| 1293 | * This is free software; you can redistribute it and/or modify it under the |
| 1294 | * terms of the GNU General Public License, see the file COPYING. |
| 1295 | */ |
| 1296 | |
| 1297 | /* |
| 1298 | * PURPOSE |
| 1299 | * |
| 1300 | * Encode various sets of source values using variable-length |
| 1301 | * binary code trees. |
| 1302 | * |
| 1303 | * DISCUSSION |
| 1304 | * |
| 1305 | * The PKZIP "deflation" process uses several Huffman trees. The more |
| 1306 | * common source values are represented by shorter bit sequences. |
| 1307 | * |
| 1308 | * Each code tree is stored in the ZIP file in a compressed form |
| 1309 | * which is itself a Huffman encoding of the lengths of |
| 1310 | * all the code strings (in ascending order by source values). |
| 1311 | * The actual code strings are reconstructed from the lengths in |
| 1312 | * the UNZIP process, as described in the "application note" |
| 1313 | * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program. |
| 1314 | * |
| 1315 | * REFERENCES |
| 1316 | * |
| 1317 | * Lynch, Thomas J. |
| 1318 | * Data Compression: Techniques and Applications, pp. 53-55. |
| 1319 | * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7. |
| 1320 | * |
| 1321 | * Storer, James A. |
| 1322 | * Data Compression: Methods and Theory, pp. 49-50. |
| 1323 | * Computer Science Press, 1988. ISBN 0-7167-8156-5. |
| 1324 | * |
| 1325 | * Sedgewick, R. |
| 1326 | * Algorithms, p290. |
| 1327 | * Addison-Wesley, 1983. ISBN 0-201-06672-6. |
| 1328 | * |
| 1329 | * INTERFACE |
| 1330 | * |
| 1331 | * void ct_init (ush *attr, int *methodp) |
| 1332 | * Allocate the match buffer, initialize the various tables and save |
| 1333 | * the location of the internal file attribute (ascii/binary) and |
| 1334 | * method (DEFLATE/STORE) |
| 1335 | * |
| 1336 | * void ct_tally (int dist, int lc); |
| 1337 | * Save the match info and tally the frequency counts. |
| 1338 | * |
| 1339 | * long flush_block (char *buf, ulg stored_len, int eof) |
| 1340 | * Determine the best encoding for the current block: dynamic trees, |
| 1341 | * static trees or store, and output the encoded block to the zip |
| 1342 | * file. Returns the total compressed length for the file so far. |
| 1343 | * |
| 1344 | */ |
| 1345 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1346 | /* =========================================================================== |
| 1347 | * Constants |
| 1348 | */ |
| 1349 | |
| 1350 | #define MAX_BITS 15 |
| 1351 | /* All codes must not exceed MAX_BITS bits */ |
| 1352 | |
| 1353 | #define MAX_BL_BITS 7 |
| 1354 | /* Bit length codes must not exceed MAX_BL_BITS bits */ |
| 1355 | |
| 1356 | #define LENGTH_CODES 29 |
| 1357 | /* number of length codes, not counting the special END_BLOCK code */ |
| 1358 | |
| 1359 | #define LITERALS 256 |
| 1360 | /* number of literal bytes 0..255 */ |
| 1361 | |
| 1362 | #define END_BLOCK 256 |
| 1363 | /* end of block literal code */ |
| 1364 | |
| 1365 | #define L_CODES (LITERALS+1+LENGTH_CODES) |
| 1366 | /* number of Literal or Length codes, including the END_BLOCK code */ |
| 1367 | |
| 1368 | #define D_CODES 30 |
| 1369 | /* number of distance codes */ |
| 1370 | |
| 1371 | #define BL_CODES 19 |
| 1372 | /* number of codes used to transfer the bit lengths */ |
| 1373 | |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 1374 | typedef uch extra_bits_t; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1375 | |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 1376 | /* extra bits for each length code */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1377 | static const extra_bits_t extra_lbits[LENGTH_CODES] |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1378 | = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1379 | 4, 4, 5, 5, 5, 5, 0 |
| 1380 | }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1381 | |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 1382 | /* extra bits for each distance code */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1383 | static const extra_bits_t extra_dbits[D_CODES] |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1384 | = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1385 | 10, 10, 11, 11, 12, 12, 13, 13 |
| 1386 | }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1387 | |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 1388 | /* extra bits for each bit length code */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1389 | static const extra_bits_t extra_blbits[BL_CODES] |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1390 | = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7 }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1391 | |
| 1392 | #define STORED_BLOCK 0 |
| 1393 | #define STATIC_TREES 1 |
| 1394 | #define DYN_TREES 2 |
| 1395 | /* The three kinds of block type */ |
| 1396 | |
| 1397 | #ifndef LIT_BUFSIZE |
| 1398 | # ifdef SMALL_MEM |
| 1399 | # define LIT_BUFSIZE 0x2000 |
| 1400 | # else |
| 1401 | # ifdef MEDIUM_MEM |
| 1402 | # define LIT_BUFSIZE 0x4000 |
| 1403 | # else |
| 1404 | # define LIT_BUFSIZE 0x8000 |
| 1405 | # endif |
| 1406 | # endif |
| 1407 | #endif |
| 1408 | #ifndef DIST_BUFSIZE |
| 1409 | # define DIST_BUFSIZE LIT_BUFSIZE |
| 1410 | #endif |
| 1411 | /* Sizes of match buffers for literals/lengths and distances. There are |
| 1412 | * 4 reasons for limiting LIT_BUFSIZE to 64K: |
| 1413 | * - frequencies can be kept in 16 bit counters |
| 1414 | * - if compression is not successful for the first block, all input data is |
| 1415 | * still in the window so we can still emit a stored block even when input |
| 1416 | * comes from standard input. (This can also be done for all blocks if |
| 1417 | * LIT_BUFSIZE is not greater than 32K.) |
| 1418 | * - if compression is not successful for a file smaller than 64K, we can |
| 1419 | * even emit a stored file instead of a stored block (saving 5 bytes). |
| 1420 | * - creating new Huffman trees less frequently may not provide fast |
| 1421 | * adaptation to changes in the input data statistics. (Take for |
| 1422 | * example a binary file with poorly compressible code followed by |
| 1423 | * a highly compressible string table.) Smaller buffer sizes give |
| 1424 | * fast adaptation but have of course the overhead of transmitting trees |
| 1425 | * more frequently. |
| 1426 | * - I can't count above 4 |
| 1427 | * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save |
| 1428 | * memory at the expense of compression). Some optimizations would be possible |
| 1429 | * if we rely on DIST_BUFSIZE == LIT_BUFSIZE. |
| 1430 | */ |
| 1431 | #if LIT_BUFSIZE > INBUFSIZ |
Aaron Lehmann | b9df470 | 2001-12-06 03:22:43 +0000 | [diff] [blame] | 1432 | #error cannot overlay l_buf and inbuf |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1433 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1434 | #define REP_3_6 16 |
| 1435 | /* repeat previous bit length 3-6 times (2 bits of repeat count) */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1436 | #define REPZ_3_10 17 |
| 1437 | /* repeat a zero length 3-10 times (3 bits of repeat count) */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1438 | #define REPZ_11_138 18 |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1439 | /* repeat a zero length 11-138 times (7 bits of repeat count) */ |
| 1440 | |
| 1441 | /* =========================================================================== |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1442 | * Local data |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1443 | */ |
| 1444 | |
| 1445 | /* Data structure describing a single value and its code string. */ |
| 1446 | typedef struct ct_data { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1447 | union { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1448 | ush freq; /* frequency count */ |
| 1449 | ush code; /* bit string */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1450 | } fc; |
| 1451 | union { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1452 | ush dad; /* father node in Huffman tree */ |
| 1453 | ush len; /* length of bit string */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1454 | } dl; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1455 | } ct_data; |
| 1456 | |
| 1457 | #define Freq fc.freq |
| 1458 | #define Code fc.code |
| 1459 | #define Dad dl.dad |
| 1460 | #define Len dl.len |
| 1461 | |
| 1462 | #define HEAP_SIZE (2*L_CODES+1) |
| 1463 | /* maximum heap size */ |
| 1464 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1465 | static ct_data dyn_ltree[HEAP_SIZE]; /* literal and length tree */ |
| 1466 | static ct_data dyn_dtree[2 * D_CODES + 1]; /* distance tree */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1467 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1468 | static ct_data static_ltree[L_CODES + 2]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1469 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1470 | /* The static literal tree. Since the bit lengths are imposed, there is no |
| 1471 | * need for the L_CODES extra codes used during heap construction. However |
| 1472 | * The codes 286 and 287 are needed to build a canonical tree (see ct_init |
| 1473 | * below). |
| 1474 | */ |
| 1475 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1476 | static ct_data static_dtree[D_CODES]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1477 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1478 | /* The static distance tree. (Actually a trivial tree since all codes use |
| 1479 | * 5 bits.) |
| 1480 | */ |
| 1481 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1482 | static ct_data bl_tree[2 * BL_CODES + 1]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1483 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1484 | /* Huffman tree for the bit lengths */ |
| 1485 | |
| 1486 | typedef struct tree_desc { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1487 | ct_data *dyn_tree; /* the dynamic tree */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1488 | ct_data *static_tree; /* corresponding static tree or NULL */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1489 | const extra_bits_t *extra_bits; /* extra bits for each code or NULL */ |
| 1490 | int extra_base; /* base index for extra_bits */ |
| 1491 | int elems; /* max number of elements in the tree */ |
| 1492 | int max_length; /* max bit length for the codes */ |
| 1493 | int max_code; /* largest code with non zero frequency */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1494 | } tree_desc; |
| 1495 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1496 | static tree_desc l_desc = |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1497 | { dyn_ltree, static_ltree, extra_lbits, LITERALS + 1, L_CODES, |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1498 | MAX_BITS, 0 |
| 1499 | }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1500 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1501 | static tree_desc d_desc = |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1502 | { dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0 }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1503 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1504 | static tree_desc bl_desc = |
| 1505 | { bl_tree, (ct_data *) 0, extra_blbits, 0, BL_CODES, MAX_BL_BITS, |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1506 | 0 |
| 1507 | }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1508 | |
| 1509 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1510 | static ush bl_count[MAX_BITS + 1]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1511 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1512 | /* number of codes at each bit length for an optimal tree */ |
| 1513 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1514 | static const uch bl_order[BL_CODES] |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1515 | = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; |
| 1516 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1517 | /* The lengths of the bit length codes are sent in order of decreasing |
| 1518 | * probability, to avoid transmitting the lengths for unused bit length codes. |
| 1519 | */ |
| 1520 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1521 | static int heap[2 * L_CODES + 1]; /* heap used to build the Huffman trees */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1522 | static int heap_len; /* number of elements in the heap */ |
| 1523 | static int heap_max; /* element of largest frequency */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1524 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1525 | /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used. |
| 1526 | * The same heap array is used to build all trees. |
| 1527 | */ |
| 1528 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1529 | static uch depth[2 * L_CODES + 1]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1530 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1531 | /* Depth of each subtree used as tie breaker for trees of equal frequency */ |
| 1532 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1533 | static uch length_code[MAX_MATCH - MIN_MATCH + 1]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1534 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1535 | /* length code for each normalized match length (0 == MIN_MATCH) */ |
| 1536 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1537 | static uch dist_code[512]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1538 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1539 | /* distance codes. The first 256 values correspond to the distances |
| 1540 | * 3 .. 258, the last 256 values correspond to the top 8 bits of |
| 1541 | * the 15 bit distances. |
| 1542 | */ |
| 1543 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1544 | static int base_length[LENGTH_CODES]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1545 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1546 | /* First normalized length for each code (0 = MIN_MATCH) */ |
| 1547 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1548 | static int base_dist[D_CODES]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1549 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1550 | /* First normalized distance for each code (0 = distance of 1) */ |
| 1551 | |
| 1552 | #define l_buf inbuf |
| 1553 | /* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */ |
| 1554 | |
| 1555 | /* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */ |
| 1556 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1557 | static uch flag_buf[(LIT_BUFSIZE / 8)]; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1558 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1559 | /* flag_buf is a bit array distinguishing literals from lengths in |
| 1560 | * l_buf, thus indicating the presence or absence of a distance. |
| 1561 | */ |
| 1562 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1563 | static unsigned last_lit; /* running index in l_buf */ |
| 1564 | static unsigned last_dist; /* running index in d_buf */ |
| 1565 | static unsigned last_flags; /* running index in flag_buf */ |
| 1566 | static uch flags; /* current flags not yet saved in flag_buf */ |
| 1567 | static uch flag_bit; /* current bit used in flags */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1568 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1569 | /* bits are filled in flags starting at bit 0 (least significant). |
| 1570 | * Note: these flags are overkill in the current code since we don't |
| 1571 | * take advantage of DIST_BUFSIZE == LIT_BUFSIZE. |
| 1572 | */ |
| 1573 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1574 | static ulg opt_len; /* bit length of current block with optimal trees */ |
| 1575 | static ulg static_len; /* bit length of current block with static trees */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1576 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1577 | static ulg compressed_len; /* total bit length of compressed file */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1578 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1579 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1580 | static ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */ |
| 1581 | static int *file_method; /* pointer to DEFLATE or STORE */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1582 | |
| 1583 | /* =========================================================================== |
| 1584 | * Local (static) routines in this file. |
| 1585 | */ |
| 1586 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1587 | static void init_block(void); |
| 1588 | static void pqdownheap(ct_data * tree, int k); |
| 1589 | static void gen_bitlen(tree_desc * desc); |
| 1590 | static void gen_codes(ct_data * tree, int max_code); |
| 1591 | static void build_tree(tree_desc * desc); |
| 1592 | static void scan_tree(ct_data * tree, int max_code); |
| 1593 | static void send_tree(ct_data * tree, int max_code); |
| 1594 | static int build_bl_tree(void); |
| 1595 | static void send_all_trees(int lcodes, int dcodes, int blcodes); |
| 1596 | static void compress_block(ct_data * ltree, ct_data * dtree); |
| 1597 | static void set_file_type(void); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1598 | |
| 1599 | |
| 1600 | #ifndef DEBUG |
| 1601 | # define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len) |
| 1602 | /* Send a code of the given tree. c and tree must not have side effects */ |
| 1603 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1604 | #else /* DEBUG */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1605 | # define send_code(c, tree) \ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1606 | { if (verbose>1) bb_error_msg("\ncd %3d ",(c)); \ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1607 | send_bits(tree[c].Code, tree[c].Len); } |
| 1608 | #endif |
| 1609 | |
| 1610 | #define d_code(dist) \ |
| 1611 | ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)]) |
| 1612 | /* Mapping from a distance to a distance code. dist is the distance - 1 and |
| 1613 | * must not have side effects. dist_code[256] and dist_code[257] are never |
| 1614 | * used. |
| 1615 | */ |
| 1616 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1617 | /* the arguments must not have side effects */ |
| 1618 | |
| 1619 | /* =========================================================================== |
| 1620 | * Allocate the match buffer, initialize the various tables and save the |
| 1621 | * location of the internal file attribute (ascii/binary) and method |
| 1622 | * (DEFLATE/STORE). |
| 1623 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1624 | static void ct_init(ush * attr, int *methodp) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1625 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1626 | int n; /* iterates over tree elements */ |
| 1627 | int bits; /* bit counter */ |
| 1628 | int length; /* length value */ |
| 1629 | int code; /* code value */ |
| 1630 | int dist; /* distance index */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1631 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1632 | file_type = attr; |
| 1633 | file_method = methodp; |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1634 | compressed_len = 0L; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1635 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1636 | if (static_dtree[0].Len != 0) |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1637 | return; /* ct_init already called */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1638 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1639 | /* Initialize the mapping length (0..255) -> length code (0..28) */ |
| 1640 | length = 0; |
| 1641 | for (code = 0; code < LENGTH_CODES - 1; code++) { |
| 1642 | base_length[code] = length; |
| 1643 | for (n = 0; n < (1 << extra_lbits[code]); n++) { |
| 1644 | length_code[length++] = (uch) code; |
| 1645 | } |
| 1646 | } |
| 1647 | Assert(length == 256, "ct_init: length != 256"); |
| 1648 | /* Note that the length 255 (match length 258) can be represented |
| 1649 | * in two different ways: code 284 + 5 bits or code 285, so we |
| 1650 | * overwrite length_code[255] to use the best encoding: |
| 1651 | */ |
| 1652 | length_code[length - 1] = (uch) code; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1653 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1654 | /* Initialize the mapping dist (0..32K) -> dist code (0..29) */ |
| 1655 | dist = 0; |
| 1656 | for (code = 0; code < 16; code++) { |
| 1657 | base_dist[code] = dist; |
| 1658 | for (n = 0; n < (1 << extra_dbits[code]); n++) { |
| 1659 | dist_code[dist++] = (uch) code; |
| 1660 | } |
| 1661 | } |
| 1662 | Assert(dist == 256, "ct_init: dist != 256"); |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1663 | dist >>= 7; /* from now on, all distances are divided by 128 */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1664 | for (; code < D_CODES; code++) { |
| 1665 | base_dist[code] = dist << 7; |
| 1666 | for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) { |
| 1667 | dist_code[256 + dist++] = (uch) code; |
| 1668 | } |
| 1669 | } |
| 1670 | Assert(dist == 256, "ct_init: 256+dist != 512"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1671 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1672 | /* Construct the codes of the static literal tree */ |
| 1673 | for (bits = 0; bits <= MAX_BITS; bits++) |
| 1674 | bl_count[bits] = 0; |
| 1675 | n = 0; |
| 1676 | while (n <= 143) |
| 1677 | static_ltree[n++].Len = 8, bl_count[8]++; |
| 1678 | while (n <= 255) |
| 1679 | static_ltree[n++].Len = 9, bl_count[9]++; |
| 1680 | while (n <= 279) |
| 1681 | static_ltree[n++].Len = 7, bl_count[7]++; |
| 1682 | while (n <= 287) |
| 1683 | static_ltree[n++].Len = 8, bl_count[8]++; |
| 1684 | /* Codes 286 and 287 do not exist, but we must include them in the |
| 1685 | * tree construction to get a canonical Huffman tree (longest code |
| 1686 | * all ones) |
| 1687 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1688 | gen_codes((ct_data *) static_ltree, L_CODES + 1); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1689 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1690 | /* The static distance tree is trivial: */ |
| 1691 | for (n = 0; n < D_CODES; n++) { |
| 1692 | static_dtree[n].Len = 5; |
| 1693 | static_dtree[n].Code = bi_reverse(n, 5); |
| 1694 | } |
| 1695 | |
| 1696 | /* Initialize the first block of the first file: */ |
| 1697 | init_block(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1698 | } |
| 1699 | |
| 1700 | /* =========================================================================== |
| 1701 | * Initialize a new block. |
| 1702 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 1703 | static void init_block(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1704 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1705 | int n; /* iterates over tree elements */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1706 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1707 | /* Initialize the trees. */ |
| 1708 | for (n = 0; n < L_CODES; n++) |
| 1709 | dyn_ltree[n].Freq = 0; |
| 1710 | for (n = 0; n < D_CODES; n++) |
| 1711 | dyn_dtree[n].Freq = 0; |
| 1712 | for (n = 0; n < BL_CODES; n++) |
| 1713 | bl_tree[n].Freq = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1714 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1715 | dyn_ltree[END_BLOCK].Freq = 1; |
| 1716 | opt_len = static_len = 0L; |
| 1717 | last_lit = last_dist = last_flags = 0; |
| 1718 | flags = 0; |
| 1719 | flag_bit = 1; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1720 | } |
| 1721 | |
| 1722 | #define SMALLEST 1 |
| 1723 | /* Index within the heap array of least frequent node in the Huffman tree */ |
| 1724 | |
| 1725 | |
| 1726 | /* =========================================================================== |
| 1727 | * Remove the smallest element from the heap and recreate the heap with |
| 1728 | * one less element. Updates heap and heap_len. |
| 1729 | */ |
| 1730 | #define pqremove(tree, top) \ |
| 1731 | {\ |
| 1732 | top = heap[SMALLEST]; \ |
| 1733 | heap[SMALLEST] = heap[heap_len--]; \ |
| 1734 | pqdownheap(tree, SMALLEST); \ |
| 1735 | } |
| 1736 | |
| 1737 | /* =========================================================================== |
| 1738 | * Compares to subtrees, using the tree depth as tie breaker when |
| 1739 | * the subtrees have equal frequency. This minimizes the worst case length. |
| 1740 | */ |
| 1741 | #define smaller(tree, n, m) \ |
| 1742 | (tree[n].Freq < tree[m].Freq || \ |
| 1743 | (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) |
| 1744 | |
| 1745 | /* =========================================================================== |
| 1746 | * Restore the heap property by moving down the tree starting at node k, |
| 1747 | * exchanging a node with the smallest of its two sons if necessary, stopping |
| 1748 | * when the heap property is re-established (each father smaller than its |
| 1749 | * two sons). |
| 1750 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1751 | static void pqdownheap(ct_data * tree, int k) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1752 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1753 | int v = heap[k]; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1754 | int j = k << 1; /* left son of k */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1755 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1756 | while (j <= heap_len) { |
| 1757 | /* Set j to the smallest of the two sons: */ |
| 1758 | if (j < heap_len && smaller(tree, heap[j + 1], heap[j])) |
| 1759 | j++; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1760 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1761 | /* Exit if v is smaller than both sons */ |
| 1762 | if (smaller(tree, v, heap[j])) |
| 1763 | break; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1764 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1765 | /* Exchange v with the smallest son */ |
| 1766 | heap[k] = heap[j]; |
| 1767 | k = j; |
| 1768 | |
| 1769 | /* And continue down the tree, setting j to the left son of k */ |
| 1770 | j <<= 1; |
| 1771 | } |
| 1772 | heap[k] = v; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1773 | } |
| 1774 | |
| 1775 | /* =========================================================================== |
| 1776 | * Compute the optimal bit lengths for a tree and update the total bit length |
| 1777 | * for the current block. |
| 1778 | * IN assertion: the fields freq and dad are set, heap[heap_max] and |
| 1779 | * above are the tree nodes sorted by increasing frequency. |
| 1780 | * OUT assertions: the field len is set to the optimal bit length, the |
| 1781 | * array bl_count contains the frequencies for each bit length. |
| 1782 | * The length opt_len is updated; static_len is also updated if stree is |
| 1783 | * not null. |
| 1784 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1785 | static void gen_bitlen(tree_desc * desc) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1786 | { |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1787 | ct_data *tree = desc->dyn_tree; |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 1788 | const extra_bits_t *extra = desc->extra_bits; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1789 | int base = desc->extra_base; |
| 1790 | int max_code = desc->max_code; |
| 1791 | int max_length = desc->max_length; |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1792 | ct_data *stree = desc->static_tree; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1793 | int h; /* heap index */ |
| 1794 | int n, m; /* iterate over the tree elements */ |
| 1795 | int bits; /* bit length */ |
| 1796 | int xbits; /* extra bits */ |
| 1797 | ush f; /* frequency */ |
| 1798 | int overflow = 0; /* number of elements with bit length too large */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1799 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1800 | for (bits = 0; bits <= MAX_BITS; bits++) |
| 1801 | bl_count[bits] = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1802 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1803 | /* In a first pass, compute the optimal bit lengths (which may |
| 1804 | * overflow in the case of the bit length tree). |
| 1805 | */ |
| 1806 | tree[heap[heap_max]].Len = 0; /* root of the heap */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1807 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1808 | for (h = heap_max + 1; h < HEAP_SIZE; h++) { |
| 1809 | n = heap[h]; |
| 1810 | bits = tree[tree[n].Dad].Len + 1; |
| 1811 | if (bits > max_length) |
| 1812 | bits = max_length, overflow++; |
| 1813 | tree[n].Len = (ush) bits; |
| 1814 | /* We overwrite tree[n].Dad which is no longer needed */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1815 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1816 | if (n > max_code) |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1817 | continue; /* not a leaf node */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1818 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1819 | bl_count[bits]++; |
| 1820 | xbits = 0; |
| 1821 | if (n >= base) |
| 1822 | xbits = extra[n - base]; |
| 1823 | f = tree[n].Freq; |
| 1824 | opt_len += (ulg) f *(bits + xbits); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1825 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1826 | if (stree) |
| 1827 | static_len += (ulg) f *(stree[n].Len + xbits); |
| 1828 | } |
| 1829 | if (overflow == 0) |
| 1830 | return; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1831 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1832 | Trace((stderr, "\nbit length overflow\n")); |
| 1833 | /* This happens for example on obj2 and pic of the Calgary corpus */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1834 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1835 | /* Find the first bit length which could increase: */ |
| 1836 | do { |
| 1837 | bits = max_length - 1; |
| 1838 | while (bl_count[bits] == 0) |
| 1839 | bits--; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1840 | bl_count[bits]--; /* move one leaf down the tree */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1841 | bl_count[bits + 1] += 2; /* move one overflow item as its brother */ |
| 1842 | bl_count[max_length]--; |
| 1843 | /* The brother of the overflow item also moves one step up, |
| 1844 | * but this does not affect bl_count[max_length] |
| 1845 | */ |
| 1846 | overflow -= 2; |
| 1847 | } while (overflow > 0); |
| 1848 | |
| 1849 | /* Now recompute all bit lengths, scanning in increasing frequency. |
| 1850 | * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all |
| 1851 | * lengths instead of fixing only the wrong ones. This idea is taken |
| 1852 | * from 'ar' written by Haruhiko Okumura.) |
| 1853 | */ |
| 1854 | for (bits = max_length; bits != 0; bits--) { |
| 1855 | n = bl_count[bits]; |
| 1856 | while (n != 0) { |
| 1857 | m = heap[--h]; |
| 1858 | if (m > max_code) |
| 1859 | continue; |
| 1860 | if (tree[m].Len != (unsigned) bits) { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1861 | Trace((stderr, "code %d bits %d->%d\n", m, tree[m].Len, |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1862 | bits)); |
| 1863 | opt_len += |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1864 | ((long) bits - (long) tree[m].Len) * (long) tree[m].Freq; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1865 | tree[m].Len = (ush) bits; |
| 1866 | } |
| 1867 | n--; |
| 1868 | } |
| 1869 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1870 | } |
| 1871 | |
| 1872 | /* =========================================================================== |
| 1873 | * Generate the codes for a given tree and bit counts (which need not be |
| 1874 | * optimal). |
| 1875 | * IN assertion: the array bl_count contains the bit length statistics for |
| 1876 | * the given tree and the field len is set for all tree elements. |
| 1877 | * OUT assertion: the field code is set for all tree elements of non |
| 1878 | * zero code length. |
| 1879 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1880 | static void gen_codes(ct_data * tree, int max_code) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1881 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1882 | ush next_code[MAX_BITS + 1]; /* next code value for each bit length */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1883 | ush code = 0; /* running code value */ |
| 1884 | int bits; /* bit index */ |
| 1885 | int n; /* code index */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1886 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1887 | /* The distribution counts are first used to generate the code values |
| 1888 | * without bit reversal. |
| 1889 | */ |
| 1890 | for (bits = 1; bits <= MAX_BITS; bits++) { |
| 1891 | next_code[bits] = code = (code + bl_count[bits - 1]) << 1; |
| 1892 | } |
| 1893 | /* Check that the bit counts in bl_count are consistent. The last code |
| 1894 | * must be all ones. |
| 1895 | */ |
| 1896 | Assert(code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1, |
| 1897 | "inconsistent bit counts"); |
| 1898 | Tracev((stderr, "\ngen_codes: max_code %d ", max_code)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1899 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1900 | for (n = 0; n <= max_code; n++) { |
| 1901 | int len = tree[n].Len; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1902 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1903 | if (len == 0) |
| 1904 | continue; |
| 1905 | /* Now reverse the bits */ |
| 1906 | tree[n].Code = bi_reverse(next_code[len]++, len); |
| 1907 | |
| 1908 | Tracec(tree != static_ltree, |
| 1909 | (stderr, "\nn %3d %c l %2d c %4x (%x) ", n, |
| 1910 | (isgraph(n) ? n : ' '), len, tree[n].Code, |
| 1911 | next_code[len] - 1)); |
| 1912 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1913 | } |
| 1914 | |
| 1915 | /* =========================================================================== |
| 1916 | * Construct one Huffman tree and assigns the code bit strings and lengths. |
| 1917 | * Update the total bit length for the current block. |
| 1918 | * IN assertion: the field freq is set for all tree elements. |
| 1919 | * OUT assertions: the fields len and code are set to the optimal bit length |
| 1920 | * and corresponding code. The length opt_len is updated; static_len is |
| 1921 | * also updated if stree is not null. The field max_code is set. |
| 1922 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1923 | static void build_tree(tree_desc * desc) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1924 | { |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 1925 | ct_data *tree = desc->dyn_tree; |
| 1926 | ct_data *stree = desc->static_tree; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1927 | int elems = desc->elems; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1928 | int n, m; /* iterate over heap elements */ |
| 1929 | int max_code = -1; /* largest code with non zero frequency */ |
| 1930 | int node = elems; /* next internal node of the tree */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1931 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1932 | /* Construct the initial heap, with least frequent element in |
| 1933 | * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1]. |
| 1934 | * heap[0] is not used. |
| 1935 | */ |
| 1936 | heap_len = 0, heap_max = HEAP_SIZE; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1937 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1938 | for (n = 0; n < elems; n++) { |
| 1939 | if (tree[n].Freq != 0) { |
| 1940 | heap[++heap_len] = max_code = n; |
| 1941 | depth[n] = 0; |
| 1942 | } else { |
| 1943 | tree[n].Len = 0; |
| 1944 | } |
| 1945 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1946 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1947 | /* The pkzip format requires that at least one distance code exists, |
| 1948 | * and that at least one bit should be sent even if there is only one |
| 1949 | * possible code. So to avoid special checks later on we force at least |
| 1950 | * two codes of non zero frequency. |
| 1951 | */ |
| 1952 | while (heap_len < 2) { |
| 1953 | int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1954 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1955 | tree[new].Freq = 1; |
| 1956 | depth[new] = 0; |
| 1957 | opt_len--; |
| 1958 | if (stree) |
| 1959 | static_len -= stree[new].Len; |
| 1960 | /* new is 0 or 1 so it does not have extra bits */ |
| 1961 | } |
| 1962 | desc->max_code = max_code; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1963 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1964 | /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree, |
| 1965 | * establish sub-heaps of increasing lengths: |
| 1966 | */ |
| 1967 | for (n = heap_len / 2; n >= 1; n--) |
| 1968 | pqdownheap(tree, n); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1969 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1970 | /* Construct the Huffman tree by repeatedly combining the least two |
| 1971 | * frequent nodes. |
| 1972 | */ |
| 1973 | do { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1974 | pqremove(tree, n); /* n = node of least frequency */ |
| 1975 | m = heap[SMALLEST]; /* m = node of next least frequency */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1976 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1977 | heap[--heap_max] = n; /* keep the nodes sorted by frequency */ |
| 1978 | heap[--heap_max] = m; |
| 1979 | |
| 1980 | /* Create a new node father of n and m */ |
| 1981 | tree[node].Freq = tree[n].Freq + tree[m].Freq; |
| 1982 | depth[node] = (uch) (MAX(depth[n], depth[m]) + 1); |
| 1983 | tree[n].Dad = tree[m].Dad = (ush) node; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1984 | #ifdef DUMP_BL_TREE |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1985 | if (tree == bl_tree) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1986 | bb_error_msg("\nnode %d(%d), sons %d(%d) %d(%d)", |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 1987 | node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1988 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1989 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1990 | /* and insert the new node in the heap */ |
| 1991 | heap[SMALLEST] = node++; |
| 1992 | pqdownheap(tree, SMALLEST); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1993 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1994 | } while (heap_len >= 2); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1995 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1996 | heap[--heap_max] = heap[SMALLEST]; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1997 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1998 | /* At this point, the fields freq and dad are set. We can now |
| 1999 | * generate the bit lengths. |
| 2000 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2001 | gen_bitlen((tree_desc *) desc); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2002 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2003 | /* The field len is now set, we can generate the bit codes */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2004 | gen_codes((ct_data *) tree, max_code); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2005 | } |
| 2006 | |
| 2007 | /* =========================================================================== |
| 2008 | * Scan a literal or distance tree to determine the frequencies of the codes |
| 2009 | * in the bit length tree. Updates opt_len to take into account the repeat |
| 2010 | * counts. (The contribution of the bit length codes will be added later |
| 2011 | * during the construction of bl_tree.) |
| 2012 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2013 | static void scan_tree(ct_data * tree, int max_code) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2014 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2015 | int n; /* iterates over all tree elements */ |
| 2016 | int prevlen = -1; /* last emitted length */ |
| 2017 | int curlen; /* length of current code */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2018 | int nextlen = tree[0].Len; /* length of next code */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2019 | int count = 0; /* repeat count of the current code */ |
| 2020 | int max_count = 7; /* max repeat count */ |
| 2021 | int min_count = 4; /* min repeat count */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2022 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2023 | if (nextlen == 0) |
| 2024 | max_count = 138, min_count = 3; |
| 2025 | tree[max_code + 1].Len = (ush) 0xffff; /* guard */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2026 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2027 | for (n = 0; n <= max_code; n++) { |
| 2028 | curlen = nextlen; |
| 2029 | nextlen = tree[n + 1].Len; |
| 2030 | if (++count < max_count && curlen == nextlen) { |
| 2031 | continue; |
| 2032 | } else if (count < min_count) { |
| 2033 | bl_tree[curlen].Freq += count; |
| 2034 | } else if (curlen != 0) { |
| 2035 | if (curlen != prevlen) |
| 2036 | bl_tree[curlen].Freq++; |
| 2037 | bl_tree[REP_3_6].Freq++; |
| 2038 | } else if (count <= 10) { |
| 2039 | bl_tree[REPZ_3_10].Freq++; |
| 2040 | } else { |
| 2041 | bl_tree[REPZ_11_138].Freq++; |
| 2042 | } |
| 2043 | count = 0; |
| 2044 | prevlen = curlen; |
| 2045 | if (nextlen == 0) { |
| 2046 | max_count = 138, min_count = 3; |
| 2047 | } else if (curlen == nextlen) { |
| 2048 | max_count = 6, min_count = 3; |
| 2049 | } else { |
| 2050 | max_count = 7, min_count = 4; |
| 2051 | } |
| 2052 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2053 | } |
| 2054 | |
| 2055 | /* =========================================================================== |
| 2056 | * Send a literal or distance tree in compressed form, using the codes in |
| 2057 | * bl_tree. |
| 2058 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2059 | static void send_tree(ct_data * tree, int max_code) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2060 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2061 | int n; /* iterates over all tree elements */ |
| 2062 | int prevlen = -1; /* last emitted length */ |
| 2063 | int curlen; /* length of current code */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2064 | int nextlen = tree[0].Len; /* length of next code */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2065 | int count = 0; /* repeat count of the current code */ |
| 2066 | int max_count = 7; /* max repeat count */ |
| 2067 | int min_count = 4; /* min repeat count */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2068 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2069 | /* tree[max_code+1].Len = -1; *//* guard already set */ |
| 2070 | if (nextlen == 0) |
| 2071 | max_count = 138, min_count = 3; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2072 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2073 | for (n = 0; n <= max_code; n++) { |
| 2074 | curlen = nextlen; |
| 2075 | nextlen = tree[n + 1].Len; |
| 2076 | if (++count < max_count && curlen == nextlen) { |
| 2077 | continue; |
| 2078 | } else if (count < min_count) { |
| 2079 | do { |
| 2080 | send_code(curlen, bl_tree); |
| 2081 | } while (--count != 0); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2082 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2083 | } else if (curlen != 0) { |
| 2084 | if (curlen != prevlen) { |
| 2085 | send_code(curlen, bl_tree); |
| 2086 | count--; |
| 2087 | } |
| 2088 | Assert(count >= 3 && count <= 6, " 3_6?"); |
| 2089 | send_code(REP_3_6, bl_tree); |
| 2090 | send_bits(count - 3, 2); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2091 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2092 | } else if (count <= 10) { |
| 2093 | send_code(REPZ_3_10, bl_tree); |
| 2094 | send_bits(count - 3, 3); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2095 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2096 | } else { |
| 2097 | send_code(REPZ_11_138, bl_tree); |
| 2098 | send_bits(count - 11, 7); |
| 2099 | } |
| 2100 | count = 0; |
| 2101 | prevlen = curlen; |
| 2102 | if (nextlen == 0) { |
| 2103 | max_count = 138, min_count = 3; |
| 2104 | } else if (curlen == nextlen) { |
| 2105 | max_count = 6, min_count = 3; |
| 2106 | } else { |
| 2107 | max_count = 7, min_count = 4; |
| 2108 | } |
| 2109 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2110 | } |
| 2111 | |
| 2112 | /* =========================================================================== |
| 2113 | * Construct the Huffman tree for the bit lengths and return the index in |
| 2114 | * bl_order of the last bit length code to send. |
| 2115 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2116 | static int build_bl_tree(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2117 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2118 | int max_blindex; /* index of last bit length code of non zero freq */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2119 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2120 | /* Determine the bit length frequencies for literal and distance trees */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2121 | scan_tree((ct_data *) dyn_ltree, l_desc.max_code); |
| 2122 | scan_tree((ct_data *) dyn_dtree, d_desc.max_code); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2123 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2124 | /* Build the bit length tree: */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2125 | build_tree((tree_desc *) (&bl_desc)); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2126 | /* opt_len now includes the length of the tree representations, except |
| 2127 | * the lengths of the bit lengths codes and the 5+5+4 bits for the counts. |
| 2128 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2129 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2130 | /* Determine the number of bit length codes to send. The pkzip format |
| 2131 | * requires that at least 4 bit length codes be sent. (appnote.txt says |
| 2132 | * 3 but the actual value used is 4.) |
| 2133 | */ |
| 2134 | for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) { |
| 2135 | if (bl_tree[bl_order[max_blindex]].Len != 0) |
| 2136 | break; |
| 2137 | } |
| 2138 | /* Update opt_len to include the bit length tree and counts */ |
| 2139 | opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2140 | Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len, static_len)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2141 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2142 | return max_blindex; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2143 | } |
| 2144 | |
| 2145 | /* =========================================================================== |
| 2146 | * Send the header for a block using dynamic Huffman trees: the counts, the |
| 2147 | * lengths of the bit length codes, the literal tree and the distance tree. |
| 2148 | * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4. |
| 2149 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2150 | static void send_all_trees(int lcodes, int dcodes, int blcodes) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2151 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2152 | int rank; /* index in bl_order */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2153 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2154 | Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2155 | Assert(lcodes <= L_CODES && dcodes <= D_CODES |
| 2156 | && blcodes <= BL_CODES, "too many codes"); |
| 2157 | Tracev((stderr, "\nbl counts: ")); |
| 2158 | send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */ |
| 2159 | send_bits(dcodes - 1, 5); |
| 2160 | send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */ |
| 2161 | for (rank = 0; rank < blcodes; rank++) { |
| 2162 | Tracev((stderr, "\nbl code %2d ", bl_order[rank])); |
| 2163 | send_bits(bl_tree[bl_order[rank]].Len, 3); |
| 2164 | } |
| 2165 | Tracev((stderr, "\nbl tree: sent %ld", bits_sent)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2166 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2167 | send_tree((ct_data *) dyn_ltree, lcodes - 1); /* send the literal tree */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2168 | Tracev((stderr, "\nlit tree: sent %ld", bits_sent)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2169 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2170 | send_tree((ct_data *) dyn_dtree, dcodes - 1); /* send the distance tree */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2171 | Tracev((stderr, "\ndist tree: sent %ld", bits_sent)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | /* =========================================================================== |
| 2175 | * Determine the best encoding for the current block: dynamic trees, static |
| 2176 | * trees or store, and output the encoded block to the zip file. This function |
| 2177 | * returns the total compressed length for the file so far. |
| 2178 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2179 | static ulg flush_block(char *buf, ulg stored_len, int eof) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2180 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2181 | ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2182 | int max_blindex; /* index of last bit length code of non zero freq */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2183 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2184 | flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2185 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2186 | /* Check if the file is ascii or binary */ |
| 2187 | if (*file_type == (ush) UNKNOWN) |
| 2188 | set_file_type(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2189 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2190 | /* Construct the literal and distance trees */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2191 | build_tree((tree_desc *) (&l_desc)); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2192 | Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2193 | |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2194 | build_tree((tree_desc *) (&d_desc)); |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2195 | Tracev((stderr, "\ndist data: dyn %ld, stat %ld", opt_len, static_len)); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2196 | /* At this point, opt_len and static_len are the total bit lengths of |
| 2197 | * the compressed block data, excluding the tree representations. |
| 2198 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2199 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2200 | /* Build the bit length tree for the above two trees, and get the index |
| 2201 | * in bl_order of the last bit length code to send. |
| 2202 | */ |
| 2203 | max_blindex = build_bl_tree(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2204 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2205 | /* Determine the best encoding. Compute first the block length in bytes */ |
| 2206 | opt_lenb = (opt_len + 3 + 7) >> 3; |
| 2207 | static_lenb = (static_len + 3 + 7) >> 3; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2208 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2209 | Trace((stderr, |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2210 | "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ", |
| 2211 | opt_lenb, opt_len, static_lenb, static_len, stored_len, |
| 2212 | last_lit, last_dist)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2213 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2214 | if (static_lenb <= opt_lenb) |
| 2215 | opt_lenb = static_lenb; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2216 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2217 | /* If compression failed and this is the first and last block, |
| 2218 | * and if the zip file can be seeked (to rewrite the local header), |
| 2219 | * the whole file is transformed into a stored file: |
| 2220 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2221 | if (stored_len <= opt_lenb && eof && compressed_len == 0L && seekable()) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2222 | /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */ |
| 2223 | if (buf == (char *) 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2224 | bb_error_msg("block vanished"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2225 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2226 | copy_block(buf, (unsigned) stored_len, 0); /* without header */ |
| 2227 | compressed_len = stored_len << 3; |
| 2228 | *file_method = STORED; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2229 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2230 | } else if (stored_len + 4 <= opt_lenb && buf != (char *) 0) { |
| 2231 | /* 4: two words for the lengths */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2232 | /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE. |
| 2233 | * Otherwise we can't have processed more than WSIZE input bytes since |
| 2234 | * the last block flush, because compression would have been |
| 2235 | * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to |
| 2236 | * transform a block into a stored block. |
| 2237 | */ |
| 2238 | send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */ |
| 2239 | compressed_len = (compressed_len + 3 + 7) & ~7L; |
| 2240 | compressed_len += (stored_len + 4) << 3; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2241 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2242 | copy_block(buf, (unsigned) stored_len, 1); /* with header */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2243 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2244 | } else if (static_lenb == opt_lenb) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2245 | send_bits((STATIC_TREES << 1) + eof, 3); |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2246 | compress_block((ct_data *) static_ltree, (ct_data *) static_dtree); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2247 | compressed_len += 3 + static_len; |
| 2248 | } else { |
| 2249 | send_bits((DYN_TREES << 1) + eof, 3); |
| 2250 | send_all_trees(l_desc.max_code + 1, d_desc.max_code + 1, |
| 2251 | max_blindex + 1); |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2252 | compress_block((ct_data *) dyn_ltree, (ct_data *) dyn_dtree); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2253 | compressed_len += 3 + opt_len; |
| 2254 | } |
| 2255 | Assert(compressed_len == bits_sent, "bad compressed size"); |
| 2256 | init_block(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2257 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2258 | if (eof) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2259 | bi_windup(); |
| 2260 | compressed_len += 7; /* align on byte boundary */ |
| 2261 | } |
| 2262 | Tracev((stderr, "\ncomprlen %lu(%lu) ", compressed_len >> 3, |
| 2263 | compressed_len - 7 * eof)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2264 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2265 | return compressed_len >> 3; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2266 | } |
| 2267 | |
| 2268 | /* =========================================================================== |
| 2269 | * Save the match info and tally the frequency counts. Return true if |
| 2270 | * the current block must be flushed. |
| 2271 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2272 | static int ct_tally(int dist, int lc) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2273 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2274 | l_buf[last_lit++] = (uch) lc; |
| 2275 | if (dist == 0) { |
| 2276 | /* lc is the unmatched char */ |
| 2277 | dyn_ltree[lc].Freq++; |
| 2278 | } else { |
| 2279 | /* Here, lc is the match length - MIN_MATCH */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2280 | dist--; /* dist = match distance - 1 */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2281 | Assert((ush) dist < (ush) MAX_DIST && |
| 2282 | (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) && |
| 2283 | (ush) d_code(dist) < (ush) D_CODES, "ct_tally: bad match"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2284 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2285 | dyn_ltree[length_code[lc] + LITERALS + 1].Freq++; |
| 2286 | dyn_dtree[d_code(dist)].Freq++; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2287 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2288 | d_buf[last_dist++] = (ush) dist; |
| 2289 | flags |= flag_bit; |
| 2290 | } |
| 2291 | flag_bit <<= 1; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2292 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2293 | /* Output the flags if they fill a byte: */ |
| 2294 | if ((last_lit & 7) == 0) { |
| 2295 | flag_buf[last_flags++] = flags; |
| 2296 | flags = 0, flag_bit = 1; |
| 2297 | } |
| 2298 | /* Try to guess if it is profitable to stop the current block here */ |
| 2299 | if ((last_lit & 0xfff) == 0) { |
| 2300 | /* Compute an upper bound for the compressed length */ |
| 2301 | ulg out_length = (ulg) last_lit * 8L; |
| 2302 | ulg in_length = (ulg) strstart - block_start; |
| 2303 | int dcode; |
| 2304 | |
| 2305 | for (dcode = 0; dcode < D_CODES; dcode++) { |
| 2306 | out_length += |
| 2307 | (ulg) dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]); |
| 2308 | } |
| 2309 | out_length >>= 3; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2310 | Trace((stderr, |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2311 | "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ", |
| 2312 | last_lit, last_dist, in_length, out_length, |
| 2313 | 100L - out_length * 100L / in_length)); |
| 2314 | if (last_dist < last_lit / 2 && out_length < in_length / 2) |
| 2315 | return 1; |
| 2316 | } |
| 2317 | return (last_lit == LIT_BUFSIZE - 1 || last_dist == DIST_BUFSIZE); |
| 2318 | /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K |
| 2319 | * on 16 bit machines and because stored blocks are restricted to |
| 2320 | * 64K-1 bytes. |
| 2321 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2322 | } |
| 2323 | |
| 2324 | /* =========================================================================== |
| 2325 | * Send the block data compressed using the given Huffman trees |
| 2326 | */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2327 | static void compress_block(ct_data * ltree, ct_data * dtree) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2328 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2329 | unsigned dist; /* distance of matched string */ |
| 2330 | int lc; /* match length or unmatched char (if dist == 0) */ |
| 2331 | unsigned lx = 0; /* running index in l_buf */ |
| 2332 | unsigned dx = 0; /* running index in d_buf */ |
| 2333 | unsigned fx = 0; /* running index in flag_buf */ |
| 2334 | uch flag = 0; /* current flags */ |
| 2335 | unsigned code; /* the code to send */ |
| 2336 | int extra; /* number of extra bits to send */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2337 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2338 | if (last_lit != 0) |
| 2339 | do { |
| 2340 | if ((lx & 7) == 0) |
| 2341 | flag = flag_buf[fx++]; |
| 2342 | lc = l_buf[lx++]; |
| 2343 | if ((flag & 1) == 0) { |
| 2344 | send_code(lc, ltree); /* send a literal byte */ |
| 2345 | Tracecv(isgraph(lc), (stderr, " '%c' ", lc)); |
| 2346 | } else { |
| 2347 | /* Here, lc is the match length - MIN_MATCH */ |
| 2348 | code = length_code[lc]; |
| 2349 | send_code(code + LITERALS + 1, ltree); /* send the length code */ |
| 2350 | extra = extra_lbits[code]; |
| 2351 | if (extra != 0) { |
| 2352 | lc -= base_length[code]; |
| 2353 | send_bits(lc, extra); /* send the extra length bits */ |
| 2354 | } |
| 2355 | dist = d_buf[dx++]; |
| 2356 | /* Here, dist is the match distance - 1 */ |
| 2357 | code = d_code(dist); |
| 2358 | Assert(code < D_CODES, "bad d_code"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2359 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2360 | send_code(code, dtree); /* send the distance code */ |
| 2361 | extra = extra_dbits[code]; |
| 2362 | if (extra != 0) { |
| 2363 | dist -= base_dist[code]; |
| 2364 | send_bits(dist, extra); /* send the extra distance bits */ |
| 2365 | } |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2366 | } /* literal or match pair ? */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2367 | flag >>= 1; |
| 2368 | } while (lx < last_lit); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2369 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2370 | send_code(END_BLOCK, ltree); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2371 | } |
| 2372 | |
| 2373 | /* =========================================================================== |
| 2374 | * Set the file type to ASCII or BINARY, using a crude approximation: |
| 2375 | * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise. |
| 2376 | * IN assertion: the fields freq of dyn_ltree are set and the total of all |
| 2377 | * frequencies does not exceed 64K (to fit in an int on 16 bit machines). |
| 2378 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2379 | static void set_file_type(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2380 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2381 | int n = 0; |
| 2382 | unsigned ascii_freq = 0; |
| 2383 | unsigned bin_freq = 0; |
| 2384 | |
| 2385 | while (n < 7) |
| 2386 | bin_freq += dyn_ltree[n++].Freq; |
| 2387 | while (n < 128) |
| 2388 | ascii_freq += dyn_ltree[n++].Freq; |
| 2389 | while (n < LITERALS) |
| 2390 | bin_freq += dyn_ltree[n++].Freq; |
| 2391 | *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII; |
| 2392 | if (*file_type == BINARY && translate_eol) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2393 | bb_error_msg("-l used on binary file"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2394 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2395 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2396 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2397 | /* zip.c -- compress files to the gzip or pkzip format |
| 2398 | * Copyright (C) 1992-1993 Jean-loup Gailly |
| 2399 | * This is free software; you can redistribute it and/or modify it under the |
| 2400 | * terms of the GNU General Public License, see the file COPYING. |
| 2401 | */ |
| 2402 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2403 | |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 2404 | static uint32_t crc; /* crc on uncompressed file data */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2405 | static long header_bytes; /* number of bytes in gzip header */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2406 | |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 2407 | static void put_long(ulg n) |
| 2408 | { |
Aaron Lehmann | b9df470 | 2001-12-06 03:22:43 +0000 | [diff] [blame] | 2409 | put_short((n) & 0xffff); |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2410 | put_short(((ulg) (n)) >> 16); |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 2411 | } |
| 2412 | |
| 2413 | /* put_header_byte is used for the compressed output |
| 2414 | * - for the initial 4 bytes that can't overflow the buffer. |
| 2415 | */ |
| 2416 | #define put_header_byte(c) {outbuf[outcnt++]=(uch)(c);} |
| 2417 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2418 | /* =========================================================================== |
| 2419 | * Deflate in to out. |
| 2420 | * IN assertions: the input and output buffers are cleared. |
| 2421 | * The variables time_stamp and save_orig_name are initialized. |
| 2422 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2423 | static int zip(int in, int out) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2424 | { |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2425 | uch my_flags = 0; /* general purpose bit flags */ |
| 2426 | ush attr = 0; /* ascii/binary flag */ |
| 2427 | ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2428 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2429 | ifd = in; |
| 2430 | ofd = out; |
| 2431 | outcnt = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2432 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2433 | /* Write the header to the gzip file. See algorithm.doc for the format */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2434 | |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 2435 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2436 | method = DEFLATED; |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2437 | put_header_byte(GZIP_MAGIC[0]); /* magic header */ |
Eric Andersen | 39eb040 | 2001-08-22 04:15:47 +0000 | [diff] [blame] | 2438 | put_header_byte(GZIP_MAGIC[1]); |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2439 | put_header_byte(DEFLATED); /* compression method */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2440 | |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2441 | put_header_byte(my_flags); /* general flags */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2442 | put_long(time_stamp); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2443 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2444 | /* Write deflated file to zip file */ |
| 2445 | crc = updcrc(0, 0); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2446 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2447 | bi_init(out); |
| 2448 | ct_init(&attr, &method); |
| 2449 | lm_init(&deflate_flags); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2450 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2451 | put_byte((uch) deflate_flags); /* extra flags */ |
Glenn L McGrath | d827e8b | 2002-08-22 13:21:26 +0000 | [diff] [blame] | 2452 | put_byte(OS_CODE); /* OS identifier */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2453 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2454 | header_bytes = (long) outcnt; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2455 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2456 | (void) deflate(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2457 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2458 | /* Write the crc and uncompressed size */ |
| 2459 | put_long(crc); |
| 2460 | put_long(isize); |
| 2461 | header_bytes += 2 * sizeof(long); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2462 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2463 | flush_outbuf(); |
| 2464 | return OK; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2465 | } |
| 2466 | |
| 2467 | |
| 2468 | /* =========================================================================== |
| 2469 | * Read a new buffer from the current input file, perform end-of-line |
| 2470 | * translation, and update the crc and input file size. |
| 2471 | * IN assertion: size >= 2 (for end-of-line translation) |
| 2472 | */ |
Eric Andersen | 3073dfb | 2001-07-02 17:57:32 +0000 | [diff] [blame] | 2473 | static int file_read(char *buf, unsigned size) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2474 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2475 | unsigned len; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2476 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2477 | Assert(insize == 0, "inbuf not empty"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2478 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2479 | len = read(ifd, buf, size); |
| 2480 | if (len == (unsigned) (-1) || len == 0) |
| 2481 | return (int) len; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2482 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 2483 | crc = updcrc((uch *) buf, len); |
| 2484 | isize += (ulg) len; |
| 2485 | return (int) len; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2486 | } |
Matt Kraai | 7918e1f | 2000-11-08 06:52:57 +0000 | [diff] [blame] | 2487 | |
| 2488 | /* =========================================================================== |
| 2489 | * Write the output buffer outbuf[0..outcnt-1] and update bytes_out. |
| 2490 | * (used for the compressed data only) |
| 2491 | */ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2492 | static void flush_outbuf(void) |
Matt Kraai | 7918e1f | 2000-11-08 06:52:57 +0000 | [diff] [blame] | 2493 | { |
| 2494 | if (outcnt == 0) |
| 2495 | return; |
| 2496 | |
| 2497 | write_buf(ofd, (char *) outbuf, outcnt); |
Matt Kraai | 7918e1f | 2000-11-08 06:52:57 +0000 | [diff] [blame] | 2498 | outcnt = 0; |
| 2499 | } |