mirror of
https://git.yoctoproject.org/poky
synced 2026-07-29 13:17:44 +02:00
bzip2: Fix CVE-2026-42250
This patch applies the upstream fix as referenced in [1], using the commit shown in [2]. [1] https://nvd.nist.gov/vuln/detail/CVE-2026-42250 [2] https://sourceware.org/cgit/bzip2/commit/?id=35d122a3df8b0cc4082a4d89fdc6ee99f375fe67 (From OE-Core rev: 2ae360e0f03c70f376226f4cbb5fd7d61b7bae99) Signed-off-by: Jaipaul Cheernam <jaipaul.cheernam@est.tech> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit bf39a3c0497023e96de11444579ffef31f968bcd) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
This commit is contained in:
committed by
Paul Barker
parent
0c2fa146c5
commit
515c8e27b7
35
meta/recipes-extended/bzip2/bzip2/CVE-2026-42250.patch
Normal file
35
meta/recipes-extended/bzip2/bzip2/CVE-2026-42250.patch
Normal file
@@ -0,0 +1,35 @@
|
||||
From 71bf61d2e664c754ae5b1eb04018c8eaf5f99ae3 Mon Sep 17 00:00:00 2001
|
||||
From: Mark Wielaard <mark@klomp.org>
|
||||
Date: Thu, 28 May 2026 16:15:45 +0200
|
||||
Subject: [PATCH] bzip2recover: Make sure to not process more than
|
||||
BZ_MAX_HANDLED_BLOCKS
|
||||
|
||||
There is an off-by-one in the check before calling tooManyBlocks. This
|
||||
causes the scanning loop to run one more time and cause a possible
|
||||
read or write one past the global bStart, bEnd, rbStart and rbEnd
|
||||
buffers. There are no known exploits of this issue and you will need
|
||||
to compile with something like gcc -fsanitize=address (ASAN
|
||||
AddressSanitizer) to observe the faulty read/write.
|
||||
|
||||
This has been assigned CVE-2026-42250.
|
||||
|
||||
CVE: CVE-2026-42250
|
||||
Upstream-Status: Backport [https://sourceware.org/cgit/bzip2/commit/?id=35d122a3df8b0cc4082a4d89fdc6ee99f375fe67]
|
||||
Signed-off-by: Jaipaul Cheernam <jaipaul.cheernam@est.tech>
|
||||
---
|
||||
bzip2recover.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/bzip2recover.c b/bzip2recover.c
|
||||
index a8131e0..4b1c219 100644
|
||||
--- a/bzip2recover.c
|
||||
+++ b/bzip2recover.c
|
||||
@@ -402,7 +402,7 @@ Int32 main ( Int32 argc, Char** argv )
|
||||
rbEnd[rbCtr] = bEnd[currBlock];
|
||||
rbCtr++;
|
||||
}
|
||||
- if (currBlock >= BZ_MAX_HANDLED_BLOCKS)
|
||||
+ if (currBlock >= BZ_MAX_HANDLED_BLOCKS - 1)
|
||||
tooManyBlocks(BZ_MAX_HANDLED_BLOCKS);
|
||||
currBlock++;
|
||||
|
||||
@@ -26,6 +26,7 @@ SRC_URI = "https://sourceware.org/pub/${BPN}/${BPN}-${PV}.tar.gz \
|
||||
file://configure.ac;subdir=${BP} \
|
||||
file://Makefile.am;subdir=${BP} \
|
||||
file://run-ptest \
|
||||
file://CVE-2026-42250.patch;subdir=${BP} \
|
||||
"
|
||||
SRC_URI[md5sum] = "67e051268d0c475ea773822f7500d0e5"
|
||||
SRC_URI[sha256sum] = "ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269"
|
||||
|
||||
Reference in New Issue
Block a user