You need to sign in or sign up before continuing.
savevm.c 37.3 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * 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.
 */

B
blueswir1 已提交
25
#include "config-host.h"
26
#include "qemu-common.h"
27
#include "hw/boards.h"
28
#include "hw/hw.h"
29
#include "hw/qdev.h"
P
Paolo Bonzini 已提交
30
#include "net/net.h"
31
#include "monitor/monitor.h"
32
#include "sysemu/sysemu.h"
33
#include "qemu/timer.h"
34
#include "audio/audio.h"
35
#include "migration/migration.h"
36 37
#include "qemu/sockets.h"
#include "qemu/queue.h"
38
#include "sysemu/cpus.h"
39
#include "exec/memory.h"
40
#include "qmp-commands.h"
41
#include "trace.h"
42
#include "qemu/iov.h"
43
#include "block/snapshot.h"
44
#include "block/qapi.h"
45

A
aliguori 已提交
46

N
Nolan 已提交
47
#ifndef ETH_P_RARP
S
Stefan Berger 已提交
48
#define ETH_P_RARP 0x8035
N
Nolan 已提交
49 50 51 52 53 54
#endif
#define ARP_HTYPE_ETH 0x0001
#define ARP_PTYPE_IP 0x0800
#define ARP_OP_REQUEST_REV 0x3

static int announce_self_create(uint8_t *buf,
55
                                uint8_t *mac_addr)
A
aliguori 已提交
56
{
N
Nolan 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
    /* 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 已提交
77 78
}

M
Mark McLoughlin 已提交
79
static void qemu_announce_self_iter(NICState *nic, void *opaque)
A
aliguori 已提交
80
{
N
Nolan 已提交
81
    uint8_t buf[60];
M
Mark McLoughlin 已提交
82 83
    int len;

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

J
Jason Wang 已提交
87
    qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
M
Mark McLoughlin 已提交
88 89 90 91 92
}


static void qemu_announce_self_once(void *opaque)
{
93 94
    static int count = SELF_ANNOUNCE_ROUNDS;
    QEMUTimer *timer = *(QEMUTimer **)opaque;
A
aliguori 已提交
95

M
Mark McLoughlin 已提交
96 97
    qemu_foreach_nic(qemu_announce_self_iter, NULL);

N
Nolan 已提交
98 99
    if (--count) {
        /* delay 50ms, 150ms, 250ms, ... */
100
        timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
101
                  self_announce_delay(count));
102
    } else {
103 104
            timer_del(timer);
            timer_free(timer);
105 106 107 108 109
    }
}

void qemu_announce_self(void)
{
110 111 112
    static QEMUTimer *timer;
    timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
    qemu_announce_self_once(&timer);
A
aliguori 已提交
113 114 115 116 117
}

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

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
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;
}

133
static int block_put_buffer(void *opaque, const uint8_t *buf,
A
aliguori 已提交
134 135
                           int64_t pos, int size)
{
136
    bdrv_save_vmstate(opaque, buf, pos, size);
A
aliguori 已提交
137 138 139
    return size;
}

140
static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
A
aliguori 已提交
141
{
142
    return bdrv_load_vmstate(opaque, buf, pos, size);
A
aliguori 已提交
143 144 145 146
}

static int bdrv_fclose(void *opaque)
{
147
    return bdrv_flush(opaque);
A
aliguori 已提交
148 149
}

150 151 152 153 154 155
static const QEMUFileOps bdrv_read_ops = {
    .get_buffer = block_get_buffer,
    .close =      bdrv_fclose
};

static const QEMUFileOps bdrv_write_ops = {
156 157 158
    .put_buffer     = block_put_buffer,
    .writev_buffer  = block_writev_buffer,
    .close          = bdrv_fclose
159 160
};

161
static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
A
aliguori 已提交
162
{
E
Eduardo Habkost 已提交
163
    if (is_writable) {
164
        return qemu_fopen_ops(bs, &bdrv_write_ops);
E
Eduardo Habkost 已提交
165
    }
166
    return qemu_fopen_ops(bs, &bdrv_read_ops);
A
aliguori 已提交
167 168
}

169

170 171 172
/* QEMUFile timer support.
 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
 */
173

174
void timer_put(QEMUFile *f, QEMUTimer *ts)
175 176 177
{
    uint64_t expire_time;

178
    expire_time = timer_expire_time_ns(ts);
179 180 181
    qemu_put_be64(f, expire_time);
}

