61
61
* REFERENCES
62
62
*
63
63
* Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
64
- * Available in https ://tools.ietf.org/html/rfc1951
64
+ * Available in http ://tools.ietf.org/html/rfc1951
65
65
*
66
66
* A description of the Rabin and Karp algorithm is given in the book
67
67
* "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
@@ -276,11 +276,6 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
276
276
int wrap = 1 ;
277
277
static const char my_version [] = ZLIB_VERSION ;
278
278
279
- ushf * overlay ;
280
- /* We overlay pending_buf and d_buf+l_buf. This works since the average
281
- * output size for (length,distance) codes is <= 24 bits.
282
- */
283
-
284
279
if (version == Z_NULL || version [0 ] != my_version [0 ] ||
285
280
stream_size != sizeof (z_stream )) {
286
281
return Z_VERSION_ERROR ;
@@ -350,9 +345,47 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
350
345
351
346
s -> lit_bufsize = 1 << (memLevel + 6 ); /* 16K elements by default */
352
347
353
- overlay = (ushf * ) ZALLOC (strm , s -> lit_bufsize , sizeof (ush )+ 2 );
354
- s -> pending_buf = (uchf * ) overlay ;
355
- s -> pending_buf_size = (ulg )s -> lit_bufsize * (sizeof (ush )+ 2L );
348
+ /* We overlay pending_buf and sym_buf. This works since the average size
349
+ * for length/distance pairs over any compressed block is assured to be 31
350
+ * bits or less.
351
+ *
352
+ * Analysis: The longest fixed codes are a length code of 8 bits plus 5
353
+ * extra bits, for lengths 131 to 257. The longest fixed distance codes are
354
+ * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest
355
+ * possible fixed-codes length/distance pair is then 31 bits total.
356
+ *
357
+ * sym_buf starts one-fourth of the way into pending_buf. So there are
358
+ * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
359
+ * in sym_buf is three bytes -- two for the distance and one for the
360
+ * literal/length. As each symbol is consumed, the pointer to the next
361
+ * sym_buf value to read moves forward three bytes. From that symbol, up to
362
+ * 31 bits are written to pending_buf. The closest the written pending_buf
363
+ * bits gets to the next sym_buf symbol to read is just before the last
364
+ * code is written. At that time, 31*(n-2) bits have been written, just
365
+ * after 24*(n-2) bits have been consumed from sym_buf. sym_buf starts at
366
+ * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1
367
+ * symbols are written.) The closest the writing gets to what is unread is
368
+ * then n+14 bits. Here n is lit_bufsize, which is 16384 by default, and
369
+ * can range from 128 to 32768.
370
+ *
371
+ * Therefore, at a minimum, there are 142 bits of space between what is
372
+ * written and what is read in the overlain buffers, so the symbols cannot
373
+ * be overwritten by the compressed data. That space is actually 139 bits,
374
+ * due to the three-bit fixed-code block header.
375
+ *
376
+ * That covers the case where either Z_FIXED is specified, forcing fixed
377
+ * codes, or when the use of fixed codes is chosen, because that choice
378
+ * results in a smaller compressed block than dynamic codes. That latter
379
+ * condition then assures that the above analysis also covers all dynamic
380
+ * blocks. A dynamic-code block will only be chosen to be emitted if it has
381
+ * fewer bits than a fixed-code block would for the same set of symbols.
382
+ * Therefore its average symbol length is assured to be less than 31. So
383
+ * the compressed data for a dynamic block also cannot overwrite the
384
+ * symbols from which it is being constructed.
385
+ */
386
+
387
+ s -> pending_buf = (uchf * ) ZALLOC (strm , s -> lit_bufsize , 4 );
388
+ s -> pending_buf_size = (ulg )s -> lit_bufsize * 4 ;
356
389
357
390
if (s -> window == Z_NULL || s -> prev == Z_NULL || s -> head == Z_NULL ||
358
391
s -> pending_buf == Z_NULL ) {
@@ -361,8 +394,12 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
361
394
deflateEnd (strm );
362
395
return Z_MEM_ERROR ;
363
396
}
364
- s -> d_buf = overlay + s -> lit_bufsize /sizeof (ush );
365
- s -> l_buf = s -> pending_buf + (1 + sizeof (ush ))* s -> lit_bufsize ;
397
+ s -> sym_buf = s -> pending_buf + s -> lit_bufsize ;
398
+ s -> sym_end = (s -> lit_bufsize - 1 ) * 3 ;
399
+ /* We avoid equality with lit_bufsize*3 because of wraparound at 64K
400
+ * on 16 bit machines and because stored blocks are restricted to
401
+ * 64K-1 bytes.
402
+ */
366
403
367
404
s -> level = level ;
368
405
s -> strategy = strategy ;
@@ -518,7 +555,7 @@ int ZEXPORT deflateResetKeep (strm)
518
555
s -> wrap == 2 ? crc32 (0L , Z_NULL , 0 ) :
519
556
#endif
520
557
adler32 (0L , Z_NULL , 0 );
521
- s -> last_flush = -2 ;
558
+ s -> last_flush = Z_NO_FLUSH ;
522
559
523
560
_tr_init (s );
524
561
@@ -573,7 +610,8 @@ int ZEXPORT deflatePrime (strm, bits, value)
573
610
574
611
if (deflateStateCheck (strm )) return Z_STREAM_ERROR ;
575
612
s = strm -> state ;
576
- if ((Bytef * )(s -> d_buf ) < s -> pending_out + ((Buf_size + 7 ) >> 3 ))
613
+ if (bits < 0 || bits > 16 ||
614
+ s -> sym_buf < s -> pending_out + ((Buf_size + 7 ) >> 3 ))
577
615
return Z_BUF_ERROR ;
578
616
do {
579
617
put = Buf_size - s -> bi_valid ;
@@ -611,7 +649,7 @@ int ZEXPORT deflateParams(strm, level, strategy)
611
649
func = configuration_table [s -> level ].func ;
612
650
613
651
if ((strategy != s -> strategy || func != configuration_table [level ].func ) &&
614
- s -> last_flush != -2 ) {
652
+ s -> high_water ) {
615
653
/* Flush the last buffer: */
616
654
int err = deflate (strm , Z_BLOCK );
617
655
if (err == Z_STREAM_ERROR )
@@ -1132,7 +1170,6 @@ int ZEXPORT deflateCopy (dest, source)
1132
1170
#else
1133
1171
deflate_state * ds ;
1134
1172
deflate_state * ss ;
1135
- ushf * overlay ;
1136
1173
1137
1174
1138
1175
if (deflateStateCheck (source ) || dest == Z_NULL ) {
@@ -1152,8 +1189,7 @@ int ZEXPORT deflateCopy (dest, source)
1152
1189
ds -> window = (Bytef * ) ZALLOC (dest , ds -> w_size , 2 * sizeof (Byte ));
1153
1190
ds -> prev = (Posf * ) ZALLOC (dest , ds -> w_size , sizeof (Pos ));
1154
1191
ds -> head = (Posf * ) ZALLOC (dest , ds -> hash_size , sizeof (Pos ));
1155
- overlay = (ushf * ) ZALLOC (dest , ds -> lit_bufsize , sizeof (ush )+ 2 );
1156
- ds -> pending_buf = (uchf * ) overlay ;
1192
+ ds -> pending_buf = (uchf * ) ZALLOC (dest , ds -> lit_bufsize , 4 );
1157
1193
1158
1194
if (ds -> window == Z_NULL || ds -> prev == Z_NULL || ds -> head == Z_NULL ||
1159
1195
ds -> pending_buf == Z_NULL ) {
@@ -1167,8 +1203,7 @@ int ZEXPORT deflateCopy (dest, source)
1167
1203
zmemcpy (ds -> pending_buf , ss -> pending_buf , (uInt )ds -> pending_buf_size );
1168
1204
1169
1205
ds -> pending_out = ds -> pending_buf + (ss -> pending_out - ss -> pending_buf );
1170
- ds -> d_buf = overlay + ds -> lit_bufsize /sizeof (ush );
1171
- ds -> l_buf = ds -> pending_buf + (1 + sizeof (ush ))* ds -> lit_bufsize ;
1206
+ ds -> sym_buf = ds -> pending_buf + ds -> lit_bufsize ;
1172
1207
1173
1208
ds -> l_desc .dyn_tree = ds -> dyn_ltree ;
1174
1209
ds -> d_desc .dyn_tree = ds -> dyn_dtree ;
@@ -1936,7 +1971,7 @@ local block_state deflate_fast(s, flush)
1936
1971
FLUSH_BLOCK (s , 1 );
1937
1972
return finish_done ;
1938
1973
}
1939
- if (s -> last_lit )
1974
+ if (s -> sym_next )
1940
1975
FLUSH_BLOCK (s , 0 );
1941
1976
return block_done ;
1942
1977
}
@@ -2067,7 +2102,7 @@ local block_state deflate_slow(s, flush)
2067
2102
FLUSH_BLOCK (s , 1 );
2068
2103
return finish_done ;
2069
2104
}
2070
- if (s -> last_lit )
2105
+ if (s -> sym_next )
2071
2106
FLUSH_BLOCK (s , 0 );
2072
2107
return block_done ;
2073
2108
}
@@ -2142,7 +2177,7 @@ local block_state deflate_rle(s, flush)
2142
2177
FLUSH_BLOCK (s , 1 );
2143
2178
return finish_done ;
2144
2179
}
2145
- if (s -> last_lit )
2180
+ if (s -> sym_next )
2146
2181
FLUSH_BLOCK (s , 0 );
2147
2182
return block_done ;
2148
2183
}
@@ -2181,7 +2216,7 @@ local block_state deflate_huff(s, flush)
2181
2216
FLUSH_BLOCK (s , 1 );
2182
2217
return finish_done ;
2183
2218
}
2184
- if (s -> last_lit )
2219
+ if (s -> sym_next )
2185
2220
FLUSH_BLOCK (s , 0 );
2186
2221
return block_done ;
2187
2222
}
0 commit comments