annotate src/zlib-1.2.8/infback.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 /* infback.c -- inflate using a call-back interface
cannam@128 2 * Copyright (C) 1995-2011 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 This code is largely copied from inflate.c. Normally either infback.o or
cannam@128 8 inflate.o would be linked into an application--not both. The interface
cannam@128 9 with inffast.c is retained so that optimized assembler-coded versions of
cannam@128 10 inflate_fast() can be used with either inflate.c or infback.c.
cannam@128 11 */
cannam@128 12
cannam@128 13 #include "zutil.h"
cannam@128 14 #include "inftrees.h"
cannam@128 15 #include "inflate.h"
cannam@128 16 #include "inffast.h"
cannam@128 17
cannam@128 18 /* function prototypes */
cannam@128 19 local void fixedtables OF((struct inflate_state FAR *state));
cannam@128 20
cannam@128 21 /*
cannam@128 22 strm provides memory allocation functions in zalloc and zfree, or
cannam@128 23 Z_NULL to use the library memory allocation functions.
cannam@128 24
cannam@128 25 windowBits is in the range 8..15, and window is a user-supplied
cannam@128 26 window and output buffer that is 2**windowBits bytes.
cannam@128 27 */
cannam@128 28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
cannam@128 29 z_streamp strm;
cannam@128 30 int windowBits;
cannam@128 31 unsigned char FAR *window;
cannam@128 32 const char *version;
cannam@128 33 int stream_size;
cannam@128 34 {
cannam@128 35 struct inflate_state FAR *state;
cannam@128 36
cannam@128 37 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
cannam@128 38 stream_size != (int)(sizeof(z_stream)))
cannam@128 39 return Z_VERSION_ERROR;
cannam@128 40 if (strm == Z_NULL || window == Z_NULL ||
cannam@128 41 windowBits < 8 || windowBits > 15)
cannam@128 42 return Z_STREAM_ERROR;
cannam@128 43 strm->msg = Z_NULL; /* in case we return an error */
cannam@128 44 if (strm->zalloc == (alloc_func)0) {
cannam@128 45 #ifdef Z_SOLO
cannam@128 46 return Z_STREAM_ERROR;
cannam@128 47 #else
cannam@128 48 strm->zalloc = zcalloc;
cannam@128 49 strm->opaque = (voidpf)0;
cannam@128 50 #endif
cannam@128 51 }
cannam@128 52 if (strm->zfree == (free_func)0)
cannam@128 53 #ifdef Z_SOLO
cannam@128 54 return Z_STREAM_ERROR;
cannam@128 55 #else
cannam@128 56 strm->zfree = zcfree;
cannam@128 57 #endif
cannam@128 58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
cannam@128 59 sizeof(struct inflate_state));
cannam@128 60 if (state == Z_NULL) return Z_MEM_ERROR;
cannam@128 61 Tracev((stderr, "inflate: allocated\n"));
cannam@128 62 strm->state = (struct internal_state FAR *)state;
cannam@128 63 state->dmax = 32768U;
cannam@128 64 state->wbits = windowBits;
cannam@128 65 state->wsize = 1U << windowBits;
cannam@128 66 state->window = window;
cannam@128 67 state->wnext = 0;
cannam@128 68 state->whave = 0;
cannam@128 69 return Z_OK;
cannam@128 70 }
cannam@128 71
cannam@128 72 /*
cannam@128 73 Return state with length and distance decoding tables and index sizes set to
cannam@128 74 fixed code decoding. Normally this returns fixed tables from inffixed.h.
cannam@128 75 If BUILDFIXED is defined, then instead this routine builds the tables the
cannam@128 76 first time it's called, and returns those tables the first time and
cannam@128 77 thereafter. This reduces the size of the code by about 2K bytes, in
cannam@128 78 exchange for a little execution time. However, BUILDFIXED should not be
cannam@128 79 used for threaded applications, since the rewriting of the tables and virgin
cannam@128 80 may not be thread-safe.
cannam@128 81 */
cannam@128 82 local void fixedtables(state)
cannam@128 83 struct inflate_state FAR *state;
cannam@128 84 {
cannam@128 85 #ifdef BUILDFIXED
cannam@128 86 static int virgin = 1;
cannam@128 87 static code *lenfix, *distfix;
cannam@128 88 static code fixed[544];
cannam@128 89
cannam@128 90 /* build fixed huffman tables if first call (may not be thread safe) */
cannam@128 91 if (virgin) {
cannam@128 92 unsigned sym, bits;
cannam@128 93 static code *next;
cannam@128 94
cannam@128 95 /* literal/length table */
cannam@128 96 sym = 0;
cannam@128 97 while (sym < 144) state->lens[sym++] = 8;
cannam@128 98 while (sym < 256) state->lens[sym++] = 9;
cannam@128 99 while (sym < 280) state->lens[sym++] = 7;
cannam@128 100 while (sym < 288) state->lens[sym++] = 8;
cannam@128 101 next = fixed;
cannam@128 102 lenfix = next;
cannam@128 103 bits = 9;
cannam@128 104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
cannam@128 105
cannam@128 106 /* distance table */
cannam@128 107 sym = 0;
cannam@128 108 while (sym < 32) state->lens[sym++] = 5;
cannam@128 109 distfix = next;
cannam@128 110 bits = 5;
cannam@128 111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
cannam@128 112
cannam@128 113 /* do this just once */
cannam@128 114 virgin = 0;
cannam@128 115 }
cannam@128 116 #else /* !BUILDFIXED */
cannam@128 117 # include "inffixed.h"
cannam@128 118 #endif /* BUILDFIXED */
cannam@128 119 state->lencode = lenfix;
cannam@128 120 state->lenbits = 9;
cannam@128 121 state->distcode = distfix;
cannam@128 122 state->distbits = 5;
cannam@128 123 }
cannam@128 124
cannam@128 125 /* Macros for inflateBack(): */
cannam@128 126
cannam@128 127 /* Load returned state from inflate_fast() */
cannam@128 128 #define LOAD() \
cannam@128 129 do { \
cannam@128 130 put = strm->next_out; \
cannam@128 131 left = strm->avail_out; \
cannam@128 132 next = strm->next_in; \
cannam@128 133 have = strm->avail_in; \
cannam@128 134 hold = state->hold; \
cannam@128 135 bits = state->bits; \
cannam@128 136 } while (0)
cannam@128 137
cannam@128 138 /* Set state from registers for inflate_fast() */
cannam@128 139 #define RESTORE() \
cannam@128 140 do { \
cannam@128 141 strm->next_out = put; \
cannam@128 142 strm->avail_out = left; \
cannam@128 143 strm->next_in = next; \
cannam@128 144 strm->avail_in = have; \
cannam@128 145 state->hold = hold; \
cannam@128 146 state->bits = bits; \
cannam@128 147 } while (0)
cannam@128 148
cannam@128 149 /* Clear the input bit accumulator */
cannam@128 150 #define INITBITS() \
cannam@128 151 do { \
cannam@128 152 hold = 0; \
cannam@128 153 bits = 0; \
cannam@128 154 } while (0)
cannam@128 155
cannam@128 156 /* Assure that some input is available. If input is requested, but denied,
cannam@128 157 then return a Z_BUF_ERROR from inflateBack(). */
cannam@128 158 #define PULL() \
cannam@128 159 do { \
cannam@128 160 if (have == 0) { \
cannam@128 161 have = in(in_desc, &next); \
cannam@128 162 if (have == 0) { \
cannam@128 163 next = Z_NULL; \
cannam@128 164 ret = Z_BUF_ERROR; \
cannam@128 165 goto inf_leave; \
cannam@128 166 } \
cannam@128 167 } \
cannam@128 168 } while (0)
cannam@128 169
cannam@128 170 /* Get a byte of input into the bit accumulator, or return from inflateBack()
cannam@128 171 with an error if there is no input available. */
cannam@128 172 #define PULLBYTE() \
cannam@128 173 do { \
cannam@128 174 PULL(); \
cannam@128 175 have--; \
cannam@128 176 hold += (unsigned long)(*next++) << bits; \
cannam@128 177 bits += 8; \
cannam@128 178 } while (0)
cannam@128 179
cannam@128 180 /* Assure that there are at least n bits in the bit accumulator. If there is
cannam@128 181 not enough available input to do that, then return from inflateBack() with
cannam@128 182 an error. */
cannam@128 183 #define NEEDBITS(n) \
cannam@128 184 do { \
cannam@128 185 while (bits < (unsigned)(n)) \
cannam@128 186 PULLBYTE(); \
cannam@128 187 } while (0)
cannam@128 188
cannam@128 189 /* Return the low n bits of the bit accumulator (n < 16) */
cannam@128 190 #define BITS(n) \
cannam@128 191 ((unsigned)hold & ((1U << (n)) - 1))
cannam@128 192
cannam@128 193 /* Remove n bits from the bit accumulator */
cannam@128 194 #define DROPBITS(n) \
cannam@128 195 do { \
cannam@128 196 hold >>= (n); \
cannam@128 197 bits -= (unsigned)(n); \
cannam@128 198 } while (0)
cannam@128 199
cannam@128 200 /* Remove zero to seven bits as needed to go to a byte boundary */
cannam@128 201 #define BYTEBITS() \
cannam@128 202 do { \
cannam@128 203 hold >>= bits & 7; \
cannam@128 204 bits -= bits & 7; \
cannam@128 205 } while (0)
cannam@128 206
cannam@128 207 /* Assure that some output space is available, by writing out the window
cannam@128 208 if it's full. If the write fails, return from inflateBack() with a
cannam@128 209 Z_BUF_ERROR. */
cannam@128 210 #define ROOM() \
cannam@128 211 do { \
cannam@128 212 if (left == 0) { \
cannam@128 213 put = state->window; \
cannam@128 214 left = state->wsize; \
cannam@128 215 state->whave = left; \
cannam@128 216 if (out(out_desc, put, left)) { \
cannam@128 217 ret = Z_BUF_ERROR; \
cannam@128 218 goto inf_leave; \
cannam@128 219 } \
cannam@128 220 } \
cannam@128 221 } while (0)
cannam@128 222
cannam@128 223 /*
cannam@128 224 strm provides the memory allocation functions and window buffer on input,
cannam@128 225 and provides information on the unused input on return. For Z_DATA_ERROR
cannam@128 226 returns, strm will also provide an error message.
cannam@128 227
cannam@128 228 in() and out() are the call-back input and output functions. When
cannam@128 229 inflateBack() needs more input, it calls in(). When inflateBack() has
cannam@128 230 filled the window with output, or when it completes with data in the
cannam@128 231 window, it calls out() to write out the data. The application must not
cannam@128 232 change the provided input until in() is called again or inflateBack()
cannam@128 233 returns. The application must not change the window/output buffer until
cannam@128 234 inflateBack() returns.
cannam@128 235
cannam@128 236 in() and out() are called with a descriptor parameter provided in the
cannam@128 237 inflateBack() call. This parameter can be a structure that provides the
cannam@128 238 information required to do the read or write, as well as accumulated
cannam@128 239 information on the input and output such as totals and check values.
cannam@128 240
cannam@128 241 in() should return zero on failure. out() should return non-zero on
cannam@128 242 failure. If either in() or out() fails, than inflateBack() returns a
cannam@128 243 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
cannam@128 244 was in() or out() that caused in the error. Otherwise, inflateBack()
cannam@128 245 returns Z_STREAM_END on success, Z_DATA_ERROR for an deflate format
cannam@128 246 error, or Z_MEM_ERROR if it could not allocate memory for the state.
cannam@128 247 inflateBack() can also return Z_STREAM_ERROR if the input parameters
cannam@128 248 are not correct, i.e. strm is Z_NULL or the state was not initialized.
cannam@128 249 */
cannam@128 250 int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc)
cannam@128 251 z_streamp strm;
cannam@128 252 in_func in;
cannam@128 253 void FAR *in_desc;
cannam@128 254 out_func out;
cannam@128 255 void FAR *out_desc;
cannam@128 256 {
cannam@128 257 struct inflate_state FAR *state;
cannam@128 258 z_const unsigned char FAR *next; /* next input */
cannam@128 259 unsigned char FAR *put; /* next output */
cannam@128 260 unsigned have, left; /* available input and output */
cannam@128 261 unsigned long hold; /* bit buffer */
cannam@128 262 unsigned bits; /* bits in bit buffer */
cannam@128 263 unsigned copy; /* number of stored or match bytes to copy */
cannam@128 264 unsigned char FAR *from; /* where to copy match bytes from */
cannam@128 265 code here; /* current decoding table entry */
cannam@128 266 code last; /* parent table entry */
cannam@128 267 unsigned len; /* length to copy for repeats, bits to drop */
cannam@128 268 int ret; /* return code */
cannam@128 269 static const unsigned short order[19] = /* permutation of code lengths */
cannam@128 270 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
cannam@128 271
cannam@128 272 /* Check that the strm exists and that the state was initialized */
cannam@128 273 if (strm == Z_NULL || strm->state == Z_NULL)
cannam@128 274 return Z_STREAM_ERROR;
cannam@128 275 state = (struct inflate_state FAR *)strm->state;
cannam@128 276
cannam@128 277 /* Reset the state */
cannam@128 278 strm->msg = Z_NULL;
cannam@128 279 state->mode = TYPE;
cannam@128 280 state->last = 0;
cannam@128 281 state->whave = 0;
cannam@128 282 next = strm->next_in;
cannam@128 283 have = next != Z_NULL ? strm->avail_in : 0;
cannam@128 284 hold = 0;
cannam@128 285 bits = 0;
cannam@128 286 put = state->window;
cannam@128 287 left = state->wsize;
cannam@128 288
cannam@128 289 /* Inflate until end of block marked as last */
cannam@128 290 for (;;)
cannam@128 291 switch (state->mode) {
cannam@128 292 case TYPE:
cannam@128 293 /* determine and dispatch block type */
cannam@128 294 if (state->last) {
cannam@128 295 BYTEBITS();
cannam@128 296 state->mode = DONE;
cannam@128 297 break;
cannam@128 298 }
cannam@128 299 NEEDBITS(3);
cannam@128 300 state->last = BITS(1);
cannam@128 301 DROPBITS(1);
cannam@128 302 switch (BITS(2)) {
cannam@128 303 case 0: /* stored block */
cannam@128 304 Tracev((stderr, "inflate: stored block%s\n",
cannam@128 305 state->last ? " (last)" : ""));
cannam@128 306 state->mode = STORED;
cannam@128 307 break;
cannam@128 308 case 1: /* fixed block */
cannam@128 309 fixedtables(state);
cannam@128 310 Tracev((stderr, "inflate: fixed codes block%s\n",
cannam@128 311 state->last ? " (last)" : ""));
cannam@128 312 state->mode = LEN; /* decode codes */
cannam@128 313 break;
cannam@128 314 case 2: /* dynamic block */
cannam@128 315 Tracev((stderr, "inflate: dynamic codes block%s\n",
cannam@128 316 state->last ? " (last)" : ""));
cannam@128 317 state->mode = TABLE;
cannam@128 318 break;
cannam@128 319 case 3:
cannam@128 320 strm->msg = (char *)"invalid block type";
cannam@128 321 state->mode = BAD;
cannam@128 322 }
cannam@128 323 DROPBITS(2);
cannam@128 324 break;
cannam@128 325
cannam@128 326 case STORED:
cannam@128 327 /* get and verify stored block length */
cannam@128 328 BYTEBITS(); /* go to byte boundary */
cannam@128 329 NEEDBITS(32);
cannam@128 330 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
cannam@128 331 strm->msg = (char *)"invalid stored block lengths";
cannam@128 332 state->mode = BAD;
cannam@128 333 break;
cannam@128 334 }
cannam@128 335 state->length = (unsigned)hold & 0xffff;
cannam@128 336 Tracev((stderr, "inflate: stored length %u\n",
cannam@128 337 state->length));
cannam@128 338 INITBITS();
cannam@128 339
cannam@128 340 /* copy stored block from input to output */
cannam@128 341 while (state->length != 0) {
cannam@128 342 copy = state->length;
cannam@128 343 PULL();
cannam@128 344 ROOM();
cannam@128 345 if (copy > have) copy = have;
cannam@128 346 if (copy > left) copy = left;
cannam@128 347 zmemcpy(put, next, copy);
cannam@128 348 have -= copy;
cannam@128 349 next += copy;
cannam@128 350 left -= copy;
cannam@128 351 put += copy;
cannam@128 352 state->length -= copy;
cannam@128 353 }
cannam@128 354 Tracev((stderr, "inflate: stored end\n"));
cannam@128 355 state->mode = TYPE;
cannam@128 356 break;
cannam@128 357
cannam@128 358 case TABLE:
cannam@128 359 /* get dynamic table entries descriptor */
cannam@128 360 NEEDBITS(14);
cannam@128 361 state->nlen = BITS(5) + 257;
cannam@128 362 DROPBITS(5);
cannam@128 363 state->ndist = BITS(5) + 1;
cannam@128 364 DROPBITS(5);
cannam@128 365 state->ncode = BITS(4) + 4;
cannam@128 366 DROPBITS(4);
cannam@128 367 #ifndef PKZIP_BUG_WORKAROUND
cannam@128 368 if (state->nlen > 286 || state->ndist > 30) {
cannam@128 369 strm->msg = (char *)"too many length or distance symbols";
cannam@128 370 state->mode = BAD;
cannam@128 371 break;
cannam@128 372 }
cannam@128 373 #endif
cannam@128 374 Tracev((stderr, "inflate: table sizes ok\n"));
cannam@128 375
cannam@128 376 /* get code length code lengths (not a typo) */
cannam@128 377 state->have = 0;
cannam@128 378 while (state->have < state->ncode) {
cannam@128 379 NEEDBITS(3);
cannam@128 380 state->lens[order[state->have++]] = (unsigned short)BITS(3);
cannam@128 381 DROPBITS(3);
cannam@128 382 }
cannam@128 383 while (state->have < 19)
cannam@128 384 state->lens[order[state->have++]] = 0;
cannam@128 385 state->next = state->codes;
cannam@128 386 state->lencode = (code const FAR *)(state->next);
cannam@128 387 state->lenbits = 7;
cannam@128 388 ret = inflate_table(CODES, state->lens, 19, &(state->next),
cannam@128 389 &(state->lenbits), state->work);
cannam@128 390 if (ret) {
cannam@128 391 strm->msg = (char *)"invalid code lengths set";
cannam@128 392 state->mode = BAD;
cannam@128 393 break;
cannam@128 394 }
cannam@128 395 Tracev((stderr, "inflate: code lengths ok\n"));
cannam@128 396
cannam@128 397 /* get length and distance code code lengths */
cannam@128 398 state->have = 0;
cannam@128 399 while (state->have < state->nlen + state->ndist) {
cannam@128 400 for (;;) {
cannam@128 401 here = state->lencode[BITS(state->lenbits)];
cannam@128 402 if ((unsigned)(here.bits) <= bits) break;
cannam@128 403 PULLBYTE();
cannam@128 404 }
cannam@128 405 if (here.val < 16) {
cannam@128 406 DROPBITS(here.bits);
cannam@128 407 state->lens[state->have++] = here.val;
cannam@128 408 }
cannam@128 409 else {
cannam@128 410 if (here.val == 16) {
cannam@128 411 NEEDBITS(here.bits + 2);
cannam@128 412 DROPBITS(here.bits);
cannam@128 413 if (state->have == 0) {
cannam@128 414 strm->msg = (char *)"invalid bit length repeat";
cannam@128 415 state->mode = BAD;
cannam@128 416 break;
cannam@128 417 }
cannam@128 418 len = (unsigned)(state->lens[state->have - 1]);
cannam@128 419 copy = 3 + BITS(2);
cannam@128 420 DROPBITS(2);
cannam@128 421 }
cannam@128 422 else if (here.val == 17) {
cannam@128 423 NEEDBITS(here.bits + 3);
cannam@128 424 DROPBITS(here.bits);
cannam@128 425 len = 0;
cannam@128 426 copy = 3 + BITS(3);
cannam@128 427 DROPBITS(3);
cannam@128 428 }
cannam@128 429 else {
cannam@128 430 NEEDBITS(here.bits + 7);
cannam@128 431 DROPBITS(here.bits);
cannam@128 432 len = 0;
cannam@128 433 copy = 11 + BITS(7);
cannam@128 434 DROPBITS(7);
cannam@128 435 }
cannam@128 436 if (state->have + copy > state->nlen + state->ndist) {
cannam@128 437 strm->msg = (char *)"invalid bit length repeat";
cannam@128 438 state->mode = BAD;
cannam@128 439 break;
cannam@128 440 }
cannam@128 441 while (copy--)
cannam@128 442 state->lens[state->have++] = (unsigned short)len;
cannam@128 443 }
cannam@128 444 }
cannam@128 445
cannam@128 446 /* handle error breaks in while */
cannam@128 447 if (state->mode == BAD) break;
cannam@128 448
cannam@128 449 /* check for end-of-block code (better have one) */
cannam@128 450 if (state->lens[256] == 0) {
cannam@128 451 strm->msg = (char *)"invalid code -- missing end-of-block";
cannam@128 452 state->mode = BAD;
cannam@128 453 break;
cannam@128 454 }
cannam@128 455
cannam@128 456 /* build code tables -- note: do not change the lenbits or distbits
cannam@128 457 values here (9 and 6) without reading the comments in inftrees.h
cannam@128 458 concerning the ENOUGH constants, which depend on those values */
cannam@128 459 state->next = state->codes;
cannam@128 460 state->lencode = (code const FAR *)(state->next);
cannam@128 461 state->lenbits = 9;
cannam@128 462 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
cannam@128 463 &(state->lenbits), state->work);
cannam@128 464 if (ret) {
cannam@128 465 strm->msg = (char *)"invalid literal/lengths set";
cannam@128 466 state->mode = BAD;
cannam@128 467 break;
cannam@128 468 }
cannam@128 469 state->distcode = (code const FAR *)(state->next);
cannam@128 470 state->distbits = 6;
cannam@128 471 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
cannam@128 472 &(state->next), &(state->distbits), state->work);
cannam@128 473 if (ret) {
cannam@128 474 strm->msg = (char *)"invalid distances set";
cannam@128 475 state->mode = BAD;
cannam@128 476 break;
cannam@128 477 }
cannam@128 478 Tracev((stderr, "inflate: codes ok\n"));
cannam@128 479 state->mode = LEN;
cannam@128 480
cannam@128 481 case LEN:
cannam@128 482 /* use inflate_fast() if we have enough input and output */
cannam@128 483 if (have >= 6 && left >= 258) {
cannam@128 484 RESTORE();
cannam@128 485 if (state->whave < state->wsize)
cannam@128 486 state->whave = state->wsize - left;
cannam@128 487 inflate_fast(strm, state->wsize);
cannam@128 488 LOAD();
cannam@128 489 break;
cannam@128 490 }
cannam@128 491
cannam@128 492 /* get a literal, length, or end-of-block code */
cannam@128 493 for (;;) {
cannam@128 494 here = state->lencode[BITS(state->lenbits)];
cannam@128 495 if ((unsigned)(here.bits) <= bits) break;
cannam@128 496 PULLBYTE();
cannam@128 497 }
cannam@128 498 if (here.op && (here.op & 0xf0) == 0) {
cannam@128 499 last = here;
cannam@128 500 for (;;) {
cannam@128 501 here = state->lencode[last.val +
cannam@128 502 (BITS(last.bits + last.op) >> last.bits)];
cannam@128 503 if ((unsigned)(last.bits + here.bits) <= bits) break;
cannam@128 504 PULLBYTE();
cannam@128 505 }
cannam@128 506 DROPBITS(last.bits);
cannam@128 507 }
cannam@128 508 DROPBITS(here.bits);
cannam@128 509 state->length = (unsigned)here.val;
cannam@128 510
cannam@128 511 /* process literal */
cannam@128 512 if (here.op == 0) {
cannam@128 513 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
cannam@128 514 "inflate: literal '%c'\n" :
cannam@128 515 "inflate: literal 0x%02x\n", here.val));
cannam@128 516 ROOM();
cannam@128 517 *put++ = (unsigned char)(state->length);
cannam@128 518 left--;
cannam@128 519 state->mode = LEN;
cannam@128 520 break;
cannam@128 521 }
cannam@128 522
cannam@128 523 /* process end of block */
cannam@128 524 if (here.op & 32) {
cannam@128 525 Tracevv((stderr, "inflate: end of block\n"));
cannam@128 526 state->mode = TYPE;
cannam@128 527 break;
cannam@128 528 }
cannam@128 529
cannam@128 530 /* invalid code */
cannam@128 531 if (here.op & 64) {
cannam@128 532 strm->msg = (char *)"invalid literal/length code";
cannam@128 533 state->mode = BAD;
cannam@128 534 break;
cannam@128 535 }
cannam@128 536
cannam@128 537 /* length code -- get extra bits, if any */
cannam@128 538 state->extra = (unsigned)(here.op) & 15;
cannam@128 539 if (state->extra != 0) {
cannam@128 540 NEEDBITS(state->extra);
cannam@128 541 state->length += BITS(state->extra);
cannam@128 542 DROPBITS(state->extra);
cannam@128 543 }
cannam@128 544 Tracevv((stderr, "inflate: length %u\n", state->length));
cannam@128 545
cannam@128 546 /* get distance code */
cannam@128 547 for (;;) {
cannam@128 548 here = state->distcode[BITS(state->distbits)];
cannam@128 549 if ((unsigned)(here.bits) <= bits) break;
cannam@128 550 PULLBYTE();
cannam@128 551 }
cannam@128 552 if ((here.op & 0xf0) == 0) {
cannam@128 553 last = here;
cannam@128 554 for (;;) {
cannam@128 555 here = state->distcode[last.val +
cannam@128 556 (BITS(last.bits + last.op) >> last.bits)];
cannam@128 557 if ((unsigned)(last.bits + here.bits) <= bits) break;
cannam@128 558 PULLBYTE();
cannam@128 559 }
cannam@128 560 DROPBITS(last.bits);
cannam@128 561 }
cannam@128 562 DROPBITS(here.bits);
cannam@128 563 if (here.op & 64) {
cannam@128 564 strm->msg = (char *)"invalid distance code";
cannam@128 565 state->mode = BAD;
cannam@128 566 break;
cannam@128 567 }
cannam@128 568 state->offset = (unsigned)here.val;
cannam@128 569
cannam@128 570 /* get distance extra bits, if any */
cannam@128 571 state->extra = (unsigned)(here.op) & 15;
cannam@128 572 if (state->extra != 0) {
cannam@128 573 NEEDBITS(state->extra);
cannam@128 574 state->offset += BITS(state->extra);
cannam@128 575 DROPBITS(state->extra);
cannam@128 576 }
cannam@128 577 if (state->offset > state->wsize - (state->whave < state->wsize ?
cannam@128 578 left : 0)) {
cannam@128 579 strm->msg = (char *)"invalid distance too far back";
cannam@128 580 state->mode = BAD;
cannam@128 581 break;
cannam@128 582 }
cannam@128 583 Tracevv((stderr, "inflate: distance %u\n", state->offset));
cannam@128 584
cannam@128 585 /* copy match from window to output */
cannam@128 586 do {
cannam@128 587 ROOM();
cannam@128 588 copy = state->wsize - state->offset;
cannam@128 589 if (copy < left) {
cannam@128 590 from = put + copy;
cannam@128 591 copy = left - copy;
cannam@128 592 }
cannam@128 593 else {
cannam@128 594 from = put - state->offset;
cannam@128 595 copy = left;
cannam@128 596 }
cannam@128 597 if (copy > state->length) copy = state->length;
cannam@128 598 state->length -= copy;
cannam@128 599 left -= copy;
cannam@128 600 do {
cannam@128 601 *put++ = *from++;
cannam@128 602 } while (--copy);
cannam@128 603 } while (state->length != 0);
cannam@128 604 break;
cannam@128 605
cannam@128 606 case DONE:
cannam@128 607 /* inflate stream terminated properly -- write leftover output */
cannam@128 608 ret = Z_STREAM_END;
cannam@128 609 if (left < state->wsize) {
cannam@128 610 if (out(out_desc, state->window, state->wsize - left))
cannam@128 611 ret = Z_BUF_ERROR;
cannam@128 612 }
cannam@128 613 goto inf_leave;
cannam@128 614
cannam@128 615 case BAD:
cannam@128 616 ret = Z_DATA_ERROR;
cannam@128 617 goto inf_leave;
cannam@128 618
cannam@128 619 default: /* can't happen, but makes compilers happy */
cannam@128 620 ret = Z_STREAM_ERROR;
cannam@128 621 goto inf_leave;
cannam@128 622 }
cannam@128 623
cannam@128 624 /* Return unused input */
cannam@128 625 inf_leave:
cannam@128 626 strm->next_in = next;
cannam@128 627 strm->avail_in = have;
cannam@128 628 return ret;
cannam@128 629 }
cannam@128 630
cannam@128 631 int ZEXPORT inflateBackEnd(strm)
cannam@128 632 z_streamp strm;
cannam@128 633 {
cannam@128 634 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
cannam@128 635 return Z_STREAM_ERROR;
cannam@128 636 ZFREE(strm, strm->state);
cannam@128 637 strm->state = Z_NULL;
cannam@128 638 Tracev((stderr, "inflate: end\n"));
cannam@128 639 return Z_OK;
cannam@128 640 }