[FFmpeg-cvslog] bfi: Add some very basic sanity checks for input packet sizes

Martin Storsjö git at videolan.org
Mon Sep 30 00:18:18 CEST 2013


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Sat Sep 28 23:46:04 2013 +0300| [640a2427aafa774b83316b7a8c5c2bdc28bfd269] | committer: Martin Storsjö

bfi: Add some very basic sanity checks for input packet sizes

CC: libav-stable at libav.org
Signed-off-by: Martin Storsjö <martin at martin.st>

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

 libavformat/bfi.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavformat/bfi.c b/libavformat/bfi.c
index 5d7ccb8..19060e7 100644
--- a/libavformat/bfi.c
+++ b/libavformat/bfi.c
@@ -132,6 +132,10 @@ static int bfi_read_packet(AVFormatContext * s, AVPacket * pkt)
         video_offset    = avio_rl32(pb);
         audio_size      = video_offset - audio_offset;
         bfi->video_size = chunk_size - video_offset;
+        if (audio_size < 0 || bfi->video_size < 0) {
+            av_log(s, AV_LOG_ERROR, "Invalid audio/video offsets or chunk size\n");
+            return AVERROR_INVALIDDATA;
+        }
 
         //Tossing an audio packet at the audio decoder.
         ret = av_get_packet(pb, pkt, audio_size);



More information about the ffmpeg-cvslog mailing list