Skip to content

Commit

Permalink
zlib 1.2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Sep 10, 2011
1 parent 85e7d7d commit 086e982
Show file tree
Hide file tree
Showing 20 changed files with 335 additions and 92 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,15 @@


ChangeLog file for zlib ChangeLog file for zlib
Changes in 1.2.0.4 (10 August 2003)
- Minor FAQ updates
- Be more strict when checking inflateInit2's windowBits parameter
- Change NO_GUNZIP compile option to NO_GZIP to cover deflate as well
- Add gzip wrapper option to deflateInit2 using windowBits
- Add updated QNX rule in configure and qnx directory [Bonnefoy]
- Make inflate distance-too-far checks more rigorous
- Clean up FAR usage in inflate
- Add casting to sizeof() in gzio.c and minigzip.c

Changes in 1.2.0.3 (19 July 2003) Changes in 1.2.0.3 (19 July 2003)
- Fix silly error in gzungetc() implementation [Vollant] - Fix silly error in gzungetc() implementation [Vollant]
- Update contrib/minizip and contrib/vstudio [Vollant] - Update contrib/minizip and contrib/vstudio [Vollant]
Expand Down
14 changes: 11 additions & 3 deletions FAQ
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -122,8 +122,16 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html


18. Well that's nice, but how do I make a gzip file in memory? 18. Well that's nice, but how do I make a gzip file in memory?


Read RFC 1952 for the gzip header and trailer format, and roll your own You can request that deflate write the gzip format instead of the zlib
gzip formatted data using raw deflate and crc32(). format using deflateInit2(). You can also request that inflate decode
the gzip format using inflateInit2(). Read zlib.h for more details.

Note that you cannot specify special gzip header contents (e.g. a file
name or modification date), nor will inflate tell you what was in the
gzip header. If you need to customize the header or see what's in it,
you can use the raw deflate and inflate operations and the crc32()
function and roll your own gzip encoding and decoding. Read the gzip
RFC 1952 for details of the header and trailer format.


19. Is zlib thread-safe? 19. Is zlib thread-safe?


Expand Down Expand Up @@ -253,7 +261,7 @@ The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html
32. Is there a Java version of zlib? 32. Is there a Java version of zlib?


Probably what you want is to use zlib in Java. zlib is already included Probably what you want is to use zlib in Java. zlib is already included
as part of the Java SDK in the java.util.zip class. If you really want as part of the Java SDK in the java.util.zip package. If you really want
a version of zlib written in the Java language, look on the zlib home a version of zlib written in the Java language, look on the zlib home
page for links: http://www.zlib.org/ page for links: http://www.zlib.org/


Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ LDFLAGS=libz.a
LDSHARED=$(CC) LDSHARED=$(CC)
CPP=$(CC) -E CPP=$(CC) -E


VER=1.2.0.3 VER=1.2.0.4
LIBS=libz.a LIBS=libz.a
SHAREDLIB=libz.so SHAREDLIB=libz.so


Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ LDFLAGS=libz.a
LDSHARED=$(CC) LDSHARED=$(CC)
CPP=$(CC) -E CPP=$(CC) -E


VER=1.2.0.3 VER=1.2.0.4
LIBS=libz.a LIBS=libz.a
SHAREDLIB=libz.so SHAREDLIB=libz.so


Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
ZLIB DATA COMPRESSION LIBRARY ZLIB DATA COMPRESSION LIBRARY


zlib 1.2.0.3 is a general purpose data compression library. All the code is zlib 1.2.0.4 is a general purpose data compression library. All the code is
thread safe. The data format used by the zlib library is described by RFCs thread safe. The data format used by the zlib library is described by RFCs
(Request for Comments) 1950 to 1952 in the files (Request for Comments) 1950 to 1952 in the files
http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
Expand Down Expand Up @@ -34,7 +34,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
issue of Dr. Dobb's Journal; a copy of the article is available in issue of Dr. Dobb's Journal; a copy of the article is available in
http://dogma.net/markn/articles/zlibtool/zlibtool.htm http://dogma.net/markn/articles/zlibtool/zlibtool.htm


The changes made in version 1.2.0.3 are documented in the file ChangeLog. The changes made in version 1.2.0.4 are documented in the file ChangeLog.


Unsupported third party contributions are provided in directory "contrib". Unsupported third party contributions are provided in directory "contrib".


