inflate.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:10k
源码类别:

生物技术

开发平台:

C/C++

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