summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files/0001-CVE-2024-56406-Heap-buffer-overflow-with-tr.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/files/0001-CVE-2024-56406-Heap-buffer-overflow-with-tr.patch')
-rw-r--r--meta/recipes-devtools/perl/files/0001-CVE-2024-56406-Heap-buffer-overflow-with-tr.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/files/0001-CVE-2024-56406-Heap-buffer-overflow-with-tr.patch b/meta/recipes-devtools/perl/files/0001-CVE-2024-56406-Heap-buffer-overflow-with-tr.patch
new file mode 100644
index 0000000000..377ef95f12
--- /dev/null
+++ b/meta/recipes-devtools/perl/files/0001-CVE-2024-56406-Heap-buffer-overflow-with-tr.patch
@@ -0,0 +1,30 @@
1From 87f42aa0e0096e9a346c9672aa3a0bd3bef8c1dd Mon Sep 17 00:00:00 2001
2From: Karl Williamson <khw@cpan.org>
3Date: Wed, 18 Dec 2024 18:25:29 -0700
4Subject: [PATCH] CVE-2024-56406: Heap-buffer-overflow with tr//
5
6This was due to underallocating needed space. If the translation forces
7something to become UTF-8 that is initially bytes, that UTF-8 could
8now require two bytes where previously a single one would do.
9
10(cherry picked from commit f93109c8a6950aafbd7488d98e112552033a3686)
11
12CVE: CVE-2024-56406
13Upstream-Status: Backport [https://github.com/Perl/perl5/commit/87f42aa0e0096e9a346c9672aa3a0bd3bef8c1dd]
14Signed-off-by: Peter Marko <peter.marko@siemens.com>
15---
16 op.c | 1 +
17 1 file changed, 1 insertion(+)
18
19diff --git a/op.c b/op.c
20index 69ff030e88..298b292633 100644
21--- a/op.c
22+++ b/op.c
23@@ -7515,6 +7515,7 @@ S_pmtrans(pTHX_ OP *o, OP *expr, OP *repl)
24 * same time. But otherwise one crosses before the other */
25 if (t_cp < 256 && r_cp_end > 255 && r_cp != t_cp) {
26 can_force_utf8 = TRUE;
27+ max_expansion = MAX(2, max_expansion);
28 }
29 }
30