ivshmem: use migration blockers to prevent live migration in peer mode (v2)
[qemu.git] / migration.c
blob6764d3a44cd9ea6b130c28c2a9b16479aaa52a2c
1 /*
2 * QEMU live migration
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu-common.h"
15 #include "migration.h"
16 #include "monitor.h"
17 #include "buffered_file.h"
18 #include "sysemu.h"
19 #include "block.h"
20 #include "qemu_socket.h"
21 #include "block-migration.h"
22 #include "qmp-commands.h"
24 //#define DEBUG_MIGRATION
26 #ifdef DEBUG_MIGRATION
27 #define DPRINTF(fmt, ...) \
28 do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
29 #else
30 #define DPRINTF(fmt, ...) \
31 do { } while (0)
32 #endif
34 enum {
35 MIG_STATE_ERROR,
36 MIG_STATE_SETUP,
37 MIG_STATE_CANCELLED,
38 MIG_STATE_ACTIVE,
39 MIG_STATE_COMPLETED,
42 #define MAX_THROTTLE (32 << 20) /* Migration speed throttling */
44 static NotifierList migration_state_notifiers =
45 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
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 */
51 static MigrationState *migrate_get_current(void)
53 static MigrationState current_migration = {
54 .state = MIG_STATE_SETUP,
55 .bandwidth_limit = MAX_THROTTLE,
58 return &current_migration;
61 int qemu_start_incoming_migration(const char *uri)
63 const char *p;
64 int ret;
66 if (strstart(uri, "tcp:", &p))
67 ret = tcp_start_incoming_migration(p);
68 #if !defined(WIN32)
69 else if (strstart(uri, "exec:", &p))
70 ret = exec_start_incoming_migration(p);
71 else if (strstart(uri, "unix:", &p))
72 ret = unix_start_incoming_migration(p);
73 else if (strstart(uri, "fd:", &p))
74 ret = fd_start_incoming_migration(p);
75 #endif
76 else {
77 fprintf(stderr, "unknown migration protocol: %s\n", uri);
78 ret = -EPROTONOSUPPORT;
80 return ret;
83 void process_incoming_migration(QEMUFile *f)
85 if (qemu_loadvm_state(f) < 0) {
86 fprintf(stderr, "load of migration failed\n");
87 exit(0);
89 qemu_announce_self();
90 DPRINTF("successfully loaded vm state\n");
92 if (autostart) {
93 vm_start();
94 } else {
95 runstate_set(RUN_STATE_PRELAUNCH);
99 /* amount of nanoseconds we are willing to wait for migration to be down.
100 * the choice of nanoseconds is because it is the maximum resolution that
101 * get_clock() can achieve. It is an internal measure. All user-visible
102 * units must be in seconds */
103 static uint64_t max_downtime = 30000000;
105 uint64_t migrate_max_downtime(void)
107 return max_downtime;
110 MigrationInfo *qmp_query_migrate(Error **errp)
112 MigrationInfo *info = g_malloc0(sizeof(*info));
113 MigrationState *s = migrate_get_current();
115 switch (s->state) {
116 case MIG_STATE_SETUP:
117 /* no migration has happened ever */
118 break;
119 case MIG_STATE_ACTIVE:
120 info->has_status = true;
121 info->status = g_strdup("active");
123 info->has_ram = true;
124 info->ram = g_malloc0(sizeof(*info->ram));
125 info->ram->transferred = ram_bytes_transferred();
126 info->ram->remaining = ram_bytes_remaining();
127 info->ram->total = ram_bytes_total();
129 if (blk_mig_active()) {
130 info->has_disk = true;
131 info->disk = g_malloc0(sizeof(*info->disk));
132 info->disk->transferred = blk_mig_bytes_transferred();
133 info->disk->remaining = blk_mig_bytes_remaining();
134 info->disk->total = blk_mig_bytes_total();
136 break;
137 case MIG_STATE_COMPLETED:
138 info->has_status = true;
139 info->status = g_strdup("completed");
140 break;
141 case MIG_STATE_ERROR:
142 info->has_status = true;
143 info->status = g_strdup("failed");
144 break;
145 case MIG_STATE_CANCELLED:
146 info->has_status = true;
147 info->status = g_strdup("cancelled");
148 break;
151 return info;
154 /* shared migration helpers */
156 static void migrate_fd_monitor_suspend(MigrationState *s, Monitor *mon)
158 if (monitor_suspend(mon) == 0) {
159 DPRINTF("suspending monitor\n");
160 } else {
161 monitor_printf(mon, "terminal does not allow synchronous "
162 "migration, continuing detached\n");
166 static int migrate_fd_cleanup(MigrationState *s)
168 int ret = 0;
170 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
172 if (s->file) {
173 DPRINTF("closing file\n");
174 if (qemu_fclose(s->file) != 0) {
175 ret = -1;
177 s->file = NULL;
178 } else {
179 if (s->mon) {
180 monitor_resume(s->mon);
184 if (s->fd != -1) {
185 close(s->fd);
186 s->fd = -1;
189 return ret;
192 void migrate_fd_error(MigrationState *s)
194 DPRINTF("setting error state\n");
195 s->state = MIG_STATE_ERROR;
196 notifier_list_notify(&migration_state_notifiers, s);
197 migrate_fd_cleanup(s);
200 static void migrate_fd_completed(MigrationState *s)
202 DPRINTF("setting completed state\n");
203 if (migrate_fd_cleanup(s) < 0) {
204 s->state = MIG_STATE_ERROR;
205 } else {
206 s->state = MIG_STATE_COMPLETED;
207 runstate_set(RUN_STATE_POSTMIGRATE);
209 notifier_list_notify(&migration_state_notifiers, s);
212 static void migrate_fd_put_notify(void *opaque)
214 MigrationState *s = opaque;
216 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
217 qemu_file_put_notify(s->file);
218 if (s->file && qemu_file_get_error(s->file)) {
219 migrate_fd_error(s);
223 static ssize_t migrate_fd_put_buffer(void *opaque, const void *data,
224 size_t size)
226 MigrationState *s = opaque;
227 ssize_t ret;
229 if (s->state != MIG_STATE_ACTIVE) {
230 return -EIO;
233 do {
234 ret = s->write(s, data, size);
235 } while (ret == -1 && ((s->get_error(s)) == EINTR));
237 if (ret == -1)
238 ret = -(s->get_error(s));
240 if (ret == -EAGAIN) {
241 qemu_set_fd_handler2(s->fd, NULL, NULL, migrate_fd_put_notify, s);
244 return ret;
247 static void migrate_fd_put_ready(void *opaque)
249 MigrationState *s = opaque;
250 int ret;
252 if (s->state != MIG_STATE_ACTIVE) {
253 DPRINTF("put_ready returning because of non-active state\n");
254 return;
257 DPRINTF("iterate\n");
258 ret = qemu_savevm_state_iterate(s->mon, s->file);
259 if (ret < 0) {
260 migrate_fd_error(s);
261 } else if (ret == 1) {
262 int old_vm_running = runstate_is_running();
264 DPRINTF("done iterating\n");
265 vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
267 if (qemu_savevm_state_complete(s->mon, s->file) < 0) {
268 migrate_fd_error(s);
269 } else {
270 migrate_fd_completed(s);
272 if (s->state != MIG_STATE_COMPLETED) {
273 if (old_vm_running) {
274 vm_start();
280 static void migrate_fd_cancel(MigrationState *s)
282 if (s->state != MIG_STATE_ACTIVE)
283 return;
285 DPRINTF("cancelling migration\n");
287 s->state = MIG_STATE_CANCELLED;
288 notifier_list_notify(&migration_state_notifiers, s);
289 qemu_savevm_state_cancel(s->mon, s->file);
291 migrate_fd_cleanup(s);
294 static void migrate_fd_wait_for_unfreeze(void *opaque)
296 MigrationState *s = opaque;
297 int ret;
299 DPRINTF("wait for unfreeze\n");
300 if (s->state != MIG_STATE_ACTIVE)
301 return;
303 do {
304 fd_set wfds;
306 FD_ZERO(&wfds);
307 FD_SET(s->fd, &wfds);
309 ret = select(s->fd + 1, NULL, &wfds, NULL, NULL);
310 } while (ret == -1 && (s->get_error(s)) == EINTR);
312 if (ret == -1) {
313 qemu_file_set_error(s->file, -s->get_error(s));
317 static int migrate_fd_close(void *opaque)
319 MigrationState *s = opaque;
321 if (s->mon) {
322 monitor_resume(s->mon);
324 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
325 return s->close(s);
328 void add_migration_state_change_notifier(Notifier *notify)
330 notifier_list_add(&migration_state_notifiers, notify);
333 void remove_migration_state_change_notifier(Notifier *notify)
335 notifier_list_remove(&migration_state_notifiers, notify);
338 bool migration_is_active(MigrationState *s)
340 return s->state == MIG_STATE_ACTIVE;
343 bool migration_has_finished(MigrationState *s)
345 return s->state == MIG_STATE_COMPLETED;
348 bool migration_has_failed(MigrationState *s)
350 return (s->state == MIG_STATE_CANCELLED ||
351 s->state == MIG_STATE_ERROR);
354 void migrate_fd_connect(MigrationState *s)
356 int ret;
358 s->state = MIG_STATE_ACTIVE;
359 s->file = qemu_fopen_ops_buffered(s,
360 s->bandwidth_limit,
361 migrate_fd_put_buffer,
362 migrate_fd_put_ready,
363 migrate_fd_wait_for_unfreeze,
364 migrate_fd_close);
366 DPRINTF("beginning savevm\n");
367 ret = qemu_savevm_state_begin(s->mon, s->file, s->blk, s->shared);
368 if (ret < 0) {
369 DPRINTF("failed, %d\n", ret);
370 migrate_fd_error(s);
371 return;
373 migrate_fd_put_ready(s);
376 static MigrationState *migrate_init(Monitor *mon, int detach, int blk, int inc)
378 MigrationState *s = migrate_get_current();
379 int64_t bandwidth_limit = s->bandwidth_limit;
381 memset(s, 0, sizeof(*s));
382 s->bandwidth_limit = bandwidth_limit;
383 s->blk = blk;
384 s->shared = inc;
386 /* s->mon is used for two things:
387 - pass fd in fd migration
388 - suspend/resume monitor for not detached migration
390 s->mon = mon;
391 s->bandwidth_limit = bandwidth_limit;
392 s->state = MIG_STATE_SETUP;
394 if (!detach) {
395 migrate_fd_monitor_suspend(s, mon);
398 return s;
401 static GSList *migration_blockers;
403 void migrate_add_blocker(Error *reason)
405 migration_blockers = g_slist_prepend(migration_blockers, reason);
408 void migrate_del_blocker(Error *reason)
410 migration_blockers = g_slist_remove(migration_blockers, reason);
413 int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data)
415 MigrationState *s = migrate_get_current();
416 const char *p;
417 int detach = qdict_get_try_bool(qdict, "detach", 0);
418 int blk = qdict_get_try_bool(qdict, "blk", 0);
419 int inc = qdict_get_try_bool(qdict, "inc", 0);
420 const char *uri = qdict_get_str(qdict, "uri");
421 int ret;
423 if (s->state == MIG_STATE_ACTIVE) {
424 monitor_printf(mon, "migration already in progress\n");
425 return -1;
428 if (qemu_savevm_state_blocked(mon)) {
429 return -1;
432 if (migration_blockers) {
433 Error *err = migration_blockers->data;
434 qerror_report_err(err);
435 return -1;
438 s = migrate_init(mon, detach, blk, inc);
440 if (strstart(uri, "tcp:", &p)) {
441 ret = tcp_start_outgoing_migration(s, p);
442 #if !defined(WIN32)
443 } else if (strstart(uri, "exec:", &p)) {
444 ret = exec_start_outgoing_migration(s, p);
445 } else if (strstart(uri, "unix:", &p)) {
446 ret = unix_start_outgoing_migration(s, p);
447 } else if (strstart(uri, "fd:", &p)) {
448 ret = fd_start_outgoing_migration(s, p);
449 #endif
450 } else {
451 monitor_printf(mon, "unknown migration protocol: %s\n", uri);
452 ret = -EINVAL;
455 if (ret < 0) {
456 monitor_printf(mon, "migration failed: %s\n", strerror(-ret));
457 return ret;
460 if (detach) {
461 s->mon = NULL;
464 notifier_list_notify(&migration_state_notifiers, s);
465 return 0;
468 int do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data)
470 migrate_fd_cancel(migrate_get_current());
471 return 0;
474 int do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data)
476 int64_t d;
477 MigrationState *s;
479 d = qdict_get_int(qdict, "value");
480 if (d < 0) {
481 d = 0;
484 s = migrate_get_current();
485 s->bandwidth_limit = d;
486 qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
488 return 0;
491 int do_migrate_set_downtime(Monitor *mon, const QDict *qdict,
492 QObject **ret_data)
494 double d;
496 d = qdict_get_double(qdict, "value") * 1e9;
497 d = MAX(0, MIN(UINT64_MAX, d));
498 max_downtime = (uint64_t)d;
500 return 0;