blob: f74fdf1ad75d516e2966ffbdc1bcf365d382c2d0 [file] [log] [blame]
Eric Andersen0d6d88a2003-10-18 01:58:35 +00001/* vi: set sw=4 ts=4: */
Rob Landleye66c7ef2006-04-14 19:25:01 +00002/* Small bzip2 deflate implementation, by Rob Landley (rob@landley.net).
Glenn L McGrath60bce492002-11-03 07:28:38 +00003
Rob Landleye66c7ef2006-04-14 19:25:01 +00004 Based on bzip2 decompression code by Julian R Seward (jseward@acm.org),
5 which also acknowledges contributions by Mike Burrows, David Wheeler,
6 Peter Fenwick, Alistair Moffat, Radford Neal, Ian H. Witten,
7 Robert Sedgewick, and Jon L. Bentley.
Glenn L McGrath60bce492002-11-03 07:28:38 +00008
Rob Landleye66c7ef2006-04-14 19:25:01 +00009 Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen0d6d88a2003-10-18 01:58:35 +000010*/
Glenn L McGrath60bce492002-11-03 07:28:38 +000011
Eric Andersen5fa4db22003-10-23 06:52:01 +000012/*
13 Size and speed optimizations by Manuel Novoa III (mjn3@codepoet.org).
14
Eric Andersenaff114c2004-04-14 17:51:38 +000015 More efficient reading of Huffman codes, a streamlined read_bunzip()
Eric Andersen5fa4db22003-10-23 06:52:01 +000016 function, and various other tweaks. In (limited) tests, approximately
17 20% faster than bzcat on x86 and about 10% faster on arm.
18
19 Note that about 2/3 of the time is spent in read_unzip() reversing
20 the Burrows-Wheeler transformation. Much of that time is delay
21 resulting from cache misses.
22
23 I would ask that anyone benefiting from this work, especially those
24 using it in commercial products, consider making a donation to my local
Rob Landleyf856eab2006-02-17 03:43:49 +000025 non-profit hospice organization (www.hospiceacadiana.com) in the name of
Bernhard Reutner-Fischercfb53df2006-04-02 21:50:01 +000026 the woman I loved, Toni W. Hagan, who passed away Feb. 12, 2003.
Eric Andersen5fa4db22003-10-23 06:52:01 +000027
28 Manuel
29 */
30
Glenn L McGrath1c834402003-10-28 23:32:12 +000031#include "libbb.h"
Bernhard Reutner-Fischercfb53df2006-04-02 21:50:01 +000032#include "unarchive.h"
33
Eric Andersenaff114c2004-04-14 17:51:38 +000034/* Constants for Huffman coding */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000035#define MAX_GROUPS 6
36#define GROUP_SIZE 50 /* 64 would have been more efficient */
37#define MAX_HUFCODE_BITS 20 /* Longest Huffman code allowed */
38#define MAX_SYMBOLS 258 /* 256 literals + RUNA + RUNB */
39#define SYMBOL_RUNA 0
40#define SYMBOL_RUNB 1
Glenn L McGrath60bce492002-11-03 07:28:38 +000041
Eric Andersen0d6d88a2003-10-18 01:58:35 +000042/* Status return values */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000043#define RETVAL_OK 0
44#define RETVAL_LAST_BLOCK (-1)
45#define RETVAL_NOT_BZIP_DATA (-2)
46#define RETVAL_UNEXPECTED_INPUT_EOF (-3)
Denis Vlasenko52a43882007-10-10 20:53:41 +000047#define RETVAL_SHORT_WRITE (-4)
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000048#define RETVAL_DATA_ERROR (-5)
49#define RETVAL_OUT_OF_MEMORY (-6)
50#define RETVAL_OBSOLETE_INPUT (-7)
Glenn L McGrath60bce492002-11-03 07:28:38 +000051
Eric Andersen0d6d88a2003-10-18 01:58:35 +000052/* Other housekeeping constants */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000053#define IOBUF_SIZE 4096
Glenn L McGrath60bce492002-11-03 07:28:38 +000054
Eric Andersenaff114c2004-04-14 17:51:38 +000055/* This is what we know about each Huffman coding group */
Eric Andersen0d6d88a2003-10-18 01:58:35 +000056struct group_data {
Denis Vlasenko52a43882007-10-10 20:53:41 +000057 /* We have an extra slot at the end of limit[] for a sentinel value. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +000058 int limit[MAX_HUFCODE_BITS+1], base[MAX_HUFCODE_BITS], permute[MAX_SYMBOLS];
Eric Andersen5fa4db22003-10-23 06:52:01 +000059 int minLen, maxLen;
Glenn L McGrath60bce492002-11-03 07:28:38 +000060};
61
Eric Andersen0d6d88a2003-10-18 01:58:35 +000062/* Structure holding all the housekeeping data, including IO buffers and
Denis Vlasenko52a43882007-10-10 20:53:41 +000063 * memory that persists between calls to bunzip
64 * Found the most used member:
65 * cat this_file.c | sed -e 's/"/ /g' -e "s/'/ /g" | xargs -n1 \
66 * | grep 'bd->' | sed 's/^.*bd->/bd->/' | sort | $PAGER
67 * and moved it (inbufBitCount) to offset 0.
68 */
Rob Landleyf856eab2006-02-17 03:43:49 +000069
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000070struct bunzip_data {
Eric Andersen5fa4db22003-10-23 06:52:01 +000071 /* I/O tracking data (file handles, buffers, positions, etc.) */
Denis Vlasenko52a43882007-10-10 20:53:41 +000072 unsigned inbufBitCount, inbufBits;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +000073 int in_fd, out_fd, inbufCount, inbufPos /*, outbufPos*/;
Eric Andersen5fa4db22003-10-23 06:52:01 +000074 unsigned char *inbuf /*,*outbuf*/;
Denis Vlasenko52a43882007-10-10 20:53:41 +000075
76 /* State for interrupting output loop */
77 int writeCopies, writePos, writeRunCountdown, writeCount, writeCurrent;
Rob Landleyf856eab2006-02-17 03:43:49 +000078
Eric Andersen0d6d88a2003-10-18 01:58:35 +000079 /* The CRC values stored in the block header and calculated from the data */
Rob Landleyc57ec372006-04-10 17:07:15 +000080 uint32_t headerCRC, totalCRC, writeCRC;
Rob Landleyf856eab2006-02-17 03:43:49 +000081
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000082 /* Intermediate buffer and its size (in bytes) */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +000083 unsigned *dbuf, dbufSize;
Rob Landleyf856eab2006-02-17 03:43:49 +000084
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000085 /* For I/O error handling */
86 jmp_buf jmpbuf;
Rob Landleyf856eab2006-02-17 03:43:49 +000087
Denis Vlasenko52a43882007-10-10 20:53:41 +000088 /* Big things go last (register-relative addressing can be larger for big offsets) */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000089 uint32_t crc32Table[256];
Eric Andersen0d6d88a2003-10-18 01:58:35 +000090 unsigned char selectors[32768]; /* nSelectors=15 bits */
Eric Andersenaff114c2004-04-14 17:51:38 +000091 struct group_data groups[MAX_GROUPS]; /* Huffman coding tables */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000092};
93/* typedef struct bunzip_data bunzip_data; -- done in .h file */
Rob Landleyf856eab2006-02-17 03:43:49 +000094
Eric Andersen0d6d88a2003-10-18 01:58:35 +000095
96/* Return the next nnn bits of input. All reads from the compressed input
97 are done through this function. All reads are big endian */
Rob Landleyf856eab2006-02-17 03:43:49 +000098
Denis Vlasenko52a43882007-10-10 20:53:41 +000099static unsigned get_bits(bunzip_data *bd, int bits_wanted)
Glenn L McGrath60bce492002-11-03 07:28:38 +0000100{
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000101 unsigned bits = 0;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000102
103 /* If we need to get more data from the byte buffer, do so. (Loop getting
104 one byte at a time to enforce endianness and avoid unaligned access.) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000105
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000106 while ((int)(bd->inbufBitCount) < bits_wanted) {
Rob Landleyf856eab2006-02-17 03:43:49 +0000107
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000108 /* If we need to read more data from file into byte buffer, do so */
Rob Landleyf856eab2006-02-17 03:43:49 +0000109
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000110 if (bd->inbufPos == bd->inbufCount) {
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000111 /* if "no input fd" case: in_fd == -1, read fails, we jump */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000112 bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE);
113 if (bd->inbufCount <= 0)
114 longjmp(bd->jmpbuf, RETVAL_UNEXPECTED_INPUT_EOF);
115 bd->inbufPos = 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000116 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000117
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000118 /* Avoid 32-bit overflow (dump bit buffer to top of output) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000119
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000120 if (bd->inbufBitCount >= 24) {
121 bits = bd->inbufBits & ((1 << bd->inbufBitCount) - 1);
122 bits_wanted -= bd->inbufBitCount;
123 bits <<= bits_wanted;
124 bd->inbufBitCount = 0;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000125 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000126
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000127 /* Grab next 8 bits of input from buffer. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000128
Denis Vlasenko52a43882007-10-10 20:53:41 +0000129 bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++];
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000130 bd->inbufBitCount += 8;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000131 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000132
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000133 /* Calculate result */
Rob Landleyf856eab2006-02-17 03:43:49 +0000134
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000135 bd->inbufBitCount -= bits_wanted;
136 bits |= (bd->inbufBits >> bd->inbufBitCount) & ((1 << bits_wanted) - 1);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000137
138 return bits;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000139}
140
Eric Andersen5fa4db22003-10-23 06:52:01 +0000141/* Unpacks the next block and sets up for the inverse burrows-wheeler step. */
Eric Andersen1acfb722003-10-18 01:59:46 +0000142
Eric Andersen5fa4db22003-10-23 06:52:01 +0000143static int get_next_block(bunzip_data *bd)
Glenn L McGrath60bce492002-11-03 07:28:38 +0000144{
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000145 struct group_data *hufGroup;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000146 int dbufCount, nextSym, dbufSize, groupCount, *base, *limit, selector,
147 i, j, k, t, runPos, symCount, symTotal, nSelectors, byteCount[256];
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000148 unsigned char uc, symToByte[256], mtfSymbol[256], *selectors;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000149 unsigned *dbuf, origPtr;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000150
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000151 dbuf = bd->dbuf;
152 dbufSize = bd->dbufSize;
153 selectors = bd->selectors;
Rob Landley2c98c402006-02-17 05:12:03 +0000154
Eric Andersen5fa4db22003-10-23 06:52:01 +0000155 /* Reset longjmp I/O error handling */
Rob Landley2c98c402006-02-17 05:12:03 +0000156
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000157 i = setjmp(bd->jmpbuf);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000158 if (i) return i;
Rob Landley2c98c402006-02-17 05:12:03 +0000159
Eric Andersen5fa4db22003-10-23 06:52:01 +0000160 /* Read in header signature and CRC, then validate signature.
161 (last block signature means CRC is for whole file, return now) */
Rob Landley2c98c402006-02-17 05:12:03 +0000162
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000163 i = get_bits(bd, 24);
164 j = get_bits(bd, 24);
165 bd->headerCRC = get_bits(bd, 32);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000166 if ((i == 0x177245) && (j == 0x385090)) return RETVAL_LAST_BLOCK;
167 if ((i != 0x314159) || (j != 0x265359)) return RETVAL_NOT_BZIP_DATA;
Rob Landley2c98c402006-02-17 05:12:03 +0000168
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000169 /* We can add support for blockRandomised if anybody complains. There was
170 some code for this in busybox 1.0.0-pre3, but nobody ever noticed that
171 it didn't actually work. */
Rob Landley2c98c402006-02-17 05:12:03 +0000172
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000173 if (get_bits(bd, 1)) return RETVAL_OBSOLETE_INPUT;
174 origPtr = get_bits(bd, 24);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000175 if ((int)origPtr > dbufSize) return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000176
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000177 /* mapping table: if some byte values are never used (encoding things
178 like ascii text), the compression code removes the gaps to have fewer
179 symbols to deal with, and writes a sparse bitfield indicating which
180 values were present. We make a translation table to convert the symbols
181 back to the corresponding bytes. */
Rob Landley2c98c402006-02-17 05:12:03 +0000182
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000183 t = get_bits(bd, 16);
184 symTotal = 0;
185 for (i = 0; i < 16; i++) {
186 if (t & (1 << (15-i))) {
187 k = get_bits(bd, 16);
188 for (j = 0; j < 16; j++)
189 if (k & (1 << (15-j)))
190 symToByte[symTotal++] = (16*i) + j;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000191 }
192 }
Rob Landley2c98c402006-02-17 05:12:03 +0000193
Eric Andersenaff114c2004-04-14 17:51:38 +0000194 /* How many different Huffman coding groups does this block use? */
Rob Landley2c98c402006-02-17 05:12:03 +0000195
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000196 groupCount = get_bits(bd, 3);
197 if (groupCount < 2 || groupCount > MAX_GROUPS)
198 return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000199
Eric Andersenaff114c2004-04-14 17:51:38 +0000200 /* nSelectors: Every GROUP_SIZE many symbols we select a new Huffman coding
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000201 group. Read in the group selector list, which is stored as MTF encoded
Eric Andersen5fa4db22003-10-23 06:52:01 +0000202 bit runs. (MTF=Move To Front, as each value is used it's moved to the
203 start of the list.) */
Rob Landley2c98c402006-02-17 05:12:03 +0000204
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000205 nSelectors = get_bits(bd, 15);
206 if (!nSelectors) return RETVAL_DATA_ERROR;
207 for (i = 0; i < groupCount; i++) mtfSymbol[i] = i;
208 for (i = 0; i < nSelectors; i++) {
Rob Landley2c98c402006-02-17 05:12:03 +0000209
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000210 /* Get next value */
Rob Landley2c98c402006-02-17 05:12:03 +0000211
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000212 for (j = 0; get_bits(bd, 1); j++)
Denis Vlasenko52a43882007-10-10 20:53:41 +0000213 if (j >= groupCount) return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000214
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000215 /* Decode MTF to get the next selector */
Rob Landley2c98c402006-02-17 05:12:03 +0000216
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000217 uc = mtfSymbol[j];
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000218 for (;j;j--) mtfSymbol[j] = mtfSymbol[j-1];
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000219 mtfSymbol[0] = selectors[i] = uc;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000220 }
Rob Landley2c98c402006-02-17 05:12:03 +0000221
Eric Andersenaff114c2004-04-14 17:51:38 +0000222 /* Read the Huffman coding tables for each group, which code for symTotal
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000223 literal symbols, plus two run symbols (RUNA, RUNB) */
Rob Landley2c98c402006-02-17 05:12:03 +0000224
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000225 symCount = symTotal + 2;
226 for (j = 0; j < groupCount; j++) {
227 unsigned char length[MAX_SYMBOLS], temp[MAX_HUFCODE_BITS+1];
228 int minLen, maxLen, pp;
Rob Landley2c98c402006-02-17 05:12:03 +0000229
Eric Andersenaff114c2004-04-14 17:51:38 +0000230 /* Read Huffman code lengths for each symbol. They're stored in
Eric Andersen5fa4db22003-10-23 06:52:01 +0000231 a way similar to mtf; record a starting value for the first symbol,
232 and an offset from the previous value for everys symbol after that.
233 (Subtracting 1 before the loop and then adding it back at the end is
234 an optimization that makes the test inside the loop simpler: symbol
235 length 0 becomes negative, so an unsigned inequality catches it.) */
Rob Landley2c98c402006-02-17 05:12:03 +0000236
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000237 t = get_bits(bd, 5) - 1;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000238 for (i = 0; i < symCount; i++) {
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000239 for (;;) {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000240 if ((unsigned)t > (MAX_HUFCODE_BITS-1))
Eric Andersen5fa4db22003-10-23 06:52:01 +0000241 return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000242
Eric Andersen5fa4db22003-10-23 06:52:01 +0000243 /* If first bit is 0, stop. Else second bit indicates whether
244 to increment or decrement the value. Optimization: grab 2
245 bits and unget the second if the first was 0. */
Rob Landley2c98c402006-02-17 05:12:03 +0000246
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000247 k = get_bits(bd, 2);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000248 if (k < 2) {
249 bd->inbufBitCount++;
250 break;
251 }
Rob Landley2c98c402006-02-17 05:12:03 +0000252
Eric Andersen5fa4db22003-10-23 06:52:01 +0000253 /* Add one if second bit 1, else subtract 1. Avoids if/else */
Rob Landley2c98c402006-02-17 05:12:03 +0000254
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000255 t += (((k+1) & 2) - 1);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000256 }
Rob Landley2c98c402006-02-17 05:12:03 +0000257
Eric Andersen5fa4db22003-10-23 06:52:01 +0000258 /* Correct for the initial -1, to get the final symbol length */
Rob Landley2c98c402006-02-17 05:12:03 +0000259
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000260 length[i] = t + 1;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000261 }
Rob Landley2c98c402006-02-17 05:12:03 +0000262
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000263 /* Find largest and smallest lengths in this group */
Rob Landley2c98c402006-02-17 05:12:03 +0000264
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000265 minLen = maxLen = length[0];
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000266 for (i = 1; i < symCount; i++) {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000267 if (length[i] > maxLen) maxLen = length[i];
268 else if (length[i] < minLen) minLen = length[i];
Glenn L McGrath60bce492002-11-03 07:28:38 +0000269 }
Rob Landley2c98c402006-02-17 05:12:03 +0000270
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000271 /* Calculate permute[], base[], and limit[] tables from length[].
272 *
Eric Andersenaff114c2004-04-14 17:51:38 +0000273 * permute[] is the lookup table for converting Huffman coded symbols
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000274 * into decoded symbols. base[] is the amount to subtract from the
Eric Andersenaff114c2004-04-14 17:51:38 +0000275 * value of a Huffman symbol of a given length when using permute[].
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000276 *
277 * limit[] indicates the largest numerical value a symbol with a given
Eric Andersenaff114c2004-04-14 17:51:38 +0000278 * number of bits can have. This is how the Huffman codes can vary in
Eric Andersen5fa4db22003-10-23 06:52:01 +0000279 * length: each code with a value>limit[length] needs another bit.
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000280 */
Rob Landley2c98c402006-02-17 05:12:03 +0000281
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000282 hufGroup = bd->groups + j;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000283 hufGroup->minLen = minLen;
284 hufGroup->maxLen = maxLen;
Rob Landley2c98c402006-02-17 05:12:03 +0000285
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000286 /* Note that minLen can't be smaller than 1, so we adjust the base
287 and limit array pointers so we're not always wasting the first
288 entry. We do this again when using them (during symbol decoding).*/
Rob Landley2c98c402006-02-17 05:12:03 +0000289
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000290 base = hufGroup->base - 1;
291 limit = hufGroup->limit - 1;
Rob Landley2c98c402006-02-17 05:12:03 +0000292
Eric Andersen5fa4db22003-10-23 06:52:01 +0000293 /* Calculate permute[]. Concurently, initialize temp[] and limit[]. */
Rob Landley2c98c402006-02-17 05:12:03 +0000294
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000295 pp = 0;
296 for (i = minLen; i <= maxLen; i++) {
297 temp[i] = limit[i] = 0;
298 for (t = 0; t < symCount; t++)
299 if (length[t] == i)
300 hufGroup->permute[pp++] = t;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000301 }
Rob Landley2c98c402006-02-17 05:12:03 +0000302
Eric Andersen5fa4db22003-10-23 06:52:01 +0000303 /* Count symbols coded for at each bit length */
Rob Landley2c98c402006-02-17 05:12:03 +0000304
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000305 for (i = 0; i < symCount; i++) temp[length[i]]++;
Rob Landley2c98c402006-02-17 05:12:03 +0000306
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000307 /* Calculate limit[] (the largest symbol-coding value at each bit
308 * length, which is (previous limit<<1)+symbols at this level), and
309 * base[] (number of symbols to ignore at each bit length, which is
Eric Andersen5fa4db22003-10-23 06:52:01 +0000310 * limit minus the cumulative count of symbols coded for already). */
Rob Landley2c98c402006-02-17 05:12:03 +0000311
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000312 pp = t = 0;
313 for (i = minLen; i < maxLen; i++) {
314 pp += temp[i];
Rob Landley2c98c402006-02-17 05:12:03 +0000315
Eric Andersen5fa4db22003-10-23 06:52:01 +0000316 /* We read the largest possible symbol size and then unget bits
317 after determining how many we need, and those extra bits could
318 be set to anything. (They're noise from future symbols.) At
319 each level we're really only interested in the first few bits,
320 so here we set all the trailing to-be-ignored bits to 1 so they
321 don't affect the value>limit[length] comparison. */
Rob Landley2c98c402006-02-17 05:12:03 +0000322
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000323 limit[i] = (pp << (maxLen - i)) - 1;
324 pp <<= 1;
325 t += temp[i];
326 base[i+1] = pp - t;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000327 }
Denis Vlasenko52a43882007-10-10 20:53:41 +0000328 limit[maxLen+1] = INT_MAX; /* Sentinel value for reading next sym. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000329 limit[maxLen] = pp + temp[maxLen] - 1;
330 base[minLen] = 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000331 }
Rob Landley2c98c402006-02-17 05:12:03 +0000332
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000333 /* We've finished reading and digesting the block header. Now read this
Eric Andersenaff114c2004-04-14 17:51:38 +0000334 block's Huffman coded symbols from the file and undo the Huffman coding
Denis Vlasenko52a43882007-10-10 20:53:41 +0000335 and run length encoding, saving the result into dbuf[dbufCount++] = uc */
Glenn L McGrath60bce492002-11-03 07:28:38 +0000336
Eric Andersen5fa4db22003-10-23 06:52:01 +0000337 /* Initialize symbol occurrence counters and symbol Move To Front table */
Rob Landley2c98c402006-02-17 05:12:03 +0000338
Denis Vlasenko52a43882007-10-10 20:53:41 +0000339 memset(byteCount, 0, sizeof(byteCount)); /* smaller, maybe slower? */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000340 for (i = 0; i < 256; i++) {
Denis Vlasenko52a43882007-10-10 20:53:41 +0000341 //byteCount[i] = 0;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000342 mtfSymbol[i] = (unsigned char)i;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000343 }
Rob Landley2c98c402006-02-17 05:12:03 +0000344
Eric Andersen5fa4db22003-10-23 06:52:01 +0000345 /* Loop through compressed symbols. */
Rob Landley2c98c402006-02-17 05:12:03 +0000346
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000347 runPos = dbufCount = selector = 0;
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000348 for (;;) {
Rob Landley2c98c402006-02-17 05:12:03 +0000349
Rob Landleya8b98d62004-11-16 12:07:04 +0000350 /* fetch next Huffman coding group from list. */
Rob Landley2c98c402006-02-17 05:12:03 +0000351
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000352 symCount = GROUP_SIZE - 1;
353 if (selector >= nSelectors) return RETVAL_DATA_ERROR;
354 hufGroup = bd->groups + selectors[selector++];
355 base = hufGroup->base - 1;
356 limit = hufGroup->limit - 1;
357 continue_this_group:
Rob Landley2c98c402006-02-17 05:12:03 +0000358
Eric Andersenaff114c2004-04-14 17:51:38 +0000359 /* Read next Huffman-coded symbol. */
Rob Landley2c98c402006-02-17 05:12:03 +0000360
Eric Andersen5fa4db22003-10-23 06:52:01 +0000361 /* Note: It is far cheaper to read maxLen bits and back up than it is
362 to read minLen bits and then an additional bit at a time, testing
363 as we go. Because there is a trailing last block (with file CRC),
364 there is no danger of the overread causing an unexpected EOF for a
365 valid compressed file. As a further optimization, we do the read
366 inline (falling back to a call to get_bits if the buffer runs
367 dry). The following (up to got_huff_bits:) is equivalent to
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000368 j = get_bits(bd, hufGroup->maxLen);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000369 */
Rob Landley2c98c402006-02-17 05:12:03 +0000370
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000371 while ((int)(bd->inbufBitCount) < hufGroup->maxLen) {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000372 if (bd->inbufPos == bd->inbufCount) {
373 j = get_bits(bd, hufGroup->maxLen);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000374 goto got_huff_bits;
375 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000376 bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++];
377 bd->inbufBitCount += 8;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000378 };
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000379 bd->inbufBitCount -= hufGroup->maxLen;
380 j = (bd->inbufBits >> bd->inbufBitCount) & ((1 << hufGroup->maxLen) - 1);
Rob Landley2c98c402006-02-17 05:12:03 +0000381
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000382 got_huff_bits:
Rob Landley2c98c402006-02-17 05:12:03 +0000383
Eric Andersen5fa4db22003-10-23 06:52:01 +0000384 /* Figure how how many bits are in next symbol and unget extras */
Rob Landley2c98c402006-02-17 05:12:03 +0000385
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000386 i = hufGroup->minLen;
387 while (j > limit[i]) ++i;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000388 bd->inbufBitCount += (hufGroup->maxLen - i);
Rob Landley2c98c402006-02-17 05:12:03 +0000389
Eric Andersen5fa4db22003-10-23 06:52:01 +0000390 /* Huffman decode value to get nextSym (with bounds checking) */
Rob Landley2c98c402006-02-17 05:12:03 +0000391
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000392 if (i > hufGroup->maxLen)
393 return RETVAL_DATA_ERROR;
394 j = (j >> (hufGroup->maxLen - i)) - base[i];
395 if ((unsigned)j >= MAX_SYMBOLS)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000396 return RETVAL_DATA_ERROR;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000397 nextSym = hufGroup->permute[j];
Rob Landley2c98c402006-02-17 05:12:03 +0000398
Eric Andersen5fa4db22003-10-23 06:52:01 +0000399 /* We have now decoded the symbol, which indicates either a new literal
400 byte, or a repeated run of the most recent literal byte. First,
401 check if nextSym indicates a repeated run, and if so loop collecting
402 how many times to repeat the last literal. */
Rob Landley2c98c402006-02-17 05:12:03 +0000403
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000404 if ((unsigned)nextSym <= SYMBOL_RUNB) { /* RUNA or RUNB */
Rob Landley2c98c402006-02-17 05:12:03 +0000405
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000406 /* If this is the start of a new run, zero out counter */
Rob Landley2c98c402006-02-17 05:12:03 +0000407
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000408 if (!runPos) {
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000409 runPos = 1;
410 t = 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000411 }
Rob Landley2c98c402006-02-17 05:12:03 +0000412
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000413 /* Neat trick that saves 1 symbol: instead of or-ing 0 or 1 at
414 each bit position, add 1 or 2 instead. For example,
415 1011 is 1<<0 + 1<<1 + 2<<2. 1010 is 2<<0 + 2<<1 + 1<<2.
416 You can make any bit pattern that way using 1 less symbol than
417 the basic or 0/1 method (except all bits 0, which would use no
418 symbols, but a run of length 0 doesn't mean anything in this
419 context). Thus space is saved. */
Rob Landley2c98c402006-02-17 05:12:03 +0000420
Eric Andersen1acfb722003-10-18 01:59:46 +0000421 t += (runPos << nextSym); /* +runPos if RUNA; +2*runPos if RUNB */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000422 if (runPos < dbufSize) runPos <<= 1;
Rob Landleya8b98d62004-11-16 12:07:04 +0000423 goto end_of_huffman_loop;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000424 }
Rob Landley2c98c402006-02-17 05:12:03 +0000425
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000426 /* When we hit the first non-run symbol after a run, we now know
427 how many times to repeat the last literal, so append that many
428 copies to our buffer of decoded symbols (dbuf) now. (The last
429 literal used is the one at the head of the mtfSymbol array.) */
Rob Landley2c98c402006-02-17 05:12:03 +0000430
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000431 if (runPos) {
432 runPos = 0;
433 if (dbufCount + t >= dbufSize) return RETVAL_DATA_ERROR;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000434
435 uc = symToByte[mtfSymbol[0]];
436 byteCount[uc] += t;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000437 while (t--) dbuf[dbufCount++] = uc;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000438 }
Rob Landley2c98c402006-02-17 05:12:03 +0000439
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000440 /* Is this the terminating symbol? */
Rob Landley2c98c402006-02-17 05:12:03 +0000441
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000442 if (nextSym > symTotal) break;
Rob Landley2c98c402006-02-17 05:12:03 +0000443
Eric Andersen5fa4db22003-10-23 06:52:01 +0000444 /* At this point, nextSym indicates a new literal character. Subtract
445 one to get the position in the MTF array at which this literal is
446 currently to be found. (Note that the result can't be -1 or 0,
447 because 0 and 1 are RUNA and RUNB. But another instance of the
448 first symbol in the mtf array, position 0, would have been handled
449 as part of a run above. Therefore 1 unused mtf position minus
450 2 non-literal nextSym values equals -1.) */
Rob Landley2c98c402006-02-17 05:12:03 +0000451
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000452 if (dbufCount >= dbufSize) return RETVAL_DATA_ERROR;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000453 i = nextSym - 1;
454 uc = mtfSymbol[i];
Rob Landley2c98c402006-02-17 05:12:03 +0000455
Eric Andersen5fa4db22003-10-23 06:52:01 +0000456 /* Adjust the MTF array. Since we typically expect to move only a
457 * small number of symbols, and are bound by 256 in any case, using
458 * memmove here would typically be bigger and slower due to function
459 * call overhead and other assorted setup costs. */
Rob Landley2c98c402006-02-17 05:12:03 +0000460
Eric Andersen1acfb722003-10-18 01:59:46 +0000461 do {
462 mtfSymbol[i] = mtfSymbol[i-1];
463 } while (--i);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000464 mtfSymbol[0] = uc;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000465 uc = symToByte[uc];
Rob Landley2c98c402006-02-17 05:12:03 +0000466
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000467 /* We have our literal byte. Save it into dbuf. */
Rob Landley2c98c402006-02-17 05:12:03 +0000468
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000469 byteCount[uc]++;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000470 dbuf[dbufCount++] = (unsigned)uc;
Rob Landley2c98c402006-02-17 05:12:03 +0000471
Rob Landleyf856eab2006-02-17 03:43:49 +0000472 /* Skip group initialization if we're not done with this group. Done
473 * this way to avoid compiler warning. */
Rob Landley2c98c402006-02-17 05:12:03 +0000474
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000475 end_of_huffman_loop:
476 if (symCount--) goto continue_this_group;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000477 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000478
Eric Andersenaff114c2004-04-14 17:51:38 +0000479 /* At this point, we've read all the Huffman-coded symbols (and repeated
Denis Vlasenko246b5c32007-04-10 17:18:12 +0000480 runs) for this block from the input stream, and decoded them into the
Eric Andersen5fa4db22003-10-23 06:52:01 +0000481 intermediate buffer. There are dbufCount many decoded bytes in dbuf[].
482 Now undo the Burrows-Wheeler transform on dbuf.
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000483 See http://dogma.net/markn/articles/bwt/bwt.htm
484 */
Rob Landley2c98c402006-02-17 05:12:03 +0000485
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000486 /* Turn byteCount into cumulative occurrence counts of 0 to n-1. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000487
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000488 j = 0;
489 for (i = 0; i < 256; i++) {
490 k = j + byteCount[i];
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000491 byteCount[i] = j;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000492 j = k;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000493 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000494
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000495 /* Figure out what order dbuf would be in if we sorted it. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000496
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000497 for (i = 0; i < dbufCount; i++) {
498 uc = (unsigned char)(dbuf[i] & 0xff);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000499 dbuf[byteCount[uc]] |= (i << 8);
500 byteCount[uc]++;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000501 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000502
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000503 /* Decode first byte by hand to initialize "previous" byte. Note that it
504 doesn't get output, and if the first three characters are identical
Eric Andersen5fa4db22003-10-23 06:52:01 +0000505 it doesn't qualify as a run (hence writeRunCountdown=5). */
Rob Landley2c98c402006-02-17 05:12:03 +0000506
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000507 if (dbufCount) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000508 if ((int)origPtr >= dbufCount) return RETVAL_DATA_ERROR;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000509 bd->writePos = dbuf[origPtr];
510 bd->writeCurrent = (unsigned char)(bd->writePos & 0xff);
511 bd->writePos >>= 8;
512 bd->writeRunCountdown = 5;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000513 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000514 bd->writeCount = dbufCount;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000515
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000516 return RETVAL_OK;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000517}
518
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000519/* Undo burrows-wheeler transform on intermediate buffer to produce output.
Eric Andersen5fa4db22003-10-23 06:52:01 +0000520 If start_bunzip was initialized with out_fd=-1, then up to len bytes of
521 data are written to outbuf. Return value is number of bytes written or
522 error (all errors are negative numbers). If out_fd!=-1, outbuf and len
523 are ignored, data is written to out_fd and return is RETVAL_OK or error.
524*/
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000525
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000526int read_bunzip(bunzip_data *bd, char *outbuf, int len)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000527{
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000528 const unsigned *dbuf;
529 int pos, current, previous, gotcount;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000530
531 /* If last read was short due to end of file, return last block now */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000532 if (bd->writeCount < 0) return bd->writeCount;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000533
534 gotcount = 0;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000535 dbuf = bd->dbuf;
536 pos = bd->writePos;
537 current = bd->writeCurrent;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000538
539 /* We will always have pending decoded data to write into the output
540 buffer unless this is the very first call (in which case we haven't
Eric Andersenaff114c2004-04-14 17:51:38 +0000541 Huffman-decoded a block into the intermediate buffer yet). */
Eric Andersen5fa4db22003-10-23 06:52:01 +0000542
543 if (bd->writeCopies) {
Rob Landleyf856eab2006-02-17 03:43:49 +0000544
Eric Andersen5fa4db22003-10-23 06:52:01 +0000545 /* Inside the loop, writeCopies means extra copies (beyond 1) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000546
Eric Andersen5fa4db22003-10-23 06:52:01 +0000547 --bd->writeCopies;
Rob Landleyf856eab2006-02-17 03:43:49 +0000548
Eric Andersen5fa4db22003-10-23 06:52:01 +0000549 /* Loop outputting bytes */
Rob Landleyf856eab2006-02-17 03:43:49 +0000550
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000551 for (;;) {
Rob Landleyf856eab2006-02-17 03:43:49 +0000552
Eric Andersen5fa4db22003-10-23 06:52:01 +0000553 /* If the output buffer is full, snapshot state and return */
Rob Landleyf856eab2006-02-17 03:43:49 +0000554
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000555 if (gotcount >= len) {
Denis Vlasenko52a43882007-10-10 20:53:41 +0000556 bd->writePos = pos;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000557 bd->writeCurrent = current;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000558 bd->writeCopies++;
559 return len;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000560 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000561
Eric Andersen5fa4db22003-10-23 06:52:01 +0000562 /* Write next byte into output buffer, updating CRC */
Rob Landleyf856eab2006-02-17 03:43:49 +0000563
Eric Andersen5fa4db22003-10-23 06:52:01 +0000564 outbuf[gotcount++] = current;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000565 bd->writeCRC = (bd->writeCRC << 8)
566 ^ bd->crc32Table[(bd->writeCRC >> 24) ^ current];
Rob Landleyf856eab2006-02-17 03:43:49 +0000567
Eric Andersen5fa4db22003-10-23 06:52:01 +0000568 /* Loop now if we're outputting multiple copies of this byte */
Rob Landleyf856eab2006-02-17 03:43:49 +0000569
Eric Andersen5fa4db22003-10-23 06:52:01 +0000570 if (bd->writeCopies) {
571 --bd->writeCopies;
572 continue;
573 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000574 decode_next_byte:
Eric Andersen5fa4db22003-10-23 06:52:01 +0000575 if (!bd->writeCount--) break;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000576 /* Follow sequence vector to undo Burrows-Wheeler transform */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000577 previous = current;
578 pos = dbuf[pos];
579 current = pos & 0xff;
580 pos >>= 8;
Rob Landleyf856eab2006-02-17 03:43:49 +0000581
Denis Vlasenko52a43882007-10-10 20:53:41 +0000582 /* After 3 consecutive copies of the same byte, the 4th
583 * is a repeat count. We count down from 4 instead
Eric Andersen5fa4db22003-10-23 06:52:01 +0000584 * of counting up because testing for non-zero is faster */
Rob Landleyf856eab2006-02-17 03:43:49 +0000585
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000586 if (--bd->writeRunCountdown) {
587 if (current != previous)
588 bd->writeRunCountdown = 4;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000589 } else {
Rob Landleyf856eab2006-02-17 03:43:49 +0000590
Eric Andersen5fa4db22003-10-23 06:52:01 +0000591 /* We have a repeated run, this byte indicates the count */
Rob Landleyf856eab2006-02-17 03:43:49 +0000592
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000593 bd->writeCopies = current;
594 current = previous;
595 bd->writeRunCountdown = 5;
Rob Landleyf856eab2006-02-17 03:43:49 +0000596
Eric Andersen5fa4db22003-10-23 06:52:01 +0000597 /* Sometimes there are just 3 bytes (run length 0) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000598
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000599 if (!bd->writeCopies) goto decode_next_byte;
Rob Landleyf856eab2006-02-17 03:43:49 +0000600
Eric Andersen5fa4db22003-10-23 06:52:01 +0000601 /* Subtract the 1 copy we'd output anyway to get extras */
Rob Landleyf856eab2006-02-17 03:43:49 +0000602
Eric Andersen5fa4db22003-10-23 06:52:01 +0000603 --bd->writeCopies;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000604 }
605 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000606
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000607 /* Decompression of this block completed successfully */
Rob Landleyf856eab2006-02-17 03:43:49 +0000608
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000609 bd->writeCRC = ~bd->writeCRC;
610 bd->totalCRC = ((bd->totalCRC << 1) | (bd->totalCRC >> 31)) ^ bd->writeCRC;
Rob Landleyf856eab2006-02-17 03:43:49 +0000611
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000612 /* If this block had a CRC error, force file level CRC error. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000613
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000614 if (bd->writeCRC != bd->headerCRC) {
Denis Vlasenko52a43882007-10-10 20:53:41 +0000615 bd->totalCRC = bd->headerCRC + 1;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000616 return RETVAL_LAST_BLOCK;
617 }
Glenn L McGrath60bce492002-11-03 07:28:38 +0000618 }
Eric Andersen5fa4db22003-10-23 06:52:01 +0000619
Eric Andersenaff114c2004-04-14 17:51:38 +0000620 /* Refill the intermediate buffer by Huffman-decoding next block of input */
Eric Andersen5fa4db22003-10-23 06:52:01 +0000621 /* (previous is just a convenient unused temp variable here) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000622
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000623 previous = get_next_block(bd);
624 if (previous) {
625 bd->writeCount = previous;
626 return (previous != RETVAL_LAST_BLOCK) ? previous : gotcount;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000627 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000628 bd->writeCRC = ~0;
629 pos = bd->writePos;
630 current = bd->writeCurrent;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000631 goto decode_next_byte;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000632}
633
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000634
Eric Andersen5fa4db22003-10-23 06:52:01 +0000635/* Allocate the structure, read file header. If in_fd==-1, inbuf must contain
636 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are
637 ignored, and data is read from file handle into temporary buffer. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000638
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000639/* Because bunzip2 is used for help text unpacking, and because bb_show_usage()
640 should work for NOFORK applets too, we must be extremely careful to not leak
641 any allocations! */
642
643int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf,
Rob Landley1ff789c2005-09-25 03:12:26 +0000644 int len)
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000645{
646 bunzip_data *bd;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000647 unsigned i;
648 enum {
649 BZh0 = ('B' << 24) + ('Z' << 16) + ('h' << 8) + '0'
650 };
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000651
652 /* Figure out how much data to allocate */
Rob Landleyf856eab2006-02-17 03:43:49 +0000653
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000654 i = sizeof(bunzip_data);
655 if (in_fd != -1) i += IOBUF_SIZE;
Rob Landleyf856eab2006-02-17 03:43:49 +0000656
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000657 /* Allocate bunzip_data. Most fields initialize to zero. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000658
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000659 bd = *bdp = xzalloc(i);
Rob Landleyf856eab2006-02-17 03:43:49 +0000660
Eric Andersen5fa4db22003-10-23 06:52:01 +0000661 /* Setup input buffer */
Rob Landleyf856eab2006-02-17 03:43:49 +0000662
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000663 bd->in_fd = in_fd;
664 if (-1 == in_fd) {
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000665 /* in this case, bd->inbuf is read-only */
666 bd->inbuf = (void*)inbuf; /* cast away const-ness */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000667 bd->inbufCount = len;
668 } else
669 bd->inbuf = (unsigned char *)(bd + 1);
Rob Landleyf856eab2006-02-17 03:43:49 +0000670
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000671 /* Init the CRC32 table (big endian) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000672
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000673 crc32_filltable(bd->crc32Table, 1);
Rob Landleyf856eab2006-02-17 03:43:49 +0000674
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000675 /* Setup for I/O error handling via longjmp */
Rob Landleyf856eab2006-02-17 03:43:49 +0000676
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000677 i = setjmp(bd->jmpbuf);
678 if (i) return i;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000679
680 /* Ensure that file starts with "BZh['1'-'9']." */
Rob Landleyf856eab2006-02-17 03:43:49 +0000681
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000682 i = get_bits(bd, 32);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000683 if ((unsigned)(i - BZh0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000684
685 /* Fourth byte (ascii '1'-'9'), indicates block size in units of 100k of
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000686 uncompressed data. Allocate intermediate buffer for block. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000687
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000688 bd->dbufSize = 100000 * (i - BZh0);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000689
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000690 /* Cannot use xmalloc - may leak bd in NOFORK case! */
691 bd->dbuf = malloc_or_warn(bd->dbufSize * sizeof(int));
692 if (!bd->dbuf) {
693 free(bd);
694 xfunc_die();
695 }
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000696 return RETVAL_OK;
697}
698
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000699void dealloc_bunzip(bunzip_data *bd)
700{
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000701 free(bd->dbuf);
702 free(bd);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000703}
704
705
706/* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000707
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000708USE_DESKTOP(long long) int
Denis Vlasenkoc14d39e2007-06-08 13:05:39 +0000709unpack_bz2_stream(int src_fd, int dst_fd)
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000710{
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000711 USE_DESKTOP(long long total_written = 0;)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000712 char *outbuf;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000713 bunzip_data *bd;
714 int i;
715
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000716 outbuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000717 i = start_bunzip(&bd, src_fd, NULL, 0);
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000718 if (!i) {
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000719 for (;;) {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000720 i = read_bunzip(bd, outbuf, IOBUF_SIZE);
721 if (i <= 0) break;
Denis Vlasenko52a43882007-10-10 20:53:41 +0000722 if (i != full_write(dst_fd, outbuf, i)) {
723 i = RETVAL_SHORT_WRITE;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000724 break;
725 }
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000726 USE_DESKTOP(total_written += i;)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000727 }
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000728 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000729
Eric Andersen5fa4db22003-10-23 06:52:01 +0000730 /* Check CRC and release memory */
Rob Landleyf856eab2006-02-17 03:43:49 +0000731
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000732 if (i == RETVAL_LAST_BLOCK) {
733 if (bd->headerCRC != bd->totalCRC) {
Denis Vlasenko66bbfbd2007-09-28 23:45:56 +0000734 bb_error_msg("CRC error");
Glenn L McGrath1c834402003-10-28 23:32:12 +0000735 } else {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000736 i = RETVAL_OK;
Glenn L McGrath1c834402003-10-28 23:32:12 +0000737 }
Denis Vlasenko52a43882007-10-10 20:53:41 +0000738 } else if (i == RETVAL_SHORT_WRITE) {
739 bb_error_msg("short write");
Glenn L McGrath1c834402003-10-28 23:32:12 +0000740 } else {
Denis Vlasenko66bbfbd2007-09-28 23:45:56 +0000741 bb_error_msg("bunzip error %d", i);
Glenn L McGrath1c834402003-10-28 23:32:12 +0000742 }
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000743 dealloc_bunzip(bd);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000744 free(outbuf);
Glenn L McGrath1c834402003-10-28 23:32:12 +0000745
Denis Vlasenko97a8dd32006-10-01 15:55:11 +0000746 return i ? i : USE_DESKTOP(total_written) + 0;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000747}
748
Eric Andersen5fa4db22003-10-23 06:52:01 +0000749#ifdef TESTING
Glenn L McGrath60bce492002-11-03 07:28:38 +0000750
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000751static char *const bunzip_errors[] = {
752 NULL, "Bad file checksum", "Not bzip data",
753 "Unexpected input EOF", "Unexpected output EOF", "Data error",
754 "Out of memory", "Obsolete (pre 0.9.5) bzip format not supported"
755};
Glenn L McGrath237ae422002-11-03 14:05:15 +0000756
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000757/* Dumb little test thing, decompress stdin to stdout */
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000758int main(int argc, char **argv)
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000759{
Denis Vlasenkoc14d39e2007-06-08 13:05:39 +0000760 int i = unpack_bz2_stream(0, 1);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000761 char c;
762
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000763 if (i < 0)
764 fprintf(stderr,"%s\n", bunzip_errors[-i]);
765 else if (read(0, &c, 1))
766 fprintf(stderr,"Trailing garbage ignored\n");
Eric Andersen5fa4db22003-10-23 06:52:01 +0000767 return -i;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000768}
769#endif