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