Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Prevent regexp back-refs from sometimes matching when they shouldn't.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 23 Aug 2021 21:41:07 +0000 (17:41 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 23 Aug 2021 21:41:07 +0000 (17:41 -0400)
The recursion in cdissect() was careless about clearing match data
for capturing parentheses after rejecting a partial match.  This
could allow a later back-reference to succeed when by rights it
should fail for lack of a defined referent.

To fix, think a little more rigorously about what the contract
between different levels of cdissect's recursion needs to be.
With the right spec, we can fix this using fewer rather than more
resets of the match data; the key decision being that a failed
sub-match is now explicitly responsible for clearing any matches
it may have set.

There are enough other cross-checks and optimizations in the code
that it's not especially easy to exhibit this problem; usually, the
match will fail as-expected.  Plus, regexps that are even potentially
vulnerable are most likely user errors, since there's just not much
point in writing a back-ref that doesn't always have a referent.
These facts perhaps explain why the issue hasn't been detected,
even though it's almost certainly a couple of decades old.

Discussion: https://postgr.es/m/151435.1629733387@sss.pgh.pa.us

src/backend/regex/regexec.c
src/test/regress/expected/regex.out
src/test/regress/sql/regex.sql

index 47043badf773c6c814743c52c733a89401f7d3e6..34381ff8d9afbd8a06fecf32f6f6d3daf498c67d 100644 (file)
@@ -226,6 +226,8 @@ pg_regexec(regex_t *re,
    }
    else
        v->pmatch = pmatch;
+   if (v->nmatch > 0)
+       zapallsubs(v->pmatch, v->nmatch);
    v->details = details;
    v->start = (chr *) string;
    v->search_start = (chr *) string + search_start;
@@ -455,7 +457,6 @@ find(struct vars *v,
        return REG_OKAY;
 
    /* find submatches */
-   zapallsubs(v->pmatch, v->nmatch);
    return cdissect(v, v->g->tree, begin, end);
 }
 
