Re: [PATCH v3 0/2] plugins: add plugin API to read guest memory

2024-09-05 Thread Alex Bennée
Rowan Hart writes: > This patch adds one API function to the QEMU plugin API > > bool qemu_plugin_read_memory_vaddr(vaddr, GByteArray *, size_t); > > The API allows reading memory from an arbitrary guest virtual > address, which is useful for many things but the motivating examples > are: Queued

[PATCH v3 0/2] plugins: add plugin API to read guest memory

2024-08-27 Thread Rowan Hart
This patch adds one API function to the QEMU plugin API bool qemu_plugin_read_memory_vaddr(vaddr, GByteArray *, size_t); The API allows reading memory from an arbitrary guest virtual address, which is useful for many things but the motivating examples are: * Virtual Machine Introspection (VMI) *