qapi: Fix crash on stray double quote character
authorMarkus Armbruster <armbru@redhat.com>
Fri, 28 Apr 2023 10:54:15 +0000 (12:54 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Tue, 9 May 2023 06:51:58 +0000 (08:51 +0200)
When the lexer chokes on a stray character, its shows the characters
until the next structural character in the error message.  It uses a
regular expression to match a non-empty string of non-structural
characters.  Bug: the regular expression treats '"' as structural.
When the lexer chokes on '"', the match fails, and trips
must_match()'s assertion.  Fix the regular expression.

Fixes: 14c32795024c (qapi: Improve reporting of lexical errors)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20230428105429.1687850-4-armbru@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
scripts/qapi/parser.py

index 878f90b458302d2112dd8d5d1d76b258c82687c2..7b49d3ab0550408d1fbb4278a2acc02c460c6bc9 100644 (file)
@@ -346,7 +346,7 @@ class QAPISchemaParser:
             elif not self.tok.isspace():
                 # Show up to next structural, whitespace or quote
                 # character
-                match = must_match('[^[\\]{}:,\\s\'"]+',
+                match = must_match('[^[\\]{}:,\\s\']+',
                                    self.src[self.cursor-1:])
                 raise QAPIParseError(self, "stray '%s'" % match.group(0))