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