From 86f61cc4134581bf709933fc8b5fa90bcdbe9d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 1 Dec 2015 12:33:23 +0100 Subject: [PATCH] Fix crash in regexec() if REG_STARTEND option is set and pmatch argument is NULL --- ...egexec-with-pmatch-NULL-and-REG_STAR.patch | 28 +++++++++++++++++++ pcre.spec | 6 ++++ 2 files changed, 34 insertions(+) create mode 100644 pcre-8.38-Give-error-for-regexec-with-pmatch-NULL-and-REG_STAR.patch diff --git a/pcre-8.38-Give-error-for-regexec-with-pmatch-NULL-and-REG_STAR.patch b/pcre-8.38-Give-error-for-regexec-with-pmatch-NULL-and-REG_STAR.patch new file mode 100644 index 0000000..3f8a448 --- /dev/null +++ b/pcre-8.38-Give-error-for-regexec-with-pmatch-NULL-and-REG_STAR.patch @@ -0,0 +1,28 @@ +From 108377b836fc29a84f5286287629d96549b1c777 Mon Sep 17 00:00:00 2001 +From: ph10 +Date: Sun, 29 Nov 2015 17:38:25 +0000 +Subject: [PATCH 3/5] Give error for regexec with pmatch=NULL and REG_STARTEND + set. +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1614 2f5784b3-3f2a-0410-8824-cb99058d5e15 + +Petr Písař: Ported to 8.38. + +diff --git a/pcreposix.c b/pcreposix.c +index f024423..dcc13ef 100644 +--- a/pcreposix.c ++++ b/pcreposix.c +@@ -364,6 +364,7 @@ start location rather than being passed as a PCRE "starting offset". */ + + if ((eflags & REG_STARTEND) != 0) + { ++ if (pmatch == NULL) return REG_INVARG; + so = pmatch[0].rm_so; + eo = pmatch[0].rm_eo; + } +-- +2.4.3 + diff --git a/pcre.spec b/pcre.spec index 2a6d453..e53b810 100644 --- a/pcre.spec +++ b/pcre.spec @@ -41,6 +41,9 @@ Patch3: pcre-8.38-Fix-negated-POSIX-class-within-negated-overall-class.patch # qualifier with auto-callouts, upstream bug #1724, # fixed in upstream after 8.38 Patch4: pcre-8.38-Fix-bug-for-isolated-E-between-an-item-and-its-quali.patch +# Fix crash in regexec() if REG_STARTEND option is set and pmatch argument is +# NULL, upstream bug #1727, fixed in upstream after 8.38 +Patch5: pcre-8.38-Give-error-for-regexec-with-pmatch-NULL-and-REG_STAR.patch BuildRequires: readline-devel BuildRequires: autoconf BuildRequires: automake @@ -94,6 +97,7 @@ Utilities demonstrating PCRE capabilities like pcregrep or pcretest. %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 # Because of rpath patch libtoolize --copy --force autoreconf -vif @@ -170,6 +174,8 @@ make %{?_smp_mflags} check VERBOSE=yes (upstream bug #1732) - Fix compiling expressions with an isolated \E between an item and its qualifier with auto-callouts (upstream bug #1724) +- Fix crash in regexec() if REG_STARTEND option is set and pmatch argument is + NULL (upstream bug #1727) * Fri Nov 27 2015 Petr Pisar - 8.38-2 - Fix compiling comments with auto-callouts