savevm.c 71.8 KB
Newer Older
A
aliguori 已提交
1 2 3 4
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
5 6 7 8
 * Copyright (c) 2009-2015 Red Hat Inc
 *
 * Authors:
 *  Juan Quintela <quintela@redhat.com>
A
aliguori 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *
 * 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.
 */

P
Peter Maydell 已提交
29
#include "qemu/osdep.h"
30
#include "cpu.h"
31
#include "hw/boards.h"
32
#include "hw/hw.h"
33
#include "hw/qdev.h"
34
#include "hw/xen/xen.h"
P
Paolo Bonzini 已提交
35
#include "net/net.h"
36
#include "monitor/monitor.h"
37
#include "sysemu/sysemu.h"
38
#include "qemu/timer.h"
39
#include "audio/audio.h"
40
#include "migration/migration.h"
D
Dr. David Alan Gilbert 已提交
41
#include "migration/postcopy-ram.h"
42
#include "qapi/qmp/qerror.h"
43
#include "qemu/error-report.h"
44 45
#include "qemu/sockets.h"
#include "qemu/queue.h"
46
#include "sysemu/cpus.h"
47
#include "exec/memory.h"
48
#include "qmp-commands.h"
49
#include "trace.h"
50
#include "qemu/bitops.h"
51
#include "qemu/iov.h"
52
#include "block/snapshot.h"
53
#include "block/qapi.h"
54
#include "qemu/cutils.h"
55
#include "io/channel-buffer.h"
56
#include "io/channel-file.h"
A
aliguori 已提交
57

N
Nolan 已提交
58
#ifndef ETH_P_RARP
S
Stefan Berger 已提交
59
#define ETH_P_RARP 0x8035
N
Nolan 已提交
60 61 62 63 64
#endif
#define ARP_HTYPE_ETH 0x0001
#define ARP_PTYPE_IP 0x0800
#define ARP_OP_REQUEST_REV 0x3

65 66
const unsigned int postcopy_ram_discard_version = 0;

67 68
static bool skip_section_footers;

D
Dr. David Alan Gilbert 已提交
69 70 71 72 73
static struct mig_cmd_args {
    ssize_t     len; /* -1 = variable */
    const char *name;
} mig_cmd_args[] = {
    [MIG_CMD_INVALID]          = { .len = -1, .name = "INVALID" },
74 75
    [MIG_CMD_OPEN_RETURN_PATH] = { .len =  0, .name = "OPEN_RETURN_PATH" },
    [MIG_CMD_PING]             = { .len = sizeof(uint32_t), .name = "PING" },
76 77 78 79 80
    [MIG_CMD_POSTCOPY_ADVISE]  = { .len = 16, .name = "POSTCOPY_ADVISE" },
    [MIG_CMD_POSTCOPY_LISTEN]  = { .len =  0, .name = "POSTCOPY_LISTEN" },
    [MIG_CMD_POSTCOPY_RUN]     = { .len =  0, .name = "POSTCOPY_RUN" },
    [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
                                   .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
81
    [MIG_CMD_PACKAGED]         = { .len =  4, .name = "PACKAGED" },
D
Dr. David Alan Gilbert 已提交
82 83 84
    [MIG_CMD_MAX]              = { .len = -1, .name = "MAX" },
};

N
Nolan 已提交
85
static int announce_self_create(uint8_t *buf,
86
                                uint8_t *mac_addr)
A
aliguori 已提交
87
{
N
Nolan 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    /* 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) */
A
aliguori 已提交
108 109
}

M
Mark McLoughlin 已提交
110
static void qemu_announce_self_iter(NICState *nic, void *opaque)
A
aliguori 已提交
111
{
N
Nolan 已提交
112
    uint8_t buf[60];
M
Mark McLoughlin 已提交
113 114
    int len;

115
    trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
M
Mark McLoughlin 已提交
116 117
    len = announce_self_create(buf, nic->conf->macaddr.a);

J
Jason Wang 已提交
118
    qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
M
Mark McLoughlin 已提交
119 120 121 122 123
}


static void qemu_announce_self_once(void *opaque)
{
124 125
    static int count = SELF_ANNOUNCE_ROUNDS;
    QEMUTimer *timer = *(QEMUTimer **)opaque;
A
aliguori 已提交
126

M
Mark McLoughlin 已提交
127 128
    qemu_foreach_nic(qemu_announce_self_iter, NULL);

N
Nolan 已提交
129 130
    if (--count) {
        /* delay 50ms, 150ms, 250ms, ... */
131
        timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
132
                  self_announce_delay(count));
133
    } else {
134 135
            timer_del(timer);
            timer_free(timer);
136 137 138 139 140
    }
}

void qemu_announce_self(void)
{
141 142 143
    static QEMUTimer *timer;
    timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
    qemu_announce_self_once(&timer);
A
aliguori 已提交
144 145 146 147 148
}

/***********************************************************/
/* savevm/loadvm support */

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
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;
}

164 165
static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
                                size_t size)
A
aliguori 已提交
166
{
167
    return bdrv_load_vmstate(opaque, buf, pos, size);
A
aliguori 已提交
168 169 170 171
}

static int bdrv_fclose(void *opaque)
{
172
    return bdrv_flush(opaque);
A
aliguori 已提交
173 174
}

175 176 177 178 179 180
static const QEMUFileOps bdrv_read_ops = {
    .get_buffer = block_get_buffer,
    .close =      bdrv_fclose
};

static const QEMUFileOps bdrv_write_ops = {
181 182
    .writev_buffer  = block_writev_buffer,
    .close          = bdrv_fclose
183 184
};

185
static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
A
aliguori 已提交
186
{
E
Eduardo Habkost 已提交
187
    if (is_writable) {
188
        return qemu_fopen_ops(bs, &bdrv_write_ops);
E
Eduardo Habkost 已提交
189
    }
190
    return qemu_fopen_ops(bs, &bdrv_read_ops);
A
aliguori 已提交
191 192
}

193

194 195 196
/* QEMUFile timer support.
 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
 */
197

198
void timer_put(QEMUFile *f, QEMUTimer *ts)
199 200 201
{
    uint64_t expire_time;

202
    expire_time = timer_expire_time_ns(ts);
203 204 205
    qemu_put_be64(f, expire_time);
}

206
void timer_get(QEMUFile *f, QEMUTimer *ts)
207 208 209 210 211
{
    uint64_t expire_time;

    expire_time = qemu_get_be64(f);
    if (expire_time != -1) {
212
        timer_mod_ns(ts, expire_time);
213
    } else {
214
        timer_del(ts);
215 216 217 218
    }
}


219 220 221
/* VMState timer support.
 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
 */
J
Juan Quintela 已提交
222

J
Jianjun Duan 已提交
223
static int get_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field)
J
Juan Quintela 已提交
224 225
{
    QEMUTimer *v = pv;
226
    timer_get(f, v);
J
Juan Quintela 已提交
227 228 229
    return 0;
}

J
Jianjun Duan 已提交
230 231
static int put_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field,
                     QJSON *vmdesc)
J
Juan Quintela 已提交
232
{
233
    QEMUTimer *v = pv;
234
    timer_put(f, v);
J
Jianjun Duan 已提交
235 236

    return 0;
J
Juan Quintela 已提交
237 238 239 240 241 242 243 244
}

const VMStateInfo vmstate_info_timer = {
    .name = "timer",
    .get  = get_timer,
    .put  = put_timer,
};

245

246 247 248 249 250
typedef struct CompatEntry {
    char idstr[256];
    int instance_id;
} CompatEntry;

A
aliguori 已提交
251
typedef struct SaveStateEntry {
B
Blue Swirl 已提交
252
    QTAILQ_ENTRY(SaveStateEntry) entry;
A
aliguori 已提交
253 254
    char idstr[256];
    int instance_id;
J
Jan Kiszka 已提交
255
    int alias_id;
A
aliguori 已提交
256 257
    int version_id;
    int section_id;
258
    SaveVMHandlers *ops;
259
    const VMStateDescription *vmsd;
A
aliguori 已提交
260
    void *opaque;
261
    CompatEntry *compat;
262
    int is_ram;
A
aliguori 已提交
263 264
} SaveStateEntry;

J
Juan Quintela 已提交
265 266 267
typedef struct SaveState {
    QTAILQ_HEAD(, SaveStateEntry) handlers;
    int global_section_id;
268 269 270
    bool skip_configuration;
    uint32_t len;
    const char *name;
271
    uint32_t target_page_bits;
J
Juan Quintela 已提交
272 273 274 275 276
} SaveState;

static SaveState savevm_state = {
    .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
    .global_section_id = 0,
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
    .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;
293 294 295 296 297 298 299 300 301 302 303 304 305
    state->target_page_bits = TARGET_PAGE_BITS;
}

