Coverage Report

Created: 2026-01-25 06:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zlib/inffast.c
Line
Count
Source
1
/* inffast.c -- fast decoding
2
 * Copyright (C) 1995-2025 Mark Adler
3
 * For conditions of distribution and use, see copyright notice in zlib.h
4
 */
5
6
#include "zutil.h"
7
#include "inftrees.h"
8
#include "inflate.h"
9
#include "inffast.h"
10
11
#ifdef ASMINF
12
#  pragma message("Assembler code may have bugs -- use at your own risk")
13
#else
14
15
/*
16
   Decode literal, length, and distance codes and write out the resulting
17
   literal and match bytes until either not enough input or output is
18
   available, an end-of-block is encountered, or a data error is encountered.
19
   When large enough input and output buffers are supplied to inflate(), for
20
   example, a 16K input buffer and a 64K output buffer, more than 95% of the
21
   inflate execution time is spent in this routine.
22
23
   Entry assumptions:
24
25
        state->mode == LEN
26
        strm->avail_in >= 6
27
        strm->avail_out >= 258
28
        start >= strm->avail_out
29
        state->bits < 8
30
31
   On return, state->mode is one of:
32
33
        LEN -- ran out of enough output space or enough available input
34
        TYPE -- reached end of block code, inflate() to interpret next block
35
        BAD -- error in block data
36
37
   Notes:
38
39
    - The maximum input bits used by a length/distance pair is 15 bits for the
40
      length code, 5 bits for the length extra, 15 bits for the distance code,
41
      and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
42
      Therefore if strm->avail_in >= 6, then there is enough input to avoid
43
      checking for available input while decoding.
44
45
    - The maximum bytes that a single length/distance pair can output is 258
46
      bytes, which is the maximum length that can be coded.  inflate_fast()
47
      requires strm->avail_out >= 258 for each loop to avoid checking for
48
      output space.
49
 */
50
51.3k
void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start) {
51
51.3k
    struct inflate_state FAR *state;
52
51.3k
    z_const unsigned char FAR *in;      /* local strm->next_in */
53
51.3k
    z_const unsigned char FAR *last;    /* have enough input while in < last */
54
51.3k
    unsigned char FAR *out;     /* local strm->next_out */
55
51.3k
    unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */
56
51.3k
    unsigned char FAR *end;     /* while out < end, enough space available */
57
#ifdef INFLATE_STRICT
58
    unsigned dmax;              /* maximum distance from zlib header */
59
#endif
60
51.3k
    unsigned wsize;             /* window size or zero if not using window */
61
51.3k
    unsigned whave;             /* valid bytes in the window */
62
51.3k
    unsigned wnext;             /* window write index */
63
51.3k
    unsigned char FAR *window;  /* allocated sliding window, if wsize != 0 */
64
51.3k
    unsigned long hold;         /* local strm->hold */
65
51.3k
    unsigned bits;              /* local strm->bits */
66
51.3k
    code const FAR *lcode;      /* local strm->lencode */
67
51.3k
    code const FAR *dcode;      /* local strm->distcode */
68
51.3k
    unsigned lmask;             /* mask for first level of length codes */
69
51.3k
    unsigned dmask;             /* mask for first level of distance codes */
70
51.3k
    code const *here;           /* retrieved table entry */
71
51.3k
    unsigned op;                /* code bits, operation, extra bits, or */
72
                                /*  window position, window bytes to copy */
73
51.3k
    unsigned len;               /* match length, unused bytes */
74
51.3k
    unsigned dist;              /* match distance */
75
51.3k
    unsigned char FAR *from;    /* where to copy match from */
76
77
    /* copy state to local variables */
78
51.3k
    state = (struct inflate_state FAR *)strm->state;
79
51.3k
    in = strm->next_in;
80
51.3k
    last = in + (strm->avail_in - 5);
81
51.3k
    out = strm->next_out;
82
51.3k
    beg = out - (start - strm->avail_out);
83
51.3k
    end = out + (strm->avail_out - 257);
84
#ifdef INFLATE_STRICT
85
    dmax = state->dmax;
86
#endif
87
51.3k
    wsize = state->wsize;
88
51.3k
    whave = state->whave;
89
51.3k
    wnext = state->wnext;
90
51.3k
    window = state->window;
91
51.3k
    hold = state->hold;
92
51.3k
    bits = state->bits;
93
51.3k
    lcode = state->lencode;
94
51.3k
    dcode = state->distcode;
95
51.3k
    lmask = (1U << state->lenbits) - 1;
96
51.3k
    dmask = (1U << state->distbits) - 1;
97
98
    /* decode literals and length/distances until end-of-block or not enough
99
       input data or output space */
100
4.27M
    do {
101
4.27M
        if (bits < 15) {
102
2.00M
            hold += (unsigned long)(*in++) << bits;
103
2.00M
            bits += 8;
104
2.00M
            hold += (unsigned long)(*in++) << bits;
105
2.00M
            bits += 8;
106
2.00M
        }
107
4.27M
        here = lcode + (hold & lmask);
108
4.38M
      dolen:
109
4.38M
        op = (unsigned)(here->bits);
110
4.38M
        hold >>= op;
111
4.38M
        bits -= op;
112
4.38M
        op = (unsigned)(here->op);
113
4.38M
        if (op == 0) {                          /* literal */
114
2.53M
            Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
115
2.53M
                    "inflate:         literal '%c'\n" :
116
2.53M
                    "inflate:         literal 0x%02x\n", here->val));
117
2.53M
            *out++ = (unsigned char)(here->val);
118
2.53M
        }
