Coverage Report

Created: 2025-07-11 07:23

/src/zlib/inffast.c
Line
Count
Source (jump to first uncovered line)
1
/* inffast.c -- fast decoding
2
 * Copyright (C) 1995-2017 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
26.6k
void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start) {
51
26.6k
    struct inflate_state FAR *state;
52
26.6k
    z_const unsigned char FAR *in;      /* local strm->next_in */
53
26.6k
    z_const unsigned char FAR *last;    /* have enough input while in < last */
54
26.6k
    unsigned char FAR *out;     /* local strm->next_out */
55
26.6k
    unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */
56
26.6k
    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
26.6k
    unsigned wsize;             /* window size or zero if not using window */
61
26.6k
    unsigned whave;             /* valid bytes in the window */
62
26.6k
    unsigned wnext;             /* window write index */
63
26.6k
    unsigned char FAR *window;  /* allocated sliding window, if wsize != 0 */
64
26.6k
    unsigned long hold;         /* local strm->hold */
65
26.6k
    unsigned bits;              /* local strm->bits */
66
26.6k
    code const FAR *lcode;      /* local strm->lencode */
67
26.6k
    code const FAR *dcode;      /* local strm->distcode */
68
26.6k
    unsigned lmask;             /* mask for first level of length codes */
69
26.6k
    unsigned dmask;             /* mask for first level of distance codes */
70
26.6k
    code const *here;           /* retrieved table entry */
71
26.6k
    unsigned op;                /* code bits, operation, extra bits, or */
72
                                /*  window position, window bytes to copy */
73
26.6k
    unsigned len;               /* match length, unused bytes */
74
26.6k
    unsigned dist;              /* match distance */
75
26.6k
    unsigned char FAR *from;    /* where to copy match from */
76
77
    /* copy state to local variables */
78
26.6k
    state = (struct inflate_state FAR *)strm->state;
79
26.6k
    in = strm->next_in;
80
26.6k
    last = in + (strm->avail_in - 5);
81
26.6k
    out = strm->next_out;
82
26.6k
    beg = out - (start - strm->avail_out);
83
26.6k
    end = out + (strm->avail_out - 257);
84
#ifdef INFLATE_STRICT
85
    dmax = state->dmax;
86
#endif
87
26.6k
    wsize = state->wsize;
88
26.6k
    whave = state->whave;
89
26.6k
    wnext = state->wnext;
90
26.6k
    window = state->window;
91
26.6k
    hold = state->hold;
92
26.6k
    bits = state->bits;
93
26.6k
    lcode = state->lencode;
94
26.6k
    dcode = state->distcode;
95
26.6k
    lmask = (1U << state->lenbits) - 1;
96
26.6k
    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
1.17M
    do {
101
1.17M
        if (bits < 15) {
102
458k
            hold += (unsigned long)(*in++) << bits;
103
458k
            bits += 8;
104
458k
            hold += (unsigned long)(*in++) << bits;
105
458k
            bits += 8;
106
458k
        }
107
1.17M
        here = lcode + (hold & lmask);
108
1.28M
      dolen:
109
1.28M
        op = (unsigned)(here->bits);
110
1.28M
        hold >>= op;
111
1.28M
        bits -= op;
112
1.28M
        op = (unsigned)(here->op);
113
1.28M
        if (op == 0) {                          /* literal */
114
567k
            Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
115
567k
                    "inflate:         literal '%c'\n" :
116
567k
                    "inflate:         literal 0x%02x\n", here->val));
117
567k
            *out++ = (unsigned char)(here->val);
118
567k
        }
