Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Rob Landley | e66c7ef | 2006-04-14 19:25:01 +0000 | [diff] [blame] | 2 | /* Small bzip2 deflate implementation, by Rob Landley (rob@landley.net). |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 3 | |
Rob Landley | e66c7ef | 2006-04-14 19:25:01 +0000 | [diff] [blame] | 4 | 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 McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 8 | |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 9 | Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 10 | */ |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 11 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 12 | /* |
| 13 | Size and speed optimizations by Manuel Novoa III (mjn3@codepoet.org). |
| 14 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 15 | More efficient reading of Huffman codes, a streamlined read_bunzip() |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 16 | function, and various other tweaks. In (limited) tests, approximately |
| 17 | 20% faster than bzcat on x86 and about 10% faster on arm. |
| 18 | |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 19 | Note that about 2/3 of the time is spent in read_bunzip() reversing |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 20 | the Burrows-Wheeler transformation. Much of that time is delay |
| 21 | resulting from cache misses. |
| 22 | |
Denys Vlasenko | 5d49b72 | 2010-10-29 19:26:38 +0200 | [diff] [blame] | 23 | (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 Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 34 | 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 Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 36 | non-profit hospice organization (www.hospiceacadiana.com) in the name of |
Bernhard Reutner-Fischer | cfb53df | 2006-04-02 21:50:01 +0000 | [diff] [blame] | 37 | the woman I loved, Toni W. Hagan, who passed away Feb. 12, 2003. |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 38 | |
| 39 | Manuel |
| 40 | */ |
| 41 | |
Glenn L McGrath | 1c83440 | 2003-10-28 23:32:12 +0000 | [diff] [blame] | 42 | #include "libbb.h" |
Denys Vlasenko | 833d4e7 | 2010-11-03 02:38:31 +0100 | [diff] [blame^] | 43 | #include "archive.h" |
Bernhard Reutner-Fischer | cfb53df | 2006-04-02 21:50:01 +0000 | [diff] [blame] | 44 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 45 | /* Constants for Huffman coding */ |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 46 | #define MAX_GROUPS 6 |
| 47 | #define GROUP_SIZE 50 /* 64 would have been more efficient */ |
| 48 | #define MAX_HUFCODE_BITS 20 /* Longest Huffman code allowed */ |
| 49 | #define MAX_SYMBOLS 258 /* 256 literals + RUNA + RUNB */ |
| 50 | #define SYMBOL_RUNA 0 |
| 51 | #define SYMBOL_RUNB 1 |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 52 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 53 | /* Status return values */ |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 54 | #define RETVAL_OK 0 |
| 55 | #define RETVAL_LAST_BLOCK (-1) |
| 56 | #define RETVAL_NOT_BZIP_DATA (-2) |
| 57 | #define RETVAL_UNEXPECTED_INPUT_EOF (-3) |
Denys Vlasenko | 8531c43 | 2010-11-01 01:38:54 +0100 | [diff] [blame] | 58 | #define RETVAL_SHORT_WRITE (-4) |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 59 | #define RETVAL_DATA_ERROR (-5) |
| 60 | #define RETVAL_OUT_OF_MEMORY (-6) |
| 61 | #define RETVAL_OBSOLETE_INPUT (-7) |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 62 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 63 | /* Other housekeeping constants */ |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 64 | #define IOBUF_SIZE 4096 |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 65 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 66 | /* This is what we know about each Huffman coding group */ |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 67 | struct group_data { |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 68 | /* We have an extra slot at the end of limit[] for a sentinel value. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 69 | int limit[MAX_HUFCODE_BITS+1], base[MAX_HUFCODE_BITS], permute[MAX_SYMBOLS]; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 70 | int minLen, maxLen; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 73 | /* Structure holding all the housekeeping data, including IO buffers and |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 74 | * memory that persists between calls to bunzip |
| 75 | * Found the most used member: |
| 76 | * cat this_file.c | sed -e 's/"/ /g' -e "s/'/ /g" | xargs -n1 \ |
| 77 | * | grep 'bd->' | sed 's/^.*bd->/bd->/' | sort | $PAGER |
| 78 | * and moved it (inbufBitCount) to offset 0. |
| 79 | */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 80 | struct bunzip_data { |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 81 | /* I/O tracking data (file handles, buffers, positions, etc.) */ |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 82 | unsigned inbufBitCount, inbufBits; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 83 | int in_fd, out_fd, inbufCount, inbufPos /*, outbufPos*/; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 84 | uint8_t *inbuf /*,*outbuf*/; |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 85 | |
| 86 | /* State for interrupting output loop */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 87 | int writeCopies, writePos, writeRunCountdown, writeCount; |
| 88 | int writeCurrent; /* actually a uint8_t */ |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 89 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 90 | /* The CRC values stored in the block header and calculated from the data */ |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 91 | uint32_t headerCRC, totalCRC, writeCRC; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 92 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 93 | /* Intermediate buffer and its size (in bytes) */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 94 | uint32_t *dbuf; |
| 95 | unsigned dbufSize; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 96 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 97 | /* For I/O error handling */ |
| 98 | jmp_buf jmpbuf; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 99 | |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 100 | /* Big things go last (register-relative addressing can be larger for big offsets) */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 101 | uint32_t crc32Table[256]; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 102 | uint8_t selectors[32768]; /* nSelectors=15 bits */ |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 103 | struct group_data groups[MAX_GROUPS]; /* Huffman coding tables */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 104 | }; |
| 105 | /* typedef struct bunzip_data bunzip_data; -- done in .h file */ |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 106 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 107 | |
| 108 | /* Return the next nnn bits of input. All reads from the compressed input |
| 109 | are done through this function. All reads are big endian */ |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 110 | static unsigned get_bits(bunzip_data *bd, int bits_wanted) |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 111 | { |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 112 | unsigned bits = 0; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 113 | /* Cache bd->inbufBitCount in a CPU register (hopefully): */ |
| 114 | int bit_count = bd->inbufBitCount; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 115 | |
| 116 | /* If we need to get more data from the byte buffer, do so. (Loop getting |
| 117 | one byte at a time to enforce endianness and avoid unaligned access.) */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 118 | while (bit_count < bits_wanted) { |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 119 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 120 | /* If we need to read more data from file into byte buffer, do so */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 121 | if (bd->inbufPos == bd->inbufCount) { |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 122 | /* if "no input fd" case: in_fd == -1, read fails, we jump */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 123 | bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE); |
| 124 | if (bd->inbufCount <= 0) |
| 125 | longjmp(bd->jmpbuf, RETVAL_UNEXPECTED_INPUT_EOF); |
| 126 | bd->inbufPos = 0; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 127 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 128 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 129 | /* Avoid 32-bit overflow (dump bit buffer to top of output) */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 130 | if (bit_count >= 24) { |
| 131 | bits = bd->inbufBits & ((1 << bit_count) - 1); |
| 132 | bits_wanted -= bit_count; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 133 | bits <<= bits_wanted; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 134 | bit_count = 0; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 135 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 136 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 137 | /* Grab next 8 bits of input from buffer. */ |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 138 | bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++]; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 139 | bit_count += 8; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 140 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 141 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 142 | /* Calculate result */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 143 | bit_count -= bits_wanted; |
| 144 | bd->inbufBitCount = bit_count; |
| 145 | bits |= (bd->inbufBits >> bit_count) & ((1 << bits_wanted) - 1); |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 146 | |
| 147 | return bits; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 150 | /* Unpacks the next block and sets up for the inverse Burrows-Wheeler step. */ |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 151 | static int get_next_block(bunzip_data *bd) |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 152 | { |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 153 | struct group_data *hufGroup; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 154 | int dbufCount, dbufSize, groupCount, *base, *limit, selector, |
| 155 | i, j, t, runPos, symCount, symTotal, nSelectors, byteCount[256]; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 156 | int runCnt = runCnt; /* for compiler */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 157 | uint8_t uc, symToByte[256], mtfSymbol[256], *selectors; |
| 158 | uint32_t *dbuf; |
| 159 | unsigned origPtr; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 160 | |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 161 | dbuf = bd->dbuf; |
| 162 | dbufSize = bd->dbufSize; |
| 163 | selectors = bd->selectors; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 164 | |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 165 | /* In bbox, we are ok with aborting through setjmp which is set up in start_bunzip */ |
| 166 | #if 0 |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 167 | /* Reset longjmp I/O error handling */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 168 | i = setjmp(bd->jmpbuf); |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 169 | if (i) return i; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 170 | #endif |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 171 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 172 | /* Read in header signature and CRC, then validate signature. |
| 173 | (last block signature means CRC is for whole file, return now) */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 174 | i = get_bits(bd, 24); |
| 175 | j = get_bits(bd, 24); |
| 176 | bd->headerCRC = get_bits(bd, 32); |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 177 | if ((i == 0x177245) && (j == 0x385090)) return RETVAL_LAST_BLOCK; |
| 178 | if ((i != 0x314159) || (j != 0x265359)) return RETVAL_NOT_BZIP_DATA; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 179 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 180 | /* We can add support for blockRandomised if anybody complains. There was |
| 181 | some code for this in busybox 1.0.0-pre3, but nobody ever noticed that |
| 182 | it didn't actually work. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 183 | if (get_bits(bd, 1)) return RETVAL_OBSOLETE_INPUT; |
| 184 | origPtr = get_bits(bd, 24); |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 185 | if ((int)origPtr > dbufSize) return RETVAL_DATA_ERROR; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 186 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 187 | /* mapping table: if some byte values are never used (encoding things |
| 188 | like ascii text), the compression code removes the gaps to have fewer |
| 189 | symbols to deal with, and writes a sparse bitfield indicating which |
| 190 | values were present. We make a translation table to convert the symbols |
| 191 | back to the corresponding bytes. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 192 | symTotal = 0; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 193 | i = 0; |
| 194 | t = get_bits(bd, 16); |
| 195 | do { |
| 196 | if (t & (1 << 15)) { |
| 197 | unsigned inner_map = get_bits(bd, 16); |
| 198 | do { |
| 199 | if (inner_map & (1 << 15)) |
| 200 | symToByte[symTotal++] = i; |
| 201 | inner_map <<= 1; |
| 202 | i++; |
| 203 | } while (i & 15); |
| 204 | i -= 16; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 205 | } |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 206 | t <<= 1; |
| 207 | i += 16; |
| 208 | } while (i < 256); |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 209 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 210 | /* How many different Huffman coding groups does this block use? */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 211 | groupCount = get_bits(bd, 3); |
| 212 | if (groupCount < 2 || groupCount > MAX_GROUPS) |
| 213 | return RETVAL_DATA_ERROR; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 214 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 215 | /* nSelectors: Every GROUP_SIZE many symbols we select a new Huffman coding |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 216 | group. Read in the group selector list, which is stored as MTF encoded |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 217 | bit runs. (MTF=Move To Front, as each value is used it's moved to the |
| 218 | start of the list.) */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 219 | for (i = 0; i < groupCount; i++) |
| 220 | mtfSymbol[i] = i; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 221 | nSelectors = get_bits(bd, 15); |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 222 | if (!nSelectors) |
| 223 | return RETVAL_DATA_ERROR; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 224 | for (i = 0; i < nSelectors; i++) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 225 | uint8_t tmp_byte; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 226 | /* Get next value */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 227 | int n = 0; |
| 228 | while (get_bits(bd, 1)) { |
| 229 | if (n >= groupCount) return RETVAL_DATA_ERROR; |
| 230 | n++; |
| 231 | } |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 232 | /* Decode MTF to get the next selector */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 233 | tmp_byte = mtfSymbol[n]; |
| 234 | while (--n >= 0) |
| 235 | mtfSymbol[n + 1] = mtfSymbol[n]; |
| 236 | mtfSymbol[0] = selectors[i] = tmp_byte; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 237 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 238 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 239 | /* Read the Huffman coding tables for each group, which code for symTotal |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 240 | literal symbols, plus two run symbols (RUNA, RUNB) */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 241 | symCount = symTotal + 2; |
| 242 | for (j = 0; j < groupCount; j++) { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 243 | uint8_t length[MAX_SYMBOLS]; |
Denis Vlasenko | 86d88c0 | 2008-06-28 18:10:09 +0000 | [diff] [blame] | 244 | /* 8 bits is ALMOST enough for temp[], see below */ |
| 245 | unsigned temp[MAX_HUFCODE_BITS+1]; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 246 | int minLen, maxLen, pp, len_m1; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 247 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 248 | /* Read Huffman code lengths for each symbol. They're stored in |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 249 | a way similar to mtf; record a starting value for the first symbol, |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 250 | and an offset from the previous value for every symbol after that. |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 251 | (Subtracting 1 before the loop and then adding it back at the end is |
| 252 | an optimization that makes the test inside the loop simpler: symbol |
| 253 | length 0 becomes negative, so an unsigned inequality catches it.) */ |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 254 | len_m1 = get_bits(bd, 5) - 1; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 255 | for (i = 0; i < symCount; i++) { |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 256 | for (;;) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 257 | int two_bits; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 258 | if ((unsigned)len_m1 > (MAX_HUFCODE_BITS-1)) |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 259 | return RETVAL_DATA_ERROR; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 260 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 261 | /* If first bit is 0, stop. Else second bit indicates whether |
| 262 | to increment or decrement the value. Optimization: grab 2 |
| 263 | bits and unget the second if the first was 0. */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 264 | two_bits = get_bits(bd, 2); |
| 265 | if (two_bits < 2) { |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 266 | bd->inbufBitCount++; |
| 267 | break; |
| 268 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 269 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 270 | /* Add one if second bit 1, else subtract 1. Avoids if/else */ |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 271 | len_m1 += (((two_bits+1) & 2) - 1); |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 272 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 273 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 274 | /* Correct for the initial -1, to get the final symbol length */ |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 275 | length[i] = len_m1 + 1; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 276 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 277 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 278 | /* Find largest and smallest lengths in this group */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 279 | minLen = maxLen = length[0]; |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 280 | for (i = 1; i < symCount; i++) { |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 281 | if (length[i] > maxLen) maxLen = length[i]; |
| 282 | else if (length[i] < minLen) minLen = length[i]; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 283 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 284 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 285 | /* Calculate permute[], base[], and limit[] tables from length[]. |
| 286 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 287 | * permute[] is the lookup table for converting Huffman coded symbols |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 288 | * into decoded symbols. base[] is the amount to subtract from the |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 289 | * value of a Huffman symbol of a given length when using permute[]. |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 290 | * |
| 291 | * limit[] indicates the largest numerical value a symbol with a given |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 292 | * number of bits can have. This is how the Huffman codes can vary in |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 293 | * length: each code with a value>limit[length] needs another bit. |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 294 | */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 295 | hufGroup = bd->groups + j; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 296 | hufGroup->minLen = minLen; |
| 297 | hufGroup->maxLen = maxLen; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 298 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 299 | /* Note that minLen can't be smaller than 1, so we adjust the base |
| 300 | and limit array pointers so we're not always wasting the first |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 301 | entry. We do this again when using them (during symbol decoding). */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 302 | base = hufGroup->base - 1; |
Denis Vlasenko | 86d88c0 | 2008-06-28 18:10:09 +0000 | [diff] [blame] | 303 | limit = hufGroup->limit - 1; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 304 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 305 | /* Calculate permute[]. Concurently, initialize temp[] and limit[]. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 306 | pp = 0; |
| 307 | for (i = minLen; i <= maxLen; i++) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 308 | int k; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 309 | temp[i] = limit[i] = 0; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 310 | for (k = 0; k < symCount; k++) |
| 311 | if (length[k] == i) |
| 312 | hufGroup->permute[pp++] = k; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 313 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 314 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 315 | /* Count symbols coded for at each bit length */ |
Denis Vlasenko | 86d88c0 | 2008-06-28 18:10:09 +0000 | [diff] [blame] | 316 | /* NB: in pathological cases, temp[8] can end ip being 256. |
| 317 | * That's why uint8_t is too small for temp[]. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 318 | for (i = 0; i < symCount; i++) temp[length[i]]++; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 319 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 320 | /* Calculate limit[] (the largest symbol-coding value at each bit |
| 321 | * length, which is (previous limit<<1)+symbols at this level), and |
| 322 | * base[] (number of symbols to ignore at each bit length, which is |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 323 | * limit minus the cumulative count of symbols coded for already). */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 324 | pp = t = 0; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 325 | for (i = minLen; i < maxLen;) { |
| 326 | unsigned temp_i = temp[i]; |
| 327 | |
| 328 | pp += temp_i; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 329 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 330 | /* We read the largest possible symbol size and then unget bits |
| 331 | after determining how many we need, and those extra bits could |
| 332 | be set to anything. (They're noise from future symbols.) At |
| 333 | each level we're really only interested in the first few bits, |
| 334 | so here we set all the trailing to-be-ignored bits to 1 so they |
| 335 | don't affect the value>limit[length] comparison. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 336 | limit[i] = (pp << (maxLen - i)) - 1; |
| 337 | pp <<= 1; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 338 | t += temp_i; |
| 339 | base[++i] = pp - t; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 340 | } |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 341 | limit[maxLen] = pp + temp[maxLen] - 1; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 342 | limit[maxLen+1] = INT_MAX; /* Sentinel value for reading next sym. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 343 | base[minLen] = 0; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 344 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 345 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 346 | /* We've finished reading and digesting the block header. Now read this |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 347 | block's Huffman coded symbols from the file and undo the Huffman coding |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 348 | and run length encoding, saving the result into dbuf[dbufCount++] = uc */ |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 349 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 350 | /* Initialize symbol occurrence counters and symbol Move To Front table */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 351 | /*memset(byteCount, 0, sizeof(byteCount)); - smaller, but slower */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 352 | for (i = 0; i < 256; i++) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 353 | byteCount[i] = 0; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 354 | mtfSymbol[i] = (uint8_t)i; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 355 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 356 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 357 | /* Loop through compressed symbols. */ |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 358 | |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 359 | runPos = dbufCount = selector = 0; |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 360 | for (;;) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 361 | int nextSym; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 362 | |
Denis Vlasenko | 86d88c0 | 2008-06-28 18:10:09 +0000 | [diff] [blame] | 363 | /* Fetch next Huffman coding group from list. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 364 | symCount = GROUP_SIZE - 1; |
| 365 | if (selector >= nSelectors) return RETVAL_DATA_ERROR; |
| 366 | hufGroup = bd->groups + selectors[selector++]; |
| 367 | base = hufGroup->base - 1; |
Denis Vlasenko | 86d88c0 | 2008-06-28 18:10:09 +0000 | [diff] [blame] | 368 | limit = hufGroup->limit - 1; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 369 | |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 370 | continue_this_group: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 371 | /* Read next Huffman-coded symbol. */ |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 372 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 373 | /* Note: It is far cheaper to read maxLen bits and back up than it is |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 374 | to read minLen bits and then add additional bit at a time, testing |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 375 | as we go. Because there is a trailing last block (with file CRC), |
| 376 | there is no danger of the overread causing an unexpected EOF for a |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 377 | valid compressed file. |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 378 | */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 379 | if (1) { |
| 380 | /* As a further optimization, we do the read inline |
| 381 | (falling back to a call to get_bits if the buffer runs dry). |
| 382 | */ |
| 383 | int new_cnt; |
| 384 | while ((new_cnt = bd->inbufBitCount - hufGroup->maxLen) < 0) { |
| 385 | /* bd->inbufBitCount < hufGroup->maxLen */ |
| 386 | if (bd->inbufPos == bd->inbufCount) { |
| 387 | nextSym = get_bits(bd, hufGroup->maxLen); |
| 388 | goto got_huff_bits; |
| 389 | } |
| 390 | bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++]; |
| 391 | bd->inbufBitCount += 8; |
| 392 | }; |
| 393 | bd->inbufBitCount = new_cnt; /* "bd->inbufBitCount -= hufGroup->maxLen;" */ |
| 394 | nextSym = (bd->inbufBits >> new_cnt) & ((1 << hufGroup->maxLen) - 1); |
| 395 | got_huff_bits: ; |
| 396 | } else { /* unoptimized equivalent */ |
| 397 | nextSym = get_bits(bd, hufGroup->maxLen); |
| 398 | } |
| 399 | /* Figure how many bits are in next symbol and unget extras */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 400 | i = hufGroup->minLen; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 401 | while (nextSym > limit[i]) ++i; |
| 402 | j = hufGroup->maxLen - i; |
| 403 | if (j < 0) |
| 404 | return RETVAL_DATA_ERROR; |
| 405 | bd->inbufBitCount += j; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 406 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 407 | /* Huffman decode value to get nextSym (with bounds checking) */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 408 | nextSym = (nextSym >> j) - base[i]; |
| 409 | if ((unsigned)nextSym >= MAX_SYMBOLS) |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 410 | return RETVAL_DATA_ERROR; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 411 | nextSym = hufGroup->permute[nextSym]; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 412 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 413 | /* We have now decoded the symbol, which indicates either a new literal |
| 414 | byte, or a repeated run of the most recent literal byte. First, |
| 415 | check if nextSym indicates a repeated run, and if so loop collecting |
| 416 | how many times to repeat the last literal. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 417 | if ((unsigned)nextSym <= SYMBOL_RUNB) { /* RUNA or RUNB */ |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 418 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 419 | /* If this is the start of a new run, zero out counter */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 420 | if (runPos == 0) { |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 421 | runPos = 1; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 422 | runCnt = 0; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 423 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 424 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 425 | /* Neat trick that saves 1 symbol: instead of or-ing 0 or 1 at |
| 426 | each bit position, add 1 or 2 instead. For example, |
| 427 | 1011 is 1<<0 + 1<<1 + 2<<2. 1010 is 2<<0 + 2<<1 + 1<<2. |
| 428 | You can make any bit pattern that way using 1 less symbol than |
| 429 | the basic or 0/1 method (except all bits 0, which would use no |
| 430 | symbols, but a run of length 0 doesn't mean anything in this |
| 431 | context). Thus space is saved. */ |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 432 | runCnt += (runPos << nextSym); /* +runPos if RUNA; +2*runPos if RUNB */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 433 | if (runPos < dbufSize) runPos <<= 1; |
Rob Landley | a8b98d6 | 2004-11-16 12:07:04 +0000 | [diff] [blame] | 434 | goto end_of_huffman_loop; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 435 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 436 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 437 | /* When we hit the first non-run symbol after a run, we now know |
| 438 | how many times to repeat the last literal, so append that many |
| 439 | copies to our buffer of decoded symbols (dbuf) now. (The last |
| 440 | literal used is the one at the head of the mtfSymbol array.) */ |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 441 | if (runPos != 0) { |
| 442 | uint8_t tmp_byte; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 443 | if (dbufCount + runCnt >= dbufSize) return RETVAL_DATA_ERROR; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 444 | tmp_byte = symToByte[mtfSymbol[0]]; |
Denys Vlasenko | f16727e | 2010-10-30 00:55:02 +0200 | [diff] [blame] | 445 | byteCount[tmp_byte] += runCnt; |
| 446 | while (--runCnt >= 0) dbuf[dbufCount++] = (uint32_t)tmp_byte; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 447 | runPos = 0; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 448 | } |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 449 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 450 | /* Is this the terminating symbol? */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 451 | if (nextSym > symTotal) break; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 452 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 453 | /* At this point, nextSym indicates a new literal character. Subtract |
| 454 | one to get the position in the MTF array at which this literal is |
| 455 | currently to be found. (Note that the result can't be -1 or 0, |
| 456 | because 0 and 1 are RUNA and RUNB. But another instance of the |
| 457 | first symbol in the mtf array, position 0, would have been handled |
| 458 | as part of a run above. Therefore 1 unused mtf position minus |
| 459 | 2 non-literal nextSym values equals -1.) */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 460 | if (dbufCount >= dbufSize) return RETVAL_DATA_ERROR; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 461 | i = nextSym - 1; |
| 462 | uc = mtfSymbol[i]; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 463 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 464 | /* Adjust the MTF array. Since we typically expect to move only a |
| 465 | * small number of symbols, and are bound by 256 in any case, using |
| 466 | * memmove here would typically be bigger and slower due to function |
| 467 | * call overhead and other assorted setup costs. */ |
Eric Andersen | 1acfb72 | 2003-10-18 01:59:46 +0000 | [diff] [blame] | 468 | do { |
| 469 | mtfSymbol[i] = mtfSymbol[i-1]; |
| 470 | } while (--i); |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 471 | mtfSymbol[0] = uc; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 472 | uc = symToByte[uc]; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 473 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 474 | /* We have our literal byte. Save it into dbuf. */ |
| 475 | byteCount[uc]++; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 476 | dbuf[dbufCount++] = (uint32_t)uc; |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 477 | |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 478 | /* Skip group initialization if we're not done with this group. Done |
| 479 | * this way to avoid compiler warning. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 480 | end_of_huffman_loop: |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 481 | if (--symCount >= 0) goto continue_this_group; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 482 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 483 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 484 | /* At this point, we've read all the Huffman-coded symbols (and repeated |
Denis Vlasenko | 246b5c3 | 2007-04-10 17:18:12 +0000 | [diff] [blame] | 485 | runs) for this block from the input stream, and decoded them into the |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 486 | intermediate buffer. There are dbufCount many decoded bytes in dbuf[]. |
| 487 | Now undo the Burrows-Wheeler transform on dbuf. |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 488 | See http://dogma.net/markn/articles/bwt/bwt.htm |
| 489 | */ |
Rob Landley | 2c98c40 | 2006-02-17 05:12:03 +0000 | [diff] [blame] | 490 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 491 | /* Turn byteCount into cumulative occurrence counts of 0 to n-1. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 492 | j = 0; |
| 493 | for (i = 0; i < 256; i++) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 494 | int tmp_count = j + byteCount[i]; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 495 | byteCount[i] = j; |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 496 | j = tmp_count; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 497 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 498 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 499 | /* Figure out what order dbuf would be in if we sorted it. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 500 | for (i = 0; i < dbufCount; i++) { |
Denys Vlasenko | 0c57697 | 2010-10-30 00:54:10 +0200 | [diff] [blame] | 501 | uint8_t tmp_byte = (uint8_t)dbuf[i]; |
| 502 | int tmp_count = byteCount[tmp_byte]; |
| 503 | dbuf[tmp_count] |= (i << 8); |
| 504 | byteCount[tmp_byte] = tmp_count + 1; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 505 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 506 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 507 | /* Decode first byte by hand to initialize "previous" byte. Note that it |
| 508 | doesn't get output, and if the first three characters are identical |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 509 | it doesn't qualify as a run (hence writeRunCountdown=5). */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 510 | if (dbufCount) { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 511 | uint32_t tmp; |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 512 | if ((int)origPtr >= dbufCount) return RETVAL_DATA_ERROR; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 513 | tmp = dbuf[origPtr]; |
| 514 | bd->writeCurrent = (uint8_t)tmp; |
| 515 | bd->writePos = (tmp >> 8); |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 516 | bd->writeRunCountdown = 5; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 517 | } |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 518 | bd->writeCount = dbufCount; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 519 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 520 | return RETVAL_OK; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 523 | /* Undo Burrows-Wheeler transform on intermediate buffer to produce output. |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 524 | If start_bunzip was initialized with out_fd=-1, then up to len bytes of |
| 525 | data are written to outbuf. Return value is number of bytes written or |
| 526 | error (all errors are negative numbers). If out_fd!=-1, outbuf and len |
| 527 | are ignored, data is written to out_fd and return is RETVAL_OK or error. |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 528 | |
| 529 | NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes |
| 530 | in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0. |
| 531 | (Why? This allows to get rid of one local variable) |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 532 | */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 533 | int FAST_FUNC read_bunzip(bunzip_data *bd, char *outbuf, int len) |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 534 | { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 535 | const uint32_t *dbuf; |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 536 | int pos, current, previous; |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 537 | uint32_t CRC; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 538 | |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 539 | /* If we already have error/end indicator, return it */ |
| 540 | if (bd->writeCount < 0) |
| 541 | return bd->writeCount; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 542 | |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 543 | dbuf = bd->dbuf; |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 544 | |
| 545 | /* Register-cached state (hopefully): */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 546 | pos = bd->writePos; |
| 547 | current = bd->writeCurrent; |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 548 | CRC = bd->writeCRC; /* small loss on x86-32 (not enough regs), win on x86-64 */ |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 549 | |
| 550 | /* We will always have pending decoded data to write into the output |
| 551 | buffer unless this is the very first call (in which case we haven't |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 552 | Huffman-decoded a block into the intermediate buffer yet). */ |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 553 | if (bd->writeCopies) { |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 554 | |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 555 | dec_writeCopies: |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 556 | /* Inside the loop, writeCopies means extra copies (beyond 1) */ |
| 557 | --bd->writeCopies; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 558 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 559 | /* Loop outputting bytes */ |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 560 | for (;;) { |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 561 | |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 562 | /* If the output buffer is full, save cached state and return */ |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 563 | if (--len < 0) { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 564 | /* Unlikely branch. |
| 565 | * Use of "goto" instead of keeping code here |
| 566 | * helps compiler to realize this. */ |
| 567 | goto outbuf_full; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 568 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 569 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 570 | /* Write next byte into output buffer, updating CRC */ |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 571 | *outbuf++ = current; |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 572 | CRC = (CRC << 8) ^ bd->crc32Table[(CRC >> 24) ^ current]; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 573 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 574 | /* Loop now if we're outputting multiple copies of this byte */ |
| 575 | if (bd->writeCopies) { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 576 | /* Unlikely branch */ |
| 577 | /*--bd->writeCopies;*/ |
| 578 | /*continue;*/ |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 579 | /* Same, but (ab)using other existing --writeCopies operation |
| 580 | * (and this if() compiles into just test+branch pair): */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 581 | goto dec_writeCopies; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 582 | } |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 583 | decode_next_byte: |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 584 | if (--bd->writeCount < 0) |
| 585 | break; /* input block is fully consumed, need next one */ |
| 586 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 587 | /* Follow sequence vector to undo Burrows-Wheeler transform */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 588 | previous = current; |
| 589 | pos = dbuf[pos]; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 590 | current = (uint8_t)pos; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 591 | pos >>= 8; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 592 | |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 593 | /* After 3 consecutive copies of the same byte, the 4th |
| 594 | * is a repeat count. We count down from 4 instead |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 595 | * of counting up because testing for non-zero is faster */ |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 596 | if (--bd->writeRunCountdown != 0) { |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 597 | if (current != previous) |
| 598 | bd->writeRunCountdown = 4; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 599 | } else { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 600 | /* Unlikely branch */ |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 601 | /* We have a repeated run, this byte indicates the count */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 602 | bd->writeCopies = current; |
| 603 | current = previous; |
| 604 | bd->writeRunCountdown = 5; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 605 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 606 | /* Sometimes there are just 3 bytes (run length 0) */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 607 | if (!bd->writeCopies) goto decode_next_byte; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 608 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 609 | /* Subtract the 1 copy we'd output anyway to get extras */ |
| 610 | --bd->writeCopies; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 611 | } |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 612 | } /* for(;;) */ |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 613 | |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 614 | /* Decompression of this input block completed successfully */ |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 615 | bd->writeCRC = CRC = ~CRC; |
| 616 | bd->totalCRC = ((bd->totalCRC << 1) | (bd->totalCRC >> 31)) ^ CRC; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 617 | |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 618 | /* If this block had a CRC error, force file level CRC error */ |
| 619 | if (CRC != bd->headerCRC) { |
Denis Vlasenko | 52a4388 | 2007-10-10 20:53:41 +0000 | [diff] [blame] | 620 | bd->totalCRC = bd->headerCRC + 1; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 621 | return RETVAL_LAST_BLOCK; |
| 622 | } |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 623 | } |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 624 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 625 | /* Refill the intermediate buffer by Huffman-decoding next block of input */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 626 | { |
| 627 | int r = get_next_block(bd); |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 628 | if (r) { /* error/end */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 629 | bd->writeCount = r; |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 630 | return (r != RETVAL_LAST_BLOCK) ? r : len; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 631 | } |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 632 | } |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 633 | |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 634 | CRC = ~0; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 635 | pos = bd->writePos; |
| 636 | current = bd->writeCurrent; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 637 | goto decode_next_byte; |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 638 | |
| 639 | outbuf_full: |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 640 | /* Output buffer is full, save cached state and return */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 641 | bd->writePos = pos; |
| 642 | bd->writeCurrent = current; |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 643 | bd->writeCRC = CRC; |
| 644 | |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 645 | bd->writeCopies++; |
Denys Vlasenko | bf3bec5 | 2010-10-29 18:16:29 +0200 | [diff] [blame] | 646 | |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 647 | return 0; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 650 | /* Allocate the structure, read file header. If in_fd==-1, inbuf must contain |
| 651 | a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are |
| 652 | ignored, and data is read from file handle into temporary buffer. */ |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 653 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 654 | /* Because bunzip2 is used for help text unpacking, and because bb_show_usage() |
| 655 | should work for NOFORK applets too, we must be extremely careful to not leak |
| 656 | any allocations! */ |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 657 | int FAST_FUNC start_bunzip(bunzip_data **bdp, int in_fd, |
| 658 | const void *inbuf, int len) |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 659 | { |
| 660 | bunzip_data *bd; |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 661 | unsigned i; |
| 662 | enum { |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 663 | BZh0 = ('B' << 24) + ('Z' << 16) + ('h' << 8) + '0', |
| 664 | h0 = ('h' << 8) + '0', |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 665 | }; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 666 | |
| 667 | /* Figure out how much data to allocate */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 668 | i = sizeof(bunzip_data); |
| 669 | if (in_fd != -1) i += IOBUF_SIZE; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 670 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 671 | /* Allocate bunzip_data. Most fields initialize to zero. */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 672 | bd = *bdp = xzalloc(i); |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 673 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 674 | /* Setup input buffer */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 675 | bd->in_fd = in_fd; |
| 676 | if (-1 == in_fd) { |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 677 | /* in this case, bd->inbuf is read-only */ |
| 678 | bd->inbuf = (void*)inbuf; /* cast away const-ness */ |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 679 | } else { |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 680 | bd->inbuf = (uint8_t*)(bd + 1); |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 681 | memcpy(bd->inbuf, inbuf, len); |
| 682 | } |
| 683 | bd->inbufCount = len; |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 684 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 685 | /* Init the CRC32 table (big endian) */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 686 | crc32_filltable(bd->crc32Table, 1); |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 687 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 688 | /* Setup for I/O error handling via longjmp */ |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 689 | i = setjmp(bd->jmpbuf); |
| 690 | if (i) return i; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 691 | |
| 692 | /* Ensure that file starts with "BZh['1'-'9']." */ |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 693 | /* Update: now caller verifies 1st two bytes, makes .gz/.bz2 |
| 694 | * integration easier */ |
| 695 | /* was: */ |
| 696 | /* i = get_bits(bd, 32); */ |
| 697 | /* if ((unsigned)(i - BZh0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA; */ |
| 698 | i = get_bits(bd, 16); |
| 699 | if ((unsigned)(i - h0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 700 | |
Denis Vlasenko | 86d88c0 | 2008-06-28 18:10:09 +0000 | [diff] [blame] | 701 | /* Fourth byte (ascii '1'-'9') indicates block size in units of 100k of |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 702 | uncompressed data. Allocate intermediate buffer for block. */ |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 703 | /* bd->dbufSize = 100000 * (i - BZh0); */ |
| 704 | bd->dbufSize = 100000 * (i - h0); |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 705 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 706 | /* Cannot use xmalloc - may leak bd in NOFORK case! */ |
Denys Vlasenko | 36ef0a6 | 2010-10-29 16:05:05 +0200 | [diff] [blame] | 707 | bd->dbuf = malloc_or_warn(bd->dbufSize * sizeof(bd->dbuf[0])); |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 708 | if (!bd->dbuf) { |
| 709 | free(bd); |
| 710 | xfunc_die(); |
| 711 | } |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 712 | return RETVAL_OK; |
| 713 | } |
| 714 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 715 | void FAST_FUNC dealloc_bunzip(bunzip_data *bd) |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 716 | { |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 717 | free(bd->dbuf); |
| 718 | free(bd); |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | |
| 722 | /* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 723 | IF_DESKTOP(long long) int FAST_FUNC |
Denis Vlasenko | c14d39e | 2007-06-08 13:05:39 +0000 | [diff] [blame] | 724 | unpack_bz2_stream(int src_fd, int dst_fd) |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 725 | { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 726 | IF_DESKTOP(long long total_written = 0;) |
Denys Vlasenko | 4d4d1a0 | 2010-11-01 02:19:47 +0100 | [diff] [blame] | 727 | bunzip_data *bd; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 728 | char *outbuf; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 729 | int i; |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 730 | unsigned len; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 731 | |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 732 | outbuf = xmalloc(IOBUF_SIZE); |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 733 | len = 0; |
| 734 | while (1) { /* "Process one BZ... stream" loop */ |
| 735 | |
| 736 | i = start_bunzip(&bd, src_fd, outbuf + 2, len); |
| 737 | |
| 738 | if (i == 0) { |
| 739 | while (1) { /* "Produce some output bytes" loop */ |
| 740 | i = read_bunzip(bd, outbuf, IOBUF_SIZE); |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 741 | if (i < 0) /* error? */ |
| 742 | break; |
| 743 | i = IOBUF_SIZE - i; /* number of bytes produced */ |
| 744 | if (i == 0) /* EOF? */ |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 745 | break; |
| 746 | if (i != full_write(dst_fd, outbuf, i)) { |
| 747 | bb_error_msg("short write"); |
Denys Vlasenko | 8531c43 | 2010-11-01 01:38:54 +0100 | [diff] [blame] | 748 | i = RETVAL_SHORT_WRITE; |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 749 | goto release_mem; |
| 750 | } |
| 751 | IF_DESKTOP(total_written += i;) |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 752 | } |
| 753 | } |
Rob Landley | f856eab | 2006-02-17 03:43:49 +0000 | [diff] [blame] | 754 | |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 755 | if (i != RETVAL_LAST_BLOCK) { |
| 756 | bb_error_msg("bunzip error %d", i); |
| 757 | break; |
| 758 | } |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 759 | if (bd->headerCRC != bd->totalCRC) { |
Denis Vlasenko | 66bbfbd | 2007-09-28 23:45:56 +0000 | [diff] [blame] | 760 | bb_error_msg("CRC error"); |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 761 | break; |
Glenn L McGrath | 1c83440 | 2003-10-28 23:32:12 +0000 | [diff] [blame] | 762 | } |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 763 | |
| 764 | /* Successfully unpacked one BZ stream */ |
| 765 | i = RETVAL_OK; |
| 766 | |
| 767 | /* Do we have "BZ..." after last processed byte? |
| 768 | * pbzip2 (parallelized bzip2) produces such files. |
| 769 | */ |
| 770 | len = bd->inbufCount - bd->inbufPos; |
| 771 | memcpy(outbuf, &bd->inbuf[bd->inbufPos], len); |
| 772 | if (len < 2) { |
| 773 | if (safe_read(src_fd, outbuf + len, 2 - len) != 2 - len) |
| 774 | break; |
| 775 | len = 2; |
| 776 | } |
| 777 | if (*(uint16_t*)outbuf != BZIP2_MAGIC) /* "BZ"? */ |
| 778 | break; |
| 779 | dealloc_bunzip(bd); |
| 780 | len -= 2; |
Glenn L McGrath | 1c83440 | 2003-10-28 23:32:12 +0000 | [diff] [blame] | 781 | } |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 782 | |
| 783 | release_mem: |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 784 | dealloc_bunzip(bd); |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 785 | free(outbuf); |
Glenn L McGrath | 1c83440 | 2003-10-28 23:32:12 +0000 | [diff] [blame] | 786 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 787 | return i ? i : IF_DESKTOP(total_written) + 0; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 788 | } |
| 789 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 790 | IF_DESKTOP(long long) int FAST_FUNC |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 791 | unpack_bz2_stream_prime(int src_fd, int dst_fd) |
| 792 | { |
Denys Vlasenko | 620e863 | 2010-06-30 19:43:44 +0200 | [diff] [blame] | 793 | uint16_t magic2; |
| 794 | xread(src_fd, &magic2, 2); |
| 795 | if (magic2 != BZIP2_MAGIC) { |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 796 | bb_error_msg_and_die("invalid magic"); |
| 797 | } |
| 798 | return unpack_bz2_stream(src_fd, dst_fd); |
| 799 | } |
| 800 | |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 801 | #ifdef TESTING |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 802 | |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 803 | static char *const bunzip_errors[] = { |
| 804 | NULL, "Bad file checksum", "Not bzip data", |
| 805 | "Unexpected input EOF", "Unexpected output EOF", "Data error", |
| 806 | "Out of memory", "Obsolete (pre 0.9.5) bzip format not supported" |
| 807 | }; |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 808 | |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 809 | /* Dumb little test thing, decompress stdin to stdout */ |
Bernhard Reutner-Fischer | febe3c4 | 2007-04-04 20:52:03 +0000 | [diff] [blame] | 810 | int main(int argc, char **argv) |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 811 | { |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 812 | int i; |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 813 | char c; |
| 814 | |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 815 | int i = unpack_bz2_stream_prime(0, 1); |
Denis Vlasenko | b38cf3f | 2007-04-10 17:16:33 +0000 | [diff] [blame] | 816 | if (i < 0) |
Denis Vlasenko | f5d8c90 | 2008-06-26 14:32:57 +0000 | [diff] [blame] | 817 | fprintf(stderr, "%s\n", bunzip_errors[-i]); |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 818 | else if (read(STDIN_FILENO, &c, 1)) |
Denis Vlasenko | f5d8c90 | 2008-06-26 14:32:57 +0000 | [diff] [blame] | 819 | fprintf(stderr, "Trailing garbage ignored\n"); |
Eric Andersen | 5fa4db2 | 2003-10-23 06:52:01 +0000 | [diff] [blame] | 820 | return -i; |
Eric Andersen | 0d6d88a | 2003-10-18 01:58:35 +0000 | [diff] [blame] | 821 | } |
| 822 | #endif |