Coverage Report

Created: 2024-09-06 07:53

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