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

嵌入式Linux

开发平台:

Unix_Linux

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