mirror of
https://git.yoctoproject.org/poky
synced 2026-08-20 00:49:34 +02:00
gawk: Fix CVE-2026-40468
This patch applies the upstream fix as referenced in [2], using the commit shown in [1]. [1] https://cgit.git.savannah.gnu.org/cgit/gawk.git/commit/?id=062f2f2581b991362c046f7f2e238ffa34e6f8c7 [2] https://nvd.nist.gov/vuln/detail/CVE-2026-40468 (From OE-Core rev: a149dbcad38f6f838db303b76fffbfe68052e74e) Signed-off-by: Darsh Kelaiya <dkelaiya@cisco.com> Reviewed-by: Leonid Iziumtsev <leonid.iziumtsev@est.tech> 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
a59438acc8
commit
e84e827496
65
meta/recipes-extended/gawk/gawk/CVE-2026-40468.patch
Normal file
65
meta/recipes-extended/gawk/gawk/CVE-2026-40468.patch
Normal file
@@ -0,0 +1,65 @@
|
||||
From e281dfa04afc4660419ad69c9f24bc6b4067f8d8 Mon Sep 17 00:00:00 2001
|
||||
From: "Arnold D. Robbins" <arnold@skeeve.com>
|
||||
Date: Sat, 4 Apr 2026 21:45:58 +0300
|
||||
Subject: [PATCH] Minor integer overflow fixes.
|
||||
|
||||
CVE: CVE-2026-40468
|
||||
Upstream-Status: Backport [https://cgit.git.savannah.gnu.org/cgit/gawk.git/commit/?id=062f2f2581b991362c046f7f2e238ffa34e6f8c7]
|
||||
|
||||
Backport Changes:
|
||||
- Adapt the parse_escape() type change for gawk 5.3.0, where i is
|
||||
declared int instead of long.
|
||||
|
||||
(cherry picked from commit 062f2f2581b991362c046f7f2e238ffa34e6f8c7)
|
||||
Signed-off-by: Darsh Kelaiya <dkelaiya@cisco.com>
|
||||
---
|
||||
ChangeLog | 8 ++++++++
|
||||
builtin.c | 2 +-
|
||||
node.c | 2 +-
|
||||
3 files changed, 10 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/ChangeLog b/ChangeLog
|
||||
index 6bc88ebb..e691b241 100644
|
||||
--- a/ChangeLog
|
||||
+++ b/ChangeLog
|
||||
@@ -1,3 +1,11 @@
|
||||
+2026-04-04 Arnold D. Robbins <arnold@skeeve.com>
|
||||
+
|
||||
+ * builtin.c (do_sub): Make `sofar' be size_t to avoid
|
||||
+ integer overflows. Thanks to Michał Majchrowicz
|
||||
+ <mmajchrowicz@afine.com> for the report.
|
||||
+ * node.c (parse_escape): Change `i' to int64_t to avoid
|
||||
+ overflows. Thanks to ASan with gcc -m32.
|
||||
+
|
||||
2026-04-03 Arnold D. Robbins <arnold@skeeve.com>
|
||||
|
||||
* io.c (do_getline_redir): Don't DEREF redir_exp too early.
|
||||
diff --git a/builtin.c b/builtin.c
|
||||
index ba3459db..80ab6069 100644
|
||||
--- a/builtin.c
|
||||
+++ b/builtin.c
|
||||
@@ -2985,7 +2985,7 @@ do_sub(int nargs, unsigned int flags)
|
||||
char *repl;
|
||||
char *replend;
|
||||
size_t repllen;
|
||||
- int sofar;
|
||||
+ size_t sofar;
|
||||
int ampersands;
|
||||
int matches = 0;
|
||||
Regexp *rp;
|
||||
diff --git a/node.c b/node.c
|
||||
index f08a57d7..12a8fab4 100644
|
||||
--- a/node.c
|
||||
+++ b/node.c
|
||||
@@ -571,7 +571,7 @@ parse_escape(const char **string_ptr, const char **result, size_t *nbytes)
|
||||
static char buf[MB_LEN_MAX];
|
||||
enum escape_results retval = ESCAPE_OK;
|
||||
int c = *(*string_ptr)++;
|
||||
- int i;
|
||||
+ int64_t i;
|
||||
int count;
|
||||
int j;
|
||||
const char *start;
|
||||
--
|
||||
2.44.4
|
||||
|
||||
@@ -23,6 +23,7 @@ SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
file://0001-Fix-some-C23-compilatio-issues.patch \
|
||||
file://CVE-2026-40467.patch \
|
||||
file://CVE-2026-40468.patch \
|
||||
"
|
||||
|
||||
SRC_URI[sha256sum] = "378f8864ec21cfceaa048f7e1869ac9b4597b449087caf1eb55e440d30273336"
|
||||
|
||||
Reference in New Issue
Block a user