Update contrib.
1 /* inflate.c -- zlib interface to inflate modules
2 * Copyright (C) 1995-1998 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
9 struct inflate_blocks_state {int dummy;}; /* for buggy compilers */
12 METHOD, /* waiting for method byte */
13 FLAG, /* waiting for flag byte */
14 DICT4, /* four dictionary check bytes to go */
15 DICT3, /* three dictionary check bytes to go */
16 DICT2, /* two dictionary check bytes to go */
17 DICT1, /* one dictionary check byte to go */
18 DICT0, /* waiting for inflateSetDictionary */
19 BLOCKS, /* decompressing blocks */
20 CHECK4, /* four check bytes to go */
21 CHECK3, /* three check bytes to go */
22 CHECK2, /* two check bytes to go */
23 CHECK1, /* one check byte to go */
24 DONE, /* finished check, done */
25 BAD} /* got an error--stay here */
28 /* inflate private state */
29 struct internal_state {
32 inflate_mode mode; /* current inflate mode */
34 /* mode dependent information */
36 uInt method; /* if FLAGS, method byte */
38 uLong was; /* computed check value */
39 uLong need; /* stream check value */
40 } check; /* if CHECK, check values to compare */
41 uInt marker; /* if BAD, inflateSync's marker bytes count */
44 /* mode independent information */
45 int nowrap; /* flag for no wrapper */
46 uInt wbits; /* log2(window size) (8..15, defaults to 15) */
48 *blocks; /* current inflate_blocks state */
53 EXPORT_C int ZEXPORT inflateReset(
56 if (z == Z_NULL || z->state == Z_NULL)
57 return Z_STREAM_ERROR;
58 z->total_in = z->total_out = 0;
60 z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
61 inflate_blocks_reset(z->state->blocks, z, Z_NULL);
62 Tracev((stderr, "inflate: reset\n"));
67 EXPORT_C int ZEXPORT inflateEnd(
70 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
71 return Z_STREAM_ERROR;
72 if (z->state->blocks != Z_NULL)
73 inflate_blocks_free(z->state->blocks, z);
76 Tracev((stderr, "inflate: end\n"));
81 EXPORT_C int ZEXPORT inflateInit2_(
87 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
88 stream_size != sizeof(z_stream))
89 return Z_VERSION_ERROR;
91 /* initialize state */
93 return Z_STREAM_ERROR;
95 if (z->zalloc == Z_NULL)
98 z->opaque = (voidpf)0;
100 if (z->zfree == Z_NULL) z->zfree = zcfree;
101 if ((z->state = (struct internal_state FAR *)
102 ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
104 z->state->blocks = Z_NULL;
106 /* handle undocumented nowrap option (no zlib header or check) */
107 z->state->nowrap = 0;
111 z->state->nowrap = 1;
114 /* set window size */
118 return Z_STREAM_ERROR;
120 z->state->wbits = (uInt)w;
122 /* create inflate_blocks state */
123 if ((z->state->blocks =
124 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
130 Tracev((stderr, "inflate: allocated\n"));
138 EXPORT_C int ZEXPORT inflateInit_(
143 return inflateInit2_(z, DEF_WBITS, version, stream_size);
147 #define NEEDBYTE {if(z->avail_in==0)return r;r=f;}
148 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
150 EXPORT_C int ZEXPORT inflate(
157 if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
158 return Z_STREAM_ERROR;
159 f = f == Z_FINISH ? Z_BUF_ERROR : Z_OK;
162 for (;;) switch (z->state->mode)
166 if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
168 z->state->mode = BAD;
169 z->msg = (char*)"unknown compression method";
170 z->state->sub.marker = 5; /* can't try inflateSync */
173 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
175 z->state->mode = BAD;
176 z->msg = (char*)"invalid window size";
177 z->state->sub.marker = 5; /* can't try inflateSync */
180 z->state->mode = FLAG;
184 if (((z->state->sub.method << 8) + b) % 31)
186 z->state->mode = BAD;
187 z->msg = (char*)"incorrect header check";
188 z->state->sub.marker = 5; /* can't try inflateSync */
191 Tracev((stderr, "inflate: zlib header ok\n"));
192 if (!(b & PRESET_DICT))
194 z->state->mode = BLOCKS;
197 z->state->mode = DICT4;
200 z->state->sub.check.need = (uLong)NEXTBYTE << 24;
201 z->state->mode = DICT3;
204 z->state->sub.check.need += (uLong)NEXTBYTE << 16;
205 z->state->mode = DICT2;
208 z->state->sub.check.need += (uLong)NEXTBYTE << 8;
209 z->state->mode = DICT1;
212 z->state->sub.check.need += (uLong)NEXTBYTE;
213 z->adler = z->state->sub.check.need;
214 z->state->mode = DICT0;
217 z->state->mode = BAD;
218 z->msg = (char*)"need dictionary";
219 z->state->sub.marker = 0; /* can try inflateSync */
220 return Z_STREAM_ERROR;
222 r = inflate_blocks(z->state->blocks, z, r);
223 if (r == Z_DATA_ERROR)
225 z->state->mode = BAD;
226 z->state->sub.marker = 0; /* can try inflateSync */
231 if (r != Z_STREAM_END)
234 inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
235 if (z->state->nowrap)
237 z->state->mode = DONE;
240 z->state->mode = CHECK4;
243 z->state->sub.check.need = (uLong)NEXTBYTE << 24;
244 z->state->mode = CHECK3;
247 z->state->sub.check.need += (uLong)NEXTBYTE << 16;
248 z->state->mode = CHECK2;
251 z->state->sub.check.need += (uLong)NEXTBYTE << 8;
252 z->state->mode = CHECK1;
255 z->state->sub.check.need += (uLong)NEXTBYTE;
257 if (z->state->sub.check.was != z->state->sub.check.need)
259 z->state->mode = BAD;
260 z->msg = (char*)"incorrect data check";
261 z->state->sub.marker = 5; /* can't try inflateSync */
264 Tracev((stderr, "inflate: zlib check ok\n"));
265 z->state->mode = DONE;
271 return Z_STREAM_ERROR;
273 #ifdef NEED_DUMMY_RETURN
274 return Z_STREAM_ERROR; /* Some dumb compilers complain without this */
279 EXPORT_C int ZEXPORT inflateSetDictionary(
281 const Bytef *dictionary,
284 uInt length = dictLength;
286 if (z == Z_NULL || z->state == Z_NULL || z->state->mode != DICT0)
287 return Z_STREAM_ERROR;
289 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
292 if (length >= ((uInt)1<<z->state->wbits))
294 length = (1<<z->state->wbits)-1;
295 dictionary += dictLength - length;
297 inflate_set_dictionary(z->state->blocks, dictionary, length);
298 z->state->mode = BLOCKS;
303 EXPORT_C int ZEXPORT inflateSync(
306 uInt n; /* number of bytes to look at */
307 Bytef *p; /* pointer to bytes */
308 uInt m; /* number of marker bytes found in a row */
309 uLong r, w; /* temporaries to save total_in and total_out */
312 if (z == Z_NULL || z->state == Z_NULL)
313 return Z_STREAM_ERROR;
314 if (z->state->mode != BAD)
316 z->state->mode = BAD;
317 z->state->sub.marker = 0;
319 if ((n = z->avail_in) == 0)
322 m = z->state->sub.marker;
327 static const Byte mark[4] = {0, 0, 0xff, 0xff};
338 z->total_in += p - z->next_in;
341 z->state->sub.marker = m;
343 /* return no joy or set up to restart on a new block */
346 r = z->total_in; w = z->total_out;
348 z->total_in = r; z->total_out = w;
349 z->state->mode = BLOCKS;
354 /* Returns true if inflate is currently at the end of a block generated
355 * by Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
356 * implementation to provide an additional safety check. PPP uses Z_SYNC_FLUSH
357 * but removes the length bytes of the resulting empty stored block. When
358 * decompressing, PPP checks that at the end of input packet, inflate is
359 * waiting for these length bytes.
361 EXPORT_C int ZEXPORT inflateSyncPoint(
364 if (z == Z_NULL || z->state == Z_NULL || z->state->blocks == Z_NULL)
365 return Z_STREAM_ERROR;
366 return inflate_blocks_sync_point(z->state->blocks);