]>
Commit | Line | Data |
---|---|---|
5bb7910a AL |
1 | /* |
2 | * QEMU live migration | |
3 | * | |
4 | * Copyright IBM, Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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" | |
6a1751b7 | 17 | #include "qemu/main-loop.h" |
caf71f86 | 18 | #include "migration/migration.h" |
83c9089e | 19 | #include "monitor/monitor.h" |
0d82d0e8 | 20 | #include "migration/qemu-file.h" |
9c17d615 | 21 | #include "sysemu/sysemu.h" |
737e150e | 22 | #include "block/block.h" |
1de7afc9 | 23 | #include "qemu/sockets.h" |
caf71f86 | 24 | #include "migration/block.h" |
766bd176 | 25 | #include "qemu/thread.h" |
791e7c82 | 26 | #include "qmp-commands.h" |
c09e5bb1 | 27 | #include "trace.h" |
065e2813 | 28 | |
7dc688ed | 29 | enum { |
29ae8a41 MH |
30 | MIG_STATE_ERROR = -1, |
31 | MIG_STATE_NONE, | |
7dc688ed | 32 | MIG_STATE_SETUP, |
51cf4c1a | 33 | MIG_STATE_CANCELLING, |
7dc688ed JQ |
34 | MIG_STATE_CANCELLED, |
35 | MIG_STATE_ACTIVE, | |
36 | MIG_STATE_COMPLETED, | |
37 | }; | |
5bb7910a | 38 | |
d0ae46c1 | 39 | #define MAX_THROTTLE (32 << 20) /* Migration speed throttling */ |
5bb7910a | 40 | |
5b4e1eb7 JQ |
41 | /* Amount of time to allocate to each "chunk" of bandwidth-throttled |
42 | * data. */ | |
43 | #define BUFFER_DELAY 100 | |
44 | #define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY) | |
45 | ||
17ad9b35 OW |
46 | /* Migration XBZRLE default cache size */ |
47 | #define DEFAULT_MIGRATE_CACHE_SIZE (64 * 1024 * 1024) | |
48 | ||
99a0db9b GH |
49 | static NotifierList migration_state_notifiers = |
50 | NOTIFIER_LIST_INITIALIZER(migration_state_notifiers); | |
51 | ||
17549e84 JQ |
52 | /* When we add fault tolerance, we could have several |
53 | migrations at once. For now we don't need to add | |
54 | dynamic creation of migration */ | |
55 | ||
859bc756 | 56 | MigrationState *migrate_get_current(void) |
17549e84 JQ |
57 | { |
58 | static MigrationState current_migration = { | |
29ae8a41 | 59 | .state = MIG_STATE_NONE, |
d0ae46c1 | 60 | .bandwidth_limit = MAX_THROTTLE, |
17ad9b35 | 61 | .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE, |
7e114f8c | 62 | .mbps = -1, |
17549e84 JQ |
63 | }; |
64 | ||
65 | return ¤t_migration; | |
66 | } | |
67 | ||
43eaae28 | 68 | void qemu_start_incoming_migration(const char *uri, Error **errp) |
5bb7910a | 69 | { |
34c9dd8e AL |
70 | const char *p; |
71 | ||
72 | if (strstart(uri, "tcp:", &p)) | |
43eaae28 | 73 | tcp_start_incoming_migration(p, errp); |
2da776db | 74 | #ifdef CONFIG_RDMA |
41310c68 | 75 | else if (strstart(uri, "rdma:", &p)) |
2da776db MH |
76 | rdma_start_incoming_migration(p, errp); |
77 | #endif | |
065e2813 AL |
78 | #if !defined(WIN32) |
79 | else if (strstart(uri, "exec:", &p)) | |
43eaae28 | 80 | exec_start_incoming_migration(p, errp); |
4951f65b | 81 | else if (strstart(uri, "unix:", &p)) |
43eaae28 | 82 | unix_start_incoming_migration(p, errp); |
5ac1fad3 | 83 | else if (strstart(uri, "fd:", &p)) |
43eaae28 | 84 | fd_start_incoming_migration(p, errp); |
065e2813 | 85 | #endif |
8ca5e801 | 86 | else { |
312fd5f2 | 87 | error_setg(errp, "unknown migration protocol: %s", uri); |
8ca5e801 | 88 | } |
5bb7910a AL |
89 | } |
90 | ||
82a4da79 | 91 | static void process_incoming_migration_co(void *opaque) |
511c0231 | 92 | { |
82a4da79 | 93 | QEMUFile *f = opaque; |
5a8a30db | 94 | Error *local_err = NULL; |
1c12e1f5 PB |
95 | int ret; |
96 | ||
97 | ret = qemu_loadvm_state(f); | |
98 | qemu_fclose(f); | |
905f26f2 | 99 | free_xbzrle_decoded_buf(); |
1c12e1f5 | 100 | if (ret < 0) { |
511c0231 | 101 | fprintf(stderr, "load of migration failed\n"); |
4aead692 | 102 | exit(EXIT_FAILURE); |
511c0231 JQ |
103 | } |
104 | qemu_announce_self(); | |
511c0231 | 105 | |
901862cb | 106 | bdrv_clear_incoming_migration_all(); |
0f15423c | 107 | /* Make sure all file formats flush their mutable metadata */ |
5a8a30db KW |
108 | bdrv_invalidate_cache_all(&local_err); |
109 | if (local_err) { | |
110 | qerror_report_err(local_err); | |
111 | error_free(local_err); | |
112 | exit(EXIT_FAILURE); | |
113 | } | |
0f15423c | 114 | |
f5bbfba1 | 115 | if (autostart) { |
511c0231 | 116 | vm_start(); |
f5bbfba1 | 117 | } else { |
29ed72f1 | 118 | runstate_set(RUN_STATE_PAUSED); |
f5bbfba1 | 119 | } |
511c0231 JQ |
120 | } |
121 | ||
82a4da79 PB |
122 | void process_incoming_migration(QEMUFile *f) |
123 | { | |
124 | Coroutine *co = qemu_coroutine_create(process_incoming_migration_co); | |
125 | int fd = qemu_get_fd(f); | |
126 | ||
127 | assert(fd != -1); | |
f9e8cacc | 128 | qemu_set_nonblock(fd); |
82a4da79 PB |
129 | qemu_coroutine_enter(co, f); |
130 | } | |
131 | ||
a0a3fd60 GC |
132 | /* amount of nanoseconds we are willing to wait for migration to be down. |
133 | * the choice of nanoseconds is because it is the maximum resolution that | |
134 | * get_clock() can achieve. It is an internal measure. All user-visible | |
135 | * units must be in seconds */ | |
136 | static uint64_t max_downtime = 30000000; | |
137 | ||
138 | uint64_t migrate_max_downtime(void) | |
139 | { | |
140 | return max_downtime; | |
141 | } | |
142 | ||
bbf6da32 OW |
143 | MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp) |
144 | { | |
145 | MigrationCapabilityStatusList *head = NULL; | |
146 | MigrationCapabilityStatusList *caps; | |
147 | MigrationState *s = migrate_get_current(); | |
148 | int i; | |
149 | ||
387eedeb | 150 | caps = NULL; /* silence compiler warning */ |
bbf6da32 OW |
151 | for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) { |
152 | if (head == NULL) { | |
153 | head = g_malloc0(sizeof(*caps)); | |
154 | caps = head; | |
155 | } else { | |
156 | caps->next = g_malloc0(sizeof(*caps)); | |
157 | caps = caps->next; | |
158 | } | |
159 | caps->value = | |
160 | g_malloc(sizeof(*caps->value)); | |
161 | caps->value->capability = i; | |
162 | caps->value->state = s->enabled_capabilities[i]; | |
163 | } | |
164 | ||
165 | return head; | |
166 | } | |
167 | ||
f36d55af OW |
168 | static void get_xbzrle_cache_stats(MigrationInfo *info) |
169 | { | |
170 | if (migrate_use_xbzrle()) { | |
171 | info->has_xbzrle_cache = true; | |
172 | info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache)); | |
173 | info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size(); | |
174 | info->xbzrle_cache->bytes = xbzrle_mig_bytes_transferred(); | |
175 | info->xbzrle_cache->pages = xbzrle_mig_pages_transferred(); | |
176 | info->xbzrle_cache->cache_miss = xbzrle_mig_pages_cache_miss(); | |
177 | info->xbzrle_cache->overflow = xbzrle_mig_pages_overflow(); | |
178 | } | |
179 | } | |
180 | ||
791e7c82 | 181 | MigrationInfo *qmp_query_migrate(Error **errp) |
5bb7910a | 182 | { |
791e7c82 | 183 | MigrationInfo *info = g_malloc0(sizeof(*info)); |
17549e84 JQ |
184 | MigrationState *s = migrate_get_current(); |
185 | ||
186 | switch (s->state) { | |
29ae8a41 | 187 | case MIG_STATE_NONE: |
17549e84 JQ |
188 | /* no migration has happened ever */ |
189 | break; | |
29ae8a41 MH |
190 | case MIG_STATE_SETUP: |
191 | info->has_status = true; | |
192 | info->status = g_strdup("setup"); | |
ed4fbd10 | 193 | info->has_total_time = false; |
29ae8a41 | 194 | break; |
17549e84 | 195 | case MIG_STATE_ACTIVE: |
51cf4c1a | 196 | case MIG_STATE_CANCELLING: |
791e7c82 LC |
197 | info->has_status = true; |
198 | info->status = g_strdup("active"); | |
7aa939af | 199 | info->has_total_time = true; |
bc72ad67 | 200 | info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) |
7aa939af | 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 |
265 | void 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 | ||
51cf4c1a Z |
283 | static void migrate_set_state(MigrationState *s, int old_state, int new_state) |
284 | { | |
285 | if (atomic_cmpxchg(&s->state, old_state, new_state) == new_state) { | |
286 | trace_migrate_set_state(new_state); | |
287 | } | |
288 | } | |
289 | ||
bb1fadc4 | 290 | static void migrate_fd_cleanup(void *opaque) |
065e2813 | 291 | { |
bb1fadc4 PB |
292 | MigrationState *s = opaque; |
293 | ||
294 | qemu_bh_delete(s->cleanup_bh); | |
295 | s->cleanup_bh = NULL; | |
296 | ||
065e2813 | 297 | if (s->file) { |
9013dca5 | 298 | trace_migrate_fd_cleanup(); |
404a7c05 PB |
299 | qemu_mutex_unlock_iothread(); |
300 | qemu_thread_join(&s->thread); | |
301 | qemu_mutex_lock_iothread(); | |
302 | ||
6f190a06 PB |
303 | qemu_fclose(s->file); |
304 | s->file = NULL; | |
065e2813 AL |
305 | } |
306 | ||
a3fa1d78 | 307 | assert(s->state != MIG_STATE_ACTIVE); |
7a2c1721 | 308 | |
a3fa1d78 | 309 | if (s->state != MIG_STATE_COMPLETED) { |
7a2c1721 | 310 | qemu_savevm_state_cancel(); |
51cf4c1a Z |
311 | if (s->state == MIG_STATE_CANCELLING) { |
312 | migrate_set_state(s, MIG_STATE_CANCELLING, MIG_STATE_CANCELLED); | |
313 | } | |
7a2c1721 | 314 | } |
a3fa1d78 PB |
315 | |
316 | notifier_list_notify(&migration_state_notifiers, s); | |
065e2813 AL |
317 | } |
318 | ||
8b6b99b3 | 319 | void migrate_fd_error(MigrationState *s) |
065e2813 | 320 | { |
9013dca5 | 321 | trace_migrate_fd_error(); |
bb1fadc4 PB |
322 | assert(s->file == NULL); |
323 | s->state = MIG_STATE_ERROR; | |
324 | trace_migrate_set_state(MIG_STATE_ERROR); | |
325 | notifier_list_notify(&migration_state_notifiers, s); | |
458cf28e JQ |
326 | } |
327 | ||
0edda1c4 | 328 | static void migrate_fd_cancel(MigrationState *s) |
065e2813 | 329 | { |
6f2b811a | 330 | int old_state ; |
9013dca5 | 331 | trace_migrate_fd_cancel(); |
065e2813 | 332 | |
6f2b811a Z |
333 | do { |
334 | old_state = s->state; | |
335 | if (old_state != MIG_STATE_SETUP && old_state != MIG_STATE_ACTIVE) { | |
336 | break; | |
337 | } | |
51cf4c1a Z |
338 | migrate_set_state(s, old_state, MIG_STATE_CANCELLING); |
339 | } while (s->state != MIG_STATE_CANCELLING); | |
065e2813 AL |
340 | } |
341 | ||
99a0db9b GH |
342 | void add_migration_state_change_notifier(Notifier *notify) |
343 | { | |
344 | notifier_list_add(&migration_state_notifiers, notify); | |
345 | } | |
346 | ||
347 | void remove_migration_state_change_notifier(Notifier *notify) | |
348 | { | |
31552529 | 349 | notifier_remove(notify); |
99a0db9b GH |
350 | } |
351 | ||
02edd2e7 | 352 | bool migration_in_setup(MigrationState *s) |
afe2df69 | 353 | { |
02edd2e7 | 354 | return s->state == MIG_STATE_SETUP; |
afe2df69 GH |
355 | } |
356 | ||
7073693b | 357 | bool migration_has_finished(MigrationState *s) |
99a0db9b | 358 | { |
7073693b | 359 | return s->state == MIG_STATE_COMPLETED; |
99a0db9b | 360 | } |
0edda1c4 | 361 | |
afe2df69 GH |
362 | bool migration_has_failed(MigrationState *s) |
363 | { | |
364 | return (s->state == MIG_STATE_CANCELLED || | |
365 | s->state == MIG_STATE_ERROR); | |
366 | } | |
367 | ||
6607ae23 | 368 | static MigrationState *migrate_init(const MigrationParams *params) |
0edda1c4 | 369 | { |
17549e84 | 370 | MigrationState *s = migrate_get_current(); |
d0ae46c1 | 371 | int64_t bandwidth_limit = s->bandwidth_limit; |
bbf6da32 | 372 | bool enabled_capabilities[MIGRATION_CAPABILITY_MAX]; |
17ad9b35 | 373 | int64_t xbzrle_cache_size = s->xbzrle_cache_size; |
bbf6da32 OW |
374 | |
375 | memcpy(enabled_capabilities, s->enabled_capabilities, | |
376 | sizeof(enabled_capabilities)); | |
0edda1c4 | 377 | |
17549e84 | 378 | memset(s, 0, sizeof(*s)); |
6607ae23 | 379 | s->params = *params; |
bbf6da32 OW |
380 | memcpy(s->enabled_capabilities, enabled_capabilities, |
381 | sizeof(enabled_capabilities)); | |
17ad9b35 | 382 | s->xbzrle_cache_size = xbzrle_cache_size; |
1299c631 | 383 | |
0edda1c4 | 384 | s->bandwidth_limit = bandwidth_limit; |
d5934dde | 385 | s->state = MIG_STATE_SETUP; |
c09e5bb1 | 386 | trace_migrate_set_state(MIG_STATE_SETUP); |
0edda1c4 | 387 | |
bc72ad67 | 388 | s->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
0edda1c4 JQ |
389 | return s; |
390 | } | |
cab30143 | 391 | |
fa2756b7 AL |
392 | static GSList *migration_blockers; |
393 | ||
394 | void migrate_add_blocker(Error *reason) | |
395 | { | |
396 | migration_blockers = g_slist_prepend(migration_blockers, reason); | |
397 | } | |
398 | ||
399 | void migrate_del_blocker(Error *reason) | |
400 | { | |
401 | migration_blockers = g_slist_remove(migration_blockers, reason); | |
402 | } | |
403 | ||
e1c37d0e LC |
404 | void qmp_migrate(const char *uri, bool has_blk, bool blk, |
405 | bool has_inc, bool inc, bool has_detach, bool detach, | |
406 | Error **errp) | |
cab30143 | 407 | { |
be7059cd | 408 | Error *local_err = NULL; |
17549e84 | 409 | MigrationState *s = migrate_get_current(); |
6607ae23 | 410 | MigrationParams params; |
cab30143 | 411 | const char *p; |
cab30143 | 412 | |
8c0426ae PP |
413 | params.blk = has_blk && blk; |
414 | params.shared = has_inc && inc; | |
6607ae23 | 415 | |
51cf4c1a Z |
416 | if (s->state == MIG_STATE_ACTIVE || s->state == MIG_STATE_SETUP || |
417 | s->state == MIG_STATE_CANCELLING) { | |
e1c37d0e LC |
418 | error_set(errp, QERR_MIGRATION_ACTIVE); |
419 | return; | |
cab30143 JQ |
420 | } |
421 | ||
e1c37d0e LC |
422 | if (qemu_savevm_state_blocked(errp)) { |
423 | return; | |
cab30143 JQ |
424 | } |
425 | ||
fa2756b7 | 426 | if (migration_blockers) { |
e1c37d0e LC |
427 | *errp = error_copy(migration_blockers->data); |
428 | return; | |
fa2756b7 AL |
429 | } |
430 | ||
6607ae23 | 431 | s = migrate_init(¶ms); |
cab30143 JQ |
432 | |
433 | if (strstart(uri, "tcp:", &p)) { | |
f37afb5a | 434 | tcp_start_outgoing_migration(s, p, &local_err); |
2da776db | 435 | #ifdef CONFIG_RDMA |
41310c68 | 436 | } else if (strstart(uri, "rdma:", &p)) { |
2da776db MH |
437 | rdma_start_outgoing_migration(s, p, &local_err); |
438 | #endif | |
cab30143 JQ |
439 | #if !defined(WIN32) |
440 | } else if (strstart(uri, "exec:", &p)) { | |
f37afb5a | 441 | exec_start_outgoing_migration(s, p, &local_err); |
cab30143 | 442 | } else if (strstart(uri, "unix:", &p)) { |
f37afb5a | 443 | unix_start_outgoing_migration(s, p, &local_err); |
cab30143 | 444 | } else if (strstart(uri, "fd:", &p)) { |
f37afb5a | 445 | fd_start_outgoing_migration(s, p, &local_err); |
cab30143 | 446 | #endif |
99a0db9b | 447 | } else { |
e1c37d0e | 448 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "uri", "a valid migration protocol"); |
c9501142 | 449 | s->state = MIG_STATE_ERROR; |
e1c37d0e | 450 | return; |
cab30143 JQ |
451 | } |
452 | ||
f37afb5a | 453 | if (local_err) { |
342ab8d1 | 454 | migrate_fd_error(s); |
f37afb5a | 455 | error_propagate(errp, local_err); |
e1c37d0e | 456 | return; |
1299c631 | 457 | } |
cab30143 JQ |
458 | } |
459 | ||
6cdedb07 | 460 | void qmp_migrate_cancel(Error **errp) |
cab30143 | 461 | { |
17549e84 | 462 | migrate_fd_cancel(migrate_get_current()); |
cab30143 JQ |
463 | } |
464 | ||
9e1ba4cc OW |
465 | void qmp_migrate_set_cache_size(int64_t value, Error **errp) |
466 | { | |
467 | MigrationState *s = migrate_get_current(); | |
c91e681a | 468 | int64_t new_size; |
9e1ba4cc OW |
469 | |
470 | /* Check for truncation */ | |
471 | if (value != (size_t)value) { | |
472 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cache size", | |
473 | "exceeding address space"); | |
474 | return; | |
475 | } | |
476 | ||
a5615b14 OW |
477 | /* Cache should not be larger than guest ram size */ |
478 | if (value > ram_bytes_total()) { | |
479 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cache size", | |
480 | "exceeds guest ram size "); | |
481 | return; | |
482 | } | |
483 | ||
c91e681a OW |
484 | new_size = xbzrle_cache_resize(value); |
485 | if (new_size < 0) { | |
486 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cache size", | |
487 | "is smaller than page size"); | |
488 | return; | |
489 | } | |
490 | ||
491 | s->xbzrle_cache_size = new_size; | |
9e1ba4cc OW |
492 | } |
493 | ||
494 | int64_t qmp_query_migrate_cache_size(Error **errp) | |
495 | { | |
496 | return migrate_xbzrle_cache_size(); | |
497 | } | |
498 | ||
3dc85383 | 499 | void qmp_migrate_set_speed(int64_t value, Error **errp) |
cab30143 | 500 | { |
cab30143 JQ |
501 | MigrationState *s; |
502 | ||
3dc85383 LC |
503 | if (value < 0) { |
504 | value = 0; | |
99a0db9b | 505 | } |
442773ce PB |
506 | if (value > SIZE_MAX) { |
507 | value = SIZE_MAX; | |
508 | } | |
cab30143 | 509 | |
17549e84 | 510 | s = migrate_get_current(); |
3dc85383 | 511 | s->bandwidth_limit = value; |
442773ce PB |
512 | if (s->file) { |
513 | qemu_file_set_rate_limit(s->file, s->bandwidth_limit / XFER_LIMIT_RATIO); | |
514 | } | |
cab30143 JQ |
515 | } |
516 | ||
4f0a993b | 517 | void qmp_migrate_set_downtime(double value, Error **errp) |
cab30143 | 518 | { |
4f0a993b LC |
519 | value *= 1e9; |
520 | value = MAX(0, MIN(UINT64_MAX, value)); | |
521 | max_downtime = (uint64_t)value; | |
99a0db9b | 522 | } |
17ad9b35 | 523 | |
60d9222c MH |
524 | bool migrate_rdma_pin_all(void) |
525 | { | |
526 | MigrationState *s; | |
527 | ||
528 | s = migrate_get_current(); | |
529 | ||
41310c68 | 530 | return s->enabled_capabilities[MIGRATION_CAPABILITY_RDMA_PIN_ALL]; |
60d9222c MH |
531 | } |
532 | ||
bde1e2ec CV |
533 | bool migrate_auto_converge(void) |
534 | { | |
535 | MigrationState *s; | |
536 | ||
537 | s = migrate_get_current(); | |
538 | ||
539 | return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE]; | |
540 | } | |
541 | ||
323004a3 PL |
542 | bool migrate_zero_blocks(void) |
543 | { | |
544 | MigrationState *s; | |
545 | ||
546 | s = migrate_get_current(); | |
547 | ||
548 | return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS]; | |
549 | } | |
550 | ||
17ad9b35 OW |
551 | int migrate_use_xbzrle(void) |
552 | { | |
553 | MigrationState *s; | |
554 | ||
555 | s = migrate_get_current(); | |
556 | ||
557 | return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE]; | |
558 | } | |
559 | ||
560 | int64_t migrate_xbzrle_cache_size(void) | |
561 | { | |
562 | MigrationState *s; | |
563 | ||
564 | s = migrate_get_current(); | |
565 | ||
566 | return s->xbzrle_cache_size; | |
567 | } | |
0d82d0e8 JQ |
568 | |
569 | /* migration thread support */ | |
570 | ||
5f496a1b | 571 | static void *migration_thread(void *opaque) |
0d82d0e8 | 572 | { |
9848a404 | 573 | MigrationState *s = opaque; |
bc72ad67 AB |
574 | int64_t initial_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
575 | int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST); | |
be7172e2 | 576 | int64_t initial_bytes = 0; |
0d82d0e8 | 577 | int64_t max_size = 0; |
a3fa1d78 PB |
578 | int64_t start_time = initial_time; |
579 | bool old_vm_running = false; | |
76f5933a | 580 | |
dba433c0 | 581 | qemu_savevm_state_begin(s->file, &s->params); |
0d82d0e8 | 582 | |
bc72ad67 | 583 | s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start; |
29ae8a41 MH |
584 | migrate_set_state(s, MIG_STATE_SETUP, MIG_STATE_ACTIVE); |
585 | ||
dba433c0 | 586 | while (s->state == MIG_STATE_ACTIVE) { |
a3e879cd | 587 | int64_t current_time; |
c369f40d | 588 | uint64_t pending_size; |
0d82d0e8 | 589 | |
a0ff044b | 590 | if (!qemu_file_rate_limit(s->file)) { |
c369f40d | 591 | pending_size = qemu_savevm_state_pending(s->file, max_size); |
9013dca5 | 592 | trace_migrate_pending(pending_size, max_size); |
b22ff1fb | 593 | if (pending_size && pending_size >= max_size) { |
dba433c0 | 594 | qemu_savevm_state_iterate(s->file); |
c369f40d | 595 | } else { |
0e1146a7 KW |
596 | int ret; |
597 | ||
32c835ba | 598 | qemu_mutex_lock_iothread(); |
bc72ad67 | 599 | start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
c369f40d | 600 | qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER); |
a3fa1d78 | 601 | old_vm_running = runstate_is_running(); |
0e1146a7 KW |
602 | |
603 | ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE); | |
604 | if (ret >= 0) { | |
40596834 | 605 | qemu_file_set_rate_limit(s->file, INT64_MAX); |
0e1146a7 KW |
606 | qemu_savevm_state_complete(s->file); |
607 | } | |
32c835ba | 608 | qemu_mutex_unlock_iothread(); |
0e1146a7 KW |
609 | |
610 | if (ret < 0) { | |
d58f574b | 611 | migrate_set_state(s, MIG_STATE_ACTIVE, MIG_STATE_ERROR); |
0e1146a7 KW |
612 | break; |
613 | } | |
614 | ||
059f896c | 615 | if (!qemu_file_get_error(s->file)) { |
d58f574b | 616 | migrate_set_state(s, MIG_STATE_ACTIVE, MIG_STATE_COMPLETED); |
059f896c PB |
617 | break; |
618 | } | |
c369f40d JQ |
619 | } |
620 | } | |
f4410a5d | 621 | |
fd45ee2c | 622 | if (qemu_file_get_error(s->file)) { |
d58f574b | 623 | migrate_set_state(s, MIG_STATE_ACTIVE, MIG_STATE_ERROR); |
fd45ee2c PB |
624 | break; |
625 | } | |
bc72ad67 | 626 | current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
0d82d0e8 | 627 | if (current_time >= initial_time + BUFFER_DELAY) { |
be7172e2 | 628 | uint64_t transferred_bytes = qemu_ftell(s->file) - initial_bytes; |
77417f10 | 629 | uint64_t time_spent = current_time - initial_time; |
0d82d0e8 JQ |
630 | double bandwidth = transferred_bytes / time_spent; |
631 | max_size = bandwidth * migrate_max_downtime() / 1000000; | |
632 | ||
7e114f8c MH |
633 | s->mbps = time_spent ? (((double) transferred_bytes * 8.0) / |
634 | ((double) time_spent / 1000.0)) / 1000.0 / 1000.0 : -1; | |
635 | ||
9013dca5 AK |
636 | trace_migrate_transferred(transferred_bytes, time_spent, |
637 | bandwidth, max_size); | |
90f8ae72 JQ |
638 | /* if we haven't sent anything, we don't want to recalculate |
639 | 10000 is a small enough number for our purposes */ | |
640 | if (s->dirty_bytes_rate && transferred_bytes > 10000) { | |
641 | s->expected_downtime = s->dirty_bytes_rate / bandwidth; | |
642 | } | |
0d82d0e8 | 643 | |
1964a397 | 644 | qemu_file_reset_rate_limit(s->file); |
0d82d0e8 | 645 | initial_time = current_time; |
be7172e2 | 646 | initial_bytes = qemu_ftell(s->file); |
0d82d0e8 | 647 | } |
a0ff044b | 648 | if (qemu_file_rate_limit(s->file)) { |
0d82d0e8 JQ |
649 | /* usleep expects microseconds */ |
650 | g_usleep((initial_time + BUFFER_DELAY - current_time)*1000); | |
651 | } | |
a3fa1d78 PB |
652 | } |
653 | ||
f4410a5d | 654 | qemu_mutex_lock_iothread(); |
a3fa1d78 | 655 | if (s->state == MIG_STATE_COMPLETED) { |
bc72ad67 | 656 | int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
a3fa1d78 PB |
657 | s->total_time = end_time - s->total_time; |
658 | s->downtime = end_time - start_time; | |
659 | runstate_set(RUN_STATE_POSTMIGRATE); | |
660 | } else { | |
661 | if (old_vm_running) { | |
a3fa1d78 | 662 | vm_start(); |
dba433c0 | 663 | } |
0d82d0e8 | 664 | } |
bb1fadc4 | 665 | qemu_bh_schedule(s->cleanup_bh); |
dba433c0 | 666 | qemu_mutex_unlock_iothread(); |
f4410a5d | 667 | |
0d82d0e8 JQ |
668 | return NULL; |
669 | } | |
670 | ||
9848a404 | 671 | void migrate_fd_connect(MigrationState *s) |
0d82d0e8 | 672 | { |
29ae8a41 MH |
673 | s->state = MIG_STATE_SETUP; |
674 | trace_migrate_set_state(MIG_STATE_SETUP); | |
c09e5bb1 | 675 | |
cc283e3b JQ |
676 | /* This is a best 1st approximation. ns to ms */ |
677 | s->expected_downtime = max_downtime/1000000; | |
bb1fadc4 | 678 | s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s); |
0d82d0e8 | 679 | |
442773ce PB |
680 | qemu_file_set_rate_limit(s->file, |
681 | s->bandwidth_limit / XFER_LIMIT_RATIO); | |
682 | ||
9287ac27 SH |
683 | /* Notify before starting migration thread */ |
684 | notifier_list_notify(&migration_state_notifiers, s); | |
685 | ||
4900116e | 686 | qemu_thread_create(&s->thread, "migration", migration_thread, s, |
bb1fadc4 | 687 | QEMU_THREAD_JOINABLE); |
0d82d0e8 | 688 | } |