119
1.84M
        else if (op & 16) {                     /* length base */
120
1.73M
            len = (unsigned)(here->val);
121
1.73M
            op &= 15;                           /* number of extra bits */
122
1.73M
            if (op) {
123
610k
                if (bits < op) {
124
7.57k
                    hold += (unsigned long)(*in++) << bits;
125
7.57k
                    bits += 8;
126
7.57k
                }
127
610k
                len += (unsigned)hold & ((1U << op) - 1);
128
610k
                hold >>= op;
129
610k
                bits -= op;
130
610k
            }
131
1.73M
            Tracevv((stderr, "inflate:         length %u\n", len));
132
1.73M
            if (bits < 15) {
133
571k
                hold += (unsigned long)(*in++) << bits;
134
571k
                bits += 8;
135
571k
                hold += (unsigned long)(*in++) << bits;
136
571k
                bits += 8;
137
571k
            }
138
1.73M
            here = dcode + (hold & dmask);
139
1.86M
          dodist:
140
1.86M
            op = (unsigned)(here->bits);
141
1.86M
            hold >>= op;
142
1.86M
            bits -= op;
143
1.86M
            op = (unsigned)(here->op);
144
1.86M
            if (op & 16) {                      /* distance base */
145
1.73M
                dist = (unsigned)(here->val);
146
1.73M
                op &= 15;                       /* number of extra bits */
147
1.73M
                if (bits < op) {
148
2.39k
                    hold += (unsigned long)(*in++) << bits;
149
2.39k
                    bits += 8;
150
2.39k
                    if (bits < op) {
151
0
                        hold += (unsigned long)(*in++) << bits;
152
0
                        bits += 8;
153
0
                    }
154
2.39k
                }
155
1.73M
                dist += (unsigned)hold & ((1U << op) - 1);
156
#ifdef INFLATE_STRICT
157
                if (dist > dmax) {
158
                    strm->msg = (z_const char *)
159
                        "invalid distance too far back";
160
                    state->mode = BAD;
161
                    break;
162
                }
163
#endif
164
1.73M
                hold >>= op;
165
1.73M
                bits -= op;
166
1.73M
                Tracevv((stderr, "inflate:         distance %u\n", dist));
167
1.73M
                op = (unsigned)(out - beg);     /* max distance in output */
168
1.73M
                if (dist > op) {                /* see if copy from window */
169
37.7k
                    op = dist - op;             /* distance back in window */
170
37.7k
                    if (op > whave) {
171
302
                        if (state->sane) {
172
302
                            strm->msg = (z_const char *)
173
302
                                "invalid distance too far back";
174
302
                            state->mode = BAD;
175
302
                            break;
176
302
                        }
177
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
178
                        if (len <= op - whave) {
179
                            do {
180
                                *out++ = 0;
181
                            } while (--len);
182
                            continue;
183
                        }
184
                        len -= op - whave;
185
                        do {
186
                            *out++ = 0;
187
                        } while (--op > whave);
188
                        if (op == 0) {
189
                            from = out - dist;
190
                            do {
191
                                *out++ = *from++;
192
                            } while (--len);
193
                            continue;
194
                        }
195
#endif
196
302
                    }
197
37.4k
                    from = window;
198
37.4k
                    if (wnext == 0) {           /* very common case */
199
5.77k
                        from += wsize - op;
200
5.77k
                        if (op < len) {         /* some from window */
201
520
                            len -= op;
202
32.6k
                            do {
203
32.6k
                                *out++ = *from++;
204
32.6k
                            } while (--op);
205
520
                            from = out - dist;  /* rest from output */
206
520
                        }
207
5.77k
                    }
208
31.7k
                    else if (wnext < op) {      /* wrap around window */
209
598
                        from += wsize + wnext - op;
210
598
                        op -= wnext;
211
598
                        if (op < len) {         /* some from end of window */
212
57
                            len -= op;
213
3.35k
                            do {
214
3.35k
                                *out++ = *from++;
215
3.35k
                            } while (--op);
216
57
                            from = window;
217
57
                            if (wnext < len) {  /* some from start of window */
218
23
                                op = wnext;
219
23
                                len -= op;
220
1.51k
                                do {
221
1.51k
                                    *out++ = *from++;
222
1.51k
                                } while (--op);
223
23
                                from = out - dist;      /* rest from output */
224
23
                            }
225
57
                        }
226
598
                    }
227
31.1k
                    else {                      /* contiguous in window */
228
31.1k
                        from += wnext - op;
229
31.1k
                        if (op < len) {         /* some from window */
230
4.36k
                            len -= op;
231
536k
                            do {
232
536k
                                *out++ = *from++;
233
536k
                            } while (--op);
234
4.36k
                            from = out - dist;  /* rest from output */
235
4.36k
                        }
236
31.1k
                    }
237
299k
                    while (len > 2) {
238
262k
                        *out++ = *from++;
239
262k
                        *out++ = *from++;
240
262k
                        *out++ = *from++;
241
262k
                        len -= 3;
242
262k
                    }
243
37.4k
                    if (len) {
244
15.7k
                        *out++ = *from++;
245
15.7k
                        if (len > 1)
246
3.82k
                            *out++ = *from++;
247
15.7k
                    }
248
37.4k
                }
249
1.69M
                else {
250
1.69M
                    from = out - dist;          /* copy direct from output */
251
24.1M
                    do {                        /* minimum length is three */
252
24.1M
                        *out++ = *from++;
253
24.1M
                        *out++ = *from++;
254
24.1M
                        *out++ = *from++;
255
24.1M
                        len -= 3;
256
24.1M
                    } while (len > 2);
257
1.69M
                    if (len) {
258
836k
                        *out++ = *from++;
259
836k
                        if (len > 1)
260
402k
                            *out++ = *from++;
261
836k
                    }
262
1.69M
                }
263
1.73M
            }
264
135k
            else if ((op & 64) == 0) {          /* 2nd level distance code */
265
135k
                here = dcode + here->val + (hold & ((1U << op) - 1));
266
135k
                goto dodist;
267
135k
            }
268
21
            else {
269
21
                strm->msg = (z_const char *)"invalid distance code";
270
21
                state->mode = BAD;
271
21
                break;
272
21
            }
273
1.86M
        }