182
void timer_get(QEMUFile *f, QEMUTimer *ts)
183 184 185 186 187
{
    uint64_t expire_time;

    expire_time = qemu_get_be64(f);
    if (expire_time != -1) {
188
        timer_mod_ns(ts, expire_time);
189
    } else {
190
        timer_del(ts);
191 192 193 194
    }
}


195 196 197
/* VMState timer support.
 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
 */
J
Juan Quintela 已提交
198 199 200 201

static int get_timer(QEMUFile *f, void *pv, size_t size)
{
    QEMUTimer *v = pv;
202
    timer_get(f, v);
J
Juan Quintela 已提交
203 204 205
    return 0;
}

206
static void put_timer(QEMUFile *f, void *pv, size_t size)
J
Juan Quintela 已提交
207
{
208
    QEMUTimer *v = pv;
209
    timer_put(f, v);
J
Juan Quintela 已提交
210 211 212 213 214 215 216 217
}

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

218

219 220 221 222 223
typedef struct CompatEntry {
    char idstr[256];
    int instance_id;
} CompatEntry;

A
aliguori 已提交
224
typedef struct SaveStateEntry {
B
Blue Swirl 已提交
225
    QTAILQ_ENTRY(SaveStateEntry) entry;
A
aliguori 已提交
226 227
    char idstr[256];
    int instance_id;
J
Jan Kiszka 已提交
228
    int alias_id;
A
aliguori 已提交
229 230
    int version_id;
    int section_id;
231
    SaveVMHandlers *ops;
232
    const VMStateDescription *vmsd;
A
aliguori 已提交
233
    void *opaque;
234
    CompatEntry *compat;
235
    int is_ram;
A
aliguori 已提交
236 237
} SaveStateEntry;

L
lirans@il.ibm.com 已提交
238

B
Blue Swirl 已提交
239 240
static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
    QTAILQ_HEAD_INITIALIZER(savevm_handlers);
241
static int global_section_id;
A
aliguori 已提交
242

243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
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,
                              const VMStateSubsection *subsection,
                              int indent)
{
    if (subsection->vmsd != NULL) {
        dump_vmstate_vmsd(out_file, subsection->vmsd, indent, true);
    }
}

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) {
        const VMStateSubsection *subsection = vmsd->subsections;
        bool first;

        fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
        first = true;
        while (subsection->vmsd != NULL) {
            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);
}

381 382 383 384 385
static int calculate_new_instance_id(const char *idstr)
{
    SaveStateEntry *se;
    int instance_id = 0;

B
Blue Swirl 已提交
386
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
387 388 389 390 391 392 393 394
        if (strcmp(idstr, se->idstr) == 0
            && instance_id <= se->instance_id) {
            instance_id = se->instance_id + 1;
        }
    }
    return instance_id;
}

395 396 397 398 399 400
static int calculate_compat_instance_id(const char *idstr)
{
    SaveStateEntry *se;
    int instance_id = 0;

    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
E
Eduardo Habkost 已提交
401
        if (!se->compat) {
402
            continue;
E
Eduardo Habkost 已提交
403
        }
404 405 406 407 408 409 410 411 412

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

A
aliguori 已提交
413 414 415 416
/* 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 已提交
417 418
int register_savevm_live(DeviceState *dev,
                         const char *idstr,
A
aliguori 已提交
419 420
                         int instance_id,
                         int version_id,
421
                         SaveVMHandlers *ops,
A
aliguori 已提交
422 423
                         void *opaque)
{
424
    SaveStateEntry *se;
A
aliguori 已提交
425

426
    se = g_malloc0(sizeof(SaveStateEntry));
A
aliguori 已提交
427 428
    se->version_id = version_id;
    se->section_id = global_section_id++;
429
    se->ops = ops;
A
aliguori 已提交
430
    se->opaque = opaque;
431
    se->vmsd = NULL;
432
    /* if this is a live_savem then set is_ram */
433
    if (ops->save_live_setup != NULL) {
434 435
        se->is_ram = 1;
    }
A
aliguori 已提交
436

437 438
    if (dev) {
        char *id = qdev_get_dev_path(dev);
439 440 441
        if (id) {
            pstrcpy(se->idstr, sizeof(se->idstr), id);
            pstrcat(se->idstr, sizeof(se->idstr), "/");
442
            g_free(id);
443

444
            se->compat = g_malloc0(sizeof(CompatEntry));
445 446 447 448 449 450 451 452
            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);

453
    if (instance_id == -1) {
454
        se->instance_id = calculate_new_instance_id(se->idstr);
455 456
    } else {
        se->instance_id = instance_id;
A
aliguori 已提交
457
    }
458
    assert(!se->compat || se->instance_id == 0);
459
    /* add at the end of list */
B
Blue Swirl 已提交
460
    QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
A
aliguori 已提交
461 462 463
    return 0;
}

A
Alex Williamson 已提交
464 465
int register_savevm(DeviceState *dev,
                    const char *idstr,
A
aliguori 已提交
466 467 468 469 470 471
                    int instance_id,
                    int version_id,
                    SaveStateHandler *save_state,
                    LoadStateHandler *load_state,
                    void *opaque)
{
472 473 474
    SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
    ops->save_state = save_state;
    ops->load_state = load_state;
A
Alex Williamson 已提交
475
    return register_savevm_live(dev, idstr, instance_id, version_id,
476
                                ops, opaque);
A
aliguori 已提交
477 478
}

A
Alex Williamson 已提交
479
void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
480
{
481
    SaveStateEntry *se, *new_se;
482 483
    char id[256] = "";

484 485
    if (dev) {
        char *path = qdev_get_dev_path(dev);
486 487 488
        if (path) {
            pstrcpy(id, sizeof(id), path);
            pstrcat(id, sizeof(id), "/");
489
            g_free(path);
490 491 492
        }
    }
    pstrcat(id, sizeof(id), idstr);
493

B
Blue Swirl 已提交
494
    QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
495
        if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
B
Blue Swirl 已提交
496
            QTAILQ_REMOVE(&savevm_handlers, se, entry);
497
            if (se->compat) {
498
                g_free(se->compat);
499
            }
500
            g_free(se->ops);
501
            g_free(se);
502 503 504 505
        }
    }
}

