mirror of
https://git.yoctoproject.org/poky
synced 2026-04-14 08:02:30 +02:00
ffmpeg: fix CVE-2020-22015
avformat/movenc: Check pal_size before use Fixes: assertion failure Fixes: out of array read Fixes: Ticket8190 Fixes: CVE-2020-22015 (From OE-Core rev: c10b49e2e8de02c1c6e6a57eab526ac9ebec066f) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> CVE: CVE-2020-22015 Upstream-Status: Backport [4c1afa292520329eecd1cc7631bc59a8cca95c46] Signed-off-by: Tony Tascioglu <tony.tascioglu@windriver.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2bb72f8551
commit
22b32a4ed1
@@ -0,0 +1,44 @@
|
||||
From dce5d2c2ee991f8cd96ab74d51a2d1a134a1a645 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Niedermayer <michael@niedermayer.cc>
|
||||
Date: Sat, 29 May 2021 09:22:27 +0200
|
||||
Subject: [PATCH 3/5] avformat/movenc: Check pal_size before use
|
||||
|
||||
Fixes: assertion failure
|
||||
Fixes: out of array read
|
||||
Fixes: Ticket8190
|
||||
Fixes: CVE-2020-22015
|
||||
|
||||
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
|
||||
|
||||
|
||||
CVE: CVE-2020-22015
|
||||
Upstream-Status: Backport [4c1afa292520329eecd1cc7631bc59a8cca95c46]
|
||||
|
||||
Signed-off-by: Tony Tascioglu <tony.tascioglu@windriver.com>
|
||||
---
|
||||
libavformat/movenc.c | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
|
||||
index c34d86522a..9603704083 100644
|
||||
--- a/libavformat/movenc.c
|
||||
+++ b/libavformat/movenc.c
|
||||
@@ -2094,11 +2094,13 @@ static int mov_write_video_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContex
|
||||
avio_wb16(pb, 0x18); /* Reserved */
|
||||
|
||||
if (track->mode == MODE_MOV && track->par->format == AV_PIX_FMT_PAL8) {
|
||||
- int pal_size = 1 << track->par->bits_per_coded_sample;
|
||||
- int i;
|
||||
+ int pal_size, i;
|
||||
avio_wb16(pb, 0); /* Color table ID */
|
||||
avio_wb32(pb, 0); /* Color table seed */
|
||||
avio_wb16(pb, 0x8000); /* Color table flags */
|
||||
+ if (track->par->bits_per_coded_sample < 0 || track->par->bits_per_coded_sample > 8)
|
||||
+ return AVERROR(EINVAL);
|
||||
+ pal_size = 1 << track->par->bits_per_coded_sample;
|
||||
avio_wb16(pb, pal_size - 1); /* Color table size (zero-relative) */
|
||||
for (i = 0; i < pal_size; i++) {
|
||||
uint32_t rgb = track->palette[i];
|
||||
--
|
||||
2.32.0
|
||||
|
||||
@@ -28,6 +28,7 @@ SRC_URI = "https://www.ffmpeg.org/releases/${BP}.tar.xz \
|
||||
file://0001-libavutil-include-assembly-with-full-path-from-sourc.patch \
|
||||
file://fix-CVE-2020-20446.patch \
|
||||
file://fix-CVE-2020-20453.patch \
|
||||
file://fix-CVE-2020-22015.patch \
|
||||
"
|
||||
SRC_URI[sha256sum] = "46e4e64f1dd0233cbc0934b9f1c0da676008cad34725113fb7f802cfa84ccddb"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user