I have been using the standard UNIX version of regex in several servers that have to be very resilient to errors. Over the years I have found several cases where either a malformed regular expression has been input by a user or some weird characters in the target string have caused a segmentation violation etc. which crashes the server. For our systems this is unacceptable.
Is there a version of regex around that in these malformed patterns or match string will only result in an error and not crash the server?
As this code is mostly multi threaded when these patterns are being checked I don't want to use setjmp longjmp etc.
malformed regex- compile the regex and check for exceptionsome weird characters in the string- how do you clean the input? And how does the server "crashes"? Is it software? Or the whole OS? – nhahtdh Dec 5 '12 at 8:51std::basic_regexand related to be pretty robust. – Angew Dec 5 '12 at 8:53^(x*x*)*$as his regex and lets it loose onxxxxxxxxxxxxxxxxxxxxxxy. – Tim Pietzcker Dec 5 '12 at 8:54