zlib.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:66k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is derived from various .h and .c files from the zlib-0.95
  3.  * distribution by Jean-loup Gailly and Mark Adler, with some additions
  4.  * by Paul Mackerras to aid in implementing Deflate compression and
  5.  * decompression for PPP packets.  See zlib.h for conditions of
  6.  * distribution and use.
  7.  *
  8.  * Changes that have been made include:
  9.  * - changed functions not used outside this file to "local"
  10.  * - added minCompression parameter to deflateInit2
  11.  * - added Z_PACKET_FLUSH (see zlib.h for details)
  12.  * - added inflateIncomp
  13.  *
  14.   Copyright (C) 1995 Jean-loup Gailly and Mark Adler
  15.   This software is provided 'as-is', without any express or implied
  16.   warranty.  In no event will the authors be held liable for any damages
  17.   arising from the use of this software.
  18.   Permission is granted to anyone to use this software for any purpose,
  19.   including commercial applications, and to alter it and redistribute it
  20.   freely, subject to the following restrictions:
  21.   1. The origin of this software must not be misrepresented; you must not
  22.      claim that you wrote the original software. If you use this software
  23.      in a product, an acknowledgment in the product documentation would be
  24.      appreciated but is not required.
  25.   2. Altered source versions must be plainly marked as such, and must not be
  26.      misrepresented as being the original software.
  27.   3. This notice may not be removed or altered from any source distribution.
  28.   Jean-loup Gailly        Mark Adler
  29.   gzip@prep.ai.mit.edu    madler@alumni.caltech.edu
  30.  *
  31.  * 
  32.  */
  33. /*+++++*/
  34. /* zutil.h -- internal interface and configuration of the compression library
  35.  * Copyright (C) 1995 Jean-loup Gailly.
  36.  * For conditions of distribution and use, see copyright notice in zlib.h
  37.  */
  38. /* WARNING: this file should *not* be used by applications. It is
  39.    part of the implementation of the compression library and is
  40.    subject to change. Applications should only use zlib.h.
  41.  */
  42. /* From: zutil.h,v 1.9 1995/05/03 17:27:12 jloup Exp */
  43. #define _Z_UTIL_H
  44. #include "zlib.h"
  45. #ifndef local
  46. #  define local static
  47. #endif
  48. /* compile with -Dlocal if your debugger can't find static symbols */
  49. #define FAR
  50. typedef unsigned char  uch;
  51. typedef uch FAR uchf;
  52. typedef unsigned short ush;
  53. typedef ush FAR ushf;
  54. typedef unsigned long  ulg;
  55. extern char *z_errmsg[]; /* indexed by 1-zlib_error */
  56. #define ERR_RETURN(strm,err) return (strm->msg=z_errmsg[1-err], err)
  57. /* To be used only when the state is known to be valid */
  58. #ifndef NULL
  59. #define NULL ((void *) 0)
  60. #endif
  61.         /* common constants */
  62. #define DEFLATED   8
  63. #ifndef DEF_WBITS
  64. #  define DEF_WBITS MAX_WBITS
  65. #endif
  66. /* default windowBits for decompression. MAX_WBITS is for compression only */
  67. #if MAX_MEM_LEVEL >= 8
  68. #  define DEF_MEM_LEVEL 8
  69. #else
  70. #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
  71. #endif
  72. /* default memLevel */
  73. #define STORED_BLOCK 0
  74. #define STATIC_TREES 1
  75. #define DYN_TREES    2
  76. /* The three kinds of block type */
  77. #define MIN_MATCH  3
  78. #define MAX_MATCH  258
  79. /* The minimum and maximum match lengths */
  80.          /* functions */
  81. #include <linux/string.h>
  82. #define zmemcpy memcpy
  83. #define zmemzero(dest, len) memset(dest, 0, len)
  84. /* Diagnostic functions */
  85. #ifdef DEBUG_ZLIB
  86. #  include <stdio.h>
  87. #  ifndef verbose
  88. #    define verbose 0
  89. #  endif
  90. #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  91. #  define Trace(x) fprintf x
  92. #  define Tracev(x) {if (verbose) fprintf x ;}
  93. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  94. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  95. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  96. #else
  97. #  define Assert(cond,msg)
  98. #  define Trace(x)
  99. #  define Tracev(x)
  100. #  define Tracevv(x)
  101. #  define Tracec(c,x)
  102. #  define Tracecv(c,x)
  103. #endif
  104. typedef uLong (*check_func) OF((uLong check, Bytef *buf, uInt len));
  105. /* voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size)); */
  106. /* void   zcfree  OF((voidpf opaque, voidpf ptr)); */
  107. #define ZALLOC(strm, items, size) 
  108.            (*((strm)->zalloc))((strm)->opaque, (items), (size))
  109. #define ZFREE(strm, addr, size)
  110.    (*((strm)->zfree))((strm)->opaque, (voidpf)(addr), (size))
  111. #define TRY_FREE(s, p, n) {if (p) ZFREE(s, p, n);}
  112. /* deflate.h -- internal compression state
  113.  * Copyright (C) 1995 Jean-loup Gailly
  114.  * For conditions of distribution and use, see copyright notice in zlib.h 
  115.  */
  116. /* WARNING: this file should *not* be used by applications. It is
  117.    part of the implementation of the compression library and is
  118.    subject to change. Applications should only use zlib.h.
  119.  */
  120. /*+++++*/
  121. /* infblock.h -- header to use infblock.c
  122.  * Copyright (C) 1995 Mark Adler
  123.  * For conditions of distribution and use, see copyright notice in zlib.h 
  124.  */
  125. /* WARNING: this file should *not* be used by applications. It is
  126.    part of the implementation of the compression library and is
  127.    subject to change. Applications should only use zlib.h.
  128.  */
  129. struct inflate_blocks_state;
  130. typedef struct inflate_blocks_state FAR inflate_blocks_statef;
  131. local inflate_blocks_statef * inflate_blocks_new OF((
  132.     z_stream *z,
  133.     check_func c,               /* check function */
  134.     uInt w));                   /* window size */
  135. local int inflate_blocks OF((
  136.     inflate_blocks_statef *,
  137.     z_stream *,
  138.     int));                      /* initial return code */
  139. local void inflate_blocks_reset OF((
  140.     inflate_blocks_statef *,
  141.     z_stream *,
  142.     uLongf *));                  /* check value on output */
  143. local int inflate_blocks_free OF((
  144.     inflate_blocks_statef *,
  145.     z_stream *,
  146.     uLongf *));                  /* check value on output */
  147. local int inflate_addhistory OF((
  148.     inflate_blocks_statef *,
  149.     z_stream *));
  150. local int inflate_packet_flush OF((
  151.     inflate_blocks_statef *));
  152. /*+++++*/
  153. /* inftrees.h -- header to use inftrees.c
  154.  * Copyright (C) 1995 Mark Adler
  155.  * For conditions of distribution and use, see copyright notice in zlib.h 
  156.  */
  157. /* WARNING: this file should *not* be used by applications. It is
  158.    part of the implementation of the compression library and is
  159.    subject to change. Applications should only use zlib.h.
  160.  */
  161. /* Huffman code lookup table entry--this entry is four bytes for machines
  162.    that have 16-bit pointers (e.g. PC's in the small or medium model). */
  163. typedef struct inflate_huft_s FAR inflate_huft;
  164. struct inflate_huft_s {
  165.   union {
  166.     struct {
  167.       Byte Exop;        /* number of extra bits or operation */
  168.       Byte Bits;        /* number of bits in this code or subcode */
  169.     } what;
  170.     uInt Nalloc; /* number of these allocated here */
  171.     Bytef *pad;         /* pad structure to a power of 2 (4 bytes for */
  172.   } word;               /*  16-bit, 8 bytes for 32-bit machines) */
  173.   union {
  174.     uInt Base;          /* literal, length base, or distance base */
  175.     inflate_huft *Next; /* pointer to next level of table */
  176.   } more;
  177. };
  178. #ifdef DEBUG_ZLIB
  179.   local uInt inflate_hufts;
  180. #endif
  181. local int inflate_trees_bits OF((
  182.     uIntf *,                    /* 19 code lengths */
  183.     uIntf *,                    /* bits tree desired/actual depth */
  184.     inflate_huft * FAR *,       /* bits tree result */
  185.     z_stream *));               /* for zalloc, zfree functions */
  186. local int inflate_trees_dynamic OF((
  187.     uInt,                       /* number of literal/length codes */
  188.     uInt,                       /* number of distance codes */
  189.     uIntf *,                    /* that many (total) code lengths */
  190.     uIntf *,                    /* literal desired/actual bit depth */
  191.     uIntf *,                    /* distance desired/actual bit depth */
  192.     inflate_huft * FAR *,       /* literal/length tree result */
  193.     inflate_huft * FAR *,       /* distance tree result */
  194.     z_stream *));               /* for zalloc, zfree functions */
  195. local int inflate_trees_fixed OF((
  196.     uIntf *,                    /* literal desired/actual bit depth */
  197.     uIntf *,                    /* distance desired/actual bit depth */
  198.     inflate_huft * FAR *,       /* literal/length tree result */
  199.     inflate_huft * FAR *));     /* distance tree result */
  200. local int inflate_trees_free OF((
  201.     inflate_huft *,             /* tables to free */
  202.     z_stream *));               /* for zfree function */
  203. /*+++++*/
  204. /* infcodes.h -- header to use infcodes.c
  205.  * Copyright (C) 1995 Mark Adler
  206.  * For conditions of distribution and use, see copyright notice in zlib.h 
  207.  */
  208. /* WARNING: this file should *not* be used by applications. It is
  209.    part of the implementation of the compression library and is
  210.    subject to change. Applications should only use zlib.h.
  211.  */
  212. struct inflate_codes_state;
  213. typedef struct inflate_codes_state FAR inflate_codes_statef;
  214. local inflate_codes_statef *inflate_codes_new OF((
  215.     uInt, uInt,
  216.     inflate_huft *, inflate_huft *,
  217.     z_stream *));
  218. local int inflate_codes OF((
  219.     inflate_blocks_statef *,
  220.     z_stream *,
  221.     int));
  222. local void inflate_codes_free OF((
  223.     inflate_codes_statef *,
  224.     z_stream *));
  225. /*+++++*/
  226. /* inflate.c -- zlib interface to inflate modules
  227.  * Copyright (C) 1995 Mark Adler
  228.  * For conditions of distribution and use, see copyright notice in zlib.h 
  229.  */
  230. /* inflate private state */
  231. struct internal_state {
  232.   /* mode */
  233.   enum {
  234.       METHOD,   /* waiting for method byte */
  235.       FLAG,     /* waiting for flag byte */
  236.       BLOCKS,   /* decompressing blocks */
  237.       CHECK4,   /* four check bytes to go */
  238.       CHECK3,   /* three check bytes to go */
  239.       CHECK2,   /* two check bytes to go */
  240.       CHECK1,   /* one check byte to go */
  241.       DONE,     /* finished check, done */
  242.       BAD}      /* got an error--stay here */
  243.     mode;               /* current inflate mode */
  244.   /* mode dependent information */
  245.   union {
  246.     uInt method;        /* if FLAGS, method byte */
  247.     struct {
  248.       uLong was;                /* computed check value */
  249.       uLong need;               /* stream check value */
  250.     } check;            /* if CHECK, check values to compare */
  251.     uInt marker;        /* if BAD, inflateSync's marker bytes count */
  252.   } sub;        /* submode */
  253.   /* mode independent information */
  254.   int  nowrap;          /* flag for no wrapper */
  255.   uInt wbits;           /* log2(window size)  (8..15, defaults to 15) */
  256.   inflate_blocks_statef 
  257.     *blocks;            /* current inflate_blocks state */
  258. };
  259. int inflateReset(z)
  260. z_stream *z;
  261. {
  262.   uLong c;
  263.   if (z == Z_NULL || z->state == Z_NULL)
  264.     return Z_STREAM_ERROR;
  265.   z->total_in = z->total_out = 0;
  266.   z->msg = Z_NULL;
  267.   z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
  268.   inflate_blocks_reset(z->state->blocks, z, &c);
  269.   Trace((stderr, "inflate: resetn"));
  270.   return Z_OK;
  271. }
  272. int inflateEnd(z)
  273. z_stream *z;
  274. {
  275.   uLong c;
  276.   if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
  277.     return Z_STREAM_ERROR;
  278.   if (z->state->blocks != Z_NULL)
  279.     inflate_blocks_free(z->state->blocks, z, &c);
  280.   ZFREE(z, z->state, sizeof(struct internal_state));
  281.   z->state = Z_NULL;
  282.   Trace((stderr, "inflate: endn"));
  283.   return Z_OK;
  284. }
  285. int inflateInit2(z, w)
  286. z_stream *z;
  287. int w;
  288. {
  289.   /* initialize state */
  290.   if (z == Z_NULL)
  291.     return Z_STREAM_ERROR;
  292. /*  if (z->zalloc == Z_NULL) z->zalloc = zcalloc; */
  293. /*  if (z->zfree == Z_NULL) z->zfree = zcfree; */
  294.   if ((z->state = (struct internal_state FAR *)
  295.        ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
  296.     return Z_MEM_ERROR;
  297.   z->state->blocks = Z_NULL;
  298.   /* handle undocumented nowrap option (no zlib header or check) */
  299.   z->state->nowrap = 0;
  300.   if (w < 0)
  301.   {
  302.     w = - w;
  303.     z->state->nowrap = 1;
  304.   }
  305.   /* set window size */
  306.   if (w < 8 || w > 15)
  307.   {
  308.     inflateEnd(z);
  309.     return Z_STREAM_ERROR;
  310.   }
  311.   z->state->wbits = (uInt)w;
  312.   /* create inflate_blocks state */
  313.   if ((z->state->blocks =
  314.        inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, 1 << w))
  315.       == Z_NULL)
  316.   {
  317.     inflateEnd(z);
  318.     return Z_MEM_ERROR;
  319.   }
  320.   Trace((stderr, "inflate: allocatedn"));
  321.   /* reset state */
  322.   inflateReset(z);
  323.   return Z_OK;
  324. }
  325. int inflateInit(z)
  326. z_stream *z;
  327. {
  328.   return inflateInit2(z, DEF_WBITS);
  329. }
  330. #define NEEDBYTE {if(z->avail_in==0)goto empty;r=Z_OK;}
  331. #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
  332. int inflate(z, f)
  333. z_stream *z;
  334. int f;
  335. {
  336.   int r;
  337.   uInt b;
  338.   if (z == Z_NULL || z->next_in == Z_NULL)
  339.     return Z_STREAM_ERROR;
  340.   r = Z_BUF_ERROR;
  341.   while (1) switch (z->state->mode)
  342.   {
  343.     case METHOD:
  344.       NEEDBYTE
  345.       if (((z->state->sub.method = NEXTBYTE) & 0xf) != DEFLATED)
  346.       {
  347.         z->state->mode = BAD;
  348.         z->msg = "unknown compression method";
  349.         z->state->sub.marker = 5;       /* can't try inflateSync */
  350.         break;
  351.       }
  352.       if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
  353.       {
  354.         z->state->mode = BAD;
  355.         z->msg = "invalid window size";
  356.         z->state->sub.marker = 5;       /* can't try inflateSync */
  357.         break;
  358.       }
  359.       z->state->mode = FLAG;
  360.     case FLAG:
  361.       NEEDBYTE
  362.       if ((b = NEXTBYTE) & 0x20)
  363.       {
  364.         z->state->mode = BAD;
  365.         z->msg = "invalid reserved bit";
  366.         z->state->sub.marker = 5;       /* can't try inflateSync */
  367.         break;
  368.       }
  369.       if (((z->state->sub.method << 8) + b) % 31)
  370.       {
  371.         z->state->mode = BAD;
  372.         z->msg = "incorrect header check";
  373.         z->state->sub.marker = 5;       /* can't try inflateSync */
  374.         break;
  375.       }
  376.       Trace((stderr, "inflate: zlib header okn"));
  377.       z->state->mode = BLOCKS;
  378.     case BLOCKS:
  379.       r = inflate_blocks(z->state->blocks, z, r);
  380.       if (f == Z_PACKET_FLUSH && z->avail_in == 0 && z->avail_out != 0)
  381.   r = inflate_packet_flush(z->state->blocks);
  382.       if (r == Z_DATA_ERROR)
  383.       {
  384.         z->state->mode = BAD;
  385.         z->state->sub.marker = 0;       /* can try inflateSync */
  386.         break;
  387.       }
  388.       if (r != Z_STREAM_END)
  389.         return r;
  390.       r = Z_OK;
  391.       inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
  392.       if (z->state->nowrap)
  393.       {
  394.         z->state->mode = DONE;
  395.         break;
  396.       }
  397.       z->state->mode = CHECK4;
  398.     case CHECK4:
  399.       NEEDBYTE
  400.       z->state->sub.check.need = (uLong)NEXTBYTE << 24;
  401.       z->state->mode = CHECK3;
  402.     case CHECK3:
  403.       NEEDBYTE
  404.       z->state->sub.check.need += (uLong)NEXTBYTE << 16;
  405.       z->state->mode = CHECK2;
  406.     case CHECK2:
  407.       NEEDBYTE
  408.       z->state->sub.check.need += (uLong)NEXTBYTE << 8;
  409.       z->state->mode = CHECK1;
  410.     case CHECK1:
  411.       NEEDBYTE
  412.       z->state->sub.check.need += (uLong)NEXTBYTE;
  413.       if (z->state->sub.check.was != z->state->sub.check.need)
  414.       {
  415.         z->state->mode = BAD;
  416.         z->msg = "incorrect data check";
  417.         z->state->sub.marker = 5;       /* can't try inflateSync */
  418.         break;
  419.       }
  420.       Trace((stderr, "inflate: zlib check okn"));
  421.       z->state->mode = DONE;
  422.     case DONE:
  423.       return Z_STREAM_END;
  424.     case BAD:
  425.       return Z_DATA_ERROR;
  426.     default:
  427.       return Z_STREAM_ERROR;
  428.   }
  429.  empty:
  430.   if (f != Z_PACKET_FLUSH)
  431.     return r;
  432.   z->state->mode = BAD;
  433.   z->state->sub.marker = 0;       /* can try inflateSync */
  434.   return Z_DATA_ERROR;
  435. }
  436. /*
  437.  * This subroutine adds the data at next_in/avail_in to the output history
  438.  * without performing any output.  The output buffer must be "caught up";
  439.  * i.e. no pending output (hence s->read equals s->write), and the state must
  440.  * be BLOCKS (i.e. we should be willing to see the start of a series of
  441.  * BLOCKS).  On exit, the output will also be caught up, and the checksum
  442.  * will have been updated if need be.
  443.  */
  444. int inflateIncomp(z)
  445. z_stream *z;
  446. {
  447.     if (z->state->mode != BLOCKS)
  448. return Z_DATA_ERROR;
  449.     return inflate_addhistory(z->state->blocks, z);
  450. }
  451. int inflateSync(z)
  452. z_stream *z;
  453. {
  454.   uInt n;       /* number of bytes to look at */
  455.   Bytef *p;     /* pointer to bytes */
  456.   uInt m;       /* number of marker bytes found in a row */
  457.   uLong r, w;   /* temporaries to save total_in and total_out */
  458.   /* set up */
  459.   if (z == Z_NULL || z->state == Z_NULL)
  460.     return Z_STREAM_ERROR;
  461.   if (z->state->mode != BAD)
  462.   {
  463.     z->state->mode = BAD;
  464.     z->state->sub.marker = 0;
  465.   }
  466.   if ((n = z->avail_in) == 0)
  467.     return Z_BUF_ERROR;
  468.   p = z->next_in;
  469.   m = z->state->sub.marker;
  470.   /* search */
  471.   while (n && m < 4)
  472.   {
  473.     if (*p == (Byte)(m < 2 ? 0 : 0xff))
  474.       m++;
  475.     else if (*p)
  476.       m = 0;
  477.     else
  478.       m = 4 - m;
  479.     p++, n--;
  480.   }
  481.   /* restore */
  482.   z->total_in += p - z->next_in;
  483.   z->next_in = p;
  484.   z->avail_in = n;
  485.   z->state->sub.marker = m;
  486.   /* return no joy or set up to restart on a new block */
  487.   if (m != 4)
  488.     return Z_DATA_ERROR;
  489.   r = z->total_in;  w = z->total_out;
  490.   inflateReset(z);
  491.   z->total_in = r;  z->total_out = w;
  492.   z->state->mode = BLOCKS;
  493.   return Z_OK;
  494. }
  495. #undef NEEDBYTE
  496. #undef NEXTBYTE
  497. /*+++++*/
  498. /* infutil.h -- types and macros common to blocks and codes
  499.  * Copyright (C) 1995 Mark Adler
  500.  * For conditions of distribution and use, see copyright notice in zlib.h 
  501.  */
  502. /* WARNING: this file should *not* be used by applications. It is
  503.    part of the implementation of the compression library and is
  504.    subject to change. Applications should only use zlib.h.
  505.  */
  506. /* inflate blocks semi-private state */
  507. struct inflate_blocks_state {
  508.   /* mode */
  509.   enum {
  510.       TYPE,     /* get type bits (3, including end bit) */
  511.       LENS,     /* get lengths for stored */
  512.       STORED,   /* processing stored block */
  513.       TABLE,    /* get table lengths */
  514.       BTREE,    /* get bit lengths tree for a dynamic block */
  515.       DTREE,    /* get length, distance trees for a dynamic block */
  516.       CODES,    /* processing fixed or dynamic block */
  517.       DRY,      /* output remaining window bytes */
  518.       DONEB,     /* finished last block, done */
  519.       BADB}      /* got a data error--stuck here */
  520.     mode;               /* current inflate_block mode */
  521.   /* mode dependent information */
  522.   union {
  523.     uInt left;          /* if STORED, bytes left to copy */
  524.     struct {
  525.       uInt table;               /* table lengths (14 bits) */
  526.       uInt index;               /* index into blens (or border) */
  527.       uIntf *blens;             /* bit lengths of codes */
  528.       uInt bb;                  /* bit length tree depth */
  529.       inflate_huft *tb;         /* bit length decoding tree */
  530.       int nblens; /* # elements allocated at blens */
  531.     } trees;            /* if DTREE, decoding info for trees */
  532.     struct {
  533.       inflate_huft *tl, *td;    /* trees to free */
  534.       inflate_codes_statef 
  535.          *codes;
  536.     } decode;           /* if CODES, current state */
  537.   } sub;                /* submode */
  538.   uInt last;            /* true if this block is the last block */
  539.   /* mode independent information */
  540.   uInt bitk;            /* bits in bit buffer */
  541.   uLong bitb;           /* bit buffer */
  542.   Bytef *window;        /* sliding window */
  543.   Bytef *end;           /* one byte after sliding window */
  544.   Bytef *read;          /* window read pointer */
  545.   Bytef *write;         /* window write pointer */
  546.   check_func checkfn;   /* check function */
  547.   uLong check;          /* check on output */
  548. };
  549. /* defines for inflate input/output */
  550. /*   update pointers and return */
  551. #define UPDBITS {s->bitb=b;s->bitk=k;}
  552. #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
  553. #define UPDOUT {s->write=q;}
  554. #define UPDATE {UPDBITS UPDIN UPDOUT}
  555. #define LEAVE {UPDATE return inflate_flush(s,z,r);}
  556. /*   get bytes and bits */
  557. #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
  558. #define NEEDBYTE {if(n)r=Z_OK;else LEAVE}
  559. #define NEXTBYTE (n--,*p++)
  560. #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
  561. #define DUMPBITS(j) {b>>=(j);k-=(j);}
  562. /*   output bytes */
  563. #define WAVAIL (q<s->read?s->read-q-1:s->end-q)
  564. #define LOADOUT {q=s->write;m=WAVAIL;}
  565. #define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=WAVAIL;}}
  566. #define FLUSH {UPDOUT r=inflate_flush(s,z,r); LOADOUT}
  567. #define NEEDOUT {if(m==0){WRAP if(m==0){FLUSH WRAP if(m==0) LEAVE}}r=Z_OK;}
  568. #define OUTBYTE(a) {*q++=(Byte)(a);m--;}
  569. /*   load local pointers */
  570. #define LOAD {LOADIN LOADOUT}
  571. /* And'ing with mask[n] masks the lower n bits */
  572. local uInt inflate_mask[] = {
  573.     0x0000,
  574.     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  575.     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  576. };
  577. /* copy as much as possible from the sliding window to the output area */
  578. local int inflate_flush OF((
  579.     inflate_blocks_statef *,
  580.     z_stream *,
  581.     int));
  582. /*+++++*/
  583. /* inffast.h -- header to use inffast.c
  584.  * Copyright (C) 1995 Mark Adler
  585.  * For conditions of distribution and use, see copyright notice in zlib.h 
  586.  */
  587. /* WARNING: this file should *not* be used by applications. It is
  588.    part of the implementation of the compression library and is
  589.    subject to change. Applications should only use zlib.h.
  590.  */
  591. local int inflate_fast OF((
  592.     uInt,
  593.     uInt,
  594.     inflate_huft *,
  595.     inflate_huft *,
  596.     inflate_blocks_statef *,
  597.     z_stream *));
  598. /*+++++*/
  599. /* infblock.c -- interpret and process block types to last block
  600.  * Copyright (C) 1995 Mark Adler
  601.  * For conditions of distribution and use, see copyright notice in zlib.h 
  602.  */
  603. /* Table for deflate from PKZIP's appnote.txt. */
  604. local uInt border[] = { /* Order of the bit length code lengths */
  605.         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
  606. /*
  607.    Notes beyond the 1.93a appnote.txt:
  608.    1. Distance pointers never point before the beginning of the output
  609.       stream.
  610.    2. Distance pointers can point back across blocks, up to 32k away.
  611.    3. There is an implied maximum of 7 bits for the bit length table and
  612.       15 bits for the actual data.
  613.    4. If only one code exists, then it is encoded using one bit.  (Zero
  614.       would be more efficient, but perhaps a little confusing.)  If two
  615.       codes exist, they are coded using one bit each (0 and 1).
  616.    5. There is no way of sending zero distance codes--a dummy must be
  617.       sent if there are none.  (History: a pre 2.0 version of PKZIP would
  618.       store blocks with no distance codes, but this was discovered to be
  619.       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
  620.       zero distance codes, which is sent as one code of zero bits in
  621.       length.
  622.    6. There are up to 286 literal/length codes.  Code 256 represents the
  623.       end-of-block.  Note however that the static length tree defines
  624.       288 codes just to fill out the Huffman codes.  Codes 286 and 287
  625.       cannot be used though, since there is no length base or extra bits
  626.       defined for them.  Similarily, there are up to 30 distance codes.
  627.       However, static trees define 32 codes (all 5 bits) to fill out the
  628.       Huffman codes, but the last two had better not show up in the data.
  629.    7. Unzip can check dynamic Huffman blocks for complete code sets.
  630.       The exception is that a single code would not be complete (see #4).
  631.    8. The five bits following the block type is really the number of
  632.       literal codes sent minus 257.
  633.    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
  634.       (1+6+6).  Therefore, to output three times the length, you output
  635.       three codes (1+1+1), whereas to output four times the same length,
  636.       you only need two codes (1+3).  Hmm.
  637.   10. In the tree reconstruction algorithm, Code = Code + Increment
  638.       only if BitLength(i) is not zero.  (Pretty obvious.)
  639.   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  640.   12. Note: length code 284 can represent 227-258, but length code 285
  641.       really is 258.  The last length deserves its own, short code
  642.       since it gets used a lot in very redundant files.  The length
  643.       258 is special since 258 - 3 (the min match length) is 255.
  644.   13. The literal/length and distance code bit lengths are read as a
  645.       single stream of lengths.  It is possible (and advantageous) for
  646.       a repeat code (16, 17, or 18) to go across the boundary between
  647.       the two sets of lengths.
  648.  */
  649. local void inflate_blocks_reset(s, z, c)
  650. inflate_blocks_statef *s;
  651. z_stream *z;
  652. uLongf *c;
  653. {
  654.   if (s->checkfn != Z_NULL)
  655.     *c = s->check;
  656.   if (s->mode == BTREE || s->mode == DTREE)
  657.     ZFREE(z, s->sub.trees.blens, s->sub.trees.nblens * sizeof(uInt));
  658.   if (s->mode == CODES)
  659.   {
  660.     inflate_codes_free(s->sub.decode.codes, z);
  661.     inflate_trees_free(s->sub.decode.td, z);
  662.     inflate_trees_free(s->sub.decode.tl, z);
  663.   }
  664.   s->mode = TYPE;
  665.   s->bitk = 0;
  666.   s->bitb = 0;
  667.   s->read = s->write = s->window;
  668.   if (s->checkfn != Z_NULL)
  669.     s->check = (*s->checkfn)(0L, Z_NULL, 0);
  670.   Trace((stderr, "inflate:   blocks resetn"));
  671. }
  672. local inflate_blocks_statef *inflate_blocks_new(z, c, w)
  673. z_stream *z;
  674. check_func c;
  675. uInt w;
  676. {
  677.   inflate_blocks_statef *s;
  678.   if ((s = (inflate_blocks_statef *)ZALLOC
  679.        (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
  680.     return s;
  681.   if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
  682.   {
  683.     ZFREE(z, s, sizeof(struct inflate_blocks_state));
  684.     return Z_NULL;
  685.   }
  686.   s->end = s->window + w;
  687.   s->checkfn = c;
  688.   s->mode = TYPE;
  689.   Trace((stderr, "inflate:   blocks allocatedn"));
  690.   inflate_blocks_reset(s, z, &s->check);
  691.   return s;
  692. }
  693. local int inflate_blocks(s, z, r)
  694. inflate_blocks_statef *s;
  695. z_stream *z;
  696. int r;
  697. {
  698.   uInt t;               /* temporary storage */
  699.   uLong b;              /* bit buffer */
  700.   uInt k;               /* bits in bit buffer */
  701.   Bytef *p;             /* input data pointer */
  702.   uInt n;               /* bytes available there */
  703.   Bytef *q;             /* output window write pointer */
  704.   uInt m;               /* bytes to end of window or read pointer */
  705.   /* copy input/output information to locals (UPDATE macro restores) */
  706.   LOAD
  707.   /* process input based on current state */
  708.   while (1) switch (s->mode)
  709.   {
  710.     case TYPE:
  711.       NEEDBITS(3)
  712.       t = (uInt)b & 7;
  713.       s->last = t & 1;
  714.       switch (t >> 1)
  715.       {
  716.         case 0:                         /* stored */
  717.           Trace((stderr, "inflate:     stored block%sn",
  718.                  s->last ? " (last)" : ""));
  719.           DUMPBITS(3)
  720.           t = k & 7;                    /* go to byte boundary */
  721.           DUMPBITS(t)
  722.           s->mode = LENS;               /* get length of stored block */
  723.           break;
  724.         case 1:                         /* fixed */
  725.           Trace((stderr, "inflate:     fixed codes block%sn",
  726.                  s->last ? " (last)" : ""));
  727.           {
  728.             uInt bl, bd;
  729.             inflate_huft *tl, *td;
  730.             inflate_trees_fixed(&bl, &bd, &tl, &td);
  731.             s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
  732.             if (s->sub.decode.codes == Z_NULL)
  733.             {
  734.               r = Z_MEM_ERROR;
  735.               LEAVE
  736.             }
  737.             s->sub.decode.tl = Z_NULL;  /* don't try to free these */
  738.             s->sub.decode.td = Z_NULL;
  739.           }
  740.           DUMPBITS(3)
  741.           s->mode = CODES;
  742.           break;
  743.         case 2:                         /* dynamic */
  744.           Trace((stderr, "inflate:     dynamic codes block%sn",
  745.                  s->last ? " (last)" : ""));
  746.           DUMPBITS(3)
  747.           s->mode = TABLE;
  748.           break;
  749.         case 3:                         /* illegal */
  750.           DUMPBITS(3)
  751.           s->mode = BADB;
  752.           z->msg = "invalid block type";
  753.           r = Z_DATA_ERROR;
  754.           LEAVE
  755.       }
  756.       break;
  757.     case LENS:
  758.       NEEDBITS(32)
  759.       if (((~b) >> 16) != (b & 0xffff))
  760.       {
  761.         s->mode = BADB;
  762.         z->msg = "invalid stored block lengths";
  763.         r = Z_DATA_ERROR;
  764.         LEAVE
  765.       }
  766.       s->sub.left = (uInt)b & 0xffff;
  767.       b = k = 0;                      /* dump bits */
  768.       Tracev((stderr, "inflate:       stored length %un", s->sub.left));
  769.       s->mode = s->sub.left ? STORED : TYPE;
  770.       break;
  771.     case STORED:
  772.       if (n == 0)
  773.         LEAVE
  774.       NEEDOUT
  775.       t = s->sub.left;
  776.       if (t > n) t = n;
  777.       if (t > m) t = m;
  778.       zmemcpy(q, p, t);
  779.       p += t;  n -= t;
  780.       q += t;  m -= t;
  781.       if ((s->sub.left -= t) != 0)
  782.         break;
  783.       Tracev((stderr, "inflate:       stored end, %lu total outn",
  784.               z->total_out + (q >= s->read ? q - s->read :
  785.               (s->end - s->read) + (q - s->window))));
  786.       s->mode = s->last ? DRY : TYPE;
  787.       break;
  788.     case TABLE:
  789.       NEEDBITS(14)
  790.       s->sub.trees.table = t = (uInt)b & 0x3fff;
  791. #ifndef PKZIP_BUG_WORKAROUND
  792.       if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
  793.       {
  794.         s->mode = BADB;
  795.         z->msg = "too many length or distance symbols";
  796.         r = Z_DATA_ERROR;
  797.         LEAVE
  798.       }
  799. #endif
  800.       t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
  801.       if (t < 19)
  802.         t = 19;
  803.       if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
  804.       {
  805.         r = Z_MEM_ERROR;
  806.         LEAVE
  807.       }
  808.       s->sub.trees.nblens = t;
  809.       DUMPBITS(14)
  810.       s->sub.trees.index = 0;
  811.       Tracev((stderr, "inflate:       table sizes okn"));
  812.       s->mode = BTREE;
  813.     case BTREE:
  814.       while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
  815.       {
  816.         NEEDBITS(3)
  817.         s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
  818.         DUMPBITS(3)
  819.       }
  820.       while (s->sub.trees.index < 19)
  821.         s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
  822.       s->sub.trees.bb = 7;
  823.       t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
  824.                              &s->sub.trees.tb, z);
  825.       if (t != Z_OK)
  826.       {
  827.         r = t;
  828.         if (r == Z_DATA_ERROR)
  829.           s->mode = BADB;
  830.         LEAVE
  831.       }
  832.       s->sub.trees.index = 0;
  833.       Tracev((stderr, "inflate:       bits tree okn"));
  834.       s->mode = DTREE;
  835.     case DTREE:
  836.       while (t = s->sub.trees.table,
  837.              s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f))
  838.       {
  839.         inflate_huft *h;
  840.         uInt i, j, c;
  841.         t = s->sub.trees.bb;
  842.         NEEDBITS(t)
  843.         h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
  844.         t = h->word.what.Bits;
  845.         c = h->more.Base;
  846.         if (c < 16)
  847.         {
  848.           DUMPBITS(t)
  849.           s->sub.trees.blens[s->sub.trees.index++] = c;
  850.         }
  851.         else /* c == 16..18 */
  852.         {
  853.           i = c == 18 ? 7 : c - 14;
  854.           j = c == 18 ? 11 : 3;
  855.           NEEDBITS(t + i)
  856.           DUMPBITS(t)
  857.           j += (uInt)b & inflate_mask[i];
  858.           DUMPBITS(i)
  859.           i = s->sub.trees.index;
  860.           t = s->sub.trees.table;
  861.           if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) ||
  862.               (c == 16 && i < 1))
  863.           {
  864.             s->mode = BADB;
  865.             z->msg = "invalid bit length repeat";
  866.             r = Z_DATA_ERROR;
  867.             LEAVE
  868.           }
  869.           c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
  870.           do {
  871.             s->sub.trees.blens[i++] = c;
  872.           } while (--j);
  873.           s->sub.trees.index = i;
  874.         }
  875.       }
  876.       inflate_trees_free(s->sub.trees.tb, z);
  877.       s->sub.trees.tb = Z_NULL;
  878.       {
  879.         uInt bl, bd;
  880.         inflate_huft *tl, *td;
  881.         inflate_codes_statef *c;
  882.         bl = 9;         /* must be <= 9 for lookahead assumptions */
  883.         bd = 6;         /* must be <= 9 for lookahead assumptions */
  884.         t = s->sub.trees.table;
  885.         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
  886.                                   s->sub.trees.blens, &bl, &bd, &tl, &td, z);
  887.         if (t != Z_OK)
  888.         {
  889.           if (t == (uInt)Z_DATA_ERROR)
  890.             s->mode = BADB;
  891.           r = t;
  892.           LEAVE
  893.         }
  894.         Tracev((stderr, "inflate:       trees okn"));
  895.         if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
  896.         {
  897.           inflate_trees_free(td, z);
  898.           inflate_trees_free(tl, z);
  899.           r = Z_MEM_ERROR;
  900.           LEAVE
  901.         }
  902.         ZFREE(z, s->sub.trees.blens, s->sub.trees.nblens * sizeof(uInt));
  903.         s->sub.decode.codes = c;
  904.         s->sub.decode.tl = tl;
  905.         s->sub.decode.td = td;
  906.       }
  907.       s->mode = CODES;
  908.     case CODES:
  909.       UPDATE
  910.       if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
  911.         return inflate_flush(s, z, r);
  912.       r = Z_OK;
  913.       inflate_codes_free(s->sub.decode.codes, z);
  914.       inflate_trees_free(s->sub.decode.td, z);
  915.       inflate_trees_free(s->sub.decode.tl, z);
  916.       LOAD
  917.       Tracev((stderr, "inflate:       codes end, %lu total outn",
  918.               z->total_out + (q >= s->read ? q - s->read :
  919.               (s->end - s->read) + (q - s->window))));
  920.       if (!s->last)
  921.       {
  922.         s->mode = TYPE;
  923.         break;
  924.       }
  925.       if (k > 7)              /* return unused byte, if any */
  926.       {
  927.         Assert(k < 16, "inflate_codes grabbed too many bytes")
  928.         k -= 8;
  929.         n++;
  930.         p--;                    /* can always return one */
  931.       }
  932.       s->mode = DRY;
  933.     case DRY:
  934.       FLUSH
  935.       if (s->read != s->write)
  936.         LEAVE
  937.       s->mode = DONEB;
  938.     case DONEB:
  939.       r = Z_STREAM_END;
  940.       LEAVE
  941.     case BADB:
  942.       r = Z_DATA_ERROR;
  943.       LEAVE
  944.     default:
  945.       r = Z_STREAM_ERROR;
  946.       LEAVE
  947.   }
  948. }
  949. local int inflate_blocks_free(s, z, c)
  950. inflate_blocks_statef *s;
  951. z_stream *z;
  952. uLongf *c;
  953. {
  954.   inflate_blocks_reset(s, z, c);
  955.   ZFREE(z, s->window, s->end - s->window);
  956.   ZFREE(z, s, sizeof(struct inflate_blocks_state));
  957.   Trace((stderr, "inflate:   blocks freedn"));
  958.   return Z_OK;
  959. }
  960. /*
  961.  * This subroutine adds the data at next_in/avail_in to the output history
  962.  * without performing any output.  The output buffer must be "caught up";
  963.  * i.e. no pending output (hence s->read equals s->write), and the state must
  964.  * be BLOCKS (i.e. we should be willing to see the start of a series of
  965.  * BLOCKS).  On exit, the output will also be caught up, and the checksum
  966.  * will have been updated if need be.
  967.  */
  968. local int inflate_addhistory(s, z)
  969. inflate_blocks_statef *s;
  970. z_stream *z;
  971. {
  972.     uLong b;              /* bit buffer */  /* NOT USED HERE */
  973.     uInt k;               /* bits in bit buffer */ /* NOT USED HERE */
  974.     uInt t;               /* temporary storage */
  975.     Bytef *p;             /* input data pointer */
  976.     uInt n;               /* bytes available there */
  977.     Bytef *q;             /* output window write pointer */
  978.     uInt m;               /* bytes to end of window or read pointer */
  979.     if (s->read != s->write)
  980. return Z_STREAM_ERROR;
  981.     if (s->mode != TYPE)
  982. return Z_DATA_ERROR;
  983.     /* we're ready to rock */
  984.     LOAD
  985.     /* while there is input ready, copy to output buffer, moving
  986.      * pointers as needed.
  987.      */
  988.     while (n) {
  989. t = n;  /* how many to do */
  990. /* is there room until end of buffer? */
  991. if (t > m) t = m;
  992. /* update check information */
  993. if (s->checkfn != Z_NULL)
  994.     s->check = (*s->checkfn)(s->check, q, t);
  995. zmemcpy(q, p, t);
  996. q += t;
  997. p += t;
  998. n -= t;
  999. z->total_out += t;
  1000. s->read = q;    /* drag read pointer forward */
  1001. /*      WRAP  */  /* expand WRAP macro by hand to handle s->read */
  1002. if (q == s->end) {
  1003.     s->read = q = s->window;
  1004.     m = WAVAIL;
  1005. }
  1006.     }
  1007.     UPDATE
  1008.     return Z_OK;
  1009. }
  1010. /*
  1011.  * At the end of a Deflate-compressed PPP packet, we expect to have seen
  1012.  * a `stored' block type value but not the (zero) length bytes.
  1013.  */
  1014. local int inflate_packet_flush(s)
  1015.     inflate_blocks_statef *s;
  1016. {
  1017.     if (s->mode != LENS)
  1018. return Z_DATA_ERROR;
  1019.     s->mode = TYPE;
  1020.     return Z_OK;
  1021. }
  1022. /*+++++*/
  1023. /* inftrees.c -- generate Huffman trees for efficient decoding
  1024.  * Copyright (C) 1995 Mark Adler
  1025.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1026.  */
  1027. /* simplify the use of the inflate_huft type with some defines */
  1028. #define base more.Base
  1029. #define next more.Next
  1030. #define exop word.what.Exop
  1031. #define bits word.what.Bits
  1032. local int huft_build OF((
  1033.     uIntf *,            /* code lengths in bits */
  1034.     uInt,               /* number of codes */
  1035.     uInt,               /* number of "simple" codes */
  1036.     uIntf *,            /* list of base values for non-simple codes */
  1037.     uIntf *,            /* list of extra bits for non-simple codes */
  1038.     inflate_huft * FAR*,/* result: starting table */
  1039.     uIntf *,            /* maximum lookup bits (returns actual) */
  1040.     z_stream *));       /* for zalloc function */
  1041. local voidpf falloc OF((
  1042.     voidpf,             /* opaque pointer (not used) */
  1043.     uInt,               /* number of items */
  1044.     uInt));             /* size of item */
  1045. local void ffree OF((
  1046.     voidpf q,           /* opaque pointer (not used) */
  1047.     voidpf p,           /* what to free (not used) */
  1048.     uInt n)); /* number of bytes (not used) */
  1049. /* Tables for deflate from PKZIP's appnote.txt. */
  1050. local uInt cplens[] = { /* Copy lengths for literal codes 257..285 */
  1051.         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
  1052.         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
  1053.         /* actually lengths - 2; also see note #13 above about 258 */
  1054. local uInt cplext[] = { /* Extra bits for literal codes 257..285 */
  1055.         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
  1056.         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 192, 192}; /* 192==invalid */
  1057. local uInt cpdist[] = { /* Copy offsets for distance codes 0..29 */
  1058.         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
  1059.         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
  1060.         8193, 12289, 16385, 24577};
  1061. local uInt cpdext[] = { /* Extra bits for distance codes */
  1062.         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
  1063.         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
  1064.         12, 12, 13, 13};
  1065. /*
  1066.    Huffman code decoding is performed using a multi-level table lookup.
  1067.    The fastest way to decode is to simply build a lookup table whose
  1068.    size is determined by the longest code.  However, the time it takes
  1069.    to build this table can also be a factor if the data being decoded
  1070.    is not very long.  The most common codes are necessarily the
  1071.    shortest codes, so those codes dominate the decoding time, and hence
  1072.    the speed.  The idea is you can have a shorter table that decodes the
  1073.    shorter, more probable codes, and then point to subsidiary tables for
  1074.    the longer codes.  The time it costs to decode the longer codes is
  1075.    then traded against the time it takes to make longer tables.
  1076.    This results of this trade are in the variables lbits and dbits
  1077.    below.  lbits is the number of bits the first level table for literal/
  1078.    length codes can decode in one step, and dbits is the same thing for
  1079.    the distance codes.  Subsequent tables are also less than or equal to
  1080.    those sizes.  These values may be adjusted either when all of the
  1081.    codes are shorter than that, in which case the longest code length in
  1082.    bits is used, or when the shortest code is *longer* than the requested
  1083.    table size, in which case the length of the shortest code in bits is
  1084.    used.
  1085.    There are two different values for the two tables, since they code a
  1086.    different number of possibilities each.  The literal/length table
  1087.    codes 286 possible values, or in a flat code, a little over eight
  1088.    bits.  The distance table codes 30 possible values, or a little less
  1089.    than five bits, flat.  The optimum values for speed end up being
  1090.    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
  1091.    The optimum values may differ though from machine to machine, and
  1092.    possibly even between compilers.  Your mileage may vary.
  1093.  */
  1094. /* If BMAX needs to be larger than 16, then h and x[] should be uLong. */
  1095. #define BMAX 15         /* maximum bit length of any code */
  1096. #define N_MAX 288       /* maximum number of codes in any set */
  1097. #ifdef DEBUG_ZLIB
  1098.   uInt inflate_hufts;
  1099. #endif
  1100. local int huft_build(b, n, s, d, e, t, m, zs)
  1101. uIntf *b;               /* code lengths in bits (all assumed <= BMAX) */
  1102. uInt n;                 /* number of codes (assumed <= N_MAX) */
  1103. uInt s;                 /* number of simple-valued codes (0..s-1) */
  1104. uIntf *d;               /* list of base values for non-simple codes */
  1105. uIntf *e;               /* list of extra bits for non-simple codes */  
  1106. inflate_huft * FAR *t;  /* result: starting table */
  1107. uIntf *m;               /* maximum lookup bits, returns actual */
  1108. z_stream *zs;           /* for zalloc function */
  1109. /* Given a list of code lengths and a maximum table size, make a set of
  1110.    tables to decode that set of codes.  Return Z_OK on success, Z_BUF_ERROR
  1111.    if the given code set is incomplete (the tables are still built in this
  1112.    case), Z_DATA_ERROR if the input is invalid (all zero length codes or an
  1113.    over-subscribed set of lengths), or Z_MEM_ERROR if not enough memory. */
  1114. {
  1115.   uInt a;                       /* counter for codes of length k */
  1116.   uInt c[BMAX+1];               /* bit length count table */
  1117.   uInt f;                       /* i repeats in table every f entries */
  1118.   int g;                        /* maximum code length */
  1119.   int h;                        /* table level */
  1120.   register uInt i;              /* counter, current code */
  1121.   register uInt j;              /* counter */
  1122.   register int k;               /* number of bits in current code */
  1123.   int l;                        /* bits per table (returned in m) */
  1124.   register uIntf *p;            /* pointer into c[], b[], or v[] */
  1125.   inflate_huft *q;              /* points to current table */
  1126.   struct inflate_huft_s r;      /* table entry for structure assignment */
  1127.   inflate_huft *u[BMAX];        /* table stack */
  1128.   uInt v[N_MAX];                /* values in order of bit length */
  1129.   register int w;               /* bits before this table == (l * h) */
  1130.   uInt x[BMAX+1];               /* bit offsets, then code stack */
  1131.   uIntf *xp;                    /* pointer into x */
  1132.   int y;                        /* number of dummy codes added */
  1133.   uInt z;                       /* number of entries in current table */
  1134.   /* Generate counts for each bit length */
  1135.   p = c;
  1136. #define C0 *p++ = 0;
  1137. #define C2 C0 C0 C0 C0
  1138. #define C4 C2 C2 C2 C2
  1139.   C4                            /* clear c[]--assume BMAX+1 is 16 */
  1140.   p = b;  i = n;
  1141.   do {
  1142.     c[*p++]++;                  /* assume all entries <= BMAX */
  1143.   } while (--i);
  1144.   if (c[0] == n)                /* null input--all zero length codes */
  1145.   {
  1146.     *t = (inflate_huft *)Z_NULL;
  1147.     *m = 0;
  1148.     return Z_OK;
  1149.   }
  1150.   /* Find minimum and maximum length, bound *m by those */
  1151.   l = *m;
  1152.   for (j = 1; j <= BMAX; j++)
  1153.     if (c[j])
  1154.       break;
  1155.   k = j;                        /* minimum code length */
  1156.   if ((uInt)l < j)
  1157.     l = j;
  1158.   for (i = BMAX; i; i--)
  1159.     if (c[i])
  1160.       break;
  1161.   g = i;                        /* maximum code length */
  1162.   if ((uInt)l > i)
  1163.     l = i;
  1164.   *m = l;
  1165.   /* Adjust last length count to fill out codes, if needed */
  1166.   for (y = 1 << j; j < i; j++, y <<= 1)
  1167.     if ((y -= c[j]) < 0)
  1168.       return Z_DATA_ERROR;
  1169.   if ((y -= c[i]) < 0)
  1170.     return Z_DATA_ERROR;
  1171.   c[i] += y;
  1172.   /* Generate starting offsets into the value table for each length */
  1173.   x[1] = j = 0;
  1174.   p = c + 1;  xp = x + 2;
  1175.   while (--i) {                 /* note that i == g from above */
  1176.     *xp++ = (j += *p++);
  1177.   }
  1178.   /* Make a table of values in order of bit lengths */
  1179.   p = b;  i = 0;
  1180.   do {
  1181.     if ((j = *p++) != 0)
  1182.       v[x[j]++] = i;
  1183.   } while (++i < n);
  1184.   /* Generate the Huffman codes and for each, make the table entries */
  1185.   x[0] = i = 0;                 /* first Huffman code is zero */
  1186.   p = v;                        /* grab values in bit order */
  1187.   h = -1;                       /* no tables yet--level -1 */
  1188.   w = -l;                       /* bits decoded == (l * h) */
  1189.   u[0] = (inflate_huft *)Z_NULL;        /* just to keep compilers happy */
  1190.   q = (inflate_huft *)Z_NULL;   /* ditto */
  1191.   z = 0;                        /* ditto */
  1192.   /* go through the bit lengths (k already is bits in shortest code) */
  1193.   for (; k <= g; k++)
  1194.   {
  1195.     a = c[k];
  1196.     while (a--)
  1197.     {
  1198.       /* here i is the Huffman code of length k bits for value *p */
  1199.       /* make tables up to required level */
  1200.       while (k > w + l)
  1201.       {
  1202.         h++;
  1203.         w += l;                 /* previous table always l bits */
  1204.         /* compute minimum size table less than or equal to l bits */
  1205.         z = (z = g - w) > (uInt)l ? l : z;      /* table size upper limit */
  1206.         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
  1207.         {                       /* too few codes for k-w bit table */
  1208.           f -= a + 1;           /* deduct codes from patterns left */
  1209.           xp = c + k;
  1210.           if (j < z)
  1211.             while (++j < z)     /* try smaller tables up to z bits */
  1212.             {
  1213.               if ((f <<= 1) <= *++xp)
  1214.                 break;          /* enough codes to use up j bits */
  1215.               f -= *xp;         /* else deduct codes from patterns */
  1216.             }
  1217.         }
  1218.         z = 1 << j;             /* table entries for j-bit table */
  1219.         /* allocate and link in new table */
  1220.         if ((q = (inflate_huft *)ZALLOC
  1221.              (zs,z + 1,sizeof(inflate_huft))) == Z_NULL)
  1222.         {
  1223.           if (h)
  1224.             inflate_trees_free(u[0], zs);
  1225.           return Z_MEM_ERROR;   /* not enough memory */
  1226.         }
  1227. q->word.Nalloc = z + 1;
  1228. #ifdef DEBUG_ZLIB
  1229.         inflate_hufts += z + 1;
  1230. #endif
  1231.         *t = q + 1;             /* link to list for huft_free() */
  1232.         *(t = &(q->next)) = Z_NULL;
  1233.         u[h] = ++q;             /* table starts after link */
  1234.         /* connect to last table, if there is one */
  1235.         if (h)
  1236.         {
  1237.           x[h] = i;             /* save pattern for backing up */
  1238.           r.bits = (Byte)l;     /* bits to dump before this table */
  1239.           r.exop = (Byte)j;     /* bits in this table */
  1240.           r.next = q;           /* pointer to this table */
  1241.           j = i >> (w - l);     /* (get around Turbo C bug) */
  1242.           u[h-1][j] = r;        /* connect to last table */
  1243.         }
  1244.       }
  1245.       /* set up table entry in r */
  1246.       r.bits = (Byte)(k - w);
  1247.       if (p >= v + n)
  1248.         r.exop = 128 + 64;      /* out of values--invalid code */
  1249.       else if (*p < s)
  1250.       {
  1251.         r.exop = (Byte)(*p < 256 ? 0 : 32 + 64);     /* 256 is end-of-block */
  1252.         r.base = *p++;          /* simple code is just the value */
  1253.       }
  1254.       else
  1255.       {
  1256.         r.exop = (Byte)e[*p - s] + 16 + 64; /* non-simple--look up in lists */
  1257.         r.base = d[*p++ - s];
  1258.       }
  1259.       /* fill code-like entries with r */
  1260.       f = 1 << (k - w);
  1261.       for (j = i >> w; j < z; j += f)
  1262.         q[j] = r;
  1263.       /* backwards increment the k-bit code i */
  1264.       for (j = 1 << (k - 1); i & j; j >>= 1)
  1265.         i ^= j;
  1266.       i ^= j;
  1267.       /* backup over finished tables */
  1268.       while ((i & ((1 << w) - 1)) != x[h])
  1269.       {
  1270.         h--;                    /* don't need to update q */
  1271.         w -= l;
  1272.       }
  1273.     }
  1274.   }
  1275.   /* Return Z_BUF_ERROR if we were given an incomplete table */
  1276.   return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK;
  1277. }
  1278. local int inflate_trees_bits(c, bb, tb, z)
  1279. uIntf *c;               /* 19 code lengths */
  1280. uIntf *bb;              /* bits tree desired/actual depth */
  1281. inflate_huft * FAR *tb; /* bits tree result */
  1282. z_stream *z;            /* for zfree function */
  1283. {
  1284.   int r;
  1285.   r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL, tb, bb, z);
  1286.   if (r == Z_DATA_ERROR)
  1287.     z->msg = "oversubscribed dynamic bit lengths tree";
  1288.   else if (r == Z_BUF_ERROR)
  1289.   {
  1290.     inflate_trees_free(*tb, z);
  1291.     z->msg = "incomplete dynamic bit lengths tree";
  1292.     r = Z_DATA_ERROR;
  1293.   }
  1294.   return r;
  1295. }
  1296. local int inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, z)
  1297. uInt nl;                /* number of literal/length codes */
  1298. uInt nd;                /* number of distance codes */
  1299. uIntf *c;               /* that many (total) code lengths */
  1300. uIntf *bl;              /* literal desired/actual bit depth */
  1301. uIntf *bd;              /* distance desired/actual bit depth */
  1302. inflate_huft * FAR *tl; /* literal/length tree result */
  1303. inflate_huft * FAR *td; /* distance tree result */
  1304. z_stream *z;            /* for zfree function */
  1305. {
  1306.   int r;
  1307.   /* build literal/length tree */
  1308.   if ((r = huft_build(c, nl, 257, cplens, cplext, tl, bl, z)) != Z_OK)
  1309.   {
  1310.     if (r == Z_DATA_ERROR)
  1311.       z->msg = "oversubscribed literal/length tree";
  1312.     else if (r == Z_BUF_ERROR)
  1313.     {
  1314.       inflate_trees_free(*tl, z);
  1315.       z->msg = "incomplete literal/length tree";
  1316.       r = Z_DATA_ERROR;
  1317.     }
  1318.     return r;
  1319.   }
  1320.   /* build distance tree */
  1321.   if ((r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, z)) != Z_OK)
  1322.   {
  1323.     if (r == Z_DATA_ERROR)
  1324.       z->msg = "oversubscribed literal/length tree";
  1325.     else if (r == Z_BUF_ERROR) {
  1326. #ifdef PKZIP_BUG_WORKAROUND
  1327.       r = Z_OK;
  1328.     }
  1329. #else
  1330.       inflate_trees_free(*td, z);
  1331.       z->msg = "incomplete literal/length tree";
  1332.       r = Z_DATA_ERROR;
  1333.     }
  1334.     inflate_trees_free(*tl, z);
  1335.     return r;
  1336. #endif
  1337.   }
  1338.   /* done */
  1339.   return Z_OK;
  1340. }
  1341. /* build fixed tables only once--keep them here */
  1342. local int fixed_lock = 0;
  1343. local int fixed_built = 0;
  1344. #define FIXEDH 530      /* number of hufts used by fixed tables */
  1345. local uInt fixed_left = FIXEDH;
  1346. local inflate_huft fixed_mem[FIXEDH];
  1347. local uInt fixed_bl;
  1348. local uInt fixed_bd;
  1349. local inflate_huft *fixed_tl;
  1350. local inflate_huft *fixed_td;
  1351. local voidpf falloc(q, n, s)
  1352. voidpf q;        /* opaque pointer (not used) */
  1353. uInt n;         /* number of items */
  1354. uInt s;         /* size of item */
  1355. {
  1356.   Assert(s == sizeof(inflate_huft) && n <= fixed_left,
  1357.          "inflate_trees falloc overflow");
  1358.   if (q) s++; /* to make some compilers happy */
  1359.   fixed_left -= n;
  1360.   return (voidpf)(fixed_mem + fixed_left);
  1361. }
  1362. local void ffree(q, p, n)
  1363. voidpf q;
  1364. voidpf p;
  1365. uInt n;
  1366. {
  1367.   Assert(0, "inflate_trees ffree called!");
  1368.   if (q) q = p; /* to make some compilers happy */
  1369. }
  1370. local int inflate_trees_fixed(bl, bd, tl, td)
  1371. uIntf *bl;               /* literal desired/actual bit depth */
  1372. uIntf *bd;               /* distance desired/actual bit depth */
  1373. inflate_huft * FAR *tl;  /* literal/length tree result */
  1374. inflate_huft * FAR *td;  /* distance tree result */
  1375. {
  1376.   /* build fixed tables if not built already--lock out other instances */
  1377.   while (++fixed_lock > 1)
  1378.     fixed_lock--;
  1379.   if (!fixed_built)
  1380.   {
  1381.     int k;              /* temporary variable */
  1382.     unsigned c[288];    /* length list for huft_build */
  1383.     z_stream z;         /* for falloc function */
  1384.     /* set up fake z_stream for memory routines */
  1385.     z.zalloc = falloc;
  1386.     z.zfree = ffree;
  1387.     z.opaque = Z_NULL;
  1388.     /* literal table */
  1389.     for (k = 0; k < 144; k++)
  1390.       c[k] = 8;
  1391.     for (; k < 256; k++)
  1392.       c[k] = 9;
  1393.     for (; k < 280; k++)
  1394.       c[k] = 7;
  1395.     for (; k < 288; k++)
  1396.       c[k] = 8;
  1397.     fixed_bl = 7;
  1398.     huft_build(c, 288, 257, cplens, cplext, &fixed_tl, &fixed_bl, &z);
  1399.     /* distance table */
  1400.     for (k = 0; k < 30; k++)
  1401.       c[k] = 5;
  1402.     fixed_bd = 5;
  1403.     huft_build(c, 30, 0, cpdist, cpdext, &fixed_td, &fixed_bd, &z);
  1404.     /* done */
  1405.     fixed_built = 1;
  1406.   }
  1407.   fixed_lock--;
  1408.   *bl = fixed_bl;
  1409.   *bd = fixed_bd;
  1410.   *tl = fixed_tl;
  1411.   *td = fixed_td;
  1412.   return Z_OK;
  1413. }
  1414. local int inflate_trees_free(t, z)
  1415. inflate_huft *t;        /* table to free */
  1416. z_stream *z;            /* for zfree function */
  1417. /* Free the malloc'ed tables built by huft_build(), which makes a linked
  1418.    list of the tables it made, with the links in a dummy first entry of
  1419.    each table. */
  1420. {
  1421.   register inflate_huft *p, *q;
  1422.   /* Go through linked list, freeing from the malloced (t[-1]) address. */
  1423.   p = t;
  1424.   while (p != Z_NULL)
  1425.   {
  1426.     q = (--p)->next;
  1427.     ZFREE(z, p, p->word.Nalloc * sizeof(inflate_huft));
  1428.     p = q;
  1429.   } 
  1430.   return Z_OK;
  1431. }
  1432. /*+++++*/
  1433. /* infcodes.c -- process literals and length/distance pairs
  1434.  * Copyright (C) 1995 Mark Adler
  1435.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1436.  */
  1437. /* simplify the use of the inflate_huft type with some defines */
  1438. #define base more.Base
  1439. #define next more.Next
  1440. #define exop word.what.Exop
  1441. #define bits word.what.Bits
  1442. /* inflate codes private state */
  1443. struct inflate_codes_state {
  1444.   /* mode */
  1445.   enum {        /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
  1446.       START,    /* x: set up for LEN */
  1447.       LEN,      /* i: get length/literal/eob next */
  1448.       LENEXT,   /* i: getting length extra (have base) */
  1449.       DIST,     /* i: get distance next */
  1450.       DISTEXT,  /* i: getting distance extra */
  1451.       COPY,     /* o: copying bytes in window, waiting for space */
  1452.       LIT,      /* o: got literal, waiting for output space */
  1453.       WASH,     /* o: got eob, possibly still output waiting */
  1454.       END,      /* x: got eob and all data flushed */
  1455.       BADCODE}  /* x: got error */
  1456.     mode;               /* current inflate_codes mode */
  1457.   /* mode dependent information */
  1458.   uInt len;
  1459.   union {
  1460.     struct {
  1461.       inflate_huft *tree;       /* pointer into tree */
  1462.       uInt need;                /* bits needed */
  1463.     } code;             /* if LEN or DIST, where in tree */
  1464.     uInt lit;           /* if LIT, literal */
  1465.     struct {
  1466.       uInt get;                 /* bits to get for extra */
  1467.       uInt dist;                /* distance back to copy from */
  1468.     } copy;             /* if EXT or COPY, where and how much */
  1469.   } sub;                /* submode */
  1470.   /* mode independent information */
  1471.   Byte lbits;           /* ltree bits decoded per branch */
  1472.   Byte dbits;           /* dtree bits decoder per branch */
  1473.   inflate_huft *ltree;          /* literal/length/eob tree */
  1474.   inflate_huft *dtree;          /* distance tree */
  1475. };
  1476. local inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z)
  1477. uInt bl, bd;
  1478. inflate_huft *tl, *td;
  1479. z_stream *z;
  1480. {
  1481.   inflate_codes_statef *c;
  1482.   if ((c = (inflate_codes_statef *)
  1483.        ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL)
  1484.   {
  1485.     c->mode = START;
  1486.     c->lbits = (Byte)bl;
  1487.     c->dbits = (Byte)bd;
  1488.     c->ltree = tl;
  1489.     c->dtree = td;
  1490.     Tracev((stderr, "inflate:       codes newn"));
  1491.   }
  1492.   return c;
  1493. }
  1494. local int inflate_codes(s, z, r)
  1495. inflate_blocks_statef *s;
  1496. z_stream *z;
  1497. int r;
  1498. {
  1499.   uInt j;               /* temporary storage */
  1500.   inflate_huft *t;      /* temporary pointer */
  1501.   uInt e;               /* extra bits or operation */
  1502.   uLong b;              /* bit buffer */
  1503.   uInt k;               /* bits in bit buffer */
  1504.   Bytef *p;             /* input data pointer */
  1505.   uInt n;               /* bytes available there */
  1506.   Bytef *q;             /* output window write pointer */
  1507.   uInt m;               /* bytes to end of window or read pointer */
  1508.   Bytef *f;             /* pointer to copy strings from */
  1509.   inflate_codes_statef *c = s->sub.decode.codes;  /* codes state */
  1510.   /* copy input/output information to locals (UPDATE macro restores) */
  1511.   LOAD
  1512.   /* process input and output based on current state */
  1513.   while (1) switch (c->mode)
  1514.   {             /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
  1515.     case START:         /* x: set up for LEN */
  1516. #ifndef SLOW
  1517.       if (m >= 258 && n >= 10)
  1518.       {
  1519.         UPDATE
  1520.         r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
  1521.         LOAD
  1522.         if (r != Z_OK)
  1523.         {
  1524.           c->mode = r == Z_STREAM_END ? WASH : BADCODE;
  1525.           break;
  1526.         }
  1527.       }
  1528. #endif /* !SLOW */
  1529.       c->sub.code.need = c->lbits;
  1530.       c->sub.code.tree = c->ltree;
  1531.       c->mode = LEN;
  1532.     case LEN:           /* i: get length/literal/eob next */
  1533.       j = c->sub.code.need;
  1534.       NEEDBITS(j)
  1535.       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
  1536.       DUMPBITS(t->bits)
  1537.       e = (uInt)(t->exop);
  1538.       if (e == 0)               /* literal */
  1539.       {
  1540.         c->sub.lit = t->base;
  1541.         Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
  1542.                  "inflate:         literal '%c'n" :
  1543.                  "inflate:         literal 0x%02xn", t->base));
  1544.         c->mode = LIT;
  1545.         break;
  1546.       }
  1547.       if (e & 16)               /* length */
  1548.       {
  1549.         c->sub.copy.get = e & 15;
  1550.         c->len = t->base;
  1551.         c->mode = LENEXT;
  1552.         break;
  1553.       }
  1554.       if ((e & 64) == 0)        /* next table */
  1555.       {
  1556.         c->sub.code.need = e;
  1557.         c->sub.code.tree = t->next;
  1558.         break;
  1559.       }
  1560.       if (e & 32)               /* end of block */
  1561.       {
  1562.         Tracevv((stderr, "inflate:         end of blockn"));
  1563.         c->mode = WASH;
  1564.         break;
  1565.       }
  1566.       c->mode = BADCODE;        /* invalid code */
  1567.       z->msg = "invalid literal/length code";
  1568.       r = Z_DATA_ERROR;
  1569.       LEAVE
  1570.     case LENEXT:        /* i: getting length extra (have base) */
  1571.       j = c->sub.copy.get;
  1572.       NEEDBITS(j)
  1573.       c->len += (uInt)b & inflate_mask[j];
  1574.       DUMPBITS(j)
  1575.       c->sub.code.need = c->dbits;
  1576.       c->sub.code.tree = c->dtree;
  1577.       Tracevv((stderr, "inflate:         length %un", c->len));
  1578.       c->mode = DIST;
  1579.     case DIST:          /* i: get distance next */
  1580.       j = c->sub.code.need;
  1581.       NEEDBITS(j)
  1582.       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
  1583.       DUMPBITS(t->bits)
  1584.       e = (uInt)(t->exop);
  1585.       if (e & 16)               /* distance */
  1586.       {
  1587.         c->sub.copy.get = e & 15;
  1588.         c->sub.copy.dist = t->base;
  1589.         c->mode = DISTEXT;
  1590.         break;
  1591.       }
  1592.       if ((e & 64) == 0)        /* next table */
  1593.       {
  1594.         c->sub.code.need = e;
  1595.         c->sub.code.tree = t->next;
  1596.         break;
  1597.       }
  1598.       c->mode = BADCODE;        /* invalid code */
  1599.       z->msg = "invalid distance code";
  1600.       r = Z_DATA_ERROR;
  1601.       LEAVE
  1602.     case DISTEXT:       /* i: getting distance extra */
  1603.       j = c->sub.copy.get;
  1604.       NEEDBITS(j)
  1605.       c->sub.copy.dist += (uInt)b & inflate_mask[j];
  1606.       DUMPBITS(j)
  1607.       Tracevv((stderr, "inflate:         distance %un", c->sub.copy.dist));
  1608.       c->mode = COPY;
  1609.     case COPY:          /* o: copying bytes in window, waiting for space */
  1610. #ifndef __TURBOC__ /* Turbo C bug for following expression */
  1611.       f = (uInt)(q - s->window) < c->sub.copy.dist ?
  1612.           s->end - (c->sub.copy.dist - (q - s->window)) :
  1613.           q - c->sub.copy.dist;
  1614. #else
  1615.       f = q - c->sub.copy.dist;
  1616.       if ((uInt)(q - s->window) < c->sub.copy.dist)
  1617.         f = s->end - (c->sub.copy.dist - (q - s->window));
  1618. #endif
  1619.       while (c->len)
  1620.       {
  1621.         NEEDOUT
  1622.         OUTBYTE(*f++)
  1623.         if (f == s->end)
  1624.           f = s->window;
  1625.         c->len--;
  1626.       }
  1627.       c->mode = START;
  1628.       break;
  1629.     case LIT:           /* o: got literal, waiting for output space */
  1630.       NEEDOUT
  1631.       OUTBYTE(c->sub.lit)
  1632.       c->mode = START;
  1633.       break;
  1634.     case WASH:          /* o: got eob, possibly more output */
  1635.       FLUSH
  1636.       if (s->read != s->write)
  1637.         LEAVE
  1638.       c->mode = END;
  1639.     case END:
  1640.       r = Z_STREAM_END;
  1641.       LEAVE
  1642.     case BADCODE:       /* x: got error */
  1643.       r = Z_DATA_ERROR;
  1644.       LEAVE
  1645.     default:
  1646.       r = Z_STREAM_ERROR;
  1647.       LEAVE
  1648.   }
  1649. }
  1650. local void inflate_codes_free(c, z)
  1651. inflate_codes_statef *c;
  1652. z_stream *z;
  1653. {
  1654.   ZFREE(z, c, sizeof(struct inflate_codes_state));
  1655.   Tracev((stderr, "inflate:       codes freen"));
  1656. }
  1657. /*+++++*/
  1658. /* inflate_util.c -- data and routines common to blocks and codes
  1659.  * Copyright (C) 1995 Mark Adler
  1660.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1661.  */
  1662. /* copy as much as possible from the sliding window to the output area */
  1663. local int inflate_flush(s, z, r)
  1664. inflate_blocks_statef *s;
  1665. z_stream *z;
  1666. int r;
  1667. {
  1668.   uInt n;
  1669.   Bytef *p, *q;
  1670.   /* local copies of source and destination pointers */
  1671.   p = z->next_out;
  1672.   q = s->read;
  1673.   /* compute number of bytes to copy as far as end of window */
  1674.   n = (uInt)((q <= s->write ? s->write : s->end) - q);
  1675.   if (n > z->avail_out) n = z->avail_out;
  1676.   if (n && r == Z_BUF_ERROR) r = Z_OK;
  1677.   /* update counters */
  1678.   z->avail_out -= n;
  1679.   z->total_out += n;
  1680.   /* update check information */
  1681.   if (s->checkfn != Z_NULL)
  1682.     s->check = (*s->checkfn)(s->check, q, n);
  1683.   /* copy as far as end of window */
  1684.   zmemcpy(p, q, n);
  1685.   p += n;
  1686.   q += n;
  1687.   /* see if more to copy at beginning of window */
  1688.   if (q == s->end)
  1689.   {
  1690.     /* wrap pointers */
  1691.     q = s->window;
  1692.     if (s->write == s->end)
  1693.       s->write = s->window;
  1694.     /* compute bytes to copy */
  1695.     n = (uInt)(s->write - q);
  1696.     if (n > z->avail_out) n = z->avail_out;
  1697.     if (n && r == Z_BUF_ERROR) r = Z_OK;
  1698.     /* update counters */
  1699.     z->avail_out -= n;
  1700.     z->total_out += n;
  1701.     /* update check information */
  1702.     if (s->checkfn != Z_NULL)
  1703.       s->check = (*s->checkfn)(s->check, q, n);
  1704.     /* copy */
  1705.     zmemcpy(p, q, n);
  1706.     p += n;
  1707.     q += n;
  1708.   }
  1709.   /* update pointers */
  1710.   z->next_out = p;
  1711.   s->read = q;
  1712.   /* done */
  1713.   return r;
  1714. }
  1715. /*+++++*/
  1716. /* inffast.c -- process literals and length/distance pairs fast
  1717.  * Copyright (C) 1995 Mark Adler
  1718.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1719.  */
  1720. /* simplify the use of the inflate_huft type with some defines */
  1721. #define base more.Base
  1722. #define next more.Next
  1723. #define exop word.what.Exop
  1724. #define bits word.what.Bits
  1725. /* macros for bit input with no checking and for returning unused bytes */
  1726. #define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}}
  1727. #define UNGRAB {n+=(c=k>>3);p-=c;k&=7;}
  1728. /* Called with number of bytes left to write in window at least 258
  1729.    (the maximum string length) and number of input bytes available
  1730.    at least ten.  The ten bytes are six bytes for the longest length/
  1731.    distance pair plus four bytes for overloading the bit buffer. */
  1732. local int inflate_fast(bl, bd, tl, td, s, z)
  1733. uInt bl, bd;
  1734. inflate_huft *tl, *td;
  1735. inflate_blocks_statef *s;
  1736. z_stream *z;
  1737. {
  1738.   inflate_huft *t;      /* temporary pointer */
  1739.   uInt e;               /* extra bits or operation */
  1740.   uLong b;              /* bit buffer */
  1741.   uInt k;               /* bits in bit buffer */
  1742.   Bytef *p;             /* input data pointer */
  1743.   uInt n;               /* bytes available there */
  1744.   Bytef *q;             /* output window write pointer */
  1745.   uInt m;               /* bytes to end of window or read pointer */
  1746.   uInt ml;              /* mask for literal/length tree */
  1747.   uInt md;              /* mask for distance tree */
  1748.   uInt c;               /* bytes to copy */
  1749.   uInt d;               /* distance back to copy from */
  1750.   Bytef *r;             /* copy source pointer */
  1751.   /* load input, output, bit values */
  1752.   LOAD
  1753.   /* initialize masks */
  1754.   ml = inflate_mask[bl];
  1755.   md = inflate_mask[bd];
  1756.   /* do until not enough input or output space for fast loop */
  1757.   do {                          /* assume called with m >= 258 && n >= 10 */
  1758.     /* get literal/length code */
  1759.     GRABBITS(20)                /* max bits for literal/length code */
  1760.     if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
  1761.     {
  1762.       DUMPBITS(t->bits)
  1763.       Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
  1764.                 "inflate:         * literal '%c'n" :
  1765.                 "inflate:         * literal 0x%02xn", t->base));
  1766.       *q++ = (Byte)t->base;
  1767.       m--;
  1768.       continue;
  1769.     }
  1770.     do {
  1771.       DUMPBITS(t->bits)
  1772.       if (e & 16)
  1773.       {
  1774.         /* get extra bits for length */
  1775.         e &= 15;
  1776.         c = t->base + ((uInt)b & inflate_mask[e]);
  1777.         DUMPBITS(e)
  1778.         Tracevv((stderr, "inflate:         * length %un", c));
  1779.         /* decode distance base of block to copy */
  1780.         GRABBITS(15);           /* max bits for distance code */
  1781.         e = (t = td + ((uInt)b & md))->exop;
  1782.         do {
  1783.           DUMPBITS(t->bits)
  1784.           if (e & 16)
  1785.           {
  1786.             /* get extra bits to add to distance base */
  1787.             e &= 15;
  1788.             GRABBITS(e)         /* get extra bits (up to 13) */
  1789.             d = t->base + ((uInt)b & inflate_mask[e]);
  1790.             DUMPBITS(e)
  1791.             Tracevv((stderr, "inflate:         * distance %un", d));
  1792.             /* do the copy */
  1793.             m -= c;
  1794.             if ((uInt)(q - s->window) >= d)     /* offset before dest */
  1795.             {                                   /*  just copy */
  1796.               r = q - d;
  1797.               *q++ = *r++;  c--;        /* minimum count is three, */
  1798.               *q++ = *r++;  c--;        /*  so unroll loop a little */
  1799.             }
  1800.             else                        /* else offset after destination */
  1801.             {
  1802.               e = d - (q - s->window);  /* bytes from offset to end */
  1803.               r = s->end - e;           /* pointer to offset */
  1804.               if (c > e)                /* if source crosses, */
  1805.               {
  1806.                 c -= e;                 /* copy to end of window */
  1807.                 do {
  1808.                   *q++ = *r++;
  1809.                 } while (--e);
  1810.                 r = s->window;          /* copy rest from start of window */
  1811.               }
  1812.             }
  1813.             do {                        /* copy all or what's left */
  1814.               *q++ = *r++;
  1815.             } while (--c);
  1816.             break;
  1817.           }
  1818.           else if ((e & 64) == 0)
  1819.             e = (t = t->next + ((uInt)b & inflate_mask[e]))->exop;
  1820.           else
  1821.           {
  1822.             z->msg = "invalid distance code";
  1823.             UNGRAB
  1824.             UPDATE
  1825.             return Z_DATA_ERROR;
  1826.           }
  1827.         } while (1);
  1828.         break;
  1829.       }
  1830.       if ((e & 64) == 0)
  1831.       {
  1832.         if ((e = (t = t->next + ((uInt)b & inflate_mask[e]))->exop) == 0)
  1833.         {
  1834.           DUMPBITS(t->bits)
  1835.           Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
  1836.                     "inflate:         * literal '%c'n" :
  1837.                     "inflate:         * literal 0x%02xn", t->base));
  1838.           *q++ = (Byte)t->base;
  1839.           m--;
  1840.           break;
  1841.         }
  1842.       }
  1843.       else if (e & 32)
  1844.       {
  1845.         Tracevv((stderr, "inflate:         * end of blockn"));
  1846.         UNGRAB
  1847.         UPDATE
  1848.         return Z_STREAM_END;
  1849.       }
  1850.       else
  1851.       {
  1852.         z->msg = "invalid literal/length code";
  1853.         UNGRAB
  1854.         UPDATE
  1855.         return Z_DATA_ERROR;
  1856.       }
  1857.     } while (1);
  1858.   } while (m >= 258 && n >= 10);
  1859.   /* not enough input or output--restore pointers and return */
  1860.   UNGRAB
  1861.   UPDATE
  1862.   return Z_OK;
  1863. }
  1864. /*+++++*/
  1865. /* zutil.c -- target dependent utility functions for the compression library
  1866.  * Copyright (C) 1995 Jean-loup Gailly.
  1867.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1868.  */
  1869. /* From: zutil.c,v 1.8 1995/05/03 17:27:12 jloup Exp */
  1870. char *zlib_version = ZLIB_VERSION;
  1871. char *z_errmsg[] = {
  1872. "stream end",          /* Z_STREAM_END    1 */
  1873. "",                    /* Z_OK            0 */
  1874. "file error",          /* Z_ERRNO        (-1) */
  1875. "stream error",        /* Z_STREAM_ERROR (-2) */
  1876. "data error",          /* Z_DATA_ERROR   (-3) */
  1877. "insufficient memory", /* Z_MEM_ERROR    (-4) */
  1878. "buffer error",        /* Z_BUF_ERROR    (-5) */
  1879. ""};
  1880. /*+++++*/
  1881. /* adler32.c -- compute the Adler-32 checksum of a data stream
  1882.  * Copyright (C) 1995 Mark Adler
  1883.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1884.  */
  1885. /* From: adler32.c,v 1.6 1995/05/03 17:27:08 jloup Exp */
  1886. #define BASE 65521L /* largest prime smaller than 65536 */
  1887. #define NMAX 5552
  1888. /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
  1889. #define DO1(buf)  {s1 += *buf++; s2 += s1;}
  1890. #define DO2(buf)  DO1(buf); DO1(buf);
  1891. #define DO4(buf)  DO2(buf); DO2(buf);
  1892. #define DO8(buf)  DO4(buf); DO4(buf);
  1893. #define DO16(buf) DO8(buf); DO8(buf);
  1894. /* ========================================================================= */
  1895. uLong adler32(adler, buf, len)
  1896.     uLong adler;
  1897.     Bytef *buf;
  1898.     uInt len;
  1899. {
  1900.     unsigned long s1 = adler & 0xffff;
  1901.     unsigned long s2 = (adler >> 16) & 0xffff;
  1902.     int k;
  1903.     if (buf == Z_NULL) return 1L;
  1904.     while (len > 0) {
  1905.         k = len < NMAX ? len : NMAX;
  1906.         len -= k;
  1907.         while (k >= 16) {
  1908.             DO16(buf);
  1909.             k -= 16;
  1910.         }
  1911.         if (k != 0) do {
  1912.             DO1(buf);
  1913.         } while (--k);
  1914.         s1 %= BASE;
  1915.         s2 %= BASE;
  1916.     }
  1917.     return (s2 << 16) | s1;
  1918. }