Skip to content

Commit 8333950

Browse files
Lance Andersenslowhog
Lance Andersen
authored andcommittedJul 19, 2022
8284370: Improve zlib usage
Reviewed-by: alanb, mschoene, rhalade
1 parent 879ea78 commit 8333950

File tree

3 files changed

+83
-73
lines changed

3 files changed

+83
-73
lines changed
 

‎src/java.base/share/native/libzip/zlib/deflate.c

+58-23
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
* REFERENCES
6262
*
6363
* 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
6565
*
6666
* A description of the Rabin and Karp algorithm is given in the book
6767
* "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
@@ -276,11 +276,6 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
276276
int wrap = 1;
277277
static const char my_version[] = ZLIB_VERSION;
278278

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-
284279
if (version == Z_NULL || version[0] != my_version[0] ||
285280
stream_size != sizeof(z_stream)) {
286281
return Z_VERSION_ERROR;
@@ -350,9 +345,47 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
350345

351346
s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
352347

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;
356389

357390
if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
358391
s->pending_buf == Z_NULL) {
@@ -361,8 +394,12 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
361394
deflateEnd (strm);
362395
return Z_MEM_ERROR;
363396
}
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+
*/
366403

367404
s->level = level;
368405
s->strategy = strategy;
@@ -518,7 +555,7 @@ int ZEXPORT deflateResetKeep (strm)
518555
s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
519556
#endif
520557
adler32(0L, Z_NULL, 0);
521-
s->last_flush = -2;
558+
s->last_flush = Z_NO_FLUSH;
522559

523560
_tr_init(s);
524561

@@ -573,7 +610,8 @@ int ZEXPORT deflatePrime (strm, bits, value)
573610

574611
if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
575612
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))
577615
return Z_BUF_ERROR;
578616
do {
579617
put = Buf_size - s->bi_valid;
@@ -611,7 +649,7 @@ int ZEXPORT deflateParams(strm, level, strategy)
611649
func = configuration_table[s->level].func;
612650

613651
if ((strategy != s->strategy || func != configuration_table[level].func) &&
614-
s->last_flush != -2) {
652+
s->high_water) {
615653
/* Flush the last buffer: */
616654
int err = deflate(strm, Z_BLOCK);
617655
if (err == Z_STREAM_ERROR)
@@ -1132,7 +1170,6 @@ int ZEXPORT deflateCopy (dest, source)
11321170
#else
11331171
deflate_state *ds;
11341172
deflate_state *ss;
1135-
ushf *overlay;
11361173

11371174

11381175
if (deflateStateCheck(source) || dest == Z_NULL) {
@@ -1152,8 +1189,7 @@ int ZEXPORT deflateCopy (dest, source)
11521189
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
11531190
ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
11541191
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);
11571193

11581194
if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
11591195
ds->pending_buf == Z_NULL) {
@@ -1167,8 +1203,7 @@ int ZEXPORT deflateCopy (dest, source)
11671203
zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
11681204

11691205
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;
11721207

11731208
ds->l_desc.dyn_tree = ds->dyn_ltree;
11741209
ds->d_desc.dyn_tree = ds->dyn_dtree;
@@ -1936,7 +1971,7 @@ local block_state deflate_fast(s, flush)
19361971
FLUSH_BLOCK(s, 1);
19371972
return finish_done;
19381973
}
1939-
if (s->last_lit)
1974+
if (s->sym_next)
19401975
FLUSH_BLOCK(s, 0);
19411976
return block_done;
19421977
}
@@ -2067,7 +2102,7 @@ local block_state deflate_slow(s, flush)
20672102
FLUSH_BLOCK(s, 1);
20682103
return finish_done;
20692104
}
2070-
if (s->last_lit)
2105+
if (s->sym_next)
20712106
FLUSH_BLOCK(s, 0);
20722107
return block_done;
20732108
}
@@ -2142,7 +2177,7 @@ local block_state deflate_rle(s, flush)
21422177
FLUSH_BLOCK(s, 1);
21432178
return finish_done;
21442179
}
2145-
if (s->last_lit)
2180+
if (s->sym_next)
21462181
FLUSH_BLOCK(s, 0);
21472182
return block_done;
21482183
}
@@ -2181,7 +2216,7 @@ local block_state deflate_huff(s, flush)
21812216
FLUSH_BLOCK(s, 1);
21822217
return finish_done;
21832218
}
2184-
if (s->last_lit)
2219+
if (s->sym_next)
21852220
FLUSH_BLOCK(s, 0);
21862221
return block_done;
21872222
}

‎src/java.base/share/native/libzip/zlib/deflate.h

