Coverage Report

Created: 2026-01-25 07:15

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