]> git.proxmox.com Git - mirror_qemu.git/blob - migration/migration.c
Postcopy: Postcopy startup in migration thread
[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-common.h"
17 #include "qemu/error-report.h"
18 #include "qemu/main-loop.h"
19 #include "migration/migration.h"
20 #include "migration/qemu-file.h"
21 #include "sysemu/sysemu.h"
22 #include "block/block.h"
23 #include "qapi/qmp/qerror.h"
24 #include "qemu/sockets.h"
25 #include "qemu/rcu.h"
26 #include "migration/block.h"
27 #include "migration/postcopy-ram.h"
28 #include "qemu/thread.h"
29 #include "qmp-commands.h"
30 #include "trace.h"
31 #include "qapi/util.h"
32 #include "qapi-event.h"
33 #include "qom/cpu.h"
34
35 #define MAX_THROTTLE (32 << 20) /* Migration transfer speed throttling */
36
37 /* Amount of time to allocate to each "chunk" of bandwidth-throttled
38 * data. */
39 #define BUFFER_DELAY 100
40 #define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)
41
42 /* Default compression thread count */
43 #define DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT 8
44 /* Default decompression thread count, usually decompression is at
45 * least 4 times as fast as compression.*/
46 #define DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT 2
47 /*0: means nocompress, 1: best speed, ... 9: best compress ratio */
48 #define DEFAULT_MIGRATE_COMPRESS_LEVEL 1
49 /* Define default autoconverge cpu throttle migration parameters */
50 #define DEFAULT_MIGRATE_X_CPU_THROTTLE_INITIAL 20
51 #define DEFAULT_MIGRATE_X_CPU_THROTTLE_INCREMENT 10
52
53 /* Migration XBZRLE default cache size */
54 #define DEFAULT_MIGRATE_CACHE_SIZE (64 * 1024 * 1024)
55
56 static NotifierList migration_state_notifiers =
57 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
58
59 static bool deferred_incoming;
60
61 /*
62 * Current state of incoming postcopy; note this is not part of
63 * MigrationIncomingState since it's state is used during cleanup
64 * at the end as MIS is being freed.
65 */
66 static PostcopyState incoming_postcopy_state;
67
68 /* When we add fault tolerance, we could have several
69 migrations at once. For now we don't need to add
70 dynamic creation of migration */
71
72 /* For outgoing */
73 MigrationState *migrate_get_current(void)
74 {
75 static MigrationState current_migration = {
76 .state = MIGRATION_STATUS_NONE,
77 .bandwidth_limit = MAX_THROTTLE,
78 .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE,
79 .mbps = -1,
80 .parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL] =
81 DEFAULT_MIGRATE_COMPRESS_LEVEL,
82 .parameters[MIGRATION_PARAMETER_COMPRESS_THREADS] =
83 DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT,
84 .parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS] =
85 DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT,
86 .parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL] =
87 DEFAULT_MIGRATE_X_CPU_THROTTLE_INITIAL,
88 .parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT] =
89 DEFAULT_MIGRATE_X_CPU_THROTTLE_INCREMENT,
90 };
91
92 return &current_migration;
93 }
94
95 /* For incoming */
96 static MigrationIncomingState *mis_current;
97
98 MigrationIncomingState *migration_incoming_get_current(void)
99 {
100 return mis_current;
101 }
102
103 MigrationIncomingState *migration_incoming_state_new(QEMUFile* f)
104 {
105 mis_current = g_new0(MigrationIncomingState, 1);
106 mis_current->from_src_file = f;
107 QLIST_INIT(&mis_current->loadvm_handlers);
108 qemu_mutex_init(&mis_current->rp_mutex);
109 qemu_event_init(&mis_current->main_thread_load_event, false);
110
111 return mis_current;
112 }
113
114 void migration_incoming_state_destroy(void)
115 {
116 qemu_event_destroy(&mis_current->main_thread_load_event);
117 loadvm_free_handlers(mis_current);
118 g_free(mis_current);
119 mis_current = NULL;
120 }
121
122
123 typedef struct {
124 bool optional;
125 uint32_t size;
126 uint8_t runstate[100];
127 RunState state;
128 bool received;
129 } GlobalState;
130
131 static GlobalState global_state;
132
133 int global_state_store(void)
134 {
135 if (!runstate_store((char *)global_state.runstate,
136 sizeof(global_state.runstate))) {
137 error_report("runstate name too big: %s", global_state.runstate);
138 trace_migrate_state_too_big();
139 return -EINVAL;
140 }
141 return 0;
142 }
143
144 void global_state_store_running(void)
145 {
146 const char *state = RunState_lookup[RUN_STATE_RUNNING];
147 strncpy((char *)global_state.runstate,
148 state, sizeof(global_state.runstate));
149 }
150
151 static bool global_state_received(void)
152 {
153 return global_state.received;
154 }
155
156 static RunState global_state_get_runstate(void)
157 {
158 return global_state.state;
159 }
160
161 void global_state_set_optional(void)
162 {
163 global_state.optional = true;
164 }
165
166 static bool global_state_needed(void *opaque)
167 {
168 GlobalState *s = opaque;
169 char *runstate = (char *)s->runstate;
170
171 /* If it is not optional, it is mandatory */
172
173 if (s->optional == false) {
174 return true;
175 }
176
177 /* If state is running or paused, it is not needed */
178
179 if (strcmp(runstate, "running") == 0 ||
180 strcmp(runstate, "paused") == 0) {
181 return false;
182 }
183
184 /* for any other state it is needed */
185 return true;
186 }
187
188 static int global_state_post_load(void *opaque, int version_id)
189 {
190 GlobalState *s = opaque;
191 Error *local_err = NULL;
192 int r;
193 char *runstate = (char *)s->runstate;
194
195 s->received = true;
196 trace_migrate_global_state_post_load(runstate);
197
198 r = qapi_enum_parse(RunState_lookup, runstate, RUN_STATE_MAX,
199 -1, &local_err);
200
201 if (r == -1) {
202 if (local_err) {
203 error_report_err(local_err);
204 }
205 return -EINVAL;
206 }
207 s->state = r;
208
209 return 0;
210 }
211
212 static void global_state_pre_save(void *opaque)
213 {
214 GlobalState *s = opaque;
215
216 trace_migrate_global_state_pre_save((char *)s->runstate);
217 s->size = strlen((char *)s->runstate) + 1;
218 }
219
220 static const VMStateDescription vmstate_globalstate = {
221 .name = "globalstate",
222 .version_id = 1,
223 .minimum_version_id = 1,
224 .post_load = global_state_post_load,
225 .pre_save = global_state_pre_save,
226 .needed = global_state_needed,
227 .fields = (VMStateField[]) {
228 VMSTATE_UINT32(size, GlobalState),
229 VMSTATE_BUFFER(runstate, GlobalState),
230 VMSTATE_END_OF_LIST()
231 },
232 };
233
234 void register_global_state(void)
235 {
236 /* We would use it independently that we receive it */
237 strcpy((char *)&global_state.runstate, "");
238 global_state.received = false;
239 vmstate_register(NULL, 0, &vmstate_globalstate, &global_state);
240 }
241
242 static void migrate_generate_event(int new_state)
243 {
244 if (migrate_use_events()) {
245 qapi_event_send_migration(new_state, &error_abort);
246 }
247 }
248
249 /*
250 * Called on -incoming with a defer: uri.
251 * The migration can be started later after any parameters have been
252 * changed.
253 */
254 static void deferred_incoming_migration(Error **errp)
255 {
256 if (deferred_incoming) {
257 error_setg(errp, "Incoming migration already deferred");
258 }
259 deferred_incoming = true;
260 }
261
262 void qemu_start_incoming_migration(const char *uri, Error **errp)
263 {
264 const char *p;
265
266 qapi_event_send_migration(MIGRATION_STATUS_SETUP, &error_abort);
267 if (!strcmp(uri, "defer")) {
268 deferred_incoming_migration(errp);
269 } else if (strstart(uri, "tcp:", &p)) {
270 tcp_start_incoming_migration(p, errp);
271 #ifdef CONFIG_RDMA
272 } else if (strstart(uri, "rdma:", &p)) {
273 rdma_start_incoming_migration(p, errp);
274 #endif
275 #if !defined(WIN32)
276 } else if (strstart(uri, "exec:", &p)) {
277 exec_start_incoming_migration(p, errp);
278 } else if (strstart(uri, "unix:", &p)) {
279 unix_start_incoming_migration(p, errp);
280 } else if (strstart(uri, "fd:", &p)) {
281 fd_start_incoming_migration(p, errp);
282 #endif
283 } else {
284 error_setg(errp, "unknown migration protocol: %s", uri);
285 }
286 }
287
288 static void process_incoming_migration_co(void *opaque)
289 {
290 QEMUFile *f = opaque;
291 Error *local_err = NULL;
292 int ret;
293
294 migration_incoming_state_new(f);
295 postcopy_state_set(POSTCOPY_INCOMING_NONE);
296 migrate_generate_event(MIGRATION_STATUS_ACTIVE);
297 ret = qemu_loadvm_state(f);
298
299 qemu_fclose(f);
300 free_xbzrle_decoded_buf();
301 migration_incoming_state_destroy();
302
303 if (ret < 0) {
304 migrate_generate_event(MIGRATION_STATUS_FAILED);
305 error_report("load of migration failed: %s", strerror(-ret));
306 migrate_decompress_threads_join();
307 exit(EXIT_FAILURE);
308 }
309
310 /* Make sure all file formats flush their mutable metadata */
311 bdrv_invalidate_cache_all(&local_err);
312 if (local_err) {
313 migrate_generate_event(MIGRATION_STATUS_FAILED);
314 error_report_err(local_err);
315 migrate_decompress_threads_join();
316 exit(EXIT_FAILURE);
317 }
318
319 /*
320 * This must happen after all error conditions are dealt with and
321 * we're sure the VM is going to be running on this host.
322 */
323 qemu_announce_self();
324
325 /* If global state section was not received or we are in running
326 state, we need to obey autostart. Any other state is set with
327 runstate_set. */
328
329 if (!global_state_received() ||
330 global_state_get_runstate() == RUN_STATE_RUNNING) {
331 if (autostart) {
332 vm_start();
333 } else {
334 runstate_set(RUN_STATE_PAUSED);
335 }
336 } else {
337 runstate_set(global_state_get_runstate());
338 }
339 migrate_decompress_threads_join();
340 /*
341 * This must happen after any state changes since as soon as an external
342 * observer sees this event they might start to prod at the VM assuming
343 * it's ready to use.
344 */
345 migrate_generate_event(MIGRATION_STATUS_COMPLETED);
346 }
347
348 void process_incoming_migration(QEMUFile *f)
349 {
350 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co);
351 int fd = qemu_get_fd(f);
352
353 assert(fd != -1);
354 migrate_decompress_threads_create();
355 qemu_set_nonblock(fd);
356 qemu_coroutine_enter(co, f);
357 }
358
359 /*
360 * Send a message on the return channel back to the source
361 * of the migration.
362 */
363 void migrate_send_rp_message(MigrationIncomingState *mis,
364 enum mig_rp_message_type message_type,
365 uint16_t len, void *data)
366 {
367 trace_migrate_send_rp_message((int)message_type, len);
368 qemu_mutex_lock(&mis->rp_mutex);
369 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
370 qemu_put_be16(mis->to_src_file, len);
371 qemu_put_buffer(mis->to_src_file, data, len);
372 qemu_fflush(mis->to_src_file);
373 qemu_mutex_unlock(&mis->rp_mutex);
374 }
375
376 /*
377 * Send a 'SHUT' message on the return channel with the given value
378 * to indicate that we've finished with the RP. Non-0 value indicates
379 * error.
380 */
381 void migrate_send_rp_shut(MigrationIncomingState *mis,
382 uint32_t value)
383 {
384 uint32_t buf;
385
386 buf = cpu_to_be32(value);
387 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
388 }
389
390 /*
391 * Send a 'PONG' message on the return channel with the given value
392 * (normally in response to a 'PING')
393 */
394 void migrate_send_rp_pong(MigrationIncomingState *mis,
395 uint32_t value)
396 {
397 uint32_t buf;
398
399 buf = cpu_to_be32(value);
400 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
401 }
402
403 /* amount of nanoseconds we are willing to wait for migration to be down.
404 * the choice of nanoseconds is because it is the maximum resolution that
405 * get_clock() can achieve. It is an internal measure. All user-visible
406 * units must be in seconds */
407 static uint64_t max_downtime = 300000000;
408
409 uint64_t migrate_max_downtime(void)
410 {
411 return max_downtime;
412 }
413
414 MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
415 {
416 MigrationCapabilityStatusList *head = NULL;
417 MigrationCapabilityStatusList *caps;
418 MigrationState *s = migrate_get_current();
419 int i;
420
421 caps = NULL; /* silence compiler warning */
422 for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
423 if (head == NULL) {
424 head = g_malloc0(sizeof(*caps));
425 caps = head;
426 } else {
427 caps->next = g_malloc0(sizeof(*caps));
428 caps = caps->next;
429 }
430 caps->value =
431 g_malloc(sizeof(*caps->value));
432 caps->value->capability = i;
433 caps->value->state = s->enabled_capabilities[i];
434 }
435
436 return head;
437 }
438
439 MigrationParameters *qmp_query_migrate_parameters(Error **errp)
440 {
441 MigrationParameters *params;
442 MigrationState *s = migrate_get_current();
443
444 params = g_malloc0(sizeof(*params));
445 params->compress_level = s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL];
446 params->compress_threads =
447 s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS];
448 params->decompress_threads =
449 s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS];
450 params->x_cpu_throttle_initial =
451 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL];
452 params->x_cpu_throttle_increment =
453 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT];
454
455 return params;
456 }
457
458 /*
459 * Return true if we're already in the middle of a migration
460 * (i.e. any of the active or setup states)
461 */
462 static bool migration_is_setup_or_active(int state)
463 {
464 switch (state) {
465 case MIGRATION_STATUS_ACTIVE:
466 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
467 case MIGRATION_STATUS_SETUP:
468 return true;
469
470 default:
471 return false;
472
473 }
474 }
475
476 static void get_xbzrle_cache_stats(MigrationInfo *info)
477 {
478 if (migrate_use_xbzrle()) {
479 info->has_xbzrle_cache = true;
480 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
481 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
482 info->xbzrle_cache->bytes = xbzrle_mig_bytes_transferred();
483 info->xbzrle_cache->pages = xbzrle_mig_pages_transferred();
484 info->xbzrle_cache->cache_miss = xbzrle_mig_pages_cache_miss();
485 info->xbzrle_cache->cache_miss_rate = xbzrle_mig_cache_miss_rate();
486 info->xbzrle_cache->overflow = xbzrle_mig_pages_overflow();
487 }
488 }
489
490 MigrationInfo *qmp_query_migrate(Error **errp)
491 {
492 MigrationInfo *info = g_malloc0(sizeof(*info));
493 MigrationState *s = migrate_get_current();
494
495 switch (s->state) {
496 case MIGRATION_STATUS_NONE:
497 /* no migration has happened ever */
498 break;
499 case MIGRATION_STATUS_SETUP:
500 info->has_status = true;
501 info->has_total_time = false;
502 break;
503 case MIGRATION_STATUS_ACTIVE:
504 case MIGRATION_STATUS_CANCELLING:
505 info->has_status = true;
506 info->has_total_time = true;
507 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
508 - s->total_time;
509 info->has_expected_downtime = true;
510 info->expected_downtime = s->expected_downtime;
511 info->has_setup_time = true;
512 info->setup_time = s->setup_time;
513
514 info->has_ram = true;
515 info->ram = g_malloc0(sizeof(*info->ram));
516 info->ram->transferred = ram_bytes_transferred();
517 info->ram->remaining = ram_bytes_remaining();
518 info->ram->total = ram_bytes_total();
519 info->ram->duplicate = dup_mig_pages_transferred();
520 info->ram->skipped = skipped_mig_pages_transferred();
521 info->ram->normal = norm_mig_pages_transferred();
522 info->ram->normal_bytes = norm_mig_bytes_transferred();
523 info->ram->dirty_pages_rate = s->dirty_pages_rate;
524 info->ram->mbps = s->mbps;
525 info->ram->dirty_sync_count = s->dirty_sync_count;
526
527 if (blk_mig_active()) {
528 info->has_disk = true;
529 info->disk = g_malloc0(sizeof(*info->disk));
530 info->disk->transferred = blk_mig_bytes_transferred();
531 info->disk->remaining = blk_mig_bytes_remaining();
532 info->disk->total = blk_mig_bytes_total();
533 }
534
535 if (cpu_throttle_active()) {
536 info->has_x_cpu_throttle_percentage = true;
537 info->x_cpu_throttle_percentage = cpu_throttle_get_percentage();
538 }
539
540 get_xbzrle_cache_stats(info);
541 break;
542 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
543 /* Mostly the same as active; TODO add some postcopy stats */
544 info->has_status = true;
545 info->has_total_time = true;
546 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
547 - s->total_time;
548 info->has_expected_downtime = true;
549 info->expected_downtime = s->expected_downtime;
550 info->has_setup_time = true;
551 info->setup_time = s->setup_time;
552
553 info->has_ram = true;
554 info->ram = g_malloc0(sizeof(*info->ram));
555 info->ram->transferred = ram_bytes_transferred();
556 info->ram->remaining = ram_bytes_remaining();
557 info->ram->total = ram_bytes_total();
558 info->ram->duplicate = dup_mig_pages_transferred();
559 info->ram->skipped = skipped_mig_pages_transferred();
560 info->ram->normal = norm_mig_pages_transferred();
561 info->ram->normal_bytes = norm_mig_bytes_transferred();
562 info->ram->dirty_pages_rate = s->dirty_pages_rate;
563 info->ram->mbps = s->mbps;
564
565 if (blk_mig_active()) {
566 info->has_disk = true;
567 info->disk = g_malloc0(sizeof(*info->disk));
568 info->disk->transferred = blk_mig_bytes_transferred();
569 info->disk->remaining = blk_mig_bytes_remaining();
570 info->disk->total = blk_mig_bytes_total();
571 }
572
573 get_xbzrle_cache_stats(info);
574 break;
575 case MIGRATION_STATUS_COMPLETED:
576 get_xbzrle_cache_stats(info);
577
578 info->has_status = true;
579 info->has_total_time = true;
580 info->total_time = s->total_time;
581 info->has_downtime = true;
582 info->downtime = s->downtime;
583 info->has_setup_time = true;
584 info->setup_time = s->setup_time;
585
586 info->has_ram = true;
587 info->ram = g_malloc0(sizeof(*info->ram));
588 info->ram->transferred = ram_bytes_transferred();
589 info->ram->remaining = 0;
590 info->ram->total = ram_bytes_total();
591 info->ram->duplicate = dup_mig_pages_transferred();
592 info->ram->skipped = skipped_mig_pages_transferred();
593 info->ram->normal = norm_mig_pages_transferred();
594 info->ram->normal_bytes = norm_mig_bytes_transferred();
595 info->ram->mbps = s->mbps;
596 info->ram->dirty_sync_count = s->dirty_sync_count;
597 break;
598 case MIGRATION_STATUS_FAILED:
599 info->has_status = true;
600 break;
601 case MIGRATION_STATUS_CANCELLED:
602 info->has_status = true;
603 break;
604 }
605 info->status = s->state;
606
607 return info;
608 }
609
610 void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
611 Error **errp)
612 {
613 MigrationState *s = migrate_get_current();
614 MigrationCapabilityStatusList *cap;
615
616 if (migration_is_setup_or_active(s->state)) {
617 error_setg(errp, QERR_MIGRATION_ACTIVE);
618 return;
619 }
620
621 for (cap = params; cap; cap = cap->next) {
622 s->enabled_capabilities[cap->value->capability] = cap->value->state;
623 }
624
625 if (migrate_postcopy_ram()) {
626 if (migrate_use_compression()) {
627 /* The decompression threads asynchronously write into RAM
628 * rather than use the atomic copies needed to avoid
629 * userfaulting. It should be possible to fix the decompression
630 * threads for compatibility in future.
631 */
632 error_report("Postcopy is not currently compatible with "
633 "compression");
634 s->enabled_capabilities[MIGRATION_CAPABILITY_X_POSTCOPY_RAM] =
635 false;
636 }
637 }
638 }
639
640 void qmp_migrate_set_parameters(bool has_compress_level,
641 int64_t compress_level,
642 bool has_compress_threads,
643 int64_t compress_threads,
644 bool has_decompress_threads,
645 int64_t decompress_threads,
646 bool has_x_cpu_throttle_initial,
647 int64_t x_cpu_throttle_initial,
648 bool has_x_cpu_throttle_increment,
649 int64_t x_cpu_throttle_increment, Error **errp)
650 {
651 MigrationState *s = migrate_get_current();
652
653 if (has_compress_level && (compress_level < 0 || compress_level > 9)) {
654 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
655 "is invalid, it should be in the range of 0 to 9");
656 return;
657 }
658 if (has_compress_threads &&
659 (compress_threads < 1 || compress_threads > 255)) {
660 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
661 "compress_threads",
662 "is invalid, it should be in the range of 1 to 255");
663 return;
664 }
665 if (has_decompress_threads &&
666 (decompress_threads < 1 || decompress_threads > 255)) {
667 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
668 "decompress_threads",
669 "is invalid, it should be in the range of 1 to 255");
670 return;
671 }
672 if (has_x_cpu_throttle_initial &&
673 (x_cpu_throttle_initial < 1 || x_cpu_throttle_initial > 99)) {
674 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
675 "x_cpu_throttle_initial",
676 "an integer in the range of 1 to 99");
677 }
678 if (has_x_cpu_throttle_increment &&
679 (x_cpu_throttle_increment < 1 || x_cpu_throttle_increment > 99)) {
680 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
681 "x_cpu_throttle_increment",
682 "an integer in the range of 1 to 99");
683 }
684
685 if (has_compress_level) {
686 s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL] = compress_level;
687 }
688 if (has_compress_threads) {
689 s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS] = compress_threads;
690 }
691 if (has_decompress_threads) {
692 s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS] =
693 decompress_threads;
694 }
695 if (has_x_cpu_throttle_initial) {
696 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL] =
697 x_cpu_throttle_initial;
698 }
699
700 if (has_x_cpu_throttle_increment) {
701 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT] =
702 x_cpu_throttle_increment;
703 }
704 }
705
706 void qmp_migrate_start_postcopy(Error **errp)
707 {
708 MigrationState *s = migrate_get_current();
709
710 if (!migrate_postcopy_ram()) {
711 error_setg(errp, "Enable postcopy with migration_set_capability before"
712 " the start of migration");
713 return;
714 }
715
716 if (s->state == MIGRATION_STATUS_NONE) {
717 error_setg(errp, "Postcopy must be started after migration has been"
718 " started");
719 return;
720 }
721 /*
722 * we don't error if migration has finished since that would be racy
723 * with issuing this command.
724 */
725 atomic_set(&s->start_postcopy, true);
726 }
727
728 /* shared migration helpers */
729
730 static void migrate_set_state(MigrationState *s, int old_state, int new_state)
731 {
732 if (atomic_cmpxchg(&s->state, old_state, new_state) == old_state) {
733 trace_migrate_set_state(new_state);
734 migrate_generate_event(new_state);
735 }
736 }
737
738 static void migrate_fd_cleanup(void *opaque)
739 {
740 MigrationState *s = opaque;
741
742 qemu_bh_delete(s->cleanup_bh);
743 s->cleanup_bh = NULL;
744
745 if (s->file) {
746 trace_migrate_fd_cleanup();
747 qemu_mutex_unlock_iothread();
748 if (s->migration_thread_running) {
749 qemu_thread_join(&s->thread);
750 s->migration_thread_running = false;
751 }
752 qemu_mutex_lock_iothread();
753
754 migrate_compress_threads_join();
755 qemu_fclose(s->file);
756 s->file = NULL;
757 }
758
759 assert((s->state != MIGRATION_STATUS_ACTIVE) &&
760 (s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE));
761
762 if (s->state == MIGRATION_STATUS_CANCELLING) {
763 migrate_set_state(s, MIGRATION_STATUS_CANCELLING,
764 MIGRATION_STATUS_CANCELLED);
765 }
766
767 notifier_list_notify(&migration_state_notifiers, s);
768 }
769
770 void migrate_fd_error(MigrationState *s)
771 {
772 trace_migrate_fd_error();
773 assert(s->file == NULL);
774 migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_FAILED);
775 notifier_list_notify(&migration_state_notifiers, s);
776 }
777
778 static void migrate_fd_cancel(MigrationState *s)
779 {
780 int old_state ;
781 QEMUFile *f = migrate_get_current()->file;
782 trace_migrate_fd_cancel();
783
784 if (s->rp_state.from_dst_file) {
785 /* shutdown the rp socket, so causing the rp thread to shutdown */
786 qemu_file_shutdown(s->rp_state.from_dst_file);
787 }
788
789 do {
790 old_state = s->state;
791 if (!migration_is_setup_or_active(old_state)) {
792 break;
793 }
794 migrate_set_state(s, old_state, MIGRATION_STATUS_CANCELLING);
795 } while (s->state != MIGRATION_STATUS_CANCELLING);
796
797 /*
798 * If we're unlucky the migration code might be stuck somewhere in a
799 * send/write while the network has failed and is waiting to timeout;
800 * if we've got shutdown(2) available then we can force it to quit.
801 * The outgoing qemu file gets closed in migrate_fd_cleanup that is
802 * called in a bh, so there is no race against this cancel.
803 */
804 if (s->state == MIGRATION_STATUS_CANCELLING && f) {
805 qemu_file_shutdown(f);
806 }
807 }
808
809 void add_migration_state_change_notifier(Notifier *notify)
810 {
811 notifier_list_add(&migration_state_notifiers, notify);
812 }
813
814 void remove_migration_state_change_notifier(Notifier *notify)
815 {
816 notifier_remove(notify);
817 }
818
819 bool migration_in_setup(MigrationState *s)
820 {
821 return s->state == MIGRATION_STATUS_SETUP;
822 }
823
824 bool migration_has_finished(MigrationState *s)
825 {
826 return s->state == MIGRATION_STATUS_COMPLETED;
827 }
828
829 bool migration_has_failed(MigrationState *s)
830 {
831 return (s->state == MIGRATION_STATUS_CANCELLED ||
832 s->state == MIGRATION_STATUS_FAILED);
833 }
834
835 bool migration_in_postcopy(MigrationState *s)
836 {
837 return (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
838 }
839
840 MigrationState *migrate_init(const MigrationParams *params)
841 {
842 MigrationState *s = migrate_get_current();
843 int64_t bandwidth_limit = s->bandwidth_limit;
844 bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
845 int64_t xbzrle_cache_size = s->xbzrle_cache_size;
846 int compress_level = s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL];
847 int compress_thread_count =
848 s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS];
849 int decompress_thread_count =
850 s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS];
851 int x_cpu_throttle_initial =
852 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL];
853 int x_cpu_throttle_increment =
854 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT];
855
856 memcpy(enabled_capabilities, s->enabled_capabilities,
857 sizeof(enabled_capabilities));
858
859 memset(s, 0, sizeof(*s));
860 s->params = *params;
861 memcpy(s->enabled_capabilities, enabled_capabilities,
862 sizeof(enabled_capabilities));
863 s->xbzrle_cache_size = xbzrle_cache_size;
864
865 s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL] = compress_level;
866 s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS] =
867 compress_thread_count;
868 s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS] =
869 decompress_thread_count;
870 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL] =
871 x_cpu_throttle_initial;
872 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT] =
873 x_cpu_throttle_increment;
874 s->bandwidth_limit = bandwidth_limit;
875 migrate_set_state(s, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
876
877 s->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
878 return s;
879 }
880
881 static GSList *migration_blockers;
882
883 void migrate_add_blocker(Error *reason)
884 {
885 migration_blockers = g_slist_prepend(migration_blockers, reason);
886 }
887
888 void migrate_del_blocker(Error *reason)
889 {
890 migration_blockers = g_slist_remove(migration_blockers, reason);
891 }
892
893 void qmp_migrate_incoming(const char *uri, Error **errp)
894 {
895 Error *local_err = NULL;
896 static bool once = true;
897
898 if (!deferred_incoming) {
899 error_setg(errp, "For use with '-incoming defer'");
900 return;
901 }
902 if (!once) {
903 error_setg(errp, "The incoming migration has already been started");
904 }
905
906 qemu_start_incoming_migration(uri, &local_err);
907
908 if (local_err) {
909 error_propagate(errp, local_err);
910 return;
911 }
912
913 once = false;
914 }
915
916 void qmp_migrate(const char *uri, bool has_blk, bool blk,
917 bool has_inc, bool inc, bool has_detach, bool detach,
918 Error **errp)
919 {
920 Error *local_err = NULL;
921 MigrationState *s = migrate_get_current();
922 MigrationParams params;
923 const char *p;
924
925 params.blk = has_blk && blk;
926 params.shared = has_inc && inc;
927
928 if (migration_is_setup_or_active(s->state) ||
929 s->state == MIGRATION_STATUS_CANCELLING) {
930 error_setg(errp, QERR_MIGRATION_ACTIVE);
931 return;
932 }
933 if (runstate_check(RUN_STATE_INMIGRATE)) {
934 error_setg(errp, "Guest is waiting for an incoming migration");
935 return;
936 }
937
938 if (qemu_savevm_state_blocked(errp)) {
939 return;
940 }
941
942 if (migration_blockers) {
943 *errp = error_copy(migration_blockers->data);
944 return;
945 }
946
947 /* We are starting a new migration, so we want to start in a clean
948 state. This change is only needed if previous migration
949 failed/was cancelled. We don't use migrate_set_state() because
950 we are setting the initial state, not changing it. */
951 s->state = MIGRATION_STATUS_NONE;
952
953 s = migrate_init(&params);
954
955 if (strstart(uri, "tcp:", &p)) {
956 tcp_start_outgoing_migration(s, p, &local_err);
957 #ifdef CONFIG_RDMA
958 } else if (strstart(uri, "rdma:", &p)) {
959 rdma_start_outgoing_migration(s, p, &local_err);
960 #endif
961 #if !defined(WIN32)
962 } else if (strstart(uri, "exec:", &p)) {
963 exec_start_outgoing_migration(s, p, &local_err);
964 } else if (strstart(uri, "unix:", &p)) {
965 unix_start_outgoing_migration(s, p, &local_err);
966 } else if (strstart(uri, "fd:", &p)) {
967 fd_start_outgoing_migration(s, p, &local_err);
968 #endif
969 } else {
970 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
971 "a valid migration protocol");
972 migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_FAILED);
973 return;
974 }
975
976 if (local_err) {
977 migrate_fd_error(s);
978 error_propagate(errp, local_err);
979 return;
980 }
981 }
982
983 void qmp_migrate_cancel(Error **errp)
984 {
985 migrate_fd_cancel(migrate_get_current());
986 }
987
988 void qmp_migrate_set_cache_size(int64_t value, Error **errp)
989 {
990 MigrationState *s = migrate_get_current();
991 int64_t new_size;
992
993 /* Check for truncation */
994 if (value != (size_t)value) {
995 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
996 "exceeding address space");
997 return;
998 }
999
1000 /* Cache should not be larger than guest ram size */
1001 if (value > ram_bytes_total()) {
1002 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
1003 "exceeds guest ram size ");
1004 return;
1005 }
1006
1007 new_size = xbzrle_cache_resize(value);
1008 if (new_size < 0) {
1009 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
1010 "is smaller than page size");
1011 return;
1012 }
1013
1014 s->xbzrle_cache_size = new_size;
1015 }
1016
1017 int64_t qmp_query_migrate_cache_size(Error **errp)
1018 {
1019 return migrate_xbzrle_cache_size();
1020 }
1021
1022 void qmp_migrate_set_speed(int64_t value, Error **errp)
1023 {
1024 MigrationState *s;
1025
1026 if (value < 0) {
1027 value = 0;
1028 }
1029 if (value > SIZE_MAX) {
1030 value = SIZE_MAX;
1031 }
1032
1033 s = migrate_get_current();
1034 s->bandwidth_limit = value;
1035 if (s->file) {
1036 qemu_file_set_rate_limit(s->file, s->bandwidth_limit / XFER_LIMIT_RATIO);
1037 }
1038 }
1039
1040 void qmp_migrate_set_downtime(double value, Error **errp)
1041 {
1042 value *= 1e9;
1043 value = MAX(0, MIN(UINT64_MAX, value));
1044 max_downtime = (uint64_t)value;
1045 }
1046
1047 bool migrate_postcopy_ram(void)
1048 {
1049 MigrationState *s;
1050
1051 s = migrate_get_current();
1052
1053 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_POSTCOPY_RAM];
1054 }
1055
1056 bool migrate_auto_converge(void)
1057 {
1058 MigrationState *s;
1059
1060 s = migrate_get_current();
1061
1062 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
1063 }
1064
1065 bool migrate_zero_blocks(void)
1066 {
1067 MigrationState *s;
1068
1069 s = migrate_get_current();
1070
1071 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
1072 }
1073
1074 bool migrate_use_compression(void)
1075 {
1076 MigrationState *s;
1077
1078 s = migrate_get_current();
1079
1080 return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
1081 }
1082
1083 int migrate_compress_level(void)
1084 {
1085 MigrationState *s;
1086
1087 s = migrate_get_current();
1088
1089 return s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL];
1090 }
1091
1092 int migrate_compress_threads(void)
1093 {
1094 MigrationState *s;
1095
1096 s = migrate_get_current();
1097
1098 return s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS];
1099 }
1100
1101 int migrate_decompress_threads(void)
1102 {
1103 MigrationState *s;
1104
1105 s = migrate_get_current();
1106
1107 return s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS];
1108 }
1109
1110 bool migrate_use_events(void)
1111 {
1112 MigrationState *s;
1113
1114 s = migrate_get_current();
1115
1116 return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS];
1117 }
1118
1119 int migrate_use_xbzrle(void)
1120 {
1121 MigrationState *s;
1122
1123 s = migrate_get_current();
1124
1125 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
1126 }
1127
1128 int64_t migrate_xbzrle_cache_size(void)
1129 {
1130 MigrationState *s;
1131
1132 s = migrate_get_current();
1133
1134 return s->xbzrle_cache_size;
1135 }
1136
1137 /* migration thread support */
1138 /*
1139 * Something bad happened to the RP stream, mark an error
1140 * The caller shall print or trace something to indicate why
1141 */
1142 static void mark_source_rp_bad(MigrationState *s)
1143 {
1144 s->rp_state.error = true;
1145 }
1146
1147 static struct rp_cmd_args {
1148 ssize_t len; /* -1 = variable */
1149 const char *name;
1150 } rp_cmd_args[] = {
1151 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
1152 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
1153 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
1154 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
1155 };
1156
1157 /*
1158 * Handles messages sent on the return path towards the source VM
1159 *
1160 */
1161 static void *source_return_path_thread(void *opaque)
1162 {
1163 MigrationState *ms = opaque;
1164 QEMUFile *rp = ms->rp_state.from_dst_file;
1165 uint16_t header_len, header_type;
1166 const int max_len = 512;
1167 uint8_t buf[max_len];
1168 uint32_t tmp32, sibling_error;
1169 int res;
1170
1171 trace_source_return_path_thread_entry();
1172 while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1173 migration_is_setup_or_active(ms->state)) {
1174 trace_source_return_path_thread_loop_top();
1175 header_type = qemu_get_be16(rp);
1176 header_len = qemu_get_be16(rp);
1177
1178 if (header_type >= MIG_RP_MSG_MAX ||
1179 header_type == MIG_RP_MSG_INVALID) {
1180 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1181 header_type, header_len);
1182 mark_source_rp_bad(ms);
1183 goto out;
1184 }
1185
1186 if ((rp_cmd_args[header_type].len != -1 &&
1187 header_len != rp_cmd_args[header_type].len) ||
1188 header_len > max_len) {
1189 error_report("RP: Received '%s' message (0x%04x) with"
1190 "incorrect length %d expecting %zu",
1191 rp_cmd_args[header_type].name, header_type, header_len,
1192 (size_t)rp_cmd_args[header_type].len);
1193 mark_source_rp_bad(ms);
1194 goto out;
1195 }
1196
1197 /* We know we've got a valid header by this point */
1198 res = qemu_get_buffer(rp, buf, header_len);
1199 if (res != header_len) {
1200 error_report("RP: Failed reading data for message 0x%04x"
1201 " read %d expected %d",
1202 header_type, res, header_len);
1203 mark_source_rp_bad(ms);
1204 goto out;
1205 }
1206
1207 /* OK, we have the message and the data */
1208 switch (header_type) {
1209 case MIG_RP_MSG_SHUT:
1210 sibling_error = be32_to_cpup((uint32_t *)buf);
1211 trace_source_return_path_thread_shut(sibling_error);
1212 if (sibling_error) {
1213 error_report("RP: Sibling indicated error %d", sibling_error);
1214 mark_source_rp_bad(ms);
1215 }
1216 /*
1217 * We'll let the main thread deal with closing the RP
1218 * we could do a shutdown(2) on it, but we're the only user
1219 * anyway, so there's nothing gained.
1220 */
1221 goto out;
1222
1223 case MIG_RP_MSG_PONG:
1224 tmp32 = be32_to_cpup((uint32_t *)buf);
1225 trace_source_return_path_thread_pong(tmp32);
1226 break;
1227
1228 default:
1229 break;
1230 }
1231 }
1232 if (rp && qemu_file_get_error(rp)) {
1233 trace_source_return_path_thread_bad_end();
1234 mark_source_rp_bad(ms);
1235 }
1236
1237 trace_source_return_path_thread_end();
1238 out:
1239 ms->rp_state.from_dst_file = NULL;
1240 qemu_fclose(rp);
1241 return NULL;
1242 }
1243
1244 static int open_return_path_on_source(MigrationState *ms)
1245 {
1246
1247 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->file);
1248 if (!ms->rp_state.from_dst_file) {
1249 return -1;
1250 }
1251
1252 trace_open_return_path_on_source();
1253 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
1254 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
1255
1256 trace_open_return_path_on_source_continue();
1257
1258 return 0;
1259 }
1260
1261 __attribute__ (( unused )) /* Until later in patch series */
1262 /* Returns 0 if the RP was ok, otherwise there was an error on the RP */
1263 static int await_return_path_close_on_source(MigrationState *ms)
1264 {
1265 /*
1266 * If this is a normal exit then the destination will send a SHUT and the
1267 * rp_thread will exit, however if there's an error we need to cause
1268 * it to exit.
1269 */
1270 if (qemu_file_get_error(ms->file) && ms->rp_state.from_dst_file) {
1271 /*
1272 * shutdown(2), if we have it, will cause it to unblock if it's stuck
1273 * waiting for the destination.
1274 */
1275 qemu_file_shutdown(ms->rp_state.from_dst_file);
1276 mark_source_rp_bad(ms);
1277 }
1278 trace_await_return_path_close_on_source_joining();
1279 qemu_thread_join(&ms->rp_state.rp_thread);
1280 trace_await_return_path_close_on_source_close();
1281 return ms->rp_state.error;
1282 }
1283
1284 /*
1285 * Switch from normal iteration to postcopy
1286 * Returns non-0 on error
1287 */
1288 static int postcopy_start(MigrationState *ms, bool *old_vm_running)
1289 {
1290 int ret;
1291 const QEMUSizedBuffer *qsb;
1292 int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1293 migrate_set_state(ms, MIGRATION_STATUS_ACTIVE,
1294 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1295
1296 trace_postcopy_start();
1297 qemu_mutex_lock_iothread();
1298 trace_postcopy_start_set_run();
1299
1300 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
1301 *old_vm_running = runstate_is_running();
1302 global_state_store();
1303 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
1304
1305 if (ret < 0) {
1306 goto fail;
1307 }
1308
1309 /*
1310 * in Finish migrate and with the io-lock held everything should
1311 * be quiet, but we've potentially still got dirty pages and we
1312 * need to tell the destination to throw any pages it's already received
1313 * that are dirty
1314 */
1315 if (ram_postcopy_send_discard_bitmap(ms)) {
1316 error_report("postcopy send discard bitmap failed");
1317 goto fail;
1318 }
1319
1320 /*
1321 * send rest of state - note things that are doing postcopy
1322 * will notice we're in POSTCOPY_ACTIVE and not actually
1323 * wrap their state up here
1324 */
1325 qemu_file_set_rate_limit(ms->file, INT64_MAX);
1326 /* Ping just for debugging, helps line traces up */
1327 qemu_savevm_send_ping(ms->file, 2);
1328
1329 /*
1330 * While loading the device state we may trigger page transfer
1331 * requests and the fd must be free to process those, and thus
1332 * the destination must read the whole device state off the fd before
1333 * it starts processing it. Unfortunately the ad-hoc migration format
1334 * doesn't allow the destination to know the size to read without fully
1335 * parsing it through each devices load-state code (especially the open
1336 * coded devices that use get/put).
1337 * So we wrap the device state up in a package with a length at the start;
1338 * to do this we use a qemu_buf to hold the whole of the device state.
1339 */
1340 QEMUFile *fb = qemu_bufopen("w", NULL);
1341 if (!fb) {
1342 error_report("Failed to create buffered file");
1343 goto fail;
1344 }
1345
1346 qemu_savevm_state_complete_precopy(fb);
1347 qemu_savevm_send_ping(fb, 3);
1348
1349 qemu_savevm_send_postcopy_run(fb);
1350
1351 /* <><> end of stuff going into the package */
1352 qsb = qemu_buf_get(fb);
1353
1354 /* Now send that blob */
1355 if (qemu_savevm_send_packaged(ms->file, qsb)) {
1356 goto fail_closefb;
1357 }
1358 qemu_fclose(fb);
1359 ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
1360
1361 qemu_mutex_unlock_iothread();
1362
1363 /*
1364 * Although this ping is just for debug, it could potentially be
1365 * used for getting a better measurement of downtime at the source.
1366 */
1367 qemu_savevm_send_ping(ms->file, 4);
1368
1369 ret = qemu_file_get_error(ms->file);
1370 if (ret) {
1371 error_report("postcopy_start: Migration stream errored");
1372 migrate_set_state(ms, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1373 MIGRATION_STATUS_FAILED);
1374 }
1375
1376 return ret;
1377
1378 fail_closefb:
1379 qemu_fclose(fb);
1380 fail:
1381 migrate_set_state(ms, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1382 MIGRATION_STATUS_FAILED);
1383 qemu_mutex_unlock_iothread();
1384 return -1;
1385 }
1386
1387 /**
1388 * migration_completion: Used by migration_thread when there's not much left.
1389 * The caller 'breaks' the loop when this returns.
1390 *
1391 * @s: Current migration state
1392 * @current_active_state: The migration state we expect to be in
1393 * @*old_vm_running: Pointer to old_vm_running flag
1394 * @*start_time: Pointer to time to update
1395 */
1396 static void migration_completion(MigrationState *s, int current_active_state,
1397 bool *old_vm_running,
1398 int64_t *start_time)
1399 {
1400 int ret;
1401
1402 qemu_mutex_lock_iothread();
1403 *start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1404 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
1405 *old_vm_running = runstate_is_running();
1406
1407 ret = global_state_store();
1408 if (!ret) {
1409 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
1410 if (ret >= 0) {
1411 qemu_file_set_rate_limit(s->file, INT64_MAX);
1412 qemu_savevm_state_complete_precopy(s->file);
1413 }
1414 }
1415 qemu_mutex_unlock_iothread();
1416
1417 if (ret < 0) {
1418 goto fail;
1419 }
1420
1421 if (qemu_file_get_error(s->file)) {
1422 trace_migration_completion_file_err();
1423 goto fail;
1424 }
1425
1426 migrate_set_state(s, current_active_state, MIGRATION_STATUS_COMPLETED);
1427 return;
1428
1429 fail:
1430 migrate_set_state(s, current_active_state, MIGRATION_STATUS_FAILED);
1431 }
1432
1433 /*
1434 * Master migration thread on the source VM.
1435 * It drives the migration and pumps the data down the outgoing channel.
1436 */
1437 static void *migration_thread(void *opaque)
1438 {
1439 MigrationState *s = opaque;
1440 /* Used by the bandwidth calcs, updated later */
1441 int64_t initial_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1442 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
1443 int64_t initial_bytes = 0;
1444 int64_t max_size = 0;
1445 int64_t start_time = initial_time;
1446 int64_t end_time;
1447 bool old_vm_running = false;
1448 bool entered_postcopy = false;
1449 /* The active state we expect to be in; ACTIVE or POSTCOPY_ACTIVE */
1450 enum MigrationStatus current_active_state = MIGRATION_STATUS_ACTIVE;
1451
1452 rcu_register_thread();
1453
1454 qemu_savevm_state_header(s->file);
1455
1456 if (migrate_postcopy_ram()) {
1457 /* Now tell the dest that it should open its end so it can reply */
1458 qemu_savevm_send_open_return_path(s->file);
1459
1460 /* And do a ping that will make stuff easier to debug */
1461 qemu_savevm_send_ping(s->file, 1);
1462
1463 /*
1464 * Tell the destination that we *might* want to do postcopy later;
1465 * if the other end can't do postcopy it should fail now, nice and
1466 * early.
1467 */
1468 qemu_savevm_send_postcopy_advise(s->file);
1469 }
1470
1471 qemu_savevm_state_begin(s->file, &s->params);
1472
1473 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
1474 current_active_state = MIGRATION_STATUS_ACTIVE;
1475 migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_ACTIVE);
1476
1477 trace_migration_thread_setup_complete();
1478
1479 while (s->state == MIGRATION_STATUS_ACTIVE ||
1480 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
1481 int64_t current_time;
1482 uint64_t pending_size;
1483
1484 if (!qemu_file_rate_limit(s->file)) {
1485 uint64_t pend_post, pend_nonpost;
1486
1487 qemu_savevm_state_pending(s->file, max_size, &pend_nonpost,
1488 &pend_post);
1489 pending_size = pend_nonpost + pend_post;
1490 trace_migrate_pending(pending_size, max_size,
1491 pend_post, pend_nonpost);
1492 if (pending_size && pending_size >= max_size) {
1493 /* Still a significant amount to transfer */
1494
1495 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1496 if (migrate_postcopy_ram() &&
1497 s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE &&
1498 pend_nonpost <= max_size &&
1499 atomic_read(&s->start_postcopy)) {
1500
1501 if (!postcopy_start(s, &old_vm_running)) {
1502 current_active_state = MIGRATION_STATUS_POSTCOPY_ACTIVE;
1503 entered_postcopy = true;
1504 }
1505
1506 continue;
1507 }
1508 /* Just another iteration step */
1509 qemu_savevm_state_iterate(s->file);
1510 } else {
1511 trace_migration_thread_low_pending(pending_size);
1512 migration_completion(s, current_active_state,
1513 &old_vm_running, &start_time);
1514 break;
1515 }
1516 }
1517
1518 if (qemu_file_get_error(s->file)) {
1519 migrate_set_state(s, current_active_state, MIGRATION_STATUS_FAILED);
1520 trace_migration_thread_file_err();
1521 break;
1522 }
1523 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1524 if (current_time >= initial_time + BUFFER_DELAY) {
1525 uint64_t transferred_bytes = qemu_ftell(s->file) - initial_bytes;
1526 uint64_t time_spent = current_time - initial_time;
1527 double bandwidth = transferred_bytes / time_spent;
1528 max_size = bandwidth * migrate_max_downtime() / 1000000;
1529
1530 s->mbps = time_spent ? (((double) transferred_bytes * 8.0) /
1531 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0 : -1;
1532
1533 trace_migrate_transferred(transferred_bytes, time_spent,
1534 bandwidth, max_size);
1535 /* if we haven't sent anything, we don't want to recalculate
1536 10000 is a small enough number for our purposes */
1537 if (s->dirty_bytes_rate && transferred_bytes > 10000) {
1538 s->expected_downtime = s->dirty_bytes_rate / bandwidth;
1539 }
1540
1541 qemu_file_reset_rate_limit(s->file);
1542 initial_time = current_time;
1543 initial_bytes = qemu_ftell(s->file);
1544 }
1545 if (qemu_file_rate_limit(s->file)) {
1546 /* usleep expects microseconds */
1547 g_usleep((initial_time + BUFFER_DELAY - current_time)*1000);
1548 }
1549 }
1550
1551 trace_migration_thread_after_loop();
1552 /* If we enabled cpu throttling for auto-converge, turn it off. */
1553 cpu_throttle_stop();
1554 end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1555
1556 qemu_mutex_lock_iothread();
1557 qemu_savevm_state_cleanup();
1558 if (s->state == MIGRATION_STATUS_COMPLETED) {
1559 uint64_t transferred_bytes = qemu_ftell(s->file);
1560 s->total_time = end_time - s->total_time;
1561 if (!entered_postcopy) {
1562 s->downtime = end_time - start_time;
1563 }
1564 if (s->total_time) {
1565 s->mbps = (((double) transferred_bytes * 8.0) /
1566 ((double) s->total_time)) / 1000;
1567 }
1568 runstate_set(RUN_STATE_POSTMIGRATE);
1569 } else {
1570 if (old_vm_running && !entered_postcopy) {
1571 vm_start();
1572 }
1573 }
1574 qemu_bh_schedule(s->cleanup_bh);
1575 qemu_mutex_unlock_iothread();
1576
1577 rcu_unregister_thread();
1578 return NULL;
1579 }
1580
1581 void migrate_fd_connect(MigrationState *s)
1582 {
1583 /* This is a best 1st approximation. ns to ms */
1584 s->expected_downtime = max_downtime/1000000;
1585 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
1586
1587 qemu_file_set_rate_limit(s->file,
1588 s->bandwidth_limit / XFER_LIMIT_RATIO);
1589
1590 /* Notify before starting migration thread */
1591 notifier_list_notify(&migration_state_notifiers, s);
1592
1593 /*
1594 * Open the return path; currently for postcopy but other things might
1595 * also want it.
1596 */
1597 if (migrate_postcopy_ram()) {
1598 if (open_return_path_on_source(s)) {
1599 error_report("Unable to open return-path for postcopy");
1600 migrate_set_state(s, MIGRATION_STATUS_SETUP,
1601 MIGRATION_STATUS_FAILED);
1602 migrate_fd_cleanup(s);
1603 return;
1604 }
1605 }
1606
1607 migrate_compress_threads_create();
1608 qemu_thread_create(&s->thread, "migration", migration_thread, s,
1609 QEMU_THREAD_JOINABLE);
1610 s->migration_thread_running = true;
1611 }
1612
1613 PostcopyState postcopy_state_get(void)
1614 {
1615 return atomic_mb_read(&incoming_postcopy_state);
1616 }
1617
1618 /* Set the state and return the old state */
1619 PostcopyState postcopy_state_set(PostcopyState new_state)
1620 {
1621 return atomic_xchg(&incoming_postcopy_state, new_state);
1622 }
1623