Coverage Report

Created: 2025-07-11 06:59

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