]> git.ipfire.org Git - thirdparty/qemu.git/blame - migration.c
migration: send total time in QMP at "completed" stage
[thirdparty/qemu.git] / migration.c
CommitLineData
5bb7910a
AL
1/*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
6b620ca3
PB
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
5bb7910a
AL
14 */
15
16#include "qemu-common.h"
caf71f86 17#include "migration/migration.h"
83c9089e 18#include "monitor/monitor.h"
0d82d0e8 19#include "migration/qemu-file.h"
9c17d615 20#include "sysemu/sysemu.h"
737e150e 21#include "block/block.h"
1de7afc9 22#include "qemu/sockets.h"
caf71f86 23#include "migration/block.h"
766bd176 24#include "qemu/thread.h"
791e7c82 25#include "qmp-commands.h"
c09e5bb1 26#include "trace.h"
065e2813
AL
27
28//#define DEBUG_MIGRATION
29
30#ifdef DEBUG_MIGRATION
d0f2c4c6 31#define DPRINTF(fmt, ...) \
065e2813
AL
32 do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
33#else
d0f2c4c6 34#define DPRINTF(fmt, ...) \
065e2813
AL
35 do { } while (0)
36#endif
5bb7910a 37
7dc688ed 38enum {
29ae8a41
MH
39 MIG_STATE_ERROR = -1,
40 MIG_STATE_NONE,
7dc688ed
JQ
41 MIG_STATE_SETUP,
42 MIG_STATE_CANCELLED,
43 MIG_STATE_ACTIVE,
44 MIG_STATE_COMPLETED,
45};
5bb7910a 46
d0ae46c1 47#define MAX_THROTTLE (32 << 20) /* Migration speed throttling */
5bb7910a 48
5b4e1eb7
JQ
49/* Amount of time to allocate to each "chunk" of bandwidth-throttled
50 * data. */
51#define BUFFER_DELAY 100
52#define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)
53
17ad9b35
OW
54/* Migration XBZRLE default cache size */
55#define DEFAULT_MIGRATE_CACHE_SIZE (64 * 1024 * 1024)
56
99a0db9b
GH
57static NotifierList migration_state_notifiers =
58 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
59
17549e84
JQ
60/* When we add fault tolerance, we could have several
61 migrations at once. For now we don't need to add
62 dynamic creation of migration */
63
859bc756 64MigrationState *migrate_get_current(void)
17549e84
JQ
65{
66 static MigrationState current_migration = {
29ae8a41 67 .state = MIG_STATE_NONE,
d0ae46c1 68 .bandwidth_limit = MAX_THROTTLE,
17ad9b35 69 .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE,
7e114f8c 70 .mbps = -1,
17549e84
JQ
71 };
72
73 return &current_migration;
74}
75
43eaae28 76void qemu_start_incoming_migration(const char *uri, Error **errp)
5bb7910a 77{
34c9dd8e
AL
78 const char *p;
79
80 if (strstart(uri, "tcp:", &p))
43eaae28 81 tcp_start_incoming_migration(p, errp);
2da776db
MH
82#ifdef CONFIG_RDMA
83 else if (strstart(uri, "x-rdma:", &p))
84 rdma_start_incoming_migration(p, errp);
85#endif
065e2813
AL
86#if !defined(WIN32)
87 else if (strstart(uri, "exec:", &p))
43eaae28 88 exec_start_incoming_migration(p, errp);
4951f65b 89 else if (strstart(uri, "unix:", &p))
43eaae28 90 unix_start_incoming_migration(p, errp);
5ac1fad3 91 else if (strstart(uri, "fd:", &p))
43eaae28 92 fd_start_incoming_migration(p, errp);
065e2813 93#endif
8ca5e801 94 else {
312fd5f2 95 error_setg(errp, "unknown migration protocol: %s", uri);
8ca5e801 96 }
5bb7910a
AL
97}
98
82a4da79 99static void process_incoming_migration_co(void *opaque)
511c0231 100{
82a4da79 101 QEMUFile *f = opaque;
1c12e1f5
PB
102 int ret;
103
104 ret = qemu_loadvm_state(f);
105 qemu_fclose(f);
106 if (ret < 0) {
511c0231 107 fprintf(stderr, "load of migration failed\n");
4aead692 108 exit(EXIT_FAILURE);
511c0231
JQ
109 }
110 qemu_announce_self();
111 DPRINTF("successfully loaded vm state\n");
112
901862cb 113 bdrv_clear_incoming_migration_all();
0f15423c
AL
114 /* Make sure all file formats flush their mutable metadata */
115 bdrv_invalidate_cache_all();
116
f5bbfba1 117 if (autostart) {
511c0231 118 vm_start();
f5bbfba1 119 } else {
29ed72f1 120 runstate_set(RUN_STATE_PAUSED);
f5bbfba1 121 }
511c0231
JQ
122}
123
82a4da79
PB
124void process_incoming_migration(QEMUFile *f)
125{
126 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co);
127 int fd = qemu_get_fd(f);
128
129 assert(fd != -1);
f9e8cacc 130 qemu_set_nonblock(fd);
82a4da79
PB
131 qemu_coroutine_enter(co, f);
132}
133
a0a3fd60
GC
134/* amount of nanoseconds we are willing to wait for migration to be down.
135 * the choice of nanoseconds is because it is the maximum resolution that
136 * get_clock() can achieve. It is an internal measure. All user-visible
137 * units must be in seconds */
138static uint64_t max_downtime = 30000000;
139
140uint64_t migrate_max_downtime(void)
141{
142 return max_downtime;
143}
144
bbf6da32
OW
145MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
146{
147 MigrationCapabilityStatusList *head = NULL;
148 MigrationCapabilityStatusList *caps;
149 MigrationState *s = migrate_get_current();
150 int i;
151
152 for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
153 if (head == NULL) {
154 head = g_malloc0(sizeof(*caps));
155 caps = head;
156 } else {
157 caps->next = g_malloc0(sizeof(*caps));
158 caps = caps->next;
159 }
160 caps->value =
161 g_malloc(sizeof(*caps->value));
162 caps->value->capability = i;
163 caps->value->state = s->enabled_capabilities[i];
164 }
165
166 return head;
167}
168
f36d55af
OW
169static void get_xbzrle_cache_stats(MigrationInfo *info)
170{
171 if (migrate_use_xbzrle()) {
172 info->has_xbzrle_cache = true;
173 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
174 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
175 info->xbzrle_cache->bytes = xbzrle_mig_bytes_transferred();
176 info->xbzrle_cache->pages = xbzrle_mig_pages_transferred();
177 info->xbzrle_cache->cache_miss = xbzrle_mig_pages_cache_miss();
178 info->xbzrle_cache->overflow = xbzrle_mig_pages_overflow();
179 }
180}
181
791e7c82 182MigrationInfo *qmp_query_migrate(Error **errp)
5bb7910a 183{
791e7c82 184 MigrationInfo *info = g_malloc0(sizeof(*info));
17549e84
JQ
185 MigrationState *s = migrate_get_current();
186
187 switch (s->state) {
29ae8a41 188 case MIG_STATE_NONE:
17549e84
JQ
189 /* no migration has happened ever */
190 break;
29ae8a41
MH
191 case MIG_STATE_SETUP:
192 info->has_status = true;
193 info->status = g_strdup("setup");
ed4fbd10 194 info->has_total_time = false;
29ae8a41 195 break;
17549e84 196 case MIG_STATE_ACTIVE:
791e7c82
LC
197 info->has_status = true;
198 info->status = g_strdup("active");
7aa939af
JQ
199 info->has_total_time = true;
200 info->total_time = qemu_get_clock_ms(rt_clock)
201 - s->total_time;
2c52ddf1
JQ
202 info->has_expected_downtime = true;
203 info->expected_downtime = s->expected_downtime;
ed4fbd10
MH
204 info->has_setup_time = true;
205 info->setup_time = s->setup_time;
17549e84 206
791e7c82
LC
207 info->has_ram = true;
208 info->ram = g_malloc0(sizeof(*info->ram));
209 info->ram->transferred = ram_bytes_transferred();
210 info->ram->remaining = ram_bytes_remaining();
211 info->ram->total = ram_bytes_total();
004d4c10 212 info->ram->duplicate = dup_mig_pages_transferred();
f1c72795 213 info->ram->skipped = skipped_mig_pages_transferred();
004d4c10
OW
214 info->ram->normal = norm_mig_pages_transferred();
215 info->ram->normal_bytes = norm_mig_bytes_transferred();
8d017193 216 info->ram->dirty_pages_rate = s->dirty_pages_rate;
7e114f8c 217 info->ram->mbps = s->mbps;
8d017193 218
17549e84 219 if (blk_mig_active()) {
791e7c82
LC
220 info->has_disk = true;
221 info->disk = g_malloc0(sizeof(*info->disk));
222 info->disk->transferred = blk_mig_bytes_transferred();
223 info->disk->remaining = blk_mig_bytes_remaining();
224 info->disk->total = blk_mig_bytes_total();
ff8d81d8 225 }
f36d55af
OW
226
227 get_xbzrle_cache_stats(info);
17549e84
JQ
228 break;
229 case MIG_STATE_COMPLETED:
f36d55af
OW
230 get_xbzrle_cache_stats(info);
231
791e7c82
LC
232 info->has_status = true;
233 info->status = g_strdup("completed");
00c14997 234 info->has_total_time = true;
7aa939af 235 info->total_time = s->total_time;
9c5a9fcf
JQ
236 info->has_downtime = true;
237 info->downtime = s->downtime;
ed4fbd10
MH
238 info->has_setup_time = true;
239 info->setup_time = s->setup_time;
d5f8a570
JQ
240
241 info->has_ram = true;
242 info->ram = g_malloc0(sizeof(*info->ram));
243 info->ram->transferred = ram_bytes_transferred();
244 info->ram->remaining = 0;
245 info->ram->total = ram_bytes_total();
004d4c10 246 info->ram->duplicate = dup_mig_pages_transferred();
f1c72795 247 info->ram->skipped = skipped_mig_pages_transferred();
004d4c10
OW
248 info->ram->normal = norm_mig_pages_transferred();
249 info->ram->normal_bytes = norm_mig_bytes_transferred();
7e114f8c 250 info->ram->mbps = s->mbps;
17549e84
JQ
251 break;
252 case MIG_STATE_ERROR:
791e7c82
LC
253 info->has_status = true;
254 info->status = g_strdup("failed");
17549e84
JQ
255 break;
256 case MIG_STATE_CANCELLED:
791e7c82
LC
257 info->has_status = true;
258 info->status = g_strdup("cancelled");
17549e84 259 break;
5bb7910a 260 }
791e7c82
LC
261
262 return info;
5bb7910a
AL
263}
264
00458433
OW
265void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
266 Error **errp)
267{
268 MigrationState *s = migrate_get_current();
269 MigrationCapabilityStatusList *cap;
270
29ae8a41 271 if (s->state == MIG_STATE_ACTIVE || s->state == MIG_STATE_SETUP) {
00458433
OW
272 error_set(errp, QERR_MIGRATION_ACTIVE);
273 return;
274 }
275
276 for (cap = params; cap; cap = cap->next) {
277 s->enabled_capabilities[cap->value->capability] = cap->value->state;
278 }
279}
280
065e2813
AL
281/* shared migration helpers */
282
bb1fadc4 283static void migrate_fd_cleanup(void *opaque)
065e2813 284{
bb1fadc4
PB
285 MigrationState *s = opaque;
286
287 qemu_bh_delete(s->cleanup_bh);
288 s->cleanup_bh = NULL;
289
065e2813 290 if (s->file) {
d0f2c4c6 291 DPRINTF("closing file\n");
404a7c05
PB
292 qemu_mutex_unlock_iothread();
293 qemu_thread_join(&s->thread);
294 qemu_mutex_lock_iothread();
295
6f190a06
PB
296 qemu_fclose(s->file);
297 s->file = NULL;
065e2813
AL
298 }
299
a3fa1d78 300 assert(s->state != MIG_STATE_ACTIVE);
7a2c1721 301
a3fa1d78 302 if (s->state != MIG_STATE_COMPLETED) {
7a2c1721
PB
303 qemu_savevm_state_cancel();
304 }
a3fa1d78
PB
305
306 notifier_list_notify(&migration_state_notifiers, s);
065e2813
AL
307}
308
d58f574b 309static void migrate_set_state(MigrationState *s, int old_state, int new_state)
f4410a5d 310{
d58f574b 311 if (atomic_cmpxchg(&s->state, old_state, new_state) == new_state) {
f4410a5d
PB
312 trace_migrate_set_state(new_state);
313 }
314}
315
8b6b99b3 316void migrate_fd_error(MigrationState *s)
065e2813 317{
8b6b99b3 318 DPRINTF("setting error state\n");
bb1fadc4
PB
319 assert(s->file == NULL);
320 s->state = MIG_STATE_ERROR;
321 trace_migrate_set_state(MIG_STATE_ERROR);
322 notifier_list_notify(&migration_state_notifiers, s);
458cf28e
JQ
323}
324
0edda1c4 325static void migrate_fd_cancel(MigrationState *s)
065e2813 326{
d0f2c4c6 327 DPRINTF("cancelling migration\n");
065e2813 328
d58f574b 329 migrate_set_state(s, s->state, MIG_STATE_CANCELLED);
065e2813
AL
330}
331
99a0db9b
GH
332void add_migration_state_change_notifier(Notifier *notify)
333{
334 notifier_list_add(&migration_state_notifiers, notify);
335}
336
337void remove_migration_state_change_notifier(Notifier *notify)
338{
31552529 339 notifier_remove(notify);
99a0db9b
GH
340}
341
02edd2e7 342bool migration_in_setup(MigrationState *s)
afe2df69 343{
02edd2e7 344 return s->state == MIG_STATE_SETUP;
afe2df69
GH
345}
346
7073693b 347bool migration_has_finished(MigrationState *s)
99a0db9b 348{
7073693b 349 return s->state == MIG_STATE_COMPLETED;
99a0db9b 350}
0edda1c4 351
afe2df69
GH
352bool migration_has_failed(MigrationState *s)
353{
354 return (s->state == MIG_STATE_CANCELLED ||
355 s->state == MIG_STATE_ERROR);
356}
357
6607ae23 358static MigrationState *migrate_init(const MigrationParams *params)
0edda1c4 359{
17549e84 360 MigrationState *s = migrate_get_current();
d0ae46c1 361 int64_t bandwidth_limit = s->bandwidth_limit;
bbf6da32 362 bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
17ad9b35 363 int64_t xbzrle_cache_size = s->xbzrle_cache_size;
bbf6da32
OW
364
365 memcpy(enabled_capabilities, s->enabled_capabilities,
366 sizeof(enabled_capabilities));
0edda1c4 367
17549e84 368 memset(s, 0, sizeof(*s));
6607ae23 369 s->params = *params;
bbf6da32
OW
370 memcpy(s->enabled_capabilities, enabled_capabilities,
371 sizeof(enabled_capabilities));
17ad9b35 372 s->xbzrle_cache_size = xbzrle_cache_size;
1299c631 373
0edda1c4 374 s->bandwidth_limit = bandwidth_limit;
d5934dde 375 s->state = MIG_STATE_SETUP;
c09e5bb1 376 trace_migrate_set_state(MIG_STATE_SETUP);
0edda1c4 377
c09e5bb1 378 s->total_time = qemu_get_clock_ms(rt_clock);
0edda1c4
JQ
379 return s;
380}
cab30143 381
fa2756b7
AL
382static GSList *migration_blockers;
383
384void migrate_add_blocker(Error *reason)
385{
386 migration_blockers = g_slist_prepend(migration_blockers, reason);
387}
388
389void migrate_del_blocker(Error *reason)
390{
391 migration_blockers = g_slist_remove(migration_blockers, reason);
392}
393
e1c37d0e
LC
394void qmp_migrate(const char *uri, bool has_blk, bool blk,
395 bool has_inc, bool inc, bool has_detach, bool detach,
396 Error **errp)
cab30143 397{
be7059cd 398 Error *local_err = NULL;
17549e84 399 MigrationState *s = migrate_get_current();
6607ae23 400 MigrationParams params;
cab30143 401 const char *p;
cab30143 402
6607ae23
IY
403 params.blk = blk;
404 params.shared = inc;
405
29ae8a41 406 if (s->state == MIG_STATE_ACTIVE || s->state == MIG_STATE_SETUP) {
e1c37d0e
LC
407 error_set(errp, QERR_MIGRATION_ACTIVE);
408 return;
cab30143
JQ
409 }
410
e1c37d0e
LC
411 if (qemu_savevm_state_blocked(errp)) {
412 return;
cab30143
JQ
413 }
414
fa2756b7 415 if (migration_blockers) {
e1c37d0e
LC
416 *errp = error_copy(migration_blockers->data);
417 return;
fa2756b7
AL
418 }
419
6607ae23 420 s = migrate_init(&params);
cab30143
JQ
421
422 if (strstart(uri, "tcp:", &p)) {
f37afb5a 423 tcp_start_outgoing_migration(s, p, &local_err);
2da776db
MH
424#ifdef CONFIG_RDMA
425 } else if (strstart(uri, "x-rdma:", &p)) {
426 rdma_start_outgoing_migration(s, p, &local_err);
427#endif
cab30143
JQ
428#if !defined(WIN32)
429 } else if (strstart(uri, "exec:", &p)) {
f37afb5a 430 exec_start_outgoing_migration(s, p, &local_err);
cab30143 431 } else if (strstart(uri, "unix:", &p)) {
f37afb5a 432 unix_start_outgoing_migration(s, p, &local_err);
cab30143 433 } else if (strstart(uri, "fd:", &p)) {
f37afb5a 434 fd_start_outgoing_migration(s, p, &local_err);
cab30143 435#endif
99a0db9b 436 } else {
e1c37d0e
LC
437 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "uri", "a valid migration protocol");
438 return;
cab30143
JQ
439 }
440
f37afb5a 441 if (local_err) {
342ab8d1 442 migrate_fd_error(s);
f37afb5a 443 error_propagate(errp, local_err);
e1c37d0e 444 return;
1299c631 445 }
cab30143
JQ
446}
447
6cdedb07 448void qmp_migrate_cancel(Error **errp)
cab30143 449{
17549e84 450 migrate_fd_cancel(migrate_get_current());
cab30143
JQ
451}
452
9e1ba4cc
OW
453void qmp_migrate_set_cache_size(int64_t value, Error **errp)
454{
455 MigrationState *s = migrate_get_current();
456
457 /* Check for truncation */
458 if (value != (size_t)value) {
459 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
460 "exceeding address space");
461 return;
462 }
463
464 s->xbzrle_cache_size = xbzrle_cache_resize(value);
465}
466
467int64_t qmp_query_migrate_cache_size(Error **errp)
468{
469 return migrate_xbzrle_cache_size();
470}
471
3dc85383 472void qmp_migrate_set_speed(int64_t value, Error **errp)
cab30143 473{
cab30143
JQ
474 MigrationState *s;
475
3dc85383
LC
476 if (value < 0) {
477 value = 0;
99a0db9b 478 }
442773ce
PB
479 if (value > SIZE_MAX) {
480 value = SIZE_MAX;
481 }
cab30143 482
17549e84 483 s = migrate_get_current();
3dc85383 484 s->bandwidth_limit = value;
442773ce
PB
485 if (s->file) {
486 qemu_file_set_rate_limit(s->file, s->bandwidth_limit / XFER_LIMIT_RATIO);
487 }
cab30143
JQ
488}
489
4f0a993b 490void qmp_migrate_set_downtime(double value, Error **errp)
cab30143 491{
4f0a993b
LC
492 value *= 1e9;
493 value = MAX(0, MIN(UINT64_MAX, value));
494 max_downtime = (uint64_t)value;
99a0db9b 495}
17ad9b35 496
60d9222c
MH
497bool migrate_rdma_pin_all(void)
498{
499 MigrationState *s;
500
501 s = migrate_get_current();
502
503 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_RDMA_PIN_ALL];
504}
505
bde1e2ec
CV
506bool migrate_auto_converge(void)
507{
508 MigrationState *s;
509
510 s = migrate_get_current();
511
512 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
513}
514
323004a3
PL
515bool migrate_zero_blocks(void)
516{
517 MigrationState *s;
518
519 s = migrate_get_current();
520
521 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
522}
523
17ad9b35
OW
524int migrate_use_xbzrle(void)
525{
526 MigrationState *s;
527
528 s = migrate_get_current();
529
530 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
531}
532
533int64_t migrate_xbzrle_cache_size(void)
534{
535 MigrationState *s;
536
537 s = migrate_get_current();
538
539 return s->xbzrle_cache_size;
540}
0d82d0e8
JQ
541
542/* migration thread support */
543
5f496a1b 544static void *migration_thread(void *opaque)
0d82d0e8 545{
9848a404 546 MigrationState *s = opaque;
0d82d0e8 547 int64_t initial_time = qemu_get_clock_ms(rt_clock);
ed4fbd10 548 int64_t setup_start = qemu_get_clock_ms(host_clock);
be7172e2 549 int64_t initial_bytes = 0;
0d82d0e8 550 int64_t max_size = 0;
a3fa1d78
PB
551 int64_t start_time = initial_time;
552 bool old_vm_running = false;
76f5933a 553
76f5933a 554 DPRINTF("beginning savevm\n");
dba433c0 555 qemu_savevm_state_begin(s->file, &s->params);
0d82d0e8 556
ed4fbd10 557 s->setup_time = qemu_get_clock_ms(host_clock) - setup_start;
29ae8a41
MH
558 migrate_set_state(s, MIG_STATE_SETUP, MIG_STATE_ACTIVE);
559
ed4fbd10
MH
560 DPRINTF("setup complete\n");
561
dba433c0 562 while (s->state == MIG_STATE_ACTIVE) {
a3e879cd 563 int64_t current_time;
c369f40d 564 uint64_t pending_size;
0d82d0e8 565
a0ff044b 566 if (!qemu_file_rate_limit(s->file)) {
c369f40d
JQ
567 DPRINTF("iterate\n");
568 pending_size = qemu_savevm_state_pending(s->file, max_size);
569 DPRINTF("pending size %lu max %lu\n", pending_size, max_size);
b22ff1fb 570 if (pending_size && pending_size >= max_size) {
dba433c0 571 qemu_savevm_state_iterate(s->file);
c369f40d 572 } else {
0e1146a7
KW
573 int ret;
574
c369f40d 575 DPRINTF("done iterating\n");
32c835ba 576 qemu_mutex_lock_iothread();
c369f40d
JQ
577 start_time = qemu_get_clock_ms(rt_clock);
578 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
a3fa1d78 579 old_vm_running = runstate_is_running();
0e1146a7
KW
580
581 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
582 if (ret >= 0) {
583 qemu_file_set_rate_limit(s->file, INT_MAX);
584 qemu_savevm_state_complete(s->file);
585 }
32c835ba 586 qemu_mutex_unlock_iothread();
0e1146a7
KW
587
588 if (ret < 0) {
d58f574b 589 migrate_set_state(s, MIG_STATE_ACTIVE, MIG_STATE_ERROR);
0e1146a7
KW
590 break;
591 }
592
059f896c 593 if (!qemu_file_get_error(s->file)) {
d58f574b 594 migrate_set_state(s, MIG_STATE_ACTIVE, MIG_STATE_COMPLETED);
059f896c
PB
595 break;
596 }
c369f40d
JQ
597 }
598 }
f4410a5d 599
fd45ee2c 600 if (qemu_file_get_error(s->file)) {
d58f574b 601 migrate_set_state(s, MIG_STATE_ACTIVE, MIG_STATE_ERROR);
fd45ee2c
PB
602 break;
603 }
a3e879cd 604 current_time = qemu_get_clock_ms(rt_clock);
0d82d0e8 605 if (current_time >= initial_time + BUFFER_DELAY) {
be7172e2 606 uint64_t transferred_bytes = qemu_ftell(s->file) - initial_bytes;
77417f10 607 uint64_t time_spent = current_time - initial_time;
0d82d0e8
JQ
608 double bandwidth = transferred_bytes / time_spent;
609 max_size = bandwidth * migrate_max_downtime() / 1000000;
610
7e114f8c
MH
611 s->mbps = time_spent ? (((double) transferred_bytes * 8.0) /
612 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0 : -1;
613
0d82d0e8
JQ
614 DPRINTF("transferred %" PRIu64 " time_spent %" PRIu64
615 " bandwidth %g max_size %" PRId64 "\n",
616 transferred_bytes, time_spent, bandwidth, max_size);
90f8ae72
JQ
617 /* if we haven't sent anything, we don't want to recalculate
618 10000 is a small enough number for our purposes */
619 if (s->dirty_bytes_rate && transferred_bytes > 10000) {
620 s->expected_downtime = s->dirty_bytes_rate / bandwidth;
621 }
0d82d0e8 622
1964a397 623 qemu_file_reset_rate_limit(s->file);
0d82d0e8 624 initial_time = current_time;
be7172e2 625 initial_bytes = qemu_ftell(s->file);
0d82d0e8 626 }
a0ff044b 627 if (qemu_file_rate_limit(s->file)) {
0d82d0e8
JQ
628 /* usleep expects microseconds */
629 g_usleep((initial_time + BUFFER_DELAY - current_time)*1000);
630 }
a3fa1d78
PB
631 }
632
f4410a5d 633 qemu_mutex_lock_iothread();
a3fa1d78
PB
634 if (s->state == MIG_STATE_COMPLETED) {
635 int64_t end_time = qemu_get_clock_ms(rt_clock);
636 s->total_time = end_time - s->total_time;
637 s->downtime = end_time - start_time;
638 runstate_set(RUN_STATE_POSTMIGRATE);
639 } else {
640 if (old_vm_running) {
a3fa1d78 641 vm_start();
dba433c0 642 }
0d82d0e8 643 }
bb1fadc4 644 qemu_bh_schedule(s->cleanup_bh);
dba433c0 645 qemu_mutex_unlock_iothread();
f4410a5d 646
0d82d0e8
JQ
647 return NULL;
648}
649
9848a404 650void migrate_fd_connect(MigrationState *s)
0d82d0e8 651{
29ae8a41
MH
652 s->state = MIG_STATE_SETUP;
653 trace_migrate_set_state(MIG_STATE_SETUP);
c09e5bb1 654
cc283e3b
JQ
655 /* This is a best 1st approximation. ns to ms */
656 s->expected_downtime = max_downtime/1000000;
bb1fadc4 657 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
0d82d0e8 658
442773ce
PB
659 qemu_file_set_rate_limit(s->file,
660 s->bandwidth_limit / XFER_LIMIT_RATIO);
661
9287ac27
SH
662 /* Notify before starting migration thread */
663 notifier_list_notify(&migration_state_notifiers, s);
664
5f496a1b 665 qemu_thread_create(&s->thread, migration_thread, s,
bb1fadc4 666 QEMU_THREAD_JOINABLE);
0d82d0e8 667}