2008-11-11 21:33:36 +00:00
|
|
|
/*
|
|
|
|
* QEMU System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
2015-05-08 11:20:21 +00:00
|
|
|
* Copyright (c) 2009-2015 Red Hat Inc
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Juan Quintela <quintela@redhat.com>
|
2008-11-11 21:33:36 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2009-03-07 16:52:02 +00:00
|
|
|
#include "config-host.h"
|
2009-03-07 15:32:56 +00:00
|
|
|
#include "qemu-common.h"
|
2014-06-20 13:26:08 +00:00
|
|
|
#include "hw/boards.h"
|
2009-03-07 15:32:56 +00:00
|
|
|
#include "hw/hw.h"
|
2010-06-25 17:09:14 +00:00
|
|
|
#include "hw/qdev.h"
|
2012-10-24 06:43:34 +00:00
|
|
|
#include "net/net.h"
|
2012-12-17 17:19:49 +00:00
|
|
|
#include "monitor/monitor.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-12-17 17:20:00 +00:00
|
|
|
#include "qemu/timer.h"
|
2009-03-07 15:32:56 +00:00
|
|
|
#include "audio/audio.h"
|
2012-12-17 17:19:50 +00:00
|
|
|
#include "migration/migration.h"
|
2015-03-17 16:22:46 +00:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2015-03-17 17:29:20 +00:00
|
|
|
#include "qemu/error-report.h"
|
2012-12-17 17:20:00 +00:00
|
|
|
#include "qemu/sockets.h"
|
|
|
|
#include "qemu/queue.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include "sysemu/cpus.h"
|
2012-12-17 17:19:49 +00:00
|
|
|
#include "exec/memory.h"
|
2012-01-25 12:24:51 +00:00
|
|
|
#include "qmp-commands.h"
|
2012-05-21 21:46:44 +00:00
|
|
|
#include "trace.h"
|
2013-03-22 14:47:58 +00:00
|
|
|
#include "qemu/iov.h"
|
2013-05-25 03:09:43 +00:00
|
|
|
#include "block/snapshot.h"
|
2013-05-25 03:09:44 +00:00
|
|
|
#include "block/qapi.h"
|
2009-03-07 15:32:56 +00:00
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2009-10-15 23:53:55 +00:00
|
|
|
#ifndef ETH_P_RARP
|
2010-04-24 12:54:07 +00:00
|
|
|
#define ETH_P_RARP 0x8035
|
2009-10-15 23:53:55 +00:00
|
|
|
#endif
|
|
|
|
#define ARP_HTYPE_ETH 0x0001
|
|
|
|
#define ARP_PTYPE_IP 0x0800
|
|
|
|
#define ARP_OP_REQUEST_REV 0x3
|
|
|
|
|
2015-05-19 11:29:51 +00:00
|
|
|
static bool skip_section_footers;
|
|
|
|
|
2015-11-05 18:10:45 +00:00
|
|
|
static struct mig_cmd_args {
|
|
|
|
ssize_t len; /* -1 = variable */
|
|
|
|
const char *name;
|
|
|
|
} mig_cmd_args[] = {
|
|
|
|
[MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
|
2015-11-05 18:10:46 +00:00
|
|
|
[MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
|
|
|
|
[MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
|
2015-11-05 18:10:45 +00:00
|
|
|
[MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
|
|
|
|
};
|
|
|
|
|
2009-10-15 23:53:55 +00:00
|
|
|
static int announce_self_create(uint8_t *buf,
|
2013-11-28 14:01:12 +00:00
|
|
|
uint8_t *mac_addr)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2009-10-15 23:53:55 +00:00
|
|
|
/* Ethernet header. */
|
|
|
|
memset(buf, 0xff, 6); /* destination MAC addr */
|
|
|
|
memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
|
|
|
|
*(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
|
|
|
|
|
|
|
|
/* RARP header. */
|
|
|
|
*(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
|
|
|
|
*(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
|
|
|
|
*(buf + 18) = 6; /* hardware addr length (ethernet) */
|
|
|
|
*(buf + 19) = 4; /* protocol addr length (IPv4) */
|
|
|
|
*(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
|
|
|
|
memcpy(buf + 22, mac_addr, 6); /* source hw addr */
|
|
|
|
memset(buf + 28, 0x00, 4); /* source protocol addr */
|
|
|
|
memcpy(buf + 32, mac_addr, 6); /* target hw addr */
|
|
|
|
memset(buf + 38, 0x00, 4); /* target protocol addr */
|
|
|
|
|
|
|
|
/* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
|
|
|
|
memset(buf + 42, 0x00, 18);
|
|
|
|
|
|
|
|
return 60; /* len (FCS will be added by hardware) */
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2009-11-25 18:49:32 +00:00
|
|
|
static void qemu_announce_self_iter(NICState *nic, void *opaque)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2009-10-15 23:53:55 +00:00
|
|
|
uint8_t buf[60];
|
2009-11-25 18:49:32 +00:00
|
|
|
int len;
|
|
|
|
|
2014-03-10 23:42:29 +00:00
|
|
|
trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
|
2009-11-25 18:49:32 +00:00
|
|
|
len = announce_self_create(buf, nic->conf->macaddr.a);
|
|
|
|
|
2013-01-30 11:12:22 +00:00
|
|
|
qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
|
2009-11-25 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void qemu_announce_self_once(void *opaque)
|
|
|
|
{
|
2009-05-21 14:17:44 +00:00
|
|
|
static int count = SELF_ANNOUNCE_ROUNDS;
|
|
|
|
QEMUTimer *timer = *(QEMUTimer **)opaque;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2009-11-25 18:49:32 +00:00
|
|
|
qemu_foreach_nic(qemu_announce_self_iter, NULL);
|
|
|
|
|
2009-10-15 23:53:55 +00:00
|
|
|
if (--count) {
|
|
|
|
/* delay 50ms, 150ms, 250ms, ... */
|
2013-08-21 15:03:08 +00:00
|
|
|
timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
|
2014-05-20 06:01:43 +00:00
|
|
|
self_announce_delay(count));
|
2009-05-21 14:17:44 +00:00
|
|
|
} else {
|
2013-11-28 14:01:12 +00:00
|
|
|
timer_del(timer);
|
|
|
|
timer_free(timer);
|
2009-05-21 14:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_announce_self(void)
|
|
|
|
{
|
2013-11-28 14:01:12 +00:00
|
|
|
static QEMUTimer *timer;
|
|
|
|
timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
|
|
|
|
qemu_announce_self_once(&timer);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************/
|
|
|
|
/* savevm/loadvm support */
|
|
|
|
|
2013-04-05 19:27:54 +00:00
|
|
|
static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
|
|
|
|
int64_t pos)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
QEMUIOVector qiov;
|
|
|
|
|
|
|
|
qemu_iovec_init_external(&qiov, iov, iovcnt);
|
|
|
|
ret = bdrv_writev_vmstate(opaque, &qiov, pos);
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return qiov.size;
|
|
|
|
}
|
|
|
|
|
2015-08-13 10:51:33 +00:00
|
|
|
static ssize_t block_put_buffer(void *opaque, const uint8_t *buf,
|
|
|
|
int64_t pos, size_t size)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2009-07-10 21:11:57 +00:00
|
|
|
bdrv_save_vmstate(opaque, buf, pos, size);
|
2008-11-11 21:33:36 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-08-13 10:51:33 +00:00
|
|
|
static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
|
|
|
|
size_t size)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2009-07-10 21:11:57 +00:00
|
|
|
return bdrv_load_vmstate(opaque, buf, pos, size);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int bdrv_fclose(void *opaque)
|
|
|
|
{
|
2012-06-05 22:04:50 +00:00
|
|
|
return bdrv_flush(opaque);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2012-08-08 08:15:15 +00:00
|
|
|
static const QEMUFileOps bdrv_read_ops = {
|
|
|
|
.get_buffer = block_get_buffer,
|
|
|
|
.close = bdrv_fclose
|
|
|
|
};
|
|
|
|
|
|
|
|
static const QEMUFileOps bdrv_write_ops = {
|
2013-04-05 19:27:54 +00:00
|
|
|
.put_buffer = block_put_buffer,
|
|
|
|
.writev_buffer = block_writev_buffer,
|
|
|
|
.close = bdrv_fclose
|
2012-08-08 08:15:15 +00:00
|
|
|
};
|
|
|
|
|
2009-07-10 21:11:57 +00:00
|
|
|
static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2013-11-28 14:01:13 +00:00
|
|
|
if (is_writable) {
|
2012-08-08 08:15:15 +00:00
|
|
|
return qemu_fopen_ops(bs, &bdrv_write_ops);
|
2013-11-28 14:01:13 +00:00
|
|
|
}
|
2012-08-08 08:15:15 +00:00
|
|
|
return qemu_fopen_ops(bs, &bdrv_read_ops);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 14:21:44 +00:00
|
|
|
|
2013-11-29 14:26:02 +00:00
|
|
|
/* QEMUFile timer support.
|
|
|
|
* Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
|
|
|
|
*/
|
2011-09-12 14:21:44 +00:00
|
|
|
|
2013-08-21 15:03:02 +00:00
|
|
|
void timer_put(QEMUFile *f, QEMUTimer *ts)
|
2011-09-12 14:21:44 +00:00
|
|
|
{
|
|
|
|
uint64_t expire_time;
|
|
|
|
|
2013-08-21 15:02:39 +00:00
|
|
|
expire_time = timer_expire_time_ns(ts);
|
2011-09-12 14:21:44 +00:00
|
|
|
qemu_put_be64(f, expire_time);
|
|
|
|
}
|
|
|
|
|
2013-08-21 15:03:02 +00:00
|
|
|
void timer_get(QEMUFile *f, QEMUTimer *ts)
|
2011-09-12 14:21:44 +00:00
|
|
|
{
|
|
|
|
uint64_t expire_time;
|
|
|
|
|
|
|
|
expire_time = qemu_get_be64(f);
|
|
|
|
if (expire_time != -1) {
|
2013-08-21 15:03:08 +00:00
|
|
|
timer_mod_ns(ts, expire_time);
|
2011-09-12 14:21:44 +00:00
|
|
|
} else {
|
2013-08-21 15:03:08 +00:00
|
|
|
timer_del(ts);
|
2011-09-12 14:21:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-29 14:26:02 +00:00
|
|
|
/* VMState timer support.
|
|
|
|
* Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
|
|
|
|
*/
|
2009-08-20 17:42:26 +00:00
|
|
|
|
|
|
|
static int get_timer(QEMUFile *f, void *pv, size_t size)
|
|
|
|
{
|
|
|
|
QEMUTimer *v = pv;
|
2013-08-21 15:03:02 +00:00
|
|
|
timer_get(f, v);
|
2009-08-20 17:42:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-29 20:48:20 +00:00
|
|
|
static void put_timer(QEMUFile *f, void *pv, size_t size)
|
2009-08-20 17:42:26 +00:00
|
|
|
{
|
2009-09-29 20:48:20 +00:00
|
|
|
QEMUTimer *v = pv;
|
2013-08-21 15:03:02 +00:00
|
|
|
timer_put(f, v);
|
2009-08-20 17:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const VMStateInfo vmstate_info_timer = {
|
|
|
|
.name = "timer",
|
|
|
|
.get = get_timer,
|
|
|
|
.put = put_timer,
|
|
|
|
};
|
|
|
|
|
2012-10-30 07:45:12 +00:00
|
|
|
|
2010-06-25 17:09:14 +00:00
|
|
|
typedef struct CompatEntry {
|
|
|
|
char idstr[256];
|
|
|
|
int instance_id;
|
|
|
|
} CompatEntry;
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
typedef struct SaveStateEntry {
|
2009-09-12 07:36:22 +00:00
|
|
|
QTAILQ_ENTRY(SaveStateEntry) entry;
|
2008-11-11 21:33:36 +00:00
|
|
|
char idstr[256];
|
|
|
|
int instance_id;
|
2010-05-15 11:32:40 +00:00
|
|
|
int alias_id;
|
2008-11-11 21:33:36 +00:00
|
|
|
int version_id;
|
|
|
|
int section_id;
|
2012-06-26 15:19:10 +00:00
|
|
|
SaveVMHandlers *ops;
|
2009-08-20 17:42:25 +00:00
|
|
|
const VMStateDescription *vmsd;
|
2008-11-11 21:33:36 +00:00
|
|
|
void *opaque;
|
2010-06-25 17:09:14 +00:00
|
|
|
CompatEntry *compat;
|
2012-01-25 12:24:51 +00:00
|
|
|
int is_ram;
|
2008-11-11 21:33:36 +00:00
|
|
|
} SaveStateEntry;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
typedef struct SaveState {
|
|
|
|
QTAILQ_HEAD(, SaveStateEntry) handlers;
|
|
|
|
int global_section_id;
|
2015-05-13 16:17:43 +00:00
|
|
|
bool skip_configuration;
|
|
|
|
uint32_t len;
|
|
|
|
const char *name;
|
2015-05-13 11:37:04 +00:00
|
|
|
} SaveState;
|
|
|
|
|
|
|
|
static SaveState savevm_state = {
|
|
|
|
.handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
|
|
|
|
.global_section_id = 0,
|
2015-05-13 16:17:43 +00:00
|
|
|
.skip_configuration = false,
|
|
|
|
};
|
|
|
|
|
|
|
|
void savevm_skip_configuration(void)
|
|
|
|
{
|
|
|
|
savevm_state.skip_configuration = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void configuration_pre_save(void *opaque)
|
|
|
|
{
|
|
|
|
SaveState *state = opaque;
|
|
|
|
const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
|
|
|
|
|
|
|
|
state->len = strlen(current_name);
|
|
|
|
state->name = current_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int configuration_post_load(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
SaveState *state = opaque;
|
|
|
|
const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
|
|
|
|
|
|
|
|
if (strncmp(state->name, current_name, state->len) != 0) {
|
|
|
|
error_report("Machine type received is '%s' and local is '%s'",
|
|
|
|
state->name, current_name);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_configuration = {
|
|
|
|
.name = "configuration",
|
|
|
|
.version_id = 1,
|
|
|
|
.post_load = configuration_post_load,
|
|
|
|
.pre_save = configuration_pre_save,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINT32(len, SaveState),
|
|
|
|
VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, 0, len),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
},
|
2015-05-13 11:37:04 +00:00
|
|
|
};
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2014-06-20 13:26:08 +00:00
|
|
|
static void dump_vmstate_vmsd(FILE *out_file,
|
|
|
|
const VMStateDescription *vmsd, int indent,
|
|
|
|
bool is_subsection);
|
|
|
|
|
|
|
|
static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
|
|
|
|
int indent)
|
|
|
|
{
|
|
|
|
fprintf(out_file, "%*s{\n", indent, "");
|
|
|
|
indent += 2;
|
|
|
|
fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
|
|
|
|
fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
|
|
|
|
field->version_id);
|
|
|
|
fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
|
|
|
|
field->field_exists ? "true" : "false");
|
|
|
|
fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
|
|
|
|
if (field->vmsd != NULL) {
|
|
|
|
fprintf(out_file, ",\n");
|
|
|
|
dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
|
|
|
|
}
|
|
|
|
fprintf(out_file, "\n%*s}", indent - 2, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_vmstate_vmss(FILE *out_file,
|
2014-09-23 12:09:54 +00:00
|
|
|
const VMStateDescription **subsection,
|
2014-06-20 13:26:08 +00:00
|
|
|
int indent)
|
|
|
|
{
|
2014-09-23 12:09:54 +00:00
|
|
|
if (*subsection != NULL) {
|
|
|
|
dump_vmstate_vmsd(out_file, *subsection, indent, true);
|
2014-06-20 13:26:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_vmstate_vmsd(FILE *out_file,
|
|
|
|
const VMStateDescription *vmsd, int indent,
|
|
|
|
bool is_subsection)
|
|
|
|
{
|
|
|
|
if (is_subsection) {
|
|
|
|
fprintf(out_file, "%*s{\n", indent, "");
|
|
|
|
} else {
|
|
|
|
fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
|
|
|
|
}
|
|
|
|
indent += 2;
|
|
|
|
fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
|
|
|
|
fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
|
|
|
|
vmsd->version_id);
|
|
|
|
fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
|
|
|
|
vmsd->minimum_version_id);
|
|
|
|
if (vmsd->fields != NULL) {
|
|
|
|
const VMStateField *field = vmsd->fields;
|
|
|
|
bool first;
|
|
|
|
|
|
|
|
fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
|
|
|
|
first = true;
|
|
|
|
while (field->name != NULL) {
|
|
|
|
if (field->flags & VMS_MUST_EXIST) {
|
|
|
|
/* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
|
|
|
|
field++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!first) {
|
|
|
|
fprintf(out_file, ",\n");
|
|
|
|
}
|
|
|
|
dump_vmstate_vmsf(out_file, field, indent + 2);
|
|
|
|
field++;
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
fprintf(out_file, "\n%*s]", indent, "");
|
|
|
|
}
|
|
|
|
if (vmsd->subsections != NULL) {
|
2014-09-23 12:09:54 +00:00
|
|
|
const VMStateDescription **subsection = vmsd->subsections;
|
2014-06-20 13:26:08 +00:00
|
|
|
bool first;
|
|
|
|
|
|
|
|
fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
|
|
|
|
first = true;
|
2014-09-23 12:09:54 +00:00
|
|
|
while (*subsection != NULL) {
|
2014-06-20 13:26:08 +00:00
|
|
|
if (!first) {
|
|
|
|
fprintf(out_file, ",\n");
|
|
|
|
}
|
|
|
|
dump_vmstate_vmss(out_file, subsection, indent + 2);
|
|
|
|
subsection++;
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
fprintf(out_file, "\n%*s]", indent, "");
|
|
|
|
}
|
|
|
|
fprintf(out_file, "\n%*s}", indent - 2, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_machine_type(FILE *out_file)
|
|
|
|
{
|
|
|
|
MachineClass *mc;
|
|
|
|
|
|
|
|
mc = MACHINE_GET_CLASS(current_machine);
|
|
|
|
|
|
|
|
fprintf(out_file, " \"vmschkmachine\": {\n");
|
|
|
|
fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
|
|
|
|
fprintf(out_file, " },\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump_vmstate_json_to_file(FILE *out_file)
|
|
|
|
{
|
|
|
|
GSList *list, *elt;
|
|
|
|
bool first;
|
|
|
|
|
|
|
|
fprintf(out_file, "{\n");
|
|
|
|
dump_machine_type(out_file);
|
|
|
|
|
|
|
|
first = true;
|
|
|
|
list = object_class_get_list(TYPE_DEVICE, true);
|
|
|
|
for (elt = list; elt; elt = elt->next) {
|
|
|
|
DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
|
|
|
|
TYPE_DEVICE);
|
|
|
|
const char *name;
|
|
|
|
int indent = 2;
|
|
|
|
|
|
|
|
if (!dc->vmsd) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!first) {
|
|
|
|
fprintf(out_file, ",\n");
|
|
|
|
}
|
|
|
|
name = object_class_get_name(OBJECT_CLASS(dc));
|
|
|
|
fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
|
|
|
|
indent += 2;
|
|
|
|
fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
|
|
|
|
fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
|
|
|
|
dc->vmsd->version_id);
|
|
|
|
fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
|
|
|
|
dc->vmsd->minimum_version_id);
|
|
|
|
|
|
|
|
dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
|
|
|
|
|
|
|
|
fprintf(out_file, "\n%*s}", indent - 2, "");
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
fprintf(out_file, "\n}\n");
|
|
|
|
fclose(out_file);
|
|
|
|
}
|
|
|
|
|
2009-09-01 00:12:31 +00:00
|
|
|
static int calculate_new_instance_id(const char *idstr)
|
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
int instance_id = 0;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2009-09-01 00:12:31 +00:00
|
|
|
if (strcmp(idstr, se->idstr) == 0
|
|
|
|
&& instance_id <= se->instance_id) {
|
|
|
|
instance_id = se->instance_id + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return instance_id;
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:09:14 +00:00
|
|
|
static int calculate_compat_instance_id(const char *idstr)
|
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
int instance_id = 0;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2013-11-28 14:01:13 +00:00
|
|
|
if (!se->compat) {
|
2010-06-25 17:09:14 +00:00
|
|
|
continue;
|
2013-11-28 14:01:13 +00:00
|
|
|
}
|
2010-06-25 17:09:14 +00:00
|
|
|
|
|
|
|
if (strcmp(idstr, se->compat->idstr) == 0
|
|
|
|
&& instance_id <= se->compat->instance_id) {
|
|
|
|
instance_id = se->compat->instance_id + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return instance_id;
|
|
|
|
}
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
/* TODO: Individual devices generally have very little idea about the rest
|
|
|
|
of the system, so instance_id should be removed/replaced.
|
|
|
|
Meanwhile pass -1 as instance_id if you do not already have a clearly
|
|
|
|
distinguishing id for all instances of your device class. */
|
2010-06-25 17:09:07 +00:00
|
|
|
int register_savevm_live(DeviceState *dev,
|
|
|
|
const char *idstr,
|
2008-11-11 21:33:36 +00:00
|
|
|
int instance_id,
|
|
|
|
int version_id,
|
2012-06-26 16:46:10 +00:00
|
|
|
SaveVMHandlers *ops,
|
2008-11-11 21:33:36 +00:00
|
|
|
void *opaque)
|
|
|
|
{
|
2009-09-01 00:12:31 +00:00
|
|
|
SaveStateEntry *se;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-09-14 11:51:31 +00:00
|
|
|
se = g_new0(SaveStateEntry, 1);
|
2008-11-11 21:33:36 +00:00
|
|
|
se->version_id = version_id;
|
2015-05-13 11:37:04 +00:00
|
|
|
se->section_id = savevm_state.global_section_id++;
|
2012-06-26 16:46:10 +00:00
|
|
|
se->ops = ops;
|
2008-11-11 21:33:36 +00:00
|
|
|
se->opaque = opaque;
|
2009-08-20 17:42:25 +00:00
|
|
|
se->vmsd = NULL;
|
2012-01-25 12:24:51 +00:00
|
|
|
/* if this is a live_savem then set is_ram */
|
2012-06-28 13:31:37 +00:00
|
|
|
if (ops->save_live_setup != NULL) {
|
2012-01-25 12:24:51 +00:00
|
|
|
se->is_ram = 1;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2012-02-03 18:28:43 +00:00
|
|
|
if (dev) {
|
|
|
|
char *id = qdev_get_dev_path(dev);
|
2010-06-25 17:09:14 +00:00
|
|
|
if (id) {
|
|
|
|
pstrcpy(se->idstr, sizeof(se->idstr), id);
|
|
|
|
pstrcat(se->idstr, sizeof(se->idstr), "/");
|
2011-08-21 03:09:37 +00:00
|
|
|
g_free(id);
|
2010-06-25 17:09:14 +00:00
|
|
|
|
2015-09-14 11:51:31 +00:00
|
|
|
se->compat = g_new0(CompatEntry, 1);
|
2010-06-25 17:09:14 +00:00
|
|
|
pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
|
|
|
|
se->compat->instance_id = instance_id == -1 ?
|
|
|
|
calculate_compat_instance_id(idstr) : instance_id;
|
|
|
|
instance_id = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pstrcat(se->idstr, sizeof(se->idstr), idstr);
|
|
|
|
|
2009-09-01 00:12:31 +00:00
|
|
|
if (instance_id == -1) {
|
2010-06-25 17:09:14 +00:00
|
|
|
se->instance_id = calculate_new_instance_id(se->idstr);
|
2009-09-01 00:12:31 +00:00
|
|
|
} else {
|
|
|
|
se->instance_id = instance_id;
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
2010-06-25 17:09:14 +00:00
|
|
|
assert(!se->compat || se->instance_id == 0);
|
2009-09-01 00:12:31 +00:00
|
|
|
/* add at the end of list */
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_INSERT_TAIL(&savevm_state.handlers, se, entry);
|
2008-11-11 21:33:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:09:07 +00:00
|
|
|
int register_savevm(DeviceState *dev,
|
|
|
|
const char *idstr,
|
2008-11-11 21:33:36 +00:00
|
|
|
int instance_id,
|
|
|
|
int version_id,
|
|
|
|
SaveStateHandler *save_state,
|
|
|
|
LoadStateHandler *load_state,
|
|
|
|
void *opaque)
|
|
|
|
{
|
2015-09-14 11:51:31 +00:00
|
|
|
SaveVMHandlers *ops = g_new0(SaveVMHandlers, 1);
|
2012-06-26 16:46:10 +00:00
|
|
|
ops->save_state = save_state;
|
|
|
|
ops->load_state = load_state;
|
2010-06-25 17:09:07 +00:00
|
|
|
return register_savevm_live(dev, idstr, instance_id, version_id,
|
2012-06-26 16:46:10 +00:00
|
|
|
ops, opaque);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2010-06-25 17:09:07 +00:00
|
|
|
void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
|
2009-04-17 17:10:59 +00:00
|
|
|
{
|
2009-09-01 00:12:31 +00:00
|
|
|
SaveStateEntry *se, *new_se;
|
2010-06-25 17:09:14 +00:00
|
|
|
char id[256] = "";
|
|
|
|
|
2012-02-03 18:28:43 +00:00
|
|
|
if (dev) {
|
|
|
|
char *path = qdev_get_dev_path(dev);
|
2010-06-25 17:09:14 +00:00
|
|
|
if (path) {
|
|
|
|
pstrcpy(id, sizeof(id), path);
|
|
|
|
pstrcat(id, sizeof(id), "/");
|
2011-08-21 03:09:37 +00:00
|
|
|
g_free(path);
|
2010-06-25 17:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pstrcat(id, sizeof(id), idstr);
|
2009-04-17 17:10:59 +00:00
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
|
2010-06-25 17:09:14 +00:00
|
|
|
if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
|
2015-08-26 11:17:18 +00:00
|
|
|
g_free(se->compat);
|
2012-06-26 15:19:10 +00:00
|
|
|
g_free(se->ops);
|
2011-08-21 03:09:37 +00:00
|
|
|
g_free(se);
|
2009-04-17 17:10:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:09:07 +00:00
|
|
|
int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
|
2010-05-15 11:32:40 +00:00
|
|
|
const VMStateDescription *vmsd,
|
|
|
|
void *opaque, int alias_id,
|
|
|
|
int required_for_version)
|
2009-08-20 17:42:25 +00:00
|
|
|
{
|
2009-09-01 00:12:31 +00:00
|
|
|
SaveStateEntry *se;
|
2009-08-20 17:42:25 +00:00
|
|
|
|
2010-05-15 11:32:40 +00:00
|
|
|
/* If this triggers, alias support can be dropped for the vmsd. */
|
|
|
|
assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
|
|
|
|
|
2015-09-14 11:51:31 +00:00
|
|
|
se = g_new0(SaveStateEntry, 1);
|
2009-08-20 17:42:25 +00:00
|
|
|
se->version_id = vmsd->version_id;
|
2015-05-13 11:37:04 +00:00
|
|
|
se->section_id = savevm_state.global_section_id++;
|
2009-08-20 17:42:25 +00:00
|
|
|
se->opaque = opaque;
|
|
|
|
se->vmsd = vmsd;
|
2010-05-15 11:32:40 +00:00
|
|
|
se->alias_id = alias_id;
|
2009-08-20 17:42:25 +00:00
|
|
|
|
2012-02-03 18:28:43 +00:00
|
|
|
if (dev) {
|
|
|
|
char *id = qdev_get_dev_path(dev);
|
2010-06-25 17:09:14 +00:00
|
|
|
if (id) {
|
|
|
|
pstrcpy(se->idstr, sizeof(se->idstr), id);
|
|
|
|
pstrcat(se->idstr, sizeof(se->idstr), "/");
|
2011-08-21 03:09:37 +00:00
|
|
|
g_free(id);
|
2010-06-25 17:09:14 +00:00
|
|
|
|
2015-09-14 11:51:31 +00:00
|
|
|
se->compat = g_new0(CompatEntry, 1);
|
2010-06-25 17:09:14 +00:00
|
|
|
pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
|
|
|
|
se->compat->instance_id = instance_id == -1 ?
|
|
|
|
calculate_compat_instance_id(vmsd->name) : instance_id;
|
|
|
|
instance_id = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
|
|
|
|
|
2009-09-01 00:12:31 +00:00
|
|
|
if (instance_id == -1) {
|
2010-06-25 17:09:14 +00:00
|
|
|
se->instance_id = calculate_new_instance_id(se->idstr);
|
2009-09-01 00:12:31 +00:00
|
|
|
} else {
|
|
|
|
se->instance_id = instance_id;
|
2009-08-20 17:42:25 +00:00
|
|
|
}
|
2010-06-25 17:09:14 +00:00
|
|
|
assert(!se->compat || se->instance_id == 0);
|
2009-09-01 00:12:31 +00:00
|
|
|
/* add at the end of list */
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_INSERT_TAIL(&savevm_state.handlers, se, entry);
|
2009-08-20 17:42:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:09:07 +00:00
|
|
|
void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
|
|
|
|
void *opaque)
|
2009-08-20 17:42:25 +00:00
|
|
|
{
|
2009-09-10 01:04:29 +00:00
|
|
|
SaveStateEntry *se, *new_se;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
|
2009-09-10 01:04:29 +00:00
|
|
|
if (se->vmsd == vmsd && se->opaque == opaque) {
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
|
2015-08-26 11:17:18 +00:00
|
|
|
g_free(se->compat);
|
2011-08-21 03:09:37 +00:00
|
|
|
g_free(se);
|
2009-09-10 01:04:29 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-20 17:42:25 +00:00
|
|
|
}
|
|
|
|
|
2009-08-20 17:42:24 +00:00
|
|
|
static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
|
|
|
|
{
|
2014-03-10 23:42:29 +00:00
|
|
|
trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
|
2009-08-20 17:42:25 +00:00
|
|
|
if (!se->vmsd) { /* Old style */
|
2012-06-26 15:19:10 +00:00
|
|
|
return se->ops->load_state(f, se->opaque, version_id);
|
2009-08-20 17:42:25 +00:00
|
|
|
}
|
|
|
|
return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
|
2009-08-20 17:42:24 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 14:01:39 +00:00
|
|
|
static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
|
|
|
|
{
|
|
|
|
int64_t old_offset, size;
|
|
|
|
|
|
|
|
old_offset = qemu_ftell_fast(f);
|
|
|
|
se->ops->save_state(f, se->opaque);
|
|
|
|
size = qemu_ftell_fast(f) - old_offset;
|
|
|
|
|
|
|
|
if (vmdesc) {
|
|
|
|
json_prop_int(vmdesc, "size", size);
|
|
|
|
json_start_array(vmdesc, "fields");
|
|
|
|
json_start_object(vmdesc, NULL);
|
|
|
|
json_prop_str(vmdesc, "name", "data");
|
|
|
|
json_prop_int(vmdesc, "size", size);
|
|
|
|
json_prop_str(vmdesc, "type", "buffer");
|
|
|
|
json_end_object(vmdesc);
|
|
|
|
json_end_array(vmdesc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
|
2009-08-20 17:42:24 +00:00
|
|
|
{
|
2014-03-10 23:42:29 +00:00
|
|
|
trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
|
2015-01-22 14:01:39 +00:00
|
|
|
if (!se->vmsd) {
|
|
|
|
vmstate_save_old_style(f, se, vmdesc);
|
2011-01-11 21:39:43 +00:00
|
|
|
return;
|
2009-08-20 17:42:25 +00:00
|
|
|
}
|
2015-01-22 14:01:39 +00:00
|
|
|
vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
|
2009-08-20 17:42:24 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 11:29:51 +00:00
|
|
|
void savevm_skip_section_footers(void)
|
|
|
|
{
|
|
|
|
skip_section_footers = true;
|
|
|
|
}
|
|
|
|
|
2015-05-19 11:29:50 +00:00
|
|
|
/*
|
|
|
|
* Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
|
|
|
|
*/
|
|
|
|
static void save_section_header(QEMUFile *f, SaveStateEntry *se,
|
|
|
|
uint8_t section_type)
|
|
|
|
{
|
|
|
|
qemu_put_byte(f, section_type);
|
|
|
|
qemu_put_be32(f, se->section_id);
|
|
|
|
|
|
|
|
if (section_type == QEMU_VM_SECTION_FULL ||
|
|
|
|
section_type == QEMU_VM_SECTION_START) {
|
|
|
|
/* ID string */
|
|
|
|
size_t len = strlen(se->idstr);
|
|
|
|
qemu_put_byte(f, len);
|
|
|
|
qemu_put_buffer(f, (uint8_t *)se->idstr, len);
|
|
|
|
|
|
|
|
qemu_put_be32(f, se->instance_id);
|
|
|
|
qemu_put_be32(f, se->version_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 11:29:52 +00:00
|
|
|
/*
|
|
|
|
* Write a footer onto device sections that catches cases misformatted device
|
|
|
|
* sections.
|
|
|
|
*/
|
|
|
|
static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
|
|
|
|
{
|
|
|
|
if (!skip_section_footers) {
|
|
|
|
qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
|
|
|
|
qemu_put_be32(f, se->section_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-05 18:10:45 +00:00
|
|
|
/**
|
|
|
|
* qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
|
|
|
|
* command and associated data.
|
|
|
|
*
|
|
|
|
* @f: File to send command on
|
|
|
|
* @command: Command type to send
|
|
|
|
* @len: Length of associated data
|
|
|
|
* @data: Data associated with command.
|
|
|
|
*/
|
|
|
|
void qemu_savevm_command_send(QEMUFile *f,
|
|
|
|
enum qemu_vm_cmd command,
|
|
|
|
uint16_t len,
|
|
|
|
uint8_t *data)
|
|
|
|
{
|
|
|
|
trace_savevm_command_send(command, len);
|
|
|
|
qemu_put_byte(f, QEMU_VM_COMMAND);
|
|
|
|
qemu_put_be16(f, (uint16_t)command);
|
|
|
|
qemu_put_be16(f, len);
|
|
|
|
qemu_put_buffer(f, data, len);
|
|
|
|
qemu_fflush(f);
|
|
|
|
}
|
|
|
|
|
2015-11-05 18:10:46 +00:00
|
|
|
void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
|
|
|
|
{
|
|
|
|
uint32_t buf;
|
|
|
|
|
|
|
|
trace_savevm_send_ping(value);
|
|
|
|
buf = cpu_to_be32(value);
|
|
|
|
qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_savevm_send_open_return_path(QEMUFile *f)
|
|
|
|
{
|
|
|
|
trace_savevm_send_open_return_path();
|
|
|
|
qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
|
|
|
|
}
|
|
|
|
|
2011-12-05 16:48:01 +00:00
|
|
|
bool qemu_savevm_state_blocked(Error **errp)
|
2011-01-11 21:39:43 +00:00
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2014-05-14 19:30:08 +00:00
|
|
|
if (se->vmsd && se->vmsd->unmigratable) {
|
2014-03-21 23:42:26 +00:00
|
|
|
error_setg(errp, "State blocked by non-migratable device '%s'",
|
|
|
|
se->idstr);
|
2011-01-11 21:39:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-05-21 12:24:12 +00:00
|
|
|
void qemu_savevm_state_header(QEMUFile *f)
|
|
|
|
{
|
|
|
|
trace_savevm_state_header();
|
|
|
|
qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
|
|
|
|
qemu_put_be32(f, QEMU_VM_FILE_VERSION);
|
2015-11-05 18:10:30 +00:00
|
|
|
|
|
|
|
if (!savevm_state.skip_configuration) {
|
|
|
|
qemu_put_byte(f, QEMU_VM_CONFIGURATION);
|
|
|
|
vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
|
|
|
|
}
|
|
|
|
|
2015-05-21 12:24:12 +00:00
|
|
|
}
|
|
|
|
|
2013-02-22 16:36:13 +00:00
|
|
|
void qemu_savevm_state_begin(QEMUFile *f,
|
|
|
|
const MigrationParams *params)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
2011-09-22 09:02:14 +00:00
|
|
|
int ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2014-03-10 23:42:29 +00:00
|
|
|
trace_savevm_state_begin();
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2012-06-26 15:19:10 +00:00
|
|
|
if (!se->ops || !se->ops->set_params) {
|
2009-11-02 13:40:58 +00:00
|
|
|
continue;
|
2012-06-19 15:43:09 +00:00
|
|
|
}
|
2012-06-26 15:19:10 +00:00
|
|
|
se->ops->set_params(params, se->opaque);
|
2009-11-02 13:40:58 +00:00
|
|
|
}
|
2013-11-28 14:01:13 +00:00
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2012-06-28 13:11:57 +00:00
|
|
|
if (!se->ops || !se->ops->save_live_setup) {
|
2008-11-11 21:33:36 +00:00
|
|
|
continue;
|
2012-06-26 15:19:10 +00:00
|
|
|
}
|
2012-06-27 08:59:15 +00:00
|
|
|
if (se->ops && se->ops->is_active) {
|
|
|
|
if (!se->ops->is_active(se->opaque)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2015-05-19 11:29:50 +00:00
|
|
|
save_section_header(f, se, QEMU_VM_SECTION_START);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2012-06-28 13:11:57 +00:00
|
|
|
ret = se->ops->save_live_setup(f, se->opaque);
|
2015-05-19 11:29:52 +00:00
|
|
|
save_section_footer(f, se);
|
2011-10-19 13:22:18 +00:00
|
|
|
if (ret < 0) {
|
2013-02-22 16:36:13 +00:00
|
|
|
qemu_file_set_error(f, ret);
|
|
|
|
break;
|
2011-10-19 13:22:18 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-22 09:02:14 +00:00
|
|
|
/*
|
2011-11-22 10:06:26 +00:00
|
|
|
* this function has three return values:
|
2011-09-22 09:02:14 +00:00
|
|
|
* negative: there was one error, and we have -errno.
|
|
|
|
* 0 : We haven't finished, caller have to go again
|
|
|
|
* 1 : We have finished, we can go to complete phase
|
|
|
|
*/
|
2011-12-05 16:06:56 +00:00
|
|
|
int qemu_savevm_state_iterate(QEMUFile *f)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
int ret = 1;
|
|
|
|
|
2014-03-10 23:42:29 +00:00
|
|
|
trace_savevm_state_iterate();
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2012-06-28 13:31:37 +00:00
|
|
|
if (!se->ops || !se->ops->save_live_iterate) {
|
2008-11-11 21:33:36 +00:00
|
|
|
continue;
|
2012-06-26 15:19:10 +00:00
|
|
|
}
|
2012-06-27 08:59:15 +00:00
|
|
|
if (se->ops && se->ops->is_active) {
|
|
|
|
if (!se->ops->is_active(se->opaque)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2012-05-21 22:38:26 +00:00
|
|
|
if (qemu_file_rate_limit(f)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-03-06 20:03:37 +00:00
|
|
|
trace_savevm_section_start(se->idstr, se->section_id);
|
2015-05-19 11:29:50 +00:00
|
|
|
|
|
|
|
save_section_header(f, se, QEMU_VM_SECTION_PART);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2012-06-28 13:31:37 +00:00
|
|
|
ret = se->ops->save_live_iterate(f, se->opaque);
|
2015-01-21 10:14:48 +00:00
|
|
|
trace_savevm_section_end(se->idstr, se->section_id, ret);
|
2015-05-19 11:29:52 +00:00
|
|
|
save_section_footer(f, se);
|
2012-05-21 21:46:44 +00:00
|
|
|
|
2013-02-22 16:36:13 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
qemu_file_set_error(f, ret);
|
|
|
|
}
|
2011-10-19 13:22:18 +00:00
|
|
|
if (ret <= 0) {
|
2009-12-01 14:19:55 +00:00
|
|
|
/* Do not proceed to the next vmstate before this one reported
|
|
|
|
completion of the current stage. This serializes the migration
|
|
|
|
and reduces the probability that a faster changing state is
|
|
|
|
synchronized over and over again. */
|
|
|
|
break;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
2011-09-22 09:02:14 +00:00
|
|
|
return ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2015-02-23 12:56:42 +00:00
|
|
|
static bool should_send_vmdesc(void)
|
|
|
|
{
|
|
|
|
MachineState *machine = MACHINE(qdev_get_machine());
|
|
|
|
return !machine->suppress_vmdesc;
|
|
|
|
}
|
|
|
|
|
2015-11-05 18:10:41 +00:00
|
|
|
void qemu_savevm_state_complete_precopy(QEMUFile *f)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2015-01-22 14:01:39 +00:00
|
|
|
QJSON *vmdesc;
|
|
|
|
int vmdesc_len;
|
2008-11-11 21:33:36 +00:00
|
|
|
SaveStateEntry *se;
|
2011-10-19 13:22:18 +00:00
|
|
|
int ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-11-05 18:10:41 +00:00
|
|
|
trace_savevm_state_complete_precopy();
|
2014-03-10 23:42:29 +00:00
|
|
|
|
2010-03-01 18:10:30 +00:00
|
|
|
cpu_synchronize_all_states();
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2015-11-05 18:10:41 +00:00
|
|
|
if (!se->ops || !se->ops->save_live_complete_precopy) {
|
2008-11-11 21:33:36 +00:00
|
|
|
continue;
|
2012-06-26 15:19:10 +00:00
|
|
|
}
|
2012-06-27 08:59:15 +00:00
|
|
|
if (se->ops && se->ops->is_active) {
|
|
|
|
if (!se->ops->is_active(se->opaque)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2014-03-06 20:03:37 +00:00
|
|
|
trace_savevm_section_start(se->idstr, se->section_id);
|
2015-05-19 11:29:50 +00:00
|
|
|
|
|
|
|
save_section_header(f, se, QEMU_VM_SECTION_END);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-11-05 18:10:41 +00:00
|
|
|
ret = se->ops->save_live_complete_precopy(f, se->opaque);
|
2015-01-21 10:14:48 +00:00
|
|
|
trace_savevm_section_end(se->idstr, se->section_id, ret);
|
2015-05-19 11:29:52 +00:00
|
|
|
save_section_footer(f, se);
|
2011-10-19 13:22:18 +00:00
|
|
|
if (ret < 0) {
|
2013-02-22 16:36:13 +00:00
|
|
|
qemu_file_set_error(f, ret);
|
|
|
|
return;
|
2011-10-19 13:22:18 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 14:01:39 +00:00
|
|
|
vmdesc = qjson_new();
|
|
|
|
json_prop_int(vmdesc, "page_size", TARGET_PAGE_SIZE);
|
|
|
|
json_start_array(vmdesc, "devices");
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2012-06-26 15:19:10 +00:00
|
|
|
if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
|
2013-11-28 14:01:12 +00:00
|
|
|
continue;
|
2012-06-26 15:19:10 +00:00
|
|
|
}
|
2014-10-15 07:39:14 +00:00
|
|
|
if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
|
|
|
|
trace_savevm_section_skip(se->idstr, se->section_id);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-03-06 20:03:37 +00:00
|
|
|
trace_savevm_section_start(se->idstr, se->section_id);
|
2015-01-22 14:01:39 +00:00
|
|
|
|
|
|
|
json_start_object(vmdesc, NULL);
|
|
|
|
json_prop_str(vmdesc, "name", se->idstr);
|
|
|
|
json_prop_int(vmdesc, "instance_id", se->instance_id);
|
|
|
|
|
2015-05-19 11:29:50 +00:00
|
|
|
save_section_header(f, se, QEMU_VM_SECTION_FULL);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-01-22 14:01:39 +00:00
|
|
|
vmstate_save(f, se, vmdesc);
|
|
|
|
|
|
|
|
json_end_object(vmdesc);
|
2015-01-21 10:14:48 +00:00
|
|
|
trace_savevm_section_end(se->idstr, se->section_id, 0);
|
2015-05-19 11:29:52 +00:00
|
|
|
save_section_footer(f, se);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
qemu_put_byte(f, QEMU_VM_EOF);
|
2015-01-22 14:01:39 +00:00
|
|
|
|
|
|
|
json_end_array(vmdesc);
|
|
|
|
qjson_finish(vmdesc);
|
|
|
|
vmdesc_len = strlen(qjson_get_str(vmdesc));
|
|
|
|
|
2015-02-23 12:56:42 +00:00
|
|
|
if (should_send_vmdesc()) {
|
|
|
|
qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
|
|
|
|
qemu_put_be32(f, vmdesc_len);
|
|
|
|
qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
|
|
|
|
}
|
2015-01-22 14:01:39 +00:00
|
|
|
object_unref(OBJECT(vmdesc));
|
|
|
|
|
2013-02-22 16:36:29 +00:00
|
|
|
qemu_fflush(f);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2012-09-21 09:18:18 +00:00
|
|
|
uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
|
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
uint64_t ret = 0;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2012-09-21 09:18:18 +00:00
|
|
|
if (!se->ops || !se->ops->save_live_pending) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (se->ops && se->ops->is_active) {
|
|
|
|
if (!se->ops->is_active(se->opaque)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret += se->ops->save_live_pending(f, se->opaque, max_size);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-11-02 07:37:01 +00:00
|
|
|
void qemu_savevm_state_cleanup(void)
|
2009-11-30 17:21:21 +00:00
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
|
2015-11-02 07:37:01 +00:00
|
|
|
trace_savevm_state_cleanup();
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2015-11-02 07:37:02 +00:00
|
|
|
if (se->ops && se->ops->cleanup) {
|
|
|
|
se->ops->cleanup(se->opaque);
|
2009-11-30 17:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-10 13:25:02 +00:00
|
|
|
static int qemu_savevm_state(QEMUFile *f, Error **errp)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2012-06-19 15:43:09 +00:00
|
|
|
MigrationParams params = {
|
|
|
|
.blk = 0,
|
|
|
|
.shared = 0
|
|
|
|
};
|
2015-11-05 18:10:40 +00:00
|
|
|
MigrationState *ms = migrate_init(¶ms);
|
|
|
|
ms->file = f;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-02-10 13:25:02 +00:00
|
|
|
if (qemu_savevm_state_blocked(errp)) {
|
2013-02-22 16:36:10 +00:00
|
|
|
return -EINVAL;
|
2011-01-11 21:39:43 +00:00
|
|
|
}
|
|
|
|
|
2013-02-22 16:36:28 +00:00
|
|
|
qemu_mutex_unlock_iothread();
|
2015-05-21 12:24:12 +00:00
|
|
|
qemu_savevm_state_header(f);
|
2013-02-22 16:36:13 +00:00
|
|
|
qemu_savevm_state_begin(f, ¶ms);
|
2013-02-22 16:36:28 +00:00
|
|
|
qemu_mutex_lock_iothread();
|
|
|
|
|
2013-02-22 16:36:13 +00:00
|
|
|
while (qemu_file_get_error(f) == 0) {
|
|
|
|
if (qemu_savevm_state_iterate(f) > 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2013-02-22 16:36:13 +00:00
|
|
|
ret = qemu_file_get_error(f);
|
2011-09-22 09:02:14 +00:00
|
|
|
if (ret == 0) {
|
2015-11-05 18:10:41 +00:00
|
|
|
qemu_savevm_state_complete_precopy(f);
|
2011-10-04 23:02:52 +00:00
|
|
|
ret = qemu_file_get_error(f);
|
2011-09-22 09:02:14 +00:00
|
|
|
}
|
2013-02-22 16:36:10 +00:00
|
|
|
if (ret != 0) {
|
2015-11-02 07:37:01 +00:00
|
|
|
qemu_savevm_state_cleanup();
|
2015-02-10 13:25:02 +00:00
|
|
|
error_setg_errno(errp, -ret, "Error while writing VM state");
|
2013-02-22 16:36:10 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-01-25 12:24:51 +00:00
|
|
|
static int qemu_save_device_state(QEMUFile *f)
|
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
|
|
|
|
qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
|
|
|
|
qemu_put_be32(f, QEMU_VM_FILE_VERSION);
|
|
|
|
|
|
|
|
cpu_synchronize_all_states();
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2012-01-25 12:24:51 +00:00
|
|
|
if (se->is_ram) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-06-26 15:19:10 +00:00
|
|
|
if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
|
2012-01-25 12:24:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-10-15 07:39:14 +00:00
|
|
|
if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-01-25 12:24:51 +00:00
|
|
|
|
2015-05-19 11:29:50 +00:00
|
|
|
save_section_header(f, se, QEMU_VM_SECTION_FULL);
|
2012-01-25 12:24:51 +00:00
|
|
|
|
2015-01-22 14:01:39 +00:00
|
|
|
vmstate_save(f, se, NULL);
|
2015-05-19 11:29:52 +00:00
|
|
|
|
|
|
|
save_section_footer(f, se);
|
2012-01-25 12:24:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
qemu_put_byte(f, QEMU_VM_EOF);
|
|
|
|
|
|
|
|
return qemu_file_get_error(f);
|
|
|
|
}
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
static SaveStateEntry *find_se(const char *idstr, int instance_id)
|
|
|
|
{
|
|
|
|
SaveStateEntry *se;
|
|
|
|
|
2015-05-13 11:37:04 +00:00
|
|
|
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
|
2008-11-11 21:33:36 +00:00
|
|
|
if (!strcmp(se->idstr, idstr) &&
|
2010-05-15 11:32:40 +00:00
|
|
|
(instance_id == se->instance_id ||
|
|
|
|
instance_id == se->alias_id))
|
2008-11-11 21:33:36 +00:00
|
|
|
return se;
|
2010-06-25 17:09:14 +00:00
|
|
|
/* Migrating from an older version? */
|
|
|
|
if (strstr(se->idstr, idstr) && se->compat) {
|
|
|
|
if (!strcmp(se->compat->idstr, idstr) &&
|
|
|
|
(instance_id == se->compat->instance_id ||
|
|
|
|
instance_id == se->alias_id))
|
|
|
|
return se;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-05 18:10:45 +00:00
|
|
|
/**
|
|
|
|
* loadvm_process_command: Process an incoming 'QEMU_VM_COMMAND'
|
|
|
|
*
|
|
|
|
* Returns: 0 on success, negative on error (in which case it will issue an
|
|
|
|
* error message).
|
|
|
|
* @f: The stream to read the command data from.
|
|
|
|
*/
|
|
|
|
static int loadvm_process_command(QEMUFile *f)
|
|
|
|
{
|
2015-11-05 18:10:46 +00:00
|
|
|
MigrationIncomingState *mis = migration_incoming_get_current();
|
2015-11-05 18:10:45 +00:00
|
|
|
uint16_t cmd;
|
|
|
|
uint16_t len;
|
2015-11-05 18:10:46 +00:00
|
|
|
uint32_t tmp32;
|
2015-11-05 18:10:45 +00:00
|
|
|
|
|
|
|
cmd = qemu_get_be16(f);
|
|
|
|
len = qemu_get_be16(f);
|
|
|
|
|
|
|
|
trace_loadvm_process_command(cmd, len);
|
|
|
|
if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
|
|
|
|
error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
|
|
|
|
error_report("%s received with bad length - expecting %zu, got %d",
|
|
|
|
mig_cmd_args[cmd].name,
|
|
|
|
(size_t)mig_cmd_args[cmd].len, len);
|
|
|
|
return -ERANGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd) {
|
2015-11-05 18:10:46 +00:00
|
|
|
case MIG_CMD_OPEN_RETURN_PATH:
|
|
|
|
if (mis->to_src_file) {
|
|
|
|
error_report("CMD_OPEN_RETURN_PATH called when RP already open");
|
|
|
|
/* Not really a problem, so don't give up */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
mis->to_src_file = qemu_file_get_return_path(f);
|
|
|
|
if (!mis->to_src_file) {
|
|
|
|
error_report("CMD_OPEN_RETURN_PATH failed");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIG_CMD_PING:
|
|
|
|
tmp32 = qemu_get_be32(f);
|
|
|
|
trace_loadvm_process_command_ping(tmp32);
|
|
|
|
if (!mis->to_src_file) {
|
|
|
|
error_report("CMD_PING (0x%x) received with no return path",
|
|
|
|
tmp32);
|
|
|
|
return -1;
|
|
|
|
}
|
2015-11-05 18:10:47 +00:00
|
|
|
migrate_send_rp_pong(mis, tmp32);
|
2015-11-05 18:10:46 +00:00
|
|
|
break;
|
2015-11-05 18:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-21 12:24:16 +00:00
|
|
|
struct LoadStateEntry {
|
2009-09-12 07:36:22 +00:00
|
|
|
QLIST_ENTRY(LoadStateEntry) entry;
|
2008-11-11 21:33:36 +00:00
|
|
|
SaveStateEntry *se;
|
|
|
|
int section_id;
|
|
|
|
int version_id;
|
2015-05-21 12:24:16 +00:00
|
|
|
};
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-07-02 08:22:03 +00:00
|
|
|
/*
|
|
|
|
* Read a footer off the wire and check that it matches the expected section
|
|
|
|
*
|
|
|
|
* Returns: true if the footer was good
|
|
|
|
* false if there is a problem (and calls error_report to say why)
|
|
|
|
*/
|
|
|
|
static bool check_section_footer(QEMUFile *f, LoadStateEntry *le)
|
|
|
|
{
|
|
|
|
uint8_t read_mark;
|
|
|
|
uint32_t read_section_id;
|
|
|
|
|
|
|
|
if (skip_section_footers) {
|
|
|
|
/* No footer to check */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_mark = qemu_get_byte(f);
|
|
|
|
|
|
|
|
if (read_mark != QEMU_VM_SECTION_FOOTER) {
|
|
|
|
error_report("Missing section footer for %s", le->se->idstr);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_section_id = qemu_get_be32(f);
|
|
|
|
if (read_section_id != le->section_id) {
|
|
|
|
error_report("Mismatched section id in footer for %s -"
|
|
|
|
" read 0x%x expected 0x%x",
|
|
|
|
le->se->idstr, read_section_id, le->section_id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All good */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-21 12:24:16 +00:00
|
|
|
void loadvm_free_handlers(MigrationIncomingState *mis)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2009-09-01 00:12:33 +00:00
|
|
|
LoadStateEntry *le, *new_le;
|
2015-05-21 12:24:16 +00:00
|
|
|
|
|
|
|
QLIST_FOREACH_SAFE(le, &mis->loadvm_handlers, entry, new_le) {
|
|
|
|
QLIST_REMOVE(le, entry);
|
|
|
|
g_free(le);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int qemu_loadvm_state(QEMUFile *f)
|
|
|
|
{
|
|
|
|
MigrationIncomingState *mis = migration_incoming_get_current();
|
2015-01-21 10:14:49 +00:00
|
|
|
Error *local_err = NULL;
|
2008-11-11 21:33:36 +00:00
|
|
|
uint8_t section_type;
|
|
|
|
unsigned int v;
|
|
|
|
int ret;
|
2015-02-23 12:56:41 +00:00
|
|
|
int file_error_after_eof = -1;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-01-21 10:14:49 +00:00
|
|
|
if (qemu_savevm_state_blocked(&local_err)) {
|
2015-03-04 10:25:54 +00:00
|
|
|
error_report_err(local_err);
|
2011-01-11 21:39:43 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
v = qemu_get_be32(f);
|
2013-11-28 14:01:13 +00:00
|
|
|
if (v != QEMU_VM_FILE_MAGIC) {
|
2015-01-21 10:14:49 +00:00
|
|
|
error_report("Not a migration stream");
|
2008-11-11 21:33:36 +00:00
|
|
|
return -EINVAL;
|
2013-11-28 14:01:13 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
|
|
|
|
v = qemu_get_be32(f);
|
2009-09-10 01:04:24 +00:00
|
|
|
if (v == QEMU_VM_FILE_VERSION_COMPAT) {
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("SaveVM v2 format is obsolete and don't work anymore");
|
2009-09-10 01:04:24 +00:00
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
2013-11-28 14:01:13 +00:00
|
|
|
if (v != QEMU_VM_FILE_VERSION) {
|
2015-01-21 10:14:49 +00:00
|
|
|
error_report("Unsupported migration stream version");
|
2008-11-11 21:33:36 +00:00
|
|
|
return -ENOTSUP;
|
2013-11-28 14:01:13 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-05-13 16:17:43 +00:00
|
|
|
if (!savevm_state.skip_configuration) {
|
|
|
|
if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
|
|
|
|
error_report("Configuration section missing");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
|
|
|
|
uint32_t instance_id, version_id, section_id;
|
|
|
|
SaveStateEntry *se;
|
2015-05-21 12:24:16 +00:00
|
|
|
LoadStateEntry *le;
|
2015-05-21 12:24:11 +00:00
|
|
|
char idstr[256];
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2015-01-21 10:14:48 +00:00
|
|
|
trace_qemu_loadvm_state_section(section_type);
|
2008-11-11 21:33:36 +00:00
|
|
|
switch (section_type) {
|
|
|
|
case QEMU_VM_SECTION_START:
|
|
|
|
case QEMU_VM_SECTION_FULL:
|
|
|
|
/* Read section start */
|
|
|
|
section_id = qemu_get_be32(f);
|
2015-05-21 12:24:11 +00:00
|
|
|
if (!qemu_get_counted_string(f, idstr)) {
|
|
|
|
error_report("Unable to read ID string for section %u",
|
|
|
|
section_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
instance_id = qemu_get_be32(f);
|
|
|
|
version_id = qemu_get_be32(f);
|
|
|
|
|
2015-01-21 10:14:48 +00:00
|
|
|
trace_qemu_loadvm_state_section_startfull(section_id, idstr,
|
|
|
|
instance_id, version_id);
|
2008-11-11 21:33:36 +00:00
|
|
|
/* Find savevm section */
|
|
|
|
se = find_se(idstr, instance_id);
|
|
|
|
if (se == NULL) {
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("Unknown savevm section or instance '%s' %d",
|
|
|
|
idstr, instance_id);
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Validate version */
|
|
|
|
if (version_id > se->version_id) {
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("savevm: unsupported version %d for '%s' v%d",
|
|
|
|
version_id, idstr, se->version_id);
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add entry */
|
2011-08-21 03:09:37 +00:00
|
|
|
le = g_malloc0(sizeof(*le));
|
2008-11-11 21:33:36 +00:00
|
|
|
|
|
|
|
le->se = se;
|
|
|
|
le->section_id = section_id;
|
|
|
|
le->version_id = version_id;
|
2015-05-21 12:24:16 +00:00
|
|
|
QLIST_INSERT_HEAD(&mis->loadvm_handlers, le, entry);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2009-08-20 17:42:24 +00:00
|
|
|
ret = vmstate_load(f, le->se, le->version_id);
|
2009-08-20 17:42:23 +00:00
|
|
|
if (ret < 0) {
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("error while loading state for instance 0x%x of"
|
|
|
|
" device '%s'", instance_id, idstr);
|
2009-08-20 17:42:23 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2015-07-02 08:22:03 +00:00
|
|
|
if (!check_section_footer(f, le)) {
|
2015-05-19 11:29:52 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
break;
|
|
|
|
case QEMU_VM_SECTION_PART:
|
|
|
|
case QEMU_VM_SECTION_END:
|
|
|
|
section_id = qemu_get_be32(f);
|
|
|
|
|
2015-01-21 10:14:48 +00:00
|
|
|
trace_qemu_loadvm_state_section_partend(section_id);
|
2015-05-21 12:24:16 +00:00
|
|
|
QLIST_FOREACH(le, &mis->loadvm_handlers, entry) {
|
2009-09-01 00:12:33 +00:00
|
|
|
if (le->section_id == section_id) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
if (le == NULL) {
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("Unknown savevm section %d", section_id);
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-08-20 17:42:24 +00:00
|
|
|
ret = vmstate_load(f, le->se, le->version_id);
|
2009-08-20 17:42:23 +00:00
|
|
|
if (ret < 0) {
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("error while loading state section id %d(%s)",
|
|
|
|
section_id, le->se->idstr);
|
2009-08-20 17:42:23 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2015-07-02 08:22:03 +00:00
|
|
|
if (!check_section_footer(f, le)) {
|
2015-05-19 11:29:52 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
break;
|
2015-11-05 18:10:45 +00:00
|
|
|
case QEMU_VM_COMMAND:
|
|
|
|
ret = loadvm_process_command(f);
|
|
|
|
if (ret < 0) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
2008-11-11 21:33:36 +00:00
|
|
|
default:
|
2015-01-21 10:14:47 +00:00
|
|
|
error_report("Unknown savevm section type %d", section_type);
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 12:56:41 +00:00
|
|
|
file_error_after_eof = qemu_file_get_error(f);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to read in the VMDESC section as well, so that dumping tools that
|
|
|
|
* intercept our migration stream have the chance to see it.
|
|
|
|
*/
|
2015-06-23 16:34:35 +00:00
|
|
|
|
|
|
|
/* We've got to be careful; if we don't read the data and just shut the fd
|
|
|
|
* then the sender can error if we close while it's still sending.
|
|
|
|
* We also mustn't read data that isn't there; some transports (RDMA)
|
|
|
|
* will stall waiting for that data when the source has already closed.
|
|
|
|
*/
|
|
|
|
if (should_send_vmdesc()) {
|
|
|
|
uint8_t *buf;
|
|
|
|
uint32_t size;
|
|
|
|
section_type = qemu_get_byte(f);
|
|
|
|
|
|
|
|
if (section_type != QEMU_VM_VMDESCRIPTION) {
|
|
|
|
error_report("Expected vmdescription section, but got %d",
|
|
|
|
section_type);
|
|
|
|
/*
|
|
|
|
* It doesn't seem worth failing at this point since
|
|
|
|
* we apparently have an otherwise valid VM state
|
|
|
|
*/
|
|
|
|
} else {
|
|
|
|
buf = g_malloc(0x1000);
|
|
|
|
size = qemu_get_be32(f);
|
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
uint32_t read_chunk = MIN(size, 0x1000);
|
|
|
|
qemu_get_buffer(f, buf, read_chunk);
|
|
|
|
size -= read_chunk;
|
|
|
|
}
|
|
|
|
g_free(buf);
|
2015-02-23 12:56:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-01 18:10:30 +00:00
|
|
|
cpu_synchronize_all_post_init();
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
out:
|
2011-10-04 23:14:46 +00:00
|
|
|
if (ret == 0) {
|
2015-02-23 12:56:41 +00:00
|
|
|
/* We may not have a VMDESC section, so ignore relative errors */
|
|
|
|
ret = file_error_after_eof;
|
2011-10-04 23:02:52 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-05-25 03:09:42 +00:00
|
|
|
static BlockDriverState *find_vmstate_bs(void)
|
|
|
|
{
|
|
|
|
BlockDriverState *bs = NULL;
|
|
|
|
while ((bs = bdrv_next(bs))) {
|
|
|
|
if (bdrv_can_snapshot(bs)) {
|
|
|
|
return bs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-03 16:34:37 +00:00
|
|
|
/*
|
|
|
|
* Deletes snapshots of a given name in all opened images.
|
|
|
|
*/
|
|
|
|
static int del_existing_snapshots(Monitor *mon, const char *name)
|
|
|
|
{
|
|
|
|
BlockDriverState *bs;
|
|
|
|
QEMUSnapshotInfo sn1, *snapshot = &sn1;
|
snapshot: distinguish id and name in snapshot delete
Snapshot creation actually already distinguish id and name since it take
a structured parameter *sn, but delete can't. Later an accurate delete
is needed in qmp_transaction abort and blockdev-snapshot-delete-sync,
so change its prototype. Also *errp is added to tip error, but return
value is kepted to let caller check what kind of error happens. Existing
caller for it are savevm, delvm and qemu-img, they are not impacted by
introducing a new function bdrv_snapshot_delete_by_id_or_name(), which
check the return value and do the operation again.
Before this patch:
For qcow2, it search id first then name to find the one to delete.
For rbd, it search name.
For sheepdog, it does nothing.
After this patch:
For qcow2, logic is the same by call it twice in caller.
For rbd, it always fails in delete with id, but still search for name
in second try, no change to user.
Some code for *errp is based on Pavel's patch.
Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-09-11 06:04:33 +00:00
|
|
|
Error *err = NULL;
|
2009-11-03 16:34:37 +00:00
|
|
|
|
2010-06-02 16:55:21 +00:00
|
|
|
bs = NULL;
|
|
|
|
while ((bs = bdrv_next(bs))) {
|
2009-11-03 16:34:37 +00:00
|
|
|
if (bdrv_can_snapshot(bs) &&
|
2013-11-28 14:01:13 +00:00
|
|
|
bdrv_snapshot_find(bs, snapshot, name) >= 0) {
|
snapshot: distinguish id and name in snapshot delete
Snapshot creation actually already distinguish id and name since it take
a structured parameter *sn, but delete can't. Later an accurate delete
is needed in qmp_transaction abort and blockdev-snapshot-delete-sync,
so change its prototype. Also *errp is added to tip error, but return
value is kepted to let caller check what kind of error happens. Existing
caller for it are savevm, delvm and qemu-img, they are not impacted by
introducing a new function bdrv_snapshot_delete_by_id_or_name(), which
check the return value and do the operation again.
Before this patch:
For qcow2, it search id first then name to find the one to delete.
For rbd, it search name.
For sheepdog, it does nothing.
After this patch:
For qcow2, logic is the same by call it twice in caller.
For rbd, it always fails in delete with id, but still search for name
in second try, no change to user.
Some code for *errp is based on Pavel's patch.
Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-09-11 06:04:33 +00:00
|
|
|
bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
|
2014-01-30 14:07:28 +00:00
|
|
|
if (err) {
|
2009-11-03 16:34:37 +00:00
|
|
|
monitor_printf(mon,
|
snapshot: distinguish id and name in snapshot delete
Snapshot creation actually already distinguish id and name since it take
a structured parameter *sn, but delete can't. Later an accurate delete
is needed in qmp_transaction abort and blockdev-snapshot-delete-sync,
so change its prototype. Also *errp is added to tip error, but return
value is kepted to let caller check what kind of error happens. Existing
caller for it are savevm, delvm and qemu-img, they are not impacted by
introducing a new function bdrv_snapshot_delete_by_id_or_name(), which
check the return value and do the operation again.
Before this patch:
For qcow2, it search id first then name to find the one to delete.
For rbd, it search name.
For sheepdog, it does nothing.
After this patch:
For qcow2, logic is the same by call it twice in caller.
For rbd, it always fails in delete with id, but still search for name
in second try, no change to user.
Some code for *errp is based on Pavel's patch.
Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-09-11 06:04:33 +00:00
|
|
|
"Error while deleting snapshot on device '%s':"
|
|
|
|
" %s\n",
|
|
|
|
bdrv_get_device_name(bs),
|
|
|
|
error_get_pretty(err));
|
|
|
|
error_free(err);
|
2009-11-03 16:34:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
hmp: Name HMP command handler functions hmp_COMMAND()
Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(),
and sometimes COMMAND pointlessly differs in spelling.
Normalize to hmp_COMMAND(), where COMMAND is exactly the command name
with '-' replaced by '_'.
Exceptions:
* do_device_add() and client_migrate_info() *not* renamed to
hmp_device_add(), hmp_client_migrate_info(), because they're also
QMP handlers. They still need to be converted to QAPI.
* do_memory_dump(), do_physical_memory_dump(), do_ioport_read(),
do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(),
hmp_i(), hmp_o(), because those names are too cryptic for my taste.
* do_info_help() renamed to hmp_info_help() instead of hmp_info(),
because it only covers help.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-02-06 12:55:43 +00:00
|
|
|
void hmp_savevm(Monitor *mon, const QDict *qdict)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
|
|
|
BlockDriverState *bs, *bs1;
|
|
|
|
QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
|
2009-11-03 16:34:37 +00:00
|
|
|
int ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
QEMUFile *f;
|
|
|
|
int saved_vm_running;
|
2011-11-16 10:35:54 +00:00
|
|
|
uint64_t vm_state_size;
|
2013-01-07 21:20:27 +00:00
|
|
|
qemu_timeval tv;
|
2010-08-04 17:55:49 +00:00
|
|
|
struct tm tm;
|
2009-08-28 18:27:13 +00:00
|
|
|
const char *name = qdict_get_try_str(qdict, "name");
|
2015-02-10 13:25:02 +00:00
|
|
|
Error *local_err = NULL;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
savevm: Really verify if a drive supports snapshots
Both bdrv_can_snapshot() and bdrv_has_snapshot() does not work as advertized.
First issue: Their names implies different porpouses, but they do the same thing
and have exactly the same code. Maybe copied and pasted and forgotten?
bdrv_has_snapshot() is called in various places for actually checking if there
is snapshots or not.
Second issue: the way bdrv_can_snapshot() verifies if a block driver supports or
not snapshots does not catch all cases. E.g.: a raw image.
So when do_savevm() is called, first thing it does is to set a global
BlockDriverState to save the VM memory state calling get_bs_snapshots().
static BlockDriverState *get_bs_snapshots(void)
{
BlockDriverState *bs;
DriveInfo *dinfo;
if (bs_snapshots)
return bs_snapshots;
QTAILQ_FOREACH(dinfo, &drives, next) {
bs = dinfo->bdrv;
if (bdrv_can_snapshot(bs))
goto ok;
}
return NULL;
ok:
bs_snapshots = bs;
return bs;
}
bdrv_can_snapshot() may return a BlockDriverState that does not support
snapshots and do_savevm() goes on.
Later on in do_savevm(), we find:
QTAILQ_FOREACH(dinfo, &drives, next) {
bs1 = dinfo->bdrv;
if (bdrv_has_snapshot(bs1)) {
/* Write VM state size only to the image that contains the state */
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
ret = bdrv_snapshot_create(bs1, sn);
if (ret < 0) {
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
bdrv_get_device_name(bs1));
}
}
}
bdrv_has_snapshot(bs1) is not checking if the device does support or has
snapshots as explained above. Only in bdrv_snapshot_create() the device is
actually checked for snapshot support.
So, in cases where the first device supports snapshots, and the second does not,
the snapshot on the first will happen anyways. I believe this is not a good
behavior. It should be an all or nothing process.
This patch addresses these issues by making bdrv_can_snapshot() actually do
what it must do and enforces better tests to avoid errors in the middle of
do_savevm(). bdrv_has_snapshot() is removed and replaced by bdrv_can_snapshot()
where appropriate.
bdrv_can_snapshot() was moved from savevm.c to block.c. It makes more sense to me.
The loadvm_state() function was updated too to enforce that when loading a VM at
least all writable devices must support snapshots too.
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2010-06-08 13:40:55 +00:00
|
|
|
/* Verify if there is a device that doesn't support snapshots and is writable */
|
2010-06-02 16:55:21 +00:00
|
|
|
bs = NULL;
|
|
|
|
while ((bs = bdrv_next(bs))) {
|
savevm: Really verify if a drive supports snapshots
Both bdrv_can_snapshot() and bdrv_has_snapshot() does not work as advertized.
First issue: Their names implies different porpouses, but they do the same thing
and have exactly the same code. Maybe copied and pasted and forgotten?
bdrv_has_snapshot() is called in various places for actually checking if there
is snapshots or not.
Second issue: the way bdrv_can_snapshot() verifies if a block driver supports or
not snapshots does not catch all cases. E.g.: a raw image.
So when do_savevm() is called, first thing it does is to set a global
BlockDriverState to save the VM memory state calling get_bs_snapshots().
static BlockDriverState *get_bs_snapshots(void)
{
BlockDriverState *bs;
DriveInfo *dinfo;
if (bs_snapshots)
return bs_snapshots;
QTAILQ_FOREACH(dinfo, &drives, next) {
bs = dinfo->bdrv;
if (bdrv_can_snapshot(bs))
goto ok;
}
return NULL;
ok:
bs_snapshots = bs;
return bs;
}
bdrv_can_snapshot() may return a BlockDriverState that does not support
snapshots and do_savevm() goes on.
Later on in do_savevm(), we find:
QTAILQ_FOREACH(dinfo, &drives, next) {
bs1 = dinfo->bdrv;
if (bdrv_has_snapshot(bs1)) {
/* Write VM state size only to the image that contains the state */
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
ret = bdrv_snapshot_create(bs1, sn);
if (ret < 0) {
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
bdrv_get_device_name(bs1));
}
}
}
bdrv_has_snapshot(bs1) is not checking if the device does support or has
snapshots as explained above. Only in bdrv_snapshot_create() the device is
actually checked for snapshot support.
So, in cases where the first device supports snapshots, and the second does not,
the snapshot on the first will happen anyways. I believe this is not a good
behavior. It should be an all or nothing process.
This patch addresses these issues by making bdrv_can_snapshot() actually do
what it must do and enforces better tests to avoid errors in the middle of
do_savevm(). bdrv_has_snapshot() is removed and replaced by bdrv_can_snapshot()
where appropriate.
bdrv_can_snapshot() was moved from savevm.c to block.c. It makes more sense to me.
The loadvm_state() function was updated too to enforce that when loading a VM at
least all writable devices must support snapshots too.
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2010-06-08 13:40:55 +00:00
|
|
|
|
2011-08-03 13:08:11 +00:00
|
|
|
if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
|
savevm: Really verify if a drive supports snapshots
Both bdrv_can_snapshot() and bdrv_has_snapshot() does not work as advertized.
First issue: Their names implies different porpouses, but they do the same thing
and have exactly the same code. Maybe copied and pasted and forgotten?
bdrv_has_snapshot() is called in various places for actually checking if there
is snapshots or not.
Second issue: the way bdrv_can_snapshot() verifies if a block driver supports or
not snapshots does not catch all cases. E.g.: a raw image.
So when do_savevm() is called, first thing it does is to set a global
BlockDriverState to save the VM memory state calling get_bs_snapshots().
static BlockDriverState *get_bs_snapshots(void)
{
BlockDriverState *bs;
DriveInfo *dinfo;
if (bs_snapshots)
return bs_snapshots;
QTAILQ_FOREACH(dinfo, &drives, next) {
bs = dinfo->bdrv;
if (bdrv_can_snapshot(bs))
goto ok;
}
return NULL;
ok:
bs_snapshots = bs;
return bs;
}
bdrv_can_snapshot() may return a BlockDriverState that does not support
snapshots and do_savevm() goes on.
Later on in do_savevm(), we find:
QTAILQ_FOREACH(dinfo, &drives, next) {
bs1 = dinfo->bdrv;
if (bdrv_has_snapshot(bs1)) {
/* Write VM state size only to the image that contains the state */
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
ret = bdrv_snapshot_create(bs1, sn);
if (ret < 0) {
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
bdrv_get_device_name(bs1));
}
}
}
bdrv_has_snapshot(bs1) is not checking if the device does support or has
snapshots as explained above. Only in bdrv_snapshot_create() the device is
actually checked for snapshot support.
So, in cases where the first device supports snapshots, and the second does not,
the snapshot on the first will happen anyways. I believe this is not a good
behavior. It should be an all or nothing process.
This patch addresses these issues by making bdrv_can_snapshot() actually do
what it must do and enforces better tests to avoid errors in the middle of
do_savevm(). bdrv_has_snapshot() is removed and replaced by bdrv_can_snapshot()
where appropriate.
bdrv_can_snapshot() was moved from savevm.c to block.c. It makes more sense to me.
The loadvm_state() function was updated too to enforce that when loading a VM at
least all writable devices must support snapshots too.
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2010-06-08 13:40:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bdrv_can_snapshot(bs)) {
|
|
|
|
monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
|
|
|
|
bdrv_get_device_name(bs));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-25 03:09:42 +00:00
|
|
|
bs = find_vmstate_bs();
|
2008-11-11 21:33:36 +00:00
|
|
|
if (!bs) {
|
2009-03-05 23:01:23 +00:00
|
|
|
monitor_printf(mon, "No block device can accept snapshots\n");
|
2008-11-11 21:33:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-07-29 18:36:43 +00:00
|
|
|
saved_vm_running = runstate_is_running();
|
2015-07-15 07:53:46 +00:00
|
|
|
|
|
|
|
ret = global_state_store();
|
|
|
|
if (ret) {
|
|
|
|
monitor_printf(mon, "Error saving global state\n");
|
|
|
|
return;
|
|
|
|
}
|
2011-09-30 17:45:27 +00:00
|
|
|
vm_stop(RUN_STATE_SAVE_VM);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2009-11-03 16:34:37 +00:00
|
|
|
memset(sn, 0, sizeof(*sn));
|
2008-11-11 21:33:36 +00:00
|
|
|
|
|
|
|
/* fill auxiliary fields */
|
2013-01-07 21:20:27 +00:00
|
|
|
qemu_gettimeofday(&tv);
|
2008-11-11 21:33:36 +00:00
|
|
|
sn->date_sec = tv.tv_sec;
|
|
|
|
sn->date_nsec = tv.tv_usec * 1000;
|
2013-08-21 15:03:08 +00:00
|
|
|
sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2010-08-04 17:55:49 +00:00
|
|
|
if (name) {
|
|
|
|
ret = bdrv_snapshot_find(bs, old_sn, name);
|
|
|
|
if (ret >= 0) {
|
|
|
|
pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
|
|
|
|
pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
|
|
|
|
} else {
|
|
|
|
pstrcpy(sn->name, sizeof(sn->name), name);
|
|
|
|
}
|
|
|
|
} else {
|
2010-09-09 19:13:04 +00:00
|
|
|
/* cast below needed for OpenBSD where tv_sec is still 'long' */
|
|
|
|
localtime_r((const time_t *)&tv.tv_sec, &tm);
|
2010-08-04 17:55:49 +00:00
|
|
|
strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
|
|
|
|
}
|
|
|
|
|
2009-11-03 16:34:37 +00:00
|
|
|
/* Delete old snapshots of the same name */
|
2010-01-20 16:26:34 +00:00
|
|
|
if (name && del_existing_snapshots(mon, name) < 0) {
|
2009-11-03 16:34:37 +00:00
|
|
|
goto the_end;
|
|
|
|
}
|
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
/* save the VM state */
|
2009-07-10 21:11:57 +00:00
|
|
|
f = qemu_fopen_bdrv(bs, 1);
|
2008-11-11 21:33:36 +00:00
|
|
|
if (!f) {
|
2009-03-05 23:01:23 +00:00
|
|
|
monitor_printf(mon, "Could not open VM state file\n");
|
2008-11-11 21:33:36 +00:00
|
|
|
goto the_end;
|
|
|
|
}
|
2015-02-10 13:25:02 +00:00
|
|
|
ret = qemu_savevm_state(f, &local_err);
|
2008-12-11 21:06:49 +00:00
|
|
|
vm_state_size = qemu_ftell(f);
|
2008-11-11 21:33:36 +00:00
|
|
|
qemu_fclose(f);
|
|
|
|
if (ret < 0) {
|
2015-02-10 13:25:02 +00:00
|
|
|
monitor_printf(mon, "%s\n", error_get_pretty(local_err));
|
|
|
|
error_free(local_err);
|
2008-11-11 21:33:36 +00:00
|
|
|
goto the_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create the snapshots */
|
|
|
|
|
2010-06-02 16:55:21 +00:00
|
|
|
bs1 = NULL;
|
|
|
|
while ((bs1 = bdrv_next(bs1))) {
|
savevm: Really verify if a drive supports snapshots
Both bdrv_can_snapshot() and bdrv_has_snapshot() does not work as advertized.
First issue: Their names implies different porpouses, but they do the same thing
and have exactly the same code. Maybe copied and pasted and forgotten?
bdrv_has_snapshot() is called in various places for actually checking if there
is snapshots or not.
Second issue: the way bdrv_can_snapshot() verifies if a block driver supports or
not snapshots does not catch all cases. E.g.: a raw image.
So when do_savevm() is called, first thing it does is to set a global
BlockDriverState to save the VM memory state calling get_bs_snapshots().
static BlockDriverState *get_bs_snapshots(void)
{
BlockDriverState *bs;
DriveInfo *dinfo;
if (bs_snapshots)
return bs_snapshots;
QTAILQ_FOREACH(dinfo, &drives, next) {
bs = dinfo->bdrv;
if (bdrv_can_snapshot(bs))
goto ok;
}
return NULL;
ok:
bs_snapshots = bs;
return bs;
}
bdrv_can_snapshot() may return a BlockDriverState that does not support
snapshots and do_savevm() goes on.
Later on in do_savevm(), we find:
QTAILQ_FOREACH(dinfo, &drives, next) {
bs1 = dinfo->bdrv;
if (bdrv_has_snapshot(bs1)) {
/* Write VM state size only to the image that contains the state */
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
ret = bdrv_snapshot_create(bs1, sn);
if (ret < 0) {
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
bdrv_get_device_name(bs1));
}
}
}
bdrv_has_snapshot(bs1) is not checking if the device does support or has
snapshots as explained above. Only in bdrv_snapshot_create() the device is
actually checked for snapshot support.
So, in cases where the first device supports snapshots, and the second does not,
the snapshot on the first will happen anyways. I believe this is not a good
behavior. It should be an all or nothing process.
This patch addresses these issues by making bdrv_can_snapshot() actually do
what it must do and enforces better tests to avoid errors in the middle of
do_savevm(). bdrv_has_snapshot() is removed and replaced by bdrv_can_snapshot()
where appropriate.
bdrv_can_snapshot() was moved from savevm.c to block.c. It makes more sense to me.
The loadvm_state() function was updated too to enforce that when loading a VM at
least all writable devices must support snapshots too.
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2010-06-08 13:40:55 +00:00
|
|
|
if (bdrv_can_snapshot(bs1)) {
|
2008-12-11 21:06:49 +00:00
|
|
|
/* Write VM state size only to the image that contains the state */
|
|
|
|
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = bdrv_snapshot_create(bs1, sn);
|
|
|
|
if (ret < 0) {
|
2009-03-05 23:01:23 +00:00
|
|
|
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
|
|
|
|
bdrv_get_device_name(bs1));
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
the_end:
|
2013-11-28 14:01:13 +00:00
|
|
|
if (saved_vm_running) {
|
2008-11-11 21:33:36 +00:00
|
|
|
vm_start();
|
2013-11-28 14:01:13 +00:00
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 12:24:51 +00:00
|
|
|
void qmp_xen_save_devices_state(const char *filename, Error **errp)
|
|
|
|
{
|
|
|
|
QEMUFile *f;
|
|
|
|
int saved_vm_running;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
saved_vm_running = runstate_is_running();
|
|
|
|
vm_stop(RUN_STATE_SAVE_VM);
|
2015-08-03 14:29:19 +00:00
|
|
|
global_state_store_running();
|
2012-01-25 12:24:51 +00:00
|
|
|
|
|
|
|
f = qemu_fopen(filename, "wb");
|
|
|
|
if (!f) {
|
2013-06-07 18:36:58 +00:00
|
|
|
error_setg_file_open(errp, errno, filename);
|
2012-01-25 12:24:51 +00:00
|
|
|
goto the_end;
|
|
|
|
}
|
|
|
|
ret = qemu_save_device_state(f);
|
|
|
|
qemu_fclose(f);
|
|
|
|
if (ret < 0) {
|
2015-03-17 10:54:50 +00:00
|
|
|
error_setg(errp, QERR_IO_ERROR);
|
2012-01-25 12:24:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
the_end:
|
2013-11-28 14:01:13 +00:00
|
|
|
if (saved_vm_running) {
|
2012-01-25 12:24:51 +00:00
|
|
|
vm_start();
|
2013-11-28 14:01:13 +00:00
|
|
|
}
|
2012-01-25 12:24:51 +00:00
|
|
|
}
|
|
|
|
|
2010-02-17 15:24:10 +00:00
|
|
|
int load_vmstate(const char *name)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2010-07-19 18:25:01 +00:00
|
|
|
BlockDriverState *bs, *bs_vm_state;
|
2008-12-11 21:06:49 +00:00
|
|
|
QEMUSnapshotInfo sn;
|
2008-11-11 21:33:36 +00:00
|
|
|
QEMUFile *f;
|
2009-07-22 14:42:57 +00:00
|
|
|
int ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2013-05-25 03:09:42 +00:00
|
|
|
bs_vm_state = find_vmstate_bs();
|
2010-07-19 18:25:01 +00:00
|
|
|
if (!bs_vm_state) {
|
|
|
|
error_report("No block device supports snapshots");
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't even try to load empty VM states */
|
|
|
|
ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
} else if (sn.vm_state_size == 0) {
|
2011-03-01 09:48:12 +00:00
|
|
|
error_report("This is a disk-only snapshot. Revert to it offline "
|
|
|
|
"using qemu-img.");
|
2010-07-19 18:25:01 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify if there is any device that doesn't support snapshots and is
|
|
|
|
writable and check if the requested snapshot is available too. */
|
2010-06-02 16:55:21 +00:00
|
|
|
bs = NULL;
|
|
|
|
while ((bs = bdrv_next(bs))) {
|
savevm: Really verify if a drive supports snapshots
Both bdrv_can_snapshot() and bdrv_has_snapshot() does not work as advertized.
First issue: Their names implies different porpouses, but they do the same thing
and have exactly the same code. Maybe copied and pasted and forgotten?
bdrv_has_snapshot() is called in various places for actually checking if there
is snapshots or not.
Second issue: the way bdrv_can_snapshot() verifies if a block driver supports or
not snapshots does not catch all cases. E.g.: a raw image.
So when do_savevm() is called, first thing it does is to set a global
BlockDriverState to save the VM memory state calling get_bs_snapshots().
static BlockDriverState *get_bs_snapshots(void)
{
BlockDriverState *bs;
DriveInfo *dinfo;
if (bs_snapshots)
return bs_snapshots;
QTAILQ_FOREACH(dinfo, &drives, next) {
bs = dinfo->bdrv;
if (bdrv_can_snapshot(bs))
goto ok;
}
return NULL;
ok:
bs_snapshots = bs;
return bs;
}
bdrv_can_snapshot() may return a BlockDriverState that does not support
snapshots and do_savevm() goes on.
Later on in do_savevm(), we find:
QTAILQ_FOREACH(dinfo, &drives, next) {
bs1 = dinfo->bdrv;
if (bdrv_has_snapshot(bs1)) {
/* Write VM state size only to the image that contains the state */
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
ret = bdrv_snapshot_create(bs1, sn);
if (ret < 0) {
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
bdrv_get_device_name(bs1));
}
}
}
bdrv_has_snapshot(bs1) is not checking if the device does support or has
snapshots as explained above. Only in bdrv_snapshot_create() the device is
actually checked for snapshot support.
So, in cases where the first device supports snapshots, and the second does not,
the snapshot on the first will happen anyways. I believe this is not a good
behavior. It should be an all or nothing process.
This patch addresses these issues by making bdrv_can_snapshot() actually do
what it must do and enforces better tests to avoid errors in the middle of
do_savevm(). bdrv_has_snapshot() is removed and replaced by bdrv_can_snapshot()
where appropriate.
bdrv_can_snapshot() was moved from savevm.c to block.c. It makes more sense to me.
The loadvm_state() function was updated too to enforce that when loading a VM at
least all writable devices must support snapshots too.
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2010-06-08 13:40:55 +00:00
|
|
|
|
2011-08-03 13:08:11 +00:00
|
|
|
if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
|
savevm: Really verify if a drive supports snapshots
Both bdrv_can_snapshot() and bdrv_has_snapshot() does not work as advertized.
First issue: Their names implies different porpouses, but they do the same thing
and have exactly the same code. Maybe copied and pasted and forgotten?
bdrv_has_snapshot() is called in various places for actually checking if there
is snapshots or not.
Second issue: the way bdrv_can_snapshot() verifies if a block driver supports or
not snapshots does not catch all cases. E.g.: a raw image.
So when do_savevm() is called, first thing it does is to set a global
BlockDriverState to save the VM memory state calling get_bs_snapshots().
static BlockDriverState *get_bs_snapshots(void)
{
BlockDriverState *bs;
DriveInfo *dinfo;
if (bs_snapshots)
return bs_snapshots;
QTAILQ_FOREACH(dinfo, &drives, next) {
bs = dinfo->bdrv;
if (bdrv_can_snapshot(bs))
goto ok;
}
return NULL;
ok:
bs_snapshots = bs;
return bs;
}
bdrv_can_snapshot() may return a BlockDriverState that does not support
snapshots and do_savevm() goes on.
Later on in do_savevm(), we find:
QTAILQ_FOREACH(dinfo, &drives, next) {
bs1 = dinfo->bdrv;
if (bdrv_has_snapshot(bs1)) {
/* Write VM state size only to the image that contains the state */
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
ret = bdrv_snapshot_create(bs1, sn);
if (ret < 0) {
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
bdrv_get_device_name(bs1));
}
}
}
bdrv_has_snapshot(bs1) is not checking if the device does support or has
snapshots as explained above. Only in bdrv_snapshot_create() the device is
actually checked for snapshot support.
So, in cases where the first device supports snapshots, and the second does not,
the snapshot on the first will happen anyways. I believe this is not a good
behavior. It should be an all or nothing process.
This patch addresses these issues by making bdrv_can_snapshot() actually do
what it must do and enforces better tests to avoid errors in the middle of
do_savevm(). bdrv_has_snapshot() is removed and replaced by bdrv_can_snapshot()
where appropriate.
bdrv_can_snapshot() was moved from savevm.c to block.c. It makes more sense to me.
The loadvm_state() function was updated too to enforce that when loading a VM at
least all writable devices must support snapshots too.
Signed-off-by: Miguel Di Ciurcio Filho <miguel.filho@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2010-06-08 13:40:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bdrv_can_snapshot(bs)) {
|
|
|
|
error_report("Device '%s' is writable but does not support snapshots.",
|
|
|
|
bdrv_get_device_name(bs));
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
2010-07-19 18:25:01 +00:00
|
|
|
ret = bdrv_snapshot_find(bs, &sn, name);
|
|
|
|
if (ret < 0) {
|
|
|
|
error_report("Device '%s' does not have the requested snapshot '%s'",
|
|
|
|
bdrv_get_device_name(bs), name);
|
|
|
|
return ret;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Flush all IO requests so they don't interfere with the new state. */
|
2011-11-30 12:23:43 +00:00
|
|
|
bdrv_drain_all();
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2010-07-19 18:25:01 +00:00
|
|
|
bs = NULL;
|
|
|
|
while ((bs = bdrv_next(bs))) {
|
|
|
|
if (bdrv_can_snapshot(bs)) {
|
|
|
|
ret = bdrv_snapshot_goto(bs, name);
|
2008-11-11 21:33:36 +00:00
|
|
|
if (ret < 0) {
|
2010-07-19 18:25:01 +00:00
|
|
|
error_report("Error %d while activating snapshot '%s' on '%s'",
|
|
|
|
ret, name, bdrv_get_device_name(bs));
|
|
|
|
return ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* restore the VM state */
|
2010-07-19 18:25:01 +00:00
|
|
|
f = qemu_fopen_bdrv(bs_vm_state, 0);
|
2008-11-11 21:33:36 +00:00
|
|
|
if (!f) {
|
2010-02-18 16:25:24 +00:00
|
|
|
error_report("Could not open VM state file");
|
2009-08-20 17:42:22 +00:00
|
|
|
return -EINVAL;
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
2010-07-19 18:25:01 +00:00
|
|
|
|
2011-06-14 16:29:45 +00:00
|
|
|
qemu_system_reset(VMRESET_SILENT);
|
2015-05-21 12:24:14 +00:00
|
|
|
migration_incoming_state_new(f);
|
2008-11-11 21:33:36 +00:00
|
|
|
ret = qemu_loadvm_state(f);
|
2010-07-19 18:25:01 +00:00
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
qemu_fclose(f);
|
2015-05-21 12:24:14 +00:00
|
|
|
migration_incoming_state_destroy();
|
2008-11-11 21:33:36 +00:00
|
|
|
if (ret < 0) {
|
2010-02-18 16:25:24 +00:00
|
|
|
error_report("Error %d while loading VM state", ret);
|
2009-08-20 17:42:22 +00:00
|
|
|
return ret;
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
2010-07-19 18:25:01 +00:00
|
|
|
|
2009-08-20 17:42:22 +00:00
|
|
|
return 0;
|
2009-08-20 17:42:20 +00:00
|
|
|
}
|
|
|
|
|
hmp: Name HMP command handler functions hmp_COMMAND()
Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(),
and sometimes COMMAND pointlessly differs in spelling.
Normalize to hmp_COMMAND(), where COMMAND is exactly the command name
with '-' replaced by '_'.
Exceptions:
* do_device_add() and client_migrate_info() *not* renamed to
hmp_device_add(), hmp_client_migrate_info(), because they're also
QMP handlers. They still need to be converted to QAPI.
* do_memory_dump(), do_physical_memory_dump(), do_ioport_read(),
do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(),
hmp_i(), hmp_o(), because those names are too cryptic for my taste.
* do_info_help() renamed to hmp_info_help() instead of hmp_info(),
because it only covers help.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-02-06 12:55:43 +00:00
|
|
|
void hmp_delvm(Monitor *mon, const QDict *qdict)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
2014-09-29 08:38:02 +00:00
|
|
|
BlockDriverState *bs;
|
2014-10-06 16:33:45 +00:00
|
|
|
Error *err;
|
2009-08-28 18:27:13 +00:00
|
|
|
const char *name = qdict_get_str(qdict, "name");
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2014-09-29 08:38:02 +00:00
|
|
|
if (!find_vmstate_bs()) {
|
2009-03-05 23:01:23 +00:00
|
|
|
monitor_printf(mon, "No block device supports snapshots\n");
|
2008-11-11 21:33:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-29 08:38:02 +00:00
|
|
|
bs = NULL;
|
|
|
|
while ((bs = bdrv_next(bs))) {
|
|
|
|
if (bdrv_can_snapshot(bs)) {
|
2014-10-06 16:33:45 +00:00
|
|
|
err = NULL;
|
snapshot: distinguish id and name in snapshot delete
Snapshot creation actually already distinguish id and name since it take
a structured parameter *sn, but delete can't. Later an accurate delete
is needed in qmp_transaction abort and blockdev-snapshot-delete-sync,
so change its prototype. Also *errp is added to tip error, but return
value is kepted to let caller check what kind of error happens. Existing
caller for it are savevm, delvm and qemu-img, they are not impacted by
introducing a new function bdrv_snapshot_delete_by_id_or_name(), which
check the return value and do the operation again.
Before this patch:
For qcow2, it search id first then name to find the one to delete.
For rbd, it search name.
For sheepdog, it does nothing.
After this patch:
For qcow2, logic is the same by call it twice in caller.
For rbd, it always fails in delete with id, but still search for name
in second try, no change to user.
Some code for *errp is based on Pavel's patch.
Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-09-11 06:04:33 +00:00
|
|
|
bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
|
2014-01-30 14:07:28 +00:00
|
|
|
if (err) {
|
snapshot: distinguish id and name in snapshot delete
Snapshot creation actually already distinguish id and name since it take
a structured parameter *sn, but delete can't. Later an accurate delete
is needed in qmp_transaction abort and blockdev-snapshot-delete-sync,
so change its prototype. Also *errp is added to tip error, but return
value is kepted to let caller check what kind of error happens. Existing
caller for it are savevm, delvm and qemu-img, they are not impacted by
introducing a new function bdrv_snapshot_delete_by_id_or_name(), which
check the return value and do the operation again.
Before this patch:
For qcow2, it search id first then name to find the one to delete.
For rbd, it search name.
For sheepdog, it does nothing.
After this patch:
For qcow2, logic is the same by call it twice in caller.
For rbd, it always fails in delete with id, but still search for name
in second try, no change to user.
Some code for *errp is based on Pavel's patch.
Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-09-11 06:04:33 +00:00
|
|
|
monitor_printf(mon,
|
|
|
|
"Error while deleting snapshot on device '%s':"
|
|
|
|
" %s\n",
|
|
|
|
bdrv_get_device_name(bs),
|
|
|
|
error_get_pretty(err));
|
|
|
|
error_free(err);
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-06 13:18:24 +00:00
|
|
|
void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
|
2008-11-11 21:33:36 +00:00
|
|
|
{
|
|
|
|
BlockDriverState *bs, *bs1;
|
2010-08-04 17:55:48 +00:00
|
|
|
QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
|
|
|
|
int nb_sns, i, ret, available;
|
|
|
|
int total;
|
|
|
|
int *available_snapshots;
|
2008-11-11 21:33:36 +00:00
|
|
|
|
2013-05-25 03:09:42 +00:00
|
|
|
bs = find_vmstate_bs();
|
2008-11-11 21:33:36 +00:00
|
|
|
if (!bs) {
|
2009-03-05 23:01:23 +00:00
|
|
|
monitor_printf(mon, "No available block device supports snapshots\n");
|
2008-11-11 21:33:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nb_sns = bdrv_snapshot_list(bs, &sn_tab);
|
|
|
|
if (nb_sns < 0) {
|
2009-03-05 23:01:23 +00:00
|
|
|
monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
|
2008-11-11 21:33:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-08-04 17:55:48 +00:00
|
|
|
|
|
|
|
if (nb_sns == 0) {
|
|
|
|
monitor_printf(mon, "There is no snapshot available.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-14 11:51:31 +00:00
|
|
|
available_snapshots = g_new0(int, nb_sns);
|
2010-08-04 17:55:48 +00:00
|
|
|
total = 0;
|
|
|
|
for (i = 0; i < nb_sns; i++) {
|
2008-11-11 21:33:36 +00:00
|
|
|
sn = &sn_tab[i];
|
2010-08-04 17:55:48 +00:00
|
|
|
available = 1;
|
|
|
|
bs1 = NULL;
|
|
|
|
|
|
|
|
while ((bs1 = bdrv_next(bs1))) {
|
|
|
|
if (bdrv_can_snapshot(bs1) && bs1 != bs) {
|
|
|
|
ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
|
|
|
|
if (ret < 0) {
|
|
|
|
available = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (available) {
|
|
|
|
available_snapshots[total] = i;
|
|
|
|
total++;
|
|
|
|
}
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
2010-08-04 17:55:48 +00:00
|
|
|
|
|
|
|
if (total > 0) {
|
2013-05-25 03:09:45 +00:00
|
|
|
bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
|
|
|
|
monitor_printf(mon, "\n");
|
2010-08-04 17:55:48 +00:00
|
|
|
for (i = 0; i < total; i++) {
|
|
|
|
sn = &sn_tab[available_snapshots[i]];
|
2013-05-25 03:09:45 +00:00
|
|
|
bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
|
|
|
|
monitor_printf(mon, "\n");
|
2010-08-04 17:55:48 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
monitor_printf(mon, "There is no suitable snapshot available\n");
|
|
|
|
}
|
|
|
|
|
2011-08-21 03:09:37 +00:00
|
|
|
g_free(sn_tab);
|
|
|
|
g_free(available_snapshots);
|
2010-08-04 17:55:48 +00:00
|
|
|
|
2008-11-11 21:33:36 +00:00
|
|
|
}
|
2011-12-20 13:59:12 +00:00
|
|
|
|
|
|
|
void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
|
|
|
|
{
|
2012-01-08 11:18:19 +00:00
|
|
|
qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
|
2011-12-20 13:59:12 +00:00
|
|
|
memory_region_name(mr), dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
|
|
|
|
{
|
2014-04-02 07:13:27 +00:00
|
|
|
qemu_ram_unset_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK);
|
2011-12-20 13:59:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void vmstate_register_ram_global(MemoryRegion *mr)
|
|
|
|
{
|
|
|
|
vmstate_register_ram(mr, NULL);
|
|
|
|
}
|