+11-14
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ typedef struct internal_state {
241241
/* Depth of each subtree used as tie breaker for trees of equal frequency
242242
*/
243243

244-
uchf *l_buf; /* buffer for literals or lengths */
244+
uchf *sym_buf; /* buffer for distances and literals/lengths */
245245

246246
uInt lit_bufsize;
247247
/* Size of match buffer for literals/lengths. There are 4 reasons for
@@ -263,13 +263,8 @@ typedef struct internal_state {
263263
* - I can't count above 4
264264
*/
265265

266-
uInt last_lit; /* running index in l_buf */
267-
268-
ushf *d_buf;
269-
/* Buffer for distances. To simplify the code, d_buf and l_buf have
270-
* the same number of elements. To use different lengths, an extra flag
271-
* array would be necessary.
272-
*/
266+
uInt sym_next; /* running index in sym_buf */
267+
uInt sym_end; /* symbol table full when sym_next reaches this */
273268

274269
ulg opt_len; /* bit length of current block with optimal trees */
275270
ulg static_len; /* bit length of current block with static trees */
@@ -349,20 +344,22 @@ void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
349344

350345
# define _tr_tally_lit(s, c, flush) \
351346
{ uch cc = (c); \
352-
s->d_buf[s->last_lit] = 0; \
353-
s->l_buf[s->last_lit++] = cc; \
347+
s->sym_buf[s->sym_next++] = 0; \
348+
s->sym_buf[s->sym_next++] = 0; \
349+
s->sym_buf[s->sym_next++] = cc; \
354350
s->dyn_ltree[cc].Freq++; \
355-
flush = (s->last_lit == s->lit_bufsize-1); \
351+
flush = (s->sym_next == s->sym_end); \
356352
}
357353
# define _tr_tally_dist(s, distance, length, flush) \
358354
{ uch len = (uch)(length); \
359355
ush dist = (ush)(distance); \
360-
s->d_buf[s->last_lit] = dist; \
361-
s->l_buf[s->last_lit++] = len; \
356+
s->sym_buf[s->sym_next++] = (uch)dist; \
357+
s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
358+
s->sym_buf[s->sym_next++] = len; \
362359
dist--; \
363360
s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
364361
s->dyn_dtree[d_code(dist)].Freq++; \
365-
flush = (s->last_lit == s->lit_bufsize-1); \
362+
flush = (s->sym_next == s->sym_end); \
366363
}
367364
#else
368365
# define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)

‎src/java.base/share/native/libzip/zlib/trees.c

+14-36
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ local void init_block(s)
440440

441441
s->dyn_ltree[END_BLOCK].Freq = 1;
442442
s->opt_len = s->static_len = 0L;
443-
s->last_lit = s->matches = 0;
443+
s->sym_next = s->matches = 0;
444444
}
445445

446446
#define SMALLEST 1
@@ -971,7 +971,7 @@ void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last)
971971

972972
Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
973973
opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
974-
s->last_lit));
974+
s->sym_next / 3));
975975

976976
if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
977977

@@ -1040,8 +1040,9 @@ int ZLIB_INTERNAL _tr_tally (s, dist, lc)
10401040
unsigned dist; /* distance of matched string */
10411041
unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
10421042
{
1043-
s->d_buf[s->last_lit] = (ush)dist;
1044-
s->l_buf[s->last_lit++] = (uch)lc;
1043+
s->sym_buf[s->sym_next++] = (uch)dist;
1044+
s->sym_buf[s->sym_next++] = (uch)(dist >> 8);
1045+
s->sym_buf[s->sym_next++] = (uch)lc;
10451046
if (dist == 0) {
10461047
/* lc is the unmatched char */
10471048
s->dyn_ltree[lc].Freq++;
@@ -1056,30 +1057,7 @@ int ZLIB_INTERNAL _tr_tally (s, dist, lc)
10561057
s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
10571058
s->dyn_dtree[d_code(dist)].Freq++;
10581059
}
1059-
1060-
#ifdef TRUNCATE_BLOCK
1061-
/* Try to guess if it is profitable to stop the current block here */
1062-
if ((s->last_lit & 0x1fff) == 0 && s->level > 2) {
1063-
/* Compute an upper bound for the compressed length */
1064-
ulg out_length = (ulg)s->last_lit*8L;
1065-
ulg in_length = (ulg)((long)s->strstart - s->block_start);
1066-
int dcode;
1067-
for (dcode = 0; dcode < D_CODES; dcode++) {
1068-
out_length += (ulg)s->dyn_dtree[dcode].Freq *
1069-
(5L+extra_dbits[dcode]);
1070-
}
1071-
out_length >>= 3;
1072-
Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
1073-
s->last_lit, in_length, out_length,
1074-
100L - out_length*100L/in_length));
1075-
if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
1076-
}
1077-
#endif
1078-
return (s->last_lit == s->lit_bufsize-1);
1079-
/* We avoid equality with lit_bufsize because of wraparound at 64K
1080-
* on 16 bit machines and because stored blocks are restricted to
1081-
* 64K-1 bytes.
1082-
*/
1060+
return (s->sym_next == s->sym_end);
10831061
}
10841062

10851063
/* ===========================================================================
@@ -1092,13 +1070,14 @@ local void compress_block(s, ltree, dtree)
10921070
{
10931071
unsigned dist; /* distance of matched string */
10941072
int lc; /* match length or unmatched char (if dist == 0) */
1095-
unsigned lx = 0; /* running index in l_buf */
1073+
unsigned sx = 0; /* running index in sym_buf */
10961074
unsigned code; /* the code to send */
10971075
int extra; /* number of extra bits to send */
10981076

1099-
if (s->last_lit != 0) do {
1100-
dist = s->d_buf[lx];
1101-
lc = s->l_buf[lx++];
1077+
if (s->sym_next != 0) do {
1078+
dist = s->sym_buf[sx++] & 0xff;
1079+
dist += (unsigned)(s->sym_buf[sx++] & 0xff) << 8;
1080+
lc = s->sym_buf[sx++];
11021081
if (dist == 0) {
11031082
send_code(s, lc, ltree); /* send a literal byte */
11041083
Tracecv(isgraph(lc), (stderr," '%c' ", lc));
@@ -1123,11 +1102,10 @@ local void compress_block(s, ltree, dtree)
11231102
}
11241103
} /* literal or match pair ? */
11251104

1126-
/* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
1127-
Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
1128-
"pendingBuf overflow");
1105+
/* Check that the overlay between pending_buf and sym_buf is ok: */
1106+
Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
11291107

1130-
} while (lx < s->last_lit);
1108+
} while (sx < s->sym_next);
11311109

11321110
send_code(s, END_BLOCK, ltree);
11331111
}

0 commit comments

Comments
 (0)
Please sign in to comment.