git.postgresql.org Git - postgresql.git/commit

git projects / postgresql.git / commit
? search:
summary | shortlog | log | commit | commitdiff | tree
(parent: c5530d8) | patch
Fix semantics of regular expression back-references.
Tue, 2 Mar 2021 16:34:53 +0000 (11:34 -0500)
Tue, 2 Mar 2021 16:34:53 +0000 (11:34 -0500)
commit 4aea704a5bfd4b5894a268499369ccab89940c9c
Fix semantics of regular expression back-references.

POSIX defines the behavior of back-references thus:

The back-reference expression '\n' shall match the same (possibly
empty) string of characters as was matched by a subexpression
enclosed between "\(" and "\)" preceding the '\n'.

As far as I can see, the back-reference is supposed to consider only
the data characters matched by the referenced subexpression. However,
because our engine copies the NFA constructed from the referenced
subexpression, it effectively enforces any constraints therein, too.
As an example, '(^.)1円' ought to match 'xx', or any other string
starting with two occurrences of the same character; but in our code
it does not, and indeed can't match anything, because the '^' anchor
constraint is included in the backref's copied NFA. If POSIX intended
that, you'd think they'd mention it. Perl for one doesn't act that
way, so it's hard to conclude that this isn't a bug.

Fix by modifying the backref's NFA immediately after it's copied from
the reference, replacing all constraint arcs by EMPTY arcs so that the
constraints are treated as automatically satisfied. This still allows
us to enforce matching rules that depend only on the data characters;
for example, in '(^\d+).*1円' the NFA matching step will still know
that the backref can only match strings of digits.

Perhaps surprisingly, this change does not affect the results of any
of a rather large corpus of real-world regexes. Nonetheless, I would
not consider back-patching it, since it's a clear compatibility break.

Patch by me, reviewed by Joel Jacobson

Discussion: https://postgr.es/m/661609.1614560029@sss.pgh.pa.us
doc/src/sgml/func.sgml diff | blob | blame | history
src/backend/regex/regc_nfa.c diff | blob | blame | history
src/backend/regex/regcomp.c diff | blob | blame | history
src/test/modules/test_regex/expected/test_regex.out diff | blob | blame | history
src/test/modules/test_regex/sql/test_regex.sql diff | blob | blame | history
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /