f0dde4
From 5c44459c3b28a9bd3283aaceab7c615f8020c531 Mon Sep 17 00:00:00 2001
f0dde4
From: Mark Adler <madler@alumni.caltech.edu>
f0dde4
Date: Tue, 17 Apr 2018 22:09:22 -0700
f0dde4
Subject: [PATCH] Fix a bug that can crash deflate on some input when using
f0dde4
 Z_FIXED.
f0dde4
f0dde4
This bug was reported by Danilo Ramos of Eideticom, Inc. It has
f0dde4
lain in wait 13 years before being found! The bug was introduced
f0dde4
in zlib 1.2.2.2, with the addition of the Z_FIXED option. That
f0dde4
option forces the use of fixed Huffman codes. For rare inputs with
f0dde4
a large number of distant matches, the pending buffer into which
f0dde4
the compressed data is written can overwrite the distance symbol
f0dde4
table which it overlays. That results in corrupted output due to
f0dde4
invalid distances, and can result in out-of-bound accesses,
f0dde4
crashing the application.
f0dde4
f0dde4
The fix here combines the distance buffer and literal/length
f0dde4
buffers into a single symbol buffer. Now three bytes of pending
f0dde4
buffer space are opened up for each literal or length/distance
f0dde4
pair consumed, instead of the previous two bytes. This assures
f0dde4
that the pending buffer cannot overwrite the symbol table, since
f0dde4
the maximum fixed code compressed length/distance is 31 bits, and
f0dde4
since there are four bytes of pending space for every three bytes
f0dde4
of symbol space.
f0dde4
---
f0dde4
 deflate.c | 74 ++++++++++++++++++++++++++++++++++++++++---------------
f0dde4
 deflate.h | 25 +++++++++----------
f0dde4
 trees.c   | 50 +++++++++++--------------------------
f0dde4
 3 files changed, 79 insertions(+), 70 deletions(-)
f0dde4
f0dde4
diff --git a/deflate.c b/deflate.c
f0dde4
index 425babc..19cba87 100644
f0dde4
--- a/deflate.c
f0dde4
+++ b/deflate.c
f0dde4
@@ -255,11 +255,6 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
f0dde4
     int wrap = 1;
f0dde4
     static const char my_version[] = ZLIB_VERSION;
f0dde4
 
f0dde4
-    ushf *overlay;
f0dde4
-    /* We overlay pending_buf and d_buf+l_buf. This works since the average
f0dde4
-     * output size for (length,distance) codes is <= 24 bits.
f0dde4
-     */
f0dde4
-
f0dde4
     if (version == Z_NULL || version[0] != my_version[0] ||
f0dde4
         stream_size != sizeof(z_stream)) {
f0dde4
         return Z_VERSION_ERROR;
f0dde4
@@ -329,9 +324,47 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
f0dde4
 
f0dde4
     s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
f0dde4
 
f0dde4
-    overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
f0dde4
-    s->pending_buf = (uchf *) overlay;
f0dde4
-    s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
f0dde4
+    /* We overlay pending_buf and sym_buf. This works since the average size
f0dde4
+     * for length/distance pairs over any compressed block is assured to be 31
f0dde4
+     * bits or less.
f0dde4
+     *
f0dde4
+     * Analysis: The longest fixed codes are a length code of 8 bits plus 5
f0dde4
+     * extra bits, for lengths 131 to 257. The longest fixed distance codes are
f0dde4
+     * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest
f0dde4
+     * possible fixed-codes length/distance pair is then 31 bits total.
f0dde4
+     *
f0dde4
+     * sym_buf starts one-fourth of the way into pending_buf. So there are
f0dde4
+     * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
f0dde4
+     * in sym_buf is three bytes -- two for the distance and one for the
f0dde4
+     * literal/length. As each symbol is consumed, the pointer to the next
f0dde4
+     * sym_buf value to read moves forward three bytes. From that symbol, up to
f0dde4
+     * 31 bits are written to pending_buf. The closest the written pending_buf
f0dde4
+     * bits gets to the next sym_buf symbol to read is just before the last
f0dde4
+     * code is written. At that time, 31*(n-2) bits have been written, just
f0dde4
+     * after 24*(n-2) bits have been consumed from sym_buf. sym_buf starts at
f0dde4
+     * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1
f0dde4
+     * symbols are written.) The closest the writing gets to what is unread is
f0dde4
+     * then n+14 bits. Here n is lit_bufsize, which is 16384 by default, and
f0dde4
+     * can range from 128 to 32768.
f0dde4
+     *
f0dde4
+     * Therefore, at a minimum, there are 142 bits of space between what is
f0dde4
+     * written and what is read in the overlain buffers, so the symbols cannot
f0dde4
+     * be overwritten by the compressed data. That space is actually 139 bits,
f0dde4
+     * due to the three-bit fixed-code block header.
f0dde4
+     *
f0dde4
+     * That covers the case where either Z_FIXED is specified, forcing fixed
f0dde4
+     * codes, or when the use of fixed codes is chosen, because that choice
f0dde4
+     * results in a smaller compressed block than dynamic codes. That latter
f0dde4
+     * condition then assures that the above analysis also covers all dynamic
f0dde4
+     * blocks. A dynamic-code block will only be chosen to be emitted if it has
f0dde4
+     * fewer bits than a fixed-code block would for the same set of symbols.
f0dde4
+     * Therefore its average symbol length is assured to be less than 31. So
f0dde4
+     * the compressed data for a dynamic block also cannot overwrite the
f0dde4
+     * symbols from which it is being constructed.
f0dde4
+     */
f0dde4
+
f0dde4
+    s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
f0dde4
+    s->pending_buf_size = (ulg)s->lit_bufsize * 4;
f0dde4
 
f0dde4
     if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
f0dde4
         s->pending_buf == Z_NULL) {
f0dde4
@@ -340,8 +373,12 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
f0dde4
         deflateEnd (strm);
f0dde4
         return Z_MEM_ERROR;
f0dde4
     }