A
Alex Williamson 已提交
506
int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
J
Jan Kiszka 已提交
507 508 509
                                   const VMStateDescription *vmsd,
                                   void *opaque, int alias_id,
                                   int required_for_version)
510
{
511
    SaveStateEntry *se;
512

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

516
    se = g_malloc0(sizeof(SaveStateEntry));
517 518 519 520
    se->version_id = vmsd->version_id;
    se->section_id = global_section_id++;
    se->opaque = opaque;
    se->vmsd = vmsd;
J
Jan Kiszka 已提交
521
    se->alias_id = alias_id;
522

523 524
    if (dev) {
        char *id = qdev_get_dev_path(dev);
525 526 527
        if (id) {
            pstrcpy(se->idstr, sizeof(se->idstr), id);
            pstrcat(se->idstr, sizeof(se->idstr), "/");
528
            g_free(id);
529

530
            se->compat = g_malloc0(sizeof(CompatEntry));
531 532 533 534 535 536 537 538
            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);

539
    if (instance_id == -1) {
540
        se->instance_id = calculate_new_instance_id(se->idstr);
541 542
    } else {
        se->instance_id = instance_id;
543
    }
544
    assert(!se->compat || se->instance_id == 0);
545
    /* add at the end of list */
B
Blue Swirl 已提交
546
    QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
547 548 549
    return 0;
}

A
Alex Williamson 已提交
550 551
void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
                        void *opaque)
552
{
553 554
    SaveStateEntry *se, *new_se;

B
Blue Swirl 已提交
555
    QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
556
        if (se->vmsd == vmsd && se->opaque == opaque) {
B
Blue Swirl 已提交
557
            QTAILQ_REMOVE(&savevm_handlers, se, entry);
558
            if (se->compat) {
559
                g_free(se->compat);
560
            }
561
            g_free(se);
562 563
        }
    }
564 565
}

566 567
static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
{
568
    trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
569
    if (!se->vmsd) {         /* Old style */
570
        return se->ops->load_state(f, se->opaque, version_id);
571 572
    }
    return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
573 574
}

A
Alex Williamson 已提交
575
static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
576
{
577
    trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
578
    if (!se->vmsd) {         /* Old style */
579
        se->ops->save_state(f, se->opaque);
A
Alex Williamson 已提交
580
        return;
581
    }
E
Eduardo Habkost 已提交
582
    vmstate_save_state(f, se->vmsd, se->opaque);
583 584
}

L
Luiz Capitulino 已提交
585
bool qemu_savevm_state_blocked(Error **errp)
A
Alex Williamson 已提交
586 587 588 589
{
    SaveStateEntry *se;

    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
590
        if (se->vmsd && se->vmsd->unmigratable) {
591 592
            error_setg(errp, "State blocked by non-migratable device '%s'",
                       se->idstr);
A
Alex Williamson 已提交
593 594 595 596 597 598
            return true;
        }
    }
    return false;
}

599 600
void qemu_savevm_state_begin(QEMUFile *f,
                             const MigrationParams *params)