119
722k
        else if (op & 16) {                     /* length base */
120
606k
            len = (unsigned)(here->val);
121
606k
            op &= 15;                           /* number of extra bits */
122
606k
            if (op) {
123
229k
                if (bits < op) {
124
26.4k
                    hold += (unsigned long)(*in++) << bits;
125
26.4k
                    bits += 8;
126
26.4k
                }
127
229k
                len += (unsigned)hold & ((1U << op) - 1);
128
229k
                hold >>= op;
129
229k
                bits -= op;
130
229k
            }
131
606k
            Tracevv((stderr, "inflate:         length %u\n", len));
132
606k
            if (bits < 15) {
133
232k
                hold += (unsigned long)(*in++) << bits;
134
232k
                bits += 8;
135
232k
                hold += (unsigned long)(*in++) << bits;
136
232k
                bits += 8;
137
232k
            }
138
606k
            here = dcode + (hold & dmask);
139
776k
          dodist:
140
776k
            op = (unsigned)(here->bits);
141
776k
            hold >>= op;
142
776k
            bits -= op;
143
776k
            op = (unsigned)(here->op);
144
776k
            if (op & 16) {                      /* distance base */
145
605k
                dist = (unsigned)(here->val);
146
605k
                op &= 15;                       /* number of extra bits */
147
605k
                if (bits < op) {
148
93.1k
                    hold += (unsigned long)(*in++) << bits;
149
93.1k
                    bits += 8;
150
93.1k
                    if (bits < op) {
151
0
                        hold += (unsigned long)(*in++) << bits;
152
0
                        bits += 8;
153
0
                    }
154
93.1k
                }
155
605k
                dist += (unsigned)hold & ((1U << op) - 1);
156
#ifdef INFLATE_STRICT
157
                if (dist > dmax) {
158
                    strm->msg = (z_const char *)"invalid distance too far back";
159
                    state->mode = BAD;
160
                    break;
161
                }
162
#endif
163
605k
                hold >>= op;
164
605k
                bits -= op;
165
605k
                Tracevv((stderr, "inflate:         distance %u\n", dist));
166
605k
                op = (unsigned)(out - beg);     /* max distance in output */
167
605k
                if (dist > op) {                /* see if copy from window */
168
28.4k
                    op = dist - op;             /* distance back in window */
169
28.4k
                    if (op > whave) {
170
536
                        if (state->sane) {
171
536
                            strm->msg =
172
536
                                (z_const char *)"invalid distance too far back";
173
536
                            state->mode = BAD;
174
536
                            break;
175
536
                        }
176
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
177
                        if (len <= op - whave) {
178
                            do {
179
                                *out++ = 0;
180
                            } while (--len);
181
                            continue;
182
                        }
183
                        len -= op - whave;
184
                        do {
185
                            *out++ = 0;
186
                        } while (--op > whave);
187
                        if (op == 0) {
188
                            from = out - dist;
189
                            do {
190
                                *out++ = *from++;
191
                            } while (--len);
192
                            continue;
193
                        }
194
#endif
195
536
                    }
196
27.9k
                    from = window;
197
27.9k
                    if (wnext == 0) {           /* very common case */
198
2.48k
                        from += wsize - op;
199
2.48k
                        if (op < len) {         /* some from window */
200
202
                            len -= op;
201
23.6k
                            do {
202
23.6k
                                *out++ = *from++;
203
23.6k
                            } while (--op);
204
202
                            from = out - dist;  /* rest from output */
205
202
                        }
206
2.48k
                    }
207
25.4k
                    else if (wnext < op) {      /* wrap around window */
208
1.93k
                        from += wsize + wnext - op;
209
1.93k
                        op -= wnext;
210
1.93k
                        if (op < len) {         /* some from end of window */
211
299
                            len -= op;
212
32.0k
                            do {
213
32.0k
                                *out++ = *from++;
214
32.0k
                            } while (--op);
215
299
                            from = window;
216
299
                            if (wnext < len) {  /* some from start of window */
217
142
                                op = wnext;
218
142
                                len -= op;
219
7.88k
                                do {
220
7.88k
                                    *out++ = *from++;
221
7.88k
                                } while (--op);
222
142
                                from = out - dist;      /* rest from output */
223
142
                            }
224
299
                        }
225
1.93k
                    }
226
23.4k
                    else {                      /* contiguous in window */
227
23.4k
                        from += wnext - op;
228
23.4k
                        if (op < len) {         /* some from window */
229
4.79k
                            len -= op;
230
446k
                            do {
231
446k
                                *out++ = *from++;
232
446k
                            } while (--op);
233
4.79k
                            from = out - dist;  /* rest from output */
234
4.79k
                        }
235
23.4k
                    }
236
1.87M
                    while (len > 2) {
237
1.84M
                        *out++ = *from++;
238
1.84M
                        *out++ = *from++;
239
1.84M
                        *out++ = *from++;
240
1.84M
                        len -= 3;
241
1.84M
                    }
242
27.9k
                    if (len) {
243
3.92k
                        *out++ = *from++;
244
3.92k
                        if (len > 1)
245
2.35k
                            *out++ = *from++;
246
3.92k
                    }
247
27.9k
                }
248
577k
                else {
249
577k
                    from = out - dist;          /* copy direct from output */
250
35.9M
                    do {                        /* minimum length is three */
251
35.9M
                        *out++ = *from++;
252
35.9M
                        *out++ = *from++;
253
35.9M
                        *out++ = *from++;
254
35.9M
                        len -= 3;
255
35.9M
                    } while (len > 2);
256
577k
                    if (len) {
257
118k
                        *out++ = *from++;
258
118k
                        if (len > 1)
259
101k
                            *out++ = *from++;
260
118k
                    }
261
577k
                }
262
605k
            }
263
171k
            else if ((op & 64) == 0) {          /* 2nd level distance code */
264
170k
                here = dcode + here->val + (hold & ((1U << op) - 1));
265
170k
                goto dodist;
266
170k
            }
267
455
            else {
268
455
                strm->msg = (z_const char *)"invalid distance code";
269
455
                state->mode = BAD;
270
455
                break;
271
455
            }
272
776k
        }
