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