#410 closed defect (fixed)
seg fault when reading small PNG files with a palette
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | important | Component: | libavcodec |
Version: | unspecified | Severity: | major |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Reproduced by developer: | no | Analyzed by developer: | no |
Description
there is a bug in libavcodec when it decodes small (eg 1x1) PIX_FMT_PAL8 format
images - the get_buffer function avcodec_default_get_buffer doesn't alloc enough
space for the palette entries, so when the palette data gets copied into the
data[1] array it overflows the buffer on the heap and causes a seg fault the
next time you use free/malloc
(actually it does alloc enough space in base[1], but data[1] points to the
middle of the buffer, so it overflows)
this is probably exploitable
here's a patch to fix it:
--- libavcodec/utils.c.orig 2005-11-17 15:13:57.000000000 +0000
+++ libavcodec/utils.c 2005-11-17 15:14:51.000000000 +0000
@@ -325,6 +325,15 @@
const int h_shift= i==0 ? 0 : h_chroma_shift;
const int v_shift= i==0 ? 0 : v_chroma_shift;
+ if(s->pix_fmt == PIX_FMT_PAL8 && i == 1)
+ {
+ buf->base[i] = av_malloc(256 * 4);
+ if(buf->base[i] == NULL)
+ return -1;
+ buf->data[i] = buf->base[i];
+ continue;
+ }
+
FIXME next ensures that linesize= 2x uvlinesize, thats needed
because some MC code assumes it
buf->linesize[i]= ALIGN(pixel_size*w>>h_shift,
STRIDE_ALIGN<<(h_chroma_shift-h_shift));
you can trigger the bug by using avcodec_decode_video to read a 1x1 PNG file
with a palette, calling avcodec_close afterwards causes a seg fault in glibc
inside free
Attachments (1)
Change History (3)
by , 19 years ago
Attachment: | ffmpeg-0.4.9_p20050906-pal8.patch added |
---|
comment:1 by , 19 years ago
comment:2 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed by a commit from Michael.
patch to fix it