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

CA认证

开发平台:

WINDOWS

  1. /* inflate.c -- zlib interface to inflate modules
  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. struct inflate_blocks_state {int dummy;}; /* for buggy compilers */
  9. /* inflate private state */
  10. struct internal_state {
  11.   /* mode */
  12.   enum {
  13.       METHOD,   /* waiting for method byte */
  14.       FLAG,     /* waiting for flag byte */
  15.       DICT4,    /* four dictionary check bytes to go */
  16.       DICT3,    /* three dictionary check bytes to go */
  17.       DICT2,    /* two dictionary check bytes to go */
  18.       DICT1,    /* one dictionary check byte to go */
  19.       DICT0,    /* waiting for inflateSetDictionary */
  20.       BLOCKS,   /* decompressing blocks */
  21.       CHECK4,   /* four check bytes to go */
  22.       CHECK3,   /* three check bytes to go */
  23.       CHECK2,   /* two check bytes to go */
  24.       CHECK1,   /* one check byte to go */
  25.       DONE,     /* finished check, done */
  26.       BAD}      /* got an error--stay here */
  27.     mode;               /* current inflate mode */
  28.   /* mode dependent information */
  29.   union {
  30.     uInt method;        /* if FLAGS, method byte */
  31.     struct {
  32.       uLong was;                /* computed check value */
  33.       uLong need;               /* stream check value */
  34.     } check;            /* if CHECK, check values to compare */
  35.     uInt marker;        /* if BAD, inflateSync's marker bytes count */
  36.   } sub;        /* submode */
  37.   /* mode independent information */
  38.   int  nowrap;          /* flag for no wrapper */
  39.   uInt wbits;           /* log2(window size)  (8..15, defaults to 15) */
  40.   inflate_blocks_statef 
  41.     *blocks;            /* current inflate_blocks state */
  42. };
  43. PR_PUBLIC_API(int) inflateReset(z)
  44. z_streamp z;
  45. {
  46.   uLong c;
  47.   if (z == Z_NULL || z->state == Z_NULL)
  48.     return Z_STREAM_ERROR;
  49.   z->total_in = z->total_out = 0;
  50.   z->msg = Z_NULL;
  51.   z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
  52.   inflate_blocks_reset(z->state->blocks, z, &c);
  53.   Trace((stderr, "inflate: resetn"));
  54.   return Z_OK;
  55. }
  56. PR_PUBLIC_API(int) inflateEnd(z)
  57. z_streamp z;
  58. {
  59.   uLong c;
  60.   if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
  61.     return Z_STREAM_ERROR;
  62.   if (z->state->blocks != Z_NULL)
  63.     inflate_blocks_free(z->state->blocks, z, &c);
  64.   ZFREE(z, z->state);
  65.   z->state = Z_NULL;
  66.   Trace((stderr, "inflate: endn"));
  67.   return Z_OK;
  68. }
  69. PR_PUBLIC_API(int) inflateInit2_(z, w, version, stream_size)
  70. z_streamp z;
  71. int w;
  72. const char *version;
  73. int stream_size;
  74. {
  75.   if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
  76.       stream_size != sizeof(z_stream))
  77.       return Z_VERSION_ERROR;
  78.   /* initialize state */
  79.   if (z == Z_NULL)
  80.     return Z_STREAM_ERROR;
  81.   z->msg = Z_NULL;
  82.   if (z->zalloc == Z_NULL)
  83.   {
  84.     z->zalloc = zcalloc;
  85.     z->opaque = (voidpf)0;
  86.   }
  87.   if (z->zfree == Z_NULL) z->zfree = zcfree;
  88.   if ((z->state = (struct internal_state FAR *)
  89.        ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
  90.     return Z_MEM_ERROR;
  91.   z->state->blocks = Z_NULL;
  92.   /* handle undocumented nowrap option (no zlib header or check) */
  93.   z->state->nowrap = 0;
  94.   if (w < 0)
  95.   {
  96.     w = - w;
  97.     z->state->nowrap = 1;
  98.   }
  99.   /* set window size */
  100.   if (w < 8 || w > 15)
  101.   {
  102.     inflateEnd(z);
  103.     return Z_STREAM_ERROR;
  104.   }
  105.   z->state->wbits = (uInt)w;
  106.   /* create inflate_blocks state */
  107.   if ((z->state->blocks =
  108.       inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
  109.       == Z_NULL)
  110.   {
  111.     inflateEnd(z);
  112.     return Z_MEM_ERROR;
  113.   }
  114.   Trace((stderr, "inflate: allocatedn"));
  115.   /* reset state */
  116.   inflateReset(z);
  117.   return Z_OK;
  118. }
  119. PR_PUBLIC_API(int) inflateInit_(z, version, stream_size)
  120. z_streamp z;
  121. const char *version;
  122. int stream_size;
  123. {
  124.   return inflateInit2_(z, DEF_WBITS, version, stream_size);
  125. }
  126. #define NEEDBYTE {if(z->avail_in==0)return r;r=Z_OK;}
  127. #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
  128. PR_PUBLIC_API(int) inflate(z, f)
  129. z_streamp z;
  130. int f;
  131. {
  132.   int r;
  133.   uInt b;
  134.   if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL || f < 0)
  135.     return Z_STREAM_ERROR;
  136.   r = Z_BUF_ERROR;
  137.   while (1) switch (z->state->mode)
  138.   {
  139.     case METHOD:
  140.       NEEDBYTE
  141.       if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
  142.       {
  143.         z->state->mode = BAD;
  144.         z->msg = (char*)"unknown compression method";
  145.         z->state->sub.marker = 5;       /* can't try inflateSync */
  146.         break;
  147.       }
  148.       if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
  149.       {
  150.         z->state->mode = BAD;
  151.         z->msg = (char*)"invalid window size";
  152.         z->state->sub.marker = 5;       /* can't try inflateSync */
  153.         break;
  154.       }
  155.       z->state->mode = FLAG;
  156.     case FLAG:
  157.       NEEDBYTE
  158.       b = NEXTBYTE;
  159.       if (((z->state->sub.method << 8) + b) % 31)
  160.       {
  161.         z->state->mode = BAD;
  162.         z->msg = (char*)"incorrect header check";
  163.         z->state->sub.marker = 5;       /* can't try inflateSync */
  164.         break;
  165.       }
  166.       Trace((stderr, "inflate: zlib header okn"));
  167.       if (!(b & PRESET_DICT))
  168.       {
  169.         z->state->mode = BLOCKS;
  170. break;
  171.       }
  172.       z->state->mode = DICT4;
  173.     case DICT4:
  174.       NEEDBYTE
  175.       z->state->sub.check.need = (uLong)NEXTBYTE << 24;
  176.       z->state->mode = DICT3;
  177.     case DICT3:
  178.       NEEDBYTE
  179.       z->state->sub.check.need += (uLong)NEXTBYTE << 16;
  180.       z->state->mode = DICT2;
  181.     case DICT2:
  182.       NEEDBYTE
  183.       z->state->sub.check.need += (uLong)NEXTBYTE << 8;
  184.       z->state->mode = DICT1;
  185.     case DICT1:
  186.       NEEDBYTE
  187.       z->state->sub.check.need += (uLong)NEXTBYTE;
  188.       z->adler = z->state->sub.check.need;
  189.       z->state->mode = DICT0;
  190.       return Z_NEED_DICT;
  191.     case DICT0:
  192.       z->state->mode = BAD;
  193.       z->msg = (char*)"need dictionary";
  194.       z->state->sub.marker = 0;       /* can try inflateSync */
  195.       return Z_STREAM_ERROR;
  196.     case BLOCKS:
  197.       r = inflate_blocks(z->state->blocks, z, r);
  198.       if (r == Z_DATA_ERROR)
  199.       {
  200.         z->state->mode = BAD;
  201.         z->state->sub.marker = 0;       /* can try inflateSync */
  202.         break;
  203.       }
  204.       if (r != Z_STREAM_END)
  205.         return r;
  206.       r = Z_OK;
  207.       inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
  208.       if (z->state->nowrap)
  209.       {
  210.         z->state->mode = DONE;
  211.         break;
  212.       }
  213.       z->state->mode = CHECK4;
  214.     case CHECK4:
  215.       NEEDBYTE
  216.       z->state->sub.check.need = (uLong)NEXTBYTE << 24;
  217.       z->state->mode = CHECK3;
  218.     case CHECK3:
  219.       NEEDBYTE
  220.       z->state->sub.check.need += (uLong)NEXTBYTE << 16;
  221.       z->state->mode = CHECK2;
  222.     case CHECK2:
  223.       NEEDBYTE
  224.       z->state->sub.check.need += (uLong)NEXTBYTE << 8;
  225.       z->state->mode = CHECK1;
  226.     case CHECK1:
  227.       NEEDBYTE
  228.       z->state->sub.check.need += (uLong)NEXTBYTE;
  229.       if (z->state->sub.check.was != z->state->sub.check.need)
  230.       {
  231.         z->state->mode = BAD;
  232.         z->msg = (char*)"incorrect data check";
  233.         z->state->sub.marker = 5;       /* can't try inflateSync */
  234.         break;
  235.       }
  236.       Trace((stderr, "inflate: zlib check okn"));
  237.       z->state->mode = DONE;
  238.     case DONE:
  239.       return Z_STREAM_END;
  240.     case BAD:
  241.       return Z_DATA_ERROR;
  242.     default:
  243.       return Z_STREAM_ERROR;
  244.   }
  245. }
  246. PR_PUBLIC_API(int) inflateSetDictionary(z, dictionary, dictLength)
  247. z_streamp z;
  248. const Bytef *dictionary;
  249. uInt  dictLength;
  250. {
  251.   uInt length = dictLength;
  252.   if (z == Z_NULL || z->state == Z_NULL || z->state->mode != DICT0)
  253.     return Z_STREAM_ERROR;
  254.   if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
  255.   z->adler = 1L;
  256.   if (length >= ((uInt)1<<z->state->wbits))
  257.   {
  258.     length = (1<<z->state->wbits)-1;
  259.     dictionary += dictLength - length;
  260.   }
  261.   inflate_set_dictionary(z->state->blocks, dictionary, length);
  262.   z->state->mode = BLOCKS;
  263.   return Z_OK;
  264. }
  265. PR_PUBLIC_API(int) inflateSync(z)
  266. z_streamp z;
  267. {
  268.   uInt n;       /* number of bytes to look at */
  269.   Bytef *p;     /* pointer to bytes */
  270.   uInt m;       /* number of marker bytes found in a row */
  271.   uLong r, w;   /* temporaries to save total_in and total_out */
  272.   /* set up */
  273.   if (z == Z_NULL || z->state == Z_NULL)
  274.     return Z_STREAM_ERROR;
  275.   if (z->state->mode != BAD)
  276.   {
  277.     z->state->mode = BAD;
  278.     z->state->sub.marker = 0;
  279.   }
  280.   if ((n = z->avail_in) == 0)
  281.     return Z_BUF_ERROR;
  282.   p = z->next_in;
  283.   m = z->state->sub.marker;
  284.   /* search */
  285.   while (n && m < 4)
  286.   {
  287.     if (*p == (Byte)(m < 2 ? 0 : 0xff))
  288.       m++;
  289.     else if (*p)
  290.       m = 0;
  291.     else
  292.       m = 4 - m;
  293.     p++, n--;
  294.   }
  295.   /* restore */
  296.   z->total_in += p - z->next_in;
  297.   z->next_in = p;
  298.   z->avail_in = n;
  299.   z->state->sub.marker = m;
  300.   /* return no joy or set up to restart on a new block */
  301.   if (m != 4)
  302.     return Z_DATA_ERROR;
  303.   r = z->total_in;  w = z->total_out;
  304.   inflateReset(z);
  305.   z->total_in = r;  z->total_out = w;
  306.   z->state->mode = BLOCKS;
  307.   return Z_OK;
  308. }