tracing: Handle %.*s in trace_check_vprintf()
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Thu, 13 May 2021 16:23:24 +0000 (12:23 -0400)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Thu, 13 May 2021 18:20:33 +0000 (14:20 -0400)
commiteb01f5353bdaa59600b29d864819056a0e3de24d
tree6b461e8d593c507df90d3484a6c5a302d1cdc1b5
parent6efb943b8616ec53a5e444193dccf1af9ad627b5
tracing: Handle %.*s in trace_check_vprintf()

If a trace event uses the %*.s notation, the trace_check_vprintf() will
fail and will warn about a bad processing of strings, because it does not
take into account the length field when processing the star (*) part.
Have it handle this case as well.

Link: https://lore.kernel.org/linux-nfs/238C0E2D-C2A4-4578-ADD2-C565B3B99842@oracle.com/
Reported-by: Chuck Lever III <chuck.lever@oracle.com>
Fixes: 9a6944fee68e2 ("tracing: Add a verifier to check string pointers for trace events")
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/trace.c