@@ -566,7 +567,6 @@ cfindloop(struct vars *v,
                    break;      /* no match with this begin point, try next */
                MDEBUG(("tentative end %ld\n", LOFF(end)));
                /* Dissect the potential match to see if it really matches */
-               zapallsubs(v->pmatch, v->nmatch);
                er = cdissect(v, v->g->tree, begin, end);
                if (er == REG_OKAY)
                {
@@ -614,6 +614,8 @@ cfindloop(struct vars *v,
 
 /*
  * zapallsubs - initialize all subexpression matches to "no match"
+ *
+ * Note that p[0], the overall-match location, is not touched.
  */
 static void
 zapallsubs(regmatch_t *p,
@@ -685,8 +687,30 @@ subset(struct vars *v,
  * DFA and found that the proposed substring satisfies the DFA.  (We make
  * the caller do that because in concatenation and iteration nodes, it's
  * much faster to check all the substrings against the child DFAs before we
- * recurse.)  Also, caller must have cleared subexpression match data via
- * zaptreesubs (or zapallsubs at the top level).
+ * recurse.)
+ *
+ * A side-effect of a successful match is to save match locations for
+ * capturing subexpressions in v->pmatch[].  This is a little bit tricky,
+ * so we make the following rules:
+ * 1. Before initial entry to cdissect, all match data must have been
+ *    cleared (this is seen to by zapallsubs).
+ * 2. Before any recursive entry to cdissect, the match data for that
+ *    subexpression tree must be guaranteed clear (see zaptreesubs).
+ * 3. When returning REG_OKAY, each level of cdissect will have saved
+ *    any relevant match locations.
+ * 4. When returning REG_NOMATCH, each level of cdissect will guarantee
+ *    that its subexpression match locations are again clear.
+ * 5. No guarantees are made for error cases (i.e., other result codes).
+ * 6. When a level of cdissect abandons a successful sub-match, it will
+ *    clear that subtree's match locations with zaptreesubs before trying
+ *    any new DFA match or cdissect call for that subtree or any subtree
+ *    to its right (that is, any subtree that could have a backref into the
+ *    abandoned match).
+ * This may seem overly complicated, but it's difficult to simplify it
+ * because of the provision that match locations must be reset before
+ * any fresh DFA match (a rule that is needed to make dfa_backref safe).
+ * That means it won't work to just reset relevant match locations at the
+ * start of each cdissect level.
  */
 static int                     /* regexec return code */
 cdissect(struct vars *v,
@@ -804,6 +828,8 @@ ccondissect(struct vars *v,
                    MDEBUG(("successful\n"));
                    return REG_OKAY;
                }
+               /* Reset left's matches (right should have done so itself) */
+               zaptreesubs(v, t->left);
            }
            if (er != REG_NOMATCH)
                return er;
@@ -826,8 +852,6 @@ ccondissect(struct vars *v,
            return REG_NOMATCH;
        }
        MDEBUG(("%d: new midpoint %ld\n", t->id, LOFF(mid)));
-       zaptreesubs(v, t->left);
-       zaptreesubs(v, t->right);
    }
 
    /* can't get here */
@@ -882,6 +906,8 @@ crevcondissect(struct vars *v,
                    MDEBUG(("successful\n"));
                    return REG_OKAY;
                }
+               /* Reset left's matches (right should have done so itself) */
+               zaptreesubs(v, t->left);
            }
            if (er != REG_NOMATCH)
                return er;
@@ -904,8 +930,6 @@ crevcondissect(struct vars *v,
            return REG_NOMATCH;
        }
        MDEBUG(("%d: new midpoint %ld\n", t->id, LOFF(mid)));
-       zaptreesubs(v, t->left);
-       zaptreesubs(v, t->right);
    }
 
    /* can't get here */
@@ -1165,6 +1189,7 @@ citerdissect(struct vars *v,
 
        for (i = nverified + 1; i <= k; i++)
        {
+           /* zap any match data from a non-last iteration */
            zaptreesubs(v, t->left);
            er = cdissect(v, t->left, endpts[i - 1], endpts[i]);
            if (er == REG_OKAY)
@@ -1373,6 +1398,7 @@ creviterdissect(struct vars *v,
 
        for (i = nverified + 1; i <= k; i++)
        {
+           /* zap any match data from a non-last iteration */
            zaptreesubs(v, t->left);
            er = cdissect(v, t->left, endpts[i - 1], endpts[i]);
            if (er == REG_OKAY)
index 0923ad9b5b047e1979abc4938e6d8598342f9620..fccd91566cb1c39893d24e4a335e578bb013f714 100644 (file)
@@ -567,6 +567,19 @@ select 'a' ~ '()+\1';
  t
 (1 row)
 
+-- Test ancient oversight in when to apply zaptreesubs
+select 'abcdef' ~ '^(.)\1|\1.' as f;
+ f 
+---
+ f
+(1 row)
+
+select 'abadef' ~ '^((.)\2|..)\2' as f;
+ f 
+---
+ f
+(1 row)
+
 -- Error conditions
 select 'xyz' ~ 'x(\w)(?=\1)';  -- no backrefs in LACONs
 ERROR:  invalid regular expression: invalid backreference number
index a1742240c4bbb7b8c4abd9b14ad924feba393b42..762b3ae69b2b08e438ac724695555845268d23bc 100644 (file)
@@ -135,6 +135,10 @@ select 'a' ~ '.. ()|\1';
 select 'a' ~ '()*\1';
 select 'a' ~ '()+\1';
 
+-- Test ancient oversight in when to apply zaptreesubs
+select 'abcdef' ~ '^(.)\1|\1.' as f;
+select 'abadef' ~ '^((.)\2|..)\2' as f;
+
 -- Error conditions
 select 'xyz' ~ 'x(\w)(?=\1)';  -- no backrefs in LACONs
 select 'xyz' ~ 'x(\w)(?=(\1))';