Skip to content

Commit 2f98bac

Browse files
committed
image/jpeg: don't assume that an ensureNBits failure implies that we can
call unreadByteStuffedByte. If ensureNBits was due to an io.EOF that was translated to jpeg.errShortHuffmanData, then we may have read no bytes, so there is no byte-stuffed-byte to unread. Fixes #10387 Change-Id: I39a3842590c6cef2aa48943288d52f603338b44d Reviewed-on: https://go-review.googlesource.com/8841 Reviewed-by: Rob Pike <[email protected]>
1 parent 8b27d28 commit 2f98bac

File tree

2 files changed

+23
-13
lines changed

2 files changed

+23
-13
lines changed

src/image/jpeg/reader.go

+3-13
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func (d *decoder) fill() error {
170170
// can happen when expecting to read a 0xff 0x00 byte-stuffed byte.
171171
func (d *decoder) unreadByteStuffedByte() {
172172
if d.bytes.nUnreadable == 0 {
173-
panic("jpeg: unreadByteStuffedByte call cannot be fulfilled")
173+
return
174174
}
175175
d.bytes.i -= d.bytes.nUnreadable
176176
d.bytes.nUnreadable = 0
@@ -242,12 +242,7 @@ func (d *decoder) readByteStuffedByte() (x byte, err error) {
242242
// stuffing.
243243
func (d *decoder) readFull(p []byte) error {
244244
// Unread the overshot bytes, if any.
245-
if d.bytes.nUnreadable != 0 {
246-
if d.bits.n >= 8 {
247-
d.unreadByteStuffedByte()
248-
}
249-
d.bytes.nUnreadable = 0
250-
}
245+
d.unreadByteStuffedByte()
251246

252247
for {
253248
n := copy(p, d.bytes.buf[d.bytes.i:d.bytes.j])
@@ -269,12 +264,7 @@ func (d *decoder) readFull(p []byte) error {
269264
// ignore ignores the next n bytes.
270265
func (d *decoder) ignore(n int) error {
271266
// Unread the overshot bytes, if any.
272-
if d.bytes.nUnreadable != 0 {
273-
if d.bits.n >= 8 {
274-
d.unreadByteStuffedByte()
275-
}
276-
d.bytes.nUnreadable = 0
277-
}
267+
d.unreadByteStuffedByte()
278268

279269
for {
280270
m := d.bytes.j - d.bytes.i

src/image/jpeg/reader_test.go

+20
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,26 @@ func pixString(pix []byte, stride, x, y int) string {
186186
return s.String()
187187
}
188188

189+
func TestTruncatedSOSDataDoesntPanic(t *testing.T) {
190+
b, err := ioutil.ReadFile("../testdata/video-005.gray.q50.jpeg")
191+
if err != nil {
192+
t.Fatal(err)
193+
}
194+
sosMarker := []byte{0xff, 0xda}
195+
i := bytes.Index(b, sosMarker)
196+
if i < 0 {
197+
t.Fatal("SOS marker not found")
198+
}
199+
i += len(sosMarker)
200+
j := i + 10
201+
if j > len(b) {
202+
j = len(b)
203+
}
204+
for ; i < j; i++ {
205+
Decode(bytes.NewReader(b[:i]))
206+
}
207+
}
208+
189209
func TestExtraneousData(t *testing.T) {
190210
// Encode a 1x1 red image.
191211
src := image.NewRGBA(image.Rect(0, 0, 1, 1))

0 commit comments

Comments
 (0)