As those who've been paying attention to it know, our regular expression
library is based on code originally developed by Henry Spencer and
contributed by him to the Tcl project. We adopted it out of Tcl in
2003. Henry intended to package the code as a standalone library as
well, but that never happened --- AFAICT, Henry dropped off the net
around 2002, and I have no idea what happened to him.
Since then, we've been acting as though the Tcl guys are upstream
maintainers for the regex code, but in point of fact there does not
appear to be anybody there with more than the first clue about that
code. This was brought home to me a few days ago when I started talking
to them about possible ways to fix the quantified-backrefs problem that
depesz recently complained of (which turns out to have been an open bug
in their tracker since 2005). As soon as I betrayed any indication of
knowing the difference between a DFA and an NFA, they offered me commit
privileges :-(. And they haven't fixed any other significant bugs in
the engine in years, either.
So I think it's time to face facts and accept that Tcl are not a useful
upstream for the regex code. And we can't just let it sit quietly,
because we have bugs to fix (at least the one) as well as enhancement
requests such as the nearby discussion about recognizing high Unicode
code points as letters.
A radical response to this would be to drop the Spencer regex engine and
use something else instead --- probably PCRE, because there are not all
that many alternatives out there. I do not care much for this idea
though. It would be a significant amount of work in itself, and there's
no real guarantee that PCRE will continue to be maintained either, and
there would be some user-visible compatibility issues because the regex
flavor is a bit different. A larger point is that it'd be a real shame
for the Spencer regex engine to die off, because it is in fact one of
the best pieces of regex technology on the planet. See Jeffrey Friedl's
"Mastering Regular Expressions" (O'Reilly) --- at least, that's what he
thought in the 2002 edition I have, and it's unlikely that things have
changed much.
So I'm feeling that we gotta suck it up and start acting like we are
the lead maintainers for this code, not just consumers.
Another possible long-term answer is to finish the work Henry never did,
that is make the code into a standalone library. That would make it
available to more projects and perhaps attract other people to help
maintain it. However, that looks like a lot of work too, with distant
and uncertain payoff.
Comments, other ideas?
regards, tom lane
[PostgreSQL-Hackers] Future of our regular expression code
| Tweet |
|
Search Discussions
-
Simon Riggs at Feb 18, 2012 at 6:35 pm ⇧
By "we", I take it you mean you personally?On Sat, Feb 18, 2012 at 6:15 PM, Tom Lane wrote:
So I'm feeling that we gotta suck it up and start acting like we are
the lead maintainers for this code, not just consumers.
There are many requests I might make for allocations of your time and
that wouldn't even be a lower priority item on such a list. Of course,
your time allocation is not my affair, so please take my words as a
suggestion and a compliment.
Do we have volunteers that might save Tom from taking on this task?
It's not something that requires too much knowledge and experience of
PostgreSQL, so is an easier task for a newcomer.
-
Stephen Frost at Feb 18, 2012 at 7:26 pm ⇧
I'm pretty sure he meant the PG project, and I'd agree with him- we're* Simon Riggs (simon@2ndQuadrant.com) wrote:On Sat, Feb 18, 2012 at 6:15 PM, Tom Lane wrote:By "we", I take it you mean you personally?
So I'm feeling that we gotta suck it up and start acting like we are
the lead maintainers for this code, not just consumers.
going to have to do it if no one else is. I suspect the Tcl folks will
be happy to look at incorporating anything we fix, if they can, but it
doesn't sound like they'll be able to help with fixing things much.Do we have volunteers that might save Tom from taking on this task?Sure, it doesn't require knowledge of PG, but I dare say there aren't
It's not something that requires too much knowledge and experience of
PostgreSQL, so is an easier task for a newcomer.
very many newcomers who are going to walk in knowing how to manage
complex regex code.. I haven't seen too many who can update gram.y,
much less make our regex code handle Unicode better. I'm all for
getting other people to help with the code, of course, but I wouldn't
hold my breath and leave existing bugs open on the hopes that someone's
gonna show up.
Thanks,
Stephen
-
Tom Lane at Feb 18, 2012 at 7:52 pm ⇧
Yeah ... if you *don't* know the difference between a DFA and an NFA,Stephen Frost writes:
* Simon Riggs (simon@2ndQuadrant.com) wrote:Do we have volunteers that might save Tom from taking on this task?Sure, it doesn't require knowledge of PG, but I dare say there aren't
It's not something that requires too much knowledge and experience of
PostgreSQL, so is an easier task for a newcomer.
very many newcomers who are going to walk in knowing how to manage
complex regex code.. I haven't seen too many who can update gram.y,
much less make our regex code handle Unicode better. I'm all for
getting other people to help with the code, of course, but I wouldn't
hold my breath and leave existing bugs open on the hopes that someone's
gonna show up.
you're likely to find yourself in over your head. Having said that,
this is eminently learnable stuff and pretty self-contained, so somebody
who had the time and interest could make themselves into an expert in
a reasonable amount of time. I'm not really eager to become the
project's regex guru, but only because I have ninety-nine other things
to do not because I don't find it interesting. Right at the moment I'm
probably far enough up the learning curve that I can fix the backref
problem faster than anyone else, so I'm kind of inclined to go do that.
But I'd be entirely happy to let someone else become the lead hacker in
this area going forward. What we can't do is just pretend that it
doesn't need attention.
In the long run I do wish that Spencer's code would become a standalone
package and have more users than just us and Tcl, but that is definitely
work I don't have time for now. I think somebody would need to commit
significant amounts of time over multiple years to give it any real hope
of success.
One immediate consequence of deciding that we are lead maintainers and
not just consumers is that we should put in some regression tests,
instead of taking the attitude that the Tcl guys are in charge of that.
I have a head cold today and am not firing on enough cylinders to do
anything actually complicated, so I was thinking of spending the
afternoon transliterating the Tcl regex test cases into SQL as a
starting point.
regards, tom lane
-
Simon Riggs at Feb 18, 2012 at 8:13 pm ⇧
Having just had that brand of virus, I'd skip it and take the timeOn Sat, Feb 18, 2012 at 7:52 PM, Tom Lane wrote:
One immediate consequence of deciding that we are lead maintainers and
not just consumers is that we should put in some regression tests,
instead of taking the attitude that the Tcl guys are in charge of that.
I have a head cold today and am not firing on enough cylinders to do
anything actually complicated, so I was thinking of spending the
afternoon transliterating the Tcl regex test cases into SQL as a
starting point.
off, like I should have.
Translating the test cases is a great way in for a volunteer, so
please leave a few easy things to get people started on the road to
maintaining that.
-
Vik Reykja at Feb 18, 2012 at 8:16 pm ⇧
I would be willing to have a go at translating test cases. I do not (yet)On Sat, Feb 18, 2012 at 21:04, Simon Riggs wrote:On Sat, Feb 18, 2012 at 7:52 PM, Tom Lane wrote:Having just had that brand of virus, I'd skip it and take the time
One immediate consequence of deciding that we are lead maintainers and
not just consumers is that we should put in some regression tests,
instead of taking the attitude that the Tcl guys are in charge of that.
I have a head cold today and am not firing on enough cylinders to do
anything actually complicated, so I was thinking of spending the
afternoon transliterating the Tcl regex test cases into SQL as a
starting point.
off, like I should have.
Translating the test cases is a great way in for a volunteer, so
please leave a few easy things to get people started on the road to
maintaining that.
have the C knowledge to maintain the regex code, though.
-
Tom Lane at Feb 18, 2012 at 8:37 pm ⇧
Sure, have at it. I was thinking that we should make a new regex.sqlVik Reykja writes:On Sat, Feb 18, 2012 at 21:04, Simon Riggs wrote:I would be willing to have a go at translating test cases. I do not (yet)
Translating the test cases is a great way in for a volunteer, so
please leave a few easy things to get people started on the road to
maintaining that.
have the C knowledge to maintain the regex code, though.
test file for any cases that are locale-independent. If they have any
that are dependent on recognizing non-ASCII characters as letters,
we could perhaps drop those into collate.linux.utf8.sql --- note that
we might need my draft patch from yesterday before anything outside the
LATIN1 character set would pass.
regards, tom lane
-
Vik Reykja at Mar 10, 2012 at 11:12 am ⇧
On Sat, Feb 18, 2012 at 21:16, Vik Reykja wrote:
I would be willing to have a go at translating test cases. I do not (yet)
have the C knowledge to maintain the regex code, though.
I got suddenly swamped and forgot I had signed up for this. I'm still
pretty swamped and I would like these regression tests to be in for 9.2 so
if someone else would like to pick them up, I would be grateful.
If they're still not done by the time I resurface, I will attack them again.
-
Tom Lane at Mar 10, 2012 at 4:27 pm ⇧
FWIW, I spent a few minutes looking at the Tcl regression tests andVik Reykja writes:On Sat, Feb 18, 2012 at 21:16, Vik Reykja wrote:I got suddenly swamped and forgot I had signed up for this. I'm still
I would be willing to have a go at translating test cases. I do not (yet)
have the C knowledge to maintain the regex code, though.
pretty swamped and I would like these regression tests to be in for 9.2 so
if someone else would like to pick them up, I would be grateful.
realized that they are not in a form that's tremendously useful to us.
What they are, unsurprisingly, are Tcl scripts, and a lot of the
specific test cases are couched as calls to special-purpose Tcl
functions. I tried inserting some hooks that would print out the
arguments/results of the underlying regexp and regsub calls, but didn't
get far (my Tcl is way too rusty :-(). I also found that quite a few of
the test cases are concerned with features that are not accessible, or
at least not accessible in the same way, from our SQL functions. Those
test cases would still be worthwhile for a standalone library package,
but they won't be much use in a Postgres regression test.
regards, tom lane
-
Dimitri Fontaine at Feb 18, 2012 at 11:12 pm ⇧
So, here's a paper I found very nice to get started into this subject:Tom Lane writes:
Yeah ... if you *don't* know the difference between a DFA and an NFA,
you're likely to find yourself in over your head. Having said that,
http://swtch.com/~rsc/regexp/regexp1.html
If anyone's interested into becoming our PostgreSQL regexp hero and
still needs a good kicker, I would recommend starting here :)
I see this paper mention the regexp code from Plan9, which supports both
UTF8 and other muti-byte encodings, and is released as a library under
the MIT licence:
http://swtch.com/plan9port/unix/
Regards,
-
Tom Lane at Feb 18, 2012 at 11:55 pm ⇧
Yeah, I just found that this afternoon myself; it's a great intro.Dimitri Fontaine writes:
Tom Lane <tgl@sss.pgh.pa.us> writes:Yeah ... if you *don't* know the difference between a DFA and an NFA,So, here's a paper I found very nice to get started into this subject:
you're likely to find yourself in over your head. Having said that,
http://swtch.com/~rsc/regexp/regexp1.html
If you follow the whole sequence of papers (there are 4) you'll find out
that this guy built a new regexp engine for Google, and these papers are
basically introducing/defending its design. It turns out they've
released it under a BSD-ish license, so for about half a minute I was
thinking there might be a new contender for something we could adopt.
But there turn out to be at least two killer reasons why we won't:
* it's in C++ not C
* it doesn't support backrefs, as well as a few other features that
maybe aren't as interesting but still would represent compatibility
gotchas if they went away.
Too bad. But the papers are well worth reading. One thing I took away
from them is that it's possible to do capturing parens, though not
backrefs, without back-tracking. Spencer's code treats both of those
features as "messy" (ie, slow, because they force use of the NFA-style
backtracking search code). So there might be reason to reimplement
the parens-but-no-backrefs case using some ideas from these papers.
regards, tom lane
-
Marko Kreen at Feb 19, 2012 at 12:25 am ⇧
Another interesting library, technology-wise, is libtre:On Sun, Feb 19, 2012 at 1:55 AM, Tom Lane wrote:
Dimitri Fontaine <dimitri@2ndQuadrant.fr> writes:Tom Lane <tgl@sss.pgh.pa.us> writes:Yeah, I just found that this afternoon myself; it's a great intro.Yeah ... if you *don't* know the difference between a DFA and an NFA,So, here's a paper I found very nice to get started into this subject:
you're likely to find yourself in over your head. Having said that,
http://swtch.com/~rsc/regexp/regexp1.html
If you follow the whole sequence of papers (there are 4) you'll find out
that this guy built a new regexp engine for Google, and these papers are
basically introducing/defending its design. It turns out they've
released it under a BSD-ish license, so for about half a minute I was
thinking there might be a new contender for something we could adopt.
But there turn out to be at least two killer reasons why we won't:
* it's in C++ not C
* it doesn't support backrefs, as well as a few other features that
maybe aren't as interesting but still would represent compatibility
gotchas if they went away.
http://laurikari.net/tre/about/
http://laurikari.net/tre/documentation/
NetBSD plans to replace the libc regex with it:
http://netbsd-soc.sourceforge.net/projects/widechar-regex/
http://groups.google.com/group/muc.lists.netbsd.current-users/browse_thread/thread/db5628e2e8f810e5/a99c368a6d22b6f8?lnk=gst&q=libtre#a99c368a6d22b6f8
Another useful project - AT&T regex tests:
http://www2.research.att.com/~gsf/testregex/
About our Spencer code - if we don't have resources (not called Tom)
to clean it up and make available as library (in short term - at least
to TCL folks) we should drop it. Because it means it's dead end,
however good it is.
--
marko -
Christopher Browne at Feb 19, 2012 at 1:42 am ⇧
Is there anything that would be worth talking about directly withOn Sat, Feb 18, 2012 at 7:24 PM, Marko Kreen wrote:
About our Spencer code - if we don't have resources (not called Tom)
Henry? He's in one of my circles of colleagues; had dinner with a
group that included him on Thursday.--
When confronted by a difficult problem, solve it by reducing it to the
question, "How would the Lone Ranger handle this?" -
Tom Lane at Feb 19, 2012 at 1:57 am ⇧
Really!? I had about come to the conclusion he was dead, because he'sChristopher Browne writes:On Sat, Feb 18, 2012 at 7:24 PM, Marko Kreen wrote:Is there anything that would be worth talking about directly with
About our Spencer code - if we don't have resources (not called Tom)
Henry? He's in one of my circles of colleagues; had dinner with a
group that included him on Thursday.
sure been damn invisible as far as I could find. Is he still interested
in what happens with his regex code, or willing to answer questions
about it?
regards, tom lane
-
Brendan Jurd at Feb 19, 2012 at 2:58 am ⇧
I find myself in possession of both time and interest. I have toOn 19 February 2012 06:52, Tom Lane wrote:
Yeah ... if you *don't* know the difference between a DFA and an NFA,
you're likely to find yourself in over your head. Having said that,
this is eminently learnable stuff and pretty self-contained, so somebody
who had the time and interest could make themselves into an expert in
a reasonable amount of time.
admit up-front that I don't have experience with regex code, but I do
have some experience with parsers generally, and I'd like to think
some of that skillset would transfer to this problem. I also find
regexes fascinating and extremely useful, so learning more about them
will be no hardship.
I'd happily cede to an expert, should one appear, but otherwise I'm
all for moving the regex code into a discrete library, and I'm
volunteering to take a swing at it.
Cheers,
BJ
-
Tom Lane at Feb 19, 2012 at 4:49 am ⇧
That sounds great.Brendan Jurd writes:On 19 February 2012 06:52, Tom Lane wrote:I find myself in possession of both time and interest. I have to
Yeah ... if you *don't* know the difference between a DFA and an NFA,
you're likely to find yourself in over your head. Having said that,
this is eminently learnable stuff and pretty self-contained, so somebody
who had the time and interest could make themselves into an expert in
a reasonable amount of time.
admit up-front that I don't have experience with regex code, but I do
have some experience with parsers generally, and I'd like to think
some of that skillset would transfer to this problem. I also find
regexes fascinating and extremely useful, so learning more about them
will be no hardship.
I'd happily cede to an expert, should one appear, but otherwise I'm
all for moving the regex code into a discrete library, and I'm
volunteering to take a swing at it.
BTW, if you don't have it already, I'd highly recommend getting a copy
of Friedl's "Mastering Regular Expressions". It's aimed at users not
implementers, but there is a wealth of valuable context information in
there, as well as a really good not-too-technical overview of typical
implementation techniques for RE engines. You'd probably still want one
of the more academic presentations such as the dragon book for
reference, but I think Freidl's take on it is extremely useful.
regards, tom lane
-
Brendan Jurd at Feb 19, 2012 at 10:51 pm ⇧
Thanks for the recommendations Tom. I've now got Friedl, and there'sOn 19 February 2012 15:49, Tom Lane wrote:
That sounds great.
BTW, if you don't have it already, I'd highly recommend getting a copy
of Friedl's "Mastering Regular Expressions". It's aimed at users not
implementers, but there is a wealth of valuable context information in
there, as well as a really good not-too-technical overview of typical
implementation techniques for RE engines. You'd probably still want one
of the more academic presentations such as the dragon book for
reference, but I think Freidl's take on it is extremely useful.
a dead-tree copy of 'Compilers' making its gradual way to me (no
ebook).
I've also been reading the article series by Russ Cox linked upthread
-- it's good stuff.
Are you far enough into the backrefs bug that you'd prefer to see it
through, or would you like me to pick it up?
Cheers,
BJ
-
Tom Lane at Feb 19, 2012 at 11:42 pm ⇧
Actually, what I've been doing today is a brain dump. This code isBrendan Jurd writes:
Are you far enough into the backrefs bug that you'd prefer to see it
through, or would you like me to pick it up?
never going to be maintainable by anybody except its original author
without some internals documentation, so I've been trying to write
some based on what I've managed to reverse-engineer so far. It's
not very complete, but I do have some words about the DFA/NFA stuff,
which I will probably revise and fill in some more as I work on the
backref fix, because that's where that bug lives. I have also got
a bunch of text about the colormap management code, which I think
is interesting right now because that is what we are going to have
to fix if we want decent performance for Unicode \w and related
classes (cf the other current -hackers thread about regexes).
I was hoping to prevail on you to pick that part up as your first
project. I will commit what I've got in a few minutes --- look
for src/backend/regex/README in that commit. I encourage you to
add to that file as you figure stuff out. We could stand to upgrade
a lot of the code comments too, of course, but I think a narrative
description is pretty useful before diving into code.
regards, tom lane
-
Brendan Jurd at Feb 20, 2012 at 12:27 am ⇧
Okay, I've read through your README content, it was very helpful.On 20 February 2012 10:42, Tom Lane wrote:
I have also got
a bunch of text about the colormap management code, which I think
is interesting right now because that is what we are going to have
to fix if we want decent performance for Unicode \w and related
classes (cf the other current -hackers thread about regexes).
I was hoping to prevail on you to pick that part up as your first
project. I will commit what I've got in a few minutes --- look
for src/backend/regex/README in that commit.
I'll now go chew through some more reading material and then start
studying our existing regex source code. Once I'm firing on all
cylinders with this stuff, I'll begin to tackle the colormap.
Cheers,
BJ
-
Billy Earney at Feb 20, 2012 at 12:33 am ⇧
Tom,
I did a google search, and found the following:
http://www.arglist.com/regex/
Which states that Tcl uses the same library from Henry. Maybe someone
involved with that project would help explain the library? Also I noticed
at the url above is a few ports people did from Henry's code. I didn't
download and analyze their code, but maybe they have made some comments
that could help, or maybe have some improvements to the code..
Just a thought.. :)
Billy EarneyOn Sun, Feb 19, 2012 at 5:42 PM, Tom Lane wrote:
Brendan Jurd <direvus@gmail.com> writes:Are you far enough into the backrefs bug that you'd prefer to see itActually, what I've been doing today is a brain dump. This code is
through, or would you like me to pick it up?
never going to be maintainable by anybody except its original author
without some internals documentation, so I've been trying to write
some based on what I've managed to reverse-engineer so far. It's
not very complete, but I do have some words about the DFA/NFA stuff,
which I will probably revise and fill in some more as I work on the
backref fix, because that's where that bug lives. I have also got
a bunch of text about the colormap management code, which I think
is interesting right now because that is what we are going to have
to fix if we want decent performance for Unicode \w and related
classes (cf the other current -hackers thread about regexes).
I was hoping to prevail on you to pick that part up as your first
project. I will commit what I've got in a few minutes --- look
for src/backend/regex/README in that commit. I encourage you to
add to that file as you figure stuff out. We could stand to upgrade
a lot of the code comments too, of course, but I think a narrative
description is pretty useful before diving into code.
regards, tom lane
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers -
Tom Lane at Feb 20, 2012 at 1:40 am ⇧
Hmm ... might be worth looking at those two pre-existing attempts at
making a standalone library from Henry's code, just to see what choices
they made.Which states that Tcl uses the same library from Henry. Maybe someoneUm ... did you see the head message in this thread?
involved with that project would help explain the library?
regards, tom lane
-
Billy Earney at Feb 20, 2012 at 2:13 am ⇧
Thanks Tom. I looked at the code in the libraries I referred to earlier,
and it looks like the code in the regex directory is exactly the same as
Walter Waldo's version, which has at least one comment from the middle of
last decade (~ 2003). Has people thought about migrating to the pcre
library? It seems to have a lot of neat features, and also has a jit, and
it looks like it is being actively maintained and has decent comments.On Sun, Feb 19, 2012 at 7:40 PM, Tom Lane wrote:
Billy Earney <billy.earney@gmail.com> writes:I did a google search, and found the following:Hmm ... might be worth looking at those two pre-existing attempts at
http://www.arglist.com/regex/
making a standalone library from Henry's code, just to see what choices
they made.Which states that Tcl uses the same library from Henry. Maybe someoneUm ... did you see the head message in this thread?
involved with that project would help explain the library?
regards, tom lane -
Stephen Frost at Feb 20, 2012 at 2:16 am ⇧
Billy,
* Billy Earney (billy.earney@gmail.com) wrote:Thanks Tom. I looked at the code in the libraries I referred to earlier,It strikes me that you might benefit from reading the full thread. As
and it looks like the code in the regex directory is exactly the same as
Walter Waldo's version, which has at least one comment from the middle of
last decade (~ 2003). Has people thought about migrating to the pcre
library? It seems to have a lot of neat features, and also has a jit, and
it looks like it is being actively maintained and has decent comments.
Tom mentioned previously, pcre would require user-visible changes in
behavior, including cases where things which work today wouldn't work.
That requires a pretty high bar and I don't think we're anywhere near
there with this.
Thanks,
Stephen
-
Andrew Dunstan at Feb 18, 2012 at 8:18 pm ⇧
On 02/18/2012 02:25 PM, Stephen Frost wrote:Sure, it doesn't require knowledge of PG, but I dare say there aren't
Do we have volunteers that might save Tom from taking on this task?
It's not something that requires too much knowledge and experience of
PostgreSQL, so is an easier task for a newcomer.
very many newcomers who are going to walk in knowing how to manage
complex regex code.. I haven't seen too many who can update gram.y,
much less make our regex code handle Unicode better. I'm all for
getting other people to help with the code, of course, but I wouldn't
hold my breath and leave existing bugs open on the hopes that someone's
gonna show up.
Indeed, the number of people in the community who can hit the ground
running with this is probably vanishingly small, sadly. (I haven't
touched any formal DFA/NFA code in a couple of decades.)
cheers
andrew
-
Greg Stark at Feb 20, 2012 at 3:29 am ⇧
I can't see how your first claim that the Spencer code is worthOn Sat, Feb 18, 2012 at 6:15 PM, Tom Lane wrote:
A larger point is that it'd be a real shame
for the Spencer regex engine to die off, because it is in fact one of
the best pieces of regex technology on the planet. ...
Another possible long-term answer is to finish the work Henry never did,
that is make the code into a standalone library. That would make it
available to more projects and perhaps attract other people to help
maintain it. However, that looks like a lot of work too, with distant
and uncertain payoff.
keeping around because it's just a superior regex implementation has
much force unless we can accomplish the latter. If the library can be
split off into a standalone library then it might have some longevity.
But if we're the only ones maintaining it then it's just prolonging
the inevitable. I can't see Postgres having its own special brand of
regexes that nobody else uses being an acceptable situation forever.
One thing that concerns me more and more is that most sufficiently
powerful regex implementations are susceptible to DOS attacks. A
database application is quite likely to allow users to decide directly
or indirectly what regexes to apply and it can be hard to predict
which regexes will cause which implementations to explode its cpu or
memory requirements. We need a library that can be used to defend
against malicious regexes and i suspect neither Perl's nor Python's
library will suffice for this.
--
greg -
Stephen Frost at Feb 20, 2012 at 3:38 am ⇧
Greg,
* Greg Stark (stark@mit.edu) wrote:I can't see how your first claim that the Spencer code is worthAlright, I'll bite.. Which existing regexp implementation that's well
keeping around because it's just a superior regex implementation has
much force unless we can accomplish the latter. If the library can be
split off into a standalone library then it might have some longevity.
But if we're the only ones maintaining it then it's just prolonging
the inevitable. I can't see Postgres having its own special brand of
regexes that nobody else uses being an acceptable situation forever.
One thing that concerns me more and more is that most sufficiently
powerful regex implementations are susceptible to DOS attacks. A
database application is quite likely to allow users to decide directly
or indirectly what regexes to apply and it can be hard to predict
which regexes will cause which implementations to explode its cpu or
memory requirements. We need a library that can be used to defend
against malicious regexes and i suspect neither Perl's nor Python's
library will suffice for this.
written, well maintained, and which is well protected against malicious
regexes should we be considering then?
While we might not be able to formalize the regex code as a stand-alone
library, my bet would be that the Tcl folks (and anyone else using this
code..) will be paying attention to the changes and improvments we're
making. Sure, it'd be easier for them to incorporate those changes if
they could just pull in a new version of the library, but we can't all
have our cake and eat it too.
Thanks,
Stephen
-
Jay Levitt at Feb 20, 2012 at 6:09 am ⇧
FWIW, there's a benchmark here that compares a number of regexp engines,Stephen Frost wrote:
Alright, I'll bite.. Which existing regexp implementation that's well
written, well maintained, and which is well protected against malicious
regexes should we be considering then?
including PCRE, TRE and Russ Cox's RE2:
http://lh3lh3.users.sourceforge.net/reb.shtml
The fastest backtracking-style engine seems to be oniguruma, which is native
to Ruby 1.9 and thus not only supports Unicode but I'd bet performs pretty
well on it, on account of it's developed in Japan. But it goes pathological
on regexen containing '|'; the only safe choice among PCRE-style engines is
RE2, but of course that doesn't support backreferences.
Russ's page on re2 (http://code.google.com/p/re2/) says:
"If you absolutely need backreferences and generalized assertions, then RE2
is not for you, but you might be interested in irregexp, Google Chrome's
regular expression engine."
That's here:
http://blog.chromium.org/2009/02/irregexp-google-chromes-new-regexp.html
Sadly, it's in Javascript. Seems like if you need a safe, performant regexp
implementation, your choice is (a) finish PLv8 and support it on all
platforms, or (b) add backreferences to RE2 and precompile it to C with
Comeau (if that's still around), or...
Jay
-
Billy Earney at Feb 20, 2012 at 9:25 pm ⇧
Jay,
Good links, and I've also looked at a few others with benchmarks. I
believe most of the benchmarks are done before PCRE implemented jit. I
haven't found a benchmark with jit enabled, so I'm not sure if it will make
a difference. Also I'm not sure how accurately the benchmarks will show
how they will perform in an RDBMS environment. The optimizer probably is a
very important variable in many complex queries. I'm leaning towards
trying to implement RE2 and PCRE and running some benchmarks to see which
performs best.
Also would it be possible to set a session variable (lets say PGREGEXTYPE)
and set it to ARE (current alg), RE2, or PCRE, that way users could choose
which implementation they want (unless we find a single implementation that
beats the others in almost all categories)? Or is this a bad idea?
Just a thought.On Mon, Feb 20, 2012 at 12:09 AM, Jay Levitt wrote:
Stephen Frost wrote:Alright, I'll bite.. Which existing regexp implementation that's wellFWIW, there's a benchmark here that compares a number of regexp engines,
written, well maintained, and which is well protected against malicious
regexes should we be considering then?
including PCRE, TRE and Russ Cox's RE2:
http://lh3lh3.users.**sourceforge.net/reb.shtml<http://lh3lh3.users.sourceforge.net/reb.shtml>
The fastest backtracking-style engine seems to be oniguruma, which is
native to Ruby 1.9 and thus not only supports Unicode but I'd bet performs
pretty well on it, on account of it's developed in Japan. But it goes
pathological on regexen containing '|'; the only safe choice among
PCRE-style engines is RE2, but of course that doesn't support
backreferences.
Russ's page on re2 (http://code.google.com/p/re2/**) says:
"If you absolutely need backreferences and generalized assertions, then
RE2 is not for you, but you might be interested in irregexp, Google
Chrome's regular expression engine."
That's here:
http://blog.chromium.org/2009/**02/irregexp-google-chromes-**
new-regexp.html<http://blog.chromium.org/2009/02/irregexp-google-chromes-new-regexp.html>
Sadly, it's in Javascript. Seems like if you need a safe, performant
regexp implementation, your choice is (a) finish PLv8 and support it on all
platforms, or (b) add backreferences to RE2 and precompile it to C with
Comeau (if that's still around), or...
Jay
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/**mailpref/pgsql-hackers<http://www.postgresql.org/mailpref/pgsql-hackers> -
Tom Lane at Feb 20, 2012 at 9:35 pm ⇧
We used to have a GUC that selected the default mode for Spencer'sBilly Earney writes:
Also would it be possible to set a session variable (lets say PGREGEXTYPE)
and set it to ARE (current alg), RE2, or PCRE, that way users could choose
which implementation they want (unless we find a single implementation that
beats the others in almost all categories)? Or is this a bad idea?
package (ARE, ERE, or BRE), and eventually gave it up on the grounds
that it did more harm than good. In particular, you really cannot treat
the regex operators as immutable if their behavior varies depending on
a GUC, which is more or less fatal from an optimization standpoint.
So I'd say a GUC that switches engines, and thereby brings in subtler
but no less real incompatibilities than the old one did, would be a
pretty bad idea.
Also, TBH I have exactly zero interest in supporting pluggable regex
engines in Postgres. Regex is not sufficiently central to what we do
to justify the work of coping with N different APIs and sets of
idiosyncrasies. (Perl evidently sees that differently, and with some
reason.)
regards, tom lane
-
Billy Earney at Feb 20, 2012 at 9:59 pm ⇧
Tom,
Thanks for your reply. So is the group leaning towards just maintaining
the current regex code base, or looking into introducing a new library
(RE2, PCRE, etc)? Or is this still open for discussion?
Thanks!
BillyOn Mon, Feb 20, 2012 at 3:35 PM, Tom Lane wrote:
Billy Earney <billy.earney@gmail.com> writes:Also would it be possible to set a session variable (lets sayWe used to have a GUC that selected the default mode for Spencer's
PGREGEXTYPE)
and set it to ARE (current alg), RE2, or PCRE, that way users could choose
which implementation they want (unless we find a single implementation that
beats the others in almost all categories)? Or is this a bad idea?
package (ARE, ERE, or BRE), and eventually gave it up on the grounds
that it did more harm than good. In particular, you really cannot treat
the regex operators as immutable if their behavior varies depending on
a GUC, which is more or less fatal from an optimization standpoint.
So I'd say a GUC that switches engines, and thereby brings in subtler
but no less real incompatibilities than the old one did, would be a
pretty bad idea.
Also, TBH I have exactly zero interest in supporting pluggable regex
engines in Postgres. Regex is not sufficiently central to what we do
to justify the work of coping with N different APIs and sets of
idiosyncrasies. (Perl evidently sees that differently, and with some
reason.)
regards, tom lane -
Tom Lane at Feb 20, 2012 at 10:21 pm ⇧
Well, introducing a new library would create compatibility issues thatBilly Earney writes:
Thanks for your reply. So is the group leaning towards just maintaining
the current regex code base, or looking into introducing a new library
(RE2, PCRE, etc)? Or is this still open for discussion?
we'd just as soon not deal with, so I think that that's only likely
to be seriously entertained if we decide that Spencer's code is
unmaintainable. That's not a foregone conclusion; IMO the only fact
in evidence is that the Tcl community isn't getting it done.
Since Brendan Jurd has volunteered to try to split that code out into a
standalone library, I think such a decision really has to wait until we
see if (a) he's successful and (b) the result attracts some kind of
community around it. So in short, let's give him a couple years and
then if things are no better we'll revisit this issue.
regards, tom lane
-
Tom Lane at Feb 20, 2012 at 3:43 am ⇧
Yeah. Did you read the Russ Cox papers referenced upthread? One of theGreg Stark writes:
... We need a library that can be used to defend
against malicious regexes and i suspect neither Perl's nor Python's
library will suffice for this.
things Google wanted was provably limited resource consumption, which
motivated them going with a pure-DFA-no-exceptions implementation.
However, they gave up backrefs to get that, which is probably a
compromise we're not willing to make.
One thing that's been bothering me for awhile is that we don't have any
CHECK_FOR_INTERRUPTS or equivalent in the library's NFA search loops.
It wouldn't be hard to add one but that'd be putting PG-specific code
into the very heart of the library, which is something I've tried to
resist. One of the issues we'll have to face if we do try to split it
out as a standalone library is how that type of requirement can be met.
(And, BTW, that's the kind of hack that we would probably not get to
make at all with any other library, so the need for it is not evidence
that getting away from Spencer's code would be a good thing.)
regards, tom lane
-
Greg Smith at Feb 20, 2012 at 5:04 am ⇧
There's a list of "evil regexes" at http://en.wikipedia.org/wiki/ReDoSOn 02/19/2012 10:28 PM, Greg Stark wrote:
One thing that concerns me more and more is that most sufficiently
powerful regex implementations are susceptible to DOS attacks.
The Perl community's reaction to Russ Cox's regex papers has some
interesting comments along these lines too:
http://www.perlmonks.org/?node_id=597262
That brings up the backreferences concerns Tom already mentioned.
Someone also points out the Thompson NFA that Cox advocates in his first
article can use an excessive amount of memory when processing Unicode:
http://www.perlmonks.org/?node_id=597312
Aside--Cox's "Regular Expression Matching with a Trigram Index" is an
interesting intro to trigram use for FTS purposes, and might have some
inspirational ideas for further progress in that area:
http://swtch.com/~rsc/regexp/regexp4.html
--
Greg Smith 2ndQuadrant US greg@2ndQuadrant.com Baltimore, MD
PostgreSQL Training, Services, and 24x7 Support www.2ndQuadrant.com
Related Discussions
Discussion Navigation
| view | thread | post |
Discussion Overview
| group | pgsql-hackers
|
| categories | postgresql |
| posted | Feb 18, '12 at 6:15p |
| active | Mar 10, '12 at 4:27p |
| posts | 33 |
| users | 13 |
| website | postgresql.org... |
| irc | #postgresql |
