[FFmpeg-cvslog] avcodec/vmnc: Check that rectangles are within the picture
Michael Niedermayer
git at videolan.org
Sat Mar 8 16:48:15 CET 2014
ffmpeg | branch: release/1.0 | Michael Niedermayer <michaelni at gmx.at> | Mon Jan 20 18:08:18 2014 +0100| [87c203ba2684947d92f6bcef4acbfe53d9632299] | committer: Michael Niedermayer
avcodec/vmnc: Check that rectangles are within the picture
Prevents out of array accesses with CODEC_FLAG_EMU_EDGE
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 6ba02602aa7fc7d38db582e75b8b093fb3c1608d)
Conflicts:
libavcodec/vmnc.c
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 7c17207ab9acfaa934e8feb8fba90765c9d0b989)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=87c203ba2684947d92f6bcef4acbfe53d9632299
---
libavcodec/vmnc.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavcodec/vmnc.c b/libavcodec/vmnc.c
index 6d091c1..417109b 100644
--- a/libavcodec/vmnc.c
+++ b/libavcodec/vmnc.c
@@ -276,6 +276,11 @@ static int decode_hextile(VmncContext *c, uint8_t* dst, const uint8_t* src, int
}
xy = *src++;
wh = *src++;
+ if ( (xy >> 4) + (wh >> 4) + 1 > w - i
+ || (xy & 0xF) + (wh & 0xF)+1 > h - j) {
+ av_log(c->avctx, AV_LOG_ERROR, "Rectangle outside picture\n");
+ return AVERROR_INVALIDDATA;
+ }
paint_rect(dst2, xy >> 4, xy & 0xF, (wh>>4)+1, (wh & 0xF)+1, fg, bpp, stride);
}
}
More information about the ffmpeg-cvslog
mailing list