Update contrib.
1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 /* inflate.cpp -- zlib decompression
6 * Copyright (C) 1995-2005 Mark Adler
7 * For conditions of distribution and use, see copyright notice in zlib.h
13 * 1.2.beta0 24 Nov 2002
14 * - First version -- complete rewrite of inflate to simplify code, avoid
15 * creation of window when not needed, minimize use of window when it is
16 * needed, make inffast.c even faster, implement gzip decoding, and to
17 * improve code readability and style over the previous zlib inflate code
19 * 1.2.beta1 25 Nov 2002
20 * - Use pointers for available input and output checking in inffast.c
21 * - Remove input and output counters in inffast.c
22 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
23 * - Remove unnecessary second byte pull from length extra in inffast.c
24 * - Unroll direct copy to three copies per loop in inffast.c
26 * 1.2.beta2 4 Dec 2002
27 * - Change external routine names to reduce potential conflicts
28 * - Correct filename to inffixed.h for fixed tables in inflate.c
29 * - Make hbuf[] unsigned char to match parameter type in inflate.c
30 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
31 * to avoid negation problem on Alphas (64 bit) in inflate.c
33 * 1.2.beta3 22 Dec 2002
34 * - Add comments on state->bits assertion in inffast.c
35 * - Add comments on op field in inftrees.h
36 * - Fix bug in reuse of allocated window after inflateReset()
37 * - Remove bit fields--back to byte structure for speed
38 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
39 * - Change post-increments to pre-increments in inflate_fast(), PPC biased?
40 * - Add compile time option, POSTINC, to use post-increments instead (Intel?)
41 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
42 * - Use local copies of stream next and avail values, as well as local bit
43 * buffer and bit count in inflate()--for speed when inflate_fast() not used
45 * 1.2.beta4 1 Jan 2003
46 * - Split ptr - 257 statements in inflate_table() to avoid compiler warnings
47 * - Move a comment on output buffer sizes from inffast.c to inflate.c
48 * - Add comments in inffast.c to introduce the inflate_fast() routine
49 * - Rearrange window copies in inflate_fast() for speed and simplification
50 * - Unroll last copy for window match in inflate_fast()
51 * - Use local copies of window variables in inflate_fast() for speed
52 * - Pull out common write == 0 case for speed in inflate_fast()
53 * - Make op and len in inflate_fast() unsigned for consistency
54 * - Add FAR to lcode and dcode declarations in inflate_fast()
55 * - Simplified bad distance check in inflate_fast()
56 * - Added inflateBackInit(), inflateBack(), and inflateBackEnd() in new
57 * source file infback.c to provide a call-back interface to inflate for
58 * programs like gzip and unzip -- uses window as output buffer to avoid
61 * 1.2.beta5 1 Jan 2003
62 * - Improved inflateBack() interface to allow the caller to provide initial
64 * - Fixed stored blocks bug in inflateBack()
66 * 1.2.beta6 4 Jan 2003
67 * - Added comments in inffast.c on effectiveness of POSTINC
68 * - Typecasting all around to reduce compiler warnings
69 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
70 * make compilers happy
71 * - Changed type of window in inflateBackInit() to unsigned char *
73 * 1.2.beta7 27 Jan 2003
74 * - Changed many types to unsigned or unsigned short to avoid warnings
75 * - Added inflateCopy() function
78 * - Changed inflateBack() interface to provide separate opaque descriptors
79 * for the in() and out() functions
80 * - Changed inflateBack() argument and in_func typedef to swap the length
81 * and buffer address return values for the input function
82 * - Check next_in and next_out for Z_NULL on entry to inflate()
84 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
98 /* function prototypes */
99 local void fixedtables OF((struct inflate_state FAR *state));
100 local int updatewindow OF((z_streamp strm, unsigned out));
102 void makefixed OF((void));
104 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
108 EXPORT_C int inflateReset_r (z_streamp strm)
110 int ZEXPORT inflateReset(strm)
112 #endif //__SYMBIAN32__
114 struct inflate_state FAR *state;
116 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
117 state = (struct inflate_state FAR *)strm->state;
118 strm->total_in = strm->total_out = state->total = 0;
120 strm->adler = 1; /* to support ill-conceived Java test suite */
124 state->dmax = 32768U;
125 state->head = Z_NULL;
131 state->lencode = state->distcode = state->next = state->codes;
132 Tracev((stderr, "inflate: reset\n"));
138 EXPORT_C int inflatePrime_r(z_streamp strm, int bits, int value)
140 int ZEXPORT inflatePrime(strm, bits, value)
144 #endif //__SYMBIAN32__
146 struct inflate_state FAR *state;
148 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
149 state = (struct inflate_state FAR *)strm->state;
150 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
151 value &= (1L << bits) - 1;
152 state->hold += value << state->bits;
158 EXPORT_C int inflateInit2__r(z_streamp strm, int windowBits,const char * version,int stream_size)
160 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
165 #endif //__SYMBIAN32__
167 struct inflate_state FAR *state;
169 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
170 stream_size != (int)(sizeof(z_stream)))
171 return Z_VERSION_ERROR;
172 if (strm == Z_NULL) return Z_STREAM_ERROR;
173 strm->msg = Z_NULL; /* in case we return an error */
174 if (strm->zalloc == (alloc_func)0) {
175 strm->zalloc = zcalloc;
176 strm->opaque = (voidpf)0;
178 if (strm->zfree == (free_func)0) strm->zfree = zcfree;
179 state = (struct inflate_state FAR *)
180 ZALLOC(strm, 1, sizeof(struct inflate_state));
181 if (state == Z_NULL) return Z_MEM_ERROR;
182 Tracev((stderr, "inflate: allocated\n"));
183 strm->state = (struct internal_state FAR *)state;
184 if (windowBits < 0) {
186 windowBits = -windowBits;
189 state->wrap = (windowBits >> 4) + 1;
191 if (windowBits < 48) windowBits &= 15;
194 if (windowBits < 8 || windowBits > 15) {
196 strm->state = Z_NULL;
197 return Z_STREAM_ERROR;
199 state->wbits = (unsigned)windowBits;
200 state->window = Z_NULL;
201 return inflateReset_r (strm);
205 EXPORT_C int inflateInit__r (z_streamp strm,const char * version,int stream_size)
207 int ZEXPORT inflateInit_(strm, version, stream_size)
211 #endif //__SYMBIAN32__
213 return inflateInit2__r(strm, DEF_WBITS, version, stream_size);
218 Return state with length and distance decoding tables and index sizes set to
219 fixed code decoding. Normally this returns fixed tables from inffixed.h.
220 If BUILDFIXED is defined, then instead this routine builds the tables the
221 first time it's called, and returns those tables the first time and
222 thereafter. This reduces the size of the code by about 2K bytes, in
223 exchange for a little execution time. However, BUILDFIXED should not be
224 used for threaded applications, since the rewriting of the tables and virgin
225 may not be thread-safe.
229 local void fixedtables(struct inflate_state FAR * state)
231 local void fixedtables(state)
232 struct inflate_state FAR *state;
233 #endif //__SYMBIAN32__
236 static int virgin = 1;
237 static code *lenfix, *distfix;
238 static code fixed[544];
240 /* build fixed huffman tables if first call (may not be thread safe) */
245 /* literal/length table */
247 while (sym < 144) state->lens[sym++] = 8;
248 while (sym < 256) state->lens[sym++] = 9;
249 while (sym < 280) state->lens[sym++] = 7;
250 while (sym < 288) state->lens[sym++] = 8;
254 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
258 while (sym < 32) state->lens[sym++] = 5;
261 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
263 /* do this just once */
266 #else /* !BUILDFIXED */
267 # include "inffixed.h"
268 #endif /* BUILDFIXED */
269 state->lencode = lenfix;
271 state->distcode = distfix;
275 #ifndef SYMBIAN_EZLIB_DEVICE
281 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
282 defines BUILDFIXED, so the tables are built on the fly. makefixed() writes
283 those tables to stdout, which would be piped to inffixed.h. A small program
284 can simply call makefixed to do this:
286 void makefixed(void);
294 Then that can be linked with zlib built with MAKEFIXED defined and run:
301 struct inflate_state state;
304 puts(" /* inffixed.h -- table for decoding fixed codes");
305 puts(" * Generated automatically by makefixed().");
308 puts(" /* WARNING: this file should *not* be used by applications.");
309 puts(" It is part of the implementation of this library and is");
310 puts(" subject to change. Applications should only use zlib.h.");
314 printf(" static const code lenfix[%u] = {", size);
317 if ((low % 7) == 0) printf("\n ");
318 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits,
319 state.lencode[low].val);
320 if (++low == size) break;
325 printf("\n static const code distfix[%u] = {", size);
328 if ((low % 6) == 0) printf("\n ");
329 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
330 state.distcode[low].val);
331 if (++low == size) break;
336 #endif /* MAKEFIXED */
338 #endif //SYMBIAN_EZLIB_DEVICE
341 Update the window with the last wsize (normally 32K) bytes written before
342 returning. If window does not exist yet, create it. This is only called
343 when a window is already in use, or when output has been written during this
344 inflate call, but the end of the deflate stream has not been reached yet.
345 It is also called to create a window for dictionary data when a dictionary
348 Providing output buffers larger than 32K to inflate() should provide a speed
349 advantage, since only the last 32K of output is copied to the sliding window
350 upon return from inflate(), and since all distances after the first 32K of
351 output will fall in the output data, making match copies simpler and faster.
352 The advantage may be dependent on the size of the processor's data caches.
356 local int updatewindow(z_streamp strm,unsigned out)
358 local int updatewindow(strm, out)
361 #endif //__SYMBIAN32__
363 struct inflate_state FAR *state;
366 state = (struct inflate_state FAR *)strm->state;
368 /* if it hasn't been done already, allocate space for the window */
369 if (state->window == Z_NULL) {
370 state->window = (unsigned char FAR *)
371 ZALLOC(strm, 1U << state->wbits,
372 sizeof(unsigned char));
373 if (state->window == Z_NULL) return 1;
376 /* if window not in use yet, initialize */
377 if (state->wsize == 0) {
378 state->wsize = 1U << state->wbits;
383 /* copy state->wsize or less output bytes into the circular window */
384 copy = out - strm->avail_out;
385 if (copy >= state->wsize) {
386 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
388 state->whave = state->wsize;
391 dist = state->wsize - state->write;
392 if (dist > copy) dist = copy;
393 zmemcpy(state->window + state->write, strm->next_out - copy, dist);
396 zmemcpy(state->window, strm->next_out - copy, copy);
398 state->whave = state->wsize;
401 state->write += dist;
402 if (state->write == state->wsize) state->write = 0;
403 if (state->whave < state->wsize) state->whave += dist;
411 /* Macros for inflate(): */
413 /* check function to use adler32() for zlib or crc32() for gzip */
415 # define UPDATE(check, buf, len) \
416 (state->flags ? crc32_r(check, buf, len) : adler32_r(check, buf, len))
418 # define UPDATE(check, buf, len) adler32_r(check, buf, len)
421 /* check macros for header crc */
423 # define CRC2(check, word) \
425 hbuf[0] = (unsigned char)(word); \
426 hbuf[1] = (unsigned char)((word) >> 8); \
427 check = crc32_r(check, hbuf, 2); \
430 # define CRC4(check, word) \
432 hbuf[0] = (unsigned char)(word); \
433 hbuf[1] = (unsigned char)((word) >> 8); \
434 hbuf[2] = (unsigned char)((word) >> 16); \
435 hbuf[3] = (unsigned char)((word) >> 24); \
436 check = crc32_r(check, hbuf, 4); \
440 /* Load registers with state in inflate() for speed */
443 put = strm->next_out; \
444 left = strm->avail_out; \
445 next = strm->next_in; \
446 have = strm->avail_in; \
447 hold = state->hold; \
448 bits = state->bits; \
451 /* Restore state from registers in inflate() */
454 strm->next_out = put; \
455 strm->avail_out = left; \
456 strm->next_in = next; \
457 strm->avail_in = have; \
458 state->hold = hold; \
459 state->bits = bits; \
462 /* Clear the input bit accumulator */
469 /* Get a byte of input into the bit accumulator, or return from inflate()
470 if there is no input available. */
473 if (have == 0) goto inf_leave; \
475 hold += (unsigned long)(*next++) << bits; \
479 /* Assure that there are at least n bits in the bit accumulator. If there is
480 not enough available input to do that, then return from inflate(). */
481 #define NEEDBITS(n) \
483 while (bits < (unsigned)(n)) \
487 /* Return the low n bits of the bit accumulator (n < 16) */
489 ((unsigned)hold & ((1U << (n)) - 1))
491 /* Remove n bits from the bit accumulator */
492 #define DROPBITS(n) \
495 bits -= (unsigned)(n); \
498 /* Remove zero to seven bits as needed to go to a byte boundary */
505 /* Reverse the bytes in a 32-bit value */
507 ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
508 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
512 inflate() uses a state machine to process as much input data and generate as
513 much output data as possible before returning. The state machine is
514 structured roughly as follows:
516 for (;;) switch (state) {
519 if (not enough input data or output space to make progress)
521 ... make progress ...
527 so when inflate() is called again, the same case is attempted again, and
528 if the appropriate resources are provided, the machine proceeds to the
529 next state. The NEEDBITS() macro is usually the way the state evaluates
530 whether it can proceed or should return. NEEDBITS() does the return if
531 the requested bits are not available. The typical use of the BITS macros
535 ... do something with BITS(n) ...
538 where NEEDBITS(n) either returns from inflate() if there isn't enough
539 input left to load n bits into the accumulator, or it continues. BITS(n)
540 gives the low n bits in the accumulator. When done, DROPBITS(n) drops
541 the low n bits off the accumulator. INITBITS() clears the accumulator
542 and sets the number of available bits to zero. BYTEBITS() discards just
543 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
544 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
546 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
547 if there is no input available. The decoding of variable length codes uses
548 PULLBYTE() directly in order to pull just enough bytes to decode the next
551 Some states loop until they get enough input, making sure that enough
552 state information is maintained to continue the loop where it left off
553 if NEEDBITS() returns in the loop. For example, want, need, and keep
554 would all have to actually be part of the saved state in case NEEDBITS()
558 while (want < need) {
560 keep[want++] = BITS(n);
566 As shown above, if the next state is also the next case, then the break
569 A state may also return if there is not enough output space available to
570 complete that state. Those states are copying stored data, writing a
571 literal byte, and copying a matching string.
573 When returning, a "goto inf_leave" is used to update the total counters,
574 update the check value, and determine whether any progress has been made
575 during that inflate() call in order to return the proper return code.
576 Progress is defined as a change in either strm->avail_in or strm->avail_out.
577 When there is a window, goto inf_leave will update the window with the last
578 output written. If a goto inf_leave occurs in the middle of decompression
579 and there is no window currently, goto inf_leave will create one and copy
580 output to the window for the next call of inflate().
582 In this implementation, the flush parameter of inflate() only affects the
583 return code (per zlib.h). inflate() always writes as much as possible to
584 strm->next_out, given the space available and the provided input--the effect
585 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
586 the allocation of and copying into a sliding window until necessary, which
587 provides the effect documented in zlib.h for Z_FINISH when the entire input
588 stream available. So the only thing the flush parameter actually does is:
589 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
590 will return Z_BUF_ERROR if it has not reached the end of the stream.
593 EXPORT_C int inflate_r (z_streamp strm,int flush)
595 int ZEXPORT inflate(strm, flush)
598 #endif //__SYMBIAN32__
600 struct inflate_state FAR *state;
601 unsigned char FAR *next; /* next input */
602 unsigned char FAR *put; /* next output */
603 unsigned have, left; /* available input and output */
604 unsigned long hold; /* bit buffer */
605 unsigned bits; /* bits in bit buffer */
606 unsigned in, out; /* save starting available input and output */
607 unsigned copy; /* number of stored or match bytes to copy */
608 unsigned char FAR *from; /* where to copy match bytes from */
610 /* Need to replace "this" variable with "current" as "this" is a reserved
611 * keyword in C++ which is prefectly fine for a c code. As this file
612 * has been changed to C++ "this" needs to be changed.
614 # define this current
615 code this; /* current decoding table entry */
616 code last; /* parent table entry */
617 unsigned len; /* length to copy for repeats, bits to drop */
618 int ret; /* return code */
620 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */
622 static const unsigned short order[19] = /* permutation of code lengths */
623 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
625 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL ||
626 (strm->next_in == Z_NULL && strm->avail_in != 0))
627 return Z_STREAM_ERROR;
629 state = (struct inflate_state FAR *)strm->state;
630 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
636 switch (state->mode) {
638 if (state->wrap == 0) {
639 state->mode = TYPEDO;
644 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */
645 state->check = crc32_r(0L, Z_NULL, 0);
646 CRC2(state->check, hold);
651 state->flags = 0; /* expect zlib header */
652 if (state->head != Z_NULL)
653 state->head->done = -1;
654 if (!(state->wrap & 1) || /* check if zlib header allowed */
658 ((BITS(8) << 8) + (hold >> 8)) % 31) {
659 strm->msg = (char *)"incorrect header check";
663 if (BITS(4) != Z_DEFLATED) {
664 strm->msg = (char *)"unknown compression method";
670 if (len > state->wbits) {
671 strm->msg = (char *)"invalid window size";
675 state->dmax = 1U << len;
676 Tracev((stderr, "inflate: zlib header ok\n"));
677 strm->adler = state->check = adler32_r(0L, Z_NULL, 0);
678 state->mode = hold & 0x200 ? DICTID : TYPE;
684 state->flags = (int)(hold);
685 if ((state->flags & 0xff) != Z_DEFLATED) {
686 strm->msg = (char *)"unknown compression method";
690 if (state->flags & 0xe000) {
691 strm->msg = (char *)"unknown header flags set";
695 if (state->head != Z_NULL)
696 state->head->text = (int)((hold >> 8) & 1);
697 if (state->flags & 0x0200) CRC2(state->check, hold);
702 if (state->head != Z_NULL)
703 state->head->time = hold;
704 if (state->flags & 0x0200) CRC4(state->check, hold);
709 if (state->head != Z_NULL) {
710 state->head->xflags = (int)(hold & 0xff);
711 state->head->os = (int)(hold >> 8);
713 if (state->flags & 0x0200) CRC2(state->check, hold);
717 if (state->flags & 0x0400) {
719 state->length = (unsigned)(hold);
720 if (state->head != Z_NULL)
721 state->head->extra_len = (unsigned)hold;
722 if (state->flags & 0x0200) CRC2(state->check, hold);
725 else if (state->head != Z_NULL)
726 state->head->extra = Z_NULL;
729 if (state->flags & 0x0400) {
730 copy = state->length;
731 if (copy > have) copy = have;
733 if (state->head != Z_NULL &&
734 state->head->extra != Z_NULL) {
735 len = state->head->extra_len - state->length;
736 // Added ignore here as next cannot be NULL
737 // a jump to inf_leave would occur first
738 // coverity [var_deref_model]
739 zmemcpy(state->head->extra + len, next,
740 len + copy > state->head->extra_max ?
741 state->head->extra_max - len : copy);
743 if (state->flags & 0x0200)
744 state->check = crc32_r(state->check, next, copy);
747 state->length -= copy;
749 if (state->length) goto inf_leave;
754 if (state->flags & 0x0800) {
755 if (have == 0) goto inf_leave;
758 len = (unsigned)(next[copy++]);
759 if (state->head != Z_NULL &&
760 state->head->name != Z_NULL &&
761 state->length < state->head->name_max)
762 state->head->name[state->length++] = len;
763 } while (len && copy < have);
764 if (state->flags & 0x0200)
765 state->check = crc32_r(state->check, next, copy);
768 if (len) goto inf_leave;
770 else if (state->head != Z_NULL)
771 state->head->name = Z_NULL;
773 state->mode = COMMENT;
775 if (state->flags & 0x1000) {
776 if (have == 0) goto inf_leave;
779 len = (unsigned)(next[copy++]);
780 if (state->head != Z_NULL &&
781 state->head->comment != Z_NULL &&
782 state->length < state->head->comm_max)
783 state->head->comment[state->length++] = len;
784 } while (len && copy < have);
785 if (state->flags & 0x0200)
786 state->check = crc32_r(state->check, next, copy);
789 if (len) goto inf_leave;
791 else if (state->head != Z_NULL)
792 state->head->comment = Z_NULL;
795 if (state->flags & 0x0200) {
797 if (hold != (state->check & 0xffff)) {
798 strm->msg = (char *)"header crc mismatch";
804 if (state->head != Z_NULL) {
805 state->head->hcrc = (int)((state->flags >> 9) & 1);
806 state->head->done = 1;
808 strm->adler = state->check = crc32_r(0L, Z_NULL, 0);
814 strm->adler = state->check = REVERSE(hold);
818 if (state->havedict == 0) {
822 strm->adler = state->check = adler32_r(0L, Z_NULL, 0);
825 if (flush == Z_BLOCK) goto inf_leave;
833 state->last = BITS(1);
836 case 0: /* stored block */
837 Tracev((stderr, "inflate: stored block%s\n",
838 state->last ? " (last)" : ""));
839 state->mode = STORED;
841 case 1: /* fixed block */
843 Tracev((stderr, "inflate: fixed codes block%s\n",
844 state->last ? " (last)" : ""));
845 state->mode = LEN; /* decode codes */
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",
872 copy = state->length;
874 if (copy > have) copy = have;
875 if (copy > left) copy = left;
876 if (copy == 0) goto inf_leave;
877 zmemcpy(put, next, copy);
882 state->length -= copy;
885 Tracev((stderr, "inflate: stored end\n"));
890 state->nlen = BITS(5) + 257;
892 state->ndist = BITS(5) + 1;
894 state->ncode = BITS(4) + 4;
896 #ifndef PKZIP_BUG_WORKAROUND
897 if (state->nlen > 286 || state->ndist > 30) {
898 strm->msg = (char *)"too many length or distance symbols";
903 Tracev((stderr, "inflate: table sizes ok\n"));
905 state->mode = LENLENS;
907 while (state->have < state->ncode) {
909 state->lens[order[state->have++]] = (unsigned short)BITS(3);
912 while (state->have < 19)
913 state->lens[order[state->have++]] = 0;
914 state->next = state->codes;
915 state->lencode = (code const FAR *)(state->next);
917 ret = inflate_table(CODES, state->lens, 19, &(state->next),
918 &(state->lenbits), state->work);
920 strm->msg = (char *)"invalid code lengths set";
924 Tracev((stderr, "inflate: code lengths ok\n"));
926 state->mode = CODELENS;
928 while (state->have < state->nlen + state->ndist) {
930 this = state->lencode[BITS(state->lenbits)];
931 if ((unsigned)(this.bits) <= bits) break;
937 state->lens[state->have++] = this.val;
940 if (this.val == 16) {
941 NEEDBITS(this.bits + 2);
943 if (state->have == 0) {
944 strm->msg = (char *)"invalid bit length repeat";
948 len = state->lens[state->have - 1];
952 else if (this.val == 17) {
953 NEEDBITS(this.bits + 3);
960 NEEDBITS(this.bits + 7);
966 if (state->have + copy > state->nlen + state->ndist) {
967 strm->msg = (char *)"invalid bit length repeat";
972 state->lens[state->have++] = (unsigned short)len;
976 /* handle error breaks in while */
977 if (state->mode == BAD) break;
979 /* build code tables */
980 state->next = state->codes;
981 state->lencode = (code const FAR *)(state->next);
983 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
984 &(state->lenbits), state->work);
986 strm->msg = (char *)"invalid literal/lengths set";
990 state->distcode = (code const FAR *)(state->next);
992 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
993 &(state->next), &(state->distbits), state->work);
995 strm->msg = (char *)"invalid distances set";
999 Tracev((stderr, "inflate: codes ok\n"));
1002 if (have >= 6 && left >= 258) {
1004 inflate_fast(strm, out);
1009 this = state->lencode[BITS(state->lenbits)];
1010 if ((unsigned)(this.bits) <= bits) break;
1013 if (this.op && (this.op & 0xf0) == 0) {
1016 this = state->lencode[last.val +
1017 (BITS(last.bits + last.op) >> last.bits)];
1018 if ((unsigned)(last.bits + this.bits) <= bits) break;
1021 DROPBITS(last.bits);
1023 DROPBITS(this.bits);
1024 state->length = (unsigned)this.val;
1025 if ((int)(this.op) == 0) {
1026 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
1027 "inflate: literal '%c'\n" :
1028 "inflate: literal 0x%02x\n", this.val));
1033 Tracevv((stderr, "inflate: end of block\n"));
1038 strm->msg = (char *)"invalid literal/length code";
1042 state->extra = (unsigned)(this.op) & 15;
1043 state->mode = LENEXT;
1046 NEEDBITS(state->extra);
1047 state->length += BITS(state->extra);
1048 DROPBITS(state->extra);
1050 Tracevv((stderr, "inflate: length %u\n", state->length));
1054 this = state->distcode[BITS(state->distbits)];
1055 if ((unsigned)(this.bits) <= bits) break;
1058 if ((this.op & 0xf0) == 0) {
1061 this = state->distcode[last.val +
1062 (BITS(last.bits + last.op) >> last.bits)];
1063 if ((unsigned)(last.bits + this.bits) <= bits) break;
1066 DROPBITS(last.bits);
1068 DROPBITS(this.bits);
1070 strm->msg = (char *)"invalid distance code";
1074 state->offset = (unsigned)this.val;
1075 state->extra = (unsigned)(this.op) & 15;
1076 state->mode = DISTEXT;
1079 NEEDBITS(state->extra);
1080 state->offset += BITS(state->extra);
1081 DROPBITS(state->extra);
1083 #ifdef INFLATE_STRICT
1084 if (state->offset > state->dmax) {
1085 strm->msg = (char *)"invalid distance too far back";
1090 if (state->offset > state->whave + out - left) {
1091 strm->msg = (char *)"invalid distance too far back";
1095 Tracevv((stderr, "inflate: distance %u\n", state->offset));
1096 state->mode = MATCH;
1098 if (left == 0) goto inf_leave;
1100 if (state->offset > copy) { /* copy from window */
1101 copy = state->offset - copy;
1102 if (copy > state->write) {
1103 copy -= state->write;
1104 from = state->window + (state->wsize - copy);
1107 from = state->window + (state->write - copy);
1108 if (copy > state->length) copy = state->length;
1110 else { /* copy from output */
1111 from = put - state->offset;
1112 copy = state->length;
1114 if (copy > left) copy = left;
1116 state->length -= copy;
1120 if (state->length == 0) state->mode = LEN;
1123 if (left == 0) goto inf_leave;
1124 *put++ = (unsigned char)(state->length);
1132 strm->total_out += out;
1133 state->total += out;
1135 strm->adler = state->check =
1136 UPDATE(state->check, put - out, out);
1140 state->flags ? hold :
1142 REVERSE(hold)) != state->check) {
1143 strm->msg = (char *)"incorrect data check";
1148 Tracev((stderr, "inflate: check matches trailer\n"));
1151 state->mode = LENGTH;
1153 if (state->wrap && state->flags) {
1155 if (hold != (state->total & 0xffffffffUL)) {
1156 strm->msg = (char *)"incorrect length check";
1161 Tracev((stderr, "inflate: length matches trailer\n"));
1175 return Z_STREAM_ERROR;
1179 Return from inflate(), updating the total counts and the check value.
1180 If there was no progress during the inflate() call, return a buffer
1181 error. Call updatewindow() to create and/or update the window state.
1182 Note: a memory error from inflate() is non-recoverable.
1186 if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
1187 if (updatewindow(strm, out)) {
1191 in -= strm->avail_in;
1192 out -= strm->avail_out;
1193 strm->total_in += in;
1194 strm->total_out += out;
1195 state->total += out;
1196 if (state->wrap && out)
1197 strm->adler = state->check =
1198 UPDATE(state->check, strm->next_out - out, out);
1199 strm->data_type = state->bits + (state->last ? 64 : 0) +
1200 (state->mode == TYPE ? 128 : 0);
1201 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
1205 #ifdef __SYMBIAN32__
1206 EXPORT_C int inflateEnd_r (z_streamp strm)
1208 int ZEXPORT inflateEnd(strm)
1210 #endif //__SYMBIAN32__
1212 struct inflate_state FAR *state;
1213 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
1214 return Z_STREAM_ERROR;
1215 state = (struct inflate_state FAR *)strm->state;
1216 if (state->window != Z_NULL) ZFREE(strm, state->window);
1217 ZFREE(strm, strm->state);
1218 strm->state = Z_NULL;
1219 Tracev((stderr, "inflate: end\n"));
1222 #ifdef __SYMBIAN32__
1223 EXPORT_C int inflateSetDictionary_r (z_streamp strm,const Bytef * dictionary,uInt dictLength)
1225 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength)
1227 const Bytef *dictionary;
1229 #endif //__SYMBIAN32__
1231 struct inflate_state FAR *state;
1235 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1236 state = (struct inflate_state FAR *)strm->state;
1237 if (state->wrap != 0 && state->mode != DICT)
1238 return Z_STREAM_ERROR;
1240 /* check for correct dictionary id */
1241 if (state->mode == DICT) {
1242 id = adler32_r(0L, Z_NULL, 0);
1243 id = adler32_r(id, dictionary, dictLength);
1244 if (id != state->check)
1245 return Z_DATA_ERROR;
1248 /* copy dictionary to window */
1249 if (updatewindow(strm, strm->avail_out)) {
1253 if (dictLength > state->wsize) {
1254 zmemcpy(state->window, dictionary + dictLength - state->wsize,
1256 state->whave = state->wsize;
1259 zmemcpy(state->window + state->wsize - dictLength, dictionary,
1261 state->whave = dictLength;
1263 state->havedict = 1;
1264 Tracev((stderr, "inflate: dictionary set\n"));
1269 #ifdef __SYMBIAN32__
1270 EXPORT_C int inflateGetHeader_r(z_streamp strm, gz_headerp head)
1272 int ZEXPORT inflateGetHeader(strm, head)
1275 #endif //__SYMBIAN32__
1277 struct inflate_state FAR *state;
1280 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1281 state = (struct inflate_state FAR *)strm->state;
1282 if ((state->wrap & 2) == 0) return Z_STREAM_ERROR;
1284 /* save header structure */
1291 Search buf[0..len-1] for the pattern: 0, 0, 0xff, 0xff. Return when found
1292 or when out of input. When called, *have is the number of pattern bytes
1293 found in order so far, in 0..3. On return *have is updated to the new
1294 state. If on return *have equals four, then the pattern was found and the
1295 return value is how many bytes were read including the last byte of the
1296 pattern. If *have is less than four, then the pattern has not been found
1297 yet and the return value is len. In the latter case, syncsearch() can be
1298 called again with more data and the *have state. *have is initialized to
1299 zero for the first call.
1302 #ifdef __SYMBIAN32__
1303 local unsigned syncsearch(unsigned FAR * have,unsigned char FAR * buf,unsigned len)
1305 local unsigned syncsearch(have, buf, len)
1307 unsigned char FAR *buf;
1309 #endif //__SYMBIAN32__
1316 while (next < len && got < 4) {
1317 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
1330 #ifdef __SYMBIAN32__
1331 EXPORT_C int inflateSync_r (z_streamp strm)
1333 int ZEXPORT inflateSync(strm)
1335 #endif //__SYMBIAN32__
1337 unsigned len; /* number of bytes to look at or looked at */
1338 unsigned long in, out; /* temporary to save total_in and total_out */
1339 unsigned char buf[4]; /* to restore bit buffer to byte string */
1340 struct inflate_state FAR *state;
1342 /* check parameters */
1343 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1344 state = (struct inflate_state FAR *)strm->state;
1345 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
1347 /* if first time, start search in bit buffer */
1348 if (state->mode != SYNC) {
1350 state->hold <<= state->bits & 7;
1351 state->bits -= state->bits & 7;
1353 while (state->bits >= 8) {
1354 buf[len++] = (unsigned char)(state->hold);
1359 syncsearch(&(state->have), buf, len);
1362 /* search available input */
1363 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
1364 strm->avail_in -= len;
1365 strm->next_in += len;
1366 strm->total_in += len;
1368 /* return no joy or set up to restart inflate() on a new block */
1369 if (state->have != 4) return Z_DATA_ERROR;
1370 in = strm->total_in; out = strm->total_out;
1371 inflateReset_r(strm);
1372 strm->total_in = in; strm->total_out = out;
1378 Returns true if inflate is currently at the end of a block generated by
1379 Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
1380 implementation to provide an additional safety check. PPP uses
1381 Z_SYNC_FLUSH but removes the length bytes of the resulting empty stored
1382 block. When decompressing, PPP checks that at the end of input packet,
1383 inflate is waiting for these length bytes.
1385 #ifdef __SYMBIAN32__
1386 EXPORT_C int inflateSyncPoint_r (z_streamp strm)
1388 int ZEXPORT inflateSyncPoint(strm)
1390 #endif //__SYMBIAN32__
1392 struct inflate_state FAR *state;
1394 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
1395 state = (struct inflate_state FAR *)strm->state;
1396 return state->mode == STORED && state->bits == 0;
1400 #ifdef __SYMBIAN32__
1401 EXPORT_C int inflateCopy_r(z_streamp dest, z_streamp source)
1403 int ZEXPORT inflateCopy(dest, source)
1406 #endif //__SYMBIAN32__
1408 struct inflate_state FAR *state;
1409 struct inflate_state FAR *copy;
1410 unsigned char FAR *window;
1414 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
1415 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
1416 return Z_STREAM_ERROR;
1417 state = (struct inflate_state FAR *)source->state;
1419 /* allocate space */
1420 copy = (struct inflate_state FAR *)
1421 ZALLOC(source, 1, sizeof(struct inflate_state));
1422 if (copy == Z_NULL) return Z_MEM_ERROR;
1424 if (state->window != Z_NULL) {
1425 window = (unsigned char FAR *)
1426 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
1427 if (window == Z_NULL) {
1428 ZFREE(source, copy);
1434 zmemcpy(dest, source, sizeof(z_stream));
1435 zmemcpy(copy, state, sizeof(struct inflate_state));
1436 if (state->lencode >= state->codes &&
1437 state->lencode <= state->codes + ENOUGH - 1) {
1438 copy->lencode = copy->codes + (state->lencode - state->codes);
1439 copy->distcode = copy->codes + (state->distcode - state->codes);
1441 copy->next = copy->codes + (state->next - state->codes);
1442 if (window != Z_NULL) {
1443 wsize = 1U << state->wbits;
1444 zmemcpy(window, state->window, wsize);
1446 copy->window = window;
1447 dest->state = (struct internal_state FAR *)copy;