blob: 094196c2361778f2071b7701156c0565f6143c14 [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 Armbruster9af23982018-02-11 10:36:01 +010034#include "qapi/qapi-commands-migration.h"
35#include "qapi/qapi-events-migration.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010036#include "qapi/qmp/qerror.h"
Markus Armbruster15280c32018-02-01 12:18:36 +010037#include "qapi/qmp/qnull.h"
Paolo Bonziniab28bd22015-07-09 08:55:38 +020038#include "qemu/rcu.h"
Juan Quintela2c9e6fe2017-04-21 14:31:22 +020039#include "block.h"
Juan Quintelabe07b0a2017-04-20 13:12:24 +020040#include "postcopy-ram.h"
Juan Quintela766bd172012-07-23 05:45:29 +020041#include "qemu/thread.h"
Kazuya Saitoc09e5bb2013-02-22 17:36:19 +010042#include "trace.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 */
Peter Xud6208e32018-02-08 18:31:12 +0800208static int migrate_send_rp_message(MigrationIncomingState *mis,
209 enum mig_rp_message_type message_type,
210 uint16_t len, void *data)
Juan Quintelada6f1792017-04-24 17:37:14 +0200211{
Peter Xud6208e32018-02-08 18:31:12 +0800212 int ret = 0;
213
Juan Quintelada6f1792017-04-24 17:37:14 +0200214 trace_migrate_send_rp_message((int)message_type, len);
215 qemu_mutex_lock(&mis->rp_mutex);
Peter Xud6208e32018-02-08 18:31:12 +0800216
217 /*
218 * It's possible that the file handle got lost due to network
219 * failures.
220 */
221 if (!mis->to_src_file) {
222 ret = -EIO;
223 goto error;
224 }
225
Juan Quintelada6f1792017-04-24 17:37:14 +0200226 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
227 qemu_put_be16(mis->to_src_file, len);
228 qemu_put_buffer(mis->to_src_file, data, len);
229 qemu_fflush(mis->to_src_file);
Peter Xud6208e32018-02-08 18:31:12 +0800230
231 /* It's possible that qemu file got error during sending */
232 ret = qemu_file_get_error(mis->to_src_file);
233
234error:
Juan Quintelada6f1792017-04-24 17:37:14 +0200235 qemu_mutex_unlock(&mis->rp_mutex);
Peter Xud6208e32018-02-08 18:31:12 +0800236 return ret;
Juan Quintelada6f1792017-04-24 17:37:14 +0200237}
238
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000239/* Request a range of pages from the source VM at the given
240 * start address.
241 * rbname: Name of the RAMBlock to request the page in, if NULL it's the same
242 * as the last request (a name must have been given previously)
243 * Start: Address offset within the RB
244 * Len: Length in bytes required - must be a multiple of pagesize
245 */
Peter Xud6208e32018-02-08 18:31:12 +0800246int migrate_send_rp_req_pages(MigrationIncomingState *mis, const char *rbname,
247 ram_addr_t start, size_t len)
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000248{
Stefan Weilcb8d4c82016-03-23 15:59:57 +0100249 uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000250 size_t msglen = 12; /* start + len */
Peter Xud6208e32018-02-08 18:31:12 +0800251 enum mig_rp_message_type msg_type;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000252
253 *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
254 *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
255
256 if (rbname) {
257 int rbname_len = strlen(rbname);
258 assert(rbname_len < 256);
259
260 bufc[msglen++] = rbname_len;
261 memcpy(bufc + msglen, rbname, rbname_len);
262 msglen += rbname_len;
Peter Xud6208e32018-02-08 18:31:12 +0800263 msg_type = MIG_RP_MSG_REQ_PAGES_ID;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000264 } else {
Peter Xud6208e32018-02-08 18:31:12 +0800265 msg_type = MIG_RP_MSG_REQ_PAGES;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000266 }
Peter Xud6208e32018-02-08 18:31:12 +0800267
268 return migrate_send_rp_message(mis, msg_type, msglen, bufc);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000269}
270
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200271void qemu_start_incoming_migration(const char *uri, Error **errp)
aliguori5bb79102008-10-13 03:12:02 +0000272{
aliguori34c9dd82008-10-13 03:14:31 +0000273 const char *p;
274
Juan Quintela7cf1fe62015-05-20 17:15:42 +0200275 qapi_event_send_migration(MIGRATION_STATUS_SETUP, &error_abort);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000276 if (!strcmp(uri, "defer")) {
277 deferred_incoming_migration(errp);
278 } else if (strstart(uri, "tcp:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200279 tcp_start_incoming_migration(p, errp);
Michael R. Hines2da776d2013-07-22 10:01:54 -0400280#ifdef CONFIG_RDMA
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000281 } else if (strstart(uri, "rdma:", &p)) {
Michael R. Hines2da776d2013-07-22 10:01:54 -0400282 rdma_start_incoming_migration(p, errp);
283#endif
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000284 } else if (strstart(uri, "exec:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200285 exec_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000286 } else if (strstart(uri, "unix:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200287 unix_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000288 } else if (strstart(uri, "fd:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200289 fd_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000290 } else {
Markus Armbruster312fd5f2013-02-08 21:22:16 +0100291 error_setg(errp, "unknown migration protocol: %s", uri);
Juan Quintela8ca5e802010-06-09 14:10:54 +0200292 }
aliguori5bb79102008-10-13 03:12:02 +0000293}
294
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300295static void process_incoming_migration_bh(void *opaque)
296{
297 Error *local_err = NULL;
298 MigrationIncomingState *mis = opaque;
299
Kevin Wolface21a52017-05-04 18:52:36 +0200300 /* Make sure all file formats flush their mutable metadata.
301 * If we get an error here, just don't restart the VM yet. */
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300302 bdrv_invalidate_cache_all(&local_err);
Kevin Wolfd35ff5e2017-04-04 17:29:03 +0200303 if (local_err) {
Kevin Wolface21a52017-05-04 18:52:36 +0200304 error_report_err(local_err);
Kevin Wolfd35ff5e2017-04-04 17:29:03 +0200305 local_err = NULL;
306 autostart = false;
307 }
308
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300309 /*
310 * This must happen after all error conditions are dealt with and
311 * we're sure the VM is going to be running on this host.
312 */
313 qemu_announce_self();
314
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100315 if (multifd_load_cleanup(&local_err) != 0) {
316 error_report_err(local_err);
317 autostart = false;
318 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300319 /* If global state section was not received or we are in running
320 state, we need to obey autostart. Any other state is set with
321 runstate_set. */
322
323 if (!global_state_received() ||
324 global_state_get_runstate() == RUN_STATE_RUNNING) {
325 if (autostart) {
326 vm_start();
327 } else {
328 runstate_set(RUN_STATE_PAUSED);
329 }
330 } else {
331 runstate_set(global_state_get_runstate());
332 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300333 /*
334 * This must happen after any state changes since as soon as an external
335 * observer sees this event they might start to prod at the VM assuming
336 * it's ready to use.
337 */
338 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
339 MIGRATION_STATUS_COMPLETED);
340 qemu_bh_delete(mis->bh);
341 migration_incoming_state_destroy();
342}
343
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200344static void process_incoming_migration_co(void *opaque)
Juan Quintela511c0232010-06-09 14:10:55 +0200345{
Juan Quintelab4b076d2017-01-23 22:32:06 +0100346 MigrationIncomingState *mis = migration_incoming_get_current();
Dr. David Alan Gilberte9bef232015-11-05 18:11:21 +0000347 PostcopyState ps;
Paolo Bonzini1c12e1f2012-08-07 10:51:51 +0200348 int ret;
349
Juan Quintela4f0fae72017-07-24 12:42:02 +0200350 assert(mis->from_src_file);
Dr. David Alan Gilbert67f11b52017-02-24 18:28:34 +0000351 mis->largest_page_size = qemu_ram_pagesize_largest();
Dr. David Alan Gilbert093e3c42015-11-05 18:10:52 +0000352 postcopy_state_set(POSTCOPY_INCOMING_NONE);
zhanghailiang93d7af62015-12-16 11:47:34 +0000353 migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
354 MIGRATION_STATUS_ACTIVE);
Juan Quintela4f0fae72017-07-24 12:42:02 +0200355 ret = qemu_loadvm_state(mis->from_src_file);
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100356
Dr. David Alan Gilberte9bef232015-11-05 18:11:21 +0000357 ps = postcopy_state_get();
358 trace_process_incoming_migration_co_end(ret, ps);
359 if (ps != POSTCOPY_INCOMING_NONE) {
360 if (ps == POSTCOPY_INCOMING_ADVISE) {
361 /*
362 * Where a migration had postcopy enabled (and thus went to advise)
363 * but managed to complete within the precopy period, we can use
364 * the normal exit.
365 */
366 postcopy_ram_incoming_cleanup(mis);
367 } else if (ret >= 0) {
368 /*
369 * Postcopy was started, cleanup should happen at the end of the
370 * postcopy thread.
371 */
372 trace_process_incoming_migration_co_postcopy_end_main();
373 return;
374 }
375 /* Else if something went wrong then just fall out of the normal exit */
376 }
377
zhanghailiang25d0c162016-10-27 14:42:55 +0800378 /* we get COLO info, and know if we are in COLO mode */
379 if (!ret && migration_incoming_enable_colo()) {
380 mis->migration_incoming_co = qemu_coroutine_self();
381 qemu_thread_create(&mis->colo_incoming_thread, "COLO incoming",
382 colo_process_incoming_thread, mis, QEMU_THREAD_JOINABLE);
383 mis->have_colo_incoming_thread = true;
384 qemu_coroutine_yield();
385
386 /* Wait checkpoint incoming thread exit before free resource */
387 qemu_thread_join(&mis->colo_incoming_thread);
388 }
389
Paolo Bonzini1c12e1f2012-08-07 10:51:51 +0200390 if (ret < 0) {
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100391 Error *local_err = NULL;
392
zhanghailiang93d7af62015-12-16 11:47:34 +0000393 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
394 MIGRATION_STATUS_FAILED);
Peter Lievendb80fac2014-06-10 11:29:16 +0200395 error_report("load of migration failed: %s", strerror(-ret));
Dr. David Alan Gilbert3a0f2ce2017-07-17 12:09:32 +0100396 qemu_fclose(mis->from_src_file);
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100397 if (multifd_load_cleanup(&local_err) != 0) {
398 error_report_err(local_err);
399 }
Eric Blake4aead692013-04-16 15:50:41 -0600400 exit(EXIT_FAILURE);
Juan Quintela511c0232010-06-09 14:10:55 +0200401 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300402 mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
403 qemu_bh_schedule(mis->bh);
Juan Quintela511c0232010-06-09 14:10:55 +0200404}
405
Juan Quintelae595a012017-07-17 12:30:25 +0200406static void migration_incoming_setup(QEMUFile *f)
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200407{
Juan Quintela4f0fae72017-07-24 12:42:02 +0200408 MigrationIncomingState *mis = migration_incoming_get_current();
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200409
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100410 if (multifd_load_setup() != 0) {
411 /* We haven't been able to create multifd threads
412 nothing better to do */
413 exit(EXIT_FAILURE);
414 }
415
Juan Quintela4f0fae72017-07-24 12:42:02 +0200416 if (!mis->from_src_file) {
417 mis->from_src_file = f;
418 }
Daniel P. Berrange06ad5132016-04-27 11:04:56 +0100419 qemu_file_set_blocking(f, false);
Juan Quintelae595a012017-07-17 12:30:25 +0200420}
421
422static void migration_incoming_process(void)
423{
424 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL);
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200425 qemu_coroutine_enter(co);
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200426}
427
Juan Quintelae595a012017-07-17 12:30:25 +0200428void migration_fd_process_incoming(QEMUFile *f)
429{
430 migration_incoming_setup(f);
431 migration_incoming_process();
432}
433
Juan Quintela4f0fae72017-07-24 12:42:02 +0200434void migration_ioc_process_incoming(QIOChannel *ioc)
435{
436 MigrationIncomingState *mis = migration_incoming_get_current();
437
438 if (!mis->from_src_file) {
439 QEMUFile *f = qemu_fopen_channel_input(ioc);
440 migration_fd_process_incoming(f);
441 }
442 /* We still only have a single channel. Nothing to do here yet */
443}
444
Juan Quintela428d8902017-07-24 13:06:25 +0200445/**
446 * @migration_has_all_channels: We have received all channels that we need
447 *
448 * Returns true when we have got connections to all the channels that
449 * we need for migration.
450 */
451bool migration_has_all_channels(void)
452{
453 return true;
454}
455
Dr. David Alan Gilbert6decec92015-11-05 18:10:47 +0000456/*
Dr. David Alan Gilbert6decec92015-11-05 18:10:47 +0000457 * Send a 'SHUT' message on the return channel with the given value
458 * to indicate that we've finished with the RP. Non-0 value indicates
459 * error.
460 */
461void migrate_send_rp_shut(MigrationIncomingState *mis,
462 uint32_t value)
463{
464 uint32_t buf;
465
466 buf = cpu_to_be32(value);
467 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
468}
469
470/*
471 * Send a 'PONG' message on the return channel with the given value
472 * (normally in response to a 'PING')
473 */
474void migrate_send_rp_pong(MigrationIncomingState *mis,
475 uint32_t value)
476{
477 uint32_t buf;
478
479 buf = cpu_to_be32(value);
480 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
481}
482
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300483MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
484{
485 MigrationCapabilityStatusList *head = NULL;
486 MigrationCapabilityStatusList *caps;
487 MigrationState *s = migrate_get_current();
488 int i;
489
Michael Tokarev387eede2013-10-05 13:18:28 +0400490 caps = NULL; /* silence compiler warning */
Eric Blake7fb1cf12015-11-18 01:52:57 -0700491 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
Dr. David Alan Gilberted1701c2017-05-15 15:05:29 +0100492#ifndef CONFIG_LIVE_BLOCK_MIGRATION
493 if (i == MIGRATION_CAPABILITY_BLOCK) {
494 continue;
495 }
496#endif
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300497 if (head == NULL) {
498 head = g_malloc0(sizeof(*caps));
499 caps = head;
500 } else {
501 caps->next = g_malloc0(sizeof(*caps));
502 caps = caps->next;
503 }
504 caps->value =
505 g_malloc(sizeof(*caps->value));
506 caps->value->capability = i;
507 caps->value->state = s->enabled_capabilities[i];
508 }
509
510 return head;
511}
512
Liang Li85de8322015-03-23 16:32:28 +0800513MigrationParameters *qmp_query_migrate_parameters(Error **errp)
514{
515 MigrationParameters *params;
516 MigrationState *s = migrate_get_current();
517
Markus Armbrustere87fae42017-07-18 12:57:38 +0200518 /* TODO use QAPI_CLONE() instead of duplicating it inline */
Liang Li85de8322015-03-23 16:32:28 +0800519 params = g_malloc0(sizeof(*params));
Eric Blakede63ab62016-09-08 22:14:15 -0500520 params->has_compress_level = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100521 params->compress_level = s->parameters.compress_level;
Eric Blakede63ab62016-09-08 22:14:15 -0500522 params->has_compress_threads = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100523 params->compress_threads = s->parameters.compress_threads;
Eric Blakede63ab62016-09-08 22:14:15 -0500524 params->has_decompress_threads = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100525 params->decompress_threads = s->parameters.decompress_threads;
Eric Blakede63ab62016-09-08 22:14:15 -0500526 params->has_cpu_throttle_initial = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100527 params->cpu_throttle_initial = s->parameters.cpu_throttle_initial;
Eric Blakede63ab62016-09-08 22:14:15 -0500528 params->has_cpu_throttle_increment = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100529 params->cpu_throttle_increment = s->parameters.cpu_throttle_increment;
Markus Armbruster8cc99dc2017-07-18 12:04:54 +0200530 params->has_tls_creds = true;
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100531 params->tls_creds = g_strdup(s->parameters.tls_creds);
Markus Armbruster8cc99dc2017-07-18 12:04:54 +0200532 params->has_tls_hostname = true;
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100533 params->tls_hostname = g_strdup(s->parameters.tls_hostname);
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530534 params->has_max_bandwidth = true;
535 params->max_bandwidth = s->parameters.max_bandwidth;
536 params->has_downtime_limit = true;
537 params->downtime_limit = s->parameters.downtime_limit;
zhanghailiangfe39a4d2016-11-02 15:42:09 +0800538 params->has_x_checkpoint_delay = true;
zhanghailiang68b53592016-10-27 14:43:01 +0800539 params->x_checkpoint_delay = s->parameters.x_checkpoint_delay;
Juan Quintela2833c592017-04-05 18:32:37 +0200540 params->has_block_incremental = true;
541 params->block_incremental = s->parameters.block_incremental;
Juan Quintela4075fb12016-01-15 08:56:17 +0100542 params->has_x_multifd_channels = true;
543 params->x_multifd_channels = s->parameters.x_multifd_channels;
Juan Quintela0fb86602017-04-27 10:48:25 +0200544 params->has_x_multifd_page_count = true;
545 params->x_multifd_page_count = s->parameters.x_multifd_page_count;
Juan Quintela73af8dd2017-10-05 21:30:10 +0200546 params->has_xbzrle_cache_size = true;
547 params->xbzrle_cache_size = s->parameters.xbzrle_cache_size;
Liang Li85de8322015-03-23 16:32:28 +0800548
549 return params;
550}
551
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000552/*
553 * Return true if we're already in the middle of a migration
554 * (i.e. any of the active or setup states)
555 */
556static bool migration_is_setup_or_active(int state)
557{
558 switch (state) {
559 case MIGRATION_STATUS_ACTIVE:
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000560 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000561 case MIGRATION_STATUS_SETUP:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +0100562 case MIGRATION_STATUS_PRE_SWITCHOVER:
563 case MIGRATION_STATUS_DEVICE:
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000564 return true;
565
566 default:
567 return false;
568
569 }
570}
571
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100572static void populate_ram_info(MigrationInfo *info, MigrationState *s)
573{
574 info->has_ram = true;
575 info->ram = g_malloc0(sizeof(*info->ram));
Juan Quintela93604472017-06-06 19:49:03 +0200576 info->ram->transferred = ram_counters.transferred;
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100577 info->ram->total = ram_bytes_total();
Juan Quintela93604472017-06-06 19:49:03 +0200578 info->ram->duplicate = ram_counters.duplicate;
Juan Quintelabedf53c2017-03-13 20:35:54 +0100579 /* legacy value. It is not used anymore */
580 info->ram->skipped = 0;
Juan Quintela93604472017-06-06 19:49:03 +0200581 info->ram->normal = ram_counters.normal;
582 info->ram->normal_bytes = ram_counters.normal *
Juan Quintela20afaed2017-03-21 09:09:14 +0100583 qemu_target_page_size();
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100584 info->ram->mbps = s->mbps;
Juan Quintela93604472017-06-06 19:49:03 +0200585 info->ram->dirty_sync_count = ram_counters.dirty_sync_count;
586 info->ram->postcopy_requests = ram_counters.postcopy_requests;
Chao Fan030ce1f2017-03-21 10:22:43 +0800587 info->ram->page_size = qemu_target_page_size();
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100588
Juan Quintela114f5ae2017-05-04 10:09:21 +0200589 if (migrate_use_xbzrle()) {
590 info->has_xbzrle_cache = true;
591 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
592 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
Juan Quintela93604472017-06-06 19:49:03 +0200593 info->xbzrle_cache->bytes = xbzrle_counters.bytes;
594 info->xbzrle_cache->pages = xbzrle_counters.pages;
595 info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss;
596 info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate;
597 info->xbzrle_cache->overflow = xbzrle_counters.overflow;
Juan Quintela114f5ae2017-05-04 10:09:21 +0200598 }
599
Juan Quintela338182c2017-05-03 13:16:38 +0200600 if (cpu_throttle_active()) {
601 info->has_cpu_throttle_percentage = true;
602 info->cpu_throttle_percentage = cpu_throttle_get_percentage();
603 }
604
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100605 if (s->state != MIGRATION_STATUS_COMPLETED) {
606 info->ram->remaining = ram_bytes_remaining();
Juan Quintela93604472017-06-06 19:49:03 +0200607 info->ram->dirty_pages_rate = ram_counters.dirty_pages_rate;
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100608 }
609}
610
Juan Quintela930ac042017-05-04 10:21:46 +0200611static void populate_disk_info(MigrationInfo *info)
612{
613 if (blk_mig_active()) {
614 info->has_disk = true;
615 info->disk = g_malloc0(sizeof(*info->disk));
616 info->disk->transferred = blk_mig_bytes_transferred();
617 info->disk->remaining = blk_mig_bytes_remaining();
618 info->disk->total = blk_mig_bytes_total();
619 }
620}
621
Peter Maydellee869812018-01-22 13:20:14 +0000622MigrationInfo *qmp_query_migrate(Error **errp)
aliguori5bb79102008-10-13 03:12:02 +0000623{
Peter Maydellee869812018-01-22 13:20:14 +0000624 MigrationInfo *info = g_malloc0(sizeof(*info));
Juan Quintela17549e82011-10-05 13:50:43 +0200625 MigrationState *s = migrate_get_current();
aliguori376253e2009-03-05 23:01:23 +0000626
Juan Quintela17549e82011-10-05 13:50:43 +0200627 switch (s->state) {
zhanghailiang31194732015-03-13 16:08:38 +0800628 case MIGRATION_STATUS_NONE:
Juan Quintela17549e82011-10-05 13:50:43 +0200629 /* no migration has happened ever */
630 break;
zhanghailiang31194732015-03-13 16:08:38 +0800631 case MIGRATION_STATUS_SETUP:
Michael R. Hines29ae8a42013-07-22 10:01:57 -0400632 info->has_status = true;
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400633 info->has_total_time = false;
Michael R. Hines29ae8a42013-07-22 10:01:57 -0400634 break;
zhanghailiang31194732015-03-13 16:08:38 +0800635 case MIGRATION_STATUS_ACTIVE:
636 case MIGRATION_STATUS_CANCELLING:
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000637 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +0100638 case MIGRATION_STATUS_PRE_SWITCHOVER:
639 case MIGRATION_STATUS_DEVICE:
Juan Quintelac8f9f4f2017-06-06 19:21:29 +0200640 /* TODO add some postcopy stats */
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000641 info->has_status = true;
642 info->has_total_time = true;
643 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
Peter Xu4af246a2018-01-03 20:20:08 +0800644 - s->start_time;
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000645 info->has_expected_downtime = true;
646 info->expected_downtime = s->expected_downtime;
647 info->has_setup_time = true;
648 info->setup_time = s->setup_time;
649
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100650 populate_ram_info(info, s);
Juan Quintela930ac042017-05-04 10:21:46 +0200651 populate_disk_info(info);
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000652 break;
zhanghailiang0b827d52016-10-27 14:42:54 +0800653 case MIGRATION_STATUS_COLO:
654 info->has_status = true;
655 /* TODO: display COLO specific information (checkpoint info etc.) */
656 break;
zhanghailiang31194732015-03-13 16:08:38 +0800657 case MIGRATION_STATUS_COMPLETED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300658 info->has_status = true;
Pawit Pornkitprasan00c14992013-07-19 11:23:45 +0900659 info->has_total_time = true;
Juan Quintela7aa939a2012-08-18 13:17:10 +0200660 info->total_time = s->total_time;
Juan Quintela9c5a9fc2012-08-13 09:35:16 +0200661 info->has_downtime = true;
662 info->downtime = s->downtime;
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400663 info->has_setup_time = true;
664 info->setup_time = s->setup_time;
Juan Quintelad5f8a572012-05-21 22:01:07 +0200665
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100666 populate_ram_info(info, s);
Juan Quintela17549e82011-10-05 13:50:43 +0200667 break;
zhanghailiang31194732015-03-13 16:08:38 +0800668 case MIGRATION_STATUS_FAILED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300669 info->has_status = true;
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +0100670 if (s->error) {
671 info->has_error_desc = true;
672 info->error_desc = g_strdup(error_get_pretty(s->error));
673 }
Juan Quintela17549e82011-10-05 13:50:43 +0200674 break;
zhanghailiang31194732015-03-13 16:08:38 +0800675 case MIGRATION_STATUS_CANCELLED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300676 info->has_status = true;
Juan Quintela17549e82011-10-05 13:50:43 +0200677 break;
aliguori5bb79102008-10-13 03:12:02 +0000678 }
zhanghailiangcde63fb2015-03-13 16:08:41 +0800679 info->status = s->state;
Peter Maydellee869812018-01-22 13:20:14 +0000680
681 return info;
aliguori5bb79102008-10-13 03:12:02 +0000682}
683
Peter Xu4a842142017-07-18 11:39:08 +0800684/**
685 * @migration_caps_check - check capability validity
686 *
687 * @cap_list: old capability list, array of bool
688 * @params: new capabilities to be applied soon
689 * @errp: set *errp if the check failed, with reason
690 *
691 * Returns true if check passed, otherwise false.
692 */
693static bool migrate_caps_check(bool *cap_list,
694 MigrationCapabilityStatusList *params,
695 Error **errp)
Orit Wasserman00458432012-08-06 21:42:48 +0300696{
Orit Wasserman00458432012-08-06 21:42:48 +0300697 MigrationCapabilityStatusList *cap;
Peter Xu4a842142017-07-18 11:39:08 +0800698 bool old_postcopy_cap;
Alexey Perevalovd7651f12017-09-19 19:47:56 +0300699 MigrationIncomingState *mis = migration_incoming_get_current();
Orit Wasserman00458432012-08-06 21:42:48 +0300700
Peter Xu4a842142017-07-18 11:39:08 +0800701 old_postcopy_cap = cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM];
Orit Wasserman00458432012-08-06 21:42:48 +0300702
703 for (cap = params; cap; cap = cap->next) {
Peter Xu4a842142017-07-18 11:39:08 +0800704 cap_list[cap->value->capability] = cap->value->state;
Orit Wasserman00458432012-08-06 21:42:48 +0300705 }
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000706
Peter Xu4a842142017-07-18 11:39:08 +0800707#ifndef CONFIG_LIVE_BLOCK_MIGRATION
708 if (cap_list[MIGRATION_CAPABILITY_BLOCK]) {
709 error_setg(errp, "QEMU compiled without old-style (blk/-b, inc/-i) "
710 "block migration");
711 error_append_hint(errp, "Use drive_mirror+NBD instead.\n");
712 return false;
713 }
714#endif
715
716 if (cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM]) {
717 if (cap_list[MIGRATION_CAPABILITY_COMPRESS]) {
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000718 /* The decompression threads asynchronously write into RAM
719 * rather than use the atomic copies needed to avoid
720 * userfaulting. It should be possible to fix the decompression
721 * threads for compatibility in future.
722 */
Peter Xu4a842142017-07-18 11:39:08 +0800723 error_setg(errp, "Postcopy is not currently compatible "
724 "with compression");
725 return false;
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000726 }
Peter Xu4a842142017-07-18 11:39:08 +0800727
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100728 /* This check is reasonably expensive, so only when it's being
729 * set the first time, also it's only the destination that needs
730 * special support.
731 */
732 if (!old_postcopy_cap && runstate_check(RUN_STATE_INMIGRATE) &&
Alexey Perevalovd7651f12017-09-19 19:47:56 +0300733 !postcopy_ram_supported_by_host(mis)) {
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100734 /* postcopy_ram_supported_by_host will have emitted a more
735 * detailed message
736 */
Peter Xu4a842142017-07-18 11:39:08 +0800737 error_setg(errp, "Postcopy is not supported");
738 return false;
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100739 }
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000740 }
Peter Xu4a842142017-07-18 11:39:08 +0800741
742 return true;
743}
744
745void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
746 Error **errp)
747{
748 MigrationState *s = migrate_get_current();
749 MigrationCapabilityStatusList *cap;
Peter Xudd0ee302018-03-05 17:49:38 +0800750 bool cap_list[MIGRATION_CAPABILITY__MAX];
Peter Xu4a842142017-07-18 11:39:08 +0800751
752 if (migration_is_setup_or_active(s->state)) {
753 error_setg(errp, QERR_MIGRATION_ACTIVE);
754 return;
755 }
756
Peter Xudd0ee302018-03-05 17:49:38 +0800757 memcpy(cap_list, s->enabled_capabilities, sizeof(cap_list));
758 if (!migrate_caps_check(cap_list, params, errp)) {
Peter Xu4a842142017-07-18 11:39:08 +0800759 return;
760 }
761
762 for (cap = params; cap; cap = cap->next) {
763 s->enabled_capabilities[cap->value->capability] = cap->value->state;
764 }
Orit Wasserman00458432012-08-06 21:42:48 +0300765}
766
Peter Xu16d063b2017-07-18 11:39:04 +0800767/*
768 * Check whether the parameters are valid. Error will be put into errp
769 * (if provided). Return true if valid, otherwise false.
770 */
771static bool migrate_params_check(MigrationParameters *params, Error **errp)
Liang Li85de8322015-03-23 16:32:28 +0800772{
Eric Blake7f375e02016-09-08 22:14:16 -0500773 if (params->has_compress_level &&
Juan Quintela741d4082017-12-01 13:08:38 +0100774 (params->compress_level > 9)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100775 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
776 "is invalid, it should be in the range of 0 to 9");
Peter Xu16d063b2017-07-18 11:39:04 +0800777 return false;
Liang Li85de8322015-03-23 16:32:28 +0800778 }
Peter Xu16d063b2017-07-18 11:39:04 +0800779
Juan Quintela741d4082017-12-01 13:08:38 +0100780 if (params->has_compress_threads && (params->compress_threads < 1)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100781 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
782 "compress_threads",
783 "is invalid, it should be in the range of 1 to 255");
Peter Xu16d063b2017-07-18 11:39:04 +0800784 return false;
Liang Li85de8322015-03-23 16:32:28 +0800785 }
Peter Xu16d063b2017-07-18 11:39:04 +0800786
Juan Quintela741d4082017-12-01 13:08:38 +0100787 if (params->has_decompress_threads && (params->decompress_threads < 1)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100788 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
789 "decompress_threads",
790 "is invalid, it should be in the range of 1 to 255");
Peter Xu16d063b2017-07-18 11:39:04 +0800791 return false;
Liang Li85de8322015-03-23 16:32:28 +0800792 }
Peter Xu16d063b2017-07-18 11:39:04 +0800793
Eric Blake7f375e02016-09-08 22:14:16 -0500794 if (params->has_cpu_throttle_initial &&
795 (params->cpu_throttle_initial < 1 ||
796 params->cpu_throttle_initial > 99)) {
Jason J. Herne1626fee2015-09-08 13:12:34 -0400797 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
Jason J. Herned85a31d2016-04-21 14:07:18 -0400798 "cpu_throttle_initial",
Jason J. Herne1626fee2015-09-08 13:12:34 -0400799 "an integer in the range of 1 to 99");
Peter Xu16d063b2017-07-18 11:39:04 +0800800 return false;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400801 }
Peter Xu16d063b2017-07-18 11:39:04 +0800802
Eric Blake7f375e02016-09-08 22:14:16 -0500803 if (params->has_cpu_throttle_increment &&
804 (params->cpu_throttle_increment < 1 ||
805 params->cpu_throttle_increment > 99)) {
Jason J. Herne1626fee2015-09-08 13:12:34 -0400806 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
Jason J. Herned85a31d2016-04-21 14:07:18 -0400807 "cpu_throttle_increment",
Jason J. Herne1626fee2015-09-08 13:12:34 -0400808 "an integer in the range of 1 to 99");
Peter Xu16d063b2017-07-18 11:39:04 +0800809 return false;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400810 }
Peter Xu16d063b2017-07-18 11:39:04 +0800811
Juan Quintela741d4082017-12-01 13:08:38 +0100812 if (params->has_max_bandwidth && (params->max_bandwidth > SIZE_MAX)) {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530813 error_setg(errp, "Parameter 'max_bandwidth' expects an integer in the"
814 " range of 0 to %zu bytes/second", SIZE_MAX);
Peter Xu16d063b2017-07-18 11:39:04 +0800815 return false;
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530816 }
Peter Xu16d063b2017-07-18 11:39:04 +0800817
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530818 if (params->has_downtime_limit &&
Juan Quintela741d4082017-12-01 13:08:38 +0100819 (params->downtime_limit > MAX_MIGRATE_DOWNTIME)) {
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -0300820 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
821 "the range of 0 to %d milliseconds",
822 MAX_MIGRATE_DOWNTIME);
Peter Xu16d063b2017-07-18 11:39:04 +0800823 return false;
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530824 }
Peter Xu16d063b2017-07-18 11:39:04 +0800825
Juan Quintela741d4082017-12-01 13:08:38 +0100826 /* x_checkpoint_delay is now always positive */
827
828 if (params->has_x_multifd_channels && (params->x_multifd_channels < 1)) {
Juan Quintela4075fb12016-01-15 08:56:17 +0100829 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
830 "multifd_channels",
831 "is invalid, it should be in the range of 1 to 255");
832 return false;
833 }
Juan Quintela0fb86602017-04-27 10:48:25 +0200834 if (params->has_x_multifd_page_count &&
Juan Quintela741d4082017-12-01 13:08:38 +0100835 (params->x_multifd_page_count < 1 ||
836 params->x_multifd_page_count > 10000)) {
Juan Quintela0fb86602017-04-27 10:48:25 +0200837 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
838 "multifd_page_count",
839 "is invalid, it should be in the range of 1 to 10000");
840 return false;
841 }
Peter Xu16d063b2017-07-18 11:39:04 +0800842
Juan Quintela73af8dd2017-10-05 21:30:10 +0200843 if (params->has_xbzrle_cache_size &&
844 (params->xbzrle_cache_size < qemu_target_page_size() ||
845 !is_power_of_2(params->xbzrle_cache_size))) {
846 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
847 "xbzrle_cache_size",
848 "is invalid, it should be bigger than target page size"
849 " and a power of two");
850 return false;
851 }
852
Peter Xu16d063b2017-07-18 11:39:04 +0800853 return true;
854}
855
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200856static void migrate_params_test_apply(MigrateSetParameters *params,
857 MigrationParameters *dest)
858{
859 *dest = migrate_get_current()->parameters;
860
861 /* TODO use QAPI_CLONE() instead of duplicating it inline */
862
863 if (params->has_compress_level) {
864 dest->compress_level = params->compress_level;
865 }
866
867 if (params->has_compress_threads) {
868 dest->compress_threads = params->compress_threads;
869 }
870
871 if (params->has_decompress_threads) {
872 dest->decompress_threads = params->decompress_threads;
873 }
874
875 if (params->has_cpu_throttle_initial) {
876 dest->cpu_throttle_initial = params->cpu_throttle_initial;
877 }
878
879 if (params->has_cpu_throttle_increment) {
880 dest->cpu_throttle_increment = params->cpu_throttle_increment;
881 }
882
883 if (params->has_tls_creds) {
Markus Armbruster01fa5592017-07-18 14:42:04 +0200884 assert(params->tls_creds->type == QTYPE_QSTRING);
885 dest->tls_creds = g_strdup(params->tls_creds->u.s);
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200886 }
887
888 if (params->has_tls_hostname) {
Markus Armbruster01fa5592017-07-18 14:42:04 +0200889 assert(params->tls_hostname->type == QTYPE_QSTRING);
890 dest->tls_hostname = g_strdup(params->tls_hostname->u.s);
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200891 }
892
893 if (params->has_max_bandwidth) {
894 dest->max_bandwidth = params->max_bandwidth;
895 }
896
897 if (params->has_downtime_limit) {
898 dest->downtime_limit = params->downtime_limit;
899 }
900
901 if (params->has_x_checkpoint_delay) {
902 dest->x_checkpoint_delay = params->x_checkpoint_delay;
903 }
904
905 if (params->has_block_incremental) {
906 dest->block_incremental = params->block_incremental;
907 }
Juan Quintela5e7577a2017-10-09 18:07:56 +0200908 if (params->has_x_multifd_channels) {
909 dest->x_multifd_channels = params->x_multifd_channels;
910 }
911 if (params->has_x_multifd_page_count) {
912 dest->x_multifd_page_count = params->x_multifd_page_count;
913 }
Juan Quintela73af8dd2017-10-05 21:30:10 +0200914 if (params->has_xbzrle_cache_size) {
915 dest->xbzrle_cache_size = params->xbzrle_cache_size;
916 }
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200917}
918
Juan Quintela73af8dd2017-10-05 21:30:10 +0200919static void migrate_params_apply(MigrateSetParameters *params, Error **errp)
Peter Xu16d063b2017-07-18 11:39:04 +0800920{
921 MigrationState *s = migrate_get_current();
922
Markus Armbrustere87fae42017-07-18 12:57:38 +0200923 /* TODO use QAPI_CLONE() instead of duplicating it inline */
924
Eric Blake7f375e02016-09-08 22:14:16 -0500925 if (params->has_compress_level) {
926 s->parameters.compress_level = params->compress_level;
Liang Li85de8322015-03-23 16:32:28 +0800927 }
Peter Xu476c72a2017-07-18 11:39:05 +0800928
Eric Blake7f375e02016-09-08 22:14:16 -0500929 if (params->has_compress_threads) {
930 s->parameters.compress_threads = params->compress_threads;
Liang Li85de8322015-03-23 16:32:28 +0800931 }
Peter Xu476c72a2017-07-18 11:39:05 +0800932
Eric Blake7f375e02016-09-08 22:14:16 -0500933 if (params->has_decompress_threads) {
934 s->parameters.decompress_threads = params->decompress_threads;
Liang Li85de8322015-03-23 16:32:28 +0800935 }
Peter Xu476c72a2017-07-18 11:39:05 +0800936
Eric Blake7f375e02016-09-08 22:14:16 -0500937 if (params->has_cpu_throttle_initial) {
938 s->parameters.cpu_throttle_initial = params->cpu_throttle_initial;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400939 }
Peter Xu476c72a2017-07-18 11:39:05 +0800940
Eric Blake7f375e02016-09-08 22:14:16 -0500941 if (params->has_cpu_throttle_increment) {
942 s->parameters.cpu_throttle_increment = params->cpu_throttle_increment;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400943 }
Peter Xu476c72a2017-07-18 11:39:05 +0800944
Eric Blake7f375e02016-09-08 22:14:16 -0500945 if (params->has_tls_creds) {
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100946 g_free(s->parameters.tls_creds);
Markus Armbruster01fa5592017-07-18 14:42:04 +0200947 assert(params->tls_creds->type == QTYPE_QSTRING);
948 s->parameters.tls_creds = g_strdup(params->tls_creds->u.s);
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100949 }
Peter Xu476c72a2017-07-18 11:39:05 +0800950
Eric Blake7f375e02016-09-08 22:14:16 -0500951 if (params->has_tls_hostname) {
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100952 g_free(s->parameters.tls_hostname);
Markus Armbruster01fa5592017-07-18 14:42:04 +0200953 assert(params->tls_hostname->type == QTYPE_QSTRING);
954 s->parameters.tls_hostname = g_strdup(params->tls_hostname->u.s);
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100955 }
Peter Xu476c72a2017-07-18 11:39:05 +0800956
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530957 if (params->has_max_bandwidth) {
958 s->parameters.max_bandwidth = params->max_bandwidth;
959 if (s->to_dst_file) {
960 qemu_file_set_rate_limit(s->to_dst_file,
961 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
962 }
963 }
Peter Xu476c72a2017-07-18 11:39:05 +0800964
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530965 if (params->has_downtime_limit) {
966 s->parameters.downtime_limit = params->downtime_limit;
967 }
zhanghailiang68b53592016-10-27 14:43:01 +0800968
969 if (params->has_x_checkpoint_delay) {
970 s->parameters.x_checkpoint_delay = params->x_checkpoint_delay;
zhanghailiang479125d2017-01-17 20:57:42 +0800971 if (migration_in_colo_state()) {
972 colo_checkpoint_notify(s);
973 }
zhanghailiang68b53592016-10-27 14:43:01 +0800974 }
Peter Xu476c72a2017-07-18 11:39:05 +0800975
Juan Quintela2833c592017-04-05 18:32:37 +0200976 if (params->has_block_incremental) {
977 s->parameters.block_incremental = params->block_incremental;
978 }
Juan Quintela4075fb12016-01-15 08:56:17 +0100979 if (params->has_x_multifd_channels) {
980 s->parameters.x_multifd_channels = params->x_multifd_channels;
981 }
Juan Quintela0fb86602017-04-27 10:48:25 +0200982 if (params->has_x_multifd_page_count) {
983 s->parameters.x_multifd_page_count = params->x_multifd_page_count;
984 }
Juan Quintela73af8dd2017-10-05 21:30:10 +0200985 if (params->has_xbzrle_cache_size) {
986 s->parameters.xbzrle_cache_size = params->xbzrle_cache_size;
987 xbzrle_cache_resize(params->xbzrle_cache_size, errp);
988 }
Liang Li85de8322015-03-23 16:32:28 +0800989}
990
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200991void qmp_migrate_set_parameters(MigrateSetParameters *params, Error **errp)
Peter Xu476c72a2017-07-18 11:39:05 +0800992{
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200993 MigrationParameters tmp;
994
Markus Armbruster01fa5592017-07-18 14:42:04 +0200995 /* TODO Rewrite "" to null instead */
996 if (params->has_tls_creds
997 && params->tls_creds->type == QTYPE_QNULL) {
998 QDECREF(params->tls_creds->u.n);
999 params->tls_creds->type = QTYPE_QSTRING;
1000 params->tls_creds->u.s = strdup("");
1001 }
1002 /* TODO Rewrite "" to null instead */
1003 if (params->has_tls_hostname
1004 && params->tls_hostname->type == QTYPE_QNULL) {
1005 QDECREF(params->tls_hostname->u.n);
1006 params->tls_hostname->type = QTYPE_QSTRING;
1007 params->tls_hostname->u.s = strdup("");
1008 }
1009
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001010 migrate_params_test_apply(params, &tmp);
1011
1012 if (!migrate_params_check(&tmp, errp)) {
Peter Xu476c72a2017-07-18 11:39:05 +08001013 /* Invalid parameter */
1014 return;
1015 }
1016
Juan Quintela73af8dd2017-10-05 21:30:10 +02001017 migrate_params_apply(params, errp);
Peter Xu476c72a2017-07-18 11:39:05 +08001018}
1019
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001020
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001021void qmp_migrate_start_postcopy(Error **errp)
1022{
1023 MigrationState *s = migrate_get_current();
1024
1025 if (!migrate_postcopy_ram()) {
Dr. David Alan Gilberta54d3402015-11-12 11:34:44 +00001026 error_setg(errp, "Enable postcopy with migrate_set_capability before"
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001027 " the start of migration");
1028 return;
1029 }
1030
1031 if (s->state == MIGRATION_STATUS_NONE) {
1032 error_setg(errp, "Postcopy must be started after migration has been"
1033 " started");
1034 return;
1035 }
1036 /*
1037 * we don't error if migration has finished since that would be racy
1038 * with issuing this command.
1039 */
1040 atomic_set(&s->start_postcopy, true);
1041}
1042
aliguori065e2812008-11-11 16:46:33 +00001043/* shared migration helpers */
1044
zhanghailiang48781e52015-12-16 11:47:33 +00001045void migrate_set_state(int *state, int old_state, int new_state)
Zhanghaoyu (A)51cf4c12013-11-07 11:01:15 +00001046{
Peter Xua31fede2017-08-30 16:32:01 +08001047 assert(new_state < MIGRATION_STATUS__MAX);
zhanghailiang48781e52015-12-16 11:47:33 +00001048 if (atomic_cmpxchg(state, old_state, new_state) == old_state) {
Peter Xua31fede2017-08-30 16:32:01 +08001049 trace_migrate_set_state(MigrationStatus_str(new_state));
Juan Quintelab05dc722015-07-07 14:44:05 +02001050 migrate_generate_event(new_state);
Zhanghaoyu (A)51cf4c12013-11-07 11:01:15 +00001051 }
1052}
1053
Peter Xu4e4a3d32017-07-18 11:39:09 +08001054static MigrationCapabilityStatusList *migrate_cap_add(
1055 MigrationCapabilityStatusList *list,
1056 MigrationCapability index,
1057 bool state)
Juan Quintela2833c592017-04-05 18:32:37 +02001058{
1059 MigrationCapabilityStatusList *cap;
1060
1061 cap = g_new0(MigrationCapabilityStatusList, 1);
1062 cap->value = g_new0(MigrationCapabilityStatus, 1);
Peter Xu4e4a3d32017-07-18 11:39:09 +08001063 cap->value->capability = index;
1064 cap->value->state = state;
1065 cap->next = list;
1066
1067 return cap;
1068}
1069
1070void migrate_set_block_enabled(bool value, Error **errp)
1071{
1072 MigrationCapabilityStatusList *cap;
1073
1074 cap = migrate_cap_add(NULL, MIGRATION_CAPABILITY_BLOCK, value);
Juan Quintela2833c592017-04-05 18:32:37 +02001075 qmp_migrate_set_capabilities(cap, errp);
1076 qapi_free_MigrationCapabilityStatusList(cap);
1077}
1078
1079static void migrate_set_block_incremental(MigrationState *s, bool value)
1080{
1081 s->parameters.block_incremental = value;
1082}
1083
1084static void block_cleanup_parameters(MigrationState *s)
1085{
1086 if (s->must_remove_block_options) {
1087 /* setting to false can never fail */
1088 migrate_set_block_enabled(false, &error_abort);
1089 migrate_set_block_incremental(s, false);
1090 s->must_remove_block_options = false;
1091 }
1092}
1093
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01001094static void migrate_fd_cleanup(void *opaque)
aliguori065e2812008-11-11 16:46:33 +00001095{
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01001096 MigrationState *s = opaque;
1097
1098 qemu_bh_delete(s->cleanup_bh);
1099 s->cleanup_bh = NULL;
1100
Peter Xu0ceccd82018-01-03 20:20:06 +08001101 qemu_savevm_state_cleanup();
1102
zhanghailiang89a02a92016-01-15 11:37:42 +08001103 if (s->to_dst_file) {
Juan Quintelaf986c3d2016-01-14 16:52:55 +01001104 Error *local_err = NULL;
1105
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +11001106 trace_migrate_fd_cleanup();
Paolo Bonzini404a7c02013-02-22 17:36:46 +01001107 qemu_mutex_unlock_iothread();
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001108 if (s->migration_thread_running) {
1109 qemu_thread_join(&s->thread);
1110 s->migration_thread_running = false;
1111 }
Paolo Bonzini404a7c02013-02-22 17:36:46 +01001112 qemu_mutex_lock_iothread();
1113
Juan Quintelaf986c3d2016-01-14 16:52:55 +01001114 if (multifd_save_cleanup(&local_err) != 0) {
1115 error_report_err(local_err);
1116 }
zhanghailiang89a02a92016-01-15 11:37:42 +08001117 qemu_fclose(s->to_dst_file);
1118 s->to_dst_file = NULL;
aliguori065e2812008-11-11 16:46:33 +00001119 }
1120
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001121 assert((s->state != MIGRATION_STATUS_ACTIVE) &&
1122 (s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE));
Paolo Bonzini7a2c1722013-02-22 17:36:09 +01001123
Liang Li94f5a432015-11-02 15:37:00 +08001124 if (s->state == MIGRATION_STATUS_CANCELLING) {
zhanghailiang48781e52015-12-16 11:47:33 +00001125 migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
Liang Li94f5a432015-11-02 15:37:00 +08001126 MIGRATION_STATUS_CANCELLED);
Paolo Bonzini7a2c1722013-02-22 17:36:09 +01001127 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01001128
Juan Quintela87db1a72017-09-05 12:50:22 +02001129 if (s->error) {
1130 /* It is used on info migrate. We can't free it */
1131 error_report_err(error_copy(s->error));
1132 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01001133 notifier_list_notify(&migration_state_notifiers, s);
Juan Quintela2833c592017-04-05 18:32:37 +02001134 block_cleanup_parameters(s);
aliguori065e2812008-11-11 16:46:33 +00001135}
1136
Juan Quintela87db1a72017-09-05 12:50:22 +02001137void migrate_set_error(MigrationState *s, const Error *error)
1138{
1139 qemu_mutex_lock(&s->error_mutex);
1140 if (!s->error) {
1141 s->error = error_copy(error);
1142 }
1143 qemu_mutex_unlock(&s->error_mutex);
1144}
1145
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001146void migrate_fd_error(MigrationState *s, const Error *error)
aliguori065e2812008-11-11 16:46:33 +00001147{
Peter Maydell25174052016-10-21 18:41:45 +01001148 trace_migrate_fd_error(error_get_pretty(error));
zhanghailiang89a02a92016-01-15 11:37:42 +08001149 assert(s->to_dst_file == NULL);
zhanghailiang48781e52015-12-16 11:47:33 +00001150 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1151 MIGRATION_STATUS_FAILED);
Juan Quintela87db1a72017-09-05 12:50:22 +02001152 migrate_set_error(s, error);
Juan Quintela458cf282011-02-22 23:32:54 +01001153}
1154
Juan Quintela0edda1c2010-05-11 16:28:39 +02001155static void migrate_fd_cancel(MigrationState *s)
aliguori065e2812008-11-11 16:46:33 +00001156{
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001157 int old_state ;
zhanghailiang89a02a92016-01-15 11:37:42 +08001158 QEMUFile *f = migrate_get_current()->to_dst_file;
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +11001159 trace_migrate_fd_cancel();
aliguori065e2812008-11-11 16:46:33 +00001160
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001161 if (s->rp_state.from_dst_file) {
1162 /* shutdown the rp socket, so causing the rp thread to shutdown */
1163 qemu_file_shutdown(s->rp_state.from_dst_file);
1164 }
1165
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001166 do {
1167 old_state = s->state;
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +00001168 if (!migration_is_setup_or_active(old_state)) {
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001169 break;
1170 }
Dr. David Alan Gilberta7b36b42017-10-20 10:05:55 +01001171 /* If the migration is paused, kick it out of the pause */
1172 if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) {
1173 qemu_sem_post(&s->pause_sem);
1174 }
zhanghailiang48781e52015-12-16 11:47:33 +00001175 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
zhanghailiang31194732015-03-13 16:08:38 +08001176 } while (s->state != MIGRATION_STATUS_CANCELLING);
Dr. David Alan Gilberta26ba262015-01-08 11:11:32 +00001177
1178 /*
1179 * If we're unlucky the migration code might be stuck somewhere in a
1180 * send/write while the network has failed and is waiting to timeout;
1181 * if we've got shutdown(2) available then we can force it to quit.
1182 * The outgoing qemu file gets closed in migrate_fd_cleanup that is
1183 * called in a bh, so there is no race against this cancel.
1184 */
zhanghailiang31194732015-03-13 16:08:38 +08001185 if (s->state == MIGRATION_STATUS_CANCELLING && f) {
Dr. David Alan Gilberta26ba262015-01-08 11:11:32 +00001186 qemu_file_shutdown(f);
1187 }
zhanghailiang1d2acc32017-01-24 15:59:52 +08001188 if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
1189 Error *local_err = NULL;
1190
1191 bdrv_invalidate_cache_all(&local_err);
1192 if (local_err) {
1193 error_report_err(local_err);
1194 } else {
1195 s->block_inactive = false;
1196 }
1197 }
aliguori065e2812008-11-11 16:46:33 +00001198}
1199
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001200void add_migration_state_change_notifier(Notifier *notify)
1201{
1202 notifier_list_add(&migration_state_notifiers, notify);
1203}
1204
1205void remove_migration_state_change_notifier(Notifier *notify)
1206{
Paolo Bonzini31552522012-01-13 17:34:01 +01001207 notifier_remove(notify);
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001208}
1209
Stefan Hajnoczi02edd2e2013-07-29 15:01:58 +02001210bool migration_in_setup(MigrationState *s)
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001211{
zhanghailiang31194732015-03-13 16:08:38 +08001212 return s->state == MIGRATION_STATUS_SETUP;
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001213}
1214
Juan Quintela70736932011-02-23 00:43:59 +01001215bool migration_has_finished(MigrationState *s)
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001216{
zhanghailiang31194732015-03-13 16:08:38 +08001217 return s->state == MIGRATION_STATUS_COMPLETED;
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001218}
Juan Quintela0edda1c2010-05-11 16:28:39 +02001219
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001220bool migration_has_failed(MigrationState *s)
1221{
zhanghailiang31194732015-03-13 16:08:38 +08001222 return (s->state == MIGRATION_STATUS_CANCELLED ||
1223 s->state == MIGRATION_STATUS_FAILED);
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001224}
1225
Juan Quintela57273092017-03-20 22:25:28 +01001226bool migration_in_postcopy(void)
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001227{
Juan Quintela57273092017-03-20 22:25:28 +01001228 MigrationState *s = migrate_get_current();
1229
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001230 return (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
1231}
1232
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001233bool migration_in_postcopy_after_devices(MigrationState *s)
1234{
Juan Quintela57273092017-03-20 22:25:28 +01001235 return migration_in_postcopy() && s->postcopy_after_devices;
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001236}
1237
Juan Quintelafab35002017-03-22 17:36:57 +01001238bool migration_is_idle(void)
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301239{
Juan Quintelafab35002017-03-22 17:36:57 +01001240 MigrationState *s = migrate_get_current();
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301241
1242 switch (s->state) {
1243 case MIGRATION_STATUS_NONE:
1244 case MIGRATION_STATUS_CANCELLED:
1245 case MIGRATION_STATUS_COMPLETED:
1246 case MIGRATION_STATUS_FAILED:
1247 return true;
1248 case MIGRATION_STATUS_SETUP:
1249 case MIGRATION_STATUS_CANCELLING:
1250 case MIGRATION_STATUS_ACTIVE:
1251 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1252 case MIGRATION_STATUS_COLO:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +01001253 case MIGRATION_STATUS_PRE_SWITCHOVER:
1254 case MIGRATION_STATUS_DEVICE:
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301255 return false;
1256 case MIGRATION_STATUS__MAX:
1257 g_assert_not_reached();
1258 }
1259
1260 return false;
1261}
1262
Peter Xu3e0c8052018-02-08 18:31:15 +08001263void migrate_init(MigrationState *s)
Juan Quintela0edda1c2010-05-11 16:28:39 +02001264{
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001265 /*
1266 * Reinitialise all migration state, except
1267 * parameters/capabilities that the user set, and
1268 * locks.
1269 */
1270 s->bytes_xfer = 0;
1271 s->xfer_limit = 0;
1272 s->cleanup_bh = 0;
zhanghailiang89a02a92016-01-15 11:37:42 +08001273 s->to_dst_file = NULL;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001274 s->state = MIGRATION_STATUS_NONE;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001275 s->rp_state.from_dst_file = NULL;
1276 s->rp_state.error = false;
1277 s->mbps = 0.0;
1278 s->downtime = 0;
1279 s->expected_downtime = 0;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001280 s->setup_time = 0;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001281 s->start_postcopy = false;
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001282 s->postcopy_after_devices = false;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001283 s->migration_thread_running = false;
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001284 error_free(s->error);
1285 s->error = NULL;
Juan Quintela1299c632011-11-09 21:29:01 +01001286
zhanghailiang48781e52015-12-16 11:47:33 +00001287 migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
Juan Quintela0edda1c2010-05-11 16:28:39 +02001288
Peter Xu4af246a2018-01-03 20:20:08 +08001289 s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1290 s->total_time = 0;
Peter Xu7287cbd2018-01-03 20:20:09 +08001291 s->vm_was_running = false;
Peter Xub15df1a2018-01-03 20:20:13 +08001292 s->iteration_initial_bytes = 0;
1293 s->threshold_size = 0;
Juan Quintela0edda1c2010-05-11 16:28:39 +02001294}
Juan Quintelacab30142011-02-22 23:54:21 +01001295
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001296static GSList *migration_blockers;
1297
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301298int migrate_add_blocker(Error *reason, Error **errp)
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001299{
Peter Xu3df663e2017-06-27 12:10:15 +08001300 if (migrate_get_current()->only_migratable) {
Ashijeet Acharyab67b8c32017-01-16 17:01:54 +05301301 error_propagate(errp, error_copy(reason));
1302 error_prepend(errp, "disallowing migration blocker "
1303 "(--only_migratable) for: ");
1304 return -EACCES;
1305 }
1306
Juan Quintelafab35002017-03-22 17:36:57 +01001307 if (migration_is_idle()) {
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301308 migration_blockers = g_slist_prepend(migration_blockers, reason);
1309 return 0;
1310 }
1311
1312 error_propagate(errp, error_copy(reason));
1313 error_prepend(errp, "disallowing migration blocker (migration in "
1314 "progress) for: ");
1315 return -EBUSY;
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001316}
1317
1318void migrate_del_blocker(Error *reason)
1319{
1320 migration_blockers = g_slist_remove(migration_blockers, reason);
1321}
1322
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001323void qmp_migrate_incoming(const char *uri, Error **errp)
1324{
1325 Error *local_err = NULL;
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001326 static bool once = true;
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001327
1328 if (!deferred_incoming) {
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001329 error_setg(errp, "For use with '-incoming defer'");
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001330 return;
1331 }
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001332 if (!once) {
1333 error_setg(errp, "The incoming migration has already been started");
1334 }
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001335
1336 qemu_start_incoming_migration(uri, &local_err);
1337
1338 if (local_err) {
1339 error_propagate(errp, local_err);
1340 return;
1341 }
1342
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001343 once = false;
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001344}
1345
Greg Kurz24f39022016-05-04 21:44:19 +02001346bool migration_is_blocked(Error **errp)
1347{
1348 if (qemu_savevm_state_blocked(errp)) {
1349 return true;
1350 }
1351
1352 if (migration_blockers) {
Eduardo Habkost250561e2017-06-08 10:39:05 -03001353 error_propagate(errp, error_copy(migration_blockers->data));
Greg Kurz24f39022016-05-04 21:44:19 +02001354 return true;
1355 }
1356
1357 return false;
1358}
1359
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001360void qmp_migrate(const char *uri, bool has_blk, bool blk,
1361 bool has_inc, bool inc, bool has_detach, bool detach,
1362 Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001363{
Paolo Bonzinibe7059c2012-10-03 14:34:33 +02001364 Error *local_err = NULL;
Juan Quintela17549e82011-10-05 13:50:43 +02001365 MigrationState *s = migrate_get_current();
Juan Quintelacab30142011-02-22 23:54:21 +01001366 const char *p;
Juan Quintelacab30142011-02-22 23:54:21 +01001367
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +00001368 if (migration_is_setup_or_active(s->state) ||
zhanghailiang0b827d52016-10-27 14:42:54 +08001369 s->state == MIGRATION_STATUS_CANCELLING ||
1370 s->state == MIGRATION_STATUS_COLO) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001371 error_setg(errp, QERR_MIGRATION_ACTIVE);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001372 return;
Juan Quintelacab30142011-02-22 23:54:21 +01001373 }
Dr. David Alan Gilbertca999932014-04-14 17:03:59 +01001374 if (runstate_check(RUN_STATE_INMIGRATE)) {
1375 error_setg(errp, "Guest is waiting for an incoming migration");
1376 return;
1377 }
1378
Greg Kurz24f39022016-05-04 21:44:19 +02001379 if (migration_is_blocked(errp)) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001380 return;
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001381 }
1382
Juan Quintela2833c592017-04-05 18:32:37 +02001383 if ((has_blk && blk) || (has_inc && inc)) {
1384 if (migrate_use_block() || migrate_use_block_incremental()) {
1385 error_setg(errp, "Command options are incompatible with "
1386 "current migration capabilities");
1387 return;
1388 }
1389 migrate_set_block_enabled(true, &local_err);
1390 if (local_err) {
1391 error_propagate(errp, local_err);
1392 return;
1393 }
1394 s->must_remove_block_options = true;
1395 }
1396
1397 if (has_inc && inc) {
1398 migrate_set_block_incremental(s, true);
1399 }
1400
Peter Xu3e0c8052018-02-08 18:31:15 +08001401 migrate_init(s);
Juan Quintelacab30142011-02-22 23:54:21 +01001402
1403 if (strstart(uri, "tcp:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001404 tcp_start_outgoing_migration(s, p, &local_err);
Michael R. Hines2da776d2013-07-22 10:01:54 -04001405#ifdef CONFIG_RDMA
Michael R. Hines41310c62013-12-19 04:52:01 +08001406 } else if (strstart(uri, "rdma:", &p)) {
Michael R. Hines2da776d2013-07-22 10:01:54 -04001407 rdma_start_outgoing_migration(s, p, &local_err);
1408#endif
Juan Quintelacab30142011-02-22 23:54:21 +01001409 } else if (strstart(uri, "exec:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001410 exec_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001411 } else if (strstart(uri, "unix:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001412 unix_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001413 } else if (strstart(uri, "fd:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001414 fd_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001415 } else {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001416 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
1417 "a valid migration protocol");
zhanghailiang48781e52015-12-16 11:47:33 +00001418 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1419 MIGRATION_STATUS_FAILED);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001420 return;
Juan Quintelacab30142011-02-22 23:54:21 +01001421 }
1422
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001423 if (local_err) {
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001424 migrate_fd_error(s, local_err);
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001425 error_propagate(errp, local_err);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001426 return;
Juan Quintela1299c632011-11-09 21:29:01 +01001427 }
Juan Quintelacab30142011-02-22 23:54:21 +01001428}
1429
Luiz Capitulino6cdedb02011-11-27 22:54:09 -02001430void qmp_migrate_cancel(Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001431{
Juan Quintela17549e82011-10-05 13:50:43 +02001432 migrate_fd_cancel(migrate_get_current());
Juan Quintelacab30142011-02-22 23:54:21 +01001433}
1434
Dr. David Alan Gilbert89cfc022017-10-20 10:05:53 +01001435void qmp_migrate_continue(MigrationStatus state, Error **errp)
1436{
1437 MigrationState *s = migrate_get_current();
1438 if (s->state != state) {
1439 error_setg(errp, "Migration not in expected state: %s",
1440 MigrationStatus_str(s->state));
1441 return;
1442 }
1443 qemu_sem_post(&s->pause_sem);
1444}
1445
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001446void qmp_migrate_set_cache_size(int64_t value, Error **errp)
1447{
Juan Quintela73af8dd2017-10-05 21:30:10 +02001448 MigrateSetParameters p = {
1449 .has_xbzrle_cache_size = true,
1450 .xbzrle_cache_size = value,
1451 };
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001452
Juan Quintela73af8dd2017-10-05 21:30:10 +02001453 qmp_migrate_set_parameters(&p, errp);
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001454}
1455
1456int64_t qmp_query_migrate_cache_size(Error **errp)
1457{
1458 return migrate_xbzrle_cache_size();
1459}
1460
Luiz Capitulino3dc85382011-11-28 11:59:37 -02001461void qmp_migrate_set_speed(int64_t value, Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001462{
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001463 MigrateSetParameters p = {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301464 .has_max_bandwidth = true,
1465 .max_bandwidth = value,
1466 };
Juan Quintelacab30142011-02-22 23:54:21 +01001467
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301468 qmp_migrate_set_parameters(&p, errp);
Juan Quintelacab30142011-02-22 23:54:21 +01001469}
1470
Luiz Capitulino4f0a9932011-11-27 23:18:01 -02001471void qmp_migrate_set_downtime(double value, Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001472{
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -03001473 if (value < 0 || value > MAX_MIGRATE_DOWNTIME_SECONDS) {
1474 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
1475 "the range of 0 to %d seconds",
1476 MAX_MIGRATE_DOWNTIME_SECONDS);
1477 return;
1478 }
1479
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301480 value *= 1000; /* Convert to milliseconds */
1481 value = MAX(0, MIN(INT64_MAX, value));
1482
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001483 MigrateSetParameters p = {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301484 .has_downtime_limit = true,
1485 .downtime_limit = value,
1486 };
1487
1488 qmp_migrate_set_parameters(&p, errp);
aliguori5bb79102008-10-13 03:12:02 +00001489}
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001490
Pavel Butsykin53f09a12017-02-03 18:23:20 +03001491bool migrate_release_ram(void)
1492{
1493 MigrationState *s;
1494
1495 s = migrate_get_current();
1496
1497 return s->enabled_capabilities[MIGRATION_CAPABILITY_RELEASE_RAM];
1498}
1499
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +00001500bool migrate_postcopy_ram(void)
1501{
1502 MigrationState *s;
1503
1504 s = migrate_get_current();
1505
Dr. David Alan Gilbert32c3db52016-03-11 09:53:36 +00001506 return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM];
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +00001507}
1508
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001509bool migrate_postcopy(void)
1510{
Vladimir Sementsov-Ogievskiydd6bb912018-03-13 15:34:00 -04001511 return migrate_postcopy_ram() || migrate_dirty_bitmaps();
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001512}
1513
Chegu Vinodbde1e2e2013-06-24 03:49:42 -06001514bool migrate_auto_converge(void)
1515{
1516 MigrationState *s;
1517
1518 s = migrate_get_current();
1519
1520 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
1521}
1522
Peter Lieven323004a2013-07-18 09:48:50 +02001523bool migrate_zero_blocks(void)
1524{
1525 MigrationState *s;
1526
1527 s = migrate_get_current();
1528
1529 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
1530}
1531
Liang Li8706d2d2015-03-23 16:32:17 +08001532bool migrate_use_compression(void)
1533{
Liang Lidde4e692015-03-23 16:32:26 +08001534 MigrationState *s;
1535
1536 s = migrate_get_current();
1537
1538 return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
Liang Li8706d2d2015-03-23 16:32:17 +08001539}
1540
1541int migrate_compress_level(void)
1542{
1543 MigrationState *s;
1544
1545 s = migrate_get_current();
1546
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001547 return s->parameters.compress_level;
Liang Li8706d2d2015-03-23 16:32:17 +08001548}
1549
1550int migrate_compress_threads(void)
1551{
1552 MigrationState *s;
1553
1554 s = migrate_get_current();
1555
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001556 return s->parameters.compress_threads;
Liang Li8706d2d2015-03-23 16:32:17 +08001557}
1558
Liang Li3fcb38c2015-03-23 16:32:18 +08001559int migrate_decompress_threads(void)
1560{
1561 MigrationState *s;
1562
1563 s = migrate_get_current();
1564
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001565 return s->parameters.decompress_threads;
Liang Li3fcb38c2015-03-23 16:32:18 +08001566}
1567
Vladimir Sementsov-Ogievskiy55efc8c2018-03-13 15:34:00 -04001568bool migrate_dirty_bitmaps(void)
1569{
1570 MigrationState *s;
1571
1572 s = migrate_get_current();
1573
1574 return s->enabled_capabilities[MIGRATION_CAPABILITY_DIRTY_BITMAPS];
1575}
1576
Juan Quintelab05dc722015-07-07 14:44:05 +02001577bool migrate_use_events(void)
1578{
1579 MigrationState *s;
1580
1581 s = migrate_get_current();
1582
1583 return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS];
1584}
1585
Juan Quintela30126bb2016-01-14 12:23:00 +01001586bool migrate_use_multifd(void)
1587{
1588 MigrationState *s;
1589
1590 s = migrate_get_current();
1591
1592 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_MULTIFD];
1593}
1594
Dr. David Alan Gilbert93fbd032017-10-20 10:05:50 +01001595bool migrate_pause_before_switchover(void)
1596{
1597 MigrationState *s;
1598
1599 s = migrate_get_current();
1600
1601 return s->enabled_capabilities[
1602 MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER];
1603}
1604
Juan Quintela4075fb12016-01-15 08:56:17 +01001605int migrate_multifd_channels(void)
1606{
1607 MigrationState *s;
1608
1609 s = migrate_get_current();
1610
1611 return s->parameters.x_multifd_channels;
1612}
1613
Juan Quintela0fb86602017-04-27 10:48:25 +02001614int migrate_multifd_page_count(void)
1615{
1616 MigrationState *s;
1617
1618 s = migrate_get_current();
1619
1620 return s->parameters.x_multifd_page_count;
1621}
1622
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001623int migrate_use_xbzrle(void)
1624{
1625 MigrationState *s;
1626
1627 s = migrate_get_current();
1628
1629 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
1630}
1631
1632int64_t migrate_xbzrle_cache_size(void)
1633{
1634 MigrationState *s;
1635
1636 s = migrate_get_current();
1637
Juan Quintela73af8dd2017-10-05 21:30:10 +02001638 return s->parameters.xbzrle_cache_size;
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001639}
Juan Quintela0d82d0e2012-10-03 14:18:33 +02001640
Juan Quintela2833c592017-04-05 18:32:37 +02001641bool migrate_use_block(void)
1642{
1643 MigrationState *s;
1644
1645 s = migrate_get_current();
1646
1647 return s->enabled_capabilities[MIGRATION_CAPABILITY_BLOCK];
1648}
1649
Peter Xuc788ada2017-06-26 18:28:55 +08001650bool migrate_use_return_path(void)
1651{
1652 MigrationState *s;
1653
1654 s = migrate_get_current();
1655
1656 return s->enabled_capabilities[MIGRATION_CAPABILITY_RETURN_PATH];
1657}
1658
Juan Quintela2833c592017-04-05 18:32:37 +02001659bool migrate_use_block_incremental(void)
1660{
1661 MigrationState *s;
1662
1663 s = migrate_get_current();
1664
1665 return s->parameters.block_incremental;
1666}
1667
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001668/* migration thread support */
1669/*
1670 * Something bad happened to the RP stream, mark an error
1671 * The caller shall print or trace something to indicate why
1672 */
1673static void mark_source_rp_bad(MigrationState *s)
1674{
1675 s->rp_state.error = true;
1676}
1677
1678static struct rp_cmd_args {
1679 ssize_t len; /* -1 = variable */
1680 const char *name;
1681} rp_cmd_args[] = {
1682 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
1683 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
1684 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001685 [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" },
1686 [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" },
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001687 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
1688};
1689
1690/*
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001691 * Process a request for pages received on the return path,
1692 * We're allowed to send more than requested (e.g. to round to our page size)
1693 * and we don't need to send pages that have already been sent.
1694 */
1695static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
1696 ram_addr_t start, size_t len)
1697{
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001698 long our_host_ps = getpagesize();
1699
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001700 trace_migrate_handle_rp_req_pages(rbname, start, len);
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001701
1702 /*
1703 * Since we currently insist on matching page sizes, just sanity check
1704 * we're being asked for whole host pages.
1705 */
1706 if (start & (our_host_ps-1) ||
1707 (len & (our_host_ps-1))) {
1708 error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1709 " len: %zd", __func__, start, len);
1710 mark_source_rp_bad(ms);
1711 return;
1712 }
1713
Juan Quintela96506892017-03-14 18:41:03 +01001714 if (ram_save_queue_pages(rbname, start, len)) {
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001715 mark_source_rp_bad(ms);
1716 }
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001717}
1718
1719/*
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001720 * Handles messages sent on the return path towards the source VM
1721 *
1722 */
1723static void *source_return_path_thread(void *opaque)
1724{
1725 MigrationState *ms = opaque;
1726 QEMUFile *rp = ms->rp_state.from_dst_file;
1727 uint16_t header_len, header_type;
Peter Xu568b01c2016-03-09 14:12:12 +08001728 uint8_t buf[512];
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001729 uint32_t tmp32, sibling_error;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001730 ram_addr_t start = 0; /* =0 to silence warning */
1731 size_t len = 0, expected_len;
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001732 int res;
1733
1734 trace_source_return_path_thread_entry();
1735 while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1736 migration_is_setup_or_active(ms->state)) {
1737 trace_source_return_path_thread_loop_top();
1738 header_type = qemu_get_be16(rp);
1739 header_len = qemu_get_be16(rp);
1740
Peter Xu7a9ddfb2018-02-08 18:31:05 +08001741 if (qemu_file_get_error(rp)) {
1742 mark_source_rp_bad(ms);
1743 goto out;
1744 }
1745
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001746 if (header_type >= MIG_RP_MSG_MAX ||
1747 header_type == MIG_RP_MSG_INVALID) {
1748 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1749 header_type, header_len);
1750 mark_source_rp_bad(ms);
1751 goto out;
1752 }
1753
1754 if ((rp_cmd_args[header_type].len != -1 &&
1755 header_len != rp_cmd_args[header_type].len) ||
Peter Xu568b01c2016-03-09 14:12:12 +08001756 header_len > sizeof(buf)) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001757 error_report("RP: Received '%s' message (0x%04x) with"
1758 "incorrect length %d expecting %zu",
1759 rp_cmd_args[header_type].name, header_type, header_len,
1760 (size_t)rp_cmd_args[header_type].len);
1761 mark_source_rp_bad(ms);
1762 goto out;
1763 }
1764
1765 /* We know we've got a valid header by this point */
1766 res = qemu_get_buffer(rp, buf, header_len);
1767 if (res != header_len) {
1768 error_report("RP: Failed reading data for message 0x%04x"
1769 " read %d expected %d",
1770 header_type, res, header_len);
1771 mark_source_rp_bad(ms);
1772 goto out;
1773 }
1774
1775 /* OK, we have the message and the data */
1776 switch (header_type) {
1777 case MIG_RP_MSG_SHUT:
Peter Maydell4d885132016-06-10 17:09:22 +01001778 sibling_error = ldl_be_p(buf);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001779 trace_source_return_path_thread_shut(sibling_error);
1780 if (sibling_error) {
1781 error_report("RP: Sibling indicated error %d", sibling_error);
1782 mark_source_rp_bad(ms);
1783 }
1784 /*
1785 * We'll let the main thread deal with closing the RP
1786 * we could do a shutdown(2) on it, but we're the only user
1787 * anyway, so there's nothing gained.
1788 */
1789 goto out;
1790
1791 case MIG_RP_MSG_PONG:
Peter Maydell4d885132016-06-10 17:09:22 +01001792 tmp32 = ldl_be_p(buf);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001793 trace_source_return_path_thread_pong(tmp32);
1794 break;
1795
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001796 case MIG_RP_MSG_REQ_PAGES:
Peter Maydell4d885132016-06-10 17:09:22 +01001797 start = ldq_be_p(buf);
1798 len = ldl_be_p(buf + 8);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001799 migrate_handle_rp_req_pages(ms, NULL, start, len);
1800 break;
1801
1802 case MIG_RP_MSG_REQ_PAGES_ID:
1803 expected_len = 12 + 1; /* header + termination */
1804
1805 if (header_len >= expected_len) {
Peter Maydell4d885132016-06-10 17:09:22 +01001806 start = ldq_be_p(buf);
1807 len = ldl_be_p(buf + 8);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001808 /* Now we expect an idstr */
1809 tmp32 = buf[12]; /* Length of the following idstr */
1810 buf[13 + tmp32] = '\0';
1811 expected_len += tmp32;
1812 }
1813 if (header_len != expected_len) {
1814 error_report("RP: Req_Page_id with length %d expecting %zd",
1815 header_len, expected_len);
1816 mark_source_rp_bad(ms);
1817 goto out;
1818 }
1819 migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len);
1820 break;
1821
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001822 default:
1823 break;
1824 }
1825 }
Dr. David Alan Gilbert5df54162015-11-18 11:48:41 +00001826 if (qemu_file_get_error(rp)) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001827 trace_source_return_path_thread_bad_end();
1828 mark_source_rp_bad(ms);
1829 }
1830
1831 trace_source_return_path_thread_end();
1832out:
1833 ms->rp_state.from_dst_file = NULL;
1834 qemu_fclose(rp);
1835 return NULL;
1836}
1837
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001838static int open_return_path_on_source(MigrationState *ms)
1839{
1840
zhanghailiang89a02a92016-01-15 11:37:42 +08001841 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001842 if (!ms->rp_state.from_dst_file) {
1843 return -1;
1844 }
1845
1846 trace_open_return_path_on_source();
1847 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
1848 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
1849
1850 trace_open_return_path_on_source_continue();
1851
1852 return 0;
1853}
1854
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001855/* Returns 0 if the RP was ok, otherwise there was an error on the RP */
1856static int await_return_path_close_on_source(MigrationState *ms)
1857{
1858 /*
1859 * If this is a normal exit then the destination will send a SHUT and the
1860 * rp_thread will exit, however if there's an error we need to cause
1861 * it to exit.
1862 */
zhanghailiang89a02a92016-01-15 11:37:42 +08001863 if (qemu_file_get_error(ms->to_dst_file) && ms->rp_state.from_dst_file) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001864 /*
1865 * shutdown(2), if we have it, will cause it to unblock if it's stuck
1866 * waiting for the destination.
1867 */
1868 qemu_file_shutdown(ms->rp_state.from_dst_file);
1869 mark_source_rp_bad(ms);
1870 }
1871 trace_await_return_path_close_on_source_joining();
1872 qemu_thread_join(&ms->rp_state.rp_thread);
1873 trace_await_return_path_close_on_source_close();
1874 return ms->rp_state.error;
1875}
1876
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001877/*
1878 * Switch from normal iteration to postcopy
1879 * Returns non-0 on error
1880 */
Peter Xu7287cbd2018-01-03 20:20:09 +08001881static int postcopy_start(MigrationState *ms)
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001882{
1883 int ret;
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001884 QIOChannelBuffer *bioc;
1885 QEMUFile *fb;
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001886 int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001887 bool restart_block = false;
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01001888 int cur_state = MIGRATION_STATUS_ACTIVE;
1889 if (!migrate_pause_before_switchover()) {
1890 migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
1891 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1892 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001893
1894 trace_postcopy_start();
1895 qemu_mutex_lock_iothread();
1896 trace_postcopy_start_set_run();
1897
1898 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001899 global_state_store();
1900 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01001901 if (ret < 0) {
1902 goto fail;
1903 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001904
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01001905 ret = migration_maybe_pause(ms, &cur_state,
1906 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1907 if (ret < 0) {
1908 goto fail;
1909 }
1910
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01001911 ret = bdrv_inactivate_all();
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001912 if (ret < 0) {
1913 goto fail;
1914 }
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001915 restart_block = true;
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001916
1917 /*
Dr. David Alan Gilbert1c0d2492015-11-11 14:02:27 +00001918 * Cause any non-postcopiable, but iterative devices to
1919 * send out their final data.
1920 */
Fam Zhenga1fbe752017-06-17 00:06:58 +08001921 qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false);
Dr. David Alan Gilbert1c0d2492015-11-11 14:02:27 +00001922
1923 /*
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001924 * in Finish migrate and with the io-lock held everything should
1925 * be quiet, but we've potentially still got dirty pages and we
1926 * need to tell the destination to throw any pages it's already received
1927 * that are dirty
1928 */
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001929 if (migrate_postcopy_ram()) {
1930 if (ram_postcopy_send_discard_bitmap(ms)) {
1931 error_report("postcopy send discard bitmap failed");
1932 goto fail;
1933 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001934 }
1935
1936 /*
1937 * send rest of state - note things that are doing postcopy
1938 * will notice we're in POSTCOPY_ACTIVE and not actually
1939 * wrap their state up here
1940 */
zhanghailiang89a02a92016-01-15 11:37:42 +08001941 qemu_file_set_rate_limit(ms->to_dst_file, INT64_MAX);
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001942 if (migrate_postcopy_ram()) {
1943 /* Ping just for debugging, helps line traces up */
1944 qemu_savevm_send_ping(ms->to_dst_file, 2);
1945 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001946
1947 /*
1948 * While loading the device state we may trigger page transfer
1949 * requests and the fd must be free to process those, and thus
1950 * the destination must read the whole device state off the fd before
1951 * it starts processing it. Unfortunately the ad-hoc migration format
1952 * doesn't allow the destination to know the size to read without fully
1953 * parsing it through each devices load-state code (especially the open
1954 * coded devices that use get/put).
1955 * So we wrap the device state up in a package with a length at the start;
1956 * to do this we use a qemu_buf to hold the whole of the device state.
1957 */
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001958 bioc = qio_channel_buffer_new(4096);
Daniel P. Berrange6f01f132016-09-30 11:57:14 +01001959 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001960 fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc));
1961 object_unref(OBJECT(bioc));
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001962
Dr. David Alan Gilbertc76201a2015-11-05 18:11:18 +00001963 /*
1964 * Make sure the receiver can get incoming pages before we send the rest
1965 * of the state
1966 */
1967 qemu_savevm_send_postcopy_listen(fb);
1968
Fam Zhenga1fbe752017-06-17 00:06:58 +08001969 qemu_savevm_state_complete_precopy(fb, false, false);
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001970 if (migrate_postcopy_ram()) {
1971 qemu_savevm_send_ping(fb, 3);
1972 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001973
1974 qemu_savevm_send_postcopy_run(fb);
1975
1976 /* <><> end of stuff going into the package */
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001977
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001978 /* Last point of recovery; as soon as we send the package the destination
1979 * can open devices and potentially start running.
1980 * Lets just check again we've not got any errors.
1981 */
1982 ret = qemu_file_get_error(ms->to_dst_file);
1983 if (ret) {
1984 error_report("postcopy_start: Migration stream errored (pre package)");
1985 goto fail_closefb;
1986 }
1987
1988 restart_block = false;
1989
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001990 /* Now send that blob */
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001991 if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001992 goto fail_closefb;
1993 }
1994 qemu_fclose(fb);
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001995
1996 /* Send a notify to give a chance for anything that needs to happen
1997 * at the transition to postcopy and after the device state; in particular
1998 * spice needs to trigger a transition now
1999 */
2000 ms->postcopy_after_devices = true;
2001 notifier_list_notify(&migration_state_notifiers, ms);
2002
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002003 ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
2004
2005 qemu_mutex_unlock_iothread();
2006
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002007 if (migrate_postcopy_ram()) {
2008 /*
2009 * Although this ping is just for debug, it could potentially be
2010 * used for getting a better measurement of downtime at the source.
2011 */
2012 qemu_savevm_send_ping(ms->to_dst_file, 4);
2013 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002014
Pavel Butsykinced1c612017-02-03 18:23:21 +03002015 if (migrate_release_ram()) {
2016 ram_postcopy_migrated_memory_release(ms);
2017 }
2018
zhanghailiang89a02a92016-01-15 11:37:42 +08002019 ret = qemu_file_get_error(ms->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002020 if (ret) {
2021 error_report("postcopy_start: Migration stream errored");
zhanghailiang48781e52015-12-16 11:47:33 +00002022 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002023 MIGRATION_STATUS_FAILED);
2024 }
2025
2026 return ret;
2027
2028fail_closefb:
2029 qemu_fclose(fb);
2030fail:
zhanghailiang48781e52015-12-16 11:47:33 +00002031 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002032 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00002033 if (restart_block) {
2034 /* A failure happened early enough that we know the destination hasn't
2035 * accessed block devices, so we're safe to recover.
2036 */
2037 Error *local_err = NULL;
2038
2039 bdrv_invalidate_cache_all(&local_err);
2040 if (local_err) {
2041 error_report_err(local_err);
2042 }
2043 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002044 qemu_mutex_unlock_iothread();
2045 return -1;
2046}
2047
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002048/**
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002049 * migration_maybe_pause: Pause if required to by
2050 * migrate_pause_before_switchover called with the iothread locked
2051 * Returns: 0 on success
2052 */
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002053static int migration_maybe_pause(MigrationState *s,
2054 int *current_active_state,
2055 int new_state)
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002056{
2057 if (!migrate_pause_before_switchover()) {
2058 return 0;
2059 }
2060
2061 /* Since leaving this state is not atomic with posting the semaphore
2062 * it's possible that someone could have issued multiple migrate_continue
2063 * and the semaphore is incorrectly positive at this point;
2064 * the docs say it's undefined to reinit a semaphore that's already
2065 * init'd, so use timedwait to eat up any existing posts.
2066 */
2067 while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) {
2068 /* This block intentionally left blank */
2069 }
2070
2071 qemu_mutex_unlock_iothread();
2072 migrate_set_state(&s->state, *current_active_state,
2073 MIGRATION_STATUS_PRE_SWITCHOVER);
2074 qemu_sem_wait(&s->pause_sem);
2075 migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER,
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002076 new_state);
2077 *current_active_state = new_state;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002078 qemu_mutex_lock_iothread();
2079
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002080 return s->state == new_state ? 0 : -EINVAL;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002081}
2082
2083/**
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002084 * migration_completion: Used by migration_thread when there's not much left.
2085 * The caller 'breaks' the loop when this returns.
2086 *
2087 * @s: Current migration state
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002088 */
Peter Xu2ad87302018-01-03 20:20:14 +08002089static void migration_completion(MigrationState *s)
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002090{
2091 int ret;
Peter Xu2ad87302018-01-03 20:20:14 +08002092 int current_active_state = s->state;
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002093
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002094 if (s->state == MIGRATION_STATUS_ACTIVE) {
2095 qemu_mutex_lock_iothread();
Peter Xu64909f92018-01-03 20:20:10 +08002096 s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002097 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Peter Xu7287cbd2018-01-03 20:20:09 +08002098 s->vm_was_running = runstate_is_running();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002099 ret = global_state_store();
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002100
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002101 if (!ret) {
Fam Zhenga1fbe752017-06-17 00:06:58 +08002102 bool inactivate = !migrate_colo_enabled();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002103 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002104 if (ret >= 0) {
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002105 ret = migration_maybe_pause(s, &current_active_state,
2106 MIGRATION_STATUS_DEVICE);
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002107 }
2108 if (ret >= 0) {
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002109 qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
Fam Zhenga1fbe752017-06-17 00:06:58 +08002110 ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
2111 inactivate);
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002112 }
Fam Zhenga1fbe752017-06-17 00:06:58 +08002113 if (inactivate && ret >= 0) {
2114 s->block_inactive = true;
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002115 }
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002116 }
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002117 qemu_mutex_unlock_iothread();
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002118
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002119 if (ret < 0) {
2120 goto fail;
2121 }
2122 } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2123 trace_migration_completion_postcopy_end();
2124
zhanghailiang89a02a92016-01-15 11:37:42 +08002125 qemu_savevm_state_complete_postcopy(s->to_dst_file);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002126 trace_migration_completion_postcopy_end_after_complete();
2127 }
2128
2129 /*
2130 * If rp was opened we must clean up the thread before
2131 * cleaning everything else up (since if there are no failures
2132 * it will wait for the destination to send it's status in
2133 * a SHUT command).
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002134 */
Peter Xu0425dc92017-05-31 18:35:34 +08002135 if (s->rp_state.from_dst_file) {
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002136 int rp_error;
Peter Xu0425dc92017-05-31 18:35:34 +08002137 trace_migration_return_path_end_before();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002138 rp_error = await_return_path_close_on_source(s);
Peter Xu0425dc92017-05-31 18:35:34 +08002139 trace_migration_return_path_end_after(rp_error);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002140 if (rp_error) {
Greg Kurzfe904ea2016-05-18 15:44:36 +02002141 goto fail_invalidate;
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002142 }
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002143 }
2144
zhanghailiang89a02a92016-01-15 11:37:42 +08002145 if (qemu_file_get_error(s->to_dst_file)) {
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002146 trace_migration_completion_file_err();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002147 goto fail_invalidate;
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002148 }
2149
zhanghailiang0b827d52016-10-27 14:42:54 +08002150 if (!migrate_colo_enabled()) {
2151 migrate_set_state(&s->state, current_active_state,
2152 MIGRATION_STATUS_COMPLETED);
2153 }
2154
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002155 return;
2156
Greg Kurzfe904ea2016-05-18 15:44:36 +02002157fail_invalidate:
2158 /* If not doing postcopy, vm_start() will be called: let's regain
2159 * control on images.
2160 */
Dr. David Alan Gilbert6039dd52018-02-05 09:13:37 +00002161 if (s->state == MIGRATION_STATUS_ACTIVE ||
2162 s->state == MIGRATION_STATUS_DEVICE) {
Greg Kurzfe904ea2016-05-18 15:44:36 +02002163 Error *local_err = NULL;
2164
zhanghailiang1d2acc32017-01-24 15:59:52 +08002165 qemu_mutex_lock_iothread();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002166 bdrv_invalidate_cache_all(&local_err);
2167 if (local_err) {
2168 error_report_err(local_err);
zhanghailiang1d2acc32017-01-24 15:59:52 +08002169 } else {
2170 s->block_inactive = false;
Greg Kurzfe904ea2016-05-18 15:44:36 +02002171 }
zhanghailiang1d2acc32017-01-24 15:59:52 +08002172 qemu_mutex_unlock_iothread();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002173 }
2174
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002175fail:
zhanghailiang48781e52015-12-16 11:47:33 +00002176 migrate_set_state(&s->state, current_active_state,
2177 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002178}
2179
zhanghailiang35a6ed42016-10-27 14:42:52 +08002180bool migrate_colo_enabled(void)
2181{
2182 MigrationState *s = migrate_get_current();
2183 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_COLO];
2184}
2185
Peter Xucf011f02018-01-03 20:20:11 +08002186static void migration_calculate_complete(MigrationState *s)
2187{
2188 uint64_t bytes = qemu_ftell(s->to_dst_file);
2189 int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2190
2191 s->total_time = end_time - s->start_time;
2192 if (!s->downtime) {
2193 /*
2194 * It's still not set, so we are precopy migration. For
2195 * postcopy, downtime is calculated during postcopy_start().
2196 */
2197 s->downtime = end_time - s->downtime_start;
2198 }
2199
2200 if (s->total_time) {
2201 s->mbps = ((double) bytes * 8.0) / s->total_time / 1000;
2202 }
2203}
2204
Peter Xub15df1a2018-01-03 20:20:13 +08002205static void migration_update_counters(MigrationState *s,
2206 int64_t current_time)
2207{
2208 uint64_t transferred, time_spent;
Peter Xub15df1a2018-01-03 20:20:13 +08002209 double bandwidth;
2210
2211 if (current_time < s->iteration_start_time + BUFFER_DELAY) {
2212 return;
2213 }
2214
2215 transferred = qemu_ftell(s->to_dst_file) - s->iteration_initial_bytes;
2216 time_spent = current_time - s->iteration_start_time;
2217 bandwidth = (double)transferred / time_spent;
Wei Wang0781c1e2018-01-22 19:36:39 +08002218 s->threshold_size = bandwidth * s->parameters.downtime_limit;
Peter Xub15df1a2018-01-03 20:20:13 +08002219
2220 s->mbps = (((double) transferred * 8.0) /
2221 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
2222
2223 /*
2224 * if we haven't sent anything, we don't want to
2225 * recalculate. 10000 is a small enough number for our purposes
2226 */
2227 if (ram_counters.dirty_pages_rate && transferred > 10000) {
2228 s->expected_downtime = ram_counters.dirty_pages_rate *
2229 qemu_target_page_size() / bandwidth;
2230 }
2231
2232 qemu_file_reset_rate_limit(s->to_dst_file);
2233
2234 s->iteration_start_time = current_time;
2235 s->iteration_initial_bytes = qemu_ftell(s->to_dst_file);
2236
2237 trace_migrate_transferred(transferred, time_spent,
Wei Wang0781c1e2018-01-22 19:36:39 +08002238 bandwidth, s->threshold_size);
Peter Xub15df1a2018-01-03 20:20:13 +08002239}
2240
Peter Xu2ad87302018-01-03 20:20:14 +08002241/* Migration thread iteration status */
2242typedef enum {
2243 MIG_ITERATE_RESUME, /* Resume current iteration */
2244 MIG_ITERATE_SKIP, /* Skip current iteration */
2245 MIG_ITERATE_BREAK, /* Break the loop */
2246} MigIterateState;
2247
2248/*
2249 * Return true if continue to the next iteration directly, false
2250 * otherwise.
2251 */
2252static MigIterateState migration_iteration_run(MigrationState *s)
2253{
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002254 uint64_t pending_size, pend_pre, pend_compat, pend_post;
Peter Xu2ad87302018-01-03 20:20:14 +08002255 bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE;
2256
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002257 qemu_savevm_state_pending(s->to_dst_file, s->threshold_size, &pend_pre,
2258 &pend_compat, &pend_post);
2259 pending_size = pend_pre + pend_compat + pend_post;
Peter Xu2ad87302018-01-03 20:20:14 +08002260
2261 trace_migrate_pending(pending_size, s->threshold_size,
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002262 pend_pre, pend_compat, pend_post);
Peter Xu2ad87302018-01-03 20:20:14 +08002263
2264 if (pending_size && pending_size >= s->threshold_size) {
2265 /* Still a significant amount to transfer */
2266 if (migrate_postcopy() && !in_postcopy &&
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002267 pend_pre <= s->threshold_size &&
Peter Xu2ad87302018-01-03 20:20:14 +08002268 atomic_read(&s->start_postcopy)) {
2269 if (postcopy_start(s)) {
2270 error_report("%s: postcopy failed to start", __func__);
2271 }
2272 return MIG_ITERATE_SKIP;
2273 }
2274 /* Just another iteration step */
2275 qemu_savevm_state_iterate(s->to_dst_file,
2276 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
2277 } else {
2278 trace_migration_thread_low_pending(pending_size);
2279 migration_completion(s);
2280 return MIG_ITERATE_BREAK;
2281 }
2282
2283 return MIG_ITERATE_RESUME;
2284}
2285
Peter Xu199aa6d2018-01-03 20:20:15 +08002286static void migration_iteration_finish(MigrationState *s)
2287{
2288 /* If we enabled cpu throttling for auto-converge, turn it off. */
2289 cpu_throttle_stop();
2290
2291 qemu_mutex_lock_iothread();
2292 switch (s->state) {
2293 case MIGRATION_STATUS_COMPLETED:
2294 migration_calculate_complete(s);
2295 runstate_set(RUN_STATE_POSTMIGRATE);
2296 break;
2297
2298 case MIGRATION_STATUS_ACTIVE:
2299 /*
2300 * We should really assert here, but since it's during
2301 * migration, let's try to reduce the usage of assertions.
2302 */
2303 if (!migrate_colo_enabled()) {
2304 error_report("%s: critical error: calling COLO code without "
2305 "COLO enabled", __func__);
2306 }
2307 migrate_start_colo_process(s);
2308 /*
2309 * Fixme: we will run VM in COLO no matter its old running state.
2310 * After exited COLO, we will keep running.
2311 */
2312 s->vm_was_running = true;
2313 /* Fallthrough */
2314 case MIGRATION_STATUS_FAILED:
2315 case MIGRATION_STATUS_CANCELLED:
2316 if (s->vm_was_running) {
2317 vm_start();
2318 } else {
2319 if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
2320 runstate_set(RUN_STATE_POSTMIGRATE);
2321 }
2322 }
2323 break;
2324
2325 default:
2326 /* Should not reach here, but if so, forgive the VM. */
2327 error_report("%s: Unknown ending state %d", __func__, s->state);
2328 break;
2329 }
2330 qemu_bh_schedule(s->cleanup_bh);
2331 qemu_mutex_unlock_iothread();
2332}
2333
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00002334/*
2335 * Master migration thread on the source VM.
2336 * It drives the migration and pumps the data down the outgoing channel.
2337 */
Juan Quintela5f496a12013-02-22 17:36:30 +01002338static void *migration_thread(void *opaque)
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002339{
Juan Quintela9848a402012-12-19 09:55:50 +01002340 MigrationState *s = opaque;
Alex Blighbc72ad62013-08-21 16:03:08 +01002341 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
Juan Quintela76f59332012-10-03 20:16:24 +02002342
Paolo Bonziniab28bd22015-07-09 08:55:38 +02002343 rcu_register_thread();
2344
Peter Xub15df1a2018-01-03 20:20:13 +08002345 s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2346
zhanghailiang89a02a92016-01-15 11:37:42 +08002347 qemu_savevm_state_header(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002348
Peter Xu62a02652017-06-14 15:55:58 +08002349 /*
2350 * If we opened the return path, we need to make sure dst has it
2351 * opened as well.
2352 */
2353 if (s->rp_state.from_dst_file) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002354 /* Now tell the dest that it should open its end so it can reply */
zhanghailiang89a02a92016-01-15 11:37:42 +08002355 qemu_savevm_send_open_return_path(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002356
2357 /* And do a ping that will make stuff easier to debug */
zhanghailiang89a02a92016-01-15 11:37:42 +08002358 qemu_savevm_send_ping(s->to_dst_file, 1);
Peter Xu0425dc92017-05-31 18:35:34 +08002359 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002360
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002361 if (migrate_postcopy()) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002362 /*
2363 * Tell the destination that we *might* want to do postcopy later;
2364 * if the other end can't do postcopy it should fail now, nice and
2365 * early.
2366 */
zhanghailiang89a02a92016-01-15 11:37:42 +08002367 qemu_savevm_send_postcopy_advise(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002368 }
2369
Juan Quintela9907e842017-06-28 11:52:24 +02002370 qemu_savevm_state_setup(s->to_dst_file);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002371
Alex Blighbc72ad62013-08-21 16:03:08 +01002372 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
zhanghailiang48781e52015-12-16 11:47:33 +00002373 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2374 MIGRATION_STATUS_ACTIVE);
Michael R. Hines29ae8a42013-07-22 10:01:57 -04002375
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00002376 trace_migration_thread_setup_complete();
2377
2378 while (s->state == MIGRATION_STATUS_ACTIVE ||
2379 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
Juan Quintelaa3e879c2013-02-01 12:39:08 +01002380 int64_t current_time;
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002381
zhanghailiang89a02a92016-01-15 11:37:42 +08002382 if (!qemu_file_rate_limit(s->to_dst_file)) {
Peter Xu2ad87302018-01-03 20:20:14 +08002383 MigIterateState iter_state = migration_iteration_run(s);
2384 if (iter_state == MIG_ITERATE_SKIP) {
2385 continue;
2386 } else if (iter_state == MIG_ITERATE_BREAK) {
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002387 break;
Juan Quintelac369f402012-10-03 20:33:34 +02002388 }
2389 }
Paolo Bonzinif4410a52013-02-22 17:36:20 +01002390
zhanghailiang89a02a92016-01-15 11:37:42 +08002391 if (qemu_file_get_error(s->to_dst_file)) {
Peter Xu2ad87302018-01-03 20:20:14 +08002392 if (migration_is_setup_or_active(s->state)) {
2393 migrate_set_state(&s->state, s->state,
2394 MIGRATION_STATUS_FAILED);
2395 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002396 trace_migration_thread_file_err();
Paolo Bonzinifd45ee22013-02-22 17:36:33 +01002397 break;
2398 }
Peter Xub15df1a2018-01-03 20:20:13 +08002399
Alex Blighbc72ad62013-08-21 16:03:08 +01002400 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002401
Peter Xub15df1a2018-01-03 20:20:13 +08002402 migration_update_counters(s, current_time);
Michael R. Hines7e114f82013-06-25 21:35:30 -04002403
zhanghailiang89a02a92016-01-15 11:37:42 +08002404 if (qemu_file_rate_limit(s->to_dst_file)) {
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002405 /* usleep expects microseconds */
Peter Xub15df1a2018-01-03 20:20:13 +08002406 g_usleep((s->iteration_start_time + BUFFER_DELAY -
2407 current_time) * 1000);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002408 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01002409 }
2410
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002411 trace_migration_thread_after_loop();
Peter Xu199aa6d2018-01-03 20:20:15 +08002412 migration_iteration_finish(s);
Paolo Bonziniab28bd22015-07-09 08:55:38 +02002413 rcu_unregister_thread();
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002414 return NULL;
2415}
2416
Dr. David Alan Gilbertcce80402017-12-15 17:16:54 +00002417void migrate_fd_connect(MigrationState *s, Error *error_in)
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002418{
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05302419 s->expected_downtime = s->parameters.downtime_limit;
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01002420 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
Dr. David Alan Gilbertcce80402017-12-15 17:16:54 +00002421 if (error_in) {
2422 migrate_fd_error(s, error_in);
2423 migrate_fd_cleanup(s);
2424 return;
2425 }
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002426
Daniel P. Berrange9e4d2b92016-04-27 11:04:57 +01002427 qemu_file_set_blocking(s->to_dst_file, true);
zhanghailiang89a02a92016-01-15 11:37:42 +08002428 qemu_file_set_rate_limit(s->to_dst_file,
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05302429 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
Paolo Bonzini442773c2013-02-22 17:36:44 +01002430
Stefan Hajnoczi9287ac22013-07-29 15:01:57 +02002431 /* Notify before starting migration thread */
2432 notifier_list_notify(&migration_state_notifiers, s);
2433
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002434 /*
Peter Xuc788ada2017-06-26 18:28:55 +08002435 * Open the return path. For postcopy, it is used exclusively. For
2436 * precopy, only if user specified "return-path" capability would
2437 * QEMU uses the return path.
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002438 */
Peter Xuc788ada2017-06-26 18:28:55 +08002439 if (migrate_postcopy_ram() || migrate_use_return_path()) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002440 if (open_return_path_on_source(s)) {
2441 error_report("Unable to open return-path for postcopy");
zhanghailiang48781e52015-12-16 11:47:33 +00002442 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002443 MIGRATION_STATUS_FAILED);
2444 migrate_fd_cleanup(s);
2445 return;
2446 }
2447 }
2448
Juan Quintelaf986c3d2016-01-14 16:52:55 +01002449 if (multifd_save_setup() != 0) {
2450 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2451 MIGRATION_STATUS_FAILED);
2452 migrate_fd_cleanup(s);
2453 return;
2454 }
Pankaj Gupta009fad72017-01-23 19:12:56 +05302455 qemu_thread_create(&s->thread, "live_migration", migration_thread, s,
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01002456 QEMU_THREAD_JOINABLE);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002457 s->migration_thread_running = true;
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002458}
Dr. David Alan Gilbert093e3c42015-11-05 18:10:52 +00002459
Peter Xu9d18af92017-06-27 12:10:19 +08002460void migration_global_dump(Monitor *mon)
2461{
2462 MigrationState *ms = migrate_get_current();
2463
Juan Quintela6f0f6422017-10-26 11:49:57 +02002464 monitor_printf(mon, "globals:\n");
2465 monitor_printf(mon, "store-global-state: %s\n",
2466 ms->store_global_state ? "on" : "off");
2467 monitor_printf(mon, "only-migratable: %s\n",
2468 ms->only_migratable ? "on" : "off");
2469 monitor_printf(mon, "send-configuration: %s\n",
2470 ms->send_configuration ? "on" : "off");
2471 monitor_printf(mon, "send-section-footer: %s\n",
2472 ms->send_section_footer ? "on" : "off");
Peter Xu9d18af92017-06-27 12:10:19 +08002473}
2474
Peter Xu20814752017-07-18 11:39:03 +08002475#define DEFINE_PROP_MIG_CAP(name, x) \
2476 DEFINE_PROP_BOOL(name, MigrationState, enabled_capabilities[x], false)
2477
Peter Xu52722982017-06-27 12:10:14 +08002478static Property migration_properties[] = {
2479 DEFINE_PROP_BOOL("store-global-state", MigrationState,
2480 store_global_state, true),
Peter Xu3df663e2017-06-27 12:10:15 +08002481 DEFINE_PROP_BOOL("only-migratable", MigrationState, only_migratable, false),
Peter Xu71dd4c12017-06-27 12:10:16 +08002482 DEFINE_PROP_BOOL("send-configuration", MigrationState,
2483 send_configuration, true),
Peter Xu15c38502017-06-27 12:10:17 +08002484 DEFINE_PROP_BOOL("send-section-footer", MigrationState,
2485 send_section_footer, true),
Peter Xu89632fa2017-07-18 11:39:02 +08002486
2487 /* Migration parameters */
Juan Quintela741d4082017-12-01 13:08:38 +01002488 DEFINE_PROP_UINT8("x-compress-level", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002489 parameters.compress_level,
2490 DEFAULT_MIGRATE_COMPRESS_LEVEL),
Juan Quintela741d4082017-12-01 13:08:38 +01002491 DEFINE_PROP_UINT8("x-compress-threads", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002492 parameters.compress_threads,
2493 DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT),
Juan Quintela741d4082017-12-01 13:08:38 +01002494 DEFINE_PROP_UINT8("x-decompress-threads", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002495 parameters.decompress_threads,
2496 DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT),
Juan Quintela741d4082017-12-01 13:08:38 +01002497 DEFINE_PROP_UINT8("x-cpu-throttle-initial", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002498 parameters.cpu_throttle_initial,
2499 DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL),
Juan Quintela741d4082017-12-01 13:08:38 +01002500 DEFINE_PROP_UINT8("x-cpu-throttle-increment", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002501 parameters.cpu_throttle_increment,
2502 DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT),
Juan Quintela741d4082017-12-01 13:08:38 +01002503 DEFINE_PROP_SIZE("x-max-bandwidth", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002504 parameters.max_bandwidth, MAX_THROTTLE),
Juan Quintela741d4082017-12-01 13:08:38 +01002505 DEFINE_PROP_UINT64("x-downtime-limit", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002506 parameters.downtime_limit,
2507 DEFAULT_MIGRATE_SET_DOWNTIME),
Juan Quintela741d4082017-12-01 13:08:38 +01002508 DEFINE_PROP_UINT32("x-checkpoint-delay", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002509 parameters.x_checkpoint_delay,
2510 DEFAULT_MIGRATE_X_CHECKPOINT_DELAY),
Juan Quintela741d4082017-12-01 13:08:38 +01002511 DEFINE_PROP_UINT8("x-multifd-channels", MigrationState,
Juan Quintela4075fb12016-01-15 08:56:17 +01002512 parameters.x_multifd_channels,
2513 DEFAULT_MIGRATE_MULTIFD_CHANNELS),
Juan Quintela741d4082017-12-01 13:08:38 +01002514 DEFINE_PROP_UINT32("x-multifd-page-count", MigrationState,
Juan Quintela0fb86602017-04-27 10:48:25 +02002515 parameters.x_multifd_page_count,
2516 DEFAULT_MIGRATE_MULTIFD_PAGE_COUNT),
Juan Quintela73af8dd2017-10-05 21:30:10 +02002517 DEFINE_PROP_SIZE("xbzrle-cache-size", MigrationState,
2518 parameters.xbzrle_cache_size,
2519 DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE),
Peter Xu20814752017-07-18 11:39:03 +08002520
2521 /* Migration capabilities */
2522 DEFINE_PROP_MIG_CAP("x-xbzrle", MIGRATION_CAPABILITY_XBZRLE),
2523 DEFINE_PROP_MIG_CAP("x-rdma-pin-all", MIGRATION_CAPABILITY_RDMA_PIN_ALL),
2524 DEFINE_PROP_MIG_CAP("x-auto-converge", MIGRATION_CAPABILITY_AUTO_CONVERGE),
2525 DEFINE_PROP_MIG_CAP("x-zero-blocks", MIGRATION_CAPABILITY_ZERO_BLOCKS),
2526 DEFINE_PROP_MIG_CAP("x-compress", MIGRATION_CAPABILITY_COMPRESS),
2527 DEFINE_PROP_MIG_CAP("x-events", MIGRATION_CAPABILITY_EVENTS),
2528 DEFINE_PROP_MIG_CAP("x-postcopy-ram", MIGRATION_CAPABILITY_POSTCOPY_RAM),
2529 DEFINE_PROP_MIG_CAP("x-colo", MIGRATION_CAPABILITY_X_COLO),
2530 DEFINE_PROP_MIG_CAP("x-release-ram", MIGRATION_CAPABILITY_RELEASE_RAM),
2531 DEFINE_PROP_MIG_CAP("x-block", MIGRATION_CAPABILITY_BLOCK),
2532 DEFINE_PROP_MIG_CAP("x-return-path", MIGRATION_CAPABILITY_RETURN_PATH),
Juan Quintela30126bb2016-01-14 12:23:00 +01002533 DEFINE_PROP_MIG_CAP("x-multifd", MIGRATION_CAPABILITY_X_MULTIFD),
Peter Xu20814752017-07-18 11:39:03 +08002534
Peter Xu52722982017-06-27 12:10:14 +08002535 DEFINE_PROP_END_OF_LIST(),
2536};
2537
Peter Xue5cb7e72017-06-27 12:10:13 +08002538static void migration_class_init(ObjectClass *klass, void *data)
2539{
2540 DeviceClass *dc = DEVICE_CLASS(klass);
2541
2542 dc->user_creatable = false;
Peter Xu52722982017-06-27 12:10:14 +08002543 dc->props = migration_properties;
Peter Xue5cb7e72017-06-27 12:10:13 +08002544}
2545
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002546static void migration_instance_finalize(Object *obj)
2547{
2548 MigrationState *ms = MIGRATION_OBJ(obj);
2549 MigrationParameters *params = &ms->parameters;
2550
Juan Quintela87db1a72017-09-05 12:50:22 +02002551 qemu_mutex_destroy(&ms->error_mutex);
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002552 g_free(params->tls_hostname);
2553 g_free(params->tls_creds);
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002554 qemu_sem_destroy(&ms->pause_sem);
Marc-André Lureauab105cc2018-03-06 18:09:59 +01002555 error_free(ms->error);
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002556}
2557
Peter Xue5cb7e72017-06-27 12:10:13 +08002558static void migration_instance_init(Object *obj)
2559{
2560 MigrationState *ms = MIGRATION_OBJ(obj);
Peter Xu8b0b29d2017-07-18 11:39:06 +08002561 MigrationParameters *params = &ms->parameters;
Peter Xue5cb7e72017-06-27 12:10:13 +08002562
2563 ms->state = MIGRATION_STATUS_NONE;
Peter Xue5cb7e72017-06-27 12:10:13 +08002564 ms->mbps = -1;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002565 qemu_sem_init(&ms->pause_sem, 0);
Juan Quintela87db1a72017-09-05 12:50:22 +02002566 qemu_mutex_init(&ms->error_mutex);
Peter Xu8b0b29d2017-07-18 11:39:06 +08002567
2568 params->tls_hostname = g_strdup("");
2569 params->tls_creds = g_strdup("");
2570
2571 /* Set has_* up only for parameter checks */
2572 params->has_compress_level = true;
2573 params->has_compress_threads = true;
2574 params->has_decompress_threads = true;
2575 params->has_cpu_throttle_initial = true;
2576 params->has_cpu_throttle_increment = true;
2577 params->has_max_bandwidth = true;
2578 params->has_downtime_limit = true;
2579 params->has_x_checkpoint_delay = true;
2580 params->has_block_incremental = true;
Juan Quintela4075fb12016-01-15 08:56:17 +01002581 params->has_x_multifd_channels = true;
Juan Quintela0fb86602017-04-27 10:48:25 +02002582 params->has_x_multifd_page_count = true;
Juan Quintela73af8dd2017-10-05 21:30:10 +02002583 params->has_xbzrle_cache_size = true;
Peter Xu8b0b29d2017-07-18 11:39:06 +08002584}
2585
2586/*
2587 * Return true if check pass, false otherwise. Error will be put
2588 * inside errp if provided.
2589 */
2590static bool migration_object_check(MigrationState *ms, Error **errp)
2591{
Peter Xu6b19a7d2017-07-18 11:39:10 +08002592 MigrationCapabilityStatusList *head = NULL;
2593 /* Assuming all off */
2594 bool cap_list[MIGRATION_CAPABILITY__MAX] = { 0 }, ret;
2595 int i;
2596
Peter Xu8b0b29d2017-07-18 11:39:06 +08002597 if (!migrate_params_check(&ms->parameters, errp)) {
2598 return false;
2599 }
2600
Peter Xu6b19a7d2017-07-18 11:39:10 +08002601 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
2602 if (ms->enabled_capabilities[i]) {
2603 head = migrate_cap_add(head, i, true);
2604 }
2605 }
2606
2607 ret = migrate_caps_check(cap_list, head, errp);
2608
2609 /* It works with head == NULL */
2610 qapi_free_MigrationCapabilityStatusList(head);
2611
2612 return ret;
Peter Xue5cb7e72017-06-27 12:10:13 +08002613}
2614
2615static const TypeInfo migration_type = {
2616 .name = TYPE_MIGRATION,
Peter Xu01f6e142017-06-28 15:15:44 +08002617 /*
Peter Xuc8d3ff32017-07-05 16:21:23 +08002618 * NOTE: TYPE_MIGRATION is not really a device, as the object is
2619 * not created using qdev_create(), it is not attached to the qdev
2620 * device tree, and it is never realized.
2621 *
2622 * TODO: Make this TYPE_OBJECT once QOM provides something like
2623 * TYPE_DEVICE's "-global" properties.
Peter Xu01f6e142017-06-28 15:15:44 +08002624 */
Peter Xue5cb7e72017-06-27 12:10:13 +08002625 .parent = TYPE_DEVICE,
2626 .class_init = migration_class_init,
2627 .class_size = sizeof(MigrationClass),
2628 .instance_size = sizeof(MigrationState),
2629 .instance_init = migration_instance_init,
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002630 .instance_finalize = migration_instance_finalize,
Peter Xue5cb7e72017-06-27 12:10:13 +08002631};
2632
2633static void register_migration_types(void)
2634{
2635 type_register_static(&migration_type);
2636}
2637
2638type_init(register_migration_types);