14afc6
From 897d1f7fd515b828e4b198d8b8bef76c6faf03ed Mon Sep 17 00:00:00 2001
14afc6
From: John Lightsey <jd@cpanel.net>
14afc6
Date: Wed, 20 Nov 2019 20:02:45 -0600
14afc6
Subject: [PATCH] regcomp.c: Prevent integer overflow from nested regex
14afc6
 quantifiers.
14afc6
MIME-Version: 1.0
14afc6
Content-Type: text/plain; charset=UTF-8
14afc6
Content-Transfer-Encoding: 8bit
14afc6
14afc6
(CVE-2020-10543) On 32bit systems the size calculations for nested regular
14afc6
expression quantifiers could overflow causing heap memory corruption.
14afc6
14afc6
Fixes: Perl/perl5-security#125
14afc6
(cherry picked from commit bfd31397db5dc1a5c5d3e0a1f753a4f89a736e71)
14afc6
Signed-off-by: Petr Písař <ppisar@redhat.com>
14afc6
---
14afc6
 regcomp.c | 6 ++++++
14afc6
 1 file changed, 6 insertions(+)
14afc6
14afc6
diff --git a/regcomp.c b/regcomp.c
14afc6
index 93c8d98fbb..5f86be8086 100644
14afc6
--- a/regcomp.c
14afc6
+++ b/regcomp.c
14afc6
@@ -5489,6 +5489,12 @@ S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
14afc6
 				  RExC_precomp)));
14afc6
                 }
14afc6
 
14afc6
+                if ( ( minnext > 0 && mincount >= SSize_t_MAX / minnext )
14afc6
+                    || min >= SSize_t_MAX - minnext * mincount )
14afc6
+                {
14afc6
+                    FAIL("Regexp out of space");
14afc6
+                }
14afc6
+
14afc6
 		min += minnext * mincount;
14afc6
 		is_inf_internal |= deltanext == SSize_t_MAX
14afc6
                          || (maxcount == REG_INFTY && minnext + deltanext > 0);
14afc6
-- 
14afc6
2.25.4
14afc6