static int configuration_pre_load(void *opaque)
{
    SaveState *state = opaque;

    /* If there is no target-page-bits subsection it means the source
     * predates the variable-target-page-bits support and is using the
     * minimum possible value for this CPU.
     */
    state->target_page_bits = TARGET_PAGE_BITS_MIN;
    return 0;
306 307 308 309 310 311 312 313
}

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) {
314 315
        error_report("Machine type received is '%.*s' and local is '%s'",
                     (int) state->len, state->name, current_name);
316 317
        return -EINVAL;
    }
318 319 320 321 322 323 324

    if (state->target_page_bits != TARGET_PAGE_BITS) {
        error_report("Received TARGET_PAGE_BITS is %d but local is %d",
                     state->target_page_bits, TARGET_PAGE_BITS);
        return -EINVAL;
    }

325 326 327
    return 0;
}

328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
/* The target-page-bits subsection is present only if the
 * target page size is not the same as the default (ie the
 * minimum page size for a variable-page-size guest CPU).
 * If it is present then it contains the actual target page
 * bits for the machine, and migration will fail if the
 * two ends don't agree about it.
 */
static bool vmstate_target_page_bits_needed(void *opaque)
{
    return TARGET_PAGE_BITS > TARGET_PAGE_BITS_MIN;
}

static const VMStateDescription vmstate_target_page_bits = {
    .name = "configuration/target-page-bits",
    .version_id = 1,
    .minimum_version_id = 1,
    .needed = vmstate_target_page_bits_needed,
    .fields = (VMStateField[]) {
        VMSTATE_UINT32(target_page_bits, SaveState),
        VMSTATE_END_OF_LIST()
    }
};

351 352 353
static const VMStateDescription vmstate_configuration = {
    .name = "configuration",
    .version_id = 1,
354
    .pre_load = configuration_pre_load,
355 356 357 358
    .post_load = configuration_post_load,
    .pre_save = configuration_pre_save,
    .fields = (VMStateField[]) {
        VMSTATE_UINT32(len, SaveState),
359
        VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
360 361
        VMSTATE_END_OF_LIST()
    },
362 363 364 365
    .subsections = (const VMStateDescription*[]) {
        &vmstate_target_page_bits,
        NULL
    }
J
Juan Quintela 已提交
366
};
A
aliguori 已提交
367

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
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,
391
                              const VMStateDescription **subsection,
392 393
                              int indent)
{
394 395
    if (*subsection != NULL) {
        dump_vmstate_vmsd(out_file, *subsection, indent, true);
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
    }
}

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) {
436
        const VMStateDescription **subsection = vmsd->subsections;
437 438 439 440
        bool first;

        fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
        first = true;
441
        while (*subsection != NULL) {
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
            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);
}

506 507 508 509 510
static int calculate_new_instance_id(const char *idstr)
{
    SaveStateEntry *se;
    int instance_id = 0;

J
Juan Quintela 已提交
511
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
512 513 514 515 516 517 518 519
        if (strcmp(idstr, se->idstr) == 0
            && instance_id <= se->instance_id) {
            instance_id = se->instance_id + 1;
        }
    }
    return instance_id;
}

520 521 522 523 524
static int calculate_compat_instance_id(const char *idstr)
{
    SaveStateEntry *se;
    int instance_id = 0;

J
Juan Quintela 已提交
525
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
E
Eduardo Habkost 已提交
526
        if (!se->compat) {
527
            continue;
E
Eduardo Habkost 已提交
528
        }
529 530 531 532 533 534 535 536 537

        if (strcmp(idstr, se->compat->idstr) == 0
            && instance_id <= se->compat->instance_id) {
            instance_id = se->compat->instance_id + 1;
        }
    }
    return instance_id;
}

538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
static inline MigrationPriority save_state_priority(SaveStateEntry *se)
{
    if (se->vmsd) {
        return se->vmsd->priority;
    }
    return MIG_PRI_DEFAULT;
}

static void savevm_state_handler_insert(SaveStateEntry *nse)
{
    MigrationPriority priority = save_state_priority(nse);
    SaveStateEntry *se;

    assert(priority <= MIG_PRI_MAX);

    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
        if (save_state_priority(se) < priority) {
            break;
        }
    }

    if (se) {
        QTAILQ_INSERT_BEFORE(se, nse, entry);
    } else {
        QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
    }
}

A
aliguori 已提交
566 567 568 569
/* 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. */
A
Alex Williamson 已提交
570 571
int register_savevm_live(DeviceState *dev,
                         const char *idstr,
A
aliguori 已提交
572 573
                         int instance_id,
                         int version_id,
574
                         SaveVMHandlers *ops,
A
aliguori 已提交
575 576
                         void *opaque)
{
577
    SaveStateEntry *se;
A
aliguori 已提交
578

579
    se = g_new0(SaveStateEntry, 1);
A
aliguori 已提交
580
    se->version_id = version_id;
J
Juan Quintela 已提交
581
    se->section_id = savevm_state.global_section_id++;
582
    se->ops = ops;
A
aliguori 已提交
583
    se->opaque = opaque;
584
    se->vmsd = NULL;
585
    /* if this is a live_savem then set is_ram */
586
    if (ops->save_live_setup != NULL) {
587 588
        se->is_ram = 1;
    }
A
aliguori 已提交
589

590 591
    if (dev) {
        char *id = qdev_get_dev_path(dev);
592
        if (id) {
593 594 595 596 597 598 599 600
            if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
                sizeof(se->idstr)) {
                error_report("Path too long for VMState (%s)", id);
                g_free(id);
                g_free(se);

                return -1;
            }
601
            g_free(id);
602

603
            se->compat = g_new0(CompatEntry, 1);
604 605 606 607 608 609 610 611
            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);

612
    if (instance_id == -1) {
613
        se->instance_id = calculate_new_instance_id(se->idstr);
614 615
    } else {
        se->instance_id = instance_id;
A
aliguori 已提交
616
    }
617
    assert(!se->compat || se->instance_id == 0);
618
    savevm_state_handler_insert(se);
A
aliguori 已提交
619 620 621
    return 0;
}

A
Alex Williamson 已提交
622 623
int register_savevm(DeviceState *dev,
                    const char *idstr,
A
aliguori 已提交
624 625 626 627 628 629
                    int instance_id,
                    int version_id,
                    SaveStateHandler *save_state,
                    LoadStateHandler *load_state,
                    void *opaque)
{
630
    SaveVMHandlers *ops = g_new0(SaveVMHandlers, 1);
631 632
    ops->save_state = save_state;
    ops->load_state = load_state;
A
Alex Williamson 已提交
633
    return register_savevm_live(dev, idstr, instance_id, version_id,
634
                                ops, opaque);
A
aliguori 已提交
635 636
}

A
Alex Williamson 已提交
637
void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
638
{
639
    SaveStateEntry *se, *new_se;
640 641
    char id[256] = "";

642 643
    if (dev) {
        char *path = qdev_get_dev_path(dev);
644 645 646
        if (path) {
            pstrcpy(id, sizeof(id), path);
            pstrcat(id, sizeof(id), "/");
647
            g_free(path);
648 649 650
        }
    }
    pstrcat(id, sizeof(id), idstr);
651

J
Juan Quintela 已提交
652
    QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
653
        if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
J
Juan Quintela 已提交
654
            QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
655
            g_free(se->compat);
656
            g_free(se->ops);
657
            g_free(se);
658 659 660 661
        }
    }
}

A
Alex Williamson 已提交
662
int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
J
Jan Kiszka 已提交
663 664
                                   const VMStateDescription *vmsd,
                                   void *opaque, int alias_id,
665 666
                                   int required_for_version,
                                   Error **errp)
667
{
668
    SaveStateEntry *se;
669

J
Jan Kiszka 已提交
670 671 672
    /* If this triggers, alias support can be dropped for the vmsd. */
    assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);

673
    se = g_new0(SaveStateEntry, 1);
674
    se->version_id = vmsd->version_id;
J
Juan Quintela 已提交
675
    se->section_id = savevm_state.global_section_id++;
676 677
    se->opaque = opaque;
    se->vmsd = vmsd;
J
Jan Kiszka 已提交
678
    se->alias_id = alias_id;
679

680 681
    if (dev) {
        char *id = qdev_get_dev_path(dev);
682
        if (id) {
683 684 685 686 687 688 689 690
            if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
                sizeof(se->idstr)) {
                error_setg(errp, "Path too long for VMState (%s)", id);
                g_free(id);
                g_free(se);

                return -1;
            }
691
            g_free(id);
692

693
            se->compat = g_new0(CompatEntry, 1);
694 695 696 697 698 699 700 701
            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);

702
    if (instance_id == -1) {
703
        se->instance_id = calculate_new_instance_id(se->idstr);
704 705
    } else {
        se->instance_id = instance_id;
706
    }
707
    assert(!se->compat || se->instance_id == 0);
708
    savevm_state_handler_insert(se);
