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"
22 //#define DEBUG_MIGRATION
24 #ifdef DEBUG_MIGRATION
25 #define dprintf(fmt, ...) \
26 do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
28 #define dprintf(fmt, ...) \
32 /* Migration speed throttling */
33 static uint32_t max_throttle
= (32 << 20);
35 static MigrationState
*current_migration
;
37 void qemu_start_incoming_migration(const char *uri
)
41 if (strstart(uri
, "tcp:", &p
))
42 tcp_start_incoming_migration(p
);
44 else if (strstart(uri
, "exec:", &p
))
45 exec_start_incoming_migration(p
);
46 else if (strstart(uri
, "unix:", &p
))
47 unix_start_incoming_migration(p
);
48 else if (strstart(uri
, "fd:", &p
))
49 fd_start_incoming_migration(p
);
52 fprintf(stderr
, "unknown migration protocol: %s\n", uri
);
55 void do_migrate(Monitor
*mon
, int detach
, const char *uri
)
57 MigrationState
*s
= NULL
;
60 if (strstart(uri
, "tcp:", &p
))
61 s
= tcp_start_outgoing_migration(p
, max_throttle
, detach
);
63 else if (strstart(uri
, "exec:", &p
))
64 s
= exec_start_outgoing_migration(p
, max_throttle
, detach
);
65 else if (strstart(uri
, "unix:", &p
))
66 s
= unix_start_outgoing_migration(p
, max_throttle
, detach
);
67 else if (strstart(uri
, "fd:", &p
))
68 s
= fd_start_outgoing_migration(mon
, p
, max_throttle
, detach
);
71 monitor_printf(mon
, "unknown migration protocol: %s\n", uri
);
74 monitor_printf(mon
, "migration failed\n");
76 if (current_migration
)
77 current_migration
->release(current_migration
);
79 current_migration
= s
;
83 void do_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
85 MigrationState
*s
= current_migration
;
91 void do_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
96 const char *value
= qdict_get_str(qdict
, "value");
98 d
= strtod(value
, &ptr
);
110 max_throttle
= (uint32_t)d
;
111 s
= migrate_to_fms(current_migration
);
114 qemu_file_set_rate_limit(s
->file
, max_throttle
);
119 /* amount of nanoseconds we are willing to wait for migration to be down.
120 * the choice of nanoseconds is because it is the maximum resolution that
121 * get_clock() can achieve. It is an internal measure. All user-visible
122 * units must be in seconds */
123 static uint64_t max_downtime
= 30000000;
125 uint64_t migrate_max_downtime(void)
130 void do_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
134 const char *value
= qdict_get_str(qdict
, "value");
136 d
= strtod(value
, &ptr
);
137 if (!strcmp(ptr
,"ms")) {
139 } else if (!strcmp(ptr
,"us")) {
141 } else if (!strcmp(ptr
,"ns")) {
143 /* all else considered to be seconds */
147 max_downtime
= (uint64_t)d
;
150 void do_info_migrate(Monitor
*mon
)
152 MigrationState
*s
= current_migration
;
155 monitor_printf(mon
, "Migration status: ");
156 switch (s
->get_status(s
)) {
157 case MIG_STATE_ACTIVE
:
158 monitor_printf(mon
, "active\n");
159 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n", ram_bytes_transferred() >> 10);
160 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n", ram_bytes_remaining() >> 10);
161 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n", ram_bytes_total() >> 10);
163 case MIG_STATE_COMPLETED
:
164 monitor_printf(mon
, "completed\n");
166 case MIG_STATE_ERROR
:
167 monitor_printf(mon
, "failed\n");
169 case MIG_STATE_CANCELLED
:
170 monitor_printf(mon
, "cancelled\n");
176 /* shared migration helpers */
178 void migrate_fd_monitor_suspend(FdMigrationState
*s
)
180 s
->mon_resume
= cur_mon
;
181 if (monitor_suspend(cur_mon
) == 0)
182 dprintf("suspending monitor\n");
184 monitor_printf(cur_mon
, "terminal does not allow synchronous "
185 "migration, continuing detached\n");
188 void migrate_fd_error(FdMigrationState
*s
)
190 dprintf("setting error state\n");
191 s
->state
= MIG_STATE_ERROR
;
192 migrate_fd_cleanup(s
);
195 void migrate_fd_cleanup(FdMigrationState
*s
)
197 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
200 dprintf("closing file\n");
201 qemu_fclose(s
->file
);
207 /* Don't resume monitor until we've flushed all of the buffers */
209 monitor_resume(s
->mon_resume
);
214 void migrate_fd_put_notify(void *opaque
)
216 FdMigrationState
*s
= opaque
;
218 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
219 qemu_file_put_notify(s
->file
);
222 ssize_t
migrate_fd_put_buffer(void *opaque
, const void *data
, size_t size
)
224 FdMigrationState
*s
= opaque
;
228 ret
= s
->write(s
, data
, size
);
229 } while (ret
== -1 && ((s
->get_error(s
)) == EINTR
));
232 ret
= -(s
->get_error(s
));
235 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, migrate_fd_put_notify
, s
);
240 void migrate_fd_connect(FdMigrationState
*s
)
244 s
->file
= qemu_fopen_ops_buffered(s
,
246 migrate_fd_put_buffer
,
247 migrate_fd_put_ready
,
248 migrate_fd_wait_for_unfreeze
,
251 dprintf("beginning savevm\n");
252 ret
= qemu_savevm_state_begin(s
->file
);
254 dprintf("failed, %d\n", ret
);
259 migrate_fd_put_ready(s
);
262 void migrate_fd_put_ready(void *opaque
)
264 FdMigrationState
*s
= opaque
;
266 if (s
->state
!= MIG_STATE_ACTIVE
) {
267 dprintf("put_ready returning because of non-active state\n");
271 dprintf("iterate\n");
272 if (qemu_savevm_state_iterate(s
->file
) == 1) {
274 int old_vm_running
= vm_running
;
276 dprintf("done iterating\n");
281 if ((qemu_savevm_state_complete(s
->file
)) < 0) {
282 if (old_vm_running
) {
285 state
= MIG_STATE_ERROR
;
287 state
= MIG_STATE_COMPLETED
;
289 migrate_fd_cleanup(s
);
294 int migrate_fd_get_status(MigrationState
*mig_state
)
296 FdMigrationState
*s
= migrate_to_fms(mig_state
);
300 void migrate_fd_cancel(MigrationState
*mig_state
)
302 FdMigrationState
*s
= migrate_to_fms(mig_state
);
304 if (s
->state
!= MIG_STATE_ACTIVE
)
307 dprintf("cancelling migration\n");
309 s
->state
= MIG_STATE_CANCELLED
;
311 migrate_fd_cleanup(s
);
314 void migrate_fd_release(MigrationState
*mig_state
)
316 FdMigrationState
*s
= migrate_to_fms(mig_state
);
318 dprintf("releasing state\n");
320 if (s
->state
== MIG_STATE_ACTIVE
) {
321 s
->state
= MIG_STATE_CANCELLED
;
322 migrate_fd_cleanup(s
);
327 void migrate_fd_wait_for_unfreeze(void *opaque
)
329 FdMigrationState
*s
= opaque
;
332 dprintf("wait for unfreeze\n");
333 if (s
->state
!= MIG_STATE_ACTIVE
)
340 FD_SET(s
->fd
, &wfds
);
342 ret
= select(s
->fd
+ 1, NULL
, &wfds
, NULL
, NULL
);
343 } while (ret
== -1 && (s
->get_error(s
)) == EINTR
);
346 int migrate_fd_close(void *opaque
)
348 FdMigrationState
*s
= opaque
;
350 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);