Expand Down
2 changes: 2 additions & 0 deletions configure
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then
CFLAGS="$cflags" CFLAGS="$cflags"
case `(uname -s || echo unknown) 2>/dev/null` in case `(uname -s || echo unknown) 2>/dev/null` in
Linux | linux) LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1"};; Linux | linux) LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1"};;
QNX*) #This is for QNX6. I suppose that the QNX rule below is for QNX2,QNX4 (alain.bonnefoy@icbt.com)
LDSHARED=${LDSHARED-"$cc -shared -Wl,-hlibz.so.1"};;
HP-UX*) LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"} HP-UX*) LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"}
shared_ext='.sl' shared_ext='.sl'
SHAREDLIB='libz.sl';; SHAREDLIB='libz.sl';;
Expand Down
2 changes: 1 addition & 1 deletion crc32.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# endif /* !DYNAMIC_CRC_TABLE */ # endif /* !DYNAMIC_CRC_TABLE */
#endif /* MAKECRCH */ #endif /* MAKECRCH */


#include "zutil.h" #include "zutil.h" /* for STDC and FAR definitions */


#define local static #define local static


Expand Down
147 changes: 99 additions & 48 deletions deflate.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
#include "deflate.h" #include "deflate.h"


const char deflate_copyright[] = const char deflate_copyright[] =
" deflate 1.2.0.3 Copyright 1995-2003 Jean-loup Gailly "; " deflate 1.2.0.4 Copyright 1995-2003 Jean-loup Gailly ";
/* /*
If you use the zlib library in a product, an acknowledgment is welcome If you use the zlib library in a product, an acknowledgment is welcome
in the documentation of your product. If for some reason you cannot in the documentation of your product. If for some reason you cannot
Expand Down Expand Up @@ -132,12 +132,12 @@ typedef struct config_s {
local const config configuration_table[2] = { local const config configuration_table[2] = {
/* good lazy nice chain */ /* good lazy nice chain */
/* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */ /* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */
/* 1 */ {4, 4, 8, 4, deflate_fast}}; /* maximum speed, no lazy matches */ /* 1 */ {4, 4, 8, 4, deflate_fast}}; /* max speed, no lazy matches */
#else #else
local const config configuration_table[10] = { local const config configuration_table[10] = {
/* good lazy nice chain */ /* good lazy nice chain */
/* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */ /* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */
/* 1 */ {4, 4, 8, 4, deflate_fast}, /* maximum speed, no lazy matches */ /* 1 */ {4, 4, 8, 4, deflate_fast}, /* max speed, no lazy matches */
/* 2 */ {4, 5, 16, 8, deflate_fast}, /* 2 */ {4, 5, 16, 8, deflate_fast},
/* 3 */ {4, 6, 32, 32, deflate_fast}, /* 3 */ {4, 6, 32, 32, deflate_fast},


Expand All @@ -146,7 +146,7 @@ local const config configuration_table[10] = {
/* 6 */ {8, 16, 128, 128, deflate_slow}, /* 6 */ {8, 16, 128, 128, deflate_slow},
/* 7 */ {8, 32, 128, 256, deflate_slow}, /* 7 */ {8, 32, 128, 256, deflate_slow},
/* 8 */ {32, 128, 258, 1024, deflate_slow}, /* 8 */ {32, 128, 258, 1024, deflate_slow},
/* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* maximum compression */ /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */
#endif #endif


/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
Expand Down Expand Up @@ -225,7 +225,7 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
int stream_size; int stream_size;
{ {
deflate_state *s; deflate_state *s;
int noheader = 0; int wrap = 1;
static const char my_version[] = ZLIB_VERSION; static const char my_version[] = ZLIB_VERSION;


ushf *overlay; ushf *overlay;
Expand All @@ -252,10 +252,16 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
if (level == Z_DEFAULT_COMPRESSION) level = 6; if (level == Z_DEFAULT_COMPRESSION) level = 6;
#endif #endif


if (windowBits < 0) { /* undocumented feature: suppress zlib header */ if (windowBits < 0) { /* suppress zlib wrapper */
noheader = 1; wrap = 0;
windowBits = -windowBits; windowBits = -windowBits;
} }
#ifdef GZIP
else if (windowBits > 15) {
wrap = 2; /* write gzip wrapper instead */
windowBits -= 16;
}
#endif
if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED || if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
strategy < 0 || strategy > Z_RLE) { strategy < 0 || strategy > Z_RLE) {
Expand All @@ -267,7 +273,7 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
strm->state = (struct internal_state FAR *)s; strm->state = (struct internal_state FAR *)s;
s->strm = strm; s->strm = strm;


s->noheader = noheader; s->wrap = wrap;
s->w_bits = windowBits; s->w_bits = windowBits;
s->w_size = 1 << s->w_bits; s->w_size = 1 << s->w_bits;
s->w_mask = s->w_size - 1; s->w_mask = s->w_size - 1;
Expand Down Expand Up @@ -316,11 +322,12 @@ int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
IPos hash_head = 0; IPos hash_head = 0;


if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL || if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
(!strm->state->noheader && strm->state->status != INIT_STATE)) strm->state->wrap == 2 ||
(strm->state->wrap == 1 && strm->state->status != INIT_STATE))
return Z_STREAM_ERROR; return Z_STREAM_ERROR;


s = strm->state; s = strm->state;
if (!s->noheader) if (s->wrap)
strm->adler = adler32(strm->adler, dictionary, dictLength); strm->adler = adler32(strm->adler, dictionary, dictLength);


if (length < MIN_MATCH) return Z_OK; if (length < MIN_MATCH) return Z_OK;
Expand Down Expand Up @@ -364,11 +371,15 @@ int ZEXPORT deflateReset (strm)
s->pending = 0; s->pending = 0;
s->pending_out = s->pending_buf; s->pending_out = s->pending_buf;


if (s->noheader < 0) { if (s->wrap < 0) {
s->noheader = 0; /* was set to -1 by deflate(..., Z_FINISH); */ s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
} }
s->status = s->noheader ? BUSY_STATE : INIT_STATE; s->status = s->wrap ? INIT_STATE : BUSY_STATE;
strm->adler = 1; strm->adler =
#ifdef GZIP
s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
#endif
adler32(0L, Z_NULL, 0);
s->last_flush = Z_NO_FLUSH; s->last_flush = Z_NO_FLUSH;


_tr_init(s); _tr_init(s);
Expand Down Expand Up @@ -428,7 +439,7 @@ int ZEXPORT deflateParams(strm, level, strategy)
* can emit on compressed data for some combinations of the parameters. * can emit on compressed data for some combinations of the parameters.
* *
* This function could be more sophisticated to provide closer upper bounds * This function could be more sophisticated to provide closer upper bounds
* for every combination of windowBits and memLevel, as well as noheader. * for every combination of windowBits and memLevel, as well as wrap.
* But even the conservative upper bound of about 14% expansion does not * But even the conservative upper bound of about 14% expansion does not
* seem onerous for output buffer allocation. * seem onerous for output buffer allocation.
*/ */
Expand Down Expand Up @@ -519,33 +530,53 @@ int ZEXPORT deflate (strm, flush)
old_flush = s->last_flush; old_flush = s->last_flush;
s->last_flush = flush; s->last_flush = flush;


/* Write the zlib header */ /* Write the header */
if (s->status == INIT_STATE) { if (s->status == INIT_STATE) {

#ifdef GZIP
uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; if (s->wrap == 2) {
uInt level_flags; put_byte(s, 31);

put_byte(s, 139);
if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2) put_byte(s, 8);
level_flags = 0; put_byte(s, 0);
else if (s->level < 6) put_byte(s, 0);
level_flags = 1; put_byte(s, 0);
else if (s->level == 6) put_byte(s, 0);
level_flags = 2; put_byte(s, 0);
put_byte(s, s->level == 9 ? 2 :
(s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
4 : 0));
put_byte(s, 255);
s->status = BUSY_STATE;
strm->adler = crc32(0L, Z_NULL, 0);
}
else else
level_flags = 3; #endif
header |= (level_flags << 6); {
if (s->strstart != 0) header |= PRESET_DICT; uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
header += 31 - (header % 31); uInt level_flags;


s->status = BUSY_STATE; if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
putShortMSB(s, header); level_flags = 0;

else if (s->level < 6)
/* Save the adler32 of the preset dictionary: */ level_flags = 1;
if (s->strstart != 0) { else if (s->level == 6)
putShortMSB(s, (uInt)(strm->adler >> 16)); level_flags = 2;
putShortMSB(s, (uInt)(strm->adler & 0xffff)); else
level_flags = 3;
header |= (level_flags << 6);
if (s->strstart != 0) header |= PRESET_DICT;
header += 31 - (header % 31);

s->status = BUSY_STATE;
putShortMSB(s, header);

/* Save the adler32 of the preset dictionary: */
if (s->strstart != 0) {
putShortMSB(s, (uInt)(strm->adler >> 16));
putShortMSB(s, (uInt)(strm->adler & 0xffff));
}
strm->adler = adler32(0L, Z_NULL, 0);
} }
strm->adler = 1L;
} }


/* Flush as much pending output as possible */ /* Flush as much pending output as possible */
Expand Down Expand Up @@ -622,16 +653,31 @@ int ZEXPORT deflate (strm, flush)
Assert(strm->avail_out > 0, "bug2"); Assert(strm->avail_out > 0, "bug2");


if (flush != Z_FINISH) return Z_OK; if (flush != Z_FINISH) return Z_OK;
if (s->noheader) return Z_STREAM_END; if (s->wrap <= 0) return Z_STREAM_END;


/* Write the zlib trailer (adler32) */ /* Write the trailer */
putShortMSB(s, (uInt)(strm->adler >> 16)); #ifdef GZIP
putShortMSB(s, (uInt)(strm->adler & 0xffff)); if (s->wrap == 2) {
put_byte(s, (Byte)(strm->adler & 0xff));
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
put_byte(s, (Byte)(strm->total_in & 0xff));
put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
}
else
#endif
{
putShortMSB(s, (uInt)(strm->adler >> 16));
putShortMSB(s, (uInt)(strm->adler & 0xffff));
}
flush_pending(strm); flush_pending(strm);
/* If avail_out is zero, the application will call deflate again /* If avail_out is zero, the application will call deflate again
* to flush the rest. * to flush the rest.
*/ */
s->noheader = -1; /* write the trailer only once! */ if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */
return s->pending != 0 ? Z_OK : Z_STREAM_END; return s->pending != 0 ? Z_OK : Z_STREAM_END;
} }


