]> git.proxmox.com Git - mirror_qemu.git/blame - migration.c
configure: Print a banner comment at the top of config.log
[mirror_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 *
12 */
13
14#include "qemu-common.h"
15#include "migration.h"
376253ec 16#include "monitor.h"
065e2813
AL
17#include "buffered_file.h"
18#include "sysemu.h"
19#include "block.h"
20#include "qemu_socket.h"
25f23643 21#include "block-migration.h"
791e7c82 22#include "qmp-commands.h"
065e2813
AL
23
24//#define DEBUG_MIGRATION
25
26#ifdef DEBUG_MIGRATION
d0f2c4c6 27#define DPRINTF(fmt, ...) \
065e2813
AL
28 do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
29#else
d0f2c4c6 30#define DPRINTF(fmt, ...) \
065e2813
AL
31 do { } while (0)
32#endif
5bb7910a 33
7dc688ed
JQ
34enum {
35 MIG_STATE_ERROR,
36 MIG_STATE_SETUP,
37 MIG_STATE_CANCELLED,
38 MIG_STATE_ACTIVE,
39 MIG_STATE_COMPLETED,
40};
5bb7910a 41
d0ae46c1 42#define MAX_THROTTLE (32 << 20) /* Migration speed throttling */
5bb7910a 43
99a0db9b
GH
44static NotifierList migration_state_notifiers =
45 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
46
17549e84
JQ
47/* When we add fault tolerance, we could have several
48 migrations at once. For now we don't need to add
49 dynamic creation of migration */
50
51static MigrationState *migrate_get_current(void)
52{
53 static MigrationState current_migration = {
54 .state = MIG_STATE_SETUP,
d0ae46c1 55 .bandwidth_limit = MAX_THROTTLE,
17549e84
JQ
56 };
57
58 return &current_migration;
59}
60
8ca5e801 61int qemu_start_incoming_migration(const char *uri)
5bb7910a 62{
34c9dd8e 63 const char *p;
8ca5e801 64 int ret;
34c9dd8e
AL
65
66 if (strstart(uri, "tcp:", &p))
8ca5e801 67 ret = tcp_start_incoming_migration(p);
065e2813
AL
68#if !defined(WIN32)
69 else if (strstart(uri, "exec:", &p))
8ca5e801 70 ret = exec_start_incoming_migration(p);
4951f65b 71 else if (strstart(uri, "unix:", &p))
8ca5e801 72 ret = unix_start_incoming_migration(p);
5ac1fad3 73 else if (strstart(uri, "fd:", &p))
8ca5e801 74 ret = fd_start_incoming_migration(p);
065e2813 75#endif
8ca5e801 76 else {
34c9dd8e 77 fprintf(stderr, "unknown migration protocol: %s\n", uri);
8ca5e801
JQ
78 ret = -EPROTONOSUPPORT;
79 }
80 return ret;
5bb7910a
AL
81}
82
511c0231
JQ
83void process_incoming_migration(QEMUFile *f)
84{
85 if (qemu_loadvm_state(f) < 0) {
86 fprintf(stderr, "load of migration failed\n");
87 exit(0);
88 }
89 qemu_announce_self();
90 DPRINTF("successfully loaded vm state\n");
91
0f15423c
AL
92 /* Make sure all file formats flush their mutable metadata */
93 bdrv_invalidate_cache_all();
94
f5bbfba1 95 if (autostart) {
511c0231 96 vm_start();
f5bbfba1 97 } else {
0461d5a6 98 runstate_set(RUN_STATE_PRELAUNCH);
f5bbfba1 99 }
511c0231
JQ
100}
101
a0a3fd60
GC
102/* amount of nanoseconds we are willing to wait for migration to be down.
103 * the choice of nanoseconds is because it is the maximum resolution that
104 * get_clock() can achieve. It is an internal measure. All user-visible
105 * units must be in seconds */
106static uint64_t max_downtime = 30000000;
107
108uint64_t migrate_max_downtime(void)
109{
110 return max_downtime;
111}
112
791e7c82 113MigrationInfo *qmp_query_migrate(Error **errp)
5bb7910a 114{
791e7c82 115 MigrationInfo *info = g_malloc0(sizeof(*info));
17549e84
JQ
116 MigrationState *s = migrate_get_current();
117
118 switch (s->state) {
119 case MIG_STATE_SETUP:
120 /* no migration has happened ever */
121 break;
122 case MIG_STATE_ACTIVE:
791e7c82
LC
123 info->has_status = true;
124 info->status = g_strdup("active");
17549e84 125
791e7c82
LC
126 info->has_ram = true;
127 info->ram = g_malloc0(sizeof(*info->ram));
128 info->ram->transferred = ram_bytes_transferred();
129 info->ram->remaining = ram_bytes_remaining();
130 info->ram->total = ram_bytes_total();
17549e84
JQ
131
132 if (blk_mig_active()) {
791e7c82
LC
133 info->has_disk = true;
134 info->disk = g_malloc0(sizeof(*info->disk));
135 info->disk->transferred = blk_mig_bytes_transferred();
136 info->disk->remaining = blk_mig_bytes_remaining();
137 info->disk->total = blk_mig_bytes_total();
ff8d81d8 138 }
17549e84
JQ
139 break;
140 case MIG_STATE_COMPLETED:
791e7c82
LC
141 info->has_status = true;
142 info->status = g_strdup("completed");
17549e84
JQ
143 break;
144 case MIG_STATE_ERROR:
791e7c82
LC
145 info->has_status = true;
146 info->status = g_strdup("failed");
17549e84
JQ
147 break;
148 case MIG_STATE_CANCELLED:
791e7c82
LC
149 info->has_status = true;
150 info->status = g_strdup("cancelled");
17549e84 151 break;
5bb7910a 152 }
791e7c82
LC
153
154 return info;
5bb7910a
AL
155}
156
065e2813
AL
157/* shared migration helpers */
158
0edda1c4 159static void migrate_fd_monitor_suspend(MigrationState *s, Monitor *mon)
731b0364 160{
f327aa0c 161 if (monitor_suspend(mon) == 0) {
d0f2c4c6 162 DPRINTF("suspending monitor\n");
f327aa0c
JK
163 } else {
164 monitor_printf(mon, "terminal does not allow synchronous "
cde76ee1 165 "migration, continuing detached\n");
f327aa0c 166 }
731b0364
AL
167}
168
8b6b99b3 169static int migrate_fd_cleanup(MigrationState *s)
065e2813 170{
41ef56e6
AL
171 int ret = 0;
172
065e2813
AL
173 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
174
175 if (s->file) {
d0f2c4c6 176 DPRINTF("closing file\n");
41ef56e6
AL
177 if (qemu_fclose(s->file) != 0) {
178 ret = -1;
179 }
5d39c799 180 s->file = NULL;
84ec6552
JK
181 } else {
182 if (s->mon) {
183 monitor_resume(s->mon);
184 }
065e2813
AL
185 }
186
84ec6552 187 if (s->fd != -1) {
065e2813 188 close(s->fd);
84ec6552 189 s->fd = -1;
f327aa0c 190 }
065e2813 191
41ef56e6 192 return ret;
065e2813
AL
193}
194
8b6b99b3 195void migrate_fd_error(MigrationState *s)
065e2813 196{
8b6b99b3
JQ
197 DPRINTF("setting error state\n");
198 s->state = MIG_STATE_ERROR;
e0eb7390 199 notifier_list_notify(&migration_state_notifiers, s);
8b6b99b3
JQ
200 migrate_fd_cleanup(s);
201}
202
458cf28e
JQ
203static void migrate_fd_completed(MigrationState *s)
204{
205 DPRINTF("setting completed state\n");
206 if (migrate_fd_cleanup(s) < 0) {
207 s->state = MIG_STATE_ERROR;
208 } else {
209 s->state = MIG_STATE_COMPLETED;
210 runstate_set(RUN_STATE_POSTMIGRATE);
211 }
e0eb7390 212 notifier_list_notify(&migration_state_notifiers, s);
458cf28e
JQ
213}
214
8b6b99b3 215static void migrate_fd_put_notify(void *opaque)
065e2813 216{
22f00a44 217 MigrationState *s = opaque;
065e2813
AL
218
219 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
220 qemu_file_put_notify(s->file);
1fdc11c3 221 if (s->file && qemu_file_get_error(s->file)) {
2350e13c
YT
222 migrate_fd_error(s);
223 }
065e2813
AL
224}
225
8b6b99b3
JQ
226static ssize_t migrate_fd_put_buffer(void *opaque, const void *data,
227 size_t size)
065e2813 228{
22f00a44 229 MigrationState *s = opaque;
065e2813
AL
230 ssize_t ret;
231
fdbecb5d
JQ
232 if (s->state != MIG_STATE_ACTIVE) {
233 return -EIO;
234 }
235
065e2813
AL
236 do {
237 ret = s->write(s, data, size);
95b134ea 238 } while (ret == -1 && ((s->get_error(s)) == EINTR));
065e2813
AL
239
240 if (ret == -1)
241 ret = -(s->get_error(s));
242
e447b1a6 243 if (ret == -EAGAIN) {
065e2813 244 qemu_set_fd_handler2(s->fd, NULL, NULL, migrate_fd_put_notify, s);
e447b1a6 245 }
065e2813
AL
246
247 return ret;
248}
249
8b6b99b3 250static void migrate_fd_put_ready(void *opaque)
065e2813 251{
22f00a44 252 MigrationState *s = opaque;
065e2813
AL
253 int ret;
254
065e2813 255 if (s->state != MIG_STATE_ACTIVE) {
d0f2c4c6 256 DPRINTF("put_ready returning because of non-active state\n");
065e2813
AL
257 return;
258 }
259
d0f2c4c6 260 DPRINTF("iterate\n");
39346385
JQ
261 ret = qemu_savevm_state_iterate(s->mon, s->file);
262 if (ret < 0) {
263 migrate_fd_error(s);
264 } else if (ret == 1) {
1354869c 265 int old_vm_running = runstate_is_running();
eeb34af9 266
d0f2c4c6 267 DPRINTF("done iterating\n");
8a9236f1 268 vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
065e2813 269
67afff79
JQ
270 if (qemu_savevm_state_complete(s->mon, s->file) < 0) {
271 migrate_fd_error(s);
b161d123 272 } else {
458cf28e 273 migrate_fd_completed(s);
b161d123 274 }
48a2f4d6 275 if (s->state != MIG_STATE_COMPLETED) {
41ef56e6
AL
276 if (old_vm_running) {
277 vm_start();
278 }
f5bbfba1 279 }
065e2813
AL
280 }
281}
282
0edda1c4 283static void migrate_fd_cancel(MigrationState *s)
065e2813 284{
065e2813
AL
285 if (s->state != MIG_STATE_ACTIVE)
286 return;
287
d0f2c4c6 288 DPRINTF("cancelling migration\n");
065e2813
AL
289
290 s->state = MIG_STATE_CANCELLED;
e0eb7390 291 notifier_list_notify(&migration_state_notifiers, s);
f327aa0c 292 qemu_savevm_state_cancel(s->mon, s->file);
065e2813
AL
293
294 migrate_fd_cleanup(s);
295}
296
8b6b99b3 297static void migrate_fd_wait_for_unfreeze(void *opaque)
065e2813 298{
22f00a44 299 MigrationState *s = opaque;
065e2813
AL
300 int ret;
301
d0f2c4c6 302 DPRINTF("wait for unfreeze\n");
065e2813
AL
303 if (s->state != MIG_STATE_ACTIVE)
304 return;
305
306 do {
307 fd_set wfds;
308
309 FD_ZERO(&wfds);
310 FD_SET(s->fd, &wfds);
311
312 ret = select(s->fd + 1, NULL, &wfds, NULL, NULL);
313 } while (ret == -1 && (s->get_error(s)) == EINTR);
af509450
JQ
314
315 if (ret == -1) {
dcd1d224 316 qemu_file_set_error(s->file, -s->get_error(s));
af509450 317 }
065e2813
AL
318}
319
8b6b99b3 320static int migrate_fd_close(void *opaque)
065e2813 321{
22f00a44 322 MigrationState *s = opaque;
e19252d3 323
84ec6552
JK
324 if (s->mon) {
325 monitor_resume(s->mon);
326 }
e19252d3 327 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
065e2813
AL
328 return s->close(s);
329}
99a0db9b
GH
330
331void add_migration_state_change_notifier(Notifier *notify)
332{
333 notifier_list_add(&migration_state_notifiers, notify);
334}
335
336void remove_migration_state_change_notifier(Notifier *notify)
337{
338 notifier_list_remove(&migration_state_notifiers, notify);
339}
340
afe2df69
GH
341bool migration_is_active(MigrationState *s)
342{
343 return s->state == MIG_STATE_ACTIVE;
344}
345
7073693b 346bool migration_has_finished(MigrationState *s)
99a0db9b 347{
7073693b 348 return s->state == MIG_STATE_COMPLETED;
99a0db9b 349}
0edda1c4 350
afe2df69
GH
351bool migration_has_failed(MigrationState *s)
352{
353 return (s->state == MIG_STATE_CANCELLED ||
354 s->state == MIG_STATE_ERROR);
355}
356
8b6b99b3 357void migrate_fd_connect(MigrationState *s)
99a0db9b 358{
8b6b99b3
JQ
359 int ret;
360
d5934dde 361 s->state = MIG_STATE_ACTIVE;
8b6b99b3
JQ
362 s->file = qemu_fopen_ops_buffered(s,
363 s->bandwidth_limit,
364 migrate_fd_put_buffer,
365 migrate_fd_put_ready,
366 migrate_fd_wait_for_unfreeze,
367 migrate_fd_close);
368
369 DPRINTF("beginning savevm\n");
370 ret = qemu_savevm_state_begin(s->mon, s->file, s->blk, s->shared);
371 if (ret < 0) {
372 DPRINTF("failed, %d\n", ret);
373 migrate_fd_error(s);
374 return;
375 }
376 migrate_fd_put_ready(s);
377}
378
d0ae46c1 379static MigrationState *migrate_init(Monitor *mon, int detach, int blk, int inc)
0edda1c4 380{
17549e84 381 MigrationState *s = migrate_get_current();
d0ae46c1 382 int64_t bandwidth_limit = s->bandwidth_limit;
0edda1c4 383
17549e84 384 memset(s, 0, sizeof(*s));
d0ae46c1 385 s->bandwidth_limit = bandwidth_limit;
0edda1c4
JQ
386 s->blk = blk;
387 s->shared = inc;
1299c631
JQ
388
389 /* s->mon is used for two things:
390 - pass fd in fd migration
391 - suspend/resume monitor for not detached migration
392 */
393 s->mon = mon;
0edda1c4 394 s->bandwidth_limit = bandwidth_limit;
d5934dde 395 s->state = MIG_STATE_SETUP;
0edda1c4
JQ
396
397 if (!detach) {
398 migrate_fd_monitor_suspend(s, mon);
399 }
400
401 return s;
402}
cab30143 403
fa2756b7
AL
404static GSList *migration_blockers;
405
406void migrate_add_blocker(Error *reason)
407{
408 migration_blockers = g_slist_prepend(migration_blockers, reason);
409}
410
411void migrate_del_blocker(Error *reason)
412{
413 migration_blockers = g_slist_remove(migration_blockers, reason);
414}
415
cab30143
JQ
416int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data)
417{
17549e84 418 MigrationState *s = migrate_get_current();
cab30143
JQ
419 const char *p;
420 int detach = qdict_get_try_bool(qdict, "detach", 0);
421 int blk = qdict_get_try_bool(qdict, "blk", 0);
422 int inc = qdict_get_try_bool(qdict, "inc", 0);
423 const char *uri = qdict_get_str(qdict, "uri");
424 int ret;
425
17549e84 426 if (s->state == MIG_STATE_ACTIVE) {
cab30143
JQ
427 monitor_printf(mon, "migration already in progress\n");
428 return -1;
429 }
430
431 if (qemu_savevm_state_blocked(mon)) {
432 return -1;
433 }
434
fa2756b7
AL
435 if (migration_blockers) {
436 Error *err = migration_blockers->data;
437 qerror_report_err(err);
438 return -1;
439 }
440
d0ae46c1 441 s = migrate_init(mon, detach, blk, inc);
cab30143
JQ
442
443 if (strstart(uri, "tcp:", &p)) {
444 ret = tcp_start_outgoing_migration(s, p);
445#if !defined(WIN32)
446 } else if (strstart(uri, "exec:", &p)) {
447 ret = exec_start_outgoing_migration(s, p);
448 } else if (strstart(uri, "unix:", &p)) {
449 ret = unix_start_outgoing_migration(s, p);
450 } else if (strstart(uri, "fd:", &p)) {
451 ret = fd_start_outgoing_migration(s, p);
452#endif
99a0db9b 453 } else {
cab30143
JQ
454 monitor_printf(mon, "unknown migration protocol: %s\n", uri);
455 ret = -EINVAL;
cab30143
JQ
456 }
457
458 if (ret < 0) {
17549e84
JQ
459 monitor_printf(mon, "migration failed: %s\n", strerror(-ret));
460 return ret;
cab30143
JQ
461 }
462
1299c631
JQ
463 if (detach) {
464 s->mon = NULL;
465 }
466
e0eb7390 467 notifier_list_notify(&migration_state_notifiers, s);
cab30143 468 return 0;
cab30143
JQ
469}
470
471int do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data)
472{
17549e84 473 migrate_fd_cancel(migrate_get_current());
cab30143
JQ
474 return 0;
475}
476
477int do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data)
478{
479 int64_t d;
480 MigrationState *s;
481
482 d = qdict_get_int(qdict, "value");
483 if (d < 0) {
484 d = 0;
99a0db9b 485 }
cab30143 486
17549e84 487 s = migrate_get_current();
d0ae46c1
JQ
488 s->bandwidth_limit = d;
489 qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
cab30143
JQ
490
491 return 0;
492}
493
494int do_migrate_set_downtime(Monitor *mon, const QDict *qdict,
495 QObject **ret_data)
496{
497 double d;
498
499 d = qdict_get_double(qdict, "value") * 1e9;
500 d = MAX(0, MIN(UINT64_MAX, d));
501 max_downtime = (uint64_t)d;
502
503 return 0;
99a0db9b 504}