[OpenBIOS] Grand Unified Tracing

Blue Swirl blauwirbel at gmail.com
Mon Aug 22 22:59:00 CEST 2011


On Mon, Aug 22, 2011 at 8:23 PM, Stefan Hajnoczi <stefanha at gmail.com> wrote:
> On Mon, Aug 22, 2011 at 7:14 PM, Blue Swirl <blauwirbel at gmail.com> wrote:
>> OpenBIOS uses traditional DPRINTFs for debugging. I was considering
>> replacing those with tracepoints, which would output to serial device
>> or whatever DPRINTFs are using currently. This would not be extremely
>> useful by itself, except maybe that configuration for debugging would
>> be concentrated to single 'trace-events' file, but this would not be a
>> major improvement over current XML configuration.
>>
>> But developing this further, maybe OpenBIOS could also pass the
>> tracepoint data back to QEMU? Then all tracepoint data would be
>> synchronized, coherent and all gathered to single place.
>>
>> The implementation could be that fw_cfg would be used to pass
>> simpletrace style data. An offset should be added to event IDs and
>> data would then be output as usual. On OpenBIOS side, the
>> implementation would be pretty similar to current QEMU tracepoints but
>> in place of file output there would be fw_cfg output.
>>
>> Syntax for trace-events file should be augmented with include
>> directive, so that QEMU knows also OpenBIOS tracepoints. I think the
>> only change to simpletrace.py would be to parse this directive.
>>
>> Controlling OpenBIOS tracepoints from QEMU monitor would be cool too.
>>
>> Going even further, other targets like kernels could use something
>> similar, probably not using fw_cfg though.
>>
>> What do you think?
>
> Dhaval showed me a demo of unified host/guest Linux tracing last week.
>  He is doing something similar except using a hypercall to pass a
> string to the host kernel.  In his case kvm.ko handles the hypercall
> and qemu is not involved.

So the events flow directly from guest kernel to host kernel?

> One issue with QEMU tracing is that trace call sites are static.  You
> need to compile in a trace_*() call, which means that there are two
> choices for how to tunnel OpenBIOS trace events:
>
> 1. Define a tunnel trace event:
> openbios_event(uint64_t event_id, uint64_t arg1, uint64_t arg2, ...)
>
> QEMU only has one trace event to tunnel OpenBIOS trace events.  Then
> the host is unable to pretty-print OpenBIOS traces automatically and
> the max arguments becomes 6 - 1 (for the openbios_event tunnel event
> id).
>
> 2. Generate a switch statement to demultiplex trace events:
> void hypercall(uint64_t event_id, uint64_t arg1, ...)
> {
>    /* This is auto-generated by tracetool */
>    switch (event_id) {
>    case TRACE_EVENT_OPENBIOS_FOO:
>        trace_openbios_foo(arg1, arg2, arg3);
>        break;
>    case TRACE_EVENT_OPENBIOS_BAR:
>        trace_openbios_bar(arg1);
>        break;
>    ...
>    }
> }
>
> With this approach the user can toggle trace events at runtime and it
> works out much nicer.

Maybe I'm missing something, but why would we have to multiplex
anything? Since the trace IDs are 64 bits, we can easily allocate a
static range (starting from 0x8000000000000000) to non-native events
so that QEMU IDs and OpenBIOS IDs do not overlap. QEMU would add this
offset to IDs coming from fw_cfg. Then QEMU would just pass the data
(8*64 bit words) to tracing back end. There obviously something needs
to be changed so that OpenBIOS messages can be generated. For
simpletrace this should be easy, for stderr and other back ends that
may be more complicated.

> Remember that QEMU tracing also supports DTrace (SystemTap) and LTTng
> Userspace Tracer.  Simpletrace would be the interface between the
> guest and the host for passing trace records.  In Dhaval's case we
> were talking about passing binary Linux tracing events to the host and
> quickly realized there are host/guest ABI compatibility issues to
> consider.  For OpenBIOS debugging you may be able to get away with
> demanding that the OpenBIOS is built for this particular QEMU binary
> though :).

I'd expect that OpenBIOS needs to be compiled so that it can pass the
data to QEMU in a format that both understand and that its
trace-events file should be #included by QEMU's trace-events file.
This binds both together. In case simpletrace backend is used, I think
any QEMU would do except monitor needs event names.



More information about the OpenBIOS mailing list