[FFmpeg-cvslog] avformat/mpeg: Check len in mpegps_probe()

Michael Niedermayer git at videolan.org
Tue Jul 2 23:01:20 EEST 2024


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Fri Jun  7 00:19:01 2024 +0200| [ca237a841e9e78ac02694124d81ff78c74b0bf72] | committer: Michael Niedermayer

avformat/mpeg: Check len in mpegps_probe()

Fixes: CID1473590 Untrusted loop bound

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 libavformat/mpeg.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 5556861e1c..c3dff3e4ea 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -76,6 +76,9 @@ static int mpegps_probe(const AVProbeData *p)
             int pes  = endpes <= i && check_pes(p->buf + i, p->buf + p->buf_size);
             int pack = check_pack_header(p->buf + i);
 
+            if (len > INT_MAX - i)
+                break;
+
             if (code == SYSTEM_HEADER_START_CODE)
                 sys++;
             else if (code == PACK_START_CODE && pack)



More information about the ffmpeg-cvslog mailing list