Coverage Report

Created: 2022-10-16 06:45

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