decompress_gunzip.c 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * gunzip implementation for busybox
  4. *
  5. * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.
  6. *
  7. * Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
  8. * based on gzip sources
  9. *
  10. * Adjusted further by Erik Andersen <andersen@codepoet.org> to support
  11. * files as well as stdin/stdout, and to generally behave itself wrt
  12. * command line handling.
  13. *
  14. * General cleanup to better adhere to the style guide and make use of standard
  15. * busybox functions by Glenn McGrath
  16. *
  17. * read_gz interface + associated hacking by Laurence Anderson
  18. *
  19. * Fixed huft_build() so decoding end-of-block code does not grab more bits
  20. * than necessary (this is required by unzip applet), added inflate_cleanup()
  21. * to free leaked bytebuffer memory (used in unzip.c), and some minor style
  22. * guide cleanups by Ed Clark
  23. *
  24. * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
  25. * Copyright (C) 1992-1993 Jean-loup Gailly
  26. * The unzip code was written and put in the public domain by Mark Adler.
  27. * Portions of the lzw code are derived from the public domain 'compress'
  28. * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
  29. * Ken Turkowski, Dave Mack and Peter Jannesen.
  30. *
  31. * See the file algorithm.doc for the compression algorithms and file formats.
  32. *
  33. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  34. */
  35. #include <setjmp.h>
  36. #include "libbb.h"
  37. #include "bb_archive.h"
  38. typedef struct huft_t {
  39. unsigned char e; /* number of extra bits or operation */
  40. unsigned char b; /* number of bits in this code or subcode */
  41. union {
  42. unsigned short n; /* literal, length base, or distance base */
  43. struct huft_t *t; /* pointer to next level of table */
  44. } v;
  45. } huft_t;
  46. enum {
  47. /* gunzip_window size--must be a power of two, and
  48. * at least 32K for zip's deflate method */
  49. GUNZIP_WSIZE = 0x8000,
  50. /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
  51. BMAX = 16, /* maximum bit length of any code (16 for explode) */
  52. N_MAX = 288, /* maximum number of codes in any set */
  53. };
  54. /* This is somewhat complex-looking arrangement, but it allows
  55. * to place decompressor state either in bss or in
  56. * malloc'ed space simply by changing #defines below.
  57. * Sizes on i386:
  58. * text data bss dec hex
  59. * 5256 0 108 5364 14f4 - bss
  60. * 4915 0 0 4915 1333 - malloc
  61. */
  62. #define STATE_IN_BSS 0
  63. #define STATE_IN_MALLOC 1
  64. typedef struct state_t {
  65. off_t gunzip_bytes_out; /* number of output bytes */
  66. uint32_t gunzip_crc;
  67. int gunzip_src_fd;
  68. unsigned gunzip_outbuf_count; /* bytes in output buffer */
  69. unsigned char *gunzip_window;
  70. uint32_t *gunzip_crc_table;
  71. /* bitbuffer */
  72. unsigned gunzip_bb; /* bit buffer */
  73. unsigned char gunzip_bk; /* bits in bit buffer */
  74. /* input (compressed) data */
  75. unsigned char *bytebuffer; /* buffer itself */
  76. off_t to_read; /* compressed bytes to read (unzip only, -1 for gunzip) */
  77. // unsigned bytebuffer_max; /* buffer size */
  78. unsigned bytebuffer_offset; /* buffer position */
  79. unsigned bytebuffer_size; /* how much data is there (size <= max) */
  80. /* private data of inflate_codes() */
  81. unsigned inflate_codes_ml; /* masks for bl and bd bits */
  82. unsigned inflate_codes_md; /* masks for bl and bd bits */
  83. unsigned inflate_codes_bb; /* bit buffer */
  84. unsigned inflate_codes_k; /* number of bits in bit buffer */
  85. unsigned inflate_codes_w; /* current gunzip_window position */
  86. huft_t *inflate_codes_tl;
  87. huft_t *inflate_codes_td;
  88. unsigned inflate_codes_bl;
  89. unsigned inflate_codes_bd;
  90. unsigned inflate_codes_nn; /* length and index for copy */
  91. unsigned inflate_codes_dd;
  92. smallint resume_copy;
  93. /* private data of inflate_get_next_window() */
  94. smallint method; /* method == -1 for stored, -2 for codes */
  95. smallint need_another_block;
  96. smallint end_reached;
  97. /* private data of inflate_stored() */
  98. unsigned inflate_stored_n;
  99. unsigned inflate_stored_b;
  100. unsigned inflate_stored_k;
  101. unsigned inflate_stored_w;
  102. const char *error_msg;
  103. jmp_buf error_jmp;
  104. } state_t;
  105. #define gunzip_bytes_out (S()gunzip_bytes_out )
  106. #define gunzip_crc (S()gunzip_crc )
  107. #define gunzip_src_fd (S()gunzip_src_fd )
  108. #define gunzip_outbuf_count (S()gunzip_outbuf_count)
  109. #define gunzip_window (S()gunzip_window )
  110. #define gunzip_crc_table (S()gunzip_crc_table )
  111. #define gunzip_bb (S()gunzip_bb )
  112. #define gunzip_bk (S()gunzip_bk )
  113. #define to_read (S()to_read )
  114. // #define bytebuffer_max (S()bytebuffer_max )
  115. // Both gunzip and unzip can use constant buffer size now (16k):
  116. #define bytebuffer_max 0x4000
  117. #define bytebuffer (S()bytebuffer )
  118. #define bytebuffer_offset (S()bytebuffer_offset )
  119. #define bytebuffer_size (S()bytebuffer_size )
  120. #define inflate_codes_ml (S()inflate_codes_ml )
  121. #define inflate_codes_md (S()inflate_codes_md )
  122. #define inflate_codes_bb (S()inflate_codes_bb )
  123. #define inflate_codes_k (S()inflate_codes_k )
  124. #define inflate_codes_w (S()inflate_codes_w )
  125. #define inflate_codes_tl (S()inflate_codes_tl )
  126. #define inflate_codes_td (S()inflate_codes_td )
  127. #define inflate_codes_bl (S()inflate_codes_bl )
  128. #define inflate_codes_bd (S()inflate_codes_bd )
  129. #define inflate_codes_nn (S()inflate_codes_nn )
  130. #define inflate_codes_dd (S()inflate_codes_dd )
  131. #define resume_copy (S()resume_copy )
  132. #define method (S()method )
  133. #define need_another_block (S()need_another_block )
  134. #define end_reached (S()end_reached )
  135. #define inflate_stored_n (S()inflate_stored_n )
  136. #define inflate_stored_b (S()inflate_stored_b )
  137. #define inflate_stored_k (S()inflate_stored_k )
  138. #define inflate_stored_w (S()inflate_stored_w )
  139. #define error_msg (S()error_msg )
  140. #define error_jmp (S()error_jmp )
  141. /* This is a generic part */
  142. #if STATE_IN_BSS /* Use global data segment */
  143. #define DECLARE_STATE /*nothing*/
  144. #define ALLOC_STATE /*nothing*/
  145. #define DEALLOC_STATE ((void)0)
  146. #define S() state.
  147. #define PASS_STATE /*nothing*/
  148. #define PASS_STATE_ONLY /*nothing*/
  149. #define STATE_PARAM /*nothing*/
  150. #define STATE_PARAM_ONLY void
  151. static state_t state;
  152. #endif
  153. #if STATE_IN_MALLOC /* Use malloc space */
  154. #define DECLARE_STATE state_t *state
  155. #define ALLOC_STATE (state = xzalloc(sizeof(*state)))
  156. #define DEALLOC_STATE free(state)
  157. #define S() state->
  158. #define PASS_STATE state,
  159. #define PASS_STATE_ONLY state
  160. #define STATE_PARAM state_t *state,
  161. #define STATE_PARAM_ONLY state_t *state
  162. #endif
  163. static const uint16_t mask_bits[] ALIGN2 = {
  164. 0x0000, 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  165. 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  166. };
  167. /* Copy lengths for literal codes 257..285 */
  168. static const uint16_t cplens[] ALIGN2 = {
  169. 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59,
  170. 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
  171. };
  172. /* note: see note #13 above about the 258 in this list. */
  173. /* Extra bits for literal codes 257..285 */
  174. static const uint8_t cplext[] ALIGN1 = {
  175. 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5,
  176. 5, 5, 5, 0, 99, 99
  177. }; /* 99 == invalid */
  178. /* Copy offsets for distance codes 0..29 */
  179. static const uint16_t cpdist[] ALIGN2 = {
  180. 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513,
  181. 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577
  182. };
  183. /* Extra bits for distance codes */
  184. static const uint8_t cpdext[] ALIGN1 = {
  185. 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10,
  186. 11, 11, 12, 12, 13, 13
  187. };
  188. /* Tables for deflate from PKZIP's appnote.txt. */
  189. /* Order of the bit length code lengths */
  190. static const uint8_t border[] ALIGN1 = {
  191. 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15
  192. };
  193. /*
  194. * Free the malloc'ed tables built by huft_build(), which makes a linked
  195. * list of the tables it made, with the links in a dummy first entry of
  196. * each table.
  197. * t: table to free
  198. */
  199. static void huft_free(huft_t *p)
  200. {
  201. huft_t *q;
  202. /* Go through linked list, freeing from the malloced (t[-1]) address. */
  203. while (p) {
  204. q = (--p)->v.t;
  205. free(p);
  206. p = q;
  207. }
  208. }
  209. static void huft_free_all(STATE_PARAM_ONLY)
  210. {
  211. huft_free(inflate_codes_tl);
  212. huft_free(inflate_codes_td);
  213. inflate_codes_tl = NULL;
  214. inflate_codes_td = NULL;
  215. }
  216. static void abort_unzip(STATE_PARAM_ONLY) NORETURN;
  217. static void abort_unzip(STATE_PARAM_ONLY)
  218. {
  219. huft_free_all(PASS_STATE_ONLY);
  220. longjmp(error_jmp, 1);
  221. }
  222. static unsigned fill_bitbuffer(STATE_PARAM unsigned bitbuffer, unsigned *current, const unsigned required)
  223. {
  224. while (*current < required) {
  225. if (bytebuffer_offset >= bytebuffer_size) {
  226. unsigned sz = bytebuffer_max - 4;
  227. if (to_read >= 0 && to_read < sz) /* unzip only */
  228. sz = to_read;
  229. /* Leave the first 4 bytes empty so we can always unwind the bitbuffer
  230. * to the front of the bytebuffer */
  231. bytebuffer_size = safe_read(gunzip_src_fd, &bytebuffer[4], sz);
  232. if ((int)bytebuffer_size < 1) {
  233. error_msg = "unexpected end of file";
  234. abort_unzip(PASS_STATE_ONLY);
  235. }
  236. if (to_read >= 0) /* unzip only */
  237. to_read -= bytebuffer_size;
  238. bytebuffer_size += 4;
  239. bytebuffer_offset = 4;
  240. }
  241. bitbuffer |= ((unsigned) bytebuffer[bytebuffer_offset]) << *current;
  242. bytebuffer_offset++;
  243. *current += 8;
  244. }
  245. return bitbuffer;
  246. }
  247. /* Given a list of code lengths and a maximum table size, make a set of
  248. * tables to decode that set of codes. Return zero on success, one if
  249. * the given code set is incomplete (the tables are still built in this
  250. * case), two if the input is invalid (all zero length codes or an
  251. * oversubscribed set of lengths) - in this case stores NULL in *t.
  252. *
  253. * b: code lengths in bits (all assumed <= BMAX)
  254. * n: number of codes (assumed <= N_MAX)
  255. * s: number of simple-valued codes (0..s-1)
  256. * d: list of base values for non-simple codes
  257. * e: list of extra bits for non-simple codes
  258. * t: result: starting table
  259. * m: maximum lookup bits, returns actual
  260. */
  261. static int huft_build(const unsigned *b, const unsigned n,
  262. const unsigned s, const unsigned short *d,
  263. const unsigned char *e, huft_t **t, unsigned *m)
  264. {
  265. unsigned a; /* counter for codes of length k */
  266. unsigned c[BMAX + 1]; /* bit length count table */
  267. unsigned eob_len; /* length of end-of-block code (value 256) */
  268. unsigned f; /* i repeats in table every f entries */
  269. int g; /* maximum code length */
  270. int htl; /* table level */
  271. unsigned i; /* counter, current code */
  272. unsigned j; /* counter */
  273. int k; /* number of bits in current code */
  274. unsigned *p; /* pointer into c[], b[], or v[] */
  275. huft_t *q; /* points to current table */
  276. huft_t r; /* table entry for structure assignment */
  277. huft_t *u[BMAX]; /* table stack */
  278. unsigned v[N_MAX]; /* values in order of bit length */
  279. int ws[BMAX + 1]; /* bits decoded stack */
  280. int w; /* bits decoded */
  281. unsigned x[BMAX + 1]; /* bit offsets, then code stack */
  282. unsigned *xp; /* pointer into x */
  283. int y; /* number of dummy codes added */
  284. unsigned z; /* number of entries in current table */
  285. /* Length of EOB code, if any */
  286. eob_len = n > 256 ? b[256] : BMAX;
  287. *t = NULL;
  288. /* Generate counts for each bit length */
  289. memset(c, 0, sizeof(c));
  290. p = (unsigned *) b; /* cast allows us to reuse p for pointing to b */
  291. i = n;
  292. do {
  293. c[*p]++; /* assume all entries <= BMAX */
  294. p++; /* can't combine with above line (Solaris bug) */
  295. } while (--i);
  296. if (c[0] == n) { /* null input - all zero length codes */
  297. *m = 0;
  298. return 2;
  299. }
  300. /* Find minimum and maximum length, bound *m by those */
  301. for (j = 1; (j <= BMAX) && (c[j] == 0); j++)
  302. continue;
  303. k = j; /* minimum code length */
  304. for (i = BMAX; (c[i] == 0) && i; i--)
  305. continue;
  306. g = i; /* maximum code length */
  307. *m = (*m < j) ? j : ((*m > i) ? i : *m);
  308. /* Adjust last length count to fill out codes, if needed */
  309. for (y = 1 << j; j < i; j++, y <<= 1) {
  310. y -= c[j];
  311. if (y < 0)
  312. return 2; /* bad input: more codes than bits */
  313. }
  314. y -= c[i];
  315. if (y < 0)
  316. return 2;
  317. c[i] += y;
  318. /* Generate starting offsets into the value table for each length */
  319. x[1] = j = 0;
  320. p = c + 1;
  321. xp = x + 2;
  322. while (--i) { /* note that i == g from above */
  323. j += *p++;
  324. *xp++ = j;
  325. }
  326. /* Make a table of values in order of bit lengths */
  327. p = (unsigned *) b;
  328. i = 0;
  329. do {
  330. j = *p++;
  331. if (j != 0) {
  332. v[x[j]++] = i;
  333. }
  334. } while (++i < n);
  335. /* Generate the Huffman codes and for each, make the table entries */
  336. x[0] = i = 0; /* first Huffman code is zero */
  337. p = v; /* grab values in bit order */
  338. htl = -1; /* no tables yet--level -1 */
  339. w = ws[0] = 0; /* bits decoded */
  340. u[0] = NULL; /* just to keep compilers happy */
  341. q = NULL; /* ditto */
  342. z = 0; /* ditto */
  343. /* go through the bit lengths (k already is bits in shortest code) */
  344. for (; k <= g; k++) {
  345. a = c[k];
  346. while (a--) {
  347. /* here i is the Huffman code of length k bits for value *p */
  348. /* make tables up to required level */
  349. while (k > ws[htl + 1]) {
  350. w = ws[++htl];
  351. /* compute minimum size table less than or equal to *m bits */
  352. z = g - w;
  353. z = z > *m ? *m : z; /* upper limit on table size */
  354. j = k - w;
  355. f = 1 << j;
  356. if (f > a + 1) { /* try a k-w bit table */
  357. /* too few codes for k-w bit table */
  358. f -= a + 1; /* deduct codes from patterns left */
  359. xp = c + k;
  360. while (++j < z) { /* try smaller tables up to z bits */
  361. f <<= 1;
  362. if (f <= *++xp) {
  363. break; /* enough codes to use up j bits */
  364. }
  365. f -= *xp; /* else deduct codes from patterns */
  366. }
  367. }
  368. j = (w + j > eob_len && w < eob_len) ? eob_len - w : j; /* make EOB code end at table */
  369. z = 1 << j; /* table entries for j-bit table */
  370. ws[htl+1] = w + j; /* set bits decoded in stack */
  371. /* allocate and link in new table */
  372. q = xzalloc((z + 1) * sizeof(huft_t));
  373. *t = q + 1; /* link to list for huft_free() */
  374. t = &(q->v.t);
  375. u[htl] = ++q; /* table starts after link */
  376. /* connect to last table, if there is one */
  377. if (htl) {
  378. x[htl] = i; /* save pattern for backing up */
  379. r.b = (unsigned char) (w - ws[htl - 1]); /* bits to dump before this table */
  380. r.e = (unsigned char) (16 + j); /* bits in this table */
  381. r.v.t = q; /* pointer to this table */
  382. j = (i & ((1 << w) - 1)) >> ws[htl - 1];
  383. u[htl - 1][j] = r; /* connect to last table */
  384. }
  385. }
  386. /* set up table entry in r */
  387. r.b = (unsigned char) (k - w);
  388. if (p >= v + n) {
  389. r.e = 99; /* out of values--invalid code */
  390. } else if (*p < s) {
  391. r.e = (unsigned char) (*p < 256 ? 16 : 15); /* 256 is EOB code */
  392. r.v.n = (unsigned short) (*p++); /* simple code is just the value */
  393. } else {
  394. r.e = (unsigned char) e[*p - s]; /* non-simple--look up in lists */
  395. r.v.n = d[*p++ - s];
  396. }
  397. /* fill code-like entries with r */
  398. f = 1 << (k - w);
  399. for (j = i >> w; j < z; j += f) {
  400. q[j] = r;
  401. }
  402. /* backwards increment the k-bit code i */
  403. for (j = 1 << (k - 1); i & j; j >>= 1) {
  404. i ^= j;
  405. }
  406. i ^= j;
  407. /* backup over finished tables */
  408. while ((i & ((1 << w) - 1)) != x[htl]) {
  409. w = ws[--htl];
  410. }
  411. }
  412. }
  413. /* return actual size of base table */
  414. *m = ws[1];
  415. /* Return 1 if we were given an incomplete table */
  416. return y != 0 && g != 1;
  417. }
  418. /*
  419. * inflate (decompress) the codes in a deflated (compressed) block.
  420. * Return an error code or zero if it all goes ok.
  421. *
  422. * tl, td: literal/length and distance decoder tables
  423. * bl, bd: number of bits decoded by tl[] and td[]
  424. */
  425. /* called once from inflate_block */
  426. /* map formerly local static variables to globals */
  427. #define ml inflate_codes_ml
  428. #define md inflate_codes_md
  429. #define bb inflate_codes_bb
  430. #define k inflate_codes_k
  431. #define w inflate_codes_w
  432. #define tl inflate_codes_tl
  433. #define td inflate_codes_td
  434. #define bl inflate_codes_bl
  435. #define bd inflate_codes_bd
  436. #define nn inflate_codes_nn
  437. #define dd inflate_codes_dd
  438. static void inflate_codes_setup(STATE_PARAM unsigned my_bl, unsigned my_bd)
  439. {
  440. bl = my_bl;
  441. bd = my_bd;
  442. /* make local copies of globals */
  443. bb = gunzip_bb; /* initialize bit buffer */
  444. k = gunzip_bk;
  445. w = gunzip_outbuf_count; /* initialize gunzip_window position */
  446. /* inflate the coded data */
  447. ml = mask_bits[bl]; /* precompute masks for speed */
  448. md = mask_bits[bd];
  449. }
  450. /* called once from inflate_get_next_window */
  451. static NOINLINE int inflate_codes(STATE_PARAM_ONLY)
  452. {
  453. unsigned e; /* table entry flag/number of extra bits */
  454. huft_t *t; /* pointer to table entry */
  455. if (resume_copy)
  456. goto do_copy;
  457. while (1) { /* do until end of block */
  458. bb = fill_bitbuffer(PASS_STATE bb, &k, bl);
  459. t = tl + ((unsigned) bb & ml);
  460. e = t->e;
  461. if (e > 16)
  462. do {
  463. if (e == 99)
  464. abort_unzip(PASS_STATE_ONLY);;
  465. bb >>= t->b;
  466. k -= t->b;
  467. e -= 16;
  468. bb = fill_bitbuffer(PASS_STATE bb, &k, e);
  469. t = t->v.t + ((unsigned) bb & mask_bits[e]);
  470. e = t->e;
  471. } while (e > 16);
  472. bb >>= t->b;
  473. k -= t->b;
  474. if (e == 16) { /* then it's a literal */
  475. gunzip_window[w++] = (unsigned char) t->v.n;
  476. if (w == GUNZIP_WSIZE) {
  477. gunzip_outbuf_count = w;
  478. //flush_gunzip_window();
  479. w = 0;
  480. return 1; // We have a block to read
  481. }
  482. } else { /* it's an EOB or a length */
  483. /* exit if end of block */
  484. if (e == 15) {
  485. break;
  486. }
  487. /* get length of block to copy */
  488. bb = fill_bitbuffer(PASS_STATE bb, &k, e);
  489. nn = t->v.n + ((unsigned) bb & mask_bits[e]);
  490. bb >>= e;
  491. k -= e;
  492. /* decode distance of block to copy */
  493. bb = fill_bitbuffer(PASS_STATE bb, &k, bd);
  494. t = td + ((unsigned) bb & md);
  495. e = t->e;
  496. if (e > 16)
  497. do {
  498. if (e == 99)
  499. abort_unzip(PASS_STATE_ONLY);
  500. bb >>= t->b;
  501. k -= t->b;
  502. e -= 16;
  503. bb = fill_bitbuffer(PASS_STATE bb, &k, e);
  504. t = t->v.t + ((unsigned) bb & mask_bits[e]);
  505. e = t->e;
  506. } while (e > 16);
  507. bb >>= t->b;
  508. k -= t->b;
  509. bb = fill_bitbuffer(PASS_STATE bb, &k, e);
  510. dd = w - t->v.n - ((unsigned) bb & mask_bits[e]);
  511. bb >>= e;
  512. k -= e;
  513. /* do the copy */
  514. do_copy:
  515. do {
  516. /* Was: nn -= (e = (e = GUNZIP_WSIZE - ((dd &= GUNZIP_WSIZE - 1) > w ? dd : w)) > nn ? nn : e); */
  517. /* Who wrote THAT?? rewritten as: */
  518. unsigned delta;
  519. dd &= GUNZIP_WSIZE - 1;
  520. e = GUNZIP_WSIZE - (dd > w ? dd : w);
  521. delta = w > dd ? w - dd : dd - w;
  522. if (e > nn) e = nn;
  523. nn -= e;
  524. /* copy to new buffer to prevent possible overwrite */
  525. if (delta >= e) {
  526. memcpy(gunzip_window + w, gunzip_window + dd, e);
  527. w += e;
  528. dd += e;
  529. } else {
  530. /* do it slow to avoid memcpy() overlap */
  531. /* !NOMEMCPY */
  532. do {
  533. gunzip_window[w++] = gunzip_window[dd++];
  534. } while (--e);
  535. }
  536. if (w == GUNZIP_WSIZE) {
  537. gunzip_outbuf_count = w;
  538. resume_copy = (nn != 0);
  539. //flush_gunzip_window();
  540. w = 0;
  541. return 1;
  542. }
  543. } while (nn);
  544. resume_copy = 0;
  545. }
  546. }
  547. /* restore the globals from the locals */
  548. gunzip_outbuf_count = w; /* restore global gunzip_window pointer */
  549. gunzip_bb = bb; /* restore global bit buffer */
  550. gunzip_bk = k;
  551. /* normally just after call to inflate_codes, but save code by putting it here */
  552. /* free the decoding tables (tl and td), return */
  553. huft_free_all(PASS_STATE_ONLY);
  554. /* done */
  555. return 0;
  556. }
  557. #undef ml
  558. #undef md
  559. #undef bb
  560. #undef k
  561. #undef w
  562. #undef tl
  563. #undef td
  564. #undef bl
  565. #undef bd
  566. #undef nn
  567. #undef dd
  568. /* called once from inflate_block */
  569. static void inflate_stored_setup(STATE_PARAM int my_n, int my_b, int my_k)
  570. {
  571. inflate_stored_n = my_n;
  572. inflate_stored_b = my_b;
  573. inflate_stored_k = my_k;
  574. /* initialize gunzip_window position */
  575. inflate_stored_w = gunzip_outbuf_count;
  576. }
  577. /* called once from inflate_get_next_window */
  578. static int inflate_stored(STATE_PARAM_ONLY)
  579. {
  580. /* read and output the compressed data */
  581. while (inflate_stored_n--) {
  582. inflate_stored_b = fill_bitbuffer(PASS_STATE inflate_stored_b, &inflate_stored_k, 8);
  583. gunzip_window[inflate_stored_w++] = (unsigned char) inflate_stored_b;
  584. if (inflate_stored_w == GUNZIP_WSIZE) {
  585. gunzip_outbuf_count = inflate_stored_w;
  586. //flush_gunzip_window();
  587. inflate_stored_w = 0;
  588. inflate_stored_b >>= 8;
  589. inflate_stored_k -= 8;
  590. return 1; /* We have a block */
  591. }
  592. inflate_stored_b >>= 8;
  593. inflate_stored_k -= 8;
  594. }
  595. /* restore the globals from the locals */
  596. gunzip_outbuf_count = inflate_stored_w; /* restore global gunzip_window pointer */
  597. gunzip_bb = inflate_stored_b; /* restore global bit buffer */
  598. gunzip_bk = inflate_stored_k;
  599. return 0; /* Finished */
  600. }
  601. /*
  602. * decompress an inflated block
  603. * e: last block flag
  604. *
  605. * GLOBAL VARIABLES: bb, kk,
  606. */
  607. /* Return values: -1 = inflate_stored, -2 = inflate_codes */
  608. /* One callsite in inflate_get_next_window */
  609. static int inflate_block(STATE_PARAM smallint *e)
  610. {
  611. unsigned ll[286 + 30]; /* literal/length and distance code lengths */
  612. unsigned t; /* block type */
  613. unsigned b; /* bit buffer */
  614. unsigned k; /* number of bits in bit buffer */
  615. /* make local bit buffer */
  616. b = gunzip_bb;
  617. k = gunzip_bk;
  618. /* read in last block bit */
  619. b = fill_bitbuffer(PASS_STATE b, &k, 1);
  620. *e = b & 1;
  621. b >>= 1;
  622. k -= 1;
  623. /* read in block type */
  624. b = fill_bitbuffer(PASS_STATE b, &k, 2);
  625. t = (unsigned) b & 3;
  626. b >>= 2;
  627. k -= 2;
  628. /* restore the global bit buffer */
  629. gunzip_bb = b;
  630. gunzip_bk = k;
  631. /* Do we see block type 1 often? Yes!
  632. * TODO: fix performance problem (see below) */
  633. //bb_error_msg("blktype %d", t);
  634. /* inflate that block type */
  635. switch (t) {
  636. case 0: /* Inflate stored */
  637. {
  638. unsigned n; /* number of bytes in block */
  639. unsigned b_stored; /* bit buffer */
  640. unsigned k_stored; /* number of bits in bit buffer */
  641. /* make local copies of globals */
  642. b_stored = gunzip_bb; /* initialize bit buffer */
  643. k_stored = gunzip_bk;
  644. /* go to byte boundary */
  645. n = k_stored & 7;
  646. b_stored >>= n;
  647. k_stored -= n;
  648. /* get the length and its complement */
  649. b_stored = fill_bitbuffer(PASS_STATE b_stored, &k_stored, 16);
  650. n = ((unsigned) b_stored & 0xffff);
  651. b_stored >>= 16;
  652. k_stored -= 16;
  653. b_stored = fill_bitbuffer(PASS_STATE b_stored, &k_stored, 16);
  654. if (n != (unsigned) ((~b_stored) & 0xffff)) {
  655. abort_unzip(PASS_STATE_ONLY); /* error in compressed data */
  656. }
  657. b_stored >>= 16;
  658. k_stored -= 16;
  659. inflate_stored_setup(PASS_STATE n, b_stored, k_stored);
  660. return -1;
  661. }
  662. case 1:
  663. /* Inflate fixed
  664. * decompress an inflated type 1 (fixed Huffman codes) block. We should
  665. * either replace this with a custom decoder, or at least precompute the
  666. * Huffman tables. TODO */
  667. {
  668. int i; /* temporary variable */
  669. unsigned bl; /* lookup bits for tl */
  670. unsigned bd; /* lookup bits for td */
  671. /* gcc 4.2.1 is too dumb to reuse stackspace. Moved up... */
  672. //unsigned ll[288]; /* length list for huft_build */
  673. /* set up literal table */
  674. for (i = 0; i < 144; i++)
  675. ll[i] = 8;
  676. for (; i < 256; i++)
  677. ll[i] = 9;
  678. for (; i < 280; i++)
  679. ll[i] = 7;
  680. for (; i < 288; i++) /* make a complete, but wrong code set */
  681. ll[i] = 8;
  682. bl = 7;
  683. huft_build(ll, 288, 257, cplens, cplext, &inflate_codes_tl, &bl);
  684. /* huft_build() never return nonzero - we use known data */
  685. /* set up distance table */
  686. for (i = 0; i < 30; i++) /* make an incomplete code set */
  687. ll[i] = 5;
  688. bd = 5;
  689. huft_build(ll, 30, 0, cpdist, cpdext, &inflate_codes_td, &bd);
  690. /* set up data for inflate_codes() */
  691. inflate_codes_setup(PASS_STATE bl, bd);
  692. /* huft_free code moved into inflate_codes */
  693. return -2;
  694. }
  695. case 2: /* Inflate dynamic */
  696. {
  697. enum { dbits = 6 }; /* bits in base distance lookup table */
  698. enum { lbits = 9 }; /* bits in base literal/length lookup table */
  699. huft_t *td; /* distance code table */
  700. unsigned i; /* temporary variables */
  701. unsigned j;
  702. unsigned l; /* last length */
  703. unsigned m; /* mask for bit lengths table */
  704. unsigned n; /* number of lengths to get */
  705. unsigned bl; /* lookup bits for tl */
  706. unsigned bd; /* lookup bits for td */
  707. unsigned nb; /* number of bit length codes */
  708. unsigned nl; /* number of literal/length codes */
  709. unsigned nd; /* number of distance codes */
  710. //unsigned ll[286 + 30];/* literal/length and distance code lengths */
  711. unsigned b_dynamic; /* bit buffer */
  712. unsigned k_dynamic; /* number of bits in bit buffer */
  713. /* make local bit buffer */
  714. b_dynamic = gunzip_bb;
  715. k_dynamic = gunzip_bk;
  716. /* read in table lengths */
  717. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 5);
  718. nl = 257 + ((unsigned) b_dynamic & 0x1f); /* number of literal/length codes */
  719. b_dynamic >>= 5;
  720. k_dynamic -= 5;
  721. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 5);
  722. nd = 1 + ((unsigned) b_dynamic & 0x1f); /* number of distance codes */
  723. b_dynamic >>= 5;
  724. k_dynamic -= 5;
  725. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 4);
  726. nb = 4 + ((unsigned) b_dynamic & 0xf); /* number of bit length codes */
  727. b_dynamic >>= 4;
  728. k_dynamic -= 4;
  729. if (nl > 286 || nd > 30)
  730. abort_unzip(PASS_STATE_ONLY); /* bad lengths */
  731. /* read in bit-length-code lengths */
  732. for (j = 0; j < nb; j++) {
  733. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 3);
  734. ll[border[j]] = (unsigned) b_dynamic & 7;
  735. b_dynamic >>= 3;
  736. k_dynamic -= 3;
  737. }
  738. for (; j < 19; j++)
  739. ll[border[j]] = 0;
  740. /* build decoding table for trees - single level, 7 bit lookup */
  741. bl = 7;
  742. i = huft_build(ll, 19, 19, NULL, NULL, &inflate_codes_tl, &bl);
  743. if (i != 0) {
  744. abort_unzip(PASS_STATE_ONLY); //return i; /* incomplete code set */
  745. }
  746. /* read in literal and distance code lengths */
  747. n = nl + nd;
  748. m = mask_bits[bl];
  749. i = l = 0;
  750. while ((unsigned) i < n) {
  751. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, (unsigned)bl);
  752. td = inflate_codes_tl + ((unsigned) b_dynamic & m);
  753. j = td->b;
  754. b_dynamic >>= j;
  755. k_dynamic -= j;
  756. j = td->v.n;
  757. if (j < 16) { /* length of code in bits (0..15) */
  758. ll[i++] = l = j; /* save last length in l */
  759. } else if (j == 16) { /* repeat last length 3 to 6 times */
  760. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 2);
  761. j = 3 + ((unsigned) b_dynamic & 3);
  762. b_dynamic >>= 2;
  763. k_dynamic -= 2;
  764. if ((unsigned) i + j > n) {
  765. abort_unzip(PASS_STATE_ONLY); //return 1;
  766. }
  767. while (j--) {
  768. ll[i++] = l;
  769. }
  770. } else if (j == 17) { /* 3 to 10 zero length codes */
  771. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 3);
  772. j = 3 + ((unsigned) b_dynamic & 7);
  773. b_dynamic >>= 3;
  774. k_dynamic -= 3;
  775. if ((unsigned) i + j > n) {
  776. abort_unzip(PASS_STATE_ONLY); //return 1;
  777. }
  778. while (j--) {
  779. ll[i++] = 0;
  780. }
  781. l = 0;
  782. } else { /* j == 18: 11 to 138 zero length codes */
  783. b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 7);
  784. j = 11 + ((unsigned) b_dynamic & 0x7f);
  785. b_dynamic >>= 7;
  786. k_dynamic -= 7;
  787. if ((unsigned) i + j > n) {
  788. abort_unzip(PASS_STATE_ONLY); //return 1;
  789. }
  790. while (j--) {
  791. ll[i++] = 0;
  792. }
  793. l = 0;
  794. }
  795. }
  796. /* free decoding table for trees */
  797. huft_free(inflate_codes_tl);
  798. /* restore the global bit buffer */
  799. gunzip_bb = b_dynamic;
  800. gunzip_bk = k_dynamic;
  801. /* build the decoding tables for literal/length and distance codes */
  802. bl = lbits;
  803. i = huft_build(ll, nl, 257, cplens, cplext, &inflate_codes_tl, &bl);
  804. if (i != 0)
  805. abort_unzip(PASS_STATE_ONLY);
  806. bd = dbits;
  807. i = huft_build(ll + nl, nd, 0, cpdist, cpdext, &inflate_codes_td, &bd);
  808. if (i != 0)
  809. abort_unzip(PASS_STATE_ONLY);
  810. /* set up data for inflate_codes() */
  811. inflate_codes_setup(PASS_STATE bl, bd);
  812. /* huft_free code moved into inflate_codes */
  813. return -2;
  814. }
  815. default:
  816. abort_unzip(PASS_STATE_ONLY);
  817. }
  818. }
  819. /* Two callsites, both in inflate_get_next_window */
  820. static void calculate_gunzip_crc(STATE_PARAM_ONLY)
  821. {
  822. gunzip_crc = crc32_block_endian0(gunzip_crc, gunzip_window, gunzip_outbuf_count, gunzip_crc_table);
  823. gunzip_bytes_out += gunzip_outbuf_count;
  824. }
  825. /* One callsite in inflate_unzip_internal */
  826. static int inflate_get_next_window(STATE_PARAM_ONLY)
  827. {
  828. gunzip_outbuf_count = 0;
  829. while (1) {
  830. int ret;
  831. if (need_another_block) {
  832. if (end_reached) {
  833. calculate_gunzip_crc(PASS_STATE_ONLY);
  834. end_reached = 0;
  835. /* NB: need_another_block is still set */
  836. return 0; /* Last block */
  837. }
  838. method = inflate_block(PASS_STATE &end_reached);
  839. need_another_block = 0;
  840. }
  841. switch (method) {
  842. case -1:
  843. ret = inflate_stored(PASS_STATE_ONLY);
  844. break;
  845. case -2:
  846. ret = inflate_codes(PASS_STATE_ONLY);
  847. break;
  848. default: /* cannot happen */
  849. abort_unzip(PASS_STATE_ONLY);
  850. }
  851. if (ret == 1) {
  852. calculate_gunzip_crc(PASS_STATE_ONLY);
  853. return 1; /* more data left */
  854. }
  855. need_another_block = 1; /* end of that block */
  856. }
  857. /* Doesnt get here */
  858. }
  859. /* Called from unpack_gz_stream() and inflate_unzip() */
  860. static IF_DESKTOP(long long) int
  861. inflate_unzip_internal(STATE_PARAM int in, int out)
  862. {
  863. IF_DESKTOP(long long) int n = 0;
  864. ssize_t nwrote;
  865. /* Allocate all global buffers (for DYN_ALLOC option) */
  866. gunzip_window = xmalloc(GUNZIP_WSIZE);
  867. gunzip_outbuf_count = 0;
  868. gunzip_bytes_out = 0;
  869. gunzip_src_fd = in;
  870. /* (re) initialize state */
  871. method = -1;
  872. need_another_block = 1;
  873. resume_copy = 0;
  874. gunzip_bk = 0;
  875. gunzip_bb = 0;
  876. /* Create the crc table */
  877. gunzip_crc_table = crc32_filltable(NULL, 0);
  878. gunzip_crc = ~0;
  879. error_msg = "corrupted data";
  880. if (setjmp(error_jmp)) {
  881. /* Error from deep inside zip machinery */
  882. n = -1;
  883. goto ret;
  884. }
  885. while (1) {
  886. int r = inflate_get_next_window(PASS_STATE_ONLY);
  887. nwrote = full_write(out, gunzip_window, gunzip_outbuf_count);
  888. if (nwrote != (ssize_t)gunzip_outbuf_count) {
  889. bb_perror_msg("write");
  890. n = -1;
  891. goto ret;
  892. }
  893. IF_DESKTOP(n += nwrote;)
  894. if (r == 0) break;
  895. }
  896. /* Store unused bytes in a global buffer so calling applets can access it */
  897. if (gunzip_bk >= 8) {
  898. /* Undo too much lookahead. The next read will be byte aligned
  899. * so we can discard unused bits in the last meaningful byte. */
  900. bytebuffer_offset--;
  901. bytebuffer[bytebuffer_offset] = gunzip_bb & 0xff;
  902. gunzip_bb >>= 8;
  903. gunzip_bk -= 8;
  904. }
  905. ret:
  906. /* Cleanup */
  907. free(gunzip_window);
  908. free(gunzip_crc_table);
  909. return n;
  910. }
  911. /* External entry points */
  912. /* For unzip */
  913. IF_DESKTOP(long long) int FAST_FUNC
  914. inflate_unzip(transformer_aux_data_t *aux, int in, int out)
  915. {
  916. IF_DESKTOP(long long) int n;
  917. DECLARE_STATE;
  918. ALLOC_STATE;
  919. to_read = aux->bytes_in;
  920. // bytebuffer_max = 0x8000;
  921. bytebuffer_offset = 4;
  922. bytebuffer = xmalloc(bytebuffer_max);
  923. n = inflate_unzip_internal(PASS_STATE in, out);
  924. free(bytebuffer);
  925. aux->crc32 = gunzip_crc;
  926. aux->bytes_out = gunzip_bytes_out;
  927. DEALLOC_STATE;
  928. return n;
  929. }
  930. /* For gunzip */
  931. /* helpers first */
  932. /* Top up the input buffer with at least n bytes. */
  933. static int top_up(STATE_PARAM unsigned n)
  934. {
  935. int count = bytebuffer_size - bytebuffer_offset;
  936. if (count < (int)n) {
  937. memmove(bytebuffer, &bytebuffer[bytebuffer_offset], count);
  938. bytebuffer_offset = 0;
  939. bytebuffer_size = full_read(gunzip_src_fd, &bytebuffer[count], bytebuffer_max - count);
  940. if ((int)bytebuffer_size < 0) {
  941. bb_error_msg(bb_msg_read_error);
  942. return 0;
  943. }
  944. bytebuffer_size += count;
  945. if (bytebuffer_size < n)
  946. return 0;
  947. }
  948. return 1;
  949. }
  950. static uint16_t buffer_read_le_u16(STATE_PARAM_ONLY)
  951. {
  952. uint16_t res;
  953. #if BB_LITTLE_ENDIAN
  954. move_from_unaligned16(res, &bytebuffer[bytebuffer_offset]);
  955. #else
  956. res = bytebuffer[bytebuffer_offset];
  957. res |= bytebuffer[bytebuffer_offset + 1] << 8;
  958. #endif
  959. bytebuffer_offset += 2;
  960. return res;
  961. }
  962. static uint32_t buffer_read_le_u32(STATE_PARAM_ONLY)
  963. {
  964. uint32_t res;
  965. #if BB_LITTLE_ENDIAN
  966. move_from_unaligned32(res, &bytebuffer[bytebuffer_offset]);
  967. #else
  968. res = bytebuffer[bytebuffer_offset];
  969. res |= bytebuffer[bytebuffer_offset + 1] << 8;
  970. res |= bytebuffer[bytebuffer_offset + 2] << 16;
  971. res |= bytebuffer[bytebuffer_offset + 3] << 24;
  972. #endif
  973. bytebuffer_offset += 4;
  974. return res;
  975. }
  976. static int check_header_gzip(STATE_PARAM transformer_aux_data_t *aux)
  977. {
  978. union {
  979. unsigned char raw[8];
  980. struct {
  981. uint8_t gz_method;
  982. uint8_t flags;
  983. uint32_t mtime;
  984. uint8_t xtra_flags_UNUSED;
  985. uint8_t os_flags_UNUSED;
  986. } PACKED formatted;
  987. } header;
  988. struct BUG_header {
  989. char BUG_header[sizeof(header) == 8 ? 1 : -1];
  990. };
  991. /*
  992. * Rewind bytebuffer. We use the beginning because the header has 8
  993. * bytes, leaving enough for unwinding afterwards.
  994. */
  995. bytebuffer_size -= bytebuffer_offset;
  996. memmove(bytebuffer, &bytebuffer[bytebuffer_offset], bytebuffer_size);
  997. bytebuffer_offset = 0;
  998. if (!top_up(PASS_STATE 8))
  999. return 0;
  1000. memcpy(header.raw, &bytebuffer[bytebuffer_offset], 8);
  1001. bytebuffer_offset += 8;
  1002. /* Check the compression method */
  1003. if (header.formatted.gz_method != 8) {
  1004. return 0;
  1005. }
  1006. if (header.formatted.flags & 0x04) {
  1007. /* bit 2 set: extra field present */
  1008. unsigned extra_short;
  1009. if (!top_up(PASS_STATE 2))
  1010. return 0;
  1011. extra_short = buffer_read_le_u16(PASS_STATE_ONLY);
  1012. if (!top_up(PASS_STATE extra_short))
  1013. return 0;
  1014. /* Ignore extra field */
  1015. bytebuffer_offset += extra_short;
  1016. }
  1017. /* Discard original name and file comment if any */
  1018. /* bit 3 set: original file name present */
  1019. /* bit 4 set: file comment present */
  1020. if (header.formatted.flags & 0x18) {
  1021. while (1) {
  1022. do {
  1023. if (!top_up(PASS_STATE 1))
  1024. return 0;
  1025. } while (bytebuffer[bytebuffer_offset++] != 0);
  1026. if ((header.formatted.flags & 0x18) != 0x18)
  1027. break;
  1028. header.formatted.flags &= ~0x18;
  1029. }
  1030. }
  1031. if (aux)
  1032. aux->mtime = SWAP_LE32(header.formatted.mtime);
  1033. /* Read the header checksum */
  1034. if (header.formatted.flags & 0x02) {
  1035. if (!top_up(PASS_STATE 2))
  1036. return 0;
  1037. bytebuffer_offset += 2;
  1038. }
  1039. return 1;
  1040. }
  1041. IF_DESKTOP(long long) int FAST_FUNC
  1042. unpack_gz_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd)
  1043. {
  1044. uint32_t v32;
  1045. IF_DESKTOP(long long) int total, n;
  1046. DECLARE_STATE;
  1047. #if !ENABLE_FEATURE_SEAMLESS_Z
  1048. if (check_signature16(aux, src_fd, GZIP_MAGIC))
  1049. return -1;
  1050. #else
  1051. if (aux && aux->check_signature) {
  1052. uint16_t magic2;
  1053. if (full_read(src_fd, &magic2, 2) != 2) {
  1054. bad_magic:
  1055. bb_error_msg("invalid magic");
  1056. return -1;
  1057. }
  1058. if (magic2 == COMPRESS_MAGIC) {
  1059. aux->check_signature = 0;
  1060. return unpack_Z_stream(aux, src_fd, dst_fd);
  1061. }
  1062. if (magic2 != GZIP_MAGIC)
  1063. goto bad_magic;
  1064. }
  1065. #endif
  1066. total = 0;
  1067. ALLOC_STATE;
  1068. to_read = -1;
  1069. // bytebuffer_max = 0x8000;
  1070. bytebuffer = xmalloc(bytebuffer_max);
  1071. gunzip_src_fd = src_fd;
  1072. again:
  1073. if (!check_header_gzip(PASS_STATE aux)) {
  1074. bb_error_msg("corrupted data");
  1075. total = -1;
  1076. goto ret;
  1077. }
  1078. n = inflate_unzip_internal(PASS_STATE src_fd, dst_fd);
  1079. if (n < 0) {
  1080. total = -1;
  1081. goto ret;
  1082. }
  1083. total += n;
  1084. if (!top_up(PASS_STATE 8)) {
  1085. bb_error_msg("corrupted data");
  1086. total = -1;
  1087. goto ret;
  1088. }
  1089. /* Validate decompression - crc */
  1090. v32 = buffer_read_le_u32(PASS_STATE_ONLY);
  1091. if ((~gunzip_crc) != v32) {
  1092. bb_error_msg("crc error");
  1093. total = -1;
  1094. goto ret;
  1095. }
  1096. /* Validate decompression - size */
  1097. v32 = buffer_read_le_u32(PASS_STATE_ONLY);
  1098. if ((uint32_t)gunzip_bytes_out != v32) {
  1099. bb_error_msg("incorrect length");
  1100. total = -1;
  1101. }
  1102. if (!top_up(PASS_STATE 2))
  1103. goto ret; /* EOF */
  1104. if (bytebuffer[bytebuffer_offset] == 0x1f
  1105. && bytebuffer[bytebuffer_offset + 1] == 0x8b
  1106. ) {
  1107. bytebuffer_offset += 2;
  1108. goto again;
  1109. }
  1110. /* GNU gzip says: */
  1111. /*bb_error_msg("decompression OK, trailing garbage ignored");*/
  1112. ret:
  1113. free(bytebuffer);
  1114. DEALLOC_STATE;
  1115. return total;
  1116. }