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