Skip to content

Commit b439b60

Browse files
committed
tiff: don't panic on reading bad ifd
Fixes golang/go#10597 Change-Id: I57b3614de7181134cf4bd0ca9dc9ff879d3d2e3d Reviewed-on: https://go-review.googlesource.com/9414 Reviewed-by: Nigel Tao <[email protected]>
1 parent 3fe1d4c commit b439b60

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

tiff/reader.go

+8
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,15 @@ func (d *decoder) firstVal(tag int) uint {
7171
// or Long type, and returns the decoded uint values.
7272
func (d *decoder) ifdUint(p []byte) (u []uint, err error) {
7373
var raw []byte
74+
if len(p) < ifdLen {
75+
return nil, FormatError("bad IFD entry")
76+
}
77+
7478
datatype := d.byteOrder.Uint16(p[2:4])
79+
if dt := int(datatype); dt <= 0 || dt >= len(lengths) {
80+
return nil, UnsupportedError("IFD entry datatype")
81+
}
82+
7583
count := d.byteOrder.Uint32(p[4:8])
7684
if count > math.MaxInt32/lengths[datatype] {
7785
return nil, FormatError("IFD data too large")

tiff/reader_test.go

+22
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package tiff
66

77
import (
88
"bytes"
9+
"encoding/binary"
910
"image"
1011
"io/ioutil"
1112
"os"
@@ -101,6 +102,27 @@ func TestShortBlockData(t *testing.T) {
101102
}
102103
}
103104

105+
func TestDecodeInvalidDataType(t *testing.T) {
106+
b, err := ioutil.ReadFile("../testdata/bw-uncompressed.tiff")
107+
if err != nil {
108+
t.Fatal(err)
109+
}
110+
111+
// off is the offset of the ImageWidth tag. It is the offset of the overall
112+
// IFD block (0x00000454), plus 2 for the uint16 number of IFD entries, plus 12
113+
// to skip the first entry.
114+
const off = 0x00000454 + 2 + 12*1
115+
116+
if v := binary.LittleEndian.Uint16(b[off : off+2]); v != tImageWidth {
117+
t.Fatal(`could not find ImageWidth tag`)
118+
}
119+
binary.LittleEndian.PutUint16(b[off+2:], uint16(len(lengths))) // invalid datatype
120+
121+
if _, err = Decode(bytes.NewReader(b)); err == nil {
122+
t.Fatal("got nil error, want non-nil")
123+
}
124+
}
125+
104126
func compare(t *testing.T, img0, img1 image.Image) {
105127
b0 := img0.Bounds()
106128
b1 := img1.Bounds()

0 commit comments

Comments
 (0)