blob: e2a5a832c65dca53711db6c001523cac9c598990 [file] [log] [blame]
aliguori5bb79102008-10-13 03:12:02 +00001/*
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 *
Paolo Bonzini6b620ca2012-01-13 17:44:23 +010012 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
aliguori5bb79102008-10-13 03:12:02 +000014 */
15
Peter Maydell1393a482016-01-26 18:16:54 +000016#include "qemu/osdep.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020017#include "qemu/cutils.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010018#include "qemu/error-report.h"
Juan Quintela795c40b2017-04-06 12:00:28 +020019#include "migration/blocker.h"
Juan Quintelaf4dbe1b2017-04-05 15:54:10 +020020#include "exec.h"
Juan Quintela7fcac4a2017-04-05 15:58:29 +020021#include "fd.h"
Juan Quintela61e8b142017-04-05 17:40:11 +020022#include "socket.h"
Juan Quintelae1a3ece2017-04-17 20:32:36 +020023#include "rdma.h"
Juan Quintela7b1e1a22017-04-17 20:26:27 +020024#include "ram.h"
Juan Quintela84a899d2017-04-24 18:53:30 +020025#include "migration/global_state.h"
Juan Quintelac4b63b72017-04-24 19:02:44 +020026#include "migration/misc.h"
Juan Quintela6666c962017-04-24 20:07:27 +020027#include "migration.h"
Juan Quintela20a519a2017-04-20 14:48:46 +020028#include "savevm.h"
Juan Quintela40014d82017-04-17 19:34:36 +020029#include "qemu-file-channel.h"
Juan Quintela08a0aee2017-04-20 18:52:18 +020030#include "qemu-file.h"
Juan Quintela987772d2017-04-17 19:02:59 +020031#include "migration/vmstate.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010032#include "block/block.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010033#include "qapi/error.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010034#include "qapi/qmp/qerror.h"
Markus Armbruster15280c32018-02-01 12:18:36 +010035#include "qapi/qmp/qnull.h"
Paolo Bonziniab28bd22015-07-09 08:55:38 +020036#include "qemu/rcu.h"
Juan Quintela2c9e6fe2017-04-21 14:31:22 +020037#include "block.h"
Juan Quintelabe07b0a2017-04-20 13:12:24 +020038#include "postcopy-ram.h"
Juan Quintela766bd172012-07-23 05:45:29 +020039#include "qemu/thread.h"
Luiz Capitulino791e7c82011-09-13 17:37:16 -030040#include "qmp-commands.h"
Kazuya Saitoc09e5bb2013-02-22 17:36:19 +010041#include "trace.h"
Juan Quintela598cd2b2015-05-20 12:16:15 +020042#include "qapi-event.h"
Juan Quintela51180422017-04-24 20:50:19 +020043#include "exec/target_page.h"
Daniel P. Berrange61b67d42016-04-27 11:05:01 +010044#include "io/channel-buffer.h"
zhanghailiang35a6ed42016-10-27 14:42:52 +080045#include "migration/colo.h"
Peter Xu4ffdb332017-06-27 12:10:18 +080046#include "hw/boards.h"
Peter Xu9d18af92017-06-27 12:10:19 +080047#include "monitor/monitor.h"
aliguori065e2812008-11-11 16:46:33 +000048
Jason J. Hernedc325622015-09-08 13:12:37 -040049#define MAX_THROTTLE (32 << 20) /* Migration transfer speed throttling */
aliguori5bb79102008-10-13 03:12:02 +000050
Juan Quintela5b4e1eb2012-12-19 10:40:48 +010051/* Amount of time to allocate to each "chunk" of bandwidth-throttled
52 * data. */
53#define BUFFER_DELAY 100
54#define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)
55
Ashijeet Acharya2ff30252016-09-15 21:50:28 +053056/* Time in milliseconds we are allowed to stop the source,
57 * for sending the last part */
58#define DEFAULT_MIGRATE_SET_DOWNTIME 300
59
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -030060/* Maximum migrate downtime set to 2000 seconds */
61#define MAX_MIGRATE_DOWNTIME_SECONDS 2000
62#define MAX_MIGRATE_DOWNTIME (MAX_MIGRATE_DOWNTIME_SECONDS * 1000)
63
Liang Li8706d2d2015-03-23 16:32:17 +080064/* Default compression thread count */
65#define DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT 8
Liang Li3fcb38c2015-03-23 16:32:18 +080066/* Default decompression thread count, usually decompression is at
67 * least 4 times as fast as compression.*/
68#define DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT 2
Liang Li8706d2d2015-03-23 16:32:17 +080069/*0: means nocompress, 1: best speed, ... 9: best compress ratio */
70#define DEFAULT_MIGRATE_COMPRESS_LEVEL 1
Jason J. Herne1626fee2015-09-08 13:12:34 -040071/* Define default autoconverge cpu throttle migration parameters */
Jason J. Herned85a31d2016-04-21 14:07:18 -040072#define DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL 20
73#define DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT 10
Liang Li8706d2d2015-03-23 16:32:17 +080074
Orit Wasserman17ad9b32012-08-06 21:42:53 +030075/* Migration XBZRLE default cache size */
Juan Quintela73af8dd2017-10-05 21:30:10 +020076#define DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE (64 * 1024 * 1024)
Orit Wasserman17ad9b32012-08-06 21:42:53 +030077
zhanghailiang68b53592016-10-27 14:43:01 +080078/* The delay time (in ms) between two COLO checkpoints
79 * Note: Please change this default value to 10000 when we support hybrid mode.
80 */
81#define DEFAULT_MIGRATE_X_CHECKPOINT_DELAY 200
Juan Quintela4075fb12016-01-15 08:56:17 +010082#define DEFAULT_MIGRATE_MULTIFD_CHANNELS 2
Juan Quintela0fb86602017-04-27 10:48:25 +020083#define DEFAULT_MIGRATE_MULTIFD_PAGE_COUNT 16
zhanghailiang68b53592016-10-27 14:43:01 +080084
Gerd Hoffmann99a0db92010-12-13 17:30:12 +010085static NotifierList migration_state_notifiers =
86 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
87
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +000088static bool deferred_incoming;
89
Juan Quintelada6f1792017-04-24 17:37:14 +020090/* Messages sent on the return path from destination to source */
91enum mig_rp_message_type {
92 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
93 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
94 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
95
96 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
97 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
98
99 MIG_RP_MSG_MAX
100};
101
Juan Quintela17549e82011-10-05 13:50:43 +0200102/* When we add fault tolerance, we could have several
103 migrations at once. For now we don't need to add
104 dynamic creation of migration */
105
Peter Xue5cb7e72017-06-27 12:10:13 +0800106static MigrationState *current_migration;
107
Peter Xu8b0b29d2017-07-18 11:39:06 +0800108static bool migration_object_check(MigrationState *ms, Error **errp);
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +0100109static int migration_maybe_pause(MigrationState *s,
110 int *current_active_state,
111 int new_state);
Peter Xu8b0b29d2017-07-18 11:39:06 +0800112
Peter Xue5cb7e72017-06-27 12:10:13 +0800113void migration_object_init(void)
114{
Peter Xu4ffdb332017-06-27 12:10:18 +0800115 MachineState *ms = MACHINE(qdev_get_machine());
Peter Xu8b0b29d2017-07-18 11:39:06 +0800116 Error *err = NULL;
Peter Xu4ffdb332017-06-27 12:10:18 +0800117
Peter Xue5cb7e72017-06-27 12:10:13 +0800118 /* This can only be called once. */
119 assert(!current_migration);
120 current_migration = MIGRATION_OBJ(object_new(TYPE_MIGRATION));
Peter Xu4ffdb332017-06-27 12:10:18 +0800121
Peter Xu8b0b29d2017-07-18 11:39:06 +0800122 if (!migration_object_check(current_migration, &err)) {
123 error_report_err(err);
124 exit(1);
125 }
126
Peter Xu4ffdb332017-06-27 12:10:18 +0800127 /*
128 * We cannot really do this in migration_instance_init() since at
129 * that time global properties are not yet applied, then this
130 * value will be definitely replaced by something else.
131 */
132 if (ms->enforce_config_section) {
133 current_migration->send_configuration = true;
134 }
Peter Xue5cb7e72017-06-27 12:10:13 +0800135}
136
Vladimir Sementsov-Ogievskiy1f895602017-12-28 12:16:16 +0300137void migration_object_finalize(void)
138{
139 object_unref(OBJECT(current_migration));
140}
141
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100142/* For outgoing */
Juan Quintela859bc752012-08-13 09:42:49 +0200143MigrationState *migrate_get_current(void)
Juan Quintela17549e82011-10-05 13:50:43 +0200144{
Peter Xue5cb7e72017-06-27 12:10:13 +0800145 /* This can only be called after the object created. */
146 assert(current_migration);
147 return current_migration;
Juan Quintela17549e82011-10-05 13:50:43 +0200148}
149
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100150MigrationIncomingState *migration_incoming_get_current(void)
151{
Juan Quintelab4b076d2017-01-23 22:32:06 +0100152 static bool once;
153 static MigrationIncomingState mis_current;
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100154
Juan Quintelab4b076d2017-01-23 22:32:06 +0100155 if (!once) {
156 mis_current.state = MIGRATION_STATUS_NONE;
157 memset(&mis_current, 0, sizeof(MigrationIncomingState));
Juan Quintelab4b076d2017-01-23 22:32:06 +0100158 qemu_mutex_init(&mis_current.rp_mutex);
159 qemu_event_init(&mis_current.main_thread_load_event, false);
160 once = true;
161 }
162 return &mis_current;
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100163}
164
165void migration_incoming_state_destroy(void)
166{
Juan Quintelab4b076d2017-01-23 22:32:06 +0100167 struct MigrationIncomingState *mis = migration_incoming_get_current();
168
Peter Xu34826552017-05-19 14:43:29 +0800169 if (mis->to_src_file) {
Peter Xu660819b2017-05-19 14:43:30 +0800170 /* Tell source that we are done */
171 migrate_send_rp_shut(mis, qemu_file_get_error(mis->from_src_file) != 0);
Peter Xu34826552017-05-19 14:43:29 +0800172 qemu_fclose(mis->to_src_file);
173 mis->to_src_file = NULL;
174 }
175
Peter Xu660819b2017-05-19 14:43:30 +0800176 if (mis->from_src_file) {
177 qemu_fclose(mis->from_src_file);
178 mis->from_src_file = NULL;
179 }
180
Dr. David Alan Gilbert5089e182017-08-25 15:19:39 +0100181 qemu_event_reset(&mis->main_thread_load_event);
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100182}
183
Juan Quintelab05dc722015-07-07 14:44:05 +0200184static void migrate_generate_event(int new_state)
185{
186 if (migrate_use_events()) {
187 qapi_event_send_migration(new_state, &error_abort);
Juan Quintelab05dc722015-07-07 14:44:05 +0200188 }
189}
190
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000191/*
192 * Called on -incoming with a defer: uri.
193 * The migration can be started later after any parameters have been
194 * changed.
195 */
196static void deferred_incoming_migration(Error **errp)
197{
198 if (deferred_incoming) {
199 error_setg(errp, "Incoming migration already deferred");
200 }
201 deferred_incoming = true;
202}
203
Juan Quintelada6f1792017-04-24 17:37:14 +0200204/*
205 * Send a message on the return channel back to the source
206 * of the migration.
207 */
208static void migrate_send_rp_message(MigrationIncomingState *mis,
209 enum mig_rp_message_type message_type,
210 uint16_t len, void *data)
211{
212 trace_migrate_send_rp_message((int)message_type, len);
213 qemu_mutex_lock(&mis->rp_mutex);
214 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
215 qemu_put_be16(mis->to_src_file, len);
216 qemu_put_buffer(mis->to_src_file, data, len);
217 qemu_fflush(mis->to_src_file);
218 qemu_mutex_unlock(&mis->rp_mutex);
219}
220
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000221/* Request a range of pages from the source VM at the given
222 * start address.
223 * rbname: Name of the RAMBlock to request the page in, if NULL it's the same
224 * as the last request (a name must have been given previously)
225 * Start: Address offset within the RB
226 * Len: Length in bytes required - must be a multiple of pagesize
227 */
228void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char *rbname,
229 ram_addr_t start, size_t len)
230{
Stefan Weilcb8d4c82016-03-23 15:59:57 +0100231 uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000232 size_t msglen = 12; /* start + len */
233
234 *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
235 *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
236
237 if (rbname) {
238 int rbname_len = strlen(rbname);
239 assert(rbname_len < 256);
240
241 bufc[msglen++] = rbname_len;
242 memcpy(bufc + msglen, rbname, rbname_len);
243 msglen += rbname_len;
244 migrate_send_rp_message(mis, MIG_RP_MSG_REQ_PAGES_ID, msglen, bufc);
245 } else {
246 migrate_send_rp_message(mis, MIG_RP_MSG_REQ_PAGES, msglen, bufc);
247 }
248}
249
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200250void qemu_start_incoming_migration(const char *uri, Error **errp)
aliguori5bb79102008-10-13 03:12:02 +0000251{
aliguori34c9dd82008-10-13 03:14:31 +0000252 const char *p;
253
Juan Quintela7cf1fe62015-05-20 17:15:42 +0200254 qapi_event_send_migration(MIGRATION_STATUS_SETUP, &error_abort);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000255 if (!strcmp(uri, "defer")) {
256 deferred_incoming_migration(errp);
257 } else if (strstart(uri, "tcp:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200258 tcp_start_incoming_migration(p, errp);
Michael R. Hines2da776d2013-07-22 10:01:54 -0400259#ifdef CONFIG_RDMA
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000260 } else if (strstart(uri, "rdma:", &p)) {
Michael R. Hines2da776d2013-07-22 10:01:54 -0400261 rdma_start_incoming_migration(p, errp);
262#endif
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000263 } else if (strstart(uri, "exec:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200264 exec_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000265 } else if (strstart(uri, "unix:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200266 unix_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000267 } else if (strstart(uri, "fd:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200268 fd_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000269 } else {
Markus Armbruster312fd5f2013-02-08 21:22:16 +0100270 error_setg(errp, "unknown migration protocol: %s", uri);
Juan Quintela8ca5e802010-06-09 14:10:54 +0200271 }
aliguori5bb79102008-10-13 03:12:02 +0000272}
273
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300274static void process_incoming_migration_bh(void *opaque)
275{
276 Error *local_err = NULL;
277 MigrationIncomingState *mis = opaque;
278
Kevin Wolface21a52017-05-04 18:52:36 +0200279 /* Make sure all file formats flush their mutable metadata.
280 * If we get an error here, just don't restart the VM yet. */
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300281 bdrv_invalidate_cache_all(&local_err);
Kevin Wolfd35ff5e2017-04-04 17:29:03 +0200282 if (local_err) {
Kevin Wolface21a52017-05-04 18:52:36 +0200283 error_report_err(local_err);
Kevin Wolfd35ff5e2017-04-04 17:29:03 +0200284 local_err = NULL;
285 autostart = false;
286 }
287
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300288 /*
289 * This must happen after all error conditions are dealt with and
290 * we're sure the VM is going to be running on this host.
291 */
292 qemu_announce_self();
293
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100294 if (multifd_load_cleanup(&local_err) != 0) {
295 error_report_err(local_err);
296 autostart = false;
297 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300298 /* If global state section was not received or we are in running
299 state, we need to obey autostart. Any other state is set with
300 runstate_set. */
301
302 if (!global_state_received() ||
303 global_state_get_runstate() == RUN_STATE_RUNNING) {
304 if (autostart) {
305 vm_start();
306 } else {
307 runstate_set(RUN_STATE_PAUSED);
308 }
309 } else {
310 runstate_set(global_state_get_runstate());
311 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300312 /*
313 * This must happen after any state changes since as soon as an external
314 * observer sees this event they might start to prod at the VM assuming
315 * it's ready to use.
316 */
317 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
318 MIGRATION_STATUS_COMPLETED);
319 qemu_bh_delete(mis->bh);
320 migration_incoming_state_destroy();
321}
322
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200323static void process_incoming_migration_co(void *opaque)
Juan Quintela511c0232010-06-09 14:10:55 +0200324{
Juan Quintelab4b076d2017-01-23 22:32:06 +0100325 MigrationIncomingState *mis = migration_incoming_get_current();
Dr. David Alan Gilberte9bef232015-11-05 18:11:21 +0000326 PostcopyState ps;
Paolo Bonzini1c12e1f2012-08-07 10:51:51 +0200327 int ret;
328
Juan Quintela4f0fae72017-07-24 12:42:02 +0200329 assert(mis->from_src_file);
Dr. David Alan Gilbert67f11b52017-02-24 18:28:34 +0000330 mis->largest_page_size = qemu_ram_pagesize_largest();
Dr. David Alan Gilbert093e3c42015-11-05 18:10:52 +0000331 postcopy_state_set(POSTCOPY_INCOMING_NONE);
zhanghailiang93d7af62015-12-16 11:47:34 +0000332 migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
333 MIGRATION_STATUS_ACTIVE);
Juan Quintela4f0fae72017-07-24 12:42:02 +0200334 ret = qemu_loadvm_state(mis->from_src_file);
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100335
Dr. David Alan Gilberte9bef232015-11-05 18:11:21 +0000336 ps = postcopy_state_get();
337 trace_process_incoming_migration_co_end(ret, ps);
338 if (ps != POSTCOPY_INCOMING_NONE) {
339 if (ps == POSTCOPY_INCOMING_ADVISE) {
340 /*
341 * Where a migration had postcopy enabled (and thus went to advise)
342 * but managed to complete within the precopy period, we can use
343 * the normal exit.
344 */
345 postcopy_ram_incoming_cleanup(mis);
346 } else if (ret >= 0) {
347 /*
348 * Postcopy was started, cleanup should happen at the end of the
349 * postcopy thread.
350 */
351 trace_process_incoming_migration_co_postcopy_end_main();
352 return;
353 }
354 /* Else if something went wrong then just fall out of the normal exit */
355 }
356
zhanghailiang25d0c162016-10-27 14:42:55 +0800357 /* we get COLO info, and know if we are in COLO mode */
358 if (!ret && migration_incoming_enable_colo()) {
359 mis->migration_incoming_co = qemu_coroutine_self();
360 qemu_thread_create(&mis->colo_incoming_thread, "COLO incoming",
361 colo_process_incoming_thread, mis, QEMU_THREAD_JOINABLE);
362 mis->have_colo_incoming_thread = true;
363 qemu_coroutine_yield();
364
365 /* Wait checkpoint incoming thread exit before free resource */
366 qemu_thread_join(&mis->colo_incoming_thread);
367 }
368
Paolo Bonzini1c12e1f2012-08-07 10:51:51 +0200369 if (ret < 0) {
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100370 Error *local_err = NULL;
371
zhanghailiang93d7af62015-12-16 11:47:34 +0000372 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
373 MIGRATION_STATUS_FAILED);
Peter Lievendb80fac2014-06-10 11:29:16 +0200374 error_report("load of migration failed: %s", strerror(-ret));
Dr. David Alan Gilbert3a0f2ce2017-07-17 12:09:32 +0100375 qemu_fclose(mis->from_src_file);
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100376 if (multifd_load_cleanup(&local_err) != 0) {
377 error_report_err(local_err);
378 }
Eric Blake4aead692013-04-16 15:50:41 -0600379 exit(EXIT_FAILURE);
Juan Quintela511c0232010-06-09 14:10:55 +0200380 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300381 mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
382 qemu_bh_schedule(mis->bh);
Juan Quintela511c0232010-06-09 14:10:55 +0200383}
384
Juan Quintelae595a012017-07-17 12:30:25 +0200385static void migration_incoming_setup(QEMUFile *f)
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200386{
Juan Quintela4f0fae72017-07-24 12:42:02 +0200387 MigrationIncomingState *mis = migration_incoming_get_current();
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200388
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100389 if (multifd_load_setup() != 0) {
390 /* We haven't been able to create multifd threads
391 nothing better to do */
392 exit(EXIT_FAILURE);
393 }
394
Juan Quintela4f0fae72017-07-24 12:42:02 +0200395 if (!mis->from_src_file) {
396 mis->from_src_file = f;
397 }
Daniel P. Berrange06ad5132016-04-27 11:04:56 +0100398 qemu_file_set_blocking(f, false);
Juan Quintelae595a012017-07-17 12:30:25 +0200399}
400
401static void migration_incoming_process(void)
402{
403 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL);
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200404 qemu_coroutine_enter(co);
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200405}
406
Juan Quintelae595a012017-07-17 12:30:25 +0200407void migration_fd_process_incoming(QEMUFile *f)
408{
409 migration_incoming_setup(f);
410 migration_incoming_process();
411}
412
Juan Quintela4f0fae72017-07-24 12:42:02 +0200413void migration_ioc_process_incoming(QIOChannel *ioc)
414{
415 MigrationIncomingState *mis = migration_incoming_get_current();
416
417 if (!mis->from_src_file) {
418 QEMUFile *f = qemu_fopen_channel_input(ioc);
419 migration_fd_process_incoming(f);
420 }
421 /* We still only have a single channel. Nothing to do here yet */
422}
423
Juan Quintela428d8902017-07-24 13:06:25 +0200424/**
425 * @migration_has_all_channels: We have received all channels that we need
426 *
427 * Returns true when we have got connections to all the channels that
428 * we need for migration.
429 */
430bool migration_has_all_channels(void)
431{
432 return true;
433}
434
Dr. David Alan Gilbert6decec92015-11-05 18:10:47 +0000435/*
Dr. David Alan Gilbert6decec92015-11-05 18:10:47 +0000436 * Send a 'SHUT' message on the return channel with the given value
437 * to indicate that we've finished with the RP. Non-0 value indicates
438 * error.
439 */
440void migrate_send_rp_shut(MigrationIncomingState *mis,
441 uint32_t value)
442{
443 uint32_t buf;
444
445 buf = cpu_to_be32(value);
446 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
447}
448
449/*
450 * Send a 'PONG' message on the return channel with the given value
451 * (normally in response to a 'PING')
452 */
453void migrate_send_rp_pong(MigrationIncomingState *mis,
454 uint32_t value)
455{
456 uint32_t buf;
457
458 buf = cpu_to_be32(value);
459 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
460}
461
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300462MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
463{
464 MigrationCapabilityStatusList *head = NULL;
465 MigrationCapabilityStatusList *caps;
466 MigrationState *s = migrate_get_current();
467 int i;
468
Michael Tokarev387eede2013-10-05 13:18:28 +0400469 caps = NULL; /* silence compiler warning */
Eric Blake7fb1cf12015-11-18 01:52:57 -0700470 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
Dr. David Alan Gilberted1701c2017-05-15 15:05:29 +0100471#ifndef CONFIG_LIVE_BLOCK_MIGRATION
472 if (i == MIGRATION_CAPABILITY_BLOCK) {
473 continue;
474 }
475#endif
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300476 if (head == NULL) {
477 head = g_malloc0(sizeof(*caps));
478 caps = head;
479 } else {
480 caps->next = g_malloc0(sizeof(*caps));
481 caps = caps->next;
482 }
483 caps->value =
484 g_malloc(sizeof(*caps->value));
485 caps->value->capability = i;
486 caps->value->state = s->enabled_capabilities[i];
487 }
488
489 return head;
490}
491
Liang Li85de8322015-03-23 16:32:28 +0800492MigrationParameters *qmp_query_migrate_parameters(Error **errp)
493{
494 MigrationParameters *params;
495 MigrationState *s = migrate_get_current();
496
Markus Armbrustere87fae42017-07-18 12:57:38 +0200497 /* TODO use QAPI_CLONE() instead of duplicating it inline */
Liang Li85de8322015-03-23 16:32:28 +0800498 params = g_malloc0(sizeof(*params));
Eric Blakede63ab62016-09-08 22:14:15 -0500499 params->has_compress_level = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100500 params->compress_level = s->parameters.compress_level;
Eric Blakede63ab62016-09-08 22:14:15 -0500501 params->has_compress_threads = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100502 params->compress_threads = s->parameters.compress_threads;
Eric Blakede63ab62016-09-08 22:14:15 -0500503 params->has_decompress_threads = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100504 params->decompress_threads = s->parameters.decompress_threads;
Eric Blakede63ab62016-09-08 22:14:15 -0500505 params->has_cpu_throttle_initial = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100506 params->cpu_throttle_initial = s->parameters.cpu_throttle_initial;
Eric Blakede63ab62016-09-08 22:14:15 -0500507 params->has_cpu_throttle_increment = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100508 params->cpu_throttle_increment = s->parameters.cpu_throttle_increment;
Markus Armbruster8cc99dc2017-07-18 12:04:54 +0200509 params->has_tls_creds = true;
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100510 params->tls_creds = g_strdup(s->parameters.tls_creds);
Markus Armbruster8cc99dc2017-07-18 12:04:54 +0200511 params->has_tls_hostname = true;
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100512 params->tls_hostname = g_strdup(s->parameters.tls_hostname);
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530513 params->has_max_bandwidth = true;
514 params->max_bandwidth = s->parameters.max_bandwidth;
515 params->has_downtime_limit = true;
516 params->downtime_limit = s->parameters.downtime_limit;
zhanghailiangfe39a4d2016-11-02 15:42:09 +0800517 params->has_x_checkpoint_delay = true;
zhanghailiang68b53592016-10-27 14:43:01 +0800518 params->x_checkpoint_delay = s->parameters.x_checkpoint_delay;
Juan Quintela2833c592017-04-05 18:32:37 +0200519 params->has_block_incremental = true;
520 params->block_incremental = s->parameters.block_incremental;
Juan Quintela4075fb12016-01-15 08:56:17 +0100521 params->has_x_multifd_channels = true;
522 params->x_multifd_channels = s->parameters.x_multifd_channels;
Juan Quintela0fb86602017-04-27 10:48:25 +0200523 params->has_x_multifd_page_count = true;
524 params->x_multifd_page_count = s->parameters.x_multifd_page_count;
Juan Quintela73af8dd2017-10-05 21:30:10 +0200525 params->has_xbzrle_cache_size = true;
526 params->xbzrle_cache_size = s->parameters.xbzrle_cache_size;
Liang Li85de8322015-03-23 16:32:28 +0800527
528 return params;
529}
530
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000531/*
532 * Return true if we're already in the middle of a migration
533 * (i.e. any of the active or setup states)
534 */
535static bool migration_is_setup_or_active(int state)
536{
537 switch (state) {
538 case MIGRATION_STATUS_ACTIVE:
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000539 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000540 case MIGRATION_STATUS_SETUP:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +0100541 case MIGRATION_STATUS_PRE_SWITCHOVER:
542 case MIGRATION_STATUS_DEVICE:
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000543 return true;
544
545 default:
546 return false;
547
548 }
549}
550
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100551static void populate_ram_info(MigrationInfo *info, MigrationState *s)
552{
553 info->has_ram = true;
554 info->ram = g_malloc0(sizeof(*info->ram));
Juan Quintela93604472017-06-06 19:49:03 +0200555 info->ram->transferred = ram_counters.transferred;
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100556 info->ram->total = ram_bytes_total();
Juan Quintela93604472017-06-06 19:49:03 +0200557 info->ram->duplicate = ram_counters.duplicate;
Juan Quintelabedf53c2017-03-13 20:35:54 +0100558 /* legacy value. It is not used anymore */
559 info->ram->skipped = 0;
Juan Quintela93604472017-06-06 19:49:03 +0200560 info->ram->normal = ram_counters.normal;
561 info->ram->normal_bytes = ram_counters.normal *
Juan Quintela20afaed2017-03-21 09:09:14 +0100562 qemu_target_page_size();
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100563 info->ram->mbps = s->mbps;
Juan Quintela93604472017-06-06 19:49:03 +0200564 info->ram->dirty_sync_count = ram_counters.dirty_sync_count;
565 info->ram->postcopy_requests = ram_counters.postcopy_requests;
Chao Fan030ce1f2017-03-21 10:22:43 +0800566 info->ram->page_size = qemu_target_page_size();
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100567
Juan Quintela114f5ae2017-05-04 10:09:21 +0200568 if (migrate_use_xbzrle()) {
569 info->has_xbzrle_cache = true;
570 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
571 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
Juan Quintela93604472017-06-06 19:49:03 +0200572 info->xbzrle_cache->bytes = xbzrle_counters.bytes;
573 info->xbzrle_cache->pages = xbzrle_counters.pages;
574 info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss;
575 info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate;
576 info->xbzrle_cache->overflow = xbzrle_counters.overflow;
Juan Quintela114f5ae2017-05-04 10:09:21 +0200577 }
578
Juan Quintela338182c2017-05-03 13:16:38 +0200579 if (cpu_throttle_active()) {
580 info->has_cpu_throttle_percentage = true;
581 info->cpu_throttle_percentage = cpu_throttle_get_percentage();
582 }
583
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100584 if (s->state != MIGRATION_STATUS_COMPLETED) {
585 info->ram->remaining = ram_bytes_remaining();
Juan Quintela93604472017-06-06 19:49:03 +0200586 info->ram->dirty_pages_rate = ram_counters.dirty_pages_rate;
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100587 }
588}
589
Juan Quintela930ac042017-05-04 10:21:46 +0200590static void populate_disk_info(MigrationInfo *info)
591{
592 if (blk_mig_active()) {
593 info->has_disk = true;
594 info->disk = g_malloc0(sizeof(*info->disk));
595 info->disk->transferred = blk_mig_bytes_transferred();
596 info->disk->remaining = blk_mig_bytes_remaining();
597 info->disk->total = blk_mig_bytes_total();
598 }
599}
600
Peter Maydellee869812018-01-22 13:20:14 +0000601MigrationInfo *qmp_query_migrate(Error **errp)
aliguori5bb79102008-10-13 03:12:02 +0000602{
Peter Maydellee869812018-01-22 13:20:14 +0000603 MigrationInfo *info = g_malloc0(sizeof(*info));
Juan Quintela17549e82011-10-05 13:50:43 +0200604 MigrationState *s = migrate_get_current();
aliguori376253e2009-03-05 23:01:23 +0000605
Juan Quintela17549e82011-10-05 13:50:43 +0200606 switch (s->state) {
zhanghailiang31194732015-03-13 16:08:38 +0800607 case MIGRATION_STATUS_NONE:
Juan Quintela17549e82011-10-05 13:50:43 +0200608 /* no migration has happened ever */
609 break;
zhanghailiang31194732015-03-13 16:08:38 +0800610 case MIGRATION_STATUS_SETUP:
Michael R. Hines29ae8a42013-07-22 10:01:57 -0400611 info->has_status = true;
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400612 info->has_total_time = false;
Michael R. Hines29ae8a42013-07-22 10:01:57 -0400613 break;
zhanghailiang31194732015-03-13 16:08:38 +0800614 case MIGRATION_STATUS_ACTIVE:
615 case MIGRATION_STATUS_CANCELLING:
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000616 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +0100617 case MIGRATION_STATUS_PRE_SWITCHOVER:
618 case MIGRATION_STATUS_DEVICE:
Juan Quintelac8f9f4f2017-06-06 19:21:29 +0200619 /* TODO add some postcopy stats */
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000620 info->has_status = true;
621 info->has_total_time = true;
622 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
Peter Xu4af246a2018-01-03 20:20:08 +0800623 - s->start_time;
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000624 info->has_expected_downtime = true;
625 info->expected_downtime = s->expected_downtime;
626 info->has_setup_time = true;
627 info->setup_time = s->setup_time;
628
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100629 populate_ram_info(info, s);
Juan Quintela930ac042017-05-04 10:21:46 +0200630 populate_disk_info(info);
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000631 break;
zhanghailiang0b827d52016-10-27 14:42:54 +0800632 case MIGRATION_STATUS_COLO:
633 info->has_status = true;
634 /* TODO: display COLO specific information (checkpoint info etc.) */
635 break;
zhanghailiang31194732015-03-13 16:08:38 +0800636 case MIGRATION_STATUS_COMPLETED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300637 info->has_status = true;
Pawit Pornkitprasan00c14992013-07-19 11:23:45 +0900638 info->has_total_time = true;
Juan Quintela7aa939a2012-08-18 13:17:10 +0200639 info->total_time = s->total_time;
Juan Quintela9c5a9fc2012-08-13 09:35:16 +0200640 info->has_downtime = true;
641 info->downtime = s->downtime;
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400642 info->has_setup_time = true;
643 info->setup_time = s->setup_time;
Juan Quintelad5f8a572012-05-21 22:01:07 +0200644
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100645 populate_ram_info(info, s);
Juan Quintela17549e82011-10-05 13:50:43 +0200646 break;
zhanghailiang31194732015-03-13 16:08:38 +0800647 case MIGRATION_STATUS_FAILED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300648 info->has_status = true;
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +0100649 if (s->error) {
650 info->has_error_desc = true;
651 info->error_desc = g_strdup(error_get_pretty(s->error));
652 }
Juan Quintela17549e82011-10-05 13:50:43 +0200653 break;
zhanghailiang31194732015-03-13 16:08:38 +0800654 case MIGRATION_STATUS_CANCELLED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300655 info->has_status = true;
Juan Quintela17549e82011-10-05 13:50:43 +0200656 break;
aliguori5bb79102008-10-13 03:12:02 +0000657 }
zhanghailiangcde63fb2015-03-13 16:08:41 +0800658 info->status = s->state;
Peter Maydellee869812018-01-22 13:20:14 +0000659
660 return info;
aliguori5bb79102008-10-13 03:12:02 +0000661}
662
Peter Xu4a842142017-07-18 11:39:08 +0800663/**
664 * @migration_caps_check - check capability validity
665 *
666 * @cap_list: old capability list, array of bool
667 * @params: new capabilities to be applied soon
668 * @errp: set *errp if the check failed, with reason
669 *
670 * Returns true if check passed, otherwise false.
671 */
672static bool migrate_caps_check(bool *cap_list,
673 MigrationCapabilityStatusList *params,
674 Error **errp)
Orit Wasserman00458432012-08-06 21:42:48 +0300675{
Orit Wasserman00458432012-08-06 21:42:48 +0300676 MigrationCapabilityStatusList *cap;
Peter Xu4a842142017-07-18 11:39:08 +0800677 bool old_postcopy_cap;
Alexey Perevalovd7651f12017-09-19 19:47:56 +0300678 MigrationIncomingState *mis = migration_incoming_get_current();
Orit Wasserman00458432012-08-06 21:42:48 +0300679
Peter Xu4a842142017-07-18 11:39:08 +0800680 old_postcopy_cap = cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM];
Orit Wasserman00458432012-08-06 21:42:48 +0300681
682 for (cap = params; cap; cap = cap->next) {
Peter Xu4a842142017-07-18 11:39:08 +0800683 cap_list[cap->value->capability] = cap->value->state;
Orit Wasserman00458432012-08-06 21:42:48 +0300684 }
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000685
Peter Xu4a842142017-07-18 11:39:08 +0800686#ifndef CONFIG_LIVE_BLOCK_MIGRATION
687 if (cap_list[MIGRATION_CAPABILITY_BLOCK]) {
688 error_setg(errp, "QEMU compiled without old-style (blk/-b, inc/-i) "
689 "block migration");
690 error_append_hint(errp, "Use drive_mirror+NBD instead.\n");
691 return false;
692 }
693#endif
694
695 if (cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM]) {
696 if (cap_list[MIGRATION_CAPABILITY_COMPRESS]) {
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000697 /* The decompression threads asynchronously write into RAM
698 * rather than use the atomic copies needed to avoid
699 * userfaulting. It should be possible to fix the decompression
700 * threads for compatibility in future.
701 */
Peter Xu4a842142017-07-18 11:39:08 +0800702 error_setg(errp, "Postcopy is not currently compatible "
703 "with compression");
704 return false;
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000705 }
Peter Xu4a842142017-07-18 11:39:08 +0800706
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100707 /* This check is reasonably expensive, so only when it's being
708 * set the first time, also it's only the destination that needs
709 * special support.
710 */
711 if (!old_postcopy_cap && runstate_check(RUN_STATE_INMIGRATE) &&
Alexey Perevalovd7651f12017-09-19 19:47:56 +0300712 !postcopy_ram_supported_by_host(mis)) {
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100713 /* postcopy_ram_supported_by_host will have emitted a more
714 * detailed message
715 */
Peter Xu4a842142017-07-18 11:39:08 +0800716 error_setg(errp, "Postcopy is not supported");
717 return false;
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100718 }
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000719 }
Peter Xu4a842142017-07-18 11:39:08 +0800720
721 return true;
722}
723
724void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
725 Error **errp)
726{
727 MigrationState *s = migrate_get_current();
728 MigrationCapabilityStatusList *cap;
729
730 if (migration_is_setup_or_active(s->state)) {
731 error_setg(errp, QERR_MIGRATION_ACTIVE);
732 return;
733 }
734
735 if (!migrate_caps_check(s->enabled_capabilities, params, errp)) {
736 return;
737 }
738
739 for (cap = params; cap; cap = cap->next) {
740 s->enabled_capabilities[cap->value->capability] = cap->value->state;
741 }
Orit Wasserman00458432012-08-06 21:42:48 +0300742}
743
Peter Xu16d063b2017-07-18 11:39:04 +0800744/*
745 * Check whether the parameters are valid. Error will be put into errp
746 * (if provided). Return true if valid, otherwise false.
747 */
748static bool migrate_params_check(MigrationParameters *params, Error **errp)
Liang Li85de8322015-03-23 16:32:28 +0800749{
Eric Blake7f375e02016-09-08 22:14:16 -0500750 if (params->has_compress_level &&
Juan Quintela741d4082017-12-01 13:08:38 +0100751 (params->compress_level > 9)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100752 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
753 "is invalid, it should be in the range of 0 to 9");
Peter Xu16d063b2017-07-18 11:39:04 +0800754 return false;
Liang Li85de8322015-03-23 16:32:28 +0800755 }
Peter Xu16d063b2017-07-18 11:39:04 +0800756
Juan Quintela741d4082017-12-01 13:08:38 +0100757 if (params->has_compress_threads && (params->compress_threads < 1)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100758 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
759 "compress_threads",
760 "is invalid, it should be in the range of 1 to 255");
Peter Xu16d063b2017-07-18 11:39:04 +0800761 return false;
Liang Li85de8322015-03-23 16:32:28 +0800762 }
Peter Xu16d063b2017-07-18 11:39:04 +0800763
Juan Quintela741d4082017-12-01 13:08:38 +0100764 if (params->has_decompress_threads && (params->decompress_threads < 1)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100765 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
766 "decompress_threads",
767 "is invalid, it should be in the range of 1 to 255");
Peter Xu16d063b2017-07-18 11:39:04 +0800768 return false;
Liang Li85de8322015-03-23 16:32:28 +0800769 }
Peter Xu16d063b2017-07-18 11:39:04 +0800770
Eric Blake7f375e02016-09-08 22:14:16 -0500771 if (params->has_cpu_throttle_initial &&
772 (params->cpu_throttle_initial < 1 ||
773 params->cpu_throttle_initial > 99)) {
Jason J. Herne1626fee2015-09-08 13:12:34 -0400774 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
Jason J. Herned85a31d2016-04-21 14:07:18 -0400775 "cpu_throttle_initial",
Jason J. Herne1626fee2015-09-08 13:12:34 -0400776 "an integer in the range of 1 to 99");
Peter Xu16d063b2017-07-18 11:39:04 +0800777 return false;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400778 }
Peter Xu16d063b2017-07-18 11:39:04 +0800779
Eric Blake7f375e02016-09-08 22:14:16 -0500780 if (params->has_cpu_throttle_increment &&
781 (params->cpu_throttle_increment < 1 ||
782 params->cpu_throttle_increment > 99)) {
Jason J. Herne1626fee2015-09-08 13:12:34 -0400783 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
Jason J. Herned85a31d2016-04-21 14:07:18 -0400784 "cpu_throttle_increment",
Jason J. Herne1626fee2015-09-08 13:12:34 -0400785 "an integer in the range of 1 to 99");
Peter Xu16d063b2017-07-18 11:39:04 +0800786 return false;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400787 }
Peter Xu16d063b2017-07-18 11:39:04 +0800788
Juan Quintela741d4082017-12-01 13:08:38 +0100789 if (params->has_max_bandwidth && (params->max_bandwidth > SIZE_MAX)) {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530790 error_setg(errp, "Parameter 'max_bandwidth' expects an integer in the"
791 " range of 0 to %zu bytes/second", SIZE_MAX);
Peter Xu16d063b2017-07-18 11:39:04 +0800792 return false;
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530793 }
Peter Xu16d063b2017-07-18 11:39:04 +0800794
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530795 if (params->has_downtime_limit &&
Juan Quintela741d4082017-12-01 13:08:38 +0100796 (params->downtime_limit > MAX_MIGRATE_DOWNTIME)) {
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -0300797 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
798 "the range of 0 to %d milliseconds",
799 MAX_MIGRATE_DOWNTIME);
Peter Xu16d063b2017-07-18 11:39:04 +0800800 return false;
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530801 }
Peter Xu16d063b2017-07-18 11:39:04 +0800802
Juan Quintela741d4082017-12-01 13:08:38 +0100803 /* x_checkpoint_delay is now always positive */
804
805 if (params->has_x_multifd_channels && (params->x_multifd_channels < 1)) {
Juan Quintela4075fb12016-01-15 08:56:17 +0100806 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
807 "multifd_channels",
808 "is invalid, it should be in the range of 1 to 255");
809 return false;
810 }
Juan Quintela0fb86602017-04-27 10:48:25 +0200811 if (params->has_x_multifd_page_count &&
Juan Quintela741d4082017-12-01 13:08:38 +0100812 (params->x_multifd_page_count < 1 ||
813 params->x_multifd_page_count > 10000)) {
Juan Quintela0fb86602017-04-27 10:48:25 +0200814 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
815 "multifd_page_count",
816 "is invalid, it should be in the range of 1 to 10000");
817 return false;
818 }
Peter Xu16d063b2017-07-18 11:39:04 +0800819
Juan Quintela73af8dd2017-10-05 21:30:10 +0200820 if (params->has_xbzrle_cache_size &&
821 (params->xbzrle_cache_size < qemu_target_page_size() ||
822 !is_power_of_2(params->xbzrle_cache_size))) {
823 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
824 "xbzrle_cache_size",
825 "is invalid, it should be bigger than target page size"
826 " and a power of two");
827 return false;
828 }
829
Peter Xu16d063b2017-07-18 11:39:04 +0800830 return true;
831}
832
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200833static void migrate_params_test_apply(MigrateSetParameters *params,
834 MigrationParameters *dest)
835{
836 *dest = migrate_get_current()->parameters;
837
838 /* TODO use QAPI_CLONE() instead of duplicating it inline */
839
840 if (params->has_compress_level) {
841 dest->compress_level = params->compress_level;
842 }
843
844 if (params->has_compress_threads) {
845 dest->compress_threads = params->compress_threads;
846 }
847
848 if (params->has_decompress_threads) {
849 dest->decompress_threads = params->decompress_threads;
850 }
851
852 if (params->has_cpu_throttle_initial) {
853 dest->cpu_throttle_initial = params->cpu_throttle_initial;
854 }
855
856 if (params->has_cpu_throttle_increment) {
857 dest->cpu_throttle_increment = params->cpu_throttle_increment;
858 }
859
860 if (params->has_tls_creds) {
Markus Armbruster01fa5592017-07-18 14:42:04 +0200861 assert(params->tls_creds->type == QTYPE_QSTRING);
862 dest->tls_creds = g_strdup(params->tls_creds->u.s);
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200863 }
864
865 if (params->has_tls_hostname) {
Markus Armbruster01fa5592017-07-18 14:42:04 +0200866 assert(params->tls_hostname->type == QTYPE_QSTRING);
867 dest->tls_hostname = g_strdup(params->tls_hostname->u.s);
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200868 }
869
870 if (params->has_max_bandwidth) {
871 dest->max_bandwidth = params->max_bandwidth;
872 }
873
874 if (params->has_downtime_limit) {
875 dest->downtime_limit = params->downtime_limit;
876 }
877
878 if (params->has_x_checkpoint_delay) {
879 dest->x_checkpoint_delay = params->x_checkpoint_delay;
880 }
881
882 if (params->has_block_incremental) {
883 dest->block_incremental = params->block_incremental;
884 }
Juan Quintela5e7577a2017-10-09 18:07:56 +0200885 if (params->has_x_multifd_channels) {
886 dest->x_multifd_channels = params->x_multifd_channels;
887 }
888 if (params->has_x_multifd_page_count) {
889 dest->x_multifd_page_count = params->x_multifd_page_count;
890 }
Juan Quintela73af8dd2017-10-05 21:30:10 +0200891 if (params->has_xbzrle_cache_size) {
892 dest->xbzrle_cache_size = params->xbzrle_cache_size;
893 }
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200894}
895
Juan Quintela73af8dd2017-10-05 21:30:10 +0200896static void migrate_params_apply(MigrateSetParameters *params, Error **errp)
Peter Xu16d063b2017-07-18 11:39:04 +0800897{
898 MigrationState *s = migrate_get_current();
899
Markus Armbrustere87fae42017-07-18 12:57:38 +0200900 /* TODO use QAPI_CLONE() instead of duplicating it inline */
901
Eric Blake7f375e02016-09-08 22:14:16 -0500902 if (params->has_compress_level) {
903 s->parameters.compress_level = params->compress_level;
Liang Li85de8322015-03-23 16:32:28 +0800904 }
Peter Xu476c72a2017-07-18 11:39:05 +0800905
Eric Blake7f375e02016-09-08 22:14:16 -0500906 if (params->has_compress_threads) {
907 s->parameters.compress_threads = params->compress_threads;
Liang Li85de8322015-03-23 16:32:28 +0800908 }
Peter Xu476c72a2017-07-18 11:39:05 +0800909
Eric Blake7f375e02016-09-08 22:14:16 -0500910 if (params->has_decompress_threads) {
911 s->parameters.decompress_threads = params->decompress_threads;
Liang Li85de8322015-03-23 16:32:28 +0800912 }
Peter Xu476c72a2017-07-18 11:39:05 +0800913
Eric Blake7f375e02016-09-08 22:14:16 -0500914 if (params->has_cpu_throttle_initial) {
915 s->parameters.cpu_throttle_initial = params->cpu_throttle_initial;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400916 }
Peter Xu476c72a2017-07-18 11:39:05 +0800917
Eric Blake7f375e02016-09-08 22:14:16 -0500918 if (params->has_cpu_throttle_increment) {
919 s->parameters.cpu_throttle_increment = params->cpu_throttle_increment;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400920 }
Peter Xu476c72a2017-07-18 11:39:05 +0800921
Eric Blake7f375e02016-09-08 22:14:16 -0500922 if (params->has_tls_creds) {
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100923 g_free(s->parameters.tls_creds);
Markus Armbruster01fa5592017-07-18 14:42:04 +0200924 assert(params->tls_creds->type == QTYPE_QSTRING);
925 s->parameters.tls_creds = g_strdup(params->tls_creds->u.s);
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100926 }
Peter Xu476c72a2017-07-18 11:39:05 +0800927
Eric Blake7f375e02016-09-08 22:14:16 -0500928 if (params->has_tls_hostname) {
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100929 g_free(s->parameters.tls_hostname);
Markus Armbruster01fa5592017-07-18 14:42:04 +0200930 assert(params->tls_hostname->type == QTYPE_QSTRING);
931 s->parameters.tls_hostname = g_strdup(params->tls_hostname->u.s);
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100932 }
Peter Xu476c72a2017-07-18 11:39:05 +0800933
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530934 if (params->has_max_bandwidth) {
935 s->parameters.max_bandwidth = params->max_bandwidth;
936 if (s->to_dst_file) {
937 qemu_file_set_rate_limit(s->to_dst_file,
938 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
939 }
940 }
Peter Xu476c72a2017-07-18 11:39:05 +0800941
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530942 if (params->has_downtime_limit) {
943 s->parameters.downtime_limit = params->downtime_limit;
944 }
zhanghailiang68b53592016-10-27 14:43:01 +0800945
946 if (params->has_x_checkpoint_delay) {
947 s->parameters.x_checkpoint_delay = params->x_checkpoint_delay;
zhanghailiang479125d2017-01-17 20:57:42 +0800948 if (migration_in_colo_state()) {
949 colo_checkpoint_notify(s);
950 }
zhanghailiang68b53592016-10-27 14:43:01 +0800951 }
Peter Xu476c72a2017-07-18 11:39:05 +0800952
Juan Quintela2833c592017-04-05 18:32:37 +0200953 if (params->has_block_incremental) {
954 s->parameters.block_incremental = params->block_incremental;
955 }
Juan Quintela4075fb12016-01-15 08:56:17 +0100956 if (params->has_x_multifd_channels) {
957 s->parameters.x_multifd_channels = params->x_multifd_channels;
958 }
Juan Quintela0fb86602017-04-27 10:48:25 +0200959 if (params->has_x_multifd_page_count) {
960 s->parameters.x_multifd_page_count = params->x_multifd_page_count;
961 }
Juan Quintela73af8dd2017-10-05 21:30:10 +0200962 if (params->has_xbzrle_cache_size) {
963 s->parameters.xbzrle_cache_size = params->xbzrle_cache_size;
964 xbzrle_cache_resize(params->xbzrle_cache_size, errp);
965 }
Liang Li85de8322015-03-23 16:32:28 +0800966}
967
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200968void qmp_migrate_set_parameters(MigrateSetParameters *params, Error **errp)
Peter Xu476c72a2017-07-18 11:39:05 +0800969{
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200970 MigrationParameters tmp;
971
Markus Armbruster01fa5592017-07-18 14:42:04 +0200972 /* TODO Rewrite "" to null instead */
973 if (params->has_tls_creds
974 && params->tls_creds->type == QTYPE_QNULL) {
975 QDECREF(params->tls_creds->u.n);
976 params->tls_creds->type = QTYPE_QSTRING;
977 params->tls_creds->u.s = strdup("");
978 }
979 /* TODO Rewrite "" to null instead */
980 if (params->has_tls_hostname
981 && params->tls_hostname->type == QTYPE_QNULL) {
982 QDECREF(params->tls_hostname->u.n);
983 params->tls_hostname->type = QTYPE_QSTRING;
984 params->tls_hostname->u.s = strdup("");
985 }
986
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200987 migrate_params_test_apply(params, &tmp);
988
989 if (!migrate_params_check(&tmp, errp)) {
Peter Xu476c72a2017-07-18 11:39:05 +0800990 /* Invalid parameter */
991 return;
992 }
993
Juan Quintela73af8dd2017-10-05 21:30:10 +0200994 migrate_params_apply(params, errp);
Peter Xu476c72a2017-07-18 11:39:05 +0800995}
996
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100997
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +0000998void qmp_migrate_start_postcopy(Error **errp)
999{
1000 MigrationState *s = migrate_get_current();
1001
1002 if (!migrate_postcopy_ram()) {
Dr. David Alan Gilberta54d3402015-11-12 11:34:44 +00001003 error_setg(errp, "Enable postcopy with migrate_set_capability before"
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001004 " the start of migration");
1005 return;
1006 }
1007
1008 if (s->state == MIGRATION_STATUS_NONE) {
1009 error_setg(errp, "Postcopy must be started after migration has been"
1010 " started");
1011 return;
1012 }
1013 /*
1014 * we don't error if migration has finished since that would be racy
1015 * with issuing this command.
1016 */
1017 atomic_set(&s->start_postcopy, true);
1018}
1019
aliguori065e2812008-11-11 16:46:33 +00001020/* shared migration helpers */
1021
zhanghailiang48781e52015-12-16 11:47:33 +00001022void migrate_set_state(int *state, int old_state, int new_state)
Zhanghaoyu (A)51cf4c12013-11-07 11:01:15 +00001023{
Peter Xua31fede2017-08-30 16:32:01 +08001024 assert(new_state < MIGRATION_STATUS__MAX);
zhanghailiang48781e52015-12-16 11:47:33 +00001025 if (atomic_cmpxchg(state, old_state, new_state) == old_state) {
Peter Xua31fede2017-08-30 16:32:01 +08001026 trace_migrate_set_state(MigrationStatus_str(new_state));
Juan Quintelab05dc722015-07-07 14:44:05 +02001027 migrate_generate_event(new_state);
Zhanghaoyu (A)51cf4c12013-11-07 11:01:15 +00001028 }
1029}
1030
Peter Xu4e4a3d32017-07-18 11:39:09 +08001031static MigrationCapabilityStatusList *migrate_cap_add(
1032 MigrationCapabilityStatusList *list,
1033 MigrationCapability index,
1034 bool state)
Juan Quintela2833c592017-04-05 18:32:37 +02001035{
1036 MigrationCapabilityStatusList *cap;
1037
1038 cap = g_new0(MigrationCapabilityStatusList, 1);
1039 cap->value = g_new0(MigrationCapabilityStatus, 1);
Peter Xu4e4a3d32017-07-18 11:39:09 +08001040 cap->value->capability = index;
1041 cap->value->state = state;
1042 cap->next = list;
1043
1044 return cap;
1045}
1046
1047void migrate_set_block_enabled(bool value, Error **errp)
1048{
1049 MigrationCapabilityStatusList *cap;
1050
1051 cap = migrate_cap_add(NULL, MIGRATION_CAPABILITY_BLOCK, value);
Juan Quintela2833c592017-04-05 18:32:37 +02001052 qmp_migrate_set_capabilities(cap, errp);
1053 qapi_free_MigrationCapabilityStatusList(cap);
1054}
1055
1056static void migrate_set_block_incremental(MigrationState *s, bool value)
1057{
1058 s->parameters.block_incremental = value;
1059}
1060
1061static void block_cleanup_parameters(MigrationState *s)
1062{
1063 if (s->must_remove_block_options) {
1064 /* setting to false can never fail */
1065 migrate_set_block_enabled(false, &error_abort);
1066 migrate_set_block_incremental(s, false);
1067 s->must_remove_block_options = false;
1068 }
1069}
1070
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01001071static void migrate_fd_cleanup(void *opaque)
aliguori065e2812008-11-11 16:46:33 +00001072{
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01001073 MigrationState *s = opaque;
1074
1075 qemu_bh_delete(s->cleanup_bh);
1076 s->cleanup_bh = NULL;
1077
Peter Xu0ceccd82018-01-03 20:20:06 +08001078 qemu_savevm_state_cleanup();
1079
zhanghailiang89a02a92016-01-15 11:37:42 +08001080 if (s->to_dst_file) {
Juan Quintelaf986c3d2016-01-14 16:52:55 +01001081 Error *local_err = NULL;
1082
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +11001083 trace_migrate_fd_cleanup();
Paolo Bonzini404a7c02013-02-22 17:36:46 +01001084 qemu_mutex_unlock_iothread();
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001085 if (s->migration_thread_running) {
1086 qemu_thread_join(&s->thread);
1087 s->migration_thread_running = false;
1088 }
Paolo Bonzini404a7c02013-02-22 17:36:46 +01001089 qemu_mutex_lock_iothread();
1090
Juan Quintelaf986c3d2016-01-14 16:52:55 +01001091 if (multifd_save_cleanup(&local_err) != 0) {
1092 error_report_err(local_err);
1093 }
zhanghailiang89a02a92016-01-15 11:37:42 +08001094 qemu_fclose(s->to_dst_file);
1095 s->to_dst_file = NULL;
aliguori065e2812008-11-11 16:46:33 +00001096 }
1097
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001098 assert((s->state != MIGRATION_STATUS_ACTIVE) &&
1099 (s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE));
Paolo Bonzini7a2c1722013-02-22 17:36:09 +01001100
Liang Li94f5a432015-11-02 15:37:00 +08001101 if (s->state == MIGRATION_STATUS_CANCELLING) {
zhanghailiang48781e52015-12-16 11:47:33 +00001102 migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
Liang Li94f5a432015-11-02 15:37:00 +08001103 MIGRATION_STATUS_CANCELLED);
Paolo Bonzini7a2c1722013-02-22 17:36:09 +01001104 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01001105
Juan Quintela87db1a72017-09-05 12:50:22 +02001106 if (s->error) {
1107 /* It is used on info migrate. We can't free it */
1108 error_report_err(error_copy(s->error));
1109 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01001110 notifier_list_notify(&migration_state_notifiers, s);
Juan Quintela2833c592017-04-05 18:32:37 +02001111 block_cleanup_parameters(s);
aliguori065e2812008-11-11 16:46:33 +00001112}
1113
Juan Quintela87db1a72017-09-05 12:50:22 +02001114void migrate_set_error(MigrationState *s, const Error *error)
1115{
1116 qemu_mutex_lock(&s->error_mutex);
1117 if (!s->error) {
1118 s->error = error_copy(error);
1119 }
1120 qemu_mutex_unlock(&s->error_mutex);
1121}
1122
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001123void migrate_fd_error(MigrationState *s, const Error *error)
aliguori065e2812008-11-11 16:46:33 +00001124{
Peter Maydell25174052016-10-21 18:41:45 +01001125 trace_migrate_fd_error(error_get_pretty(error));
zhanghailiang89a02a92016-01-15 11:37:42 +08001126 assert(s->to_dst_file == NULL);
zhanghailiang48781e52015-12-16 11:47:33 +00001127 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1128 MIGRATION_STATUS_FAILED);
Juan Quintela87db1a72017-09-05 12:50:22 +02001129 migrate_set_error(s, error);
Juan Quintela458cf282011-02-22 23:32:54 +01001130}
1131
Juan Quintela0edda1c2010-05-11 16:28:39 +02001132static void migrate_fd_cancel(MigrationState *s)
aliguori065e2812008-11-11 16:46:33 +00001133{
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001134 int old_state ;
zhanghailiang89a02a92016-01-15 11:37:42 +08001135 QEMUFile *f = migrate_get_current()->to_dst_file;
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +11001136 trace_migrate_fd_cancel();
aliguori065e2812008-11-11 16:46:33 +00001137
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001138 if (s->rp_state.from_dst_file) {
1139 /* shutdown the rp socket, so causing the rp thread to shutdown */
1140 qemu_file_shutdown(s->rp_state.from_dst_file);
1141 }
1142
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001143 do {
1144 old_state = s->state;
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +00001145 if (!migration_is_setup_or_active(old_state)) {
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001146 break;
1147 }
Dr. David Alan Gilberta7b36b42017-10-20 10:05:55 +01001148 /* If the migration is paused, kick it out of the pause */
1149 if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) {
1150 qemu_sem_post(&s->pause_sem);
1151 }
zhanghailiang48781e52015-12-16 11:47:33 +00001152 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
zhanghailiang31194732015-03-13 16:08:38 +08001153 } while (s->state != MIGRATION_STATUS_CANCELLING);
Dr. David Alan Gilberta26ba262015-01-08 11:11:32 +00001154
1155 /*
1156 * If we're unlucky the migration code might be stuck somewhere in a
1157 * send/write while the network has failed and is waiting to timeout;
1158 * if we've got shutdown(2) available then we can force it to quit.
1159 * The outgoing qemu file gets closed in migrate_fd_cleanup that is
1160 * called in a bh, so there is no race against this cancel.
1161 */
zhanghailiang31194732015-03-13 16:08:38 +08001162 if (s->state == MIGRATION_STATUS_CANCELLING && f) {
Dr. David Alan Gilberta26ba262015-01-08 11:11:32 +00001163 qemu_file_shutdown(f);
1164 }
zhanghailiang1d2acc32017-01-24 15:59:52 +08001165 if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
1166 Error *local_err = NULL;
1167
1168 bdrv_invalidate_cache_all(&local_err);
1169 if (local_err) {
1170 error_report_err(local_err);
1171 } else {
1172 s->block_inactive = false;
1173 }
1174 }
aliguori065e2812008-11-11 16:46:33 +00001175}
1176
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001177void add_migration_state_change_notifier(Notifier *notify)
1178{
1179 notifier_list_add(&migration_state_notifiers, notify);
1180}
1181
1182void remove_migration_state_change_notifier(Notifier *notify)
1183{
Paolo Bonzini31552522012-01-13 17:34:01 +01001184 notifier_remove(notify);
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001185}
1186
Stefan Hajnoczi02edd2e2013-07-29 15:01:58 +02001187bool migration_in_setup(MigrationState *s)
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001188{
zhanghailiang31194732015-03-13 16:08:38 +08001189 return s->state == MIGRATION_STATUS_SETUP;
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001190}
1191
Juan Quintela70736932011-02-23 00:43:59 +01001192bool migration_has_finished(MigrationState *s)
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001193{
zhanghailiang31194732015-03-13 16:08:38 +08001194 return s->state == MIGRATION_STATUS_COMPLETED;
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001195}
Juan Quintela0edda1c2010-05-11 16:28:39 +02001196
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001197bool migration_has_failed(MigrationState *s)
1198{
zhanghailiang31194732015-03-13 16:08:38 +08001199 return (s->state == MIGRATION_STATUS_CANCELLED ||
1200 s->state == MIGRATION_STATUS_FAILED);
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001201}
1202
Juan Quintela57273092017-03-20 22:25:28 +01001203bool migration_in_postcopy(void)
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001204{
Juan Quintela57273092017-03-20 22:25:28 +01001205 MigrationState *s = migrate_get_current();
1206
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001207 return (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
1208}
1209
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001210bool migration_in_postcopy_after_devices(MigrationState *s)
1211{
Juan Quintela57273092017-03-20 22:25:28 +01001212 return migration_in_postcopy() && s->postcopy_after_devices;
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001213}
1214
Juan Quintelafab35002017-03-22 17:36:57 +01001215bool migration_is_idle(void)
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301216{
Juan Quintelafab35002017-03-22 17:36:57 +01001217 MigrationState *s = migrate_get_current();
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301218
1219 switch (s->state) {
1220 case MIGRATION_STATUS_NONE:
1221 case MIGRATION_STATUS_CANCELLED:
1222 case MIGRATION_STATUS_COMPLETED:
1223 case MIGRATION_STATUS_FAILED:
1224 return true;
1225 case MIGRATION_STATUS_SETUP:
1226 case MIGRATION_STATUS_CANCELLING:
1227 case MIGRATION_STATUS_ACTIVE:
1228 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1229 case MIGRATION_STATUS_COLO:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +01001230 case MIGRATION_STATUS_PRE_SWITCHOVER:
1231 case MIGRATION_STATUS_DEVICE:
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301232 return false;
1233 case MIGRATION_STATUS__MAX:
1234 g_assert_not_reached();
1235 }
1236
1237 return false;
1238}
1239
Juan Quintelaa0762d92017-04-05 21:00:09 +02001240MigrationState *migrate_init(void)
Juan Quintela0edda1c2010-05-11 16:28:39 +02001241{
Juan Quintela17549e82011-10-05 13:50:43 +02001242 MigrationState *s = migrate_get_current();
Orit Wassermanbbf6da32012-08-06 21:42:47 +03001243
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001244 /*
1245 * Reinitialise all migration state, except
1246 * parameters/capabilities that the user set, and
1247 * locks.
1248 */
1249 s->bytes_xfer = 0;
1250 s->xfer_limit = 0;
1251 s->cleanup_bh = 0;
zhanghailiang89a02a92016-01-15 11:37:42 +08001252 s->to_dst_file = NULL;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001253 s->state = MIGRATION_STATUS_NONE;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001254 s->rp_state.from_dst_file = NULL;
1255 s->rp_state.error = false;
1256 s->mbps = 0.0;
1257 s->downtime = 0;
1258 s->expected_downtime = 0;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001259 s->setup_time = 0;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001260 s->start_postcopy = false;
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001261 s->postcopy_after_devices = false;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001262 s->migration_thread_running = false;
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001263 error_free(s->error);
1264 s->error = NULL;
Juan Quintela1299c632011-11-09 21:29:01 +01001265
zhanghailiang48781e52015-12-16 11:47:33 +00001266 migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
Juan Quintela0edda1c2010-05-11 16:28:39 +02001267
Peter Xu4af246a2018-01-03 20:20:08 +08001268 s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1269 s->total_time = 0;
Peter Xu7287cbd2018-01-03 20:20:09 +08001270 s->vm_was_running = false;
Peter Xub15df1a2018-01-03 20:20:13 +08001271 s->iteration_initial_bytes = 0;
1272 s->threshold_size = 0;
Juan Quintela0edda1c2010-05-11 16:28:39 +02001273 return s;
1274}
Juan Quintelacab30142011-02-22 23:54:21 +01001275
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001276static GSList *migration_blockers;
1277
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301278int migrate_add_blocker(Error *reason, Error **errp)
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001279{
Peter Xu3df663e2017-06-27 12:10:15 +08001280 if (migrate_get_current()->only_migratable) {
Ashijeet Acharyab67b8c32017-01-16 17:01:54 +05301281 error_propagate(errp, error_copy(reason));
1282 error_prepend(errp, "disallowing migration blocker "
1283 "(--only_migratable) for: ");
1284 return -EACCES;
1285 }
1286
Juan Quintelafab35002017-03-22 17:36:57 +01001287 if (migration_is_idle()) {
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301288 migration_blockers = g_slist_prepend(migration_blockers, reason);
1289 return 0;
1290 }
1291
1292 error_propagate(errp, error_copy(reason));
1293 error_prepend(errp, "disallowing migration blocker (migration in "
1294 "progress) for: ");
1295 return -EBUSY;
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001296}
1297
1298void migrate_del_blocker(Error *reason)
1299{
1300 migration_blockers = g_slist_remove(migration_blockers, reason);
1301}
1302
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001303void qmp_migrate_incoming(const char *uri, Error **errp)
1304{
1305 Error *local_err = NULL;
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001306 static bool once = true;
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001307
1308 if (!deferred_incoming) {
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001309 error_setg(errp, "For use with '-incoming defer'");
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001310 return;
1311 }
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001312 if (!once) {
1313 error_setg(errp, "The incoming migration has already been started");
1314 }
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001315
1316 qemu_start_incoming_migration(uri, &local_err);
1317
1318 if (local_err) {
1319 error_propagate(errp, local_err);
1320 return;
1321 }
1322
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001323 once = false;
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001324}
1325
Greg Kurz24f39022016-05-04 21:44:19 +02001326bool migration_is_blocked(Error **errp)
1327{
1328 if (qemu_savevm_state_blocked(errp)) {
1329 return true;
1330 }
1331
1332 if (migration_blockers) {
Eduardo Habkost250561e2017-06-08 10:39:05 -03001333 error_propagate(errp, error_copy(migration_blockers->data));
Greg Kurz24f39022016-05-04 21:44:19 +02001334 return true;
1335 }
1336
1337 return false;
1338}
1339
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001340void qmp_migrate(const char *uri, bool has_blk, bool blk,
1341 bool has_inc, bool inc, bool has_detach, bool detach,
1342 Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001343{
Paolo Bonzinibe7059c2012-10-03 14:34:33 +02001344 Error *local_err = NULL;
Juan Quintela17549e82011-10-05 13:50:43 +02001345 MigrationState *s = migrate_get_current();
Juan Quintelacab30142011-02-22 23:54:21 +01001346 const char *p;
Juan Quintelacab30142011-02-22 23:54:21 +01001347
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +00001348 if (migration_is_setup_or_active(s->state) ||
zhanghailiang0b827d52016-10-27 14:42:54 +08001349 s->state == MIGRATION_STATUS_CANCELLING ||
1350 s->state == MIGRATION_STATUS_COLO) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001351 error_setg(errp, QERR_MIGRATION_ACTIVE);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001352 return;
Juan Quintelacab30142011-02-22 23:54:21 +01001353 }
Dr. David Alan Gilbertca999932014-04-14 17:03:59 +01001354 if (runstate_check(RUN_STATE_INMIGRATE)) {
1355 error_setg(errp, "Guest is waiting for an incoming migration");
1356 return;
1357 }
1358
Greg Kurz24f39022016-05-04 21:44:19 +02001359 if (migration_is_blocked(errp)) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001360 return;
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001361 }
1362
Juan Quintela2833c592017-04-05 18:32:37 +02001363 if ((has_blk && blk) || (has_inc && inc)) {
1364 if (migrate_use_block() || migrate_use_block_incremental()) {
1365 error_setg(errp, "Command options are incompatible with "
1366 "current migration capabilities");
1367 return;
1368 }
1369 migrate_set_block_enabled(true, &local_err);
1370 if (local_err) {
1371 error_propagate(errp, local_err);
1372 return;
1373 }
1374 s->must_remove_block_options = true;
1375 }
1376
1377 if (has_inc && inc) {
1378 migrate_set_block_incremental(s, true);
1379 }
1380
Juan Quintelaa0762d92017-04-05 21:00:09 +02001381 s = migrate_init();
Juan Quintelacab30142011-02-22 23:54:21 +01001382
1383 if (strstart(uri, "tcp:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001384 tcp_start_outgoing_migration(s, p, &local_err);
Michael R. Hines2da776d2013-07-22 10:01:54 -04001385#ifdef CONFIG_RDMA
Michael R. Hines41310c62013-12-19 04:52:01 +08001386 } else if (strstart(uri, "rdma:", &p)) {
Michael R. Hines2da776d2013-07-22 10:01:54 -04001387 rdma_start_outgoing_migration(s, p, &local_err);
1388#endif
Juan Quintelacab30142011-02-22 23:54:21 +01001389 } else if (strstart(uri, "exec:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001390 exec_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001391 } else if (strstart(uri, "unix:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001392 unix_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001393 } else if (strstart(uri, "fd:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001394 fd_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001395 } else {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001396 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
1397 "a valid migration protocol");
zhanghailiang48781e52015-12-16 11:47:33 +00001398 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1399 MIGRATION_STATUS_FAILED);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001400 return;
Juan Quintelacab30142011-02-22 23:54:21 +01001401 }
1402
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001403 if (local_err) {
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001404 migrate_fd_error(s, local_err);
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001405 error_propagate(errp, local_err);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001406 return;
Juan Quintela1299c632011-11-09 21:29:01 +01001407 }
Juan Quintelacab30142011-02-22 23:54:21 +01001408}
1409
Luiz Capitulino6cdedb02011-11-27 22:54:09 -02001410void qmp_migrate_cancel(Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001411{
Juan Quintela17549e82011-10-05 13:50:43 +02001412 migrate_fd_cancel(migrate_get_current());
Juan Quintelacab30142011-02-22 23:54:21 +01001413}
1414
Dr. David Alan Gilbert89cfc022017-10-20 10:05:53 +01001415void qmp_migrate_continue(MigrationStatus state, Error **errp)
1416{
1417 MigrationState *s = migrate_get_current();
1418 if (s->state != state) {
1419 error_setg(errp, "Migration not in expected state: %s",
1420 MigrationStatus_str(s->state));
1421 return;
1422 }
1423 qemu_sem_post(&s->pause_sem);
1424}
1425
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001426void qmp_migrate_set_cache_size(int64_t value, Error **errp)
1427{
Juan Quintela73af8dd2017-10-05 21:30:10 +02001428 MigrateSetParameters p = {
1429 .has_xbzrle_cache_size = true,
1430 .xbzrle_cache_size = value,
1431 };
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001432
Juan Quintela73af8dd2017-10-05 21:30:10 +02001433 qmp_migrate_set_parameters(&p, errp);
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001434}
1435
1436int64_t qmp_query_migrate_cache_size(Error **errp)
1437{
1438 return migrate_xbzrle_cache_size();
1439}
1440
Luiz Capitulino3dc85382011-11-28 11:59:37 -02001441void qmp_migrate_set_speed(int64_t value, Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001442{
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001443 MigrateSetParameters p = {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301444 .has_max_bandwidth = true,
1445 .max_bandwidth = value,
1446 };
Juan Quintelacab30142011-02-22 23:54:21 +01001447
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301448 qmp_migrate_set_parameters(&p, errp);
Juan Quintelacab30142011-02-22 23:54:21 +01001449}
1450
Luiz Capitulino4f0a9932011-11-27 23:18:01 -02001451void qmp_migrate_set_downtime(double value, Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001452{
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -03001453 if (value < 0 || value > MAX_MIGRATE_DOWNTIME_SECONDS) {
1454 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
1455 "the range of 0 to %d seconds",
1456 MAX_MIGRATE_DOWNTIME_SECONDS);
1457 return;
1458 }
1459
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301460 value *= 1000; /* Convert to milliseconds */
1461 value = MAX(0, MIN(INT64_MAX, value));
1462
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001463 MigrateSetParameters p = {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301464 .has_downtime_limit = true,
1465 .downtime_limit = value,
1466 };
1467
1468 qmp_migrate_set_parameters(&p, errp);
aliguori5bb79102008-10-13 03:12:02 +00001469}
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001470
Pavel Butsykin53f09a12017-02-03 18:23:20 +03001471bool migrate_release_ram(void)
1472{
1473 MigrationState *s;
1474
1475 s = migrate_get_current();
1476
1477 return s->enabled_capabilities[MIGRATION_CAPABILITY_RELEASE_RAM];
1478}
1479
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +00001480bool migrate_postcopy_ram(void)
1481{
1482 MigrationState *s;
1483
1484 s = migrate_get_current();
1485
Dr. David Alan Gilbert32c3db52016-03-11 09:53:36 +00001486 return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM];
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +00001487}
1488
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001489bool migrate_postcopy(void)
1490{
1491 return migrate_postcopy_ram();
1492}
1493
Chegu Vinodbde1e2e2013-06-24 03:49:42 -06001494bool migrate_auto_converge(void)
1495{
1496 MigrationState *s;
1497
1498 s = migrate_get_current();
1499
1500 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
1501}
1502
Peter Lieven323004a2013-07-18 09:48:50 +02001503bool migrate_zero_blocks(void)
1504{
1505 MigrationState *s;
1506
1507 s = migrate_get_current();
1508
1509 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
1510}
1511
Liang Li8706d2d2015-03-23 16:32:17 +08001512bool migrate_use_compression(void)
1513{
Liang Lidde4e692015-03-23 16:32:26 +08001514 MigrationState *s;
1515
1516 s = migrate_get_current();
1517
1518 return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
Liang Li8706d2d2015-03-23 16:32:17 +08001519}
1520
1521int migrate_compress_level(void)
1522{
1523 MigrationState *s;
1524
1525 s = migrate_get_current();
1526
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001527 return s->parameters.compress_level;
Liang Li8706d2d2015-03-23 16:32:17 +08001528}
1529
1530int migrate_compress_threads(void)
1531{
1532 MigrationState *s;
1533
1534 s = migrate_get_current();
1535
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001536 return s->parameters.compress_threads;
Liang Li8706d2d2015-03-23 16:32:17 +08001537}
1538
Liang Li3fcb38c2015-03-23 16:32:18 +08001539int migrate_decompress_threads(void)
1540{
1541 MigrationState *s;
1542
1543 s = migrate_get_current();
1544
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001545 return s->parameters.decompress_threads;
Liang Li3fcb38c2015-03-23 16:32:18 +08001546}
1547
Juan Quintelab05dc722015-07-07 14:44:05 +02001548bool migrate_use_events(void)
1549{
1550 MigrationState *s;
1551
1552 s = migrate_get_current();
1553
1554 return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS];
1555}
1556
Juan Quintela30126bb2016-01-14 12:23:00 +01001557bool migrate_use_multifd(void)
1558{
1559 MigrationState *s;
1560
1561 s = migrate_get_current();
1562
1563 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_MULTIFD];
1564}
1565
Dr. David Alan Gilbert93fbd032017-10-20 10:05:50 +01001566bool migrate_pause_before_switchover(void)
1567{
1568 MigrationState *s;
1569
1570 s = migrate_get_current();
1571
1572 return s->enabled_capabilities[
1573 MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER];
1574}
1575
Juan Quintela4075fb12016-01-15 08:56:17 +01001576int migrate_multifd_channels(void)
1577{
1578 MigrationState *s;
1579
1580 s = migrate_get_current();
1581
1582 return s->parameters.x_multifd_channels;
1583}
1584
Juan Quintela0fb86602017-04-27 10:48:25 +02001585int migrate_multifd_page_count(void)
1586{
1587 MigrationState *s;
1588
1589 s = migrate_get_current();
1590
1591 return s->parameters.x_multifd_page_count;
1592}
1593
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001594int migrate_use_xbzrle(void)
1595{
1596 MigrationState *s;
1597
1598 s = migrate_get_current();
1599
1600 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
1601}
1602
1603int64_t migrate_xbzrle_cache_size(void)
1604{
1605 MigrationState *s;
1606
1607 s = migrate_get_current();
1608
Juan Quintela73af8dd2017-10-05 21:30:10 +02001609 return s->parameters.xbzrle_cache_size;
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001610}
Juan Quintela0d82d0e2012-10-03 14:18:33 +02001611
Juan Quintela2833c592017-04-05 18:32:37 +02001612bool migrate_use_block(void)
1613{
1614 MigrationState *s;
1615
1616 s = migrate_get_current();
1617
1618 return s->enabled_capabilities[MIGRATION_CAPABILITY_BLOCK];
1619}
1620
Peter Xuc788ada2017-06-26 18:28:55 +08001621bool migrate_use_return_path(void)
1622{
1623 MigrationState *s;
1624
1625 s = migrate_get_current();
1626
1627 return s->enabled_capabilities[MIGRATION_CAPABILITY_RETURN_PATH];
1628}
1629
Juan Quintela2833c592017-04-05 18:32:37 +02001630bool migrate_use_block_incremental(void)
1631{
1632 MigrationState *s;
1633
1634 s = migrate_get_current();
1635
1636 return s->parameters.block_incremental;
1637}
1638
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001639/* migration thread support */
1640/*
1641 * Something bad happened to the RP stream, mark an error
1642 * The caller shall print or trace something to indicate why
1643 */
1644static void mark_source_rp_bad(MigrationState *s)
1645{
1646 s->rp_state.error = true;
1647}
1648
1649static struct rp_cmd_args {
1650 ssize_t len; /* -1 = variable */
1651 const char *name;
1652} rp_cmd_args[] = {
1653 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
1654 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
1655 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001656 [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" },
1657 [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" },
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001658 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
1659};
1660
1661/*
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001662 * Process a request for pages received on the return path,
1663 * We're allowed to send more than requested (e.g. to round to our page size)
1664 * and we don't need to send pages that have already been sent.
1665 */
1666static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
1667 ram_addr_t start, size_t len)
1668{
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001669 long our_host_ps = getpagesize();
1670
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001671 trace_migrate_handle_rp_req_pages(rbname, start, len);
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001672
1673 /*
1674 * Since we currently insist on matching page sizes, just sanity check
1675 * we're being asked for whole host pages.
1676 */
1677 if (start & (our_host_ps-1) ||
1678 (len & (our_host_ps-1))) {
1679 error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1680 " len: %zd", __func__, start, len);
1681 mark_source_rp_bad(ms);
1682 return;
1683 }
1684
Juan Quintela96506892017-03-14 18:41:03 +01001685 if (ram_save_queue_pages(rbname, start, len)) {
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001686 mark_source_rp_bad(ms);
1687 }
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001688}
1689
1690/*
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001691 * Handles messages sent on the return path towards the source VM
1692 *
1693 */
1694static void *source_return_path_thread(void *opaque)
1695{
1696 MigrationState *ms = opaque;
1697 QEMUFile *rp = ms->rp_state.from_dst_file;
1698 uint16_t header_len, header_type;
Peter Xu568b01c2016-03-09 14:12:12 +08001699 uint8_t buf[512];
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001700 uint32_t tmp32, sibling_error;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001701 ram_addr_t start = 0; /* =0 to silence warning */
1702 size_t len = 0, expected_len;
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001703 int res;
1704
1705 trace_source_return_path_thread_entry();
1706 while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1707 migration_is_setup_or_active(ms->state)) {
1708 trace_source_return_path_thread_loop_top();
1709 header_type = qemu_get_be16(rp);
1710 header_len = qemu_get_be16(rp);
1711
Peter Xu7a9ddfb2018-02-08 18:31:05 +08001712 if (qemu_file_get_error(rp)) {
1713 mark_source_rp_bad(ms);
1714 goto out;
1715 }
1716
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001717 if (header_type >= MIG_RP_MSG_MAX ||
1718 header_type == MIG_RP_MSG_INVALID) {
1719 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1720 header_type, header_len);
1721 mark_source_rp_bad(ms);
1722 goto out;
1723 }
1724
1725 if ((rp_cmd_args[header_type].len != -1 &&
1726 header_len != rp_cmd_args[header_type].len) ||
Peter Xu568b01c2016-03-09 14:12:12 +08001727 header_len > sizeof(buf)) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001728 error_report("RP: Received '%s' message (0x%04x) with"
1729 "incorrect length %d expecting %zu",
1730 rp_cmd_args[header_type].name, header_type, header_len,
1731 (size_t)rp_cmd_args[header_type].len);
1732 mark_source_rp_bad(ms);
1733 goto out;
1734 }
1735
1736 /* We know we've got a valid header by this point */
1737 res = qemu_get_buffer(rp, buf, header_len);
1738 if (res != header_len) {
1739 error_report("RP: Failed reading data for message 0x%04x"
1740 " read %d expected %d",
1741 header_type, res, header_len);
1742 mark_source_rp_bad(ms);
1743 goto out;
1744 }
1745
1746 /* OK, we have the message and the data */
1747 switch (header_type) {
1748 case MIG_RP_MSG_SHUT:
Peter Maydell4d885132016-06-10 17:09:22 +01001749 sibling_error = ldl_be_p(buf);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001750 trace_source_return_path_thread_shut(sibling_error);
1751 if (sibling_error) {
1752 error_report("RP: Sibling indicated error %d", sibling_error);
1753 mark_source_rp_bad(ms);
1754 }
1755 /*
1756 * We'll let the main thread deal with closing the RP
1757 * we could do a shutdown(2) on it, but we're the only user
1758 * anyway, so there's nothing gained.
1759 */
1760 goto out;
1761
1762 case MIG_RP_MSG_PONG:
Peter Maydell4d885132016-06-10 17:09:22 +01001763 tmp32 = ldl_be_p(buf);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001764 trace_source_return_path_thread_pong(tmp32);
1765 break;
1766
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001767 case MIG_RP_MSG_REQ_PAGES:
Peter Maydell4d885132016-06-10 17:09:22 +01001768 start = ldq_be_p(buf);
1769 len = ldl_be_p(buf + 8);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001770 migrate_handle_rp_req_pages(ms, NULL, start, len);
1771 break;
1772
1773 case MIG_RP_MSG_REQ_PAGES_ID:
1774 expected_len = 12 + 1; /* header + termination */
1775
1776 if (header_len >= expected_len) {
Peter Maydell4d885132016-06-10 17:09:22 +01001777 start = ldq_be_p(buf);
1778 len = ldl_be_p(buf + 8);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001779 /* Now we expect an idstr */
1780 tmp32 = buf[12]; /* Length of the following idstr */
1781 buf[13 + tmp32] = '\0';
1782 expected_len += tmp32;
1783 }
1784 if (header_len != expected_len) {
1785 error_report("RP: Req_Page_id with length %d expecting %zd",
1786 header_len, expected_len);
1787 mark_source_rp_bad(ms);
1788 goto out;
1789 }
1790 migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len);
1791 break;
1792
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001793 default:
1794 break;
1795 }
1796 }
Dr. David Alan Gilbert5df54162015-11-18 11:48:41 +00001797 if (qemu_file_get_error(rp)) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001798 trace_source_return_path_thread_bad_end();
1799 mark_source_rp_bad(ms);
1800 }
1801
1802 trace_source_return_path_thread_end();
1803out:
1804 ms->rp_state.from_dst_file = NULL;
1805 qemu_fclose(rp);
1806 return NULL;
1807}
1808
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001809static int open_return_path_on_source(MigrationState *ms)
1810{
1811
zhanghailiang89a02a92016-01-15 11:37:42 +08001812 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001813 if (!ms->rp_state.from_dst_file) {
1814 return -1;
1815 }
1816
1817 trace_open_return_path_on_source();
1818 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
1819 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
1820
1821 trace_open_return_path_on_source_continue();
1822
1823 return 0;
1824}
1825
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001826/* Returns 0 if the RP was ok, otherwise there was an error on the RP */
1827static int await_return_path_close_on_source(MigrationState *ms)
1828{
1829 /*
1830 * If this is a normal exit then the destination will send a SHUT and the
1831 * rp_thread will exit, however if there's an error we need to cause
1832 * it to exit.
1833 */
zhanghailiang89a02a92016-01-15 11:37:42 +08001834 if (qemu_file_get_error(ms->to_dst_file) && ms->rp_state.from_dst_file) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001835 /*
1836 * shutdown(2), if we have it, will cause it to unblock if it's stuck
1837 * waiting for the destination.
1838 */
1839 qemu_file_shutdown(ms->rp_state.from_dst_file);
1840 mark_source_rp_bad(ms);
1841 }
1842 trace_await_return_path_close_on_source_joining();
1843 qemu_thread_join(&ms->rp_state.rp_thread);
1844 trace_await_return_path_close_on_source_close();
1845 return ms->rp_state.error;
1846}
1847
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001848/*
1849 * Switch from normal iteration to postcopy
1850 * Returns non-0 on error
1851 */
Peter Xu7287cbd2018-01-03 20:20:09 +08001852static int postcopy_start(MigrationState *ms)
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001853{
1854 int ret;
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001855 QIOChannelBuffer *bioc;
1856 QEMUFile *fb;
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001857 int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001858 bool restart_block = false;
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01001859 int cur_state = MIGRATION_STATUS_ACTIVE;
1860 if (!migrate_pause_before_switchover()) {
1861 migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
1862 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1863 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001864
1865 trace_postcopy_start();
1866 qemu_mutex_lock_iothread();
1867 trace_postcopy_start_set_run();
1868
1869 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001870 global_state_store();
1871 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01001872 if (ret < 0) {
1873 goto fail;
1874 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001875
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01001876 ret = migration_maybe_pause(ms, &cur_state,
1877 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1878 if (ret < 0) {
1879 goto fail;
1880 }
1881
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01001882 ret = bdrv_inactivate_all();
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001883 if (ret < 0) {
1884 goto fail;
1885 }
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001886 restart_block = true;
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001887
1888 /*
Dr. David Alan Gilbert1c0d2492015-11-11 14:02:27 +00001889 * Cause any non-postcopiable, but iterative devices to
1890 * send out their final data.
1891 */
Fam Zhenga1fbe752017-06-17 00:06:58 +08001892 qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false);
Dr. David Alan Gilbert1c0d2492015-11-11 14:02:27 +00001893
1894 /*
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001895 * in Finish migrate and with the io-lock held everything should
1896 * be quiet, but we've potentially still got dirty pages and we
1897 * need to tell the destination to throw any pages it's already received
1898 * that are dirty
1899 */
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001900 if (migrate_postcopy_ram()) {
1901 if (ram_postcopy_send_discard_bitmap(ms)) {
1902 error_report("postcopy send discard bitmap failed");
1903 goto fail;
1904 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001905 }
1906
1907 /*
1908 * send rest of state - note things that are doing postcopy
1909 * will notice we're in POSTCOPY_ACTIVE and not actually
1910 * wrap their state up here
1911 */
zhanghailiang89a02a92016-01-15 11:37:42 +08001912 qemu_file_set_rate_limit(ms->to_dst_file, INT64_MAX);
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001913 if (migrate_postcopy_ram()) {
1914 /* Ping just for debugging, helps line traces up */
1915 qemu_savevm_send_ping(ms->to_dst_file, 2);
1916 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001917
1918 /*
1919 * While loading the device state we may trigger page transfer
1920 * requests and the fd must be free to process those, and thus
1921 * the destination must read the whole device state off the fd before
1922 * it starts processing it. Unfortunately the ad-hoc migration format
1923 * doesn't allow the destination to know the size to read without fully
1924 * parsing it through each devices load-state code (especially the open
1925 * coded devices that use get/put).
1926 * So we wrap the device state up in a package with a length at the start;
1927 * to do this we use a qemu_buf to hold the whole of the device state.
1928 */
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001929 bioc = qio_channel_buffer_new(4096);
Daniel P. Berrange6f01f132016-09-30 11:57:14 +01001930 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001931 fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc));
1932 object_unref(OBJECT(bioc));
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001933
Dr. David Alan Gilbertc76201a2015-11-05 18:11:18 +00001934 /*
1935 * Make sure the receiver can get incoming pages before we send the rest
1936 * of the state
1937 */
1938 qemu_savevm_send_postcopy_listen(fb);
1939
Fam Zhenga1fbe752017-06-17 00:06:58 +08001940 qemu_savevm_state_complete_precopy(fb, false, false);
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001941 if (migrate_postcopy_ram()) {
1942 qemu_savevm_send_ping(fb, 3);
1943 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001944
1945 qemu_savevm_send_postcopy_run(fb);
1946
1947 /* <><> end of stuff going into the package */
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001948
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001949 /* Last point of recovery; as soon as we send the package the destination
1950 * can open devices and potentially start running.
1951 * Lets just check again we've not got any errors.
1952 */
1953 ret = qemu_file_get_error(ms->to_dst_file);
1954 if (ret) {
1955 error_report("postcopy_start: Migration stream errored (pre package)");
1956 goto fail_closefb;
1957 }
1958
1959 restart_block = false;
1960
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001961 /* Now send that blob */
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001962 if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001963 goto fail_closefb;
1964 }
1965 qemu_fclose(fb);
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001966
1967 /* Send a notify to give a chance for anything that needs to happen
1968 * at the transition to postcopy and after the device state; in particular
1969 * spice needs to trigger a transition now
1970 */
1971 ms->postcopy_after_devices = true;
1972 notifier_list_notify(&migration_state_notifiers, ms);
1973
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001974 ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
1975
1976 qemu_mutex_unlock_iothread();
1977
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001978 if (migrate_postcopy_ram()) {
1979 /*
1980 * Although this ping is just for debug, it could potentially be
1981 * used for getting a better measurement of downtime at the source.
1982 */
1983 qemu_savevm_send_ping(ms->to_dst_file, 4);
1984 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001985
Pavel Butsykinced1c612017-02-03 18:23:21 +03001986 if (migrate_release_ram()) {
1987 ram_postcopy_migrated_memory_release(ms);
1988 }
1989
zhanghailiang89a02a92016-01-15 11:37:42 +08001990 ret = qemu_file_get_error(ms->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001991 if (ret) {
1992 error_report("postcopy_start: Migration stream errored");
zhanghailiang48781e52015-12-16 11:47:33 +00001993 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001994 MIGRATION_STATUS_FAILED);
1995 }
1996
1997 return ret;
1998
1999fail_closefb:
2000 qemu_fclose(fb);
2001fail:
zhanghailiang48781e52015-12-16 11:47:33 +00002002 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002003 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00002004 if (restart_block) {
2005 /* A failure happened early enough that we know the destination hasn't
2006 * accessed block devices, so we're safe to recover.
2007 */
2008 Error *local_err = NULL;
2009
2010 bdrv_invalidate_cache_all(&local_err);
2011 if (local_err) {
2012 error_report_err(local_err);
2013 }
2014 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002015 qemu_mutex_unlock_iothread();
2016 return -1;
2017}
2018
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002019/**
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002020 * migration_maybe_pause: Pause if required to by
2021 * migrate_pause_before_switchover called with the iothread locked
2022 * Returns: 0 on success
2023 */
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002024static int migration_maybe_pause(MigrationState *s,
2025 int *current_active_state,
2026 int new_state)
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002027{
2028 if (!migrate_pause_before_switchover()) {
2029 return 0;
2030 }
2031
2032 /* Since leaving this state is not atomic with posting the semaphore
2033 * it's possible that someone could have issued multiple migrate_continue
2034 * and the semaphore is incorrectly positive at this point;
2035 * the docs say it's undefined to reinit a semaphore that's already
2036 * init'd, so use timedwait to eat up any existing posts.
2037 */
2038 while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) {
2039 /* This block intentionally left blank */
2040 }
2041
2042 qemu_mutex_unlock_iothread();
2043 migrate_set_state(&s->state, *current_active_state,
2044 MIGRATION_STATUS_PRE_SWITCHOVER);
2045 qemu_sem_wait(&s->pause_sem);
2046 migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER,
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002047 new_state);
2048 *current_active_state = new_state;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002049 qemu_mutex_lock_iothread();
2050
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002051 return s->state == new_state ? 0 : -EINVAL;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002052}
2053
2054/**
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002055 * migration_completion: Used by migration_thread when there's not much left.
2056 * The caller 'breaks' the loop when this returns.
2057 *
2058 * @s: Current migration state
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002059 */
Peter Xu2ad87302018-01-03 20:20:14 +08002060static void migration_completion(MigrationState *s)
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002061{
2062 int ret;
Peter Xu2ad87302018-01-03 20:20:14 +08002063 int current_active_state = s->state;
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002064
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002065 if (s->state == MIGRATION_STATUS_ACTIVE) {
2066 qemu_mutex_lock_iothread();
Peter Xu64909f92018-01-03 20:20:10 +08002067 s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002068 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Peter Xu7287cbd2018-01-03 20:20:09 +08002069 s->vm_was_running = runstate_is_running();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002070 ret = global_state_store();
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002071
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002072 if (!ret) {
Fam Zhenga1fbe752017-06-17 00:06:58 +08002073 bool inactivate = !migrate_colo_enabled();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002074 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002075 if (ret >= 0) {
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002076 ret = migration_maybe_pause(s, &current_active_state,
2077 MIGRATION_STATUS_DEVICE);
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002078 }
2079 if (ret >= 0) {
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002080 qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
Fam Zhenga1fbe752017-06-17 00:06:58 +08002081 ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
2082 inactivate);
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002083 }
Fam Zhenga1fbe752017-06-17 00:06:58 +08002084 if (inactivate && ret >= 0) {
2085 s->block_inactive = true;
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002086 }
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002087 }
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002088 qemu_mutex_unlock_iothread();
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002089
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002090 if (ret < 0) {
2091 goto fail;
2092 }
2093 } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2094 trace_migration_completion_postcopy_end();
2095
zhanghailiang89a02a92016-01-15 11:37:42 +08002096 qemu_savevm_state_complete_postcopy(s->to_dst_file);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002097 trace_migration_completion_postcopy_end_after_complete();
2098 }
2099
2100 /*
2101 * If rp was opened we must clean up the thread before
2102 * cleaning everything else up (since if there are no failures
2103 * it will wait for the destination to send it's status in
2104 * a SHUT command).
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002105 */
Peter Xu0425dc92017-05-31 18:35:34 +08002106 if (s->rp_state.from_dst_file) {
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002107 int rp_error;
Peter Xu0425dc92017-05-31 18:35:34 +08002108 trace_migration_return_path_end_before();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002109 rp_error = await_return_path_close_on_source(s);
Peter Xu0425dc92017-05-31 18:35:34 +08002110 trace_migration_return_path_end_after(rp_error);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002111 if (rp_error) {
Greg Kurzfe904ea2016-05-18 15:44:36 +02002112 goto fail_invalidate;
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002113 }
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002114 }
2115
zhanghailiang89a02a92016-01-15 11:37:42 +08002116 if (qemu_file_get_error(s->to_dst_file)) {
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002117 trace_migration_completion_file_err();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002118 goto fail_invalidate;
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002119 }
2120
zhanghailiang0b827d52016-10-27 14:42:54 +08002121 if (!migrate_colo_enabled()) {
2122 migrate_set_state(&s->state, current_active_state,
2123 MIGRATION_STATUS_COMPLETED);
2124 }
2125
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002126 return;
2127
Greg Kurzfe904ea2016-05-18 15:44:36 +02002128fail_invalidate:
2129 /* If not doing postcopy, vm_start() will be called: let's regain
2130 * control on images.
2131 */
Dr. David Alan Gilbert6039dd52018-02-05 09:13:37 +00002132 if (s->state == MIGRATION_STATUS_ACTIVE ||
2133 s->state == MIGRATION_STATUS_DEVICE) {
Greg Kurzfe904ea2016-05-18 15:44:36 +02002134 Error *local_err = NULL;
2135
zhanghailiang1d2acc32017-01-24 15:59:52 +08002136 qemu_mutex_lock_iothread();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002137 bdrv_invalidate_cache_all(&local_err);
2138 if (local_err) {
2139 error_report_err(local_err);
zhanghailiang1d2acc32017-01-24 15:59:52 +08002140 } else {
2141 s->block_inactive = false;
Greg Kurzfe904ea2016-05-18 15:44:36 +02002142 }
zhanghailiang1d2acc32017-01-24 15:59:52 +08002143 qemu_mutex_unlock_iothread();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002144 }
2145
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002146fail:
zhanghailiang48781e52015-12-16 11:47:33 +00002147 migrate_set_state(&s->state, current_active_state,
2148 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002149}
2150
zhanghailiang35a6ed42016-10-27 14:42:52 +08002151bool migrate_colo_enabled(void)
2152{
2153 MigrationState *s = migrate_get_current();
2154 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_COLO];
2155}
2156
Peter Xucf011f02018-01-03 20:20:11 +08002157static void migration_calculate_complete(MigrationState *s)
2158{
2159 uint64_t bytes = qemu_ftell(s->to_dst_file);
2160 int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2161
2162 s->total_time = end_time - s->start_time;
2163 if (!s->downtime) {
2164 /*
2165 * It's still not set, so we are precopy migration. For
2166 * postcopy, downtime is calculated during postcopy_start().
2167 */
2168 s->downtime = end_time - s->downtime_start;
2169 }
2170
2171 if (s->total_time) {
2172 s->mbps = ((double) bytes * 8.0) / s->total_time / 1000;
2173 }
2174}
2175
Peter Xub15df1a2018-01-03 20:20:13 +08002176static void migration_update_counters(MigrationState *s,
2177 int64_t current_time)
2178{
2179 uint64_t transferred, time_spent;
Peter Xub15df1a2018-01-03 20:20:13 +08002180 double bandwidth;
2181
2182 if (current_time < s->iteration_start_time + BUFFER_DELAY) {
2183 return;
2184 }
2185
2186 transferred = qemu_ftell(s->to_dst_file) - s->iteration_initial_bytes;
2187 time_spent = current_time - s->iteration_start_time;
2188 bandwidth = (double)transferred / time_spent;
Wei Wang0781c1e2018-01-22 19:36:39 +08002189 s->threshold_size = bandwidth * s->parameters.downtime_limit;
Peter Xub15df1a2018-01-03 20:20:13 +08002190
2191 s->mbps = (((double) transferred * 8.0) /
2192 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
2193
2194 /*
2195 * if we haven't sent anything, we don't want to
2196 * recalculate. 10000 is a small enough number for our purposes
2197 */
2198 if (ram_counters.dirty_pages_rate && transferred > 10000) {
2199 s->expected_downtime = ram_counters.dirty_pages_rate *
2200 qemu_target_page_size() / bandwidth;
2201 }
2202
2203 qemu_file_reset_rate_limit(s->to_dst_file);
2204
2205 s->iteration_start_time = current_time;
2206 s->iteration_initial_bytes = qemu_ftell(s->to_dst_file);
2207
2208 trace_migrate_transferred(transferred, time_spent,
Wei Wang0781c1e2018-01-22 19:36:39 +08002209 bandwidth, s->threshold_size);
Peter Xub15df1a2018-01-03 20:20:13 +08002210}
2211
Peter Xu2ad87302018-01-03 20:20:14 +08002212/* Migration thread iteration status */
2213typedef enum {
2214 MIG_ITERATE_RESUME, /* Resume current iteration */
2215 MIG_ITERATE_SKIP, /* Skip current iteration */
2216 MIG_ITERATE_BREAK, /* Break the loop */
2217} MigIterateState;
2218
2219/*
2220 * Return true if continue to the next iteration directly, false
2221 * otherwise.
2222 */
2223static MigIterateState migration_iteration_run(MigrationState *s)
2224{
2225 uint64_t pending_size, pend_post, pend_nonpost;
2226 bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE;
2227
2228 qemu_savevm_state_pending(s->to_dst_file, s->threshold_size,
2229 &pend_nonpost, &pend_post);
2230 pending_size = pend_nonpost + pend_post;
2231
2232 trace_migrate_pending(pending_size, s->threshold_size,
2233 pend_post, pend_nonpost);
2234
2235 if (pending_size && pending_size >= s->threshold_size) {
2236 /* Still a significant amount to transfer */
2237 if (migrate_postcopy() && !in_postcopy &&
2238 pend_nonpost <= s->threshold_size &&
2239 atomic_read(&s->start_postcopy)) {
2240 if (postcopy_start(s)) {
2241 error_report("%s: postcopy failed to start", __func__);
2242 }
2243 return MIG_ITERATE_SKIP;
2244 }
2245 /* Just another iteration step */
2246 qemu_savevm_state_iterate(s->to_dst_file,
2247 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
2248 } else {
2249 trace_migration_thread_low_pending(pending_size);
2250 migration_completion(s);
2251 return MIG_ITERATE_BREAK;
2252 }
2253
2254 return MIG_ITERATE_RESUME;
2255}
2256
Peter Xu199aa6d2018-01-03 20:20:15 +08002257static void migration_iteration_finish(MigrationState *s)
2258{
2259 /* If we enabled cpu throttling for auto-converge, turn it off. */
2260 cpu_throttle_stop();
2261
2262 qemu_mutex_lock_iothread();
2263 switch (s->state) {
2264 case MIGRATION_STATUS_COMPLETED:
2265 migration_calculate_complete(s);
2266 runstate_set(RUN_STATE_POSTMIGRATE);
2267 break;
2268
2269 case MIGRATION_STATUS_ACTIVE:
2270 /*
2271 * We should really assert here, but since it's during
2272 * migration, let's try to reduce the usage of assertions.
2273 */
2274 if (!migrate_colo_enabled()) {
2275 error_report("%s: critical error: calling COLO code without "
2276 "COLO enabled", __func__);
2277 }
2278 migrate_start_colo_process(s);
2279 /*
2280 * Fixme: we will run VM in COLO no matter its old running state.
2281 * After exited COLO, we will keep running.
2282 */
2283 s->vm_was_running = true;
2284 /* Fallthrough */
2285 case MIGRATION_STATUS_FAILED:
2286 case MIGRATION_STATUS_CANCELLED:
2287 if (s->vm_was_running) {
2288 vm_start();
2289 } else {
2290 if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
2291 runstate_set(RUN_STATE_POSTMIGRATE);
2292 }
2293 }
2294 break;
2295
2296 default:
2297 /* Should not reach here, but if so, forgive the VM. */
2298 error_report("%s: Unknown ending state %d", __func__, s->state);
2299 break;
2300 }
2301 qemu_bh_schedule(s->cleanup_bh);
2302 qemu_mutex_unlock_iothread();
2303}
2304
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00002305/*
2306 * Master migration thread on the source VM.
2307 * It drives the migration and pumps the data down the outgoing channel.
2308 */
Juan Quintela5f496a12013-02-22 17:36:30 +01002309static void *migration_thread(void *opaque)
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002310{
Juan Quintela9848a402012-12-19 09:55:50 +01002311 MigrationState *s = opaque;
Alex Blighbc72ad62013-08-21 16:03:08 +01002312 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
Juan Quintela76f59332012-10-03 20:16:24 +02002313
Paolo Bonziniab28bd22015-07-09 08:55:38 +02002314 rcu_register_thread();
2315
Peter Xub15df1a2018-01-03 20:20:13 +08002316 s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2317
zhanghailiang89a02a92016-01-15 11:37:42 +08002318 qemu_savevm_state_header(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002319
Peter Xu62a02652017-06-14 15:55:58 +08002320 /*
2321 * If we opened the return path, we need to make sure dst has it
2322 * opened as well.
2323 */
2324 if (s->rp_state.from_dst_file) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002325 /* Now tell the dest that it should open its end so it can reply */
zhanghailiang89a02a92016-01-15 11:37:42 +08002326 qemu_savevm_send_open_return_path(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002327
2328 /* And do a ping that will make stuff easier to debug */
zhanghailiang89a02a92016-01-15 11:37:42 +08002329 qemu_savevm_send_ping(s->to_dst_file, 1);
Peter Xu0425dc92017-05-31 18:35:34 +08002330 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002331
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002332 if (migrate_postcopy()) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002333 /*
2334 * Tell the destination that we *might* want to do postcopy later;
2335 * if the other end can't do postcopy it should fail now, nice and
2336 * early.
2337 */
zhanghailiang89a02a92016-01-15 11:37:42 +08002338 qemu_savevm_send_postcopy_advise(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002339 }
2340
Juan Quintela9907e842017-06-28 11:52:24 +02002341 qemu_savevm_state_setup(s->to_dst_file);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002342
Alex Blighbc72ad62013-08-21 16:03:08 +01002343 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
zhanghailiang48781e52015-12-16 11:47:33 +00002344 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2345 MIGRATION_STATUS_ACTIVE);
Michael R. Hines29ae8a42013-07-22 10:01:57 -04002346
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00002347 trace_migration_thread_setup_complete();
2348
2349 while (s->state == MIGRATION_STATUS_ACTIVE ||
2350 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
Juan Quintelaa3e879c2013-02-01 12:39:08 +01002351 int64_t current_time;
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002352
zhanghailiang89a02a92016-01-15 11:37:42 +08002353 if (!qemu_file_rate_limit(s->to_dst_file)) {
Peter Xu2ad87302018-01-03 20:20:14 +08002354 MigIterateState iter_state = migration_iteration_run(s);
2355 if (iter_state == MIG_ITERATE_SKIP) {
2356 continue;
2357 } else if (iter_state == MIG_ITERATE_BREAK) {
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002358 break;
Juan Quintelac369f402012-10-03 20:33:34 +02002359 }
2360 }
Paolo Bonzinif4410a52013-02-22 17:36:20 +01002361
zhanghailiang89a02a92016-01-15 11:37:42 +08002362 if (qemu_file_get_error(s->to_dst_file)) {
Peter Xu2ad87302018-01-03 20:20:14 +08002363 if (migration_is_setup_or_active(s->state)) {
2364 migrate_set_state(&s->state, s->state,
2365 MIGRATION_STATUS_FAILED);
2366 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002367 trace_migration_thread_file_err();
Paolo Bonzinifd45ee22013-02-22 17:36:33 +01002368 break;
2369 }
Peter Xub15df1a2018-01-03 20:20:13 +08002370
Alex Blighbc72ad62013-08-21 16:03:08 +01002371 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002372
Peter Xub15df1a2018-01-03 20:20:13 +08002373 migration_update_counters(s, current_time);
Michael R. Hines7e114f82013-06-25 21:35:30 -04002374
zhanghailiang89a02a92016-01-15 11:37:42 +08002375 if (qemu_file_rate_limit(s->to_dst_file)) {
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002376 /* usleep expects microseconds */
Peter Xub15df1a2018-01-03 20:20:13 +08002377 g_usleep((s->iteration_start_time + BUFFER_DELAY -
2378 current_time) * 1000);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002379 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01002380 }
2381
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002382 trace_migration_thread_after_loop();
Peter Xu199aa6d2018-01-03 20:20:15 +08002383 migration_iteration_finish(s);
Paolo Bonziniab28bd22015-07-09 08:55:38 +02002384 rcu_unregister_thread();
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002385 return NULL;
2386}
2387
Dr. David Alan Gilbertcce80402017-12-15 17:16:54 +00002388void migrate_fd_connect(MigrationState *s, Error *error_in)
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002389{
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05302390 s->expected_downtime = s->parameters.downtime_limit;
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01002391 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
Dr. David Alan Gilbertcce80402017-12-15 17:16:54 +00002392 if (error_in) {
2393 migrate_fd_error(s, error_in);
2394 migrate_fd_cleanup(s);
2395 return;
2396 }
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002397
Daniel P. Berrange9e4d2b92016-04-27 11:04:57 +01002398 qemu_file_set_blocking(s->to_dst_file, true);
zhanghailiang89a02a92016-01-15 11:37:42 +08002399 qemu_file_set_rate_limit(s->to_dst_file,
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05302400 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
Paolo Bonzini442773c2013-02-22 17:36:44 +01002401
Stefan Hajnoczi9287ac22013-07-29 15:01:57 +02002402 /* Notify before starting migration thread */
2403 notifier_list_notify(&migration_state_notifiers, s);
2404
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002405 /*
Peter Xuc788ada2017-06-26 18:28:55 +08002406 * Open the return path. For postcopy, it is used exclusively. For
2407 * precopy, only if user specified "return-path" capability would
2408 * QEMU uses the return path.
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002409 */
Peter Xuc788ada2017-06-26 18:28:55 +08002410 if (migrate_postcopy_ram() || migrate_use_return_path()) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002411 if (open_return_path_on_source(s)) {
2412 error_report("Unable to open return-path for postcopy");
zhanghailiang48781e52015-12-16 11:47:33 +00002413 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002414 MIGRATION_STATUS_FAILED);
2415 migrate_fd_cleanup(s);
2416 return;
2417 }
2418 }
2419
Juan Quintelaf986c3d2016-01-14 16:52:55 +01002420 if (multifd_save_setup() != 0) {
2421 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2422 MIGRATION_STATUS_FAILED);
2423 migrate_fd_cleanup(s);
2424 return;
2425 }
Pankaj Gupta009fad72017-01-23 19:12:56 +05302426 qemu_thread_create(&s->thread, "live_migration", migration_thread, s,
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01002427 QEMU_THREAD_JOINABLE);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002428 s->migration_thread_running = true;
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002429}
Dr. David Alan Gilbert093e3c42015-11-05 18:10:52 +00002430
Peter Xu9d18af92017-06-27 12:10:19 +08002431void migration_global_dump(Monitor *mon)
2432{
2433 MigrationState *ms = migrate_get_current();
2434
Juan Quintela6f0f6422017-10-26 11:49:57 +02002435 monitor_printf(mon, "globals:\n");
2436 monitor_printf(mon, "store-global-state: %s\n",
2437 ms->store_global_state ? "on" : "off");
2438 monitor_printf(mon, "only-migratable: %s\n",
2439 ms->only_migratable ? "on" : "off");
2440 monitor_printf(mon, "send-configuration: %s\n",
2441 ms->send_configuration ? "on" : "off");
2442 monitor_printf(mon, "send-section-footer: %s\n",
2443 ms->send_section_footer ? "on" : "off");
Peter Xu9d18af92017-06-27 12:10:19 +08002444}
2445
Peter Xu20814752017-07-18 11:39:03 +08002446#define DEFINE_PROP_MIG_CAP(name, x) \
2447 DEFINE_PROP_BOOL(name, MigrationState, enabled_capabilities[x], false)
2448
Peter Xu52722982017-06-27 12:10:14 +08002449static Property migration_properties[] = {
2450 DEFINE_PROP_BOOL("store-global-state", MigrationState,
2451 store_global_state, true),
Peter Xu3df663e2017-06-27 12:10:15 +08002452 DEFINE_PROP_BOOL("only-migratable", MigrationState, only_migratable, false),
Peter Xu71dd4c12017-06-27 12:10:16 +08002453 DEFINE_PROP_BOOL("send-configuration", MigrationState,
2454 send_configuration, true),
Peter Xu15c38502017-06-27 12:10:17 +08002455 DEFINE_PROP_BOOL("send-section-footer", MigrationState,
2456 send_section_footer, true),
Peter Xu89632fa2017-07-18 11:39:02 +08002457
2458 /* Migration parameters */
Juan Quintela741d4082017-12-01 13:08:38 +01002459 DEFINE_PROP_UINT8("x-compress-level", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002460 parameters.compress_level,
2461 DEFAULT_MIGRATE_COMPRESS_LEVEL),
Juan Quintela741d4082017-12-01 13:08:38 +01002462 DEFINE_PROP_UINT8("x-compress-threads", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002463 parameters.compress_threads,
2464 DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT),
Juan Quintela741d4082017-12-01 13:08:38 +01002465 DEFINE_PROP_UINT8("x-decompress-threads", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002466 parameters.decompress_threads,
2467 DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT),
Juan Quintela741d4082017-12-01 13:08:38 +01002468 DEFINE_PROP_UINT8("x-cpu-throttle-initial", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002469 parameters.cpu_throttle_initial,
2470 DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL),
Juan Quintela741d4082017-12-01 13:08:38 +01002471 DEFINE_PROP_UINT8("x-cpu-throttle-increment", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002472 parameters.cpu_throttle_increment,
2473 DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT),
Juan Quintela741d4082017-12-01 13:08:38 +01002474 DEFINE_PROP_SIZE("x-max-bandwidth", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002475 parameters.max_bandwidth, MAX_THROTTLE),
Juan Quintela741d4082017-12-01 13:08:38 +01002476 DEFINE_PROP_UINT64("x-downtime-limit", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002477 parameters.downtime_limit,
2478 DEFAULT_MIGRATE_SET_DOWNTIME),
Juan Quintela741d4082017-12-01 13:08:38 +01002479 DEFINE_PROP_UINT32("x-checkpoint-delay", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002480 parameters.x_checkpoint_delay,
2481 DEFAULT_MIGRATE_X_CHECKPOINT_DELAY),
Juan Quintela741d4082017-12-01 13:08:38 +01002482 DEFINE_PROP_UINT8("x-multifd-channels", MigrationState,
Juan Quintela4075fb12016-01-15 08:56:17 +01002483 parameters.x_multifd_channels,
2484 DEFAULT_MIGRATE_MULTIFD_CHANNELS),
Juan Quintela741d4082017-12-01 13:08:38 +01002485 DEFINE_PROP_UINT32("x-multifd-page-count", MigrationState,
Juan Quintela0fb86602017-04-27 10:48:25 +02002486 parameters.x_multifd_page_count,
2487 DEFAULT_MIGRATE_MULTIFD_PAGE_COUNT),
Juan Quintela73af8dd2017-10-05 21:30:10 +02002488 DEFINE_PROP_SIZE("xbzrle-cache-size", MigrationState,
2489 parameters.xbzrle_cache_size,
2490 DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE),
Peter Xu20814752017-07-18 11:39:03 +08002491
2492 /* Migration capabilities */
2493 DEFINE_PROP_MIG_CAP("x-xbzrle", MIGRATION_CAPABILITY_XBZRLE),
2494 DEFINE_PROP_MIG_CAP("x-rdma-pin-all", MIGRATION_CAPABILITY_RDMA_PIN_ALL),
2495 DEFINE_PROP_MIG_CAP("x-auto-converge", MIGRATION_CAPABILITY_AUTO_CONVERGE),
2496 DEFINE_PROP_MIG_CAP("x-zero-blocks", MIGRATION_CAPABILITY_ZERO_BLOCKS),
2497 DEFINE_PROP_MIG_CAP("x-compress", MIGRATION_CAPABILITY_COMPRESS),
2498 DEFINE_PROP_MIG_CAP("x-events", MIGRATION_CAPABILITY_EVENTS),
2499 DEFINE_PROP_MIG_CAP("x-postcopy-ram", MIGRATION_CAPABILITY_POSTCOPY_RAM),
2500 DEFINE_PROP_MIG_CAP("x-colo", MIGRATION_CAPABILITY_X_COLO),
2501 DEFINE_PROP_MIG_CAP("x-release-ram", MIGRATION_CAPABILITY_RELEASE_RAM),
2502 DEFINE_PROP_MIG_CAP("x-block", MIGRATION_CAPABILITY_BLOCK),
2503 DEFINE_PROP_MIG_CAP("x-return-path", MIGRATION_CAPABILITY_RETURN_PATH),
Juan Quintela30126bb2016-01-14 12:23:00 +01002504 DEFINE_PROP_MIG_CAP("x-multifd", MIGRATION_CAPABILITY_X_MULTIFD),
Peter Xu20814752017-07-18 11:39:03 +08002505
Peter Xu52722982017-06-27 12:10:14 +08002506 DEFINE_PROP_END_OF_LIST(),
2507};
2508
Peter Xue5cb7e72017-06-27 12:10:13 +08002509static void migration_class_init(ObjectClass *klass, void *data)
2510{
2511 DeviceClass *dc = DEVICE_CLASS(klass);
2512
2513 dc->user_creatable = false;
Peter Xu52722982017-06-27 12:10:14 +08002514 dc->props = migration_properties;
Peter Xue5cb7e72017-06-27 12:10:13 +08002515}
2516
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002517static void migration_instance_finalize(Object *obj)
2518{
2519 MigrationState *ms = MIGRATION_OBJ(obj);
2520 MigrationParameters *params = &ms->parameters;
2521
Juan Quintela87db1a72017-09-05 12:50:22 +02002522 qemu_mutex_destroy(&ms->error_mutex);
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002523 g_free(params->tls_hostname);
2524 g_free(params->tls_creds);
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002525 qemu_sem_destroy(&ms->pause_sem);
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002526}
2527
Peter Xue5cb7e72017-06-27 12:10:13 +08002528static void migration_instance_init(Object *obj)
2529{
2530 MigrationState *ms = MIGRATION_OBJ(obj);
Peter Xu8b0b29d2017-07-18 11:39:06 +08002531 MigrationParameters *params = &ms->parameters;
Peter Xue5cb7e72017-06-27 12:10:13 +08002532
2533 ms->state = MIGRATION_STATUS_NONE;
Peter Xue5cb7e72017-06-27 12:10:13 +08002534 ms->mbps = -1;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002535 qemu_sem_init(&ms->pause_sem, 0);
Juan Quintela87db1a72017-09-05 12:50:22 +02002536 qemu_mutex_init(&ms->error_mutex);
Peter Xu8b0b29d2017-07-18 11:39:06 +08002537
2538 params->tls_hostname = g_strdup("");
2539 params->tls_creds = g_strdup("");
2540
2541 /* Set has_* up only for parameter checks */
2542 params->has_compress_level = true;
2543 params->has_compress_threads = true;
2544 params->has_decompress_threads = true;
2545 params->has_cpu_throttle_initial = true;
2546 params->has_cpu_throttle_increment = true;
2547 params->has_max_bandwidth = true;
2548 params->has_downtime_limit = true;
2549 params->has_x_checkpoint_delay = true;
2550 params->has_block_incremental = true;
Juan Quintela4075fb12016-01-15 08:56:17 +01002551 params->has_x_multifd_channels = true;
Juan Quintela0fb86602017-04-27 10:48:25 +02002552 params->has_x_multifd_page_count = true;
Juan Quintela73af8dd2017-10-05 21:30:10 +02002553 params->has_xbzrle_cache_size = true;
Peter Xu8b0b29d2017-07-18 11:39:06 +08002554}
2555
2556/*
2557 * Return true if check pass, false otherwise. Error will be put
2558 * inside errp if provided.
2559 */
2560static bool migration_object_check(MigrationState *ms, Error **errp)
2561{
Peter Xu6b19a7d2017-07-18 11:39:10 +08002562 MigrationCapabilityStatusList *head = NULL;
2563 /* Assuming all off */
2564 bool cap_list[MIGRATION_CAPABILITY__MAX] = { 0 }, ret;
2565 int i;
2566
Peter Xu8b0b29d2017-07-18 11:39:06 +08002567 if (!migrate_params_check(&ms->parameters, errp)) {
2568 return false;
2569 }
2570
Peter Xu6b19a7d2017-07-18 11:39:10 +08002571 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
2572 if (ms->enabled_capabilities[i]) {
2573 head = migrate_cap_add(head, i, true);
2574 }
2575 }
2576
2577 ret = migrate_caps_check(cap_list, head, errp);
2578
2579 /* It works with head == NULL */
2580 qapi_free_MigrationCapabilityStatusList(head);
2581
2582 return ret;
Peter Xue5cb7e72017-06-27 12:10:13 +08002583}
2584
2585static const TypeInfo migration_type = {
2586 .name = TYPE_MIGRATION,
Peter Xu01f6e142017-06-28 15:15:44 +08002587 /*
Peter Xuc8d3ff32017-07-05 16:21:23 +08002588 * NOTE: TYPE_MIGRATION is not really a device, as the object is
2589 * not created using qdev_create(), it is not attached to the qdev
2590 * device tree, and it is never realized.
2591 *
2592 * TODO: Make this TYPE_OBJECT once QOM provides something like
2593 * TYPE_DEVICE's "-global" properties.
Peter Xu01f6e142017-06-28 15:15:44 +08002594 */
Peter Xue5cb7e72017-06-27 12:10:13 +08002595 .parent = TYPE_DEVICE,
2596 .class_init = migration_class_init,
2597 .class_size = sizeof(MigrationClass),
2598 .instance_size = sizeof(MigrationState),
2599 .instance_init = migration_instance_init,
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002600 .instance_finalize = migration_instance_finalize,
Peter Xue5cb7e72017-06-27 12:10:13 +08002601};
2602
2603static void register_migration_types(void)
2604{
2605 type_register_static(&migration_type);
2606}
2607
2608type_init(register_migration_types);