Coverage Report

Created: 2022-11-14 06:33

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