A
aliguori 已提交
601 602
{
    SaveStateEntry *se;
J
Juan Quintela 已提交
603
    int ret;
A
aliguori 已提交
604

605
    trace_savevm_state_begin();
L
lirans@il.ibm.com 已提交
606
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
607
        if (!se->ops || !se->ops->set_params) {
L
lirans@il.ibm.com 已提交
608
            continue;
I
Isaku Yamahata 已提交
609
        }
610
        se->ops->set_params(params, se->opaque);
L
lirans@il.ibm.com 已提交
611
    }
E
Eduardo Habkost 已提交
612

A
aliguori 已提交
613 614 615
    qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
    qemu_put_be32(f, QEMU_VM_FILE_VERSION);

B
Blue Swirl 已提交
616
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
A
aliguori 已提交
617 618
        int len;

619
        if (!se->ops || !se->ops->save_live_setup) {
A
aliguori 已提交
620
            continue;
621
        }
622 623 624 625 626
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
A
aliguori 已提交
627 628 629 630 631 632 633 634 635 636 637 638
        /* Section type */
        qemu_put_byte(f, QEMU_VM_SECTION_START);
        qemu_put_be32(f, se->section_id);

        /* ID string */
        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);

639
        ret = se->ops->save_live_setup(f, se->opaque);
640
        if (ret < 0) {
641 642
            qemu_file_set_error(f, ret);
            break;
643
        }
A
aliguori 已提交
644 645 646
    }
}

J
Juan Quintela 已提交
647
/*
D
Dong Xu Wang 已提交
648
 * this function has three return values:
J
Juan Quintela 已提交
649 650 651 652
 *   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
 */
653
int qemu_savevm_state_iterate(QEMUFile *f)
A
aliguori 已提交
654 655 656 657
{
    SaveStateEntry *se;
    int ret = 1;

658
    trace_savevm_state_iterate();
B
Blue Swirl 已提交
659
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
660
        if (!se->ops || !se->ops->save_live_iterate) {
A
aliguori 已提交
661
            continue;
662
        }
663 664 665 666 667
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
668 669 670
        if (qemu_file_rate_limit(f)) {
            return 0;
        }
671
        trace_savevm_section_start(se->idstr, se->section_id);
A
aliguori 已提交
672 673 674 675
        /* Section type */
        qemu_put_byte(f, QEMU_VM_SECTION_PART);
        qemu_put_be32(f, se->section_id);

676
        ret = se->ops->save_live_iterate(f, se->opaque);
677
        trace_savevm_section_end(se->idstr, se->section_id);
678

679 680 681
        if (ret < 0) {
            qemu_file_set_error(f, ret);
        }
682
        if (ret <= 0) {
683 684 685 686 687 688
            /* 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 已提交
689
    }
J
Juan Quintela 已提交
690
    return ret;
A
aliguori 已提交
691 692
}

693
void qemu_savevm_state_complete(QEMUFile *f)
A
aliguori 已提交
694 695
{
    SaveStateEntry *se;
696
    int ret;
A
aliguori 已提交
697

698 699
    trace_savevm_state_complete();

700 701
    cpu_synchronize_all_states();

B
Blue Swirl 已提交
702
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
703
        if (!se->ops || !se->ops->save_live_complete) {
A
aliguori 已提交
704
            continue;
705
        }
706 707 708 709 710
        if (se->ops && se->ops->is_active) {
            if (!se->ops->is_active(se->opaque)) {
                continue;
            }
        }
711
        trace_savevm_section_start(se->idstr, se->section_id);
A
aliguori 已提交
712 713 714 715
        /* Section type */
        qemu_put_byte(f, QEMU_VM_SECTION_END);
        qemu_put_be32(f, se->section_id);

716
        ret = se->ops->save_live_complete(f, se->opaque);
717
        trace_savevm_section_end(se->idstr, se->section_id);
718
        if (ret < 0) {
719 720
            qemu_file_set_error(f, ret);
            return;
721
        }
A
aliguori 已提交
722 723
    }

B
Blue Swirl 已提交
724
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
A
aliguori 已提交
725 726
        int len;

727
        if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
728
            continue;
729
        }
730
        trace_savevm_section_start(se->idstr, se->section_id);
A
aliguori 已提交
731 732 733 734 735 736 737 738 739 740 741 742
        /* Section type */
        qemu_put_byte(f, QEMU_VM_SECTION_FULL);
        qemu_put_be32(f, se->section_id);

        /* ID string */
        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);

A
Alex Williamson 已提交
743
        vmstate_save(f, se);
744
        trace_savevm_section_end(se->idstr, se->section_id);
