cannam@89
|
1 /* inflate.c -- zlib decompression
|
cannam@89
|
2 * Copyright (C) 1995-2012 Mark Adler
|
cannam@89
|
3 * For conditions of distribution and use, see copyright notice in zlib.h
|
cannam@89
|
4 */
|
cannam@89
|
5
|
cannam@89
|
6 /*
|
cannam@89
|
7 * Change history:
|
cannam@89
|
8 *
|
cannam@89
|
9 * 1.2.beta0 24 Nov 2002
|
cannam@89
|
10 * - First version -- complete rewrite of inflate to simplify code, avoid
|
cannam@89
|
11 * creation of window when not needed, minimize use of window when it is
|
cannam@89
|
12 * needed, make inffast.c even faster, implement gzip decoding, and to
|
cannam@89
|
13 * improve code readability and style over the previous zlib inflate code
|
cannam@89
|
14 *
|
cannam@89
|
15 * 1.2.beta1 25 Nov 2002
|
cannam@89
|
16 * - Use pointers for available input and output checking in inffast.c
|
cannam@89
|
17 * - Remove input and output counters in inffast.c
|
cannam@89
|
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
|
cannam@89
|
19 * - Remove unnecessary second byte pull from length extra in inffast.c
|
cannam@89
|
20 * - Unroll direct copy to three copies per loop in inffast.c
|
cannam@89
|
21 *
|
cannam@89
|
22 * 1.2.beta2 4 Dec 2002
|
cannam@89
|
23 * - Change external routine names to reduce potential conflicts
|
cannam@89
|
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
|
cannam@89
|
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
|
cannam@89
|
26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
|
cannam@89
|
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
|
cannam@89
|
28 *
|
cannam@89
|
29 * 1.2.beta3 22 Dec 2002
|
cannam@89
|
30 * - Add comments on state->bits assertion in inffast.c
|
cannam@89
|
31 * - Add comments on op field in inftrees.h
|
cannam@89
|
32 * - Fix bug in reuse of allocated window after inflateReset()
|
cannam@89
|
33 * - Remove bit fields--back to byte structure for speed
|
cannam@89
|
34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
|
cannam@89
|
35 * - Change post-increments to pre-increments in inflate_fast(), PPC biased?
|
cannam@89
|
36 * - Add compile time option, POSTINC, to use post-increments instead (Intel?)
|
cannam@89
|
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
|
cannam@89
|
38 * - Use local copies of stream next and avail values, as well as local bit
|
cannam@89
|
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
|
cannam@89
|
40 *
|
cannam@89
|
41 * 1.2.beta4 1 Jan 2003
|
cannam@89
|
42 * - Split ptr - 257 statements in inflate_table() to avoid compiler warnings
|
cannam@89
|
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
|
cannam@89
|
44 * - Add comments in inffast.c to introduce the inflate_fast() routine
|
cannam@89
|
45 * - Rearrange window copies in inflate_fast() for speed and simplification
|
cannam@89
|
46 * - Unroll last copy for window match in inflate_fast()
|
cannam@89
|
47 * - Use local copies of window variables in inflate_fast() for speed
|
cannam@89
|
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
|
cannam@89
|
49 * - Make op and len in inflate_fast() unsigned for consistency
|
cannam@89
|
50 * - Add FAR to lcode and dcode declarations in inflate_fast()
|
cannam@89
|
51 * - Simplified bad distance check in inflate_fast()
|
cannam@89
|
52 * - Added inflateBackInit(), inflateBack(), and inflateBackEnd() in new
|
cannam@89
|
53 * source file infback.c to provide a call-back interface to inflate for
|
cannam@89
|
54 * programs like gzip and unzip -- uses window as output buffer to avoid
|
cannam@89
|
55 * window copying
|
cannam@89
|
56 *
|
cannam@89
|
57 * 1.2.beta5 1 Jan 2003
|
cannam@89
|
58 * - Improved inflateBack() interface to allow the caller to provide initial
|
cannam@89
|
59 * input in strm.
|
cannam@89
|
60 * - Fixed stored blocks bug in inflateBack()
|
cannam@89
|
61 *
|
cannam@89
|
62 * 1.2.beta6 4 Jan 2003
|
cannam@89
|
63 * - Added comments in inffast.c on effectiveness of POSTINC
|
cannam@89
|
64 * - Typecasting all around to reduce compiler warnings
|
cannam@89
|
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
|
cannam@89
|
66 * make compilers happy
|
cannam@89
|
67 * - Changed type of window in inflateBackInit() to unsigned char *
|
cannam@89
|
68 *
|
cannam@89
|
69 * 1.2.beta7 27 Jan 2003
|
cannam@89
|
70 * - Changed many types to unsigned or unsigned short to avoid warnings
|
cannam@89
|
71 * - Added inflateCopy() function
|
cannam@89
|
72 *
|
cannam@89
|
73 * 1.2.0 9 Mar 2003
|
cannam@89
|
74 * - Changed inflateBack() interface to provide separate opaque descriptors
|
cannam@89
|
75 * for the in() and out() functions
|
cannam@89
|
76 * - Changed inflateBack() argument and in_func typedef to swap the length
|
cannam@89
|
77 * and buffer address return values for the input function
|
cannam@89
|
78 * - Check next_in and next_out for Z_NULL on entry to inflate()
|
cannam@89
|
79 *
|
cannam@89
|
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
|
cannam@89
|
81 */
|
cannam@89
|
82
|
cannam@89
|
83 #include "zutil.h"
|
cannam@89
|
84 #include "inftrees.h"
|
cannam@89
|
85 #include "inflate.h"
|
cannam@89
|
86 #include "inffast.h"
|
cannam@89
|
87
|
cannam@89
|
88 #ifdef MAKEFIXED
|
cannam@89
|
89 # ifndef BUILDFIXED
|
cannam@89
|
90 # define BUILDFIXED
|
cannam@89
|
91 # endif
|
cannam@89
|
92 #endif
|
cannam@89
|
93
|
cannam@89
|
94 /* function prototypes */
|
cannam@89
|
95 local void fixedtables OF((struct inflate_state FAR *state));
|
cannam@89
|
96 local int updatewindow OF((z_streamp strm, unsigned out));
|
cannam@89
|
97 #ifdef BUILDFIXED
|
cannam@89
|
98 void makefixed OF((void));
|
cannam@89
|
99 #endif
|
cannam@89
|
100 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
|
cannam@89
|
101 unsigned len));
|
cannam@89
|
102
|
cannam@89
|
103 int ZEXPORT inflateResetKeep(strm)
|
cannam@89
|
104 z_streamp strm;
|
cannam@89
|
105 {
|
cannam@89
|
106 struct inflate_state FAR *state;
|
cannam@89
|
107
|
cannam@89
|
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
109 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
110 strm->total_in = strm->total_out = state->total = 0;
|
cannam@89
|
111 strm->msg = Z_NULL;
|
cannam@89
|
112 if (state->wrap) /* to support ill-conceived Java test suite */
|
cannam@89
|
113 strm->adler = state->wrap & 1;
|
cannam@89
|
114 state->mode = HEAD;
|
cannam@89
|
115 state->last = 0;
|
cannam@89
|
116 state->havedict = 0;
|
cannam@89
|
117 state->dmax = 32768U;
|
cannam@89
|
118 state->head = Z_NULL;
|
cannam@89
|
119 state->hold = 0;
|
cannam@89
|
120 state->bits = 0;
|
cannam@89
|
121 state->lencode = state->distcode = state->next = state->codes;
|
cannam@89
|
122 state->sane = 1;
|
cannam@89
|
123 state->back = -1;
|
cannam@89
|
124 Tracev((stderr, "inflate: reset\n"));
|
cannam@89
|
125 return Z_OK;
|
cannam@89
|
126 }
|
cannam@89
|
127
|
cannam@89
|
128 int ZEXPORT inflateReset(strm)
|
cannam@89
|
129 z_streamp strm;
|
cannam@89
|
130 {
|
cannam@89
|
131 struct inflate_state FAR *state;
|
cannam@89
|
132
|
cannam@89
|
133 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
134 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
135 state->wsize = 0;
|
cannam@89
|
136 state->whave = 0;
|
cannam@89
|
137 state->wnext = 0;
|
cannam@89
|
138 return inflateResetKeep(strm);
|
cannam@89
|
139 }
|
cannam@89
|
140
|
cannam@89
|
141 int ZEXPORT inflateReset2(strm, windowBits)
|
cannam@89
|
142 z_streamp strm;
|
cannam@89
|
143 int windowBits;
|
cannam@89
|
144 {
|
cannam@89
|
145 int wrap;
|
cannam@89
|
146 struct inflate_state FAR *state;
|
cannam@89
|
147
|
cannam@89
|
148 /* get the state */
|
cannam@89
|
149 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
150 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
151
|
cannam@89
|
152 /* extract wrap request from windowBits parameter */
|
cannam@89
|
153 if (windowBits < 0) {
|
cannam@89
|
154 wrap = 0;
|
cannam@89
|
155 windowBits = -windowBits;
|
cannam@89
|
156 }
|
cannam@89
|
157 else {
|
cannam@89
|
158 wrap = (windowBits >> 4) + 1;
|
cannam@89
|
159 #ifdef GUNZIP
|
cannam@89
|
160 if (windowBits < 48)
|
cannam@89
|
161 windowBits &= 15;
|
cannam@89
|
162 #endif
|
cannam@89
|
163 }
|
cannam@89
|
164
|
cannam@89
|
165 /* set number of window bits, free window if different */
|
cannam@89
|
166 if (windowBits && (windowBits < 8 || windowBits > 15))
|
cannam@89
|
167 return Z_STREAM_ERROR;
|
cannam@89
|
168 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
|
cannam@89
|
169 ZFREE(strm, state->window);
|
cannam@89
|
170 state->window = Z_NULL;
|
cannam@89
|
171 }
|
cannam@89
|
172
|
cannam@89
|
173 /* update state and reset the rest of it */
|
cannam@89
|
174 state->wrap = wrap;
|
cannam@89
|
175 state->wbits = (unsigned)windowBits;
|
cannam@89
|
176 return inflateReset(strm);
|
cannam@89
|
177 }
|
cannam@89
|
178
|
cannam@89
|
179 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
|
cannam@89
|
180 z_streamp strm;
|
cannam@89
|
181 int windowBits;
|
cannam@89
|
182 const char *version;
|
cannam@89
|
183 int stream_size;
|
cannam@89
|
184 {
|
cannam@89
|
185 int ret;
|
cannam@89
|
186 struct inflate_state FAR *state;
|
cannam@89
|
187
|
cannam@89
|
188 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
|
cannam@89
|
189 stream_size != (int)(sizeof(z_stream)))
|
cannam@89
|
190 return Z_VERSION_ERROR;
|
cannam@89
|
191 if (strm == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
192 strm->msg = Z_NULL; /* in case we return an error */
|
cannam@89
|
193 if (strm->zalloc == (alloc_func)0) {
|
cannam@89
|
194 #ifdef Z_SOLO
|
cannam@89
|
195 return Z_STREAM_ERROR;
|
cannam@89
|
196 #else
|
cannam@89
|
197 strm->zalloc = zcalloc;
|
cannam@89
|
198 strm->opaque = (voidpf)0;
|
cannam@89
|
199 #endif
|
cannam@89
|
200 }
|
cannam@89
|
201 if (strm->zfree == (free_func)0)
|
cannam@89
|
202 #ifdef Z_SOLO
|
cannam@89
|
203 return Z_STREAM_ERROR;
|
cannam@89
|
204 #else
|
cannam@89
|
205 strm->zfree = zcfree;
|
cannam@89
|
206 #endif
|
cannam@89
|
207 state = (struct inflate_state FAR *)
|
cannam@89
|
208 ZALLOC(strm, 1, sizeof(struct inflate_state));
|
cannam@89
|
209 if (state == Z_NULL) return Z_MEM_ERROR;
|
cannam@89
|
210 Tracev((stderr, "inflate: allocated\n"));
|
cannam@89
|
211 strm->state = (struct internal_state FAR *)state;
|
cannam@89
|
212 state->window = Z_NULL;
|
cannam@89
|
213 ret = inflateReset2(strm, windowBits);
|
cannam@89
|
214 if (ret != Z_OK) {
|
cannam@89
|
215 ZFREE(strm, state);
|
cannam@89
|
216 strm->state = Z_NULL;
|
cannam@89
|
217 }
|
cannam@89
|
218 return ret;
|
cannam@89
|
219 }
|
cannam@89
|
220
|
cannam@89
|
221 int ZEXPORT inflateInit_(strm, version, stream_size)
|
cannam@89
|
222 z_streamp strm;
|
cannam@89
|
223 const char *version;
|
cannam@89
|
224 int stream_size;
|
cannam@89
|
225 {
|
cannam@89
|
226 return inflateInit2_(strm, DEF_WBITS, version, stream_size);
|
cannam@89
|
227 }
|
cannam@89
|
228
|
cannam@89
|
229 int ZEXPORT inflatePrime(strm, bits, value)
|
cannam@89
|
230 z_streamp strm;
|
cannam@89
|
231 int bits;
|
cannam@89
|
232 int value;
|
cannam@89
|
233 {
|
cannam@89
|
234 struct inflate_state FAR *state;
|
cannam@89
|
235
|
cannam@89
|
236 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
237 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
238 if (bits < 0) {
|
cannam@89
|
239 state->hold = 0;
|
cannam@89
|
240 state->bits = 0;
|
cannam@89
|
241 return Z_OK;
|
cannam@89
|
242 }
|
cannam@89
|
243 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
|
cannam@89
|
244 value &= (1L << bits) - 1;
|
cannam@89
|
245 state->hold += value << state->bits;
|
cannam@89
|
246 state->bits += bits;
|
cannam@89
|
247 return Z_OK;
|
cannam@89
|
248 }
|
cannam@89
|
249
|
cannam@89
|
250 /*
|
cannam@89
|
251 Return state with length and distance decoding tables and index sizes set to
|
cannam@89
|
252 fixed code decoding. Normally this returns fixed tables from inffixed.h.
|
cannam@89
|
253 If BUILDFIXED is defined, then instead this routine builds the tables the
|
cannam@89
|
254 first time it's called, and returns those tables the first time and
|
cannam@89
|
255 thereafter. This reduces the size of the code by about 2K bytes, in
|
cannam@89
|
256 exchange for a little execution time. However, BUILDFIXED should not be
|
cannam@89
|
257 used for threaded applications, since the rewriting of the tables and virgin
|
cannam@89
|
258 may not be thread-safe.
|
cannam@89
|
259 */
|
cannam@89
|
260 local void fixedtables(state)
|
cannam@89
|
261 struct inflate_state FAR *state;
|
cannam@89
|
262 {
|
cannam@89
|
263 #ifdef BUILDFIXED
|
cannam@89
|
264 static int virgin = 1;
|
cannam@89
|
265 static code *lenfix, *distfix;
|
cannam@89
|
266 static code fixed[544];
|
cannam@89
|
267
|
cannam@89
|
268 /* build fixed huffman tables if first call (may not be thread safe) */
|
cannam@89
|
269 if (virgin) {
|
cannam@89
|
270 unsigned sym, bits;
|
cannam@89
|
271 static code *next;
|
cannam@89
|
272
|
cannam@89
|
273 /* literal/length table */
|
cannam@89
|
274 sym = 0;
|
cannam@89
|
275 while (sym < 144) state->lens[sym++] = 8;
|
cannam@89
|
276 while (sym < 256) state->lens[sym++] = 9;
|
cannam@89
|
277 while (sym < 280) state->lens[sym++] = 7;
|
cannam@89
|
278 while (sym < 288) state->lens[sym++] = 8;
|
cannam@89
|
279 next = fixed;
|
cannam@89
|
280 lenfix = next;
|
cannam@89
|
281 bits = 9;
|
cannam@89
|
282 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
|
cannam@89
|
283
|
cannam@89
|
284 /* distance table */
|
cannam@89
|
285 sym = 0;
|
cannam@89
|
286 while (sym < 32) state->lens[sym++] = 5;
|
cannam@89
|
287 distfix = next;
|
cannam@89
|
288 bits = 5;
|
cannam@89
|
289 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
|
cannam@89
|
290
|
cannam@89
|
291 /* do this just once */
|
cannam@89
|
292 virgin = 0;
|
cannam@89
|
293 }
|
cannam@89
|
294 #else /* !BUILDFIXED */
|
cannam@89
|
295 # include "inffixed.h"
|
cannam@89
|
296 #endif /* BUILDFIXED */
|
cannam@89
|
297 state->lencode = lenfix;
|
cannam@89
|
298 state->lenbits = 9;
|
cannam@89
|
299 state->distcode = distfix;
|
cannam@89
|
300 state->distbits = 5;
|
cannam@89
|
301 }
|
cannam@89
|
302
|
cannam@89
|
303 #ifdef MAKEFIXED
|
cannam@89
|
304 #include <stdio.h>
|
cannam@89
|
305
|
cannam@89
|
306 /*
|
cannam@89
|
307 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
|
cannam@89
|
308 defines BUILDFIXED, so the tables are built on the fly. makefixed() writes
|
cannam@89
|
309 those tables to stdout, which would be piped to inffixed.h. A small program
|
cannam@89
|
310 can simply call makefixed to do this:
|
cannam@89
|
311
|
cannam@89
|
312 void makefixed(void);
|
cannam@89
|
313
|
cannam@89
|
314 int main(void)
|
cannam@89
|
315 {
|
cannam@89
|
316 makefixed();
|
cannam@89
|
317 return 0;
|
cannam@89
|
318 }
|
cannam@89
|
319
|
cannam@89
|
320 Then that can be linked with zlib built with MAKEFIXED defined and run:
|
cannam@89
|
321
|
cannam@89
|
322 a.out > inffixed.h
|
cannam@89
|
323 */
|
cannam@89
|
324 void makefixed()
|
cannam@89
|
325 {
|
cannam@89
|
326 unsigned low, size;
|
cannam@89
|
327 struct inflate_state state;
|
cannam@89
|
328
|
cannam@89
|
329 fixedtables(&state);
|
cannam@89
|
330 puts(" /* inffixed.h -- table for decoding fixed codes");
|
cannam@89
|
331 puts(" * Generated automatically by makefixed().");
|
cannam@89
|
332 puts(" */");
|
cannam@89
|
333 puts("");
|
cannam@89
|
334 puts(" /* WARNING: this file should *not* be used by applications.");
|
cannam@89
|
335 puts(" It is part of the implementation of this library and is");
|
cannam@89
|
336 puts(" subject to change. Applications should only use zlib.h.");
|
cannam@89
|
337 puts(" */");
|
cannam@89
|
338 puts("");
|
cannam@89
|
339 size = 1U << 9;
|
cannam@89
|
340 printf(" static const code lenfix[%u] = {", size);
|
cannam@89
|
341 low = 0;
|
cannam@89
|
342 for (;;) {
|
cannam@89
|
343 if ((low % 7) == 0) printf("\n ");
|
cannam@89
|
344 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op,
|
cannam@89
|
345 state.lencode[low].bits, state.lencode[low].val);
|
cannam@89
|
346 if (++low == size) break;
|
cannam@89
|
347 putchar(',');
|
cannam@89
|
348 }
|
cannam@89
|
349 puts("\n };");
|
cannam@89
|
350 size = 1U << 5;
|
cannam@89
|
351 printf("\n static const code distfix[%u] = {", size);
|
cannam@89
|
352 low = 0;
|
cannam@89
|
353 for (;;) {
|
cannam@89
|
354 if ((low % 6) == 0) printf("\n ");
|
cannam@89
|
355 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
|
cannam@89
|
356 state.distcode[low].val);
|
cannam@89
|
357 if (++low == size) break;
|
cannam@89
|
358 putchar(',');
|
cannam@89
|
359 }
|
cannam@89
|
360 puts("\n };");
|
cannam@89
|
361 }
|
cannam@89
|
362 #endif /* MAKEFIXED */
|
cannam@89
|
363
|
cannam@89
|
364 /*
|
cannam@89
|
365 Update the window with the last wsize (normally 32K) bytes written before
|
cannam@89
|
366 returning. If window does not exist yet, create it. This is only called
|
cannam@89
|
367 when a window is already in use, or when output has been written during this
|
cannam@89
|
368 inflate call, but the end of the deflate stream has not been reached yet.
|
cannam@89
|
369 It is also called to create a window for dictionary data when a dictionary
|
cannam@89
|
370 is loaded.
|
cannam@89
|
371
|
cannam@89
|
372 Providing output buffers larger than 32K to inflate() should provide a speed
|
cannam@89
|
373 advantage, since only the last 32K of output is copied to the sliding window
|
cannam@89
|
374 upon return from inflate(), and since all distances after the first 32K of
|
cannam@89
|
375 output will fall in the output data, making match copies simpler and faster.
|
cannam@89
|
376 The advantage may be dependent on the size of the processor's data caches.
|
cannam@89
|
377 */
|
cannam@89
|
378 local int updatewindow(strm, out)
|
cannam@89
|
379 z_streamp strm;
|
cannam@89
|
380 unsigned out;
|
cannam@89
|
381 {
|
cannam@89
|
382 struct inflate_state FAR *state;
|
cannam@89
|
383 unsigned copy, dist;
|
cannam@89
|
384
|
cannam@89
|
385 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
386
|
cannam@89
|
387 /* if it hasn't been done already, allocate space for the window */
|
cannam@89
|
388 if (state->window == Z_NULL) {
|
cannam@89
|
389 state->window = (unsigned char FAR *)
|
cannam@89
|
390 ZALLOC(strm, 1U << state->wbits,
|
cannam@89
|
391 sizeof(unsigned char));
|
cannam@89
|
392 if (state->window == Z_NULL) return 1;
|
cannam@89
|
393 }
|
cannam@89
|
394
|
cannam@89
|
395 /* if window not in use yet, initialize */
|
cannam@89
|
396 if (state->wsize == 0) {
|
cannam@89
|
397 state->wsize = 1U << state->wbits;
|
cannam@89
|
398 state->wnext = 0;
|
cannam@89
|
399 state->whave = 0;
|
cannam@89
|
400 }
|
cannam@89
|
401
|
cannam@89
|
402 /* copy state->wsize or less output bytes into the circular window */
|
cannam@89
|
403 copy = out - strm->avail_out;
|
cannam@89
|
404 if (copy >= state->wsize) {
|
cannam@89
|
405 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
|
cannam@89
|
406 state->wnext = 0;
|
cannam@89
|
407 state->whave = state->wsize;
|
cannam@89
|
408 }
|
cannam@89
|
409 else {
|
cannam@89
|
410 dist = state->wsize - state->wnext;
|
cannam@89
|
411 if (dist > copy) dist = copy;
|
cannam@89
|
412 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist);
|
cannam@89
|
413 copy -= dist;
|
cannam@89
|
414 if (copy) {
|
cannam@89
|
415 zmemcpy(state->window, strm->next_out - copy, copy);
|
cannam@89
|
416 state->wnext = copy;
|
cannam@89
|
417 state->whave = state->wsize;
|
cannam@89
|
418 }
|
cannam@89
|
419 else {
|
cannam@89
|
420 state->wnext += dist;
|
cannam@89
|
421 if (state->wnext == state->wsize) state->wnext = 0;
|
cannam@89
|
422 if (state->whave < state->wsize) state->whave += dist;
|
cannam@89
|
423 }
|
cannam@89
|
424 }
|
cannam@89
|
425 return 0;
|
cannam@89
|
426 }
|
cannam@89
|
427
|
cannam@89
|
428 /* Macros for inflate(): */
|
cannam@89
|
429
|
cannam@89
|
430 /* check function to use adler32() for zlib or crc32() for gzip */
|
cannam@89
|
431 #ifdef GUNZIP
|
cannam@89
|
432 # define UPDATE(check, buf, len) \
|
cannam@89
|
433 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
|
cannam@89
|
434 #else
|
cannam@89
|
435 # define UPDATE(check, buf, len) adler32(check, buf, len)
|
cannam@89
|
436 #endif
|
cannam@89
|
437
|
cannam@89
|
438 /* check macros for header crc */
|
cannam@89
|
439 #ifdef GUNZIP
|
cannam@89
|
440 # define CRC2(check, word) \
|
cannam@89
|
441 do { \
|
cannam@89
|
442 hbuf[0] = (unsigned char)(word); \
|
cannam@89
|
443 hbuf[1] = (unsigned char)((word) >> 8); \
|
cannam@89
|
444 check = crc32(check, hbuf, 2); \
|
cannam@89
|
445 } while (0)
|
cannam@89
|
446
|
cannam@89
|
447 # define CRC4(check, word) \
|
cannam@89
|
448 do { \
|
cannam@89
|
449 hbuf[0] = (unsigned char)(word); \
|
cannam@89
|
450 hbuf[1] = (unsigned char)((word) >> 8); \
|
cannam@89
|
451 hbuf[2] = (unsigned char)((word) >> 16); \
|
cannam@89
|
452 hbuf[3] = (unsigned char)((word) >> 24); \
|
cannam@89
|
453 check = crc32(check, hbuf, 4); \
|
cannam@89
|
454 } while (0)
|
cannam@89
|
455 #endif
|
cannam@89
|
456
|
cannam@89
|
457 /* Load registers with state in inflate() for speed */
|
cannam@89
|
458 #define LOAD() \
|
cannam@89
|
459 do { \
|
cannam@89
|
460 put = strm->next_out; \
|
cannam@89
|
461 left = strm->avail_out; \
|
cannam@89
|
462 next = strm->next_in; \
|
cannam@89
|
463 have = strm->avail_in; \
|
cannam@89
|
464 hold = state->hold; \
|
cannam@89
|
465 bits = state->bits; \
|
cannam@89
|
466 } while (0)
|
cannam@89
|
467
|
cannam@89
|
468 /* Restore state from registers in inflate() */
|
cannam@89
|
469 #define RESTORE() \
|
cannam@89
|
470 do { \
|
cannam@89
|
471 strm->next_out = put; \
|
cannam@89
|
472 strm->avail_out = left; \
|
cannam@89
|
473 strm->next_in = next; \
|
cannam@89
|
474 strm->avail_in = have; \
|
cannam@89
|
475 state->hold = hold; \
|
cannam@89
|
476 state->bits = bits; \
|
cannam@89
|
477 } while (0)
|
cannam@89
|
478
|
cannam@89
|
479 /* Clear the input bit accumulator */
|
cannam@89
|
480 #define INITBITS() \
|
cannam@89
|
481 do { \
|
cannam@89
|
482 hold = 0; \
|
cannam@89
|
483 bits = 0; \
|
cannam@89
|
484 } while (0)
|
cannam@89
|
485
|
cannam@89
|
486 /* Get a byte of input into the bit accumulator, or return from inflate()
|
cannam@89
|
487 if there is no input available. */
|
cannam@89
|
488 #define PULLBYTE() \
|
cannam@89
|
489 do { \
|
cannam@89
|
490 if (have == 0) goto inf_leave; \
|
cannam@89
|
491 have--; \
|
cannam@89
|
492 hold += (unsigned long)(*next++) << bits; \
|
cannam@89
|
493 bits += 8; \
|
cannam@89
|
494 } while (0)
|
cannam@89
|
495
|
cannam@89
|
496 /* Assure that there are at least n bits in the bit accumulator. If there is
|
cannam@89
|
497 not enough available input to do that, then return from inflate(). */
|
cannam@89
|
498 #define NEEDBITS(n) \
|
cannam@89
|
499 do { \
|
cannam@89
|
500 while (bits < (unsigned)(n)) \
|
cannam@89
|
501 PULLBYTE(); \
|
cannam@89
|
502 } while (0)
|
cannam@89
|
503
|
cannam@89
|
504 /* Return the low n bits of the bit accumulator (n < 16) */
|
cannam@89
|
505 #define BITS(n) \
|
cannam@89
|
506 ((unsigned)hold & ((1U << (n)) - 1))
|
cannam@89
|
507
|
cannam@89
|
508 /* Remove n bits from the bit accumulator */
|
cannam@89
|
509 #define DROPBITS(n) \
|
cannam@89
|
510 do { \
|
cannam@89
|
511 hold >>= (n); \
|
cannam@89
|
512 bits -= (unsigned)(n); \
|
cannam@89
|
513 } while (0)
|
cannam@89
|
514
|
cannam@89
|
515 /* Remove zero to seven bits as needed to go to a byte boundary */
|
cannam@89
|
516 #define BYTEBITS() \
|
cannam@89
|
517 do { \
|
cannam@89
|
518 hold >>= bits & 7; \
|
cannam@89
|
519 bits -= bits & 7; \
|
cannam@89
|
520 } while (0)
|
cannam@89
|
521
|
cannam@89
|
522 /*
|
cannam@89
|
523 inflate() uses a state machine to process as much input data and generate as
|
cannam@89
|
524 much output data as possible before returning. The state machine is
|
cannam@89
|
525 structured roughly as follows:
|
cannam@89
|
526
|
cannam@89
|
527 for (;;) switch (state) {
|
cannam@89
|
528 ...
|
cannam@89
|
529 case STATEn:
|
cannam@89
|
530 if (not enough input data or output space to make progress)
|
cannam@89
|
531 return;
|
cannam@89
|
532 ... make progress ...
|
cannam@89
|
533 state = STATEm;
|
cannam@89
|
534 break;
|
cannam@89
|
535 ...
|
cannam@89
|
536 }
|
cannam@89
|
537
|
cannam@89
|
538 so when inflate() is called again, the same case is attempted again, and
|
cannam@89
|
539 if the appropriate resources are provided, the machine proceeds to the
|
cannam@89
|
540 next state. The NEEDBITS() macro is usually the way the state evaluates
|
cannam@89
|
541 whether it can proceed or should return. NEEDBITS() does the return if
|
cannam@89
|
542 the requested bits are not available. The typical use of the BITS macros
|
cannam@89
|
543 is:
|
cannam@89
|
544
|
cannam@89
|
545 NEEDBITS(n);
|
cannam@89
|
546 ... do something with BITS(n) ...
|
cannam@89
|
547 DROPBITS(n);
|
cannam@89
|
548
|
cannam@89
|
549 where NEEDBITS(n) either returns from inflate() if there isn't enough
|
cannam@89
|
550 input left to load n bits into the accumulator, or it continues. BITS(n)
|
cannam@89
|
551 gives the low n bits in the accumulator. When done, DROPBITS(n) drops
|
cannam@89
|
552 the low n bits off the accumulator. INITBITS() clears the accumulator
|
cannam@89
|
553 and sets the number of available bits to zero. BYTEBITS() discards just
|
cannam@89
|
554 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
|
cannam@89
|
555 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
|
cannam@89
|
556
|
cannam@89
|
557 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
|
cannam@89
|
558 if there is no input available. The decoding of variable length codes uses
|
cannam@89
|
559 PULLBYTE() directly in order to pull just enough bytes to decode the next
|
cannam@89
|
560 code, and no more.
|
cannam@89
|
561
|
cannam@89
|
562 Some states loop until they get enough input, making sure that enough
|
cannam@89
|
563 state information is maintained to continue the loop where it left off
|
cannam@89
|
564 if NEEDBITS() returns in the loop. For example, want, need, and keep
|
cannam@89
|
565 would all have to actually be part of the saved state in case NEEDBITS()
|
cannam@89
|
566 returns:
|
cannam@89
|
567
|
cannam@89
|
568 case STATEw:
|
cannam@89
|
569 while (want < need) {
|
cannam@89
|
570 NEEDBITS(n);
|
cannam@89
|
571 keep[want++] = BITS(n);
|
cannam@89
|
572 DROPBITS(n);
|
cannam@89
|
573 }
|
cannam@89
|
574 state = STATEx;
|
cannam@89
|
575 case STATEx:
|
cannam@89
|
576
|
cannam@89
|
577 As shown above, if the next state is also the next case, then the break
|
cannam@89
|
578 is omitted.
|
cannam@89
|
579
|
cannam@89
|
580 A state may also return if there is not enough output space available to
|
cannam@89
|
581 complete that state. Those states are copying stored data, writing a
|
cannam@89
|
582 literal byte, and copying a matching string.
|
cannam@89
|
583
|
cannam@89
|
584 When returning, a "goto inf_leave" is used to update the total counters,
|
cannam@89
|
585 update the check value, and determine whether any progress has been made
|
cannam@89
|
586 during that inflate() call in order to return the proper return code.
|
cannam@89
|
587 Progress is defined as a change in either strm->avail_in or strm->avail_out.
|
cannam@89
|
588 When there is a window, goto inf_leave will update the window with the last
|
cannam@89
|
589 output written. If a goto inf_leave occurs in the middle of decompression
|
cannam@89
|
590 and there is no window currently, goto inf_leave will create one and copy
|
cannam@89
|
591 output to the window for the next call of inflate().
|
cannam@89
|
592
|
cannam@89
|
593 In this implementation, the flush parameter of inflate() only affects the
|
cannam@89
|
594 return code (per zlib.h). inflate() always writes as much as possible to
|
cannam@89
|
595 strm->next_out, given the space available and the provided input--the effect
|
cannam@89
|
596 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
|
cannam@89
|
597 the allocation of and copying into a sliding window until necessary, which
|
cannam@89
|
598 provides the effect documented in zlib.h for Z_FINISH when the entire input
|
cannam@89
|
599 stream available. So the only thing the flush parameter actually does is:
|
cannam@89
|
600 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
|
cannam@89
|
601 will return Z_BUF_ERROR if it has not reached the end of the stream.
|
cannam@89
|
602 */
|
cannam@89
|
603
|
cannam@89
|
604 int ZEXPORT inflate(strm, flush)
|
cannam@89
|
605 z_streamp strm;
|
cannam@89
|
606 int flush;
|
cannam@89
|
607 {
|
cannam@89
|
608 struct inflate_state FAR *state;
|
cannam@89
|
609 unsigned char FAR *next; /* next input */
|
cannam@89
|
610 unsigned char FAR *put; /* next output */
|
cannam@89
|
611 unsigned have, left; /* available input and output */
|
cannam@89
|
612 unsigned long hold; /* bit buffer */
|
cannam@89
|
613 unsigned bits; /* bits in bit buffer */
|
cannam@89
|
614 unsigned in, out; /* save starting available input and output */
|
cannam@89
|
615 unsigned copy; /* number of stored or match bytes to copy */
|
cannam@89
|
616 unsigned char FAR *from; /* where to copy match bytes from */
|
cannam@89
|
617 code here; /* current decoding table entry */
|
cannam@89
|
618 code last; /* parent table entry */
|
cannam@89
|
619 unsigned len; /* length to copy for repeats, bits to drop */
|
cannam@89
|
620 int ret; /* return code */
|
cannam@89
|
621 #ifdef GUNZIP
|
cannam@89
|
622 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */
|
cannam@89
|
623 #endif
|
cannam@89
|
624 static const unsigned short order[19] = /* permutation of code lengths */
|
cannam@89
|
625 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
|
cannam@89
|
626
|
cannam@89
|
627 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL ||
|
cannam@89
|
628 (strm->next_in == Z_NULL && strm->avail_in != 0))
|
cannam@89
|
629 return Z_STREAM_ERROR;
|
cannam@89
|
630
|
cannam@89
|
631 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
632 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
|
cannam@89
|
633 LOAD();
|
cannam@89
|
634 in = have;
|
cannam@89
|
635 out = left;
|
cannam@89
|
636 ret = Z_OK;
|
cannam@89
|
637 for (;;)
|
cannam@89
|
638 switch (state->mode) {
|
cannam@89
|
639 case HEAD:
|
cannam@89
|
640 if (state->wrap == 0) {
|
cannam@89
|
641 state->mode = TYPEDO;
|
cannam@89
|
642 break;
|
cannam@89
|
643 }
|
cannam@89
|
644 NEEDBITS(16);
|
cannam@89
|
645 #ifdef GUNZIP
|
cannam@89
|
646 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */
|
cannam@89
|
647 state->check = crc32(0L, Z_NULL, 0);
|
cannam@89
|
648 CRC2(state->check, hold);
|
cannam@89
|
649 INITBITS();
|
cannam@89
|
650 state->mode = FLAGS;
|
cannam@89
|
651 break;
|
cannam@89
|
652 }
|
cannam@89
|
653 state->flags = 0; /* expect zlib header */
|
cannam@89
|
654 if (state->head != Z_NULL)
|
cannam@89
|
655 state->head->done = -1;
|
cannam@89
|
656 if (!(state->wrap & 1) || /* check if zlib header allowed */
|
cannam@89
|
657 #else
|
cannam@89
|
658 if (
|
cannam@89
|
659 #endif
|
cannam@89
|
660 ((BITS(8) << 8) + (hold >> 8)) % 31) {
|
cannam@89
|
661 strm->msg = (char *)"incorrect header check";
|
cannam@89
|
662 state->mode = BAD;
|
cannam@89
|
663 break;
|
cannam@89
|
664 }
|
cannam@89
|
665 if (BITS(4) != Z_DEFLATED) {
|
cannam@89
|
666 strm->msg = (char *)"unknown compression method";
|
cannam@89
|
667 state->mode = BAD;
|
cannam@89
|
668 break;
|
cannam@89
|
669 }
|
cannam@89
|
670 DROPBITS(4);
|
cannam@89
|
671 len = BITS(4) + 8;
|
cannam@89
|
672 if (state->wbits == 0)
|
cannam@89
|
673 state->wbits = len;
|
cannam@89
|
674 else if (len > state->wbits) {
|
cannam@89
|
675 strm->msg = (char *)"invalid window size";
|
cannam@89
|
676 state->mode = BAD;
|
cannam@89
|
677 break;
|
cannam@89
|
678 }
|
cannam@89
|
679 state->dmax = 1U << len;
|
cannam@89
|
680 Tracev((stderr, "inflate: zlib header ok\n"));
|
cannam@89
|
681 strm->adler = state->check = adler32(0L, Z_NULL, 0);
|
cannam@89
|
682 state->mode = hold & 0x200 ? DICTID : TYPE;
|
cannam@89
|
683 INITBITS();
|
cannam@89
|
684 break;
|
cannam@89
|
685 #ifdef GUNZIP
|
cannam@89
|
686 case FLAGS:
|
cannam@89
|
687 NEEDBITS(16);
|
cannam@89
|
688 state->flags = (int)(hold);
|
cannam@89
|
689 if ((state->flags & 0xff) != Z_DEFLATED) {
|
cannam@89
|
690 strm->msg = (char *)"unknown compression method";
|
cannam@89
|
691 state->mode = BAD;
|
cannam@89
|
692 break;
|
cannam@89
|
693 }
|
cannam@89
|
694 if (state->flags & 0xe000) {
|
cannam@89
|
695 strm->msg = (char *)"unknown header flags set";
|
cannam@89
|
696 state->mode = BAD;
|
cannam@89
|
697 break;
|
cannam@89
|
698 }
|
cannam@89
|
699 if (state->head != Z_NULL)
|
cannam@89
|
700 state->head->text = (int)((hold >> 8) & 1);
|
cannam@89
|
701 if (state->flags & 0x0200) CRC2(state->check, hold);
|
cannam@89
|
702 INITBITS();
|
cannam@89
|
703 state->mode = TIME;
|
cannam@89
|
704 case TIME:
|
cannam@89
|
705 NEEDBITS(32);
|
cannam@89
|
706 if (state->head != Z_NULL)
|
cannam@89
|
707 state->head->time = hold;
|
cannam@89
|
708 if (state->flags & 0x0200) CRC4(state->check, hold);
|
cannam@89
|
709 INITBITS();
|
cannam@89
|
710 state->mode = OS;
|
cannam@89
|
711 case OS:
|
cannam@89
|
712 NEEDBITS(16);
|
cannam@89
|
713 if (state->head != Z_NULL) {
|
cannam@89
|
714 state->head->xflags = (int)(hold & 0xff);
|
cannam@89
|
715 state->head->os = (int)(hold >> 8);
|
cannam@89
|
716 }
|
cannam@89
|
717 if (state->flags & 0x0200) CRC2(state->check, hold);
|
cannam@89
|
718 INITBITS();
|
cannam@89
|
719 state->mode = EXLEN;
|
cannam@89
|
720 case EXLEN:
|
cannam@89
|
721 if (state->flags & 0x0400) {
|
cannam@89
|
722 NEEDBITS(16);
|
cannam@89
|
723 state->length = (unsigned)(hold);
|
cannam@89
|
724 if (state->head != Z_NULL)
|
cannam@89
|
725 state->head->extra_len = (unsigned)hold;
|
cannam@89
|
726 if (state->flags & 0x0200) CRC2(state->check, hold);
|
cannam@89
|
727 INITBITS();
|
cannam@89
|
728 }
|
cannam@89
|
729 else if (state->head != Z_NULL)
|
cannam@89
|
730 state->head->extra = Z_NULL;
|
cannam@89
|
731 state->mode = EXTRA;
|
cannam@89
|
732 case EXTRA:
|
cannam@89
|
733 if (state->flags & 0x0400) {
|
cannam@89
|
734 copy = state->length;
|
cannam@89
|
735 if (copy > have) copy = have;
|
cannam@89
|
736 if (copy) {
|
cannam@89
|
737 if (state->head != Z_NULL &&
|
cannam@89
|
738 state->head->extra != Z_NULL) {
|
cannam@89
|
739 len = state->head->extra_len - state->length;
|
cannam@89
|
740 zmemcpy(state->head->extra + len, next,
|
cannam@89
|
741 len + copy > state->head->extra_max ?
|
cannam@89
|
742 state->head->extra_max - len : copy);
|
cannam@89
|
743 }
|
cannam@89
|
744 if (state->flags & 0x0200)
|
cannam@89
|
745 state->check = crc32(state->check, next, copy);
|
cannam@89
|
746 have -= copy;
|
cannam@89
|
747 next += copy;
|
cannam@89
|
748 state->length -= copy;
|
cannam@89
|
749 }
|
cannam@89
|
750 if (state->length) goto inf_leave;
|
cannam@89
|
751 }
|
cannam@89
|
752 state->length = 0;
|
cannam@89
|
753 state->mode = NAME;
|
cannam@89
|
754 case NAME:
|
cannam@89
|
755 if (state->flags & 0x0800) {
|
cannam@89
|
756 if (have == 0) goto inf_leave;
|
cannam@89
|
757 copy = 0;
|
cannam@89
|
758 do {
|
cannam@89
|
759 len = (unsigned)(next[copy++]);
|
cannam@89
|
760 if (state->head != Z_NULL &&
|
cannam@89
|
761 state->head->name != Z_NULL &&
|
cannam@89
|
762 state->length < state->head->name_max)
|
cannam@89
|
763 state->head->name[state->length++] = len;
|
cannam@89
|
764 } while (len && copy < have);
|
cannam@89
|
765 if (state->flags & 0x0200)
|
cannam@89
|
766 state->check = crc32(state->check, next, copy);
|
cannam@89
|
767 have -= copy;
|
cannam@89
|
768 next += copy;
|
cannam@89
|
769 if (len) goto inf_leave;
|
cannam@89
|
770 }
|
cannam@89
|
771 else if (state->head != Z_NULL)
|
cannam@89
|
772 state->head->name = Z_NULL;
|
cannam@89
|
773 state->length = 0;
|
cannam@89
|
774 state->mode = COMMENT;
|
cannam@89
|
775 case COMMENT:
|
cannam@89
|
776 if (state->flags & 0x1000) {
|
cannam@89
|
777 if (have == 0) goto inf_leave;
|
cannam@89
|
778 copy = 0;
|
cannam@89
|
779 do {
|
cannam@89
|
780 len = (unsigned)(next[copy++]);
|
cannam@89
|
781 if (state->head != Z_NULL &&
|
cannam@89
|
782 state->head->comment != Z_NULL &&
|
cannam@89
|
783 state->length < state->head->comm_max)
|
cannam@89
|
784 state->head->comment[state->length++] = len;
|
cannam@89
|
785 } while (len && copy < have);
|
cannam@89
|
786 if (state->flags & 0x0200)
|
cannam@89
|
787 state->check = crc32(state->check, next, copy);
|
cannam@89
|
788 have -= copy;
|
cannam@89
|
789 next += copy;
|
cannam@89
|
790 if (len) goto inf_leave;
|
cannam@89
|
791 }
|
cannam@89
|
792 else if (state->head != Z_NULL)
|
cannam@89
|
793 state->head->comment = Z_NULL;
|
cannam@89
|
794 state->mode = HCRC;
|
cannam@89
|
795 case HCRC:
|
cannam@89
|
796 if (state->flags & 0x0200) {
|
cannam@89
|
797 NEEDBITS(16);
|
cannam@89
|
798 if (hold != (state->check & 0xffff)) {
|
cannam@89
|
799 strm->msg = (char *)"header crc mismatch";
|
cannam@89
|
800 state->mode = BAD;
|
cannam@89
|
801 break;
|
cannam@89
|
802 }
|
cannam@89
|
803 INITBITS();
|
cannam@89
|
804 }
|
cannam@89
|
805 if (state->head != Z_NULL) {
|
cannam@89
|
806 state->head->hcrc = (int)((state->flags >> 9) & 1);
|
cannam@89
|
807 state->head->done = 1;
|
cannam@89
|
808 }
|
cannam@89
|
809 strm->adler = state->check = crc32(0L, Z_NULL, 0);
|
cannam@89
|
810 state->mode = TYPE;
|
cannam@89
|
811 break;
|
cannam@89
|
812 #endif
|
cannam@89
|
813 case DICTID:
|
cannam@89
|
814 NEEDBITS(32);
|
cannam@89
|
815 strm->adler = state->check = ZSWAP32(hold);
|
cannam@89
|
816 INITBITS();
|
cannam@89
|
817 state->mode = DICT;
|
cannam@89
|
818 case DICT:
|
cannam@89
|
819 if (state->havedict == 0) {
|
cannam@89
|
820 RESTORE();
|
cannam@89
|
821 return Z_NEED_DICT;
|
cannam@89
|
822 }
|
cannam@89
|
823 strm->adler = state->check = adler32(0L, Z_NULL, 0);
|
cannam@89
|
824 state->mode = TYPE;
|
cannam@89
|
825 case TYPE:
|
cannam@89
|
826 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
|
cannam@89
|
827 case TYPEDO:
|
cannam@89
|
828 if (state->last) {
|
cannam@89
|
829 BYTEBITS();
|
cannam@89
|
830 state->mode = CHECK;
|
cannam@89
|
831 break;
|
cannam@89
|
832 }
|
cannam@89
|
833 NEEDBITS(3);
|
cannam@89
|
834 state->last = BITS(1);
|
cannam@89
|
835 DROPBITS(1);
|
cannam@89
|
836 switch (BITS(2)) {
|
cannam@89
|
837 case 0: /* stored block */
|
cannam@89
|
838 Tracev((stderr, "inflate: stored block%s\n",
|
cannam@89
|
839 state->last ? " (last)" : ""));
|
cannam@89
|
840 state->mode = STORED;
|
cannam@89
|
841 break;
|
cannam@89
|
842 case 1: /* fixed block */
|
cannam@89
|
843 fixedtables(state);
|
cannam@89
|
844 Tracev((stderr, "inflate: fixed codes block%s\n",
|
cannam@89
|
845 state->last ? " (last)" : ""));
|
cannam@89
|
846 state->mode = LEN_; /* decode codes */
|
cannam@89
|
847 if (flush == Z_TREES) {
|
cannam@89
|
848 DROPBITS(2);
|
cannam@89
|
849 goto inf_leave;
|
cannam@89
|
850 }
|
cannam@89
|
851 break;
|
cannam@89
|
852 case 2: /* dynamic block */
|
cannam@89
|
853 Tracev((stderr, "inflate: dynamic codes block%s\n",
|
cannam@89
|
854 state->last ? " (last)" : ""));
|
cannam@89
|
855 state->mode = TABLE;
|
cannam@89
|
856 break;
|
cannam@89
|
857 case 3:
|
cannam@89
|
858 strm->msg = (char *)"invalid block type";
|
cannam@89
|
859 state->mode = BAD;
|
cannam@89
|
860 }
|
cannam@89
|
861 DROPBITS(2);
|
cannam@89
|
862 break;
|
cannam@89
|
863 case STORED:
|
cannam@89
|
864 BYTEBITS(); /* go to byte boundary */
|
cannam@89
|
865 NEEDBITS(32);
|
cannam@89
|
866 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
|
cannam@89
|
867 strm->msg = (char *)"invalid stored block lengths";
|
cannam@89
|
868 state->mode = BAD;
|
cannam@89
|
869 break;
|
cannam@89
|
870 }
|
cannam@89
|
871 state->length = (unsigned)hold & 0xffff;
|
cannam@89
|
872 Tracev((stderr, "inflate: stored length %u\n",
|
cannam@89
|
873 state->length));
|
cannam@89
|
874 INITBITS();
|
cannam@89
|
875 state->mode = COPY_;
|
cannam@89
|
876 if (flush == Z_TREES) goto inf_leave;
|
cannam@89
|
877 case COPY_:
|
cannam@89
|
878 state->mode = COPY;
|
cannam@89
|
879 case COPY:
|
cannam@89
|
880 copy = state->length;
|
cannam@89
|
881 if (copy) {
|
cannam@89
|
882 if (copy > have) copy = have;
|
cannam@89
|
883 if (copy > left) copy = left;
|
cannam@89
|
884 if (copy == 0) goto inf_leave;
|
cannam@89
|
885 zmemcpy(put, next, copy);
|
cannam@89
|
886 have -= copy;
|
cannam@89
|
887 next += copy;
|
cannam@89
|
888 left -= copy;
|
cannam@89
|
889 put += copy;
|
cannam@89
|
890 state->length -= copy;
|
cannam@89
|
891 break;
|
cannam@89
|
892 }
|
cannam@89
|
893 Tracev((stderr, "inflate: stored end\n"));
|
cannam@89
|
894 state->mode = TYPE;
|
cannam@89
|
895 break;
|
cannam@89
|
896 case TABLE:
|
cannam@89
|
897 NEEDBITS(14);
|
cannam@89
|
898 state->nlen = BITS(5) + 257;
|
cannam@89
|
899 DROPBITS(5);
|
cannam@89
|
900 state->ndist = BITS(5) + 1;
|
cannam@89
|
901 DROPBITS(5);
|
cannam@89
|
902 state->ncode = BITS(4) + 4;
|
cannam@89
|
903 DROPBITS(4);
|
cannam@89
|
904 #ifndef PKZIP_BUG_WORKAROUND
|
cannam@89
|
905 if (state->nlen > 286 || state->ndist > 30) {
|
cannam@89
|
906 strm->msg = (char *)"too many length or distance symbols";
|
cannam@89
|
907 state->mode = BAD;
|
cannam@89
|
908 break;
|
cannam@89
|
909 }
|
cannam@89
|
910 #endif
|
cannam@89
|
911 Tracev((stderr, "inflate: table sizes ok\n"));
|
cannam@89
|
912 state->have = 0;
|
cannam@89
|
913 state->mode = LENLENS;
|
cannam@89
|
914 case LENLENS:
|
cannam@89
|
915 while (state->have < state->ncode) {
|
cannam@89
|
916 NEEDBITS(3);
|
cannam@89
|
917 state->lens[order[state->have++]] = (unsigned short)BITS(3);
|
cannam@89
|
918 DROPBITS(3);
|
cannam@89
|
919 }
|
cannam@89
|
920 while (state->have < 19)
|
cannam@89
|
921 state->lens[order[state->have++]] = 0;
|
cannam@89
|
922 state->next = state->codes;
|
cannam@89
|
923 state->lencode = (code const FAR *)(state->next);
|
cannam@89
|
924 state->lenbits = 7;
|
cannam@89
|
925 ret = inflate_table(CODES, state->lens, 19, &(state->next),
|
cannam@89
|
926 &(state->lenbits), state->work);
|
cannam@89
|
927 if (ret) {
|
cannam@89
|
928 strm->msg = (char *)"invalid code lengths set";
|
cannam@89
|
929 state->mode = BAD;
|
cannam@89
|
930 break;
|
cannam@89
|
931 }
|
cannam@89
|
932 Tracev((stderr, "inflate: code lengths ok\n"));
|
cannam@89
|
933 state->have = 0;
|
cannam@89
|
934 state->mode = CODELENS;
|
cannam@89
|
935 case CODELENS:
|
cannam@89
|
936 while (state->have < state->nlen + state->ndist) {
|
cannam@89
|
937 for (;;) {
|
cannam@89
|
938 here = state->lencode[BITS(state->lenbits)];
|
cannam@89
|
939 if ((unsigned)(here.bits) <= bits) break;
|
cannam@89
|
940 PULLBYTE();
|
cannam@89
|
941 }
|
cannam@89
|
942 if (here.val < 16) {
|
cannam@89
|
943 DROPBITS(here.bits);
|
cannam@89
|
944 state->lens[state->have++] = here.val;
|
cannam@89
|
945 }
|
cannam@89
|
946 else {
|
cannam@89
|
947 if (here.val == 16) {
|
cannam@89
|
948 NEEDBITS(here.bits + 2);
|
cannam@89
|
949 DROPBITS(here.bits);
|
cannam@89
|
950 if (state->have == 0) {
|
cannam@89
|
951 strm->msg = (char *)"invalid bit length repeat";
|
cannam@89
|
952 state->mode = BAD;
|
cannam@89
|
953 break;
|
cannam@89
|
954 }
|
cannam@89
|
955 len = state->lens[state->have - 1];
|
cannam@89
|
956 copy = 3 + BITS(2);
|
cannam@89
|
957 DROPBITS(2);
|
cannam@89
|
958 }
|
cannam@89
|
959 else if (here.val == 17) {
|
cannam@89
|
960 NEEDBITS(here.bits + 3);
|
cannam@89
|
961 DROPBITS(here.bits);
|
cannam@89
|
962 len = 0;
|
cannam@89
|
963 copy = 3 + BITS(3);
|
cannam@89
|
964 DROPBITS(3);
|
cannam@89
|
965 }
|
cannam@89
|
966 else {
|
cannam@89
|
967 NEEDBITS(here.bits + 7);
|
cannam@89
|
968 DROPBITS(here.bits);
|
cannam@89
|
969 len = 0;
|
cannam@89
|
970 copy = 11 + BITS(7);
|
cannam@89
|
971 DROPBITS(7);
|
cannam@89
|
972 }
|
cannam@89
|
973 if (state->have + copy > state->nlen + state->ndist) {
|
cannam@89
|
974 strm->msg = (char *)"invalid bit length repeat";
|
cannam@89
|
975 state->mode = BAD;
|
cannam@89
|
976 break;
|
cannam@89
|
977 }
|
cannam@89
|
978 while (copy--)
|
cannam@89
|
979 state->lens[state->have++] = (unsigned short)len;
|
cannam@89
|
980 }
|
cannam@89
|
981 }
|
cannam@89
|
982
|
cannam@89
|
983 /* handle error breaks in while */
|
cannam@89
|
984 if (state->mode == BAD) break;
|
cannam@89
|
985
|
cannam@89
|
986 /* check for end-of-block code (better have one) */
|
cannam@89
|
987 if (state->lens[256] == 0) {
|
cannam@89
|
988 strm->msg = (char *)"invalid code -- missing end-of-block";
|
cannam@89
|
989 state->mode = BAD;
|
cannam@89
|
990 break;
|
cannam@89
|
991 }
|
cannam@89
|
992
|
cannam@89
|
993 /* build code tables -- note: do not change the lenbits or distbits
|
cannam@89
|
994 values here (9 and 6) without reading the comments in inftrees.h
|
cannam@89
|
995 concerning the ENOUGH constants, which depend on those values */
|
cannam@89
|
996 state->next = state->codes;
|
cannam@89
|
997 state->lencode = (code const FAR *)(state->next);
|
cannam@89
|
998 state->lenbits = 9;
|
cannam@89
|
999 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
|
cannam@89
|
1000 &(state->lenbits), state->work);
|
cannam@89
|
1001 if (ret) {
|
cannam@89
|
1002 strm->msg = (char *)"invalid literal/lengths set";
|
cannam@89
|
1003 state->mode = BAD;
|
cannam@89
|
1004 break;
|
cannam@89
|
1005 }
|
cannam@89
|
1006 state->distcode = (code const FAR *)(state->next);
|
cannam@89
|
1007 state->distbits = 6;
|
cannam@89
|
1008 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|
cannam@89
|
1009 &(state->next), &(state->distbits), state->work);
|
cannam@89
|
1010 if (ret) {
|
cannam@89
|
1011 strm->msg = (char *)"invalid distances set";
|
cannam@89
|
1012 state->mode = BAD;
|
cannam@89
|
1013 break;
|
cannam@89
|
1014 }
|
cannam@89
|
1015 Tracev((stderr, "inflate: codes ok\n"));
|
cannam@89
|
1016 state->mode = LEN_;
|
cannam@89
|
1017 if (flush == Z_TREES) goto inf_leave;
|
cannam@89
|
1018 case LEN_:
|
cannam@89
|
1019 state->mode = LEN;
|
cannam@89
|
1020 case LEN:
|
cannam@89
|
1021 if (have >= 6 && left >= 258) {
|
cannam@89
|
1022 RESTORE();
|
cannam@89
|
1023 inflate_fast(strm, out);
|
cannam@89
|
1024 LOAD();
|
cannam@89
|
1025 if (state->mode == TYPE)
|
cannam@89
|
1026 state->back = -1;
|
cannam@89
|
1027 break;
|
cannam@89
|
1028 }
|
cannam@89
|
1029 state->back = 0;
|
cannam@89
|
1030 for (;;) {
|
cannam@89
|
1031 here = state->lencode[BITS(state->lenbits)];
|
cannam@89
|
1032 if ((unsigned)(here.bits) <= bits) break;
|
cannam@89
|
1033 PULLBYTE();
|
cannam@89
|
1034 }
|
cannam@89
|
1035 if (here.op && (here.op & 0xf0) == 0) {
|
cannam@89
|
1036 last = here;
|
cannam@89
|
1037 for (;;) {
|
cannam@89
|
1038 here = state->lencode[last.val +
|
cannam@89
|
1039 (BITS(last.bits + last.op) >> last.bits)];
|
cannam@89
|
1040 if ((unsigned)(last.bits + here.bits) <= bits) break;
|
cannam@89
|
1041 PULLBYTE();
|
cannam@89
|
1042 }
|
cannam@89
|
1043 DROPBITS(last.bits);
|
cannam@89
|
1044 state->back += last.bits;
|
cannam@89
|
1045 }
|
cannam@89
|
1046 DROPBITS(here.bits);
|
cannam@89
|
1047 state->back += here.bits;
|
cannam@89
|
1048 state->length = (unsigned)here.val;
|
cannam@89
|
1049 if ((int)(here.op) == 0) {
|
cannam@89
|
1050 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
|
cannam@89
|
1051 "inflate: literal '%c'\n" :
|
cannam@89
|
1052 "inflate: literal 0x%02x\n", here.val));
|
cannam@89
|
1053 state->mode = LIT;
|
cannam@89
|
1054 break;
|
cannam@89
|
1055 }
|
cannam@89
|
1056 if (here.op & 32) {
|
cannam@89
|
1057 Tracevv((stderr, "inflate: end of block\n"));
|
cannam@89
|
1058 state->back = -1;
|
cannam@89
|
1059 state->mode = TYPE;
|
cannam@89
|
1060 break;
|
cannam@89
|
1061 }
|
cannam@89
|
1062 if (here.op & 64) {
|
cannam@89
|
1063 strm->msg = (char *)"invalid literal/length code";
|
cannam@89
|
1064 state->mode = BAD;
|
cannam@89
|
1065 break;
|
cannam@89
|
1066 }
|
cannam@89
|
1067 state->extra = (unsigned)(here.op) & 15;
|
cannam@89
|
1068 state->mode = LENEXT;
|
cannam@89
|
1069 case LENEXT:
|
cannam@89
|
1070 if (state->extra) {
|
cannam@89
|
1071 NEEDBITS(state->extra);
|
cannam@89
|
1072 state->length += BITS(state->extra);
|
cannam@89
|
1073 DROPBITS(state->extra);
|
cannam@89
|
1074 state->back += state->extra;
|
cannam@89
|
1075 }
|
cannam@89
|
1076 Tracevv((stderr, "inflate: length %u\n", state->length));
|
cannam@89
|
1077 state->was = state->length;
|
cannam@89
|
1078 state->mode = DIST;
|
cannam@89
|
1079 case DIST:
|
cannam@89
|
1080 for (;;) {
|
cannam@89
|
1081 here = state->distcode[BITS(state->distbits)];
|
cannam@89
|
1082 if ((unsigned)(here.bits) <= bits) break;
|
cannam@89
|
1083 PULLBYTE();
|
cannam@89
|
1084 }
|
cannam@89
|
1085 if ((here.op & 0xf0) == 0) {
|
cannam@89
|
1086 last = here;
|
cannam@89
|
1087 for (;;) {
|
cannam@89
|
1088 here = state->distcode[last.val +
|
cannam@89
|
1089 (BITS(last.bits + last.op) >> last.bits)];
|
cannam@89
|
1090 if ((unsigned)(last.bits + here.bits) <= bits) break;
|
cannam@89
|
1091 PULLBYTE();
|
cannam@89
|
1092 }
|
cannam@89
|
1093 DROPBITS(last.bits);
|
cannam@89
|
1094 state->back += last.bits;
|
cannam@89
|
1095 }
|
cannam@89
|
1096 DROPBITS(here.bits);
|
cannam@89
|
1097 state->back += here.bits;
|
cannam@89
|
1098 if (here.op & 64) {
|
cannam@89
|
1099 strm->msg = (char *)"invalid distance code";
|
cannam@89
|
1100 state->mode = BAD;
|
cannam@89
|
1101 break;
|
cannam@89
|
1102 }
|
cannam@89
|
1103 state->offset = (unsigned)here.val;
|
cannam@89
|
1104 state->extra = (unsigned)(here.op) & 15;
|
cannam@89
|
1105 state->mode = DISTEXT;
|
cannam@89
|
1106 case DISTEXT:
|
cannam@89
|
1107 if (state->extra) {
|
cannam@89
|
1108 NEEDBITS(state->extra);
|
cannam@89
|
1109 state->offset += BITS(state->extra);
|
cannam@89
|
1110 DROPBITS(state->extra);
|
cannam@89
|
1111 state->back += state->extra;
|
cannam@89
|
1112 }
|
cannam@89
|
1113 #ifdef INFLATE_STRICT
|
cannam@89
|
1114 if (state->offset > state->dmax) {
|
cannam@89
|
1115 strm->msg = (char *)"invalid distance too far back";
|
cannam@89
|
1116 state->mode = BAD;
|
cannam@89
|
1117 break;
|
cannam@89
|
1118 }
|
cannam@89
|
1119 #endif
|
cannam@89
|
1120 Tracevv((stderr, "inflate: distance %u\n", state->offset));
|
cannam@89
|
1121 state->mode = MATCH;
|
cannam@89
|
1122 case MATCH:
|
cannam@89
|
1123 if (left == 0) goto inf_leave;
|
cannam@89
|
1124 copy = out - left;
|
cannam@89
|
1125 if (state->offset > copy) { /* copy from window */
|
cannam@89
|
1126 copy = state->offset - copy;
|
cannam@89
|
1127 if (copy > state->whave) {
|
cannam@89
|
1128 if (state->sane) {
|
cannam@89
|
1129 strm->msg = (char *)"invalid distance too far back";
|
cannam@89
|
1130 state->mode = BAD;
|
cannam@89
|
1131 break;
|
cannam@89
|
1132 }
|
cannam@89
|
1133 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
|
cannam@89
|
1134 Trace((stderr, "inflate.c too far\n"));
|
cannam@89
|
1135 copy -= state->whave;
|
cannam@89
|
1136 if (copy > state->length) copy = state->length;
|
cannam@89
|
1137 if (copy > left) copy = left;
|
cannam@89
|
1138 left -= copy;
|
cannam@89
|
1139 state->length -= copy;
|
cannam@89
|
1140 do {
|
cannam@89
|
1141 *put++ = 0;
|
cannam@89
|
1142 } while (--copy);
|
cannam@89
|
1143 if (state->length == 0) state->mode = LEN;
|
cannam@89
|
1144 break;
|
cannam@89
|
1145 #endif
|
cannam@89
|
1146 }
|
cannam@89
|
1147 if (copy > state->wnext) {
|
cannam@89
|
1148 copy -= state->wnext;
|
cannam@89
|
1149 from = state->window + (state->wsize - copy);
|
cannam@89
|
1150 }
|
cannam@89
|
1151 else
|
cannam@89
|
1152 from = state->window + (state->wnext - copy);
|
cannam@89
|
1153 if (copy > state->length) copy = state->length;
|
cannam@89
|
1154 }
|
cannam@89
|
1155 else { /* copy from output */
|
cannam@89
|
1156 from = put - state->offset;
|
cannam@89
|
1157 copy = state->length;
|
cannam@89
|
1158 }
|
cannam@89
|
1159 if (copy > left) copy = left;
|
cannam@89
|
1160 left -= copy;
|
cannam@89
|
1161 state->length -= copy;
|
cannam@89
|
1162 do {
|
cannam@89
|
1163 *put++ = *from++;
|
cannam@89
|
1164 } while (--copy);
|
cannam@89
|
1165 if (state->length == 0) state->mode = LEN;
|
cannam@89
|
1166 break;
|
cannam@89
|
1167 case LIT:
|
cannam@89
|
1168 if (left == 0) goto inf_leave;
|
cannam@89
|
1169 *put++ = (unsigned char)(state->length);
|
cannam@89
|
1170 left--;
|
cannam@89
|
1171 state->mode = LEN;
|
cannam@89
|
1172 break;
|
cannam@89
|
1173 case CHECK:
|
cannam@89
|
1174 if (state->wrap) {
|
cannam@89
|
1175 NEEDBITS(32);
|
cannam@89
|
1176 out -= left;
|
cannam@89
|
1177 strm->total_out += out;
|
cannam@89
|
1178 state->total += out;
|
cannam@89
|
1179 if (out)
|
cannam@89
|
1180 strm->adler = state->check =
|
cannam@89
|
1181 UPDATE(state->check, put - out, out);
|
cannam@89
|
1182 out = left;
|
cannam@89
|
1183 if ((
|
cannam@89
|
1184 #ifdef GUNZIP
|
cannam@89
|
1185 state->flags ? hold :
|
cannam@89
|
1186 #endif
|
cannam@89
|
1187 ZSWAP32(hold)) != state->check) {
|
cannam@89
|
1188 strm->msg = (char *)"incorrect data check";
|
cannam@89
|
1189 state->mode = BAD;
|
cannam@89
|
1190 break;
|
cannam@89
|
1191 }
|
cannam@89
|
1192 INITBITS();
|
cannam@89
|
1193 Tracev((stderr, "inflate: check matches trailer\n"));
|
cannam@89
|
1194 }
|
cannam@89
|
1195 #ifdef GUNZIP
|
cannam@89
|
1196 state->mode = LENGTH;
|
cannam@89
|
1197 case LENGTH:
|
cannam@89
|
1198 if (state->wrap && state->flags) {
|
cannam@89
|
1199 NEEDBITS(32);
|
cannam@89
|
1200 if (hold != (state->total & 0xffffffffUL)) {
|
cannam@89
|
1201 strm->msg = (char *)"incorrect length check";
|
cannam@89
|
1202 state->mode = BAD;
|
cannam@89
|
1203 break;
|
cannam@89
|
1204 }
|
cannam@89
|
1205 INITBITS();
|
cannam@89
|
1206 Tracev((stderr, "inflate: length matches trailer\n"));
|
cannam@89
|
1207 }
|
cannam@89
|
1208 #endif
|
cannam@89
|
1209 state->mode = DONE;
|
cannam@89
|
1210 case DONE:
|
cannam@89
|
1211 ret = Z_STREAM_END;
|
cannam@89
|
1212 goto inf_leave;
|
cannam@89
|
1213 case BAD:
|
cannam@89
|
1214 ret = Z_DATA_ERROR;
|
cannam@89
|
1215 goto inf_leave;
|
cannam@89
|
1216 case MEM:
|
cannam@89
|
1217 return Z_MEM_ERROR;
|
cannam@89
|
1218 case SYNC:
|
cannam@89
|
1219 default:
|
cannam@89
|
1220 return Z_STREAM_ERROR;
|
cannam@89
|
1221 }
|
cannam@89
|
1222
|
cannam@89
|
1223 /*
|
cannam@89
|
1224 Return from inflate(), updating the total counts and the check value.
|
cannam@89
|
1225 If there was no progress during the inflate() call, return a buffer
|
cannam@89
|
1226 error. Call updatewindow() to create and/or update the window state.
|
cannam@89
|
1227 Note: a memory error from inflate() is non-recoverable.
|
cannam@89
|
1228 */
|
cannam@89
|
1229 inf_leave:
|
cannam@89
|
1230 RESTORE();
|
cannam@89
|
1231 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
|
cannam@89
|
1232 (state->mode < CHECK || flush != Z_FINISH)))
|
cannam@89
|
1233 if (updatewindow(strm, out)) {
|
cannam@89
|
1234 state->mode = MEM;
|
cannam@89
|
1235 return Z_MEM_ERROR;
|
cannam@89
|
1236 }
|
cannam@89
|
1237 in -= strm->avail_in;
|
cannam@89
|
1238 out -= strm->avail_out;
|
cannam@89
|
1239 strm->total_in += in;
|
cannam@89
|
1240 strm->total_out += out;
|
cannam@89
|
1241 state->total += out;
|
cannam@89
|
1242 if (state->wrap && out)
|
cannam@89
|
1243 strm->adler = state->check =
|
cannam@89
|
1244 UPDATE(state->check, strm->next_out - out, out);
|
cannam@89
|
1245 strm->data_type = state->bits + (state->last ? 64 : 0) +
|
cannam@89
|
1246 (state->mode == TYPE ? 128 : 0) +
|
cannam@89
|
1247 (state->mode == LEN_ || state->mode == COPY_ ? 256 : 0);
|
cannam@89
|
1248 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
|
cannam@89
|
1249 ret = Z_BUF_ERROR;
|
cannam@89
|
1250 return ret;
|
cannam@89
|
1251 }
|
cannam@89
|
1252
|
cannam@89
|
1253 int ZEXPORT inflateEnd(strm)
|
cannam@89
|
1254 z_streamp strm;
|
cannam@89
|
1255 {
|
cannam@89
|
1256 struct inflate_state FAR *state;
|
cannam@89
|
1257 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
|
cannam@89
|
1258 return Z_STREAM_ERROR;
|
cannam@89
|
1259 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1260 if (state->window != Z_NULL) ZFREE(strm, state->window);
|
cannam@89
|
1261 ZFREE(strm, strm->state);
|
cannam@89
|
1262 strm->state = Z_NULL;
|
cannam@89
|
1263 Tracev((stderr, "inflate: end\n"));
|
cannam@89
|
1264 return Z_OK;
|
cannam@89
|
1265 }
|
cannam@89
|
1266
|
cannam@89
|
1267 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength)
|
cannam@89
|
1268 z_streamp strm;
|
cannam@89
|
1269 const Bytef *dictionary;
|
cannam@89
|
1270 uInt dictLength;
|
cannam@89
|
1271 {
|
cannam@89
|
1272 struct inflate_state FAR *state;
|
cannam@89
|
1273 unsigned long dictid;
|
cannam@89
|
1274 unsigned char *next;
|
cannam@89
|
1275 unsigned avail;
|
cannam@89
|
1276 int ret;
|
cannam@89
|
1277
|
cannam@89
|
1278 /* check state */
|
cannam@89
|
1279 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
1280 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1281 if (state->wrap != 0 && state->mode != DICT)
|
cannam@89
|
1282 return Z_STREAM_ERROR;
|
cannam@89
|
1283
|
cannam@89
|
1284 /* check for correct dictionary identifier */
|
cannam@89
|
1285 if (state->mode == DICT) {
|
cannam@89
|
1286 dictid = adler32(0L, Z_NULL, 0);
|
cannam@89
|
1287 dictid = adler32(dictid, dictionary, dictLength);
|
cannam@89
|
1288 if (dictid != state->check)
|
cannam@89
|
1289 return Z_DATA_ERROR;
|
cannam@89
|
1290 }
|
cannam@89
|
1291
|
cannam@89
|
1292 /* copy dictionary to window using updatewindow(), which will amend the
|
cannam@89
|
1293 existing dictionary if appropriate */
|
cannam@89
|
1294 next = strm->next_out;
|
cannam@89
|
1295 avail = strm->avail_out;
|
cannam@89
|
1296 strm->next_out = (Bytef *)dictionary + dictLength;
|
cannam@89
|
1297 strm->avail_out = 0;
|
cannam@89
|
1298 ret = updatewindow(strm, dictLength);
|
cannam@89
|
1299 strm->avail_out = avail;
|
cannam@89
|
1300 strm->next_out = next;
|
cannam@89
|
1301 if (ret) {
|
cannam@89
|
1302 state->mode = MEM;
|
cannam@89
|
1303 return Z_MEM_ERROR;
|
cannam@89
|
1304 }
|
cannam@89
|
1305 state->havedict = 1;
|
cannam@89
|
1306 Tracev((stderr, "inflate: dictionary set\n"));
|
cannam@89
|
1307 return Z_OK;
|
cannam@89
|
1308 }
|
cannam@89
|
1309
|
cannam@89
|
1310 int ZEXPORT inflateGetHeader(strm, head)
|
cannam@89
|
1311 z_streamp strm;
|
cannam@89
|
1312 gz_headerp head;
|
cannam@89
|
1313 {
|
cannam@89
|
1314 struct inflate_state FAR *state;
|
cannam@89
|
1315
|
cannam@89
|
1316 /* check state */
|
cannam@89
|
1317 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
1318 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1319 if ((state->wrap & 2) == 0) return Z_STREAM_ERROR;
|
cannam@89
|
1320
|
cannam@89
|
1321 /* save header structure */
|
cannam@89
|
1322 state->head = head;
|
cannam@89
|
1323 head->done = 0;
|
cannam@89
|
1324 return Z_OK;
|
cannam@89
|
1325 }
|
cannam@89
|
1326
|
cannam@89
|
1327 /*
|
cannam@89
|
1328 Search buf[0..len-1] for the pattern: 0, 0, 0xff, 0xff. Return when found
|
cannam@89
|
1329 or when out of input. When called, *have is the number of pattern bytes
|
cannam@89
|
1330 found in order so far, in 0..3. On return *have is updated to the new
|
cannam@89
|
1331 state. If on return *have equals four, then the pattern was found and the
|
cannam@89
|
1332 return value is how many bytes were read including the last byte of the
|
cannam@89
|
1333 pattern. If *have is less than four, then the pattern has not been found
|
cannam@89
|
1334 yet and the return value is len. In the latter case, syncsearch() can be
|
cannam@89
|
1335 called again with more data and the *have state. *have is initialized to
|
cannam@89
|
1336 zero for the first call.
|
cannam@89
|
1337 */
|
cannam@89
|
1338 local unsigned syncsearch(have, buf, len)
|
cannam@89
|
1339 unsigned FAR *have;
|
cannam@89
|
1340 unsigned char FAR *buf;
|
cannam@89
|
1341 unsigned len;
|
cannam@89
|
1342 {
|
cannam@89
|
1343 unsigned got;
|
cannam@89
|
1344 unsigned next;
|
cannam@89
|
1345
|
cannam@89
|
1346 got = *have;
|
cannam@89
|
1347 next = 0;
|
cannam@89
|
1348 while (next < len && got < 4) {
|
cannam@89
|
1349 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
|
cannam@89
|
1350 got++;
|
cannam@89
|
1351 else if (buf[next])
|
cannam@89
|
1352 got = 0;
|
cannam@89
|
1353 else
|
cannam@89
|
1354 got = 4 - got;
|
cannam@89
|
1355 next++;
|
cannam@89
|
1356 }
|
cannam@89
|
1357 *have = got;
|
cannam@89
|
1358 return next;
|
cannam@89
|
1359 }
|
cannam@89
|
1360
|
cannam@89
|
1361 int ZEXPORT inflateSync(strm)
|
cannam@89
|
1362 z_streamp strm;
|
cannam@89
|
1363 {
|
cannam@89
|
1364 unsigned len; /* number of bytes to look at or looked at */
|
cannam@89
|
1365 unsigned long in, out; /* temporary to save total_in and total_out */
|
cannam@89
|
1366 unsigned char buf[4]; /* to restore bit buffer to byte string */
|
cannam@89
|
1367 struct inflate_state FAR *state;
|
cannam@89
|
1368
|
cannam@89
|
1369 /* check parameters */
|
cannam@89
|
1370 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
1371 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1372 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
|
cannam@89
|
1373
|
cannam@89
|
1374 /* if first time, start search in bit buffer */
|
cannam@89
|
1375 if (state->mode != SYNC) {
|
cannam@89
|
1376 state->mode = SYNC;
|
cannam@89
|
1377 state->hold <<= state->bits & 7;
|
cannam@89
|
1378 state->bits -= state->bits & 7;
|
cannam@89
|
1379 len = 0;
|
cannam@89
|
1380 while (state->bits >= 8) {
|
cannam@89
|
1381 buf[len++] = (unsigned char)(state->hold);
|
cannam@89
|
1382 state->hold >>= 8;
|
cannam@89
|
1383 state->bits -= 8;
|
cannam@89
|
1384 }
|
cannam@89
|
1385 state->have = 0;
|
cannam@89
|
1386 syncsearch(&(state->have), buf, len);
|
cannam@89
|
1387 }
|
cannam@89
|
1388
|
cannam@89
|
1389 /* search available input */
|
cannam@89
|
1390 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
|
cannam@89
|
1391 strm->avail_in -= len;
|
cannam@89
|
1392 strm->next_in += len;
|
cannam@89
|
1393 strm->total_in += len;
|
cannam@89
|
1394
|
cannam@89
|
1395 /* return no joy or set up to restart inflate() on a new block */
|
cannam@89
|
1396 if (state->have != 4) return Z_DATA_ERROR;
|
cannam@89
|
1397 in = strm->total_in; out = strm->total_out;
|
cannam@89
|
1398 inflateReset(strm);
|
cannam@89
|
1399 strm->total_in = in; strm->total_out = out;
|
cannam@89
|
1400 state->mode = TYPE;
|
cannam@89
|
1401 return Z_OK;
|
cannam@89
|
1402 }
|
cannam@89
|
1403
|
cannam@89
|
1404 /*
|
cannam@89
|
1405 Returns true if inflate is currently at the end of a block generated by
|
cannam@89
|
1406 Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
|
cannam@89
|
1407 implementation to provide an additional safety check. PPP uses
|
cannam@89
|
1408 Z_SYNC_FLUSH but removes the length bytes of the resulting empty stored
|
cannam@89
|
1409 block. When decompressing, PPP checks that at the end of input packet,
|
cannam@89
|
1410 inflate is waiting for these length bytes.
|
cannam@89
|
1411 */
|
cannam@89
|
1412 int ZEXPORT inflateSyncPoint(strm)
|
cannam@89
|
1413 z_streamp strm;
|
cannam@89
|
1414 {
|
cannam@89
|
1415 struct inflate_state FAR *state;
|
cannam@89
|
1416
|
cannam@89
|
1417 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
1418 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1419 return state->mode == STORED && state->bits == 0;
|
cannam@89
|
1420 }
|
cannam@89
|
1421
|
cannam@89
|
1422 int ZEXPORT inflateCopy(dest, source)
|
cannam@89
|
1423 z_streamp dest;
|
cannam@89
|
1424 z_streamp source;
|
cannam@89
|
1425 {
|
cannam@89
|
1426 struct inflate_state FAR *state;
|
cannam@89
|
1427 struct inflate_state FAR *copy;
|
cannam@89
|
1428 unsigned char FAR *window;
|
cannam@89
|
1429 unsigned wsize;
|
cannam@89
|
1430
|
cannam@89
|
1431 /* check input */
|
cannam@89
|
1432 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
|
cannam@89
|
1433 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
|
cannam@89
|
1434 return Z_STREAM_ERROR;
|
cannam@89
|
1435 state = (struct inflate_state FAR *)source->state;
|
cannam@89
|
1436
|
cannam@89
|
1437 /* allocate space */
|
cannam@89
|
1438 copy = (struct inflate_state FAR *)
|
cannam@89
|
1439 ZALLOC(source, 1, sizeof(struct inflate_state));
|
cannam@89
|
1440 if (copy == Z_NULL) return Z_MEM_ERROR;
|
cannam@89
|
1441 window = Z_NULL;
|
cannam@89
|
1442 if (state->window != Z_NULL) {
|
cannam@89
|
1443 window = (unsigned char FAR *)
|
cannam@89
|
1444 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
|
cannam@89
|
1445 if (window == Z_NULL) {
|
cannam@89
|
1446 ZFREE(source, copy);
|
cannam@89
|
1447 return Z_MEM_ERROR;
|
cannam@89
|
1448 }
|
cannam@89
|
1449 }
|
cannam@89
|
1450
|
cannam@89
|
1451 /* copy state */
|
cannam@89
|
1452 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
|
cannam@89
|
1453 zmemcpy((voidpf)copy, (voidpf)state, sizeof(struct inflate_state));
|
cannam@89
|
1454 if (state->lencode >= state->codes &&
|
cannam@89
|
1455 state->lencode <= state->codes + ENOUGH - 1) {
|
cannam@89
|
1456 copy->lencode = copy->codes + (state->lencode - state->codes);
|
cannam@89
|
1457 copy->distcode = copy->codes + (state->distcode - state->codes);
|
cannam@89
|
1458 }
|
cannam@89
|
1459 copy->next = copy->codes + (state->next - state->codes);
|
cannam@89
|
1460 if (window != Z_NULL) {
|
cannam@89
|
1461 wsize = 1U << state->wbits;
|
cannam@89
|
1462 zmemcpy(window, state->window, wsize);
|
cannam@89
|
1463 }
|
cannam@89
|
1464 copy->window = window;
|
cannam@89
|
1465 dest->state = (struct internal_state FAR *)copy;
|
cannam@89
|
1466 return Z_OK;
|
cannam@89
|
1467 }
|
cannam@89
|
1468
|
cannam@89
|
1469 int ZEXPORT inflateUndermine(strm, subvert)
|
cannam@89
|
1470 z_streamp strm;
|
cannam@89
|
1471 int subvert;
|
cannam@89
|
1472 {
|
cannam@89
|
1473 struct inflate_state FAR *state;
|
cannam@89
|
1474
|
cannam@89
|
1475 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
1476 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1477 state->sane = !subvert;
|
cannam@89
|
1478 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
|
cannam@89
|
1479 return Z_OK;
|
cannam@89
|
1480 #else
|
cannam@89
|
1481 state->sane = 1;
|
cannam@89
|
1482 return Z_DATA_ERROR;
|
cannam@89
|
1483 #endif
|
cannam@89
|
1484 }
|
cannam@89
|
1485
|
cannam@89
|
1486 long ZEXPORT inflateMark(strm)
|
cannam@89
|
1487 z_streamp strm;
|
cannam@89
|
1488 {
|
cannam@89
|
1489 struct inflate_state FAR *state;
|
cannam@89
|
1490
|
cannam@89
|
1491 if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
|
cannam@89
|
1492 state = (struct inflate_state FAR *)strm->state;
|
cannam@89
|
1493 return ((long)(state->back) << 16) +
|
cannam@89
|
1494 (state->mode == COPY ? state->length :
|
cannam@89
|
1495 (state->mode == MATCH ? state->was - state->length : 0));
|
cannam@89
|
1496 }
|