Coverage Report

Created: 2026-03-07 06:25

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