709 710 711
    return 0;
}

A
Alex Williamson 已提交
712 713
void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
                        void *opaque)
714
{
715 716
    SaveStateEntry *se, *new_se;

J
Juan Quintela 已提交
717
    QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
718
        if (se->vmsd == vmsd && se->opaque == opaque) {
J
Juan Quintela 已提交
719
            QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
720
            g_free(se->compat);
721
            g_free(se);
722 723
        }
    }
724 725
}

726 727
static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
{
728
    trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
729
    if (!se->vmsd) {         /* Old style */
730
        return se->ops->load_state(f, se->opaque, version_id);
731 732
    }
    return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
733 734
}

735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
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)
756
{
757
    trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
758 759
    if (!se->vmsd) {
        vmstate_save_old_style(f, se, vmdesc);
A
Alex Williamson 已提交
760
        return;
761
    }
762
    vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
763 764
}

765 766 767 768 769
void savevm_skip_section_footers(void)
{
    skip_section_footers = true;
}

770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
/*
 * 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);
    }
}

791 792 793 794 795 796 797 798 799 800 801 802
/*
 * 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);
    }
}

D
Dr. David Alan Gilbert 已提交
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
/**
 * 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);
}

825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
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);
}

840 841 842 843 844 845 846 847 848
/* We have a buffer of data to send; we don't want that all to be loaded
 * by the command itself, so the command contains just the length of the
 * extra buffer that we then send straight after it.
 * TODO: Must be a better way to organise that
 *
 * Returns:
 *    0 on success
 *    -ve on error
 */
849
int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
850 851 852 853 854 855 856 857 858 859 860 861 862 863
{
    uint32_t tmp;

    if (len > MAX_VM_CMD_PACKAGED_SIZE) {
        error_report("%s: Unreasonably large packaged state: %zu",
                     __func__, len);
        return -1;
    }

    tmp = cpu_to_be32(len);

    trace_qemu_savevm_send_packaged();
    qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);

864
    qemu_put_buffer(f, buf, len);
865 866 867 868

    return 0;
}

869 870 871 872
/* Send prior to any postcopy transfer */
void qemu_savevm_send_postcopy_advise(QEMUFile *f)
{
    uint64_t tmp[2];
873
    tmp[0] = cpu_to_be64(ram_pagesize_summary());
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
    tmp[1] = cpu_to_be64(1ul << qemu_target_page_bits());

    trace_qemu_savevm_send_postcopy_advise();
    qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 16, (uint8_t *)tmp);
}

/* Sent prior to starting the destination running in postcopy, discard pages
 * that have already been sent but redirtied on the source.
 * CMD_POSTCOPY_RAM_DISCARD consist of:
 *      byte   version (0)
 *      byte   Length of name field (not including 0)
 *  n x byte   RAM block name
 *      byte   0 terminator (just for safety)
 *  n x        Byte ranges within the named RAMBlock
 *      be64   Start of the range
 *      be64   Length
 *
 *  name:  RAMBlock name that these entries are part of
 *  len: Number of page entries
 *  start_list: 'len' addresses
 *  length_list: 'len' addresses
 *
 */
void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
                                           uint16_t len,
                                           uint64_t *start_list,
                                           uint64_t *length_list)
{
    uint8_t *buf;
    uint16_t tmplen;
    uint16_t t;
    size_t name_len = strlen(name);

    trace_qemu_savevm_send_postcopy_ram_discard(name, len);
    assert(name_len < 256);
    buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
    buf[0] = postcopy_ram_discard_version;
    buf[1] = name_len;
    memcpy(buf + 2, name, name_len);
    tmplen = 2 + name_len;
    buf[tmplen++] = '\0';

    for (t = 0; t < len; t++) {
917
        stq_be_p(buf + tmplen, start_list[t]);
918
        tmplen += 8;
919
        stq_be_p(buf + tmplen, length_list[t]);
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
        tmplen += 8;
    }
    qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
    g_free(buf);
}

/* Get the destination into a state where it can receive postcopy data. */
void qemu_savevm_send_postcopy_listen(QEMUFile *f)
{
    trace_savevm_send_postcopy_listen();
    qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
}

/* Kick the destination into running */
void qemu_savevm_send_postcopy_run(QEMUFile *f)
{
    trace_savevm_send_postcopy_run();
    qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
}

L
Luiz Capitulino 已提交
940
bool qemu_savevm_state_blocked(Error **errp)
A
Alex Williamson 已提交
941 942 943
{
    SaveStateEntry *se;

J
Juan Quintela 已提交
944
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
945
        if (se->vmsd && se->vmsd->unmigratable) {
946 947
            error_setg(errp, "State blocked by non-migratable device '%s'",
                       se->idstr);
A
Alex Williamson 已提交
948 949 950 951 952 953
            return true;
        }
    }
    return false;
}

954 955 956 957 958 959
static bool enforce_config_section(void)
{
    MachineState *machine = MACHINE(qdev_get_machine());
    return machine->enforce_config_section;
}

960 961 962 963 964
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);
965

966
    if (!savevm_state.skip_configuration || enforce_config_section()) {
967 968 969 970
        qemu_put_byte(f, QEMU_VM_CONFIGURATION);
        vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
    }

971 972
}

973 974
void qemu_savevm_state_begin(QEMUFile *f,
                             const MigrationParams *params)
A
aliguori 已提交
975 976
{
    SaveStateEntry *se;
J
Juan Quintela 已提交
977
    int ret;
A
aliguori 已提交
978

979
    trace_savevm_state_begin();
J
Juan Quintela 已提交
980
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
981
        if (!se->ops || !se->ops->set_params) {
L
lirans@il.ibm.com 已提交
982
            continue;
I
Isaku Yamahata 已提交
983
        }
984
        se->ops->set_params(params, se->opaque);
L
lirans@il.ibm.com 已提交
985
    }
E
Eduardo Habkost 已提交
986

J
Juan Quintela 已提交
987
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
988
        if (!se->ops || !se->ops->save_live_setup) {
A
aliguori 已提交
989
            continue;
990
        }
991 992 993 994 995
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
996
        save_section_header(f, se, QEMU_VM_SECTION_START);
A
aliguori 已提交
997

998
        ret = se->ops->save_live_setup(f, se->opaque);
999
        save_section_footer(f, se);
1000
        if (ret < 0) {
1001 1002
            qemu_file_set_error(f, ret);
            break;
1003
        }
A
aliguori 已提交
1004 1005 1006
    }
}

J
Juan Quintela 已提交
1007
/*
D
Dong Xu Wang 已提交
1008
 * this function has three return values:
J
Juan Quintela 已提交
1009 1010 1011 1012
 *   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
 */
1013
int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
A
aliguori 已提交
1014 1015 1016 1017
{
    SaveStateEntry *se;
    int ret = 1;

1018
    trace_savevm_state_iterate();
J
Juan Quintela 已提交
1019
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1020
        if (!se->ops || !se->ops->save_live_iterate) {
A
aliguori 已提交
1021
            continue;
1022
        }
1023 1024 1025 1026 1027
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
1028 1029 1030 1031 1032 1033 1034 1035 1036
        /*
         * In the postcopy phase, any device that doesn't know how to
         * do postcopy should have saved it's state in the _complete
         * call that's already run, it might get confused if we call
         * iterate afterwards.
         */
        if (postcopy && !se->ops->save_live_complete_postcopy) {
            continue;
        }
1037 1038 1039
        if (qemu_file_rate_limit(f)) {
            return 0;
        }
1040
        trace_savevm_section_start(se->idstr, se->section_id);
1041 1042

        save_section_header(f, se, QEMU_VM_SECTION_PART);
A
aliguori 已提交
1043

1044
        ret = se->ops->save_live_iterate(f, se->opaque);
1045
        trace_savevm_section_end(se->idstr, se->section_id, ret);
1046
        save_section_footer(f, se);
1047

1048 1049 1050
        if (ret < 0) {
            qemu_file_set_error(f, ret);
        }
1051
        if (ret <= 0) {
1052 1053 1054 1055 1056 1057
            /* 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;
        }
A
aliguori 已提交
1058
    }
J
Juan Quintela 已提交
1059
    return ret;
A
aliguori 已提交
1060 1061
}

1062 1063 1064
static bool should_send_vmdesc(void)
{
    MachineState *machine = MACHINE(qdev_get_machine());
1065 1066
    bool in_postcopy = migration_in_postcopy(migrate_get_current());
    return !machine->suppress_vmdesc && !in_postcopy;
1067 1068
}

1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
/*
 * Calls the save_live_complete_postcopy methods
 * causing the last few pages to be sent immediately and doing any associated
 * cleanup.
 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
 * all the other devices, but that happens at the point we switch to postcopy.
 */
void qemu_savevm_state_complete_postcopy(QEMUFile *f)
{
    SaveStateEntry *se;
    int ret;

    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
        if (!se->ops || !se->ops->save_live_complete_postcopy) {
            continue;
        }
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
        trace_savevm_section_start(se->idstr, se->section_id);
        /* Section type */
        qemu_put_byte(f, QEMU_VM_SECTION_END);
        qemu_put_be32(f, se->section_id);

        ret = se->ops->save_live_complete_postcopy(f, se->opaque);
        trace_savevm_section_end(se->idstr, se->section_id, ret);
        save_section_footer(f, se);
        if (ret < 0) {
            qemu_file_set_error(f, ret);
            return;
        }
    }

    qemu_put_byte(f, QEMU_VM_EOF);
    qemu_fflush(f);
}

1108
void qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only)
A
aliguori 已提交
1109
{
1110 1111
    QJSON *vmdesc;
    int vmdesc_len;
A
aliguori 已提交
1112
    SaveStateEntry *se;
1113
    int ret;
1114
    bool in_postcopy = migration_in_postcopy(migrate_get_current());
A
aliguori 已提交
1115

1116
    trace_savevm_state_complete_precopy();
1117

1118 1119
    cpu_synchronize_all_states();

J
Juan Quintela 已提交
1120
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1121 1122
        if (!se->ops ||
            (in_postcopy && se->ops->save_live_complete_postcopy) ||
1123
            (in_postcopy && !iterable_only) ||
1124
            !se->ops->save_live_complete_precopy) {
A
aliguori 已提交
1125
            continue;
1126
        }
1127

1128 1129 1130 1131 1132
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
1133
        trace_savevm_section_start(se->idstr, se->section_id);
1134 1135

        save_section_header(f, se, QEMU_VM_SECTION_END);
A
aliguori 已提交
1136

1137
        ret = se->ops->save_live_complete_precopy(f, se->opaque);
1138
        trace_savevm_section_end(se->idstr, se->section_id, ret);
1139
        save_section_footer(f, se);
1140
        if (ret < 0) {
1141 1142
            qemu_file_set_error(f, ret);
            return;
1143
        }
A
aliguori 已提交
1144 1145
    }

