infblock.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:12k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* infblock.c -- interpret and process block types to last block
  2.  * Copyright (C) 1995-1996 Mark Adler
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* This file was modified since it was taken from the zlib distribution */
  6. #include "zutil.h"
  7. #include "infblock.h"
  8. #include "inftrees.h"
  9. #include "infcodes.h"
  10. #include "infutil.h"
  11. struct inflate_codes_state {int dummy;}; /* for buggy compilers */
  12. /* Table for deflate from PKZIP's appnote.txt. */
  13. local uInt border[] = { /* Order of the bit length code lengths */
  14.         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
  15. /*
  16.    Notes beyond the 1.93a appnote.txt:
  17.    1. Distance pointers never point before the beginning of the output
  18.       stream.
  19.    2. Distance pointers can point back across blocks, up to 32k away.
  20.    3. There is an implied maximum of 7 bits for the bit length table and
  21.       15 bits for the actual data.
  22.    4. If only one code exists, then it is encoded using one bit.  (Zero
  23.       would be more efficient, but perhaps a little confusing.)  If two
  24.       codes exist, they are coded using one bit each (0 and 1).
  25.    5. There is no way of sending zero distance codes--a dummy must be
  26.       sent if there are none.  (History: a pre 2.0 version of PKZIP would
  27.       store blocks with no distance codes, but this was discovered to be
  28.       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
  29.       zero distance codes, which is sent as one code of zero bits in
  30.       length.
  31.    6. There are up to 286 literal/length codes.  Code 256 represents the
  32.       end-of-block.  Note however that the static length tree defines
  33.       288 codes just to fill out the Huffman codes.  Codes 286 and 287
  34.       cannot be used though, since there is no length base or extra bits
  35.       defined for them.  Similarily, there are up to 30 distance codes.
  36.       However, static trees define 32 codes (all 5 bits) to fill out the
  37.       Huffman codes, but the last two had better not show up in the data.
  38.    7. Unzip can check dynamic Huffman blocks for complete code sets.
  39.       The exception is that a single code would not be complete (see #4).
  40.    8. The five bits following the block type is really the number of
  41.       literal codes sent minus 257.
  42.    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
  43.       (1+6+6).  Therefore, to output three times the length, you output
  44.       three codes (1+1+1), whereas to output four times the same length,
  45.       you only need two codes (1+3).  Hmm.
  46.   10. In the tree reconstruction algorithm, Code = Code + Increment
  47.       only if BitLength(i) is not zero.  (Pretty obvious.)
  48.   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  49.   12. Note: length code 284 can represent 227-258, but length code 285
  50.       really is 258.  The last length deserves its own, short code
  51.       since it gets used a lot in very redundant files.  The length
  52.       258 is special since 258 - 3 (the min match length) is 255.
  53.   13. The literal/length and distance code bit lengths are read as a
  54.       single stream of lengths.  It is possible (and advantageous) for
  55.       a repeat code (16, 17, or 18) to go across the boundary between
  56.       the two sets of lengths.
  57.  */
  58. void inflate_blocks_reset(s, z, c)
  59. inflate_blocks_statef *s;
  60. z_streamp z;
  61. uLongf *c;
  62. {
  63.   if (s->checkfn != Z_NULL)
  64.     *c = s->check;
  65.   if (s->mode == BTREE || s->mode == DTREE)
  66.     ZFREE(z, s->sub.trees.blens);
  67.   if (s->mode == CODES)
  68.   {
  69.     inflate_codes_free(s->sub.decode.codes, z);
  70.     inflate_trees_free(s->sub.decode.td, z);
  71.     inflate_trees_free(s->sub.decode.tl, z);
  72.   }
  73.   s->mode = TYPE;
  74.   s->bitk = 0;
  75.   s->bitb = 0;
  76.   s->read = s->write = s->window;
  77.   if (s->checkfn != Z_NULL)
  78.     z->adler = s->check = (*s->checkfn)(0L, Z_NULL, 0);
  79.   Trace((stderr, "inflate:   blocks resetn"));
  80. }
  81. inflate_blocks_statef *inflate_blocks_new(z, c, w)
  82. z_streamp z;
  83. check_func c;
  84. uInt w;
  85. {
  86.   inflate_blocks_statef *s;
  87.   if ((s = (inflate_blocks_statef *)ZALLOC
  88.        (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
  89.     return s;
  90.   if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
  91.   {
  92.     ZFREE(z, s);
  93.     return Z_NULL;
  94.   }
  95.   s->end = s->window + w;
  96.   s->checkfn = c;
  97.   s->mode = TYPE;
  98.   Trace((stderr, "inflate:   blocks allocatedn"));
  99.   inflate_blocks_reset(s, z, &s->check);
  100.   return s;
  101. }
  102. #ifdef DEBUG
  103.   extern uInt inflate_hufts;
  104. #endif
  105. int inflate_blocks(s, z, r)
  106. inflate_blocks_statef *s;
  107. z_streamp z;
  108. int r;
  109. {
  110.   uInt t;               /* temporary storage */
  111.   uLong b;              /* bit buffer */
  112.   uInt k;               /* bits in bit buffer */
  113.   Bytef *p;             /* input data pointer */
  114.   uInt n;               /* bytes available there */
  115.   Bytef *q;             /* output window write pointer */
  116.   uInt m;               /* bytes to end of window or read pointer */
  117.   /* copy input/output information to locals (UPDATE macro restores) */
  118.   LOAD
  119.   /* process input based on current state */
  120.   while (1) switch (s->mode)
  121.   {
  122.     case TYPE:
  123.       NEEDBITS(3)
  124.       t = (uInt)b & 7;
  125.       s->last = t & 1;
  126.       switch (t >> 1)
  127.       {
  128.         case 0:                         /* stored */
  129.           Trace((stderr, "inflate:     stored block%sn",
  130.                  s->last ? " (last)" : ""));
  131.           DUMPBITS(3)
  132.           t = k & 7;                    /* go to byte boundary */
  133.           DUMPBITS(t)
  134.           s->mode = LENS;               /* get length of stored block */
  135.           break;
  136.         case 1:                         /* fixed */
  137.           Trace((stderr, "inflate:     fixed codes block%sn",
  138.                  s->last ? " (last)" : ""));
  139.           {
  140.             uInt bl, bd;
  141.             inflate_huft *tl, *td;
  142.             inflate_trees_fixed(&bl, &bd, &tl, &td);
  143.             s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
  144.             if (s->sub.decode.codes == Z_NULL)
  145.             {
  146.               r = Z_MEM_ERROR;
  147.               LEAVE
  148.             }
  149.             s->sub.decode.tl = Z_NULL;  /* don't try to free these */
  150.             s->sub.decode.td = Z_NULL;
  151.           }
  152.           DUMPBITS(3)
  153.           s->mode = CODES;
  154.           break;
  155.         case 2:                         /* dynamic */
  156.           Trace((stderr, "inflate:     dynamic codes block%sn",
  157.                  s->last ? " (last)" : ""));
  158.           DUMPBITS(3)
  159.           s->mode = TABLE;
  160.           break;
  161.         case 3:                         /* illegal */
  162.           DUMPBITS(3)
  163.           s->mode = BAD;
  164.           z->msg = (char*)"invalid block type";
  165.           r = Z_DATA_ERROR;
  166.           LEAVE
  167.       }
  168.       break;
  169.     case LENS:
  170.       NEEDBITS(32)
  171.       if ((((~b) >> 16) & 0xffff) != (b & 0xffff))
  172.       {
  173.         s->mode = BAD;
  174.         z->msg = (char*)"invalid stored block lengths";
  175.         r = Z_DATA_ERROR;
  176.         LEAVE
  177.       }
  178.       s->sub.left = (uInt)b & 0xffff;
  179.       b = k = 0;                      /* dump bits */
  180.       Tracev((stderr, "inflate:       stored length %un", s->sub.left));
  181.       s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
  182.       break;
  183.     case STORED:
  184.       if (n == 0)
  185.         LEAVE
  186.       NEEDOUT
  187.       t = s->sub.left;
  188.       if (t > n) t = n;
  189.       if (t > m) t = m;
  190.       zmemcpy(q, p, t);
  191.       p += t;  n -= t;
  192.       q += t;  m -= t;
  193.       if ((s->sub.left -= t) != 0)
  194.         break;
  195.       Tracev((stderr, "inflate:       stored end, %lu total outn",
  196.               z->total_out + (q >= s->read ? q - s->read :
  197.               (s->end - s->read) + (q - s->window))));
  198.       s->mode = s->last ? DRY : TYPE;
  199.       break;
  200.     case TABLE:
  201.       NEEDBITS(14)
  202.       s->sub.trees.table = t = (uInt)b & 0x3fff;
  203. #ifndef PKZIP_BUG_WORKAROUND
  204.       if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
  205.       {
  206.         s->mode = BAD;
  207.         z->msg = (char*)"too many length or distance symbols";
  208.         r = Z_DATA_ERROR;
  209.         LEAVE
  210.       }
  211. #endif
  212.       t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
  213.       if (t < 19)
  214.         t = 19;
  215.       if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
  216.       {
  217.         r = Z_MEM_ERROR;
  218.         LEAVE
  219.       }
  220.       DUMPBITS(14)
  221.       s->sub.trees.index = 0;
  222.       Tracev((stderr, "inflate:       table sizes okn"));
  223.       s->mode = BTREE;
  224.     case BTREE:
  225.       while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
  226.       {
  227.         NEEDBITS(3)
  228.         s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
  229.         DUMPBITS(3)
  230.       }
  231.       while (s->sub.trees.index < 19)
  232.         s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
  233.       s->sub.trees.bb = 7;
  234.       t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
  235.                              &s->sub.trees.tb, z);
  236.       if (t != Z_OK)
  237.       {
  238. ZFREE(z, s->sub.trees.blens);
  239.         r = t;
  240.         if (r == Z_DATA_ERROR)
  241.           s->mode = BAD;
  242.         LEAVE
  243.       }
  244.       s->sub.trees.index = 0;
  245.       Tracev((stderr, "inflate:       bits tree okn"));
  246.       s->mode = DTREE;
  247.     case DTREE:
  248.       while (t = s->sub.trees.table,
  249.              s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f))
  250.       {
  251.         inflate_huft *h;
  252.         uInt i, j, c;
  253.         t = s->sub.trees.bb;
  254.         NEEDBITS(t)
  255.         h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
  256.         t = h->word.what.Bits;
  257.         c = h->more.Base;
  258.         if (c < 16)
  259.         {
  260.           DUMPBITS(t)
  261.           s->sub.trees.blens[s->sub.trees.index++] = c;
  262.         }
  263.         else /* c == 16..18 */
  264.         {
  265.           i = c == 18 ? 7 : c - 14;
  266.           j = c == 18 ? 11 : 3;
  267.           NEEDBITS(t + i)
  268.           DUMPBITS(t)
  269.           j += (uInt)b & inflate_mask[i];
  270.           DUMPBITS(i)
  271.           i = s->sub.trees.index;
  272.           t = s->sub.trees.table;
  273.           if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) ||
  274.               (c == 16 && i < 1))
  275.           {
  276.     inflate_trees_free(s->sub.trees.tb, z);
  277.     ZFREE(z, s->sub.trees.blens);
  278.             s->mode = BAD;
  279.             z->msg = (char*)"invalid bit length repeat";
  280.             r = Z_DATA_ERROR;
  281.             LEAVE
  282.           }
  283.           c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
  284.           do {
  285.             s->sub.trees.blens[i++] = c;
  286.           } while (--j);
  287.           s->sub.trees.index = i;
  288.         }
  289.       }
  290.       inflate_trees_free(s->sub.trees.tb, z);
  291.       s->sub.trees.tb = Z_NULL;
  292.       {
  293.         uInt bl, bd;
  294.         inflate_huft *tl, *td;
  295.         inflate_codes_statef *c;
  296.         bl = 9;         /* must be <= 9 for lookahead assumptions */
  297.         bd = 6;         /* must be <= 9 for lookahead assumptions */
  298.         t = s->sub.trees.table;
  299. #ifdef DEBUG
  300.       inflate_hufts = 0;
  301. #endif
  302.         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
  303.                                   s->sub.trees.blens, &bl, &bd, &tl, &td, z);
  304. ZFREE(z, s->sub.trees.blens);
  305.         if (t != Z_OK)
  306.         {
  307.           if (t == (uInt)Z_DATA_ERROR)
  308.             s->mode = BAD;
  309.           r = t;
  310.           LEAVE
  311.         }
  312.         Tracev((stderr, "inflate:       trees ok, %d * %d bytes usedn",
  313.               inflate_hufts, sizeof(inflate_huft)));
  314.         if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
  315.         {
  316.           inflate_trees_free(td, z);
  317.           inflate_trees_free(tl, z);
  318.           r = Z_MEM_ERROR;
  319.           LEAVE
  320.         }
  321.         s->sub.decode.codes = c;
  322.         s->sub.decode.tl = tl;
  323.         s->sub.decode.td = td;
  324.       }
  325.       s->mode = CODES;
  326.     case CODES:
  327.       UPDATE
  328.       if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
  329.         return inflate_flush(s, z, r);
  330.       r = Z_OK;
  331.       inflate_codes_free(s->sub.decode.codes, z);
  332.       inflate_trees_free(s->sub.decode.td, z);
  333.       inflate_trees_free(s->sub.decode.tl, z);
  334.       LOAD
  335.       Tracev((stderr, "inflate:       codes end, %lu total outn",
  336.               z->total_out + (q >= s->read ? q - s->read :
  337.               (s->end - s->read) + (q - s->window))));
  338.       if (!s->last)
  339.       {
  340.         s->mode = TYPE;
  341.         break;
  342.       }
  343.       if (k > 7)              /* return unused byte, if any */
  344.       {
  345.         Assert(k < 16, "inflate_codes grabbed too many bytes")
  346.         k -= 8;
  347.         n++;
  348.         p--;                    /* can always return one */
  349.       }
  350.       s->mode = DRY;
  351.     case DRY:
  352.       FLUSH
  353.       if (s->read != s->write)
  354.         LEAVE
  355.       s->mode = DONE;
  356.     case DONE:
  357.       r = Z_STREAM_END;
  358.       LEAVE
  359.     case BAD:
  360.       r = Z_DATA_ERROR;
  361.       LEAVE
  362.     default:
  363.       r = Z_STREAM_ERROR;
  364.       LEAVE
  365.   }
  366. }
  367. int inflate_blocks_free(s, z, c)
  368. inflate_blocks_statef *s;
  369. z_streamp z;
  370. uLongf *c;
  371. {
  372.   inflate_blocks_reset(s, z, c);
  373.   ZFREE(z, s->window);
  374.   ZFREE(z, s);
  375.   Trace((stderr, "inflate:   blocks freedn"));
  376.   return Z_OK;
  377. }
  378. void inflate_set_dictionary(s, d, n)
  379. inflate_blocks_statef *s;
  380. const Bytef *d;
  381. uInt  n;
  382. {
  383.   zmemcpy((charf *)s->window, d, n);
  384.   s->read = s->write = s->window + n;
  385. }