2016-09-26 10:08:10 +02:00
|
|
|
/*
|
|
|
|
* replay-snapshot.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010-2016 Institute for System Programming
|
|
|
|
* of the Russian Academy of Sciences.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "sysemu/replay.h"
|
|
|
|
#include "replay-internal.h"
|
|
|
|
#include "monitor/monitor.h"
|
|
|
|
#include "qapi/qmp/qstring.h"
|
|
|
|
#include "qemu/error-report.h"
|
|
|
|
#include "migration/vmstate.h"
|
2017-04-20 14:25:55 +02:00
|
|
|
#include "migration/snapshot.h"
|
2016-09-26 10:08:10 +02:00
|
|
|
|
2017-09-25 13:29:12 +02:00
|
|
|
static int replay_pre_save(void *opaque)
|
2016-09-26 10:08:10 +02:00
|
|
|
{
|
|
|
|
ReplayState *state = opaque;
|
|
|
|
state->file_offset = ftell(replay_file);
|
2017-09-25 13:29:12 +02:00
|
|
|
|
|
|
|
return 0;
|
2016-09-26 10:08:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int replay_post_load(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
ReplayState *state = opaque;
|
2018-09-12 10:19:39 +02:00
|
|
|
if (replay_mode == REPLAY_MODE_PLAY) {
|
|
|
|
fseek(replay_file, state->file_offset, SEEK_SET);
|
|
|
|
/* If this was a vmstate, saved in recording mode,
|
|
|
|
we need to initialize replay data fields. */
|
|
|
|
replay_fetch_data_kind();
|
|
|
|
} else if (replay_mode == REPLAY_MODE_RECORD) {
|
|
|
|
/* This is only useful for loading the initial state.
|
|
|
|
Therefore reset all the counters. */
|
2019-07-25 10:44:43 +02:00
|
|
|
state->instruction_count = 0;
|
2018-09-12 10:19:39 +02:00
|
|
|
state->block_request_id = 0;
|
|
|
|
}
|
2016-09-26 10:08:10 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_replay = {
|
|
|
|
.name = "replay",
|
2019-07-24 13:58:22 +02:00
|
|
|
.version_id = 2,
|
|
|
|
.minimum_version_id = 2,
|
2016-09-26 10:08:10 +02:00
|
|
|
.pre_save = replay_pre_save,
|
|
|
|
.post_load = replay_post_load,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_INT64_ARRAY(cached_clock, ReplayState, REPLAY_CLOCK_COUNT),
|
2019-07-25 10:44:43 +02:00
|
|
|
VMSTATE_UINT64(current_icount, ReplayState),
|
|
|
|
VMSTATE_INT32(instruction_count, ReplayState),
|
2016-09-26 10:08:10 +02:00
|
|
|
VMSTATE_UINT32(data_kind, ReplayState),
|
|
|
|
VMSTATE_UINT32(has_unread_data, ReplayState),
|
|
|
|
VMSTATE_UINT64(file_offset, ReplayState),
|
2016-09-26 10:08:16 +02:00
|
|
|
VMSTATE_UINT64(block_request_id, ReplayState),
|
2018-02-27 10:53:22 +01:00
|
|
|
VMSTATE_UINT64(read_event_id, ReplayState),
|
2016-09-26 10:08:10 +02:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
void replay_vmstate_register(void)
|
|
|
|
{
|
|
|
|
vmstate_register(NULL, 0, &vmstate_replay, &replay_state);
|
|
|
|
}
|
2017-01-24 08:17:47 +01:00
|
|
|
|
|
|
|
void replay_vmstate_init(void)
|
|
|
|
{
|
2017-04-18 18:12:35 +02:00
|
|
|
Error *err = NULL;
|
|
|
|
|
2017-01-24 08:17:47 +01:00
|
|
|
if (replay_snapshot) {
|
|
|
|
if (replay_mode == REPLAY_MODE_RECORD) {
|
2021-02-04 13:48:30 +01:00
|
|
|
if (!save_snapshot(replay_snapshot,
|
|
|
|
true, NULL, false, NULL, &err)) {
|
2017-04-18 18:12:35 +02:00
|
|
|
error_report_err(err);
|
2017-01-24 08:17:47 +01:00
|
|
|
error_report("Could not create snapshot for icount record");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (replay_mode == REPLAY_MODE_PLAY) {
|
2021-02-04 13:48:30 +01:00
|
|
|
if (!load_snapshot(replay_snapshot, NULL, false, NULL, &err)) {
|
2017-04-18 18:12:35 +02:00
|
|
|
error_report_err(err);
|
2017-01-24 08:17:47 +01:00
|
|
|
error_report("Could not load snapshot for icount replay");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-27 10:52:14 +01:00
|
|
|
|
|
|
|
bool replay_can_snapshot(void)
|
|
|
|
{
|
|
|
|
return replay_mode == REPLAY_MODE_NONE
|
|
|
|
|| !replay_has_events();
|
|
|
|
}
|