1146 1147 1148 1149
    if (iterable_only) {
        return;
    }

1150 1151 1152
    vmdesc = qjson_new();
    json_prop_int(vmdesc, "page_size", TARGET_PAGE_SIZE);
    json_start_array(vmdesc, "devices");
J
Juan Quintela 已提交
1153
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
A
aliguori 已提交
1154

1155
        if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1156
            continue;
1157
        }
1158 1159 1160 1161 1162
        if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
            trace_savevm_section_skip(se->idstr, se->section_id);
            continue;
        }

1163
        trace_savevm_section_start(se->idstr, se->section_id);
1164 1165 1166 1167 1168

        json_start_object(vmdesc, NULL);
        json_prop_str(vmdesc, "name", se->idstr);
        json_prop_int(vmdesc, "instance_id", se->instance_id);

1169
        save_section_header(f, se, QEMU_VM_SECTION_FULL);
1170
        vmstate_save(f, se, vmdesc);
1171
        trace_savevm_section_end(se->idstr, se->section_id, 0);
1172
        save_section_footer(f, se);
1173 1174

        json_end_object(vmdesc);
A
aliguori 已提交
1175 1176
    }

1177 1178 1179 1180
    if (!in_postcopy) {
        /* Postcopy stream will still be going */
        qemu_put_byte(f, QEMU_VM_EOF);
    }
1181 1182 1183 1184 1185

    json_end_array(vmdesc);
    qjson_finish(vmdesc);
    vmdesc_len = strlen(qjson_get_str(vmdesc));

1186 1187 1188 1189 1190
    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);
    }
1191
    qjson_destroy(vmdesc);
1192

1193
    qemu_fflush(f);
A
aliguori 已提交
1194 1195
}

1196 1197 1198 1199 1200 1201 1202
/* Give an estimate of the amount left to be transferred,
 * the result is split into the amount for units that can and
 * for units that can't do postcopy.
 */
void qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size,
                               uint64_t *res_non_postcopiable,
                               uint64_t *res_postcopiable)
1203 1204
{
    SaveStateEntry *se;
1205 1206 1207 1208

    *res_non_postcopiable = 0;
    *res_postcopiable = 0;

1209

J
Juan Quintela 已提交
1210
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1211 1212 1213 1214 1215 1216 1217 1218
        if (!se->ops || !se->ops->save_live_pending) {
            continue;
        }
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
1219 1220
        se->ops->save_live_pending(f, se->opaque, max_size,
                                   res_non_postcopiable, res_postcopiable);
1221 1222 1223
    }
}

1224
void qemu_savevm_state_cleanup(void)
1225 1226 1227
{
    SaveStateEntry *se;

1228
    trace_savevm_state_cleanup();
J
Juan Quintela 已提交
1229
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1230 1231
        if (se->ops && se->ops->cleanup) {
            se->ops->cleanup(se->opaque);
1232 1233 1234 1235
        }
    }
}

1236
static int qemu_savevm_state(QEMUFile *f, Error **errp)
A
aliguori 已提交
1237 1238
{
    int ret;
I
Isaku Yamahata 已提交
1239 1240 1241 1242
    MigrationParams params = {
        .blk = 0,
        .shared = 0
    };
1243
    MigrationState *ms = migrate_init(&params);
1244
    MigrationStatus status;
1245
    ms->to_dst_file = f;
A
aliguori 已提交
1246

1247
    if (migration_is_blocked(errp)) {
1248 1249
        ret = -EINVAL;
        goto done;
A
Alex Williamson 已提交
1250 1251
    }

1252
    qemu_mutex_unlock_iothread();
1253
    qemu_savevm_state_header(f);
1254
    qemu_savevm_state_begin(f, &params);
1255 1256
    qemu_mutex_lock_iothread();

1257
    while (qemu_file_get_error(f) == 0) {
1258
        if (qemu_savevm_state_iterate(f, false) > 0) {
1259 1260 1261
            break;
        }
    }
A
aliguori 已提交
1262

1263
    ret = qemu_file_get_error(f);
J
Juan Quintela 已提交
1264
    if (ret == 0) {
1265
        qemu_savevm_state_complete_precopy(f, false);
1266
        ret = qemu_file_get_error(f);
J
Juan Quintela 已提交
1267
    }
1268
    qemu_savevm_state_cleanup();
1269
    if (ret != 0) {
1270
        error_setg_errno(errp, -ret, "Error while writing VM state");
1271
    }
1272 1273 1274 1275 1276 1277 1278 1279

done:
    if (ret != 0) {
        status = MIGRATION_STATUS_FAILED;
    } else {
        status = MIGRATION_STATUS_COMPLETED;
    }
    migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
1280 1281 1282 1283 1284

    /* f is outer parameter, it should not stay in global migration state after
     * this function finished */
    ms->to_dst_file = NULL;

A
aliguori 已提交
1285 1286 1287
    return ret;
}

1288 1289 1290 1291 1292 1293 1294 1295 1296
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();

J
Juan Quintela 已提交
1297
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1298 1299 1300
        if (se->is_ram) {
            continue;
        }
1301
        if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1302 1303
            continue;
        }
1304 1305 1306
        if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
            continue;
        }
1307

1308
        save_section_header(f, se, QEMU_VM_SECTION_FULL);
1309

1310
        vmstate_save(f, se, NULL);
1311 1312

        save_section_footer(f, se);
1313 1314 1315 1316 1317 1318 1319
    }

    qemu_put_byte(f, QEMU_VM_EOF);

    return qemu_file_get_error(f);
}

A
aliguori 已提交
1320 1321 1322 1323
static SaveStateEntry *find_se(const char *idstr, int instance_id)
{
    SaveStateEntry *se;

J
Juan Quintela 已提交
1324
    QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
A
aliguori 已提交
1325
        if (!strcmp(se->idstr, idstr) &&
J
Jan Kiszka 已提交
1326 1327
            (instance_id == se->instance_id ||
             instance_id == se->alias_id))
A
aliguori 已提交
1328
            return se;
1329 1330 1331 1332 1333 1334 1335
        /* 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;
        }
A
aliguori 已提交
1336 1337 1338 1339
    }
    return NULL;
}

1340 1341 1342 1343 1344 1345
enum LoadVMExitCodes {
    /* Allow a command to quit all layers of nested loadvm loops */
    LOADVM_QUIT     =  1,
};

static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis);
1346 1347 1348 1349 1350 1351 1352 1353 1354

/* ------ incoming postcopy messages ------ */
/* 'advise' arrives before any transfers just to tell us that a postcopy
 * *might* happen - it might be skipped if precopy transferred everything
 * quickly.
 */
