8ca2e9
Protect against a fax VL(n) codeword commanding a move left.  Without
8ca2e9
this, a malicious input file can generate an indefinitely large series
8ca2e9
of runs without a0 ever reaching the right margin, thus overrunning
8ca2e9
our buffer of run lengths.  Per CVE-2011-0192.  This is a modified
8ca2e9
version of a patch proposed by Drew Yao of Apple Product Security.
8ca2e9
It adds an unexpected() report, and disallows the equality case except
8ca2e9
for the first run of a line, since emitting a run without increasing a0
8ca2e9
still allows buffer overrun.  (We have to allow it for the first run to
8ca2e9
cover the case of encoding a zero-length run at start of line using VL.)
8ca2e9
8ca2e9
8ca2e9
diff -Naur tiff-3.9.4.orig/libtiff/tif_fax3.h tiff-3.9.4/libtiff/tif_fax3.h
8ca2e9
--- tiff-3.9.4.orig/libtiff/tif_fax3.h	2010-06-08 14:50:42.000000000 -0400
8ca2e9
+++ tiff-3.9.4/libtiff/tif_fax3.h	2011-03-10 12:11:20.850839162 -0500
8ca2e9
@@ -478,6 +478,12 @@
8ca2e9
 	    break;							\
8ca2e9
 	case S_VL:							\
8ca2e9
 	    CHECK_b1;							\
8ca2e9
+	    if (b1 <= (int) (a0 + TabEnt->Param)) {			\
8ca2e9
+		if (b1 < (int) (a0 + TabEnt->Param) || pa != thisrun) {	\
8ca2e9
+		    unexpected("VL", a0);				\
8ca2e9
+		    goto eol2d;						\
8ca2e9
+		}							\
8ca2e9
+	    }								\
8ca2e9
 	    SETVALUE(b1 - a0 - TabEnt->Param);				\
8ca2e9
 	    b1 -= *--pb;						\
8ca2e9
 	    break;							\