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.
94 /* function prototypes */
95 local
void fixedtables
OF((struct inflate_state FAR
*state
));
96 local
int updatewindow
OF((z_streamp strm
, const unsigned char FAR
*end
,
99 void makefixed
OF((void));
101 local
unsigned syncsearch
OF((unsigned FAR
*have
, const unsigned char FAR
*buf
,
104 int ZEXPORT
inflateResetKeep(strm
)
107 struct inflate_state FAR
*state
;
109 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
110 state
= (struct inflate_state FAR
*)strm
->state
;
111 strm
->total_in
= strm
->total_out
= state
->total
= 0;
113 if (state
->wrap
) /* to support ill-conceived Java test suite */
114 strm
->adler
= state
->wrap
& 1;
118 state
->dmax
= 32768U;
119 state
->head
= Z_NULL
;
122 state
->lencode
= state
->distcode
= state
->next
= state
->codes
;
125 Tracev((stderr
, "inflate: reset\n"));
129 int ZEXPORT
inflateReset(strm
)
132 struct inflate_state FAR
*state
;
134 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
135 state
= (struct inflate_state FAR
*)strm
->state
;
139 return inflateResetKeep(strm
);
142 int ZEXPORT
inflateReset2(strm
, windowBits
)
147 struct inflate_state FAR
*state
;
150 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
151 state
= (struct inflate_state FAR
*)strm
->state
;
153 /* extract wrap request from windowBits parameter */
154 if (windowBits
< 0) {
156 windowBits
= -windowBits
;
159 wrap
= (windowBits
>> 4) + 1;
166 /* set number of window bits, free window if different */
167 if (windowBits
&& (windowBits
< 8 || windowBits
> 15))
168 return Z_STREAM_ERROR
;
169 if (state
->window
!= Z_NULL
&& state
->wbits
!= (unsigned)windowBits
) {
170 ZFREE(strm
, state
->window
);
171 state
->window
= Z_NULL
;
174 /* update state and reset the rest of it */
176 state
->wbits
= (unsigned)windowBits
;
177 return inflateReset(strm
);
180 int ZEXPORT
inflateInit2_(strm
, windowBits
, version
, stream_size
)
187 struct inflate_state FAR
*state
;
189 if (version
== Z_NULL
|| version
[0] != ZLIB_VERSION
[0] ||
190 stream_size
!= (int)(sizeof(z_stream
)))
191 return Z_VERSION_ERROR
;
192 if (strm
== Z_NULL
) return Z_STREAM_ERROR
;
193 strm
->msg
= Z_NULL
; /* in case we return an error */
194 if (strm
->zalloc
== (alloc_func
)0) {
196 return Z_STREAM_ERROR
;
198 strm
->zalloc
= zcalloc
;
199 strm
->opaque
= (voidpf
)0;
202 if (strm
->zfree
== (free_func
)0)
204 return Z_STREAM_ERROR
;
206 strm
->zfree
= zcfree
;
208 state
= (struct inflate_state FAR
*)
209 ZALLOC(strm
, 1, sizeof(struct inflate_state
));
210 if (state
== Z_NULL
) return Z_MEM_ERROR
;
211 Tracev((stderr
, "inflate: allocated\n"));
212 strm
->state
= (struct internal_state FAR
*)state
;
213 state
->window
= Z_NULL
;
214 ret
= inflateReset2(strm
, windowBits
);
217 strm
->state
= Z_NULL
;
222 int ZEXPORT
inflateInit_(strm
, version
, stream_size
)
227 return inflateInit2_(strm
, DEF_WBITS
, version
, stream_size
);
230 int ZEXPORT
inflatePrime(strm
, bits
, 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(state
)
262 struct inflate_state FAR
*state
;
265 static int virgin
= 1;
266 static code
*lenfix
, *distfix
;
267 static code fixed
[544];
269 /* build fixed huffman tables if first call (may not be thread safe) */
274 /* literal/length table */
276 while (sym
< 144) state
->lens
[sym
++] = 8;
277 while (sym
< 256) state
->lens
[sym
++] = 9;
278 while (sym
< 280) state
->lens
[sym
++] = 7;
279 while (sym
< 288) state
->lens
[sym
++] = 8;
283 inflate_table(LENS
, state
->lens
, 288, &(next
), &(bits
), state
->work
);
287 while (sym
< 32) state
->lens
[sym
++] = 5;
290 inflate_table(DISTS
, state
->lens
, 32, &(next
), &(bits
), state
->work
);
292 /* do this just once */
295 #else /* !BUILDFIXED */
296 # include "inffixed.h"
297 #endif /* BUILDFIXED */
298 state
->lencode
= lenfix
;
300 state
->distcode
= distfix
;
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
309 defines BUILDFIXED, so the tables are built on the fly. makefixed() writes
310 those tables to stdout, which would be piped to inffixed.h. A small program
311 can simply call makefixed to do this:
313 void makefixed(void);
321 Then that can be linked with zlib built with MAKEFIXED defined and run:
328 struct inflate_state state
;
331 puts(" /* inffixed.h -- table for decoding fixed codes");
332 puts(" * Generated automatically by makefixed().");
335 puts(" /* WARNING: this file should *not* be used by applications.");
336 puts(" It is part of the implementation of this library and is");
337 puts(" subject to change. Applications should only use zlib.h.");
341 printf(" static const code lenfix[%u] = {", size
);
344 if ((low
% 7) == 0) printf("\n ");
345 printf("{%u,%u,%d}", (low
& 127) == 99 ? 64 : state
.lencode
[low
].op
,
346 state
.lencode
[low
].bits
, state
.lencode
[low
].val
);
347 if (++low
== size
) break;
352 printf("\n static const code distfix[%u] = {", size
);
355 if ((low
% 6) == 0) printf("\n ");
356 printf("{%u,%u,%d}", state
.distcode
[low
].op
, state
.distcode
[low
].bits
,
357 state
.distcode
[low
].val
);
358 if (++low
== size
) break;
363 #endif /* MAKEFIXED */
366 Update the window with the last wsize (normally 32K) bytes written before
367 returning. If window does not exist yet, create it. This is only called
368 when a window is already in use, or when output has been written during this
369 inflate call, but the end of the deflate stream has not been reached yet.
370 It is also called to create a window for dictionary data when a dictionary
373 Providing output buffers larger than 32K to inflate() should provide a speed
374 advantage, since only the last 32K of output is copied to the sliding window
375 upon return from inflate(), and since all distances after the first 32K of
376 output will fall in the output data, making match copies simpler and faster.
377 The advantage may be dependent on the size of the processor's data caches.
379 local
int updatewindow(strm
, end
, copy
)
384 struct inflate_state FAR
*state
;
387 state
= (struct inflate_state FAR
*)strm
->state
;
389 /* if it hasn't been done already, allocate space for the window */
390 if (state
->window
== Z_NULL
) {
391 state
->window
= (unsigned char FAR
*)
392 ZALLOC(strm
, 1U << state
->wbits
,
393 sizeof(unsigned char));
394 if (state
->window
== Z_NULL
) return 1;
397 /* if window not in use yet, initialize */
398 if (state
->wsize
== 0) {
399 state
->wsize
= 1U << state
->wbits
;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy
>= state
->wsize
) {
406 zmemcpy(state
->window
, end
- state
->wsize
, state
->wsize
);
408 state
->whave
= state
->wsize
;
411 dist
= state
->wsize
- state
->wnext
;
412 if (dist
> copy
) dist
= copy
;
413 zmemcpy(state
->window
+ state
->wnext
, end
- copy
, dist
);
416 zmemcpy(state
->window
, end
- copy
, copy
);
418 state
->whave
= state
->wsize
;
421 state
->wnext
+= dist
;
422 if (state
->wnext
== state
->wsize
) state
->wnext
= 0;
423 if (state
->whave
< state
->wsize
) state
->whave
+= dist
;
429 /* Macros for inflate(): */
431 /* check function to use adler32() for zlib or crc32() for gzip */
433 # define UPDATE(check, buf, len) \
434 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
436 # define UPDATE(check, buf, len) adler32(check, buf, len)
439 /* check macros for header crc */
441 # define CRC2(check, word) \
443 hbuf[0] = (unsigned char)(word); \
444 hbuf[1] = (unsigned char)((word) >> 8); \
445 check = crc32(check, hbuf, 2); \
448 # define CRC4(check, word) \
450 hbuf[0] = (unsigned char)(word); \
451 hbuf[1] = (unsigned char)((word) >> 8); \
452 hbuf[2] = (unsigned char)((word) >> 16); \
453 hbuf[3] = (unsigned char)((word) >> 24); \
454 check = crc32(check, hbuf, 4); \
458 /* Load registers with state in inflate() for speed */
461 put = strm->next_out; \
462 left = strm->avail_out; \
463 next = strm->next_in; \
464 have = strm->avail_in; \
465 hold = state->hold; \
466 bits = state->bits; \
469 /* Restore state from registers in inflate() */
472 strm->next_out = put; \
473 strm->avail_out = left; \
474 strm->next_in = next; \
475 strm->avail_in = have; \
476 state->hold = hold; \
477 state->bits = bits; \
480 /* Clear the input bit accumulator */
487 /* Get a byte of input into the bit accumulator, or return from inflate()
488 if there is no input available. */
491 if (have == 0) goto inf_leave; \
493 hold += (unsigned long)(*next++) << bits; \
497 /* Assure that there are at least n bits in the bit accumulator. If there is
498 not enough available input to do that, then return from inflate(). */
499 #define NEEDBITS(n) \
501 while (bits < (unsigned)(n)) \
505 /* Return the low n bits of the bit accumulator (n < 16) */
507 ((unsigned)hold & ((1U << (n)) - 1))
509 /* Remove n bits from the bit accumulator */
510 #define DROPBITS(n) \
513 bits -= (unsigned)(n); \
516 /* Remove zero to seven bits as needed to go to a byte boundary */
524 inflate() uses a state machine to process as much input data and generate as
525 much output data as possible before returning. The state machine is
526 structured roughly as follows:
528 for (;;) switch (state) {
531 if (not enough input data or output space to make progress)
533 ... make progress ...
539 so when inflate() is called again, the same case is attempted again, and
540 if the appropriate resources are provided, the machine proceeds to the
541 next state. The NEEDBITS() macro is usually the way the state evaluates
542 whether it can proceed or should return. NEEDBITS() does the return if
543 the requested bits are not available. The typical use of the BITS macros
547 ... do something with BITS(n) ...
550 where NEEDBITS(n) either returns from inflate() if there isn't enough
551 input left to load n bits into the accumulator, or it continues. BITS(n)
552 gives the low n bits in the accumulator. When done, DROPBITS(n) drops
553 the low n bits off the accumulator. INITBITS() clears the accumulator
554 and sets the number of available bits to zero. BYTEBITS() discards just
555 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
558 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
559 if there is no input available. The decoding of variable length codes uses
560 PULLBYTE() directly in order to pull just enough bytes to decode the next
563 Some states loop until they get enough input, making sure that enough
564 state information is maintained to continue the loop where it left off
565 if NEEDBITS() returns in the loop. For example, want, need, and keep
566 would all have to actually be part of the saved state in case NEEDBITS()
570 while (want < need) {
572 keep[want++] = BITS(n);
578 As shown above, if the next state is also the next case, then the break
581 A state may also return if there is not enough output space available to
582 complete that state. Those states are copying stored data, writing a
583 literal byte, and copying a matching string.
585 When returning, a "goto inf_leave" is used to update the total counters,
586 update the check value, and determine whether any progress has been made
587 during that inflate() call in order to return the proper return code.
588 Progress is defined as a change in either strm->avail_in or strm->avail_out.
589 When there is a window, goto inf_leave will update the window with the last
590 output written. If a goto inf_leave occurs in the middle of decompression
591 and there is no window currently, goto inf_leave will create one and copy
592 output to the window for the next call of inflate().
594 In this implementation, the flush parameter of inflate() only affects the
595 return code (per zlib.h). inflate() always writes as much as possible to
596 strm->next_out, given the space available and the provided input--the effect
597 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
598 the allocation of and copying into a sliding window until necessary, which
599 provides the effect documented in zlib.h for Z_FINISH when the entire input
600 stream available. So the only thing the flush parameter actually does is:
601 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
602 will return Z_BUF_ERROR if it has not reached the end of the stream.
605 int ZEXPORT
inflate(strm
, flush
)
609 struct inflate_state FAR
*state
;
610 z_const
unsigned char FAR
*next
; /* next input */
611 unsigned char FAR
*put
; /* next output */
612 unsigned have
, left
; /* available input and output */
613 unsigned long hold
; /* bit buffer */
614 unsigned bits
; /* bits in bit buffer */
615 unsigned in
, out
; /* save starting available input and output */
616 unsigned copy
; /* number of stored or match bytes to copy */
617 unsigned char FAR
*from
; /* where to copy match bytes from */
618 code here
; /* current decoding table entry */
619 code last
; /* parent table entry */
620 unsigned len
; /* length to copy for repeats, bits to drop */
621 int ret
; /* return code */
623 unsigned char hbuf
[4]; /* buffer for gzip header crc calculation */
625 static const unsigned short order
[19] = /* permutation of code lengths */
626 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
628 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
|| strm
->next_out
== Z_NULL
||
629 (strm
->next_in
== Z_NULL
&& strm
->avail_in
!= 0))
630 return Z_STREAM_ERROR
;
632 state
= (struct inflate_state FAR
*)strm
->state
;
633 if (state
->mode
== TYPE
) state
->mode
= TYPEDO
; /* skip check */
639 switch (state
->mode
) {
641 if (state
->wrap
== 0) {
642 state
->mode
= TYPEDO
;
647 if ((state
->wrap
& 2) && hold
== 0x8b1f) { /* gzip header */
648 state
->check
= crc32(0L, Z_NULL
, 0);
649 CRC2(state
->check
, hold
);
654 state
->flags
= 0; /* expect zlib header */
655 if (state
->head
!= Z_NULL
)
656 state
->head
->done
= -1;
657 if (!(state
->wrap
& 1) || /* check if zlib header allowed */
661 ((BITS(8) << 8) + (hold
>> 8)) % 31) {
662 strm
->msg
= (char *)"incorrect header check";
666 if (BITS(4) != Z_DEFLATED
) {
667 strm
->msg
= (char *)"unknown compression method";
673 if (state
->wbits
== 0)
675 else if (len
> state
->wbits
) {
676 strm
->msg
= (char *)"invalid window size";
680 state
->dmax
= 1U << len
;
681 Tracev((stderr
, "inflate: zlib header ok\n"));
682 strm
->adler
= state
->check
= adler32(0L, Z_NULL
, 0);
683 state
->mode
= hold
& 0x200 ? DICTID
: TYPE
;
689 state
->flags
= (int)(hold
);
690 if ((state
->flags
& 0xff) != Z_DEFLATED
) {
691 strm
->msg
= (char *)"unknown compression method";
695 if (state
->flags
& 0xe000) {
696 strm
->msg
= (char *)"unknown header flags set";
700 if (state
->head
!= Z_NULL
)
701 state
->head
->text
= (int)((hold
>> 8) & 1);
702 if (state
->flags
& 0x0200) CRC2(state
->check
, hold
);
708 if (state
->head
!= Z_NULL
)
709 state
->head
->time
= hold
;
710 if (state
->flags
& 0x0200) CRC4(state
->check
, hold
);
716 if (state
->head
!= Z_NULL
) {
717 state
->head
->xflags
= (int)(hold
& 0xff);
718 state
->head
->os
= (int)(hold
>> 8);
720 if (state
->flags
& 0x0200) CRC2(state
->check
, hold
);
725 if (state
->flags
& 0x0400) {
727 state
->length
= (unsigned)(hold
);
728 if (state
->head
!= Z_NULL
)
729 state
->head
->extra_len
= (unsigned)hold
;
730 if (state
->flags
& 0x0200) CRC2(state
->check
, hold
);
733 else if (state
->head
!= Z_NULL
)
734 state
->head
->extra
= Z_NULL
;
738 if (state
->flags
& 0x0400) {
739 copy
= state
->length
;
740 if (copy
> have
) copy
= have
;
742 if (state
->head
!= Z_NULL
&&
743 state
->head
->extra
!= Z_NULL
&&
744 (len
= state
->head
->extra_len
- state
->length
) <
745 state
->head
->extra_max
) {
746 zmemcpy(state
->head
->extra
+ len
, next
,
747 len
+ copy
> state
->head
->extra_max
?
748 state
->head
->extra_max
- len
: copy
);
750 if (state
->flags
& 0x0200)
751 state
->check
= crc32(state
->check
, next
, copy
);
754 state
->length
-= copy
;
756 if (state
->length
) goto inf_leave
;
762 if (state
->flags
& 0x0800) {
763 if (have
== 0) goto inf_leave
;
766 len
= (unsigned)(next
[copy
++]);
767 if (state
->head
!= Z_NULL
&&
768 state
->head
->name
!= Z_NULL
&&
769 state
->length
< state
->head
->name_max
)
770 state
->head
->name
[state
->length
++] = len
;
771 } while (len
&& copy
< have
);
772 if (state
->flags
& 0x0200)
773 state
->check
= crc32(state
->check
, next
, copy
);
776 if (len
) goto inf_leave
;
778 else if (state
->head
!= Z_NULL
)
779 state
->head
->name
= Z_NULL
;
781 state
->mode
= COMMENT
;
784 if (state
->flags
& 0x1000) {
785 if (have
== 0) goto inf_leave
;
788 len
= (unsigned)(next
[copy
++]);
789 if (state
->head
!= Z_NULL
&&
790 state
->head
->comment
!= Z_NULL
&&
791 state
->length
< state
->head
->comm_max
)
792 state
->head
->comment
[state
->length
++] = len
;
793 } while (len
&& copy
< have
);
794 if (state
->flags
& 0x0200)
795 state
->check
= crc32(state
->check
, next
, copy
);
798 if (len
) goto inf_leave
;
800 else if (state
->head
!= Z_NULL
)
801 state
->head
->comment
= Z_NULL
;
805 if (state
->flags
& 0x0200) {
807 if (hold
!= (state
->check
& 0xffff)) {
808 strm
->msg
= (char *)"header crc mismatch";
814 if (state
->head
!= Z_NULL
) {
815 state
->head
->hcrc
= (int)((state
->flags
>> 9) & 1);
816 state
->head
->done
= 1;
818 strm
->adler
= state
->check
= crc32(0L, Z_NULL
, 0);
824 strm
->adler
= state
->check
= ZSWAP32(hold
);
829 if (state
->havedict
== 0) {
833 strm
->adler
= state
->check
= adler32(0L, Z_NULL
, 0);
837 if (flush
== Z_BLOCK
|| flush
== Z_TREES
) goto inf_leave
;
846 state
->last
= BITS(1);
849 case 0: /* stored block */
850 Tracev((stderr
, "inflate: stored block%s\n",
851 state
->last
? " (last)" : ""));
852 state
->mode
= STORED
;
854 case 1: /* fixed block */
856 Tracev((stderr
, "inflate: fixed codes block%s\n",
857 state
->last
? " (last)" : ""));
858 state
->mode
= LEN_
; /* decode codes */
859 if (flush
== Z_TREES
) {
864 case 2: /* dynamic block */
865 Tracev((stderr
, "inflate: dynamic codes block%s\n",
866 state
->last
? " (last)" : ""));
870 strm
->msg
= (char *)"invalid block type";
876 BYTEBITS(); /* go to byte boundary */
878 if ((hold
& 0xffff) != ((hold
>> 16) ^ 0xffff)) {
879 strm
->msg
= (char *)"invalid stored block lengths";
883 state
->length
= (unsigned)hold
& 0xffff;
884 Tracev((stderr
, "inflate: stored length %u\n",
888 if (flush
== Z_TREES
) goto inf_leave
;
894 copy
= state
->length
;
896 if (copy
> have
) copy
= have
;
897 if (copy
> left
) copy
= left
;
898 if (copy
== 0) goto inf_leave
;
899 zmemcpy(put
, next
, copy
);
904 state
->length
-= copy
;
907 Tracev((stderr
, "inflate: stored end\n"));
912 state
->nlen
= BITS(5) + 257;
914 state
->ndist
= BITS(5) + 1;
916 state
->ncode
= BITS(4) + 4;
918 #ifndef PKZIP_BUG_WORKAROUND
919 if (state
->nlen
> 286 || state
->ndist
> 30) {
920 strm
->msg
= (char *)"too many length or distance symbols";
925 Tracev((stderr
, "inflate: table sizes ok\n"));
927 state
->mode
= LENLENS
;
930 while (state
->have
< state
->ncode
) {
932 state
->lens
[order
[state
->have
++]] = (unsigned short)BITS(3);
935 while (state
->have
< 19)
936 state
->lens
[order
[state
->have
++]] = 0;
937 state
->next
= state
->codes
;
938 state
->lencode
= (const code FAR
*)(state
->next
);
940 ret
= inflate_table(CODES
, state
->lens
, 19, &(state
->next
),
941 &(state
->lenbits
), state
->work
);
943 strm
->msg
= (char *)"invalid code lengths set";
947 Tracev((stderr
, "inflate: code lengths ok\n"));
949 state
->mode
= CODELENS
;
952 while (state
->have
< state
->nlen
+ state
->ndist
) {
954 here
= state
->lencode
[BITS(state
->lenbits
)];
955 if ((unsigned)(here
.bits
) <= bits
) break;
960 state
->lens
[state
->have
++] = here
.val
;
963 if (here
.val
== 16) {
964 NEEDBITS(here
.bits
+ 2);
966 if (state
->have
== 0) {
967 strm
->msg
= (char *)"invalid bit length repeat";
971 len
= state
->lens
[state
->have
- 1];
975 else if (here
.val
== 17) {
976 NEEDBITS(here
.bits
+ 3);
983 NEEDBITS(here
.bits
+ 7);
989 if (state
->have
+ copy
> state
->nlen
+ state
->ndist
) {
990 strm
->msg
= (char *)"invalid bit length repeat";
995 state
->lens
[state
->have
++] = (unsigned short)len
;
999 /* handle error breaks in while */
1000 if (state
->mode
== BAD
) break;
1002 /* check for end-of-block code (better have one) */
1003 if (state
->lens
[256] == 0) {
1004 strm
->msg
= (char *)"invalid code -- missing end-of-block";
1009 /* build code tables -- note: do not change the lenbits or distbits
1010 values here (9 and 6) without reading the comments in inftrees.h
1011 concerning the ENOUGH constants, which depend on those values */
1012 state
->next
= state
->codes
;
1013 state
->lencode
= (const code FAR
*)(state
->next
);
1015 ret
= inflate_table(LENS
, state
->lens
, state
->nlen
, &(state
->next
),
1016 &(state
->lenbits
), state
->work
);
1018 strm
->msg
= (char *)"invalid literal/lengths set";
1022 state
->distcode
= (const code FAR
*)(state
->next
);
1023 state
->distbits
= 6;
1024 ret
= inflate_table(DISTS
, state
->lens
+ state
->nlen
, state
->ndist
,
1025 &(state
->next
), &(state
->distbits
), state
->work
);
1027 strm
->msg
= (char *)"invalid distances set";
1031 Tracev((stderr
, "inflate: codes ok\n"));
1033 if (flush
== Z_TREES
) goto inf_leave
;
1039 if (have
>= 6 && left
>= 258) {
1041 inflate_fast(strm
, out
);
1043 if (state
->mode
== TYPE
)
1049 here
= state
->lencode
[BITS(state
->lenbits
)];
1050 if ((unsigned)(here
.bits
) <= bits
) break;
1053 if (here
.op
&& (here
.op
& 0xf0) == 0) {
1056 here
= state
->lencode
[last
.val
+
1057 (BITS(last
.bits
+ last
.op
) >> last
.bits
)];
1058 if ((unsigned)(last
.bits
+ here
.bits
) <= bits
) break;
1061 DROPBITS(last
.bits
);
1062 state
->back
+= last
.bits
;
1064 DROPBITS(here
.bits
);
1065 state
->back
+= here
.bits
;
1066 state
->length
= (unsigned)here
.val
;
1067 if ((int)(here
.op
) == 0) {
1068 Tracevv((stderr
, here
.val
>= 0x20 && here
.val
< 0x7f ?
1069 "inflate: literal '%c'\n" :
1070 "inflate: literal 0x%02x\n", here
.val
));
1075 Tracevv((stderr
, "inflate: end of block\n"));
1081 strm
->msg
= (char *)"invalid literal/length code";
1085 state
->extra
= (unsigned)(here
.op
) & 15;
1086 state
->mode
= LENEXT
;
1090 NEEDBITS(state
->extra
);
1091 state
->length
+= BITS(state
->extra
);
1092 DROPBITS(state
->extra
);
1093 state
->back
+= state
->extra
;
1095 Tracevv((stderr
, "inflate: length %u\n", state
->length
));
1096 state
->was
= state
->length
;
1101 here
= state
->distcode
[BITS(state
->distbits
)];
1102 if ((unsigned)(here
.bits
) <= bits
) break;
1105 if ((here
.op
& 0xf0) == 0) {
1108 here
= state
->distcode
[last
.val
+
1109 (BITS(last
.bits
+ last
.op
) >> last
.bits
)];
1110 if ((unsigned)(last
.bits
+ here
.bits
) <= bits
) break;
1113 DROPBITS(last
.bits
);
1114 state
->back
+= last
.bits
;
1116 DROPBITS(here
.bits
);
1117 state
->back
+= here
.bits
;
1119 strm
->msg
= (char *)"invalid distance code";
1123 state
->offset
= (unsigned)here
.val
;
1124 state
->extra
= (unsigned)(here
.op
) & 15;
1125 state
->mode
= DISTEXT
;
1129 NEEDBITS(state
->extra
);
1130 state
->offset
+= BITS(state
->extra
);
1131 DROPBITS(state
->extra
);
1132 state
->back
+= state
->extra
;
1134 #ifdef INFLATE_STRICT
1135 if (state
->offset
> state
->dmax
) {
1136 strm
->msg
= (char *)"invalid distance too far back";
1141 Tracevv((stderr
, "inflate: distance %u\n", state
->offset
));
1142 state
->mode
= MATCH
;
1145 if (left
== 0) goto inf_leave
;
1147 if (state
->offset
> copy
) { /* copy from window */
1148 copy
= state
->offset
- copy
;
1149 if (copy
> state
->whave
) {
1151 strm
->msg
= (char *)"invalid distance too far back";
1155 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
1156 Trace((stderr
, "inflate.c too far\n"));
1157 copy
-= state
->whave
;
1158 if (copy
> state
->length
) copy
= state
->length
;
1159 if (copy
> left
) copy
= left
;
1161 state
->length
-= copy
;
1165 if (state
->length
== 0) state
->mode
= LEN
;
1169 if (copy
> state
->wnext
) {
1170 copy
-= state
->wnext
;
1171 from
= state
->window
+ (state
->wsize
- copy
);
1174 from
= state
->window
+ (state
->wnext
- copy
);
1175 if (copy
> state
->length
) copy
= state
->length
;
1177 else { /* copy from output */
1178 from
= put
- state
->offset
;
1179 copy
= state
->length
;
1181 if (copy
> left
) copy
= left
;
1183 state
->length
-= copy
;
1187 if (state
->length
== 0) state
->mode
= LEN
;
1190 if (left
== 0) goto inf_leave
;
1191 *put
++ = (unsigned char)(state
->length
);
1199 strm
->total_out
+= out
;
1200 state
->total
+= out
;
1202 strm
->adler
= state
->check
=
1203 UPDATE(state
->check
, put
- out
, out
);
1207 state
->flags
? hold
:
1209 ZSWAP32(hold
)) != state
->check
) {
1210 strm
->msg
= (char *)"incorrect data check";
1215 Tracev((stderr
, "inflate: check matches trailer\n"));
1218 state
->mode
= LENGTH
;
1221 if (state
->wrap
&& state
->flags
) {
1223 if (hold
!= (state
->total
& 0xffffffffUL
)) {
1224 strm
->msg
= (char *)"incorrect length check";
1229 Tracev((stderr
, "inflate: length matches trailer\n"));
1244 return Z_STREAM_ERROR
;
1248 Return from inflate(), updating the total counts and the check value.
1249 If there was no progress during the inflate() call, return a buffer
1250 error. Call updatewindow() to create and/or update the window state.
1251 Note: a memory error from inflate() is non-recoverable.
1255 if (state
->wsize
|| (out
!= strm
->avail_out
&& state
->mode
< BAD
&&
1256 (state
->mode
< CHECK
|| flush
!= Z_FINISH
)))
1257 if (updatewindow(strm
, strm
->next_out
, out
- strm
->avail_out
)) {
1261 in
-= strm
->avail_in
;
1262 out
-= strm
->avail_out
;
1263 strm
->total_in
+= in
;
1264 strm
->total_out
+= out
;
1265 state
->total
+= out
;
1266 if (state
->wrap
&& out
)
1267 strm
->adler
= state
->check
=
1268 UPDATE(state
->check
, strm
->next_out
- out
, out
);
1269 strm
->data_type
= state
->bits
+ (state
->last
? 64 : 0) +
1270 (state
->mode
== TYPE
? 128 : 0) +
1271 (state
->mode
== LEN_
|| state
->mode
== COPY_
? 256 : 0);
1272 if (((in
== 0 && out
== 0) || flush
== Z_FINISH
) && ret
== Z_OK
)
1277 int ZEXPORT
inflateEnd(strm
)
1280 struct inflate_state FAR
*state
;
1281 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
|| strm
->zfree
== (free_func
)0)
1282 return Z_STREAM_ERROR
;
1283 state
= (struct inflate_state FAR
*)strm
->state
;
1284 if (state
->window
!= Z_NULL
) ZFREE(strm
, state
->window
);
1285 ZFREE(strm
, strm
->state
);
1286 strm
->state
= Z_NULL
;
1287 Tracev((stderr
, "inflate: end\n"));
1291 int ZEXPORT
inflateGetDictionary(strm
, dictionary
, dictLength
)
1296 struct inflate_state FAR
*state
;
1299 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
1300 state
= (struct inflate_state FAR
*)strm
->state
;
1302 /* copy dictionary */
1303 if (state
->whave
&& dictionary
!= Z_NULL
) {
1304 zmemcpy(dictionary
, state
->window
+ state
->wnext
,
1305 state
->whave
- state
->wnext
);
1306 zmemcpy(dictionary
+ state
->whave
- state
->wnext
,
1307 state
->window
, state
->wnext
);
1309 if (dictLength
!= Z_NULL
)
1310 *dictLength
= state
->whave
;
1314 int ZEXPORT
inflateSetDictionary(strm
, dictionary
, dictLength
)
1316 const Bytef
*dictionary
;
1319 struct inflate_state FAR
*state
;
1320 unsigned long dictid
;
1324 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
1325 state
= (struct inflate_state FAR
*)strm
->state
;
1326 if (state
->wrap
!= 0 && state
->mode
!= DICT
)
1327 return Z_STREAM_ERROR
;
1329 /* check for correct dictionary identifier */
1330 if (state
->mode
== DICT
) {
1331 dictid
= adler32(0L, Z_NULL
, 0);
1332 dictid
= adler32(dictid
, dictionary
, dictLength
);
1333 if (dictid
!= state
->check
)
1334 return Z_DATA_ERROR
;
1337 /* copy dictionary to window using updatewindow(), which will amend the
1338 existing dictionary if appropriate */
1339 ret
= updatewindow(strm
, dictionary
+ dictLength
, dictLength
);
1344 state
->havedict
= 1;
1345 Tracev((stderr
, "inflate: dictionary set\n"));
1349 int ZEXPORT
inflateGetHeader(strm
, head
)
1353 struct inflate_state FAR
*state
;
1356 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
1357 state
= (struct inflate_state FAR
*)strm
->state
;
1358 if ((state
->wrap
& 2) == 0) return Z_STREAM_ERROR
;
1360 /* save header structure */
1367 Search buf[0..len-1] for the pattern: 0, 0, 0xff, 0xff. Return when found
1368 or when out of input. When called, *have is the number of pattern bytes
1369 found in order so far, in 0..3. On return *have is updated to the new
1370 state. If on return *have equals four, then the pattern was found and the
1371 return value is how many bytes were read including the last byte of the
1372 pattern. If *have is less than four, then the pattern has not been found
1373 yet and the return value is len. In the latter case, syncsearch() can be
1374 called again with more data and the *have state. *have is initialized to
1375 zero for the first call.
1377 local
unsigned syncsearch(have
, buf
, len
)
1379 const unsigned char FAR
*buf
;
1387 while (next
< len
&& got
< 4) {
1388 if ((int)(buf
[next
]) == (got
< 2 ? 0 : 0xff))
1400 int ZEXPORT
inflateSync(strm
)
1403 unsigned len
; /* number of bytes to look at or looked at */
1404 unsigned long in
, out
; /* temporary to save total_in and total_out */
1405 unsigned char buf
[4]; /* to restore bit buffer to byte string */
1406 struct inflate_state FAR
*state
;
1408 /* check parameters */
1409 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
1410 state
= (struct inflate_state FAR
*)strm
->state
;
1411 if (strm
->avail_in
== 0 && state
->bits
< 8) return Z_BUF_ERROR
;
1413 /* if first time, start search in bit buffer */
1414 if (state
->mode
!= SYNC
) {
1416 state
->hold
<<= state
->bits
& 7;
1417 state
->bits
-= state
->bits
& 7;
1419 while (state
->bits
>= 8) {
1420 buf
[len
++] = (unsigned char)(state
->hold
);
1425 syncsearch(&(state
->have
), buf
, len
);
1428 /* search available input */
1429 len
= syncsearch(&(state
->have
), strm
->next_in
, strm
->avail_in
);
1430 strm
->avail_in
-= len
;
1431 strm
->next_in
+= len
;
1432 strm
->total_in
+= len
;
1434 /* return no joy or set up to restart inflate() on a new block */
1435 if (state
->have
!= 4) return Z_DATA_ERROR
;
1436 in
= strm
->total_in
; out
= strm
->total_out
;
1438 strm
->total_in
= in
; strm
->total_out
= out
;
1444 Returns true if inflate is currently at the end of a block generated by
1445 Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
1446 implementation to provide an additional safety check. PPP uses
1447 Z_SYNC_FLUSH but removes the length bytes of the resulting empty stored
1448 block. When decompressing, PPP checks that at the end of input packet,
1449 inflate is waiting for these length bytes.
1451 int ZEXPORT
inflateSyncPoint(strm
)
1454 struct inflate_state FAR
*state
;
1456 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
1457 state
= (struct inflate_state FAR
*)strm
->state
;
1458 return state
->mode
== STORED
&& state
->bits
== 0;
1461 int ZEXPORT
inflateCopy(dest
, source
)
1465 struct inflate_state FAR
*state
;
1466 struct inflate_state FAR
*copy
;
1467 unsigned char FAR
*window
;
1471 if (dest
== Z_NULL
|| source
== Z_NULL
|| source
->state
== Z_NULL
||
1472 source
->zalloc
== (alloc_func
)0 || source
->zfree
== (free_func
)0)
1473 return Z_STREAM_ERROR
;
1474 state
= (struct inflate_state FAR
*)source
->state
;
1476 /* allocate space */
1477 copy
= (struct inflate_state FAR
*)
1478 ZALLOC(source
, 1, sizeof(struct inflate_state
));
1479 if (copy
== Z_NULL
) return Z_MEM_ERROR
;
1481 if (state
->window
!= Z_NULL
) {
1482 window
= (unsigned char FAR
*)
1483 ZALLOC(source
, 1U << state
->wbits
, sizeof(unsigned char));
1484 if (window
== Z_NULL
) {
1485 ZFREE(source
, copy
);
1491 zmemcpy((voidpf
)dest
, (voidpf
)source
, sizeof(z_stream
));
1492 zmemcpy((voidpf
)copy
, (voidpf
)state
, sizeof(struct inflate_state
));
1493 if (state
->lencode
>= state
->codes
&&
1494 state
->lencode
<= state
->codes
+ ENOUGH
- 1) {
1495 copy
->lencode
= copy
->codes
+ (state
->lencode
- state
->codes
);
1496 copy
->distcode
= copy
->codes
+ (state
->distcode
- state
->codes
);
1498 copy
->next
= copy
->codes
+ (state
->next
- state
->codes
);
1499 if (window
!= Z_NULL
) {
1500 wsize
= 1U << state
->wbits
;
1501 zmemcpy(window
, state
->window
, wsize
);
1503 copy
->window
= window
;
1504 dest
->state
= (struct internal_state FAR
*)copy
;
1508 int ZEXPORT
inflateUndermine(strm
, subvert
)
1512 struct inflate_state FAR
*state
;
1514 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
) return Z_STREAM_ERROR
;
1515 state
= (struct inflate_state FAR
*)strm
->state
;
1516 state
->sane
= !subvert
;
1517 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
1521 return Z_DATA_ERROR
;
1525 long ZEXPORT
inflateMark(strm
)
1528 struct inflate_state FAR
*state
;
1530 if (strm
== Z_NULL
|| strm
->state
== Z_NULL
)
1531 return (long)(((unsigned long)0 - 1) << 16);
1532 state
= (struct inflate_state FAR
*)strm
->state
;
1533 return (long)(((unsigned long)((long)state
->back
)) << 16) +
1534 (state
->mode
== COPY
? state
->length
:
1535 (state
->mode
== MATCH
? state
->was
- state
->length
: 0));