Description: CVE-2014-8138: heap overflow in jp2_decode() Origin: vendor, https://bugzilla.redhat.com/attachment.cgi?id=967280 Bug-Debian: https://bugs.debian.org/773463 Bug-RedHat: https://bugzilla.redhat.com/show_bug.cgi?id=1173162 Forwarded: no Author: Tomas Hoger Last-Update: 2014-12-20 --- a/src/libjasper/jp2/jp2_dec.c +++ b/src/libjasper/jp2/jp2_dec.c @@ -389,6 +389,11 @@ jas_image_t *jp2_decode(jas_stream_t *in /* Determine the type of each component. */ if (dec->cdef) { for (i = 0; i < dec->numchans; ++i) { + /* Is the channel number reasonable? */ + if (dec->cdef->data.cdef.ents[i].channo >= dec->numchans) { + jas_eprintf("error: invalid channel number in CDEF box\n"); + goto error; + } jas_image_setcmpttype(dec->image, dec->chantocmptlut[dec->cdef->data.cdef.ents[i].channo], jp2_getct(jas_image_clrspc(dec->image),