274
115k
        else if ((op & 64) == 0) {              /* 2nd level length code */
275
110k
            here = lcode + here->val + (hold & ((1U << op) - 1));
276
110k
            goto dolen;
277
110k
        }
278
5.70k
        else if (op & 32) {                     /* end-of-block */
279
5.67k
            Tracevv((stderr, "inflate:         end of block\n"));
280
5.67k
            state->mode = TYPE;
281
5.67k
            break;
282
5.67k
        }
283
23
        else {
284
23
            strm->msg = (z_const char *)"invalid literal/length code";
285
23
            state->mode = BAD;
286
23
            break;
287
23
        }
288
4.38M
    } while (in < last && out < end);
289
290
    /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
291
51.3k
    len = bits >> 3;
292
51.3k
    in -= len;
293
51.3k
    bits -= len << 3;
294
51.3k
    hold &= (1U << bits) - 1;
295
296
    /* update state and return */
297
51.3k
    strm->next_in = in;
298
51.3k
    strm->next_out = out;
299
51.3k
    strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
300
51.3k
    strm->avail_out = (unsigned)(out < end ?
301
50.6k
                                 257 + (end - out) : 257 - (out - end));
302
51.3k
    state->hold = hold;
303
51.3k
    state->bits = bits;
304
51.3k
    return;
305
51.3k
}
306
307
/*
308
   inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):
309
   - Using bit fields for code structure
310
   - Different op definition to avoid & for extra bits (do & for table bits)
311
   - Three separate decoding do-loops for direct, window, and wnext == 0
312
   - Special case for distance > 1 copies to do overlapped load and store copy
313
   - Explicit branch predictions (based on measured branch probabilities)
314
   - Deferring match copy and interspersed it with decoding subsequent codes
315
   - Swapping literal/length else
316
   - Swapping window/direct else
317
   - Larger unrolled copy loops (three is about right)
318
   - Moving len -= 3 statement into middle of loop
319
 */
320
321
#endif /* !ASMINF */