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 int ZEXPORT inflateReset(z_streamp z)
55 if (z == Z_NULL || z->state == Z_NULL)
56 return Z_STREAM_ERROR;
57 z->total_in = z->total_out = 0;
59 z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
60 inflate_blocks_reset(z->state->blocks, z, Z_NULL);
61 Tracev((stderr, "inflate: reset\n"));
66 int ZEXPORT inflateEnd(z_streamp z)
68 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
69 return Z_STREAM_ERROR;
70 if (z->state->blocks != Z_NULL)
71 inflate_blocks_free(z->state->blocks, z);
74 Tracev((stderr, "inflate: end\n"));
79 int ZEXPORT inflateInit2_(z_streamp z, int w, const char *version, int stream_size)
81 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
82 stream_size != sizeof(z_stream))
83 return Z_VERSION_ERROR;
85 /* initialize state */
87 return Z_STREAM_ERROR;
89 if (z->zalloc == Z_NULL)
92 z->opaque = (voidpf)0;
94 if (z->zfree == Z_NULL) z->zfree = zcfree;
95 if ((z->state = (struct internal_state FAR *)
96 ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
98 z->state->blocks = Z_NULL;
100 /* handle undocumented nowrap option (no zlib header or check) */
101 z->state->nowrap = 0;
105 z->state->nowrap = 1;
108 /* set window size */
112 return Z_STREAM_ERROR;
114 z->state->wbits = (uInt)w;
116 /* create inflate_blocks state */
117 if ((z->state->blocks =
118 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
124 Tracev((stderr, "inflate: allocated\n"));
132 int ZEXPORT inflateInit_(z_streamp z, const char *version, int stream_size)
134 return inflateInit2_(z, DEF_WBITS, version, stream_size);
138 #define NEEDBYTE {if(z->avail_in==0)return r;r=f;}
139 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
141 int ZEXPORT inflate(z_streamp z, int f)
146 if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
147 return Z_STREAM_ERROR;
148 f = f == Z_FINISH ? Z_BUF_ERROR : Z_OK;
150 while (1) switch (z->state->mode)
154 if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
156 z->state->mode = BAD;
157 z->msg = (char*)"unknown compression method";
158 z->state->sub.marker = 5; /* can't try inflateSync */
161 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
163 z->state->mode = BAD;
164 z->msg = (char*)"invalid window size";
165 z->state->sub.marker = 5; /* can't try inflateSync */
168 z->state->mode = FLAG;
172 if (((z->state->sub.method << 8) + b) % 31)
174 z->state->mode = BAD;
175 z->msg = (char*)"incorrect header check";
176 z->state->sub.marker = 5; /* can't try inflateSync */
179 Tracev((stderr, "inflate: zlib header ok\n"));
180 if (!(b & PRESET_DICT))
182 z->state->mode = BLOCKS;
185 z->state->mode = DICT4;
188 z->state->sub.check.need = (uLong)NEXTBYTE << 24;
189 z->state->mode = DICT3;
192 z->state->sub.check.need += (uLong)NEXTBYTE << 16;
193 z->state->mode = DICT2;
196 z->state->sub.check.need += (uLong)NEXTBYTE << 8;
197 z->state->mode = DICT1;
200 z->state->sub.check.need += (uLong)NEXTBYTE;
201 z->adler = z->state->sub.check.need;
202 z->state->mode = DICT0;
205 z->state->mode = BAD;
206 z->msg = (char*)"need dictionary";
207 z->state->sub.marker = 0; /* can try inflateSync */
208 return Z_STREAM_ERROR;
210 r = inflate_blocks(z->state->blocks, z, r);
211 if (r == Z_DATA_ERROR)
213 z->state->mode = BAD;
214 z->state->sub.marker = 0; /* can try inflateSync */
219 if (r != Z_STREAM_END)
222 inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
223 if (z->state->nowrap)
225 z->state->mode = DONE;
228 z->state->mode = CHECK4;
231 z->state->sub.check.need = (uLong)NEXTBYTE << 24;
232 z->state->mode = CHECK3;
235 z->state->sub.check.need += (uLong)NEXTBYTE << 16;
236 z->state->mode = CHECK2;
239 z->state->sub.check.need += (uLong)NEXTBYTE << 8;
240 z->state->mode = CHECK1;
243 z->state->sub.check.need += (uLong)NEXTBYTE;
245 if (z->state->sub.check.was != z->state->sub.check.need)
247 z->state->mode = BAD;
248 z->msg = (char*)"incorrect data check";
249 z->state->sub.marker = 5; /* can't try inflateSync */
252 Tracev((stderr, "inflate: zlib check ok\n"));
253 z->state->mode = DONE;
259 return Z_STREAM_ERROR;
261 #ifdef NEED_DUMMY_RETURN
262 return Z_STREAM_ERROR; /* Some dumb compilers complain without this */
267 int ZEXPORT inflateSetDictionary(z_streamp z,const Bytef *dictionary, uInt dictLength)
269 uInt length = dictLength;
271 if (z == Z_NULL || z->state == Z_NULL || z->state->mode != DICT0)
272 return Z_STREAM_ERROR;
274 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
277 if (length >= ((uInt)1<<z->state->wbits))
279 length = (1<<z->state->wbits)-1;
280 dictionary += dictLength - length;
282 inflate_set_dictionary(z->state->blocks, dictionary, length);
283 z->state->mode = BLOCKS;
288 int ZEXPORT inflateSync(z_streamp z)
290 uInt n; /* number of bytes to look at */
291 Bytef *p; /* pointer to bytes */
292 uInt m; /* number of marker bytes found in a row */
293 uLong r, w; /* temporaries to save total_in and total_out */
296 if (z == Z_NULL || z->state == Z_NULL)
297 return Z_STREAM_ERROR;
298 if (z->state->mode != BAD)
300 z->state->mode = BAD;
301 z->state->sub.marker = 0;
303 if ((n = z->avail_in) == 0)
306 m = z->state->sub.marker;
311 static const Byte mark[4] = {0, 0, 0xff, 0xff};
322 z->total_in += p - z->next_in;
325 z->state->sub.marker = m;
327 /* return no joy or set up to restart on a new block */
330 r = z->total_in; w = z->total_out;
332 z->total_in = r; z->total_out = w;
333 z->state->mode = BLOCKS;
338 /* Returns true if inflate is currently at the end of a block generated
339 * by Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
340 * implementation to provide an additional safety check. PPP uses Z_SYNC_FLUSH
341 * but removes the length bytes of the resulting empty stored block. When
342 * decompressing, PPP checks that at the end of input packet, inflate is
343 * waiting for these length bytes.
345 int ZEXPORT inflateSyncPoint(z_streamp z)
347 if (z == Z_NULL || z->state == Z_NULL || z->state->blocks == Z_NULL)
348 return Z_STREAM_ERROR;
349 return inflate_blocks_sync_point(z->state->blocks);