annotate src/zlib-1.2.8/inflate.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1 /* inflate.c -- zlib decompression
cannam@128 2 * Copyright (C) 1995-2012 Mark Adler
cannam@128 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@128 4 */
cannam@128 5
cannam@128 6 /*
cannam@128 7 * Change history:
cannam@128 8 *
cannam@128 9 * 1.2.beta0 24 Nov 2002
cannam@128 10 * - First version -- complete rewrite of inflate to simplify code, avoid
cannam@128 11 * creation of window when not needed, minimize use of window when it is
cannam@128 12 * needed, make inffast.c even faster, implement gzip decoding, and to
cannam@128 13 * improve code readability and style over the previous zlib inflate code
cannam@128 14 *
cannam@128 15 * 1.2.beta1 25 Nov 2002
cannam@128 16 * - Use pointers for available input and output checking in inffast.c
cannam@128 17 * - Remove input and output counters in inffast.c
cannam@128 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
cannam@128 19 * - Remove unnecessary second byte pull from length extra in inffast.c
cannam@128 20 * - Unroll direct copy to three copies per loop in inffast.c
cannam@128 21 *
cannam@128 22 * 1.2.beta2 4 Dec 2002
cannam@128 23 * - Change external routine names to reduce potential conflicts
cannam@128 24 * - Correct filename to inffixed.h for fixed tables in inflate.c
cannam@128 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
cannam@128 26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
cannam@128 27 * to avoid negation problem on Alphas (64 bit) in inflate.c
cannam@128 28 *
cannam@128 29 * 1.2.beta3 22 Dec 2002
cannam@128 30 * - Add comments on state->bits assertion in inffast.c
cannam@128 31 * - Add comments on op field in inftrees.h
cannam@128 32 * - Fix bug in reuse of allocated window after inflateReset()
cannam@128 33 * - Remove bit fields--back to byte structure for speed
cannam@128 34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
cannam@128 35 * - Change post-increments to pre-increments in inflate_fast(), PPC biased?
cannam@128 36 * - Add compile time option, POSTINC, to use post-increments instead (Intel?)
cannam@128 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
cannam@128 38 * - Use local copies of stream next and avail values, as well as local bit
cannam@128 39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
cannam@128 40 *
cannam@128 41 * 1.2.beta4 1 Jan 2003
cannam@128 42 * - Split ptr - 257 statements in inflate_table() to avoid compiler warnings
cannam@128 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
cannam@128 44 * - Add comments in inffast.c to introduce the inflate_fast() routine
cannam@128 45 * - Rearrange window copies in inflate_fast() for speed and simplification
cannam@128 46 * - Unroll last copy for window match in inflate_fast()
cannam@128 47 * - Use local copies of window variables in inflate_fast() for speed
cannam@128 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
cannam@128 49 * - Make op and len in inflate_fast() unsigned for consistency
cannam@128 50 * - Add FAR to lcode and dcode declarations in inflate_fast()
cannam@128 51 * - Simplified bad distance check in inflate_fast()
cannam@128 52 * - Added inflateBackInit(), inflateBack(), and inflateBackEnd() in new
cannam@128 53 * source file infback.c to provide a call-back interface to inflate for
cannam@128 54 * programs like gzip and unzip -- uses window as output buffer to avoid
cannam@128 55 * window copying
cannam@128 56 *
cannam@128 57 * 1.2.beta5 1 Jan 2003
cannam@128 58 * - Improved inflateBack() interface to allow the caller to provide initial
cannam@128 59 * input in strm.
cannam@128 60 * - Fixed stored blocks bug in inflateBack()
cannam@128 61 *
cannam@128 62 * 1.2.beta6 4 Jan 2003
cannam@128 63 * - Added comments in inffast.c on effectiveness of POSTINC
cannam@128 64 * - Typecasting all around to reduce compiler warnings
cannam@128 65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
cannam@128 66 * make compilers happy
cannam@128 67 * - Changed type of window in inflateBackInit() to unsigned char *
cannam@128 68 *
cannam@128 69 * 1.2.beta7 27 Jan 2003
cannam@128 70 * - Changed many types to unsigned or unsigned short to avoid warnings
cannam@128 71 * - Added inflateCopy() function
cannam@128 72 *
cannam@128 73 * 1.2.0 9 Mar 2003
cannam@128 74 * - Changed inflateBack() interface to provide separate opaque descriptors
cannam@128 75 * for the in() and out() functions
cannam@128 76 * - Changed inflateBack() argument and in_func typedef to swap the length
cannam@128 77 * and buffer address return values for the input function
cannam@128 78 * - Check next_in and next_out for Z_NULL on entry to inflate()
cannam@128 79 *
cannam@128 80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
cannam@128 81 */
cannam@128 82
cannam@128 83 #include "zutil.h"
cannam@128 84 #include "inftrees.h"
cannam@128 85 #include "inflate.h"
cannam@128 86 #include "inffast.h"
cannam@128 87
cannam@128 88 #ifdef MAKEFIXED
cannam@128 89 # ifndef BUILDFIXED
cannam@128 90 # define BUILDFIXED
cannam@128 91 # endif
cannam@128 92 #endif
cannam@128 93
cannam@128 94 /* function prototypes */
cannam@128 95 local void fixedtables OF((struct inflate_state FAR *state));
cannam@128 96 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,
cannam@128 97 unsigned copy));
cannam@128 98 #ifdef BUILDFIXED
cannam@128 99 void makefixed OF((void));
cannam@128 100 #endif
cannam@128 101 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
cannam@128 102 unsigned len));
cannam@128 103
cannam@128 104 int ZEXPORT inflateResetKeep(strm)
cannam@128 105 z_streamp strm;
cannam@128 106 {
cannam@128 107 struct inflate_state FAR *state;
cannam@128 108
cannam@128 109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 110 state = (struct inflate_state FAR *)strm->state;
cannam@128 111 strm->total_in = strm->total_out = state->total = 0;
cannam@128 112 strm->msg = Z_NULL;
cannam@128 113 if (state->wrap) /* to support ill-conceived Java test suite */
cannam@128 114 strm->adler = state->wrap & 1;
cannam@128 115 state->mode = HEAD;
cannam@128 116 state->last = 0;
cannam@128 117 state->havedict = 0;
cannam@128 118 state->dmax = 32768U;
cannam@128 119 state->head = Z_NULL;
cannam@128 120 state->hold = 0;
cannam@128 121 state->bits = 0;
cannam@128 122 state->lencode = state->distcode = state->next = state->codes;
cannam@128 123 state->sane = 1;
cannam@128 124 state->back = -1;
cannam@128 125 Tracev((stderr, "inflate: reset\n"));
cannam@128 126 return Z_OK;
cannam@128 127 }
cannam@128 128
cannam@128 129 int ZEXPORT inflateReset(strm)
cannam@128 130 z_streamp strm;
cannam@128 131 {
cannam@128 132 struct inflate_state FAR *state;
cannam@128 133
cannam@128 134 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 135 state = (struct inflate_state FAR *)strm->state;
cannam@128 136 state->wsize = 0;
cannam@128 137 state->whave = 0;
cannam@128 138 state->wnext = 0;
cannam@128 139 return inflateResetKeep(strm);
cannam@128 140 }
cannam@128 141
cannam@128 142 int ZEXPORT inflateReset2(strm, windowBits)
cannam@128 143 z_streamp strm;
cannam@128 144 int windowBits;
cannam@128 145 {
cannam@128 146 int wrap;
cannam@128 147 struct inflate_state FAR *state;
cannam@128 148
cannam@128 149 /* get the state */
cannam@128 150 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 151 state = (struct inflate_state FAR *)strm->state;
cannam@128 152
cannam@128 153 /* extract wrap request from windowBits parameter */
cannam@128 154 if (windowBits < 0) {
cannam@128 155 wrap = 0;
cannam@128 156 windowBits = -windowBits;
cannam@128 157 }
cannam@128 158 else {
cannam@128 159 wrap = (windowBits >> 4) + 1;
cannam@128 160 #ifdef GUNZIP
cannam@128 161 if (windowBits < 48)
cannam@128 162 windowBits &= 15;
cannam@128 163 #endif
cannam@128 164 }
cannam@128 165
cannam@128 166 /* set number of window bits, free window if different */
cannam@128 167 if (windowBits && (windowBits < 8 || windowBits > 15))
cannam@128 168 return Z_STREAM_ERROR;
cannam@128 169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
cannam@128 170 ZFREE(strm, state->window);
cannam@128 171 state->window = Z_NULL;
cannam@128 172 }
cannam@128 173
cannam@128 174 /* update state and reset the rest of it */
cannam@128 175 state->wrap = wrap;
cannam@128 176 state->wbits = (unsigned)windowBits;
cannam@128 177 return inflateReset(strm);
cannam@128 178 }
cannam@128 179
cannam@128 180 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
cannam@128 181 z_streamp strm;
cannam@128 182 int windowBits;
cannam@128 183 const char *version;
cannam@128 184 int stream_size;
cannam@128 185 {
cannam@128 186 int ret;
cannam@128 187 struct inflate_state FAR *state;
cannam@128 188
cannam@128 189 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
cannam@128 190 stream_size != (int)(sizeof(z_stream)))
cannam@128 191 return Z_VERSION_ERROR;
cannam@128 192 if (strm == Z_NULL) return Z_STREAM_ERROR;
cannam@128 193 strm->msg = Z_NULL; /* in case we return an error */
cannam@128 194 if (strm->zalloc == (alloc_func)0) {
cannam@128 195 #ifdef Z_SOLO
cannam@128 196 return Z_STREAM_ERROR;
cannam@128 197 #else
cannam@128 198 strm->zalloc = zcalloc;
cannam@128 199 strm->opaque = (voidpf)0;
cannam@128 200 #endif
cannam@128 201 }
cannam@128 202 if (strm->zfree == (free_func)0)
cannam@128 203 #ifdef Z_SOLO
cannam@128 204 return Z_STREAM_ERROR;
cannam@128 205 #else
cannam@128 206 strm->zfree = zcfree;
cannam@128 207 #endif
cannam@128 208 state = (struct inflate_state FAR *)
cannam@128 209 ZALLOC(strm, 1, sizeof(struct inflate_state));
cannam@128 210 if (state == Z_NULL) return Z_MEM_ERROR;
cannam@128 211 Tracev((stderr, "inflate: allocated\n"));
cannam@128 212 strm->state = (struct internal_state FAR *)state;
cannam@128 213 state->window = Z_NULL;
cannam@128 214 ret = inflateReset2(strm, windowBits);
cannam@128 215 if (ret != Z_OK) {
cannam@128 216 ZFREE(strm, state);
cannam@128 217 strm->state = Z_NULL;
cannam@128 218 }
cannam@128 219 return ret;
cannam@128 220 }
cannam@128 221
cannam@128 222 int ZEXPORT inflateInit_(strm, version, stream_size)
cannam@128 223 z_streamp strm;
cannam@128 224 const char *version;
cannam@128 225 int stream_size;
cannam@128 226 {
cannam@128 227 return inflateInit2_(strm, DEF_WBITS, version, stream_size);
cannam@128 228 }
cannam@128 229
cannam@128 230 int ZEXPORT inflatePrime(strm, bits, value)
cannam@128 231 z_streamp strm;
cannam@128 232 int bits;
cannam@128 233 int value;
cannam@128 234 {
cannam@128 235 struct inflate_state FAR *state;
cannam@128 236
cannam@128 237 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 238 state = (struct inflate_state FAR *)strm->state;
cannam@128 239 if (bits < 0) {
cannam@128 240 state->hold = 0;
cannam@128 241 state->bits = 0;
cannam@128 242 return Z_OK;
cannam@128 243 }
cannam@128 244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
cannam@128 245 value &= (1L << bits) - 1;
cannam@128 246 state->hold += value << state->bits;
cannam@128 247 state->bits += bits;
cannam@128 248 return Z_OK;
cannam@128 249 }
cannam@128 250
cannam@128 251 /*
cannam@128 252 Return state with length and distance decoding tables and index sizes set to
cannam@128 253 fixed code decoding. Normally this returns fixed tables from inffixed.h.
cannam@128 254 If BUILDFIXED is defined, then instead this routine builds the tables the
cannam@128 255 first time it's called, and returns those tables the first time and
cannam@128 256 thereafter. This reduces the size of the code by about 2K bytes, in
cannam@128 257 exchange for a little execution time. However, BUILDFIXED should not be
cannam@128 258 used for threaded applications, since the rewriting of the tables and virgin
cannam@128 259 may not be thread-safe.
cannam@128 260 */
cannam@128 261 local void fixedtables(state)
cannam@128 262 struct inflate_state FAR *state;
cannam@128 263 {
cannam@128 264 #ifdef BUILDFIXED
cannam@128 265 static int virgin = 1;
cannam@128 266 static code *lenfix, *distfix;
cannam@128 267 static code fixed[544];
cannam@128 268
cannam@128 269 /* build fixed huffman tables if first call (may not be thread safe) */
cannam@128 270 if (virgin) {
cannam@128 271 unsigned sym, bits;
cannam@128 272 static code *next;
cannam@128 273
cannam@128 274 /* literal/length table */
cannam@128 275 sym = 0;
cannam@128 276 while (sym < 144) state->lens[sym++] = 8;
cannam@128 277 while (sym < 256) state->lens[sym++] = 9;
cannam@128 278 while (sym < 280) state->lens[sym++] = 7;
cannam@128 279 while (sym < 288) state->lens[sym++] = 8;
cannam@128 280 next = fixed;
cannam@128 281 lenfix = next;
cannam@128 282 bits = 9;
cannam@128 283 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
cannam@128 284
cannam@128 285 /* distance table */
cannam@128 286 sym = 0;
cannam@128 287 while (sym < 32) state->lens[sym++] = 5;
cannam@128 288 distfix = next;
cannam@128 289 bits = 5;
cannam@128 290 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
cannam@128 291
cannam@128 292 /* do this just once */
cannam@128 293 virgin = 0;
cannam@128 294 }
cannam@128 295 #else /* !BUILDFIXED */
cannam@128 296 # include "inffixed.h"
cannam@128 297 #endif /* BUILDFIXED */
cannam@128 298 state->lencode = lenfix;
cannam@128 299 state->lenbits = 9;
cannam@128 300 state->distcode = distfix;
cannam@128 301 state->distbits = 5;
cannam@128 302 }
cannam@128 303
cannam@128 304 #ifdef MAKEFIXED
cannam@128 305 #include <stdio.h>
cannam@128 306
cannam@128 307 /*
cannam@128 308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
cannam@128 309 defines BUILDFIXED, so the tables are built on the fly. makefixed() writes
cannam@128 310 those tables to stdout, which would be piped to inffixed.h. A small program
cannam@128 311 can simply call makefixed to do this:
cannam@128 312
cannam@128 313 void makefixed(void);
cannam@128 314
cannam@128 315 int main(void)
cannam@128 316 {
cannam@128 317 makefixed();
cannam@128 318 return 0;
cannam@128 319 }
cannam@128 320
cannam@128 321 Then that can be linked with zlib built with MAKEFIXED defined and run:
cannam@128 322
cannam@128 323 a.out > inffixed.h
cannam@128 324 */
cannam@128 325 void makefixed()
cannam@128 326 {
cannam@128 327 unsigned low, size;
cannam@128 328 struct inflate_state state;
cannam@128 329
cannam@128 330 fixedtables(&state);
cannam@128 331 puts(" /* inffixed.h -- table for decoding fixed codes");
cannam@128 332 puts(" * Generated automatically by makefixed().");
cannam@128 333 puts(" */");
cannam@128 334 puts("");
cannam@128 335 puts(" /* WARNING: this file should *not* be used by applications.");
cannam@128 336 puts(" It is part of the implementation of this library and is");
cannam@128 337 puts(" subject to change. Applications should only use zlib.h.");
cannam@128 338 puts(" */");
cannam@128 339 puts("");
cannam@128 340 size = 1U << 9;
cannam@128 341 printf(" static const code lenfix[%u] = {", size);
cannam@128 342 low = 0;
cannam@128 343 for (;;) {
cannam@128 344 if ((low % 7) == 0) printf("\n ");
cannam@128 345 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op,
cannam@128 346 state.lencode[low].bits, state.lencode[low].val);
cannam@128 347 if (++low == size) break;
cannam@128 348 putchar(',');
cannam@128 349 }
cannam@128 350 puts("\n };");
cannam@128 351 size = 1U << 5;
cannam@128 352 printf("\n static const code distfix[%u] = {", size);
cannam@128 353 low = 0;
cannam@128 354 for (;;) {
cannam@128 355 if ((low % 6) == 0) printf("\n ");
cannam@128 356 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
cannam@128 357 state.distcode[low].val);
cannam@128 358 if (++low == size) break;
cannam@128 359 putchar(',');
cannam@128 360 }
cannam@128 361 puts("\n };");
cannam@128 362 }
cannam@128 363 #endif /* MAKEFIXED */
cannam@128 364
cannam@128 365 /*
cannam@128 366 Update the window with the last wsize (normally 32K) bytes written before
cannam@128 367 returning. If window does not exist yet, create it. This is only called
cannam@128 368 when a window is already in use, or when output has been written during this
cannam@128 369 inflate call, but the end of the deflate stream has not been reached yet.
cannam@128 370 It is also called to create a window for dictionary data when a dictionary
cannam@128 371 is loaded.
cannam@128 372
cannam@128 373 Providing output buffers larger than 32K to inflate() should provide a speed
cannam@128 374 advantage, since only the last 32K of output is copied to the sliding window
cannam@128 375 upon return from inflate(), and since all distances after the first 32K of
cannam@128 376 output will fall in the output data, making match copies simpler and faster.
cannam@128 377 The advantage may be dependent on the size of the processor's data caches.
cannam@128 378 */
cannam@128 379 local int updatewindow(strm, end, copy)
cannam@128 380 z_streamp strm;
cannam@128 381 const Bytef *end;
cannam@128 382 unsigned copy;
cannam@128 383 {
cannam@128 384 struct inflate_state FAR *state;
cannam@128 385 unsigned dist;
cannam@128 386
cannam@128 387 state = (struct inflate_state FAR *)strm->state;
cannam@128 388
cannam@128 389 /* if it hasn't been done already, allocate space for the window */
cannam@128 390 if (state->window == Z_NULL) {
cannam@128 391 state->window = (unsigned char FAR *)
cannam@128 392 ZALLOC(strm, 1U << state->wbits,
cannam@128 393 sizeof(unsigned char));
cannam@128 394 if (state->window == Z_NULL) return 1;
cannam@128 395 }
cannam@128 396
cannam@128 397 /* if window not in use yet, initialize */
cannam@128 398 if (state->wsize == 0) {
cannam@128 399 state->wsize = 1U << state->wbits;
cannam@128 400 state->wnext = 0;
cannam@128 401 state->whave = 0;
cannam@128 402 }
cannam@128 403
cannam@128 404 /* copy state->wsize or less output bytes into the circular window */
cannam@128 405 if (copy >= state->wsize) {
cannam@128 406 zmemcpy(state->window, end - state->wsize, state->wsize);
cannam@128 407 state->wnext = 0;
cannam@128 408 state->whave = state->wsize;
cannam@128 409 }
cannam@128 410 else {
cannam@128 411 dist = state->wsize - state->wnext;
cannam@128 412 if (dist > copy) dist = copy;
cannam@128 413 zmemcpy(state->window + state->wnext, end - copy, dist);
cannam@128 414 copy -= dist;
cannam@128 415 if (copy) {
cannam@128 416 zmemcpy(state->window, end - copy, copy);
cannam@128 417 state->wnext = copy;
cannam@128 418 state->whave = state->wsize;
cannam@128 419 }
cannam@128 420 else {
cannam@128 421 state->wnext += dist;
cannam@128 422 if (state->wnext == state->wsize) state->wnext = 0;
cannam@128 423 if (state->whave < state->wsize) state->whave += dist;
cannam@128 424 }
cannam@128 425 }
cannam@128 426 return 0;
cannam@128 427 }
cannam@128 428
cannam@128 429 /* Macros for inflate(): */
cannam@128 430
cannam@128 431 /* check function to use adler32() for zlib or crc32() for gzip */
cannam@128 432 #ifdef GUNZIP
cannam@128 433 # define UPDATE(check, buf, len) \
cannam@128 434 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
cannam@128 435 #else
cannam@128 436 # define UPDATE(check, buf, len) adler32(check, buf, len)
cannam@128 437 #endif
cannam@128 438
cannam@128 439 /* check macros for header crc */
cannam@128 440 #ifdef GUNZIP
cannam@128 441 # define CRC2(check, word) \
cannam@128 442 do { \
cannam@128 443 hbuf[0] = (unsigned char)(word); \
cannam@128 444 hbuf[1] = (unsigned char)((word) >> 8); \
cannam@128 445 check = crc32(check, hbuf, 2); \
cannam@128 446 } while (0)
cannam@128 447
cannam@128 448 # define CRC4(check, word) \
cannam@128 449 do { \
cannam@128 450 hbuf[0] = (unsigned char)(word); \
cannam@128 451 hbuf[1] = (unsigned char)((word) >> 8); \
cannam@128 452 hbuf[2] = (unsigned char)((word) >> 16); \
cannam@128 453 hbuf[3] = (unsigned char)((word) >> 24); \
cannam@128 454 check = crc32(check, hbuf, 4); \
cannam@128 455 } while (0)
cannam@128 456 #endif
cannam@128 457
cannam@128 458 /* Load registers with state in inflate() for speed */
cannam@128 459 #define LOAD() \
cannam@128 460 do { \
cannam@128 461 put = strm->next_out; \
cannam@128 462 left = strm->avail_out; \
cannam@128 463 next = strm->next_in; \
cannam@128 464 have = strm->avail_in; \
cannam@128 465 hold = state->hold; \
cannam@128 466 bits = state->bits; \
cannam@128 467 } while (0)
cannam@128 468
cannam@128 469 /* Restore state from registers in inflate() */
cannam@128 470 #define RESTORE() \
cannam@128 471 do { \
cannam@128 472 strm->next_out = put; \
cannam@128 473 strm->avail_out = left; \
cannam@128 474 strm->next_in = next; \
cannam@128 475 strm->avail_in = have; \
cannam@128 476 state->hold = hold; \
cannam@128 477 state->bits = bits; \
cannam@128 478 } while (0)
cannam@128 479
cannam@128 480 /* Clear the input bit accumulator */
cannam@128 481 #define INITBITS() \
cannam@128 482 do { \
cannam@128 483 hold = 0; \
cannam@128 484 bits = 0; \
cannam@128 485 } while (0)
cannam@128 486
cannam@128 487 /* Get a byte of input into the bit accumulator, or return from inflate()
cannam@128 488 if there is no input available. */
cannam@128 489 #define PULLBYTE() \
cannam@128 490 do { \
cannam@128 491 if (have == 0) goto inf_leave; \
cannam@128 492 have--; \
cannam@128 493 hold += (unsigned long)(*next++) << bits; \
cannam@128 494 bits += 8; \
cannam@128 495 } while (0)
cannam@128 496
cannam@128 497 /* Assure that there are at least n bits in the bit accumulator. If there is
cannam@128 498 not enough available input to do that, then return from inflate(). */
cannam@128 499 #define NEEDBITS(n) \
cannam@128 500 do { \
cannam@128 501 while (bits < (unsigned)(n)) \
cannam@128 502 PULLBYTE(); \
cannam@128 503 } while (0)
cannam@128 504
cannam@128 505 /* Return the low n bits of the bit accumulator (n < 16) */
cannam@128 506 #define BITS(n) \
cannam@128 507 ((unsigned)hold & ((1U << (n)) - 1))
cannam@128 508
cannam@128 509 /* Remove n bits from the bit accumulator */
cannam@128 510 #define DROPBITS(n) \
cannam@128 511 do { \
cannam@128 512 hold >>= (n); \
cannam@128 513 bits -= (unsigned)(n); \
cannam@128 514 } while (0)
cannam@128 515
cannam@128 516 /* Remove zero to seven bits as needed to go to a byte boundary */
cannam@128 517 #define BYTEBITS() \
cannam@128 518 do { \
cannam@128 519 hold >>= bits & 7; \
cannam@128 520 bits -= bits & 7; \
cannam@128 521 } while (0)
cannam@128 522
cannam@128 523 /*
cannam@128 524 inflate() uses a state machine to process as much input data and generate as
cannam@128 525 much output data as possible before returning. The state machine is
cannam@128 526 structured roughly as follows:
cannam@128 527
cannam@128 528 for (;;) switch (state) {
cannam@128 529 ...
cannam@128 530 case STATEn:
cannam@128 531 if (not enough input data or output space to make progress)
cannam@128 532 return;
cannam@128 533 ... make progress ...
cannam@128 534 state = STATEm;
cannam@128 535 break;
cannam@128 536 ...
cannam@128 537 }
cannam@128 538
cannam@128 539 so when inflate() is called again, the same case is attempted again, and
cannam@128 540 if the appropriate resources are provided, the machine proceeds to the
cannam@128 541 next state. The NEEDBITS() macro is usually the way the state evaluates
cannam@128 542 whether it can proceed or should return. NEEDBITS() does the return if
cannam@128 543 the requested bits are not available. The typical use of the BITS macros
cannam@128 544 is:
cannam@128 545
cannam@128 546 NEEDBITS(n);
cannam@128 547 ... do something with BITS(n) ...
cannam@128 548 DROPBITS(n);
cannam@128 549
cannam@128 550 where NEEDBITS(n) either returns from inflate() if there isn't enough
cannam@128 551 input left to load n bits into the accumulator, or it continues. BITS(n)
cannam@128 552 gives the low n bits in the accumulator. When done, DROPBITS(n) drops
cannam@128 553 the low n bits off the accumulator. INITBITS() clears the accumulator
cannam@128 554 and sets the number of available bits to zero. BYTEBITS() discards just
cannam@128 555 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
cannam@128 556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
cannam@128 557
cannam@128 558 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
cannam@128 559 if there is no input available. The decoding of variable length codes uses
cannam@128 560 PULLBYTE() directly in order to pull just enough bytes to decode the next
cannam@128 561 code, and no more.
cannam@128 562
cannam@128 563 Some states loop until they get enough input, making sure that enough
cannam@128 564 state information is maintained to continue the loop where it left off
cannam@128 565 if NEEDBITS() returns in the loop. For example, want, need, and keep
cannam@128 566 would all have to actually be part of the saved state in case NEEDBITS()
cannam@128 567 returns:
cannam@128 568
cannam@128 569 case STATEw:
cannam@128 570 while (want < need) {
cannam@128 571 NEEDBITS(n);
cannam@128 572 keep[want++] = BITS(n);
cannam@128 573 DROPBITS(n);
cannam@128 574 }
cannam@128 575 state = STATEx;
cannam@128 576 case STATEx:
cannam@128 577
cannam@128 578 As shown above, if the next state is also the next case, then the break
cannam@128 579 is omitted.
cannam@128 580
cannam@128 581 A state may also return if there is not enough output space available to
cannam@128 582 complete that state. Those states are copying stored data, writing a
cannam@128 583 literal byte, and copying a matching string.
cannam@128 584
cannam@128 585 When returning, a "goto inf_leave" is used to update the total counters,
cannam@128 586 update the check value, and determine whether any progress has been made
cannam@128 587 during that inflate() call in order to return the proper return code.
cannam@128 588 Progress is defined as a change in either strm->avail_in or strm->avail_out.
cannam@128 589 When there is a window, goto inf_leave will update the window with the last
cannam@128 590 output written. If a goto inf_leave occurs in the middle of decompression
cannam@128 591 and there is no window currently, goto inf_leave will create one and copy
cannam@128 592 output to the window for the next call of inflate().
cannam@128 593
cannam@128 594 In this implementation, the flush parameter of inflate() only affects the
cannam@128 595 return code (per zlib.h). inflate() always writes as much as possible to
cannam@128 596 strm->next_out, given the space available and the provided input--the effect
cannam@128 597 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
cannam@128 598 the allocation of and copying into a sliding window until necessary, which
cannam@128 599 provides the effect documented in zlib.h for Z_FINISH when the entire input
cannam@128 600 stream available. So the only thing the flush parameter actually does is:
cannam@128 601 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
cannam@128 602 will return Z_BUF_ERROR if it has not reached the end of the stream.
cannam@128 603 */
cannam@128 604
cannam@128 605 int ZEXPORT inflate(strm, flush)
cannam@128 606 z_streamp strm;
cannam@128 607 int flush;
cannam@128 608 {
cannam@128 609 struct inflate_state FAR *state;
cannam@128 610 z_const unsigned char FAR *next; /* next input */
cannam@128 611 unsigned char FAR *put; /* next output */
cannam@128 612 unsigned have, left; /* available input and output */
cannam@128 613 unsigned long hold; /* bit buffer */
cannam@128 614 unsigned bits; /* bits in bit buffer */
cannam@128 615 unsigned in, out; /* save starting available input and output */
cannam@128 616 unsigned copy; /* number of stored or match bytes to copy */
cannam@128 617 unsigned char FAR *from; /* where to copy match bytes from */
cannam@128 618 code here; /* current decoding table entry */
cannam@128 619 code last; /* parent table entry */
cannam@128 620 unsigned len; /* length to copy for repeats, bits to drop */
cannam@128 621 int ret; /* return code */
cannam@128 622 #ifdef GUNZIP
cannam@128 623 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */
cannam@128 624 #endif
cannam@128 625 static const unsigned short order[19] = /* permutation of code lengths */
cannam@128 626 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
cannam@128 627
cannam@128 628 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL ||
cannam@128 629 (strm->next_in == Z_NULL && strm->avail_in != 0))
cannam@128 630 return Z_STREAM_ERROR;
cannam@128 631
cannam@128 632 state = (struct inflate_state FAR *)strm->state;
cannam@128 633 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
cannam@128 634 LOAD();
cannam@128 635 in = have;
cannam@128 636 out = left;
cannam@128 637 ret = Z_OK;
cannam@128 638 for (;;)
cannam@128 639 switch (state->mode) {
cannam@128 640 case HEAD:
cannam@128 641 if (state->wrap == 0) {
cannam@128 642 state->mode = TYPEDO;
cannam@128 643 break;
cannam@128 644 }
cannam@128 645 NEEDBITS(16);
cannam@128 646 #ifdef GUNZIP
cannam@128 647 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */
cannam@128 648 state->check = crc32(0L, Z_NULL, 0);
cannam@128 649 CRC2(state->check, hold);
cannam@128 650 INITBITS();
cannam@128 651 state->mode = FLAGS;
cannam@128 652 break;
cannam@128 653 }
cannam@128 654 state->flags = 0; /* expect zlib header */
cannam@128 655 if (state->head != Z_NULL)
cannam@128 656 state->head->done = -1;
cannam@128 657 if (!(state->wrap & 1) || /* check if zlib header allowed */
cannam@128 658 #else
cannam@128 659 if (
cannam@128 660 #endif
cannam@128 661 ((BITS(8) << 8) + (hold >> 8)) % 31) {
cannam@128 662 strm->msg = (char *)"incorrect header check";
cannam@128 663 state->mode = BAD;
cannam@128 664 break;
cannam@128 665 }
cannam@128 666 if (BITS(4) != Z_DEFLATED) {
cannam@128 667 strm->msg = (char *)"unknown compression method";
cannam@128 668 state->mode = BAD;
cannam@128 669 break;
cannam@128 670 }
cannam@128 671 DROPBITS(4);
cannam@128 672 len = BITS(4) + 8;
cannam@128 673 if (state->wbits == 0)
cannam@128 674 state->wbits = len;
cannam@128 675 else if (len > state->wbits) {
cannam@128 676 strm->msg = (char *)"invalid window size";
cannam@128 677 state->mode = BAD;
cannam@128 678 break;
cannam@128 679 }
cannam@128 680 state->dmax = 1U << len;
cannam@128 681 Tracev((stderr, "inflate: zlib header ok\n"));
cannam@128 682 strm->adler = state->check = adler32(0L, Z_NULL, 0);
cannam@128 683 state->mode = hold & 0x200 ? DICTID : TYPE;
cannam@128 684 INITBITS();
cannam@128 685 break;
cannam@128 686 #ifdef GUNZIP
cannam@128 687 case FLAGS:
cannam@128 688 NEEDBITS(16);
cannam@128 689 state->flags = (int)(hold);
cannam@128 690 if ((state->flags & 0xff) != Z_DEFLATED) {
cannam@128 691 strm->msg = (char *)"unknown compression method";
cannam@128 692 state->mode = BAD;
cannam@128 693 break;
cannam@128 694 }
cannam@128 695 if (state->flags & 0xe000) {
cannam@128 696 strm->msg = (char *)"unknown header flags set";
cannam@128 697 state->mode = BAD;
cannam@128 698 break;
cannam@128 699 }
cannam@128 700 if (state->head != Z_NULL)
cannam@128 701 state->head->text = (int)((hold >> 8) & 1);
cannam@128 702 if (state->flags & 0x0200) CRC2(state->check, hold);
cannam@128 703 INITBITS();
cannam@128 704 state->mode = TIME;
cannam@128 705 case TIME:
cannam@128 706 NEEDBITS(32);
cannam@128 707 if (state->head != Z_NULL)
cannam@128 708 state->head->time = hold;
cannam@128 709 if (state->flags & 0x0200) CRC4(state->check, hold);
cannam@128 710 INITBITS();
cannam@128 711 state->mode = OS;
cannam@128 712 case OS:
cannam@128 713 NEEDBITS(16);
cannam@128 714 if (state->head != Z_NULL) {
cannam@128 715 state->head->xflags = (int)(hold & 0xff);
cannam@128 716 state->head->os = (int)(hold >> 8);
cannam@128 717 }
cannam@128 718 if (state->flags & 0x0200) CRC2(state->check, hold);
cannam@128 719 INITBITS();
cannam@128 720 state->mode = EXLEN;
cannam@128 721 case EXLEN:
cannam@128 722 if (state->flags & 0x0400) {
cannam@128 723 NEEDBITS(16);
cannam@128 724 state->length = (unsigned)(hold);
cannam@128 725 if (state->head != Z_NULL)
cannam@128 726 state->head->extra_len = (unsigned)hold;
cannam@128 727 if (state->flags & 0x0200) CRC2(state->check, hold);
cannam@128 728 INITBITS();
cannam@128 729 }
cannam@128 730 else if (state->head != Z_NULL)
cannam@128 731 state->head->extra = Z_NULL;
cannam@128 732 state->mode = EXTRA;
cannam@128 733 case EXTRA:
cannam@128 734 if (state->flags & 0x0400) {
cannam@128 735 copy = state->length;
cannam@128 736 if (copy > have) copy = have;
cannam@128 737 if (copy) {
cannam@128 738 if (state->head != Z_NULL &&
cannam@128 739 state->head->extra != Z_NULL) {
cannam@128 740 len = state->head->extra_len - state->length;
cannam@128 741 zmemcpy(state->head->extra + len, next,
cannam@128 742 len + copy > state->head->extra_max ?
cannam@128 743 state->head->extra_max - len : copy);
cannam@128 744 }
cannam@128 745 if (state->flags & 0x0200)
cannam@128 746 state->check = crc32(state->check, next, copy);
cannam@128 747 have -= copy;
cannam@128 748 next += copy;
cannam@128 749 state->length -= copy;
cannam@128 750 }
cannam@128 751 if (state->length) goto inf_leave;
cannam@128 752 }
cannam@128 753 state->length = 0;
cannam@128 754 state->mode = NAME;
cannam@128 755 case NAME:
cannam@128 756 if (state->flags & 0x0800) {
cannam@128 757 if (have == 0) goto inf_leave;
cannam@128 758 copy = 0;
cannam@128 759 do {
cannam@128 760 len = (unsigned)(next[copy++]);
cannam@128 761 if (state->head != Z_NULL &&
cannam@128 762 state->head->name != Z_NULL &&
cannam@128 763 state->length < state->head->name_max)
cannam@128 764 state->head->name[state->length++] = len;
cannam@128 765 } while (len && copy < have);
cannam@128 766 if (state->flags & 0x0200)
cannam@128 767 state->check = crc32(state->check, next, copy);
cannam@128 768 have -= copy;
cannam@128 769 next += copy;
cannam@128 770 if (len) goto inf_leave;
cannam@128 771 }
cannam@128 772 else if (state->head != Z_NULL)
cannam@128 773 state->head->name = Z_NULL;
cannam@128 774 state->length = 0;
cannam@128 775 state->mode = COMMENT;
cannam@128 776 case COMMENT:
cannam@128 777 if (state->flags & 0x1000) {
cannam@128 778 if (have == 0) goto inf_leave;
cannam@128 779 copy = 0;
cannam@128 780 do {
cannam@128 781 len = (unsigned)(next[copy++]);
cannam@128 782 if (state->head != Z_NULL &&
cannam@128 783 state->head->comment != Z_NULL &&
cannam@128 784 state->length < state->head->comm_max)
cannam@128 785 state->head->comment[state->length++] = len;
cannam@128 786 } while (len && copy < have);
cannam@128 787 if (state->flags & 0x0200)
cannam@128 788 state->check = crc32(state->check, next, copy);
cannam@128 789 have -= copy;
cannam@128 790 next += copy;
cannam@128 791 if (len) goto inf_leave;
cannam@128 792 }
cannam@128 793 else if (state->head != Z_NULL)
cannam@128 794 state->head->comment = Z_NULL;
cannam@128 795 state->mode = HCRC;
cannam@128 796 case HCRC:
cannam@128 797 if (state->flags & 0x0200) {
cannam@128 798 NEEDBITS(16);
cannam@128 799 if (hold != (state->check & 0xffff)) {
cannam@128 800 strm->msg = (char *)"header crc mismatch";
cannam@128 801 state->mode = BAD;
cannam@128 802 break;
cannam@128 803 }
cannam@128 804 INITBITS();
cannam@128 805 }
cannam@128 806 if (state->head != Z_NULL) {
cannam@128 807 state->head->hcrc = (int)((state->flags >> 9) & 1);
cannam@128 808 state->head->done = 1;
cannam@128 809 }
cannam@128 810 strm->adler = state->check = crc32(0L, Z_NULL, 0);
cannam@128 811 state->mode = TYPE;
cannam@128 812 break;
cannam@128 813 #endif
cannam@128 814 case DICTID:
cannam@128 815 NEEDBITS(32);
cannam@128 816 strm->adler = state->check = ZSWAP32(hold);
cannam@128 817 INITBITS();
cannam@128 818 state->mode = DICT;
cannam@128 819 case DICT:
cannam@128 820 if (state->havedict == 0) {
cannam@128 821 RESTORE();
cannam@128 822 return Z_NEED_DICT;
cannam@128 823 }
cannam@128 824 strm->adler = state->check = adler32(0L, Z_NULL, 0);
cannam@128 825 state->mode = TYPE;
cannam@128 826 case TYPE:
cannam@128 827 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
cannam@128 828 case TYPEDO:
cannam@128 829 if (state->last) {
cannam@128 830 BYTEBITS();
cannam@128 831 state->mode = CHECK;
cannam@128 832 break;
cannam@128 833 }
cannam@128 834 NEEDBITS(3);
cannam@128 835 state->last = BITS(1);
cannam@128 836 DROPBITS(1);
cannam@128 837 switch (BITS(2)) {
cannam@128 838 case 0: /* stored block */
cannam@128 839 Tracev((stderr, "inflate: stored block%s\n",
cannam@128 840 state->last ? " (last)" : ""));
cannam@128 841 state->mode = STORED;
cannam@128 842 break;
cannam@128 843 case 1: /* fixed block */
cannam@128 844 fixedtables(state);
cannam@128 845 Tracev((stderr, "inflate: fixed codes block%s\n",
cannam@128 846 state->last ? " (last)" : ""));
cannam@128 847 state->mode = LEN_; /* decode codes */
cannam@128 848 if (flush == Z_TREES) {
cannam@128 849 DROPBITS(2);
cannam@128 850 goto inf_leave;
cannam@128 851 }
cannam@128 852 break;
cannam@128 853 case 2: /* dynamic block */
cannam@128 854 Tracev((stderr, "inflate: dynamic codes block%s\n",
cannam@128 855 state->last ? " (last)" : ""));
cannam@128 856 state->mode = TABLE;
cannam@128 857 break;
cannam@128 858 case 3:
cannam@128 859 strm->msg = (char *)"invalid block type";
cannam@128 860 state->mode = BAD;
cannam@128 861 }
cannam@128 862 DROPBITS(2);
cannam@128 863 break;
cannam@128 864 case STORED:
cannam@128 865 BYTEBITS(); /* go to byte boundary */
cannam@128 866 NEEDBITS(32);
cannam@128 867 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
cannam@128 868 strm->msg = (char *)"invalid stored block lengths";
cannam@128 869 state->mode = BAD;
cannam@128 870 break;
cannam@128 871 }
cannam@128 872 state->length = (unsigned)hold & 0xffff;
cannam@128 873 Tracev((stderr, "inflate: stored length %u\n",
cannam@128 874 state->length));
cannam@128 875 INITBITS();
cannam@128 876 state->mode = COPY_;
cannam@128 877 if (flush == Z_TREES) goto inf_leave;
cannam@128 878 case COPY_:
cannam@128 879 state->mode = COPY;
cannam@128 880 case COPY:
cannam@128 881 copy = state->length;
cannam@128 882 if (copy) {
cannam@128 883 if (copy > have) copy = have;
cannam@128 884 if (copy > left) copy = left;
cannam@128 885 if (copy == 0) goto inf_leave;
cannam@128 886 zmemcpy(put, next, copy);
cannam@128 887 have -= copy;
cannam@128 888 next += copy;
cannam@128 889 left -= copy;
cannam@128 890 put += copy;
cannam@128 891 state->length -= copy;
cannam@128 892 break;
cannam@128 893 }
cannam@128 894 Tracev((stderr, "inflate: stored end\n"));
cannam@128 895 state->mode = TYPE;
cannam@128 896 break;
cannam@128 897 case TABLE:
cannam@128 898 NEEDBITS(14);
cannam@128 899 state->nlen = BITS(5) + 257;
cannam@128 900 DROPBITS(5);
cannam@128 901 state->ndist = BITS(5) + 1;
cannam@128 902 DROPBITS(5);
cannam@128 903 state->ncode = BITS(4) + 4;
cannam@128 904 DROPBITS(4);
cannam@128 905 #ifndef PKZIP_BUG_WORKAROUND
cannam@128 906 if (state->nlen > 286 || state->ndist > 30) {
cannam@128 907 strm->msg = (char *)"too many length or distance symbols";
cannam@128 908 state->mode = BAD;
cannam@128 909 break;
cannam@128 910 }
cannam@128 911 #endif
cannam@128 912 Tracev((stderr, "inflate: table sizes ok\n"));
cannam@128 913 state->have = 0;
cannam@128 914 state->mode = LENLENS;
cannam@128 915 case LENLENS:
cannam@128 916 while (state->have < state->ncode) {
cannam@128 917 NEEDBITS(3);
cannam@128 918 state->lens[order[state->have++]] = (unsigned short)BITS(3);
cannam@128 919 DROPBITS(3);
cannam@128 920 }
cannam@128 921 while (state->have < 19)
cannam@128 922 state->lens[order[state->have++]] = 0;
cannam@128 923 state->next = state->codes;
cannam@128 924 state->lencode = (const code FAR *)(state->next);
cannam@128 925 state->lenbits = 7;
cannam@128 926 ret = inflate_table(CODES, state->lens, 19, &(state->next),
cannam@128 927 &(state->lenbits), state->work);
cannam@128 928 if (ret) {
cannam@128 929 strm->msg = (char *)"invalid code lengths set";
cannam@128 930 state->mode = BAD;
cannam@128 931 break;
cannam@128 932 }
cannam@128 933 Tracev((stderr, "inflate: code lengths ok\n"));
cannam@128 934 state->have = 0;
cannam@128 935 state->mode = CODELENS;
cannam@128 936 case CODELENS:
cannam@128 937 while (state->have < state->nlen + state->ndist) {
cannam@128 938 for (;;) {
cannam@128 939 here = state->lencode[BITS(state->lenbits)];
cannam@128 940 if ((unsigned)(here.bits) <= bits) break;
cannam@128 941 PULLBYTE();
cannam@128 942 }
cannam@128 943 if (here.val < 16) {
cannam@128 944 DROPBITS(here.bits);
cannam@128 945 state->lens[state->have++] = here.val;
cannam@128 946 }
cannam@128 947 else {
cannam@128 948 if (here.val == 16) {
cannam@128 949 NEEDBITS(here.bits + 2);
cannam@128 950 DROPBITS(here.bits);
cannam@128 951 if (state->have == 0) {
cannam@128 952 strm->msg = (char *)"invalid bit length repeat";
cannam@128 953 state->mode = BAD;
cannam@128 954 break;
cannam@128 955 }
cannam@128 956 len = state->lens[state->have - 1];
cannam@128 957 copy = 3 + BITS(2);
cannam@128 958 DROPBITS(2);
cannam@128 959 }
cannam@128 960 else if (here.val == 17) {
cannam@128 961 NEEDBITS(here.bits + 3);
cannam@128 962 DROPBITS(here.bits);
cannam@128 963 len = 0;
cannam@128 964 copy = 3 + BITS(3);
cannam@128 965 DROPBITS(3);
cannam@128 966 }
cannam@128 967 else {
cannam@128 968 NEEDBITS(here.bits + 7);
cannam@128 969 DROPBITS(here.bits);
cannam@128 970 len = 0;
cannam@128 971 copy = 11 + BITS(7);
cannam@128 972 DROPBITS(7);
cannam@128 973 }
cannam@128 974 if (state->have + copy > state->nlen + state->ndist) {
cannam@128 975 strm->msg = (char *)"invalid bit length repeat";
cannam@128 976 state->mode = BAD;
cannam@128 977 break;
cannam@128 978 }
cannam@128 979 while (copy--)
cannam@128 980 state->lens[state->have++] = (unsigned short)len;
cannam@128 981 }
cannam@128 982 }
cannam@128 983
cannam@128 984 /* handle error breaks in while */
cannam@128 985 if (state->mode == BAD) break;
cannam@128 986
cannam@128 987 /* check for end-of-block code (better have one) */
cannam@128 988 if (state->lens[256] == 0) {
cannam@128 989 strm->msg = (char *)"invalid code -- missing end-of-block";
cannam@128 990 state->mode = BAD;
cannam@128 991 break;
cannam@128 992 }
cannam@128 993
cannam@128 994 /* build code tables -- note: do not change the lenbits or distbits
cannam@128 995 values here (9 and 6) without reading the comments in inftrees.h
cannam@128 996 concerning the ENOUGH constants, which depend on those values */
cannam@128 997 state->next = state->codes;
cannam@128 998 state->lencode = (const code FAR *)(state->next);
cannam@128 999 state->lenbits = 9;
cannam@128 1000 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
cannam@128 1001 &(state->lenbits), state->work);
cannam@128 1002 if (ret) {
cannam@128 1003 strm->msg = (char *)"invalid literal/lengths set";
cannam@128 1004 state->mode = BAD;
cannam@128 1005 break;
cannam@128 1006 }
cannam@128 1007 state->distcode = (const code FAR *)(state->next);
cannam@128 1008 state->distbits = 6;
cannam@128 1009 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
cannam@128 1010 &(state->next), &(state->distbits), state->work);
cannam@128 1011 if (ret) {
cannam@128 1012 strm->msg = (char *)"invalid distances set";
cannam@128 1013 state->mode = BAD;
cannam@128 1014 break;
cannam@128 1015 }
cannam@128 1016 Tracev((stderr, "inflate: codes ok\n"));
cannam@128 1017 state->mode = LEN_;
cannam@128 1018 if (flush == Z_TREES) goto inf_leave;
cannam@128 1019 case LEN_:
cannam@128 1020 state->mode = LEN;
cannam@128 1021 case LEN:
cannam@128 1022 if (have >= 6 && left >= 258) {
cannam@128 1023 RESTORE();
cannam@128 1024 inflate_fast(strm, out);
cannam@128 1025 LOAD();
cannam@128 1026 if (state->mode == TYPE)
cannam@128 1027 state->back = -1;
cannam@128 1028 break;
cannam@128 1029 }
cannam@128 1030 state->back = 0;
cannam@128 1031 for (;;) {
cannam@128 1032 here = state->lencode[BITS(state->lenbits)];
cannam@128 1033 if ((unsigned)(here.bits) <= bits) break;
cannam@128 1034 PULLBYTE();
cannam@128 1035 }
cannam@128 1036 if (here.op && (here.op & 0xf0) == 0) {
cannam@128 1037 last = here;
cannam@128 1038 for (;;) {
cannam@128 1039 here = state->lencode[last.val +
cannam@128 1040 (BITS(last.bits + last.op) >> last.bits)];
cannam@128 1041 if ((unsigned)(last.bits + here.bits) <= bits) break;
cannam@128 1042 PULLBYTE();
cannam@128 1043 }
cannam@128 1044 DROPBITS(last.bits);
cannam@128 1045 state->back += last.bits;
cannam@128 1046 }
cannam@128 1047 DROPBITS(here.bits);
cannam@128 1048 state->back += here.bits;
cannam@128 1049 state->length = (unsigned)here.val;
cannam@128 1050 if ((int)(here.op) == 0) {
cannam@128 1051 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
cannam@128 1052 "inflate: literal '%c'\n" :
cannam@128 1053 "inflate: literal 0x%02x\n", here.val));
cannam@128 1054 state->mode = LIT;
cannam@128 1055 break;
cannam@128 1056 }
cannam@128 1057 if (here.op & 32) {
cannam@128 1058 Tracevv((stderr, "inflate: end of block\n"));
cannam@128 1059 state->back = -1;
cannam@128 1060 state->mode = TYPE;
cannam@128 1061 break;
cannam@128 1062 }
cannam@128 1063 if (here.op & 64) {
cannam@128 1064 strm->msg = (char *)"invalid literal/length code";
cannam@128 1065 state->mode = BAD;
cannam@128 1066 break;
cannam@128 1067 }
cannam@128 1068 state->extra = (unsigned)(here.op) & 15;
cannam@128 1069 state->mode = LENEXT;
cannam@128 1070 case LENEXT:
cannam@128 1071 if (state->extra) {
cannam@128 1072 NEEDBITS(state->extra);
cannam@128 1073 state->length += BITS(state->extra);
cannam@128 1074 DROPBITS(state->extra);
cannam@128 1075 state->back += state->extra;
cannam@128 1076 }
cannam@128 1077 Tracevv((stderr, "inflate: length %u\n", state->length));
cannam@128 1078 state->was = state->length;
cannam@128 1079 state->mode = DIST;
cannam@128 1080 case DIST:
cannam@128 1081 for (;;) {
cannam@128 1082 here = state->distcode[BITS(state->distbits)];
cannam@128 1083 if ((unsigned)(here.bits) <= bits) break;
cannam@128 1084 PULLBYTE();
cannam@128 1085 }
cannam@128 1086 if ((here.op & 0xf0) == 0) {
cannam@128 1087 last = here;
cannam@128 1088 for (;;) {
cannam@128 1089 here = state->distcode[last.val +
cannam@128 1090 (BITS(last.bits + last.op) >> last.bits)];
cannam@128 1091 if ((unsigned)(last.bits + here.bits) <= bits) break;
cannam@128 1092 PULLBYTE();
cannam@128 1093 }
cannam@128 1094 DROPBITS(last.bits);
cannam@128 1095 state->back += last.bits;
cannam@128 1096 }
cannam@128 1097 DROPBITS(here.bits);
cannam@128 1098 state->back += here.bits;
cannam@128 1099 if (here.op & 64) {
cannam@128 1100 strm->msg = (char *)"invalid distance code";
cannam@128 1101 state->mode = BAD;
cannam@128 1102 break;
cannam@128 1103 }
cannam@128 1104 state->offset = (unsigned)here.val;
cannam@128 1105 state->extra = (unsigned)(here.op) & 15;
cannam@128 1106 state->mode = DISTEXT;
cannam@128 1107 case DISTEXT:
cannam@128 1108 if (state->extra) {
cannam@128 1109 NEEDBITS(state->extra);
cannam@128 1110 state->offset += BITS(state->extra);
cannam@128 1111 DROPBITS(state->extra);
cannam@128 1112 state->back += state->extra;
cannam@128 1113 }
cannam@128 1114 #ifdef INFLATE_STRICT
cannam@128 1115 if (state->offset > state->dmax) {
cannam@128 1116 strm->msg = (char *)"invalid distance too far back";
cannam@128 1117 state->mode = BAD;
cannam@128 1118 break;
cannam@128 1119 }
cannam@128 1120 #endif
cannam@128 1121 Tracevv((stderr, "inflate: distance %u\n", state->offset));
cannam@128 1122 state->mode = MATCH;
cannam@128 1123 case MATCH:
cannam@128 1124 if (left == 0) goto inf_leave;
cannam@128 1125 copy = out - left;
cannam@128 1126 if (state->offset > copy) { /* copy from window */
cannam@128 1127 copy = state->offset - copy;
cannam@128 1128 if (copy > state->whave) {
cannam@128 1129 if (state->sane) {
cannam@128 1130 strm->msg = (char *)"invalid distance too far back";
cannam@128 1131 state->mode = BAD;
cannam@128 1132 break;
cannam@128 1133 }
cannam@128 1134 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
cannam@128 1135 Trace((stderr, "inflate.c too far\n"));
cannam@128 1136 copy -= state->whave;
cannam@128 1137 if (copy > state->length) copy = state->length;
cannam@128 1138 if (copy > left) copy = left;
cannam@128 1139 left -= copy;
cannam@128 1140 state->length -= copy;
cannam@128 1141 do {
cannam@128 1142 *put++ = 0;
cannam@128 1143 } while (--copy);
cannam@128 1144 if (state->length == 0) state->mode = LEN;
cannam@128 1145 break;
cannam@128 1146 #endif
cannam@128 1147 }
cannam@128 1148 if (copy > state->wnext) {
cannam@128 1149 copy -= state->wnext;
cannam@128 1150 from = state->window + (state->wsize - copy);
cannam@128 1151 }
cannam@128 1152 else
cannam@128 1153 from = state->window + (state->wnext - copy);
cannam@128 1154 if (copy > state->length) copy = state->length;
cannam@128 1155 }
cannam@128 1156 else { /* copy from output */
cannam@128 1157 from = put - state->offset;
cannam@128 1158 copy = state->length;
cannam@128 1159 }
cannam@128 1160 if (copy > left) copy = left;
cannam@128 1161 left -= copy;
cannam@128 1162 state->length -= copy;
cannam@128 1163 do {
cannam@128 1164 *put++ = *from++;
cannam@128 1165 } while (--copy);
cannam@128 1166 if (state->length == 0) state->mode = LEN;
cannam@128 1167 break;
cannam@128 1168 case LIT:
cannam@128 1169 if (left == 0) goto inf_leave;
cannam@128 1170 *put++ = (unsigned char)(state->length);
cannam@128 1171 left--;
cannam@128 1172 state->mode = LEN;
cannam@128 1173 break;
cannam@128 1174 case CHECK:
cannam@128 1175 if (state->wrap) {
cannam@128 1176 NEEDBITS(32);
cannam@128 1177 out -= left;
cannam@128 1178 strm->total_out += out;
cannam@128 1179 state->total += out;
cannam@128 1180 if (out)
cannam@128 1181 strm->adler = state->check =
cannam@128 1182 UPDATE(state->check, put - out, out);
cannam@128 1183 out = left;
cannam@128 1184 if ((
cannam@128 1185 #ifdef GUNZIP
cannam@128 1186 state->flags ? hold :
cannam@128 1187 #endif
cannam@128 1188 ZSWAP32(hold)) != state->check) {
cannam@128 1189 strm->msg = (char *)"incorrect data check";
cannam@128 1190 state->mode = BAD;
cannam@128 1191 break;
cannam@128 1192 }
cannam@128 1193 INITBITS();
cannam@128 1194 Tracev((stderr, "inflate: check matches trailer\n"));
cannam@128 1195 }
cannam@128 1196 #ifdef GUNZIP
cannam@128 1197 state->mode = LENGTH;
cannam@128 1198 case LENGTH:
cannam@128 1199 if (state->wrap && state->flags) {
cannam@128 1200 NEEDBITS(32);
cannam@128 1201 if (hold != (state->total & 0xffffffffUL)) {
cannam@128 1202 strm->msg = (char *)"incorrect length check";
cannam@128 1203 state->mode = BAD;
cannam@128 1204 break;
cannam@128 1205 }
cannam@128 1206 INITBITS();
cannam@128 1207 Tracev((stderr, "inflate: length matches trailer\n"));
cannam@128 1208 }
cannam@128 1209 #endif
cannam@128 1210 state->mode = DONE;
cannam@128 1211 case DONE:
cannam@128 1212 ret = Z_STREAM_END;
cannam@128 1213 goto inf_leave;
cannam@128 1214 case BAD:
cannam@128 1215 ret = Z_DATA_ERROR;
cannam@128 1216 goto inf_leave;
cannam@128 1217 case MEM:
cannam@128 1218 return Z_MEM_ERROR;
cannam@128 1219 case SYNC:
cannam@128 1220 default:
cannam@128 1221 return Z_STREAM_ERROR;
cannam@128 1222 }
cannam@128 1223
cannam@128 1224 /*
cannam@128 1225 Return from inflate(), updating the total counts and the check value.
cannam@128 1226 If there was no progress during the inflate() call, return a buffer
cannam@128 1227 error. Call updatewindow() to create and/or update the window state.
cannam@128 1228 Note: a memory error from inflate() is non-recoverable.
cannam@128 1229 */
cannam@128 1230 inf_leave:
cannam@128 1231 RESTORE();
cannam@128 1232 if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
cannam@128 1233 (state->mode < CHECK || flush != Z_FINISH)))
cannam@128 1234 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) {
cannam@128 1235 state->mode = MEM;
cannam@128 1236 return Z_MEM_ERROR;
cannam@128 1237 }
cannam@128 1238 in -= strm->avail_in;
cannam@128 1239 out -= strm->avail_out;
cannam@128 1240 strm->total_in += in;
cannam@128 1241 strm->total_out += out;
cannam@128 1242 state->total += out;
cannam@128 1243 if (state->wrap && out)
cannam@128 1244 strm->adler = state->check =
cannam@128 1245 UPDATE(state->check, strm->next_out - out, out);
cannam@128 1246 strm->data_type = state->bits + (state->last ? 64 : 0) +
cannam@128 1247 (state->mode == TYPE ? 128 : 0) +
cannam@128 1248 (state->mode == LEN_ || state->mode == COPY_ ? 256 : 0);
cannam@128 1249 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
cannam@128 1250 ret = Z_BUF_ERROR;
cannam@128 1251 return ret;
cannam@128 1252 }
cannam@128 1253
cannam@128 1254 int ZEXPORT inflateEnd(strm)
cannam@128 1255 z_streamp strm;
cannam@128 1256 {
cannam@128 1257 struct inflate_state FAR *state;
cannam@128 1258 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
cannam@128 1259 return Z_STREAM_ERROR;
cannam@128 1260 state = (struct inflate_state FAR *)strm->state;
cannam@128 1261 if (state->window != Z_NULL) ZFREE(strm, state->window);
cannam@128 1262 ZFREE(strm, strm->state);
cannam@128 1263 strm->state = Z_NULL;
cannam@128 1264 Tracev((stderr, "inflate: end\n"));
cannam@128 1265 return Z_OK;
cannam@128 1266 }
cannam@128 1267
cannam@128 1268 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength)
cannam@128 1269 z_streamp strm;
cannam@128 1270 Bytef *dictionary;
cannam@128 1271 uInt *dictLength;
cannam@128 1272 {
cannam@128 1273 struct inflate_state FAR *state;
cannam@128 1274
cannam@128 1275 /* check state */
cannam@128 1276 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 1277 state = (struct inflate_state FAR *)strm->state;
cannam@128 1278
cannam@128 1279 /* copy dictionary */
cannam@128 1280 if (state->whave && dictionary != Z_NULL) {
cannam@128 1281 zmemcpy(dictionary, state->window + state->wnext,
cannam@128 1282 state->whave - state->wnext);
cannam@128 1283 zmemcpy(dictionary + state->whave - state->wnext,
cannam@128 1284 state->window, state->wnext);
cannam@128 1285 }
cannam@128 1286 if (dictLength != Z_NULL)
cannam@128 1287 *dictLength = state->whave;
cannam@128 1288 return Z_OK;
cannam@128 1289 }
cannam@128 1290
cannam@128 1291 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength)
cannam@128 1292 z_streamp strm;
cannam@128 1293 const Bytef *dictionary;
cannam@128 1294 uInt dictLength;
cannam@128 1295 {
cannam@128 1296 struct inflate_state FAR *state;
cannam@128 1297 unsigned long dictid;
cannam@128 1298 int ret;
cannam@128 1299
cannam@128 1300 /* check state */
cannam@128 1301 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 1302 state = (struct inflate_state FAR *)strm->state;
cannam@128 1303 if (state->wrap != 0 && state->mode != DICT)
cannam@128 1304 return Z_STREAM_ERROR;
cannam@128 1305
cannam@128 1306 /* check for correct dictionary identifier */
cannam@128 1307 if (state->mode == DICT) {
cannam@128 1308 dictid = adler32(0L, Z_NULL, 0);
cannam@128 1309 dictid = adler32(dictid, dictionary, dictLength);
cannam@128 1310 if (dictid != state->check)
cannam@128 1311 return Z_DATA_ERROR;
cannam@128 1312 }
cannam@128 1313
cannam@128 1314 /* copy dictionary to window using updatewindow(), which will amend the
cannam@128 1315 existing dictionary if appropriate */
cannam@128 1316 ret = updatewindow(strm, dictionary + dictLength, dictLength);
cannam@128 1317 if (ret) {
cannam@128 1318 state->mode = MEM;
cannam@128 1319 return Z_MEM_ERROR;
cannam@128 1320 }
cannam@128 1321 state->havedict = 1;
cannam@128 1322 Tracev((stderr, "inflate: dictionary set\n"));
cannam@128 1323 return Z_OK;
cannam@128 1324 }
cannam@128 1325
cannam@128 1326 int ZEXPORT inflateGetHeader(strm, head)
cannam@128 1327 z_streamp strm;
cannam@128 1328 gz_headerp head;
cannam@128 1329 {
cannam@128 1330 struct inflate_state FAR *state;
cannam@128 1331
cannam@128 1332 /* check state */
cannam@128 1333 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 1334 state = (struct inflate_state FAR *)strm->state;
cannam@128 1335 if ((state->wrap & 2) == 0) return Z_STREAM_ERROR;
cannam@128 1336
cannam@128 1337 /* save header structure */
cannam@128 1338 state->head = head;
cannam@128 1339 head->done = 0;
cannam@128 1340 return Z_OK;
cannam@128 1341 }
cannam@128 1342
cannam@128 1343 /*
cannam@128 1344 Search buf[0..len-1] for the pattern: 0, 0, 0xff, 0xff. Return when found
cannam@128 1345 or when out of input. When called, *have is the number of pattern bytes
cannam@128 1346 found in order so far, in 0..3. On return *have is updated to the new
cannam@128 1347 state. If on return *have equals four, then the pattern was found and the
cannam@128 1348 return value is how many bytes were read including the last byte of the
cannam@128 1349 pattern. If *have is less than four, then the pattern has not been found
cannam@128 1350 yet and the return value is len. In the latter case, syncsearch() can be
cannam@128 1351 called again with more data and the *have state. *have is initialized to
cannam@128 1352 zero for the first call.
cannam@128 1353 */
cannam@128 1354 local unsigned syncsearch(have, buf, len)
cannam@128 1355 unsigned FAR *have;
cannam@128 1356 const unsigned char FAR *buf;
cannam@128 1357 unsigned len;
cannam@128 1358 {
cannam@128 1359 unsigned got;
cannam@128 1360 unsigned next;
cannam@128 1361
cannam@128 1362 got = *have;
cannam@128 1363 next = 0;
cannam@128 1364 while (next < len && got < 4) {
cannam@128 1365 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
cannam@128 1366 got++;
cannam@128 1367 else if (buf[next])
cannam@128 1368 got = 0;
cannam@128 1369 else
cannam@128 1370 got = 4 - got;
cannam@128 1371 next++;
cannam@128 1372 }
cannam@128 1373 *have = got;
cannam@128 1374 return next;
cannam@128 1375 }
cannam@128 1376
cannam@128 1377 int ZEXPORT inflateSync(strm)
cannam@128 1378 z_streamp strm;
cannam@128 1379 {
cannam@128 1380 unsigned len; /* number of bytes to look at or looked at */
cannam@128 1381 unsigned long in, out; /* temporary to save total_in and total_out */
cannam@128 1382 unsigned char buf[4]; /* to restore bit buffer to byte string */
cannam@128 1383 struct inflate_state FAR *state;
cannam@128 1384
cannam@128 1385 /* check parameters */
cannam@128 1386 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 1387 state = (struct inflate_state FAR *)strm->state;
cannam@128 1388 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
cannam@128 1389
cannam@128 1390 /* if first time, start search in bit buffer */
cannam@128 1391 if (state->mode != SYNC) {
cannam@128 1392 state->mode = SYNC;
cannam@128 1393 state->hold <<= state->bits & 7;
cannam@128 1394 state->bits -= state->bits & 7;
cannam@128 1395 len = 0;
cannam@128 1396 while (state->bits >= 8) {
cannam@128 1397 buf[len++] = (unsigned char)(state->hold);
cannam@128 1398 state->hold >>= 8;
cannam@128 1399 state->bits -= 8;
cannam@128 1400 }
cannam@128 1401 state->have = 0;
cannam@128 1402 syncsearch(&(state->have), buf, len);
cannam@128 1403 }
cannam@128 1404
cannam@128 1405 /* search available input */
cannam@128 1406 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
cannam@128 1407 strm->avail_in -= len;
cannam@128 1408 strm->next_in += len;
cannam@128 1409 strm->total_in += len;
cannam@128 1410
cannam@128 1411 /* return no joy or set up to restart inflate() on a new block */
cannam@128 1412 if (state->have != 4) return Z_DATA_ERROR;
cannam@128 1413 in = strm->total_in; out = strm->total_out;
cannam@128 1414 inflateReset(strm);
cannam@128 1415 strm->total_in = in; strm->total_out = out;
cannam@128 1416 state->mode = TYPE;
cannam@128 1417 return Z_OK;
cannam@128 1418 }
cannam@128 1419
cannam@128 1420 /*
cannam@128 1421 Returns true if inflate is currently at the end of a block generated by
cannam@128 1422 Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
cannam@128 1423 implementation to provide an additional safety check. PPP uses
cannam@128 1424 Z_SYNC_FLUSH but removes the length bytes of the resulting empty stored
cannam@128 1425 block. When decompressing, PPP checks that at the end of input packet,
cannam@128 1426 inflate is waiting for these length bytes.
cannam@128 1427 */
cannam@128 1428 int ZEXPORT inflateSyncPoint(strm)
cannam@128 1429 z_streamp strm;
cannam@128 1430 {
cannam@128 1431 struct inflate_state FAR *state;
cannam@128 1432
cannam@128 1433 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 1434 state = (struct inflate_state FAR *)strm->state;
cannam@128 1435 return state->mode == STORED && state->bits == 0;
cannam@128 1436 }
cannam@128 1437
cannam@128 1438 int ZEXPORT inflateCopy(dest, source)
cannam@128 1439 z_streamp dest;
cannam@128 1440 z_streamp source;
cannam@128 1441 {
cannam@128 1442 struct inflate_state FAR *state;
cannam@128 1443 struct inflate_state FAR *copy;
cannam@128 1444 unsigned char FAR *window;
cannam@128 1445 unsigned wsize;
cannam@128 1446
cannam@128 1447 /* check input */
cannam@128 1448 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
cannam@128 1449 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
cannam@128 1450 return Z_STREAM_ERROR;
cannam@128 1451 state = (struct inflate_state FAR *)source->state;
cannam@128 1452
cannam@128 1453 /* allocate space */
cannam@128 1454 copy = (struct inflate_state FAR *)
cannam@128 1455 ZALLOC(source, 1, sizeof(struct inflate_state));
cannam@128 1456 if (copy == Z_NULL) return Z_MEM_ERROR;
cannam@128 1457 window = Z_NULL;
cannam@128 1458 if (state->window != Z_NULL) {
cannam@128 1459 window = (unsigned char FAR *)
cannam@128 1460 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
cannam@128 1461 if (window == Z_NULL) {
cannam@128 1462 ZFREE(source, copy);
cannam@128 1463 return Z_MEM_ERROR;
cannam@128 1464 }
cannam@128 1465 }
cannam@128 1466
cannam@128 1467 /* copy state */
cannam@128 1468 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
cannam@128 1469 zmemcpy((voidpf)copy, (voidpf)state, sizeof(struct inflate_state));
cannam@128 1470 if (state->lencode >= state->codes &&
cannam@128 1471 state->lencode <= state->codes + ENOUGH - 1) {
cannam@128 1472 copy->lencode = copy->codes + (state->lencode - state->codes);
cannam@128 1473 copy->distcode = copy->codes + (state->distcode - state->codes);
cannam@128 1474 }
cannam@128 1475 copy->next = copy->codes + (state->next - state->codes);
cannam@128 1476 if (window != Z_NULL) {
cannam@128 1477 wsize = 1U << state->wbits;
cannam@128 1478 zmemcpy(window, state->window, wsize);
cannam@128 1479 }
cannam@128 1480 copy->window = window;
cannam@128 1481 dest->state = (struct internal_state FAR *)copy;
cannam@128 1482 return Z_OK;
cannam@128 1483 }
cannam@128 1484
cannam@128 1485 int ZEXPORT inflateUndermine(strm, subvert)
cannam@128 1486 z_streamp strm;
cannam@128 1487 int subvert;
cannam@128 1488 {
cannam@128 1489 struct inflate_state FAR *state;
cannam@128 1490
cannam@128 1491 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
cannam@128 1492 state = (struct inflate_state FAR *)strm->state;
cannam@128 1493 state->sane = !subvert;
cannam@128 1494 #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
cannam@128 1495 return Z_OK;
cannam@128 1496 #else
cannam@128 1497 state->sane = 1;
cannam@128 1498 return Z_DATA_ERROR;
cannam@128 1499 #endif
cannam@128 1500 }
cannam@128 1501
cannam@128 1502 long ZEXPORT inflateMark(strm)
cannam@128 1503 z_streamp strm;
cannam@128 1504 {
cannam@128 1505 struct inflate_state FAR *state;
cannam@128 1506
cannam@128 1507 if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
cannam@128 1508 state = (struct inflate_state FAR *)strm->state;
cannam@128 1509 return ((long)(state->back) << 16) +
cannam@128 1510 (state->mode == COPY ? state->length :
cannam@128 1511 (state->mode == MATCH ? state->was - state->length : 0));
cannam@128 1512 }