static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis)
{
    PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1355
    uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
1356 1357 1358 1359 1360 1361 1362

    trace_loadvm_postcopy_handle_advise();
    if (ps != POSTCOPY_INCOMING_NONE) {
        error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
        return -1;
    }

D
Dr. David Alan Gilbert 已提交
1363
    if (!postcopy_ram_supported_by_host()) {
1364
        postcopy_state_set(POSTCOPY_INCOMING_NONE);
D
Dr. David Alan Gilbert 已提交
1365 1366 1367
        return -1;
    }

1368 1369 1370 1371
    remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
    local_pagesize_summary = ram_pagesize_summary();

    if (remote_pagesize_summary != local_pagesize_summary)  {
1372
        /*
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
         * This detects two potential causes of mismatch:
         *   a) A mismatch in host page sizes
         *      Some combinations of mismatch are probably possible but it gets
         *      a bit more complicated.  In particular we need to place whole
         *      host pages on the dest at once, and we need to ensure that we
         *      handle dirtying to make sure we never end up sending part of
         *      a hostpage on it's own.
         *   b) The use of different huge page sizes on source/destination
         *      a more fine grain test is performed during RAM block migration
         *      but this test here causes a nice early clear failure, and
         *      also fails when passed to an older qemu that doesn't
         *      do huge pages.
1385
         */
1386 1387 1388
        error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
                                                             " d=%" PRIx64 ")",
                     remote_pagesize_summary, local_pagesize_summary);
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
        return -1;
    }

    remote_tps = qemu_get_be64(mis->from_src_file);
    if (remote_tps != (1ul << qemu_target_page_bits())) {
        /*
         * Again, some differences could be dealt with, but for now keep it
         * simple.
         */
        error_report("Postcopy needs matching target page sizes (s=%d d=%d)",
                     (int)remote_tps, 1 << qemu_target_page_bits());
        return -1;
    }

1403 1404 1405 1406 1407 1408
    if (ram_postcopy_incoming_init(mis)) {
        return -1;
    }

    postcopy_state_set(POSTCOPY_INCOMING_ADVISE);

1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
    return 0;
}

/* After postcopy we will be told to throw some pages away since they're
 * dirty and will have to be demand fetched.  Must happen before CPU is
 * started.
 * There can be 0..many of these messages, each encoding multiple pages.
 */
static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
                                              uint16_t len)
{
    int tmp;
    char ramid[256];
    PostcopyState ps = postcopy_state_get();

    trace_loadvm_postcopy_ram_handle_discard();

    switch (ps) {
    case POSTCOPY_INCOMING_ADVISE:
        /* 1st discard */
1429
        tmp = postcopy_ram_prepare_discard(mis);
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
        if (tmp) {
            return tmp;
        }
        break;

    case POSTCOPY_INCOMING_DISCARD:
        /* Expected state */
        break;

    default:
        error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
                     ps);
        return -1;
    }
    /* We're expecting a
     *    Version (0)
     *    a RAM ID string (length byte, name, 0 term)
     *    then at least 1 16 byte chunk
    */
    if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
        error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
        return -1;
    }

    tmp = qemu_get_byte(mis->from_src_file);
    if (tmp != postcopy_ram_discard_version) {
        error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
        return -1;
    }

    if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
        error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
        return -1;
    }
    tmp = qemu_get_byte(mis->from_src_file);
    if (tmp != 0) {
        error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
        return -1;
    }

    len -= 3 + strlen(ramid);
    if (len % 16) {
        error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
        return -1;
    }
    trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
    while (len) {
        uint64_t start_addr, block_length;
        start_addr = qemu_get_be64(mis->from_src_file);
        block_length = qemu_get_be64(mis->from_src_file);

        len -= 16;
        int ret = ram_discard_range(mis, ramid, start_addr,
                                    block_length);
        if (ret) {
            return ret;
        }
    }
    trace_loadvm_postcopy_ram_handle_discard_end();

    return 0;
}

1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
/*
 * Triggered by a postcopy_listen command; this thread takes over reading
 * the input stream, leaving the main thread free to carry on loading the rest
 * of the device state (from RAM).
 * (TODO:This could do with being in a postcopy file - but there again it's
 * just another input loop, not that postcopy specific)
 */
static void *postcopy_ram_listen_thread(void *opaque)
{
    QEMUFile *f = opaque;
    MigrationIncomingState *mis = migration_incoming_get_current();
    int load_res;

1506 1507
    migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
                                   MIGRATION_STATUS_POSTCOPY_ACTIVE);
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
    qemu_sem_post(&mis->listen_thread_sem);
    trace_postcopy_ram_listen_thread_start();

    /*
     * Because we're a thread and not a coroutine we can't yield
     * in qemu_file, and thus we must be blocking now.
     */
    qemu_file_set_blocking(f, true);
    load_res = qemu_loadvm_state_main(f, mis);
    /* And non-blocking again so we don't block in any cleanup */
    qemu_file_set_blocking(f, false);

    trace_postcopy_ram_listen_thread_exit();
    if (load_res < 0) {
        error_report("%s: loadvm failed: %d", __func__, load_res);
        qemu_file_set_error(f, load_res);
1524 1525
        migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
                                       MIGRATION_STATUS_FAILED);
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
    } else {
        /*
         * This looks good, but it's possible that the device loading in the
         * main thread hasn't finished yet, and so we might not be in 'RUN'
         * state yet; wait for the end of the main thread.
         */
        qemu_event_wait(&mis->main_thread_load_event);
    }
    postcopy_ram_incoming_cleanup(mis);

    if (load_res < 0) {
        /*
         * If something went wrong then we have a bad state so exit;
         * depending how far we got it might be possible at this point
         * to leave the guest running and fire MCEs for pages that never
         * arrived as a desperate recovery step.
         */
        exit(EXIT_FAILURE);
    }

1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
    migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
                                   MIGRATION_STATUS_COMPLETED);
    /*
     * If everything has worked fine, then the main thread has waited
     * for us to start, and we're the last use of the mis.
     * (If something broke then qemu will have to exit anyway since it's
     * got a bad migration state).
     */
    migration_incoming_state_destroy();


1557 1558 1559
    return NULL;
}

1560 1561 1562 1563 1564 1565 1566 1567 1568
/* After this message we must be able to immediately receive postcopy data */
static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
{
    PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
    trace_loadvm_postcopy_handle_listen();
    if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
        error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
        return -1;
    }
1569 1570 1571 1572 1573 1574 1575
    if (ps == POSTCOPY_INCOMING_ADVISE) {
        /*
         * A rare case, we entered listen without having to do any discards,
         * so do the setup that's normally done at the time of the 1st discard.
         */
        postcopy_ram_prepare_discard(mis);
    }
1576

1577 1578 1579 1580 1581 1582 1583 1584 1585
    /*
     * Sensitise RAM - can now generate requests for blocks that don't exist
     * However, at this point the CPU shouldn't be running, and the IO
     * shouldn't be doing anything yet so don't actually expect requests
     */
    if (postcopy_ram_enable_notify(mis)) {
        return -1;
    }

1586 1587 1588 1589 1590 1591 1592 1593 1594 1595
    if (mis->have_listen_thread) {
        error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
        return -1;
    }

    mis->have_listen_thread = true;
    /* Start up the listening thread and wait for it to signal ready */
    qemu_sem_init(&mis->listen_thread_sem, 0);
    qemu_thread_create(&mis->listen_thread, "postcopy/listen",
                       postcopy_ram_listen_thread, mis->from_src_file,
1596
                       QEMU_THREAD_DETACHED);
1597 1598 1599
    qemu_sem_wait(&mis->listen_thread_sem);
    qemu_sem_destroy(&mis->listen_thread_sem);

1600 1601 1602
    return 0;
}

1603 1604 1605 1606 1607

typedef struct {
    QEMUBH *bh;
} HandleRunBhData;

1608
static void loadvm_postcopy_handle_run_bh(void *opaque)
1609
{
1610
    Error *local_err = NULL;
1611
    HandleRunBhData *data = opaque;
1612

1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
    /* TODO we should move all of this lot into postcopy_ram.c or a shared code
     * in migration.c
     */
    cpu_synchronize_all_post_init();

    qemu_announce_self();

    /* Make sure all file formats flush their mutable metadata */
    bdrv_invalidate_cache_all(&local_err);
    if (local_err) {
        error_report_err(local_err);
    }

    trace_loadvm_postcopy_handle_run_cpu_sync();
    cpu_synchronize_all_post_init();

    trace_loadvm_postcopy_handle_run_vmstart();

1631 1632 1633 1634 1635 1636 1637 1638
    if (autostart) {
        /* Hold onto your hats, starting the CPU */
        vm_start();
    } else {
        /* leave it paused and let management decide when to start the CPU */
        runstate_set(RUN_STATE_PAUSED);
    }

1639 1640
    qemu_bh_delete(data->bh);
    g_free(data);
1641 1642 1643 1644 1645 1646
}