Expand Down Expand Up @@ -740,9 +786,14 @@ local int read_buf(strm, buf, size)


strm->avail_in -= len; strm->avail_in -= len;


if (!strm->state->noheader) { if (strm->state->wrap == 1) {
strm->adler = adler32(strm->adler, strm->next_in, len); strm->adler = adler32(strm->adler, strm->next_in, len);
} }
#ifdef GZIP
else if (strm->state->wrap == 2) {
strm->adler = crc32(strm->adler, strm->next_in, len);
}
#endif
zmemcpy(buf, strm->next_in, len); zmemcpy(buf, strm->next_in, len);
strm->next_in += len; strm->next_in += len;
strm->total_in += len; strm->total_in += len;
Expand Down Expand Up @@ -1044,7 +1095,7 @@ local void fill_window(s)


} else if (more == (unsigned)(-1)) { } else if (more == (unsigned)(-1)) {
/* Very unlikely, but possible on 16 bit machine if /* Very unlikely, but possible on 16 bit machine if
* strstart == 0 && lookahead == 1 (input done one byte at time) * strstart == 0 && lookahead == 1 (input done a byte at time)
*/ */
more--; more--;
} }
Expand Down Expand Up @@ -1271,7 +1322,7 @@ local block_state deflate_fast(s, flush)
#ifndef FASTEST #ifndef FASTEST
if (s->match_length <= s->max_insert_length && if (s->match_length <= s->max_insert_length &&
s->lookahead >= MIN_MATCH) { s->lookahead >= MIN_MATCH) {
s->match_length--; /* string at strstart already in hash table */ s->match_length--; /* string at strstart already in table */
do { do {
s->strstart++; s->strstart++;
INSERT_STRING(s, s->strstart, hash_head); INSERT_STRING(s, s->strstart, hash_head);
Expand Down
10 changes: 9 additions & 1 deletion deflate.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@


#include "zutil.h" #include "zutil.h"


/* define NO_GZIP when compiling if you want to disable gzip header and
trailer creation by deflate(). NO_GZIP would be used to avoid linking in
the crc code when it is not needed. For shared libraries, gzip encoding
should be left enabled. */
#ifndef NO_GZIP
# define GZIP
#endif

/* =========================================================================== /* ===========================================================================
* Internal compression state. * Internal compression state.
*/ */
Expand Down Expand Up @@ -86,7 +94,7 @@ typedef struct internal_state {
ulg pending_buf_size; /* size of pending_buf */ ulg pending_buf_size; /* size of pending_buf */
Bytef *pending_out; /* next pending byte to output to the stream */ Bytef *pending_out; /* next pending byte to output to the stream */
int pending; /* nb of bytes in the pending buffer */ int pending; /* nb of bytes in the pending buffer */
int noheader; /* suppress zlib header and adler32 */ int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
Byte data_type; /* UNKNOWN, BINARY or ASCII */ Byte data_type; /* UNKNOWN, BINARY or ASCII */
Byte method; /* STORED (for zip only) or DEFLATED */ Byte method; /* STORED (for zip only) or DEFLATED */
int last_flush; /* value of flush param for previous deflate call */ int last_flush; /* value of flush param for previous deflate call */
Expand Down
2 changes: 1 addition & 1 deletion gzio.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ int ZEXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...)
va_end(va); va_end(va);
# endif # endif
#endif #endif
if (len <= 0 || len >= sizeof(buf) || buf[sizeof(buf) - 1] != 0) if (len <= 0 || len >= (int)sizeof(buf) || buf[sizeof(buf) - 1] != 0)
return 0; return 0;
return gzwrite(file, buf, (unsigned)len); return gzwrite(file, buf, (unsigned)len);
} }
Expand Down
Loading

0 comments on commit 086e982

Please sign in to comment.