[FFmpeg-cvslog] flashsv: Check diff_start diff_height values

Michael Niedermayer git at videolan.org
Tue Feb 4 05:58:25 CET 2014


ffmpeg | branch: release/1.1 | Michael Niedermayer <michaelni at gmx.at> | Tue Aug 20 23:18:48 2013 +0200| [10d48fe6d3963842319b1d8d738a318020836e72] | committer: Reinhard Tartler

flashsv: Check diff_start diff_height values

Fix out of array accesses.

Found-by: ami_stuff
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

Adresses: CVE-2013-7015
(cherry picked from commit 57070b1468edc6ac8cb3696c817f3c943975d4c1)
Signed-off-by: Reinhard Tartler <siretart at tauware.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=10d48fe6d3963842319b1d8d738a318020836e72
---

 libavcodec/flashsv.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c
index 3c5a35c..d55616e 100644
--- a/libavcodec/flashsv.c
+++ b/libavcodec/flashsv.c
@@ -384,6 +384,12 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data,
                     }
                     s->diff_start  = get_bits(&gb, 8);
                     s->diff_height = get_bits(&gb, 8);
+                    if (s->diff_start + s->diff_height > cur_blk_height) {
+                        av_log(avctx, AV_LOG_ERROR,
+                               "Block parameters invalid: %d + %d > %d\n",
+                               s->diff_start, s->diff_height, cur_blk_height);
+                        return AVERROR_INVALIDDATA;
+                    }
                     av_log(avctx, AV_LOG_DEBUG,
                            "%dx%d diff start %d height %d\n",
                            i, j, s->diff_start, s->diff_height);



More information about the ffmpeg-cvslog mailing list