Coverage Report

Created: 2026-05-16 07:49

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-2026 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
1.36M
void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start) {
51
1.36M
    struct inflate_state FAR *state;
52
1.36M
    z_const unsigned char FAR *in;      /* local strm->next_in */
53
1.36M
    z_const unsigned char FAR *last;    /* have enough input while in < last */
54
1.36M
    unsigned char FAR *out;     /* local strm->next_out */
55
1.36M
    unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */
56
1.36M
    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
1.36M
    unsigned wsize;             /* window size or zero if not using window */
61
1.36M
    unsigned whave;             /* valid bytes in the window */
62
1.36M
    unsigned wnext;             /* window write index */
63
1.36M
    unsigned char FAR *window;  /* allocated sliding window, if wsize != 0 */
64
1.36M
    unsigned long hold;         /* local strm->hold */
65
1.36M
    unsigned bits;              /* local strm->bits */
66
1.36M
    code const FAR *lcode;      /* local strm->lencode */
67
1.36M
    code const FAR *dcode;      /* local strm->distcode */
68
1.36M
    unsigned lmask;             /* mask for first level of length codes */
69
1.36M
    unsigned dmask;             /* mask for first level of distance codes */
70
1.36M
    code const *here;           /* retrieved table entry */
71
1.36M
    unsigned op;                /* code bits, operation, extra bits, or */
72
                                /*  window position, window bytes to copy */
73
1.36M
    unsigned len;               /* match length, unused bytes */
74
1.36M
    unsigned dist;              /* match distance */
75
1.36M
    unsigned char FAR *from;    /* where to copy match from */
76
77
    /* copy state to local variables */
78
1.36M
    state = (struct inflate_state FAR *)strm->state;
79
1.36M
    in = strm->next_in;
80
1.36M
    last = in + (strm->avail_in - 5);
81
1.36M
    out = strm->next_out;
82
1.36M
    beg = out - (start - strm->avail_out);
83
1.36M
    end = out + (strm->avail_out - 257);
84
#ifdef INFLATE_STRICT
85
    dmax = state->dmax;
86
#endif
87
1.36M
    wsize = state->wsize;
88
1.36M
    whave = state->whave;
89
1.36M
    wnext = state->wnext;
90
1.36M
    window = state->window;
91
1.36M
    hold = state->hold;
92
1.36M
    bits = state->bits;
93
1.36M
    lcode = state->lencode;
94
1.36M
    dcode = state->distcode;
95
1.36M
    lmask = (1U << state->lenbits) - 1;
96
1.36M
    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
427M
    do {
101
427M
        if (bits < 15) {
102
88.7M
            hold += (unsigned long)(*in++) << bits;
103
88.7M
            bits += 8;
104
88.7M
            hold += (unsigned long)(*in++) << bits;
105
88.7M
            bits += 8;
106
88.7M
        }
107
427M
        here = lcode + (hold & lmask);
108
430M
      dolen:
109
430M
        op = (unsigned)(here->bits);
110
430M
        hold >>= op;
111
430M
        bits -= op;
112
430M
        op = (unsigned)(here->op);
113
430M
        if (op == 0) {                          /* literal */
114
120M
            Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
115
120M
                    "inflate:         literal '%c'\n" :
116
120M
                    "inflate:         literal 0x%02x\n", here->val));
117
120M
            *out++ = (unsigned char)(here->val);
118
120M
        }