A
aliguori 已提交
745 746 747
    }

    qemu_put_byte(f, QEMU_VM_EOF);
748
    qemu_fflush(f);
A
aliguori 已提交
749 750
}

751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
{
    SaveStateEntry *se;
    uint64_t ret = 0;

    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
        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;
}

770
void qemu_savevm_state_cancel(void)
771 772 773
{
    SaveStateEntry *se;

774
    trace_savevm_state_cancel();
775
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
776 777
        if (se->ops && se->ops->cancel) {
            se->ops->cancel(se->opaque);
778 779 780 781
        }
    }
}

L
Luiz Capitulino 已提交
782
static int qemu_savevm_state(QEMUFile *f)
A
aliguori 已提交
783 784
{
    int ret;
I
Isaku Yamahata 已提交
785 786 787 788
    MigrationParams params = {
        .blk = 0,
        .shared = 0
    };
A
aliguori 已提交
789

L
Luiz Capitulino 已提交
790
    if (qemu_savevm_state_blocked(NULL)) {
791
        return -EINVAL;
A
Alex Williamson 已提交
792 793
    }

794
    qemu_mutex_unlock_iothread();
795
    qemu_savevm_state_begin(f, &params);
796 797
    qemu_mutex_lock_iothread();

798 799 800 801 802
    while (qemu_file_get_error(f) == 0) {
        if (qemu_savevm_state_iterate(f) > 0) {
            break;
        }
    }
A
aliguori 已提交
803

804
    ret = qemu_file_get_error(f);
J
Juan Quintela 已提交
805
    if (ret == 0) {
806
        qemu_savevm_state_complete(f);
807
        ret = qemu_file_get_error(f);
J
Juan Quintela 已提交
808
    }
809 810 811
    if (ret != 0) {
        qemu_savevm_state_cancel();
    }
A
aliguori 已提交
812 813 814
    return ret;
}

815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
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();

    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
        int len;

        if (se->is_ram) {
            continue;
        }
830
        if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
            continue;
        }

        /* Section type */
        qemu_put_byte(f, QEMU_VM_SECTION_FULL);
        qemu_put_be32(f, se->section_id);

        /* ID string */
        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);

        vmstate_save(f, se);
    }

    qemu_put_byte(f, QEMU_VM_EOF);

    return qemu_file_get_error(f);
}

A
aliguori 已提交
854 855 856 857
static SaveStateEntry *find_se(const char *idstr, int instance_id)
{
    SaveStateEntry *se;

B
Blue Swirl 已提交
858
    QTAILQ_FOREACH(se, &savevm_handlers, entry) {
A
aliguori 已提交
859
        if (!strcmp(se->idstr, idstr) &&
J
Jan Kiszka 已提交
860 861
            (instance_id == se->instance_id ||
             instance_id == se->alias_id))
A
aliguori 已提交
862
            return se;
863 864 865 866 867 868 869
        /* 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 已提交
870 871 872 873 874
    }
    return NULL;
}

typedef struct LoadStateEntry {
B
Blue Swirl 已提交
875
    QLIST_ENTRY(LoadStateEntry) entry;
A
aliguori 已提交
876 877 878 879 880 881 882
    SaveStateEntry *se;
    int section_id;
    int version_id;
} LoadStateEntry;

int qemu_loadvm_state(QEMUFile *f)
{
B
Blue Swirl 已提交
883 884
    QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
        QLIST_HEAD_INITIALIZER(loadvm_handlers);
885
    LoadStateEntry *le, *new_le;
A
aliguori 已提交
886 887 888 889
    uint8_t section_type;
    unsigned int v;
    int ret;

L
Luiz Capitulino 已提交
890
    if (qemu_savevm_state_blocked(NULL)) {
A
Alex Williamson 已提交
891 892 893
        return -EINVAL;
    }

A
aliguori 已提交
894
    v = qemu_get_be32(f);
E
Eduardo Habkost 已提交
895
    if (v != QEMU_VM_FILE_MAGIC) {
A
aliguori 已提交
896
        return -EINVAL;
E
Eduardo Habkost 已提交
897
    }
A
aliguori 已提交
898 899

    v = qemu_get_be32(f);
J
Juan Quintela 已提交
900 901 902 903
    if (v == QEMU_VM_FILE_VERSION_COMPAT) {
        fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
        return -ENOTSUP;
    }
E
Eduardo Habkost 已提交
904
    if (v != QEMU_VM_FILE_VERSION) {
A
aliguori 已提交
905
        return -ENOTSUP;
E
Eduardo Habkost 已提交
906
    }
A
aliguori 已提交
907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941

    while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
        uint32_t instance_id, version_id, section_id;
        SaveStateEntry *se;
        char idstr[257];
        int len;

        switch (section_type) {
        case QEMU_VM_SECTION_START:
        case QEMU_VM_SECTION_FULL:
            /* Read section start */
            section_id = qemu_get_be32(f);
            len = qemu_get_byte(f);
            qemu_get_buffer(f, (uint8_t *)idstr, len);
            idstr[len] = 0;
            instance_id = qemu_get_be32(f);
            version_id = qemu_get_be32(f);

            /* Find savevm section */
            se = find_se(idstr, instance_id);
            if (se == NULL) {
                fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
                ret = -EINVAL;
                goto out;
            }

            /* Validate version */
            if (version_id > se->version_id) {
                fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
                        version_id, idstr, se->version_id);
                ret = -EINVAL;
                goto out;
            }

            /* Add entry */
942
            le = g_malloc0(sizeof(*le));
A
aliguori 已提交
943 944 945 946

            le->se = se;
            le->section_id = section_id;
            le->version_id = version_id;
B
Blue Swirl 已提交
947
            QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
A
aliguori 已提交
948

949
            ret = vmstate_load(f, le->se, le->version_id);
950 951 952 953 954
            if (ret < 0) {
                fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
                        instance_id, idstr);
                goto out;
            }
