zlib.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:65k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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