f0dde4
-    s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
f0dde4
-    s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
f0dde4
+    s->sym_buf = s->pending_buf + s->lit_bufsize;
f0dde4
+    s->sym_end = (s->lit_bufsize - 1) * 3;
f0dde4
+    /* We avoid equality with lit_bufsize*3 because of wraparound at 64K
f0dde4
+     * on 16 bit machines and because stored blocks are restricted to
f0dde4
+     * 64K-1 bytes.
f0dde4
+     */
f0dde4
 
f0dde4
     s->level = level;
f0dde4
     s->strategy = strategy;
f0dde4
@@ -552,7 +589,7 @@ int ZEXPORT deflatePrime (strm, bits, value)
f0dde4
 
f0dde4
     if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
f0dde4
     s = strm->state;
f0dde4
-    if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
f0dde4
+    if (s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3))
f0dde4
         return Z_BUF_ERROR;
f0dde4
     do {
f0dde4
         put = Buf_size - s->bi_valid;
f0dde4
@@ -1113,7 +1150,6 @@ int ZEXPORT deflateCopy (dest, source)
f0dde4
 #else
f0dde4
     deflate_state *ds;
f0dde4
     deflate_state *ss;
f0dde4
-    ushf *overlay;
f0dde4
 
f0dde4
 
f0dde4
     if (deflateStateCheck(source) || dest == Z_NULL) {
f0dde4
@@ -1133,8 +1169,7 @@ int ZEXPORT deflateCopy (dest, source)
f0dde4
     ds->window = (Bytef *) ZALLOC_WINDOW(dest, ds->w_size, 2*sizeof(Byte));
f0dde4
     ds->prev   = (Posf *)  ZALLOC(dest, ds->w_size, sizeof(Pos));
f0dde4
     ds->head   = (Posf *)  ZALLOC(dest, ds->hash_size, sizeof(Pos));
f0dde4
-    overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
f0dde4
-    ds->pending_buf = (uchf *) overlay;
f0dde4
+    ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
f0dde4
 
f0dde4
     if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
f0dde4
         ds->pending_buf == Z_NULL) {
f0dde4
@@ -1148,8 +1183,7 @@ int ZEXPORT deflateCopy (dest, source)
f0dde4
     zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
f0dde4
 
f0dde4
     ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
f0dde4
-    ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
f0dde4
-    ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
f0dde4
+    ds->sym_buf = ds->pending_buf + ds->lit_bufsize;
f0dde4
 
f0dde4
     ds->l_desc.dyn_tree = ds->dyn_ltree;
f0dde4
     ds->d_desc.dyn_tree = ds->dyn_dtree;
f0dde4
@@ -1925,7 +1959,7 @@ local block_state deflate_fast(s, flush)
f0dde4
         FLUSH_BLOCK(s, 1);
f0dde4
         return finish_done;
f0dde4
     }
f0dde4
-    if (s->last_lit)
f0dde4
+    if (s->sym_next)
f0dde4
         FLUSH_BLOCK(s, 0);
f0dde4
     return block_done;
f0dde4
 }
f0dde4
@@ -2056,7 +2090,7 @@ local block_state deflate_slow(s, flush)
f0dde4
         FLUSH_BLOCK(s, 1);
f0dde4
         return finish_done;
f0dde4
     }
f0dde4
-    if (s->last_lit)
f0dde4
+    if (s->sym_next)
f0dde4
         FLUSH_BLOCK(s, 0);
f0dde4
     return block_done;
f0dde4
 }
f0dde4
@@ -2131,7 +2165,7 @@ local block_state deflate_rle(s, flush)
f0dde4
         FLUSH_BLOCK(s, 1);
