]> git.proxmox.com Git - mirror_qemu.git/blame - migration/migration.c
migration: Fix compilation with older compilers
[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"
6a1751b7 19#include "qemu/main-loop.h"
795c40b8 20#include "migration/blocker.h"
f4dbe1bf 21#include "exec.h"
7fcac4a2 22#include "fd.h"
61e8b148 23#include "socket.h"
e1a3ecee 24#include "rdma.h"
7b1e1a22 25#include "ram.h"
84a899de 26#include "migration/global_state.h"
c4b63b7c 27#include "migration/misc.h"
6666c96a 28#include "migration.h"
20a519a0 29#include "savevm.h"
40014d81 30#include "qemu-file-channel.h"
08a0aee1 31#include "qemu-file.h"
987772d9 32#include "migration/vmstate.h"
9c17d615 33#include "sysemu/sysemu.h"
737e150e 34#include "block/block.h"
cc7a8ea7 35#include "qapi/qmp/qerror.h"
6c595cde 36#include "qapi/util.h"
1de7afc9 37#include "qemu/sockets.h"
ab28bd23 38#include "qemu/rcu.h"
2c9e6fec 39#include "block.h"
be07b0ac 40#include "postcopy-ram.h"
766bd176 41#include "qemu/thread.h"
791e7c82 42#include "qmp-commands.h"
c09e5bb1 43#include "trace.h"
598cd2bd 44#include "qapi-event.h"
070afca2 45#include "qom/cpu.h"
6c595cde
DDAG
46#include "exec/memory.h"
47#include "exec/address-spaces.h"
51180423 48#include "exec/target_page.h"
61b67d47 49#include "io/channel-buffer.h"
35a6ed4f 50#include "migration/colo.h"
065e2813 51
dc325627 52#define MAX_THROTTLE (32 << 20) /* Migration transfer speed throttling */
5bb7910a 53
5b4e1eb7
JQ
54/* Amount of time to allocate to each "chunk" of bandwidth-throttled
55 * data. */
56#define BUFFER_DELAY 100
57#define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)
58
2ff30257
AA
59/* Time in milliseconds we are allowed to stop the source,
60 * for sending the last part */
61#define DEFAULT_MIGRATE_SET_DOWNTIME 300
62
87c9cc1c
DHB
63/* Maximum migrate downtime set to 2000 seconds */
64#define MAX_MIGRATE_DOWNTIME_SECONDS 2000
65#define MAX_MIGRATE_DOWNTIME (MAX_MIGRATE_DOWNTIME_SECONDS * 1000)
66
8706d2d5
LL
67/* Default compression thread count */
68#define DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT 8
3fcb38c2
LL
69/* Default decompression thread count, usually decompression is at
70 * least 4 times as fast as compression.*/
71#define DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT 2
8706d2d5
LL
72/*0: means nocompress, 1: best speed, ... 9: best compress ratio */
73#define DEFAULT_MIGRATE_COMPRESS_LEVEL 1
1626fee3 74/* Define default autoconverge cpu throttle migration parameters */
d85a31d1
JH
75#define DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL 20
76#define DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT 10
8706d2d5 77
17ad9b35
OW
78/* Migration XBZRLE default cache size */
79#define DEFAULT_MIGRATE_CACHE_SIZE (64 * 1024 * 1024)
80
68b53591
HZ
81/* The delay time (in ms) between two COLO checkpoints
82 * Note: Please change this default value to 10000 when we support hybrid mode.
83 */
84#define DEFAULT_MIGRATE_X_CHECKPOINT_DELAY 200
85
99a0db9b
GH
86static NotifierList migration_state_notifiers =
87 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
88
adde220a
DDAG
89static bool deferred_incoming;
90
da6f1790
JQ
91/* Messages sent on the return path from destination to source */
92enum mig_rp_message_type {
93 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
94 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
95 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
96
97 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
98 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
99
100 MIG_RP_MSG_MAX
101};
102
17549e84
JQ
103/* When we add fault tolerance, we could have several
104 migrations at once. For now we don't need to add
105 dynamic creation of migration */
106
bca7856a 107/* For outgoing */
859bc756 108MigrationState *migrate_get_current(void)
17549e84 109{
6c595cde 110 static bool once;
17549e84 111 static MigrationState current_migration = {
31194731 112 .state = MIGRATION_STATUS_NONE,
17ad9b35 113 .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE,
7e114f8c 114 .mbps = -1,
2594f56d
DB
115 .parameters = {
116 .compress_level = DEFAULT_MIGRATE_COMPRESS_LEVEL,
117 .compress_threads = DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT,
118 .decompress_threads = DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT,
119 .cpu_throttle_initial = DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL,
120 .cpu_throttle_increment = DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT,
2ff30257
AA
121 .max_bandwidth = MAX_THROTTLE,
122 .downtime_limit = DEFAULT_MIGRATE_SET_DOWNTIME,
68b53591 123 .x_checkpoint_delay = DEFAULT_MIGRATE_X_CHECKPOINT_DELAY,
2594f56d 124 },
17549e84
JQ
125 };
126
6c595cde 127 if (!once) {
4af245dc
DB
128 current_migration.parameters.tls_creds = g_strdup("");
129 current_migration.parameters.tls_hostname = g_strdup("");
6c595cde
DDAG
130 once = true;
131 }
17549e84
JQ
132 return &current_migration;
133}
134
bca7856a
DDAG
135MigrationIncomingState *migration_incoming_get_current(void)
136{
b4b076da
JQ
137 static bool once;
138 static MigrationIncomingState mis_current;
bca7856a 139
b4b076da
JQ
140 if (!once) {
141 mis_current.state = MIGRATION_STATUS_NONE;
142 memset(&mis_current, 0, sizeof(MigrationIncomingState));
b4b076da
JQ
143 qemu_mutex_init(&mis_current.rp_mutex);
144 qemu_event_init(&mis_current.main_thread_load_event, false);
145 once = true;
146 }
147 return &mis_current;
bca7856a
DDAG
148}
149
150void migration_incoming_state_destroy(void)
151{
b4b076da
JQ
152 struct MigrationIncomingState *mis = migration_incoming_get_current();
153
3482655b 154 if (mis->to_src_file) {
660819b1
PX
155 /* Tell source that we are done */
156 migrate_send_rp_shut(mis, qemu_file_get_error(mis->from_src_file) != 0);
3482655b
PX
157 qemu_fclose(mis->to_src_file);
158 mis->to_src_file = NULL;
159 }
160
660819b1
PX
161 if (mis->from_src_file) {
162 qemu_fclose(mis->from_src_file);
163 mis->from_src_file = NULL;
164 }
165
b4b076da 166 qemu_event_destroy(&mis->main_thread_load_event);
bca7856a
DDAG
167}
168
b05dc723
JQ
169static void migrate_generate_event(int new_state)
170{
171 if (migrate_use_events()) {
172 qapi_event_send_migration(new_state, &error_abort);
b05dc723
JQ
173 }
174}
175
adde220a
DDAG
176/*
177 * Called on -incoming with a defer: uri.
178 * The migration can be started later after any parameters have been
179 * changed.
180 */
181static void deferred_incoming_migration(Error **errp)
182{
183 if (deferred_incoming) {
184 error_setg(errp, "Incoming migration already deferred");
185 }
186 deferred_incoming = true;
187}
188
da6f1790
JQ
189/*
190 * Send a message on the return channel back to the source
191 * of the migration.
192 */
193static void migrate_send_rp_message(MigrationIncomingState *mis,
194 enum mig_rp_message_type message_type,
195 uint16_t len, void *data)
196{
197 trace_migrate_send_rp_message((int)message_type, len);
198 qemu_mutex_lock(&mis->rp_mutex);
199 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
200 qemu_put_be16(mis->to_src_file, len);
201 qemu_put_buffer(mis->to_src_file, data, len);
202 qemu_fflush(mis->to_src_file);
203 qemu_mutex_unlock(&mis->rp_mutex);
204}
205
1e2d90eb
DDAG
206/* Request a range of pages from the source VM at the given
207 * start address.
208 * rbname: Name of the RAMBlock to request the page in, if NULL it's the same
209 * as the last request (a name must have been given previously)
210 * Start: Address offset within the RB
211 * Len: Length in bytes required - must be a multiple of pagesize
212 */
213void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char *rbname,
214 ram_addr_t start, size_t len)
215{
cb8d4c8f 216 uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
1e2d90eb
DDAG
217 size_t msglen = 12; /* start + len */
218
219 *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
220 *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
221
222 if (rbname) {
223 int rbname_len = strlen(rbname);
224 assert(rbname_len < 256);
225
226 bufc[msglen++] = rbname_len;
227 memcpy(bufc + msglen, rbname, rbname_len);
228 msglen += rbname_len;
229 migrate_send_rp_message(mis, MIG_RP_MSG_REQ_PAGES_ID, msglen, bufc);
230 } else {
231 migrate_send_rp_message(mis, MIG_RP_MSG_REQ_PAGES, msglen, bufc);
232 }
233}
234
43eaae28 235void qemu_start_incoming_migration(const char *uri, Error **errp)
5bb7910a 236{
34c9dd8e
AL
237 const char *p;
238
7cf1fe6d 239 qapi_event_send_migration(MIGRATION_STATUS_SETUP, &error_abort);
adde220a
DDAG
240 if (!strcmp(uri, "defer")) {
241 deferred_incoming_migration(errp);
242 } else if (strstart(uri, "tcp:", &p)) {
43eaae28 243 tcp_start_incoming_migration(p, errp);
2da776db 244#ifdef CONFIG_RDMA
adde220a 245 } else if (strstart(uri, "rdma:", &p)) {
2da776db
MH
246 rdma_start_incoming_migration(p, errp);
247#endif
adde220a 248 } else if (strstart(uri, "exec:", &p)) {
43eaae28 249 exec_start_incoming_migration(p, errp);
adde220a 250 } else if (strstart(uri, "unix:", &p)) {
43eaae28 251 unix_start_incoming_migration(p, errp);
adde220a 252 } else if (strstart(uri, "fd:", &p)) {
43eaae28 253 fd_start_incoming_migration(p, errp);
adde220a 254 } else {
312fd5f2 255 error_setg(errp, "unknown migration protocol: %s", uri);
8ca5e801 256 }
5bb7910a
AL
257}
258
0aa6aefc
DL
259static void process_incoming_migration_bh(void *opaque)
260{
261 Error *local_err = NULL;
262 MigrationIncomingState *mis = opaque;
263
ace21a58
KW
264 /* Make sure all file formats flush their mutable metadata.
265 * If we get an error here, just don't restart the VM yet. */
0aa6aefc 266 bdrv_invalidate_cache_all(&local_err);
d35ff5e6 267 if (local_err) {
ace21a58 268 error_report_err(local_err);
d35ff5e6
KW
269 local_err = NULL;
270 autostart = false;
271 }
272
0aa6aefc
DL
273 /*
274 * This must happen after all error conditions are dealt with and
275 * we're sure the VM is going to be running on this host.
276 */
277 qemu_announce_self();
278
279 /* If global state section was not received or we are in running
280 state, we need to obey autostart. Any other state is set with
281 runstate_set. */
282
283 if (!global_state_received() ||
284 global_state_get_runstate() == RUN_STATE_RUNNING) {
285 if (autostart) {
286 vm_start();
287 } else {
288 runstate_set(RUN_STATE_PAUSED);
289 }
290 } else {
291 runstate_set(global_state_get_runstate());
292 }
293 migrate_decompress_threads_join();
294 /*
295 * This must happen after any state changes since as soon as an external
296 * observer sees this event they might start to prod at the VM assuming
297 * it's ready to use.
298 */
299 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
300 MIGRATION_STATUS_COMPLETED);
301 qemu_bh_delete(mis->bh);
302 migration_incoming_state_destroy();
303}
304
82a4da79 305static void process_incoming_migration_co(void *opaque)
511c0231 306{
82a4da79 307 QEMUFile *f = opaque;
b4b076da 308 MigrationIncomingState *mis = migration_incoming_get_current();
e9bef235 309 PostcopyState ps;
1c12e1f5
PB
310 int ret;
311
b4b076da 312 mis->from_src_file = f;
67f11b5c 313 mis->largest_page_size = qemu_ram_pagesize_largest();
093e3c42 314 postcopy_state_set(POSTCOPY_INCOMING_NONE);
93d7af6f
HZ
315 migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
316 MIGRATION_STATUS_ACTIVE);
1c12e1f5 317 ret = qemu_loadvm_state(f);
bca7856a 318
e9bef235
DDAG
319 ps = postcopy_state_get();
320 trace_process_incoming_migration_co_end(ret, ps);
321 if (ps != POSTCOPY_INCOMING_NONE) {
322 if (ps == POSTCOPY_INCOMING_ADVISE) {
323 /*
324 * Where a migration had postcopy enabled (and thus went to advise)
325 * but managed to complete within the precopy period, we can use
326 * the normal exit.
327 */
328 postcopy_ram_incoming_cleanup(mis);
329 } else if (ret >= 0) {
330 /*
331 * Postcopy was started, cleanup should happen at the end of the
332 * postcopy thread.
333 */
334 trace_process_incoming_migration_co_postcopy_end_main();
335 return;
336 }
337 /* Else if something went wrong then just fall out of the normal exit */
338 }
339
25d0c16f
HZ
340 /* we get COLO info, and know if we are in COLO mode */
341 if (!ret && migration_incoming_enable_colo()) {
342 mis->migration_incoming_co = qemu_coroutine_self();
343 qemu_thread_create(&mis->colo_incoming_thread, "COLO incoming",
344 colo_process_incoming_thread, mis, QEMU_THREAD_JOINABLE);
345 mis->have_colo_incoming_thread = true;
346 qemu_coroutine_yield();
347
348 /* Wait checkpoint incoming thread exit before free resource */
349 qemu_thread_join(&mis->colo_incoming_thread);
350 }
351
1c12e1f5 352 if (ret < 0) {
93d7af6f
HZ
353 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
354 MIGRATION_STATUS_FAILED);
db80face 355 error_report("load of migration failed: %s", strerror(-ret));
3fcb38c2 356 migrate_decompress_threads_join();
4aead692 357 exit(EXIT_FAILURE);
511c0231 358 }
511c0231 359
e8199e48
LV
360 free_xbzrle_decoded_buf();
361
0aa6aefc
DL
362 mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
363 qemu_bh_schedule(mis->bh);
511c0231
JQ
364}
365
22724f49 366void migration_fd_process_incoming(QEMUFile *f)
82a4da79 367{
0b8b8753 368 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, f);
82a4da79 369
3fcb38c2 370 migrate_decompress_threads_create();
06ad5135 371 qemu_file_set_blocking(f, false);
0b8b8753 372 qemu_coroutine_enter(co);
82a4da79
PB
373}
374
6decec93
DDAG
375/*
376 * Send a 'SHUT' message on the return channel with the given value
377 * to indicate that we've finished with the RP. Non-0 value indicates
378 * error.
379 */
380void migrate_send_rp_shut(MigrationIncomingState *mis,
381 uint32_t value)
382{
383 uint32_t buf;
384
385 buf = cpu_to_be32(value);
386 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
387}
388
389/*
390 * Send a 'PONG' message on the return channel with the given value
391 * (normally in response to a 'PING')
392 */
393void migrate_send_rp_pong(MigrationIncomingState *mis,
394 uint32_t value)
395{
396 uint32_t buf;
397
398 buf = cpu_to_be32(value);
399 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
400}
401
bbf6da32
OW
402MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
403{
404 MigrationCapabilityStatusList *head = NULL;
405 MigrationCapabilityStatusList *caps;
406 MigrationState *s = migrate_get_current();
407 int i;
408
387eedeb 409 caps = NULL; /* silence compiler warning */
7fb1cf16 410 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
ed1701c6
DDAG
411#ifndef CONFIG_LIVE_BLOCK_MIGRATION
412 if (i == MIGRATION_CAPABILITY_BLOCK) {
413 continue;
414 }
415#endif
35a6ed4f
HZ
416 if (i == MIGRATION_CAPABILITY_X_COLO && !colo_supported()) {
417 continue;
418 }
bbf6da32
OW
419 if (head == NULL) {
420 head = g_malloc0(sizeof(*caps));
421 caps = head;
422 } else {
423 caps->next = g_malloc0(sizeof(*caps));
424 caps = caps->next;
425 }
426 caps->value =
427 g_malloc(sizeof(*caps->value));
428 caps->value->capability = i;
429 caps->value->state = s->enabled_capabilities[i];
430 }
431
432 return head;
433}
434
85de8323
LL
435MigrationParameters *qmp_query_migrate_parameters(Error **errp)
436{
437 MigrationParameters *params;
438 MigrationState *s = migrate_get_current();
439
440 params = g_malloc0(sizeof(*params));
de63ab61 441 params->has_compress_level = true;
2594f56d 442 params->compress_level = s->parameters.compress_level;
de63ab61 443 params->has_compress_threads = true;
2594f56d 444 params->compress_threads = s->parameters.compress_threads;
de63ab61 445 params->has_decompress_threads = true;
2594f56d 446 params->decompress_threads = s->parameters.decompress_threads;
de63ab61 447 params->has_cpu_throttle_initial = true;
2594f56d 448 params->cpu_throttle_initial = s->parameters.cpu_throttle_initial;
de63ab61 449 params->has_cpu_throttle_increment = true;
2594f56d 450 params->cpu_throttle_increment = s->parameters.cpu_throttle_increment;
de63ab61 451 params->has_tls_creds = !!s->parameters.tls_creds;
69ef1f36 452 params->tls_creds = g_strdup(s->parameters.tls_creds);
de63ab61 453 params->has_tls_hostname = !!s->parameters.tls_hostname;
69ef1f36 454 params->tls_hostname = g_strdup(s->parameters.tls_hostname);
2ff30257
AA
455 params->has_max_bandwidth = true;
456 params->max_bandwidth = s->parameters.max_bandwidth;
457 params->has_downtime_limit = true;
458 params->downtime_limit = s->parameters.downtime_limit;
fe39a4d4 459 params->has_x_checkpoint_delay = true;
68b53591 460 params->x_checkpoint_delay = s->parameters.x_checkpoint_delay;
2833c59b
JQ
461 params->has_block_incremental = true;
462 params->block_incremental = s->parameters.block_incremental;
85de8323
LL
463
464 return params;
465}
466
f6844b99
DDAG
467/*
468 * Return true if we're already in the middle of a migration
469 * (i.e. any of the active or setup states)
470 */
471static bool migration_is_setup_or_active(int state)
472{
473 switch (state) {
474 case MIGRATION_STATUS_ACTIVE:
9ec055ae 475 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
f6844b99
DDAG
476 case MIGRATION_STATUS_SETUP:
477 return true;
478
479 default:
480 return false;
481
482 }
483}
484
a22463a5
DDAG
485static void populate_ram_info(MigrationInfo *info, MigrationState *s)
486{
487 info->has_ram = true;
488 info->ram = g_malloc0(sizeof(*info->ram));
9360447d 489 info->ram->transferred = ram_counters.transferred;
a22463a5 490 info->ram->total = ram_bytes_total();
9360447d 491 info->ram->duplicate = ram_counters.duplicate;
bedf53c1
JQ
492 /* legacy value. It is not used anymore */
493 info->ram->skipped = 0;
9360447d
JQ
494 info->ram->normal = ram_counters.normal;
495 info->ram->normal_bytes = ram_counters.normal *
20afaed9 496 qemu_target_page_size();
a22463a5 497 info->ram->mbps = s->mbps;
9360447d
JQ
498 info->ram->dirty_sync_count = ram_counters.dirty_sync_count;
499 info->ram->postcopy_requests = ram_counters.postcopy_requests;
030ce1f8 500 info->ram->page_size = qemu_target_page_size();
a22463a5 501
114f5aee
JQ
502 if (migrate_use_xbzrle()) {
503 info->has_xbzrle_cache = true;
504 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
505 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
9360447d
JQ
506 info->xbzrle_cache->bytes = xbzrle_counters.bytes;
507 info->xbzrle_cache->pages = xbzrle_counters.pages;
508 info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss;
509 info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate;
510 info->xbzrle_cache->overflow = xbzrle_counters.overflow;
114f5aee
JQ
511 }
512
338182c8
JQ
513 if (cpu_throttle_active()) {
514 info->has_cpu_throttle_percentage = true;
515 info->cpu_throttle_percentage = cpu_throttle_get_percentage();
516 }
517
a22463a5
DDAG
518 if (s->state != MIGRATION_STATUS_COMPLETED) {
519 info->ram->remaining = ram_bytes_remaining();
9360447d 520 info->ram->dirty_pages_rate = ram_counters.dirty_pages_rate;
a22463a5
DDAG
521 }
522}
523
930ac04c
JQ
524static void populate_disk_info(MigrationInfo *info)
525{
526 if (blk_mig_active()) {
527 info->has_disk = true;
528 info->disk = g_malloc0(sizeof(*info->disk));
529 info->disk->transferred = blk_mig_bytes_transferred();
530 info->disk->remaining = blk_mig_bytes_remaining();
531 info->disk->total = blk_mig_bytes_total();
532 }
533}
534
791e7c82 535MigrationInfo *qmp_query_migrate(Error **errp)
5bb7910a 536{
791e7c82 537 MigrationInfo *info = g_malloc0(sizeof(*info));
17549e84
JQ
538 MigrationState *s = migrate_get_current();
539
540 switch (s->state) {
31194731 541 case MIGRATION_STATUS_NONE:
17549e84
JQ
542 /* no migration has happened ever */
543 break;
31194731 544 case MIGRATION_STATUS_SETUP:
29ae8a41 545 info->has_status = true;
ed4fbd10 546 info->has_total_time = false;
29ae8a41 547 break;
31194731
HZ
548 case MIGRATION_STATUS_ACTIVE:
549 case MIGRATION_STATUS_CANCELLING:
9ec055ae 550 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
c8f9f4f4 551 /* TODO add some postcopy stats */
9ec055ae
DDAG
552 info->has_status = true;
553 info->has_total_time = true;
554 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
555 - s->total_time;
556 info->has_expected_downtime = true;
557 info->expected_downtime = s->expected_downtime;
558 info->has_setup_time = true;
559 info->setup_time = s->setup_time;
560
a22463a5 561 populate_ram_info(info, s);
930ac04c 562 populate_disk_info(info);
17549e84 563 break;
0b827d5e
HZ
564 case MIGRATION_STATUS_COLO:
565 info->has_status = true;
566 /* TODO: display COLO specific information (checkpoint info etc.) */
567 break;
31194731 568 case MIGRATION_STATUS_COMPLETED:
791e7c82 569 info->has_status = true;
00c14997 570 info->has_total_time = true;
7aa939af 571 info->total_time = s->total_time;
9c5a9fcf
JQ
572 info->has_downtime = true;
573 info->downtime = s->downtime;
ed4fbd10
MH
574 info->has_setup_time = true;
575 info->setup_time = s->setup_time;
d5f8a570 576
a22463a5 577 populate_ram_info(info, s);
17549e84 578 break;
31194731 579 case MIGRATION_STATUS_FAILED:
791e7c82 580 info->has_status = true;
d59ce6f3
DB
581 if (s->error) {
582 info->has_error_desc = true;
583 info->error_desc = g_strdup(error_get_pretty(s->error));
584 }
17549e84 585 break;
31194731 586 case MIGRATION_STATUS_CANCELLED:
791e7c82 587 info->has_status = true;
17549e84 588 break;
5bb7910a 589 }
cde63fbe 590 info->status = s->state;
791e7c82
LC
591
592 return info;
5bb7910a
AL
593}
594
00458433
OW
595void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
596 Error **errp)
597{
598 MigrationState *s = migrate_get_current();
599 MigrationCapabilityStatusList *cap;
096631bd 600 bool old_postcopy_cap = migrate_postcopy_ram();
00458433 601
f6844b99 602 if (migration_is_setup_or_active(s->state)) {
c6bd8c70 603 error_setg(errp, QERR_MIGRATION_ACTIVE);
00458433
OW
604 return;
605 }
606
607 for (cap = params; cap; cap = cap->next) {
ed1701c6
DDAG
608#ifndef CONFIG_LIVE_BLOCK_MIGRATION
609 if (cap->value->capability == MIGRATION_CAPABILITY_BLOCK
610 && cap->value->state) {
611 error_setg(errp, "QEMU compiled without old-style (blk/-b, inc/-i) "
612 "block migration");
613 error_append_hint(errp, "Use drive_mirror+NBD instead.\n");
614 continue;
615 }
616#endif
35a6ed4f
HZ
617 if (cap->value->capability == MIGRATION_CAPABILITY_X_COLO) {
618 if (!colo_supported()) {
619 error_setg(errp, "COLO is not currently supported, please"
620 " configure with --enable-colo option in order to"
621 " support COLO feature");
622 continue;
623 }
624 }
00458433
OW
625 s->enabled_capabilities[cap->value->capability] = cap->value->state;
626 }
53dd370c
DDAG
627
628 if (migrate_postcopy_ram()) {
629 if (migrate_use_compression()) {
630 /* The decompression threads asynchronously write into RAM
631 * rather than use the atomic copies needed to avoid
632 * userfaulting. It should be possible to fix the decompression
633 * threads for compatibility in future.
634 */
635 error_report("Postcopy is not currently compatible with "
636 "compression");
32c3db5b 637 s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM] =
53dd370c
DDAG
638 false;
639 }
096631bd
DDAG
640 /* This check is reasonably expensive, so only when it's being
641 * set the first time, also it's only the destination that needs
642 * special support.
643 */
644 if (!old_postcopy_cap && runstate_check(RUN_STATE_INMIGRATE) &&
645 !postcopy_ram_supported_by_host()) {
646 /* postcopy_ram_supported_by_host will have emitted a more
647 * detailed message
648 */
649 error_report("Postcopy is not supported");
650 s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM] =
651 false;
652 }
53dd370c 653 }
00458433
OW
654}
655
7f375e04 656void qmp_migrate_set_parameters(MigrationParameters *params, Error **errp)
85de8323
LL
657{
658 MigrationState *s = migrate_get_current();
659
7f375e04
EB
660 if (params->has_compress_level &&
661 (params->compress_level < 0 || params->compress_level > 9)) {
c6bd8c70
MA
662 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
663 "is invalid, it should be in the range of 0 to 9");
85de8323
LL
664 return;
665 }
7f375e04
EB
666 if (params->has_compress_threads &&
667 (params->compress_threads < 1 || params->compress_threads > 255)) {
c6bd8c70
MA
668 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
669 "compress_threads",
670 "is invalid, it should be in the range of 1 to 255");
85de8323
LL
671 return;
672 }
7f375e04
EB
673 if (params->has_decompress_threads &&
674 (params->decompress_threads < 1 || params->decompress_threads > 255)) {
c6bd8c70
MA
675 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
676 "decompress_threads",
677 "is invalid, it should be in the range of 1 to 255");
85de8323
LL
678 return;
679 }
7f375e04
EB
680 if (params->has_cpu_throttle_initial &&
681 (params->cpu_throttle_initial < 1 ||
682 params->cpu_throttle_initial > 99)) {
1626fee3 683 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
d85a31d1 684 "cpu_throttle_initial",
1626fee3 685 "an integer in the range of 1 to 99");
091ecc8b 686 return;
1626fee3 687 }
7f375e04
EB
688 if (params->has_cpu_throttle_increment &&
689 (params->cpu_throttle_increment < 1 ||
690 params->cpu_throttle_increment > 99)) {
1626fee3 691 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
d85a31d1 692 "cpu_throttle_increment",
1626fee3 693 "an integer in the range of 1 to 99");
091ecc8b 694 return;
1626fee3 695 }
2ff30257
AA
696 if (params->has_max_bandwidth &&
697 (params->max_bandwidth < 0 || params->max_bandwidth > SIZE_MAX)) {
698 error_setg(errp, "Parameter 'max_bandwidth' expects an integer in the"
699 " range of 0 to %zu bytes/second", SIZE_MAX);
700 return;
701 }
702 if (params->has_downtime_limit &&
87c9cc1c
DHB
703 (params->downtime_limit < 0 ||
704 params->downtime_limit > MAX_MIGRATE_DOWNTIME)) {
705 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
706 "the range of 0 to %d milliseconds",
707 MAX_MIGRATE_DOWNTIME);
2ff30257
AA
708 return;
709 }
68b53591
HZ
710 if (params->has_x_checkpoint_delay && (params->x_checkpoint_delay < 0)) {
711 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
712 "x_checkpoint_delay",
713 "is invalid, it should be positive");
714 }
85de8323 715
7f375e04
EB
716 if (params->has_compress_level) {
717 s->parameters.compress_level = params->compress_level;
85de8323 718 }
7f375e04
EB
719 if (params->has_compress_threads) {
720 s->parameters.compress_threads = params->compress_threads;
85de8323 721 }
7f375e04
EB
722 if (params->has_decompress_threads) {
723 s->parameters.decompress_threads = params->decompress_threads;
85de8323 724 }
7f375e04
EB
725 if (params->has_cpu_throttle_initial) {
726 s->parameters.cpu_throttle_initial = params->cpu_throttle_initial;
1626fee3 727 }
7f375e04
EB
728 if (params->has_cpu_throttle_increment) {
729 s->parameters.cpu_throttle_increment = params->cpu_throttle_increment;
1626fee3 730 }
7f375e04 731 if (params->has_tls_creds) {
69ef1f36 732 g_free(s->parameters.tls_creds);
7f375e04 733 s->parameters.tls_creds = g_strdup(params->tls_creds);
69ef1f36 734 }
7f375e04 735 if (params->has_tls_hostname) {
69ef1f36 736 g_free(s->parameters.tls_hostname);
7f375e04 737 s->parameters.tls_hostname = g_strdup(params->tls_hostname);
69ef1f36 738 }
2ff30257
AA
739 if (params->has_max_bandwidth) {
740 s->parameters.max_bandwidth = params->max_bandwidth;
741 if (s->to_dst_file) {
742 qemu_file_set_rate_limit(s->to_dst_file,
743 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
744 }
745 }
746 if (params->has_downtime_limit) {
747 s->parameters.downtime_limit = params->downtime_limit;
748 }
68b53591
HZ
749
750 if (params->has_x_checkpoint_delay) {
751 s->parameters.x_checkpoint_delay = params->x_checkpoint_delay;
479125d5
HZ
752 if (migration_in_colo_state()) {
753 colo_checkpoint_notify(s);
754 }
68b53591 755 }
2833c59b
JQ
756 if (params->has_block_incremental) {
757 s->parameters.block_incremental = params->block_incremental;
758 }
85de8323
LL
759}
760
2594f56d 761
4886a1bc
DDAG
762void qmp_migrate_start_postcopy(Error **errp)
763{
764 MigrationState *s = migrate_get_current();
765
766 if (!migrate_postcopy_ram()) {
a54d340b 767 error_setg(errp, "Enable postcopy with migrate_set_capability before"
4886a1bc
DDAG
768 " the start of migration");
769 return;
770 }
771
772 if (s->state == MIGRATION_STATUS_NONE) {
773 error_setg(errp, "Postcopy must be started after migration has been"
774 " started");
775 return;
776 }
777 /*
778 * we don't error if migration has finished since that would be racy
779 * with issuing this command.
780 */
781 atomic_set(&s->start_postcopy, true);
782}
783
065e2813
AL
784/* shared migration helpers */
785
48781e5b 786void migrate_set_state(int *state, int old_state, int new_state)
51cf4c1a 787{
48781e5b 788 if (atomic_cmpxchg(state, old_state, new_state) == old_state) {
4ba4bc5e 789 trace_migrate_set_state(new_state);
b05dc723 790 migrate_generate_event(new_state);
51cf4c1a
Z
791 }
792}
793
2833c59b
JQ
794void migrate_set_block_enabled(bool value, Error **errp)
795{
796 MigrationCapabilityStatusList *cap;
797
798 cap = g_new0(MigrationCapabilityStatusList, 1);
799 cap->value = g_new0(MigrationCapabilityStatus, 1);
800 cap->value->capability = MIGRATION_CAPABILITY_BLOCK;
801 cap->value->state = value;
802 qmp_migrate_set_capabilities(cap, errp);
803 qapi_free_MigrationCapabilityStatusList(cap);
804}
805
806static void migrate_set_block_incremental(MigrationState *s, bool value)
807{
808 s->parameters.block_incremental = value;
809}
810
811static void block_cleanup_parameters(MigrationState *s)
812{
813 if (s->must_remove_block_options) {
814 /* setting to false can never fail */
815 migrate_set_block_enabled(false, &error_abort);
816 migrate_set_block_incremental(s, false);
817 s->must_remove_block_options = false;
818 }
819}
820
bb1fadc4 821static void migrate_fd_cleanup(void *opaque)
065e2813 822{
bb1fadc4
PB
823 MigrationState *s = opaque;
824
825 qemu_bh_delete(s->cleanup_bh);
826 s->cleanup_bh = NULL;
827
89a02a9f 828 if (s->to_dst_file) {
9013dca5 829 trace_migrate_fd_cleanup();
404a7c05 830 qemu_mutex_unlock_iothread();
1d34e4bf
DDAG
831 if (s->migration_thread_running) {
832 qemu_thread_join(&s->thread);
833 s->migration_thread_running = false;
834 }
404a7c05
PB
835 qemu_mutex_lock_iothread();
836
8706d2d5 837 migrate_compress_threads_join();
89a02a9f
HZ
838 qemu_fclose(s->to_dst_file);
839 s->to_dst_file = NULL;
065e2813
AL
840 }
841
9ec055ae
DDAG
842 assert((s->state != MIGRATION_STATUS_ACTIVE) &&
843 (s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE));
7a2c1721 844
94f5a437 845 if (s->state == MIGRATION_STATUS_CANCELLING) {
48781e5b 846 migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
94f5a437 847 MIGRATION_STATUS_CANCELLED);
7a2c1721 848 }
a3fa1d78
PB
849
850 notifier_list_notify(&migration_state_notifiers, s);
2833c59b 851 block_cleanup_parameters(s);
065e2813
AL
852}
853
d59ce6f3 854void migrate_fd_error(MigrationState *s, const Error *error)
065e2813 855{
25174055 856 trace_migrate_fd_error(error_get_pretty(error));
89a02a9f 857 assert(s->to_dst_file == NULL);
48781e5b
HZ
858 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
859 MIGRATION_STATUS_FAILED);
d59ce6f3
DB
860 if (!s->error) {
861 s->error = error_copy(error);
862 }
bb1fadc4 863 notifier_list_notify(&migration_state_notifiers, s);
2833c59b 864 block_cleanup_parameters(s);
458cf28e
JQ
865}
866
0edda1c4 867static void migrate_fd_cancel(MigrationState *s)
065e2813 868{
6f2b811a 869 int old_state ;
89a02a9f 870 QEMUFile *f = migrate_get_current()->to_dst_file;
9013dca5 871 trace_migrate_fd_cancel();
065e2813 872
70b20477
DDAG
873 if (s->rp_state.from_dst_file) {
874 /* shutdown the rp socket, so causing the rp thread to shutdown */
875 qemu_file_shutdown(s->rp_state.from_dst_file);
876 }
877
6f2b811a
Z
878 do {
879 old_state = s->state;
f6844b99 880 if (!migration_is_setup_or_active(old_state)) {
6f2b811a
Z
881 break;
882 }
48781e5b 883 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
31194731 884 } while (s->state != MIGRATION_STATUS_CANCELLING);
a26ba26e
DDAG
885
886 /*
887 * If we're unlucky the migration code might be stuck somewhere in a
888 * send/write while the network has failed and is waiting to timeout;
889 * if we've got shutdown(2) available then we can force it to quit.
890 * The outgoing qemu file gets closed in migrate_fd_cleanup that is
891 * called in a bh, so there is no race against this cancel.
892 */
31194731 893 if (s->state == MIGRATION_STATUS_CANCELLING && f) {
a26ba26e
DDAG
894 qemu_file_shutdown(f);
895 }
1d2acc31
HZ
896 if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
897 Error *local_err = NULL;
898
899 bdrv_invalidate_cache_all(&local_err);
900 if (local_err) {
901 error_report_err(local_err);
902 } else {
903 s->block_inactive = false;
904 }
905 }
2833c59b 906 block_cleanup_parameters(s);
065e2813
AL
907}
908
99a0db9b
GH
909void add_migration_state_change_notifier(Notifier *notify)
910{
911 notifier_list_add(&migration_state_notifiers, notify);
912}
913
914void remove_migration_state_change_notifier(Notifier *notify)
915{
31552529 916 notifier_remove(notify);
99a0db9b
GH
917}
918
02edd2e7 919bool migration_in_setup(MigrationState *s)
afe2df69 920{
31194731 921 return s->state == MIGRATION_STATUS_SETUP;
afe2df69
GH
922}
923
7073693b 924bool migration_has_finished(MigrationState *s)
99a0db9b 925{
31194731 926 return s->state == MIGRATION_STATUS_COMPLETED;
99a0db9b 927}
0edda1c4 928
afe2df69
GH
929bool migration_has_failed(MigrationState *s)
930{
31194731
HZ
931 return (s->state == MIGRATION_STATUS_CANCELLED ||
932 s->state == MIGRATION_STATUS_FAILED);
afe2df69
GH
933}
934
5727309d 935bool migration_in_postcopy(void)
9ec055ae 936{
5727309d
JQ
937 MigrationState *s = migrate_get_current();
938
9ec055ae
DDAG
939 return (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
940}
941
b82fc321
DDAG
942bool migration_in_postcopy_after_devices(MigrationState *s)
943{
5727309d 944 return migration_in_postcopy() && s->postcopy_after_devices;
b82fc321
DDAG
945}
946
fab35005 947bool migration_is_idle(void)
fe44dc91 948{
fab35005 949 MigrationState *s = migrate_get_current();
fe44dc91
AA
950
951 switch (s->state) {
952 case MIGRATION_STATUS_NONE:
953 case MIGRATION_STATUS_CANCELLED:
954 case MIGRATION_STATUS_COMPLETED:
955 case MIGRATION_STATUS_FAILED:
956 return true;
957 case MIGRATION_STATUS_SETUP:
958 case MIGRATION_STATUS_CANCELLING:
959 case MIGRATION_STATUS_ACTIVE:
960 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
961 case MIGRATION_STATUS_COLO:
962 return false;
963 case MIGRATION_STATUS__MAX:
964 g_assert_not_reached();
965 }
966
967 return false;
968}
969
a0762d9e 970MigrationState *migrate_init(void)
0edda1c4 971{
17549e84 972 MigrationState *s = migrate_get_current();
bbf6da32 973
389775d1
DDAG
974 /*
975 * Reinitialise all migration state, except
976 * parameters/capabilities that the user set, and
977 * locks.
978 */
979 s->bytes_xfer = 0;
980 s->xfer_limit = 0;
981 s->cleanup_bh = 0;
89a02a9f 982 s->to_dst_file = NULL;
389775d1 983 s->state = MIGRATION_STATUS_NONE;
389775d1
DDAG
984 s->rp_state.from_dst_file = NULL;
985 s->rp_state.error = false;
986 s->mbps = 0.0;
987 s->downtime = 0;
988 s->expected_downtime = 0;
389775d1 989 s->setup_time = 0;
389775d1 990 s->start_postcopy = false;
b82fc321 991 s->postcopy_after_devices = false;
389775d1 992 s->migration_thread_running = false;
d59ce6f3
DB
993 error_free(s->error);
994 s->error = NULL;
389775d1 995
48781e5b 996 migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
0edda1c4 997
bc72ad67 998 s->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
0edda1c4
JQ
999 return s;
1000}
cab30143 1001
fa2756b7
AL
1002static GSList *migration_blockers;
1003
fe44dc91 1004int migrate_add_blocker(Error *reason, Error **errp)
fa2756b7 1005{
b67b8c3a
AA
1006 if (only_migratable) {
1007 error_propagate(errp, error_copy(reason));
1008 error_prepend(errp, "disallowing migration blocker "
1009 "(--only_migratable) for: ");
1010 return -EACCES;
1011 }
1012
fab35005 1013 if (migration_is_idle()) {
fe44dc91
AA
1014 migration_blockers = g_slist_prepend(migration_blockers, reason);
1015 return 0;
1016 }
1017
1018 error_propagate(errp, error_copy(reason));
1019 error_prepend(errp, "disallowing migration blocker (migration in "
1020 "progress) for: ");
1021 return -EBUSY;
fa2756b7
AL
1022}
1023
1024void migrate_del_blocker(Error *reason)
1025{
1026 migration_blockers = g_slist_remove(migration_blockers, reason);
1027}
1028
bf1ae1f4
DDAG
1029void qmp_migrate_incoming(const char *uri, Error **errp)
1030{
1031 Error *local_err = NULL;
4debb5f5 1032 static bool once = true;
bf1ae1f4
DDAG
1033
1034 if (!deferred_incoming) {
4debb5f5 1035 error_setg(errp, "For use with '-incoming defer'");
bf1ae1f4
DDAG
1036 return;
1037 }
4debb5f5
DDAG
1038 if (!once) {
1039 error_setg(errp, "The incoming migration has already been started");
1040 }
bf1ae1f4
DDAG
1041
1042 qemu_start_incoming_migration(uri, &local_err);
1043
1044 if (local_err) {
1045 error_propagate(errp, local_err);
1046 return;
1047 }
1048
4debb5f5 1049 once = false;
bf1ae1f4
DDAG
1050}
1051
24f3902b
GK
1052bool migration_is_blocked(Error **errp)
1053{
1054 if (qemu_savevm_state_blocked(errp)) {
1055 return true;
1056 }
1057
1058 if (migration_blockers) {
250561e1 1059 error_propagate(errp, error_copy(migration_blockers->data));
24f3902b
GK
1060 return true;
1061 }
1062
1063 return false;
1064}
1065
e1c37d0e
LC
1066void qmp_migrate(const char *uri, bool has_blk, bool blk,
1067 bool has_inc, bool inc, bool has_detach, bool detach,
1068 Error **errp)
cab30143 1069{
be7059cd 1070 Error *local_err = NULL;
17549e84 1071 MigrationState *s = migrate_get_current();
cab30143 1072 const char *p;
cab30143 1073
f6844b99 1074 if (migration_is_setup_or_active(s->state) ||
0b827d5e
HZ
1075 s->state == MIGRATION_STATUS_CANCELLING ||
1076 s->state == MIGRATION_STATUS_COLO) {
c6bd8c70 1077 error_setg(errp, QERR_MIGRATION_ACTIVE);
e1c37d0e 1078 return;
cab30143 1079 }
ca99993a
DDAG
1080 if (runstate_check(RUN_STATE_INMIGRATE)) {
1081 error_setg(errp, "Guest is waiting for an incoming migration");
1082 return;
1083 }
1084
24f3902b 1085 if (migration_is_blocked(errp)) {
e1c37d0e 1086 return;
fa2756b7
AL
1087 }
1088
2833c59b
JQ
1089 if ((has_blk && blk) || (has_inc && inc)) {
1090 if (migrate_use_block() || migrate_use_block_incremental()) {
1091 error_setg(errp, "Command options are incompatible with "
1092 "current migration capabilities");
1093 return;
1094 }
1095 migrate_set_block_enabled(true, &local_err);
1096 if (local_err) {
1097 error_propagate(errp, local_err);
1098 return;
1099 }
1100 s->must_remove_block_options = true;
1101 }
1102
1103 if (has_inc && inc) {
1104 migrate_set_block_incremental(s, true);
1105 }
1106
a0762d9e 1107 s = migrate_init();
cab30143
JQ
1108
1109 if (strstart(uri, "tcp:", &p)) {
f37afb5a 1110 tcp_start_outgoing_migration(s, p, &local_err);
2da776db 1111#ifdef CONFIG_RDMA
41310c68 1112 } else if (strstart(uri, "rdma:", &p)) {
2da776db
MH
1113 rdma_start_outgoing_migration(s, p, &local_err);
1114#endif
cab30143 1115 } else if (strstart(uri, "exec:", &p)) {
f37afb5a 1116 exec_start_outgoing_migration(s, p, &local_err);
cab30143 1117 } else if (strstart(uri, "unix:", &p)) {
f37afb5a 1118 unix_start_outgoing_migration(s, p, &local_err);
cab30143 1119 } else if (strstart(uri, "fd:", &p)) {
f37afb5a 1120 fd_start_outgoing_migration(s, p, &local_err);
99a0db9b 1121 } else {
c6bd8c70
MA
1122 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
1123 "a valid migration protocol");
48781e5b
HZ
1124 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1125 MIGRATION_STATUS_FAILED);
e1c37d0e 1126 return;
cab30143
JQ
1127 }
1128
f37afb5a 1129 if (local_err) {
d59ce6f3 1130 migrate_fd_error(s, local_err);
f37afb5a 1131 error_propagate(errp, local_err);
e1c37d0e 1132 return;
1299c631 1133 }
cab30143
JQ
1134}
1135
6cdedb07 1136void qmp_migrate_cancel(Error **errp)
cab30143 1137{
17549e84 1138 migrate_fd_cancel(migrate_get_current());
cab30143
JQ
1139}
1140
9e1ba4cc
OW
1141void qmp_migrate_set_cache_size(int64_t value, Error **errp)
1142{
1143 MigrationState *s = migrate_get_current();
c91e681a 1144 int64_t new_size;
9e1ba4cc
OW
1145
1146 /* Check for truncation */
1147 if (value != (size_t)value) {
c6bd8c70
MA
1148 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
1149 "exceeding address space");
9e1ba4cc
OW
1150 return;
1151 }
1152
a5615b14
OW
1153 /* Cache should not be larger than guest ram size */
1154 if (value > ram_bytes_total()) {
c6bd8c70
MA
1155 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
1156 "exceeds guest ram size ");
a5615b14
OW
1157 return;
1158 }
1159
c91e681a
OW
1160 new_size = xbzrle_cache_resize(value);
1161 if (new_size < 0) {
c6bd8c70
MA
1162 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
1163 "is smaller than page size");
c91e681a
OW
1164 return;
1165 }
1166
1167 s->xbzrle_cache_size = new_size;
9e1ba4cc
OW
1168}
1169
1170int64_t qmp_query_migrate_cache_size(Error **errp)
1171{
1172 return migrate_xbzrle_cache_size();
1173}
1174
3dc85383 1175void qmp_migrate_set_speed(int64_t value, Error **errp)
cab30143 1176{
2ff30257
AA
1177 MigrationParameters p = {
1178 .has_max_bandwidth = true,
1179 .max_bandwidth = value,
1180 };
cab30143 1181
2ff30257 1182 qmp_migrate_set_parameters(&p, errp);
cab30143
JQ
1183}
1184
4f0a993b 1185void qmp_migrate_set_downtime(double value, Error **errp)
cab30143 1186{
87c9cc1c
DHB
1187 if (value < 0 || value > MAX_MIGRATE_DOWNTIME_SECONDS) {
1188 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
1189 "the range of 0 to %d seconds",
1190 MAX_MIGRATE_DOWNTIME_SECONDS);
1191 return;
1192 }
1193
2ff30257
AA
1194 value *= 1000; /* Convert to milliseconds */
1195 value = MAX(0, MIN(INT64_MAX, value));
1196
1197 MigrationParameters p = {
1198 .has_downtime_limit = true,
1199 .downtime_limit = value,
1200 };
1201
1202 qmp_migrate_set_parameters(&p, errp);
99a0db9b 1203}
17ad9b35 1204
53f09a10
PB
1205bool migrate_release_ram(void)
1206{
1207 MigrationState *s;
1208
1209 s = migrate_get_current();
1210
1211 return s->enabled_capabilities[MIGRATION_CAPABILITY_RELEASE_RAM];
1212}
1213
53dd370c
DDAG
1214bool migrate_postcopy_ram(void)
1215{
1216 MigrationState *s;
1217
1218 s = migrate_get_current();
1219
32c3db5b 1220 return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM];
53dd370c
DDAG
1221}
1222
bde1e2ec
CV
1223bool migrate_auto_converge(void)
1224{
1225 MigrationState *s;
1226
1227 s = migrate_get_current();
1228
1229 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
1230}
1231
323004a3
PL
1232bool migrate_zero_blocks(void)
1233{
1234 MigrationState *s;
1235
1236 s = migrate_get_current();
1237
1238 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
1239}
1240
8706d2d5
LL
1241bool migrate_use_compression(void)
1242{
dde4e694
LL
1243 MigrationState *s;
1244
1245 s = migrate_get_current();
1246
1247 return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
8706d2d5
LL
1248}
1249
1250int migrate_compress_level(void)
1251{
1252 MigrationState *s;
1253
1254 s = migrate_get_current();
1255
2594f56d 1256 return s->parameters.compress_level;
8706d2d5
LL
1257}
1258
1259int migrate_compress_threads(void)
1260{
1261 MigrationState *s;
1262
1263 s = migrate_get_current();
1264
2594f56d 1265 return s->parameters.compress_threads;
8706d2d5
LL
1266}
1267
3fcb38c2
LL
1268int migrate_decompress_threads(void)
1269{
1270 MigrationState *s;
1271
1272 s = migrate_get_current();
1273
2594f56d 1274 return s->parameters.decompress_threads;
3fcb38c2
LL
1275}
1276
b05dc723
JQ
1277bool migrate_use_events(void)
1278{
1279 MigrationState *s;
1280
1281 s = migrate_get_current();
1282
1283 return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS];
1284}
1285
17ad9b35
OW
1286int migrate_use_xbzrle(void)
1287{
1288 MigrationState *s;
1289
1290 s = migrate_get_current();
1291
1292 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
1293}
1294
1295int64_t migrate_xbzrle_cache_size(void)
1296{
1297 MigrationState *s;
1298
1299 s = migrate_get_current();
1300
1301 return s->xbzrle_cache_size;
1302}
0d82d0e8 1303
2833c59b
JQ
1304bool migrate_use_block(void)
1305{
1306 MigrationState *s;
1307
1308 s = migrate_get_current();
1309
1310 return s->enabled_capabilities[MIGRATION_CAPABILITY_BLOCK];
1311}
1312
1313bool migrate_use_block_incremental(void)
1314{
1315 MigrationState *s;
1316
1317 s = migrate_get_current();
1318
1319 return s->parameters.block_incremental;
1320}
1321
70b20477
DDAG
1322/* migration thread support */
1323/*
1324 * Something bad happened to the RP stream, mark an error
1325 * The caller shall print or trace something to indicate why
1326 */
1327static void mark_source_rp_bad(MigrationState *s)
1328{
1329 s->rp_state.error = true;
1330}
1331
1332static struct rp_cmd_args {
1333 ssize_t len; /* -1 = variable */
1334 const char *name;
1335} rp_cmd_args[] = {
1336 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
1337 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
1338 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
1e2d90eb
DDAG
1339 [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" },
1340 [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" },
70b20477
DDAG
1341 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
1342};
1343
1e2d90eb
DDAG
1344/*
1345 * Process a request for pages received on the return path,
1346 * We're allowed to send more than requested (e.g. to round to our page size)
1347 * and we don't need to send pages that have already been sent.
1348 */
1349static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
1350 ram_addr_t start, size_t len)
1351{
6c595cde
DDAG
1352 long our_host_ps = getpagesize();
1353
1e2d90eb 1354 trace_migrate_handle_rp_req_pages(rbname, start, len);
6c595cde
DDAG
1355
1356 /*
1357 * Since we currently insist on matching page sizes, just sanity check
1358 * we're being asked for whole host pages.
1359 */
1360 if (start & (our_host_ps-1) ||
1361 (len & (our_host_ps-1))) {
1362 error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1363 " len: %zd", __func__, start, len);
1364 mark_source_rp_bad(ms);
1365 return;
1366 }
1367
96506894 1368 if (ram_save_queue_pages(rbname, start, len)) {
6c595cde
DDAG
1369 mark_source_rp_bad(ms);
1370 }
1e2d90eb
DDAG
1371}
1372
70b20477
DDAG
1373/*
1374 * Handles messages sent on the return path towards the source VM
1375 *
1376 */
1377static void *source_return_path_thread(void *opaque)
1378{
1379 MigrationState *ms = opaque;
1380 QEMUFile *rp = ms->rp_state.from_dst_file;
1381 uint16_t header_len, header_type;
568b01ca 1382 uint8_t buf[512];
70b20477 1383 uint32_t tmp32, sibling_error;
1e2d90eb
DDAG
1384 ram_addr_t start = 0; /* =0 to silence warning */
1385 size_t len = 0, expected_len;
70b20477
DDAG
1386 int res;
1387
1388 trace_source_return_path_thread_entry();
1389 while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1390 migration_is_setup_or_active(ms->state)) {
1391 trace_source_return_path_thread_loop_top();
1392 header_type = qemu_get_be16(rp);
1393 header_len = qemu_get_be16(rp);
1394
1395 if (header_type >= MIG_RP_MSG_MAX ||
1396 header_type == MIG_RP_MSG_INVALID) {
1397 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1398 header_type, header_len);
1399 mark_source_rp_bad(ms);
1400 goto out;
1401 }
1402
1403 if ((rp_cmd_args[header_type].len != -1 &&
1404 header_len != rp_cmd_args[header_type].len) ||
568b01ca 1405 header_len > sizeof(buf)) {
70b20477
DDAG
1406 error_report("RP: Received '%s' message (0x%04x) with"
1407 "incorrect length %d expecting %zu",
1408 rp_cmd_args[header_type].name, header_type, header_len,
1409 (size_t)rp_cmd_args[header_type].len);
1410 mark_source_rp_bad(ms);
1411 goto out;
1412 }
1413
1414 /* We know we've got a valid header by this point */
1415 res = qemu_get_buffer(rp, buf, header_len);
1416 if (res != header_len) {
1417 error_report("RP: Failed reading data for message 0x%04x"
1418 " read %d expected %d",
1419 header_type, res, header_len);
1420 mark_source_rp_bad(ms);
1421 goto out;
1422 }
1423
1424 /* OK, we have the message and the data */
1425 switch (header_type) {
1426 case MIG_RP_MSG_SHUT:
4d885131 1427 sibling_error = ldl_be_p(buf);
70b20477
DDAG
1428 trace_source_return_path_thread_shut(sibling_error);
1429 if (sibling_error) {
1430 error_report("RP: Sibling indicated error %d", sibling_error);
1431 mark_source_rp_bad(ms);
1432 }
1433 /*
1434 * We'll let the main thread deal with closing the RP
1435 * we could do a shutdown(2) on it, but we're the only user
1436 * anyway, so there's nothing gained.
1437 */
1438 goto out;
1439
1440 case MIG_RP_MSG_PONG:
4d885131 1441 tmp32 = ldl_be_p(buf);
70b20477
DDAG
1442 trace_source_return_path_thread_pong(tmp32);
1443 break;
1444
1e2d90eb 1445 case MIG_RP_MSG_REQ_PAGES:
4d885131
PM
1446 start = ldq_be_p(buf);
1447 len = ldl_be_p(buf + 8);
1e2d90eb
DDAG
1448 migrate_handle_rp_req_pages(ms, NULL, start, len);
1449 break;
1450
1451 case MIG_RP_MSG_REQ_PAGES_ID:
1452 expected_len = 12 + 1; /* header + termination */
1453
1454 if (header_len >= expected_len) {
4d885131
PM
1455 start = ldq_be_p(buf);
1456 len = ldl_be_p(buf + 8);
1e2d90eb
DDAG
1457 /* Now we expect an idstr */
1458 tmp32 = buf[12]; /* Length of the following idstr */
1459 buf[13 + tmp32] = '\0';
1460 expected_len += tmp32;
1461 }
1462 if (header_len != expected_len) {
1463 error_report("RP: Req_Page_id with length %d expecting %zd",
1464 header_len, expected_len);
1465 mark_source_rp_bad(ms);
1466 goto out;
1467 }
1468 migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len);
1469 break;
1470
70b20477
DDAG
1471 default:
1472 break;
1473 }
1474 }
5df5416e 1475 if (qemu_file_get_error(rp)) {
70b20477
DDAG
1476 trace_source_return_path_thread_bad_end();
1477 mark_source_rp_bad(ms);
1478 }
1479
1480 trace_source_return_path_thread_end();
1481out:
1482 ms->rp_state.from_dst_file = NULL;
1483 qemu_fclose(rp);
1484 return NULL;
1485}
1486
70b20477
DDAG
1487static int open_return_path_on_source(MigrationState *ms)
1488{
1489
89a02a9f 1490 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
70b20477
DDAG
1491 if (!ms->rp_state.from_dst_file) {
1492 return -1;
1493 }
1494
1495 trace_open_return_path_on_source();
1496 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
1497 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
1498
1499 trace_open_return_path_on_source_continue();
1500
1501 return 0;
1502}
1503
70b20477
DDAG
1504/* Returns 0 if the RP was ok, otherwise there was an error on the RP */
1505static int await_return_path_close_on_source(MigrationState *ms)
1506{
1507 /*
1508 * If this is a normal exit then the destination will send a SHUT and the
1509 * rp_thread will exit, however if there's an error we need to cause
1510 * it to exit.
1511 */
89a02a9f 1512 if (qemu_file_get_error(ms->to_dst_file) && ms->rp_state.from_dst_file) {
70b20477
DDAG
1513 /*
1514 * shutdown(2), if we have it, will cause it to unblock if it's stuck
1515 * waiting for the destination.
1516 */
1517 qemu_file_shutdown(ms->rp_state.from_dst_file);
1518 mark_source_rp_bad(ms);
1519 }
1520 trace_await_return_path_close_on_source_joining();
1521 qemu_thread_join(&ms->rp_state.rp_thread);
1522 trace_await_return_path_close_on_source_close();
1523 return ms->rp_state.error;
1524}
1525
1d34e4bf
DDAG
1526/*
1527 * Switch from normal iteration to postcopy
1528 * Returns non-0 on error
1529 */
1530static int postcopy_start(MigrationState *ms, bool *old_vm_running)
1531{
1532 int ret;
61b67d47
DB
1533 QIOChannelBuffer *bioc;
1534 QEMUFile *fb;
1d34e4bf 1535 int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
ef8d6488 1536 bool restart_block = false;
48781e5b 1537 migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
1d34e4bf
DDAG
1538 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1539
1540 trace_postcopy_start();
1541 qemu_mutex_lock_iothread();
1542 trace_postcopy_start_set_run();
1543
1544 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
1545 *old_vm_running = runstate_is_running();
1546 global_state_store();
1547 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
76b1c7fe
KW
1548 if (ret < 0) {
1549 goto fail;
1550 }
1d34e4bf 1551
76b1c7fe 1552 ret = bdrv_inactivate_all();
1d34e4bf
DDAG
1553 if (ret < 0) {
1554 goto fail;
1555 }
ef8d6488 1556 restart_block = true;
1d34e4bf 1557
1c0d249d
DDAG
1558 /*
1559 * Cause any non-postcopiable, but iterative devices to
1560 * send out their final data.
1561 */
89a02a9f 1562 qemu_savevm_state_complete_precopy(ms->to_dst_file, true);
1c0d249d 1563
1d34e4bf
DDAG
1564 /*
1565 * in Finish migrate and with the io-lock held everything should
1566 * be quiet, but we've potentially still got dirty pages and we
1567 * need to tell the destination to throw any pages it's already received
1568 * that are dirty
1569 */
1570 if (ram_postcopy_send_discard_bitmap(ms)) {
1571 error_report("postcopy send discard bitmap failed");
1572 goto fail;
1573 }
1574
1575 /*
1576 * send rest of state - note things that are doing postcopy
1577 * will notice we're in POSTCOPY_ACTIVE and not actually
1578 * wrap their state up here
1579 */
89a02a9f 1580 qemu_file_set_rate_limit(ms->to_dst_file, INT64_MAX);
1d34e4bf 1581 /* Ping just for debugging, helps line traces up */
89a02a9f 1582 qemu_savevm_send_ping(ms->to_dst_file, 2);
1d34e4bf
DDAG
1583
1584 /*
1585 * While loading the device state we may trigger page transfer
1586 * requests and the fd must be free to process those, and thus
1587 * the destination must read the whole device state off the fd before
1588 * it starts processing it. Unfortunately the ad-hoc migration format
1589 * doesn't allow the destination to know the size to read without fully
1590 * parsing it through each devices load-state code (especially the open
1591 * coded devices that use get/put).
1592 * So we wrap the device state up in a package with a length at the start;
1593 * to do this we use a qemu_buf to hold the whole of the device state.
1594 */
61b67d47 1595 bioc = qio_channel_buffer_new(4096);
6f01f136 1596 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
61b67d47
DB
1597 fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc));
1598 object_unref(OBJECT(bioc));
1d34e4bf 1599
c76201ab
DDAG
1600 /*
1601 * Make sure the receiver can get incoming pages before we send the rest
1602 * of the state
1603 */
1604 qemu_savevm_send_postcopy_listen(fb);
1605
1c0d249d 1606 qemu_savevm_state_complete_precopy(fb, false);
1d34e4bf
DDAG
1607 qemu_savevm_send_ping(fb, 3);
1608
1609 qemu_savevm_send_postcopy_run(fb);
1610
1611 /* <><> end of stuff going into the package */
1d34e4bf 1612
ef8d6488
DDAG
1613 /* Last point of recovery; as soon as we send the package the destination
1614 * can open devices and potentially start running.
1615 * Lets just check again we've not got any errors.
1616 */
1617 ret = qemu_file_get_error(ms->to_dst_file);
1618 if (ret) {
1619 error_report("postcopy_start: Migration stream errored (pre package)");
1620 goto fail_closefb;
1621 }
1622
1623 restart_block = false;
1624
1d34e4bf 1625 /* Now send that blob */
61b67d47 1626 if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
1d34e4bf
DDAG
1627 goto fail_closefb;
1628 }
1629 qemu_fclose(fb);
b82fc321
DDAG
1630
1631 /* Send a notify to give a chance for anything that needs to happen
1632 * at the transition to postcopy and after the device state; in particular
1633 * spice needs to trigger a transition now
1634 */
1635 ms->postcopy_after_devices = true;
1636 notifier_list_notify(&migration_state_notifiers, ms);
1637
1d34e4bf
DDAG
1638 ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
1639
1640 qemu_mutex_unlock_iothread();
1641
1642 /*
1643 * Although this ping is just for debug, it could potentially be
1644 * used for getting a better measurement of downtime at the source.
1645 */
89a02a9f 1646 qemu_savevm_send_ping(ms->to_dst_file, 4);
1d34e4bf 1647
ced1c616
PB
1648 if (migrate_release_ram()) {
1649 ram_postcopy_migrated_memory_release(ms);
1650 }
1651
89a02a9f 1652 ret = qemu_file_get_error(ms->to_dst_file);
1d34e4bf
DDAG
1653 if (ret) {
1654 error_report("postcopy_start: Migration stream errored");
48781e5b 1655 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1d34e4bf
DDAG
1656 MIGRATION_STATUS_FAILED);
1657 }
1658
1659 return ret;
1660
1661fail_closefb:
1662 qemu_fclose(fb);
1663fail:
48781e5b 1664 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1d34e4bf 1665 MIGRATION_STATUS_FAILED);
ef8d6488
DDAG
1666 if (restart_block) {
1667 /* A failure happened early enough that we know the destination hasn't
1668 * accessed block devices, so we're safe to recover.
1669 */
1670 Error *local_err = NULL;
1671
1672 bdrv_invalidate_cache_all(&local_err);
1673 if (local_err) {
1674 error_report_err(local_err);
1675 }
1676 }
1d34e4bf
DDAG
1677 qemu_mutex_unlock_iothread();
1678 return -1;
1679}
1680
09f6c85e
DDAG
1681/**
1682 * migration_completion: Used by migration_thread when there's not much left.
1683 * The caller 'breaks' the loop when this returns.
1684 *
1685 * @s: Current migration state
36f48567 1686 * @current_active_state: The migration state we expect to be in
09f6c85e
DDAG
1687 * @*old_vm_running: Pointer to old_vm_running flag
1688 * @*start_time: Pointer to time to update
1689 */
36f48567
DDAG
1690static void migration_completion(MigrationState *s, int current_active_state,
1691 bool *old_vm_running,
09f6c85e
DDAG
1692 int64_t *start_time)
1693{
1694 int ret;
1695
b10ac0c4
DDAG
1696 if (s->state == MIGRATION_STATUS_ACTIVE) {
1697 qemu_mutex_lock_iothread();
1698 *start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1699 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
1700 *old_vm_running = runstate_is_running();
1701 ret = global_state_store();
1702
1703 if (!ret) {
1704 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
f07fa4cb
KW
1705 if (ret >= 0) {
1706 qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
1707 qemu_savevm_state_complete_precopy(s->to_dst_file, false);
1708 }
0b827d5e
HZ
1709 /*
1710 * Don't mark the image with BDRV_O_INACTIVE flag if
1711 * we will go into COLO stage later.
1712 */
1713 if (ret >= 0 && !migrate_colo_enabled()) {
76b1c7fe 1714 ret = bdrv_inactivate_all();
f07fa4cb
KW
1715 if (ret >= 0) {
1716 s->block_inactive = true;
1717 }
b10ac0c4
DDAG
1718 }
1719 }
1720 qemu_mutex_unlock_iothread();
09f6c85e 1721
b10ac0c4
DDAG
1722 if (ret < 0) {
1723 goto fail;
09f6c85e 1724 }
b10ac0c4
DDAG
1725 } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
1726 trace_migration_completion_postcopy_end();
1727
89a02a9f 1728 qemu_savevm_state_complete_postcopy(s->to_dst_file);
b10ac0c4 1729 trace_migration_completion_postcopy_end_after_complete();
09f6c85e 1730 }
09f6c85e 1731
b10ac0c4
DDAG
1732 /*
1733 * If rp was opened we must clean up the thread before
1734 * cleaning everything else up (since if there are no failures
1735 * it will wait for the destination to send it's status in
1736 * a SHUT command).
b10ac0c4 1737 */
0425dc97 1738 if (s->rp_state.from_dst_file) {
b10ac0c4 1739 int rp_error;
0425dc97 1740 trace_migration_return_path_end_before();
b10ac0c4 1741 rp_error = await_return_path_close_on_source(s);
0425dc97 1742 trace_migration_return_path_end_after(rp_error);
b10ac0c4 1743 if (rp_error) {
fe904ea8 1744 goto fail_invalidate;
b10ac0c4 1745 }
09f6c85e
DDAG
1746 }
1747
89a02a9f 1748 if (qemu_file_get_error(s->to_dst_file)) {
09f6c85e 1749 trace_migration_completion_file_err();
fe904ea8 1750 goto fail_invalidate;
09f6c85e
DDAG
1751 }
1752
0b827d5e
HZ
1753 if (!migrate_colo_enabled()) {
1754 migrate_set_state(&s->state, current_active_state,
1755 MIGRATION_STATUS_COMPLETED);
1756 }
1757
09f6c85e
DDAG
1758 return;
1759
fe904ea8
GK
1760fail_invalidate:
1761 /* If not doing postcopy, vm_start() will be called: let's regain
1762 * control on images.
1763 */
1764 if (s->state == MIGRATION_STATUS_ACTIVE) {
1765 Error *local_err = NULL;
1766
1d2acc31 1767 qemu_mutex_lock_iothread();
fe904ea8
GK
1768 bdrv_invalidate_cache_all(&local_err);
1769 if (local_err) {
1770 error_report_err(local_err);
1d2acc31
HZ
1771 } else {
1772 s->block_inactive = false;
fe904ea8 1773 }
1d2acc31 1774 qemu_mutex_unlock_iothread();
fe904ea8
GK
1775 }
1776
09f6c85e 1777fail:
48781e5b
HZ
1778 migrate_set_state(&s->state, current_active_state,
1779 MIGRATION_STATUS_FAILED);
09f6c85e
DDAG
1780}
1781
35a6ed4f
HZ
1782bool migrate_colo_enabled(void)
1783{
1784 MigrationState *s = migrate_get_current();
1785 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_COLO];
1786}
1787
70b20477
DDAG
1788/*
1789 * Master migration thread on the source VM.
1790 * It drives the migration and pumps the data down the outgoing channel.
1791 */
5f496a1b 1792static void *migration_thread(void *opaque)
0d82d0e8 1793{
9848a404 1794 MigrationState *s = opaque;
1d34e4bf 1795 /* Used by the bandwidth calcs, updated later */
bc72ad67
AB
1796 int64_t initial_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1797 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
be7172e2 1798 int64_t initial_bytes = 0;
faec066a
PX
1799 /*
1800 * The final stage happens when the remaining data is smaller than
1801 * this threshold; it's calculated from the requested downtime and
1802 * measured bandwidth
1803 */
1804 int64_t threshold_size = 0;
a3fa1d78 1805 int64_t start_time = initial_time;
94f5a437 1806 int64_t end_time;
a3fa1d78 1807 bool old_vm_running = false;
1d34e4bf
DDAG
1808 bool entered_postcopy = false;
1809 /* The active state we expect to be in; ACTIVE or POSTCOPY_ACTIVE */
1810 enum MigrationStatus current_active_state = MIGRATION_STATUS_ACTIVE;
0b827d5e 1811 bool enable_colo = migrate_colo_enabled();
76f5933a 1812
ab28bd23
PB
1813 rcu_register_thread();
1814
89a02a9f 1815 qemu_savevm_state_header(s->to_dst_file);
1d34e4bf 1816
0425dc97 1817 if (s->to_dst_file) {
1d34e4bf 1818 /* Now tell the dest that it should open its end so it can reply */
89a02a9f 1819 qemu_savevm_send_open_return_path(s->to_dst_file);
1d34e4bf
DDAG
1820
1821 /* And do a ping that will make stuff easier to debug */
89a02a9f 1822 qemu_savevm_send_ping(s->to_dst_file, 1);
0425dc97 1823 }
1d34e4bf 1824
0425dc97 1825 if (migrate_postcopy_ram()) {
1d34e4bf
DDAG
1826 /*
1827 * Tell the destination that we *might* want to do postcopy later;
1828 * if the other end can't do postcopy it should fail now, nice and
1829 * early.
1830 */
89a02a9f 1831 qemu_savevm_send_postcopy_advise(s->to_dst_file);
1d34e4bf
DDAG
1832 }
1833
a0762d9e 1834 qemu_savevm_state_begin(s->to_dst_file);
0d82d0e8 1835
bc72ad67 1836 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
48781e5b
HZ
1837 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1838 MIGRATION_STATUS_ACTIVE);
29ae8a41 1839
9ec055ae
DDAG
1840 trace_migration_thread_setup_complete();
1841
1842 while (s->state == MIGRATION_STATUS_ACTIVE ||
1843 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
a3e879cd 1844 int64_t current_time;
c369f40d 1845 uint64_t pending_size;
0d82d0e8 1846
89a02a9f 1847 if (!qemu_file_rate_limit(s->to_dst_file)) {
c31b098f
DDAG
1848 uint64_t pend_post, pend_nonpost;
1849
faec066a
PX
1850 qemu_savevm_state_pending(s->to_dst_file, threshold_size,
1851 &pend_nonpost, &pend_post);
c31b098f 1852 pending_size = pend_nonpost + pend_post;
faec066a 1853 trace_migrate_pending(pending_size, threshold_size,
c31b098f 1854 pend_post, pend_nonpost);
faec066a 1855 if (pending_size && pending_size >= threshold_size) {
1d34e4bf
DDAG
1856 /* Still a significant amount to transfer */
1857
1d34e4bf
DDAG
1858 if (migrate_postcopy_ram() &&
1859 s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE &&
faec066a 1860 pend_nonpost <= threshold_size &&
1d34e4bf
DDAG
1861 atomic_read(&s->start_postcopy)) {
1862
1863 if (!postcopy_start(s, &old_vm_running)) {
1864 current_active_state = MIGRATION_STATUS_POSTCOPY_ACTIVE;
1865 entered_postcopy = true;
1866 }
1867
1868 continue;
1869 }
1870 /* Just another iteration step */
89a02a9f 1871 qemu_savevm_state_iterate(s->to_dst_file, entered_postcopy);
c369f40d 1872 } else {
09f6c85e 1873 trace_migration_thread_low_pending(pending_size);
1d34e4bf 1874 migration_completion(s, current_active_state,
36f48567 1875 &old_vm_running, &start_time);
09f6c85e 1876 break;
c369f40d
JQ
1877 }
1878 }
f4410a5d 1879
89a02a9f 1880 if (qemu_file_get_error(s->to_dst_file)) {
48781e5b
HZ
1881 migrate_set_state(&s->state, current_active_state,
1882 MIGRATION_STATUS_FAILED);
1d34e4bf 1883 trace_migration_thread_file_err();
fd45ee2c
PB
1884 break;
1885 }
bc72ad67 1886 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
0d82d0e8 1887 if (current_time >= initial_time + BUFFER_DELAY) {
89a02a9f
HZ
1888 uint64_t transferred_bytes = qemu_ftell(s->to_dst_file) -
1889 initial_bytes;
77417f10 1890 uint64_t time_spent = current_time - initial_time;
a694ee34 1891 double bandwidth = (double)transferred_bytes / time_spent;
faec066a 1892 threshold_size = bandwidth * s->parameters.downtime_limit;
0d82d0e8 1893
5b648de0
WY
1894 s->mbps = (((double) transferred_bytes * 8.0) /
1895 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
7e114f8c 1896
9013dca5 1897 trace_migrate_transferred(transferred_bytes, time_spent,
faec066a 1898 bandwidth, threshold_size);
90f8ae72
JQ
1899 /* if we haven't sent anything, we don't want to recalculate
1900 10000 is a small enough number for our purposes */
9360447d
JQ
1901 if (ram_counters.dirty_pages_rate && transferred_bytes > 10000) {
1902 s->expected_downtime = ram_counters.dirty_pages_rate *
20afaed9 1903 qemu_target_page_size() / bandwidth;
90f8ae72 1904 }
0d82d0e8 1905
89a02a9f 1906 qemu_file_reset_rate_limit(s->to_dst_file);
0d82d0e8 1907 initial_time = current_time;
89a02a9f 1908 initial_bytes = qemu_ftell(s->to_dst_file);
0d82d0e8 1909 }
89a02a9f 1910 if (qemu_file_rate_limit(s->to_dst_file)) {
0d82d0e8
JQ
1911 /* usleep expects microseconds */
1912 g_usleep((initial_time + BUFFER_DELAY - current_time)*1000);
1913 }
a3fa1d78
PB
1914 }
1915
1d34e4bf 1916 trace_migration_thread_after_loop();
070afca2
JH
1917 /* If we enabled cpu throttling for auto-converge, turn it off. */
1918 cpu_throttle_stop();
94f5a437 1919 end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
070afca2 1920
f4410a5d 1921 qemu_mutex_lock_iothread();
0b827d5e
HZ
1922 /*
1923 * The resource has been allocated by migration will be reused in COLO
1924 * process, so don't release them.
1925 */
1926 if (!enable_colo) {
1927 qemu_savevm_state_cleanup();
1928 }
31194731 1929 if (s->state == MIGRATION_STATUS_COMPLETED) {
89a02a9f 1930 uint64_t transferred_bytes = qemu_ftell(s->to_dst_file);
a3fa1d78 1931 s->total_time = end_time - s->total_time;
1d34e4bf
DDAG
1932 if (!entered_postcopy) {
1933 s->downtime = end_time - start_time;
1934 }
d6ed7312
PL
1935 if (s->total_time) {
1936 s->mbps = (((double) transferred_bytes * 8.0) /
1937 ((double) s->total_time)) / 1000;
1938 }
a3fa1d78
PB
1939 runstate_set(RUN_STATE_POSTMIGRATE);
1940 } else {
0b827d5e
HZ
1941 if (s->state == MIGRATION_STATUS_ACTIVE && enable_colo) {
1942 migrate_start_colo_process(s);
1943 qemu_savevm_state_cleanup();
1944 /*
1945 * Fixme: we will run VM in COLO no matter its old running state.
1946 * After exited COLO, we will keep running.
1947 */
1948 old_vm_running = true;
1949 }
1d34e4bf 1950 if (old_vm_running && !entered_postcopy) {
a3fa1d78 1951 vm_start();
42da5550
DDAG
1952 } else {
1953 if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
1954 runstate_set(RUN_STATE_POSTMIGRATE);
1955 }
dba433c0 1956 }
0d82d0e8 1957 }
bb1fadc4 1958 qemu_bh_schedule(s->cleanup_bh);
dba433c0 1959 qemu_mutex_unlock_iothread();
f4410a5d 1960
ab28bd23 1961 rcu_unregister_thread();
0d82d0e8
JQ
1962 return NULL;
1963}
1964
9848a404 1965void migrate_fd_connect(MigrationState *s)
0d82d0e8 1966{
2ff30257 1967 s->expected_downtime = s->parameters.downtime_limit;
bb1fadc4 1968 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
0d82d0e8 1969
9e4d2b98 1970 qemu_file_set_blocking(s->to_dst_file, true);
89a02a9f 1971 qemu_file_set_rate_limit(s->to_dst_file,
2ff30257 1972 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
442773ce 1973
9287ac27
SH
1974 /* Notify before starting migration thread */
1975 notifier_list_notify(&migration_state_notifiers, s);
1976
1d34e4bf
DDAG
1977 /*
1978 * Open the return path; currently for postcopy but other things might
1979 * also want it.
1980 */
1981 if (migrate_postcopy_ram()) {
1982 if (open_return_path_on_source(s)) {
1983 error_report("Unable to open return-path for postcopy");
48781e5b 1984 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1d34e4bf
DDAG
1985 MIGRATION_STATUS_FAILED);
1986 migrate_fd_cleanup(s);
1987 return;
1988 }
1989 }
1990
8706d2d5 1991 migrate_compress_threads_create();
009fad7f 1992 qemu_thread_create(&s->thread, "live_migration", migration_thread, s,
bb1fadc4 1993 QEMU_THREAD_JOINABLE);
1d34e4bf 1994 s->migration_thread_running = true;
0d82d0e8 1995}
093e3c42 1996