From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>, qemu-devel@nongnu.org
Cc: kwolf@redhat.com, wrampazz@redhat.com, ehabkost@redhat.com,
mtosatti@redhat.com, armbru@redhat.com, mreitz@redhat.com,
stefanha@redhat.com, crosa@redhat.com, pbonzini@redhat.com,
alex.bennee@linaro.org, zhiwei_liu@c-sky.com, rth@twiddle.net
Subject: Re: [PATCH v5 14/15] replay: create temporary snapshot at debugger connection
Date: Tue, 22 Sep 2020 15:15:51 +0200 [thread overview]
Message-ID: <f585ee02-1a41-8b4d-cd0e-04d4263d5fac@redhat.com> (raw)
In-Reply-To: <7173ee94-3250-d3cc-5f43-a2435de36902@redhat.com>
On 9/22/20 2:55 PM, Philippe Mathieu-Daudé wrote:
> Hi Pavel,
>
> On 9/22/20 2:16 PM, Pavel Dovgalyuk wrote:
>> When record/replay does not uses overlays for storing the snapshots,
>> user is not capable of issuing reverse debugging commands.
>> This patch adds creation of the VM snapshot on the temporary
>> overlay image, when the debugger connects to QEMU.
>> Therefore the execution can be rewind to the moment
>> of the debugger connection while debugging the virtual machine.
>>
>> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
>> ---
>> gdbstub.c | 1 +
>> include/sysemu/replay.h | 2 ++
>> replay/replay-debugging.c | 16 ++++++++++++++++
>> 3 files changed, 19 insertions(+)
>>
>> diff --git a/gdbstub.c b/gdbstub.c
>> index ac92273018..f19f98ab1a 100644
>> --- a/gdbstub.c
>> +++ b/gdbstub.c
>> @@ -3321,6 +3321,7 @@ static void gdb_chr_event(void *opaque, QEMUChrEvent event)
>> s->g_cpu = s->c_cpu;
>>
>> vm_stop(RUN_STATE_PAUSED);
>> + replay_gdb_attached();
>> gdb_has_xml = false;
>> break;
>> default:
>> diff --git a/include/sysemu/replay.h b/include/sysemu/replay.h
>> index b6cac175c4..2aa34b8919 100644
>> --- a/include/sysemu/replay.h
>> +++ b/include/sysemu/replay.h
>> @@ -94,6 +94,8 @@ bool replay_reverse_continue(void);
>> bool replay_running_debug(void);
>> /* Called in reverse debugging mode to collect breakpoint information */
>> void replay_breakpoint(void);
>> +/* Called when gdb is attached to gdbstub */
>> +void replay_gdb_attached(void);
>>
>> /* Processing the instructions */
>>
>> diff --git a/replay/replay-debugging.c b/replay/replay-debugging.c
>> index d02d4e0766..bb9110707a 100644
>> --- a/replay/replay-debugging.c
>> +++ b/replay/replay-debugging.c
>> @@ -316,3 +316,19 @@ void replay_breakpoint(void)
>> assert(replay_mode == REPLAY_MODE_PLAY);
>> replay_last_breakpoint = replay_get_current_icount();
>> }
>> +
>> +void replay_gdb_attached(void)
>> +{
>> + /*
>> + * Create VM snapshot on temporary overlay to allow reverse
>> + * debugging even if snapshots were not enabled.
>> + */
>> + if (replay_mode == REPLAY_MODE_PLAY
>> + && !replay_snapshot) {
>> + Error *err = NULL;
>> + if (save_snapshot("start_debugging", &err) != 0) {
>> + /* Can't create the snapshot. Continue conventional debugging. */
>
> If you deliberately ignore the error, then use NULL;
> else display the error.
Can be cleaned on top, if Paolo is already OK with this series.
>
>> + error_free(err);
>> + }
>> + }
>> +}
>>
>
next prev parent reply other threads:[~2020-09-22 13:17 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-22 12:15 [PATCH v5 00/15] Reverse debugging Pavel Dovgalyuk
2020-09-22 12:15 ` [PATCH v5 01/15] replay: don't record interrupt poll Pavel Dovgalyuk
2020-09-22 12:57 ` Philippe Mathieu-Daudé
2020-09-22 12:15 ` [PATCH v5 02/15] replay: provide an accessor for rr filename Pavel Dovgalyuk
2020-09-22 12:58 ` Philippe Mathieu-Daudé
2020-09-22 12:15 ` [PATCH v5 03/15] qcow2: introduce icount field for snapshots Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 04/15] migration: " Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 05/15] qapi: introduce replay.json for record/replay-related stuff Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 06/15] replay: introduce info hmp/qmp command Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 07/15] replay: introduce breakpoint at the specified step Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 08/15] replay: implement replay-seek command Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 09/15] replay: flush rr queue before loading the vmstate Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 10/15] gdbstub: add reverse step support in replay mode Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 11/15] gdbstub: add reverse continue " Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 12/15] replay: describe reverse debugging in docs/replay.txt Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 13/15] docs: convert replay.txt to rst Pavel Dovgalyuk
2020-09-22 13:13 ` Paolo Bonzini
2020-09-23 6:22 ` Pavel Dovgalyuk
2020-09-22 12:16 ` [PATCH v5 14/15] replay: create temporary snapshot at debugger connection Pavel Dovgalyuk
2020-09-22 12:55 ` Philippe Mathieu-Daudé
2020-09-22 13:15 ` Philippe Mathieu-Daudé [this message]
2020-09-22 12:17 ` [PATCH v5 15/15] tests/acceptance: add reverse debugging test Pavel Dovgalyuk
2020-09-22 12:52 ` Philippe Mathieu-Daudé
2020-09-22 18:48 ` [PATCH v5 00/15] Reverse debugging no-reply
2020-09-22 18:53 ` no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f585ee02-1a41-8b4d-cd0e-04d4263d5fac@redhat.com \
--to=philmd@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=armbru@redhat.com \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=mtosatti@redhat.com \
--cc=pavel.dovgalyuk@ispras.ru \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=stefanha@redhat.com \
--cc=wrampazz@redhat.com \
--cc=zhiwei_liu@c-sky.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).