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 "qmp-commands.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, ...) \
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 ¤t_migration
;
61 int qemu_start_incoming_migration(const char *uri
)
66 if (strstart(uri
, "tcp:", &p
))
67 ret
= tcp_start_incoming_migration(p
);
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
);
77 fprintf(stderr
, "unknown migration protocol: %s\n", uri
);
78 ret
= -EPROTONOSUPPORT
;
83 void process_incoming_migration(QEMUFile
*f
)
85 if (qemu_loadvm_state(f
) < 0) {
86 fprintf(stderr
, "load of migration failed\n");
90 DPRINTF("successfully loaded vm state\n");
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)
110 MigrationInfo
*qmp_query_migrate(Error
**errp
)
112 MigrationInfo
*info
= g_malloc0(sizeof(*info
));
113 MigrationState
*s
= migrate_get_current();
116 case MIG_STATE_SETUP
:
117 /* no migration has happened ever */
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();
137 case MIG_STATE_COMPLETED
:
138 info
->has_status
= true;
139 info
->status
= g_strdup("completed");
141 case MIG_STATE_ERROR
:
142 info
->has_status
= true;
143 info
->status
= g_strdup("failed");
145 case MIG_STATE_CANCELLED
:
146 info
->has_status
= true;
147 info
->status
= g_strdup("cancelled");
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");
161 monitor_printf(mon
, "terminal does not allow synchronous "
162 "migration, continuing detached\n");
166 static int migrate_fd_cleanup(MigrationState
*s
)
170 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
173 DPRINTF("closing file\n");
174 if (qemu_fclose(s
->file
) != 0) {
180 monitor_resume(s
->mon
);
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
;
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
)) {
223 static ssize_t
migrate_fd_put_buffer(void *opaque
, const void *data
,
226 MigrationState
*s
= opaque
;
229 if (s
->state
!= MIG_STATE_ACTIVE
) {
234 ret
= s
->write(s
, data
, size
);
235 } while (ret
== -1 && ((s
->get_error(s
)) == EINTR
));
238 ret
= -(s
->get_error(s
));
240 if (ret
== -EAGAIN
) {
241 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, migrate_fd_put_notify
, s
);
247 static void migrate_fd_put_ready(void *opaque
)
249 MigrationState
*s
= opaque
;
252 if (s
->state
!= MIG_STATE_ACTIVE
) {
253 DPRINTF("put_ready returning because of non-active state\n");
257 DPRINTF("iterate\n");
258 ret
= qemu_savevm_state_iterate(s
->mon
, s
->file
);
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) {
270 migrate_fd_completed(s
);
272 if (s
->state
!= MIG_STATE_COMPLETED
) {
273 if (old_vm_running
) {
280 static void migrate_fd_cancel(MigrationState
*s
)
282 if (s
->state
!= MIG_STATE_ACTIVE
)
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
;
299 DPRINTF("wait for unfreeze\n");
300 if (s
->state
!= MIG_STATE_ACTIVE
)
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
);
313 qemu_file_set_error(s
->file
, -s
->get_error(s
));
317 static int migrate_fd_close(void *opaque
)
319 MigrationState
*s
= opaque
;
322 monitor_resume(s
->mon
);
324 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
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
)
358 s
->state
= MIG_STATE_ACTIVE
;
359 s
->file
= qemu_fopen_ops_buffered(s
,
361 migrate_fd_put_buffer
,
362 migrate_fd_put_ready
,
363 migrate_fd_wait_for_unfreeze
,
366 DPRINTF("beginning savevm\n");
367 ret
= qemu_savevm_state_begin(s
->mon
, s
->file
, s
->blk
, s
->shared
);
369 DPRINTF("failed, %d\n", ret
);
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
;
386 /* s->mon is used for two things:
387 - pass fd in fd migration
388 - suspend/resume monitor for not detached migration
391 s
->bandwidth_limit
= bandwidth_limit
;
392 s
->state
= MIG_STATE_SETUP
;
395 migrate_fd_monitor_suspend(s
, mon
);
401 int do_migrate(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
403 MigrationState
*s
= migrate_get_current();
405 int detach
= qdict_get_try_bool(qdict
, "detach", 0);
406 int blk
= qdict_get_try_bool(qdict
, "blk", 0);
407 int inc
= qdict_get_try_bool(qdict
, "inc", 0);
408 const char *uri
= qdict_get_str(qdict
, "uri");
411 if (s
->state
== MIG_STATE_ACTIVE
) {
412 monitor_printf(mon
, "migration already in progress\n");
416 if (qemu_savevm_state_blocked(mon
)) {
420 s
= migrate_init(mon
, detach
, blk
, inc
);
422 if (strstart(uri
, "tcp:", &p
)) {
423 ret
= tcp_start_outgoing_migration(s
, p
);
425 } else if (strstart(uri
, "exec:", &p
)) {
426 ret
= exec_start_outgoing_migration(s
, p
);
427 } else if (strstart(uri
, "unix:", &p
)) {
428 ret
= unix_start_outgoing_migration(s
, p
);
429 } else if (strstart(uri
, "fd:", &p
)) {
430 ret
= fd_start_outgoing_migration(s
, p
);
433 monitor_printf(mon
, "unknown migration protocol: %s\n", uri
);
438 monitor_printf(mon
, "migration failed: %s\n", strerror(-ret
));
446 notifier_list_notify(&migration_state_notifiers
, s
);
450 int do_migrate_cancel(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
452 migrate_fd_cancel(migrate_get_current());
456 int do_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
461 d
= qdict_get_int(qdict
, "value");
466 s
= migrate_get_current();
467 s
->bandwidth_limit
= d
;
468 qemu_file_set_rate_limit(s
->file
, s
->bandwidth_limit
);
473 int do_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
,
478 d
= qdict_get_double(qdict
, "value") * 1e9
;
479 d
= MAX(0, MIN(UINT64_MAX
, d
));
480 max_downtime
= (uint64_t)d
;