]> xenbits.xensource.com Git - people/iwj/qemu.git/commitdiff
tracetool: Update argument format regex to non-greedy star
authorJon Emil Jahren <jonemilj@gmail.com>
Mon, 29 Jan 2018 04:16:47 +0000 (05:16 +0100)
committerStefan Hajnoczi <stefanha@redhat.com>
Mon, 19 Feb 2018 13:09:44 +0000 (13:09 +0000)
Using the greedy star matching, arguments like "...%"PRIx64 caused issues
for functions with multiple PRI formats.

The issue was only seen with the ust backend, as it is the only one
using the format regex.

The result for many functions was that the arguments coming after the
greedy star end was left out of the tracepoint, and in some cases some
of the arguments that was traced had the wrong format.

Signed-off-by: Jon Emil Jahren <jonemilj@gmail.com>
Message-id: 20180129041648.30884-2-jonemilj@gmail.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
scripts/tracetool/__init__.py

index 1a9733da9a17a796630e215e6a245ab74698ac11..3646c2b9fce97b66b54d2ab2e70d8ba8b577d754 100644 (file)
@@ -261,8 +261,9 @@ class Event(object):
                                           self.name,
                                           self.args,
                                           fmt)
-
-    _FMT = re.compile("(%[\d\.]*\w+|%.*PRI\S+)")
+    # Star matching on PRI is dangerous as one might have multiple
+    # arguments with that format, hence the non-greedy version of it.
+    _FMT = re.compile("(%[\d\.]*\w+|%.*?PRI\S+)")
 
     def formats(self):
         """List conversion specifiers in the argument print format string."""