f0dde4
         return finish_done;
f0dde4
     }
f0dde4
-    if (s->last_lit)
f0dde4
+    if (s->sym_next)
f0dde4
         FLUSH_BLOCK(s, 0);
f0dde4
     return block_done;
f0dde4
 }
f0dde4
@@ -2170,7 +2204,7 @@ local block_state deflate_huff(s, flush)
f0dde4
         FLUSH_BLOCK(s, 1);
f0dde4
         return finish_done;
f0dde4
     }
f0dde4
-    if (s->last_lit)
f0dde4
+    if (s->sym_next)
f0dde4
         FLUSH_BLOCK(s, 0);
f0dde4
     return block_done;
f0dde4
 }
f0dde4
diff --git a/deflate.h b/deflate.h
f0dde4
index 23ecdd3..d4cf1a9 100644
f0dde4
--- a/deflate.h
f0dde4
+++ b/deflate.h
f0dde4
@@ -217,7 +217,7 @@ typedef struct internal_state {
f0dde4
     /* Depth of each subtree used as tie breaker for trees of equal frequency
f0dde4
      */
f0dde4
 
f0dde4
-    uchf *l_buf;          /* buffer for literals or lengths */
f0dde4
+    uchf *sym_buf;        /* buffer for distances and literals/lengths */
f0dde4
 
f0dde4
     uInt  lit_bufsize;
f0dde4
     /* Size of match buffer for literals/lengths.  There are 4 reasons for
f0dde4
@@ -239,13 +239,8 @@ typedef struct internal_state {
f0dde4
      *   - I can't count above 4
f0dde4
      */
f0dde4
 
f0dde4
-    uInt last_lit;      /* running index in l_buf */
f0dde4
-
f0dde4
-    ushf *d_buf;
f0dde4
-    /* Buffer for distances. To simplify the code, d_buf and l_buf have
f0dde4
-     * the same number of elements. To use different lengths, an extra flag
f0dde4
-     * array would be necessary.
f0dde4
-     */
f0dde4
+    uInt sym_next;      /* running index in sym_buf */
f0dde4
+    uInt sym_end;       /* symbol table full when sym_next reaches this */
f0dde4
 
f0dde4
     ulg opt_len;        /* bit length of current block with optimal trees */
f0dde4
     ulg static_len;     /* bit length of current block with static trees */
f0dde4
@@ -325,20 +320,22 @@ void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
f0dde4
 
f0dde4
 # define _tr_tally_lit(s, c, flush) \
f0dde4
   { uch cc = (c); \
f0dde4
-    s->d_buf[s->last_lit] = 0; \
f0dde4
-    s->l_buf[s->last_lit++] = cc; \
f0dde4
+    s->sym_buf[s->sym_next++] = 0; \
f0dde4
+    s->sym_buf[s->sym_next++] = 0; \
f0dde4
+    s->sym_buf[s->sym_next++] = cc; \
f0dde4
     s->dyn_ltree[cc].Freq++; \
f0dde4
-    flush = (s->last_lit == s->lit_bufsize-1); \
f0dde4
+    flush = (s->sym_next == s->sym_end); \
f0dde4
    }
f0dde4
 # define _tr_tally_dist(s, distance, length, flush) \
f0dde4
   { uch len = (uch)(length); \
f0dde4
     ush dist = (ush)(distance); \
f0dde4
-    s->d_buf[s->last_lit] = dist; \
f0dde4
-    s->l_buf[s->last_lit++] = len; \
f0dde4
+    s->sym_buf[s->sym_next++] = dist; \
f0dde4
+    s->sym_buf[s->sym_next++] = dist >> 8; \
f0dde4
+    s->sym_buf[s->sym_next++] = len; \
f0dde4
     dist--; \
f0dde4
     s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
f0dde4
     s->dyn_dtree[d_code(dist)].Freq++; \
f0dde4
-    flush = (s->last_lit == s->lit_bufsize-1); \
f0dde4
+    flush = (s->sym_next == s->sym_end); \
f0dde4
   }
f0dde4
 #else
f0dde4
 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
f0dde4
diff --git a/trees.c b/trees.c
f0dde4
index 4f4a650..decaeb7 100644
f0dde4
--- a/trees.c
f0dde4
+++ b/trees.c
f0dde4
@@ -416,7 +416,7 @@ local void init_block(s)
f0dde4
 
f0dde4
     s->dyn_ltree[END_BLOCK].Freq = 1;
f0dde4
     s->opt_len = s->static_len = 0L;
f0dde4
-    s->last_lit = s->matches = 0;
f0dde4
+    s->sym_next = s->matches = 0;
f0dde4
 }
f0dde4
 
f0dde4
 #define SMALLEST 1
