File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,15 @@ func (d *decoder) firstVal(tag int) uint {
71
71
// or Long type, and returns the decoded uint values.
72
72
func (d * decoder ) ifdUint (p []byte ) (u []uint , err error ) {
73
73
var raw []byte
74
+ if len (p ) < ifdLen {
75
+ return nil , FormatError ("bad IFD entry" )
76
+ }
77
+
74
78
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
+
75
83
count := d .byteOrder .Uint32 (p [4 :8 ])
76
84
if count > math .MaxInt32 / lengths [datatype ] {
77
85
return nil , FormatError ("IFD data too large" )
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ package tiff
6
6
7
7
import (
8
8
"bytes"
9
+ "encoding/binary"
9
10
"image"
10
11
"io/ioutil"
11
12
"os"
@@ -101,6 +102,27 @@ func TestShortBlockData(t *testing.T) {
101
102
}
102
103
}
103
104
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
+
104
126
func compare (t * testing.T , img0 , img1 image.Image ) {
105
127
b0 := img0 .Bounds ()
106
128
b1 := img1 .Bounds ()
You can’t perform that action at this time.
0 commit comments