inflate.c
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:45k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /* inflate.c -- put in the public domain by Mark Adler
  2.    version c16b, 29 March 1998 */
  3. /* You can do whatever you like with this source file, though I would
  4.    prefer that if you modify it and redistribute it that you include
  5.    comments to that effect with your name and the date.  Thank you.
  6.    History:
  7.    vers    date          who           what
  8.    ----  ---------  --------------  ------------------------------------
  9.     a    ~~ Feb 92  M. Adler        used full (large, one-step) lookup table
  10.     b1   21 Mar 92  M. Adler        first version with partial lookup tables
  11.     b2   21 Mar 92  M. Adler        fixed bug in fixed-code blocks
  12.     b3   22 Mar 92  M. Adler        sped up match copies, cleaned up some
  13.     b4   25 Mar 92  M. Adler        added prototypes; removed window[] (now
  14.                                     is the responsibility of unzip.h--also
  15.                                     changed name to slide[]), so needs diffs
  16.                                     for unzip.c and unzip.h (this allows
  17.                                     compiling in the small model on MSDOS);
  18.                                     fixed cast of q in huft_build();
  19.     b5   26 Mar 92  M. Adler        got rid of unintended macro recursion.
  20.     b6   27 Mar 92  M. Adler        got rid of nextbyte() routine.  fixed
  21.                                     bug in inflate_fixed().
  22.     c1   30 Mar 92  M. Adler        removed lbits, dbits environment variables.
  23.                                     changed BMAX to 16 for explode.  Removed
  24.                                     OUTB usage, and replaced it with flush()--
  25.                                     this was a 20% speed improvement!  Added
  26.                                     an explode.c (to replace unimplod.c) that
  27.                                     uses the huft routines here.  Removed
  28.                                     register union.
  29.     c2    4 Apr 92  M. Adler        fixed bug for file sizes a multiple of 32k.
  30.     c3   10 Apr 92  M. Adler        reduced memory of code tables made by
  31.                                     huft_build significantly (factor of two to
  32.                                     three).
  33.     c4   15 Apr 92  M. Adler        added NOMEMCPY do kill use of memcpy().
  34.                                     worked around a Turbo C optimization bug.
  35.     c5   21 Apr 92  M. Adler        added the WSIZE #define to allow reducing
  36.                                     the 32K window size for specialized
  37.                                     applications.
  38.     c6   31 May 92  M. Adler        added some typecasts to eliminate warnings
  39.     c7   27 Jun 92  G. Roelofs      added some more typecasts (444:  MSC bug).
  40.     c8    5 Oct 92  J-l. Gailly     added ifdef'd code to deal with PKZIP bug.
  41.     c9    9 Oct 92  M. Adler        removed a memory error message (~line 416).
  42.     c10  17 Oct 92  G. Roelofs      changed ULONG/UWORD/byte to ulg/ush/uch,
  43.                                     removed old inflate, renamed inflate_entry
  44.                                     to inflate, added Mark's fix to a comment.
  45.    c10.5 14 Dec 92  M. Adler        fix up error messages for incomplete trees.
  46.     c11   2 Jan 93  M. Adler        fixed bug in detection of incomplete
  47.                                     tables, and removed assumption that EOB is
  48.                                     the longest code (bad assumption).
  49.     c12   3 Jan 93  M. Adler        make tables for fixed blocks only once.
  50.     c13   5 Jan 93  M. Adler        allow all zero length codes (pkzip 2.04c
  51.                                     outputs one zero length code for an empty
  52.                                     distance tree).
  53.     c14  12 Mar 93  M. Adler        made inflate.c standalone with the
  54.                                     introduction of inflate.h.
  55.    c14b  16 Jul 93  G. Roelofs      added (unsigned) typecast to w at 470.
  56.    c14c  19 Jul 93  J. Bush         changed v[N_MAX], l[288], ll[28x+3x] arrays
  57.                                     to static for Amiga.
  58.    c14d  13 Aug 93  J-l. Gailly     de-complicatified Mark's c[*p++]++ thing.
  59.    c14e   8 Oct 93  G. Roelofs      changed memset() to memzero().
  60.    c14f  22 Oct 93  G. Roelofs      renamed quietflg to qflag; made Trace()
  61.                                     conditional; added inflate_free().
  62.    c14g  28 Oct 93  G. Roelofs      changed l/(lx+1) macro to pointer (Cray bug)
  63.    c14h   7 Dec 93  C. Ghisler      huft_build() optimizations.
  64.    c14i   9 Jan 94  A. Verheijen    set fixed_t{d,l} to NULL after freeing;
  65.                     G. Roelofs      check NEXTBYTE macro for EOF.
  66.    c14j  23 Jan 94  G. Roelofs      removed Ghisler "optimizations"; ifdef'd
  67.                                     EOF check.
  68.    c14k  27 Feb 94  G. Roelofs      added some typecasts to avoid warnings.
  69.    c14l   9 Apr 94  G. Roelofs      fixed split comments on preprocessor lines
  70.                                     to avoid bug in Encore compiler.
  71.    c14m   7 Jul 94  P. Kienitz      modified to allow assembler version of
  72.                                     inflate_codes() (define ASM_INFLATECODES)
  73.    c14n  22 Jul 94  G. Roelofs      changed fprintf to macro for DLL versions
  74.    c14o  23 Aug 94  C. Spieler      added a newline to a debug statement;
  75.                     G. Roelofs      added another typecast to avoid MSC warning
  76.    c14p   4 Oct 94  G. Roelofs      added (voidp *) cast to free() argument
  77.    c14q  30 Oct 94  G. Roelofs      changed fprintf macro to MESSAGE()
  78.    c14r   1 Nov 94  G. Roelofs      fixed possible redefinition of CHECK_EOF
  79.    c14s   7 May 95  S. Maxwell      OS/2 DLL globals stuff incorporated;
  80.                     P. Kienitz      "fixed" ASM_INFLATECODES macro/prototype
  81.    c14t  18 Aug 95  G. Roelofs      added UZinflate() to use zlib functions;
  82.                                     changed voidp to zvoid; moved huft_build()
  83.                                     and huft_free() to end of file
  84.    c14u   1 Oct 95  G. Roelofs      moved G into definition of MESSAGE macro
  85.    c14v   8 Nov 95  P. Kienitz      changed ASM_INFLATECODES to use a regular
  86.                                     call with __G__ instead of a macro
  87.     c15   3 Aug 96  M. Adler        fixed bomb-bug on random input data (Adobe)
  88.    c15b  24 Aug 96  M. Adler        more fixes for random input data
  89.    c15c  28 Mar 97  G. Roelofs      changed USE_ZLIB fatal exit code from
  90.                                     PK_MEM2 to PK_MEM3
  91.     c16  20 Apr 97  J. Altman       added memzero(v[]) in huft_build()
  92.    c16b  29 Mar 98  C. Spieler      modified DLL code for slide redirection
  93.  */
  94. /*
  95.    Inflate deflated (PKZIP's method 8 compressed) data.  The compression
  96.    method searches for as much of the current string of bytes (up to a
  97.    length of 258) in the previous 32K bytes.  If it doesn't find any
  98.    matches (of at least length 3), it codes the next byte.  Otherwise, it
  99.    codes the length of the matched string and its distance backwards from
  100.    the current position.  There is a single Huffman code that codes both
  101.    single bytes (called "literals") and match lengths.  A second Huffman
  102.    code codes the distance information, which follows a length code.  Each
  103.    length or distance code actually represents a base value and a number
  104.    of "extra" (sometimes zero) bits to get to add to the base value.  At
  105.    the end of each deflated block is a special end-of-block (EOB) literal/
  106.    length code.  The decoding process is basically: get a literal/length
  107.    code; if EOB then done; if a literal, emit the decoded byte; if a
  108.    length then get the distance and emit the referred-to bytes from the
  109.    sliding window of previously emitted data.
  110.    There are (currently) three kinds of inflate blocks: stored, fixed, and
  111.    dynamic.  The compressor outputs a chunk of data at a time and decides
  112.    which method to use on a chunk-by-chunk basis.  A chunk might typically
  113.    be 32K to 64K, uncompressed.  If the chunk is uncompressible, then the
  114.    "stored" method is used.  In this case, the bytes are simply stored as
  115.    is, eight bits per byte, with none of the above coding.  The bytes are
  116.    preceded by a count, since there is no longer an EOB code.
  117.    If the data are compressible, then either the fixed or dynamic methods
  118.    are used.  In the dynamic method, the compressed data are preceded by
  119.    an encoding of the literal/length and distance Huffman codes that are
  120.    to be used to decode this block.  The representation is itself Huffman
  121.    coded, and so is preceded by a description of that code.  These code
  122.    descriptions take up a little space, and so for small blocks, there is
  123.    a predefined set of codes, called the fixed codes.  The fixed method is
  124.    used if the block ends up smaller that way (usually for quite small
  125.    chunks); otherwise the dynamic method is used.  In the latter case, the
  126.    codes are customized to the probabilities in the current block and so
  127.    can code it much better than the pre-determined fixed codes can.
  128.    The Huffman codes themselves are decoded using a multi-level table
  129.    lookup, in order to maximize the speed of decoding plus the speed of
  130.    building the decoding tables.  See the comments below that precede the
  131.    lbits and dbits tuning parameters.
  132.    GRR:  return values(?)
  133.            0  OK
  134.            1  incomplete table
  135.            2  bad input
  136.            3  not enough memory
  137.  */
  138. /*
  139.    Notes beyond the 1.93a appnote.txt:
  140.    1. Distance pointers never point before the beginning of the output
  141.       stream.
  142.    2. Distance pointers can point back across blocks, up to 32k away.
  143.    3. There is an implied maximum of 7 bits for the bit length table and
  144.       15 bits for the actual data.
  145.    4. If only one code exists, then it is encoded using one bit.  (Zero
  146.       would be more efficient, but perhaps a little confusing.)  If two
  147.       codes exist, they are coded using one bit each (0 and 1).
  148.    5. There is no way of sending zero distance codes--a dummy must be
  149.       sent if there are none.  (History: a pre 2.0 version of PKZIP would
  150.       store blocks with no distance codes, but this was discovered to be
  151.       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
  152.       zero distance codes, which is sent as one code of zero bits in
  153.       length.
  154.    6. There are up to 286 literal/length codes.  Code 256 represents the
  155.       end-of-block.  Note however that the static length tree defines
  156.       288 codes just to fill out the Huffman codes.  Codes 286 and 287
  157.       cannot be used though, since there is no length base or extra bits
  158.       defined for them.  Similarily, there are up to 30 distance codes.
  159.       However, static trees define 32 codes (all 5 bits) to fill out the
  160.       Huffman codes, but the last two had better not show up in the data.
  161.    7. Unzip can check dynamic Huffman blocks for complete code sets.
  162.       The exception is that a single code would not be complete (see #4).
  163.    8. The five bits following the block type is really the number of
  164.       literal codes sent minus 257.
  165.    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
  166.       (1+6+6).  Therefore, to output three times the length, you output
  167.       three codes (1+1+1), whereas to output four times the same length,
  168.       you only need two codes (1+3).  Hmm.
  169.   10. In the tree reconstruction algorithm, Code = Code + Increment
  170.       only if BitLength(i) is not zero.  (Pretty obvious.)
  171.   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  172.   12. Note: length code 284 can represent 227-258, but length code 285
  173.       really is 258.  The last length deserves its own, short code
  174.       since it gets used a lot in very redundant files.  The length
  175.       258 is special since 258 - 3 (the min match length) is 255.
  176.   13. The literal/length and distance code bit lengths are read as a
  177.       single stream of lengths.  It is possible (and advantageous) for
  178.       a repeat code (16, 17, or 18) to go across the boundary between
  179.       the two sets of lengths.
  180.  */
  181. #define PKZIP_BUG_WORKAROUND    /* PKZIP 1.93a problem--live with it */
  182. /*
  183.     inflate.h must supply the uch slide[WSIZE] array, the zvoid typedef
  184.     (void if (void *) is accepted, else char) and the NEXTBYTE,
  185.     FLUSH() and memzero macros.  If the window size is not 32K, it
  186.     should also define WSIZE.  If INFMOD is defined, it can include
  187.     compiled functions to support the NEXTBYTE and/or FLUSH() macros.
  188.     There are defaults for NEXTBYTE and FLUSH() below for use as
  189.     examples of what those functions need to do.  Normally, you would
  190.     also want FLUSH() to compute a crc on the data.  inflate.h also
  191.     needs to provide these typedefs:
  192.         typedef unsigned char uch;
  193.         typedef unsigned short ush;
  194.         typedef unsigned long ulg;
  195.     This module uses the external functions malloc() and free() (and
  196.     probably memset() or bzero() in the memzero() macro).  Their
  197.     prototypes are normally found in <string.h> and <stdlib.h>.
  198.  */
  199. /* #define DEBUG */
  200. #define INFMOD          /* tell inflate.h to include code to be compiled */
  201. #include "inflate.h"
  202. #ifndef WSIZE           /* default is 32K */
  203. #  define WSIZE 0x8000  /* window size--must be a power of two, and at least */
  204. #endif                  /* 32K for zip's deflate method */
  205. #if (defined(DLL) && !defined(NO_SLIDE_REDIR))
  206. #  define wsize G._wsize    /* wsize is a variable */
  207. #else
  208. #  define wsize WSIZE       /* wsize is a constant */
  209. #endif
  210. #ifndef NEXTBYTE        /* default is to simply get a byte from stdin */
  211. #  define NEXTBYTE getchar()
  212. #endif
  213. #ifndef MESSAGE   /* only used twice, for fixed strings--NOT general-purpose */
  214. #  define MESSAGE(str,len,flag)  fprintf(stderr,(char *)(str))
  215. #endif
  216. #ifndef FLUSH           /* default is to simply write the buffer to stdout */
  217. #  define FLUSH(n) fwrite(redirSlide, 1, n, stdout)  /* return value not used */
  218. #endif
  219. /* Warning: the fwrite above might not work on 16-bit compilers, since
  220.    0x8000 might be interpreted as -32,768 by the library function. */
  221. #ifndef Trace
  222. #  ifdef DEBUG
  223. #    define Trace(x) fprintf x
  224. #  else
  225. #    define Trace(x)
  226. #  endif
  227. #endif
  228. /*---------------------------------------------------------------------------*/
  229. #ifdef USE_ZLIB
  230. /*
  231.    GRR:  return values for both original inflate() and UZinflate()
  232.            0  OK
  233.            1  incomplete table(?)
  234.            2  bad input
  235.            3  not enough memory
  236.  */
  237. /**************************/
  238. /*  Function UZinflate()  */
  239. /**************************/
  240. int UZinflate(__G)   /* decompress an inflated entry using the zlib routines */
  241.     __GDEF
  242. {
  243.     int err=Z_OK;
  244. #if (defined(DLL) && !defined(NO_SLIDE_REDIR))
  245.     if (G.redirect_slide)
  246.         wsize = G.redirect_size, redirSlide = G.redirect_buffer;
  247.     else
  248.         wsize = WSIZE, redirSlide = slide;
  249. #endif
  250.     G.dstrm.next_out = redirSlide;
  251.     G.dstrm.avail_out = wsize;
  252.     G.dstrm.next_in = G.inptr;
  253.     G.dstrm.avail_in = G.incnt;
  254.     if (!G.inflInit) {
  255.         unsigned i;
  256.         int windowBits;
  257.         /* only need to test this stuff once */
  258.         if (zlib_version[0] != ZLIB_VERSION[0]) {
  259.             Info(slide, 0x21, ((char *)slide,
  260.               "error:  incompatible zlib version (expected %s, found %s)n",
  261.               ZLIB_VERSION, zlib_version));
  262.             return 3;
  263.         } else if (strcmp(zlib_version, ZLIB_VERSION) != 0)
  264.             Info(slide, 0x21, ((char *)slide,
  265.               "warning:  different zlib version (expected %s, using %s)n",
  266.               ZLIB_VERSION, zlib_version));
  267.         /* windowBits = log2(wsize) */
  268.         for (i = ((unsigned)wsize * 2 - 1), windowBits = 0;
  269.              !(i & 1);  i >>= 1, ++windowBits);
  270.         if ((unsigned)windowBits > (unsigned)15)
  271.             windowBits = 15;
  272.         else if (windowBits < 8)
  273.             windowBits = 8;
  274.         G.dstrm.zalloc = (alloc_func)Z_NULL;
  275.         G.dstrm.zfree = (free_func)Z_NULL;
  276.         Trace((stderr, "initializing inflate()n"));
  277.         err = inflateInit2(&G.dstrm, -windowBits);
  278.         if (err == Z_MEM_ERROR)
  279.             return 3;
  280.         else if (err != Z_OK)
  281.             Trace((stderr, "oops!  (inflateInit2() err = %d)n", err));
  282.         G.inflInit = 1;
  283.     }
  284. #ifdef FUNZIP
  285.     while (err != Z_STREAM_END) {
  286. #else /* !FUNZIP */
  287.     while (G.csize > 0) {
  288.         Trace((stderr, "first loop:  G.csize = %ldn", G.csize));
  289. #endif /* ?FUNZIP */
  290.         while (G.dstrm.avail_out > 0) {
  291.             err = inflate(&G.dstrm, Z_PARTIAL_FLUSH);
  292.             if (err == Z_DATA_ERROR)
  293.                 return 2;
  294.             else if (err == Z_MEM_ERROR)
  295.                 return 3;
  296.             else if (err != Z_OK && err != Z_STREAM_END)
  297.                 Trace((stderr, "oops!  (inflate(first loop) err = %d)n", err));
  298. #ifdef FUNZIP
  299.             if (err == Z_STREAM_END)    /* "END-of-entry-condition" ? */
  300. #else /* !FUNZIP */
  301.             if (G.csize <= 0L)          /* "END-of-entry-condition" ? */
  302. #endif /* ?FUNZIP */
  303.                 break;
  304.             if (G.dstrm.avail_in <= 0) {
  305.                 if (fillinbuf(__G) == 0)
  306.                     return 2;  /* no "END-condition" yet, but no more data */
  307.                 G.dstrm.next_in = G.inptr;
  308.                 G.dstrm.avail_in = G.incnt;
  309.             }
  310.             Trace((stderr, "     avail_in = %dn", G.dstrm.avail_in));
  311.         }
  312.         FLUSH(wsize - G.dstrm.avail_out);   /* flush slide[] */
  313.         Trace((stderr, "inside loop:  flushing %ld bytes (ptr diff = %ld)n",
  314.           (long)(wsize - G.dstrm.avail_out),
  315.           (long)(G.dstrm.next_out-(Bytef *)redirSlide)));
  316.         G.dstrm.next_out = redirSlide;
  317.         G.dstrm.avail_out = wsize;
  318.     }
  319.     /* no more input, so loop until we have all output */
  320.     Trace((stderr, "beginning final loop:  err = %dn", err));
  321.     while (err != Z_STREAM_END) {
  322.         err = inflate(&G.dstrm, Z_PARTIAL_FLUSH);
  323.         if (err == Z_DATA_ERROR)
  324.             return 2;
  325.         else if (err == Z_MEM_ERROR)
  326.             return 3;
  327.         else if (err == Z_BUF_ERROR) {              /* DEBUG */
  328.             Trace((stderr, "zlib inflate() did not detect stream end (%s, %s)n"
  329.               , G.zipfn, G.filename));
  330.             break;
  331.         } else if (err != Z_OK && err != Z_STREAM_END) {
  332.             Trace((stderr, "oops!  (inflate(final loop) err = %d)n", err));
  333.             DESTROYGLOBALS()
  334.             EXIT(PK_MEM3);
  335.         }
  336.         FLUSH(wsize - G.dstrm.avail_out);   /* final flush of slide[] */
  337.         Trace((stderr, "final loop:  flushing %ld bytes (ptr diff = %ld)n",
  338.           (long)(wsize - G.dstrm.avail_out),
  339.           (long)(G.dstrm.next_out-(Bytef *)redirSlide)));
  340.         G.dstrm.next_out = redirSlide;
  341.         G.dstrm.avail_out = wsize;
  342.     }
  343.     Trace((stderr, "total in = %ld, total out = %ldn", G.dstrm.total_in,
  344.       G.dstrm.total_out));
  345.     G.inptr = (uch *)G.dstrm.next_in;
  346.     G.incnt = (G.inbuf + INBUFSIZ) - G.inptr;  /* reset for other routines */
  347.     err = inflateReset(&G.dstrm);
  348.     if (err != Z_OK)
  349.         Trace((stderr, "oops!  (inflateReset() err = %d)n", err));
  350.     return 0;
  351. }
  352. /*---------------------------------------------------------------------------*/
  353. #else /* !USE_ZLIB */
  354. /* Function prototypes */
  355. #ifndef OF
  356. #  ifdef __STDC__
  357. #    define OF(a) a
  358. #  else
  359. #    define OF(a) ()
  360. #  endif
  361. #endif /* !OF */
  362. int inflate_codes OF((__GPRO__ struct huft *tl, struct huft *td,
  363.                       int bl, int bd));
  364. static int inflate_stored OF((__GPRO));
  365. static int inflate_fixed OF((__GPRO));
  366. static int inflate_dynamic OF((__GPRO));
  367. static int inflate_block OF((__GPRO__ int *e));
  368. /* The inflate algorithm uses a sliding 32K byte window on the uncompressed
  369.    stream to find repeated byte strings.  This is implemented here as a
  370.    circular buffer.  The index is updated simply by incrementing and then
  371.    and'ing with 0x7fff (32K-1). */
  372. /* It is left to other modules to supply the 32K area.  It is assumed
  373.    to be usable as if it were declared "uch slide[32768];" or as just
  374.    "uch *slide;" and then malloc'ed in the latter case.  The definition
  375.    must be in unzip.h, included above. */
  376. /* unsigned wp;  moved to globals.h */     /* current position in slide */
  377. /* Tables for deflate from PKZIP's appnote.txt. */
  378. static ZCONST unsigned border[] = { /* Order of the bit length code lengths */
  379.         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
  380. static ZCONST ush cplens[] = {  /* Copy lengths for literal codes 257..285 */
  381.         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
  382.         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
  383.         /* note: see note #13 above about the 258 in this list. */
  384. static ZCONST ush cplext[] = {  /* Extra bits for literal codes 257..285 */
  385.         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
  386.         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 99, 99}; /* 99==invalid */
  387. static ZCONST ush cpdist[] = {  /* Copy offsets for distance codes 0..29 */
  388.         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
  389.         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
  390.         8193, 12289, 16385, 24577};
  391. static ZCONST ush cpdext[] = {  /* Extra bits for distance codes */
  392.         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
  393.         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
  394.         12, 12, 13, 13};
  395. /* moved to consts.h (included in unzip.c), resp. funzip.c */
  396. #if 0
  397. /* And'ing with mask_bits[n] masks the lower n bits */
  398. ZCONST ush near mask_bits[] = {
  399.     0x0000,
  400.     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  401.     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  402. };
  403. #endif /* 0 */
  404. /* Macros for inflate() bit peeking and grabbing.
  405.    The usage is:
  406.         NEEDBITS(j)
  407.         x = b & mask_bits[j];
  408.         DUMPBITS(j)
  409.    where NEEDBITS makes sure that b has at least j bits in it, and
  410.    DUMPBITS removes the bits from b.  The macros use the variable k
  411.    for the number of bits in b.  Normally, b and k are register
  412.    variables for speed and are initialized at the begining of a
  413.    routine that uses these macros from a global bit buffer and count.
  414.    In order to not ask for more bits than there are in the compressed
  415.    stream, the Huffman tables are constructed to only ask for just
  416.    enough bits to make up the end-of-block code (value 256).  Then no
  417.    bytes need to be "returned" to the buffer at the end of the last
  418.    block.  See the huft_build() routine.
  419.  */
  420. /* These have been moved to globals.h */
  421. #if 0
  422. ulg bb;                         /* bit buffer */
  423. unsigned bk;                    /* bits in bit buffer */
  424. #endif
  425. #ifndef CHECK_EOF
  426. #  define CHECK_EOF   /* default as of 5.13/5.2 */
  427. #endif
  428. #ifndef CHECK_EOF
  429. #  define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE)<<k;k+=8;}}
  430. #else
  431. #  define NEEDBITS(n) {while(k<(n)){int c=NEXTBYTE;if(c==EOF)return 1;
  432.     b|=((ulg)c)<<k;k+=8;}}
  433. #endif                      /* Piet Plomp:  change "return 1" to "break" */
  434. #define DUMPBITS(n) {b>>=(n);k-=(n);}
  435. /*
  436.    Huffman code decoding is performed using a multi-level table lookup.
  437.    The fastest way to decode is to simply build a lookup table whose
  438.    size is determined by the longest code.  However, the time it takes
  439.    to build this table can also be a factor if the data being decoded
  440.    are not very long.  The most common codes are necessarily the
  441.    shortest codes, so those codes dominate the decoding time, and hence
  442.    the speed.  The idea is you can have a shorter table that decodes the
  443.    shorter, more probable codes, and then point to subsidiary tables for
  444.    the longer codes.  The time it costs to decode the longer codes is
  445.    then traded against the time it takes to make longer tables.
  446.    This results of this trade are in the variables lbits and dbits
  447.    below.  lbits is the number of bits the first level table for literal/
  448.    length codes can decode in one step, and dbits is the same thing for
  449.    the distance codes.  Subsequent tables are also less than or equal to
  450.    those sizes.  These values may be adjusted either when all of the
  451.    codes are shorter than that, in which case the longest code length in
  452.    bits is used, or when the shortest code is *longer* than the requested
  453.    table size, in which case the length of the shortest code in bits is
  454.    used.
  455.    There are two different values for the two tables, since they code a
  456.    different number of possibilities each.  The literal/length table
  457.    codes 286 possible values, or in a flat code, a little over eight
  458.    bits.  The distance table codes 30 possible values, or a little less
  459.    than five bits, flat.  The optimum values for speed end up being
  460.    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
  461.    The optimum values may differ though from machine to machine, and
  462.    possibly even between compilers.  Your mileage may vary.
  463.  */
  464. static ZCONST int lbits = 9;    /* bits in base literal/length lookup table */
  465. static ZCONST int dbits = 6;    /* bits in base distance lookup table */
  466. #ifndef ASM_INFLATECODES
  467. int inflate_codes(__G__ tl, td, bl, bd)
  468.      __GDEF
  469. struct huft *tl, *td;   /* literal/length and distance decoder tables */
  470. int bl, bd;             /* number of bits decoded by tl[] and td[] */
  471. /* inflate (decompress) the codes in a deflated (compressed) block.
  472.    Return an error code or zero if it all goes ok. */
  473. {
  474.   register unsigned e;  /* table entry flag/number of extra bits */
  475.   unsigned n, d;        /* length and index for copy */
  476.   unsigned w;           /* current window position */
  477.   struct huft *t;       /* pointer to table entry */
  478.   unsigned ml, md;      /* masks for bl and bd bits */
  479.   register ulg b;       /* bit buffer */
  480.   register unsigned k;  /* number of bits in bit buffer */
  481.   /* make local copies of globals */
  482.   b = G.bb;                       /* initialize bit buffer */
  483.   k = G.bk;
  484.   w = G.wp;                       /* initialize window position */
  485.   /* inflate the coded data */
  486.   ml = mask_bits[bl];           /* precompute masks for speed */
  487.   md = mask_bits[bd];
  488.   while (1)                     /* do until end of block */
  489.   {
  490.     NEEDBITS((unsigned)bl)
  491.     if ((e = (t = tl + ((unsigned)b & ml))->e) > 16)
  492.       do {
  493.         if (e == 99)
  494.           return 1;
  495.         DUMPBITS(t->b)
  496.         e -= 16;
  497.         NEEDBITS(e)
  498.       } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16);
  499.     DUMPBITS(t->b)
  500.     if (e == 16)                /* then it's a literal */
  501.     {
  502.       redirSlide[w++] = (uch)t->v.n;
  503.       if (w == wsize)
  504.       {
  505.         FLUSH(w);
  506.         w = 0;
  507.       }
  508.     }
  509.     else                        /* it's an EOB or a length */
  510.     {
  511.       /* exit if end of block */
  512.       if (e == 15)
  513.         break;
  514.       /* get length of block to copy */
  515.       NEEDBITS(e)
  516.       n = t->v.n + ((unsigned)b & mask_bits[e]);
  517.       DUMPBITS(e);
  518.       /* decode distance of block to copy */
  519.       NEEDBITS((unsigned)bd)
  520.       if ((e = (t = td + ((unsigned)b & md))->e) > 16)
  521.         do {
  522.           if (e == 99)
  523.             return 1;
  524.           DUMPBITS(t->b)
  525.           e -= 16;
  526.           NEEDBITS(e)
  527.         } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16);
  528.       DUMPBITS(t->b)
  529.       NEEDBITS(e)
  530.       d = w - t->v.n - ((unsigned)b & mask_bits[e]);
  531.       DUMPBITS(e)
  532.       /* do the copy */
  533.       do {
  534. #if (defined(DLL) && !defined(NO_SLIDE_REDIR))
  535.         if (G.redirect_slide) {/* &= w/ wsize unnecessary & wrong if redirect */
  536.           if (d >= wsize)
  537.             return 1;           /* invalid compressed data */
  538.           n -= (e = (e = wsize - (d > w ? d : w)) > n ? n : e);
  539.         }
  540.         else
  541. #endif
  542.           n -= (e = (e = wsize - ((d &= wsize-1) > w ? d : w)) > n ? n : e);
  543. #ifndef NOMEMCPY
  544.         if (w - d >= e)         /* (this test assumes unsigned comparison) */
  545.         {
  546.           memcpy(redirSlide + w, redirSlide + d, e);
  547.           w += e;
  548.           d += e;
  549.         }
  550.         else                    /* do it slowly to avoid memcpy() overlap */
  551. #endif /* !NOMEMCPY */
  552.           do {
  553.             redirSlide[w++] = redirSlide[d++];
  554.           } while (--e);
  555.         if (w == wsize)
  556.         {
  557.           FLUSH(w);
  558.           w = 0;
  559.         }
  560.       } while (n);
  561.     }
  562.   }
  563.   /* restore the globals from the locals */
  564.   G.wp = w;                       /* restore global window pointer */
  565.   G.bb = b;                       /* restore global bit buffer */
  566.   G.bk = k;
  567.   /* done */
  568.   return 0;
  569. }
  570. #endif /* ASM_INFLATECODES */
  571. static int inflate_stored(__G)
  572.      __GDEF
  573. /* "decompress" an inflated type 0 (stored) block. */
  574. {
  575.   unsigned n;           /* number of bytes in block */
  576.   unsigned w;           /* current window position */
  577.   register ulg b;       /* bit buffer */
  578.   register unsigned k;  /* number of bits in bit buffer */
  579.   /* make local copies of globals */
  580.   Trace((stderr, "nstored block"));
  581.   b = G.bb;                       /* initialize bit buffer */
  582.   k = G.bk;
  583.   w = G.wp;                       /* initialize window position */
  584.   /* go to byte boundary */
  585.   n = k & 7;
  586.   DUMPBITS(n);
  587.   /* get the length and its complement */
  588.   NEEDBITS(16)
  589.   n = ((unsigned)b & 0xffff);
  590.   DUMPBITS(16)
  591.   NEEDBITS(16)
  592.   if (n != (unsigned)((~b) & 0xffff))
  593.     return 1;                   /* error in compressed data */
  594.   DUMPBITS(16)
  595.   /* read and output the compressed data */
  596.   while (n--)
  597.   {
  598.     NEEDBITS(8)
  599.     redirSlide[w++] = (uch)b;
  600.     if (w == wsize)
  601.     {
  602.       FLUSH(w);
  603.       w = 0;
  604.     }
  605.     DUMPBITS(8)
  606.   }
  607.   /* restore the globals from the locals */
  608.   G.wp = w;                       /* restore global window pointer */
  609.   G.bb = b;                       /* restore global bit buffer */
  610.   G.bk = k;
  611.   return 0;
  612. }
  613. /* Globals for literal tables (built once) */
  614. /* Moved to globals.h                      */
  615. #if 0
  616. struct huft *fixed_tl = (struct huft *)NULL;
  617. struct huft *fixed_td;
  618. int fixed_bl, fixed_bd;
  619. #endif
  620. static int inflate_fixed(__G)
  621.      __GDEF
  622. /* decompress an inflated type 1 (fixed Huffman codes) block.  We should
  623.    either replace this with a custom decoder, or at least precompute the
  624.    Huffman tables. */
  625. {
  626.   /* if first time, set up tables for fixed blocks */
  627.   Trace((stderr, "nliteral block"));
  628.   if (G.fixed_tl == (struct huft *)NULL)
  629.   {
  630.     int i;                /* temporary variable */
  631.     unsigned l[288];      /* length list for huft_build */
  632.     /* literal table */
  633.     for (i = 0; i < 144; i++)
  634.       l[i] = 8;
  635.     for (; i < 256; i++)
  636.       l[i] = 9;
  637.     for (; i < 280; i++)
  638.       l[i] = 7;
  639.     for (; i < 288; i++)          /* make a complete, but wrong code set */
  640.       l[i] = 8;
  641.     G.fixed_bl = 7;
  642.     if ((i = huft_build(__G__ l, 288, 257, cplens, cplext,
  643.                         &G.fixed_tl, &G.fixed_bl)) != 0)
  644.     {
  645.       G.fixed_tl = (struct huft *)NULL;
  646.       return i;
  647.     }
  648.     /* distance table */
  649.     for (i = 0; i < 30; i++)      /* make an incomplete code set */
  650.       l[i] = 5;
  651.     G.fixed_bd = 5;
  652.     if ((i = huft_build(__G__ l, 30, 0, cpdist, cpdext,
  653.                         &G.fixed_td, &G.fixed_bd)) > 1)
  654.     {
  655.       huft_free(G.fixed_tl);
  656.       G.fixed_tl = (struct huft *)NULL;
  657.       return i;
  658.     }
  659.   }
  660.   /* decompress until an end-of-block code */
  661.   return inflate_codes(__G__ G.fixed_tl, G.fixed_td,
  662.                              G.fixed_bl, G.fixed_bd) != 0;
  663. }
  664. static int inflate_dynamic(__G)
  665.   __GDEF
  666. /* decompress an inflated type 2 (dynamic Huffman codes) block. */
  667. {
  668.   int i;                /* temporary variables */
  669.   unsigned j;
  670.   unsigned l;           /* last length */
  671.   unsigned m;           /* mask for bit lengths table */
  672.   unsigned n;           /* number of lengths to get */
  673.   struct huft *tl;      /* literal/length code table */
  674.   struct huft *td;      /* distance code table */
  675.   int bl;               /* lookup bits for tl */
  676.   int bd;               /* lookup bits for td */
  677.   unsigned nb;          /* number of bit length codes */
  678.   unsigned nl;          /* number of literal/length codes */
  679.   unsigned nd;          /* number of distance codes */
  680. #ifdef PKZIP_BUG_WORKAROUND
  681.   unsigned ll[288+32]; /* literal/length and distance code lengths */
  682. #else
  683.   unsigned ll[286+30]; /* literal/length and distance code lengths */
  684. #endif
  685.   register ulg b;       /* bit buffer */
  686.   register unsigned k;  /* number of bits in bit buffer */
  687.   /* make local bit buffer */
  688.   Trace((stderr, "ndynamic block"));
  689.   b = G.bb;
  690.   k = G.bk;
  691.   /* read in table lengths */
  692.   NEEDBITS(5)
  693.   nl = 257 + ((unsigned)b & 0x1f);      /* number of literal/length codes */
  694.   DUMPBITS(5)
  695.   NEEDBITS(5)
  696.   nd = 1 + ((unsigned)b & 0x1f);        /* number of distance codes */
  697.   DUMPBITS(5)
  698.   NEEDBITS(4)
  699.   nb = 4 + ((unsigned)b & 0xf);         /* number of bit length codes */
  700.   DUMPBITS(4)
  701. #ifdef PKZIP_BUG_WORKAROUND
  702.   if (nl > 288 || nd > 32)
  703. #else
  704.   if (nl > 286 || nd > 30)
  705. #endif
  706.     return 1;                   /* bad lengths */
  707.   /* read in bit-length-code lengths */
  708.   for (j = 0; j < nb; j++)
  709.   {
  710.     NEEDBITS(3)
  711.     ll[border[j]] = (unsigned)b & 7;
  712.     DUMPBITS(3)
  713.   }
  714.   for (; j < 19; j++)
  715.     ll[border[j]] = 0;
  716.   /* build decoding table for trees--single level, 7 bit lookup */
  717.   bl = 7;
  718.   i = huft_build(__G__ ll, 19, 19, NULL, NULL, &tl, &bl);
  719.   if (bl == 0)                        /* no bit lengths */
  720.     i = 1;
  721.   if (i)
  722.   {
  723.     if (i == 1)
  724.       huft_free(tl);
  725.     return i;                   /* incomplete code set */
  726.   }
  727.   /* read in literal and distance code lengths */
  728.   n = nl + nd;
  729.   m = mask_bits[bl];
  730.   i = l = 0;
  731.   while ((unsigned)i < n)
  732.   {
  733.     NEEDBITS((unsigned)bl)
  734.     j = (td = tl + ((unsigned)b & m))->b;
  735.     DUMPBITS(j)
  736.     j = td->v.n;
  737.     if (j < 16)                 /* length of code in bits (0..15) */
  738.       ll[i++] = l = j;          /* save last length in l */
  739.     else if (j == 16)           /* repeat last length 3 to 6 times */
  740.     {
  741.       NEEDBITS(2)
  742.       j = 3 + ((unsigned)b & 3);
  743.       DUMPBITS(2)
  744.       if ((unsigned)i + j > n)
  745.         return 1;
  746.       while (j--)
  747.         ll[i++] = l;
  748.     }
  749.     else if (j == 17)           /* 3 to 10 zero length codes */
  750.     {
  751.       NEEDBITS(3)
  752.       j = 3 + ((unsigned)b & 7);
  753.       DUMPBITS(3)
  754.       if ((unsigned)i + j > n)
  755.         return 1;
  756.       while (j--)
  757.         ll[i++] = 0;
  758.       l = 0;
  759.     }
  760.     else                        /* j == 18: 11 to 138 zero length codes */
  761.     {
  762.       NEEDBITS(7)
  763.       j = 11 + ((unsigned)b & 0x7f);
  764.       DUMPBITS(7)
  765.       if ((unsigned)i + j > n)
  766.         return 1;
  767.       while (j--)
  768.         ll[i++] = 0;
  769.       l = 0;
  770.     }
  771.   }
  772.   /* free decoding table for trees */
  773.   huft_free(tl);
  774.   /* restore the global bit buffer */
  775.   G.bb = b;
  776.   G.bk = k;
  777.   /* build the decoding tables for literal/length and distance codes */
  778.   bl = lbits;
  779.   i = huft_build(__G__ ll, nl, 257, cplens, cplext, &tl, &bl);
  780.   if (bl == 0)                        /* no literals or lengths */
  781.     i = 1;
  782.   if (i)
  783.   {
  784.     if (i == 1) {
  785.       if (!uO.qflag)
  786.         MESSAGE((uch *)"(incomplete l-tree)  ", 21L, 1);
  787.       huft_free(tl);
  788.     }
  789.     return i;                   /* incomplete code set */
  790.   }
  791.   bd = dbits;
  792.   i = huft_build(__G__ ll + nl, nd, 0, cpdist, cpdext, &td, &bd);
  793.   if (bd == 0 && nl > 257)    /* lengths but no distances */
  794.   {
  795.     if (!uO.qflag)
  796.       MESSAGE((uch *)"(incomplete d-tree)  ", 21L, 1);
  797.     huft_free(tl);
  798.     return 1;
  799.   }
  800.   if (i == 1) {
  801. #ifdef PKZIP_BUG_WORKAROUND
  802.     i = 0;
  803. #else
  804.     if (!uO.qflag)
  805.       MESSAGE((uch *)"(incomplete d-tree)  ", 21L, 1);
  806.     huft_free(td);
  807. #endif
  808.   }
  809.   if (i)
  810.   {
  811.     huft_free(tl);
  812.     return i;
  813.   }
  814.   /* decompress until an end-of-block code */
  815.   if (inflate_codes(__G__ tl, td, bl, bd))
  816.     return 1;
  817.   /* free the decoding tables, return */
  818.   huft_free(tl);
  819.   huft_free(td);
  820.   return 0;
  821. }
  822. static int inflate_block(__G__ e)
  823.   __GDEF
  824.   int *e;               /* last block flag */
  825. /* decompress an inflated block */
  826. {
  827.   unsigned t;           /* block type */
  828.   register ulg b;       /* bit buffer */
  829.   register unsigned k;  /* number of bits in bit buffer */
  830.   /* make local bit buffer */
  831.   b = G.bb;
  832.   k = G.bk;
  833.   /* read in last block bit */
  834.   NEEDBITS(1)
  835.   *e = (int)b & 1;
  836.   DUMPBITS(1)
  837.   /* read in block type */
  838.   NEEDBITS(2)
  839.   t = (unsigned)b & 3;
  840.   DUMPBITS(2)
  841.   /* restore the global bit buffer */
  842.   G.bb = b;
  843.   G.bk = k;
  844.   /* inflate that block type */
  845.   if (t == 2)
  846.     return inflate_dynamic(__G);
  847.   if (t == 0)
  848.     return inflate_stored(__G);
  849.   if (t == 1)
  850.     return inflate_fixed(__G);
  851.   /* bad block type */
  852.   return 2;
  853. }
  854. int inflate(__G)
  855.      __GDEF
  856. /* decompress an inflated entry */
  857. {
  858.   int e;                /* last block flag */
  859.   int r;                /* result code */
  860. #ifdef DEBUG
  861.   unsigned h = 0;       /* maximum struct huft's malloc'ed */
  862. #endif
  863. #if (defined(DLL) && !defined(NO_SLIDE_REDIR))
  864.   if (G.redirect_slide)
  865.     wsize = G.redirect_size, redirSlide = G.redirect_buffer;
  866.   else
  867.     wsize = WSIZE, redirSlide = slide;   /* how they're #defined if !DLL */
  868. #endif
  869.   /* initialize window, bit buffer */
  870.   G.wp = 0;
  871.   G.bk = 0;
  872.   G.bb = 0;
  873.   /* decompress until the last block */
  874.   do {
  875. #ifdef DEBUG
  876.     G.hufts = 0;
  877. #endif
  878.     if ((r = inflate_block(__G__ &e)) != 0)
  879.       return r;
  880. #ifdef DEBUG
  881.     if (G.hufts > h)
  882.       h = G.hufts;
  883. #endif
  884.   } while (!e);
  885.   /* flush out redirSlide */
  886.   FLUSH(G.wp);
  887.   /* return success */
  888.   Trace((stderr, "n%u bytes in Huffman tables (%d/entry)n",
  889.          h * sizeof(struct huft), sizeof(struct huft)));
  890.   return 0;
  891. }
  892. int inflate_free(__G)
  893.      __GDEF
  894. {
  895.   if (G.fixed_tl != (struct huft *)NULL)
  896.   {
  897.     huft_free(G.fixed_td);
  898.     huft_free(G.fixed_tl);
  899.     G.fixed_td = G.fixed_tl = (struct huft *)NULL;
  900.   }
  901.   return 0;
  902. }
  903. #endif /* ?USE_ZLIB */
  904. /*
  905.  * GRR:  moved huft_build() and huft_free() down here; used by explode()
  906.  *       and fUnZip regardless of whether USE_ZLIB defined or not
  907.  */
  908. /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
  909. #define BMAX 16         /* maximum bit length of any code (16 for explode) */
  910. #define N_MAX 288       /* maximum number of codes in any set */
  911. int huft_build(__G__ b, n, s, d, e, t, m)
  912.   __GDEF
  913.   ZCONST unsigned *b;   /* code lengths in bits (all assumed <= BMAX) */
  914.   unsigned n;           /* number of codes (assumed <= N_MAX) */
  915.   unsigned s;           /* number of simple-valued codes (0..s-1) */
  916.   ZCONST ush *d;        /* list of base values for non-simple codes */
  917.   ZCONST ush *e;        /* list of extra bits for non-simple codes */
  918.   struct huft **t;      /* result: starting table */
  919.   int *m;               /* maximum lookup bits, returns actual */
  920. /* Given a list of code lengths and a maximum table size, make a set of
  921.    tables to decode that set of codes.  Return zero on success, one if
  922.    the given code set is incomplete (the tables are still built in this
  923.    case), two if the input is invalid (all zero length codes or an
  924.    oversubscribed set of lengths), and three if not enough memory.
  925.    The code with value 256 is special, and the tables are constructed
  926.    so that no bits beyond that code are fetched when that code is
  927.    decoded. */
  928. {
  929.   unsigned a;                   /* counter for codes of length k */
  930.   unsigned c[BMAX+1];           /* bit length count table */
  931.   unsigned el;                  /* length of EOB code (value 256) */
  932.   unsigned f;                   /* i repeats in table every f entries */
  933.   int g;                        /* maximum code length */
  934.   int h;                        /* table level */
  935.   register unsigned i;          /* counter, current code */
  936.   register unsigned j;          /* counter */
  937.   register int k;               /* number of bits in current code */
  938.   int lx[BMAX+1];               /* memory for l[-1..BMAX-1] */
  939.   int *l = lx+1;                /* stack of bits per table */
  940.   register unsigned *p;         /* pointer into c[], b[], or v[] */
  941.   register struct huft *q;      /* points to current table */
  942.   struct huft r;                /* table entry for structure assignment */
  943.   struct huft *u[BMAX];         /* table stack */
  944.   unsigned v[N_MAX];            /* values in order of bit length */
  945.   register int w;               /* bits before this table == (l * h) */
  946.   unsigned x[BMAX+1];           /* bit offsets, then code stack */
  947.   unsigned *xp;                 /* pointer into x */
  948.   int y;                        /* number of dummy codes added */
  949.   unsigned z;                   /* number of entries in current table */
  950.   /* Generate counts for each bit length */
  951.   el = n > 256 ? b[256] : BMAX; /* set length of EOB code, if any */
  952.   memzero((char *)c, sizeof(c));
  953.   p = (unsigned *)b;  i = n;
  954.   do {
  955.     c[*p]++; p++;               /* assume all entries <= BMAX */
  956.   } while (--i);
  957.   if (c[0] == n)                /* null input--all zero length codes */
  958.   {
  959.     *t = (struct huft *)NULL;
  960.     *m = 0;
  961.     return 0;
  962.   }
  963.   /* Find minimum and maximum length, bound *m by those */
  964.   for (j = 1; j <= BMAX; j++)
  965.     if (c[j])
  966.       break;
  967.   k = j;                        /* minimum code length */
  968.   if ((unsigned)*m < j)
  969.     *m = j;
  970.   for (i = BMAX; i; i--)
  971.     if (c[i])
  972.       break;
  973.   g = i;                        /* maximum code length */
  974.   if ((unsigned)*m > i)
  975.     *m = i;
  976.   /* Adjust last length count to fill out codes, if needed */
  977.   for (y = 1 << j; j < i; j++, y <<= 1)
  978.     if ((y -= c[j]) < 0)
  979.       return 2;                 /* bad input: more codes than bits */
  980.   if ((y -= c[i]) < 0)
  981.     return 2;
  982.   c[i] += y;
  983.   /* Generate starting offsets into the value table for each length */
  984.   x[1] = j = 0;
  985.   p = c + 1;  xp = x + 2;
  986.   while (--i) {                 /* note that i == g from above */
  987.     *xp++ = (j += *p++);
  988.   }
  989.   /* Make a table of values in order of bit lengths */
  990.   memzero((char *)v, sizeof(v));
  991.   p = (unsigned *)b;  i = 0;
  992.   do {
  993.     if ((j = *p++) != 0)
  994.       v[x[j]++] = i;
  995.   } while (++i < n);
  996.   n = x[g];                     /* set n to length of v */
  997.   /* Generate the Huffman codes and for each, make the table entries */
  998.   x[0] = i = 0;                 /* first Huffman code is zero */
  999.   p = v;                        /* grab values in bit order */
  1000.   h = -1;                       /* no tables yet--level -1 */
  1001.   w = l[-1] = 0;                /* no bits decoded yet */
  1002.   u[0] = (struct huft *)NULL;   /* just to keep compilers happy */
  1003.   q = (struct huft *)NULL;      /* ditto */
  1004.   z = 0;                        /* ditto */
  1005.   /* go through the bit lengths (k already is bits in shortest code) */
  1006.   for (; k <= g; k++)
  1007.   {
  1008.     a = c[k];
  1009.     while (a--)
  1010.     {
  1011.       /* here i is the Huffman code of length k bits for value *p */
  1012.       /* make tables up to required level */
  1013.       while (k > w + l[h])
  1014.       {
  1015.         w += l[h++];            /* add bits already decoded */
  1016.         /* compute minimum size table less than or equal to *m bits */
  1017.         z = (z = g - w) > (unsigned)*m ? *m : z;        /* upper limit */
  1018.         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
  1019.         {                       /* too few codes for k-w bit table */
  1020.           f -= a + 1;           /* deduct codes from patterns left */
  1021.           xp = c + k;
  1022.           while (++j < z)       /* try smaller tables up to z bits */
  1023.           {
  1024.             if ((f <<= 1) <= *++xp)
  1025.               break;            /* enough codes to use up j bits */
  1026.             f -= *xp;           /* else deduct codes from patterns */
  1027.           }
  1028.         }
  1029.         if ((unsigned)w + j > el && (unsigned)w < el)
  1030.           j = el - w;           /* make EOB code end at table */
  1031.         z = 1 << j;             /* table entries for j-bit table */
  1032.         l[h] = j;               /* set table size in stack */
  1033.         /* allocate and link in new table */
  1034.         if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) ==
  1035.             (struct huft *)NULL)
  1036.         {
  1037.           if (h)
  1038.             huft_free(u[0]);
  1039.           return 3;             /* not enough memory */
  1040.         }
  1041. #ifdef DEBUG
  1042.         G.hufts += z + 1;         /* track memory usage */
  1043. #endif
  1044.         *t = q + 1;             /* link to list for huft_free() */
  1045.         *(t = &(q->v.t)) = (struct huft *)NULL;
  1046.         u[h] = ++q;             /* table starts after link */
  1047.         /* connect to last table, if there is one */
  1048.         if (h)
  1049.         {
  1050.           x[h] = i;             /* save pattern for backing up */
  1051.           r.b = (uch)l[h-1];    /* bits to dump before this table */
  1052.           r.e = (uch)(16 + j);  /* bits in this table */
  1053.           r.v.t = q;            /* pointer to this table */
  1054.           j = (i & ((1 << w) - 1)) >> (w - l[h-1]);
  1055.           u[h-1][j] = r;        /* connect to last table */
  1056.         }
  1057.       }
  1058.       /* set up table entry in r */
  1059.       r.b = (uch)(k - w);
  1060.       if (p >= v + n)
  1061.         r.e = 99;               /* out of values--invalid code */
  1062.       else if (*p < s)
  1063.       {
  1064.         r.e = (uch)(*p < 256 ? 16 : 15);  /* 256 is end-of-block code */
  1065.         r.v.n = (ush)*p++;                /* simple code is just the value */
  1066.       }
  1067.       else
  1068.       {
  1069.         r.e = (uch)e[*p - s];   /* non-simple--look up in lists */
  1070.         r.v.n = d[*p++ - s];
  1071.       }
  1072.       /* fill code-like entries with r */
  1073.       f = 1 << (k - w);
  1074.       for (j = i >> w; j < z; j += f)
  1075.         q[j] = r;
  1076.       /* backwards increment the k-bit code i */
  1077.       for (j = 1 << (k - 1); i & j; j >>= 1)
  1078.         i ^= j;
  1079.       i ^= j;
  1080.       /* backup over finished tables */
  1081.       while ((i & ((1 << w) - 1)) != x[h])
  1082.         w -= l[--h];            /* don't need to update q */
  1083.     }
  1084.   }
  1085.   /* return actual size of base table */
  1086.   *m = l[0];
  1087.   /* Return true (1) if we were given an incomplete table */
  1088.   return y != 0 && g != 1;
  1089. }
  1090. int huft_free(t)
  1091. struct huft *t;         /* table to free */
  1092. /* Free the malloc'ed tables built by huft_build(), which makes a linked
  1093.    list of the tables it made, with the links in a dummy first entry of
  1094.    each table. */
  1095. {
  1096.   register struct huft *p, *q;
  1097.   /* Go through linked list, freeing from the malloced (t[-1]) address. */
  1098.   p = t;
  1099.   while (p != (struct huft *)NULL)
  1100.   {
  1101.     q = (--p)->v.t;
  1102.     free((zvoid *)p);
  1103.     p = q;
  1104.   }
  1105.   return 0;
  1106. }