blob: 7cd18f5ed4cfb7c01e2df0b6236dae570e270e8f [file] [log] [blame]
Eric Andersen0d6d88a2003-10-18 01:58:35 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko2ab94032017-10-05 15:33:28 +02002/*
3 * Small bzip2 deflate implementation, by Rob Landley (rob@landley.net).
Denys Vlasenkoebe6d9d2017-10-05 14:40:24 +02004 *
5 * Based on bzip2 decompression code by Julian R Seward (jseward@acm.org),
6 * which also acknowledges contributions by Mike Burrows, David Wheeler,
7 * Peter Fenwick, Alistair Moffat, Radford Neal, Ian H. Witten,
8 * Robert Sedgewick, and Jon L. Bentley.
9 *
10 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
11 */
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
Denys Vlasenko36ef0a62010-10-29 16:05:05 +020019 Note that about 2/3 of the time is spent in read_bunzip() reversing
Eric Andersen5fa4db22003-10-23 06:52:01 +000020 the Burrows-Wheeler transformation. Much of that time is delay
21 resulting from cache misses.
22
Denys Vlasenko5d49b722010-10-29 19:26:38 +020023 (2010 update by vda: profiled "bzcat <84mbyte.bz2 >/dev/null"
24 on x86-64 CPU with L2 > 1M: get_next_block is hotter than read_bunzip:
25 %time seconds calls function
26 71.01 12.69 444 get_next_block
27 28.65 5.12 93065 read_bunzip
28 00.22 0.04 7736490 get_bits
29 00.11 0.02 47 dealloc_bunzip
30 00.00 0.00 93018 full_write
31 ...)
32
33
Eric Andersen5fa4db22003-10-23 06:52:01 +000034 I would ask that anyone benefiting from this work, especially those
35 using it in commercial products, consider making a donation to my local
Rob Landleyf856eab2006-02-17 03:43:49 +000036 non-profit hospice organization (www.hospiceacadiana.com) in the name of
Bernhard Reutner-Fischercfb53df2006-04-02 21:50:01 +000037 the woman I loved, Toni W. Hagan, who passed away Feb. 12, 2003.
Eric Andersen5fa4db22003-10-23 06:52:01 +000038
39 Manuel
40 */
Glenn L McGrath1c834402003-10-28 23:32:12 +000041#include "libbb.h"
Denys Vlasenkod184a722011-09-22 12:45:14 +020042#include "bb_archive.h"
Bernhard Reutner-Fischercfb53df2006-04-02 21:50:01 +000043
Denys Vlasenko932e2332013-10-06 22:53:14 +020044#if 0
45# define dbg(...) bb_error_msg(__VA_ARGS__)
46#else
47# define dbg(...) ((void)0)
48#endif
49
Eric Andersenaff114c2004-04-14 17:51:38 +000050/* Constants for Huffman coding */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000051#define MAX_GROUPS 6
52#define GROUP_SIZE 50 /* 64 would have been more efficient */
53#define MAX_HUFCODE_BITS 20 /* Longest Huffman code allowed */
54#define MAX_SYMBOLS 258 /* 256 literals + RUNA + RUNB */
55#define SYMBOL_RUNA 0
56#define SYMBOL_RUNB 1
Glenn L McGrath60bce492002-11-03 07:28:38 +000057
Eric Andersen0d6d88a2003-10-18 01:58:35 +000058/* Status return values */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000059#define RETVAL_OK 0
Denys Vlasenko932e2332013-10-06 22:53:14 +020060#define RETVAL_LAST_BLOCK (dbg("%d", __LINE__), -1)
61#define RETVAL_NOT_BZIP_DATA (dbg("%d", __LINE__), -2)
62#define RETVAL_UNEXPECTED_INPUT_EOF (dbg("%d", __LINE__), -3)
63#define RETVAL_SHORT_WRITE (dbg("%d", __LINE__), -4)
64#define RETVAL_DATA_ERROR (dbg("%d", __LINE__), -5)
65#define RETVAL_OUT_OF_MEMORY (dbg("%d", __LINE__), -6)
66#define RETVAL_OBSOLETE_INPUT (dbg("%d", __LINE__), -7)
Glenn L McGrath60bce492002-11-03 07:28:38 +000067
Eric Andersen0d6d88a2003-10-18 01:58:35 +000068/* Other housekeeping constants */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000069#define IOBUF_SIZE 4096
Glenn L McGrath60bce492002-11-03 07:28:38 +000070
Eric Andersenaff114c2004-04-14 17:51:38 +000071/* This is what we know about each Huffman coding group */
Eric Andersen0d6d88a2003-10-18 01:58:35 +000072struct group_data {
Denis Vlasenko52a43882007-10-10 20:53:41 +000073 /* We have an extra slot at the end of limit[] for a sentinel value. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +000074 int limit[MAX_HUFCODE_BITS+1], base[MAX_HUFCODE_BITS], permute[MAX_SYMBOLS];
Eric Andersen5fa4db22003-10-23 06:52:01 +000075 int minLen, maxLen;
Glenn L McGrath60bce492002-11-03 07:28:38 +000076};
77
Eric Andersen0d6d88a2003-10-18 01:58:35 +000078/* Structure holding all the housekeeping data, including IO buffers and
Denis Vlasenko52a43882007-10-10 20:53:41 +000079 * memory that persists between calls to bunzip
80 * Found the most used member:
81 * cat this_file.c | sed -e 's/"/ /g' -e "s/'/ /g" | xargs -n1 \
82 * | grep 'bd->' | sed 's/^.*bd->/bd->/' | sort | $PAGER
83 * and moved it (inbufBitCount) to offset 0.
84 */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000085struct bunzip_data {
Eric Andersen5fa4db22003-10-23 06:52:01 +000086 /* I/O tracking data (file handles, buffers, positions, etc.) */
Denis Vlasenko52a43882007-10-10 20:53:41 +000087 unsigned inbufBitCount, inbufBits;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +000088 int in_fd, out_fd, inbufCount, inbufPos /*, outbufPos*/;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +020089 uint8_t *inbuf /*,*outbuf*/;
Denis Vlasenko52a43882007-10-10 20:53:41 +000090
91 /* State for interrupting output loop */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +020092 int writeCopies, writePos, writeRunCountdown, writeCount;
93 int writeCurrent; /* actually a uint8_t */
Rob Landleyf856eab2006-02-17 03:43:49 +000094
Eric Andersen0d6d88a2003-10-18 01:58:35 +000095 /* The CRC values stored in the block header and calculated from the data */
Rob Landleyc57ec372006-04-10 17:07:15 +000096 uint32_t headerCRC, totalCRC, writeCRC;
Rob Landleyf856eab2006-02-17 03:43:49 +000097
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000098 /* Intermediate buffer and its size (in bytes) */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +020099 uint32_t *dbuf;
100 unsigned dbufSize;
Rob Landleyf856eab2006-02-17 03:43:49 +0000101
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000102 /* For I/O error handling */
103 jmp_buf jmpbuf;
Rob Landleyf856eab2006-02-17 03:43:49 +0000104
Denis Vlasenko52a43882007-10-10 20:53:41 +0000105 /* Big things go last (register-relative addressing can be larger for big offsets) */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000106 uint32_t crc32Table[256];
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200107 uint8_t selectors[32768]; /* nSelectors=15 bits */
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200108 struct group_data groups[MAX_GROUPS]; /* Huffman coding tables */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000109};
110/* typedef struct bunzip_data bunzip_data; -- done in .h file */
Rob Landleyf856eab2006-02-17 03:43:49 +0000111
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000112
113/* Return the next nnn bits of input. All reads from the compressed input
114 are done through this function. All reads are big endian */
Denis Vlasenko52a43882007-10-10 20:53:41 +0000115static unsigned get_bits(bunzip_data *bd, int bits_wanted)
Glenn L McGrath60bce492002-11-03 07:28:38 +0000116{
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000117 unsigned bits = 0;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200118 /* Cache bd->inbufBitCount in a CPU register (hopefully): */
119 int bit_count = bd->inbufBitCount;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000120
121 /* If we need to get more data from the byte buffer, do so. (Loop getting
122 one byte at a time to enforce endianness and avoid unaligned access.) */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200123 while (bit_count < bits_wanted) {
Rob Landleyf856eab2006-02-17 03:43:49 +0000124
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000125 /* If we need to read more data from file into byte buffer, do so */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000126 if (bd->inbufPos == bd->inbufCount) {
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000127 /* if "no input fd" case: in_fd == -1, read fails, we jump */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000128 bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE);
129 if (bd->inbufCount <= 0)
130 longjmp(bd->jmpbuf, RETVAL_UNEXPECTED_INPUT_EOF);
131 bd->inbufPos = 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000132 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000133
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000134 /* Avoid 32-bit overflow (dump bit buffer to top of output) */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200135 if (bit_count >= 24) {
Rostislav Skudnov87625122017-02-01 18:35:13 +0000136 bits = bd->inbufBits & ((1U << bit_count) - 1);
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200137 bits_wanted -= bit_count;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000138 bits <<= bits_wanted;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200139 bit_count = 0;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000140 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000141
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000142 /* Grab next 8 bits of input from buffer. */
Denis Vlasenko52a43882007-10-10 20:53:41 +0000143 bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++];
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200144 bit_count += 8;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000145 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000146
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000147 /* Calculate result */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200148 bit_count -= bits_wanted;
149 bd->inbufBitCount = bit_count;
150 bits |= (bd->inbufBits >> bit_count) & ((1 << bits_wanted) - 1);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000151
152 return bits;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000153}
154
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200155/* Unpacks the next block and sets up for the inverse Burrows-Wheeler step. */
Eric Andersen5fa4db22003-10-23 06:52:01 +0000156static int get_next_block(bunzip_data *bd)
Glenn L McGrath60bce492002-11-03 07:28:38 +0000157{
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000158 struct group_data *hufGroup;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200159 int dbufCount, dbufSize, groupCount, *base, *limit, selector,
Rostislav Skudnov87625122017-02-01 18:35:13 +0000160 i, j, runPos, symCount, symTotal, nSelectors, byteCount[256];
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200161 int runCnt = runCnt; /* for compiler */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200162 uint8_t uc, symToByte[256], mtfSymbol[256], *selectors;
163 uint32_t *dbuf;
Rostislav Skudnov87625122017-02-01 18:35:13 +0000164 unsigned origPtr, t;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000165
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000166 dbuf = bd->dbuf;
167 dbufSize = bd->dbufSize;
168 selectors = bd->selectors;
Rob Landley2c98c402006-02-17 05:12:03 +0000169
Denys Vlasenko0c576972010-10-30 00:54:10 +0200170/* In bbox, we are ok with aborting through setjmp which is set up in start_bunzip */
171#if 0
Eric Andersen5fa4db22003-10-23 06:52:01 +0000172 /* Reset longjmp I/O error handling */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000173 i = setjmp(bd->jmpbuf);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000174 if (i) return i;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200175#endif
Rob Landley2c98c402006-02-17 05:12:03 +0000176
Eric Andersen5fa4db22003-10-23 06:52:01 +0000177 /* Read in header signature and CRC, then validate signature.
178 (last block signature means CRC is for whole file, return now) */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000179 i = get_bits(bd, 24);
180 j = get_bits(bd, 24);
181 bd->headerCRC = get_bits(bd, 32);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000182 if ((i == 0x177245) && (j == 0x385090)) return RETVAL_LAST_BLOCK;
183 if ((i != 0x314159) || (j != 0x265359)) return RETVAL_NOT_BZIP_DATA;
Rob Landley2c98c402006-02-17 05:12:03 +0000184
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000185 /* We can add support for blockRandomised if anybody complains. There was
186 some code for this in busybox 1.0.0-pre3, but nobody ever noticed that
187 it didn't actually work. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000188 if (get_bits(bd, 1)) return RETVAL_OBSOLETE_INPUT;
189 origPtr = get_bits(bd, 24);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000190 if ((int)origPtr > dbufSize) return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000191
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000192 /* mapping table: if some byte values are never used (encoding things
193 like ascii text), the compression code removes the gaps to have fewer
194 symbols to deal with, and writes a sparse bitfield indicating which
195 values were present. We make a translation table to convert the symbols
196 back to the corresponding bytes. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000197 symTotal = 0;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200198 i = 0;
199 t = get_bits(bd, 16);
200 do {
201 if (t & (1 << 15)) {
202 unsigned inner_map = get_bits(bd, 16);
203 do {
204 if (inner_map & (1 << 15))
205 symToByte[symTotal++] = i;
206 inner_map <<= 1;
207 i++;
208 } while (i & 15);
209 i -= 16;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000210 }
Denys Vlasenko0c576972010-10-30 00:54:10 +0200211 t <<= 1;
212 i += 16;
213 } while (i < 256);
Rob Landley2c98c402006-02-17 05:12:03 +0000214
Eric Andersenaff114c2004-04-14 17:51:38 +0000215 /* How many different Huffman coding groups does this block use? */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000216 groupCount = get_bits(bd, 3);
217 if (groupCount < 2 || groupCount > MAX_GROUPS)
218 return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000219
Eric Andersenaff114c2004-04-14 17:51:38 +0000220 /* nSelectors: Every GROUP_SIZE many symbols we select a new Huffman coding
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000221 group. Read in the group selector list, which is stored as MTF encoded
Eric Andersen5fa4db22003-10-23 06:52:01 +0000222 bit runs. (MTF=Move To Front, as each value is used it's moved to the
223 start of the list.) */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200224 for (i = 0; i < groupCount; i++)
225 mtfSymbol[i] = i;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000226 nSelectors = get_bits(bd, 15);
Denys Vlasenko0c576972010-10-30 00:54:10 +0200227 if (!nSelectors)
228 return RETVAL_DATA_ERROR;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000229 for (i = 0; i < nSelectors; i++) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200230 uint8_t tmp_byte;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000231 /* Get next value */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200232 int n = 0;
233 while (get_bits(bd, 1)) {
234 if (n >= groupCount) return RETVAL_DATA_ERROR;
235 n++;
236 }
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000237 /* Decode MTF to get the next selector */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200238 tmp_byte = mtfSymbol[n];
239 while (--n >= 0)
240 mtfSymbol[n + 1] = mtfSymbol[n];
241 mtfSymbol[0] = selectors[i] = tmp_byte;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000242 }
Rob Landley2c98c402006-02-17 05:12:03 +0000243
Eric Andersenaff114c2004-04-14 17:51:38 +0000244 /* Read the Huffman coding tables for each group, which code for symTotal
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000245 literal symbols, plus two run symbols (RUNA, RUNB) */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000246 symCount = symTotal + 2;
247 for (j = 0; j < groupCount; j++) {
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200248 uint8_t length[MAX_SYMBOLS];
Denis Vlasenko86d88c02008-06-28 18:10:09 +0000249 /* 8 bits is ALMOST enough for temp[], see below */
250 unsigned temp[MAX_HUFCODE_BITS+1];
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200251 int minLen, maxLen, pp, len_m1;
Rob Landley2c98c402006-02-17 05:12:03 +0000252
Eric Andersenaff114c2004-04-14 17:51:38 +0000253 /* Read Huffman code lengths for each symbol. They're stored in
Eric Andersen5fa4db22003-10-23 06:52:01 +0000254 a way similar to mtf; record a starting value for the first symbol,
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200255 and an offset from the previous value for every symbol after that.
Eric Andersen5fa4db22003-10-23 06:52:01 +0000256 (Subtracting 1 before the loop and then adding it back at the end is
257 an optimization that makes the test inside the loop simpler: symbol
258 length 0 becomes negative, so an unsigned inequality catches it.) */
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200259 len_m1 = get_bits(bd, 5) - 1;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000260 for (i = 0; i < symCount; i++) {
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000261 for (;;) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200262 int two_bits;
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200263 if ((unsigned)len_m1 > (MAX_HUFCODE_BITS-1))
Eric Andersen5fa4db22003-10-23 06:52:01 +0000264 return RETVAL_DATA_ERROR;
Rob Landley2c98c402006-02-17 05:12:03 +0000265
Eric Andersen5fa4db22003-10-23 06:52:01 +0000266 /* If first bit is 0, stop. Else second bit indicates whether
267 to increment or decrement the value. Optimization: grab 2
268 bits and unget the second if the first was 0. */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200269 two_bits = get_bits(bd, 2);
270 if (two_bits < 2) {
Eric Andersen5fa4db22003-10-23 06:52:01 +0000271 bd->inbufBitCount++;
272 break;
273 }
Rob Landley2c98c402006-02-17 05:12:03 +0000274
Eric Andersen5fa4db22003-10-23 06:52:01 +0000275 /* Add one if second bit 1, else subtract 1. Avoids if/else */
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200276 len_m1 += (((two_bits+1) & 2) - 1);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000277 }
Rob Landley2c98c402006-02-17 05:12:03 +0000278
Eric Andersen5fa4db22003-10-23 06:52:01 +0000279 /* Correct for the initial -1, to get the final symbol length */
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200280 length[i] = len_m1 + 1;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000281 }
Rob Landley2c98c402006-02-17 05:12:03 +0000282
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000283 /* Find largest and smallest lengths in this group */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000284 minLen = maxLen = length[0];
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000285 for (i = 1; i < symCount; i++) {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000286 if (length[i] > maxLen) maxLen = length[i];
287 else if (length[i] < minLen) minLen = length[i];
Glenn L McGrath60bce492002-11-03 07:28:38 +0000288 }
Rob Landley2c98c402006-02-17 05:12:03 +0000289
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000290 /* Calculate permute[], base[], and limit[] tables from length[].
291 *
Eric Andersenaff114c2004-04-14 17:51:38 +0000292 * permute[] is the lookup table for converting Huffman coded symbols
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000293 * into decoded symbols. base[] is the amount to subtract from the
Eric Andersenaff114c2004-04-14 17:51:38 +0000294 * value of a Huffman symbol of a given length when using permute[].
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000295 *
296 * limit[] indicates the largest numerical value a symbol with a given
Eric Andersenaff114c2004-04-14 17:51:38 +0000297 * number of bits can have. This is how the Huffman codes can vary in
Eric Andersen5fa4db22003-10-23 06:52:01 +0000298 * length: each code with a value>limit[length] needs another bit.
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000299 */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000300 hufGroup = bd->groups + j;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000301 hufGroup->minLen = minLen;
302 hufGroup->maxLen = maxLen;
Rob Landley2c98c402006-02-17 05:12:03 +0000303
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000304 /* Note that minLen can't be smaller than 1, so we adjust the base
305 and limit array pointers so we're not always wasting the first
Denys Vlasenko0c576972010-10-30 00:54:10 +0200306 entry. We do this again when using them (during symbol decoding). */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000307 base = hufGroup->base - 1;
Denis Vlasenko86d88c02008-06-28 18:10:09 +0000308 limit = hufGroup->limit - 1;
Rob Landley2c98c402006-02-17 05:12:03 +0000309
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200310 /* Calculate permute[]. Concurrently, initialize temp[] and limit[]. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000311 pp = 0;
312 for (i = minLen; i <= maxLen; i++) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200313 int k;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000314 temp[i] = limit[i] = 0;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200315 for (k = 0; k < symCount; k++)
316 if (length[k] == i)
317 hufGroup->permute[pp++] = k;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000318 }
Rob Landley2c98c402006-02-17 05:12:03 +0000319
Eric Andersen5fa4db22003-10-23 06:52:01 +0000320 /* Count symbols coded for at each bit length */
Denis Vlasenko86d88c02008-06-28 18:10:09 +0000321 /* NB: in pathological cases, temp[8] can end ip being 256.
322 * That's why uint8_t is too small for temp[]. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000323 for (i = 0; i < symCount; i++) temp[length[i]]++;
Rob Landley2c98c402006-02-17 05:12:03 +0000324
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000325 /* Calculate limit[] (the largest symbol-coding value at each bit
326 * length, which is (previous limit<<1)+symbols at this level), and
327 * base[] (number of symbols to ignore at each bit length, which is
Eric Andersen5fa4db22003-10-23 06:52:01 +0000328 * limit minus the cumulative count of symbols coded for already). */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000329 pp = t = 0;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200330 for (i = minLen; i < maxLen;) {
331 unsigned temp_i = temp[i];
332
333 pp += temp_i;
Rob Landley2c98c402006-02-17 05:12:03 +0000334
Eric Andersen5fa4db22003-10-23 06:52:01 +0000335 /* We read the largest possible symbol size and then unget bits
336 after determining how many we need, and those extra bits could
337 be set to anything. (They're noise from future symbols.) At
338 each level we're really only interested in the first few bits,
339 so here we set all the trailing to-be-ignored bits to 1 so they
340 don't affect the value>limit[length] comparison. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000341 limit[i] = (pp << (maxLen - i)) - 1;
342 pp <<= 1;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200343 t += temp_i;
344 base[++i] = pp - t;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000345 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000346 limit[maxLen] = pp + temp[maxLen] - 1;
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200347 limit[maxLen+1] = INT_MAX; /* Sentinel value for reading next sym. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000348 base[minLen] = 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000349 }
Rob Landley2c98c402006-02-17 05:12:03 +0000350
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000351 /* We've finished reading and digesting the block header. Now read this
Eric Andersenaff114c2004-04-14 17:51:38 +0000352 block's Huffman coded symbols from the file and undo the Huffman coding
Denis Vlasenko52a43882007-10-10 20:53:41 +0000353 and run length encoding, saving the result into dbuf[dbufCount++] = uc */
Glenn L McGrath60bce492002-11-03 07:28:38 +0000354
Eric Andersen5fa4db22003-10-23 06:52:01 +0000355 /* Initialize symbol occurrence counters and symbol Move To Front table */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200356 /*memset(byteCount, 0, sizeof(byteCount)); - smaller, but slower */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000357 for (i = 0; i < 256; i++) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200358 byteCount[i] = 0;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200359 mtfSymbol[i] = (uint8_t)i;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000360 }
Rob Landley2c98c402006-02-17 05:12:03 +0000361
Eric Andersen5fa4db22003-10-23 06:52:01 +0000362 /* Loop through compressed symbols. */
Rob Landley2c98c402006-02-17 05:12:03 +0000363
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000364 runPos = dbufCount = selector = 0;
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000365 for (;;) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200366 int nextSym;
Rob Landley2c98c402006-02-17 05:12:03 +0000367
Denis Vlasenko86d88c02008-06-28 18:10:09 +0000368 /* Fetch next Huffman coding group from list. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000369 symCount = GROUP_SIZE - 1;
370 if (selector >= nSelectors) return RETVAL_DATA_ERROR;
371 hufGroup = bd->groups + selectors[selector++];
372 base = hufGroup->base - 1;
Denis Vlasenko86d88c02008-06-28 18:10:09 +0000373 limit = hufGroup->limit - 1;
Rob Landley2c98c402006-02-17 05:12:03 +0000374
Denys Vlasenko0c576972010-10-30 00:54:10 +0200375 continue_this_group:
Eric Andersenaff114c2004-04-14 17:51:38 +0000376 /* Read next Huffman-coded symbol. */
Rob Landley2c98c402006-02-17 05:12:03 +0000377
Eric Andersen5fa4db22003-10-23 06:52:01 +0000378 /* Note: It is far cheaper to read maxLen bits and back up than it is
Denys Vlasenko0c576972010-10-30 00:54:10 +0200379 to read minLen bits and then add additional bit at a time, testing
Eric Andersen5fa4db22003-10-23 06:52:01 +0000380 as we go. Because there is a trailing last block (with file CRC),
381 there is no danger of the overread causing an unexpected EOF for a
Denys Vlasenko0c576972010-10-30 00:54:10 +0200382 valid compressed file.
Eric Andersen5fa4db22003-10-23 06:52:01 +0000383 */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200384 if (1) {
385 /* As a further optimization, we do the read inline
386 (falling back to a call to get_bits if the buffer runs dry).
387 */
388 int new_cnt;
389 while ((new_cnt = bd->inbufBitCount - hufGroup->maxLen) < 0) {
390 /* bd->inbufBitCount < hufGroup->maxLen */
391 if (bd->inbufPos == bd->inbufCount) {
392 nextSym = get_bits(bd, hufGroup->maxLen);
393 goto got_huff_bits;
394 }
395 bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++];
396 bd->inbufBitCount += 8;
397 };
398 bd->inbufBitCount = new_cnt; /* "bd->inbufBitCount -= hufGroup->maxLen;" */
399 nextSym = (bd->inbufBits >> new_cnt) & ((1 << hufGroup->maxLen) - 1);
400 got_huff_bits: ;
401 } else { /* unoptimized equivalent */
402 nextSym = get_bits(bd, hufGroup->maxLen);
403 }
404 /* Figure how many bits are in next symbol and unget extras */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000405 i = hufGroup->minLen;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200406 while (nextSym > limit[i]) ++i;
407 j = hufGroup->maxLen - i;
408 if (j < 0)
409 return RETVAL_DATA_ERROR;
410 bd->inbufBitCount += j;
Rob Landley2c98c402006-02-17 05:12:03 +0000411
Eric Andersen5fa4db22003-10-23 06:52:01 +0000412 /* Huffman decode value to get nextSym (with bounds checking) */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200413 nextSym = (nextSym >> j) - base[i];
414 if ((unsigned)nextSym >= MAX_SYMBOLS)
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000415 return RETVAL_DATA_ERROR;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200416 nextSym = hufGroup->permute[nextSym];
Rob Landley2c98c402006-02-17 05:12:03 +0000417
Eric Andersen5fa4db22003-10-23 06:52:01 +0000418 /* We have now decoded the symbol, which indicates either a new literal
419 byte, or a repeated run of the most recent literal byte. First,
420 check if nextSym indicates a repeated run, and if so loop collecting
421 how many times to repeat the last literal. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000422 if ((unsigned)nextSym <= SYMBOL_RUNB) { /* RUNA or RUNB */
Rob Landley2c98c402006-02-17 05:12:03 +0000423
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000424 /* If this is the start of a new run, zero out counter */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200425 if (runPos == 0) {
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000426 runPos = 1;
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200427 runCnt = 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000428 }
Rob Landley2c98c402006-02-17 05:12:03 +0000429
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000430 /* Neat trick that saves 1 symbol: instead of or-ing 0 or 1 at
431 each bit position, add 1 or 2 instead. For example,
432 1011 is 1<<0 + 1<<1 + 2<<2. 1010 is 2<<0 + 2<<1 + 1<<2.
433 You can make any bit pattern that way using 1 less symbol than
434 the basic or 0/1 method (except all bits 0, which would use no
435 symbols, but a run of length 0 doesn't mean anything in this
436 context). Thus space is saved. */
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200437 runCnt += (runPos << nextSym); /* +runPos if RUNA; +2*runPos if RUNB */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000438 if (runPos < dbufSize) runPos <<= 1;
Rob Landleya8b98d62004-11-16 12:07:04 +0000439 goto end_of_huffman_loop;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000440 }
Rob Landley2c98c402006-02-17 05:12:03 +0000441
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000442 /* When we hit the first non-run symbol after a run, we now know
443 how many times to repeat the last literal, so append that many
444 copies to our buffer of decoded symbols (dbuf) now. (The last
445 literal used is the one at the head of the mtfSymbol array.) */
Denys Vlasenko0c576972010-10-30 00:54:10 +0200446 if (runPos != 0) {
447 uint8_t tmp_byte;
Denys Vlasenko932e2332013-10-06 22:53:14 +0200448 if (dbufCount + runCnt > dbufSize) {
449 dbg("dbufCount:%d+runCnt:%d %d > dbufSize:%d RETVAL_DATA_ERROR",
450 dbufCount, runCnt, dbufCount + runCnt, dbufSize);
451 return RETVAL_DATA_ERROR;
452 }
Denys Vlasenko0c576972010-10-30 00:54:10 +0200453 tmp_byte = symToByte[mtfSymbol[0]];
Denys Vlasenkof16727e2010-10-30 00:55:02 +0200454 byteCount[tmp_byte] += runCnt;
455 while (--runCnt >= 0) dbuf[dbufCount++] = (uint32_t)tmp_byte;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200456 runPos = 0;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000457 }
Rob Landley2c98c402006-02-17 05:12:03 +0000458
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000459 /* Is this the terminating symbol? */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000460 if (nextSym > symTotal) break;
Rob Landley2c98c402006-02-17 05:12:03 +0000461
Eric Andersen5fa4db22003-10-23 06:52:01 +0000462 /* At this point, nextSym indicates a new literal character. Subtract
463 one to get the position in the MTF array at which this literal is
464 currently to be found. (Note that the result can't be -1 or 0,
465 because 0 and 1 are RUNA and RUNB. But another instance of the
466 first symbol in the mtf array, position 0, would have been handled
467 as part of a run above. Therefore 1 unused mtf position minus
468 2 non-literal nextSym values equals -1.) */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000469 if (dbufCount >= dbufSize) return RETVAL_DATA_ERROR;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000470 i = nextSym - 1;
471 uc = mtfSymbol[i];
Rob Landley2c98c402006-02-17 05:12:03 +0000472
Eric Andersen5fa4db22003-10-23 06:52:01 +0000473 /* Adjust the MTF array. Since we typically expect to move only a
474 * small number of symbols, and are bound by 256 in any case, using
475 * memmove here would typically be bigger and slower due to function
476 * call overhead and other assorted setup costs. */
Eric Andersen1acfb722003-10-18 01:59:46 +0000477 do {
478 mtfSymbol[i] = mtfSymbol[i-1];
479 } while (--i);
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000480 mtfSymbol[0] = uc;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000481 uc = symToByte[uc];
Rob Landley2c98c402006-02-17 05:12:03 +0000482
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000483 /* We have our literal byte. Save it into dbuf. */
484 byteCount[uc]++;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200485 dbuf[dbufCount++] = (uint32_t)uc;
Rob Landley2c98c402006-02-17 05:12:03 +0000486
Rob Landleyf856eab2006-02-17 03:43:49 +0000487 /* Skip group initialization if we're not done with this group. Done
488 * this way to avoid compiler warning. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000489 end_of_huffman_loop:
Denys Vlasenko0c576972010-10-30 00:54:10 +0200490 if (--symCount >= 0) goto continue_this_group;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000491 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000492
Eric Andersenaff114c2004-04-14 17:51:38 +0000493 /* At this point, we've read all the Huffman-coded symbols (and repeated
Denis Vlasenko246b5c32007-04-10 17:18:12 +0000494 runs) for this block from the input stream, and decoded them into the
Eric Andersen5fa4db22003-10-23 06:52:01 +0000495 intermediate buffer. There are dbufCount many decoded bytes in dbuf[].
496 Now undo the Burrows-Wheeler transform on dbuf.
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000497 See http://dogma.net/markn/articles/bwt/bwt.htm
498 */
Rob Landley2c98c402006-02-17 05:12:03 +0000499
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000500 /* Turn byteCount into cumulative occurrence counts of 0 to n-1. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000501 j = 0;
502 for (i = 0; i < 256; i++) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200503 int tmp_count = j + byteCount[i];
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000504 byteCount[i] = j;
Denys Vlasenko0c576972010-10-30 00:54:10 +0200505 j = tmp_count;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000506 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000507
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000508 /* Figure out what order dbuf would be in if we sorted it. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000509 for (i = 0; i < dbufCount; i++) {
Denys Vlasenko0c576972010-10-30 00:54:10 +0200510 uint8_t tmp_byte = (uint8_t)dbuf[i];
511 int tmp_count = byteCount[tmp_byte];
512 dbuf[tmp_count] |= (i << 8);
513 byteCount[tmp_byte] = tmp_count + 1;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000514 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000515
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000516 /* Decode first byte by hand to initialize "previous" byte. Note that it
517 doesn't get output, and if the first three characters are identical
Eric Andersen5fa4db22003-10-23 06:52:01 +0000518 it doesn't qualify as a run (hence writeRunCountdown=5). */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000519 if (dbufCount) {
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200520 uint32_t tmp;
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000521 if ((int)origPtr >= dbufCount) return RETVAL_DATA_ERROR;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200522 tmp = dbuf[origPtr];
523 bd->writeCurrent = (uint8_t)tmp;
524 bd->writePos = (tmp >> 8);
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000525 bd->writeRunCountdown = 5;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000526 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000527 bd->writeCount = dbufCount;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000528
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000529 return RETVAL_OK;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000530}
531
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200532/* Undo Burrows-Wheeler transform on intermediate buffer to produce output.
Eric Andersen5fa4db22003-10-23 06:52:01 +0000533 If start_bunzip was initialized with out_fd=-1, then up to len bytes of
534 data are written to outbuf. Return value is number of bytes written or
535 error (all errors are negative numbers). If out_fd!=-1, outbuf and len
536 are ignored, data is written to out_fd and return is RETVAL_OK or error.
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200537
538 NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes
539 in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0.
540 (Why? This allows to get rid of one local variable)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000541*/
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000542int FAST_FUNC read_bunzip(bunzip_data *bd, char *outbuf, int len)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000543{
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200544 const uint32_t *dbuf;
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200545 int pos, current, previous;
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200546 uint32_t CRC;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000547
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200548 /* If we already have error/end indicator, return it */
549 if (bd->writeCount < 0)
550 return bd->writeCount;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000551
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000552 dbuf = bd->dbuf;
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200553
554 /* Register-cached state (hopefully): */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000555 pos = bd->writePos;
556 current = bd->writeCurrent;
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200557 CRC = bd->writeCRC; /* small loss on x86-32 (not enough regs), win on x86-64 */
Eric Andersen5fa4db22003-10-23 06:52:01 +0000558
559 /* We will always have pending decoded data to write into the output
560 buffer unless this is the very first call (in which case we haven't
Eric Andersenaff114c2004-04-14 17:51:38 +0000561 Huffman-decoded a block into the intermediate buffer yet). */
Eric Andersen5fa4db22003-10-23 06:52:01 +0000562 if (bd->writeCopies) {
Rob Landleyf856eab2006-02-17 03:43:49 +0000563
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200564 dec_writeCopies:
Eric Andersen5fa4db22003-10-23 06:52:01 +0000565 /* Inside the loop, writeCopies means extra copies (beyond 1) */
566 --bd->writeCopies;
Rob Landleyf856eab2006-02-17 03:43:49 +0000567
Eric Andersen5fa4db22003-10-23 06:52:01 +0000568 /* Loop outputting bytes */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000569 for (;;) {
Rob Landleyf856eab2006-02-17 03:43:49 +0000570
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200571 /* If the output buffer is full, save cached state and return */
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200572 if (--len < 0) {
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200573 /* Unlikely branch.
574 * Use of "goto" instead of keeping code here
575 * helps compiler to realize this. */
576 goto outbuf_full;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000577 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000578
Eric Andersen5fa4db22003-10-23 06:52:01 +0000579 /* Write next byte into output buffer, updating CRC */
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200580 *outbuf++ = current;
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200581 CRC = (CRC << 8) ^ bd->crc32Table[(CRC >> 24) ^ current];
Rob Landleyf856eab2006-02-17 03:43:49 +0000582
Eric Andersen5fa4db22003-10-23 06:52:01 +0000583 /* Loop now if we're outputting multiple copies of this byte */
584 if (bd->writeCopies) {
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200585 /* Unlikely branch */
586 /*--bd->writeCopies;*/
587 /*continue;*/
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200588 /* Same, but (ab)using other existing --writeCopies operation
589 * (and this if() compiles into just test+branch pair): */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200590 goto dec_writeCopies;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000591 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000592 decode_next_byte:
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200593 if (--bd->writeCount < 0)
594 break; /* input block is fully consumed, need next one */
595
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000596 /* Follow sequence vector to undo Burrows-Wheeler transform */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000597 previous = current;
598 pos = dbuf[pos];
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200599 current = (uint8_t)pos;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000600 pos >>= 8;
Rob Landleyf856eab2006-02-17 03:43:49 +0000601
Denis Vlasenko52a43882007-10-10 20:53:41 +0000602 /* After 3 consecutive copies of the same byte, the 4th
603 * is a repeat count. We count down from 4 instead
Eric Andersen5fa4db22003-10-23 06:52:01 +0000604 * of counting up because testing for non-zero is faster */
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200605 if (--bd->writeRunCountdown != 0) {
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000606 if (current != previous)
607 bd->writeRunCountdown = 4;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000608 } else {
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200609 /* Unlikely branch */
Eric Andersen5fa4db22003-10-23 06:52:01 +0000610 /* We have a repeated run, this byte indicates the count */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000611 bd->writeCopies = current;
612 current = previous;
613 bd->writeRunCountdown = 5;
Rob Landleyf856eab2006-02-17 03:43:49 +0000614
Eric Andersen5fa4db22003-10-23 06:52:01 +0000615 /* Sometimes there are just 3 bytes (run length 0) */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000616 if (!bd->writeCopies) goto decode_next_byte;
Rob Landleyf856eab2006-02-17 03:43:49 +0000617
Eric Andersen5fa4db22003-10-23 06:52:01 +0000618 /* Subtract the 1 copy we'd output anyway to get extras */
619 --bd->writeCopies;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000620 }
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200621 } /* for(;;) */
Rob Landleyf856eab2006-02-17 03:43:49 +0000622
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200623 /* Decompression of this input block completed successfully */
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200624 bd->writeCRC = CRC = ~CRC;
625 bd->totalCRC = ((bd->totalCRC << 1) | (bd->totalCRC >> 31)) ^ CRC;
Rob Landleyf856eab2006-02-17 03:43:49 +0000626
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200627 /* If this block had a CRC error, force file level CRC error */
628 if (CRC != bd->headerCRC) {
Denis Vlasenko52a43882007-10-10 20:53:41 +0000629 bd->totalCRC = bd->headerCRC + 1;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000630 return RETVAL_LAST_BLOCK;
631 }
Glenn L McGrath60bce492002-11-03 07:28:38 +0000632 }
Eric Andersen5fa4db22003-10-23 06:52:01 +0000633
Eric Andersenaff114c2004-04-14 17:51:38 +0000634 /* Refill the intermediate buffer by Huffman-decoding next block of input */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200635 {
636 int r = get_next_block(bd);
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200637 if (r) { /* error/end */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200638 bd->writeCount = r;
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200639 return (r != RETVAL_LAST_BLOCK) ? r : len;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200640 }
Eric Andersen5fa4db22003-10-23 06:52:01 +0000641 }
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200642
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200643 CRC = ~0;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000644 pos = bd->writePos;
645 current = bd->writeCurrent;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000646 goto decode_next_byte;
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200647
648 outbuf_full:
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200649 /* Output buffer is full, save cached state and return */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200650 bd->writePos = pos;
651 bd->writeCurrent = current;
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200652 bd->writeCRC = CRC;
653
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200654 bd->writeCopies++;
Denys Vlasenkobf3bec52010-10-29 18:16:29 +0200655
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200656 return 0;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000657}
658
Eric Andersen5fa4db22003-10-23 06:52:01 +0000659/* Allocate the structure, read file header. If in_fd==-1, inbuf must contain
660 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are
661 ignored, and data is read from file handle into temporary buffer. */
Rob Landleyf856eab2006-02-17 03:43:49 +0000662
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000663/* Because bunzip2 is used for help text unpacking, and because bb_show_usage()
664 should work for NOFORK applets too, we must be extremely careful to not leak
665 any allocations! */
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200666int FAST_FUNC start_bunzip(bunzip_data **bdp, int in_fd,
667 const void *inbuf, int len)
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000668{
669 bunzip_data *bd;
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000670 unsigned i;
671 enum {
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000672 BZh0 = ('B' << 24) + ('Z' << 16) + ('h' << 8) + '0',
673 h0 = ('h' << 8) + '0',
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000674 };
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000675
676 /* Figure out how much data to allocate */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000677 i = sizeof(bunzip_data);
678 if (in_fd != -1) i += IOBUF_SIZE;
Rob Landleyf856eab2006-02-17 03:43:49 +0000679
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000680 /* Allocate bunzip_data. Most fields initialize to zero. */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000681 bd = *bdp = xzalloc(i);
Rob Landleyf856eab2006-02-17 03:43:49 +0000682
Eric Andersen5fa4db22003-10-23 06:52:01 +0000683 /* Setup input buffer */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000684 bd->in_fd = in_fd;
685 if (-1 == in_fd) {
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000686 /* in this case, bd->inbuf is read-only */
687 bd->inbuf = (void*)inbuf; /* cast away const-ness */
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200688 } else {
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200689 bd->inbuf = (uint8_t*)(bd + 1);
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200690 memcpy(bd->inbuf, inbuf, len);
691 }
692 bd->inbufCount = len;
Rob Landleyf856eab2006-02-17 03:43:49 +0000693
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000694 /* Init the CRC32 table (big endian) */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000695 crc32_filltable(bd->crc32Table, 1);
Rob Landleyf856eab2006-02-17 03:43:49 +0000696
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000697 /* Setup for I/O error handling via longjmp */
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000698 i = setjmp(bd->jmpbuf);
699 if (i) return i;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000700
701 /* Ensure that file starts with "BZh['1'-'9']." */
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000702 /* Update: now caller verifies 1st two bytes, makes .gz/.bz2
703 * integration easier */
704 /* was: */
705 /* i = get_bits(bd, 32); */
706 /* if ((unsigned)(i - BZh0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA; */
707 i = get_bits(bd, 16);
708 if ((unsigned)(i - h0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000709
Denis Vlasenko86d88c02008-06-28 18:10:09 +0000710 /* Fourth byte (ascii '1'-'9') indicates block size in units of 100k of
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000711 uncompressed data. Allocate intermediate buffer for block. */
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000712 /* bd->dbufSize = 100000 * (i - BZh0); */
713 bd->dbufSize = 100000 * (i - h0);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000714
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000715 /* Cannot use xmalloc - may leak bd in NOFORK case! */
Denys Vlasenko36ef0a62010-10-29 16:05:05 +0200716 bd->dbuf = malloc_or_warn(bd->dbufSize * sizeof(bd->dbuf[0]));
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000717 if (!bd->dbuf) {
718 free(bd);
719 xfunc_die();
720 }
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000721 return RETVAL_OK;
722}
723
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000724void FAST_FUNC dealloc_bunzip(bunzip_data *bd)
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000725{
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000726 free(bd->dbuf);
727 free(bd);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000728}
729
730
731/* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000732IF_DESKTOP(long long) int FAST_FUNC
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100733unpack_bz2_stream(transformer_state_t *xstate)
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000734{
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000735 IF_DESKTOP(long long total_written = 0;)
Denys Vlasenko4d4d1a02010-11-01 02:19:47 +0100736 bunzip_data *bd;
Eric Andersen5fa4db22003-10-23 06:52:01 +0000737 char *outbuf;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000738 int i;
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200739 unsigned len;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000740
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100741 if (check_signature16(xstate, BZIP2_MAGIC))
Denys Vlasenko8a6a2f92012-03-06 16:27:48 +0100742 return -1;
743
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000744 outbuf = xmalloc(IOBUF_SIZE);
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200745 len = 0;
746 while (1) { /* "Process one BZ... stream" loop */
747
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100748 i = start_bunzip(&bd, xstate->src_fd, outbuf + 2, len);
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200749
750 if (i == 0) {
751 while (1) { /* "Produce some output bytes" loop */
752 i = read_bunzip(bd, outbuf, IOBUF_SIZE);
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200753 if (i < 0) /* error? */
754 break;
755 i = IOBUF_SIZE - i; /* number of bytes produced */
756 if (i == 0) /* EOF? */
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200757 break;
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100758 if (i != transformer_write(xstate, outbuf, i)) {
Denys Vlasenko8531c432010-11-01 01:38:54 +0100759 i = RETVAL_SHORT_WRITE;
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200760 goto release_mem;
761 }
762 IF_DESKTOP(total_written += i;)
Eric Andersen5fa4db22003-10-23 06:52:01 +0000763 }
764 }
Rob Landleyf856eab2006-02-17 03:43:49 +0000765
Denys Vlasenkoc531b9a2011-10-31 01:05:16 +0100766 if (i != RETVAL_LAST_BLOCK
767 /* Observed case when i == RETVAL_OK:
768 * "bzcat z.bz2", where "z.bz2" is a bzipped zero-length file
769 * (to be exact, z.bz2 is exactly these 14 bytes:
770 * 42 5a 68 39 17 72 45 38 50 90 00 00 00 00).
771 */
772 && i != RETVAL_OK
773 ) {
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200774 bb_error_msg("bunzip error %d", i);
775 break;
776 }
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000777 if (bd->headerCRC != bd->totalCRC) {
Denis Vlasenko66bbfbd2007-09-28 23:45:56 +0000778 bb_error_msg("CRC error");
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200779 break;
Glenn L McGrath1c834402003-10-28 23:32:12 +0000780 }
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200781
782 /* Successfully unpacked one BZ stream */
783 i = RETVAL_OK;
784
785 /* Do we have "BZ..." after last processed byte?
786 * pbzip2 (parallelized bzip2) produces such files.
787 */
788 len = bd->inbufCount - bd->inbufPos;
789 memcpy(outbuf, &bd->inbuf[bd->inbufPos], len);
790 if (len < 2) {
Denys Vlasenkob4c11c12014-12-07 00:44:00 +0100791 if (safe_read(xstate->src_fd, outbuf + len, 2 - len) != 2 - len)
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200792 break;
793 len = 2;
794 }
795 if (*(uint16_t*)outbuf != BZIP2_MAGIC) /* "BZ"? */
796 break;
797 dealloc_bunzip(bd);
798 len -= 2;
Glenn L McGrath1c834402003-10-28 23:32:12 +0000799 }
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200800
801 release_mem:
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000802 dealloc_bunzip(bd);
Eric Andersen5fa4db22003-10-23 06:52:01 +0000803 free(outbuf);
Glenn L McGrath1c834402003-10-28 23:32:12 +0000804
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000805 return i ? i : IF_DESKTOP(total_written) + 0;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000806}
807
Eric Andersen5fa4db22003-10-23 06:52:01 +0000808#ifdef TESTING
Glenn L McGrath60bce492002-11-03 07:28:38 +0000809
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000810static char *const bunzip_errors[] = {
811 NULL, "Bad file checksum", "Not bzip data",
812 "Unexpected input EOF", "Unexpected output EOF", "Data error",
813 "Out of memory", "Obsolete (pre 0.9.5) bzip format not supported"
814};
Glenn L McGrath237ae422002-11-03 14:05:15 +0000815
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000816/* Dumb little test thing, decompress stdin to stdout */
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000817int main(int argc, char **argv)
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000818{
Eric Andersen5fa4db22003-10-23 06:52:01 +0000819 char c;
820
Denys Vlasenko8a6a2f92012-03-06 16:27:48 +0100821 int i = unpack_bz2_stream(0, 1);
Denis Vlasenkob38cf3f2007-04-10 17:16:33 +0000822 if (i < 0)
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000823 fprintf(stderr, "%s\n", bunzip_errors[-i]);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000824 else if (read(STDIN_FILENO, &c, 1))
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000825 fprintf(stderr, "Trailing garbage ignored\n");
Eric Andersen5fa4db22003-10-23 06:52:01 +0000826 return -i;
Eric Andersen0d6d88a2003-10-18 01:58:35 +0000827}
828#endif