4 * Copyright IBM, Corp. 2008
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"
17 #include "buffered_file.h"
20 #include "qemu_socket.h"
21 #include "block-migration.h"
22 #include "qemu-objects.h"
24 //#define DEBUG_MIGRATION
26 #ifdef DEBUG_MIGRATION
27 #define DPRINTF(fmt, ...) \
28 do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
30 #define DPRINTF(fmt, ...) \
34 /* Migration speed throttling */
35 static int64_t max_throttle
= (32 << 20);
37 static MigrationState
*current_migration
;
39 static NotifierList migration_state_notifiers
=
40 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers
);
42 int qemu_start_incoming_migration(const char *uri
)
47 if (strstart(uri
, "tcp:", &p
))
48 ret
= tcp_start_incoming_migration(p
);
50 else if (strstart(uri
, "exec:", &p
))
51 ret
= exec_start_incoming_migration(p
);
52 else if (strstart(uri
, "unix:", &p
))
53 ret
= unix_start_incoming_migration(p
);
54 else if (strstart(uri
, "fd:", &p
))
55 ret
= fd_start_incoming_migration(p
);
58 fprintf(stderr
, "unknown migration protocol: %s\n", uri
);
59 ret
= -EPROTONOSUPPORT
;
64 void process_incoming_migration(QEMUFile
*f
)
66 if (qemu_loadvm_state(f
) < 0) {
67 fprintf(stderr
, "load of migration failed\n");
71 DPRINTF("successfully loaded vm state\n");
76 runstate_set(RSTATE_PRE_LAUNCH
);
80 int do_migrate(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
82 MigrationState
*s
= NULL
;
84 int detach
= qdict_get_try_bool(qdict
, "detach", 0);
85 int blk
= qdict_get_try_bool(qdict
, "blk", 0);
86 int inc
= qdict_get_try_bool(qdict
, "inc", 0);
87 const char *uri
= qdict_get_str(qdict
, "uri");
89 if (current_migration
&&
90 current_migration
->get_status(current_migration
) == MIG_STATE_ACTIVE
) {
91 monitor_printf(mon
, "migration already in progress\n");
95 if (qemu_savevm_state_blocked(mon
)) {
99 if (strstart(uri
, "tcp:", &p
)) {
100 s
= tcp_start_outgoing_migration(mon
, p
, max_throttle
, detach
,
103 } else if (strstart(uri
, "exec:", &p
)) {
104 s
= exec_start_outgoing_migration(mon
, p
, max_throttle
, detach
,
106 } else if (strstart(uri
, "unix:", &p
)) {
107 s
= unix_start_outgoing_migration(mon
, p
, max_throttle
, detach
,
109 } else if (strstart(uri
, "fd:", &p
)) {
110 s
= fd_start_outgoing_migration(mon
, p
, max_throttle
, detach
,
114 monitor_printf(mon
, "unknown migration protocol: %s\n", uri
);
119 monitor_printf(mon
, "migration failed\n");
123 if (current_migration
) {
124 current_migration
->release(current_migration
);
127 current_migration
= s
;
128 notifier_list_notify(&migration_state_notifiers
, NULL
);
132 int do_migrate_cancel(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
134 MigrationState
*s
= current_migration
;
142 int do_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
147 d
= qdict_get_int(qdict
, "value");
153 s
= migrate_to_fms(current_migration
);
155 qemu_file_set_rate_limit(s
->file
, max_throttle
);
161 /* amount of nanoseconds we are willing to wait for migration to be down.
162 * the choice of nanoseconds is because it is the maximum resolution that
163 * get_clock() can achieve. It is an internal measure. All user-visible
164 * units must be in seconds */
165 static uint64_t max_downtime
= 30000000;
167 uint64_t migrate_max_downtime(void)
172 int do_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
,
177 d
= qdict_get_double(qdict
, "value") * 1e9
;
178 d
= MAX(0, MIN(UINT64_MAX
, d
));
179 max_downtime
= (uint64_t)d
;
184 static void migrate_print_status(Monitor
*mon
, const char *name
,
185 const QDict
*status_dict
)
189 qdict
= qobject_to_qdict(qdict_get(status_dict
, name
));
191 monitor_printf(mon
, "transferred %s: %" PRIu64
" kbytes\n", name
,
192 qdict_get_int(qdict
, "transferred") >> 10);
193 monitor_printf(mon
, "remaining %s: %" PRIu64
" kbytes\n", name
,
194 qdict_get_int(qdict
, "remaining") >> 10);
195 monitor_printf(mon
, "total %s: %" PRIu64
" kbytes\n", name
,
196 qdict_get_int(qdict
, "total") >> 10);
199 void do_info_migrate_print(Monitor
*mon
, const QObject
*data
)
203 qdict
= qobject_to_qdict(data
);
205 monitor_printf(mon
, "Migration status: %s\n",
206 qdict_get_str(qdict
, "status"));
208 if (qdict_haskey(qdict
, "ram")) {
209 migrate_print_status(mon
, "ram", qdict
);
212 if (qdict_haskey(qdict
, "disk")) {
213 migrate_print_status(mon
, "disk", qdict
);
217 static void migrate_put_status(QDict
*qdict
, const char *name
,
218 uint64_t trans
, uint64_t rem
, uint64_t total
)
222 obj
= qobject_from_jsonf("{ 'transferred': %" PRId64
", "
223 "'remaining': %" PRId64
", "
224 "'total': %" PRId64
" }", trans
, rem
, total
);
225 qdict_put_obj(qdict
, name
, obj
);
228 void do_info_migrate(Monitor
*mon
, QObject
**ret_data
)
231 MigrationState
*s
= current_migration
;
234 switch (s
->get_status(s
)) {
235 case MIG_STATE_ACTIVE
:
237 qdict_put(qdict
, "status", qstring_from_str("active"));
239 migrate_put_status(qdict
, "ram", ram_bytes_transferred(),
240 ram_bytes_remaining(), ram_bytes_total());
242 if (blk_mig_active()) {
243 migrate_put_status(qdict
, "disk", blk_mig_bytes_transferred(),
244 blk_mig_bytes_remaining(),
245 blk_mig_bytes_total());
248 *ret_data
= QOBJECT(qdict
);
250 case MIG_STATE_COMPLETED
:
251 *ret_data
= qobject_from_jsonf("{ 'status': 'completed' }");
253 case MIG_STATE_ERROR
:
254 *ret_data
= qobject_from_jsonf("{ 'status': 'failed' }");
256 case MIG_STATE_CANCELLED
:
257 *ret_data
= qobject_from_jsonf("{ 'status': 'cancelled' }");
263 /* shared migration helpers */
265 void migrate_fd_monitor_suspend(FdMigrationState
*s
, Monitor
*mon
)
268 if (monitor_suspend(mon
) == 0) {
269 DPRINTF("suspending monitor\n");
271 monitor_printf(mon
, "terminal does not allow synchronous "
272 "migration, continuing detached\n");
276 void migrate_fd_error(FdMigrationState
*s
)
278 DPRINTF("setting error state\n");
279 s
->state
= MIG_STATE_ERROR
;
280 notifier_list_notify(&migration_state_notifiers
, NULL
);
281 migrate_fd_cleanup(s
);
284 int migrate_fd_cleanup(FdMigrationState
*s
)
288 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
291 DPRINTF("closing file\n");
292 if (qemu_fclose(s
->file
) != 0) {
298 monitor_resume(s
->mon
);
310 void migrate_fd_put_notify(void *opaque
)
312 FdMigrationState
*s
= opaque
;
314 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
315 qemu_file_put_notify(s
->file
);
318 ssize_t
migrate_fd_put_buffer(void *opaque
, const void *data
, size_t size
)
320 FdMigrationState
*s
= opaque
;
324 ret
= s
->write(s
, data
, size
);
325 } while (ret
== -1 && ((s
->get_error(s
)) == EINTR
));
328 ret
= -(s
->get_error(s
));
330 if (ret
== -EAGAIN
) {
331 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, migrate_fd_put_notify
, s
);
332 } else if (ret
< 0) {
333 s
->state
= MIG_STATE_ERROR
;
334 notifier_list_notify(&migration_state_notifiers
, NULL
);
340 void migrate_fd_connect(FdMigrationState
*s
)
344 s
->file
= qemu_fopen_ops_buffered(s
,
346 migrate_fd_put_buffer
,
347 migrate_fd_put_ready
,
348 migrate_fd_wait_for_unfreeze
,
351 DPRINTF("beginning savevm\n");
352 ret
= qemu_savevm_state_begin(s
->mon
, s
->file
, s
->mig_state
.blk
,
353 s
->mig_state
.shared
);
355 DPRINTF("failed, %d\n", ret
);
360 migrate_fd_put_ready(s
);
363 void migrate_fd_put_ready(void *opaque
)
365 FdMigrationState
*s
= opaque
;
367 if (s
->state
!= MIG_STATE_ACTIVE
) {
368 DPRINTF("put_ready returning because of non-active state\n");
372 DPRINTF("iterate\n");
373 if (qemu_savevm_state_iterate(s
->mon
, s
->file
) == 1) {
375 int old_vm_running
= runstate_is_running();
377 DPRINTF("done iterating\n");
378 vm_stop(RSTATE_PRE_MIGRATE
);
380 if ((qemu_savevm_state_complete(s
->mon
, s
->file
)) < 0) {
381 if (old_vm_running
) {
384 state
= MIG_STATE_ERROR
;
386 state
= MIG_STATE_COMPLETED
;
388 if (migrate_fd_cleanup(s
) < 0) {
389 if (old_vm_running
) {
392 state
= MIG_STATE_ERROR
;
394 if (state
== MIG_STATE_COMPLETED
) {
395 runstate_set(RSTATE_POST_MIGRATE
);
398 notifier_list_notify(&migration_state_notifiers
, NULL
);
402 int migrate_fd_get_status(MigrationState
*mig_state
)
404 FdMigrationState
*s
= migrate_to_fms(mig_state
);
408 void migrate_fd_cancel(MigrationState
*mig_state
)
410 FdMigrationState
*s
= migrate_to_fms(mig_state
);
412 if (s
->state
!= MIG_STATE_ACTIVE
)
415 DPRINTF("cancelling migration\n");
417 s
->state
= MIG_STATE_CANCELLED
;
418 notifier_list_notify(&migration_state_notifiers
, NULL
);
419 qemu_savevm_state_cancel(s
->mon
, s
->file
);
421 migrate_fd_cleanup(s
);
424 void migrate_fd_release(MigrationState
*mig_state
)
426 FdMigrationState
*s
= migrate_to_fms(mig_state
);
428 DPRINTF("releasing state\n");
430 if (s
->state
== MIG_STATE_ACTIVE
) {
431 s
->state
= MIG_STATE_CANCELLED
;
432 notifier_list_notify(&migration_state_notifiers
, NULL
);
433 migrate_fd_cleanup(s
);
438 void migrate_fd_wait_for_unfreeze(void *opaque
)
440 FdMigrationState
*s
= opaque
;
443 DPRINTF("wait for unfreeze\n");
444 if (s
->state
!= MIG_STATE_ACTIVE
)
451 FD_SET(s
->fd
, &wfds
);
453 ret
= select(s
->fd
+ 1, NULL
, &wfds
, NULL
, NULL
);
454 } while (ret
== -1 && (s
->get_error(s
)) == EINTR
);
457 int migrate_fd_close(void *opaque
)
459 FdMigrationState
*s
= opaque
;
462 monitor_resume(s
->mon
);
464 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
468 void add_migration_state_change_notifier(Notifier
*notify
)
470 notifier_list_add(&migration_state_notifiers
, notify
);
473 void remove_migration_state_change_notifier(Notifier
*notify
)
475 notifier_list_remove(&migration_state_notifiers
, notify
);
478 int get_migration_state(void)
480 if (current_migration
) {
481 return migrate_fd_get_status(current_migration
);
483 return MIG_STATE_ERROR
;