bzip2.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. * Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com>
  3. *
  4. * This file uses bzip2 library code which is written
  5. * by Julian Seward <jseward@bzip.org>.
  6. * See README and LICENSE files in bz/ directory for more information
  7. * about bzip2 library code.
  8. */
  9. //config:config BZIP2
  10. //config: bool "bzip2 (18 kb)"
  11. //config: default y
  12. //config: help
  13. //config: bzip2 is a compression utility using the Burrows-Wheeler block
  14. //config: sorting text compression algorithm, and Huffman coding. Compression
  15. //config: is generally considerably better than that achieved by more
  16. //config: conventional LZ77/LZ78-based compressors, and approaches the
  17. //config: performance of the PPM family of statistical compressors.
  18. //config:
  19. //config: Unless you have a specific application which requires bzip2, you
  20. //config: should probably say N here.
  21. //config:
  22. //config:config FEATURE_BZIP2_DECOMPRESS
  23. //config: bool "Enable decompression"
  24. //config: default y
  25. //config: depends on BZIP2 || BUNZIP2 || BZCAT
  26. //config: help
  27. //config: Enable -d (--decompress) and -t (--test) options for bzip2.
  28. //config: This will be automatically selected if bunzip2 or bzcat is
  29. //config: enabled.
  30. //applet:IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
  31. //kbuild:lib-$(CONFIG_BZIP2) += bzip2.o
  32. //usage:#define bzip2_trivial_usage
  33. //usage: "[OPTIONS] [FILE]..."
  34. //usage:#define bzip2_full_usage "\n\n"
  35. //usage: "Compress FILEs (or stdin) with bzip2 algorithm\n"
  36. //usage: "\n -1..9 Compression level"
  37. //usage: IF_FEATURE_BZIP2_DECOMPRESS(
  38. //usage: "\n -d Decompress"
  39. //usage: "\n -t Test file integrity"
  40. //usage: )
  41. //usage: "\n -c Write to stdout"
  42. //usage: "\n -f Force"
  43. //usage: "\n -k Keep input files"
  44. #include "libbb.h"
  45. #include "bb_archive.h"
  46. #define CONFIG_BZIP2_FAST 1
  47. /* Speed test:
  48. * Compiled with gcc 4.2.1, run on Athlon 64 1800 MHz (512K L2 cache).
  49. * Stock bzip2 is 26.4% slower than bbox bzip2 at SPEED 1
  50. * (time to compress gcc-4.2.1.tar is 126.4% compared to bbox).
  51. * At SPEED 5 difference is 32.7%.
  52. *
  53. * Test run of all CONFIG_BZIP2_FAST values on a 11Mb text file:
  54. * Size Time (3 runs)
  55. * 0: 10828 4.145 4.146 4.148
  56. * 1: 11097 3.845 3.860 3.861
  57. * 2: 11392 3.763 3.767 3.768
  58. * 3: 11892 3.722 3.724 3.727
  59. * 4: 12740 3.637 3.640 3.644
  60. * 5: 17273 3.497 3.509 3.509
  61. */
  62. #define BZ_DEBUG 0
  63. /* Takes ~300 bytes, detects corruption caused by bad RAM etc */
  64. #define BZ_LIGHT_DEBUG 0
  65. #include "libarchive/bz/bzlib.h"
  66. #include "libarchive/bz/bzlib_private.h"
  67. #include "libarchive/bz/blocksort.c"
  68. #include "libarchive/bz/bzlib.c"
  69. #include "libarchive/bz/compress.c"
  70. #include "libarchive/bz/huffman.c"
  71. /* No point in being shy and having very small buffer here.
  72. * bzip2 internal buffers are much bigger anyway, hundreds of kbytes.
  73. * If iobuf is several pages long, malloc() may use mmap,
  74. * making iobuf is page aligned and thus (maybe) have one memcpy less
  75. * if kernel is clever enough.
  76. */
  77. enum {
  78. IOBUF_SIZE = 8 * 1024
  79. };
  80. static uint8_t level;
  81. /* NB: compressStream() has to return -1 on errors, not die.
  82. * bbunpack() will correctly clean up in this case
  83. * (delete incomplete .bz2 file)
  84. */
  85. /* Returns:
  86. * -1 on errors
  87. * total written bytes so far otherwise
  88. */
  89. static
  90. IF_DESKTOP(long long) int bz_write(bz_stream *strm, void* rbuf, ssize_t rlen, void *wbuf)
  91. {
  92. int n, n2, ret;
  93. strm->avail_in = rlen;
  94. strm->next_in = rbuf;
  95. while (1) {
  96. strm->avail_out = IOBUF_SIZE;
  97. strm->next_out = wbuf;
  98. ret = BZ2_bzCompress(strm, rlen ? BZ_RUN : BZ_FINISH);
  99. if (ret != BZ_RUN_OK /* BZ_RUNning */
  100. && ret != BZ_FINISH_OK /* BZ_FINISHing, but not done yet */
  101. && ret != BZ_STREAM_END /* BZ_FINISHed */
  102. ) {
  103. bb_error_msg_and_die("internal error %d", ret);
  104. }
  105. n = IOBUF_SIZE - strm->avail_out;
  106. if (n) {
  107. n2 = full_write(STDOUT_FILENO, wbuf, n);
  108. if (n2 != n) {
  109. if (n2 >= 0)
  110. errno = 0; /* prevent bogus error message */
  111. bb_perror_msg(n2 >= 0 ? "short write" : bb_msg_write_error);
  112. return -1;
  113. }
  114. }
  115. if (ret == BZ_STREAM_END)
  116. break;
  117. if (rlen && strm->avail_in == 0)
  118. break;
  119. }
  120. return 0 IF_DESKTOP( + strm->total_out );
  121. }
  122. static
  123. IF_DESKTOP(long long) int FAST_FUNC compressStream(transformer_state_t *xstate UNUSED_PARAM)
  124. {
  125. IF_DESKTOP(long long) int total;
  126. ssize_t count;
  127. bz_stream bzs; /* it's small */
  128. #define strm (&bzs)
  129. char *iobuf;
  130. #define rbuf iobuf
  131. #define wbuf (iobuf + IOBUF_SIZE)
  132. iobuf = xmalloc(2 * IOBUF_SIZE);
  133. BZ2_bzCompressInit(strm, level);
  134. while (1) {
  135. count = full_read(STDIN_FILENO, rbuf, IOBUF_SIZE);
  136. if (count < 0) {
  137. bb_perror_msg(bb_msg_read_error);
  138. total = -1;
  139. break;
  140. }
  141. /* if count == 0, bz_write finalizes compression */
  142. total = bz_write(strm, rbuf, count, wbuf);
  143. if (count == 0 || total < 0)
  144. break;
  145. }
  146. /* Can't be conditional on ENABLE_FEATURE_CLEAN_UP -
  147. * we are called repeatedly
  148. */
  149. BZ2_bzCompressEnd(strm);
  150. free(iobuf);
  151. return total;
  152. }
  153. int bzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  154. int bzip2_main(int argc UNUSED_PARAM, char **argv)
  155. {
  156. unsigned opt;
  157. /* standard bzip2 flags
  158. * -d --decompress force decompression
  159. * -z --compress force compression
  160. * -k --keep keep (don't delete) input files
  161. * -f --force overwrite existing output files
  162. * -t --test test compressed file integrity
  163. * -c --stdout output to standard out
  164. * -q --quiet suppress noncritical error messages
  165. * -v --verbose be verbose (a 2nd -v gives more)
  166. * -s --small use less memory (at most 2500k)
  167. * -1 .. -9 set block size to 100k .. 900k
  168. * --fast alias for -1
  169. * --best alias for -9
  170. */
  171. opt = getopt32(argv, "^"
  172. /* Must match bbunzip's constants OPT_STDOUT, OPT_FORCE! */
  173. "cfkv" IF_FEATURE_BZIP2_DECOMPRESS("dt") "123456789qzs"
  174. "\0" "s2" /* -s means -2 (compatibility) */
  175. );
  176. #if ENABLE_FEATURE_BZIP2_DECOMPRESS /* bunzip2_main may not be visible... */
  177. if (opt & 0x30) // -d and/or -t
  178. return bunzip2_main(argc, argv);
  179. opt >>= 6;
  180. #else
  181. opt >>= 4;
  182. #endif
  183. opt = (uint8_t)opt; /* isolate bits for -1..-8 */
  184. opt |= 0x100; /* if nothing else, assume -9 */
  185. level = 1;
  186. while (!(opt & 1)) {
  187. level++;
  188. opt >>= 1;
  189. }
  190. argv += optind;
  191. option_mask32 &= 0xf; /* ignore all except -cfkv */
  192. return bbunpack(argv, compressStream, append_ext, "bz2");
  193. }