Re: [PATCH] contrib/plugins: add execlog to log instruction execution and memory access

2021-06-17 Thread Alex Bennée
Alexandre IOOSS writes: > [[PGP Signed Part:Undecided]] > On 6/15/21 6:47 PM, Alexandre IOOSS wrote: >> On 6/15/21 10:22 AM, Alex Bennée wrote: >>> Mahmoud Mandour writes: On 14/06/2021 11:01, Alexandre Iooss wrote: > +} > + > +/** > + * Log instruction execution > + *

Re: [PATCH] contrib/plugins: add execlog to log instruction execution and memory access

2021-06-16 Thread Alexandre IOOSS
On 6/15/21 6:47 PM, Alexandre IOOSS wrote: On 6/15/21 10:22 AM, Alex Bennée wrote: Mahmoud Mandour writes: On 14/06/2021 11:01, Alexandre Iooss wrote: +} + +/** + * Log instruction execution + */ +static void vcpu_insn_exec(unsigned int cpu_index, void *udata) +{ +    char *insn_disas = (char

Re: [PATCH] contrib/plugins: add execlog to log instruction execution and memory access

2021-06-15 Thread Alexandre IOOSS
On 6/15/21 10:22 AM, Alex Bennée wrote: Mahmoud Mandour writes: On 14/06/2021 11:01, Alexandre Iooss wrote: Log instruction execution and memory access to a file. This plugin can be used for reverse engineering or for side-channel analysis using QEMU. Signed-off-by: Alexandre Iooss --- M

Re: [PATCH] contrib/plugins: add execlog to log instruction execution and memory access

2021-06-15 Thread Alex Bennée
Mahmoud Mandour writes: > On 14/06/2021 11:01, Alexandre Iooss wrote: >> Log instruction execution and memory access to a file. >> This plugin can be used for reverse engineering or for side-channel analysis >> using QEMU. >> >> Signed-off-by: Alexandre Iooss >> --- >> MAINTAINERS

Re: [PATCH] contrib/plugins: add execlog to log instruction execution and memory access

2021-06-14 Thread Mahmoud Mandour
On 14/06/2021 11:01, Alexandre Iooss wrote: Log instruction execution and memory access to a file. This plugin can be used for reverse engineering or for side-channel analysis using QEMU. Signed-off-by: Alexandre Iooss --- MAINTAINERS | 1 + contrib/plugins/Makefile | 1

[PATCH] contrib/plugins: add execlog to log instruction execution and memory access

2021-06-14 Thread Alexandre Iooss
Log instruction execution and memory access to a file. This plugin can be used for reverse engineering or for side-channel analysis using QEMU. Signed-off-by: Alexandre Iooss --- MAINTAINERS | 1 + contrib/plugins/Makefile | 1 + contrib/plugins/execlog.c | 112 +++