Coverage Report

Created: 2024-05-20 06:28

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