f0dde4
@@ -948,7 +948,7 @@ void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last)
f0dde4
 
f0dde4
         Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
f0dde4
                 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
f0dde4
-                s->last_lit));
f0dde4
+                s->sym_next / 3));
f0dde4
 
f0dde4
         if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
f0dde4
 
f0dde4
@@ -1017,8 +1017,9 @@ int ZLIB_INTERNAL _tr_tally (s, dist, lc)
f0dde4
     unsigned dist;  /* distance of matched string */
f0dde4
     unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
f0dde4
 {
f0dde4
-    s->d_buf[s->last_lit] = (ush)dist;
f0dde4
-    s->l_buf[s->last_lit++] = (uch)lc;
f0dde4
+    s->sym_buf[s->sym_next++] = dist;
f0dde4
+    s->sym_buf[s->sym_next++] = dist >> 8;
f0dde4
+    s->sym_buf[s->sym_next++] = lc;
f0dde4
     if (dist == 0) {
f0dde4
         /* lc is the unmatched char */
f0dde4
         s->dyn_ltree[lc].Freq++;
f0dde4
@@ -1033,30 +1034,7 @@ int ZLIB_INTERNAL _tr_tally (s, dist, lc)
f0dde4
         s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
f0dde4
         s->dyn_dtree[d_code(dist)].Freq++;
f0dde4
     }
f0dde4
-
f0dde4
-#ifdef TRUNCATE_BLOCK
f0dde4
-    /* Try to guess if it is profitable to stop the current block here */
f0dde4
-    if ((s->last_lit & 0x1fff) == 0 && s->level > 2) {
f0dde4
-        /* Compute an upper bound for the compressed length */
f0dde4
-        ulg out_length = (ulg)s->last_lit*8L;
f0dde4
-        ulg in_length = (ulg)((long)s->strstart - s->block_start);
f0dde4
-        int dcode;
f0dde4
-        for (dcode = 0; dcode < D_CODES; dcode++) {
f0dde4
-            out_length += (ulg)s->dyn_dtree[dcode].Freq *
f0dde4
-                (5L+extra_dbits[dcode]);
f0dde4
-        }
f0dde4
-        out_length >>= 3;
f0dde4
-        Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
f0dde4
-               s->last_lit, in_length, out_length,
f0dde4
-               100L - out_length*100L/in_length));
f0dde4
-        if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
f0dde4
-    }
f0dde4
-#endif
f0dde4
-    return (s->last_lit == s->lit_bufsize-1);
f0dde4
-    /* We avoid equality with lit_bufsize because of wraparound at 64K
f0dde4
-     * on 16 bit machines and because stored blocks are restricted to
f0dde4
-     * 64K-1 bytes.
f0dde4
-     */
f0dde4
+    return (s->sym_next == s->sym_end);
f0dde4
 }
f0dde4
 
f0dde4
 /* ===========================================================================
f0dde4
@@ -1069,13 +1047,14 @@ local void compress_block(s, ltree, dtree)
f0dde4
 {
f0dde4
     unsigned dist;      /* distance of matched string */
f0dde4
     int lc;             /* match length or unmatched char (if dist == 0) */
f0dde4
-    unsigned lx = 0;    /* running index in l_buf */
f0dde4
+    unsigned sx = 0;    /* running index in sym_buf */
f0dde4
     unsigned code;      /* the code to send */
f0dde4
     int extra;          /* number of extra bits to send */
f0dde4
 
f0dde4
-    if (s->last_lit != 0) do {
f0dde4
-        dist = s->d_buf[lx];
f0dde4
-        lc = s->l_buf[lx++];
f0dde4
+    if (s->sym_next != 0) do {
f0dde4
+        dist = s->sym_buf[sx++] & 0xff;
f0dde4
+        dist += (unsigned)(s->sym_buf[sx++] & 0xff) << 8;
f0dde4
+        lc = s->sym_buf[sx++];
f0dde4
         if (dist == 0) {
f0dde4
             send_code(s, lc, ltree); /* send a literal byte */
f0dde4
             Tracecv(isgraph(lc), (stderr," '%c' ", lc));
f0dde4
@@ -1100,11 +1079,10 @@ local void compress_block(s, ltree, dtree)
f0dde4
             }
f0dde4
         } /* literal or match pair ? */
f0dde4
 
f0dde4
-        /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
f0dde4
-        Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
f0dde4
-               "pendingBuf overflow");
f0dde4
+        /* Check that the overlay between pending_buf and sym_buf is ok: */
f0dde4
+        Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
f0dde4
 
f0dde4
-    } while (lx < s->last_lit);
f0dde4
+    } while (sx < s->sym_next);
f0dde4
 
f0dde4
     send_code(s, END_BLOCK, ltree);
f0dde4
 }
f0dde4
-- 
f0dde4
2.34.1
f0dde4