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

嵌入式Linux

开发平台:

Unix_Linux

  1. {
  2.     ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
  3.     int max_blindex = 0;  /* index of last bit length code of non zero freq */
  4.     /* Build the Huffman trees unless a stored block is forced */
  5.     if (s->level > 0) {
  6.  /* Check if the file is ascii or binary */
  7. if (s->data_type == Z_UNKNOWN) set_data_type(s);
  8. /* Construct the literal and distance trees */
  9. build_tree(s, (tree_desc *)(&(s->l_desc)));
  10. Tracev((stderr, "nlit data: dyn %ld, stat %ld", s->opt_len,
  11. s->static_len));
  12. build_tree(s, (tree_desc *)(&(s->d_desc)));
  13. Tracev((stderr, "ndist data: dyn %ld, stat %ld", s->opt_len,
  14. s->static_len));
  15. /* At this point, opt_len and static_len are the total bit lengths of
  16.  * the compressed block data, excluding the tree representations.
  17.  */
  18. /* Build the bit length tree for the above two trees, and get the index
  19.  * in bl_order of the last bit length code to send.
  20.  */
  21. max_blindex = build_bl_tree(s);
  22. /* Determine the best encoding. Compute first the block length in bytes*/
  23. opt_lenb = (s->opt_len+3+7)>>3;
  24. static_lenb = (s->static_len+3+7)>>3;
  25. Tracev((stderr, "nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
  26. opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
  27. s->last_lit));
  28. if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
  29.     } else {
  30.         Assert(buf != (char*)0, "lost buf");
  31. opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
  32.     }
  33.     /* If compression failed and this is the first and last block,
  34.      * and if the .zip file can be seeked (to rewrite the local header),
  35.      * the whole file is transformed into a stored file:
  36.      */
  37. #ifdef STORED_FILE_OK
  38. #  ifdef FORCE_STORED_FILE
  39.     if (eof && s->compressed_len == 0L) { /* force stored file */
  40. #  else
  41.     if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
  42. #  endif
  43.         /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
  44.         if (buf == (charf*)0) error ("block vanished");
  45.         copy_block(s, buf, (unsigned)stored_len, 0); /* without header */
  46.         s->compressed_len = stored_len << 3;
  47.         s->method = STORED;
  48.     } else
  49. #endif /* STORED_FILE_OK */
  50. #ifdef FORCE_STORED
  51.     if (buf != (char*)0) { /* force stored block */
  52. #else
  53.     if (stored_len+4 <= opt_lenb && buf != (char*)0) {
  54.                        /* 4: two words for the lengths */
  55. #endif
  56.         /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
  57.          * Otherwise we can't have processed more than WSIZE input bytes since
  58.          * the last block flush, because compression would have been
  59.          * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
  60.          * transform a block into a stored block.
  61.          */
  62.         _tr_stored_block(s, buf, stored_len, eof);
  63. #ifdef FORCE_STATIC
  64.     } else if (static_lenb >= 0) { /* force static trees */
  65. #else
  66.     } else if (static_lenb == opt_lenb) {
  67. #endif
  68.         send_bits(s, (STATIC_TREES<<1)+eof, 3);
  69.         compress_block(s, (ct_data *)static_ltree, (ct_data *)static_dtree);
  70.         s->compressed_len += 3 + s->static_len;
  71.     } else {
  72.         send_bits(s, (DYN_TREES<<1)+eof, 3);
  73.         send_all_trees(s, s->l_desc.max_code+1, s->d_desc.max_code+1,
  74.                        max_blindex+1);
  75.         compress_block(s, (ct_data *)s->dyn_ltree, (ct_data *)s->dyn_dtree);
  76.         s->compressed_len += 3 + s->opt_len;
  77.     }
  78.     Assert (s->compressed_len == s->bits_sent, "bad compressed size");
  79.     init_block(s);
  80.     if (eof) {
  81.         bi_windup(s);
  82.         s->compressed_len += 7;  /* align on byte boundary */
  83.     }
  84.     Tracev((stderr,"ncomprlen %lu(%lu) ", s->compressed_len>>3,
  85.            s->compressed_len-7*eof));
  86.     return s->compressed_len >> 3;
  87. }
  88. /* ===========================================================================
  89.  * Save the match info and tally the frequency counts. Return true if
  90.  * the current block must be flushed.
  91.  */
  92. int _tr_tally (s, dist, lc)
  93.     deflate_state *s;
  94.     unsigned dist;  /* distance of matched string */
  95.     unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
  96. {
  97.     s->d_buf[s->last_lit] = (ush)dist;
  98.     s->l_buf[s->last_lit++] = (uch)lc;
  99.     if (dist == 0) {
  100.         /* lc is the unmatched char */
  101.         s->dyn_ltree[lc].Freq++;
  102.     } else {
  103.         s->matches++;
  104.         /* Here, lc is the match length - MIN_MATCH */
  105.         dist--;             /* dist = match distance - 1 */
  106.         Assert((ush)dist < (ush)MAX_DIST(s) &&
  107.                (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
  108.                (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
  109.         s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
  110.         s->dyn_dtree[d_code(dist)].Freq++;
  111.     }
  112.     /* Try to guess if it is profitable to stop the current block here */
  113.     if (s->level > 2 && (s->last_lit & 0xfff) == 0) {
  114.         /* Compute an upper bound for the compressed length */
  115.         ulg out_length = (ulg)s->last_lit*8L;
  116.         ulg in_length = (ulg)((long)s->strstart - s->block_start);
  117.         int dcode;
  118.         for (dcode = 0; dcode < D_CODES; dcode++) {
  119.             out_length += (ulg)s->dyn_dtree[dcode].Freq *
  120.                 (5L+extra_dbits[dcode]);
  121.         }
  122.         out_length >>= 3;
  123.         Tracev((stderr,"nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
  124.                s->last_lit, in_length, out_length,
  125.                100L - out_length*100L/in_length));
  126.         if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
  127.     }
  128.     return (s->last_lit == s->lit_bufsize-1);
  129.     /* We avoid equality with lit_bufsize because of wraparound at 64K
  130.      * on 16 bit machines and because stored blocks are restricted to
  131.      * 64K-1 bytes.
  132.      */
  133. }
  134. /* ===========================================================================
  135.  * Send the block data compressed using the given Huffman trees
  136.  */
  137. local void compress_block(s, ltree, dtree)
  138.     deflate_state *s;
  139.     ct_data *ltree; /* literal tree */
  140.     ct_data *dtree; /* distance tree */
  141. {
  142.     unsigned dist;      /* distance of matched string */
  143.     int lc;             /* match length or unmatched char (if dist == 0) */
  144.     unsigned lx = 0;    /* running index in l_buf */
  145.     unsigned code;      /* the code to send */
  146.     int extra;          /* number of extra bits to send */
  147.     if (s->last_lit != 0) do {
  148.         dist = s->d_buf[lx];
  149.         lc = s->l_buf[lx++];
  150.         if (dist == 0) {
  151.             send_code(s, lc, ltree); /* send a literal byte */
  152.             Tracecv(isgraph(lc), (stderr," '%c' ", lc));
  153.         } else {
  154.             /* Here, lc is the match length - MIN_MATCH */
  155.             code = length_code[lc];
  156.             send_code(s, code+LITERALS+1, ltree); /* send the length code */
  157.             extra = extra_lbits[code];
  158.             if (extra != 0) {
  159.                 lc -= base_length[code];
  160.                 send_bits(s, lc, extra);       /* send the extra length bits */
  161.             }
  162.             dist--; /* dist is now the match distance - 1 */
  163.             code = d_code(dist);
  164.             Assert (code < D_CODES, "bad d_code");
  165.             send_code(s, code, dtree);       /* send the distance code */
  166.             extra = extra_dbits[code];
  167.             if (extra != 0) {
  168.                 dist -= base_dist[code];
  169.                 send_bits(s, dist, extra);   /* send the extra distance bits */
  170.             }
  171.         } /* literal or match pair ? */
  172.         /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
  173.         Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");
  174.     } while (lx < s->last_lit);
  175.     send_code(s, END_BLOCK, ltree);
  176.     s->last_eob_len = ltree[END_BLOCK].Len;
  177. }
  178. /* ===========================================================================
  179.  * Set the data type to ASCII or BINARY, using a crude approximation:
  180.  * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
  181.  * IN assertion: the fields freq of dyn_ltree are set and the total of all
  182.  * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
  183.  */
  184. local void set_data_type(s)
  185.     deflate_state *s;
  186. {
  187.     int n = 0;
  188.     unsigned ascii_freq = 0;
  189.     unsigned bin_freq = 0;
  190.     while (n < 7)        bin_freq += s->dyn_ltree[n++].Freq;
  191.     while (n < 128)    ascii_freq += s->dyn_ltree[n++].Freq;
  192.     while (n < LITERALS) bin_freq += s->dyn_ltree[n++].Freq;
  193.     s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
  194. }
  195. /* ===========================================================================
  196.  * Reverse the first len bits of a code, using straightforward code (a faster
  197.  * method would use a table)
  198.  * IN assertion: 1 <= len <= 15
  199.  */
  200. local unsigned bi_reverse(code, len)
  201.     unsigned code; /* the value to invert */
  202.     int len;       /* its bit length */
  203. {
  204.     register unsigned res = 0;
  205.     do {
  206.         res |= code & 1;
  207.         code >>= 1, res <<= 1;
  208.     } while (--len > 0);
  209.     return res >> 1;
  210. }
  211. /* ===========================================================================
  212.  * Flush the bit buffer, keeping at most 7 bits in it.
  213.  */
  214. local void bi_flush(s)
  215.     deflate_state *s;
  216. {
  217.     if (s->bi_valid == 16) {
  218.         put_short(s, s->bi_buf);
  219.         s->bi_buf = 0;
  220.         s->bi_valid = 0;
  221.     } else if (s->bi_valid >= 8) {
  222.         put_byte(s, (Byte)s->bi_buf);
  223.         s->bi_buf >>= 8;
  224.         s->bi_valid -= 8;
  225.     }
  226. }
  227. /* ===========================================================================
  228.  * Flush the bit buffer and align the output on a byte boundary
  229.  */
  230. local void bi_windup(s)
  231.     deflate_state *s;
  232. {
  233.     if (s->bi_valid > 8) {
  234.         put_short(s, s->bi_buf);
  235.     } else if (s->bi_valid > 0) {
  236.         put_byte(s, (Byte)s->bi_buf);
  237.     }
  238.     s->bi_buf = 0;
  239.     s->bi_valid = 0;
  240. #ifdef DEBUG_ZLIB
  241.     s->bits_sent = (s->bits_sent+7) & ~7;
  242. #endif
  243. }
  244. /* ===========================================================================
  245.  * Copy a stored block, storing first the length and its
  246.  * one's complement if requested.
  247.  */
  248. local void copy_block(s, buf, len, header)
  249.     deflate_state *s;
  250.     charf    *buf;    /* the input data */
  251.     unsigned len;     /* its length */
  252.     int      header;  /* true if block header must be written */
  253. {
  254.     bi_windup(s);        /* align on byte boundary */
  255.     s->last_eob_len = 8; /* enough lookahead for inflate */
  256.     if (header) {
  257.         put_short(s, (ush)len);   
  258.         put_short(s, (ush)~len);
  259. #ifdef DEBUG_ZLIB
  260.         s->bits_sent += 2*16;
  261. #endif
  262.     }
  263. #ifdef DEBUG_ZLIB
  264.     s->bits_sent += (ulg)len<<3;
  265. #endif
  266.     /* bundle up the put_byte(s, *buf++) calls */
  267.     zmemcpy(&s->pending_buf[s->pending], buf, len);
  268.     s->pending += len;
  269. }
  270. /* --- trees.c */
  271. /* +++ inflate.c */
  272. /* inflate.c -- zlib interface to inflate modules
  273.  * Copyright (C) 1995-1996 Mark Adler
  274.  * For conditions of distribution and use, see copyright notice in zlib.h 
  275.  */
  276. /* #include "zutil.h" */
  277. /* +++ infblock.h */
  278. /* infblock.h -- header to use infblock.c
  279.  * Copyright (C) 1995-1996 Mark Adler
  280.  * For conditions of distribution and use, see copyright notice in zlib.h 
  281.  */
  282. /* WARNING: this file should *not* be used by applications. It is
  283.    part of the implementation of the compression library and is
  284.    subject to change. Applications should only use zlib.h.
  285.  */
  286. struct inflate_blocks_state;
  287. typedef struct inflate_blocks_state FAR inflate_blocks_statef;
  288. extern inflate_blocks_statef * inflate_blocks_new OF((
  289.     z_streamp z,
  290.     check_func c,               /* check function */
  291.     uInt w));                   /* window size */
  292. extern int inflate_blocks OF((
  293.     inflate_blocks_statef *,
  294.     z_streamp ,
  295.     int));                      /* initial return code */
  296. extern void inflate_blocks_reset OF((
  297.     inflate_blocks_statef *,
  298.     z_streamp ,
  299.     uLongf *));                  /* check value on output */
  300. extern int inflate_blocks_free OF((
  301.     inflate_blocks_statef *,
  302.     z_streamp ,
  303.     uLongf *));                  /* check value on output */
  304. extern void inflate_set_dictionary OF((
  305.     inflate_blocks_statef *s,
  306.     const Bytef *d,  /* dictionary */
  307.     uInt  n));       /* dictionary length */
  308. extern int inflate_addhistory OF((
  309.     inflate_blocks_statef *,
  310.     z_streamp));
  311. extern int inflate_packet_flush OF((
  312.     inflate_blocks_statef *));
  313. /* --- infblock.h */
  314. #ifndef NO_DUMMY_DECL
  315. struct inflate_blocks_state {int dummy;}; /* for buggy compilers */
  316. #endif
  317. /* inflate private state */
  318. struct internal_state {
  319.   /* mode */
  320.   enum {
  321.       METHOD,   /* waiting for method byte */
  322.       FLAG,     /* waiting for flag byte */
  323.       DICT4,    /* four dictionary check bytes to go */
  324.       DICT3,    /* three dictionary check bytes to go */
  325.       DICT2,    /* two dictionary check bytes to go */
  326.       DICT1,    /* one dictionary check byte to go */
  327.       DICT0,    /* waiting for inflateSetDictionary */
  328.       BLOCKS,   /* decompressing blocks */
  329.       CHECK4,   /* four check bytes to go */
  330.       CHECK3,   /* three check bytes to go */
  331.       CHECK2,   /* two check bytes to go */
  332.       CHECK1,   /* one check byte to go */
  333.       DONE,     /* finished check, done */
  334.       BAD}      /* got an error--stay here */
  335.     mode;               /* current inflate mode */
  336.   /* mode dependent information */
  337.   union {
  338.     uInt method;        /* if FLAGS, method byte */
  339.     struct {
  340.       uLong was;                /* computed check value */
  341.       uLong need;               /* stream check value */
  342.     } check;            /* if CHECK, check values to compare */
  343.     uInt marker;        /* if BAD, inflateSync's marker bytes count */
  344.   } sub;        /* submode */
  345.   /* mode independent information */
  346.   int  nowrap;          /* flag for no wrapper */
  347.   uInt wbits;           /* log2(window size)  (8..15, defaults to 15) */
  348.   inflate_blocks_statef 
  349.     *blocks;            /* current inflate_blocks state */
  350. };
  351. int inflateReset(z)
  352. z_streamp z;
  353. {
  354.   uLong c;
  355.   if (z == Z_NULL || z->state == Z_NULL)
  356.     return Z_STREAM_ERROR;
  357.   z->total_in = z->total_out = 0;
  358.   z->msg = Z_NULL;
  359.   z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
  360.   inflate_blocks_reset(z->state->blocks, z, &c);
  361.   Trace((stderr, "inflate: resetn"));
  362.   return Z_OK;
  363. }
  364. int inflateEnd(z)
  365. z_streamp z;
  366. {
  367.   uLong c;
  368.   if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
  369.     return Z_STREAM_ERROR;
  370.   if (z->state->blocks != Z_NULL)
  371.     inflate_blocks_free(z->state->blocks, z, &c);
  372.   ZFREE(z, z->state);
  373.   z->state = Z_NULL;
  374.   Trace((stderr, "inflate: endn"));
  375.   return Z_OK;
  376. }
  377. int inflateInit2_(z, w, version, stream_size)
  378. z_streamp z;
  379. int w;
  380. const char *version;
  381. int stream_size;
  382. {
  383.   if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
  384.       stream_size != sizeof(z_stream))
  385.       return Z_VERSION_ERROR;
  386.   /* initialize state */
  387.   if (z == Z_NULL)
  388.     return Z_STREAM_ERROR;
  389.   z->msg = Z_NULL;
  390. #ifndef NO_ZCFUNCS
  391.   if (z->zalloc == Z_NULL)
  392.   {
  393.     z->zalloc = zcalloc;
  394.     z->opaque = (voidpf)0;
  395.   }
  396.   if (z->zfree == Z_NULL) z->zfree = zcfree;
  397. #endif
  398.   if ((z->state = (struct internal_state FAR *)
  399.        ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
  400.     return Z_MEM_ERROR;
  401.   z->state->blocks = Z_NULL;
  402.   /* handle undocumented nowrap option (no zlib header or check) */
  403.   z->state->nowrap = 0;
  404.   if (w < 0)
  405.   {
  406.     w = - w;
  407.     z->state->nowrap = 1;
  408.   }
  409.   /* set window size */
  410.   if (w < 8 || w > 15)
  411.   {
  412.     inflateEnd(z);
  413.     return Z_STREAM_ERROR;
  414.   }
  415.   z->state->wbits = (uInt)w;
  416.   /* create inflate_blocks state */
  417.   if ((z->state->blocks =
  418.       inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
  419.       == Z_NULL)
  420.   {
  421.     inflateEnd(z);
  422.     return Z_MEM_ERROR;
  423.   }
  424.   Trace((stderr, "inflate: allocatedn"));
  425.   /* reset state */
  426.   inflateReset(z);
  427.   return Z_OK;
  428. }
  429. int inflateInit_(z, version, stream_size)
  430. z_streamp z;
  431. const char *version;
  432. int stream_size;
  433. {
  434.   return inflateInit2_(z, DEF_WBITS, version, stream_size);
  435. }
  436. #define NEEDBYTE {if(z->avail_in==0)goto empty;r=Z_OK;}
  437. #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
  438. int inflate(z, f)
  439. z_streamp z;
  440. int f;
  441. {
  442.   int r;
  443.   uInt b;
  444.   if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL || f < 0)
  445.     return Z_STREAM_ERROR;
  446.   r = Z_BUF_ERROR;
  447.   while (1) switch (z->state->mode)
  448.   {
  449.     case METHOD:
  450.       NEEDBYTE
  451.       if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
  452.       {
  453.         z->state->mode = BAD;
  454.         z->msg = (char*)"unknown compression method";
  455.         z->state->sub.marker = 5;       /* can't try inflateSync */
  456.         break;
  457.       }
  458.       if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
  459.       {
  460.         z->state->mode = BAD;
  461.         z->msg = (char*)"invalid window size";
  462.         z->state->sub.marker = 5;       /* can't try inflateSync */
  463.         break;
  464.       }
  465.       z->state->mode = FLAG;
  466.     case FLAG:
  467.       NEEDBYTE
  468.       b = NEXTBYTE;
  469.       if (((z->state->sub.method << 8) + b) % 31)
  470.       {
  471.         z->state->mode = BAD;
  472.         z->msg = (char*)"incorrect header check";
  473.         z->state->sub.marker = 5;       /* can't try inflateSync */
  474.         break;
  475.       }
  476.       Trace((stderr, "inflate: zlib header okn"));
  477.       if (!(b & PRESET_DICT))
  478.       {
  479.         z->state->mode = BLOCKS;
  480. break;
  481.       }
  482.       z->state->mode = DICT4;
  483.     case DICT4:
  484.       NEEDBYTE
  485.       z->state->sub.check.need = (uLong)NEXTBYTE << 24;
  486.       z->state->mode = DICT3;
  487.     case DICT3:
  488.       NEEDBYTE
  489.       z->state->sub.check.need += (uLong)NEXTBYTE << 16;
  490.       z->state->mode = DICT2;
  491.     case DICT2:
  492.       NEEDBYTE
  493.       z->state->sub.check.need += (uLong)NEXTBYTE << 8;
  494.       z->state->mode = DICT1;
  495.     case DICT1:
  496.       NEEDBYTE
  497.       z->state->sub.check.need += (uLong)NEXTBYTE;
  498.       z->adler = z->state->sub.check.need;
  499.       z->state->mode = DICT0;
  500.       return Z_NEED_DICT;
  501.     case DICT0:
  502.       z->state->mode = BAD;
  503.       z->msg = (char*)"need dictionary";
  504.       z->state->sub.marker = 0;       /* can try inflateSync */
  505.       return Z_STREAM_ERROR;
  506.     case BLOCKS:
  507.       r = inflate_blocks(z->state->blocks, z, r);
  508.       if (f == Z_PACKET_FLUSH && z->avail_in == 0 && z->avail_out != 0)
  509.   r = inflate_packet_flush(z->state->blocks);
  510.       if (r == Z_DATA_ERROR)
  511.       {
  512.         z->state->mode = BAD;
  513.         z->state->sub.marker = 0;       /* can try inflateSync */
  514.         break;
  515.       }
  516.       if (r != Z_STREAM_END)
  517.         return r;
  518.       r = Z_OK;
  519.       inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
  520.       if (z->state->nowrap)
  521.       {
  522.         z->state->mode = DONE;
  523.         break;
  524.       }
  525.       z->state->mode = CHECK4;
  526.     case CHECK4:
  527.       NEEDBYTE
  528.       z->state->sub.check.need = (uLong)NEXTBYTE << 24;
  529.       z->state->mode = CHECK3;
  530.     case CHECK3:
  531.       NEEDBYTE
  532.       z->state->sub.check.need += (uLong)NEXTBYTE << 16;
  533.       z->state->mode = CHECK2;
  534.     case CHECK2:
  535.       NEEDBYTE
  536.       z->state->sub.check.need += (uLong)NEXTBYTE << 8;
  537.       z->state->mode = CHECK1;
  538.     case CHECK1:
  539.       NEEDBYTE
  540.       z->state->sub.check.need += (uLong)NEXTBYTE;
  541.       if (z->state->sub.check.was != z->state->sub.check.need)
  542.       {
  543.         z->state->mode = BAD;
  544.         z->msg = (char*)"incorrect data check";
  545.         z->state->sub.marker = 5;       /* can't try inflateSync */
  546.         break;
  547.       }
  548.       Trace((stderr, "inflate: zlib check okn"));
  549.       z->state->mode = DONE;
  550.     case DONE:
  551.       return Z_STREAM_END;
  552.     case BAD:
  553.       return Z_DATA_ERROR;
  554.     default:
  555.       return Z_STREAM_ERROR;
  556.   }
  557.  empty:
  558.   if (f != Z_PACKET_FLUSH)
  559.     return r;
  560.   z->state->mode = BAD;
  561.   z->msg = (char *)"need more for packet flush";
  562.   z->state->sub.marker = 0;       /* can try inflateSync */
  563.   return Z_DATA_ERROR;
  564. }
  565. int inflateSetDictionary(z, dictionary, dictLength)
  566. z_streamp z;
  567. const Bytef *dictionary;
  568. uInt  dictLength;
  569. {
  570.   uInt length = dictLength;
  571.   if (z == Z_NULL || z->state == Z_NULL || z->state->mode != DICT0)
  572.     return Z_STREAM_ERROR;
  573.   if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
  574.   z->adler = 1L;
  575.   if (length >= ((uInt)1<<z->state->wbits))
  576.   {
  577.     length = (1<<z->state->wbits)-1;
  578.     dictionary += dictLength - length;
  579.   }
  580.   inflate_set_dictionary(z->state->blocks, dictionary, length);
  581.   z->state->mode = BLOCKS;
  582.   return Z_OK;
  583. }
  584. /*
  585.  * This subroutine adds the data at next_in/avail_in to the output history
  586.  * without performing any output.  The output buffer must be "caught up";
  587.  * i.e. no pending output (hence s->read equals s->write), and the state must
  588.  * be BLOCKS (i.e. we should be willing to see the start of a series of
  589.  * BLOCKS).  On exit, the output will also be caught up, and the checksum
  590.  * will have been updated if need be.
  591.  */
  592. int inflateIncomp(z)
  593. z_stream *z;
  594. {
  595.     if (z->state->mode != BLOCKS)
  596. return Z_DATA_ERROR;
  597.     return inflate_addhistory(z->state->blocks, z);
  598. }
  599. int inflateSync(z)
  600. z_streamp z;
  601. {
  602.   uInt n;       /* number of bytes to look at */
  603.   Bytef *p;     /* pointer to bytes */
  604.   uInt m;       /* number of marker bytes found in a row */
  605.   uLong r, w;   /* temporaries to save total_in and total_out */
  606.   /* set up */
  607.   if (z == Z_NULL || z->state == Z_NULL)
  608.     return Z_STREAM_ERROR;
  609.   if (z->state->mode != BAD)
  610.   {
  611.     z->state->mode = BAD;
  612.     z->state->sub.marker = 0;
  613.   }
  614.   if ((n = z->avail_in) == 0)
  615.     return Z_BUF_ERROR;
  616.   p = z->next_in;
  617.   m = z->state->sub.marker;
  618.   /* search */
  619.   while (n && m < 4)
  620.   {
  621.     if (*p == (Byte)(m < 2 ? 0 : 0xff))
  622.       m++;
  623.     else if (*p)
  624.       m = 0;
  625.     else
  626.       m = 4 - m;
  627.     p++, n--;
  628.   }
  629.   /* restore */
  630.   z->total_in += p - z->next_in;
  631.   z->next_in = p;
  632.   z->avail_in = n;
  633.   z->state->sub.marker = m;
  634.   /* return no joy or set up to restart on a new block */
  635.   if (m != 4)
  636.     return Z_DATA_ERROR;
  637.   r = z->total_in;  w = z->total_out;
  638.   inflateReset(z);
  639.   z->total_in = r;  z->total_out = w;
  640.   z->state->mode = BLOCKS;
  641.   return Z_OK;
  642. }
  643. #undef NEEDBYTE
  644. #undef NEXTBYTE
  645. /* --- inflate.c */
  646. /* +++ infblock.c */
  647. /* infblock.c -- interpret and process block types to last block
  648.  * Copyright (C) 1995-1996 Mark Adler
  649.  * For conditions of distribution and use, see copyright notice in zlib.h 
  650.  */
  651. /* #include "zutil.h" */
  652. /* #include "infblock.h" */
  653. /* +++ inftrees.h */
  654. /* inftrees.h -- header to use inftrees.c
  655.  * Copyright (C) 1995-1996 Mark Adler
  656.  * For conditions of distribution and use, see copyright notice in zlib.h 
  657.  */
  658. /* WARNING: this file should *not* be used by applications. It is
  659.    part of the implementation of the compression library and is
  660.    subject to change. Applications should only use zlib.h.
  661.  */
  662. /* Huffman code lookup table entry--this entry is four bytes for machines
  663.    that have 16-bit pointers (e.g. PC's in the small or medium model). */
  664. typedef struct inflate_huft_s FAR inflate_huft;
  665. struct inflate_huft_s {
  666.   union {
  667.     struct {
  668.       Byte Exop;        /* number of extra bits or operation */
  669.       Byte Bits;        /* number of bits in this code or subcode */
  670.     } what;
  671.     Bytef *pad;         /* pad structure to a power of 2 (4 bytes for */
  672.   } word;               /*  16-bit, 8 bytes for 32-bit machines) */
  673.   union {
  674.     uInt Base;          /* literal, length base, or distance base */
  675.     inflate_huft *Next; /* pointer to next level of table */
  676.   } more;
  677. };
  678. #ifdef DEBUG_ZLIB
  679.   extern uInt inflate_hufts;
  680. #endif
  681. extern int inflate_trees_bits OF((
  682.     uIntf *,                    /* 19 code lengths */
  683.     uIntf *,                    /* bits tree desired/actual depth */
  684.     inflate_huft * FAR *,       /* bits tree result */
  685.     z_streamp ));               /* for zalloc, zfree functions */
  686. extern int inflate_trees_dynamic OF((
  687.     uInt,                       /* number of literal/length codes */
  688.     uInt,                       /* number of distance codes */
  689.     uIntf *,                    /* that many (total) code lengths */
  690.     uIntf *,                    /* literal desired/actual bit depth */
  691.     uIntf *,                    /* distance desired/actual bit depth */
  692.     inflate_huft * FAR *,       /* literal/length tree result */
  693.     inflate_huft * FAR *,       /* distance tree result */
  694.     z_streamp ));               /* for zalloc, zfree functions */
  695. extern int inflate_trees_fixed OF((
  696.     uIntf *,                    /* literal desired/actual bit depth */
  697.     uIntf *,                    /* distance desired/actual bit depth */
  698.     inflate_huft * FAR *,       /* literal/length tree result */
  699.     inflate_huft * FAR *));     /* distance tree result */
  700. extern int inflate_trees_free OF((
  701.     inflate_huft *,             /* tables to free */
  702.     z_streamp ));               /* for zfree function */
  703. /* --- inftrees.h */
  704. /* +++ infcodes.h */
  705. /* infcodes.h -- header to use infcodes.c
  706.  * Copyright (C) 1995-1996 Mark Adler
  707.  * For conditions of distribution and use, see copyright notice in zlib.h 
  708.  */
  709. /* WARNING: this file should *not* be used by applications. It is
  710.    part of the implementation of the compression library and is
  711.    subject to change. Applications should only use zlib.h.
  712.  */
  713. struct inflate_codes_state;
  714. typedef struct inflate_codes_state FAR inflate_codes_statef;
  715. extern inflate_codes_statef *inflate_codes_new OF((
  716.     uInt, uInt,
  717.     inflate_huft *, inflate_huft *,
  718.     z_streamp ));
  719. extern int inflate_codes OF((
  720.     inflate_blocks_statef *,
  721.     z_streamp ,
  722.     int));
  723. extern void inflate_codes_free OF((
  724.     inflate_codes_statef *,
  725.     z_streamp ));
  726. /* --- infcodes.h */
  727. /* +++ infutil.h */
  728. /* infutil.h -- types and macros common to blocks and codes
  729.  * Copyright (C) 1995-1996 Mark Adler
  730.  * For conditions of distribution and use, see copyright notice in zlib.h 
  731.  */
  732. /* WARNING: this file should *not* be used by applications. It is
  733.    part of the implementation of the compression library and is
  734.    subject to change. Applications should only use zlib.h.
  735.  */
  736. #ifndef _INFUTIL_H
  737. #define _INFUTIL_H
  738. typedef enum {
  739.       TYPE,     /* get type bits (3, including end bit) */
  740.       LENS,     /* get lengths for stored */
  741.       STORED,   /* processing stored block */
  742.       TABLE,    /* get table lengths */
  743.       BTREE,    /* get bit lengths tree for a dynamic block */
  744.       DTREE,    /* get length, distance trees for a dynamic block */
  745.       CODES,    /* processing fixed or dynamic block */
  746.       DRY,      /* output remaining window bytes */
  747.       DONEB,    /* finished last block, done */
  748.       BADB}     /* got a data error--stuck here */
  749. inflate_block_mode;
  750. /* inflate blocks semi-private state */
  751. struct inflate_blocks_state {
  752.   /* mode */
  753.   inflate_block_mode  mode;     /* current inflate_block mode */
  754.   /* mode dependent information */
  755.   union {
  756.     uInt left;          /* if STORED, bytes left to copy */
  757.     struct {
  758.       uInt table;               /* table lengths (14 bits) */
  759.       uInt index;               /* index into blens (or border) */
  760.       uIntf *blens;             /* bit lengths of codes */
  761.       uInt bb;                  /* bit length tree depth */
  762.       inflate_huft *tb;         /* bit length decoding tree */
  763.     } trees;            /* if DTREE, decoding info for trees */
  764.     struct {
  765.       inflate_huft *tl;
  766.       inflate_huft *td;         /* trees to free */
  767.       inflate_codes_statef 
  768.          *codes;
  769.     } decode;           /* if CODES, current state */
  770.   } sub;                /* submode */
  771.   uInt last;            /* true if this block is the last block */
  772.   /* mode independent information */
  773.   uInt bitk;            /* bits in bit buffer */
  774.   uLong bitb;           /* bit buffer */
  775.   Bytef *window;        /* sliding window */
  776.   Bytef *end;           /* one byte after sliding window */
  777.   Bytef *read;          /* window read pointer */
  778.   Bytef *write;         /* window write pointer */
  779.   check_func checkfn;   /* check function */
  780.   uLong check;          /* check on output */
  781. };
  782. /* defines for inflate input/output */
  783. /*   update pointers and return */
  784. #define UPDBITS {s->bitb=b;s->bitk=k;}
  785. #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
  786. #define UPDOUT {s->write=q;}
  787. #define UPDATE {UPDBITS UPDIN UPDOUT}
  788. #define LEAVE {UPDATE return inflate_flush(s,z,r);}
  789. /*   get bytes and bits */
  790. #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
  791. #define NEEDBYTE {if(n)r=Z_OK;else LEAVE}
  792. #define NEXTBYTE (n--,*p++)
  793. #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
  794. #define DUMPBITS(j) {b>>=(j);k-=(j);}
  795. /*   output bytes */
  796. #define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q)
  797. #define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
  798. #define WWRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}}
  799. #define FLUSH {UPDOUT r=inflate_flush(s,z,r); LOADOUT}
  800. #define NEEDOUT {if(m==0){WWRAP if(m==0){FLUSH WWRAP if(m==0) LEAVE}}r=Z_OK;}
  801. #define OUTBYTE(a) {*q++=(Byte)(a);m--;}
  802. /*   load local pointers */
  803. #define LOAD {LOADIN LOADOUT}
  804. /* masks for lower bits (size given to avoid silly warnings with Visual C++) */
  805. extern uInt inflate_mask[17];
  806. /* copy as much as possible from the sliding window to the output area */
  807. extern int inflate_flush OF((
  808.     inflate_blocks_statef *,
  809.     z_streamp ,
  810.     int));
  811. #ifndef NO_DUMMY_DECL
  812. struct internal_state      {int dummy;}; /* for buggy compilers */
  813. #endif
  814. #endif
  815. /* --- infutil.h */
  816. #ifndef NO_DUMMY_DECL
  817. struct inflate_codes_state {int dummy;}; /* for buggy compilers */
  818. #endif
  819. /* Table for deflate from PKZIP's appnote.txt. */
  820. local const uInt border[] = { /* Order of the bit length code lengths */
  821.         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
  822. /*
  823.    Notes beyond the 1.93a appnote.txt:
  824.    1. Distance pointers never point before the beginning of the output
  825.       stream.
  826.    2. Distance pointers can point back across blocks, up to 32k away.
  827.    3. There is an implied maximum of 7 bits for the bit length table and
  828.       15 bits for the actual data.
  829.    4. If only one code exists, then it is encoded using one bit.  (Zero
  830.       would be more efficient, but perhaps a little confusing.)  If two
  831.       codes exist, they are coded using one bit each (0 and 1).
  832.    5. There is no way of sending zero distance codes--a dummy must be
  833.       sent if there are none.  (History: a pre 2.0 version of PKZIP would
  834.       store blocks with no distance codes, but this was discovered to be
  835.       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
  836.       zero distance codes, which is sent as one code of zero bits in
  837.       length.
  838.    6. There are up to 286 literal/length codes.  Code 256 represents the
  839.       end-of-block.  Note however that the static length tree defines
  840.       288 codes just to fill out the Huffman codes.  Codes 286 and 287
  841.       cannot be used though, since there is no length base or extra bits
  842.       defined for them.  Similarily, there are up to 30 distance codes.
  843.       However, static trees define 32 codes (all 5 bits) to fill out the
  844.       Huffman codes, but the last two had better not show up in the data.
  845.    7. Unzip can check dynamic Huffman blocks for complete code sets.
  846.       The exception is that a single code would not be complete (see #4).
  847.    8. The five bits following the block type is really the number of
  848.       literal codes sent minus 257.
  849.    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
  850.       (1+6+6).  Therefore, to output three times the length, you output
  851.       three codes (1+1+1), whereas to output four times the same length,
  852.       you only need two codes (1+3).  Hmm.
  853.   10. In the tree reconstruction algorithm, Code = Code + Increment
  854.       only if BitLength(i) is not zero.  (Pretty obvious.)
  855.   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  856.   12. Note: length code 284 can represent 227-258, but length code 285
  857.       really is 258.  The last length deserves its own, short code
  858.       since it gets used a lot in very redundant files.  The length
  859.       258 is special since 258 - 3 (the min match length) is 255.
  860.   13. The literal/length and distance code bit lengths are read as a
  861.       single stream of lengths.  It is possible (and advantageous) for
  862.       a repeat code (16, 17, or 18) to go across the boundary between
  863.       the two sets of lengths.
  864.  */
  865. void inflate_blocks_reset(s, z, c)
  866. inflate_blocks_statef *s;
  867. z_streamp z;
  868. uLongf *c;
  869. {
  870.   if (s->checkfn != Z_NULL)
  871.     *c = s->check;
  872.   if (s->mode == BTREE || s->mode == DTREE)
  873.     ZFREE(z, s->sub.trees.blens);
  874.   if (s->mode == CODES)
  875.   {
  876.     inflate_codes_free(s->sub.decode.codes, z);
  877.     inflate_trees_free(s->sub.decode.td, z);
  878.     inflate_trees_free(s->sub.decode.tl, z);
  879.   }
  880.   s->mode = TYPE;
  881.   s->bitk = 0;
  882.   s->bitb = 0;
  883.   s->read = s->write = s->window;
  884.   if (s->checkfn != Z_NULL)
  885.     z->adler = s->check = (*s->checkfn)(0L, Z_NULL, 0);
  886.   Trace((stderr, "inflate:   blocks resetn"));
  887. }
  888. inflate_blocks_statef *inflate_blocks_new(z, c, w)
  889. z_streamp z;
  890. check_func c;
  891. uInt w;
  892. {
  893.   inflate_blocks_statef *s;
  894.   if ((s = (inflate_blocks_statef *)ZALLOC
  895.        (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
  896.     return s;
  897.   if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
  898.   {
  899.     ZFREE(z, s);
  900.     return Z_NULL;
  901.   }
  902.   s->end = s->window + w;
  903.   s->checkfn = c;
  904.   s->mode = TYPE;
  905.   Trace((stderr, "inflate:   blocks allocatedn"));
  906.   inflate_blocks_reset(s, z, &s->check);
  907.   return s;
  908. }
  909. #ifdef DEBUG_ZLIB
  910.   extern uInt inflate_hufts;
  911. #endif
  912. int inflate_blocks(s, z, r)
  913. inflate_blocks_statef *s;
  914. z_streamp z;
  915. int r;
  916. {
  917.   uInt t;               /* temporary storage */
  918.   uLong b;              /* bit buffer */
  919.   uInt k;               /* bits in bit buffer */
  920.   Bytef *p;             /* input data pointer */
  921.   uInt n;               /* bytes available there */
  922.   Bytef *q;             /* output window write pointer */
  923.   uInt m;               /* bytes to end of window or read pointer */
  924.   /* copy input/output information to locals (UPDATE macro restores) */
  925.   LOAD
  926.   /* process input based on current state */
  927.   while (1) switch (s->mode)
  928.   {
  929.     case TYPE:
  930.       NEEDBITS(3)
  931.       t = (uInt)b & 7;
  932.       s->last = t & 1;
  933.       switch (t >> 1)
  934.       {
  935.         case 0:                         /* stored */
  936.           Trace((stderr, "inflate:     stored block%sn",
  937.                  s->last ? " (last)" : ""));
  938.           DUMPBITS(3)
  939.           t = k & 7;                    /* go to byte boundary */
  940.           DUMPBITS(t)
  941.           s->mode = LENS;               /* get length of stored block */
  942.           break;
  943.         case 1:                         /* fixed */
  944.           Trace((stderr, "inflate:     fixed codes block%sn",
  945.                  s->last ? " (last)" : ""));
  946.           {
  947.             uInt bl, bd;
  948.             inflate_huft *tl, *td;
  949.             inflate_trees_fixed(&bl, &bd, &tl, &td);
  950.             s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
  951.             if (s->sub.decode.codes == Z_NULL)
  952.             {
  953.               r = Z_MEM_ERROR;
  954.               LEAVE
  955.             }
  956.             s->sub.decode.tl = Z_NULL;  /* don't try to free these */
  957.             s->sub.decode.td = Z_NULL;
  958.           }
  959.           DUMPBITS(3)
  960.           s->mode = CODES;
  961.           break;
  962.         case 2:                         /* dynamic */
  963.           Trace((stderr, "inflate:     dynamic codes block%sn",
  964.                  s->last ? " (last)" : ""));
  965.           DUMPBITS(3)
  966.           s->mode = TABLE;
  967.           break;
  968.         case 3:                         /* illegal */
  969.           DUMPBITS(3)
  970.           s->mode = BADB;
  971.           z->msg = (char*)"invalid block type";
  972.           r = Z_DATA_ERROR;
  973.           LEAVE
  974.       }
  975.       break;
  976.     case LENS:
  977.       NEEDBITS(32)
  978.       if ((((~b) >> 16) & 0xffff) != (b & 0xffff))
  979.       {
  980.         s->mode = BADB;
  981.         z->msg = (char*)"invalid stored block lengths";
  982.         r = Z_DATA_ERROR;
  983.         LEAVE
  984.       }
  985.       s->sub.left = (uInt)b & 0xffff;
  986.       b = k = 0;                      /* dump bits */
  987.       Tracev((stderr, "inflate:       stored length %un", s->sub.left));
  988.       s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
  989.       break;
  990.     case STORED:
  991.       if (n == 0)
  992.         LEAVE
  993.       NEEDOUT
  994.       t = s->sub.left;
  995.       if (t > n) t = n;
  996.       if (t > m) t = m;
  997.       zmemcpy(q, p, t);
  998.       p += t;  n -= t;
  999.       q += t;  m -= t;
  1000.       if ((s->sub.left -= t) != 0)
  1001.         break;
  1002.       Tracev((stderr, "inflate:       stored end, %lu total outn",
  1003.               z->total_out + (q >= s->read ? q - s->read :
  1004.               (s->end - s->read) + (q - s->window))));
  1005.       s->mode = s->last ? DRY : TYPE;
  1006.       break;
  1007.     case TABLE:
  1008.       NEEDBITS(14)
  1009.       s->sub.trees.table = t = (uInt)b & 0x3fff;
  1010. #ifndef PKZIP_BUG_WORKAROUND
  1011.       if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
  1012.       {
  1013.         s->mode = BADB;
  1014.         z->msg = (char*)"too many length or distance symbols";
  1015.         r = Z_DATA_ERROR;
  1016.         LEAVE
  1017.       }
  1018. #endif
  1019.       t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
  1020.       if (t < 19)
  1021.         t = 19;
  1022.       if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
  1023.       {
  1024.         r = Z_MEM_ERROR;
  1025.         LEAVE
  1026.       }
  1027.       DUMPBITS(14)
  1028.       s->sub.trees.index = 0;
  1029.       Tracev((stderr, "inflate:       table sizes okn"));
  1030.       s->mode = BTREE;
  1031.     case BTREE:
  1032.       while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
  1033.       {
  1034.         NEEDBITS(3)
  1035.         s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
  1036.         DUMPBITS(3)
  1037.       }
  1038.       while (s->sub.trees.index < 19)
  1039.         s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
  1040.       s->sub.trees.bb = 7;
  1041.       t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
  1042.                              &s->sub.trees.tb, z);
  1043.       if (t != Z_OK)
  1044.       {
  1045.         ZFREE(z, s->sub.trees.blens);
  1046.         r = t;
  1047.         if (r == Z_DATA_ERROR)
  1048.           s->mode = BADB;
  1049.         LEAVE
  1050.       }
  1051.       s->sub.trees.index = 0;
  1052.       Tracev((stderr, "inflate:       bits tree okn"));
  1053.       s->mode = DTREE;
  1054.     case DTREE:
  1055.       while (t = s->sub.trees.table,
  1056.              s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f))
  1057.       {
  1058.         inflate_huft *h;
  1059.         uInt i, j, c;
  1060.         t = s->sub.trees.bb;
  1061.         NEEDBITS(t)
  1062.         h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
  1063.         t = h->word.what.Bits;
  1064.         c = h->more.Base;
  1065.         if (c < 16)
  1066.         {
  1067.           DUMPBITS(t)
  1068.           s->sub.trees.blens[s->sub.trees.index++] = c;
  1069.         }
  1070.         else /* c == 16..18 */
  1071.         {
  1072.           i = c == 18 ? 7 : c - 14;
  1073.           j = c == 18 ? 11 : 3;
  1074.           NEEDBITS(t + i)
  1075.           DUMPBITS(t)
  1076.           j += (uInt)b & inflate_mask[i];
  1077.           DUMPBITS(i)
  1078.           i = s->sub.trees.index;
  1079.           t = s->sub.trees.table;
  1080.           if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) ||
  1081.               (c == 16 && i < 1))
  1082.           {
  1083.             inflate_trees_free(s->sub.trees.tb, z);
  1084.             ZFREE(z, s->sub.trees.blens);
  1085.             s->mode = BADB;
  1086.             z->msg = (char*)"invalid bit length repeat";
  1087.             r = Z_DATA_ERROR;
  1088.             LEAVE
  1089.           }
  1090.           c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
  1091.           do {
  1092.             s->sub.trees.blens[i++] = c;
  1093.           } while (--j);
  1094.           s->sub.trees.index = i;
  1095.         }
  1096.       }
  1097.       inflate_trees_free(s->sub.trees.tb, z);
  1098.       s->sub.trees.tb = Z_NULL;
  1099.       {
  1100.         uInt bl, bd;
  1101.         inflate_huft *tl, *td;
  1102.         inflate_codes_statef *c;
  1103.         bl = 9;         /* must be <= 9 for lookahead assumptions */
  1104.         bd = 6;         /* must be <= 9 for lookahead assumptions */
  1105.         t = s->sub.trees.table;
  1106. #ifdef DEBUG_ZLIB
  1107.       inflate_hufts = 0;
  1108. #endif
  1109.         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
  1110.                                   s->sub.trees.blens, &bl, &bd, &tl, &td, z);
  1111.         ZFREE(z, s->sub.trees.blens);
  1112.         if (t != Z_OK)
  1113.         {
  1114.           if (t == (uInt)Z_DATA_ERROR)
  1115.             s->mode = BADB;
  1116.           r = t;
  1117.           LEAVE
  1118.         }
  1119.         Tracev((stderr, "inflate:       trees ok, %d * %d bytes usedn",
  1120.               inflate_hufts, sizeof(inflate_huft)));
  1121.         if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
  1122.         {
  1123.           inflate_trees_free(td, z);
  1124.           inflate_trees_free(tl, z);
  1125.           r = Z_MEM_ERROR;
  1126.           LEAVE
  1127.         }
  1128.         s->sub.decode.codes = c;
  1129.         s->sub.decode.tl = tl;
  1130.         s->sub.decode.td = td;
  1131.       }
  1132.       s->mode = CODES;
  1133.     case CODES:
  1134.       UPDATE
  1135.       if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
  1136.         return inflate_flush(s, z, r);
  1137.       r = Z_OK;
  1138.       inflate_codes_free(s->sub.decode.codes, z);
  1139.       inflate_trees_free(s->sub.decode.td, z);
  1140.       inflate_trees_free(s->sub.decode.tl, z);
  1141.       LOAD
  1142.       Tracev((stderr, "inflate:       codes end, %lu total outn",
  1143.               z->total_out + (q >= s->read ? q - s->read :
  1144.               (s->end - s->read) + (q - s->window))));
  1145.       if (!s->last)
  1146.       {
  1147.         s->mode = TYPE;
  1148.         break;
  1149.       }
  1150.       if (k > 7)              /* return unused byte, if any */
  1151.       {
  1152.         Assert(k < 16, "inflate_codes grabbed too many bytes")
  1153.         k -= 8;
  1154.         n++;
  1155.         p--;                    /* can always return one */
  1156.       }
  1157.       s->mode = DRY;
  1158.     case DRY:
  1159.       FLUSH
  1160.       if (s->read != s->write)
  1161.         LEAVE
  1162.       s->mode = DONEB;
  1163.     case DONEB:
  1164.       r = Z_STREAM_END;
  1165.       LEAVE
  1166.     case BADB:
  1167.       r = Z_DATA_ERROR;
  1168.       LEAVE
  1169.     default:
  1170.       r = Z_STREAM_ERROR;
  1171.       LEAVE
  1172.   }
  1173. }
  1174. int inflate_blocks_free(s, z, c)
  1175. inflate_blocks_statef *s;
  1176. z_streamp z;
  1177. uLongf *c;
  1178. {
  1179.   inflate_blocks_reset(s, z, c);
  1180.   ZFREE(z, s->window);
  1181.   ZFREE(z, s);
  1182.   Trace((stderr, "inflate:   blocks freedn"));
  1183.   return Z_OK;
  1184. }
  1185. void inflate_set_dictionary(s, d, n)
  1186. inflate_blocks_statef *s;
  1187. const Bytef *d;
  1188. uInt  n;
  1189. {
  1190.   zmemcpy((charf *)s->window, d, n);
  1191.   s->read = s->write = s->window + n;
  1192. }
  1193. /*
  1194.  * This subroutine adds the data at next_in/avail_in to the output history
  1195.  * without performing any output.  The output buffer must be "caught up";
  1196.  * i.e. no pending output (hence s->read equals s->write), and the state must
  1197.  * be BLOCKS (i.e. we should be willing to see the start of a series of
  1198.  * BLOCKS).  On exit, the output will also be caught up, and the checksum
  1199.  * will have been updated if need be.
  1200.  */
  1201. int inflate_addhistory(s, z)
  1202. inflate_blocks_statef *s;
  1203. z_stream *z;
  1204. {
  1205.     uLong b;              /* bit buffer */  /* NOT USED HERE */
  1206.     uInt k;               /* bits in bit buffer */ /* NOT USED HERE */
  1207.     uInt t;               /* temporary storage */
  1208.     Bytef *p;             /* input data pointer */
  1209.     uInt n;               /* bytes available there */
  1210.     Bytef *q;             /* output window write pointer */
  1211.     uInt m;               /* bytes to end of window or read pointer */
  1212.     if (s->read != s->write)
  1213. return Z_STREAM_ERROR;
  1214.     if (s->mode != TYPE)
  1215. return Z_DATA_ERROR;
  1216.     /* we're ready to rock */
  1217.     LOAD
  1218.     /* while there is input ready, copy to output buffer, moving
  1219.      * pointers as needed.
  1220.      */
  1221.     while (n) {
  1222. t = n;  /* how many to do */
  1223. /* is there room until end of buffer? */
  1224. if (t > m) t = m;
  1225. /* update check information */
  1226. if (s->checkfn != Z_NULL)
  1227.     s->check = (*s->checkfn)(s->check, q, t);
  1228. zmemcpy(q, p, t);
  1229. q += t;
  1230. p += t;
  1231. n -= t;
  1232. z->total_out += t;
  1233. s->read = q;    /* drag read pointer forward */
  1234. /*      WWRAP  */  /* expand WWRAP macro by hand to handle s->read */
  1235. if (q == s->end) {
  1236.     s->read = q = s->window;
  1237.     m = WAVAIL;
  1238. }
  1239.     }
  1240.     UPDATE
  1241.     return Z_OK;
  1242. }
  1243. /*
  1244.  * At the end of a Deflate-compressed PPP packet, we expect to have seen
  1245.  * a `stored' block type value but not the (zero) length bytes.
  1246.  */
  1247. int inflate_packet_flush(s)
  1248.     inflate_blocks_statef *s;
  1249. {
  1250.     if (s->mode != LENS)
  1251. return Z_DATA_ERROR;
  1252.     s->mode = TYPE;
  1253.     return Z_OK;
  1254. }
  1255. /* --- infblock.c */
  1256. /* +++ inftrees.c */
  1257. /* inftrees.c -- generate Huffman trees for efficient decoding
  1258.  * Copyright (C) 1995-1996 Mark Adler
  1259.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1260.  */
  1261. /* #include "zutil.h" */
  1262. /* #include "inftrees.h" */
  1263. char inflate_copyright[] = " inflate 1.0.4 Copyright 1995-1996 Mark Adler ";
  1264. /*
  1265.   If you use the zlib library in a product, an acknowledgment is welcome
  1266.   in the documentation of your product. If for some reason you cannot
  1267.   include such an acknowledgment, I would appreciate that you keep this
  1268.   copyright string in the executable of your product.
  1269.  */
  1270. #ifndef NO_DUMMY_DECL
  1271. struct internal_state  {int dummy;}; /* for buggy compilers */
  1272. #endif
  1273. /* simplify the use of the inflate_huft type with some defines */
  1274. #define base more.Base
  1275. #define next more.Next
  1276. #define exop word.what.Exop
  1277. #define bits word.what.Bits
  1278. local int huft_build OF((
  1279.     uIntf *,            /* code lengths in bits */
  1280.     uInt,               /* number of codes */
  1281.     uInt,               /* number of "simple" codes */
  1282.     const uIntf *,      /* list of base values for non-simple codes */
  1283.     const uIntf *,      /* list of extra bits for non-simple codes */
  1284.     inflate_huft * FAR*,/* result: starting table */
  1285.     uIntf *,            /* maximum lookup bits (returns actual) */
  1286.     z_streamp ));       /* for zalloc function */
  1287. local voidpf falloc OF((
  1288.     voidpf,             /* opaque pointer (not used) */
  1289.     uInt,               /* number of items */
  1290.     uInt));             /* size of item */
  1291. /* Tables for deflate from PKZIP's appnote.txt. */
  1292. local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */
  1293.         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
  1294.         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
  1295.         /* see note #13 above about 258 */
  1296. local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */
  1297.         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
  1298.         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 112, 112}; /* 112==invalid */
  1299. local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */
  1300.         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
  1301.         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
  1302.         8193, 12289, 16385, 24577};
  1303. local const uInt cpdext[30] = { /* Extra bits for distance codes */
  1304.         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
  1305.         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
  1306.         12, 12, 13, 13};
  1307. /*
  1308.    Huffman code decoding is performed using a multi-level table lookup.
  1309.    The fastest way to decode is to simply build a lookup table whose
  1310.    size is determined by the longest code.  However, the time it takes
  1311.    to build this table can also be a factor if the data being decoded
  1312.    is not very long.  The most common codes are necessarily the
  1313.    shortest codes, so those codes dominate the decoding time, and hence
  1314.    the speed.  The idea is you can have a shorter table that decodes the
  1315.    shorter, more probable codes, and then point to subsidiary tables for
  1316.    the longer codes.  The time it costs to decode the longer codes is
  1317.    then traded against the time it takes to make longer tables.
  1318.    This results of this trade are in the variables lbits and dbits
  1319.    below.  lbits is the number of bits the first level table for literal/
  1320.    length codes can decode in one step, and dbits is the same thing for
  1321.    the distance codes.  Subsequent tables are also less than or equal to
  1322.    those sizes.  These values may be adjusted either when all of the
  1323.    codes are shorter than that, in which case the longest code length in
  1324.    bits is used, or when the shortest code is *longer* than the requested
  1325.    table size, in which case the length of the shortest code in bits is
  1326.    used.
  1327.    There are two different values for the two tables, since they code a
  1328.    different number of possibilities each.  The literal/length table
  1329.    codes 286 possible values, or in a flat code, a little over eight
  1330.    bits.  The distance table codes 30 possible values, or a little less
  1331.    than five bits, flat.  The optimum values for speed end up being
  1332.    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
  1333.    The optimum values may differ though from machine to machine, and
  1334.    possibly even between compilers.  Your mileage may vary.
  1335.  */
  1336. /* If BMAX needs to be larger than 16, then h and x[] should be uLong. */
  1337. #define BMAX 15         /* maximum bit length of any code */
  1338. #define N_MAX 288       /* maximum number of codes in any set */
  1339. #ifdef DEBUG_ZLIB
  1340.   uInt inflate_hufts;
  1341. #endif
  1342. local int huft_build(b, n, s, d, e, t, m, zs)
  1343. uIntf *b;               /* code lengths in bits (all assumed <= BMAX) */
  1344. uInt n;                 /* number of codes (assumed <= N_MAX) */
  1345. uInt s;                 /* number of simple-valued codes (0..s-1) */
  1346. const uIntf *d;         /* list of base values for non-simple codes */
  1347. const uIntf *e;         /* list of extra bits for non-simple codes */
  1348. inflate_huft * FAR *t;  /* result: starting table */
  1349. uIntf *m;               /* maximum lookup bits, returns actual */
  1350. z_streamp zs;           /* for zalloc function */
  1351. /* Given a list of code lengths and a maximum table size, make a set of
  1352.    tables to decode that set of codes.  Return Z_OK on success, Z_BUF_ERROR
  1353.    if the given code set is incomplete (the tables are still built in this
  1354.    case), Z_DATA_ERROR if the input is invalid (an over-subscribed set of
  1355.    lengths), or Z_MEM_ERROR if not enough memory. */
  1356. {
  1357.   uInt a;                       /* counter for codes of length k */
  1358.   uInt c[BMAX+1];               /* bit length count table */
  1359.   uInt f;                       /* i repeats in table every f entries */
  1360.   int g;                        /* maximum code length */
  1361.   int h;                        /* table level */
  1362.   register uInt i;              /* counter, current code */
  1363.   register uInt j;              /* counter */
  1364.   register int k;               /* number of bits in current code */
  1365.   int l;                        /* bits per table (returned in m) */
  1366.   register uIntf *p;            /* pointer into c[], b[], or v[] */
  1367.   inflate_huft *q;              /* points to current table */
  1368.   struct inflate_huft_s r;      /* table entry for structure assignment */
  1369.   inflate_huft *u[BMAX];        /* table stack */
  1370.   uInt v[N_MAX];                /* values in order of bit length */
  1371.   register int w;               /* bits before this table == (l * h) */
  1372.   uInt x[BMAX+1];               /* bit offsets, then code stack */
  1373.   uIntf *xp;                    /* pointer into x */
  1374.   int y;                        /* number of dummy codes added */
  1375.   uInt z;                       /* number of entries in current table */
  1376.   /* Generate counts for each bit length */
  1377.   p = c;
  1378. #define C0 *p++ = 0;
  1379. #define C2 C0 C0 C0 C0
  1380. #define C4 C2 C2 C2 C2
  1381.   C4                            /* clear c[]--assume BMAX+1 is 16 */
  1382.   p = b;  i = n;
  1383.   do {
  1384.     c[*p++]++;                  /* assume all entries <= BMAX */
  1385.   } while (--i);
  1386.   if (c[0] == n)                /* null input--all zero length codes */
  1387.   {
  1388.     *t = (inflate_huft *)Z_NULL;
  1389.     *m = 0;
  1390.     return Z_OK;
  1391.   }
  1392.   /* Find minimum and maximum length, bound *m by those */
  1393.   l = *m;
  1394.   for (j = 1; j <= BMAX; j++)
  1395.     if (c[j])
  1396.       break;
  1397.   k = j;                        /* minimum code length */
  1398.   if ((uInt)l < j)
  1399.     l = j;
  1400.   for (i = BMAX; i; i--)
  1401.     if (c[i])
  1402.       break;
  1403.   g = i;                        /* maximum code length */
  1404.   if ((uInt)l > i)
  1405.     l = i;
  1406.   *m = l;
  1407.   /* Adjust last length count to fill out codes, if needed */
  1408.   for (y = 1 << j; j < i; j++, y <<= 1)
  1409.     if ((y -= c[j]) < 0)
  1410.       return Z_DATA_ERROR;
  1411.   if ((y -= c[i]) < 0)
  1412.     return Z_DATA_ERROR;
  1413.   c[i] += y;
  1414.   /* Generate starting offsets into the value table for each length */
  1415.   x[1] = j = 0;
  1416.   p = c + 1;  xp = x + 2;
  1417.   while (--i) {                 /* note that i == g from above */
  1418.     *xp++ = (j += *p++);
  1419.   }
  1420.   /* Make a table of values in order of bit lengths */
  1421.   p = b;  i = 0;
  1422.   do {
  1423.     if ((j = *p++) != 0)
  1424.       v[x[j]++] = i;
  1425.   } while (++i < n);
  1426.   n = x[g];                   /* set n to length of v */
  1427.   /* Generate the Huffman codes and for each, make the table entries */
  1428.   x[0] = i = 0;                 /* first Huffman code is zero */
  1429.   p = v;                        /* grab values in bit order */
  1430.   h = -1;                       /* no tables yet--level -1 */
  1431.   w = -l;                       /* bits decoded == (l * h) */
  1432.   u[0] = (inflate_huft *)Z_NULL;        /* just to keep compilers happy */
  1433.   q = (inflate_huft *)Z_NULL;   /* ditto */
  1434.   z = 0;                        /* ditto */
  1435.   /* go through the bit lengths (k already is bits in shortest code) */
  1436.   for (; k <= g; k++)
  1437.   {
  1438.     a = c[k];
  1439.     while (a--)
  1440.     {
  1441.       /* here i is the Huffman code of length k bits for value *p */
  1442.       /* make tables up to required level */
  1443.       while (k > w + l)
  1444.       {
  1445.         h++;
  1446.         w += l;                 /* previous table always l bits */
  1447.         /* compute minimum size table less than or equal to l bits */
  1448.         z = g - w;
  1449.         z = z > (uInt)l ? l : z;        /* table size upper limit */
  1450.         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
  1451.         {                       /* too few codes for k-w bit table */
  1452.           f -= a + 1;           /* deduct codes from patterns left */
  1453.           xp = c + k;
  1454.           if (j < z)
  1455.             while (++j < z)     /* try smaller tables up to z bits */
  1456.             {
  1457.               if ((f <<= 1) <= *++xp)
  1458.                 break;          /* enough codes to use up j bits */
  1459.               f -= *xp;         /* else deduct codes from patterns */
  1460.             }
  1461.         }
  1462.         z = 1 << j;             /* table entries for j-bit table */
  1463.         /* allocate and link in new table */
  1464.         if ((q = (inflate_huft *)ZALLOC
  1465.              (zs,z + 1,sizeof(inflate_huft))) == Z_NULL)
  1466.         {
  1467.           if (h)
  1468.             inflate_trees_free(u[0], zs);
  1469.           return Z_MEM_ERROR;   /* not enough memory */
  1470.         }
  1471. #ifdef DEBUG_ZLIB
  1472.         inflate_hufts += z + 1;
  1473. #endif
  1474.         *t = q + 1;             /* link to list for huft_free() */
  1475.         *(t = &(q->next)) = Z_NULL;
  1476.         u[h] = ++q;             /* table starts after link */
  1477.         /* connect to last table, if there is one */
  1478.         if (h)
  1479.         {
  1480.           x[h] = i;             /* save pattern for backing up */
  1481.           r.bits = (Byte)l;     /* bits to dump before this table */
  1482.           r.exop = (Byte)j;     /* bits in this table */
  1483.           r.next = q;           /* pointer to this table */
  1484.           j = i >> (w - l);     /* (get around Turbo C bug) */
  1485.           u[h-1][j] = r;        /* connect to last table */
  1486.         }
  1487.       }
  1488.       /* set up table entry in r */
  1489.       r.bits = (Byte)(k - w);
  1490.       if (p >= v + n)
  1491.         r.exop = 128 + 64;      /* out of values--invalid code */
  1492.       else if (*p < s)
  1493.       {
  1494.         r.exop = (Byte)(*p < 256 ? 0 : 32 + 64);     /* 256 is end-of-block */
  1495.         r.base = *p++;          /* simple code is just the value */
  1496.       }
  1497.       else
  1498.       {
  1499.         r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */
  1500.         r.base = d[*p++ - s];
  1501.       }
  1502.       /* fill code-like entries with r */
  1503.       f = 1 << (k - w);
  1504.       for (j = i >> w; j < z; j += f)
  1505.         q[j] = r;
  1506.       /* backwards increment the k-bit code i */
  1507.       for (j = 1 << (k - 1); i & j; j >>= 1)
  1508.         i ^= j;
  1509.       i ^= j;
  1510.       /* backup over finished tables */
  1511.       while ((i & ((1 << w) - 1)) != x[h])
  1512.       {
  1513.         h--;                    /* don't need to update q */
  1514.         w -= l;
  1515.       }
  1516.     }
  1517.   }
  1518.   /* Return Z_BUF_ERROR if we were given an incomplete table */
  1519.   return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK;
  1520. }
  1521. int inflate_trees_bits(c, bb, tb, z)
  1522. uIntf *c;               /* 19 code lengths */
  1523. uIntf *bb;              /* bits tree desired/actual depth */
  1524. inflate_huft * FAR *tb; /* bits tree result */
  1525. z_streamp z;            /* for zfree function */
  1526. {
  1527.   int r;
  1528.   r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL, tb, bb, z);
  1529.   if (r == Z_DATA_ERROR)
  1530.     z->msg = (char*)"oversubscribed dynamic bit lengths tree";
  1531.   else if (r == Z_BUF_ERROR || *bb == 0)
  1532.   {
  1533.     inflate_trees_free(*tb, z);
  1534.     z->msg = (char*)"incomplete dynamic bit lengths tree";
  1535.     r = Z_DATA_ERROR;
  1536.   }
  1537.   return r;
  1538. }
  1539. int inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, z)
  1540. uInt nl;                /* number of literal/length codes */
  1541. uInt nd;                /* number of distance codes */
  1542. uIntf *c;               /* that many (total) code lengths */
  1543. uIntf *bl;              /* literal desired/actual bit depth */
  1544. uIntf *bd;              /* distance desired/actual bit depth */
  1545. inflate_huft * FAR *tl; /* literal/length tree result */
  1546. inflate_huft * FAR *td; /* distance tree result */
  1547. z_streamp z;            /* for zfree function */
  1548. {
  1549.   int r;
  1550.   /* build literal/length tree */
  1551.   r = huft_build(c, nl, 257, cplens, cplext, tl, bl, z);
  1552.   if (r != Z_OK || *bl == 0)
  1553.   {
  1554.     if (r == Z_DATA_ERROR)
  1555.       z->msg = (char*)"oversubscribed literal/length tree";
  1556.     else if (r != Z_MEM_ERROR)
  1557.     {
  1558.       inflate_trees_free(*tl, z);
  1559.       z->msg = (char*)"incomplete literal/length tree";
  1560.       r = Z_DATA_ERROR;
  1561.     }
  1562.     return r;
  1563.   }
  1564.   /* build distance tree */
  1565.   r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, z);
  1566.   if (r != Z_OK || (*bd == 0 && nl > 257))
  1567.   {
  1568.     if (r == Z_DATA_ERROR)
  1569.       z->msg = (char*)"oversubscribed distance tree";
  1570.     else if (r == Z_BUF_ERROR) {
  1571. #ifdef PKZIP_BUG_WORKAROUND
  1572.       r = Z_OK;
  1573.     }
  1574. #else
  1575.       inflate_trees_free(*td, z);
  1576.       z->msg = (char*)"incomplete distance tree";
  1577.       r = Z_DATA_ERROR;
  1578.     }
  1579.     else if (r != Z_MEM_ERROR)
  1580.     {
  1581.       z->msg = (char*)"empty distance tree with lengths";
  1582.       r = Z_DATA_ERROR;
  1583.     }
  1584.     inflate_trees_free(*tl, z);
  1585.     return r;
  1586. #endif
  1587.   }
  1588.   /* done */
  1589.   return Z_OK;
  1590. }
  1591. /* build fixed tables only once--keep them here */
  1592. local int fixed_built = 0;
  1593. #define FIXEDH 530      /* number of hufts used by fixed tables */
  1594. local inflate_huft fixed_mem[FIXEDH];
  1595. local uInt fixed_bl;
  1596. local uInt fixed_bd;
  1597. local inflate_huft *fixed_tl;
  1598. local inflate_huft *fixed_td;
  1599. local voidpf falloc(q, n, s)
  1600. voidpf q;       /* opaque pointer */
  1601. uInt n;         /* number of items */
  1602. uInt s;         /* size of item */
  1603. {
  1604.   Assert(s == sizeof(inflate_huft) && n <= *(intf *)q,
  1605.          "inflate_trees falloc overflow");
  1606.   *(intf *)q -= n+s-s; /* s-s to avoid warning */
  1607.   return (voidpf)(fixed_mem + *(intf *)q);
  1608. }
  1609. int inflate_trees_fixed(bl, bd, tl, td)
  1610. uIntf *bl;               /* literal desired/actual bit depth */
  1611. uIntf *bd;               /* distance desired/actual bit depth */
  1612. inflate_huft * FAR *tl;  /* literal/length tree result */
  1613. inflate_huft * FAR *td;  /* distance tree result */
  1614. {
  1615.   /* build fixed tables if not already (multiple overlapped executions ok) */
  1616.   if (!fixed_built)
  1617.   {
  1618.     int k;              /* temporary variable */
  1619.     unsigned c[288];    /* length list for huft_build */
  1620.     z_stream z;         /* for falloc function */
  1621.     int f = FIXEDH;     /* number of hufts left in fixed_mem */
  1622.     /* set up fake z_stream for memory routines */
  1623.     z.zalloc = falloc;
  1624.     z.zfree = Z_NULL;
  1625.     z.opaque = (voidpf)&f;
  1626.     /* literal table */
  1627.     for (k = 0; k < 144; k++)
  1628.       c[k] = 8;
  1629.     for (; k < 256; k++)
  1630.       c[k] = 9;
  1631.     for (; k < 280; k++)
  1632.       c[k] = 7;
  1633.     for (; k < 288; k++)
  1634.       c[k] = 8;
  1635.     fixed_bl = 7;
  1636.     huft_build(c, 288, 257, cplens, cplext, &fixed_tl, &fixed_bl, &z);
  1637.     /* distance table */
  1638.     for (k = 0; k < 30; k++)
  1639.       c[k] = 5;
  1640.     fixed_bd = 5;
  1641.     huft_build(c, 30, 0, cpdist, cpdext, &fixed_td, &fixed_bd, &z);
  1642.     /* done */
  1643.     Assert(f == 0, "invalid build of fixed tables");
  1644.     fixed_built = 1;
  1645.   }
  1646.   *bl = fixed_bl;
  1647.   *bd = fixed_bd;
  1648.   *tl = fixed_tl;
  1649.   *td = fixed_td;
  1650.   return Z_OK;
  1651. }
  1652. int inflate_trees_free(t, z)
  1653. inflate_huft *t;        /* table to free */
  1654. z_streamp z;            /* for zfree function */
  1655. /* Free the malloc'ed tables built by huft_build(), which makes a linked
  1656.    list of the tables it made, with the links in a dummy first entry of
  1657.    each table. */
  1658. {
  1659.   register inflate_huft *p, *q, *r;
  1660.   /* Reverse linked list */
  1661.   p = Z_NULL;
  1662.   q = t;
  1663.   while (q != Z_NULL)
  1664.   {
  1665.     r = (q - 1)->next;
  1666.     (q - 1)->next = p;
  1667.     p = q;
  1668.     q = r;
  1669.   }
  1670.   /* Go through linked list, freeing from the malloced (t[-1]) address. */
  1671.   while (p != Z_NULL)
  1672.   {
  1673.     q = (--p)->next;
  1674.     ZFREE(z,p);
  1675.     p = q;
  1676.   } 
  1677.   return Z_OK;
  1678. }
  1679. /* --- inftrees.c */
  1680. /* +++ infcodes.c */
  1681. /* infcodes.c -- process literals and length/distance pairs
  1682.  * Copyright (C) 1995-1996 Mark Adler
  1683.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1684.  */
  1685. /* #include "zutil.h" */
  1686. /* #include "inftrees.h" */
  1687. /* #include "infblock.h" */
  1688. /* #include "infcodes.h" */
  1689. /* #include "infutil.h" */
  1690. /* +++ inffast.h */
  1691. /* inffast.h -- header to use inffast.c
  1692.  * Copyright (C) 1995-1996 Mark Adler
  1693.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1694.  */
  1695. /* WARNING: this file should *not* be used by applications. It is
  1696.    part of the implementation of the compression library and is
  1697.    subject to change. Applications should only use zlib.h.
  1698.  */
  1699. extern int inflate_fast OF((
  1700.     uInt,
  1701.     uInt,
  1702.     inflate_huft *,
  1703.     inflate_huft *,
  1704.     inflate_blocks_statef *,
  1705.     z_streamp ));
  1706. /* --- inffast.h */
  1707. /* simplify the use of the inflate_huft type with some defines */
  1708. #define base more.Base
  1709. #define next more.Next
  1710. #define exop word.what.Exop
  1711. #define bits word.what.Bits
  1712. /* inflate codes private state */
  1713. struct inflate_codes_state {
  1714.   /* mode */
  1715.   enum {        /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
  1716.       START,    /* x: set up for LEN */
  1717.       LEN,      /* i: get length/literal/eob next */
  1718.       LENEXT,   /* i: getting length extra (have base) */
  1719.       DIST,     /* i: get distance next */
  1720.       DISTEXT,  /* i: getting distance extra */
  1721.       COPY,     /* o: copying bytes in window, waiting for space */
  1722.       LIT,      /* o: got literal, waiting for output space */
  1723.       WASH,     /* o: got eob, possibly still output waiting */
  1724.       END,      /* x: got eob and all data flushed */
  1725.       BADCODE}  /* x: got error */
  1726.     mode;               /* current inflate_codes mode */
  1727.   /* mode dependent information */
  1728.   uInt len;
  1729.   union {
  1730.     struct {
  1731.       inflate_huft *tree;       /* pointer into tree */
  1732.       uInt need;                /* bits needed */
  1733.     } code;             /* if LEN or DIST, where in tree */
  1734.     uInt lit;           /* if LIT, literal */
  1735.     struct {
  1736.       uInt get;                 /* bits to get for extra */
  1737.       uInt dist;                /* distance back to copy from */
  1738.     } copy;             /* if EXT or COPY, where and how much */
  1739.   } sub;                /* submode */
  1740.   /* mode independent information */
  1741.   Byte lbits;           /* ltree bits decoded per branch */
  1742.   Byte dbits;           /* dtree bits decoder per branch */
  1743.   inflate_huft *ltree;          /* literal/length/eob tree */
  1744.   inflate_huft *dtree;          /* distance tree */
  1745. };
  1746. inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z)
  1747. uInt bl, bd;
  1748. inflate_huft *tl;
  1749. inflate_huft *td; /* need separate declaration for Borland C++ */
  1750. z_streamp z;
  1751. {
  1752.   inflate_codes_statef *c;
  1753.   if ((c = (inflate_codes_statef *)
  1754.        ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL)
  1755.   {
  1756.     c->mode = START;
  1757.     c->lbits = (Byte)bl;
  1758.     c->dbits = (Byte)bd;
  1759.     c->ltree = tl;
  1760.     c->dtree = td;
  1761.     Tracev((stderr, "inflate:       codes newn"));
  1762.   }
  1763.   return c;
  1764. }
  1765. int inflate_codes(s, z, r)
  1766. inflate_blocks_statef *s;
  1767. z_streamp z;
  1768. int r;
  1769. {
  1770.   uInt j;               /* temporary storage */
  1771.   inflate_huft *t;      /* temporary pointer */
  1772.   uInt e;               /* extra bits or operation */
  1773.   uLong b;              /* bit buffer */
  1774.   uInt k;               /* bits in bit buffer */
  1775.   Bytef *p;             /* input data pointer */
  1776.   uInt n;               /* bytes available there */
  1777.   Bytef *q;             /* output window write pointer */
  1778.   uInt m;               /* bytes to end of window or read pointer */
  1779.   Bytef *f;             /* pointer to copy strings from */
  1780.   inflate_codes_statef *c = s->sub.decode.codes;  /* codes state */
  1781.   /* copy input/output information to locals (UPDATE macro restores) */
  1782.   LOAD
  1783.   /* process input and output based on current state */
  1784.   while (1) switch (c->mode)
  1785.   {             /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
  1786.     case START:         /* x: set up for LEN */
  1787. #ifndef SLOW
  1788.       if (m >= 258 && n >= 10)
  1789.       {
  1790.         UPDATE
  1791.         r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
  1792.         LOAD
  1793.         if (r != Z_OK)
  1794.         {
  1795.           c->mode = r == Z_STREAM_END ? WASH : BADCODE;
  1796.           break;
  1797.         }
  1798.       }
  1799. #endif /* !SLOW */
  1800.       c->sub.code.need = c->lbits;
  1801.       c->sub.code.tree = c->ltree;
  1802.       c->mode = LEN;
  1803.     case LEN:           /* i: get length/literal/eob next */
  1804.       j = c->sub.code.need;
  1805.       NEEDBITS(j)
  1806.       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
  1807.       DUMPBITS(t->bits)
  1808.       e = (uInt)(t->exop);
  1809.       if (e == 0)               /* literal */
  1810.       {
  1811.         c->sub.lit = t->base;
  1812.         Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
  1813.                  "inflate:         literal '%c'n" :
  1814.                  "inflate:         literal 0x%02xn", t->base));
  1815.         c->mode = LIT;
  1816.         break;
  1817.       }
  1818.       if (e & 16)               /* length */
  1819.       {
  1820.         c->sub.copy.get = e & 15;
  1821.         c->len = t->base;
  1822.         c->mode = LENEXT;
  1823.         break;
  1824.       }
  1825.       if ((e & 64) == 0)        /* next table */
  1826.       {
  1827.         c->sub.code.need = e;
  1828.         c->sub.code.tree = t->next;
  1829.         break;
  1830.       }
  1831.       if (e & 32)               /* end of block */
  1832.       {
  1833.         Tracevv((stderr, "inflate:         end of blockn"));
  1834.         c->mode = WASH;
  1835.         break;
  1836.       }
  1837.       c->mode = BADCODE;        /* invalid code */
  1838.       z->msg = (char*)"invalid literal/length code";
  1839.       r = Z_DATA_ERROR;
  1840.       LEAVE
  1841.     case LENEXT:        /* i: getting length extra (have base) */
  1842.       j = c->sub.copy.get;
  1843.       NEEDBITS(j)
  1844.       c->len += (uInt)b & inflate_mask[j];
  1845.       DUMPBITS(j)
  1846.       c->sub.code.need = c->dbits;
  1847.       c->sub.code.tree = c->dtree;
  1848.       Tracevv((stderr, "inflate:         length %un", c->len));
  1849.       c->mode = DIST;
  1850.     case DIST:          /* i: get distance next */
  1851.       j = c->sub.code.need;
  1852.       NEEDBITS(j)
  1853.       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
  1854.       DUMPBITS(t->bits)
  1855.       e = (uInt)(t->exop);
  1856.       if (e & 16)               /* distance */
  1857.       {
  1858.         c->sub.copy.get = e & 15;
  1859.         c->sub.copy.dist = t->base;
  1860.         c->mode = DISTEXT;
  1861.         break;
  1862.       }
  1863.       if ((e & 64) == 0)        /* next table */
  1864.       {
  1865.         c->sub.code.need = e;
  1866.         c->sub.code.tree = t->next;
  1867.         break;
  1868.       }
  1869.       c->mode = BADCODE;        /* invalid code */
  1870.       z->msg = (char*)"invalid distance code";
  1871.       r = Z_DATA_ERROR;
  1872.       LEAVE
  1873.     case DISTEXT:       /* i: getting distance extra */
  1874.       j = c->sub.copy.get;
  1875.       NEEDBITS(j)
  1876.       c->sub.copy.dist += (uInt)b & inflate_mask[j];
  1877.       DUMPBITS(j)
  1878.       Tracevv((stderr, "inflate:         distance %un", c->sub.copy.dist));
  1879.       c->mode = COPY;
  1880.     case COPY:          /* o: copying bytes in window, waiting for space */
  1881. #ifndef __TURBOC__ /* Turbo C bug for following expression */
  1882.       f = (uInt)(q - s->window) < c->sub.copy.dist ?
  1883.           s->end - (c->sub.copy.dist - (q - s->window)) :
  1884.           q - c->sub.copy.dist;
  1885. #else
  1886.       f = q - c->sub.copy.dist;
  1887.       if ((uInt)(q - s->window) < c->sub.copy.dist)
  1888.         f = s->end - (c->sub.copy.dist - (uInt)(q - s->window));
  1889. #endif
  1890.       while (c->len)
  1891.       {
  1892.         NEEDOUT
  1893.         OUTBYTE(*f++)
  1894.         if (f == s->end)
  1895.           f = s->window;
  1896.         c->len--;
  1897.       }
  1898.       c->mode = START;
  1899.       break;
  1900.     case LIT:           /* o: got literal, waiting for output space */
  1901.       NEEDOUT
  1902.       OUTBYTE(c->sub.lit)
  1903.       c->mode = START;
  1904.       break;
  1905.     case WASH:          /* o: got eob, possibly more output */
  1906.       FLUSH
  1907.       if (s->read != s->write)
  1908.         LEAVE
  1909.       c->mode = END;
  1910.     case END:
  1911.       r = Z_STREAM_END;
  1912.       LEAVE
  1913.     case BADCODE:       /* x: got error */
  1914.       r = Z_DATA_ERROR;
  1915.       LEAVE
  1916.     default:
  1917.       r = Z_STREAM_ERROR;
  1918.       LEAVE
  1919.   }
  1920. }
  1921. void inflate_codes_free(c, z)
  1922. inflate_codes_statef *c;
  1923. z_streamp z;
  1924. {
  1925.   ZFREE(z, c);
  1926.   Tracev((stderr, "inflate:       codes freen"));
  1927. }
  1928. /* --- infcodes.c */
  1929. /* +++ infutil.c */
  1930. /* inflate_util.c -- data and routines common to blocks and codes
  1931.  * Copyright (C) 1995-1996 Mark Adler
  1932.  * For conditions of distribution and use, see copyright notice in zlib.h 
  1933.  */
  1934. /* #include "zutil.h" */
  1935. /* #include "infblock.h" */
  1936. /* #include "inftrees.h" */
  1937. /* #include "infcodes.h" */
  1938. /* #include "infutil.h" */
  1939. #ifndef NO_DUMMY_DECL
  1940. struct inflate_codes_state {int dummy;}; /* for buggy compilers */
  1941. #endif
  1942. /* And'ing with mask[n] masks the lower n bits */
  1943. uInt inflate_mask[17] = {
  1944.     0x0000,
  1945.     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  1946.     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  1947. };
  1948. /* copy as much as possible from the sliding window to the output area */
  1949. int inflate_flush(s, z, r)
  1950. inflate_blocks_statef *s;
  1951. z_streamp z;
  1952. int r;
  1953. {
  1954.   uInt n;
  1955.   Bytef *p;
  1956.   Bytef *q;
  1957.   /* local copies of source and destination pointers */
  1958.   p = z->next_out;
  1959.   q = s->read;
  1960.   /* compute number of bytes to copy as far as end of window */
  1961.   n = (uInt)((q <= s->write ? s->write : s->end) - q);
  1962.   if (n > z->avail_out) n = z->avail_out;
  1963.   if (n && r == Z_BUF_ERROR) r = Z_OK;
  1964.   /* update counters */
  1965.   z->avail_out -= n;
  1966.   z->total_out += n;
  1967.   /* update check information */
  1968.   if (s->checkfn != Z_NULL)
  1969.     z->adler = s->check = (*s->checkfn)(s->check, q, n);
  1970.   /* copy as far as end of window */
  1971.   if (p != Z_NULL) {
  1972.     zmemcpy(p, q, n);
  1973.     p += n;
  1974.   }
  1975.   q += n;
  1976.   /* see if more to copy at beginning of window */
  1977.   if (q == s->end)
  1978.   {
  1979.     /* wrap pointers */
  1980.     q = s->window;
  1981.     if (s->write == s->end)
  1982.       s->write = s->window;
  1983.     /* compute bytes to copy */
  1984.     n = (uInt)(s->write - q);
  1985.     if (n > z->avail_out) n = z->avail_out;
  1986.     if (n && r == Z_BUF_ERROR) r = Z_OK;
  1987.     /* update counters */
  1988.     z->avail_out -= n;
  1989.     z->total_out += n;
  1990.     /* update check information */
  1991.     if (s->checkfn != Z_NULL)
  1992.       z->adler = s->check = (*s->checkfn)(s->check, q, n);
  1993.     /* copy */
  1994.     if (p != Z_NULL) {
  1995.       zmemcpy(p, q, n);
  1996.       p += n;
  1997.     }
  1998.     q += n;
  1999.   }
  2000.   /* update pointers */
  2001.   z->next_out = p;
  2002.   s->read = q;
  2003.   /* done */
  2004.   return r;
  2005. }
  2006. /* --- infutil.c */
  2007. /* +++ inffast.c */
  2008. /* inffast.c -- process literals and length/distance pairs fast
  2009.  * Copyright (C) 1995-1996 Mark Adler
  2010.  * For conditions of distribution and use, see copyright notice in zlib.h 
  2011.  */
  2012. /* #include "zutil.h" */
  2013. /* #include "inftrees.h" */
  2014. /* #include "infblock.h" */
  2015. /* #include "infcodes.h" */
  2016. /* #include "infutil.h" */
  2017. /* #include "inffast.h" */
  2018. #ifndef NO_DUMMY_DECL
  2019. struct inflate_codes_state {int dummy;}; /* for buggy compilers */
  2020. #endif
  2021. /* simplify the use of the inflate_huft type with some defines */
  2022. #define base more.Base
  2023. #define next more.Next
  2024. #define exop word.what.Exop
  2025. #define bits word.what.Bits
  2026. /* macros for bit input with no checking and for returning unused bytes */
  2027. #define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}}
  2028. #define UNGRAB {n+=(c=k>>3);p-=c;k&=7;}
  2029. /* Called with number of bytes left to write in window at least 258
  2030.    (the maximum string length) and number of input bytes available
  2031.    at least ten.  The ten bytes are six bytes for the longest length/
  2032.    distance pair plus four bytes for overloading the bit buffer. */
  2033. int inflate_fast(bl, bd, tl, td, s, z)
  2034. uInt bl, bd;
  2035. inflate_huft *tl;
  2036. inflate_huft *td; /* need separate declaration for Borland C++ */
  2037. inflate_blocks_statef *s;
  2038. z_streamp z;
  2039. {
  2040.   inflate_huft *t;      /* temporary pointer */
  2041.   uInt e;               /* extra bits or operation */
  2042.   uLong b;              /* bit buffer */
  2043.   uInt k;               /* bits in bit buffer */
  2044.   Bytef *p;             /* input data pointer */
  2045.   uInt n;               /* bytes available there */
  2046.   Bytef *q;             /* output window write pointer */
  2047.   uInt m;               /* bytes to end of window or read pointer */
  2048.   uInt ml;              /* mask for literal/length tree */
  2049.   uInt md;              /* mask for distance tree */
  2050.   uInt c;               /* bytes to copy */
  2051.   uInt d;               /* distance back to copy from */
  2052.   Bytef *r;             /* copy source pointer */
  2053.   /* load input, output, bit values */
  2054.   LOAD
  2055.   /* initialize masks */
  2056.   ml = inflate_mask[bl];
  2057.   md = inflate_mask[bd];
  2058.   /* do until not enough input or output space for fast loop */
  2059.   do {                          /* assume called with m >= 258 && n >= 10 */
  2060.     /* get literal/length code */
  2061.     GRABBITS(20)                /* max bits for literal/length code */
  2062.     if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
  2063.     {
  2064.       DUMPBITS(t->bits)
  2065.       Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
  2066.                 "inflate:         * literal '%c'n" :
  2067.                 "inflate:         * literal 0x%02xn", t->base));
  2068.       *q++ = (Byte)t->base;
  2069.       m--;
  2070.       continue;
  2071.     }
  2072.     do {
  2073.       DUMPBITS(t->bits)
  2074.       if (e & 16)
  2075.       {
  2076.         /* get extra bits for length */
  2077.         e &= 15;
  2078.         c = t->base + ((uInt)b & inflate_mask[e]);
  2079.         DUMPBITS(e)
  2080.         Tracevv((stderr, "inflate:         * length %un", c));
  2081.         /* decode distance base of block to copy */
  2082.         GRABBITS(15);           /* max bits for distance code */
  2083.         e = (t = td + ((uInt)b & md))->exop;
  2084.         do {
  2085.           DUMPBITS(t->bits)
  2086.           if (e & 16)
  2087.           {
  2088.             /* get extra bits to add to distance base */
  2089.             e &= 15;
  2090.             GRABBITS(e)         /* get extra bits (up to 13) */
  2091.             d = t->base + ((uInt)b & inflate_mask[e]);
  2092.             DUMPBITS(e)
  2093.             Tracevv((stderr, "inflate:         * distance %un", d));
  2094.             /* do the copy */
  2095.             m -= c;
  2096.             if ((uInt)(q - s->window) >= d)     /* offset before dest */
  2097.             {                                   /*  just copy */
  2098.               r = q - d;
  2099.               *q++ = *r++;  c--;        /* minimum count is three, */
  2100.               *q++ = *r++;  c--;        /*  so unroll loop a little */
  2101.             }
  2102.             else                        /* else offset after destination */
  2103.             {
  2104.               e = d - (uInt)(q - s->window); /* bytes from offset to end */
  2105.               r = s->end - e;           /* pointer to offset */
  2106.               if (c > e)                /* if source crosses, */
  2107.               {
  2108.                 c -= e;                 /* copy to end of window */
  2109.                 do {
  2110.                   *q++ = *r++;
  2111.                 } while (--e);
  2112.                 r = s->window;          /* copy rest from start of window */
  2113.               }
  2114.             }
  2115.             do {                        /* copy all or what's left */
  2116.               *q++ = *r++;
  2117.             } while (--c);
  2118.             break;
  2119.           }
  2120.           else if ((e & 64) == 0)
  2121.             e = (t = t->next + ((uInt)b & inflate_mask[e]))->exop;
  2122.           else
  2123.           {
  2124.             z->msg = (char*)"invalid distance code";
  2125.             UNGRAB
  2126.             UPDATE
  2127.             return Z_DATA_ERROR;
  2128.           }
  2129.         } while (1);
  2130.         break;
  2131.       }
  2132.       if ((e & 64) == 0)
  2133.       {
  2134.         if ((e = (t = t->next + ((uInt)b & inflate_mask[e]))->exop) == 0)
  2135.         {
  2136.           DUMPBITS(t->bits)
  2137.           Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
  2138.                     "inflate:         * literal '%c'n" :
  2139.                     "inflate:         * literal 0x%02xn", t->base));
  2140.           *q++ = (Byte)t->base;
  2141.           m--;
  2142.           break;
  2143.         }
  2144.       }
  2145.       else if (e & 32)
  2146.       {
  2147.         Tracevv((stderr, "inflate:         * end of blockn"));
  2148.         UNGRAB
  2149.         UPDATE
  2150.         return Z_STREAM_END;
  2151.       }
  2152.       else
  2153.       {
  2154.         z->msg = (char*)"invalid literal/length code";
  2155.         UNGRAB
  2156.         UPDATE
  2157.         return Z_DATA_ERROR;
  2158.       }
  2159.     } while (1);
  2160.   } while (m >= 258 && n >= 10);
  2161.   /* not enough input or output--restore pointers and return */
  2162.   UNGRAB
  2163.   UPDATE
  2164.   return Z_OK;
  2165. }
  2166. /* --- inffast.c */
  2167. /* +++ zutil.c */
  2168. /* zutil.c -- target dependent utility functions for the compression library
  2169.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  2170.  * For conditions of distribution and use, see copyright notice in zlib.h 
  2171.  */
  2172. /* From: zutil.c,v 1.17 1996/07/24 13:41:12 me Exp $ */
  2173. /* #include "zutil.h" */
  2174. #ifndef NO_DUMMY_DECL
  2175. struct internal_state      {int dummy;}; /* for buggy compilers */
  2176. #endif
  2177. #ifndef STDC
  2178. extern void exit OF((int));
  2179. #endif
  2180. const char *z_errmsg[10] = {
  2181. "need dictionary",     /* Z_NEED_DICT       2  */
  2182. "stream end",          /* Z_STREAM_END      1  */
  2183. "",                    /* Z_OK              0  */
  2184. "file error",          /* Z_ERRNO         (-1) */
  2185. "stream error",        /* Z_STREAM_ERROR  (-2) */
  2186. "data error",          /* Z_DATA_ERROR    (-3) */
  2187. "insufficient memory", /* Z_MEM_ERROR     (-4) */
  2188. "buffer error",        /* Z_BUF_ERROR     (-5) */
  2189. "incompatible version",/* Z_VERSION_ERROR (-6) */
  2190. ""};
  2191. const char *zlibVersion()
  2192. {
  2193.     return ZLIB_VERSION;
  2194. }
  2195. #ifdef DEBUG_ZLIB
  2196. void z_error (m)
  2197.     char *m;
  2198. {
  2199.     fprintf(stderr, "%sn", m);
  2200.     exit(1);
  2201. }
  2202. #endif
  2203. #ifndef HAVE_MEMCPY
  2204. void zmemcpy(dest, source, len)
  2205.     Bytef* dest;
  2206.     Bytef* source;
  2207.     uInt  len;
  2208. {
  2209.     if (len == 0) return;
  2210.     do {
  2211.         *dest++ = *source++; /* ??? to be unrolled */
  2212.     } while (--len != 0);
  2213. }
  2214. int zmemcmp(s1, s2, len)
  2215.     Bytef* s1;
  2216.     Bytef* s2;
  2217.     uInt  len;
  2218. {
  2219.     uInt j;
  2220.     for (j = 0; j < len; j++) {
  2221.         if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
  2222.     }
  2223.     return 0;
  2224. }
  2225. void zmemzero(dest, len)
  2226.     Bytef* dest;
  2227.     uInt  len;
  2228. {
  2229.     if (len == 0) return;
  2230.     do {
  2231.         *dest++ = 0;  /* ??? to be unrolled */
  2232.     } while (--len != 0);
  2233. }
  2234. #endif
  2235. #ifdef __TURBOC__
  2236. #if (defined( __BORLANDC__) || !defined(SMALL_MEDIUM)) && !defined(__32BIT__)
  2237. /* Small and medium model in Turbo C are for now limited to near allocation
  2238.  * with reduced MAX_WBITS and MAX_MEM_LEVEL
  2239.  */
  2240. #  define MY_ZCALLOC
  2241. /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
  2242.  * and farmalloc(64K) returns a pointer with an offset of 8, so we
  2243.  * must fix the pointer. Warning: the pointer must be put back to its
  2244.  * original form in order to free it, use zcfree().
  2245.  */
  2246. #define MAX_PTR 10
  2247. /* 10*64K = 640K */
  2248. local int next_ptr = 0;
  2249. typedef struct ptr_table_s {
  2250.     voidpf org_ptr;
  2251.     voidpf new_ptr;
  2252. } ptr_table;
  2253. local ptr_table table[MAX_PTR];
  2254. /* This table is used to remember the original form of pointers
  2255.  * to large buffers (64K). Such pointers are normalized with a zero offset.
  2256.  * Since MSDOS is not a preemptive multitasking OS, this table is not
  2257.  * protected from concurrent access. This hack doesn't work anyway on
  2258.  * a protected system like OS/2. Use Microsoft C instead.
  2259.  */
  2260. voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
  2261. {
  2262.     voidpf buf = opaque; /* just to make some compilers happy */
  2263.     ulg bsize = (ulg)items*size;
  2264.     /* If we allocate less than 65520 bytes, we assume that farmalloc
  2265.      * will return a usable pointer which doesn't have to be normalized.
  2266.      */
  2267.     if (bsize < 65520L) {
  2268.         buf = farmalloc(bsize);
  2269.         if (*(ush*)&buf != 0) return buf;
  2270.     } else {
  2271.         buf = farmalloc(bsize + 16L);
  2272.     }
  2273.     if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
  2274.     table[next_ptr].org_ptr = buf;
  2275.     /* Normalize the pointer to seg:0 */
  2276.     *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
  2277.     *(ush*)&buf = 0;
  2278.     table[next_ptr++].new_ptr = buf;
  2279.     return buf;
  2280. }
  2281. void  zcfree (voidpf opaque, voidpf ptr)
  2282. {
  2283.     int n;
  2284.     if (*(ush*)&ptr != 0) { /* object < 64K */
  2285.         farfree(ptr);
  2286.         return;
  2287.     }
  2288.     /* Find the original pointer */
  2289.     for (n = 0; n < next_ptr; n++) {
  2290.         if (ptr != table[n].new_ptr) continue;
  2291.         farfree(table[n].org_ptr);
  2292.         while (++n < next_ptr) {
  2293.             table[n-1] = table[n];
  2294.         }
  2295.         next_ptr--;
  2296.         return;
  2297.     }
  2298.     ptr = opaque; /* just to make some compilers happy */
  2299.     Assert(0, "zcfree: ptr not found");
  2300. }
  2301. #endif
  2302. #endif /* __TURBOC__ */
  2303. #if defined(M_I86) && !defined(__32BIT__)
  2304. /* Microsoft C in 16-bit mode */
  2305. #  define MY_ZCALLOC
  2306. #if (!defined(_MSC_VER) || (_MSC_VER < 600))
  2307. #  define _halloc  halloc
  2308. #  define _hfree   hfree
  2309. #endif
  2310. voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
  2311. {
  2312.     if (opaque) opaque = 0; /* to make compiler happy */
  2313.     return _halloc((long)items, size);
  2314. }
  2315. void  zcfree (voidpf opaque, voidpf ptr)
  2316. {
  2317.     if (opaque) opaque = 0; /* to make compiler happy */
  2318.     _hfree(ptr);
  2319. }
  2320. #endif /* MSC */
  2321. #ifndef MY_ZCALLOC /* Any system without a special alloc function */
  2322. #ifndef STDC
  2323. extern voidp  calloc OF((uInt items, uInt size));
  2324. extern void   free   OF((voidpf ptr));
  2325. #endif
  2326. voidpf zcalloc (opaque, items, size)
  2327.     voidpf opaque;
  2328.     unsigned items;
  2329.     unsigned size;
  2330. {
  2331.     if (opaque) items += size - size; /* make compiler happy */
  2332.     return (voidpf)calloc(items, size);
  2333. }
  2334. void  zcfree (opaque, ptr)
  2335.     voidpf opaque;
  2336.     voidpf ptr;
  2337. {
  2338.     free(ptr);
  2339.     if (opaque) return; /* make compiler happy */
  2340. }
  2341. #endif /* MY_ZCALLOC */
  2342. /* --- zutil.c */
  2343. /* +++ adler32.c */
  2344. /* adler32.c -- compute the Adler-32 checksum of a data stream
  2345.  * Copyright (C) 1995-1996 Mark Adler
  2346.  * For conditions of distribution and use, see copyright notice in zlib.h 
  2347.  */
  2348. /* From: adler32.c,v 1.10 1996/05/22 11:52:18 me Exp $ */
  2349. /* #include "zlib.h" */
  2350. #define BASE 65521L /* largest prime smaller than 65536 */
  2351. #define NMAX 5552
  2352. /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
  2353. #define DO1(buf,i)  {s1 += buf[i]; s2 += s1;}
  2354. #define DO2(buf,i)  DO1(buf,i); DO1(buf,i+1);
  2355. #define DO4(buf,i)  DO2(buf,i); DO2(buf,i+2);
  2356. #define DO8(buf,i)  DO4(buf,i); DO4(buf,i+4);
  2357. #define DO16(buf)   DO8(buf,0); DO8(buf,8);
  2358. /* ========================================================================= */
  2359. uLong adler32(adler, buf, len)
  2360.     uLong adler;
  2361.     const Bytef *buf;
  2362.     uInt len;
  2363. {
  2364.     unsigned long s1 = adler & 0xffff;
  2365.     unsigned long s2 = (adler >> 16) & 0xffff;
  2366.     int k;
  2367.     if (buf == Z_NULL) return 1L;
  2368.     while (len > 0) {
  2369.         k = len < NMAX ? len : NMAX;
  2370.         len -= k;
  2371.         while (k >= 16) {
  2372.             DO16(buf);
  2373.     buf += 16;
  2374.             k -= 16;
  2375.         }
  2376.         if (k != 0) do {
  2377.             s1 += *buf++;
  2378.     s2 += s1;
  2379.         } while (--k);
  2380.         s1 %= BASE;
  2381.         s2 %= BASE;
  2382.     }
  2383.     return (s2 << 16) | s1;
  2384. }
  2385. /* --- adler32.c */