Re: [PATCH] arm64: traps: add tracepoints for unusal exception cases

From: Steven Rostedt
Date: Tue Mar 16 2021 - 11:29:01 EST


On Mon, 8 Mar 2021 13:31:49 +0000
Mark Brown <broonie@xxxxxxxxxx> wrote:

> > @@ -832,6 +846,7 @@ void __noreturn arm64_serror_panic(struct pt_regs *regs, u32 esr)
> > if (regs)
> > __show_regs(regs);
> >
> > + trace_traps_serror_panic_tp(regs, esr);
> > nmi_panic(regs, "Asynchronous SError Interrupt");
>
> One of the concerns people have with adding tracepoints is that they can
> end up defining ABI so if we *are* going to add any then we need to
> think carefully about how they're defined. As things currently stand
> they'll pass in the full pt_regs struct which includes not only what's
> defined by the hardware but also additional software defined information
> we store along with it like the stackframe which would be even more of a
> problem if it ends up getting used by someone in a way that ends up as
> ABI. These are defined as bare tracehooks which does mitigate against
> things ending up getting used in ways that cause problems but people are
> still going to worry about things ending up getting relied on one way or
> another.
>
> That said it's not clear to me that this will record anything beyond the
> pointer directly in the trace buffer so the value might not be useful
> for terribly long, that itself feels like it might not be as robust an
> interface as it should be.

BTW, we are working on an "event probe". That is similar to kprobe
event, but attaches to the output of an event to create another event.

Thus, if you had a trace event that was like this:

trace_regs(pt_regs *regs);

Where you save the regs pointer for output:

TP_STRUCT__entry(
__field(void *, regs )
),

TP_fast_assign(
__entry->regs = regs;
)


Then you would be able to get access to all the regs for that tracepoint!

# echo 'e:pt_regs regs ip=+8(regs):x64' > /sys/kernel/tracing/kprobe_events

Where "e:" denotes that this connects to a trace event, "pt_regs" is the
event name created under kprobes subsystem, "regs" is the trace event to
attach to, "ip=" is what will be printed, and "+8(regs):x64" is a way to
dereference the regs pointer at the time of the trace event is executed.
That is, it will dereference 8 bytes from the pointer and return a x64 hex
number.

Thus, trace events like this may be very useful in the near future.

-- Steve