A
aliguori 已提交
955 956 957 958 959
            break;
        case QEMU_VM_SECTION_PART:
        case QEMU_VM_SECTION_END:
            section_id = qemu_get_be32(f);

B
Blue Swirl 已提交
960
            QLIST_FOREACH(le, &loadvm_handlers, entry) {
961 962 963 964
                if (le->section_id == section_id) {
                    break;
                }
            }
A
aliguori 已提交
965 966 967 968 969 970
            if (le == NULL) {
                fprintf(stderr, "Unknown savevm section %d\n", section_id);
                ret = -EINVAL;
                goto out;
            }

971
            ret = vmstate_load(f, le->se, le->version_id);
972 973 974 975 976
            if (ret < 0) {
                fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
                        section_id);
                goto out;
            }
A
aliguori 已提交
977 978 979 980 981 982 983 984
            break;
        default:
            fprintf(stderr, "Unknown savevm section type %d\n", section_type);
            ret = -EINVAL;
            goto out;
        }
    }

985 986
    cpu_synchronize_all_post_init();

A
aliguori 已提交
987 988 989
    ret = 0;

out:
B
Blue Swirl 已提交
990 991
    QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
        QLIST_REMOVE(le, entry);
992
        g_free(le);
A
aliguori 已提交
993 994
    }

995 996
    if (ret == 0) {
        ret = qemu_file_get_error(f);
997
    }
A
aliguori 已提交
998 999 1000 1001

    return ret;
}

1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
static BlockDriverState *find_vmstate_bs(void)
{
    BlockDriverState *bs = NULL;
    while ((bs = bdrv_next(bs))) {
        if (bdrv_can_snapshot(bs)) {
            return bs;
        }
    }
    return NULL;
}

1013 1014 1015 1016 1017 1018 1019
/*
 * 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;
1020
    Error *err = NULL;
1021

1022 1023
    bs = NULL;
    while ((bs = bdrv_next(bs))) {
1024
        if (bdrv_can_snapshot(bs) &&
E
Eduardo Habkost 已提交
1025
            bdrv_snapshot_find(bs, snapshot, name) >= 0) {
1026
            bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
1027
            if (err) {
1028
                monitor_printf(mon,
1029 1030 1031 1032 1033
                               "Error while deleting snapshot on device '%s':"
                               " %s\n",
                               bdrv_get_device_name(bs),
                               error_get_pretty(err));
                error_free(err);
1034 1035 1036 1037 1038 1039 1040 1041
                return -1;
            }
        }
    }

    return 0;
}

1042
void do_savevm(Monitor *mon, const QDict *qdict)
A
aliguori 已提交
1043 1044 1045
{
    BlockDriverState *bs, *bs1;
    QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
1046
    int ret;
A
aliguori 已提交
1047 1048
    QEMUFile *f;
    int saved_vm_running;
K
Kevin Wolf 已提交
1049
    uint64_t vm_state_size;
1050
    qemu_timeval tv;
1051
    struct tm tm;
1052
    const char *name = qdict_get_try_str(qdict, "name");
A
aliguori 已提交
1053

1054
    /* Verify if there is a device that doesn't support snapshots and is writable */
