1 /* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2012 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
9 * 1.2.beta0 24 Nov 2002
10 * - First version -- complete rewrite of inflate to simplify code, avoid
11 * creation of window when not needed, minimize use of window when it is
12 * needed, make inffast.c even faster, implement gzip decoding, and to
13 * improve code readability and style over the previous zlib inflate code
15 * 1.2.beta1 25 Nov 2002
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
22 * 1.2.beta2 4 Dec 2002
23 * - Change external routine names to reduce potential conflicts
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
29 * 1.2.beta3 22 Dec 2002
30 * - Add comments on state->bits assertion in inffast.c
31 * - Add comments on op field in inftrees.h
32 * - Fix bug in reuse of allocated window after inflateReset()
33 * - Remove bit fields--back to byte structure for speed
34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
35 * - Change post-increments to pre-increments in inflate_fast(), PPC biased?
36 * - Add compile time option, POSTINC, to use post-increments instead (Intel?)
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
38 * - Use local copies of stream next and avail values, as well as local bit
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
41 * 1.2.beta4 1 Jan 2003
42 * - Split ptr - 257 statements in inflate_table() to avoid compiler warnings
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
44 * - Add comments in inffast.c to introduce the inflate_fast() routine
45 * - Rearrange window copies in inflate_fast() for speed and simplification
46 * - Unroll last copy for window match in inflate_fast()
47 * - Use local copies of window variables in inflate_fast() for speed
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
49 * - Make op and len in inflate_fast() unsigned for consistency
50 * - Add FAR to lcode and dcode declarations in inflate_fast()
51 * - Simplified bad distance check in inflate_fast()
52 * - Added inflateBackInit(), inflateBack(), and inflateBackEnd() in new
53 * source file infback.c to provide a call-back interface to inflate for
54 * programs like gzip and unzip -- uses window as output buffer to avoid
57 * 1.2.beta5 1 Jan 2003
58 * - Improved inflateBack() interface to allow the caller to provide initial
60 * - Fixed stored blocks bug in inflateBack()
62 * 1.2.beta6 4 Jan 2003
63 * - Added comments in inffast.c on effectiveness of POSTINC
64 * - Typecasting all around to reduce compiler warnings
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
66 * make compilers happy
67 * - Changed type of window in inflateBackInit() to unsigned char *
69 * 1.2.beta7 27 Jan 2003
70 * - Changed many types to unsigned or unsigned short to avoid warnings
71 * - Added inflateCopy() function
74 * - Changed inflateBack() interface to provide separate opaque descriptors
75 * for the in() and out() functions
76 * - Changed inflateBack() argument and in_func typedef to swap the length
77 * and buffer address return values for the input function
78 * - Check next_in and next_out for Z_NULL on entry to inflate()
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
98 /* function prototypes */
99 int ZEXPORT inflateReset2(z_streamp strm, int windowBits);
100 local void fixedtables OF((struct inflate_state FAR *state));
101 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,
104 void makefixed OF((void));
106 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
109 long ZEXPORT inflateMark(z_streamp strm);
111 int ZEXPORT inflateResetKeep(z_streamp strm);
113 int ZEXPORT inflateUndermine(z_streamp strm, int subvert);
115 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary, uInt *dictLength);
117 int ZEXPORT inflateResetKeep(z_streamp strm)
119 struct inflate_state FAR *state;
121 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
122 state = (struct inflate_state FAR *)strm->state;
123 strm->total_in = strm->total_out = state->total = 0;
125 if (state->wrap) /* to support ill-conceived Java test suite */
126 strm->adler = state->wrap & 1;
130 state->dmax = 32768U;
131 state->head = Z_NULL;
134 state->lencode = state->distcode = state->next = state->codes;
137 Tracev((stderr, "inflate: reset\n"));
141 int ZEXPORT inflateReset(z_streamp strm)
143 struct inflate_state FAR *state;
145 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
146 state = (struct inflate_state FAR *)strm->state;
150 return inflateResetKeep(strm);
153 int ZEXPORT inflateReset2(z_streamp strm, int windowBits)
156 struct inflate_state FAR *state = NULL;
159 if (strm == Z_NULL || strm->state == Z_NULL)
160 return Z_STREAM_ERROR;
161 state = (struct inflate_state FAR *)strm->state;
163 /* extract wrap request from windowBits parameter */
164 if (windowBits < 0) {
166 windowBits = -windowBits;
169 wrap = (windowBits >> 4) + 1;
176 /* set number of window bits, free window if different */
177 if (windowBits && (windowBits < 8 || windowBits > 15))
178 return Z_STREAM_ERROR;
179 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
180 ZFREE(strm, state->window);
181 state->window = Z_NULL;
184 /* update state and reset the rest of it */
186 state->wbits = (unsigned)windowBits;
187 return inflateReset(strm);
190 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits, const char *version, int stream_size)
193 struct inflate_state FAR *state;
195 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
196 stream_size != (int)(sizeof(z_stream)))
197 return Z_VERSION_ERROR;
198 if (strm == Z_NULL) return Z_STREAM_ERROR;
199 strm->msg = Z_NULL; /* in case we return an error */
200 if (strm->zalloc == (alloc_func)0) {
202 return Z_STREAM_ERROR;
204 strm->zalloc = zcalloc;
205 strm->opaque = (voidpf)0;
208 if (strm->zfree == Z_NULL)
210 return Z_STREAM_ERROR;
212 strm->zfree = zcfree;
214 state = (struct inflate_state FAR *)
215 ZALLOC(strm, 1, sizeof(struct inflate_state));
216 if (state == Z_NULL) return Z_MEM_ERROR;
217 Tracev((stderr, "inflate: allocated\n"));
218 strm->state = (struct internal_state FAR *)state;
219 state->window = Z_NULL;
220 ret = inflateReset2(strm, windowBits);
223 strm->state = Z_NULL;
228 int ZEXPORT inflateInit_(z_streamp strm, const char *version, int stream_size)
230 return inflateInit2_(strm, DEF_WBITS, version, stream_size);
233 int ZEXPORT inflatePrime(z_streamp strm, int bits, int value)
235 struct inflate_state FAR *state;
237 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
238 state = (struct inflate_state FAR *)strm->state;
244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
245 value &= (1L << bits) - 1;
246 state->hold += value << state->bits;
252 Return state with length and distance decoding tables and index sizes set to
253 fixed code decoding. Normally this returns fixed tables from inffixed.h.
254 If BUILDFIXED is defined, then instead this routine builds the tables the
255 first time it's called, and returns those tables the first time and
256 thereafter. This reduces the size of the code by about 2K bytes, in
257 exchange for a little execution time. However, BUILDFIXED should not be
258 used for threaded applications, since the rewriting of the tables and virgin
259 may not be thread-safe.
261 local void fixedtables(struct inflate_state FAR *state)
264 static int virgin = 1;
265 static code *lenfix, *distfix;
266 static code fixed[544];
268 /* build fixed huffman tables if first call (may not be thread safe) */
273 /* literal/length table */
275 while (sym < 144) state->lens[sym++] = 8;
276 while (sym < 256) state->lens[sym++] = 9;
277 while (sym < 280) state->lens[sym++] = 7;
278 while (sym < 288) state->lens[sym++] = 8;
282 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
286 while (sym < 32) state->lens[sym++] = 5;
289 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
291 /* do this just once */
294 #else /* !BUILDFIXED */
295 # include "inffixed.h"
296 #endif /* BUILDFIXED */
297 state->lencode = lenfix;
299 state->distcode = distfix;
307 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
308 defines BUILDFIXED, so the tables are built on the fly. makefixed() writes
309 those tables to stdout, which would be piped to inffixed.h. A small program
310 can simply call makefixed to do this:
312 void makefixed(void);
320 Then that can be linked with zlib built with MAKEFIXED defined and run:
327 struct inflate_state state;
330 puts(" /* inffixed.h -- table for decoding fixed codes");
331 puts(" * Generated automatically by makefixed().");
334 puts(" /* WARNING: this file should *not* be used by applications.");
335 puts(" It is part of the implementation of this library and is");
336 puts(" subject to change. Applications should only use zlib.h.");
340 printf(" static const code lenfix[%u] = {", size);
343 if ((low % 7) == 0) printf("\n ");
344 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op,
345 state.lencode[low].bits, state.lencode[low].val);
346 if (++low == size) break;
351 printf("\n static const code distfix[%u] = {", size);
354 if ((low % 6) == 0) printf("\n ");
355 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
356 state.distcode[low].val);
357 if (++low == size) break;
362 #endif /* MAKEFIXED */
365 Update the window with the last wsize (normally 32K) bytes written before
366 returning. If window does not exist yet, create it. This is only called
367 when a window is already in use, or when output has been written during this
368 inflate call, but the end of the deflate stream has not been reached yet.
369 It is also called to create a window for dictionary data when a dictionary
372 Providing output buffers larger than 32K to inflate() should provide a speed
373 advantage, since only the last 32K of output is copied to the sliding window
374 upon return from inflate(), and since all distances after the first 32K of
375 output will fall in the output data, making match copies simpler and faster.
376 The advantage may be dependent on the size of the processor's data caches.
378 local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy)
380 struct inflate_state FAR *state;
383 state = (struct inflate_state FAR *)strm->state;
385 /* if it hasn't been done already, allocate space for the window */
386 if (state->window == Z_NULL) {
387 state->window = (unsigned char FAR *)
388 ZALLOC(strm, 1U << state->wbits,
389 sizeof(unsigned char));
390 if (state->window == Z_NULL) return 1;
393 /* if window not in use yet, initialize */
394 if (state->wsize == 0) {
395 state->wsize = 1U << state->wbits;
400 /* copy state->wsize or less output bytes into the circular window */
401 if (copy >= state->wsize) {
402 zmemcpy(state->window, end - state->wsize, state->wsize);
404 state->whave = state->wsize;
407 dist = state->wsize - state->wnext;
408 if (dist > copy) dist = copy;
409 zmemcpy(state->window + state->wnext, end - copy, dist);
412 zmemcpy(state->window, end - copy, copy);
414 state->whave = state->wsize;
417 state->wnext += dist;
418 if (state->wnext == state->wsize) state->wnext = 0;
419 if (state->whave < state->wsize) state->whave += dist;
425 /* Macros for inflate(): */
427 /* check function to use adler32() for zlib or crc32() for gzip */
429 # define UPDATE(check, buf, len) \
430 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
432 # define UPDATE(check, buf, len) adler32(check, buf, len)
435 /* check macros for header crc */
437 # define CRC2(check, word) \
439 hbuf[0] = (unsigned char)(word); \
440 hbuf[1] = (unsigned char)((word) >> 8); \
441 check = crc32(check, hbuf, 2); \
444 # define CRC4(check, word) \
446 hbuf[0] = (unsigned char)(word); \
447 hbuf[1] = (unsigned char)((word) >> 8); \
448 hbuf[2] = (unsigned char)((word) >> 16); \
449 hbuf[3] = (unsigned char)((word) >> 24); \
450 check = crc32(check, hbuf, 4); \
454 /* Load registers with state in inflate() for speed */
457 put = strm->next_out; \
458 left = strm->avail_out; \
459 next = strm->next_in; \
460 have = strm->avail_in; \
461 hold = state->hold; \
462 bits = state->bits; \
465 /* Restore state from registers in inflate() */
468 strm->next_out = put; \
469 strm->avail_out = left; \
470 strm->next_in = next; \
471 strm->avail_in = have; \
472 state->hold = hold; \
473 state->bits = bits; \
476 /* Clear the input bit accumulator */
483 /* Get a byte of input into the bit accumulator, or return from inflate()
484 if there is no input available. */
487 if (have == 0) goto inf_leave; \
489 hold += (unsigned long)(*next++) << bits; \
493 /* Assure that there are at least n bits in the bit accumulator. If there is
494 not enough available input to do that, then return from inflate(). */
495 #define NEEDBITS(n) \
497 while (bits < (unsigned)(n)) \
501 /* Return the low n bits of the bit accumulator (n < 16) */
503 ((unsigned)hold & ((1U << (n)) - 1))
505 /* Remove n bits from the bit accumulator */
506 #define DROPBITS(n) \
509 bits -= (unsigned)(n); \
512 /* Remove zero to seven bits as needed to go to a byte boundary */
520 inflate() uses a state machine to process as much input data and generate as
521 much output data as possible before returning. The state machine is
522 structured roughly as follows:
524 for (;;) switch (state) {
527 if (not enough input data or output space to make progress)
529 ... make progress ...
535 so when inflate() is called again, the same case is attempted again, and
536 if the appropriate resources are provided, the machine proceeds to the
537 next state. The NEEDBITS() macro is usually the way the state evaluates
538 whether it can proceed or should return. NEEDBITS() does the return if
539 the requested bits are not available. The typical use of the BITS macros
543 ... do something with BITS(n) ...
546 where NEEDBITS(n) either returns from inflate() if there isn't enough
547 input left to load n bits into the accumulator, or it continues. BITS(n)
548 gives the low n bits in the accumulator. When done, DROPBITS(n) drops
549 the low n bits off the accumulator. INITBITS() clears the accumulator
550 and sets the number of available bits to zero. BYTEBITS() discards just
551 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
552 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
554 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
555 if there is no input available. The decoding of variable length codes uses
556 PULLBYTE() directly in order to pull just enough bytes to decode the next
559 Some states loop until they get enough input, making sure that enough
560 state information is maintained to continue the loop where it left off
561 if NEEDBITS() returns in the loop. For example, want, need, and keep
562 would all have to actually be part of the saved state in case NEEDBITS()
566 while (want < need) {
568 keep[want++] = BITS(n);
574 As shown above, if the next state is also the next case, then the break
577 A state may also return if there is not enough output space available to
578 complete that state. Those states are copying stored data, writing a
579 literal byte, and copying a matching string.
581 When returning, a "goto inf_leave" is used to update the total counters,
582 update the check value, and determine whether any progress has been made
583 during that inflate() call in order to return the proper return code.
584 Progress is defined as a change in either strm->avail_in or strm->avail_out.
585 When there is a window, goto inf_leave will update the window with the last
586 output written. If a goto inf_leave occurs in the middle of decompression
587 and there is no window currently, goto inf_leave will create one and copy
588 output to the window for the next call of inflate().
590 In this implementation, the flush parameter of inflate() only affects the
591 return code (per zlib.h). inflate() always writes as much as possible to
592 strm->next_out, given the space available and the provided input--the effect
593 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
594 the allocation of and copying into a sliding window until necessary, which
595 provides the effect documented in zlib.h for Z_FINISH when the entire input
596 stream available. So the only thing the flush parameter actually does is:
597 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
598 will return Z_BUF_ERROR if it has not reached the end of the stream.
601 int ZEXPORT inflate(z_streamp strm, int flush)
603 struct inflate_state FAR *state;
604 unsigned char FAR *next; /* next input */
605 unsigned char FAR *put; /* next output */
606 unsigned have, left; /* available input and output */
607 unsigned long hold; /* bit buffer */
608 unsigned bits; /* bits in bit buffer */
609 unsigned in, out; /* save starting available input and output */
610 unsigned copy; /* number of stored or match bytes to copy */
611 unsigned char FAR *from; /* where to copy match bytes from */
612 code here; /* current decoding table entry */
613 code last; /* parent table entry */
614 unsigned len; /* length to copy for repeats, bits to drop */
615 int ret; /* return code */
617 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */
619 static const unsigned short order[19] = /* permutation of code lengths */
620 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
622 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL ||
623 (strm->next_in == Z_NULL && strm->avail_in != 0))
624 return Z_STREAM_ERROR;
626 state = (struct inflate_state FAR *)strm->state;
627 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
633 switch (state->mode) {
635 if (state->wrap == 0) {
636 state->mode = TYPEDO;
641 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */
642 state->check = crc32(0L, Z_NULL, 0);
643 CRC2(state->check, hold);
648 state->flags = 0; /* expect zlib header */
649 if (state->head != Z_NULL)
650 state->head->done = -1;
651 if (!(state->wrap & 1) || /* check if zlib header allowed */
655 ((BITS(8) << 8) + (hold >> 8)) % 31) {
656 strm->msg = (char *)"incorrect header check";
660 if (BITS(4) != Z_DEFLATED) {
661 strm->msg = (char *)"unknown compression method";
667 if (state->wbits == 0)
669 else if (len > state->wbits) {
670 strm->msg = (char *)"invalid window size";
674 state->dmax = 1U << len;
675 Tracev((stderr, "inflate: zlib header ok\n"));
676 strm->adler = state->check = adler32(0L, Z_NULL, 0);
677 state->mode = hold & 0x200 ? DICTID : TYPE;
683 state->flags = (int)(hold);
684 if ((state->flags & 0xff) != Z_DEFLATED) {
685 strm->msg = (char *)"unknown compression method";
689 if (state->flags & 0xe000) {
690 strm->msg = (char *)"unknown header flags set";
694 if (state->head != Z_NULL)
695 state->head->text = (int)((hold >> 8) & 1);
696 if (state->flags & 0x0200) CRC2(state->check, hold);
701 if (state->head != Z_NULL)
702 state->head->time = hold;
703 if (state->flags & 0x0200) CRC4(state->check, hold);
708 if (state->head != Z_NULL) {
709 state->head->xflags = (int)(hold & 0xff);
710 state->head->os = (int)(hold >> 8);
712 if (state->flags & 0x0200) CRC2(state->check, hold);
716 if (state->flags & 0x0400) {
718 state->length = (unsigned)(hold);
719 if (state->head != Z_NULL)
720 state->head->extra_len = (unsigned)hold;
721 if (state->flags & 0x0200) CRC2(state->check, hold);
724 else if (state->head != Z_NULL)
725 state->head->extra = Z_NULL;
728 if (state->flags & 0x0400) {
729 copy = state->length;
730 if (copy > have) copy = have;
732 if (state->head != Z_NULL &&
733 state->head->extra != Z_NULL) {
734 len = state->head->extra_len - state->length;
735 zmemcpy(state->head->extra + len, next,
736 len + copy > state->head->extra_max ?
737 state->head->extra_max - len : copy);
739 if (state->flags & 0x0200)
740 state->check = crc32(state->check, next, copy);
743 state->length -= copy;
745 if (state->length) goto inf_leave;
750 if (state->flags & 0x0800) {
751 if (have == 0) goto inf_leave;
754 len = (unsigned)(next[copy++]);
755 if (state->head != Z_NULL &&
756 state->head->name != Z_NULL &&
757 state->length < state->head->name_max)
758 state->head->name[state->length++] = len;
759 } while (len && copy < have);
760 if (state->flags & 0x0200)
761 state->check = crc32(state->check, next, copy);
764 if (len) goto inf_leave;
766 else if (state->head != Z_NULL)
767 state->head->name = Z_NULL;
769 state->mode = COMMENT;
771 if (state->flags & 0x1000) {
772 if (have == 0) goto inf_leave;
775 len = (unsigned)(next[copy++]);
776 if (state->head != Z_NULL &&
777 state->head->comment != Z_NULL &&
778 state->length < state->head->comm_max)
779 state->head->comment[state->length++] = len;
780 } while (len && copy < have);
781 if (state->flags & 0x0200)
782 state->check = crc32(state->check, next, copy);
785 if (len) goto inf_leave;
787 else if (state->head != Z_NULL)
788 state->head->comment = Z_NULL;
791 if (state->flags & 0x0200) {
793 if (hold != (state->check & 0xffff)) {
794 strm->msg = (char *)"header crc mismatch";
800 if (state->head != Z_NULL) {
801 state->head->hcrc = (int)((state->flags >> 9) & 1);
802 state->head->done = 1;
804 strm->adler = state->check = crc32(0L, Z_NULL, 0);
810 strm->adler = state->check = ZSWAP32(hold);
814 if (state->havedict == 0) {
818 strm->adler = state->check = adler32(0L, Z_NULL, 0);
821 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
829 state->last = BITS(1);
832 case 0: /* stored block */
833 Tracev((stderr, "inflate: stored block%s\n",
834 state->last ? " (last)" : ""));
835 state->mode = STORED;
837 case 1: /* fixed block */
839 Tracev((stderr, "inflate: fixed codes block%s\n",
840 state->last ? " (last)" : ""));
841 state->mode = LEN_; /* decode codes */
842 if (flush == Z_TREES) {
847 case 2: /* dynamic block */
848 Tracev((stderr, "inflate: dynamic codes block%s\n",
849 state->last ? " (last)" : ""));
853 strm->msg = (char *)"invalid block type";
859 BYTEBITS(); /* go to byte boundary */
861 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
862 strm->msg = (char *)"invalid stored block lengths";
866 state->length = (unsigned)hold & 0xffff;
867 Tracev((stderr, "inflate: stored length %u\n",
871 if (flush == Z_TREES) goto inf_leave;
875 copy = state->length;
877 if (copy > have) copy = have;
878 if (copy > left) copy = left;
879 if (copy == 0) goto inf_leave;
880 zmemcpy(put, next, copy);
885 state->length -= copy;
888 Tracev((stderr, "inflate: stored end\n"));
893 state->nlen = BITS(5) + 257;
895 state->ndist = BITS(5) + 1;
897 state->ncode = BITS(4) + 4;
899 #ifndef PKZIP_BUG_WORKAROUND
900 if (state->nlen > 286 || state->ndist > 30) {
901 strm->msg = (char *)"too many length or distance symbols";
906 Tracev((stderr, "inflate: table sizes ok\n"));
908 state->mode = LENLENS;
910 while (state->have < state->ncode) {
912 state->lens[order[state->have++]] = (unsigned short)BITS(3);
915 while (state->have < 19)
916 state->lens[order[state->have++]] = 0;
917 state->next = state->codes;
918 state->lencode = (const code FAR *)(state->next);
920 ret = inflate_table(CODES, state->lens, 19, &(state->next),
921 &(state->lenbits), state->work);
923 strm->msg = (char *)"invalid code lengths set";
927 Tracev((stderr, "inflate: code lengths ok\n"));
929 state->mode = CODELENS;
931 while (state->have < state->nlen + state->ndist) {
933 here = state->lencode[BITS(state->lenbits)];
934 if ((unsigned)(here.bits) <= bits) break;
939 state->lens[state->have++] = here.val;
942 if (here.val == 16) {
943 NEEDBITS(here.bits + 2);
945 if (state->have == 0) {
946 strm->msg = (char *)"invalid bit length repeat";
950 len = state->lens[state->have - 1];
954 else if (here.val == 17) {
955 NEEDBITS(here.bits + 3);
962 NEEDBITS(here.bits + 7);
968 if (state->have + copy > state->nlen + state->ndist) {
969 strm->msg = (char *)"invalid bit length repeat";
974 state->lens[state->have++] = (unsigned short)len;
978 /* handle error breaks in while */
979 if (state->mode == BAD) break;
981 /* check for end-of-block code (better have one) */
982 if (state->lens[256] == 0) {
983 strm->msg = (char *)"invalid code -- missing end-of-block";
988 /* build code tables -- note: do not change the lenbits or distbits
989 values here (9 and 6) without reading the comments in inftrees.h
990 concerning the ENOUGH constants, which depend on those values */
991 state->next = state->codes;
992 state->lencode = (const code FAR *)(state->next);
994 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
995 &(state->lenbits), state->work);
997 strm->msg = (char *)"invalid literal/lengths set";
1001 state->distcode = (const code FAR *)(state->next);
1002 state->distbits = 6;
1003 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
1004 &(state->next), &(state->distbits), state->work);
1006 strm->msg = (char *)"invalid distances set";
1010 Tracev((stderr, "inflate: codes ok\n"));
1012 if (flush == Z_TREES) goto inf_leave;
1016 if (have >= 6 && left >= 258) {
1018 inflate_fast(strm, out);
1020 if (state->mode == TYPE)
1026 here = state->lencode[BITS(state->lenbits)];
1027 if ((unsigned)(here.bits) <= bits) break;
1030 if (here.op && (here.op & 0xf0) == 0) {
1033 here = state->lencode[last.val +
1034 (BITS(last.bits + last.op) >> last.bits)];
1035 if ((unsigned)(last.bits + here.bits) <= bits) break;
1038 DROPBITS(last.bits);
1039 state->back += last.bits;
1041 DROPBITS(here.bits);
1042 state->back += here.bits;
1043 state->length = (unsigned)here.val;
1044 if ((int)(here.op) == 0) {
1045 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
1046 "inflate: literal '%c'\n" :
1047 "inflate: literal 0x%02x\n", here.val));
1052 Tracevv((stderr, "inflate: end of block\n"));
1058 strm->msg = (char *)"invalid literal/length code";
1062 state->extra = (unsigned)(here.op) & 15;
1063 state->mode = LENEXT;
1066 NEEDBITS(state->extra);
1067 state->length += BITS(state->extra);
1068 DROPBITS(state->extra);
1069 state->back += state->extra;
1071 Tracevv((stderr, "inflate: length %u\n", state->length));
1072 state->was = state->length;
1076 here = state->distcode[BITS(state->distbits)];
1077 if ((unsigned)(here.bits) <= bits) break;
1080 if ((here.op & 0xf0) == 0) {
1083 here = state->distcode[last.val +
1084 (BITS(last.bits + last.op) >> last.bits)];
1085 if ((unsigned)(last.bits + here.bits) <= bits) break;
1088 DROPBITS(last.bits);
1089 state->back += last.bits;
1091 DROPBITS(here.bits);
1092 state->back += here.bits;
1094 strm->msg = (char *)"invalid distance code";
1098 state->offset = (unsigned)here.val;
1099 state->extra = (unsigned)(here.op) & 15;
1100 state->mode = DISTEXT;
1103 NEEDBITS(state->extra);
1104 state->offset += BITS(state->extra);
1105 DROPBITS(state->extra);
1106 state->back += state->extra;
1108 #ifdef INFLATE_STRICT
1109 if (state->offset > state->dmax) {
1110 strm->msg = (char *)"invalid distance too far back";
1115 Tracevv((stderr, "inflate: distance %u\n", state->offset));
1116 state->mode = MATCH;
1118 if (left == 0) goto inf_leave;
1120 if (state->offset > copy) { /* copy from window */
1121 copy = state->offset - copy;
1122 if (copy > state->whave) {
1124 strm->msg = (char *)"invalid distance too far back";
1128 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
1129 Trace((stderr, "inflate.c too far\n"));
1130 copy -= state->whave;
1131 if (copy > state->length) copy = state->length;
1132 if (copy > left) copy = left;
1134 state->length -= copy;
1138 if (state->length == 0) state->mode = LEN;
1142 if (copy > state->wnext) {
1143 copy -= state->wnext;
1144 from = state->window + (state->wsize - copy);
1147 from = state->window + (state->wnext - copy);
1148 if (copy > state->length) copy = state->length;
1150 else { /* copy from output */
1151 from = put - state->offset;
1152 copy = state->length;
1154 if (copy > left) copy = left;
1156 state->length -= copy;
1160 if (state->length == 0) state->mode = LEN;
1163 if (left == 0) goto inf_leave;
1164 *put++ = (unsigned char)(state->length);
1172 strm->total_out += out;
1173 state->total += out;
1175 strm->adler = state->check =
1176 UPDATE(state->check, put - out, out);
1180 state->flags ? hold :
1182 ZSWAP32(hold)) != state->check) {
1183 strm->msg = (char *)"incorrect data check";
1188 Tracev((stderr, "inflate: check matches trailer\n"));
1191 state->mode = LENGTH;
1193 if (state->wrap && state->flags) {
1195 if (hold != (state->total & 0xffffffffUL)) {
1196 strm->msg = (char *)"incorrect length check";
1201 Tracev((stderr, "inflate: length matches trailer\n"));
1215 return Z_STREAM_ERROR;
1219 Return from inflate(), updating the total counts and the check value.
1220 If there was no progress during the inflate() call, return a buffer
1221 error. Call updatewindow() to create and/or update the window state.
1222 Note: a memory error from inflate() is non-recoverable.
1226 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
1227 (state->mode < CHECK || flush != Z_FINISH)))
1228 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
1232 in -= strm->avail_in;
1233 out -= strm->avail_out;
1234 strm->total_in += in;
1235 strm->total_out += out;
1236 state->total += out;
1237 if (state->wrap && out)
1238 strm->adler = state->check =
1239 UPDATE(state->check, strm->next_out - out, out);
1240 strm->data_type = state->bits + (state->last ? 64 : 0) +
1241 (state->mode == TYPE ? 128 : 0) +
1242 (state->mode == LEN_ || state->mode == COPY_ ? 256 : 0);
1243 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1248 int ZEXPORT inflateEnd(z_streamp strm)
1250 struct inflate_state FAR *state;
1251 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == Z_NULL)
1252 return Z_STREAM_ERROR;
1253 state = (struct inflate_state FAR *)strm->state;
1254 if (state->window != Z_NULL) ZFREE(strm, state->window);
1255 ZFREE(strm, strm->state);
1256 strm->state = Z_NULL;
1257 Tracev((stderr, "inflate: end\n"));
1261 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary, uInt *dictLength)
1263 struct inflate_state FAR *state;
1266 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1267 state = (struct inflate_state FAR *)strm->state;
1269 /* copy dictionary */
1270 if (state->whave && dictionary != Z_NULL) {
1271 zmemcpy(dictionary, state->window + state->wnext,
1272 state->whave - state->wnext);
1273 zmemcpy(dictionary + state->whave - state->wnext,
1274 state->window, state->wnext);
1276 if (dictLength != Z_NULL)
1277 *dictLength = state->whave;
1281 int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength)
1283 struct inflate_state FAR *state;
1284 unsigned long dictid;
1288 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1289 state = (struct inflate_state FAR *)strm->state;
1290 if (state->wrap != 0 && state->mode != DICT)
1291 return Z_STREAM_ERROR;
1293 /* check for correct dictionary identifier */
1294 if (state->mode == DICT) {
1295 dictid = adler32(0L, Z_NULL, 0);
1296 dictid = adler32(dictid, dictionary, dictLength);
1297 if (dictid != state->check)
1298 return Z_DATA_ERROR;
1301 /* copy dictionary to window using updatewindow(), which will amend the
1302 existing dictionary if appropriate */
1303 ret = updatewindow(strm, dictionary + dictLength, dictLength);
1308 state->havedict = 1;
1309 Tracev((stderr, "inflate: dictionary set\n"));
1313 int ZEXPORT inflateGetHeader(z_streamp strm, gz_headerp head)
1315 struct inflate_state FAR *state;
1318 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1319 state = (struct inflate_state FAR *)strm->state;
1320 if ((state->wrap & 2) == 0) return Z_STREAM_ERROR;
1322 /* save header structure */
1329 Search buf[0..len-1] for the pattern: 0, 0, 0xff, 0xff. Return when found
1330 or when out of input. When called, *have is the number of pattern bytes
1331 found in order so far, in 0..3. On return *have is updated to the new
1332 state. If on return *have equals four, then the pattern was found and the
1333 return value is how many bytes were read including the last byte of the
1334 pattern. If *have is less than four, then the pattern has not been found
1335 yet and the return value is len. In the latter case, syncsearch() can be
1336 called again with more data and the *have state. *have is initialized to
1337 zero for the first call.
1339 local unsigned syncsearch(unsigned FAR *have, const unsigned char FAR *buf, unsigned len)
1346 while (next < len && got < 4) {
1347 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
1359 int ZEXPORT inflateSync(z_streamp strm)
1361 unsigned len; /* number of bytes to look at or looked at */
1362 unsigned long in, out; /* temporary to save total_in and total_out */
1363 unsigned char buf[4]; /* to restore bit buffer to byte string */
1364 struct inflate_state FAR *state;
1366 /* check parameters */
1367 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1368 state = (struct inflate_state FAR *)strm->state;
1369 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
1371 /* if first time, start search in bit buffer */
1372 if (state->mode != SYNC) {
1374 state->hold <<= state->bits & 7;
1375 state->bits -= state->bits & 7;
1377 while (state->bits >= 8) {
1378 buf[len++] = (unsigned char)(state->hold);
1383 syncsearch(&(state->have), buf, len);
1386 /* search available input */
1387 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
1388 strm->avail_in -= len;
1389 strm->next_in += len;
1390 strm->total_in += len;
1392 /* return no joy or set up to restart inflate() on a new block */
1393 if (state->have != 4) return Z_DATA_ERROR;
1394 in = strm->total_in; out = strm->total_out;
1396 strm->total_in = in; strm->total_out = out;
1402 Returns true if inflate is currently at the end of a block generated by
1403 Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
1404 implementation to provide an additional safety check. PPP uses
1405 Z_SYNC_FLUSH but removes the length bytes of the resulting empty stored
1406 block. When decompressing, PPP checks that at the end of input packet,
1407 inflate is waiting for these length bytes.
1409 int ZEXPORT inflateSyncPoint(z_streamp strm)
1411 struct inflate_state FAR *state;
1413 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1414 state = (struct inflate_state FAR *)strm->state;
1415 return state->mode == STORED && state->bits == 0;
1418 int ZEXPORT inflateCopy(z_streamp dest, z_streamp source)
1420 struct inflate_state FAR *state;
1421 struct inflate_state FAR *copy;
1422 unsigned char FAR *window;
1426 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
1427 source->zalloc == Z_NULL || source->zfree == Z_NULL)
1428 return Z_STREAM_ERROR;
1429 state = (struct inflate_state FAR *)source->state;
1431 /* allocate space */
1432 copy = (struct inflate_state FAR *)
1433 ZALLOC(source, 1, sizeof(struct inflate_state));
1434 if (copy == Z_NULL) return Z_MEM_ERROR;
1436 if (state->window != Z_NULL) {
1437 window = (unsigned char FAR *)
1438 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
1439 if (window == Z_NULL) {
1440 ZFREE(source, copy);
1446 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
1447 zmemcpy((voidpf)copy, (voidpf)state, sizeof(struct inflate_state));
1448 if (state->lencode >= state->codes &&
1449 state->lencode <= state->codes + ENOUGH - 1) {
1450 copy->lencode = copy->codes + (state->lencode - state->codes);
1451 copy->distcode = copy->codes + (state->distcode - state->codes);
1453 copy->next = copy->codes + (state->next - state->codes);
1454 if (window != Z_NULL) {
1455 wsize = 1U << state->wbits;
1456 zmemcpy(window, state->window, wsize);
1458 copy->window = window;
1459 dest->state = (struct internal_state FAR *)copy;
1463 int ZEXPORT inflateUndermine(z_streamp strm, int subvert)
1465 struct inflate_state FAR *state = NULL;
1467 if (strm == Z_NULL || strm->state == Z_NULL)
1468 return Z_STREAM_ERROR;
1469 state = (struct inflate_state FAR *)strm->state;
1470 state->sane = !subvert;
1471 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
1475 return Z_DATA_ERROR;
1479 long ZEXPORT inflateMark(z_streamp strm)
1481 struct inflate_state FAR *state = NULL;
1483 if (strm == Z_NULL || strm->state == Z_NULL)
1485 state = (struct inflate_state FAR *)strm->state;
1486 return ((long)(state->back) << 16) +
1487 (state->mode == COPY ? state->length :
1488 (state->mode == MATCH ? state->was - state->length : 0));