/* After all discards we can start running and asking for pages */
static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
{
    PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
1647
    HandleRunBhData *data;
1648 1649 1650 1651 1652 1653 1654

    trace_loadvm_postcopy_handle_run();
    if (ps != POSTCOPY_INCOMING_LISTENING) {
        error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
        return -1;
    }

1655 1656 1657
    data = g_new(HandleRunBhData, 1);
    data->bh = qemu_bh_new(loadvm_postcopy_handle_run_bh, data);
    qemu_bh_schedule(data->bh);
1658

1659 1660 1661 1662 1663 1664
    /* We need to finish reading the stream from the package
     * and also stop reading anything more from the stream that loaded the
     * package (since it's now being read by the listener thread).
     * LOADVM_QUIT will quit all the layers of nested loadvm loops.
     */
    return LOADVM_QUIT;
1665 1666
}

D
Dr. David Alan Gilbert 已提交
1667
/**
1668 1669 1670 1671 1672
 * Immediately following this command is a blob of data containing an embedded
 * chunk of migration stream; read it and load it.
 *
 * @mis: Incoming state
 * @length: Length of packaged data to read
D
Dr. David Alan Gilbert 已提交
1673
 *
1674 1675 1676 1677 1678 1679
 * Returns: Negative values on error
 *
 */
static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
{
    int ret;
1680 1681
    size_t length;
    QIOChannelBuffer *bioc;
1682 1683 1684 1685 1686

    length = qemu_get_be32(mis->from_src_file);
    trace_loadvm_handle_cmd_packaged(length);

    if (length > MAX_VM_CMD_PACKAGED_SIZE) {
1687
        error_report("Unreasonably large packaged state: %zu", length);
1688 1689
        return -1;
    }
1690 1691

    bioc = qio_channel_buffer_new(length);
1692
    qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
1693 1694 1695
    ret = qemu_get_buffer(mis->from_src_file,
                          bioc->data,
                          length);
1696
    if (ret != length) {
1697 1698
        object_unref(OBJECT(bioc));
        error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1699
                     ret, length);
1700 1701
        return (ret < 0) ? ret : -EAGAIN;
    }
1702
    bioc->usage += length;
1703 1704
    trace_loadvm_handle_cmd_packaged_received(ret);

1705
    QEMUFile *packf = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
1706 1707 1708 1709

    ret = qemu_loadvm_state_main(packf, mis);
    trace_loadvm_handle_cmd_packaged_main(ret);
    qemu_fclose(packf);
1710
    object_unref(OBJECT(bioc));
1711 1712 1713 1714 1715 1716 1717 1718 1719

    return ret;
}

/*
 * Process an incoming 'QEMU_VM_COMMAND'
 * 0           just a normal return
 * LOADVM_QUIT All good, but exit the loop
 * <0          Error
D
Dr. David Alan Gilbert 已提交
1720 1721 1722
 */
static int loadvm_process_command(QEMUFile *f)
{
1723
    MigrationIncomingState *mis = migration_incoming_get_current();
D
Dr. David Alan Gilbert 已提交
1724 1725
    uint16_t cmd;
    uint16_t len;
1726
    uint32_t tmp32;
D
Dr. David Alan Gilbert 已提交
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744

    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) {
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
    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;
        }
1766
        migrate_send_rp_pong(mis, tmp32);
1767
        break;
1768

1769 1770 1771
    case MIG_CMD_PACKAGED:
        return loadvm_handle_cmd_packaged(mis);

1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
    case MIG_CMD_POSTCOPY_ADVISE:
        return loadvm_postcopy_handle_advise(mis);

    case MIG_CMD_POSTCOPY_LISTEN:
        return loadvm_postcopy_handle_listen(mis);

    case MIG_CMD_POSTCOPY_RUN:
        return loadvm_postcopy_handle_run(mis);

    case MIG_CMD_POSTCOPY_RAM_DISCARD:
        return loadvm_postcopy_ram_handle_discard(mis, len);
D
Dr. David Alan Gilbert 已提交
1783 1784 1785 1786 1787
    }

    return 0;
}

1788
struct LoadStateEntry {
B
Blue Swirl 已提交
1789
    QLIST_ENTRY(LoadStateEntry) entry;
A
aliguori 已提交
1790 1791 1792
    SaveStateEntry *se;
    int section_id;
    int version_id;
1793
};
A
aliguori 已提交
1794

1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
/*
 * 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;
}

1830
void loadvm_free_handlers(MigrationIncomingState *mis)
A
aliguori 已提交
1831
{
1832
    LoadStateEntry *le, *new_le;
1833 1834 1835 1836 1837 1838 1839

    QLIST_FOREACH_SAFE(le, &mis->loadvm_handlers, entry, new_le) {
        QLIST_REMOVE(le, entry);
        g_free(le);
    }
}

1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
static int
qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis)
{
    uint32_t instance_id, version_id, section_id;
    SaveStateEntry *se;
    LoadStateEntry *le;
    char idstr[256];
    int ret;

    /* Read section start */
    section_id = qemu_get_be32(f);
    if (!qemu_get_counted_string(f, idstr)) {
        error_report("Unable to read ID string for section %u",
                     section_id);
        return -EINVAL;
    }
    instance_id = qemu_get_be32(f);
    version_id = qemu_get_be32(f);

    trace_qemu_loadvm_state_section_startfull(section_id, idstr,
            instance_id, version_id);
    /* Find savevm section */
    se = find_se(idstr, instance_id);
    if (se == NULL) {
        error_report("Unknown savevm section or instance '%s' %d",
                     idstr, instance_id);
        return -EINVAL;
    }

    /* Validate version */
    if (version_id > se->version_id) {
        error_report("savevm: unsupported version %d for '%s' v%d",
                     version_id, idstr, se->version_id);
        return -EINVAL;
    }

1876 1877 1878 1879 1880 1881
    /* Validate if it is a device's state */
    if (xen_enabled() && se->is_ram) {
        error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
        return -EINVAL;
    }

1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
    /* Add entry */
    le = g_malloc0(sizeof(*le));

    le->se = se;
    le->section_id = section_id;
    le->version_id = version_id;
    QLIST_INSERT_HEAD(&mis->loadvm_handlers, le, entry);

    ret = vmstate_load(f, le->se, le->version_id);
    if (ret < 0) {
        error_report("error while loading state for instance 0x%x of"
                     " device '%s'", instance_id, idstr);
        return ret;
    }
    if (!check_section_footer(f, le)) {
        return -EINVAL;
    }

    return 0;
}

static int
qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis)
{
    uint32_t section_id;
    LoadStateEntry *le;
    int ret;

    section_id = qemu_get_be32(f);

    trace_qemu_loadvm_state_section_partend(section_id);
    QLIST_FOREACH(le, &mis->loadvm_handlers, entry) {
        if (le->section_id == section_id) {
            break;
        }
    }
    if (le == NULL) {
        error_report("Unknown savevm section %d", section_id);
        return -EINVAL;
    }

    ret = vmstate_load(f, le->se, le->version_id);
    if (ret < 0) {
        error_report("error while loading state section id %d(%s)",
                     section_id, le->se->idstr);
        return ret;
    }
    if (!check_section_footer(f, le)) {
        return -EINVAL;
    }

    return 0;
}

1936
static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
1937
{
A
aliguori 已提交
1938
    uint8_t section_type;
1939
    int ret = 0;
1940

A
aliguori 已提交
1941
    while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1942
        ret = 0;
1943
        trace_qemu_loadvm_state_section(section_type);
A
aliguori 已提交
1944 1945 1946
        switch (section_type) {
        case QEMU_VM_SECTION_START:
        case QEMU_VM_SECTION_FULL:
1947
            ret = qemu_loadvm_section_start_full(f, mis);
1948
            if (ret < 0) {
1949
                goto out;
1950
            }
A
aliguori 已提交
1951 1952 1953
            break;
        case QEMU_VM_SECTION_PART:
        case QEMU_VM_SECTION_END:
1954
            ret = qemu_loadvm_section_part_end(f, mis);
1955
            if (ret < 0) {
1956
                goto out;
1957
            }
A
aliguori 已提交
1958
            break;
D
Dr. David Alan Gilbert 已提交
1959 1960
        case QEMU_VM_COMMAND:
            ret = loadvm_process_command(f);
1961 1962
            trace_qemu_loadvm_state_section_command(ret);
            if ((ret < 0) || (ret & LOADVM_QUIT)) {
1963
                goto out;
D
Dr. David Alan Gilbert 已提交
1964 1965
            }
            break;
A
aliguori 已提交
1966
        default:
1967
            error_report("Unknown savevm section type %d", section_type);
1968 1969
            ret = -EINVAL;
            goto out;
A
aliguori 已提交
1970 1971 1972
        }
    }

1973 1974 1975 1976 1977
out:
    if (ret < 0) {
        qemu_file_set_error(f, ret);
    }
    return ret;
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007
}