1055 1056
    bs = NULL;
    while ((bs = bdrv_next(bs))) {
1057

1058
        if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
            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;
        }
    }

1069
    bs = find_vmstate_bs();
A
aliguori 已提交
1070
    if (!bs) {
A
aliguori 已提交
1071
        monitor_printf(mon, "No block device can accept snapshots\n");
A
aliguori 已提交
1072 1073 1074
        return;
    }

1075
    saved_vm_running = runstate_is_running();
1076
    vm_stop(RUN_STATE_SAVE_VM);
A
aliguori 已提交
1077

1078
    memset(sn, 0, sizeof(*sn));
A
aliguori 已提交
1079 1080

    /* fill auxiliary fields */
1081
    qemu_gettimeofday(&tv);
A
aliguori 已提交
1082 1083
    sn->date_sec = tv.tv_sec;
    sn->date_nsec = tv.tv_usec * 1000;
1084
    sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
A
aliguori 已提交
1085

1086 1087 1088 1089 1090 1091 1092 1093 1094
    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 已提交
1095 1096
        /* cast below needed for OpenBSD where tv_sec is still 'long' */
        localtime_r((const time_t *)&tv.tv_sec, &tm);
1097 1098 1099
        strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
    }

1100
    /* Delete old snapshots of the same name */
1101
    if (name && del_existing_snapshots(mon, name) < 0) {
1102 1103 1104
        goto the_end;
    }

A
aliguori 已提交
1105
    /* save the VM state */
1106
    f = qemu_fopen_bdrv(bs, 1);
A
aliguori 已提交
1107
    if (!f) {
A
aliguori 已提交
1108
        monitor_printf(mon, "Could not open VM state file\n");
A
aliguori 已提交
1109 1110
        goto the_end;
    }
L
Luiz Capitulino 已提交
1111
    ret = qemu_savevm_state(f);
1112
    vm_state_size = qemu_ftell(f);
A
aliguori 已提交
1113 1114
    qemu_fclose(f);
    if (ret < 0) {
A
aliguori 已提交
1115
        monitor_printf(mon, "Error %d while writing VM\n", ret);
A
aliguori 已提交
1116 1117 1118 1119 1120
        goto the_end;
    }

    /* create the snapshots */

1121 1122
    bs1 = NULL;
    while ((bs1 = bdrv_next(bs1))) {
1123
        if (bdrv_can_snapshot(bs1)) {
1124 1125
            /* Write VM state size only to the image that contains the state */
            sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
A
aliguori 已提交
1126 1127
            ret = bdrv_snapshot_create(bs1, sn);
            if (ret < 0) {
A
aliguori 已提交
1128 1129
                monitor_printf(mon, "Error while creating snapshot on '%s'\n",
                               bdrv_get_device_name(bs1));
A
aliguori 已提交
1130 1131 1132 1133 1134
            }
        }
    }

 the_end:
E
Eduardo Habkost 已提交
1135
    if (saved_vm_running) {
A
aliguori 已提交
1136
        vm_start();
E
Eduardo Habkost 已提交
1137
    }
A
aliguori 已提交
1138 1139
}

1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
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);

    f = qemu_fopen(filename, "wb");
    if (!f) {
1151
        error_setg_file_open(errp, errno, filename);
1152 1153 1154 1155 1156 1157 1158 1159 1160
        goto the_end;
    }
    ret = qemu_save_device_state(f);
    qemu_fclose(f);
    if (ret < 0) {
        error_set(errp, QERR_IO_ERROR);
    }

 the_end:
E
Eduardo Habkost 已提交
1161
    if (saved_vm_running) {
1162
        vm_start();
E
Eduardo Habkost 已提交
1163
    }
1164 1165
}

1166
int load_vmstate(const char *name)
A
aliguori 已提交
1167
{
1168
    BlockDriverState *bs, *bs_vm_state;
1169
    QEMUSnapshotInfo sn;
A
aliguori 已提交
1170
    QEMUFile *f;
G
Gerd Hoffmann 已提交
1171
    int ret;
A
aliguori 已提交
1172

1173
    bs_vm_state = find_vmstate_bs();
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
    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) {
1184 1185
        error_report("This is a disk-only snapshot. Revert to it offline "
            "using qemu-img.");
1186 1187 1188 1189 1190
        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. */
1191 1192
    bs = NULL;
    while ((bs = bdrv_next(bs))) {
1193

1194
        if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
1195 1196 1197 1198 1199 1200 1201 1202 1203
            continue;
        }

        if (!bdrv_can_snapshot(bs)) {
            error_report("Device '%s' is writable but does not support snapshots.",
                               bdrv_get_device_name(bs));
            return -ENOTSUP;
        }

1204 1205 1206 1207 1208 1209
        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;
        }
