]> git.proxmox.com Git - mirror_qemu.git/blame - migration/migration.c
migration: Take reference to migration state around bg_migration_vm_start_bh
[mirror_qemu.git] / migration / migration.c
CommitLineData
5bb7910a
AL
1/*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
6b620ca3
PB
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
5bb7910a
AL
14 */
15
1393a485 16#include "qemu/osdep.h"
f348b6d1 17#include "qemu/cutils.h"
d49b6836 18#include "qemu/error-report.h"
db725815 19#include "qemu/main-loop.h"
795c40b8 20#include "migration/blocker.h"
f4dbe1bf 21#include "exec.h"
7fcac4a2 22#include "fd.h"
2a9e2e59 23#include "file.h"
61e8b148 24#include "socket.h"
54d31236 25#include "sysemu/runstate.h"
46517dd4 26#include "sysemu/sysemu.h"
b0c3cf94 27#include "sysemu/cpu-throttle.h"
e1a3ecee 28#include "rdma.h"
7b1e1a22 29#include "ram.h"
c323518a 30#include "ram-compress.h"
84a899de 31#include "migration/global_state.h"
c4b63b7c 32#include "migration/misc.h"
6666c96a 33#include "migration.h"
947701cc 34#include "migration-stats.h"
20a519a0 35#include "savevm.h"
08a0aee1 36#include "qemu-file.h"
6720c2b3 37#include "channel.h"
987772d9 38#include "migration/vmstate.h"
737e150e 39#include "block/block.h"
e688df6b 40#include "qapi/error.h"
9aca82ba 41#include "qapi/clone-visitor.h"
31e4c354 42#include "qapi/qapi-visit-migration.h"
9aca82ba 43#include "qapi/qapi-visit-sockets.h"
9af23989
MA
44#include "qapi/qapi-commands-migration.h"
45#include "qapi/qapi-events-migration.h"
cc7a8ea7 46#include "qapi/qmp/qerror.h"
15280c36 47#include "qapi/qmp/qnull.h"
ab28bd23 48#include "qemu/rcu.h"
2c9e6fec 49#include "block.h"
be07b0ac 50#include "postcopy-ram.h"
766bd176 51#include "qemu/thread.h"
c09e5bb1 52#include "trace.h"
51180423 53#include "exec/target_page.h"
61b67d47 54#include "io/channel-buffer.h"
85a8578e 55#include "io/channel-tls.h"
35a6ed4f 56#include "migration/colo.h"
4ffdb337 57#include "hw/boards.h"
9d18af93 58#include "monitor/monitor.h"
50510ea2 59#include "net/announce.h"
c7e0acd5 60#include "qemu/queue.h"
d32ca5ad 61#include "multifd.h"
1b1f4ab6 62#include "threadinfo.h"
b5eea99e 63#include "qemu/yank.h"
6e8c25b4 64#include "sysemu/cpus.h"
39675fff 65#include "yank_functions.h"
1b529d90 66#include "sysemu/qtest.h"
1f0776f1 67#include "options.h"
15699cf5 68#include "sysemu/dirtylimit.h"
72a8192e 69#include "qemu/sockets.h"
065e2813 70
99a0db9b
GH
71static NotifierList migration_state_notifiers =
72 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
73
da6f1790
JQ
74/* Messages sent on the return path from destination to source */
75enum mig_rp_message_type {
76 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
77 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
78 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
79
80 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
81 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
a335debb 82 MIG_RP_MSG_RECV_BITMAP, /* send recved_bitmap back to source */
13955b89 83 MIG_RP_MSG_RESUME_ACK, /* tell source that we are ready to resume */
1b4adb10 84 MIG_RP_MSG_SWITCHOVER_ACK, /* Tell source it's OK to do switchover */
da6f1790
JQ
85
86 MIG_RP_MSG_MAX
87};
88
17549e84
JQ
89/* When we add fault tolerance, we could have several
90 migrations at once. For now we don't need to add
91 dynamic creation of migration */
92
e5cb7e76 93static MigrationState *current_migration;
e1b1b1bc 94static MigrationIncomingState *current_incoming;
e5cb7e76 95
fa3673e4 96static GSList *migration_blockers[MIG_MODE__MAX];
3af8554b 97
8b0b29dc 98static bool migration_object_check(MigrationState *ms, Error **errp);
0331c8ca
DDAG
99static int migration_maybe_pause(MigrationState *s,
100 int *current_active_state,
101 int new_state);
892ae715 102static void migrate_fd_cancel(MigrationState *s);
7aa6070d 103static bool close_return_path_on_source(MigrationState *s);
8b0b29dc 104
e22ffad0
PX
105static void migration_downtime_start(MigrationState *s)
106{
3e5f3bcd 107 trace_vmstate_downtime_checkpoint("src-downtime-start");
e22ffad0
PX
108 s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
109}
110
111static void migration_downtime_end(MigrationState *s)
112{
113 int64_t now = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
114
115 /*
116 * If downtime already set, should mean that postcopy already set it,
117 * then that should be the real downtime already.
118 */
119 if (!s->downtime) {
120 s->downtime = now - s->downtime_start;
121 }
3e5f3bcd
PX
122
123 trace_vmstate_downtime_checkpoint("src-downtime-end");
e22ffad0
PX
124}
125
d6f74fd1
PX
126static bool migration_needs_multiple_sockets(void)
127{
51b07548 128 return migrate_multifd() || migrate_postcopy_preempt();
d6f74fd1 129}
f444eeda 130
d95533e1 131static bool transport_supports_multi_channels(SocketAddress *saddr)
f444eeda 132{
d95533e1
HG
133 return saddr->type == SOCKET_ADDRESS_TYPE_INET ||
134 saddr->type == SOCKET_ADDRESS_TYPE_UNIX ||
135 saddr->type == SOCKET_ADDRESS_TYPE_VSOCK;
f444eeda
PX
136}
137
d6f74fd1 138static bool
d95533e1
HG
139migration_channels_and_transport_compatible(MigrationAddress *addr,
140 Error **errp)
f444eeda 141{
d6f74fd1 142 if (migration_needs_multiple_sockets() &&
d95533e1
HG
143 (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET) &&
144 !transport_supports_multi_channels(&addr->u.socket)) {
d6f74fd1
PX
145 error_setg(errp, "Migration requires multi-channel URIs (e.g. tcp)");
146 return false;
147 }
148
149 return true;
f444eeda
PX
150}
151
8f8bfffc
PX
152static gint page_request_addr_cmp(gconstpointer ap, gconstpointer bp)
153{
154 uintptr_t a = (uintptr_t) ap, b = (uintptr_t) bp;
155
156 return (a > b) - (a < b);
157}
158
93bdf888
PX
159int migration_stop_vm(RunState state)
160{
3e5f3bcd
PX
161 int ret = vm_stop_force_state(state);
162
163 trace_vmstate_downtime_checkpoint("src-vm-stopped");
164
165 return ret;
93bdf888
PX
166}
167
e5cb7e76
PX
168void migration_object_init(void)
169{
170 /* This can only be called once. */
171 assert(!current_migration);
172 current_migration = MIGRATION_OBJ(object_new(TYPE_MIGRATION));
4ffdb337 173
e1b1b1bc
PX
174 /*
175 * Init the migrate incoming object as well no matter whether
176 * we'll use it or not.
177 */
178 assert(!current_incoming);
179 current_incoming = g_new0(MigrationIncomingState, 1);
180 current_incoming->state = MIGRATION_STATUS_NONE;
181 current_incoming->postcopy_remote_fds =
182 g_array_new(FALSE, TRUE, sizeof(struct PostCopyFD));
183 qemu_mutex_init(&current_incoming->rp_mutex);
60bb3c58 184 qemu_mutex_init(&current_incoming->postcopy_prio_thread_mutex);
e1b1b1bc
PX
185 qemu_event_init(&current_incoming->main_thread_load_event, false);
186 qemu_sem_init(&current_incoming->postcopy_pause_sem_dst, 0);
187 qemu_sem_init(&current_incoming->postcopy_pause_sem_fault, 0);
60bb3c58 188 qemu_sem_init(&current_incoming->postcopy_pause_sem_fast_load, 0);
5655aab0
PX
189 qemu_sem_init(&current_incoming->postcopy_qemufile_dst_done, 0);
190
8f8bfffc 191 qemu_mutex_init(&current_incoming->page_request_mutex);
cf02f29e 192 qemu_cond_init(&current_incoming->page_request_cond);
8f8bfffc 193 current_incoming->page_requested = g_tree_new(page_request_addr_cmp);
e1b1b1bc 194
f9734d5d 195 migration_object_check(current_migration, &error_fatal);
e0d17dfd
PB
196
197 blk_mig_init();
198 ram_mig_init();
199 dirty_bitmap_mig_init();
e5cb7e76
PX
200}
201
458fecca 202void migration_cancel(const Error *error)
c7c0e724 203{
458fecca
LV
204 if (error) {
205 migrate_set_error(current_migration, error);
206 }
acac51ba
HH
207 if (migrate_dirty_limit()) {
208 qmp_cancel_vcpu_dirty_limit(false, -1, NULL);
209 }
c7c0e724
DH
210 migrate_fd_cancel(current_migration);
211}
212
892ae715 213void migration_shutdown(void)
1f895604 214{
795969ab
RL
215 /*
216 * When the QEMU main thread exit, the COLO thread
217 * may wait a semaphore. So, we should wakeup the
218 * COLO thread before migration shutdown.
219 */
220 colo_shutdown();
892ae715
DDAG
221 /*
222 * Cancel the current migration - that will (eventually)
223 * stop the migration using this structure
224 */
458fecca 225 migration_cancel(NULL);
1f895604 226 object_unref(OBJECT(current_migration));
1499ab09
VSO
227
228 /*
229 * Cancel outgoing migration of dirty bitmaps. It should
230 * at least unref used block nodes.
231 */
232 dirty_bitmap_mig_cancel_outgoing();
233
234 /*
235 * Cancel incoming migration of dirty bitmaps. Dirty bitmaps
236 * are non-critical data, and their loss never considered as
237 * something serious.
238 */
239 dirty_bitmap_mig_cancel_incoming();
1f895604
VSO
240}
241
bca7856a 242/* For outgoing */
859bc756 243MigrationState *migrate_get_current(void)
17549e84 244{
e5cb7e76
PX
245 /* This can only be called after the object created. */
246 assert(current_migration);
247 return current_migration;
17549e84
JQ
248}
249
bca7856a
DDAG
250MigrationIncomingState *migration_incoming_get_current(void)
251{
e1b1b1bc
PX
252 assert(current_incoming);
253 return current_incoming;
bca7856a
DDAG
254}
255
e031149c
PX
256void migration_incoming_transport_cleanup(MigrationIncomingState *mis)
257{
258 if (mis->socket_address_list) {
259 qapi_free_SocketAddressList(mis->socket_address_list);
260 mis->socket_address_list = NULL;
261 }
262
263 if (mis->transport_cleanup) {
264 mis->transport_cleanup(mis->transport_data);
265 mis->transport_data = mis->transport_cleanup = NULL;
266 }
267}
268
bca7856a
DDAG
269void migration_incoming_state_destroy(void)
270{
b4b076da
JQ
271 struct MigrationIncomingState *mis = migration_incoming_get_current();
272
cfc3bcf3 273 multifd_load_cleanup();
c323518a 274 compress_threads_load_cleanup();
cfc3bcf3 275
3482655b 276 if (mis->to_src_file) {
660819b1
PX
277 /* Tell source that we are done */
278 migrate_send_rp_shut(mis, qemu_file_get_error(mis->from_src_file) != 0);
3482655b
PX
279 qemu_fclose(mis->to_src_file);
280 mis->to_src_file = NULL;
281 }
282
660819b1 283 if (mis->from_src_file) {
39675fff 284 migration_ioc_unregister_yank_from_file(mis->from_src_file);
660819b1
PX
285 qemu_fclose(mis->from_src_file);
286 mis->from_src_file = NULL;
287 }
00fa4fc8
DDAG
288 if (mis->postcopy_remote_fds) {
289 g_array_free(mis->postcopy_remote_fds, TRUE);
290 mis->postcopy_remote_fds = NULL;
291 }
660819b1 292
e031149c 293 migration_incoming_transport_cleanup(mis);
1783c00f
DDAG
294 qemu_event_reset(&mis->main_thread_load_event);
295
8f8bfffc
PX
296 if (mis->page_requested) {
297 g_tree_destroy(mis->page_requested);
298 mis->page_requested = NULL;
299 }
300
36f62f11
PX
301 if (mis->postcopy_qemufile_dst) {
302 migration_ioc_unregister_yank_from_file(mis->postcopy_qemufile_dst);
303 qemu_fclose(mis->postcopy_qemufile_dst);
304 mis->postcopy_qemufile_dst = NULL;
305 }
306
b5eea99e 307 yank_unregister_instance(MIGRATION_YANK_INSTANCE);
bca7856a
DDAG
308}
309
b05dc723
JQ
310static void migrate_generate_event(int new_state)
311{
b890902c 312 if (migrate_events()) {
3ab72385 313 qapi_event_send_migration(new_state);
b05dc723
JQ
314 }
315}
316
da6f1790
JQ
317/*
318 * Send a message on the return channel back to the source
319 * of the migration.
320 */
d6208e35
PX
321static int migrate_send_rp_message(MigrationIncomingState *mis,
322 enum mig_rp_message_type message_type,
323 uint16_t len, void *data)
da6f1790 324{
d6208e35
PX
325 int ret = 0;
326
da6f1790 327 trace_migrate_send_rp_message((int)message_type, len);
37396950 328 QEMU_LOCK_GUARD(&mis->rp_mutex);
d6208e35
PX
329
330 /*
331 * It's possible that the file handle got lost due to network
332 * failures.
333 */
334 if (!mis->to_src_file) {
335 ret = -EIO;
37396950 336 return ret;
d6208e35
PX
337 }
338
da6f1790
JQ
339 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
340 qemu_put_be16(mis->to_src_file, len);
341 qemu_put_buffer(mis->to_src_file, data, len);
be07a0ed 342 return qemu_fflush(mis->to_src_file);
da6f1790
JQ
343}
344
2e2bce16
PX
345/* Request one page from the source VM at the given start address.
346 * rb: the RAMBlock to request the page in
1e2d90eb
DDAG
347 * Start: Address offset within the RB
348 * Len: Length in bytes required - must be a multiple of pagesize
349 */
7a267fc4
PX
350int migrate_send_rp_message_req_pages(MigrationIncomingState *mis,
351 RAMBlock *rb, ram_addr_t start)
1e2d90eb 352{
cb8d4c8f 353 uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
1e2d90eb 354 size_t msglen = 12; /* start + len */
2e2bce16 355 size_t len = qemu_ram_pagesize(rb);
d6208e35 356 enum mig_rp_message_type msg_type;
2e2bce16
PX
357 const char *rbname;
358 int rbname_len;
1e2d90eb
DDAG
359
360 *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
361 *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
362
2e2bce16
PX
363 /*
364 * We maintain the last ramblock that we requested for page. Note that we
365 * don't need locking because this function will only be called within the
366 * postcopy ram fault thread.
367 */
368 if (rb != mis->last_rb) {
369 mis->last_rb = rb;
370
371 rbname = qemu_ram_get_idstr(rb);
372 rbname_len = strlen(rbname);
373
1e2d90eb
DDAG
374 assert(rbname_len < 256);
375
376 bufc[msglen++] = rbname_len;
377 memcpy(bufc + msglen, rbname, rbname_len);
378 msglen += rbname_len;
d6208e35 379 msg_type = MIG_RP_MSG_REQ_PAGES_ID;
1e2d90eb 380 } else {
d6208e35 381 msg_type = MIG_RP_MSG_REQ_PAGES;
1e2d90eb 382 }
d6208e35
PX
383
384 return migrate_send_rp_message(mis, msg_type, msglen, bufc);
1e2d90eb
DDAG
385}
386
7a267fc4 387int migrate_send_rp_req_pages(MigrationIncomingState *mis,
8f8bfffc 388 RAMBlock *rb, ram_addr_t start, uint64_t haddr)
7a267fc4 389{
7648297d 390 void *aligned = (void *)(uintptr_t)ROUND_DOWN(haddr, qemu_ram_pagesize(rb));
a2429283 391 bool received = false;
8f8bfffc
PX
392
393 WITH_QEMU_LOCK_GUARD(&mis->page_request_mutex) {
394 received = ramblock_recv_bitmap_test_byte_offset(rb, start);
395 if (!received && !g_tree_lookup(mis->page_requested, aligned)) {
396 /*
397 * The page has not been received, and it's not yet in the page
398 * request list. Queue it. Set the value of element to 1, so that
399 * things like g_tree_lookup() will return TRUE (1) when found.
400 */
401 g_tree_insert(mis->page_requested, aligned, (gpointer)1);
cf02f29e 402 qatomic_inc(&mis->page_requested_count);
8f8bfffc
PX
403 trace_postcopy_page_req_add(aligned, mis->page_requested_count);
404 }
405 }
406
407 /*
408 * If the page is there, skip sending the message. We don't even need the
409 * lock because as long as the page arrived, it'll be there forever.
410 */
411 if (received) {
412 return 0;
413 }
414
7a267fc4
PX
415 return migrate_send_rp_message_req_pages(mis, rb, start);
416}
417
aad555c2
ZC
418static bool migration_colo_enabled;
419bool migration_incoming_colo_enabled(void)
420{
421 return migration_colo_enabled;
422}
423
424void migration_incoming_disable_colo(void)
425{
18b1d3c9 426 ram_block_discard_disable(false);
aad555c2
ZC
427 migration_colo_enabled = false;
428}
429
18b1d3c9 430int migration_incoming_enable_colo(void)
aad555c2 431{
51e47cf8
VSO
432#ifndef CONFIG_REPLICATION
433 error_report("ENABLE_COLO command come in migration stream, but COLO "
434 "module is not built in");
435 return -ENOTSUP;
436#endif
437
121ccedc
VSO
438 if (!migrate_colo()) {
439 error_report("ENABLE_COLO command come in migration stream, but c-colo "
440 "capability is not set");
441 return -EINVAL;
442 }
443
18b1d3c9
DH
444 if (ram_block_discard_disable(true)) {
445 error_report("COLO: cannot disable RAM discard");
446 return -EBUSY;
447 }
aad555c2 448 migration_colo_enabled = true;
18b1d3c9 449 return 0;
aad555c2
ZC
450}
451
9aca82ba
JQ
452void migrate_add_address(SocketAddress *address)
453{
454 MigrationIncomingState *mis = migration_incoming_get_current();
9aca82ba 455
54aa3de7
EB
456 QAPI_LIST_PREPEND(mis->socket_address_list,
457 QAPI_CLONE(SocketAddress, address));
9aca82ba
JQ
458}
459
967f2de5
HG
460bool migrate_uri_parse(const char *uri, MigrationChannel **channel,
461 Error **errp)
72a8192e 462{
5994024f 463 g_autoptr(MigrationChannel) val = g_new0(MigrationChannel, 1);
72a8192e 464 g_autoptr(MigrationAddress) addr = g_new0(MigrationAddress, 1);
72a8192e
HG
465 InetSocketAddress *isock = &addr->u.rdma;
466 strList **tail = &addr->u.exec.args;
467
468 if (strstart(uri, "exec:", NULL)) {
469 addr->transport = MIGRATION_ADDRESS_TYPE_EXEC;
470#ifdef WIN32
471 QAPI_LIST_APPEND(tail, g_strdup(exec_get_cmd_path()));
472 QAPI_LIST_APPEND(tail, g_strdup("/c"));
473#else
474 QAPI_LIST_APPEND(tail, g_strdup("/bin/sh"));
475 QAPI_LIST_APPEND(tail, g_strdup("-c"));
476#endif
477 QAPI_LIST_APPEND(tail, g_strdup(uri + strlen("exec:")));
478 } else if (strstart(uri, "rdma:", NULL)) {
479 if (inet_parse(isock, uri + strlen("rdma:"), errp)) {
480 qapi_free_InetSocketAddress(isock);
481 return false;
482 }
483 addr->transport = MIGRATION_ADDRESS_TYPE_RDMA;
484 } else if (strstart(uri, "tcp:", NULL) ||
485 strstart(uri, "unix:", NULL) ||
486 strstart(uri, "vsock:", NULL) ||
487 strstart(uri, "fd:", NULL)) {
488 addr->transport = MIGRATION_ADDRESS_TYPE_SOCKET;
41581265 489 SocketAddress *saddr = socket_parse(uri, errp);
72a8192e
HG
490 if (!saddr) {
491 return false;
492 }
493 addr->u.socket.type = saddr->type;
494 addr->u.socket.u = saddr->u;
41581265
ZZ
495 /* Don't free the objects inside; their ownership moved to "addr" */
496 g_free(saddr);
72a8192e
HG
497 } else if (strstart(uri, "file:", NULL)) {
498 addr->transport = MIGRATION_ADDRESS_TYPE_FILE;
499 addr->u.file.filename = g_strdup(uri + strlen("file:"));
500 if (file_parse_offset(addr->u.file.filename, &addr->u.file.offset,
501 errp)) {
502 return false;
503 }
504 } else {
505 error_setg(errp, "unknown migration protocol: %s", uri);
506 return false;
507 }
508
5994024f
HG
509 val->channel_type = MIGRATION_CHANNEL_TYPE_MAIN;
510 val->addr = g_steal_pointer(&addr);
511 *channel = g_steal_pointer(&val);
72a8192e
HG
512 return true;
513}
514
074dbce5
HG
515static void qemu_start_incoming_migration(const char *uri, bool has_channels,
516 MigrationChannelList *channels,
517 Error **errp)
5bb7910a 518{
bc1d54ee 519 g_autoptr(MigrationChannel) channel = NULL;
5994024f 520 MigrationAddress *addr = NULL;
4111a732 521 MigrationIncomingState *mis = migration_incoming_get_current();
34c9dd8e 522
074dbce5
HG
523 /*
524 * Having preliminary checks for uri and channel
525 */
0770ad43
HG
526 if (!uri == !channels) {
527 error_setg(errp, "need either 'uri' or 'channels' argument");
074dbce5 528 return;
0770ad43
HG
529 }
530
531 if (channels) {
5994024f
HG
532 /* To verify that Migrate channel list has only item */
533 if (channels->next) {
534 error_setg(errp, "Channel list has more than one entries");
535 return;
536 }
bc1d54ee 537 addr = channels->value->addr;
0770ad43
HG
538 }
539
540 if (uri) {
5994024f
HG
541 /* caller uses the old URI syntax */
542 if (!migrate_uri_parse(uri, &channel, errp)) {
543 return;
544 }
bc1d54ee 545 addr = channel->addr;
074dbce5 546 }
d6f74fd1 547
d95533e1 548 /* transport mechanism not suitable for migration? */
5994024f 549 if (!migration_channels_and_transport_compatible(addr, errp)) {
72a8192e
HG
550 return;
551 }
552
4111a732
FR
553 migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
554 MIGRATION_STATUS_SETUP);
555
5994024f
HG
556 if (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET) {
557 SocketAddress *saddr = &addr->u.socket;
34dfc5e4
HG
558 if (saddr->type == SOCKET_ADDRESS_TYPE_INET ||
559 saddr->type == SOCKET_ADDRESS_TYPE_UNIX ||
560 saddr->type == SOCKET_ADDRESS_TYPE_VSOCK) {
561 socket_start_incoming_migration(saddr, errp);
562 } else if (saddr->type == SOCKET_ADDRESS_TYPE_FD) {
563 fd_start_incoming_migration(saddr->u.fd.str, errp);
564 }
2da776db 565#ifdef CONFIG_RDMA
5994024f 566 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_RDMA) {
b88a3306
JQ
567 if (migrate_compress()) {
568 error_setg(errp, "RDMA and compression can't be used together");
569 return;
570 }
571 if (migrate_xbzrle()) {
572 error_setg(errp, "RDMA and XBZRLE can't be used together");
573 return;
574 }
575 if (migrate_multifd()) {
576 error_setg(errp, "RDMA and multifd can't be used together");
577 return;
578 }
5994024f 579 rdma_start_incoming_migration(&addr->u.rdma, errp);
2da776db 580#endif
5994024f
HG
581 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_EXEC) {
582 exec_start_incoming_migration(addr->u.exec.args, errp);
583 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_FILE) {
584 file_start_incoming_migration(&addr->u.file, errp);
adde220a 585 } else {
312fd5f2 586 error_setg(errp, "unknown migration protocol: %s", uri);
8ca5e801 587 }
5bb7910a
AL
588}
589
0aa6aefc
DL
590static void process_incoming_migration_bh(void *opaque)
591{
592 Error *local_err = NULL;
593 MigrationIncomingState *mis = opaque;
594
3e5f3bcd
PX
595 trace_vmstate_downtime_checkpoint("dst-precopy-bh-enter");
596
0f073f44
DDAG
597 /* If capability late_block_activate is set:
598 * Only fire up the block code now if we're going to restart the
599 * VM, else 'cont' will do it.
600 * This causes file locking to happen; so we don't want it to happen
601 * unless we really are starting the VM.
602 */
603 if (!migrate_late_block_activate() ||
604 (autostart && (!global_state_received() ||
b4e9ddcc 605 runstate_is_live(global_state_get_runstate())))) {
3b717194 606 /* Make sure all file formats throw away their mutable metadata.
0f073f44 607 * If we get an error here, just don't restart the VM yet. */
3b717194 608 bdrv_activate_all(&local_err);
0f073f44
DDAG
609 if (local_err) {
610 error_report_err(local_err);
611 local_err = NULL;
612 autostart = false;
613 }
d35ff5e6
KW
614 }
615
0aa6aefc
DL
616 /*
617 * This must happen after all error conditions are dealt with and
618 * we're sure the VM is going to be running on this host.
619 */
7659505c 620 qemu_announce_self(&mis->announce_timer, migrate_announce_params());
0aa6aefc 621
3e5f3bcd
PX
622 trace_vmstate_downtime_checkpoint("dst-precopy-bh-announced");
623
cfc3bcf3 624 multifd_load_shutdown();
0aa6aefc 625
b35ebdf0
VSO
626 dirty_bitmap_mig_before_vm_start();
627
0aa6aefc 628 if (!global_state_received() ||
b4e9ddcc 629 runstate_is_live(global_state_get_runstate())) {
0aa6aefc
DL
630 if (autostart) {
631 vm_start();
632 } else {
633 runstate_set(RUN_STATE_PAUSED);
634 }
db009729
ZC
635 } else if (migration_incoming_colo_enabled()) {
636 migration_incoming_disable_colo();
637 vm_start();
0aa6aefc
DL
638 } else {
639 runstate_set(global_state_get_runstate());
640 }
3e5f3bcd 641 trace_vmstate_downtime_checkpoint("dst-precopy-bh-vm-started");
0aa6aefc
DL
642 /*
643 * This must happen after any state changes since as soon as an external
644 * observer sees this event they might start to prod at the VM assuming
645 * it's ready to use.
646 */
647 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
648 MIGRATION_STATUS_COMPLETED);
649 qemu_bh_delete(mis->bh);
650 migration_incoming_state_destroy();
27eb8499 651 object_unref(OBJECT(migrate_get_current()));
0aa6aefc
DL
652}
653
38e8f9af
MAL
654static void coroutine_fn
655process_incoming_migration_co(void *opaque)
511c0231 656{
b4b076da 657 MigrationIncomingState *mis = migration_incoming_get_current();
e9bef235 658 PostcopyState ps;
1c12e1f5
PB
659 int ret;
660
4f0fae7f 661 assert(mis->from_src_file);
c323518a
LS
662
663 if (compress_threads_load_setup(mis->from_src_file)) {
664 error_report("Failed to setup decompress threads");
665 goto fail;
666 }
667
67f11b5c 668 mis->largest_page_size = qemu_ram_pagesize_largest();
093e3c42 669 postcopy_state_set(POSTCOPY_INCOMING_NONE);
4111a732 670 migrate_set_state(&mis->state, MIGRATION_STATUS_SETUP,
93d7af6f 671 MIGRATION_STATUS_ACTIVE);
dd42ce24
VSO
672
673 mis->loadvm_co = qemu_coroutine_self();
4f0fae7f 674 ret = qemu_loadvm_state(mis->from_src_file);
dd42ce24 675 mis->loadvm_co = NULL;
bca7856a 676
3e5f3bcd
PX
677 trace_vmstate_downtime_checkpoint("dst-precopy-loadvm-completed");
678
e9bef235
DDAG
679 ps = postcopy_state_get();
680 trace_process_incoming_migration_co_end(ret, ps);
681 if (ps != POSTCOPY_INCOMING_NONE) {
682 if (ps == POSTCOPY_INCOMING_ADVISE) {
683 /*
684 * Where a migration had postcopy enabled (and thus went to advise)
685 * but managed to complete within the precopy period, we can use
686 * the normal exit.
687 */
688 postcopy_ram_incoming_cleanup(mis);
689 } else if (ret >= 0) {
690 /*
691 * Postcopy was started, cleanup should happen at the end of the
692 * postcopy thread.
693 */
694 trace_process_incoming_migration_co_postcopy_end_main();
695 return;
696 }
697 /* Else if something went wrong then just fall out of the normal exit */
698 }
699
ecbfec6d 700 if (ret < 0) {
e3b8ad5c
FR
701 MigrationState *s = migrate_get_current();
702
703 if (migrate_has_error(s)) {
704 WITH_QEMU_LOCK_GUARD(&s->error_mutex) {
705 error_report_err(s->error);
706 }
707 }
ecbfec6d
VSO
708 error_report("load of migration failed: %s", strerror(-ret));
709 goto fail;
710 }
711
d0a14a2b
VSO
712 if (colo_incoming_co() < 0) {
713 goto fail;
25d0c16f
HZ
714 }
715
0aa6aefc 716 mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
27eb8499 717 object_ref(OBJECT(migrate_get_current()));
0aa6aefc 718 qemu_bh_schedule(mis->bh);
6d99c2d4
FL
719 return;
720fail:
6d99c2d4
FL
721 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
722 MIGRATION_STATUS_FAILED);
723 qemu_fclose(mis->from_src_file);
e5bac1f5
LB
724
725 multifd_load_cleanup();
c323518a 726 compress_threads_load_cleanup();
e5bac1f5 727
6d99c2d4 728 exit(EXIT_FAILURE);
511c0231
JQ
729}
730
b673eab4 731/**
7d6f6933 732 * migration_incoming_setup: Setup incoming migration
b673eab4 733 * @f: file for main migration channel
b673eab4 734 */
c606f3ba 735static void migration_incoming_setup(QEMUFile *f)
82a4da79 736{
4f0fae7f 737 MigrationIncomingState *mis = migration_incoming_get_current();
82a4da79 738
4f0fae7f
JQ
739 if (!mis->from_src_file) {
740 mis->from_src_file = f;
741 }
06ad5135 742 qemu_file_set_blocking(f, false);
e595a01a
JQ
743}
744
36c2f8be 745void migration_incoming_process(void)
e595a01a
JQ
746{
747 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL);
0b8b8753 748 qemu_coroutine_enter(co);
82a4da79
PB
749}
750
884835fa 751/* Returns true if recovered from a paused migration, otherwise false */
a39e9339 752static bool postcopy_try_recover(void)
e595a01a 753{
d96c9e8d
PX
754 MigrationIncomingState *mis = migration_incoming_get_current();
755
756 if (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
757 /* Resumed from a paused postcopy migration */
758
a39e9339
PX
759 /* This should be set already in migration_incoming_setup() */
760 assert(mis->from_src_file);
d96c9e8d 761 /* Postcopy has standalone thread to do vm load */
a39e9339 762 qemu_file_set_blocking(mis->from_src_file, true);
d96c9e8d
PX
763
764 /* Re-configure the return path */
a39e9339 765 mis->to_src_file = qemu_file_get_return_path(mis->from_src_file);
d96c9e8d
PX
766
767 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_PAUSED,
768 MIGRATION_STATUS_POSTCOPY_RECOVER);
769
770 /*
771 * Here, we only wake up the main loading thread (while the
60bb3c58 772 * rest threads will still be waiting), so that we can receive
d96c9e8d 773 * commands from source now, and answer it if needed. The
60bb3c58 774 * rest threads will be woken up afterwards until we are sure
d96c9e8d
PX
775 * that source is ready to reply to page requests.
776 */
777 qemu_sem_post(&mis->postcopy_pause_sem_dst);
884835fa
PX
778 return true;
779 }
780
781 return false;
782}
783
b0cf3bfc 784void migration_fd_process_incoming(QEMUFile *f)
884835fa 785{
c606f3ba 786 migration_incoming_setup(f);
a39e9339 787 if (postcopy_try_recover()) {
b673eab4
JQ
788 return;
789 }
884835fa 790 migration_incoming_process();
e595a01a
JQ
791}
792
5655aab0
PX
793/*
794 * Returns true when we want to start a new incoming migration process,
795 * false otherwise.
796 */
797static bool migration_should_start_incoming(bool main_channel)
798{
799 /* Multifd doesn't start unless all channels are established */
51b07548 800 if (migrate_multifd()) {
5655aab0
PX
801 return migration_has_all_channels();
802 }
803
804 /* Preempt channel only starts when the main channel is created */
805 if (migrate_postcopy_preempt()) {
806 return main_channel;
807 }
808
809 /*
810 * For all the rest types of migration, we should only reach here when
811 * it's the main channel that's being created, and we should always
812 * proceed with this channel.
813 */
814 assert(main_channel);
815 return true;
816}
817
49ed0d24 818void migration_ioc_process_incoming(QIOChannel *ioc, Error **errp)
4f0fae7f
JQ
819{
820 MigrationIncomingState *mis = migration_incoming_get_current();
b673eab4 821 Error *local_err = NULL;
36f62f11 822 QEMUFile *f;
6720c2b3 823 bool default_channel = true;
824 uint32_t channel_magic = 0;
825 int ret = 0;
4f0fae7f 826
51b07548 827 if (migrate_multifd() && !migrate_postcopy_ram() &&
6720c2b3 828 qio_channel_has_feature(ioc, QIO_CHANNEL_FEATURE_READ_MSG_PEEK)) {
829 /*
830 * With multiple channels, it is possible that we receive channels
831 * out of order on destination side, causing incorrect mapping of
832 * source channels on destination side. Check channel MAGIC to
833 * decide type of channel. Please note this is best effort, postcopy
834 * preempt channel does not send any magic number so avoid it for
835 * postcopy live migration. Also tls live migration already does
836 * tls handshake while initializing main channel so with tls this
837 * issue is not possible.
838 */
839 ret = migration_channel_read_peek(ioc, (void *)&channel_magic,
b6f4c0c7 840 sizeof(channel_magic), errp);
6720c2b3 841
842 if (ret != 0) {
6720c2b3 843 return;
844 }
845
846 default_channel = (channel_magic == cpu_to_be32(QEMU_VM_FILE_MAGIC));
847 } else {
848 default_channel = !mis->from_src_file;
849 }
850
851 if (multifd_load_setup(errp) != 0) {
6720c2b3 852 return;
853 }
854
855 if (default_channel) {
36f62f11 856 f = qemu_file_new_input(ioc);
c606f3ba 857 migration_incoming_setup(f);
a429e7f4
PX
858 } else {
859 /* Multiple connections */
36f62f11 860 assert(migration_needs_multiple_sockets());
51b07548 861 if (migrate_multifd()) {
6720c2b3 862 multifd_recv_new_channel(ioc, &local_err);
36f62f11
PX
863 } else {
864 assert(migrate_postcopy_preempt());
865 f = qemu_file_new_input(ioc);
6720c2b3 866 postcopy_preempt_new_channel(mis, f);
36f62f11 867 }
49ed0d24
FL
868 if (local_err) {
869 error_propagate(errp, local_err);
870 return;
871 }
4f0fae7f 872 }
81e62053 873
5655aab0 874 if (migration_should_start_incoming(default_channel)) {
a39e9339
PX
875 /* If it's a recovery, we're done */
876 if (postcopy_try_recover()) {
877 return;
878 }
81e62053
PX
879 migration_incoming_process();
880 }
4f0fae7f
JQ
881}
882
428d8908
JQ
883/**
884 * @migration_has_all_channels: We have received all channels that we need
885 *
886 * Returns true when we have got connections to all the channels that
887 * we need for migration.
888 */
889bool migration_has_all_channels(void)
890{
ca273df3 891 MigrationIncomingState *mis = migration_incoming_get_current();
62c1e0ca 892
36f62f11
PX
893 if (!mis->from_src_file) {
894 return false;
895 }
62c1e0ca 896
51b07548 897 if (migrate_multifd()) {
36f62f11
PX
898 return multifd_recv_all_channels_created();
899 }
900
901 if (migrate_postcopy_preempt()) {
902 return mis->postcopy_qemufile_dst != NULL;
903 }
904
905 return true;
428d8908
JQ
906}
907
1b4adb10
AH
908int migrate_send_rp_switchover_ack(MigrationIncomingState *mis)
909{
910 return migrate_send_rp_message(mis, MIG_RP_MSG_SWITCHOVER_ACK, 0, NULL);
911}
912
6decec93
DDAG
913/*
914 * Send a 'SHUT' message on the return channel with the given value
915 * to indicate that we've finished with the RP. Non-0 value indicates
916 * error.
917 */
918void migrate_send_rp_shut(MigrationIncomingState *mis,
919 uint32_t value)
920{
921 uint32_t buf;
922
923 buf = cpu_to_be32(value);
924 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
925}
926
927/*
928 * Send a 'PONG' message on the return channel with the given value
929 * (normally in response to a 'PING')
930 */
931void migrate_send_rp_pong(MigrationIncomingState *mis,
932 uint32_t value)
933{
934 uint32_t buf;
935
936 buf = cpu_to_be32(value);
937 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
938}
939
a335debb
PX
940void migrate_send_rp_recv_bitmap(MigrationIncomingState *mis,
941 char *block_name)
942{
943 char buf[512];
944 int len;
945 int64_t res;
946
947 /*
948 * First, we send the header part. It contains only the len of
949 * idstr, and the idstr itself.
950 */
951 len = strlen(block_name);
952 buf[0] = len;
953 memcpy(buf + 1, block_name, len);
954
955 if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) {
956 error_report("%s: MSG_RP_RECV_BITMAP only used for recovery",
957 __func__);
958 return;
959 }
960
961 migrate_send_rp_message(mis, MIG_RP_MSG_RECV_BITMAP, len + 1, buf);
962
963 /*
964 * Next, we dump the received bitmap to the stream.
965 *
966 * TODO: currently we are safe since we are the only one that is
967 * using the to_src_file handle (fault thread is still paused),
968 * and it's ok even not taking the mutex. However the best way is
969 * to take the lock before sending the message header, and release
970 * the lock after sending the bitmap.
971 */
972 qemu_mutex_lock(&mis->rp_mutex);
973 res = ramblock_recv_bitmap_send(mis->to_src_file, block_name);
974 qemu_mutex_unlock(&mis->rp_mutex);
975
976 trace_migrate_send_rp_recv_bitmap(block_name, res);
977}
978
13955b89
PX
979void migrate_send_rp_resume_ack(MigrationIncomingState *mis, uint32_t value)
980{
981 uint32_t buf;
982
983 buf = cpu_to_be32(value);
984 migrate_send_rp_message(mis, MIG_RP_MSG_RESUME_ACK, sizeof(buf), &buf);
985}
986
f6844b99
DDAG
987/*
988 * Return true if we're already in the middle of a migration
989 * (i.e. any of the active or setup states)
990 */
3d63da16 991bool migration_is_setup_or_active(int state)
f6844b99
DDAG
992{
993 switch (state) {
994 case MIGRATION_STATUS_ACTIVE:
9ec055ae 995 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
a688d2c1 996 case MIGRATION_STATUS_POSTCOPY_PAUSED:
135b87b4 997 case MIGRATION_STATUS_POSTCOPY_RECOVER:
f6844b99 998 case MIGRATION_STATUS_SETUP:
31e06077
DDAG
999 case MIGRATION_STATUS_PRE_SWITCHOVER:
1000 case MIGRATION_STATUS_DEVICE:
c7e0acd5 1001 case MIGRATION_STATUS_WAIT_UNPLUG:
19dd408a 1002 case MIGRATION_STATUS_COLO:
f6844b99
DDAG
1003 return true;
1004
1005 default:
1006 return false;
1007
1008 }
1009}
1010
392d87e2
JQ
1011bool migration_is_running(int state)
1012{
1013 switch (state) {
1014 case MIGRATION_STATUS_ACTIVE:
1015 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1016 case MIGRATION_STATUS_POSTCOPY_PAUSED:
1017 case MIGRATION_STATUS_POSTCOPY_RECOVER:
1018 case MIGRATION_STATUS_SETUP:
1019 case MIGRATION_STATUS_PRE_SWITCHOVER:
1020 case MIGRATION_STATUS_DEVICE:
1021 case MIGRATION_STATUS_WAIT_UNPLUG:
1022 case MIGRATION_STATUS_CANCELLING:
392d87e2
JQ
1023 return true;
1024
1025 default:
1026 return false;
1027
1028 }
1029}
1030
db18dee7
PX
1031static bool migrate_show_downtime(MigrationState *s)
1032{
1033 return (s->state == MIGRATION_STATUS_COMPLETED) || migration_in_postcopy();
1034}
1035
640dfb14
WY
1036static void populate_time_info(MigrationInfo *info, MigrationState *s)
1037{
1038 info->has_status = true;
1039 info->has_setup_time = true;
1040 info->setup_time = s->setup_time;
db18dee7 1041
640dfb14
WY
1042 if (s->state == MIGRATION_STATUS_COMPLETED) {
1043 info->has_total_time = true;
1044 info->total_time = s->total_time;
640dfb14
WY
1045 } else {
1046 info->has_total_time = true;
1047 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) -
1048 s->start_time;
db18dee7
PX
1049 }
1050
1051 if (migrate_show_downtime(s)) {
1052 info->has_downtime = true;
1053 info->downtime = s->downtime;
1054 } else {
640dfb14
WY
1055 info->has_expected_downtime = true;
1056 info->expected_downtime = s->expected_downtime;
1057 }
1058}
1059
a22463a5
DDAG
1060static void populate_ram_info(MigrationInfo *info, MigrationState *s)
1061{
144fa06b
JQ
1062 size_t page_size = qemu_target_page_size();
1063
a22463a5 1064 info->ram = g_malloc0(sizeof(*info->ram));
897fd8bd 1065 info->ram->transferred = migration_transferred_bytes();
a22463a5 1066 info->ram->total = ram_bytes_total();
aff3f660 1067 info->ram->duplicate = stat64_get(&mig_stats.zero_pages);
bedf53c1
JQ
1068 /* legacy value. It is not used anymore */
1069 info->ram->skipped = 0;
aff3f660 1070 info->ram->normal = stat64_get(&mig_stats.normal_pages);
23b7576d 1071 info->ram->normal_bytes = info->ram->normal * page_size;
a22463a5 1072 info->ram->mbps = s->mbps;
536b5a4e 1073 info->ram->dirty_sync_count =
aff3f660 1074 stat64_get(&mig_stats.dirty_sync_count);
cf20c897 1075 info->ram->dirty_sync_missed_zero_copy =
aff3f660 1076 stat64_get(&mig_stats.dirty_sync_missed_zero_copy);
3c764f9b 1077 info->ram->postcopy_requests =
aff3f660 1078 stat64_get(&mig_stats.postcopy_requests);
144fa06b 1079 info->ram->page_size = page_size;
aff3f660 1080 info->ram->multifd_bytes = stat64_get(&mig_stats.multifd_bytes);
aecbfe9c 1081 info->ram->pages_per_second = s->pages_per_second;
aff3f660
JQ
1082 info->ram->precopy_bytes = stat64_get(&mig_stats.precopy_bytes);
1083 info->ram->downtime_bytes = stat64_get(&mig_stats.downtime_bytes);
1084 info->ram->postcopy_bytes = stat64_get(&mig_stats.postcopy_bytes);
a22463a5 1085
87dca0c9 1086 if (migrate_xbzrle()) {
114f5aee
JQ
1087 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
1088 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
9360447d
JQ
1089 info->xbzrle_cache->bytes = xbzrle_counters.bytes;
1090 info->xbzrle_cache->pages = xbzrle_counters.pages;
1091 info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss;
1092 info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate;
e460a4b1 1093 info->xbzrle_cache->encoding_rate = xbzrle_counters.encoding_rate;
9360447d 1094 info->xbzrle_cache->overflow = xbzrle_counters.overflow;
114f5aee
JQ
1095 }
1096
6f609005 1097 populate_compress(info);
76e03000 1098
338182c8
JQ
1099 if (cpu_throttle_active()) {
1100 info->has_cpu_throttle_percentage = true;
1101 info->cpu_throttle_percentage = cpu_throttle_get_percentage();
1102 }
1103
a22463a5
DDAG
1104 if (s->state != MIGRATION_STATUS_COMPLETED) {
1105 info->ram->remaining = ram_bytes_remaining();
72f8e587 1106 info->ram->dirty_pages_rate =
aff3f660 1107 stat64_get(&mig_stats.dirty_pages_rate);
a22463a5 1108 }
15699cf5
HH
1109
1110 if (migrate_dirty_limit() && dirtylimit_in_service()) {
1111 info->has_dirty_limit_throttle_time_per_round = true;
1112 info->dirty_limit_throttle_time_per_round =
1113 dirtylimit_throttle_time_per_round();
1114
1115 info->has_dirty_limit_ring_full_time = true;
1116 info->dirty_limit_ring_full_time = dirtylimit_ring_full_time();
1117 }
a22463a5
DDAG
1118}
1119
930ac04c
JQ
1120static void populate_disk_info(MigrationInfo *info)
1121{
1122 if (blk_mig_active()) {
930ac04c
JQ
1123 info->disk = g_malloc0(sizeof(*info->disk));
1124 info->disk->transferred = blk_mig_bytes_transferred();
1125 info->disk->remaining = blk_mig_bytes_remaining();
1126 info->disk->total = blk_mig_bytes_total();
1127 }
1128}
1129
65ace060 1130static void fill_source_migration_info(MigrationInfo *info)
5bb7910a 1131{
17549e84 1132 MigrationState *s = migrate_get_current();
552de79b 1133 int state = qatomic_read(&s->state);
fa3673e4 1134 GSList *cur_blocker = migration_blockers[migrate_mode()];
17549e84 1135
3af8554b 1136 info->blocked_reasons = NULL;
3af8554b 1137
372043f3
MA
1138 /*
1139 * There are two types of reasons a migration might be blocked;
1140 * a) devices marked in VMState as non-migratable, and
1141 * b) Explicit migration blockers
1142 * We need to add both of them here.
1143 */
1144 qemu_savevm_non_migratable_list(&info->blocked_reasons);
3af8554b 1145
372043f3
MA
1146 while (cur_blocker) {
1147 QAPI_LIST_PREPEND(info->blocked_reasons,
1148 g_strdup(error_get_pretty(cur_blocker->data)));
1149 cur_blocker = g_slist_next(cur_blocker);
3af8554b 1150 }
372043f3 1151 info->has_blocked_reasons = info->blocked_reasons != NULL;
3af8554b 1152
552de79b 1153 switch (state) {
31194731 1154 case MIGRATION_STATUS_NONE:
17549e84 1155 /* no migration has happened ever */
65ace060
AP
1156 /* do not overwrite destination migration status */
1157 return;
31194731 1158 case MIGRATION_STATUS_SETUP:
29ae8a41 1159 info->has_status = true;
ed4fbd10 1160 info->has_total_time = false;
29ae8a41 1161 break;
31194731
HZ
1162 case MIGRATION_STATUS_ACTIVE:
1163 case MIGRATION_STATUS_CANCELLING:
9ec055ae 1164 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
31e06077
DDAG
1165 case MIGRATION_STATUS_PRE_SWITCHOVER:
1166 case MIGRATION_STATUS_DEVICE:
a688d2c1 1167 case MIGRATION_STATUS_POSTCOPY_PAUSED:
135b87b4 1168 case MIGRATION_STATUS_POSTCOPY_RECOVER:
640dfb14
WY
1169 /* TODO add some postcopy stats */
1170 populate_time_info(info, s);
a22463a5 1171 populate_ram_info(info, s);
930ac04c 1172 populate_disk_info(info);
38c482b4 1173 migration_populate_vfio_info(info);
17549e84 1174 break;
0b827d5e
HZ
1175 case MIGRATION_STATUS_COLO:
1176 info->has_status = true;
1177 /* TODO: display COLO specific information (checkpoint info etc.) */
1178 break;
31194731 1179 case MIGRATION_STATUS_COMPLETED:
640dfb14 1180 populate_time_info(info, s);
a22463a5 1181 populate_ram_info(info, s);
38c482b4 1182 migration_populate_vfio_info(info);
17549e84 1183 break;
31194731 1184 case MIGRATION_STATUS_FAILED:
791e7c82 1185 info->has_status = true;
17549e84 1186 break;
31194731 1187 case MIGRATION_STATUS_CANCELLED:
791e7c82 1188 info->has_status = true;
17549e84 1189 break;
c7e0acd5
JF
1190 case MIGRATION_STATUS_WAIT_UNPLUG:
1191 info->has_status = true;
1192 break;
5bb7910a 1193 }
552de79b 1194 info->status = state;
c94143e5
PX
1195
1196 QEMU_LOCK_GUARD(&s->error_mutex);
1197 if (s->error) {
1198 info->error_desc = g_strdup(error_get_pretty(s->error));
1199 }
5bb7910a
AL
1200}
1201
65ace060
AP
1202static void fill_destination_migration_info(MigrationInfo *info)
1203{
1204 MigrationIncomingState *mis = migration_incoming_get_current();
1205
9aca82ba
JQ
1206 if (mis->socket_address_list) {
1207 info->has_socket_address = true;
1208 info->socket_address =
1209 QAPI_CLONE(SocketAddressList, mis->socket_address_list);
1210 }
1211
65ace060
AP
1212 switch (mis->state) {
1213 case MIGRATION_STATUS_NONE:
1214 return;
65ace060
AP
1215 case MIGRATION_STATUS_SETUP:
1216 case MIGRATION_STATUS_CANCELLING:
1217 case MIGRATION_STATUS_CANCELLED:
1218 case MIGRATION_STATUS_ACTIVE:
1219 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
3c9928d9
PX
1220 case MIGRATION_STATUS_POSTCOPY_PAUSED:
1221 case MIGRATION_STATUS_POSTCOPY_RECOVER:
65ace060
AP
1222 case MIGRATION_STATUS_FAILED:
1223 case MIGRATION_STATUS_COLO:
1224 info->has_status = true;
1225 break;
1226 case MIGRATION_STATUS_COMPLETED:
1227 info->has_status = true;
1228 fill_destination_postcopy_migration_info(info);
1229 break;
1230 }
1231 info->status = mis->state;
1232}
1233
1234MigrationInfo *qmp_query_migrate(Error **errp)
1235{
1236 MigrationInfo *info = g_malloc0(sizeof(*info));
1237
1238 fill_destination_migration_info(info);
1239 fill_source_migration_info(info);
1240
1241 return info;
1242}
1243
4886a1bc
DDAG
1244void qmp_migrate_start_postcopy(Error **errp)
1245{
1246 MigrationState *s = migrate_get_current();
1247
16b0fd32 1248 if (!migrate_postcopy()) {
a54d340b 1249 error_setg(errp, "Enable postcopy with migrate_set_capability before"
4886a1bc
DDAG
1250 " the start of migration");
1251 return;
1252 }
1253
1254 if (s->state == MIGRATION_STATUS_NONE) {
1255 error_setg(errp, "Postcopy must be started after migration has been"
1256 " started");
1257 return;
1258 }
1259 /*
1260 * we don't error if migration has finished since that would be racy
1261 * with issuing this command.
1262 */
d73415a3 1263 qatomic_set(&s->start_postcopy, true);
4886a1bc
DDAG
1264}
1265
065e2813
AL
1266/* shared migration helpers */
1267
48781e5b 1268void migrate_set_state(int *state, int old_state, int new_state)
51cf4c1a 1269{
a31fedee 1270 assert(new_state < MIGRATION_STATUS__MAX);
d73415a3 1271 if (qatomic_cmpxchg(state, old_state, new_state) == old_state) {
a31fedee 1272 trace_migrate_set_state(MigrationStatus_str(new_state));
b05dc723 1273 migrate_generate_event(new_state);
51cf4c1a
Z
1274 }
1275}
1276
fd392cfa 1277static void migrate_fd_cleanup(MigrationState *s)
065e2813 1278{
bb1fadc4
PB
1279 qemu_bh_delete(s->cleanup_bh);
1280 s->cleanup_bh = NULL;
1281
83174765
PX
1282 g_free(s->hostname);
1283 s->hostname = NULL;
e3bf5e68
DH
1284 json_writer_free(s->vmdesc);
1285 s->vmdesc = NULL;
83174765 1286
0ceccd85
PX
1287 qemu_savevm_state_cleanup();
1288
89a02a9f 1289 if (s->to_dst_file) {
62df066f 1290 QEMUFile *tmp;
f986c3d2 1291
9013dca5 1292 trace_migrate_fd_cleanup();
195801d7 1293 bql_unlock();
1d34e4bf
DDAG
1294 if (s->migration_thread_running) {
1295 qemu_thread_join(&s->thread);
1296 s->migration_thread_running = false;
1297 }
195801d7 1298 bql_lock();
404a7c05 1299
1398b2e3 1300 multifd_save_cleanup();
62df066f
PX
1301 qemu_mutex_lock(&s->qemu_file_lock);
1302 tmp = s->to_dst_file;
89a02a9f 1303 s->to_dst_file = NULL;
62df066f
PX
1304 qemu_mutex_unlock(&s->qemu_file_lock);
1305 /*
1306 * Close the file handle without the lock to make sure the
1307 * critical section won't block for long.
1308 */
39675fff 1309 migration_ioc_unregister_yank_from_file(tmp);
62df066f 1310 qemu_fclose(tmp);
065e2813
AL
1311 }
1312
36e9aab3
FR
1313 /*
1314 * We already cleaned up to_dst_file, so errors from the return
1315 * path might be due to that, ignore them.
1316 */
d7f5a043 1317 close_return_path_on_source(s);
36e9aab3 1318
8f8d528e 1319 assert(!migration_is_active(s));
7a2c1721 1320
94f5a437 1321 if (s->state == MIGRATION_STATUS_CANCELLING) {
48781e5b 1322 migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
94f5a437 1323 MIGRATION_STATUS_CANCELLED);
7a2c1721 1324 }
a3fa1d78 1325
87db1a7d
JQ
1326 if (s->error) {
1327 /* It is used on info migrate. We can't free it */
1328 error_report_err(error_copy(s->error));
1329 }
d9cda213 1330 migration_call_notifiers(s);
b1a87956 1331 block_cleanup_parameters();
b5eea99e 1332 yank_unregister_instance(MIGRATION_YANK_INSTANCE);
065e2813
AL
1333}
1334
fd392cfa
YK
1335static void migrate_fd_cleanup_schedule(MigrationState *s)
1336{
1337 /*
1338 * Ref the state for bh, because it may be called when
1339 * there're already no other refs
1340 */
1341 object_ref(OBJECT(s));
1342 qemu_bh_schedule(s->cleanup_bh);
1343}
1344
1345static void migrate_fd_cleanup_bh(void *opaque)
1346{
1347 MigrationState *s = opaque;
1348 migrate_fd_cleanup(s);
1349 object_unref(OBJECT(s));
1350}
1351
87db1a7d
JQ
1352void migrate_set_error(MigrationState *s, const Error *error)
1353{
6e8a355d 1354 QEMU_LOCK_GUARD(&s->error_mutex);
87db1a7d
JQ
1355 if (!s->error) {
1356 s->error = error_copy(error);
1357 }
87db1a7d
JQ
1358}
1359
2b2f6f41
PX
1360bool migrate_has_error(MigrationState *s)
1361{
1362 /* The lock is not helpful here, but still follow the rule */
1363 QEMU_LOCK_GUARD(&s->error_mutex);
1364 return qatomic_read(&s->error);
1365}
1366
ca7bd082
PX
1367static void migrate_error_free(MigrationState *s)
1368{
1369 QEMU_LOCK_GUARD(&s->error_mutex);
1370 if (s->error) {
1371 error_free(s->error);
1372 s->error = NULL;
1373 }
1374}
1375
aaf26bd3 1376static void migrate_fd_error(MigrationState *s, const Error *error)
065e2813 1377{
25174055 1378 trace_migrate_fd_error(error_get_pretty(error));
89a02a9f 1379 assert(s->to_dst_file == NULL);
48781e5b
HZ
1380 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1381 MIGRATION_STATUS_FAILED);
87db1a7d 1382 migrate_set_error(s, error);
458cf28e
JQ
1383}
1384
0edda1c4 1385static void migrate_fd_cancel(MigrationState *s)
065e2813 1386{
6f2b811a 1387 int old_state ;
7478fb0d 1388
9013dca5 1389 trace_migrate_fd_cancel();
065e2813 1390
43044ac0
PX
1391 WITH_QEMU_LOCK_GUARD(&s->qemu_file_lock) {
1392 if (s->rp_state.from_dst_file) {
1393 /* shutdown the rp socket, so causing the rp thread to shutdown */
1394 qemu_file_shutdown(s->rp_state.from_dst_file);
1395 }
70b20477
DDAG
1396 }
1397
6f2b811a
Z
1398 do {
1399 old_state = s->state;
392d87e2 1400 if (!migration_is_running(old_state)) {
6f2b811a
Z
1401 break;
1402 }
a7b36b48
DDAG
1403 /* If the migration is paused, kick it out of the pause */
1404 if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) {
1405 qemu_sem_post(&s->pause_sem);
1406 }
48781e5b 1407 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
31194731 1408 } while (s->state != MIGRATION_STATUS_CANCELLING);
a26ba26e
DDAG
1409
1410 /*
1411 * If we're unlucky the migration code might be stuck somewhere in a
1412 * send/write while the network has failed and is waiting to timeout;
1413 * if we've got shutdown(2) available then we can force it to quit.
a26ba26e 1414 */
7478fb0d
FR
1415 if (s->state == MIGRATION_STATUS_CANCELLING) {
1416 WITH_QEMU_LOCK_GUARD(&s->qemu_file_lock) {
1417 if (s->to_dst_file) {
1418 qemu_file_shutdown(s->to_dst_file);
1419 }
1420 }
a26ba26e 1421 }
1d2acc31
HZ
1422 if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
1423 Error *local_err = NULL;
1424
3b717194 1425 bdrv_activate_all(&local_err);
1d2acc31
HZ
1426 if (local_err) {
1427 error_report_err(local_err);
1428 } else {
1429 s->block_inactive = false;
1430 }
1431 }
065e2813
AL
1432}
1433
d9cda213
SS
1434void migration_add_notifier(Notifier *notify,
1435 void (*func)(Notifier *notifier, void *data))
99a0db9b 1436{
d9cda213 1437 notify->notify = func;
99a0db9b
GH
1438 notifier_list_add(&migration_state_notifiers, notify);
1439}
1440
d9cda213
SS
1441void migration_remove_notifier(Notifier *notify)
1442{
1443 if (notify->notify) {
1444 notifier_remove(notify);
1445 notify->notify = NULL;
1446 }
1447}
1448
1449void migration_call_notifiers(MigrationState *s)
99a0db9b 1450{
d9cda213 1451 notifier_list_notify(&migration_state_notifiers, s);
99a0db9b
GH
1452}
1453
02edd2e7 1454bool migration_in_setup(MigrationState *s)
afe2df69 1455{
31194731 1456 return s->state == MIGRATION_STATUS_SETUP;
afe2df69
GH
1457}
1458
7073693b 1459bool migration_has_finished(MigrationState *s)
99a0db9b 1460{
31194731 1461 return s->state == MIGRATION_STATUS_COMPLETED;
99a0db9b 1462}
0edda1c4 1463
afe2df69
GH
1464bool migration_has_failed(MigrationState *s)
1465{
31194731
HZ
1466 return (s->state == MIGRATION_STATUS_CANCELLED ||
1467 s->state == MIGRATION_STATUS_FAILED);
afe2df69
GH
1468}
1469
5727309d 1470bool migration_in_postcopy(void)
9ec055ae 1471{
5727309d
JQ
1472 MigrationState *s = migrate_get_current();
1473
3748fef9
DDAG
1474 switch (s->state) {
1475 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1476 case MIGRATION_STATUS_POSTCOPY_PAUSED:
1477 case MIGRATION_STATUS_POSTCOPY_RECOVER:
1478 return true;
1479 default:
1480 return false;
1481 }
9ec055ae
DDAG
1482}
1483
f8c543e8
PX
1484bool migration_postcopy_is_alive(int state)
1485{
1486 switch (state) {
1487 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1488 case MIGRATION_STATUS_POSTCOPY_RECOVER:
1489 return true;
1490 default:
1491 return false;
1492 }
1493}
1494
b82fc321
DDAG
1495bool migration_in_postcopy_after_devices(MigrationState *s)
1496{
5727309d 1497 return migration_in_postcopy() && s->postcopy_after_devices;
b82fc321
DDAG
1498}
1499
06df2e69
DH
1500bool migration_in_incoming_postcopy(void)
1501{
1502 PostcopyState ps = postcopy_state_get();
1503
1504 return ps >= POSTCOPY_INCOMING_DISCARD && ps < POSTCOPY_INCOMING_END;
1505}
1506
80fe315c
DH
1507bool migration_incoming_postcopy_advised(void)
1508{
1509 PostcopyState ps = postcopy_state_get();
1510
1511 return ps >= POSTCOPY_INCOMING_ADVISE && ps < POSTCOPY_INCOMING_END;
1512}
1513
1a8e44a8
AG
1514bool migration_in_bg_snapshot(void)
1515{
1516 MigrationState *s = migrate_get_current();
1517
1518 return migrate_background_snapshot() &&
1519 migration_is_setup_or_active(s->state);
1520}
1521
fab35005 1522bool migration_is_idle(void)
fe44dc91 1523{
daff7f0b
MA
1524 MigrationState *s = current_migration;
1525
1526 if (!s) {
1527 return true;
1528 }
fe44dc91
AA
1529
1530 switch (s->state) {
1531 case MIGRATION_STATUS_NONE:
1532 case MIGRATION_STATUS_CANCELLED:
1533 case MIGRATION_STATUS_COMPLETED:
1534 case MIGRATION_STATUS_FAILED:
1535 return true;
1536 case MIGRATION_STATUS_SETUP:
1537 case MIGRATION_STATUS_CANCELLING:
1538 case MIGRATION_STATUS_ACTIVE:
1539 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1540 case MIGRATION_STATUS_COLO:
31e06077
DDAG
1541 case MIGRATION_STATUS_PRE_SWITCHOVER:
1542 case MIGRATION_STATUS_DEVICE:
c7e0acd5 1543 case MIGRATION_STATUS_WAIT_UNPLUG:
fe44dc91
AA
1544 return false;
1545 case MIGRATION_STATUS__MAX:
1546 g_assert_not_reached();
1547 }
1548
1549 return false;
1550}
1551
8f8d528e
WY
1552bool migration_is_active(MigrationState *s)
1553{
1554 return (s->state == MIGRATION_STATUS_ACTIVE ||
1555 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
1556}
1557
08fc4cb5 1558int migrate_init(MigrationState *s, Error **errp)
0edda1c4 1559{
08fc4cb5
AH
1560 int ret;
1561
1562 ret = qemu_savevm_state_prepare(errp);
1563 if (ret) {
1564 return ret;
1565 }
1566
389775d1
DDAG
1567 /*
1568 * Reinitialise all migration state, except
1569 * parameters/capabilities that the user set, and
1570 * locks.
1571 */
389775d1 1572 s->cleanup_bh = 0;
8518278a 1573 s->vm_start_bh = 0;
89a02a9f 1574 s->to_dst_file = NULL;
389775d1 1575 s->state = MIGRATION_STATUS_NONE;
389775d1 1576 s->rp_state.from_dst_file = NULL;
389775d1 1577 s->mbps = 0.0;
aecbfe9c 1578 s->pages_per_second = 0.0;
389775d1
DDAG
1579 s->downtime = 0;
1580 s->expected_downtime = 0;
389775d1 1581 s->setup_time = 0;
389775d1 1582 s->start_postcopy = false;
b82fc321 1583 s->postcopy_after_devices = false;
389775d1 1584 s->migration_thread_running = false;
d59ce6f3
DB
1585 error_free(s->error);
1586 s->error = NULL;
2aae1eb8 1587 s->vmdesc = NULL;
389775d1 1588
48781e5b 1589 migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
0edda1c4 1590
4af246a3
PX
1591 s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1592 s->total_time = 0;
f4584076 1593 s->vm_old_state = -1;
b15df1ae
PX
1594 s->iteration_initial_bytes = 0;
1595 s->threshold_size = 0;
1b4adb10 1596 s->switchover_acked = false;
27fd25b0 1597 s->rdma_migration = false;
f543aa22 1598 /*
809f188a 1599 * set mig_stats memory to zero for a new migration
f543aa22
AH
1600 */
1601 memset(&mig_stats, 0, sizeof(mig_stats));
f543aa22 1602 migration_reset_vfio_bytes_transferred();
08fc4cb5
AH
1603
1604 return 0;
0edda1c4 1605}
cab30143 1606
fa3673e4 1607static bool is_busy(Error **reasonp, Error **errp)
fa2756b7 1608{
fa3673e4
SS
1609 ERRP_GUARD();
1610
4c170330
PX
1611 /* Snapshots are similar to migrations, so check RUN_STATE_SAVE_VM too. */
1612 if (runstate_check(RUN_STATE_SAVE_VM) || !migration_is_idle()) {
c8a7fc51 1613 error_propagate_prepend(errp, *reasonp,
4c170330
PX
1614 "disallowing migration blocker "
1615 "(migration/snapshot in progress) for: ");
c8a7fc51 1616 *reasonp = NULL;
fa3673e4 1617 return true;
fe44dc91 1618 }
fa3673e4 1619 return false;
fa2756b7
AL
1620}
1621
fa3673e4 1622static bool is_only_migratable(Error **reasonp, Error **errp, int modes)
60fd6801 1623{
fa3673e4
SS
1624 ERRP_GUARD();
1625
1626 if (only_migratable && (modes & BIT(MIG_MODE_NORMAL))) {
c8a7fc51 1627 error_propagate_prepend(errp, *reasonp,
60fd6801
PX
1628 "disallowing migration blocker "
1629 "(--only-migratable) for: ");
c8a7fc51 1630 *reasonp = NULL;
fa3673e4
SS
1631 return true;
1632 }
1633 return false;
1634}
1635
1636static int get_modes(MigMode mode, va_list ap)
1637{
1638 int modes = 0;
1639
1640 while (mode != -1 && mode != MIG_MODE_ALL) {
1641 assert(mode >= MIG_MODE_NORMAL && mode < MIG_MODE__MAX);
1642 modes |= BIT(mode);
1643 mode = va_arg(ap, MigMode);
1644 }
1645 if (mode == MIG_MODE_ALL) {
1646 modes = BIT(MIG_MODE__MAX) - 1;
1647 }
1648 return modes;
1649}
1650
1651static int add_blockers(Error **reasonp, Error **errp, int modes)
1652{
1653 for (MigMode mode = 0; mode < MIG_MODE__MAX; mode++) {
1654 if (modes & BIT(mode)) {
1655 migration_blockers[mode] = g_slist_prepend(migration_blockers[mode],
1656 *reasonp);
1657 }
1658 }
1659 return 0;
1660}
1661
1662int migrate_add_blocker(Error **reasonp, Error **errp)
1663{
1664 return migrate_add_blocker_modes(reasonp, errp, MIG_MODE_ALL);
1665}
1666
1667int migrate_add_blocker_normal(Error **reasonp, Error **errp)
1668{
1669 return migrate_add_blocker_modes(reasonp, errp, MIG_MODE_NORMAL, -1);
1670}
1671
1672int migrate_add_blocker_modes(Error **reasonp, Error **errp, MigMode mode, ...)
1673{
1674 int modes;
1675 va_list ap;
1676
1677 va_start(ap, mode);
1678 modes = get_modes(mode, ap);
1679 va_end(ap);
1680
1681 if (is_only_migratable(reasonp, errp, modes)) {
60fd6801 1682 return -EACCES;
fa3673e4
SS
1683 } else if (is_busy(reasonp, errp)) {
1684 return -EBUSY;
60fd6801 1685 }
fa3673e4
SS
1686 return add_blockers(reasonp, errp, modes);
1687}
60fd6801 1688
fa3673e4
SS
1689int migrate_add_blocker_internal(Error **reasonp, Error **errp)
1690{
1691 int modes = BIT(MIG_MODE__MAX) - 1;
1692
1693 if (is_busy(reasonp, errp)) {
1694 return -EBUSY;
1695 }
1696 return add_blockers(reasonp, errp, modes);
60fd6801
PX
1697}
1698
c8a7fc51 1699void migrate_del_blocker(Error **reasonp)
fa2756b7 1700{
c8a7fc51 1701 if (*reasonp) {
fa3673e4
SS
1702 for (MigMode mode = 0; mode < MIG_MODE__MAX; mode++) {
1703 migration_blockers[mode] = g_slist_remove(migration_blockers[mode],
1704 *reasonp);
1705 }
c8a7fc51
SS
1706 error_free(*reasonp);
1707 *reasonp = NULL;
1708 }
fa2756b7
AL
1709}
1710
074dbce5
HG
1711void qmp_migrate_incoming(const char *uri, bool has_channels,
1712 MigrationChannelList *channels, Error **errp)
bf1ae1f4
DDAG
1713{
1714 Error *local_err = NULL;
4debb5f5 1715 static bool once = true;
bf1ae1f4 1716
4debb5f5
DDAG
1717 if (!once) {
1718 error_setg(errp, "The incoming migration has already been started");
603d5a42 1719 return;
4debb5f5 1720 }
e69d50d6
PB
1721 if (!runstate_check(RUN_STATE_INMIGRATE)) {
1722 error_setg(errp, "'-incoming' was not specified on the command line");
1723 return;
1724 }
bf1ae1f4 1725
cc48c587
PX
1726 if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {
1727 return;
1728 }
1729
074dbce5 1730 qemu_start_incoming_migration(uri, has_channels, channels, &local_err);
bf1ae1f4
DDAG
1731
1732 if (local_err) {
cc48c587 1733 yank_unregister_instance(MIGRATION_YANK_INSTANCE);
bf1ae1f4
DDAG
1734 error_propagate(errp, local_err);
1735 return;
1736 }
1737
4debb5f5 1738 once = false;
bf1ae1f4
DDAG
1739}
1740
02affd41
PX
1741void qmp_migrate_recover(const char *uri, Error **errp)
1742{
1743 MigrationIncomingState *mis = migration_incoming_get_current();
1744
b7f9afd4
PX
1745 /*
1746 * Don't even bother to use ERRP_GUARD() as it _must_ always be set by
1747 * callers (no one should ignore a recover failure); if there is, it's a
1748 * programming error.
1749 */
1750 assert(errp);
1751
02affd41
PX
1752 if (mis->state != MIGRATION_STATUS_POSTCOPY_PAUSED) {
1753 error_setg(errp, "Migrate recover can only be run "
1754 "when postcopy is paused.");
1755 return;
1756 }
1757
08401c04
PX
1758 /* If there's an existing transport, release it */
1759 migration_incoming_transport_cleanup(mis);
02affd41
PX
1760
1761 /*
1762 * Note that this call will never start a real migration; it will
1763 * only re-setup the migration stream and poke existing migration
1764 * to continue using that newly established channel.
1765 */
074dbce5 1766 qemu_start_incoming_migration(uri, false, NULL, errp);
02affd41
PX
1767}
1768
bfbf89c2
PX
1769void qmp_migrate_pause(Error **errp)
1770{
1771 MigrationState *ms = migrate_get_current();
1772 MigrationIncomingState *mis = migration_incoming_get_current();
7478fb0d 1773 int ret = 0;
bfbf89c2 1774
f8c543e8 1775 if (migration_postcopy_is_alive(ms->state)) {
bfbf89c2 1776 /* Source side, during postcopy */
f8c543e8
PX
1777 Error *error = NULL;
1778
1779 /* Tell the core migration that we're pausing */
1780 error_setg(&error, "Postcopy migration is paused by the user");
1781 migrate_set_error(ms, error);
1782 error_free(error);
1783
bfbf89c2 1784 qemu_mutex_lock(&ms->qemu_file_lock);
7478fb0d
FR
1785 if (ms->to_dst_file) {
1786 ret = qemu_file_shutdown(ms->to_dst_file);
1787 }
bfbf89c2
PX
1788 qemu_mutex_unlock(&ms->qemu_file_lock);
1789 if (ret) {
1790 error_setg(errp, "Failed to pause source migration");
1791 }
f8c543e8
PX
1792
1793 /*
1794 * Kick the migration thread out of any waiting windows (on behalf
1795 * of the rp thread).
1796 */
1797 migration_rp_kick(ms);
1798
bfbf89c2
PX
1799 return;
1800 }
1801
f8c543e8 1802 if (migration_postcopy_is_alive(mis->state)) {
bfbf89c2
PX
1803 ret = qemu_file_shutdown(mis->from_src_file);
1804 if (ret) {
1805 error_setg(errp, "Failed to pause destination migration");
1806 }
1807 return;
1808 }
1809
1810 error_setg(errp, "migrate-pause is currently only supported "
f8c543e8 1811 "during postcopy-active or postcopy-recover state");
bfbf89c2
PX
1812}
1813
24f3902b
GK
1814bool migration_is_blocked(Error **errp)
1815{
fa3673e4
SS
1816 GSList *blockers = migration_blockers[migrate_mode()];
1817
24f3902b
GK
1818 if (qemu_savevm_state_blocked(errp)) {
1819 return true;
1820 }
1821
fa3673e4
SS
1822 if (blockers) {
1823 error_propagate(errp, error_copy(blockers->data));
24f3902b
GK
1824 return true;
1825 }
1826
1827 return false;
1828}
1829
d3e35b8f
PX
1830/* Returns true if continue to migrate, or false if error detected */
1831static bool migrate_prepare(MigrationState *s, bool blk, bool blk_inc,
1832 bool resume, Error **errp)
cab30143 1833{
40101f32
JQ
1834 if (blk_inc) {
1835 warn_report("parameter 'inc' is deprecated;"
1836 " use blockdev-mirror with NBD instead");
1837 }
1838
8846b5bf
JQ
1839 if (blk) {
1840 warn_report("parameter 'blk' is deprecated;"
1841 " use blockdev-mirror with NBD instead");
1842 }
1843
d3e35b8f
PX
1844 if (resume) {
1845 if (s->state != MIGRATION_STATUS_POSTCOPY_PAUSED) {
1846 error_setg(errp, "Cannot resume if there is no "
1847 "paused migration");
1848 return false;
1849 }
97ca211c
PX
1850
1851 /*
1852 * Postcopy recovery won't work well with release-ram
1853 * capability since release-ram will drop the page buffer as
1854 * long as the page is put into the send buffer. So if there
1855 * is a network failure happened, any page buffers that have
1856 * not yet reached the destination VM but have already been
1857 * sent from the source VM will be lost forever. Let's refuse
1858 * the client from resuming such a postcopy migration.
1859 * Luckily release-ram was designed to only be used when src
1860 * and destination VMs are on the same host, so it should be
1861 * fine.
1862 */
1863 if (migrate_release_ram()) {
1864 error_setg(errp, "Postcopy recovery cannot work "
1865 "when release-ram capability is set");
1866 return false;
1867 }
1868
d3e35b8f
PX
1869 /* This is a resume, skip init status */
1870 return true;
1871 }
cab30143 1872
392d87e2 1873 if (migration_is_running(s->state)) {
c6bd8c70 1874 error_setg(errp, QERR_MIGRATION_ACTIVE);
d3e35b8f 1875 return false;
cab30143 1876 }
d3e35b8f 1877
ca99993a
DDAG
1878 if (runstate_check(RUN_STATE_INMIGRATE)) {
1879 error_setg(errp, "Guest is waiting for an incoming migration");
d3e35b8f 1880 return false;
ca99993a
DDAG
1881 }
1882
36d0fe65
T
1883 if (runstate_check(RUN_STATE_POSTMIGRATE)) {
1884 error_setg(errp, "Can't migrate the vm that was paused due to "
1885 "previous migration");
1886 return false;
1887 }
1888
24f3902b 1889 if (migration_is_blocked(errp)) {
d3e35b8f 1890 return false;
fa2756b7
AL
1891 }
1892
d3e35b8f 1893 if (blk || blk_inc) {
5e804644 1894 if (migrate_colo()) {
3ba02445
RL
1895 error_setg(errp, "No disk migration is required in COLO mode");
1896 return false;
1897 }
6f8be708 1898 if (migrate_block() || migrate_block_incremental()) {
2833c59b
JQ
1899 error_setg(errp, "Command options are incompatible with "
1900 "current migration capabilities");
d3e35b8f 1901 return false;
2833c59b 1902 }
b6f4c0c7 1903 if (!migrate_cap_set(MIGRATION_CAPABILITY_BLOCK, true, errp)) {
d3e35b8f 1904 return false;
2833c59b
JQ
1905 }
1906 s->must_remove_block_options = true;
1907 }
1908
d3e35b8f 1909 if (blk_inc) {
87c22901 1910 migrate_set_block_incremental(true);
2833c59b
JQ
1911 }
1912
08fc4cb5
AH
1913 if (migrate_init(s, errp)) {
1914 return false;
1915 }
cab30143 1916
d3e35b8f
PX
1917 return true;
1918}
1919
074dbce5
HG
1920void qmp_migrate(const char *uri, bool has_channels,
1921 MigrationChannelList *channels, bool has_blk, bool blk,
d3e35b8f
PX
1922 bool has_inc, bool inc, bool has_detach, bool detach,
1923 bool has_resume, bool resume, Error **errp)
1924{
8c69ae9e 1925 bool resume_requested;
d3e35b8f
PX
1926 Error *local_err = NULL;
1927 MigrationState *s = migrate_get_current();
bc1d54ee 1928 g_autoptr(MigrationChannel) channel = NULL;
5994024f 1929 MigrationAddress *addr = NULL;
d3e35b8f 1930
074dbce5
HG
1931 /*
1932 * Having preliminary checks for uri and channel
1933 */
0770ad43
HG
1934 if (!uri == !channels) {
1935 error_setg(errp, "need either 'uri' or 'channels' argument");
074dbce5 1936 return;
0770ad43
HG
1937 }
1938
1939 if (channels) {
5994024f
HG
1940 /* To verify that Migrate channel list has only item */
1941 if (channels->next) {
1942 error_setg(errp, "Channel list has more than one entries");
1943 return;
1944 }
bc1d54ee 1945 addr = channels->value->addr;
0770ad43
HG
1946 }
1947
1948 if (uri) {
5994024f
HG
1949 /* caller uses the old URI syntax */
1950 if (!migrate_uri_parse(uri, &channel, errp)) {
1951 return;
1952 }
bc1d54ee 1953 addr = channel->addr;
074dbce5 1954 }
d6f74fd1 1955
d95533e1 1956 /* transport mechanism not suitable for migration? */
5994024f 1957 if (!migration_channels_and_transport_compatible(addr, errp)) {
72a8192e
HG
1958 return;
1959 }
1960
8c69ae9e 1961 resume_requested = has_resume && resume;
d3e35b8f 1962 if (!migrate_prepare(s, has_blk && blk, has_inc && inc,
8c69ae9e 1963 resume_requested, errp)) {
d3e35b8f
PX
1964 /* Error detected, put into errp */
1965 return;
1966 }
1967
8c69ae9e 1968 if (!resume_requested) {
b5eea99e
LS
1969 if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {
1970 return;
1971 }
1972 }
1973
5994024f
HG
1974 if (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET) {
1975 SocketAddress *saddr = &addr->u.socket;
34dfc5e4
HG
1976 if (saddr->type == SOCKET_ADDRESS_TYPE_INET ||
1977 saddr->type == SOCKET_ADDRESS_TYPE_UNIX ||
1978 saddr->type == SOCKET_ADDRESS_TYPE_VSOCK) {
1979 socket_start_outgoing_migration(s, saddr, &local_err);
1980 } else if (saddr->type == SOCKET_ADDRESS_TYPE_FD) {
1981 fd_start_outgoing_migration(s, saddr->u.fd.str, &local_err);
1982 }
2da776db 1983#ifdef CONFIG_RDMA
5994024f
HG
1984 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_RDMA) {
1985 rdma_start_outgoing_migration(s, &addr->u.rdma, &local_err);
2da776db 1986#endif
5994024f
HG
1987 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_EXEC) {
1988 exec_start_outgoing_migration(s, addr->u.exec.args, &local_err);
1989 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_FILE) {
1990 file_start_outgoing_migration(s, &addr->u.file, &local_err);
99a0db9b 1991 } else {
908927db 1992 error_setg(&local_err, QERR_INVALID_PARAMETER_VALUE, "uri",
c6bd8c70 1993 "a valid migration protocol");
48781e5b
HZ
1994 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1995 MIGRATION_STATUS_FAILED);
b1a87956 1996 block_cleanup_parameters();
cab30143
JQ
1997 }
1998
f37afb5a 1999 if (local_err) {
8c69ae9e 2000 if (!resume_requested) {
b5eea99e
LS
2001 yank_unregister_instance(MIGRATION_YANK_INSTANCE);
2002 }
d59ce6f3 2003 migrate_fd_error(s, local_err);
f37afb5a 2004 error_propagate(errp, local_err);
e1c37d0e 2005 return;
1299c631 2006 }
cab30143
JQ
2007}
2008
6cdedb07 2009void qmp_migrate_cancel(Error **errp)
cab30143 2010{
458fecca 2011 migration_cancel(NULL);
cab30143
JQ
2012}
2013
89cfc02c
DDAG
2014void qmp_migrate_continue(MigrationStatus state, Error **errp)
2015{
2016 MigrationState *s = migrate_get_current();
2017 if (s->state != state) {
2018 error_setg(errp, "Migration not in expected state: %s",
2019 MigrationStatus_str(s->state));
2020 return;
2021 }
2022 qemu_sem_post(&s->pause_sem);
2023}
2024
f8c543e8 2025int migration_rp_wait(MigrationState *s)
5e79a4bf 2026{
f8c543e8
PX
2027 /* If migration has failure already, ignore the wait */
2028 if (migrate_has_error(s)) {
2029 return -1;
2030 }
2031
5e79a4bf 2032 qemu_sem_wait(&s->rp_state.rp_sem);
f8c543e8
PX
2033
2034 /* After wait, double check that there's no failure */
2035 if (migrate_has_error(s)) {
2036 return -1;
2037 }
2038
2039 return 0;
5e79a4bf
PX
2040}
2041
2042void migration_rp_kick(MigrationState *s)
2043{
2044 qemu_sem_post(&s->rp_state.rp_sem);
2045}
2046
70b20477
DDAG
2047static struct rp_cmd_args {
2048 ssize_t len; /* -1 = variable */
2049 const char *name;
2050} rp_cmd_args[] = {
2051 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
2052 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
2053 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
1e2d90eb
DDAG
2054 [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" },
2055 [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" },
a335debb 2056 [MIG_RP_MSG_RECV_BITMAP] = { .len = -1, .name = "RECV_BITMAP" },
13955b89 2057 [MIG_RP_MSG_RESUME_ACK] = { .len = 4, .name = "RESUME_ACK" },
1b4adb10 2058 [MIG_RP_MSG_SWITCHOVER_ACK] = { .len = 0, .name = "SWITCHOVER_ACK" },
70b20477
DDAG
2059 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
2060};
2061
1e2d90eb
DDAG
2062/*
2063 * Process a request for pages received on the return path,
2064 * We're allowed to send more than requested (e.g. to round to our page size)
2065 * and we don't need to send pages that have already been sent.
2066 */
7aa6070d
PX
2067static void
2068migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
2069 ram_addr_t start, size_t len, Error **errp)
1e2d90eb 2070{
8e3b0cbb 2071 long our_host_ps = qemu_real_host_page_size();
6c595cde 2072
1e2d90eb 2073 trace_migrate_handle_rp_req_pages(rbname, start, len);
6c595cde
DDAG
2074
2075 /*
2076 * Since we currently insist on matching page sizes, just sanity check
2077 * we're being asked for whole host pages.
2078 */
7648297d
DH
2079 if (!QEMU_IS_ALIGNED(start, our_host_ps) ||
2080 !QEMU_IS_ALIGNED(len, our_host_ps)) {
7aa6070d
PX
2081 error_setg(errp, "MIG_RP_MSG_REQ_PAGES: Misaligned page request, start:"
2082 RAM_ADDR_FMT " len: %zd", start, len);
6c595cde
DDAG
2083 return;
2084 }
2085
7aa6070d 2086 ram_save_queue_pages(rbname, start, len, errp);
1e2d90eb
DDAG
2087}
2088
88577f32
PX
2089static bool migrate_handle_rp_recv_bitmap(MigrationState *s, char *block_name,
2090 Error **errp)
a335debb
PX
2091{
2092 RAMBlock *block = qemu_ram_block_by_name(block_name);
2093
2094 if (!block) {
7aa6070d
PX
2095 error_setg(errp, "MIG_RP_MSG_RECV_BITMAP has invalid block name '%s'",
2096 block_name);
88577f32 2097 return false;
a335debb
PX
2098 }
2099
2100 /* Fetch the received bitmap and refresh the dirty bitmap */
7aa6070d 2101 return ram_dirty_bitmap_reload(s, block, errp);
a335debb
PX
2102}
2103
88577f32
PX
2104static bool migrate_handle_rp_resume_ack(MigrationState *s,
2105 uint32_t value, Error **errp)
13955b89
PX
2106{
2107 trace_source_return_path_thread_resume_ack(value);
2108
2109 if (value != MIGRATION_RESUME_ACK_VALUE) {
7aa6070d 2110 error_setg(errp, "illegal resume_ack value %"PRIu32, value);
88577f32 2111 return false;
13955b89
PX
2112 }
2113
2114 /* Now both sides are active. */
2115 migrate_set_state(&s->state, MIGRATION_STATUS_POSTCOPY_RECOVER,
2116 MIGRATION_STATUS_POSTCOPY_ACTIVE);
2117
94190696 2118 /* Notify send thread that time to continue send pages */
5e79a4bf 2119 migration_rp_kick(s);
13955b89 2120
88577f32 2121 return true;
13955b89
PX
2122}
2123
93589827
PX
2124/*
2125 * Release ms->rp_state.from_dst_file (and postcopy_qemufile_src if
2126 * existed) in a safe way.
2127 */
2128static void migration_release_dst_files(MigrationState *ms)
43044ac0
PX
2129{
2130 QEMUFile *file;
2131
2132 WITH_QEMU_LOCK_GUARD(&ms->qemu_file_lock) {
2133 /*
2134 * Reset the from_dst_file pointer first before releasing it, as we
2135 * can't block within lock section
2136 */
2137 file = ms->rp_state.from_dst_file;
2138 ms->rp_state.from_dst_file = NULL;
2139 }
2140
93589827
PX
2141 /*
2142 * Do the same to postcopy fast path socket too if there is. No
2143 * locking needed because this qemufile should only be managed by
2144 * return path thread.
2145 */
2146 if (ms->postcopy_qemufile_src) {
2147 migration_ioc_unregister_yank_from_file(ms->postcopy_qemufile_src);
2148 qemu_file_shutdown(ms->postcopy_qemufile_src);
2149 qemu_fclose(ms->postcopy_qemufile_src);
2150 ms->postcopy_qemufile_src = NULL;
2151 }
2152
43044ac0
PX
2153 qemu_fclose(file);
2154}
2155
70b20477
DDAG
2156/*
2157 * Handles messages sent on the return path towards the source VM
2158 *
2159 */
2160static void *source_return_path_thread(void *opaque)
2161{
2162 MigrationState *ms = opaque;
2163 QEMUFile *rp = ms->rp_state.from_dst_file;
2164 uint16_t header_len, header_type;
568b01ca 2165 uint8_t buf[512];
70b20477 2166 uint32_t tmp32, sibling_error;
1e2d90eb
DDAG
2167 ram_addr_t start = 0; /* =0 to silence warning */
2168 size_t len = 0, expected_len;
7aa6070d 2169 Error *err = NULL;
70b20477
DDAG
2170 int res;
2171
2172 trace_source_return_path_thread_entry();
74637e6f 2173 rcu_register_thread();
14b1742e 2174
7aa6070d 2175 while (migration_is_setup_or_active(ms->state)) {
70b20477 2176 trace_source_return_path_thread_loop_top();
7aa6070d 2177
70b20477
DDAG
2178 header_type = qemu_get_be16(rp);
2179 header_len = qemu_get_be16(rp);
2180
7a9ddfbf 2181 if (qemu_file_get_error(rp)) {
7aa6070d 2182 qemu_file_get_error_obj(rp, &err);
7a9ddfbf
PX
2183 goto out;
2184 }
2185
70b20477
DDAG
2186 if (header_type >= MIG_RP_MSG_MAX ||
2187 header_type == MIG_RP_MSG_INVALID) {
7aa6070d
PX
2188 error_setg(&err, "Received invalid message 0x%04x length 0x%04x",
2189 header_type, header_len);
70b20477
DDAG
2190 goto out;
2191 }
2192
2193 if ((rp_cmd_args[header_type].len != -1 &&
2194 header_len != rp_cmd_args[header_type].len) ||
568b01ca 2195 header_len > sizeof(buf)) {
7aa6070d
PX
2196 error_setg(&err, "Received '%s' message (0x%04x) with"
2197 "incorrect length %d expecting %zu",
2198 rp_cmd_args[header_type].name, header_type, header_len,
2199 (size_t)rp_cmd_args[header_type].len);
70b20477
DDAG
2200 goto out;
2201 }
2202
2203 /* We know we've got a valid header by this point */
2204 res = qemu_get_buffer(rp, buf, header_len);
2205 if (res != header_len) {
7aa6070d
PX
2206 error_setg(&err, "Failed reading data for message 0x%04x"
2207 " read %d expected %d",
2208 header_type, res, header_len);
70b20477
DDAG
2209 goto out;
2210 }
2211
2212 /* OK, we have the message and the data */
2213 switch (header_type) {
2214 case MIG_RP_MSG_SHUT:
4d885131 2215 sibling_error = ldl_be_p(buf);
70b20477
DDAG
2216 trace_source_return_path_thread_shut(sibling_error);
2217 if (sibling_error) {
7aa6070d 2218 error_setg(&err, "Sibling indicated error %d", sibling_error);
70b20477
DDAG
2219 }
2220 /*
2221 * We'll let the main thread deal with closing the RP
2222 * we could do a shutdown(2) on it, but we're the only user
2223 * anyway, so there's nothing gained.
2224 */
2225 goto out;
2226
2227 case MIG_RP_MSG_PONG:
4d885131 2228 tmp32 = ldl_be_p(buf);
70b20477 2229 trace_source_return_path_thread_pong(tmp32);
b28fb582 2230 qemu_sem_post(&ms->rp_state.rp_pong_acks);
70b20477
DDAG
2231 break;
2232
1e2d90eb 2233 case MIG_RP_MSG_REQ_PAGES:
4d885131
PM
2234 start = ldq_be_p(buf);
2235 len = ldl_be_p(buf + 8);
7aa6070d
PX
2236 migrate_handle_rp_req_pages(ms, NULL, start, len, &err);
2237 if (err) {
2238 goto out;
2239 }
1e2d90eb
DDAG
2240 break;
2241
2242 case MIG_RP_MSG_REQ_PAGES_ID:
2243 expected_len = 12 + 1; /* header + termination */
2244
2245 if (header_len >= expected_len) {
4d885131
PM
2246 start = ldq_be_p(buf);
2247 len = ldl_be_p(buf + 8);
1e2d90eb
DDAG
2248 /* Now we expect an idstr */
2249 tmp32 = buf[12]; /* Length of the following idstr */
2250 buf[13 + tmp32] = '\0';
2251 expected_len += tmp32;
2252 }
2253 if (header_len != expected_len) {
7aa6070d
PX
2254 error_setg(&err, "Req_Page_id with length %d expecting %zd",
2255 header_len, expected_len);
2256 goto out;
2257 }
2258 migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len,
2259 &err);
2260 if (err) {
1e2d90eb
DDAG
2261 goto out;
2262 }
1e2d90eb
DDAG
2263 break;
2264
a335debb
PX
2265 case MIG_RP_MSG_RECV_BITMAP:
2266 if (header_len < 1) {
7aa6070d 2267 error_setg(&err, "MIG_RP_MSG_RECV_BITMAP missing block name");
a335debb
PX
2268 goto out;
2269 }
2270 /* Format: len (1B) + idstr (<255B). This ends the idstr. */
2271 buf[buf[0] + 1] = '\0';
88577f32 2272 if (!migrate_handle_rp_recv_bitmap(ms, (char *)(buf + 1), &err)) {
a335debb
PX
2273 goto out;
2274 }
2275 break;
2276
13955b89
PX
2277 case MIG_RP_MSG_RESUME_ACK:
2278 tmp32 = ldl_be_p(buf);
88577f32 2279 if (!migrate_handle_rp_resume_ack(ms, tmp32, &err)) {
13955b89
PX
2280 goto out;
2281 }
2282 break;
2283
1b4adb10
AH
2284 case MIG_RP_MSG_SWITCHOVER_ACK:
2285 ms->switchover_acked = true;
2286 trace_source_return_path_thread_switchover_acked();
2287 break;
2288
70b20477
DDAG
2289 default:
2290 break;
2291 }
2292 }
14b1742e
PX
2293
2294out:
7aa6070d
PX
2295 if (err) {
2296 migrate_set_error(ms, err);
2297 error_free(err);
70b20477 2298 trace_source_return_path_thread_bad_end();
70b20477
DDAG
2299 }
2300
f8c543e8
PX
2301 if (ms->state == MIGRATION_STATUS_POSTCOPY_RECOVER) {
2302 /*
2303 * this will be extremely unlikely: that we got yet another network
2304 * issue during recovering of the 1st network failure.. during this
2305 * period the main migration thread can be waiting on rp_sem for
2306 * this thread to sync with the other side.
2307 *
2308 * When this happens, explicitly kick the migration thread out of
2309 * RECOVER stage and back to PAUSED, so the admin can try
2310 * everything again.
2311 */
2312 migration_rp_kick(ms);
2313 }
2314
70b20477 2315 trace_source_return_path_thread_end();
74637e6f 2316 rcu_unregister_thread();
7aa6070d 2317
70b20477
DDAG
2318 return NULL;
2319}
2320
ef796ee9 2321static int open_return_path_on_source(MigrationState *ms)
70b20477 2322{
89a02a9f 2323 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
70b20477
DDAG
2324 if (!ms->rp_state.from_dst_file) {
2325 return -1;
2326 }
2327
2328 trace_open_return_path_on_source();
d3e35b8f 2329
70b20477
DDAG
2330 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
2331 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
53021ea1 2332 ms->rp_state.rp_thread_created = true;
70b20477
DDAG
2333
2334 trace_open_return_path_on_source_continue();
2335
2336 return 0;
2337}
2338
7aa6070d
PX
2339/* Return true if error detected, or false otherwise */
2340static bool close_return_path_on_source(MigrationState *ms)
70b20477 2341{
d50f5dc0 2342 if (!ms->rp_state.rp_thread_created) {
7aa6070d 2343 return false;
d50f5dc0
FR
2344 }
2345
2346 trace_migration_return_path_end_before();
2347
70b20477 2348 /*
639decf5
FR
2349 * If this is a normal exit then the destination will send a SHUT
2350 * and the rp_thread will exit, however if there's an error we
2351 * need to cause it to exit. shutdown(2), if we have it, will
2352 * cause it to unblock if it's stuck waiting for the destination.
70b20477 2353 */
639decf5
FR
2354 WITH_QEMU_LOCK_GUARD(&ms->qemu_file_lock) {
2355 if (ms->to_dst_file && ms->rp_state.from_dst_file &&
2356 qemu_file_get_error(ms->to_dst_file)) {
2357 qemu_file_shutdown(ms->rp_state.from_dst_file);
2358 }
70b20477 2359 }
639decf5 2360
70b20477 2361 qemu_thread_join(&ms->rp_state.rp_thread);
53021ea1 2362 ms->rp_state.rp_thread_created = false;
36e9aab3 2363 migration_release_dst_files(ms);
7aa6070d 2364 trace_migration_return_path_end_after();
36e9aab3 2365
7aa6070d
PX
2366 /* Return path will persist the error in MigrationState when quit */
2367 return migrate_has_error(ms);
70b20477
DDAG
2368}
2369
5655aab0
PX
2370static inline void
2371migration_wait_main_channel(MigrationState *ms)
2372{
2373 /* Wait until one PONG message received */
2374 qemu_sem_wait(&ms->rp_state.rp_pong_acks);
2375}
2376
1d34e4bf
DDAG
2377/*
2378 * Switch from normal iteration to postcopy
2379 * Returns non-0 on error
2380 */
908927db 2381static int postcopy_start(MigrationState *ms, Error **errp)
1d34e4bf
DDAG
2382{
2383 int ret;
61b67d47
DB
2384 QIOChannelBuffer *bioc;
2385 QEMUFile *fb;
52033349 2386 uint64_t bandwidth = migrate_max_postcopy_bandwidth();
ef8d6488 2387 bool restart_block = false;
0331c8ca 2388 int cur_state = MIGRATION_STATUS_ACTIVE;
d0edb8a1 2389
5655aab0
PX
2390 if (migrate_postcopy_preempt()) {
2391 migration_wait_main_channel(ms);
2392 if (postcopy_preempt_establish_channel(ms)) {
2393 migrate_set_state(&ms->state, ms->state, MIGRATION_STATUS_FAILED);
2394 return -1;
2395 }
d0edb8a1
PX
2396 }
2397
0331c8ca
DDAG
2398 if (!migrate_pause_before_switchover()) {
2399 migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
2400 MIGRATION_STATUS_POSTCOPY_ACTIVE);
2401 }
1d34e4bf
DDAG
2402
2403 trace_postcopy_start();
195801d7 2404 bql_lock();
1d34e4bf
DDAG
2405 trace_postcopy_start_set_run();
2406
e22ffad0 2407 migration_downtime_start(ms);
62f5da7d 2408
1d34e4bf 2409 global_state_store();
93bdf888 2410 ret = migration_stop_vm(RUN_STATE_FINISH_MIGRATE);
76b1c7fe
KW
2411 if (ret < 0) {
2412 goto fail;
2413 }
1d34e4bf 2414
0331c8ca
DDAG
2415 ret = migration_maybe_pause(ms, &cur_state,
2416 MIGRATION_STATUS_POSTCOPY_ACTIVE);
2417 if (ret < 0) {
2418 goto fail;
2419 }
2420
76b1c7fe 2421 ret = bdrv_inactivate_all();
1d34e4bf
DDAG
2422 if (ret < 0) {
2423 goto fail;
2424 }
ef8d6488 2425 restart_block = true;
1d34e4bf 2426
1c0d249d
DDAG
2427 /*
2428 * Cause any non-postcopiable, but iterative devices to
2429 * send out their final data.
2430 */
a1fbe750 2431 qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false);
1c0d249d 2432
1d34e4bf
DDAG
2433 /*
2434 * in Finish migrate and with the io-lock held everything should
2435 * be quiet, but we've potentially still got dirty pages and we
2436 * need to tell the destination to throw any pages it's already received
2437 * that are dirty
2438 */
58110f0a 2439 if (migrate_postcopy_ram()) {
739fcc1b 2440 ram_postcopy_send_discard_bitmap(ms);
1d34e4bf
DDAG
2441 }
2442
2443 /*
2444 * send rest of state - note things that are doing postcopy
2445 * will notice we're in POSTCOPY_ACTIVE and not actually
2446 * wrap their state up here
2447 */
e1fde0e0 2448 migration_rate_set(bandwidth);
58110f0a
VSO
2449 if (migrate_postcopy_ram()) {
2450 /* Ping just for debugging, helps line traces up */
2451 qemu_savevm_send_ping(ms->to_dst_file, 2);
2452 }
1d34e4bf
DDAG
2453
2454 /*
2455 * While loading the device state we may trigger page transfer
2456 * requests and the fd must be free to process those, and thus
2457 * the destination must read the whole device state off the fd before
2458 * it starts processing it. Unfortunately the ad-hoc migration format
2459 * doesn't allow the destination to know the size to read without fully
2460 * parsing it through each devices load-state code (especially the open
2461 * coded devices that use get/put).
2462 * So we wrap the device state up in a package with a length at the start;
2463 * to do this we use a qemu_buf to hold the whole of the device state.
2464 */
61b67d47 2465 bioc = qio_channel_buffer_new(4096);
6f01f136 2466 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
77ef2dc1 2467 fb = qemu_file_new_output(QIO_CHANNEL(bioc));
61b67d47 2468 object_unref(OBJECT(bioc));
1d34e4bf 2469
c76201ab
DDAG
2470 /*
2471 * Make sure the receiver can get incoming pages before we send the rest
2472 * of the state
2473 */
2474 qemu_savevm_send_postcopy_listen(fb);
2475
a1fbe750 2476 qemu_savevm_state_complete_precopy(fb, false, false);
58110f0a
VSO
2477 if (migrate_postcopy_ram()) {
2478 qemu_savevm_send_ping(fb, 3);
2479 }
1d34e4bf
DDAG
2480
2481 qemu_savevm_send_postcopy_run(fb);
2482
2483 /* <><> end of stuff going into the package */
1d34e4bf 2484
ef8d6488
DDAG
2485 /* Last point of recovery; as soon as we send the package the destination
2486 * can open devices and potentially start running.
2487 * Lets just check again we've not got any errors.
2488 */
2489 ret = qemu_file_get_error(ms->to_dst_file);
2490 if (ret) {
908927db 2491 error_setg(errp, "postcopy_start: Migration stream errored (pre package)");
ef8d6488
DDAG
2492 goto fail_closefb;
2493 }
2494
2495 restart_block = false;
2496
1d34e4bf 2497 /* Now send that blob */
61b67d47 2498 if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
1d34e4bf
DDAG
2499 goto fail_closefb;
2500 }
2501 qemu_fclose(fb);
b82fc321
DDAG
2502
2503 /* Send a notify to give a chance for anything that needs to happen
2504 * at the transition to postcopy and after the device state; in particular
2505 * spice needs to trigger a transition now
2506 */
2507 ms->postcopy_after_devices = true;
d9cda213 2508 migration_call_notifiers(ms);
b82fc321 2509
e22ffad0 2510 migration_downtime_end(ms);
1d34e4bf 2511
195801d7 2512 bql_unlock();
1d34e4bf 2513
58110f0a
VSO
2514 if (migrate_postcopy_ram()) {
2515 /*
2516 * Although this ping is just for debug, it could potentially be
2517 * used for getting a better measurement of downtime at the source.
2518 */
2519 qemu_savevm_send_ping(ms->to_dst_file, 4);
2520 }
1d34e4bf 2521
ced1c616
PB
2522 if (migrate_release_ram()) {
2523 ram_postcopy_migrated_memory_release(ms);
2524 }
2525
89a02a9f 2526 ret = qemu_file_get_error(ms->to_dst_file);
1d34e4bf 2527 if (ret) {
908927db 2528 error_setg(errp, "postcopy_start: Migration stream errored");
48781e5b 2529 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1d34e4bf
DDAG
2530 MIGRATION_STATUS_FAILED);
2531 }
2532
c01b16ed
PX
2533 trace_postcopy_preempt_enabled(migrate_postcopy_preempt());
2534
1d34e4bf
DDAG
2535 return ret;
2536
2537fail_closefb:
2538 qemu_fclose(fb);
2539fail:
48781e5b 2540 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1d34e4bf 2541 MIGRATION_STATUS_FAILED);
ef8d6488
DDAG
2542 if (restart_block) {
2543 /* A failure happened early enough that we know the destination hasn't
2544 * accessed block devices, so we're safe to recover.
2545 */
2546 Error *local_err = NULL;
2547
3b717194 2548 bdrv_activate_all(&local_err);
ef8d6488
DDAG
2549 if (local_err) {
2550 error_report_err(local_err);
2551 }
2552 }
195801d7 2553 bql_unlock();
1d34e4bf
DDAG
2554 return -1;
2555}
2556
e91d8951
DDAG
2557/**
2558 * migration_maybe_pause: Pause if required to by
a4a411fb 2559 * migrate_pause_before_switchover called with the BQL locked
e91d8951
DDAG
2560 * Returns: 0 on success
2561 */
0331c8ca
DDAG
2562static int migration_maybe_pause(MigrationState *s,
2563 int *current_active_state,
2564 int new_state)
e91d8951
DDAG
2565{
2566 if (!migrate_pause_before_switchover()) {
2567 return 0;
2568 }
2569
2570 /* Since leaving this state is not atomic with posting the semaphore
2571 * it's possible that someone could have issued multiple migrate_continue
2572 * and the semaphore is incorrectly positive at this point;
2573 * the docs say it's undefined to reinit a semaphore that's already
2574 * init'd, so use timedwait to eat up any existing posts.
2575 */
2576 while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) {
2577 /* This block intentionally left blank */
2578 }
2579
8958338b
ZF
2580 /*
2581 * If the migration is cancelled when it is in the completion phase,
2582 * the migration state is set to MIGRATION_STATUS_CANCELLING.
2583 * So we don't need to wait a semaphore, otherwise we would always
2584 * wait for the 'pause_sem' semaphore.
2585 */
2586 if (s->state != MIGRATION_STATUS_CANCELLING) {
195801d7 2587 bql_unlock();
8958338b
ZF
2588 migrate_set_state(&s->state, *current_active_state,
2589 MIGRATION_STATUS_PRE_SWITCHOVER);
2590 qemu_sem_wait(&s->pause_sem);
2591 migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER,
2592 new_state);
2593 *current_active_state = new_state;
195801d7 2594 bql_lock();
8958338b 2595 }
e91d8951 2596
0331c8ca 2597 return s->state == new_state ? 0 : -EINVAL;
e91d8951
DDAG
2598}
2599
d7f5a043
WW
2600static int migration_completion_precopy(MigrationState *s,
2601 int *current_active_state)
09f6c85e
DDAG
2602{
2603 int ret;
2604
195801d7 2605 bql_lock();
e22ffad0 2606 migration_downtime_start(s);
f4584076 2607
d7f5a043
WW
2608 s->vm_old_state = runstate_get();
2609 global_state_store();
c33f1829 2610
93bdf888 2611 ret = migration_stop_vm(RUN_STATE_FINISH_MIGRATE);
d7f5a043
WW
2612 trace_migration_completion_vm_stop(ret);
2613 if (ret < 0) {
2614 goto out_unlock;
2615 }
c33f1829 2616
d7f5a043
WW
2617 ret = migration_maybe_pause(s, current_active_state,
2618 MIGRATION_STATUS_DEVICE);
2619 if (ret < 0) {
2620 goto out_unlock;
2621 }
09f6c85e 2622
d7f5a043
WW
2623 /*
2624 * Inactivate disks except in COLO, and track that we have done so in order
2625 * to remember to reactivate them if migration fails or is cancelled.
2626 */
2627 s->block_inactive = !migrate_colo();
2628 migration_rate_set(RATE_LIMIT_DISABLED);
2629 ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
2630 s->block_inactive);
2631out_unlock:
195801d7 2632 bql_unlock();
d7f5a043
WW
2633 return ret;
2634}
b10ac0c4 2635
d7f5a043
WW
2636static void migration_completion_postcopy(MigrationState *s)
2637{
2638 trace_migration_completion_postcopy_end();
2639
195801d7 2640 bql_lock();
d7f5a043 2641 qemu_savevm_state_complete_postcopy(s->to_dst_file);
195801d7 2642 bql_unlock();
d7f5a043
WW
2643
2644 /*
2645 * Shutdown the postcopy fast path thread. This is only needed when dest
2646 * QEMU binary is old (7.1/7.2). QEMU 8.0+ doesn't need this.
2647 */
2648 if (migrate_postcopy_preempt() && s->preempt_pre_7_2) {
2649 postcopy_preempt_shutdown_file(s);
2650 }
68b88468 2651
d7f5a043
WW
2652 trace_migration_completion_postcopy_end_after_complete();
2653}
2654
2655static void migration_completion_failed(MigrationState *s,
2656 int current_active_state)
2657{
2658 if (s->block_inactive && (s->state == MIGRATION_STATUS_ACTIVE ||
2659 s->state == MIGRATION_STATUS_DEVICE)) {
6621883f 2660 /*
d7f5a043
WW
2661 * If not doing postcopy, vm_start() will be called: let's
2662 * regain control on images.
6621883f 2663 */
d7f5a043
WW
2664 Error *local_err = NULL;
2665
195801d7 2666 bql_lock();
d7f5a043
WW
2667 bdrv_activate_all(&local_err);
2668 if (local_err) {
2669 error_report_err(local_err);
2670 } else {
2671 s->block_inactive = false;
36f62f11 2672 }
195801d7 2673 bql_unlock();
d7f5a043
WW
2674 }
2675
2676 migrate_set_state(&s->state, current_active_state,
2677 MIGRATION_STATUS_FAILED);
2678}
36f62f11 2679
d7f5a043
WW
2680/**
2681 * migration_completion: Used by migration_thread when there's not much left.
2682 * The caller 'breaks' the loop when this returns.
2683 *
2684 * @s: Current migration state
2685 */
2686static void migration_completion(MigrationState *s)
2687{
2688 int ret = 0;
2689 int current_active_state = s->state;
2690
2691 if (s->state == MIGRATION_STATUS_ACTIVE) {
2692 ret = migration_completion_precopy(s, &current_active_state);
2693 } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2694 migration_completion_postcopy(s);
444252b9 2695 } else {
d7f5a043
WW
2696 ret = -1;
2697 }
2698
2699 if (ret < 0) {
6ba11211 2700 goto fail;
09f6c85e 2701 }
09f6c85e 2702
d7f5a043 2703 if (close_return_path_on_source(s)) {
d50f5dc0 2704 goto fail;
09f6c85e
DDAG
2705 }
2706
89a02a9f 2707 if (qemu_file_get_error(s->to_dst_file)) {
09f6c85e 2708 trace_migration_completion_file_err();
6dab4c93 2709 goto fail;
09f6c85e
DDAG
2710 }
2711
5e804644 2712 if (migrate_colo() && s->state == MIGRATION_STATUS_ACTIVE) {
eeeb48ee
ZC
2713 /* COLO does not support postcopy */
2714 migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE,
2715 MIGRATION_STATUS_COLO);
2716 } else {
0b827d5e
HZ
2717 migrate_set_state(&s->state, current_active_state,
2718 MIGRATION_STATUS_COMPLETED);
2719 }
2720
09f6c85e
DDAG
2721 return;
2722
6dab4c93 2723fail:
d7f5a043 2724 migration_completion_failed(s, current_active_state);
09f6c85e
DDAG
2725}
2726
8518278a
AG
2727/**
2728 * bg_migration_completion: Used by bg_migration_thread when after all the
2729 * RAM has been saved. The caller 'breaks' the loop when this returns.
2730 *
2731 * @s: Current migration state
2732 */
2733static void bg_migration_completion(MigrationState *s)
2734{
2735 int current_active_state = s->state;
2736
8518278a
AG
2737 if (s->state == MIGRATION_STATUS_ACTIVE) {
2738 /*
2739 * By this moment we have RAM content saved into the migration stream.
2740 * The next step is to flush the non-RAM content (device state)
2741 * right after the ram content. The device state has been stored into
2742 * the temporary buffer before RAM saving started.
2743 */
2744 qemu_put_buffer(s->to_dst_file, s->bioc->data, s->bioc->usage);
2745 qemu_fflush(s->to_dst_file);
2746 } else if (s->state == MIGRATION_STATUS_CANCELLING) {
2747 goto fail;
2748 }
2749
2750 if (qemu_file_get_error(s->to_dst_file)) {
2751 trace_migration_completion_file_err();
2752 goto fail;
2753 }
2754
2755 migrate_set_state(&s->state, current_active_state,
2756 MIGRATION_STATUS_COMPLETED);
2757 return;
2758
2759fail:
2760 migrate_set_state(&s->state, current_active_state,
2761 MIGRATION_STATUS_FAILED);
2762}
2763
b23c2ade
PX
2764typedef enum MigThrError {
2765 /* No error detected */
2766 MIG_THR_ERR_NONE = 0,
2767 /* Detected error, but resumed successfully */
2768 MIG_THR_ERR_RECOVERED = 1,
2769 /* Detected fatal error, need to exit */
2770 MIG_THR_ERR_FATAL = 2,
2771} MigThrError;
2772
94190696
PX
2773static int postcopy_resume_handshake(MigrationState *s)
2774{
2775 qemu_savevm_send_postcopy_resume(s->to_dst_file);
2776
2777 while (s->state == MIGRATION_STATUS_POSTCOPY_RECOVER) {
f8c543e8
PX
2778 if (migration_rp_wait(s)) {
2779 return -1;
2780 }
94190696
PX
2781 }
2782
2783 if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2784 return 0;
2785 }
2786
2787 return -1;
2788}
2789
135b87b4
PX
2790/* Return zero if success, or <0 for error */
2791static int postcopy_do_resume(MigrationState *s)
2792{
d1b8eadb
PX
2793 int ret;
2794
2795 /*
2796 * Call all the resume_prepare() hooks, so that modules can be
2797 * ready for the migration resume.
2798 */
2799 ret = qemu_savevm_state_resume_prepare(s);
2800 if (ret) {
2801 error_report("%s: resume_prepare() failure detected: %d",
2802 __func__, ret);
2803 return ret;
2804 }
2805
5655aab0
PX
2806 /*
2807 * If preempt is enabled, re-establish the preempt channel. Note that
2808 * we do it after resume prepare to make sure the main channel will be
2809 * created before the preempt channel. E.g. with weak network, the
2810 * dest QEMU may get messed up with the preempt and main channels on
2811 * the order of connection setup. This guarantees the correct order.
2812 */
2813 ret = postcopy_preempt_establish_channel(s);
2814 if (ret) {
2815 error_report("%s: postcopy_preempt_establish_channel(): %d",
2816 __func__, ret);
2817 return ret;
2818 }
2819
d1b8eadb 2820 /*
94190696
PX
2821 * Last handshake with destination on the resume (destination will
2822 * switch to postcopy-active afterwards)
d1b8eadb 2823 */
94190696
PX
2824 ret = postcopy_resume_handshake(s);
2825 if (ret) {
2826 error_report("%s: handshake failed: %d", __func__, ret);
2827 return ret;
2828 }
d1b8eadb 2829
135b87b4
PX
2830 return 0;
2831}
2832
b23c2ade
PX
2833/*
2834 * We don't return until we are in a safe state to continue current
2835 * postcopy migration. Returns MIG_THR_ERR_RECOVERED if recovered, or
2836 * MIG_THR_ERR_FATAL if unrecovery failure happened.
2837 */
2838static MigThrError postcopy_pause(MigrationState *s)
2839{
2840 assert(s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
b23c2ade 2841
135b87b4 2842 while (true) {
62df066f
PX
2843 QEMUFile *file;
2844
39675fff
PX
2845 /*
2846 * Current channel is possibly broken. Release it. Note that this is
2847 * guaranteed even without lock because to_dst_file should only be
2848 * modified by the migration thread. That also guarantees that the
2849 * unregister of yank is safe too without the lock. It should be safe
2850 * even to be within the qemu_file_lock, but we didn't do that to avoid
2851 * taking more mutex (yank_lock) within qemu_file_lock. TL;DR: we make
2852 * the qemu_file_lock critical section as small as possible.
2853 */
135b87b4 2854 assert(s->to_dst_file);
39675fff 2855 migration_ioc_unregister_yank_from_file(s->to_dst_file);
62df066f
PX
2856 qemu_mutex_lock(&s->qemu_file_lock);
2857 file = s->to_dst_file;
135b87b4 2858 s->to_dst_file = NULL;
62df066f
PX
2859 qemu_mutex_unlock(&s->qemu_file_lock);
2860
2861 qemu_file_shutdown(file);
2862 qemu_fclose(file);
b23c2ade 2863
ef796ee9
FR
2864 /*
2865 * We're already pausing, so ignore any errors on the return
2866 * path and just wait for the thread to finish. It will be
2867 * re-created when we resume.
2868 */
d7f5a043 2869 close_return_path_on_source(s);
ef796ee9 2870
d246ea50
PX
2871 migrate_set_state(&s->state, s->state,
2872 MIGRATION_STATUS_POSTCOPY_PAUSED);
2873
135b87b4
PX
2874 error_report("Detected IO failure for postcopy. "
2875 "Migration paused.");
b23c2ade 2876
135b87b4
PX
2877 /*
2878 * We wait until things fixed up. Then someone will setup the
2879 * status back for us.
2880 */
2881 while (s->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
2882 qemu_sem_wait(&s->postcopy_pause_sem);
2883 }
2884
2885 if (s->state == MIGRATION_STATUS_POSTCOPY_RECOVER) {
2886 /* Woken up by a recover procedure. Give it a shot */
b23c2ade 2887
135b87b4
PX
2888 /* Do the resume logic */
2889 if (postcopy_do_resume(s) == 0) {
2890 /* Let's continue! */
2891 trace_postcopy_pause_continued();
2892 return MIG_THR_ERR_RECOVERED;
2893 } else {
2894 /*
2895 * Something wrong happened during the recovery, let's
2896 * pause again. Pause is always better than throwing
2897 * data away.
2898 */
2899 continue;
2900 }
2901 } else {
2902 /* This is not right... Time to quit. */
2903 return MIG_THR_ERR_FATAL;
2904 }
2905 }
b23c2ade
PX
2906}
2907
2908static MigThrError migration_detect_error(MigrationState *s)
2909{
2910 int ret;
c3c5eae6 2911 int state = s->state;
3d661c8a 2912 Error *local_error = NULL;
c3c5eae6
DDAG
2913
2914 if (state == MIGRATION_STATUS_CANCELLING ||
2915 state == MIGRATION_STATUS_CANCELLED) {
2916 /* End the migration, but don't set the state to failed */
2917 return MIG_THR_ERR_FATAL;
2918 }
b23c2ade 2919
60bb3c58
PX
2920 /*
2921 * Try to detect any file errors. Note that postcopy_qemufile_src will
2922 * be NULL when postcopy preempt is not enabled.
2923 */
2924 ret = qemu_file_get_error_obj_any(s->to_dst_file,
2925 s->postcopy_qemufile_src,
2926 &local_error);
b23c2ade
PX
2927 if (!ret) {
2928 /* Everything is fine */
3d661c8a 2929 assert(!local_error);
b23c2ade
PX
2930 return MIG_THR_ERR_NONE;
2931 }
2932
3d661c8a
YK
2933 if (local_error) {
2934 migrate_set_error(s, local_error);
2935 error_free(local_error);
2936 }
2937
d5c8f2af 2938 if (state == MIGRATION_STATUS_POSTCOPY_ACTIVE && ret) {
b23c2ade
PX
2939 /*
2940 * For postcopy, we allow the network to be down for a
2941 * while. After that, it can be continued by a
2942 * recovery phase.
2943 */
2944 return postcopy_pause(s);
2945 } else {
2946 /*
2947 * For precopy (or postcopy with error outside IO), we fail
2948 * with no time.
2949 */
c3c5eae6 2950 migrate_set_state(&s->state, state, MIGRATION_STATUS_FAILED);
b23c2ade
PX
2951 trace_migration_thread_file_err();
2952
2953 /* Time to stop the migration, now. */
2954 return MIG_THR_ERR_FATAL;
2955 }
2956}
2957
cf011f08
PX
2958static void migration_calculate_complete(MigrationState *s)
2959{
f57e5a6c 2960 uint64_t bytes = migration_transferred_bytes();
cf011f08 2961 int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
6cde6fbe 2962 int64_t transfer_time;
cf011f08 2963
e22ffad0 2964 migration_downtime_end(s);
cf011f08 2965 s->total_time = end_time - s->start_time;
6cde6fbe
JQ
2966 transfer_time = s->total_time - s->setup_time;
2967 if (transfer_time) {
2968 s->mbps = ((double) bytes * 8.0) / transfer_time / 1000;
cf011f08
PX
2969 }
2970}
2971
87f3bd87
IR
2972static void update_iteration_initial_status(MigrationState *s)
2973{
2974 /*
2975 * Update these three fields at the same time to avoid mismatch info lead
2976 * wrong speed calculation.
2977 */
2978 s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
f57e5a6c 2979 s->iteration_initial_bytes = migration_transferred_bytes();
87f3bd87
IR
2980 s->iteration_initial_pages = ram_get_total_transferred_pages();
2981}
2982
b15df1ae
PX
2983static void migration_update_counters(MigrationState *s,
2984 int64_t current_time)
2985{
aecbfe9c 2986 uint64_t transferred, transferred_pages, time_spent;
0c8f0efd 2987 uint64_t current_bytes; /* bytes transferred since the beginning */
8b239597
PX
2988 uint64_t switchover_bw;
2989 /* Expected bandwidth when switching over to destination QEMU */
2990 double expected_bw_per_ms;
b15df1ae
PX
2991 double bandwidth;
2992
2993 if (current_time < s->iteration_start_time + BUFFER_DELAY) {
2994 return;
2995 }
2996
8b239597 2997 switchover_bw = migrate_avail_switchover_bandwidth();
f57e5a6c 2998 current_bytes = migration_transferred_bytes();
0c8f0efd 2999 transferred = current_bytes - s->iteration_initial_bytes;
b15df1ae
PX
3000 time_spent = current_time - s->iteration_start_time;
3001 bandwidth = (double)transferred / time_spent;
8b239597
PX
3002
3003 if (switchover_bw) {
3004 /*
3005 * If the user specified a switchover bandwidth, let's trust the
3006 * user so that can be more accurate than what we estimated.
3007 */
3008 expected_bw_per_ms = switchover_bw / 1000;
3009 } else {
3010 /* If the user doesn't specify bandwidth, we use the estimated */
3011 expected_bw_per_ms = bandwidth;
3012 }
3013
3014 s->threshold_size = expected_bw_per_ms * migrate_downtime_limit();
b15df1ae
PX
3015
3016 s->mbps = (((double) transferred * 8.0) /
3017 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
3018
aecbfe9c
XG
3019 transferred_pages = ram_get_total_transferred_pages() -
3020 s->iteration_initial_pages;
3021 s->pages_per_second = (double) transferred_pages /
3022 (((double) time_spent / 1000.0));
3023
b15df1ae
PX
3024 /*
3025 * if we haven't sent anything, we don't want to
3026 * recalculate. 10000 is a small enough number for our purposes
3027 */
aff3f660 3028 if (stat64_get(&mig_stats.dirty_pages_rate) &&
72f8e587 3029 transferred > 10000) {
73208a33 3030 s->expected_downtime =
8b239597 3031 stat64_get(&mig_stats.dirty_bytes_last_sync) / expected_bw_per_ms;
b15df1ae
PX
3032 }
3033
0743f41f 3034 migration_rate_reset();
b15df1ae 3035
87f3bd87 3036 update_iteration_initial_status(s);
b15df1ae
PX
3037
3038 trace_migrate_transferred(transferred, time_spent,
8b239597
PX
3039 /* Both in unit bytes/ms */
3040 bandwidth, switchover_bw / 1000,
3041 s->threshold_size);
b15df1ae
PX
3042}
3043
1b4adb10
AH
3044static bool migration_can_switchover(MigrationState *s)
3045{
3046 if (!migrate_switchover_ack()) {
3047 return true;
3048 }
3049
3050 /* No reason to wait for switchover ACK if VM is stopped */
3051 if (!runstate_is_running()) {
3052 return true;
3053 }
3054
3055 return s->switchover_acked;
3056}
3057
2ad87305
PX
3058/* Migration thread iteration status */
3059typedef enum {
3060 MIG_ITERATE_RESUME, /* Resume current iteration */
3061 MIG_ITERATE_SKIP, /* Skip current iteration */
3062 MIG_ITERATE_BREAK, /* Break the loop */
3063} MigIterateState;
3064
3065/*
3066 * Return true if continue to the next iteration directly, false
3067 * otherwise.
3068 */
3069static MigIterateState migration_iteration_run(MigrationState *s)
3070{
24beea4e 3071 uint64_t must_precopy, can_postcopy;
908927db 3072 Error *local_err = NULL;
2ad87305 3073 bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE;
1b4adb10 3074 bool can_switchover = migration_can_switchover(s);
2ad87305 3075
24beea4e
JQ
3076 qemu_savevm_state_pending_estimate(&must_precopy, &can_postcopy);
3077 uint64_t pending_size = must_precopy + can_postcopy;
2ad87305 3078
24beea4e 3079 trace_migrate_pending_estimate(pending_size, must_precopy, can_postcopy);
c8df4a7a 3080
24beea4e
JQ
3081 if (must_precopy <= s->threshold_size) {
3082 qemu_savevm_state_pending_exact(&must_precopy, &can_postcopy);
3083 pending_size = must_precopy + can_postcopy;
3084 trace_migrate_pending_exact(pending_size, must_precopy, can_postcopy);
c8df4a7a 3085 }
2ad87305 3086
1b4adb10 3087 if ((!pending_size || pending_size < s->threshold_size) && can_switchover) {
2ad87305
PX
3088 trace_migration_thread_low_pending(pending_size);
3089 migration_completion(s);
3090 return MIG_ITERATE_BREAK;
3091 }
3092
d9df9292 3093 /* Still a significant amount to transfer */
1b4adb10 3094 if (!in_postcopy && must_precopy <= s->threshold_size && can_switchover &&
d9df9292 3095 qatomic_read(&s->start_postcopy)) {
908927db
TG
3096 if (postcopy_start(s, &local_err)) {
3097 migrate_set_error(s, local_err);
3098 error_report_err(local_err);
d9df9292
JQ
3099 }
3100 return MIG_ITERATE_SKIP;
3101 }
3102
3103 /* Just another iteration step */
3104 qemu_savevm_state_iterate(s->to_dst_file, in_postcopy);
2ad87305
PX
3105 return MIG_ITERATE_RESUME;
3106}
3107
199aa6d4
PX
3108static void migration_iteration_finish(MigrationState *s)
3109{
3110 /* If we enabled cpu throttling for auto-converge, turn it off. */
3111 cpu_throttle_stop();
3112
195801d7 3113 bql_lock();
199aa6d4
PX
3114 switch (s->state) {
3115 case MIGRATION_STATUS_COMPLETED:
3116 migration_calculate_complete(s);
3117 runstate_set(RUN_STATE_POSTMIGRATE);
3118 break;
751fe4c6 3119 case MIGRATION_STATUS_COLO:
d70178a8 3120 assert(migrate_colo());
199aa6d4 3121 migrate_start_colo_process(s);
f4584076 3122 s->vm_old_state = RUN_STATE_RUNNING;
199aa6d4
PX
3123 /* Fallthrough */
3124 case MIGRATION_STATUS_FAILED:
3125 case MIGRATION_STATUS_CANCELLED:
57225e5f 3126 case MIGRATION_STATUS_CANCELLING:
b4e9ddcc 3127 if (runstate_is_live(s->vm_old_state)) {
aa505f8e
RL
3128 if (!runstate_check(RUN_STATE_SHUTDOWN)) {
3129 vm_start();
3130 }
199aa6d4
PX
3131 } else {
3132 if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
a4c6275a 3133 runstate_set(s->vm_old_state);
199aa6d4
PX
3134 }
3135 }
3136 break;
3137
3138 default:
3139 /* Should not reach here, but if so, forgive the VM. */
3140 error_report("%s: Unknown ending state %d", __func__, s->state);
3141 break;
3142 }
fd392cfa 3143 migrate_fd_cleanup_schedule(s);
195801d7 3144 bql_unlock();
199aa6d4
PX
3145}
3146
8518278a
AG
3147static void bg_migration_iteration_finish(MigrationState *s)
3148{
3a8b81f2
FE
3149 /*
3150 * Stop tracking RAM writes - un-protect memory, un-register UFFD
3151 * memory ranges, flush kernel wait queues and wake up threads
3152 * waiting for write fault to be resolved.
3153 */
3154 ram_write_tracking_stop();
3155
195801d7 3156 bql_lock();
8518278a
AG
3157 switch (s->state) {
3158 case MIGRATION_STATUS_COMPLETED:
3159 migration_calculate_complete(s);
3160 break;
3161
3162 case MIGRATION_STATUS_ACTIVE:
3163 case MIGRATION_STATUS_FAILED:
3164 case MIGRATION_STATUS_CANCELLED:
3165 case MIGRATION_STATUS_CANCELLING:
3166 break;
3167
3168 default:
3169 /* Should not reach here, but if so, forgive the VM. */
3170 error_report("%s: Unknown ending state %d", __func__, s->state);
3171 break;
3172 }
3173
3174 migrate_fd_cleanup_schedule(s);
195801d7 3175 bql_unlock();
8518278a
AG
3176}
3177
3178/*
3179 * Return true if continue to the next iteration directly, false
3180 * otherwise.
3181 */
3182static MigIterateState bg_migration_iteration_run(MigrationState *s)
3183{
3184 int res;
3185
3186 res = qemu_savevm_state_iterate(s->to_dst_file, false);
3187 if (res > 0) {
3188 bg_migration_completion(s);
3189 return MIG_ITERATE_BREAK;
3190 }
3191
3192 return MIG_ITERATE_RESUME;
3193}
3194
ad767bed
DDAG
3195void migration_make_urgent_request(void)
3196{
3197 qemu_sem_post(&migrate_get_current()->rate_limit_sem);
3198}
3199
3200void migration_consume_urgent_request(void)
3201{
3202 qemu_sem_wait(&migrate_get_current()->rate_limit_sem);
3203}
3204
97e1e067
DDAG
3205/* Returns true if the rate limiting was broken by an urgent request */
3206bool migration_rate_limit(void)
3207{
3208 int64_t now = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
3209 MigrationState *s = migrate_get_current();
3210
3211 bool urgent = false;
3212 migration_update_counters(s, now);
e1fde0e0 3213 if (migration_rate_exceeded(s->to_dst_file)) {
77386127
LS
3214
3215 if (qemu_file_get_error(s->to_dst_file)) {
3216 return false;
3217 }
97e1e067
DDAG
3218 /*
3219 * Wait for a delay to do rate limiting OR
3220 * something urgent to post the semaphore.
3221 */
3222 int ms = s->iteration_start_time + BUFFER_DELAY - now;
3223 trace_migration_rate_limit_pre(ms);
3224 if (qemu_sem_timedwait(&s->rate_limit_sem, ms) == 0) {
3225 /*
3226 * We were woken by one or more urgent things but
3227 * the timedwait will have consumed one of them.
3228 * The service routine for the urgent wake will dec
3229 * the semaphore itself for each item it consumes,
3230 * so add this one we just eat back.
3231 */
3232 qemu_sem_post(&s->rate_limit_sem);
3233 urgent = true;
3234 }
3235 trace_migration_rate_limit_post(urgent);
3236 }
3237 return urgent;
3238}
3239
fde93d99
LV
3240/*
3241 * if failover devices are present, wait they are completely
3242 * unplugged
3243 */
3244
3245static void qemu_savevm_wait_unplug(MigrationState *s, int old_state,
3246 int new_state)
3247{
3248 if (qemu_savevm_state_guest_unplug_pending()) {
3249 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_WAIT_UNPLUG);
3250
3251 while (s->state == MIGRATION_STATUS_WAIT_UNPLUG &&
3252 qemu_savevm_state_guest_unplug_pending()) {
3253 qemu_sem_timedwait(&s->wait_unplug_sem, 250);
3254 }
944bc528
LV
3255 if (s->state != MIGRATION_STATUS_WAIT_UNPLUG) {
3256 int timeout = 120; /* 30 seconds */
3257 /*
3258 * migration has been canceled
3259 * but as we have started an unplug we must wait the end
3260 * to be able to plug back the card
3261 */
3262 while (timeout-- && qemu_savevm_state_guest_unplug_pending()) {
3263 qemu_sem_timedwait(&s->wait_unplug_sem, 250);
3264 }
1b529d90
LV
3265 if (qemu_savevm_state_guest_unplug_pending() &&
3266 !qtest_enabled()) {
a51dcef0
LV
3267 warn_report("migration: partially unplugged device on "
3268 "failure");
3269 }
944bc528 3270 }
fde93d99
LV
3271
3272 migrate_set_state(&s->state, MIGRATION_STATUS_WAIT_UNPLUG, new_state);
3273 } else {
3274 migrate_set_state(&s->state, old_state, new_state);
3275 }
3276}
3277
70b20477
DDAG
3278/*
3279 * Master migration thread on the source VM.
3280 * It drives the migration and pumps the data down the outgoing channel.
3281 */
5f496a1b 3282static void *migration_thread(void *opaque)
0d82d0e8 3283{
9848a404 3284 MigrationState *s = opaque;
1b1f4ab6 3285 MigrationThread *thread = NULL;
bc72ad67 3286 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
b23c2ade 3287 MigThrError thr_error;
ad767bed 3288 bool urgent = false;
76f5933a 3289
788fa680 3290 thread = migration_threads_add("live_migration", qemu_get_thread_id());
1b1f4ab6 3291
ab28bd23
PB
3292 rcu_register_thread();
3293
892ae715 3294 object_ref(OBJECT(s));
87f3bd87 3295 update_iteration_initial_status(s);
b15df1ae 3296
195801d7 3297 bql_lock();
89a02a9f 3298 qemu_savevm_state_header(s->to_dst_file);
195801d7 3299 bql_unlock();
1d34e4bf 3300
62a02658
PX
3301 /*
3302 * If we opened the return path, we need to make sure dst has it
3303 * opened as well.
3304 */
43044ac0 3305 if (s->rp_state.rp_thread_created) {
1d34e4bf 3306 /* Now tell the dest that it should open its end so it can reply */
89a02a9f 3307 qemu_savevm_send_open_return_path(s->to_dst_file);
1d34e4bf
DDAG
3308
3309 /* And do a ping that will make stuff easier to debug */
89a02a9f 3310 qemu_savevm_send_ping(s->to_dst_file, 1);
0425dc97 3311 }
1d34e4bf 3312
58110f0a 3313 if (migrate_postcopy()) {
1d34e4bf
DDAG
3314 /*
3315 * Tell the destination that we *might* want to do postcopy later;
3316 * if the other end can't do postcopy it should fail now, nice and
3317 * early.
3318 */
89a02a9f 3319 qemu_savevm_send_postcopy_advise(s->to_dst_file);
1d34e4bf
DDAG
3320 }
3321
5e804644 3322 if (migrate_colo()) {
aad555c2
ZC
3323 /* Notify migration destination that we enable COLO */
3324 qemu_savevm_send_colo_enable(s->to_dst_file);
3325 }
3326
195801d7 3327 bql_lock();
9907e842 3328 qemu_savevm_state_setup(s->to_dst_file);
195801d7 3329 bql_unlock();
0d82d0e8 3330
fde93d99
LV
3331 qemu_savevm_wait_unplug(s, MIGRATION_STATUS_SETUP,
3332 MIGRATION_STATUS_ACTIVE);
c7e0acd5 3333
bc72ad67 3334 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
29ae8a41 3335
9ec055ae
DDAG
3336 trace_migration_thread_setup_complete();
3337
8f8d528e 3338 while (migration_is_active(s)) {
e1fde0e0 3339 if (urgent || !migration_rate_exceeded(s->to_dst_file)) {
2ad87305
PX
3340 MigIterateState iter_state = migration_iteration_run(s);
3341 if (iter_state == MIG_ITERATE_SKIP) {
3342 continue;
3343 } else if (iter_state == MIG_ITERATE_BREAK) {
09f6c85e 3344 break;
c369f40d
JQ
3345 }
3346 }
f4410a5d 3347
b23c2ade
PX
3348 /*
3349 * Try to detect any kind of failures, and see whether we
3350 * should stop the migration now.
3351 */
3352 thr_error = migration_detect_error(s);
3353 if (thr_error == MIG_THR_ERR_FATAL) {
3354 /* Stop migration */
fd45ee2c 3355 break;
b23c2ade
PX
3356 } else if (thr_error == MIG_THR_ERR_RECOVERED) {
3357 /*
3358 * Just recovered from a e.g. network failure, reset all
3359 * the local variables. This is important to avoid
3360 * breaking transferred_bytes and bandwidth calculation
3361 */
87f3bd87 3362 update_iteration_initial_status(s);
fd45ee2c 3363 }
b15df1ae 3364
97e1e067 3365 urgent = migration_rate_limit();
a3fa1d78
PB
3366 }
3367
1d34e4bf 3368 trace_migration_thread_after_loop();
199aa6d4 3369 migration_iteration_finish(s);
892ae715 3370 object_unref(OBJECT(s));
ab28bd23 3371 rcu_unregister_thread();
788fa680 3372 migration_threads_remove(thread);
0d82d0e8
JQ
3373 return NULL;
3374}
3375
8518278a
AG
3376static void bg_migration_vm_start_bh(void *opaque)
3377{
3378 MigrationState *s = opaque;
3379
3380 qemu_bh_delete(s->vm_start_bh);
3381 s->vm_start_bh = NULL;
3382
49a50206 3383 vm_resume(s->vm_old_state);
e22ffad0 3384 migration_downtime_end(s);
59094cfa 3385 object_unref(OBJECT(s));
8518278a
AG
3386}
3387
3388/**
3389 * Background snapshot thread, based on live migration code.
3390 * This is an alternative implementation of live migration mechanism
3391 * introduced specifically to support background snapshots.
3392 *
3393 * It takes advantage of userfault_fd write protection mechanism introduced
3394 * in v5.7 kernel. Compared to existing dirty page logging migration much
3395 * lesser stream traffic is produced resulting in smaller snapshot images,
3396 * simply cause of no page duplicates can get into the stream.
3397 *
3398 * Another key point is that generated vmstate stream reflects machine state
3399 * 'frozen' at the beginning of snapshot creation compared to dirty page logging
3400 * mechanism, which effectively results in that saved snapshot is the state of VM
3401 * at the end of the process.
3402 */
3403static void *bg_migration_thread(void *opaque)
3404{
3405 MigrationState *s = opaque;
3406 int64_t setup_start;
3407 MigThrError thr_error;
3408 QEMUFile *fb;
3409 bool early_fail = true;
3410
3411 rcu_register_thread();
3412 object_ref(OBJECT(s));
3413
e1fde0e0 3414 migration_rate_set(RATE_LIMIT_DISABLED);
8518278a
AG
3415
3416 setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
3417 /*
3418 * We want to save vmstate for the moment when migration has been
3419 * initiated but also we want to save RAM content while VM is running.
3420 * The RAM content should appear first in the vmstate. So, we first
3421 * stash the non-RAM part of the vmstate to the temporary buffer,
3422 * then write RAM part of the vmstate to the migration stream
3423 * with vCPUs running and, finally, write stashed non-RAM part of
3424 * the vmstate from the buffer to the migration stream.
3425 */
ecb23efe 3426 s->bioc = qio_channel_buffer_new(512 * 1024);
8518278a 3427 qio_channel_set_name(QIO_CHANNEL(s->bioc), "vmstate-buffer");
77ef2dc1 3428 fb = qemu_file_new_output(QIO_CHANNEL(s->bioc));
8518278a
AG
3429 object_unref(OBJECT(s->bioc));
3430
3431 update_iteration_initial_status(s);
3432
eeccb99c
AG
3433 /*
3434 * Prepare for tracking memory writes with UFFD-WP - populate
3435 * RAM pages before protecting.
3436 */
3437#ifdef __linux__
3438 ram_write_tracking_prepare();
3439#endif
3440
195801d7 3441 bql_lock();
8518278a
AG
3442 qemu_savevm_state_header(s->to_dst_file);
3443 qemu_savevm_state_setup(s->to_dst_file);
195801d7 3444 bql_unlock();
8518278a 3445
fde93d99
LV
3446 qemu_savevm_wait_unplug(s, MIGRATION_STATUS_SETUP,
3447 MIGRATION_STATUS_ACTIVE);
8518278a 3448
8518278a
AG
3449 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
3450
3451 trace_migration_thread_setup_complete();
e22ffad0 3452 migration_downtime_start(s);
8518278a 3453
195801d7 3454 bql_lock();
8518278a 3455
f4584076 3456 s->vm_old_state = runstate_get();
8518278a 3457
c33f1829 3458 global_state_store();
8518278a 3459 /* Forcibly stop VM before saving state of vCPUs and devices */
93bdf888 3460 if (migration_stop_vm(RUN_STATE_PAUSED)) {
8518278a
AG
3461 goto fail;
3462 }
3463 /*
3464 * Put vCPUs in sync with shadow context structures, then
3465 * save their state to channel-buffer along with devices.
3466 */
3467 cpu_synchronize_all_states();
3468 if (qemu_savevm_state_complete_precopy_non_iterable(fb, false, false)) {
3469 goto fail;
3470 }
ecb23efe
AG
3471 /*
3472 * Since we are going to get non-iterable state data directly
3473 * from s->bioc->data, explicit flush is needed here.
3474 */
3475 qemu_fflush(fb);
3476
8518278a
AG
3477 /* Now initialize UFFD context and start tracking RAM writes */
3478 if (ram_write_tracking_start()) {
3479 goto fail;
3480 }
3481 early_fail = false;
3482
3483 /*
3484 * Start VM from BH handler to avoid write-fault lock here.
3485 * UFFD-WP protection for the whole RAM is already enabled so
3486 * calling VM state change notifiers from vm_start() would initiate
3487 * writes to virtio VQs memory which is in write-protected region.
3488 */
3489 s->vm_start_bh = qemu_bh_new(bg_migration_vm_start_bh, s);
59094cfa 3490 object_ref(OBJECT(s));
8518278a
AG
3491 qemu_bh_schedule(s->vm_start_bh);
3492
195801d7 3493 bql_unlock();
8518278a
AG
3494
3495 while (migration_is_active(s)) {
3496 MigIterateState iter_state = bg_migration_iteration_run(s);
3497 if (iter_state == MIG_ITERATE_SKIP) {
3498 continue;
3499 } else if (iter_state == MIG_ITERATE_BREAK) {
3500 break;
3501 }
3502
3503 /*
3504 * Try to detect any kind of failures, and see whether we
3505 * should stop the migration now.
3506 */
3507 thr_error = migration_detect_error(s);
3508 if (thr_error == MIG_THR_ERR_FATAL) {
3509 /* Stop migration */
3510 break;
3511 }
3512
3513 migration_update_counters(s, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
3514 }
3515
3516 trace_migration_thread_after_loop();
3517
3518fail:
3519 if (early_fail) {
3520 migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE,
3521 MIGRATION_STATUS_FAILED);
195801d7 3522 bql_unlock();
8518278a
AG
3523 }
3524
3525 bg_migration_iteration_finish(s);
3526
3527 qemu_fclose(fb);
3528 object_unref(OBJECT(s));
3529 rcu_unregister_thread();
3530
3531 return NULL;
3532}
3533
cce8040b 3534void migrate_fd_connect(MigrationState *s, Error *error_in)
0d82d0e8 3535{
00f4b572 3536 Error *local_err = NULL;
52033349 3537 uint64_t rate_limit;
d3e35b8f
PX
3538 bool resume = s->state == MIGRATION_STATUS_POSTCOPY_PAUSED;
3539
ca7bd082
PX
3540 /*
3541 * If there's a previous error, free it and prepare for another one.
3542 * Meanwhile if migration completes successfully, there won't have an error
3543 * dumped when calling migrate_fd_cleanup().
3544 */
3545 migrate_error_free(s);
3546
f5da8ba4 3547 s->expected_downtime = migrate_downtime_limit();
9cbc3649
MAL
3548 if (resume) {
3549 assert(s->cleanup_bh);
3550 } else {
3551 assert(!s->cleanup_bh);
3552 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup_bh, s);
3553 }
cce8040b
DDAG
3554 if (error_in) {
3555 migrate_fd_error(s, error_in);
ca30f24d
PX
3556 if (resume) {
3557 /*
3558 * Don't do cleanup for resume if channel is invalid, but only dump
3559 * the error. We wait for another channel connect from the user.
3560 * The error_report still gives HMP user a hint on what failed.
3561 * It's normally done in migrate_fd_cleanup(), but call it here
3562 * explicitly.
3563 */
3564 error_report_err(error_copy(s->error));
3565 } else {
3566 migrate_fd_cleanup(s);
3567 }
cce8040b
DDAG
3568 return;
3569 }
0d82d0e8 3570
d3e35b8f
PX
3571 if (resume) {
3572 /* This is a resumed migration */
9d3ebbe2 3573 rate_limit = migrate_max_postcopy_bandwidth();
d3e35b8f
PX
3574 } else {
3575 /* This is a fresh new migration */
9d3ebbe2 3576 rate_limit = migrate_max_bandwidth();
442773ce 3577
d3e35b8f 3578 /* Notify before starting migration thread */
d9cda213 3579 migration_call_notifiers(s);
d3e35b8f
PX
3580 }
3581
e1fde0e0 3582 migration_rate_set(rate_limit);
d3e35b8f 3583 qemu_file_set_blocking(s->to_dst_file, true);
9287ac27 3584
1d34e4bf 3585 /*
c788ada8
PX
3586 * Open the return path. For postcopy, it is used exclusively. For
3587 * precopy, only if user specified "return-path" capability would
3588 * QEMU uses the return path.
1d34e4bf 3589 */
38ad1110 3590 if (migrate_postcopy_ram() || migrate_return_path()) {
ef796ee9 3591 if (open_return_path_on_source(s)) {
908927db 3592 error_setg(&local_err, "Unable to open return-path for postcopy");
d3e35b8f 3593 migrate_set_state(&s->state, s->state, MIGRATION_STATUS_FAILED);
908927db
TG
3594 migrate_set_error(s, local_err);
3595 error_report_err(local_err);
1d34e4bf
DDAG
3596 migrate_fd_cleanup(s);
3597 return;
3598 }
3599 }
3600
06064a67
PX
3601 /*
3602 * This needs to be done before resuming a postcopy. Note: for newer
3603 * QEMUs we will delay the channel creation until postcopy_start(), to
3604 * avoid disorder of channel creations.
3605 */
3606 if (migrate_postcopy_preempt() && s->preempt_pre_7_2) {
3607 postcopy_preempt_setup(s);
3608 }
3609
d3e35b8f 3610 if (resume) {
135b87b4
PX
3611 /* Wakeup the main migration thread to do the recovery */
3612 migrate_set_state(&s->state, MIGRATION_STATUS_POSTCOPY_PAUSED,
3613 MIGRATION_STATUS_POSTCOPY_RECOVER);
3614 qemu_sem_post(&s->postcopy_pause_sem);
d3e35b8f
PX
3615 return;
3616 }
3617
00f4b572 3618 if (multifd_save_setup(&local_err) != 0) {
908927db 3619 migrate_set_error(s, local_err);
00f4b572 3620 error_report_err(local_err);
f986c3d2
JQ
3621 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
3622 MIGRATION_STATUS_FAILED);
3623 migrate_fd_cleanup(s);
3624 return;
3625 }
8518278a
AG
3626
3627 if (migrate_background_snapshot()) {
3628 qemu_thread_create(&s->thread, "bg_snapshot",
3629 bg_migration_thread, s, QEMU_THREAD_JOINABLE);
3630 } else {
3631 qemu_thread_create(&s->thread, "live_migration",
3632 migration_thread, s, QEMU_THREAD_JOINABLE);
3633 }
1d34e4bf 3634 s->migration_thread_running = true;
0d82d0e8 3635}
093e3c42 3636
e5cb7e76
PX
3637static void migration_class_init(ObjectClass *klass, void *data)
3638{
3639 DeviceClass *dc = DEVICE_CLASS(klass);
3640
3641 dc->user_creatable = false;
4f67d30b 3642 device_class_set_props(dc, migration_properties);
e5cb7e76
PX
3643}
3644
b91bf5e4
MAL
3645static void migration_instance_finalize(Object *obj)
3646{
3647 MigrationState *ms = MIGRATION_OBJ(obj);
b91bf5e4 3648
87db1a7d 3649 qemu_mutex_destroy(&ms->error_mutex);
62df066f 3650 qemu_mutex_destroy(&ms->qemu_file_lock);
c7e0acd5 3651 qemu_sem_destroy(&ms->wait_unplug_sem);
ad767bed 3652 qemu_sem_destroy(&ms->rate_limit_sem);
e91d8951 3653 qemu_sem_destroy(&ms->pause_sem);
b23c2ade 3654 qemu_sem_destroy(&ms->postcopy_pause_sem);
edd090c7 3655 qemu_sem_destroy(&ms->rp_state.rp_sem);
b28fb582 3656 qemu_sem_destroy(&ms->rp_state.rp_pong_acks);
d0edb8a1 3657 qemu_sem_destroy(&ms->postcopy_qemufile_src_sem);
ab105cc1 3658 error_free(ms->error);
b91bf5e4
MAL
3659}
3660
e5cb7e76
PX
3661static void migration_instance_init(Object *obj)
3662{
3663 MigrationState *ms = MIGRATION_OBJ(obj);
3664
3665 ms->state = MIGRATION_STATUS_NONE;
e5cb7e76 3666 ms->mbps = -1;
aecbfe9c 3667 ms->pages_per_second = -1;
e91d8951 3668 qemu_sem_init(&ms->pause_sem, 0);
87db1a7d 3669 qemu_mutex_init(&ms->error_mutex);
8b0b29dc 3670
61a174e2 3671 migrate_params_init(&ms->parameters);
b23c2ade
PX
3672
3673 qemu_sem_init(&ms->postcopy_pause_sem, 0);
edd090c7 3674 qemu_sem_init(&ms->rp_state.rp_sem, 0);
b28fb582 3675 qemu_sem_init(&ms->rp_state.rp_pong_acks, 0);
ad767bed 3676 qemu_sem_init(&ms->rate_limit_sem, 0);
c7e0acd5 3677 qemu_sem_init(&ms->wait_unplug_sem, 0);
d0edb8a1 3678 qemu_sem_init(&ms->postcopy_qemufile_src_sem, 0);
62df066f 3679 qemu_mutex_init(&ms->qemu_file_lock);
8b0b29dc
PX
3680}
3681
3682/*
3683 * Return true if check pass, false otherwise. Error will be put
3684 * inside errp if provided.
3685 */
3686static bool migration_object_check(MigrationState *ms, Error **errp)
3687{
6b19a7d9 3688 /* Assuming all off */
b02c7fc9 3689 bool old_caps[MIGRATION_CAPABILITY__MAX] = { 0 };
6b19a7d9 3690
8b0b29dc
PX
3691 if (!migrate_params_check(&ms->parameters, errp)) {
3692 return false;
3693 }
3694
b02c7fc9 3695 return migrate_caps_check(old_caps, ms->capabilities, errp);
e5cb7e76
PX
3696}
3697
3698static const TypeInfo migration_type = {
3699 .name = TYPE_MIGRATION,
01f6e14c 3700 /*
c8d3ff38 3701 * NOTE: TYPE_MIGRATION is not really a device, as the object is
2194abd6 3702 * not created using qdev_new(), it is not attached to the qdev
c8d3ff38
PX
3703 * device tree, and it is never realized.
3704 *
3705 * TODO: Make this TYPE_OBJECT once QOM provides something like
3706 * TYPE_DEVICE's "-global" properties.
01f6e14c 3707 */
e5cb7e76
PX
3708 .parent = TYPE_DEVICE,
3709 .class_init = migration_class_init,
3710 .class_size = sizeof(MigrationClass),
3711 .instance_size = sizeof(MigrationState),
3712 .instance_init = migration_instance_init,
b91bf5e4 3713 .instance_finalize = migration_instance_finalize,
e5cb7e76
PX
3714};
3715
3716static void register_migration_types(void)
3717{
3718 type_register_static(&migration_type);
3719}
3720
3721type_init(register_migration_types);