int qemu_loadvm_state(QEMUFile *f)
{
    MigrationIncomingState *mis = migration_incoming_get_current();
    Error *local_err = NULL;
    unsigned int v;
    int ret;

    if (qemu_savevm_state_blocked(&local_err)) {
        error_report_err(local_err);
        return -EINVAL;
    }

    v = qemu_get_be32(f);
    if (v != QEMU_VM_FILE_MAGIC) {
        error_report("Not a migration stream");
        return -EINVAL;
    }

    v = qemu_get_be32(f);
    if (v == QEMU_VM_FILE_VERSION_COMPAT) {
        error_report("SaveVM v2 format is obsolete and don't work anymore");
        return -ENOTSUP;
    }
    if (v != QEMU_VM_FILE_VERSION) {
        error_report("Unsupported migration stream version");
        return -ENOTSUP;
    }

2008
    if (!savevm_state.skip_configuration || enforce_config_section()) {
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024
        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;
        }
    }

    ret = qemu_loadvm_state_main(f, mis);
    qemu_event_set(&mis->main_thread_load_event);

    trace_qemu_loadvm_state_post_main(ret);

2025 2026 2027 2028 2029
    if (mis->have_listen_thread) {
        /* Listen thread still going, can't clean up yet */
        return ret;
    }

2030 2031 2032
    if (ret == 0) {
        ret = qemu_file_get_error(f);
    }
2033 2034 2035 2036 2037

    /*
     * Try to read in the VMDESC section as well, so that dumping tools that
     * intercept our migration stream have the chance to see it.
     */
2038 2039 2040 2041 2042 2043

    /* 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.
     */
2044
    if (ret == 0 && should_send_vmdesc()) {
2045 2046
        uint8_t *buf;
        uint32_t size;
2047
        uint8_t  section_type = qemu_get_byte(f);
2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065

        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);
2066 2067 2068
        }
    }

2069 2070
    cpu_synchronize_all_post_init();

A
aliguori 已提交
2071 2072 2073
    return ret;
}

2074
int save_vmstate(Monitor *mon, const char *name)
A
aliguori 已提交
2075 2076 2077
{
    BlockDriverState *bs, *bs1;
    QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2078
    int ret = -1;
A
aliguori 已提交
2079 2080
    QEMUFile *f;
    int saved_vm_running;
K
Kevin Wolf 已提交
2081
    uint64_t vm_state_size;
2082
    qemu_timeval tv;
2083
    struct tm tm;
2084
    Error *local_err = NULL;
2085
    AioContext *aio_context;
A
aliguori 已提交
2086

2087 2088 2089
    if (!bdrv_all_can_snapshot(&bs)) {
        monitor_printf(mon, "Device '%s' is writable but does not "
                       "support snapshots.\n", bdrv_get_device_name(bs));
2090
        return ret;
2091 2092
    }

2093
    /* Delete old snapshots of the same name */
2094 2095 2096 2097 2098 2099 2100 2101
    if (name) {
        ret = bdrv_all_delete_snapshot(name, &bs1, &local_err);
        if (ret < 0) {
            error_reportf_err(local_err,
                              "Error while deleting snapshot on device '%s': ",
                              bdrv_get_device_name(bs1));
            return ret;
        }
2102 2103
    }

2104 2105
    bs = bdrv_all_find_vmstate_bs();
    if (bs == NULL) {
A
aliguori 已提交
2106
        monitor_printf(mon, "No block device can accept snapshots\n");
2107
        return ret;
A
aliguori 已提交
2108
    }
2109
    aio_context = bdrv_get_aio_context(bs);
A
aliguori 已提交
2110

2111
    saved_vm_running = runstate_is_running();
2112 2113 2114 2115

    ret = global_state_store();
    if (ret) {
        monitor_printf(mon, "Error saving global state\n");
2116
        return ret;
2117
    }
2118
    vm_stop(RUN_STATE_SAVE_VM);
A
aliguori 已提交
2119

2120 2121
    aio_context_acquire(aio_context);

2122
    memset(sn, 0, sizeof(*sn));
A
aliguori 已提交
2123 2124

    /* fill auxiliary fields */
2125
    qemu_gettimeofday(&tv);
A
aliguori 已提交
2126 2127
    sn->date_sec = tv.tv_sec;
    sn->date_nsec = tv.tv_usec * 1000;
2128
    sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
A
aliguori 已提交
2129

2130 2131 2132 2133 2134 2135 2136 2137 2138
    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 {
B
Blue Swirl 已提交
2139 2140
        /* cast below needed for OpenBSD where tv_sec is still 'long' */
        localtime_r((const time_t *)&tv.tv_sec, &tm);
2141 2142 2143
        strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
    }

A
aliguori 已提交
2144
    /* save the VM state */
2145
    f = qemu_fopen_bdrv(bs, 1);
A
aliguori 已提交
2146
    if (!f) {
A
aliguori 已提交
2147
        monitor_printf(mon, "Could not open VM state file\n");
A
aliguori 已提交
2148 2149
        goto the_end;
    }
2150
    ret = qemu_savevm_state(f, &local_err);
2151
    vm_state_size = qemu_ftell(f);
A
aliguori 已提交
2152 2153
    qemu_fclose(f);
    if (ret < 0) {
2154
        error_report_err(local_err);
A
aliguori 已提交
2155 2156 2157
        goto the_end;
    }

2158 2159 2160 2161
    ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
    if (ret < 0) {
        monitor_printf(mon, "Error while creating snapshot on '%s'\n",
                       bdrv_get_device_name(bs));
2162
        goto the_end;
A
aliguori 已提交
2163 2164
    }

2165 2166
    ret = 0;

A
aliguori 已提交
2167
 the_end:
2168
    aio_context_release(aio_context);
E
Eduardo Habkost 已提交
2169
    if (saved_vm_running) {
A
aliguori 已提交
2170
        vm_start();
E
Eduardo Habkost 已提交
2171
    }
2172 2173 2174 2175 2176 2177
    return ret;
}

void hmp_savevm(Monitor *mon, const QDict *qdict)
{
    save_vmstate(mon, qdict_get_try_str(qdict, "name"));
A
aliguori 已提交
2178 2179
}

2180 2181 2182
void qmp_xen_save_devices_state(const char *filename, Error **errp)
{
    QEMUFile *f;
2183
    QIOChannelFile *ioc;
2184 2185 2186 2187 2188
    int saved_vm_running;
    int ret;

    saved_vm_running = runstate_is_running();
    vm_stop(RUN_STATE_SAVE_VM);
2189
    global_state_store_running();
2190

2191 2192
    ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT, 0660, errp);
    if (!ioc) {
2193 2194
        goto the_end;
    }
2195
    qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
2196
    f = qemu_fopen_channel_output(QIO_CHANNEL(ioc));
2197 2198 2199
    ret = qemu_save_device_state(f);
    qemu_fclose(f);
    if (ret < 0) {
2200
        error_setg(errp, QERR_IO_ERROR);
2201 2202 2203
    }

 the_end:
E
Eduardo Habkost 已提交
2204
    if (saved_vm_running) {
2205
        vm_start();
E
Eduardo Habkost 已提交
2206
    }
2207 2208
}

2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
void qmp_xen_load_devices_state(const char *filename, Error **errp)
{
    QEMUFile *f;
    QIOChannelFile *ioc;
    int ret;

    /* Guest must be paused before loading the device state; the RAM state
     * will already have been loaded by xc
     */
    if (runstate_is_running()) {
        error_setg(errp, "Cannot update device state while vm is running");
        return;
    }
    vm_stop(RUN_STATE_RESTORE_VM);

    ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
    if (!ioc) {
        return;
    }
2228
    qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
2229 2230 2231 2232 2233 2234 2235 2236 2237 2238
    f = qemu_fopen_channel_input(QIO_CHANNEL(ioc));

    ret = qemu_loadvm_state(f);
    qemu_fclose(f);
    if (ret < 0) {
        error_setg(errp, QERR_IO_ERROR);
    }
    migration_incoming_state_destroy();
}