A
aliguori 已提交
1210 1211 1212
    }

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

1215 1216 1217 1218
    bs = NULL;
    while ((bs = bdrv_next(bs))) {
        if (bdrv_can_snapshot(bs)) {
            ret = bdrv_snapshot_goto(bs, name);
A
aliguori 已提交
1219
            if (ret < 0) {
1220 1221 1222
                error_report("Error %d while activating snapshot '%s' on '%s'",
                             ret, name, bdrv_get_device_name(bs));
                return ret;
A
aliguori 已提交
1223 1224 1225 1226 1227
            }
        }
    }

    /* restore the VM state */
1228
    f = qemu_fopen_bdrv(bs_vm_state, 0);
A
aliguori 已提交
1229
    if (!f) {
1230
        error_report("Could not open VM state file");
1231
        return -EINVAL;
A
aliguori 已提交
1232
    }
1233

J
Jan Kiszka 已提交
1234
    qemu_system_reset(VMRESET_SILENT);
A
aliguori 已提交
1235
    ret = qemu_loadvm_state(f);
1236

A
aliguori 已提交
1237 1238
    qemu_fclose(f);
    if (ret < 0) {
1239
        error_report("Error %d while loading VM state", ret);
1240
        return ret;
A
aliguori 已提交
1241
    }
1242

1243
    return 0;
1244 1245
}

1246
void do_delvm(Monitor *mon, const QDict *qdict)
A
aliguori 已提交
1247
{
1248
    BlockDriverState *bs;
1249
    Error *err;
1250
    const char *name = qdict_get_str(qdict, "name");
A
aliguori 已提交
1251

1252
    if (!find_vmstate_bs()) {
A
aliguori 已提交
1253
        monitor_printf(mon, "No block device supports snapshots\n");
A
aliguori 已提交
1254 1255 1256
        return;
    }

1257 1258 1259
    bs = NULL;
    while ((bs = bdrv_next(bs))) {
        if (bdrv_can_snapshot(bs)) {
1260
            err = NULL;
1261
            bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
1262
            if (err) {
1263 1264 1265 1266 1267 1268
                monitor_printf(mon,
                               "Error while deleting snapshot on device '%s':"
                               " %s\n",
                               bdrv_get_device_name(bs),
                               error_get_pretty(err));
                error_free(err);
A
aliguori 已提交
1269 1270 1271 1272 1273
            }
        }
    }
}

1274
void do_info_snapshots(Monitor *mon, const QDict *qdict)
A
aliguori 已提交
1275 1276
{
    BlockDriverState *bs, *bs1;
1277 1278 1279 1280
    QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
    int nb_sns, i, ret, available;
    int total;
    int *available_snapshots;
A
aliguori 已提交
1281

1282
    bs = find_vmstate_bs();
A
aliguori 已提交
1283
    if (!bs) {
A
aliguori 已提交
1284
        monitor_printf(mon, "No available block device supports snapshots\n");
A
aliguori 已提交
1285 1286 1287 1288 1289
        return;
    }

    nb_sns = bdrv_snapshot_list(bs, &sn_tab);
    if (nb_sns < 0) {
A
aliguori 已提交
1290
        monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
A
aliguori 已提交
1291 1292
        return;
    }
1293 1294 1295 1296 1297 1298

    if (nb_sns == 0) {
        monitor_printf(mon, "There is no snapshot available.\n");
        return;
    }

1299
    available_snapshots = g_malloc0(sizeof(int) * nb_sns);
1300 1301
    total = 0;
    for (i = 0; i < nb_sns; i++) {
A
aliguori 已提交
1302
        sn = &sn_tab[i];
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
        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++;
        }
A
aliguori 已提交
1320
    }
1321 1322

    if (total > 0) {
1323 1324
        bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
        monitor_printf(mon, "\n");
1325 1326
        for (i = 0; i < total; i++) {
            sn = &sn_tab[available_snapshots[i]];
1327 1328
            bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
            monitor_printf(mon, "\n");
1329 1330 1331 1332 1333
        }
    } else {
        monitor_printf(mon, "There is no suitable snapshot available\n");
    }

1334 1335
    g_free(sn_tab);
    g_free(available_snapshots);
1336

A
aliguori 已提交
1337
}
1338 1339 1340

void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
{
1341
    qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
1342 1343 1344 1345 1346
                       memory_region_name(mr), dev);
}

void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
{
1347
    qemu_ram_unset_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK);
1348 1349 1350 1351 1352 1353
}

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