273
116k
        else if ((op & 64) == 0) {              /* 2nd level length code */
274
113k
            here = lcode + here->val + (hold & ((1U << op) - 1));
275
113k
            goto dolen;
276
113k
        }
277
3.35k
        else if (op & 32) {                     /* end-of-block */
278
3.16k
            Tracevv((stderr, "inflate:         end of block\n"));
279
3.16k
            state->mode = TYPE;
280
3.16k
            break;
281
3.16k
        }
282
197
        else {
283
197
            strm->msg = (z_const char *)"invalid literal/length code";
284
197
            state->mode = BAD;
285
197
            break;
286
197
        }
287
1.28M
    } while (in < last && out < end);
288
289
    /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
290
26.6k
    len = bits >> 3;
291
26.6k
    in -= len;
292
26.6k
    bits -= len << 3;
293
26.6k
    hold &= (1U << bits) - 1;
294
295
    /* update state and return */
296
26.6k
    strm->next_in = in;
297
26.6k
    strm->next_out = out;
298
26.6k
    strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
299
26.6k
    strm->avail_out = (unsigned)(out < end ?
300
17.0k
                                 257 + (end - out) : 257 - (out - end));
301
26.6k
    state->hold = hold;
302
26.6k
    state->bits = bits;
303
26.6k
    return;
304
26.6k
}
305
306
/*
307
   inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):
308
   - Using bit fields for code structure
309
   - Different op definition to avoid & for extra bits (do & for table bits)
310
   - Three separate decoding do-loops for direct, window, and wnext == 0
311
   - Special case for distance > 1 copies to do overlapped load and store copy
312
   - Explicit branch predictions (based on measured branch probabilities)
313
   - Deferring match copy and interspersed it with decoding subsequent codes
314
   - Swapping literal/length else
315
   - Swapping window/direct else
316
   - Larger unrolled copy loops (three is about right)
317
   - Moving len -= 3 statement into middle of loop
318
 */
319
320
#endif /* !ASMINF */