qemu-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Qemu TCG Plugins - how to access guest registers?


From: Benjamin
Subject: Re: Qemu TCG Plugins - how to access guest registers?
Date: Mon, 30 Mar 2020 18:25:38 -0600


On Mon, Mar 30, 2020 at 1:37 PM Alex Bennée <address@hidden> wrote:

Benjamin <address@hidden> writes:

> Thanks for your quick response.
>
> On Mon, Mar 30, 2020 at 9:15 AM Alex Bennée <address@hidden> wrote:
>
>>
>> Lukas Straub <address@hidden> writes:
>>
>> >> My question is, how do I access the guest memory and registers from the
>> >> plugin callback function? The API seems to indicate that it is possible,
>> >> since the callback registering requires you to say if you will access
>> them,
>> >> and if it's RW or just read.
>>
>> Currently we document what plugins can do in docs/devel/tcg-plugins.rst:
>>
>>   TCG plugins are unable to change the system state only monitor it
>>   passively. However they can do this down to an individual instruction
>>   granularity including potentially subscribing to all load and store
>>   operations.
>>
>> This was a conscious decision to avoid plugins being used as an end-run
>> around the GPL to implement proprietary out-of-tree extensions.
>>
>> That is not to say we might relax the rules in the future - it was a
>> topic of discussion at the maintainers summit and we wanted to document
>> some guidelines around interfacing with QEMU so people didn't get the
>> wrong idea about what these APIs provide (c.f. multi-process qemu and
>> vhost-user which could also be abused in similar ways).
>>
>
> I understand restricting the API so that the system state cannot be
> changed, only inspected.  I should have been more specific in my question.
> I am attempting to create a plugin that tracks all memory accesses, so I
> can emulate cache behavior.

Emulate or measure? By the way there is a GSoC project proposal to add
this:

  https://wiki.qemu.org/Internships/ProjectIdeas/CacheModelling
 
Definitely emulate - I already have C code that can track which memory addresses have been loaded into the cache (though not the actual data).
The idea for using QEMU for this project came from a research paper I read awhile ago, but they were using version 0.12:
https://ieeexplore.ieee.org/document/6945730
I started trying to create this with helper functions, but when I heard about the plugins, that sounded like a cleaner way to go.
The end goal is being able to use QEMU as a fault injection platform, to test the effects of Single-bit upsets on baremetal C code.  So I would like some way to interact with the plugin as QEMU is running; I have some ideas on how to do this, but none fleshed out yet.
I actually saw this morning on qemu-discuss that someone was asking if something like Valgrind could be created using the TCG plugins, so there is certainly interest in this kind of thing.
 
> The reason I would like to read the registers,
> is because many load/store instructions depend on register values, which I
> can only be sure of at run-time.

You don't need the registers at that point because at run time QEMU will
have already resolved the address and will pass it via the
qemu_plugin_register_vcpu_mem_cb. The hotpages and mem plugin examples
demonstrate the use of the API. 

The way you explained this, although it might seem simple, really helped me understand better the level at which the TCG plugins operate.
I went and changed my code to be more based on the code in hotpages.c, and it is much simpler now.
I'm going to go look at that Dinero Cache Simulator you linked to see if I can get any ideas on how to improve my cache code.
 
> Some of the concepts you mentioned I am not very familiar with; I am simply
> emulating an ARM A9 processor in bare-metal mode, to give you a point of
> reference of my use case.
>
>
>> Indeed Emilio's original tree did contain these more invasive hooks and
>> while we deliberate upstream it will hopefully not be as hard to
>> maintain a light out-of-tree fork should you need such functionality now.
>>
>
> Could you please point me towards this tree?  I haven't run across it yet
> in my investigating of all of this.

His tree is at:

  https://github.com/cota/qemu

But I'm not sure what his latest branch is. I've CC'd him.

>
>
>> >> Are there any examples of using this part of the API? I realize this is
>> a
>> >> very new part of Qemu functionality.
>>
>> So far the examples represent the totality of the API that has been
>> exercised and I'm keen we add more as new extensions to the API are
>> added. As to the specific question about accessing register values that
>> is exactly down to the newness of the API.
>>
>> Register access is a tricky problem because of the fact that QEMU
>> supports so many guest architectures. I wasn't keen on slapping in a
>> functional but ugly API that hard-coded values like gdb register ids so
>> I left it out for the time being. I'd happily accept patches to add that
>> functionality assuming it meets the projects quality and taste
>> guidelines.
>>
>> Some approaches we could take include:
>>
>>   - hook into tcg_global_*_new and allow plugin to introspect registers
>>   - hook into gdbstub in some way
>>
>> The first approach elides over the fact that a lot of registers aren't
>> actually known to the TCG - pretty much all vector registers tend to be
>> loaded into anonymous TCG temps as we go. Maybe this could just be fixed
>> by just providing a few more registrations functions at the start even
>> if the TCG itself wouldn't use that knowledge.
>>
>> The gdbstub provides a lot more visibility of register state and for
>> some architectures this can be quite comprehensive - for example in
>> system mode you can access pretty much every ARM co-processor register.
>> However the gdb interface is a little clunky as there are a lot of magic
>> register id numbers and the canonical way to enumerate this is to chew
>> through a bunch of XML that each target generates (see
>> gdb_register_coprocessor). I'm not keen on exposing that pile of XML via
>> the register interface. Maybe there is scope to improve our internal
>> APIs so the enumeration of registers can be handled by helpers that
>> record mappings and ids and generate the XML for the gdbstub centrally?
>>
>> There may be other approaches we could take and I'm open to suggestions.
>>
>
> I'd be happy to look into ways to implement this functionality.  However, I
> just started using Qemu this year, so these things sound like they would
> have a steep learning curve for me.
> The gdbstub approach seems like it would provide the most introspection
> ability.  What would you suggest as a starting point for looking into this?
> All of this being said, if you think my project is too complicated, to
> implement a cache emulator with TCG plugins, then I could always try just
> hacking together some custom helper functions.

As I said above I don't think you need register values to do cache
emulation as you have the addresses. You will need to decode some of the
cache management instructions though. Fortunately you can do that at
translation time and only instrument the ones you need. See howvec for
examples.

I'm not familiar with cache management instructions.  What exactly do you mean by that?  It sounds like something that would be dependent on the guest architecture. 
Or maybe it's things like pre-fetching hints?  Then the plugin would need to take into account cache latencies, something my code doesn't deal with right now.
 
--
Alex Bennée

I would be glad to share my implementation once it's in a better working state.
Where can I find guidelines on the coding standard expected of QEMU software?
Thanks 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]