119
310M
        else if (op & 16) {                     /* length base */
120
306M
            len = (unsigned)(here->val);
121
306M
            op &= 15;                           /* number of extra bits */
122
306M
            if (op) {
123
22.8M
                if (bits < op) {
124
51.1k
                    hold += (unsigned long)(*in++) << bits;
125
51.1k
                    bits += 8;
126
51.1k
                }
127
22.8M
                len += (unsigned)hold & ((1U << op) - 1);
128
22.8M
                hold >>= op;
129
22.8M
                bits -= op;
130
22.8M
            }
131
306M
            Tracevv((stderr, "inflate:         length %u\n", len));
132
306M
            if (bits < 15) {
133
33.9M
                hold += (unsigned long)(*in++) << bits;
134
33.9M
                bits += 8;
135
33.9M
                hold += (unsigned long)(*in++) << bits;
136
33.9M
                bits += 8;
137
33.9M
            }
138
306M
            here = dcode + (hold & dmask);
139
307M
          dodist:
140
307M
            op = (unsigned)(here->bits);
141
307M
            hold >>= op;
142
307M
            bits -= op;
143
307M
            op = (unsigned)(here->op);
144
307M
            if (op & 16) {                      /* distance base */
145
306M
                dist = (unsigned)(here->val);
146
306M
                op &= 15;                       /* number of extra bits */
147
306M
                if (bits < op) {
148
1.44M
                    hold += (unsigned long)(*in++) << bits;
149
1.44M
                    bits += 8;
150
1.44M
                    if (bits < op) {
151
1.20k
                        hold += (unsigned long)(*in++) << bits;
152
1.20k
                        bits += 8;
153
1.20k
                    }
154
1.44M
                }
155
306M
                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
306M
                hold >>= op;
165
306M
                bits -= op;
166
306M
                Tracevv((stderr, "inflate:         distance %u\n", dist));
167
306M
                op = (unsigned)(out - beg);     /* max distance in output */
168
306M
                if (dist > op) {                /* see if copy from window */
169
1.25M
                    op = dist - op;             /* distance back in window */
170
1.25M
                    if (op > whave) {
171
31.2k
                        if (state->sane) {
172
31.2k
                            strm->msg = (z_const char *)
173
31.2k
                                "invalid distance too far back";
174
31.2k
                            state->mode = BAD;
175
31.2k
                            break;
176
31.2k
                        }
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
31.2k
                    }
197
1.22M
                    from = window;
198
1.22M
                    if (wnext == 0) {           /* very common case */
199
106k
                        from += wsize - op;
200
106k
                        if (op < len) {         /* some from window */
201
13.7k
                            len -= op;
202
1.12M
                            do {
203
1.12M
                                *out++ = *from++;
204
1.12M
                            } while (--op);
205
13.7k
                            from = out - dist;  /* rest from output */
206
13.7k
                        }
207
106k
                    }
208
1.12M
                    else if (wnext < op) {      /* wrap around window */
209
104k
                        from += wsize + wnext - op;
210
104k
                        op -= wnext;
211
104k
                        if (op < len) {         /* some from end of window */
212
8.98k
                            len -= op;
213
985k
                            do {
214
985k
                                *out++ = *from++;
215
985k
                            } while (--op);
216
8.98k
                            from = window;
217
8.98k
                            if (wnext < len) {  /* some from start of window */
218
2.75k
                                op = wnext;
219
2.75k
                                len -= op;
220
167k
                                do {
221
167k
                                    *out++ = *from++;
222
167k
                                } while (--op);
223
2.75k
                                from = out - dist;      /* rest from output */
224
2.75k
                            }
225
8.98k
                        }
226
104k
                    }
227
1.01M
                    else {                      /* contiguous in window */
228
1.01M
                        from += wnext - op;
229
1.01M
                        if (op < len) {         /* some from window */
230
205k
                            len -= op;
231
21.1M
                            do {
232
21.1M
                                *out++ = *from++;
233
21.1M
                            } while (--op);
234
205k
                            from = out - dist;  /* rest from output */
235
205k
                        }
236
1.01M
                    }
237
76.3M
                    while (len > 2) {
238
75.0M
                        *out++ = *from++;
239
75.0M
                        *out++ = *from++;
240
75.0M
                        *out++ = *from++;
241
75.0M
                        len -= 3;
242
75.0M
                    }
243
1.22M
                    if (len) {
244
293k
                        *out++ = *from++;
245
293k
                        if (len > 1)
246
167k
                            *out++ = *from++;
247
293k
                    }
248
1.22M
                }
249
305M
                else {
250
305M
                    from = out - dist;          /* copy direct from output */
251
24.8G
                    do {                        /* minimum length is three */
252
24.8G
                        *out++ = *from++;
253
24.8G
                        *out++ = *from++;
254
24.8G
                        *out++ = *from++;
255
24.8G
                        len -= 3;
256
24.8G
                    } while (len > 2);
257
305M
                    if (len) {
258
5.94M
                        *out++ = *from++;
259
5.94M
                        if (len > 1)
260
3.09M
                            *out++ = *from++;
261
5.94M
                    }
262
305M
                }
263
306M
            }
264
1.09M
            else if ((op & 64) == 0) {          /* 2nd level distance code */
265
1.07M
                here = dcode + here->val + (hold & ((1U << op) - 1));
266
1.07M
                goto dodist;
267
1.07M
            }
268
22.2k
            else {
269
22.2k
                strm->msg = (z_const char *)"invalid distance code";
270
22.2k
                state->mode = BAD;
271
22.2k
                break;
272
22.2k
            }
273
307M
        }
274
3.42M
        else if ((op & 64) == 0) {              /* 2nd level length code */
275
3.00M
            here = lcode + here->val + (hold & ((1U << op) - 1));
276
3.00M
            goto dolen;
277
3.00M
        }
278
419k
        else if (op & 32) {                     /* end-of-block */
279
410k
            Tracevv((stderr, "inflate:         end of block\n"));
280
410k
            state->mode = TYPE;
281
410k
            break;
282
410k
        }
283
9.18k
        else {
284
9.18k
            strm->msg = (z_const char *)"invalid literal/length code";
285
9.18k
            state->mode = BAD;
286
9.18k
            break;
287
9.18k
        }
288
430M
    } while (in < last && out < end);
289
290
    /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
291
1.36M
    len = bits >> 3;
292
1.36M
    in -= len;
293
1.36M
    bits -= len << 3;
294
1.36M
    hold &= (1U << bits) - 1;
295
296
    /* update state and return */
297
1.36M
    strm->next_in = in;
298
1.36M
    strm->next_out = out;
299
1.36M
    strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
300
1.36M
    strm->avail_out = (unsigned)(out < end ?
301
953k
                                 257 + (end - out) : 257 - (out - end));
302
1.36M
    state->hold = hold;
303
1.36M
    state->bits = bits;
304
1.36M
    return;
305
1.36M
}
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 */