[Pcre-svn] [450] code/trunk: Fix bad behaviour for isolated …

Inizio della pagina
Delete this message
Autore: Subversion repository
Data:  
To: pcre-svn
Oggetto: [Pcre-svn] [450] code/trunk: Fix bad behaviour for isolated \E before qualifier with auto-callout.
Revision: 450
          http://www.exim.org/viewvc/pcre2?view=rev&revision=450
Author:   ph10
Date:     2015-11-27 17:34:36 +0000 (Fri, 27 Nov 2015)
Log Message:
-----------
Fix bad behaviour for isolated \E before qualifier with auto-callout.


Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/src/pcre2_compile.c
    code/trunk/testdata/testinput2
    code/trunk/testdata/testoutput2


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2015-11-27 17:14:51 UTC (rev 449)
+++ code/trunk/ChangeLog    2015-11-27 17:34:36 UTC (rev 450)
@@ -340,7 +340,11 @@
 101. Further to 97 above, negated classes such as [^[:^ascii:]\d] were also not 
 working correctly in UCP mode.


+102. Similar to 99 above, if an isolated \E was present between an item and its
+qualifier when PCRE2_AUTO_CALLOUT was set, pcre2_compile() misbehaved. This bug
+was found by the LLVM fuzzer.

+
Version 10.20 30-June-2015
--------------------------


Modified: code/trunk/src/pcre2_compile.c
===================================================================
--- code/trunk/src/pcre2_compile.c    2015-11-27 17:14:51 UTC (rev 449)
+++ code/trunk/src/pcre2_compile.c    2015-11-27 17:34:36 UTC (rev 450)
@@ -3947,9 +3947,10 @@
     last_code = code;
     }


- /* If in \Q...\E, check for the end; if not, we have a literal */
+ /* If in \Q...\E, check for the end; if not, we have a literal. If not in
+ \Q...\E, an isolated \E is ignored. */

-  if (inescq && (c != CHAR_NULL || ptr < cb->end_pattern))
+  if (c != CHAR_NULL || ptr < cb->end_pattern)
     {
     if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E)
       {
@@ -3957,7 +3958,7 @@
       ptr++;
       continue;
       }
-    else
+    else if (inescq)
       {
       if (previous_callout != NULL)
         {
@@ -3972,7 +3973,6 @@
         }
       goto NORMAL_CHAR;
       }
-    /* Control does not reach here. */
     }


/* In extended mode, skip white space and comments. We need a loop in order

Modified: code/trunk/testdata/testinput2
===================================================================
--- code/trunk/testdata/testinput2    2015-11-27 17:14:51 UTC (rev 449)
+++ code/trunk/testdata/testinput2    2015-11-27 17:34:36 UTC (rev 450)
@@ -4697,4 +4697,6 @@


/L(?#(|++<!(2)?/B,no_auto_possess,auto_callout

+/(A*)\E+/B,auto_callout
+
# End of testinput2

Modified: code/trunk/testdata/testoutput2
===================================================================
--- code/trunk/testdata/testoutput2    2015-11-27 17:14:51 UTC (rev 449)
+++ code/trunk/testdata/testoutput2    2015-11-27 17:34:36 UTC (rev 450)
@@ -14942,4 +14942,18 @@
         End
 ------------------------------------------------------------------


+/(A*)\E+/B,auto_callout
+------------------------------------------------------------------
+        Bra
+        Callout 255 0 7
+        SCBra 1
+        Callout 255 1 2
+        A*
+        Callout 255 3 0
+        KetRmax
+        Callout 255 7 0
+        Ket
+        End
+------------------------------------------------------------------
+
 # End of testinput2