qemu-devel
[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: Alex Bennée
Subject: Re: Qemu TCG Plugins - how to access guest registers?
Date: Mon, 30 Mar 2020 16:15:47 +0100
User-agent: mu4e 1.3.10; emacs 28.0.50

Lukas Straub <address@hidden> writes:

> On Fri, 27 Mar 2020 15:40:38 -0600
> Benjamin <address@hidden> wrote:
>
>> Qemu version 4.2.0 includes new functionality for something called TCG
>> Plugins. There are a few examples in the tests/plugins directory, and the
>> API is more or less defined in qemu-plugin.h.
>> 
>> This file defines two enumerated types, "qemu_plugin_cb_flags" and
>> "qemu_plugin_mem_rw", which are passed into functions that register
>> callbacks. These enums seem to indicate whether the callbacks will read or
>> write CPU registers or memory. However, all of the example plugins use
>> "QEMU_PLUGIN_CB_NO_REGS", and only 2 of the plugins use the memory access
>> enum. hotpages.c and mem.c use "QEMU_PLUGIN_MEM_RW" as the default for
>> registering a memory callback (qemu_plugin_register_vcpu_mem_cb). mem.c has
>> an argument when the plugin is loaded to choose if it's read or write,
>> however, it doesn't seem to make any difference in the callback
>> function.

You are quite right the flags exist so the TCG can be told if the
callback is going to mess with machine state - they map to the internal
TCG_CALL_* flags which are used for the same reason for the internal
helper functions.

>> 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).

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.

>> 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.

>> 
>> Thanks
>
> CC'ing the maintainer of TCG Plugins.


-- 
Alex Bennée



reply via email to

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