decompress_bunzip2.c 27 KB

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