2239
int load_vmstate(const char *name)
A
aliguori 已提交
2240
{
2241
    BlockDriverState *bs, *bs_vm_state;
2242
    QEMUSnapshotInfo sn;
A
aliguori 已提交
2243
    QEMUFile *f;
G
Gerd Hoffmann 已提交
2244
    int ret;
2245
    AioContext *aio_context;
2246
    MigrationIncomingState *mis = migration_incoming_get_current();
A
aliguori 已提交
2247

2248 2249 2250 2251 2252
    if (!bdrv_all_can_snapshot(&bs)) {
        error_report("Device '%s' is writable but does not support snapshots.",
                     bdrv_get_device_name(bs));
        return -ENOTSUP;
    }
2253 2254 2255 2256 2257 2258
    ret = bdrv_all_find_snapshot(name, &bs);
    if (ret < 0) {
        error_report("Device '%s' does not have the requested snapshot '%s'",
                     bdrv_get_device_name(bs), name);
        return ret;
    }
2259

2260
    bs_vm_state = bdrv_all_find_vmstate_bs();
2261 2262 2263 2264
    if (!bs_vm_state) {
        error_report("No block device supports snapshots");
        return -ENOTSUP;
    }
2265
    aio_context = bdrv_get_aio_context(bs_vm_state);
2266 2267

    /* Don't even try to load empty VM states */
2268
    aio_context_acquire(aio_context);
2269
    ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2270
    aio_context_release(aio_context);
2271 2272 2273
    if (ret < 0) {
        return ret;
    } else if (sn.vm_state_size == 0) {
2274 2275
        error_report("This is a disk-only snapshot. Revert to it offline "
            "using qemu-img.");
2276 2277 2278
        return -EINVAL;
    }

A
aliguori 已提交
2279
    /* Flush all IO requests so they don't interfere with the new state.  */
2280
    bdrv_drain_all();
A
aliguori 已提交
2281

2282 2283 2284 2285 2286
    ret = bdrv_all_goto_snapshot(name, &bs);
    if (ret < 0) {
        error_report("Error %d while activating snapshot '%s' on '%s'",
                     ret, name, bdrv_get_device_name(bs));
        return ret;
A
aliguori 已提交
2287 2288 2289
    }

    /* restore the VM state */
2290
    f = qemu_fopen_bdrv(bs_vm_state, 0);
A
aliguori 已提交
2291
    if (!f) {
2292
        error_report("Could not open VM state file");
2293
        return -EINVAL;
A
aliguori 已提交
2294
    }
2295

J
Jan Kiszka 已提交
2296
    qemu_system_reset(VMRESET_SILENT);
2297
    mis->from_src_file = f;
2298

2299 2300
    aio_context_acquire(aio_context);
    ret = qemu_loadvm_state(f);
A
aliguori 已提交
2301
    qemu_fclose(f);
2302 2303
    aio_context_release(aio_context);

2304
    migration_incoming_state_destroy();
A
aliguori 已提交
2305
    if (ret < 0) {
2306
        error_report("Error %d while loading VM state", ret);
2307
        return ret;
A
aliguori 已提交
2308
    }
2309

2310
    return 0;
2311 2312
}

2313
void hmp_delvm(Monitor *mon, const QDict *qdict)
A
aliguori 已提交
2314
{
2315
    BlockDriverState *bs;
2316
    Error *err;
2317
    const char *name = qdict_get_str(qdict, "name");
A
aliguori 已提交
2318

2319
    if (bdrv_all_delete_snapshot(name, &bs, &err) < 0) {
2320 2321 2322
        error_reportf_err(err,
                          "Error while deleting snapshot on device '%s': ",
                          bdrv_get_device_name(bs));
A
aliguori 已提交
2323 2324 2325
    }
}

2326
void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
A
aliguori 已提交
2327 2328
{
    BlockDriverState *bs, *bs1;
2329
    BdrvNextIterator it1;
2330
    QEMUSnapshotInfo *sn_tab, *sn;
2331
    bool no_snapshot = true;
2332
    int nb_sns, i;
2333
    int total;
2334
    int *global_snapshots;
2335
    AioContext *aio_context;
A
aliguori 已提交
2336

2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
    typedef struct SnapshotEntry {
        QEMUSnapshotInfo sn;
        QTAILQ_ENTRY(SnapshotEntry) next;
    } SnapshotEntry;

    typedef struct ImageEntry {
        const char *imagename;
        QTAILQ_ENTRY(ImageEntry) next;
        QTAILQ_HEAD(, SnapshotEntry) snapshots;
    } ImageEntry;

    QTAILQ_HEAD(, ImageEntry) image_list =
        QTAILQ_HEAD_INITIALIZER(image_list);

    ImageEntry *image_entry, *next_ie;
    SnapshotEntry *snapshot_entry;

2354
    bs = bdrv_all_find_vmstate_bs();
A
aliguori 已提交
2355
    if (!bs) {
A
aliguori 已提交
2356
        monitor_printf(mon, "No available block device supports snapshots\n");
A
aliguori 已提交
2357 2358
        return;
    }
2359
    aio_context = bdrv_get_aio_context(bs);
A
aliguori 已提交
2360

2361
    aio_context_acquire(aio_context);
A
aliguori 已提交
2362
    nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2363 2364
    aio_context_release(aio_context);

A
aliguori 已提交
2365
    if (nb_sns < 0) {
A
aliguori 已提交
2366
        monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
A
aliguori 已提交
2367 2368
        return;
    }
2369

2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
    for (bs1 = bdrv_first(&it1); bs1; bs1 = bdrv_next(&it1)) {
        int bs1_nb_sns = 0;
        ImageEntry *ie;
        SnapshotEntry *se;
        AioContext *ctx = bdrv_get_aio_context(bs1);

        aio_context_acquire(ctx);
        if (bdrv_can_snapshot(bs1)) {
            sn = NULL;
            bs1_nb_sns = bdrv_snapshot_list(bs1, &sn);
            if (bs1_nb_sns > 0) {
                no_snapshot = false;
                ie = g_new0(ImageEntry, 1);
                ie->imagename = bdrv_get_device_name(bs1);
                QTAILQ_INIT(&ie->snapshots);
                QTAILQ_INSERT_TAIL(&image_list, ie, next);
                for (i = 0; i < bs1_nb_sns; i++) {
                    se = g_new0(SnapshotEntry, 1);
                    se->sn = sn[i];
                    QTAILQ_INSERT_TAIL(&ie->snapshots, se, next);
                }
            }
            g_free(sn);
        }
        aio_context_release(ctx);
    }

    if (no_snapshot) {
2398 2399 2400 2401
        monitor_printf(mon, "There is no snapshot available.\n");
        return;
    }

2402
    global_snapshots = g_new0(int, nb_sns);
2403 2404
    total = 0;
    for (i = 0; i < nb_sns; i++) {
2405
        SnapshotEntry *next_sn;
2406
        if (bdrv_all_find_snapshot(sn_tab[i].name, &bs1) == 0) {
2407
            global_snapshots[total] = i;
2408
            total++;
2409 2410 2411 2412 2413 2414 2415 2416 2417 2418
            QTAILQ_FOREACH(image_entry, &image_list, next) {
                QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots,
                                    next, next_sn) {
                    if (!strcmp(sn_tab[i].name, snapshot_entry->sn.name)) {
                        QTAILQ_REMOVE(&image_entry->snapshots, snapshot_entry,
                                      next);
                        g_free(snapshot_entry);
                    }
                }
            }
2419
        }
A
aliguori 已提交
2420
    }
2421

2422 2423
    monitor_printf(mon, "List of snapshots present on all disks:\n");

2424
    if (total > 0) {
2425 2426
        bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
        monitor_printf(mon, "\n");
2427
        for (i = 0; i < total; i++) {
2428
            sn = &sn_tab[global_snapshots[i]];
2429 2430 2431 2432
            /* The ID is not guaranteed to be the same on all images, so
             * overwrite it.
             */
            pstrcpy(sn->id_str, sizeof(sn->id_str), "--");
2433 2434
            bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
            monitor_printf(mon, "\n");
2435 2436
        }
    } else {
2437
        monitor_printf(mon, "None\n");
2438 2439
    }

2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463
    QTAILQ_FOREACH(image_entry, &image_list, next) {
        if (QTAILQ_EMPTY(&image_entry->snapshots)) {
            continue;
        }
        monitor_printf(mon,
                       "\nList of partial (non-loadable) snapshots on '%s':\n",
                       image_entry->imagename);
        bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
        monitor_printf(mon, "\n");
        QTAILQ_FOREACH(snapshot_entry, &image_entry->snapshots, next) {
            bdrv_snapshot_dump((fprintf_function)monitor_printf, mon,
                               &snapshot_entry->sn);
            monitor_printf(mon, "\n");
        }
    }

    QTAILQ_FOREACH_SAFE(image_entry, &image_list, next, next_ie) {
        SnapshotEntry *next_sn;
        QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots, next,
                            next_sn) {
            g_free(snapshot_entry);
        }
        g_free(image_entry);
    }
2464
    g_free(sn_tab);
2465
    g_free(global_snapshots);
2466

A
aliguori 已提交
2467
}
2468 2469 2470

void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
{
G
Gonglei 已提交
2471
    qemu_ram_set_idstr(mr->ram_block,
2472 2473 2474 2475 2476
                       memory_region_name(mr), dev);
}

void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
{
G
Gonglei 已提交
2477
    qemu_ram_unset_idstr(mr->ram_block);
2478 2479 2480 2481 2482 2483
}

void vmstate_register_ram_global(MemoryRegion *mr)
{
    vmstate_register_ram(mr, NULL);
}