]> git.proxmox.com Git - mirror_qemu.git/blob - migration/migration.c
Merge remote-tracking branch 'remotes/stefanberger/tags/pull-tpm-2018-03-07-1' into...
[mirror_qemu.git] / migration / migration.c
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 *
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.
14 */
15
16 #include "qemu/osdep.h"
17 #include "qemu/cutils.h"
18 #include "qemu/error-report.h"
19 #include "migration/blocker.h"
20 #include "exec.h"
21 #include "fd.h"
22 #include "socket.h"
23 #include "rdma.h"
24 #include "ram.h"
25 #include "migration/global_state.h"
26 #include "migration/misc.h"
27 #include "migration.h"
28 #include "savevm.h"
29 #include "qemu-file-channel.h"
30 #include "qemu-file.h"
31 #include "migration/vmstate.h"
32 #include "block/block.h"
33 #include "qapi/error.h"
34 #include "qapi/qapi-commands-migration.h"
35 #include "qapi/qapi-events-migration.h"
36 #include "qapi/qmp/qerror.h"
37 #include "qapi/qmp/qnull.h"
38 #include "qemu/rcu.h"
39 #include "block.h"
40 #include "postcopy-ram.h"
41 #include "qemu/thread.h"
42 #include "trace.h"
43 #include "exec/target_page.h"
44 #include "io/channel-buffer.h"
45 #include "migration/colo.h"
46 #include "hw/boards.h"
47 #include "monitor/monitor.h"
48
49 #define MAX_THROTTLE (32 << 20) /* Migration transfer speed throttling */
50
51 /* Amount of time to allocate to each "chunk" of bandwidth-throttled
52 * data. */
53 #define BUFFER_DELAY 100
54 #define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)
55
56 /* Time in milliseconds we are allowed to stop the source,
57 * for sending the last part */
58 #define DEFAULT_MIGRATE_SET_DOWNTIME 300
59
60 /* Maximum migrate downtime set to 2000 seconds */
61 #define MAX_MIGRATE_DOWNTIME_SECONDS 2000
62 #define MAX_MIGRATE_DOWNTIME (MAX_MIGRATE_DOWNTIME_SECONDS * 1000)
63
64 /* Default compression thread count */
65 #define DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT 8
66 /* Default decompression thread count, usually decompression is at
67 * least 4 times as fast as compression.*/
68 #define DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT 2
69 /*0: means nocompress, 1: best speed, ... 9: best compress ratio */
70 #define DEFAULT_MIGRATE_COMPRESS_LEVEL 1
71 /* Define default autoconverge cpu throttle migration parameters */
72 #define DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL 20
73 #define DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT 10
74
75 /* Migration XBZRLE default cache size */
76 #define DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE (64 * 1024 * 1024)
77
78 /* The delay time (in ms) between two COLO checkpoints
79 * Note: Please change this default value to 10000 when we support hybrid mode.
80 */
81 #define DEFAULT_MIGRATE_X_CHECKPOINT_DELAY 200
82 #define DEFAULT_MIGRATE_MULTIFD_CHANNELS 2
83 #define DEFAULT_MIGRATE_MULTIFD_PAGE_COUNT 16
84
85 static NotifierList migration_state_notifiers =
86 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
87
88 static bool deferred_incoming;
89
90 /* Messages sent on the return path from destination to source */
91 enum mig_rp_message_type {
92 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
93 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
94 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
95
96 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
97 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
98
99 MIG_RP_MSG_MAX
100 };
101
102 /* When we add fault tolerance, we could have several
103 migrations at once. For now we don't need to add
104 dynamic creation of migration */
105
106 static MigrationState *current_migration;
107
108 static bool migration_object_check(MigrationState *ms, Error **errp);
109 static int migration_maybe_pause(MigrationState *s,
110 int *current_active_state,
111 int new_state);
112
113 void migration_object_init(void)
114 {
115 MachineState *ms = MACHINE(qdev_get_machine());
116 Error *err = NULL;
117
118 /* This can only be called once. */
119 assert(!current_migration);
120 current_migration = MIGRATION_OBJ(object_new(TYPE_MIGRATION));
121
122 if (!migration_object_check(current_migration, &err)) {
123 error_report_err(err);
124 exit(1);
125 }
126
127 /*
128 * We cannot really do this in migration_instance_init() since at
129 * that time global properties are not yet applied, then this
130 * value will be definitely replaced by something else.
131 */
132 if (ms->enforce_config_section) {
133 current_migration->send_configuration = true;
134 }
135 }
136
137 void migration_object_finalize(void)
138 {
139 object_unref(OBJECT(current_migration));
140 }
141
142 /* For outgoing */
143 MigrationState *migrate_get_current(void)
144 {
145 /* This can only be called after the object created. */
146 assert(current_migration);
147 return current_migration;
148 }
149
150 MigrationIncomingState *migration_incoming_get_current(void)
151 {
152 static bool once;
153 static MigrationIncomingState mis_current;
154
155 if (!once) {
156 mis_current.state = MIGRATION_STATUS_NONE;
157 memset(&mis_current, 0, sizeof(MigrationIncomingState));
158 qemu_mutex_init(&mis_current.rp_mutex);
159 qemu_event_init(&mis_current.main_thread_load_event, false);
160 once = true;
161 }
162 return &mis_current;
163 }
164
165 void migration_incoming_state_destroy(void)
166 {
167 struct MigrationIncomingState *mis = migration_incoming_get_current();
168
169 if (mis->to_src_file) {
170 /* Tell source that we are done */
171 migrate_send_rp_shut(mis, qemu_file_get_error(mis->from_src_file) != 0);
172 qemu_fclose(mis->to_src_file);
173 mis->to_src_file = NULL;
174 }
175
176 if (mis->from_src_file) {
177 qemu_fclose(mis->from_src_file);
178 mis->from_src_file = NULL;
179 }
180
181 qemu_event_reset(&mis->main_thread_load_event);
182 }
183
184 static void migrate_generate_event(int new_state)
185 {
186 if (migrate_use_events()) {
187 qapi_event_send_migration(new_state, &error_abort);
188 }
189 }
190
191 /*
192 * Called on -incoming with a defer: uri.
193 * The migration can be started later after any parameters have been
194 * changed.
195 */
196 static void deferred_incoming_migration(Error **errp)
197 {
198 if (deferred_incoming) {
199 error_setg(errp, "Incoming migration already deferred");
200 }
201 deferred_incoming = true;
202 }
203
204 /*
205 * Send a message on the return channel back to the source
206 * of the migration.
207 */
208 static int migrate_send_rp_message(MigrationIncomingState *mis,
209 enum mig_rp_message_type message_type,
210 uint16_t len, void *data)
211 {
212 int ret = 0;
213
214 trace_migrate_send_rp_message((int)message_type, len);
215 qemu_mutex_lock(&mis->rp_mutex);
216
217 /*
218 * It's possible that the file handle got lost due to network
219 * failures.
220 */
221 if (!mis->to_src_file) {
222 ret = -EIO;
223 goto error;
224 }
225
226 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
227 qemu_put_be16(mis->to_src_file, len);
228 qemu_put_buffer(mis->to_src_file, data, len);
229 qemu_fflush(mis->to_src_file);
230
231 /* It's possible that qemu file got error during sending */
232 ret = qemu_file_get_error(mis->to_src_file);
233
234 error:
235 qemu_mutex_unlock(&mis->rp_mutex);
236 return ret;
237 }
238
239 /* Request a range of pages from the source VM at the given
240 * start address.
241 * rbname: Name of the RAMBlock to request the page in, if NULL it's the same
242 * as the last request (a name must have been given previously)
243 * Start: Address offset within the RB
244 * Len: Length in bytes required - must be a multiple of pagesize
245 */
246 int migrate_send_rp_req_pages(MigrationIncomingState *mis, const char *rbname,
247 ram_addr_t start, size_t len)
248 {
249 uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
250 size_t msglen = 12; /* start + len */
251 enum mig_rp_message_type msg_type;
252
253 *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
254 *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
255
256 if (rbname) {
257 int rbname_len = strlen(rbname);
258 assert(rbname_len < 256);
259
260 bufc[msglen++] = rbname_len;
261 memcpy(bufc + msglen, rbname, rbname_len);
262 msglen += rbname_len;
263 msg_type = MIG_RP_MSG_REQ_PAGES_ID;
264 } else {
265 msg_type = MIG_RP_MSG_REQ_PAGES;
266 }
267
268 return migrate_send_rp_message(mis, msg_type, msglen, bufc);
269 }
270
271 void qemu_start_incoming_migration(const char *uri, Error **errp)
272 {
273 const char *p;
274
275 qapi_event_send_migration(MIGRATION_STATUS_SETUP, &error_abort);
276 if (!strcmp(uri, "defer")) {
277 deferred_incoming_migration(errp);
278 } else if (strstart(uri, "tcp:", &p)) {
279 tcp_start_incoming_migration(p, errp);
280 #ifdef CONFIG_RDMA
281 } else if (strstart(uri, "rdma:", &p)) {
282 rdma_start_incoming_migration(p, errp);
283 #endif
284 } else if (strstart(uri, "exec:", &p)) {
285 exec_start_incoming_migration(p, errp);
286 } else if (strstart(uri, "unix:", &p)) {
287 unix_start_incoming_migration(p, errp);
288 } else if (strstart(uri, "fd:", &p)) {
289 fd_start_incoming_migration(p, errp);
290 } else {
291 error_setg(errp, "unknown migration protocol: %s", uri);
292 }
293 }
294
295 static void process_incoming_migration_bh(void *opaque)
296 {
297 Error *local_err = NULL;
298 MigrationIncomingState *mis = opaque;
299
300 /* Make sure all file formats flush their mutable metadata.
301 * If we get an error here, just don't restart the VM yet. */
302 bdrv_invalidate_cache_all(&local_err);
303 if (local_err) {
304 error_report_err(local_err);
305 local_err = NULL;
306 autostart = false;
307 }
308
309 /*
310 * This must happen after all error conditions are dealt with and
311 * we're sure the VM is going to be running on this host.
312 */
313 qemu_announce_self();
314
315 if (multifd_load_cleanup(&local_err) != 0) {
316 error_report_err(local_err);
317 autostart = false;
318 }
319 /* If global state section was not received or we are in running
320 state, we need to obey autostart. Any other state is set with
321 runstate_set. */
322
323 if (!global_state_received() ||
324 global_state_get_runstate() == RUN_STATE_RUNNING) {
325 if (autostart) {
326 vm_start();
327 } else {
328 runstate_set(RUN_STATE_PAUSED);
329 }
330 } else {
331 runstate_set(global_state_get_runstate());
332 }
333 /*
334 * This must happen after any state changes since as soon as an external
335 * observer sees this event they might start to prod at the VM assuming
336 * it's ready to use.
337 */
338 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
339 MIGRATION_STATUS_COMPLETED);
340 qemu_bh_delete(mis->bh);
341 migration_incoming_state_destroy();
342 }
343
344 static void process_incoming_migration_co(void *opaque)
345 {
346 MigrationIncomingState *mis = migration_incoming_get_current();
347 PostcopyState ps;
348 int ret;
349
350 assert(mis->from_src_file);
351 mis->largest_page_size = qemu_ram_pagesize_largest();
352 postcopy_state_set(POSTCOPY_INCOMING_NONE);
353 migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
354 MIGRATION_STATUS_ACTIVE);
355 ret = qemu_loadvm_state(mis->from_src_file);
356
357 ps = postcopy_state_get();
358 trace_process_incoming_migration_co_end(ret, ps);
359 if (ps != POSTCOPY_INCOMING_NONE) {
360 if (ps == POSTCOPY_INCOMING_ADVISE) {
361 /*
362 * Where a migration had postcopy enabled (and thus went to advise)
363 * but managed to complete within the precopy period, we can use
364 * the normal exit.
365 */
366 postcopy_ram_incoming_cleanup(mis);
367 } else if (ret >= 0) {
368 /*
369 * Postcopy was started, cleanup should happen at the end of the
370 * postcopy thread.
371 */
372 trace_process_incoming_migration_co_postcopy_end_main();
373 return;
374 }
375 /* Else if something went wrong then just fall out of the normal exit */
376 }
377
378 /* we get COLO info, and know if we are in COLO mode */
379 if (!ret && migration_incoming_enable_colo()) {
380 mis->migration_incoming_co = qemu_coroutine_self();
381 qemu_thread_create(&mis->colo_incoming_thread, "COLO incoming",
382 colo_process_incoming_thread, mis, QEMU_THREAD_JOINABLE);
383 mis->have_colo_incoming_thread = true;
384 qemu_coroutine_yield();
385
386 /* Wait checkpoint incoming thread exit before free resource */
387 qemu_thread_join(&mis->colo_incoming_thread);
388 }
389
390 if (ret < 0) {
391 Error *local_err = NULL;
392
393 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
394 MIGRATION_STATUS_FAILED);
395 error_report("load of migration failed: %s", strerror(-ret));
396 qemu_fclose(mis->from_src_file);
397 if (multifd_load_cleanup(&local_err) != 0) {
398 error_report_err(local_err);
399 }
400 exit(EXIT_FAILURE);
401 }
402 mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
403 qemu_bh_schedule(mis->bh);
404 }
405
406 static void migration_incoming_setup(QEMUFile *f)
407 {
408 MigrationIncomingState *mis = migration_incoming_get_current();
409
410 if (multifd_load_setup() != 0) {
411 /* We haven't been able to create multifd threads
412 nothing better to do */
413 exit(EXIT_FAILURE);
414 }
415
416 if (!mis->from_src_file) {
417 mis->from_src_file = f;
418 }
419 qemu_file_set_blocking(f, false);
420 }
421
422 static void migration_incoming_process(void)
423 {
424 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL);
425 qemu_coroutine_enter(co);
426 }
427
428 void migration_fd_process_incoming(QEMUFile *f)
429 {
430 migration_incoming_setup(f);
431 migration_incoming_process();
432 }
433
434 void migration_ioc_process_incoming(QIOChannel *ioc)
435 {
436 MigrationIncomingState *mis = migration_incoming_get_current();
437
438 if (!mis->from_src_file) {
439 QEMUFile *f = qemu_fopen_channel_input(ioc);
440 migration_fd_process_incoming(f);
441 }
442 /* We still only have a single channel. Nothing to do here yet */
443 }
444
445 /**
446 * @migration_has_all_channels: We have received all channels that we need
447 *
448 * Returns true when we have got connections to all the channels that
449 * we need for migration.
450 */
451 bool migration_has_all_channels(void)
452 {
453 return true;
454 }
455
456 /*
457 * Send a 'SHUT' message on the return channel with the given value
458 * to indicate that we've finished with the RP. Non-0 value indicates
459 * error.
460 */
461 void migrate_send_rp_shut(MigrationIncomingState *mis,
462 uint32_t value)
463 {
464 uint32_t buf;
465
466 buf = cpu_to_be32(value);
467 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
468 }
469
470 /*
471 * Send a 'PONG' message on the return channel with the given value
472 * (normally in response to a 'PING')
473 */
474 void migrate_send_rp_pong(MigrationIncomingState *mis,
475 uint32_t value)
476 {
477 uint32_t buf;
478
479 buf = cpu_to_be32(value);
480 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
481 }
482
483 MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
484 {
485 MigrationCapabilityStatusList *head = NULL;
486 MigrationCapabilityStatusList *caps;
487 MigrationState *s = migrate_get_current();
488 int i;
489
490 caps = NULL; /* silence compiler warning */
491 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
492 #ifndef CONFIG_LIVE_BLOCK_MIGRATION
493 if (i == MIGRATION_CAPABILITY_BLOCK) {
494 continue;
495 }
496 #endif
497 if (head == NULL) {
498 head = g_malloc0(sizeof(*caps));
499 caps = head;
500 } else {
501 caps->next = g_malloc0(sizeof(*caps));
502 caps = caps->next;
503 }
504 caps->value =
505 g_malloc(sizeof(*caps->value));
506 caps->value->capability = i;
507 caps->value->state = s->enabled_capabilities[i];
508 }
509
510 return head;
511 }
512
513 MigrationParameters *qmp_query_migrate_parameters(Error **errp)
514 {
515 MigrationParameters *params;
516 MigrationState *s = migrate_get_current();
517
518 /* TODO use QAPI_CLONE() instead of duplicating it inline */
519 params = g_malloc0(sizeof(*params));
520 params->has_compress_level = true;
521 params->compress_level = s->parameters.compress_level;
522 params->has_compress_threads = true;
523 params->compress_threads = s->parameters.compress_threads;
524 params->has_decompress_threads = true;
525 params->decompress_threads = s->parameters.decompress_threads;
526 params->has_cpu_throttle_initial = true;
527 params->cpu_throttle_initial = s->parameters.cpu_throttle_initial;
528 params->has_cpu_throttle_increment = true;
529 params->cpu_throttle_increment = s->parameters.cpu_throttle_increment;
530 params->has_tls_creds = true;
531 params->tls_creds = g_strdup(s->parameters.tls_creds);
532 params->has_tls_hostname = true;
533 params->tls_hostname = g_strdup(s->parameters.tls_hostname);
534 params->has_max_bandwidth = true;
535 params->max_bandwidth = s->parameters.max_bandwidth;
536 params->has_downtime_limit = true;
537 params->downtime_limit = s->parameters.downtime_limit;
538 params->has_x_checkpoint_delay = true;
539 params->x_checkpoint_delay = s->parameters.x_checkpoint_delay;
540 params->has_block_incremental = true;
541 params->block_incremental = s->parameters.block_incremental;
542 params->has_x_multifd_channels = true;
543 params->x_multifd_channels = s->parameters.x_multifd_channels;
544 params->has_x_multifd_page_count = true;
545 params->x_multifd_page_count = s->parameters.x_multifd_page_count;
546 params->has_xbzrle_cache_size = true;
547 params->xbzrle_cache_size = s->parameters.xbzrle_cache_size;
548
549 return params;
550 }
551
552 /*
553 * Return true if we're already in the middle of a migration
554 * (i.e. any of the active or setup states)
555 */
556 static bool migration_is_setup_or_active(int state)
557 {
558 switch (state) {
559 case MIGRATION_STATUS_ACTIVE:
560 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
561 case MIGRATION_STATUS_SETUP:
562 case MIGRATION_STATUS_PRE_SWITCHOVER:
563 case MIGRATION_STATUS_DEVICE:
564 return true;
565
566 default:
567 return false;
568
569 }
570 }
571
572 static void populate_ram_info(MigrationInfo *info, MigrationState *s)
573 {
574 info->has_ram = true;
575 info->ram = g_malloc0(sizeof(*info->ram));
576 info->ram->transferred = ram_counters.transferred;
577 info->ram->total = ram_bytes_total();
578 info->ram->duplicate = ram_counters.duplicate;
579 /* legacy value. It is not used anymore */
580 info->ram->skipped = 0;
581 info->ram->normal = ram_counters.normal;
582 info->ram->normal_bytes = ram_counters.normal *
583 qemu_target_page_size();
584 info->ram->mbps = s->mbps;
585 info->ram->dirty_sync_count = ram_counters.dirty_sync_count;
586 info->ram->postcopy_requests = ram_counters.postcopy_requests;
587 info->ram->page_size = qemu_target_page_size();
588
589 if (migrate_use_xbzrle()) {
590 info->has_xbzrle_cache = true;
591 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
592 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
593 info->xbzrle_cache->bytes = xbzrle_counters.bytes;
594 info->xbzrle_cache->pages = xbzrle_counters.pages;
595 info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss;
596 info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate;
597 info->xbzrle_cache->overflow = xbzrle_counters.overflow;
598 }
599
600 if (cpu_throttle_active()) {
601 info->has_cpu_throttle_percentage = true;
602 info->cpu_throttle_percentage = cpu_throttle_get_percentage();
603 }
604
605 if (s->state != MIGRATION_STATUS_COMPLETED) {
606 info->ram->remaining = ram_bytes_remaining();
607 info->ram->dirty_pages_rate = ram_counters.dirty_pages_rate;
608 }
609 }
610
611 static void populate_disk_info(MigrationInfo *info)
612 {
613 if (blk_mig_active()) {
614 info->has_disk = true;
615 info->disk = g_malloc0(sizeof(*info->disk));
616 info->disk->transferred = blk_mig_bytes_transferred();
617 info->disk->remaining = blk_mig_bytes_remaining();
618 info->disk->total = blk_mig_bytes_total();
619 }
620 }
621
622 MigrationInfo *qmp_query_migrate(Error **errp)
623 {
624 MigrationInfo *info = g_malloc0(sizeof(*info));
625 MigrationState *s = migrate_get_current();
626
627 switch (s->state) {
628 case MIGRATION_STATUS_NONE:
629 /* no migration has happened ever */
630 break;
631 case MIGRATION_STATUS_SETUP:
632 info->has_status = true;
633 info->has_total_time = false;
634 break;
635 case MIGRATION_STATUS_ACTIVE:
636 case MIGRATION_STATUS_CANCELLING:
637 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
638 case MIGRATION_STATUS_PRE_SWITCHOVER:
639 case MIGRATION_STATUS_DEVICE:
640 /* TODO add some postcopy stats */
641 info->has_status = true;
642 info->has_total_time = true;
643 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
644 - s->start_time;
645 info->has_expected_downtime = true;
646 info->expected_downtime = s->expected_downtime;
647 info->has_setup_time = true;
648 info->setup_time = s->setup_time;
649
650 populate_ram_info(info, s);
651 populate_disk_info(info);
652 break;
653 case MIGRATION_STATUS_COLO:
654 info->has_status = true;
655 /* TODO: display COLO specific information (checkpoint info etc.) */
656 break;
657 case MIGRATION_STATUS_COMPLETED:
658 info->has_status = true;
659 info->has_total_time = true;
660 info->total_time = s->total_time;
661 info->has_downtime = true;
662 info->downtime = s->downtime;
663 info->has_setup_time = true;
664 info->setup_time = s->setup_time;
665
666 populate_ram_info(info, s);
667 break;
668 case MIGRATION_STATUS_FAILED:
669 info->has_status = true;
670 if (s->error) {
671 info->has_error_desc = true;
672 info->error_desc = g_strdup(error_get_pretty(s->error));
673 }
674 break;
675 case MIGRATION_STATUS_CANCELLED:
676 info->has_status = true;
677 break;
678 }
679 info->status = s->state;
680
681 return info;
682 }
683
684 /**
685 * @migration_caps_check - check capability validity
686 *
687 * @cap_list: old capability list, array of bool
688 * @params: new capabilities to be applied soon
689 * @errp: set *errp if the check failed, with reason
690 *
691 * Returns true if check passed, otherwise false.
692 */
693 static bool migrate_caps_check(bool *cap_list,
694 MigrationCapabilityStatusList *params,
695 Error **errp)
696 {
697 MigrationCapabilityStatusList *cap;
698 bool old_postcopy_cap;
699 MigrationIncomingState *mis = migration_incoming_get_current();
700
701 old_postcopy_cap = cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM];
702
703 for (cap = params; cap; cap = cap->next) {
704 cap_list[cap->value->capability] = cap->value->state;
705 }
706
707 #ifndef CONFIG_LIVE_BLOCK_MIGRATION
708 if (cap_list[MIGRATION_CAPABILITY_BLOCK]) {
709 error_setg(errp, "QEMU compiled without old-style (blk/-b, inc/-i) "
710 "block migration");
711 error_append_hint(errp, "Use drive_mirror+NBD instead.\n");
712 return false;
713 }
714 #endif
715
716 if (cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM]) {
717 if (cap_list[MIGRATION_CAPABILITY_COMPRESS]) {
718 /* The decompression threads asynchronously write into RAM
719 * rather than use the atomic copies needed to avoid
720 * userfaulting. It should be possible to fix the decompression
721 * threads for compatibility in future.
722 */
723 error_setg(errp, "Postcopy is not currently compatible "
724 "with compression");
725 return false;
726 }
727
728 /* This check is reasonably expensive, so only when it's being
729 * set the first time, also it's only the destination that needs
730 * special support.
731 */
732 if (!old_postcopy_cap && runstate_check(RUN_STATE_INMIGRATE) &&
733 !postcopy_ram_supported_by_host(mis)) {
734 /* postcopy_ram_supported_by_host will have emitted a more
735 * detailed message
736 */
737 error_setg(errp, "Postcopy is not supported");
738 return false;
739 }
740 }
741
742 return true;
743 }
744
745 void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
746 Error **errp)
747 {
748 MigrationState *s = migrate_get_current();
749 MigrationCapabilityStatusList *cap;
750
751 if (migration_is_setup_or_active(s->state)) {
752 error_setg(errp, QERR_MIGRATION_ACTIVE);
753 return;
754 }
755
756 if (!migrate_caps_check(s->enabled_capabilities, params, errp)) {
757 return;
758 }
759
760 for (cap = params; cap; cap = cap->next) {
761 s->enabled_capabilities[cap->value->capability] = cap->value->state;
762 }
763 }
764
765 /*
766 * Check whether the parameters are valid. Error will be put into errp
767 * (if provided). Return true if valid, otherwise false.
768 */
769 static bool migrate_params_check(MigrationParameters *params, Error **errp)
770 {
771 if (params->has_compress_level &&
772 (params->compress_level > 9)) {
773 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
774 "is invalid, it should be in the range of 0 to 9");
775 return false;
776 }
777
778 if (params->has_compress_threads && (params->compress_threads < 1)) {
779 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
780 "compress_threads",
781 "is invalid, it should be in the range of 1 to 255");
782 return false;
783 }
784
785 if (params->has_decompress_threads && (params->decompress_threads < 1)) {
786 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
787 "decompress_threads",
788 "is invalid, it should be in the range of 1 to 255");
789 return false;
790 }
791
792 if (params->has_cpu_throttle_initial &&
793 (params->cpu_throttle_initial < 1 ||
794 params->cpu_throttle_initial > 99)) {
795 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
796 "cpu_throttle_initial",
797 "an integer in the range of 1 to 99");
798 return false;
799 }
800
801 if (params->has_cpu_throttle_increment &&
802 (params->cpu_throttle_increment < 1 ||
803 params->cpu_throttle_increment > 99)) {
804 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
805 "cpu_throttle_increment",
806 "an integer in the range of 1 to 99");
807 return false;
808 }
809
810 if (params->has_max_bandwidth && (params->max_bandwidth > SIZE_MAX)) {
811 error_setg(errp, "Parameter 'max_bandwidth' expects an integer in the"
812 " range of 0 to %zu bytes/second", SIZE_MAX);
813 return false;
814 }
815
816 if (params->has_downtime_limit &&
817 (params->downtime_limit > MAX_MIGRATE_DOWNTIME)) {
818 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
819 "the range of 0 to %d milliseconds",
820 MAX_MIGRATE_DOWNTIME);
821 return false;
822 }
823
824 /* x_checkpoint_delay is now always positive */
825
826 if (params->has_x_multifd_channels && (params->x_multifd_channels < 1)) {
827 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
828 "multifd_channels",
829 "is invalid, it should be in the range of 1 to 255");
830 return false;
831 }
832 if (params->has_x_multifd_page_count &&
833 (params->x_multifd_page_count < 1 ||
834 params->x_multifd_page_count > 10000)) {
835 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
836 "multifd_page_count",
837 "is invalid, it should be in the range of 1 to 10000");
838 return false;
839 }
840
841 if (params->has_xbzrle_cache_size &&
842 (params->xbzrle_cache_size < qemu_target_page_size() ||
843 !is_power_of_2(params->xbzrle_cache_size))) {
844 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
845 "xbzrle_cache_size",
846 "is invalid, it should be bigger than target page size"
847 " and a power of two");
848 return false;
849 }
850
851 return true;
852 }
853
854 static void migrate_params_test_apply(MigrateSetParameters *params,
855 MigrationParameters *dest)
856 {
857 *dest = migrate_get_current()->parameters;
858
859 /* TODO use QAPI_CLONE() instead of duplicating it inline */
860
861 if (params->has_compress_level) {
862 dest->compress_level = params->compress_level;
863 }
864
865 if (params->has_compress_threads) {
866 dest->compress_threads = params->compress_threads;
867 }
868
869 if (params->has_decompress_threads) {
870 dest->decompress_threads = params->decompress_threads;
871 }
872
873 if (params->has_cpu_throttle_initial) {
874 dest->cpu_throttle_initial = params->cpu_throttle_initial;
875 }
876
877 if (params->has_cpu_throttle_increment) {
878 dest->cpu_throttle_increment = params->cpu_throttle_increment;
879 }
880
881 if (params->has_tls_creds) {
882 assert(params->tls_creds->type == QTYPE_QSTRING);
883 dest->tls_creds = g_strdup(params->tls_creds->u.s);
884 }
885
886 if (params->has_tls_hostname) {
887 assert(params->tls_hostname->type == QTYPE_QSTRING);
888 dest->tls_hostname = g_strdup(params->tls_hostname->u.s);
889 }
890
891 if (params->has_max_bandwidth) {
892 dest->max_bandwidth = params->max_bandwidth;
893 }
894
895 if (params->has_downtime_limit) {
896 dest->downtime_limit = params->downtime_limit;
897 }
898
899 if (params->has_x_checkpoint_delay) {
900 dest->x_checkpoint_delay = params->x_checkpoint_delay;
901 }
902
903 if (params->has_block_incremental) {
904 dest->block_incremental = params->block_incremental;
905 }
906 if (params->has_x_multifd_channels) {
907 dest->x_multifd_channels = params->x_multifd_channels;
908 }
909 if (params->has_x_multifd_page_count) {
910 dest->x_multifd_page_count = params->x_multifd_page_count;
911 }
912 if (params->has_xbzrle_cache_size) {
913 dest->xbzrle_cache_size = params->xbzrle_cache_size;
914 }
915 }
916
917 static void migrate_params_apply(MigrateSetParameters *params, Error **errp)
918 {
919 MigrationState *s = migrate_get_current();
920
921 /* TODO use QAPI_CLONE() instead of duplicating it inline */
922
923 if (params->has_compress_level) {
924 s->parameters.compress_level = params->compress_level;
925 }
926
927 if (params->has_compress_threads) {
928 s->parameters.compress_threads = params->compress_threads;
929 }
930
931 if (params->has_decompress_threads) {
932 s->parameters.decompress_threads = params->decompress_threads;
933 }
934
935 if (params->has_cpu_throttle_initial) {
936 s->parameters.cpu_throttle_initial = params->cpu_throttle_initial;
937 }
938
939 if (params->has_cpu_throttle_increment) {
940 s->parameters.cpu_throttle_increment = params->cpu_throttle_increment;
941 }
942
943 if (params->has_tls_creds) {
944 g_free(s->parameters.tls_creds);
945 assert(params->tls_creds->type == QTYPE_QSTRING);
946 s->parameters.tls_creds = g_strdup(params->tls_creds->u.s);
947 }
948
949 if (params->has_tls_hostname) {
950 g_free(s->parameters.tls_hostname);
951 assert(params->tls_hostname->type == QTYPE_QSTRING);
952 s->parameters.tls_hostname = g_strdup(params->tls_hostname->u.s);
953 }
954
955 if (params->has_max_bandwidth) {
956 s->parameters.max_bandwidth = params->max_bandwidth;
957 if (s->to_dst_file) {
958 qemu_file_set_rate_limit(s->to_dst_file,
959 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
960 }
961 }
962
963 if (params->has_downtime_limit) {
964 s->parameters.downtime_limit = params->downtime_limit;
965 }
966
967 if (params->has_x_checkpoint_delay) {
968 s->parameters.x_checkpoint_delay = params->x_checkpoint_delay;
969 if (migration_in_colo_state()) {
970 colo_checkpoint_notify(s);
971 }
972 }
973
974 if (params->has_block_incremental) {
975 s->parameters.block_incremental = params->block_incremental;
976 }
977 if (params->has_x_multifd_channels) {
978 s->parameters.x_multifd_channels = params->x_multifd_channels;
979 }
980 if (params->has_x_multifd_page_count) {
981 s->parameters.x_multifd_page_count = params->x_multifd_page_count;
982 }
983 if (params->has_xbzrle_cache_size) {
984 s->parameters.xbzrle_cache_size = params->xbzrle_cache_size;
985 xbzrle_cache_resize(params->xbzrle_cache_size, errp);
986 }
987 }
988
989 void qmp_migrate_set_parameters(MigrateSetParameters *params, Error **errp)
990 {
991 MigrationParameters tmp;
992
993 /* TODO Rewrite "" to null instead */
994 if (params->has_tls_creds
995 && params->tls_creds->type == QTYPE_QNULL) {
996 QDECREF(params->tls_creds->u.n);
997 params->tls_creds->type = QTYPE_QSTRING;
998 params->tls_creds->u.s = strdup("");
999 }
1000 /* TODO Rewrite "" to null instead */
1001 if (params->has_tls_hostname
1002 && params->tls_hostname->type == QTYPE_QNULL) {
1003 QDECREF(params->tls_hostname->u.n);
1004 params->tls_hostname->type = QTYPE_QSTRING;
1005 params->tls_hostname->u.s = strdup("");
1006 }
1007
1008 migrate_params_test_apply(params, &tmp);
1009
1010 if (!migrate_params_check(&tmp, errp)) {
1011 /* Invalid parameter */
1012 return;
1013 }
1014
1015 migrate_params_apply(params, errp);
1016 }
1017
1018
1019 void qmp_migrate_start_postcopy(Error **errp)
1020 {
1021 MigrationState *s = migrate_get_current();
1022
1023 if (!migrate_postcopy_ram()) {
1024 error_setg(errp, "Enable postcopy with migrate_set_capability before"
1025 " the start of migration");
1026 return;
1027 }
1028
1029 if (s->state == MIGRATION_STATUS_NONE) {
1030 error_setg(errp, "Postcopy must be started after migration has been"
1031 " started");
1032 return;
1033 }
1034 /*
1035 * we don't error if migration has finished since that would be racy
1036 * with issuing this command.
1037 */
1038 atomic_set(&s->start_postcopy, true);
1039 }
1040
1041 /* shared migration helpers */
1042
1043 void migrate_set_state(int *state, int old_state, int new_state)
1044 {
1045 assert(new_state < MIGRATION_STATUS__MAX);
1046 if (atomic_cmpxchg(state, old_state, new_state) == old_state) {
1047 trace_migrate_set_state(MigrationStatus_str(new_state));
1048 migrate_generate_event(new_state);
1049 }
1050 }
1051
1052 static MigrationCapabilityStatusList *migrate_cap_add(
1053 MigrationCapabilityStatusList *list,
1054 MigrationCapability index,
1055 bool state)
1056 {
1057 MigrationCapabilityStatusList *cap;
1058
1059 cap = g_new0(MigrationCapabilityStatusList, 1);
1060 cap->value = g_new0(MigrationCapabilityStatus, 1);
1061 cap->value->capability = index;
1062 cap->value->state = state;
1063 cap->next = list;
1064
1065 return cap;
1066 }
1067
1068 void migrate_set_block_enabled(bool value, Error **errp)
1069 {
1070 MigrationCapabilityStatusList *cap;
1071
1072 cap = migrate_cap_add(NULL, MIGRATION_CAPABILITY_BLOCK, value);
1073 qmp_migrate_set_capabilities(cap, errp);
1074 qapi_free_MigrationCapabilityStatusList(cap);
1075 }
1076
1077 static void migrate_set_block_incremental(MigrationState *s, bool value)
1078 {
1079 s->parameters.block_incremental = value;
1080 }
1081
1082 static void block_cleanup_parameters(MigrationState *s)
1083 {
1084 if (s->must_remove_block_options) {
1085 /* setting to false can never fail */
1086 migrate_set_block_enabled(false, &error_abort);
1087 migrate_set_block_incremental(s, false);
1088 s->must_remove_block_options = false;
1089 }
1090 }
1091
1092 static void migrate_fd_cleanup(void *opaque)
1093 {
1094 MigrationState *s = opaque;
1095
1096 qemu_bh_delete(s->cleanup_bh);
1097 s->cleanup_bh = NULL;
1098
1099 qemu_savevm_state_cleanup();
1100
1101 if (s->to_dst_file) {
1102 Error *local_err = NULL;
1103
1104 trace_migrate_fd_cleanup();
1105 qemu_mutex_unlock_iothread();
1106 if (s->migration_thread_running) {
1107 qemu_thread_join(&s->thread);
1108 s->migration_thread_running = false;
1109 }
1110 qemu_mutex_lock_iothread();
1111
1112 if (multifd_save_cleanup(&local_err) != 0) {
1113 error_report_err(local_err);
1114 }
1115 qemu_fclose(s->to_dst_file);
1116 s->to_dst_file = NULL;
1117 }
1118
1119 assert((s->state != MIGRATION_STATUS_ACTIVE) &&
1120 (s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE));
1121
1122 if (s->state == MIGRATION_STATUS_CANCELLING) {
1123 migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
1124 MIGRATION_STATUS_CANCELLED);
1125 }
1126
1127 if (s->error) {
1128 /* It is used on info migrate. We can't free it */
1129 error_report_err(error_copy(s->error));
1130 }
1131 notifier_list_notify(&migration_state_notifiers, s);
1132 block_cleanup_parameters(s);
1133 }
1134
1135 void migrate_set_error(MigrationState *s, const Error *error)
1136 {
1137 qemu_mutex_lock(&s->error_mutex);
1138 if (!s->error) {
1139 s->error = error_copy(error);
1140 }
1141 qemu_mutex_unlock(&s->error_mutex);
1142 }
1143
1144 void migrate_fd_error(MigrationState *s, const Error *error)
1145 {
1146 trace_migrate_fd_error(error_get_pretty(error));
1147 assert(s->to_dst_file == NULL);
1148 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1149 MIGRATION_STATUS_FAILED);
1150 migrate_set_error(s, error);
1151 }
1152
1153 static void migrate_fd_cancel(MigrationState *s)
1154 {
1155 int old_state ;
1156 QEMUFile *f = migrate_get_current()->to_dst_file;
1157 trace_migrate_fd_cancel();
1158
1159 if (s->rp_state.from_dst_file) {
1160 /* shutdown the rp socket, so causing the rp thread to shutdown */
1161 qemu_file_shutdown(s->rp_state.from_dst_file);
1162 }
1163
1164 do {
1165 old_state = s->state;
1166 if (!migration_is_setup_or_active(old_state)) {
1167 break;
1168 }
1169 /* If the migration is paused, kick it out of the pause */
1170 if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) {
1171 qemu_sem_post(&s->pause_sem);
1172 }
1173 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
1174 } while (s->state != MIGRATION_STATUS_CANCELLING);
1175
1176 /*
1177 * If we're unlucky the migration code might be stuck somewhere in a
1178 * send/write while the network has failed and is waiting to timeout;
1179 * if we've got shutdown(2) available then we can force it to quit.
1180 * The outgoing qemu file gets closed in migrate_fd_cleanup that is
1181 * called in a bh, so there is no race against this cancel.
1182 */
1183 if (s->state == MIGRATION_STATUS_CANCELLING && f) {
1184 qemu_file_shutdown(f);
1185 }
1186 if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
1187 Error *local_err = NULL;
1188
1189 bdrv_invalidate_cache_all(&local_err);
1190 if (local_err) {
1191 error_report_err(local_err);
1192 } else {
1193 s->block_inactive = false;
1194 }
1195 }
1196 }
1197
1198 void add_migration_state_change_notifier(Notifier *notify)
1199 {
1200 notifier_list_add(&migration_state_notifiers, notify);
1201 }
1202
1203 void remove_migration_state_change_notifier(Notifier *notify)
1204 {
1205 notifier_remove(notify);
1206 }
1207
1208 bool migration_in_setup(MigrationState *s)
1209 {
1210 return s->state == MIGRATION_STATUS_SETUP;
1211 }
1212
1213 bool migration_has_finished(MigrationState *s)
1214 {
1215 return s->state == MIGRATION_STATUS_COMPLETED;
1216 }
1217
1218 bool migration_has_failed(MigrationState *s)
1219 {
1220 return (s->state == MIGRATION_STATUS_CANCELLED ||
1221 s->state == MIGRATION_STATUS_FAILED);
1222 }
1223
1224 bool migration_in_postcopy(void)
1225 {
1226 MigrationState *s = migrate_get_current();
1227
1228 return (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
1229 }
1230
1231 bool migration_in_postcopy_after_devices(MigrationState *s)
1232 {
1233 return migration_in_postcopy() && s->postcopy_after_devices;
1234 }
1235
1236 bool migration_is_idle(void)
1237 {
1238 MigrationState *s = migrate_get_current();
1239
1240 switch (s->state) {
1241 case MIGRATION_STATUS_NONE:
1242 case MIGRATION_STATUS_CANCELLED:
1243 case MIGRATION_STATUS_COMPLETED:
1244 case MIGRATION_STATUS_FAILED:
1245 return true;
1246 case MIGRATION_STATUS_SETUP:
1247 case MIGRATION_STATUS_CANCELLING:
1248 case MIGRATION_STATUS_ACTIVE:
1249 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1250 case MIGRATION_STATUS_COLO:
1251 case MIGRATION_STATUS_PRE_SWITCHOVER:
1252 case MIGRATION_STATUS_DEVICE:
1253 return false;
1254 case MIGRATION_STATUS__MAX:
1255 g_assert_not_reached();
1256 }
1257
1258 return false;
1259 }
1260
1261 void migrate_init(MigrationState *s)
1262 {
1263 /*
1264 * Reinitialise all migration state, except
1265 * parameters/capabilities that the user set, and
1266 * locks.
1267 */
1268 s->bytes_xfer = 0;
1269 s->xfer_limit = 0;
1270 s->cleanup_bh = 0;
1271 s->to_dst_file = NULL;
1272 s->state = MIGRATION_STATUS_NONE;
1273 s->rp_state.from_dst_file = NULL;
1274 s->rp_state.error = false;
1275 s->mbps = 0.0;
1276 s->downtime = 0;
1277 s->expected_downtime = 0;
1278 s->setup_time = 0;
1279 s->start_postcopy = false;
1280 s->postcopy_after_devices = false;
1281 s->migration_thread_running = false;
1282 error_free(s->error);
1283 s->error = NULL;
1284
1285 migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
1286
1287 s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1288 s->total_time = 0;
1289 s->vm_was_running = false;
1290 s->iteration_initial_bytes = 0;
1291 s->threshold_size = 0;
1292 }
1293
1294 static GSList *migration_blockers;
1295
1296 int migrate_add_blocker(Error *reason, Error **errp)
1297 {
1298 if (migrate_get_current()->only_migratable) {
1299 error_propagate(errp, error_copy(reason));
1300 error_prepend(errp, "disallowing migration blocker "
1301 "(--only_migratable) for: ");
1302 return -EACCES;
1303 }
1304
1305 if (migration_is_idle()) {
1306 migration_blockers = g_slist_prepend(migration_blockers, reason);
1307 return 0;
1308 }
1309
1310 error_propagate(errp, error_copy(reason));
1311 error_prepend(errp, "disallowing migration blocker (migration in "
1312 "progress) for: ");
1313 return -EBUSY;
1314 }
1315
1316 void migrate_del_blocker(Error *reason)
1317 {
1318 migration_blockers = g_slist_remove(migration_blockers, reason);
1319 }
1320
1321 void qmp_migrate_incoming(const char *uri, Error **errp)
1322 {
1323 Error *local_err = NULL;
1324 static bool once = true;
1325
1326 if (!deferred_incoming) {
1327 error_setg(errp, "For use with '-incoming defer'");
1328 return;
1329 }
1330 if (!once) {
1331 error_setg(errp, "The incoming migration has already been started");
1332 }
1333
1334 qemu_start_incoming_migration(uri, &local_err);
1335
1336 if (local_err) {
1337 error_propagate(errp, local_err);
1338 return;
1339 }
1340
1341 once = false;
1342 }
1343
1344 bool migration_is_blocked(Error **errp)
1345 {
1346 if (qemu_savevm_state_blocked(errp)) {
1347 return true;
1348 }
1349
1350 if (migration_blockers) {
1351 error_propagate(errp, error_copy(migration_blockers->data));
1352 return true;
1353 }
1354
1355 return false;
1356 }
1357
1358 void qmp_migrate(const char *uri, bool has_blk, bool blk,
1359 bool has_inc, bool inc, bool has_detach, bool detach,
1360 Error **errp)
1361 {
1362 Error *local_err = NULL;
1363 MigrationState *s = migrate_get_current();
1364 const char *p;
1365
1366 if (migration_is_setup_or_active(s->state) ||
1367 s->state == MIGRATION_STATUS_CANCELLING ||
1368 s->state == MIGRATION_STATUS_COLO) {
1369 error_setg(errp, QERR_MIGRATION_ACTIVE);
1370 return;
1371 }
1372 if (runstate_check(RUN_STATE_INMIGRATE)) {
1373 error_setg(errp, "Guest is waiting for an incoming migration");
1374 return;
1375 }
1376
1377 if (migration_is_blocked(errp)) {
1378 return;
1379 }
1380
1381 if ((has_blk && blk) || (has_inc && inc)) {
1382 if (migrate_use_block() || migrate_use_block_incremental()) {
1383 error_setg(errp, "Command options are incompatible with "
1384 "current migration capabilities");
1385 return;
1386 }
1387 migrate_set_block_enabled(true, &local_err);
1388 if (local_err) {
1389 error_propagate(errp, local_err);
1390 return;
1391 }
1392 s->must_remove_block_options = true;
1393 }
1394
1395 if (has_inc && inc) {
1396 migrate_set_block_incremental(s, true);
1397 }
1398
1399 migrate_init(s);
1400
1401 if (strstart(uri, "tcp:", &p)) {
1402 tcp_start_outgoing_migration(s, p, &local_err);
1403 #ifdef CONFIG_RDMA
1404 } else if (strstart(uri, "rdma:", &p)) {
1405 rdma_start_outgoing_migration(s, p, &local_err);
1406 #endif
1407 } else if (strstart(uri, "exec:", &p)) {
1408 exec_start_outgoing_migration(s, p, &local_err);
1409 } else if (strstart(uri, "unix:", &p)) {
1410 unix_start_outgoing_migration(s, p, &local_err);
1411 } else if (strstart(uri, "fd:", &p)) {
1412 fd_start_outgoing_migration(s, p, &local_err);
1413 } else {
1414 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
1415 "a valid migration protocol");
1416 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1417 MIGRATION_STATUS_FAILED);
1418 return;
1419 }
1420
1421 if (local_err) {
1422 migrate_fd_error(s, local_err);
1423 error_propagate(errp, local_err);
1424 return;
1425 }
1426 }
1427
1428 void qmp_migrate_cancel(Error **errp)
1429 {
1430 migrate_fd_cancel(migrate_get_current());
1431 }
1432
1433 void qmp_migrate_continue(MigrationStatus state, Error **errp)
1434 {
1435 MigrationState *s = migrate_get_current();
1436 if (s->state != state) {
1437 error_setg(errp, "Migration not in expected state: %s",
1438 MigrationStatus_str(s->state));
1439 return;
1440 }
1441 qemu_sem_post(&s->pause_sem);
1442 }
1443
1444 void qmp_migrate_set_cache_size(int64_t value, Error **errp)
1445 {
1446 MigrateSetParameters p = {
1447 .has_xbzrle_cache_size = true,
1448 .xbzrle_cache_size = value,
1449 };
1450
1451 qmp_migrate_set_parameters(&p, errp);
1452 }
1453
1454 int64_t qmp_query_migrate_cache_size(Error **errp)
1455 {
1456 return migrate_xbzrle_cache_size();
1457 }
1458
1459 void qmp_migrate_set_speed(int64_t value, Error **errp)
1460 {
1461 MigrateSetParameters p = {
1462 .has_max_bandwidth = true,
1463 .max_bandwidth = value,
1464 };
1465
1466 qmp_migrate_set_parameters(&p, errp);
1467 }
1468
1469 void qmp_migrate_set_downtime(double value, Error **errp)
1470 {
1471 if (value < 0 || value > MAX_MIGRATE_DOWNTIME_SECONDS) {
1472 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
1473 "the range of 0 to %d seconds",
1474 MAX_MIGRATE_DOWNTIME_SECONDS);
1475 return;
1476 }
1477
1478 value *= 1000; /* Convert to milliseconds */
1479 value = MAX(0, MIN(INT64_MAX, value));
1480
1481 MigrateSetParameters p = {
1482 .has_downtime_limit = true,
1483 .downtime_limit = value,
1484 };
1485
1486 qmp_migrate_set_parameters(&p, errp);
1487 }
1488
1489 bool migrate_release_ram(void)
1490 {
1491 MigrationState *s;
1492
1493 s = migrate_get_current();
1494
1495 return s->enabled_capabilities[MIGRATION_CAPABILITY_RELEASE_RAM];
1496 }
1497
1498 bool migrate_postcopy_ram(void)
1499 {
1500 MigrationState *s;
1501
1502 s = migrate_get_current();
1503
1504 return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM];
1505 }
1506
1507 bool migrate_postcopy(void)
1508 {
1509 return migrate_postcopy_ram();
1510 }
1511
1512 bool migrate_auto_converge(void)
1513 {
1514 MigrationState *s;
1515
1516 s = migrate_get_current();
1517
1518 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
1519 }
1520
1521 bool migrate_zero_blocks(void)
1522 {
1523 MigrationState *s;
1524
1525 s = migrate_get_current();
1526
1527 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
1528 }
1529
1530 bool migrate_use_compression(void)
1531 {
1532 MigrationState *s;
1533
1534 s = migrate_get_current();
1535
1536 return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
1537 }
1538
1539 int migrate_compress_level(void)
1540 {
1541 MigrationState *s;
1542
1543 s = migrate_get_current();
1544
1545 return s->parameters.compress_level;
1546 }
1547
1548 int migrate_compress_threads(void)
1549 {
1550 MigrationState *s;
1551
1552 s = migrate_get_current();
1553
1554 return s->parameters.compress_threads;
1555 }
1556
1557 int migrate_decompress_threads(void)
1558 {
1559 MigrationState *s;
1560
1561 s = migrate_get_current();
1562
1563 return s->parameters.decompress_threads;
1564 }
1565
1566 bool migrate_use_events(void)
1567 {
1568 MigrationState *s;
1569
1570 s = migrate_get_current();
1571
1572 return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS];
1573 }
1574
1575 bool migrate_use_multifd(void)
1576 {
1577 MigrationState *s;
1578
1579 s = migrate_get_current();
1580
1581 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_MULTIFD];
1582 }
1583
1584 bool migrate_pause_before_switchover(void)
1585 {
1586 MigrationState *s;
1587
1588 s = migrate_get_current();
1589
1590 return s->enabled_capabilities[
1591 MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER];
1592 }
1593
1594 int migrate_multifd_channels(void)
1595 {
1596 MigrationState *s;
1597
1598 s = migrate_get_current();
1599
1600 return s->parameters.x_multifd_channels;
1601 }
1602
1603 int migrate_multifd_page_count(void)
1604 {
1605 MigrationState *s;
1606
1607 s = migrate_get_current();
1608
1609 return s->parameters.x_multifd_page_count;
1610 }
1611
1612 int migrate_use_xbzrle(void)
1613 {
1614 MigrationState *s;
1615
1616 s = migrate_get_current();
1617
1618 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
1619 }
1620
1621 int64_t migrate_xbzrle_cache_size(void)
1622 {
1623 MigrationState *s;
1624
1625 s = migrate_get_current();
1626
1627 return s->parameters.xbzrle_cache_size;
1628 }
1629
1630 bool migrate_use_block(void)
1631 {
1632 MigrationState *s;
1633
1634 s = migrate_get_current();
1635
1636 return s->enabled_capabilities[MIGRATION_CAPABILITY_BLOCK];
1637 }
1638
1639 bool migrate_use_return_path(void)
1640 {
1641 MigrationState *s;
1642
1643 s = migrate_get_current();
1644
1645 return s->enabled_capabilities[MIGRATION_CAPABILITY_RETURN_PATH];
1646 }
1647
1648 bool migrate_use_block_incremental(void)
1649 {
1650 MigrationState *s;
1651
1652 s = migrate_get_current();
1653
1654 return s->parameters.block_incremental;
1655 }
1656
1657 /* migration thread support */
1658 /*
1659 * Something bad happened to the RP stream, mark an error
1660 * The caller shall print or trace something to indicate why
1661 */
1662 static void mark_source_rp_bad(MigrationState *s)
1663 {
1664 s->rp_state.error = true;
1665 }
1666
1667 static struct rp_cmd_args {
1668 ssize_t len; /* -1 = variable */
1669 const char *name;
1670 } rp_cmd_args[] = {
1671 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
1672 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
1673 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
1674 [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" },
1675 [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" },
1676 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
1677 };
1678
1679 /*
1680 * Process a request for pages received on the return path,
1681 * We're allowed to send more than requested (e.g. to round to our page size)
1682 * and we don't need to send pages that have already been sent.
1683 */
1684 static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
1685 ram_addr_t start, size_t len)
1686 {
1687 long our_host_ps = getpagesize();
1688
1689 trace_migrate_handle_rp_req_pages(rbname, start, len);
1690
1691 /*
1692 * Since we currently insist on matching page sizes, just sanity check
1693 * we're being asked for whole host pages.
1694 */
1695 if (start & (our_host_ps-1) ||
1696 (len & (our_host_ps-1))) {
1697 error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1698 " len: %zd", __func__, start, len);
1699 mark_source_rp_bad(ms);
1700 return;
1701 }
1702
1703 if (ram_save_queue_pages(rbname, start, len)) {
1704 mark_source_rp_bad(ms);
1705 }
1706 }
1707
1708 /*
1709 * Handles messages sent on the return path towards the source VM
1710 *
1711 */
1712 static void *source_return_path_thread(void *opaque)
1713 {
1714 MigrationState *ms = opaque;
1715 QEMUFile *rp = ms->rp_state.from_dst_file;
1716 uint16_t header_len, header_type;
1717 uint8_t buf[512];
1718 uint32_t tmp32, sibling_error;
1719 ram_addr_t start = 0; /* =0 to silence warning */
1720 size_t len = 0, expected_len;
1721 int res;
1722
1723 trace_source_return_path_thread_entry();
1724 while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1725 migration_is_setup_or_active(ms->state)) {
1726 trace_source_return_path_thread_loop_top();
1727 header_type = qemu_get_be16(rp);
1728 header_len = qemu_get_be16(rp);
1729
1730 if (qemu_file_get_error(rp)) {
1731 mark_source_rp_bad(ms);
1732 goto out;
1733 }
1734
1735 if (header_type >= MIG_RP_MSG_MAX ||
1736 header_type == MIG_RP_MSG_INVALID) {
1737 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1738 header_type, header_len);
1739 mark_source_rp_bad(ms);
1740 goto out;
1741 }
1742
1743 if ((rp_cmd_args[header_type].len != -1 &&
1744 header_len != rp_cmd_args[header_type].len) ||
1745 header_len > sizeof(buf)) {
1746 error_report("RP: Received '%s' message (0x%04x) with"
1747 "incorrect length %d expecting %zu",
1748 rp_cmd_args[header_type].name, header_type, header_len,
1749 (size_t)rp_cmd_args[header_type].len);
1750 mark_source_rp_bad(ms);
1751 goto out;
1752 }
1753
1754 /* We know we've got a valid header by this point */
1755 res = qemu_get_buffer(rp, buf, header_len);
1756 if (res != header_len) {
1757 error_report("RP: Failed reading data for message 0x%04x"
1758 " read %d expected %d",
1759 header_type, res, header_len);
1760 mark_source_rp_bad(ms);
1761 goto out;
1762 }
1763
1764 /* OK, we have the message and the data */
1765 switch (header_type) {
1766 case MIG_RP_MSG_SHUT:
1767 sibling_error = ldl_be_p(buf);
1768 trace_source_return_path_thread_shut(sibling_error);
1769 if (sibling_error) {
1770 error_report("RP: Sibling indicated error %d", sibling_error);
1771 mark_source_rp_bad(ms);
1772 }
1773 /*
1774 * We'll let the main thread deal with closing the RP
1775 * we could do a shutdown(2) on it, but we're the only user
1776 * anyway, so there's nothing gained.
1777 */
1778 goto out;
1779
1780 case MIG_RP_MSG_PONG:
1781 tmp32 = ldl_be_p(buf);
1782 trace_source_return_path_thread_pong(tmp32);
1783 break;
1784
1785 case MIG_RP_MSG_REQ_PAGES:
1786 start = ldq_be_p(buf);
1787 len = ldl_be_p(buf + 8);
1788 migrate_handle_rp_req_pages(ms, NULL, start, len);
1789 break;
1790
1791 case MIG_RP_MSG_REQ_PAGES_ID:
1792 expected_len = 12 + 1; /* header + termination */
1793
1794 if (header_len >= expected_len) {
1795 start = ldq_be_p(buf);
1796 len = ldl_be_p(buf + 8);
1797 /* Now we expect an idstr */
1798 tmp32 = buf[12]; /* Length of the following idstr */
1799 buf[13 + tmp32] = '\0';
1800 expected_len += tmp32;
1801 }
1802 if (header_len != expected_len) {
1803 error_report("RP: Req_Page_id with length %d expecting %zd",
1804 header_len, expected_len);
1805 mark_source_rp_bad(ms);
1806 goto out;
1807 }
1808 migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len);
1809 break;
1810
1811 default:
1812 break;
1813 }
1814 }
1815 if (qemu_file_get_error(rp)) {
1816 trace_source_return_path_thread_bad_end();
1817 mark_source_rp_bad(ms);
1818 }
1819
1820 trace_source_return_path_thread_end();
1821 out:
1822 ms->rp_state.from_dst_file = NULL;
1823 qemu_fclose(rp);
1824 return NULL;
1825 }
1826
1827 static int open_return_path_on_source(MigrationState *ms)
1828 {
1829
1830 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
1831 if (!ms->rp_state.from_dst_file) {
1832 return -1;
1833 }
1834
1835 trace_open_return_path_on_source();
1836 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
1837 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
1838
1839 trace_open_return_path_on_source_continue();
1840
1841 return 0;
1842 }
1843
1844 /* Returns 0 if the RP was ok, otherwise there was an error on the RP */
1845 static int await_return_path_close_on_source(MigrationState *ms)
1846 {
1847 /*
1848 * If this is a normal exit then the destination will send a SHUT and the
1849 * rp_thread will exit, however if there's an error we need to cause
1850 * it to exit.
1851 */
1852 if (qemu_file_get_error(ms->to_dst_file) && ms->rp_state.from_dst_file) {
1853 /*
1854 * shutdown(2), if we have it, will cause it to unblock if it's stuck
1855 * waiting for the destination.
1856 */
1857 qemu_file_shutdown(ms->rp_state.from_dst_file);
1858 mark_source_rp_bad(ms);
1859 }
1860 trace_await_return_path_close_on_source_joining();
1861 qemu_thread_join(&ms->rp_state.rp_thread);
1862 trace_await_return_path_close_on_source_close();
1863 return ms->rp_state.error;
1864 }
1865
1866 /*
1867 * Switch from normal iteration to postcopy
1868 * Returns non-0 on error
1869 */
1870 static int postcopy_start(MigrationState *ms)
1871 {
1872 int ret;
1873 QIOChannelBuffer *bioc;
1874 QEMUFile *fb;
1875 int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1876 bool restart_block = false;
1877 int cur_state = MIGRATION_STATUS_ACTIVE;
1878 if (!migrate_pause_before_switchover()) {
1879 migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
1880 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1881 }
1882
1883 trace_postcopy_start();
1884 qemu_mutex_lock_iothread();
1885 trace_postcopy_start_set_run();
1886
1887 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
1888 global_state_store();
1889 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
1890 if (ret < 0) {
1891 goto fail;
1892 }
1893
1894 ret = migration_maybe_pause(ms, &cur_state,
1895 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1896 if (ret < 0) {
1897 goto fail;
1898 }
1899
1900 ret = bdrv_inactivate_all();
1901 if (ret < 0) {
1902 goto fail;
1903 }
1904 restart_block = true;
1905
1906 /*
1907 * Cause any non-postcopiable, but iterative devices to
1908 * send out their final data.
1909 */
1910 qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false);
1911
1912 /*
1913 * in Finish migrate and with the io-lock held everything should
1914 * be quiet, but we've potentially still got dirty pages and we
1915 * need to tell the destination to throw any pages it's already received
1916 * that are dirty
1917 */
1918 if (migrate_postcopy_ram()) {
1919 if (ram_postcopy_send_discard_bitmap(ms)) {
1920 error_report("postcopy send discard bitmap failed");
1921 goto fail;
1922 }
1923 }
1924
1925 /*
1926 * send rest of state - note things that are doing postcopy
1927 * will notice we're in POSTCOPY_ACTIVE and not actually
1928 * wrap their state up here
1929 */
1930 qemu_file_set_rate_limit(ms->to_dst_file, INT64_MAX);
1931 if (migrate_postcopy_ram()) {
1932 /* Ping just for debugging, helps line traces up */
1933 qemu_savevm_send_ping(ms->to_dst_file, 2);
1934 }
1935
1936 /*
1937 * While loading the device state we may trigger page transfer
1938 * requests and the fd must be free to process those, and thus
1939 * the destination must read the whole device state off the fd before
1940 * it starts processing it. Unfortunately the ad-hoc migration format
1941 * doesn't allow the destination to know the size to read without fully
1942 * parsing it through each devices load-state code (especially the open
1943 * coded devices that use get/put).
1944 * So we wrap the device state up in a package with a length at the start;
1945 * to do this we use a qemu_buf to hold the whole of the device state.
1946 */
1947 bioc = qio_channel_buffer_new(4096);
1948 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
1949 fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc));
1950 object_unref(OBJECT(bioc));
1951
1952 /*
1953 * Make sure the receiver can get incoming pages before we send the rest
1954 * of the state
1955 */
1956 qemu_savevm_send_postcopy_listen(fb);
1957
1958 qemu_savevm_state_complete_precopy(fb, false, false);
1959 if (migrate_postcopy_ram()) {
1960 qemu_savevm_send_ping(fb, 3);
1961 }
1962
1963 qemu_savevm_send_postcopy_run(fb);
1964
1965 /* <><> end of stuff going into the package */
1966
1967 /* Last point of recovery; as soon as we send the package the destination
1968 * can open devices and potentially start running.
1969 * Lets just check again we've not got any errors.
1970 */
1971 ret = qemu_file_get_error(ms->to_dst_file);
1972 if (ret) {
1973 error_report("postcopy_start: Migration stream errored (pre package)");
1974 goto fail_closefb;
1975 }
1976
1977 restart_block = false;
1978
1979 /* Now send that blob */
1980 if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
1981 goto fail_closefb;
1982 }
1983 qemu_fclose(fb);
1984
1985 /* Send a notify to give a chance for anything that needs to happen
1986 * at the transition to postcopy and after the device state; in particular
1987 * spice needs to trigger a transition now
1988 */
1989 ms->postcopy_after_devices = true;
1990 notifier_list_notify(&migration_state_notifiers, ms);
1991
1992 ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
1993
1994 qemu_mutex_unlock_iothread();
1995
1996 if (migrate_postcopy_ram()) {
1997 /*
1998 * Although this ping is just for debug, it could potentially be
1999 * used for getting a better measurement of downtime at the source.
2000 */
2001 qemu_savevm_send_ping(ms->to_dst_file, 4);
2002 }
2003
2004 if (migrate_release_ram()) {
2005 ram_postcopy_migrated_memory_release(ms);
2006 }
2007
2008 ret = qemu_file_get_error(ms->to_dst_file);
2009 if (ret) {
2010 error_report("postcopy_start: Migration stream errored");
2011 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2012 MIGRATION_STATUS_FAILED);
2013 }
2014
2015 return ret;
2016
2017 fail_closefb:
2018 qemu_fclose(fb);
2019 fail:
2020 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2021 MIGRATION_STATUS_FAILED);
2022 if (restart_block) {
2023 /* A failure happened early enough that we know the destination hasn't
2024 * accessed block devices, so we're safe to recover.
2025 */
2026 Error *local_err = NULL;
2027
2028 bdrv_invalidate_cache_all(&local_err);
2029 if (local_err) {
2030 error_report_err(local_err);
2031 }
2032 }
2033 qemu_mutex_unlock_iothread();
2034 return -1;
2035 }
2036
2037 /**
2038 * migration_maybe_pause: Pause if required to by
2039 * migrate_pause_before_switchover called with the iothread locked
2040 * Returns: 0 on success
2041 */
2042 static int migration_maybe_pause(MigrationState *s,
2043 int *current_active_state,
2044 int new_state)
2045 {
2046 if (!migrate_pause_before_switchover()) {
2047 return 0;
2048 }
2049
2050 /* Since leaving this state is not atomic with posting the semaphore
2051 * it's possible that someone could have issued multiple migrate_continue
2052 * and the semaphore is incorrectly positive at this point;
2053 * the docs say it's undefined to reinit a semaphore that's already
2054 * init'd, so use timedwait to eat up any existing posts.
2055 */
2056 while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) {
2057 /* This block intentionally left blank */
2058 }
2059
2060 qemu_mutex_unlock_iothread();
2061 migrate_set_state(&s->state, *current_active_state,
2062 MIGRATION_STATUS_PRE_SWITCHOVER);
2063 qemu_sem_wait(&s->pause_sem);
2064 migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER,
2065 new_state);
2066 *current_active_state = new_state;
2067 qemu_mutex_lock_iothread();
2068
2069 return s->state == new_state ? 0 : -EINVAL;
2070 }
2071
2072 /**
2073 * migration_completion: Used by migration_thread when there's not much left.
2074 * The caller 'breaks' the loop when this returns.
2075 *
2076 * @s: Current migration state
2077 */
2078 static void migration_completion(MigrationState *s)
2079 {
2080 int ret;
2081 int current_active_state = s->state;
2082
2083 if (s->state == MIGRATION_STATUS_ACTIVE) {
2084 qemu_mutex_lock_iothread();
2085 s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2086 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
2087 s->vm_was_running = runstate_is_running();
2088 ret = global_state_store();
2089
2090 if (!ret) {
2091 bool inactivate = !migrate_colo_enabled();
2092 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
2093 if (ret >= 0) {
2094 ret = migration_maybe_pause(s, &current_active_state,
2095 MIGRATION_STATUS_DEVICE);
2096 }
2097 if (ret >= 0) {
2098 qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
2099 ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
2100 inactivate);
2101 }
2102 if (inactivate && ret >= 0) {
2103 s->block_inactive = true;
2104 }
2105 }
2106 qemu_mutex_unlock_iothread();
2107
2108 if (ret < 0) {
2109 goto fail;
2110 }
2111 } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2112 trace_migration_completion_postcopy_end();
2113
2114 qemu_savevm_state_complete_postcopy(s->to_dst_file);
2115 trace_migration_completion_postcopy_end_after_complete();
2116 }
2117
2118 /*
2119 * If rp was opened we must clean up the thread before
2120 * cleaning everything else up (since if there are no failures
2121 * it will wait for the destination to send it's status in
2122 * a SHUT command).
2123 */
2124 if (s->rp_state.from_dst_file) {
2125 int rp_error;
2126 trace_migration_return_path_end_before();
2127 rp_error = await_return_path_close_on_source(s);
2128 trace_migration_return_path_end_after(rp_error);
2129 if (rp_error) {
2130 goto fail_invalidate;
2131 }
2132 }
2133
2134 if (qemu_file_get_error(s->to_dst_file)) {
2135 trace_migration_completion_file_err();
2136 goto fail_invalidate;
2137 }
2138
2139 if (!migrate_colo_enabled()) {
2140 migrate_set_state(&s->state, current_active_state,
2141 MIGRATION_STATUS_COMPLETED);
2142 }
2143
2144 return;
2145
2146 fail_invalidate:
2147 /* If not doing postcopy, vm_start() will be called: let's regain
2148 * control on images.
2149 */
2150 if (s->state == MIGRATION_STATUS_ACTIVE ||
2151 s->state == MIGRATION_STATUS_DEVICE) {
2152 Error *local_err = NULL;
2153
2154 qemu_mutex_lock_iothread();
2155 bdrv_invalidate_cache_all(&local_err);
2156 if (local_err) {
2157 error_report_err(local_err);
2158 } else {
2159 s->block_inactive = false;
2160 }
2161 qemu_mutex_unlock_iothread();
2162 }
2163
2164 fail:
2165 migrate_set_state(&s->state, current_active_state,
2166 MIGRATION_STATUS_FAILED);
2167 }
2168
2169 bool migrate_colo_enabled(void)
2170 {
2171 MigrationState *s = migrate_get_current();
2172 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_COLO];
2173 }
2174
2175 static void migration_calculate_complete(MigrationState *s)
2176 {
2177 uint64_t bytes = qemu_ftell(s->to_dst_file);
2178 int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2179
2180 s->total_time = end_time - s->start_time;
2181 if (!s->downtime) {
2182 /*
2183 * It's still not set, so we are precopy migration. For
2184 * postcopy, downtime is calculated during postcopy_start().
2185 */
2186 s->downtime = end_time - s->downtime_start;
2187 }
2188
2189 if (s->total_time) {
2190 s->mbps = ((double) bytes * 8.0) / s->total_time / 1000;
2191 }
2192 }
2193
2194 static void migration_update_counters(MigrationState *s,
2195 int64_t current_time)
2196 {
2197 uint64_t transferred, time_spent;
2198 double bandwidth;
2199
2200 if (current_time < s->iteration_start_time + BUFFER_DELAY) {
2201 return;
2202 }
2203
2204 transferred = qemu_ftell(s->to_dst_file) - s->iteration_initial_bytes;
2205 time_spent = current_time - s->iteration_start_time;
2206 bandwidth = (double)transferred / time_spent;
2207 s->threshold_size = bandwidth * s->parameters.downtime_limit;
2208
2209 s->mbps = (((double) transferred * 8.0) /
2210 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
2211
2212 /*
2213 * if we haven't sent anything, we don't want to
2214 * recalculate. 10000 is a small enough number for our purposes
2215 */
2216 if (ram_counters.dirty_pages_rate && transferred > 10000) {
2217 s->expected_downtime = ram_counters.dirty_pages_rate *
2218 qemu_target_page_size() / bandwidth;
2219 }
2220
2221 qemu_file_reset_rate_limit(s->to_dst_file);
2222
2223 s->iteration_start_time = current_time;
2224 s->iteration_initial_bytes = qemu_ftell(s->to_dst_file);
2225
2226 trace_migrate_transferred(transferred, time_spent,
2227 bandwidth, s->threshold_size);
2228 }
2229
2230 /* Migration thread iteration status */
2231 typedef enum {
2232 MIG_ITERATE_RESUME, /* Resume current iteration */
2233 MIG_ITERATE_SKIP, /* Skip current iteration */
2234 MIG_ITERATE_BREAK, /* Break the loop */
2235 } MigIterateState;
2236
2237 /*
2238 * Return true if continue to the next iteration directly, false
2239 * otherwise.
2240 */
2241 static MigIterateState migration_iteration_run(MigrationState *s)
2242 {
2243 uint64_t pending_size, pend_post, pend_nonpost;
2244 bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE;
2245
2246 qemu_savevm_state_pending(s->to_dst_file, s->threshold_size,
2247 &pend_nonpost, &pend_post);
2248 pending_size = pend_nonpost + pend_post;
2249
2250 trace_migrate_pending(pending_size, s->threshold_size,
2251 pend_post, pend_nonpost);
2252
2253 if (pending_size && pending_size >= s->threshold_size) {
2254 /* Still a significant amount to transfer */
2255 if (migrate_postcopy() && !in_postcopy &&
2256 pend_nonpost <= s->threshold_size &&
2257 atomic_read(&s->start_postcopy)) {
2258 if (postcopy_start(s)) {
2259 error_report("%s: postcopy failed to start", __func__);
2260 }
2261 return MIG_ITERATE_SKIP;
2262 }
2263 /* Just another iteration step */
2264 qemu_savevm_state_iterate(s->to_dst_file,
2265 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
2266 } else {
2267 trace_migration_thread_low_pending(pending_size);
2268 migration_completion(s);
2269 return MIG_ITERATE_BREAK;
2270 }
2271
2272 return MIG_ITERATE_RESUME;
2273 }
2274
2275 static void migration_iteration_finish(MigrationState *s)
2276 {
2277 /* If we enabled cpu throttling for auto-converge, turn it off. */
2278 cpu_throttle_stop();
2279
2280 qemu_mutex_lock_iothread();
2281 switch (s->state) {
2282 case MIGRATION_STATUS_COMPLETED:
2283 migration_calculate_complete(s);
2284 runstate_set(RUN_STATE_POSTMIGRATE);
2285 break;
2286
2287 case MIGRATION_STATUS_ACTIVE:
2288 /*
2289 * We should really assert here, but since it's during
2290 * migration, let's try to reduce the usage of assertions.
2291 */
2292 if (!migrate_colo_enabled()) {
2293 error_report("%s: critical error: calling COLO code without "
2294 "COLO enabled", __func__);
2295 }
2296 migrate_start_colo_process(s);
2297 /*
2298 * Fixme: we will run VM in COLO no matter its old running state.
2299 * After exited COLO, we will keep running.
2300 */
2301 s->vm_was_running = true;
2302 /* Fallthrough */
2303 case MIGRATION_STATUS_FAILED:
2304 case MIGRATION_STATUS_CANCELLED:
2305 if (s->vm_was_running) {
2306 vm_start();
2307 } else {
2308 if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
2309 runstate_set(RUN_STATE_POSTMIGRATE);
2310 }
2311 }
2312 break;
2313
2314 default:
2315 /* Should not reach here, but if so, forgive the VM. */
2316 error_report("%s: Unknown ending state %d", __func__, s->state);
2317 break;
2318 }
2319 qemu_bh_schedule(s->cleanup_bh);
2320 qemu_mutex_unlock_iothread();
2321 }
2322
2323 /*
2324 * Master migration thread on the source VM.
2325 * It drives the migration and pumps the data down the outgoing channel.
2326 */
2327 static void *migration_thread(void *opaque)
2328 {
2329 MigrationState *s = opaque;
2330 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
2331
2332 rcu_register_thread();
2333
2334 s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2335
2336 qemu_savevm_state_header(s->to_dst_file);
2337
2338 /*
2339 * If we opened the return path, we need to make sure dst has it
2340 * opened as well.
2341 */
2342 if (s->rp_state.from_dst_file) {
2343 /* Now tell the dest that it should open its end so it can reply */
2344 qemu_savevm_send_open_return_path(s->to_dst_file);
2345
2346 /* And do a ping that will make stuff easier to debug */
2347 qemu_savevm_send_ping(s->to_dst_file, 1);
2348 }
2349
2350 if (migrate_postcopy()) {
2351 /*
2352 * Tell the destination that we *might* want to do postcopy later;
2353 * if the other end can't do postcopy it should fail now, nice and
2354 * early.
2355 */
2356 qemu_savevm_send_postcopy_advise(s->to_dst_file);
2357 }
2358
2359 qemu_savevm_state_setup(s->to_dst_file);
2360
2361 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
2362 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2363 MIGRATION_STATUS_ACTIVE);
2364
2365 trace_migration_thread_setup_complete();
2366
2367 while (s->state == MIGRATION_STATUS_ACTIVE ||
2368 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2369 int64_t current_time;
2370
2371 if (!qemu_file_rate_limit(s->to_dst_file)) {
2372 MigIterateState iter_state = migration_iteration_run(s);
2373 if (iter_state == MIG_ITERATE_SKIP) {
2374 continue;
2375 } else if (iter_state == MIG_ITERATE_BREAK) {
2376 break;
2377 }
2378 }
2379
2380 if (qemu_file_get_error(s->to_dst_file)) {
2381 if (migration_is_setup_or_active(s->state)) {
2382 migrate_set_state(&s->state, s->state,
2383 MIGRATION_STATUS_FAILED);
2384 }
2385 trace_migration_thread_file_err();
2386 break;
2387 }
2388
2389 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2390
2391 migration_update_counters(s, current_time);
2392
2393 if (qemu_file_rate_limit(s->to_dst_file)) {
2394 /* usleep expects microseconds */
2395 g_usleep((s->iteration_start_time + BUFFER_DELAY -
2396 current_time) * 1000);
2397 }
2398 }
2399
2400 trace_migration_thread_after_loop();
2401 migration_iteration_finish(s);
2402 rcu_unregister_thread();
2403 return NULL;
2404 }
2405
2406 void migrate_fd_connect(MigrationState *s, Error *error_in)
2407 {
2408 s->expected_downtime = s->parameters.downtime_limit;
2409 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
2410 if (error_in) {
2411 migrate_fd_error(s, error_in);
2412 migrate_fd_cleanup(s);
2413 return;
2414 }
2415
2416 qemu_file_set_blocking(s->to_dst_file, true);
2417 qemu_file_set_rate_limit(s->to_dst_file,
2418 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
2419
2420 /* Notify before starting migration thread */
2421 notifier_list_notify(&migration_state_notifiers, s);
2422
2423 /*
2424 * Open the return path. For postcopy, it is used exclusively. For
2425 * precopy, only if user specified "return-path" capability would
2426 * QEMU uses the return path.
2427 */
2428 if (migrate_postcopy_ram() || migrate_use_return_path()) {
2429 if (open_return_path_on_source(s)) {
2430 error_report("Unable to open return-path for postcopy");
2431 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2432 MIGRATION_STATUS_FAILED);
2433 migrate_fd_cleanup(s);
2434 return;
2435 }
2436 }
2437
2438 if (multifd_save_setup() != 0) {
2439 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2440 MIGRATION_STATUS_FAILED);
2441 migrate_fd_cleanup(s);
2442 return;
2443 }
2444 qemu_thread_create(&s->thread, "live_migration", migration_thread, s,
2445 QEMU_THREAD_JOINABLE);
2446 s->migration_thread_running = true;
2447 }
2448
2449 void migration_global_dump(Monitor *mon)
2450 {
2451 MigrationState *ms = migrate_get_current();
2452
2453 monitor_printf(mon, "globals:\n");
2454 monitor_printf(mon, "store-global-state: %s\n",
2455 ms->store_global_state ? "on" : "off");
2456 monitor_printf(mon, "only-migratable: %s\n",
2457 ms->only_migratable ? "on" : "off");
2458 monitor_printf(mon, "send-configuration: %s\n",
2459 ms->send_configuration ? "on" : "off");
2460 monitor_printf(mon, "send-section-footer: %s\n",
2461 ms->send_section_footer ? "on" : "off");
2462 }
2463
2464 #define DEFINE_PROP_MIG_CAP(name, x) \
2465 DEFINE_PROP_BOOL(name, MigrationState, enabled_capabilities[x], false)
2466
2467 static Property migration_properties[] = {
2468 DEFINE_PROP_BOOL("store-global-state", MigrationState,
2469 store_global_state, true),
2470 DEFINE_PROP_BOOL("only-migratable", MigrationState, only_migratable, false),
2471 DEFINE_PROP_BOOL("send-configuration", MigrationState,
2472 send_configuration, true),
2473 DEFINE_PROP_BOOL("send-section-footer", MigrationState,
2474 send_section_footer, true),
2475
2476 /* Migration parameters */
2477 DEFINE_PROP_UINT8("x-compress-level", MigrationState,
2478 parameters.compress_level,
2479 DEFAULT_MIGRATE_COMPRESS_LEVEL),
2480 DEFINE_PROP_UINT8("x-compress-threads", MigrationState,
2481 parameters.compress_threads,
2482 DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT),
2483 DEFINE_PROP_UINT8("x-decompress-threads", MigrationState,
2484 parameters.decompress_threads,
2485 DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT),
2486 DEFINE_PROP_UINT8("x-cpu-throttle-initial", MigrationState,
2487 parameters.cpu_throttle_initial,
2488 DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL),
2489 DEFINE_PROP_UINT8("x-cpu-throttle-increment", MigrationState,
2490 parameters.cpu_throttle_increment,
2491 DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT),
2492 DEFINE_PROP_SIZE("x-max-bandwidth", MigrationState,
2493 parameters.max_bandwidth, MAX_THROTTLE),
2494 DEFINE_PROP_UINT64("x-downtime-limit", MigrationState,
2495 parameters.downtime_limit,
2496 DEFAULT_MIGRATE_SET_DOWNTIME),
2497 DEFINE_PROP_UINT32("x-checkpoint-delay", MigrationState,
2498 parameters.x_checkpoint_delay,
2499 DEFAULT_MIGRATE_X_CHECKPOINT_DELAY),
2500 DEFINE_PROP_UINT8("x-multifd-channels", MigrationState,
2501 parameters.x_multifd_channels,
2502 DEFAULT_MIGRATE_MULTIFD_CHANNELS),
2503 DEFINE_PROP_UINT32("x-multifd-page-count", MigrationState,
2504 parameters.x_multifd_page_count,
2505 DEFAULT_MIGRATE_MULTIFD_PAGE_COUNT),
2506 DEFINE_PROP_SIZE("xbzrle-cache-size", MigrationState,
2507 parameters.xbzrle_cache_size,
2508 DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE),
2509
2510 /* Migration capabilities */
2511 DEFINE_PROP_MIG_CAP("x-xbzrle", MIGRATION_CAPABILITY_XBZRLE),
2512 DEFINE_PROP_MIG_CAP("x-rdma-pin-all", MIGRATION_CAPABILITY_RDMA_PIN_ALL),
2513 DEFINE_PROP_MIG_CAP("x-auto-converge", MIGRATION_CAPABILITY_AUTO_CONVERGE),
2514 DEFINE_PROP_MIG_CAP("x-zero-blocks", MIGRATION_CAPABILITY_ZERO_BLOCKS),
2515 DEFINE_PROP_MIG_CAP("x-compress", MIGRATION_CAPABILITY_COMPRESS),
2516 DEFINE_PROP_MIG_CAP("x-events", MIGRATION_CAPABILITY_EVENTS),
2517 DEFINE_PROP_MIG_CAP("x-postcopy-ram", MIGRATION_CAPABILITY_POSTCOPY_RAM),
2518 DEFINE_PROP_MIG_CAP("x-colo", MIGRATION_CAPABILITY_X_COLO),
2519 DEFINE_PROP_MIG_CAP("x-release-ram", MIGRATION_CAPABILITY_RELEASE_RAM),
2520 DEFINE_PROP_MIG_CAP("x-block", MIGRATION_CAPABILITY_BLOCK),
2521 DEFINE_PROP_MIG_CAP("x-return-path", MIGRATION_CAPABILITY_RETURN_PATH),
2522 DEFINE_PROP_MIG_CAP("x-multifd", MIGRATION_CAPABILITY_X_MULTIFD),
2523
2524 DEFINE_PROP_END_OF_LIST(),
2525 };
2526
2527 static void migration_class_init(ObjectClass *klass, void *data)
2528 {
2529 DeviceClass *dc = DEVICE_CLASS(klass);
2530
2531 dc->user_creatable = false;
2532 dc->props = migration_properties;
2533 }
2534
2535 static void migration_instance_finalize(Object *obj)
2536 {
2537 MigrationState *ms = MIGRATION_OBJ(obj);
2538 MigrationParameters *params = &ms->parameters;
2539
2540 qemu_mutex_destroy(&ms->error_mutex);
2541 g_free(params->tls_hostname);
2542 g_free(params->tls_creds);
2543 qemu_sem_destroy(&ms->pause_sem);
2544 }
2545
2546 static void migration_instance_init(Object *obj)
2547 {
2548 MigrationState *ms = MIGRATION_OBJ(obj);
2549 MigrationParameters *params = &ms->parameters;
2550
2551 ms->state = MIGRATION_STATUS_NONE;
2552 ms->mbps = -1;
2553 qemu_sem_init(&ms->pause_sem, 0);
2554 qemu_mutex_init(&ms->error_mutex);
2555
2556 params->tls_hostname = g_strdup("");
2557 params->tls_creds = g_strdup("");
2558
2559 /* Set has_* up only for parameter checks */
2560 params->has_compress_level = true;
2561 params->has_compress_threads = true;
2562 params->has_decompress_threads = true;
2563 params->has_cpu_throttle_initial = true;
2564 params->has_cpu_throttle_increment = true;
2565 params->has_max_bandwidth = true;
2566 params->has_downtime_limit = true;
2567 params->has_x_checkpoint_delay = true;
2568 params->has_block_incremental = true;
2569 params->has_x_multifd_channels = true;
2570 params->has_x_multifd_page_count = true;
2571 params->has_xbzrle_cache_size = true;
2572 }
2573
2574 /*
2575 * Return true if check pass, false otherwise. Error will be put
2576 * inside errp if provided.
2577 */
2578 static bool migration_object_check(MigrationState *ms, Error **errp)
2579 {
2580 MigrationCapabilityStatusList *head = NULL;
2581 /* Assuming all off */
2582 bool cap_list[MIGRATION_CAPABILITY__MAX] = { 0 }, ret;
2583 int i;
2584
2585 if (!migrate_params_check(&ms->parameters, errp)) {
2586 return false;
2587 }
2588
2589 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
2590 if (ms->enabled_capabilities[i]) {
2591 head = migrate_cap_add(head, i, true);
2592 }
2593 }
2594
2595 ret = migrate_caps_check(cap_list, head, errp);
2596
2597 /* It works with head == NULL */
2598 qapi_free_MigrationCapabilityStatusList(head);
2599
2600 return ret;
2601 }
2602
2603 static const TypeInfo migration_type = {
2604 .name = TYPE_MIGRATION,
2605 /*
2606 * NOTE: TYPE_MIGRATION is not really a device, as the object is
2607 * not created using qdev_create(), it is not attached to the qdev
2608 * device tree, and it is never realized.
2609 *
2610 * TODO: Make this TYPE_OBJECT once QOM provides something like
2611 * TYPE_DEVICE's "-global" properties.
2612 */
2613 .parent = TYPE_DEVICE,
2614 .class_init = migration_class_init,
2615 .class_size = sizeof(MigrationClass),
2616 .instance_size = sizeof(MigrationState),
2617 .instance_init = migration_instance_init,
2618 .instance_finalize = migration_instance_finalize,
2619 };
2620
2621 static void register_migration_types(void)
2622 {
2623 type_register_static(&migration_type);
2624 }
2625
2626 type_init(register_migration_types);