blob: 61c4ee785071b7c2bb6279a26e9b8ee1249097ab [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));
Dr. David Alan Gilbert00fa4fc2018-03-12 17:21:04 +0000158 mis_current.postcopy_remote_fds = g_array_new(FALSE, TRUE,
159 sizeof(struct PostCopyFD));
Juan Quintelab4b076d2017-01-23 22:32:06 +0100160 qemu_mutex_init(&mis_current.rp_mutex);
161 qemu_event_init(&mis_current.main_thread_load_event, false);
Vladimir Sementsov-Ogievskiyb35ebdf2018-03-13 15:34:01 -0400162
163 init_dirty_bitmap_incoming_migration();
164
Juan Quintelab4b076d2017-01-23 22:32:06 +0100165 once = true;
166 }
167 return &mis_current;
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100168}
169
170void migration_incoming_state_destroy(void)
171{
Juan Quintelab4b076d2017-01-23 22:32:06 +0100172 struct MigrationIncomingState *mis = migration_incoming_get_current();
173
Peter Xu34826552017-05-19 14:43:29 +0800174 if (mis->to_src_file) {
Peter Xu660819b2017-05-19 14:43:30 +0800175 /* Tell source that we are done */
176 migrate_send_rp_shut(mis, qemu_file_get_error(mis->from_src_file) != 0);
Peter Xu34826552017-05-19 14:43:29 +0800177 qemu_fclose(mis->to_src_file);
178 mis->to_src_file = NULL;
179 }
180
Peter Xu660819b2017-05-19 14:43:30 +0800181 if (mis->from_src_file) {
182 qemu_fclose(mis->from_src_file);
183 mis->from_src_file = NULL;
184 }
Dr. David Alan Gilbert00fa4fc2018-03-12 17:21:04 +0000185 if (mis->postcopy_remote_fds) {
186 g_array_free(mis->postcopy_remote_fds, TRUE);
187 mis->postcopy_remote_fds = NULL;
188 }
Peter Xu660819b2017-05-19 14:43:30 +0800189
Dr. David Alan Gilbert5089e182017-08-25 15:19:39 +0100190 qemu_event_reset(&mis->main_thread_load_event);
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100191}
192
Juan Quintelab05dc722015-07-07 14:44:05 +0200193static void migrate_generate_event(int new_state)
194{
195 if (migrate_use_events()) {
196 qapi_event_send_migration(new_state, &error_abort);
Juan Quintelab05dc722015-07-07 14:44:05 +0200197 }
198}
199
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000200/*
201 * Called on -incoming with a defer: uri.
202 * The migration can be started later after any parameters have been
203 * changed.
204 */
205static void deferred_incoming_migration(Error **errp)
206{
207 if (deferred_incoming) {
208 error_setg(errp, "Incoming migration already deferred");
209 }
210 deferred_incoming = true;
211}
212
Juan Quintelada6f1792017-04-24 17:37:14 +0200213/*
214 * Send a message on the return channel back to the source
215 * of the migration.
216 */
Peter Xud6208e32018-02-08 18:31:12 +0800217static int migrate_send_rp_message(MigrationIncomingState *mis,
218 enum mig_rp_message_type message_type,
219 uint16_t len, void *data)
Juan Quintelada6f1792017-04-24 17:37:14 +0200220{
Peter Xud6208e32018-02-08 18:31:12 +0800221 int ret = 0;
222
Juan Quintelada6f1792017-04-24 17:37:14 +0200223 trace_migrate_send_rp_message((int)message_type, len);
224 qemu_mutex_lock(&mis->rp_mutex);
Peter Xud6208e32018-02-08 18:31:12 +0800225
226 /*
227 * It's possible that the file handle got lost due to network
228 * failures.
229 */
230 if (!mis->to_src_file) {
231 ret = -EIO;
232 goto error;
233 }
234
Juan Quintelada6f1792017-04-24 17:37:14 +0200235 qemu_put_be16(mis->to_src_file, (unsigned int)message_type);
236 qemu_put_be16(mis->to_src_file, len);
237 qemu_put_buffer(mis->to_src_file, data, len);
238 qemu_fflush(mis->to_src_file);
Peter Xud6208e32018-02-08 18:31:12 +0800239
240 /* It's possible that qemu file got error during sending */
241 ret = qemu_file_get_error(mis->to_src_file);
242
243error:
Juan Quintelada6f1792017-04-24 17:37:14 +0200244 qemu_mutex_unlock(&mis->rp_mutex);
Peter Xud6208e32018-02-08 18:31:12 +0800245 return ret;
Juan Quintelada6f1792017-04-24 17:37:14 +0200246}
247
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000248/* Request a range of pages from the source VM at the given
249 * start address.
250 * rbname: Name of the RAMBlock to request the page in, if NULL it's the same
251 * as the last request (a name must have been given previously)
252 * Start: Address offset within the RB
253 * Len: Length in bytes required - must be a multiple of pagesize
254 */
Peter Xud6208e32018-02-08 18:31:12 +0800255int migrate_send_rp_req_pages(MigrationIncomingState *mis, const char *rbname,
256 ram_addr_t start, size_t len)
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000257{
Stefan Weilcb8d4c82016-03-23 15:59:57 +0100258 uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000259 size_t msglen = 12; /* start + len */
Peter Xud6208e32018-02-08 18:31:12 +0800260 enum mig_rp_message_type msg_type;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000261
262 *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
263 *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
264
265 if (rbname) {
266 int rbname_len = strlen(rbname);
267 assert(rbname_len < 256);
268
269 bufc[msglen++] = rbname_len;
270 memcpy(bufc + msglen, rbname, rbname_len);
271 msglen += rbname_len;
Peter Xud6208e32018-02-08 18:31:12 +0800272 msg_type = MIG_RP_MSG_REQ_PAGES_ID;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000273 } else {
Peter Xud6208e32018-02-08 18:31:12 +0800274 msg_type = MIG_RP_MSG_REQ_PAGES;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000275 }
Peter Xud6208e32018-02-08 18:31:12 +0800276
277 return migrate_send_rp_message(mis, msg_type, msglen, bufc);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +0000278}
279
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200280void qemu_start_incoming_migration(const char *uri, Error **errp)
aliguori5bb79102008-10-13 03:12:02 +0000281{
aliguori34c9dd82008-10-13 03:14:31 +0000282 const char *p;
283
Juan Quintela7cf1fe62015-05-20 17:15:42 +0200284 qapi_event_send_migration(MIGRATION_STATUS_SETUP, &error_abort);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000285 if (!strcmp(uri, "defer")) {
286 deferred_incoming_migration(errp);
287 } else if (strstart(uri, "tcp:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200288 tcp_start_incoming_migration(p, errp);
Michael R. Hines2da776d2013-07-22 10:01:54 -0400289#ifdef CONFIG_RDMA
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000290 } else if (strstart(uri, "rdma:", &p)) {
Michael R. Hines2da776d2013-07-22 10:01:54 -0400291 rdma_start_incoming_migration(p, errp);
292#endif
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000293 } else if (strstart(uri, "exec:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200294 exec_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000295 } else if (strstart(uri, "unix:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200296 unix_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000297 } else if (strstart(uri, "fd:", &p)) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +0200298 fd_start_incoming_migration(p, errp);
Dr. David Alan Gilbertadde2202015-02-19 11:40:27 +0000299 } else {
Markus Armbruster312fd5f2013-02-08 21:22:16 +0100300 error_setg(errp, "unknown migration protocol: %s", uri);
Juan Quintela8ca5e802010-06-09 14:10:54 +0200301 }
aliguori5bb79102008-10-13 03:12:02 +0000302}
303
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300304static void process_incoming_migration_bh(void *opaque)
305{
306 Error *local_err = NULL;
307 MigrationIncomingState *mis = opaque;
308
Dr. David Alan Gilberta18a73d2018-04-10 15:28:42 +0100309 /* Make sure all file formats flush their mutable metadata.
310 * If we get an error here, just don't restart the VM yet. */
311 bdrv_invalidate_cache_all(&local_err);
312 if (local_err) {
313 error_report_err(local_err);
314 local_err = NULL;
315 autostart = false;
Kevin Wolfd35ff5e2017-04-04 17:29:03 +0200316 }
317
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300318 /*
319 * This must happen after all error conditions are dealt with and
320 * we're sure the VM is going to be running on this host.
321 */
322 qemu_announce_self();
323
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100324 if (multifd_load_cleanup(&local_err) != 0) {
325 error_report_err(local_err);
326 autostart = false;
327 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300328 /* If global state section was not received or we are in running
329 state, we need to obey autostart. Any other state is set with
330 runstate_set. */
331
Vladimir Sementsov-Ogievskiyb35ebdf2018-03-13 15:34:01 -0400332 dirty_bitmap_mig_before_vm_start();
333
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300334 if (!global_state_received() ||
335 global_state_get_runstate() == RUN_STATE_RUNNING) {
336 if (autostart) {
337 vm_start();
338 } else {
339 runstate_set(RUN_STATE_PAUSED);
340 }
341 } else {
342 runstate_set(global_state_get_runstate());
343 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300344 /*
345 * This must happen after any state changes since as soon as an external
346 * observer sees this event they might start to prod at the VM assuming
347 * it's ready to use.
348 */
349 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
350 MIGRATION_STATUS_COMPLETED);
351 qemu_bh_delete(mis->bh);
352 migration_incoming_state_destroy();
353}
354
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200355static void process_incoming_migration_co(void *opaque)
Juan Quintela511c0232010-06-09 14:10:55 +0200356{
Juan Quintelab4b076d2017-01-23 22:32:06 +0100357 MigrationIncomingState *mis = migration_incoming_get_current();
Dr. David Alan Gilberte9bef232015-11-05 18:11:21 +0000358 PostcopyState ps;
Paolo Bonzini1c12e1f2012-08-07 10:51:51 +0200359 int ret;
360
Juan Quintela4f0fae72017-07-24 12:42:02 +0200361 assert(mis->from_src_file);
Dr. David Alan Gilbert67f11b52017-02-24 18:28:34 +0000362 mis->largest_page_size = qemu_ram_pagesize_largest();
Dr. David Alan Gilbert093e3c42015-11-05 18:10:52 +0000363 postcopy_state_set(POSTCOPY_INCOMING_NONE);
zhanghailiang93d7af62015-12-16 11:47:34 +0000364 migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
365 MIGRATION_STATUS_ACTIVE);
Juan Quintela4f0fae72017-07-24 12:42:02 +0200366 ret = qemu_loadvm_state(mis->from_src_file);
Dr. David Alan Gilbertbca78562015-05-21 13:24:14 +0100367
Dr. David Alan Gilberte9bef232015-11-05 18:11:21 +0000368 ps = postcopy_state_get();
369 trace_process_incoming_migration_co_end(ret, ps);
370 if (ps != POSTCOPY_INCOMING_NONE) {
371 if (ps == POSTCOPY_INCOMING_ADVISE) {
372 /*
373 * Where a migration had postcopy enabled (and thus went to advise)
374 * but managed to complete within the precopy period, we can use
375 * the normal exit.
376 */
377 postcopy_ram_incoming_cleanup(mis);
378 } else if (ret >= 0) {
379 /*
380 * Postcopy was started, cleanup should happen at the end of the
381 * postcopy thread.
382 */
383 trace_process_incoming_migration_co_postcopy_end_main();
384 return;
385 }
386 /* Else if something went wrong then just fall out of the normal exit */
387 }
388
zhanghailiang25d0c162016-10-27 14:42:55 +0800389 /* we get COLO info, and know if we are in COLO mode */
390 if (!ret && migration_incoming_enable_colo()) {
391 mis->migration_incoming_co = qemu_coroutine_self();
392 qemu_thread_create(&mis->colo_incoming_thread, "COLO incoming",
393 colo_process_incoming_thread, mis, QEMU_THREAD_JOINABLE);
394 mis->have_colo_incoming_thread = true;
395 qemu_coroutine_yield();
396
397 /* Wait checkpoint incoming thread exit before free resource */
398 qemu_thread_join(&mis->colo_incoming_thread);
399 }
400
Paolo Bonzini1c12e1f2012-08-07 10:51:51 +0200401 if (ret < 0) {
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100402 Error *local_err = NULL;
403
zhanghailiang93d7af62015-12-16 11:47:34 +0000404 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
405 MIGRATION_STATUS_FAILED);
Peter Lievendb80fac2014-06-10 11:29:16 +0200406 error_report("load of migration failed: %s", strerror(-ret));
Dr. David Alan Gilbert3a0f2ce2017-07-17 12:09:32 +0100407 qemu_fclose(mis->from_src_file);
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100408 if (multifd_load_cleanup(&local_err) != 0) {
409 error_report_err(local_err);
410 }
Eric Blake4aead692013-04-16 15:50:41 -0600411 exit(EXIT_FAILURE);
Juan Quintela511c0232010-06-09 14:10:55 +0200412 }
Denis V. Lunev0aa6aef2016-02-24 11:53:38 +0300413 mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
414 qemu_bh_schedule(mis->bh);
Juan Quintela511c0232010-06-09 14:10:55 +0200415}
416
Juan Quintelae595a012017-07-17 12:30:25 +0200417static void migration_incoming_setup(QEMUFile *f)
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200418{
Juan Quintela4f0fae72017-07-24 12:42:02 +0200419 MigrationIncomingState *mis = migration_incoming_get_current();
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200420
Juan Quintelaf986c3d2016-01-14 16:52:55 +0100421 if (multifd_load_setup() != 0) {
422 /* We haven't been able to create multifd threads
423 nothing better to do */
424 exit(EXIT_FAILURE);
425 }
426
Juan Quintela4f0fae72017-07-24 12:42:02 +0200427 if (!mis->from_src_file) {
428 mis->from_src_file = f;
429 }
Daniel P. Berrange06ad5132016-04-27 11:04:56 +0100430 qemu_file_set_blocking(f, false);
Juan Quintelae595a012017-07-17 12:30:25 +0200431}
432
Juan Quintela36c2f8b2018-03-07 08:40:52 +0100433void migration_incoming_process(void)
Juan Quintelae595a012017-07-17 12:30:25 +0200434{
435 Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL);
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200436 qemu_coroutine_enter(co);
Paolo Bonzini82a4da72012-08-07 10:57:43 +0200437}
438
Juan Quintelae595a012017-07-17 12:30:25 +0200439void migration_fd_process_incoming(QEMUFile *f)
440{
441 migration_incoming_setup(f);
442 migration_incoming_process();
443}
444
Juan Quintela4f0fae72017-07-24 12:42:02 +0200445void migration_ioc_process_incoming(QIOChannel *ioc)
446{
447 MigrationIncomingState *mis = migration_incoming_get_current();
448
449 if (!mis->from_src_file) {
450 QEMUFile *f = qemu_fopen_channel_input(ioc);
Juan Quintela36c2f8b2018-03-07 08:40:52 +0100451 migration_incoming_setup(f);
Juan Quintela71bb07d2018-02-19 19:01:03 +0100452 return;
Juan Quintela4f0fae72017-07-24 12:42:02 +0200453 }
Juan Quintela71bb07d2018-02-19 19:01:03 +0100454 multifd_recv_new_channel(ioc);
Juan Quintela4f0fae72017-07-24 12:42:02 +0200455}
456
Juan Quintela428d8902017-07-24 13:06:25 +0200457/**
458 * @migration_has_all_channels: We have received all channels that we need
459 *
460 * Returns true when we have got connections to all the channels that
461 * we need for migration.
462 */
463bool migration_has_all_channels(void)
464{
Juan Quintela62c1e0c2018-02-19 18:59:02 +0100465 bool all_channels;
466
467 all_channels = multifd_recv_all_channels_created();
468
469 return all_channels;
Juan Quintela428d8902017-07-24 13:06:25 +0200470}
471
Dr. David Alan Gilbert6decec92015-11-05 18:10:47 +0000472/*
Dr. David Alan Gilbert6decec92015-11-05 18:10:47 +0000473 * Send a 'SHUT' message on the return channel with the given value
474 * to indicate that we've finished with the RP. Non-0 value indicates
475 * error.
476 */
477void migrate_send_rp_shut(MigrationIncomingState *mis,
478 uint32_t value)
479{
480 uint32_t buf;
481
482 buf = cpu_to_be32(value);
483 migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
484}
485
486/*
487 * Send a 'PONG' message on the return channel with the given value
488 * (normally in response to a 'PING')
489 */
490void migrate_send_rp_pong(MigrationIncomingState *mis,
491 uint32_t value)
492{
493 uint32_t buf;
494
495 buf = cpu_to_be32(value);
496 migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
497}
498
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300499MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
500{
501 MigrationCapabilityStatusList *head = NULL;
502 MigrationCapabilityStatusList *caps;
503 MigrationState *s = migrate_get_current();
504 int i;
505
Michael Tokarev387eede2013-10-05 13:18:28 +0400506 caps = NULL; /* silence compiler warning */
Eric Blake7fb1cf12015-11-18 01:52:57 -0700507 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
Dr. David Alan Gilberted1701c2017-05-15 15:05:29 +0100508#ifndef CONFIG_LIVE_BLOCK_MIGRATION
509 if (i == MIGRATION_CAPABILITY_BLOCK) {
510 continue;
511 }
512#endif
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300513 if (head == NULL) {
514 head = g_malloc0(sizeof(*caps));
515 caps = head;
516 } else {
517 caps->next = g_malloc0(sizeof(*caps));
518 caps = caps->next;
519 }
520 caps->value =
521 g_malloc(sizeof(*caps->value));
522 caps->value->capability = i;
523 caps->value->state = s->enabled_capabilities[i];
524 }
525
526 return head;
527}
528
Liang Li85de8322015-03-23 16:32:28 +0800529MigrationParameters *qmp_query_migrate_parameters(Error **errp)
530{
531 MigrationParameters *params;
532 MigrationState *s = migrate_get_current();
533
Markus Armbrustere87fae42017-07-18 12:57:38 +0200534 /* TODO use QAPI_CLONE() instead of duplicating it inline */
Liang Li85de8322015-03-23 16:32:28 +0800535 params = g_malloc0(sizeof(*params));
Eric Blakede63ab62016-09-08 22:14:15 -0500536 params->has_compress_level = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100537 params->compress_level = s->parameters.compress_level;
Eric Blakede63ab62016-09-08 22:14:15 -0500538 params->has_compress_threads = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100539 params->compress_threads = s->parameters.compress_threads;
Eric Blakede63ab62016-09-08 22:14:15 -0500540 params->has_decompress_threads = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100541 params->decompress_threads = s->parameters.decompress_threads;
Eric Blakede63ab62016-09-08 22:14:15 -0500542 params->has_cpu_throttle_initial = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100543 params->cpu_throttle_initial = s->parameters.cpu_throttle_initial;
Eric Blakede63ab62016-09-08 22:14:15 -0500544 params->has_cpu_throttle_increment = true;
Daniel P. Berrange2594f562016-04-27 11:05:14 +0100545 params->cpu_throttle_increment = s->parameters.cpu_throttle_increment;
Markus Armbruster8cc99dc2017-07-18 12:04:54 +0200546 params->has_tls_creds = true;
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100547 params->tls_creds = g_strdup(s->parameters.tls_creds);
Markus Armbruster8cc99dc2017-07-18 12:04:54 +0200548 params->has_tls_hostname = true;
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100549 params->tls_hostname = g_strdup(s->parameters.tls_hostname);
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530550 params->has_max_bandwidth = true;
551 params->max_bandwidth = s->parameters.max_bandwidth;
552 params->has_downtime_limit = true;
553 params->downtime_limit = s->parameters.downtime_limit;
zhanghailiangfe39a4d2016-11-02 15:42:09 +0800554 params->has_x_checkpoint_delay = true;
zhanghailiang68b53592016-10-27 14:43:01 +0800555 params->x_checkpoint_delay = s->parameters.x_checkpoint_delay;
Juan Quintela2833c592017-04-05 18:32:37 +0200556 params->has_block_incremental = true;
557 params->block_incremental = s->parameters.block_incremental;
Juan Quintela4075fb12016-01-15 08:56:17 +0100558 params->has_x_multifd_channels = true;
559 params->x_multifd_channels = s->parameters.x_multifd_channels;
Juan Quintela0fb86602017-04-27 10:48:25 +0200560 params->has_x_multifd_page_count = true;
561 params->x_multifd_page_count = s->parameters.x_multifd_page_count;
Juan Quintela73af8dd2017-10-05 21:30:10 +0200562 params->has_xbzrle_cache_size = true;
563 params->xbzrle_cache_size = s->parameters.xbzrle_cache_size;
Liang Li85de8322015-03-23 16:32:28 +0800564
565 return params;
566}
567
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000568/*
569 * Return true if we're already in the middle of a migration
570 * (i.e. any of the active or setup states)
571 */
572static bool migration_is_setup_or_active(int state)
573{
574 switch (state) {
575 case MIGRATION_STATUS_ACTIVE:
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000576 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000577 case MIGRATION_STATUS_SETUP:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +0100578 case MIGRATION_STATUS_PRE_SWITCHOVER:
579 case MIGRATION_STATUS_DEVICE:
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +0000580 return true;
581
582 default:
583 return false;
584
585 }
586}
587
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100588static void populate_ram_info(MigrationInfo *info, MigrationState *s)
589{
590 info->has_ram = true;
591 info->ram = g_malloc0(sizeof(*info->ram));
Juan Quintela93604472017-06-06 19:49:03 +0200592 info->ram->transferred = ram_counters.transferred;
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100593 info->ram->total = ram_bytes_total();
Juan Quintela93604472017-06-06 19:49:03 +0200594 info->ram->duplicate = ram_counters.duplicate;
Juan Quintelabedf53c2017-03-13 20:35:54 +0100595 /* legacy value. It is not used anymore */
596 info->ram->skipped = 0;
Juan Quintela93604472017-06-06 19:49:03 +0200597 info->ram->normal = ram_counters.normal;
598 info->ram->normal_bytes = ram_counters.normal *
Juan Quintela20afaed2017-03-21 09:09:14 +0100599 qemu_target_page_size();
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100600 info->ram->mbps = s->mbps;
Juan Quintela93604472017-06-06 19:49:03 +0200601 info->ram->dirty_sync_count = ram_counters.dirty_sync_count;
602 info->ram->postcopy_requests = ram_counters.postcopy_requests;
Chao Fan030ce1f2017-03-21 10:22:43 +0800603 info->ram->page_size = qemu_target_page_size();
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100604
Juan Quintela114f5ae2017-05-04 10:09:21 +0200605 if (migrate_use_xbzrle()) {
606 info->has_xbzrle_cache = true;
607 info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
608 info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
Juan Quintela93604472017-06-06 19:49:03 +0200609 info->xbzrle_cache->bytes = xbzrle_counters.bytes;
610 info->xbzrle_cache->pages = xbzrle_counters.pages;
611 info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss;
612 info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate;
613 info->xbzrle_cache->overflow = xbzrle_counters.overflow;
Juan Quintela114f5ae2017-05-04 10:09:21 +0200614 }
615
Juan Quintela338182c2017-05-03 13:16:38 +0200616 if (cpu_throttle_active()) {
617 info->has_cpu_throttle_percentage = true;
618 info->cpu_throttle_percentage = cpu_throttle_get_percentage();
619 }
620
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100621 if (s->state != MIGRATION_STATUS_COMPLETED) {
622 info->ram->remaining = ram_bytes_remaining();
Juan Quintela93604472017-06-06 19:49:03 +0200623 info->ram->dirty_pages_rate = ram_counters.dirty_pages_rate;
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100624 }
625}
626
Juan Quintela930ac042017-05-04 10:21:46 +0200627static void populate_disk_info(MigrationInfo *info)
628{
629 if (blk_mig_active()) {
630 info->has_disk = true;
631 info->disk = g_malloc0(sizeof(*info->disk));
632 info->disk->transferred = blk_mig_bytes_transferred();
633 info->disk->remaining = blk_mig_bytes_remaining();
634 info->disk->total = blk_mig_bytes_total();
635 }
636}
637
Alexey Perevalov65ace062018-03-22 21:17:27 +0300638static void fill_source_migration_info(MigrationInfo *info)
aliguori5bb79102008-10-13 03:12:02 +0000639{
Juan Quintela17549e82011-10-05 13:50:43 +0200640 MigrationState *s = migrate_get_current();
aliguori376253e2009-03-05 23:01:23 +0000641
Juan Quintela17549e82011-10-05 13:50:43 +0200642 switch (s->state) {
zhanghailiang31194732015-03-13 16:08:38 +0800643 case MIGRATION_STATUS_NONE:
Juan Quintela17549e82011-10-05 13:50:43 +0200644 /* no migration has happened ever */
Alexey Perevalov65ace062018-03-22 21:17:27 +0300645 /* do not overwrite destination migration status */
646 return;
Juan Quintela17549e82011-10-05 13:50:43 +0200647 break;
zhanghailiang31194732015-03-13 16:08:38 +0800648 case MIGRATION_STATUS_SETUP:
Michael R. Hines29ae8a42013-07-22 10:01:57 -0400649 info->has_status = true;
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400650 info->has_total_time = false;
Michael R. Hines29ae8a42013-07-22 10:01:57 -0400651 break;
zhanghailiang31194732015-03-13 16:08:38 +0800652 case MIGRATION_STATUS_ACTIVE:
653 case MIGRATION_STATUS_CANCELLING:
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000654 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +0100655 case MIGRATION_STATUS_PRE_SWITCHOVER:
656 case MIGRATION_STATUS_DEVICE:
Juan Quintelac8f9f4f2017-06-06 19:21:29 +0200657 /* TODO add some postcopy stats */
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000658 info->has_status = true;
659 info->has_total_time = true;
660 info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
Peter Xu4af246a2018-01-03 20:20:08 +0800661 - s->start_time;
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000662 info->has_expected_downtime = true;
663 info->expected_downtime = s->expected_downtime;
664 info->has_setup_time = true;
665 info->setup_time = s->setup_time;
666
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100667 populate_ram_info(info, s);
Juan Quintela930ac042017-05-04 10:21:46 +0200668 populate_disk_info(info);
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000669 break;
zhanghailiang0b827d52016-10-27 14:42:54 +0800670 case MIGRATION_STATUS_COLO:
671 info->has_status = true;
672 /* TODO: display COLO specific information (checkpoint info etc.) */
673 break;
zhanghailiang31194732015-03-13 16:08:38 +0800674 case MIGRATION_STATUS_COMPLETED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300675 info->has_status = true;
Pawit Pornkitprasan00c14992013-07-19 11:23:45 +0900676 info->has_total_time = true;
Juan Quintela7aa939a2012-08-18 13:17:10 +0200677 info->total_time = s->total_time;
Juan Quintela9c5a9fc2012-08-13 09:35:16 +0200678 info->has_downtime = true;
679 info->downtime = s->downtime;
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400680 info->has_setup_time = true;
681 info->setup_time = s->setup_time;
Juan Quintelad5f8a572012-05-21 22:01:07 +0200682
Dr. David Alan Gilberta22463a2016-06-13 12:16:41 +0100683 populate_ram_info(info, s);
Juan Quintela17549e82011-10-05 13:50:43 +0200684 break;
zhanghailiang31194732015-03-13 16:08:38 +0800685 case MIGRATION_STATUS_FAILED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300686 info->has_status = true;
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +0100687 if (s->error) {
688 info->has_error_desc = true;
689 info->error_desc = g_strdup(error_get_pretty(s->error));
690 }
Juan Quintela17549e82011-10-05 13:50:43 +0200691 break;
zhanghailiang31194732015-03-13 16:08:38 +0800692 case MIGRATION_STATUS_CANCELLED:
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300693 info->has_status = true;
Juan Quintela17549e82011-10-05 13:50:43 +0200694 break;
aliguori5bb79102008-10-13 03:12:02 +0000695 }
zhanghailiangcde63fb2015-03-13 16:08:41 +0800696 info->status = s->state;
aliguori5bb79102008-10-13 03:12:02 +0000697}
698
Peter Xu4a842142017-07-18 11:39:08 +0800699/**
700 * @migration_caps_check - check capability validity
701 *
702 * @cap_list: old capability list, array of bool
703 * @params: new capabilities to be applied soon
704 * @errp: set *errp if the check failed, with reason
705 *
706 * Returns true if check passed, otherwise false.
707 */
708static bool migrate_caps_check(bool *cap_list,
709 MigrationCapabilityStatusList *params,
710 Error **errp)
Orit Wasserman00458432012-08-06 21:42:48 +0300711{
Orit Wasserman00458432012-08-06 21:42:48 +0300712 MigrationCapabilityStatusList *cap;
Peter Xu4a842142017-07-18 11:39:08 +0800713 bool old_postcopy_cap;
Alexey Perevalovd7651f12017-09-19 19:47:56 +0300714 MigrationIncomingState *mis = migration_incoming_get_current();
Orit Wasserman00458432012-08-06 21:42:48 +0300715
Peter Xu4a842142017-07-18 11:39:08 +0800716 old_postcopy_cap = cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM];
Orit Wasserman00458432012-08-06 21:42:48 +0300717
718 for (cap = params; cap; cap = cap->next) {
Peter Xu4a842142017-07-18 11:39:08 +0800719 cap_list[cap->value->capability] = cap->value->state;
Orit Wasserman00458432012-08-06 21:42:48 +0300720 }
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000721
Peter Xu4a842142017-07-18 11:39:08 +0800722#ifndef CONFIG_LIVE_BLOCK_MIGRATION
723 if (cap_list[MIGRATION_CAPABILITY_BLOCK]) {
724 error_setg(errp, "QEMU compiled without old-style (blk/-b, inc/-i) "
725 "block migration");
726 error_append_hint(errp, "Use drive_mirror+NBD instead.\n");
727 return false;
728 }
729#endif
730
731 if (cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM]) {
732 if (cap_list[MIGRATION_CAPABILITY_COMPRESS]) {
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000733 /* The decompression threads asynchronously write into RAM
734 * rather than use the atomic copies needed to avoid
735 * userfaulting. It should be possible to fix the decompression
736 * threads for compatibility in future.
737 */
Peter Xu4a842142017-07-18 11:39:08 +0800738 error_setg(errp, "Postcopy is not currently compatible "
739 "with compression");
740 return false;
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000741 }
Peter Xu4a842142017-07-18 11:39:08 +0800742
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100743 /* This check is reasonably expensive, so only when it's being
744 * set the first time, also it's only the destination that needs
745 * special support.
746 */
747 if (!old_postcopy_cap && runstate_check(RUN_STATE_INMIGRATE) &&
Alexey Perevalovd7651f12017-09-19 19:47:56 +0300748 !postcopy_ram_supported_by_host(mis)) {
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100749 /* postcopy_ram_supported_by_host will have emitted a more
750 * detailed message
751 */
Peter Xu4a842142017-07-18 11:39:08 +0800752 error_setg(errp, "Postcopy is not supported");
753 return false;
Dr. David Alan Gilbert096631b2016-06-13 12:16:45 +0100754 }
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000755 }
Peter Xu4a842142017-07-18 11:39:08 +0800756
757 return true;
758}
759
Alexey Perevalov65ace062018-03-22 21:17:27 +0300760static void fill_destination_migration_info(MigrationInfo *info)
761{
762 MigrationIncomingState *mis = migration_incoming_get_current();
763
764 switch (mis->state) {
765 case MIGRATION_STATUS_NONE:
766 return;
767 break;
768 case MIGRATION_STATUS_SETUP:
769 case MIGRATION_STATUS_CANCELLING:
770 case MIGRATION_STATUS_CANCELLED:
771 case MIGRATION_STATUS_ACTIVE:
772 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
773 case MIGRATION_STATUS_FAILED:
774 case MIGRATION_STATUS_COLO:
775 info->has_status = true;
776 break;
777 case MIGRATION_STATUS_COMPLETED:
778 info->has_status = true;
779 fill_destination_postcopy_migration_info(info);
780 break;
781 }
782 info->status = mis->state;
783}
784
785MigrationInfo *qmp_query_migrate(Error **errp)
786{
787 MigrationInfo *info = g_malloc0(sizeof(*info));
788
789 fill_destination_migration_info(info);
790 fill_source_migration_info(info);
791
792 return info;
793}
794
Peter Xu4a842142017-07-18 11:39:08 +0800795void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
796 Error **errp)
797{
798 MigrationState *s = migrate_get_current();
799 MigrationCapabilityStatusList *cap;
Peter Xudd0ee302018-03-05 17:49:38 +0800800 bool cap_list[MIGRATION_CAPABILITY__MAX];
Peter Xu4a842142017-07-18 11:39:08 +0800801
802 if (migration_is_setup_or_active(s->state)) {
803 error_setg(errp, QERR_MIGRATION_ACTIVE);
804 return;
805 }
806
Peter Xudd0ee302018-03-05 17:49:38 +0800807 memcpy(cap_list, s->enabled_capabilities, sizeof(cap_list));
808 if (!migrate_caps_check(cap_list, params, errp)) {
Peter Xu4a842142017-07-18 11:39:08 +0800809 return;
810 }
811
812 for (cap = params; cap; cap = cap->next) {
813 s->enabled_capabilities[cap->value->capability] = cap->value->state;
814 }
Orit Wasserman00458432012-08-06 21:42:48 +0300815}
816
Peter Xu16d063b2017-07-18 11:39:04 +0800817/*
818 * Check whether the parameters are valid. Error will be put into errp
819 * (if provided). Return true if valid, otherwise false.
820 */
821static bool migrate_params_check(MigrationParameters *params, Error **errp)
Liang Li85de8322015-03-23 16:32:28 +0800822{
Eric Blake7f375e02016-09-08 22:14:16 -0500823 if (params->has_compress_level &&
Juan Quintela741d4082017-12-01 13:08:38 +0100824 (params->compress_level > 9)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100825 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
826 "is invalid, it should be in the range of 0 to 9");
Peter Xu16d063b2017-07-18 11:39:04 +0800827 return false;
Liang Li85de8322015-03-23 16:32:28 +0800828 }
Peter Xu16d063b2017-07-18 11:39:04 +0800829
Juan Quintela741d4082017-12-01 13:08:38 +0100830 if (params->has_compress_threads && (params->compress_threads < 1)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100831 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
832 "compress_threads",
833 "is invalid, it should be in the range of 1 to 255");
Peter Xu16d063b2017-07-18 11:39:04 +0800834 return false;
Liang Li85de8322015-03-23 16:32:28 +0800835 }
Peter Xu16d063b2017-07-18 11:39:04 +0800836
Juan Quintela741d4082017-12-01 13:08:38 +0100837 if (params->has_decompress_threads && (params->decompress_threads < 1)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100838 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
839 "decompress_threads",
840 "is invalid, it should be in the range of 1 to 255");
Peter Xu16d063b2017-07-18 11:39:04 +0800841 return false;
Liang Li85de8322015-03-23 16:32:28 +0800842 }
Peter Xu16d063b2017-07-18 11:39:04 +0800843
Eric Blake7f375e02016-09-08 22:14:16 -0500844 if (params->has_cpu_throttle_initial &&
845 (params->cpu_throttle_initial < 1 ||
846 params->cpu_throttle_initial > 99)) {
Jason J. Herne1626fee2015-09-08 13:12:34 -0400847 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
Jason J. Herned85a31d2016-04-21 14:07:18 -0400848 "cpu_throttle_initial",
Jason J. Herne1626fee2015-09-08 13:12:34 -0400849 "an integer in the range of 1 to 99");
Peter Xu16d063b2017-07-18 11:39:04 +0800850 return false;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400851 }
Peter Xu16d063b2017-07-18 11:39:04 +0800852
Eric Blake7f375e02016-09-08 22:14:16 -0500853 if (params->has_cpu_throttle_increment &&
854 (params->cpu_throttle_increment < 1 ||
855 params->cpu_throttle_increment > 99)) {
Jason J. Herne1626fee2015-09-08 13:12:34 -0400856 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
Jason J. Herned85a31d2016-04-21 14:07:18 -0400857 "cpu_throttle_increment",
Jason J. Herne1626fee2015-09-08 13:12:34 -0400858 "an integer in the range of 1 to 99");
Peter Xu16d063b2017-07-18 11:39:04 +0800859 return false;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400860 }
Peter Xu16d063b2017-07-18 11:39:04 +0800861
Juan Quintela741d4082017-12-01 13:08:38 +0100862 if (params->has_max_bandwidth && (params->max_bandwidth > SIZE_MAX)) {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530863 error_setg(errp, "Parameter 'max_bandwidth' expects an integer in the"
864 " range of 0 to %zu bytes/second", SIZE_MAX);
Peter Xu16d063b2017-07-18 11:39:04 +0800865 return false;
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530866 }
Peter Xu16d063b2017-07-18 11:39:04 +0800867
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530868 if (params->has_downtime_limit &&
Juan Quintela741d4082017-12-01 13:08:38 +0100869 (params->downtime_limit > MAX_MIGRATE_DOWNTIME)) {
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -0300870 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
871 "the range of 0 to %d milliseconds",
872 MAX_MIGRATE_DOWNTIME);
Peter Xu16d063b2017-07-18 11:39:04 +0800873 return false;
Ashijeet Acharya2ff30252016-09-15 21:50:28 +0530874 }
Peter Xu16d063b2017-07-18 11:39:04 +0800875
Juan Quintela741d4082017-12-01 13:08:38 +0100876 /* x_checkpoint_delay is now always positive */
877
878 if (params->has_x_multifd_channels && (params->x_multifd_channels < 1)) {
Juan Quintela4075fb12016-01-15 08:56:17 +0100879 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
880 "multifd_channels",
881 "is invalid, it should be in the range of 1 to 255");
882 return false;
883 }
Juan Quintela0fb86602017-04-27 10:48:25 +0200884 if (params->has_x_multifd_page_count &&
Juan Quintela741d4082017-12-01 13:08:38 +0100885 (params->x_multifd_page_count < 1 ||
886 params->x_multifd_page_count > 10000)) {
Juan Quintela0fb86602017-04-27 10:48:25 +0200887 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
888 "multifd_page_count",
889 "is invalid, it should be in the range of 1 to 10000");
890 return false;
891 }
Peter Xu16d063b2017-07-18 11:39:04 +0800892
Juan Quintela73af8dd2017-10-05 21:30:10 +0200893 if (params->has_xbzrle_cache_size &&
894 (params->xbzrle_cache_size < qemu_target_page_size() ||
895 !is_power_of_2(params->xbzrle_cache_size))) {
896 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
897 "xbzrle_cache_size",
898 "is invalid, it should be bigger than target page size"
899 " and a power of two");
900 return false;
901 }
902
Peter Xu16d063b2017-07-18 11:39:04 +0800903 return true;
904}
905
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200906static void migrate_params_test_apply(MigrateSetParameters *params,
907 MigrationParameters *dest)
908{
909 *dest = migrate_get_current()->parameters;
910
911 /* TODO use QAPI_CLONE() instead of duplicating it inline */
912
913 if (params->has_compress_level) {
914 dest->compress_level = params->compress_level;
915 }
916
917 if (params->has_compress_threads) {
918 dest->compress_threads = params->compress_threads;
919 }
920
921 if (params->has_decompress_threads) {
922 dest->decompress_threads = params->decompress_threads;
923 }
924
925 if (params->has_cpu_throttle_initial) {
926 dest->cpu_throttle_initial = params->cpu_throttle_initial;
927 }
928
929 if (params->has_cpu_throttle_increment) {
930 dest->cpu_throttle_increment = params->cpu_throttle_increment;
931 }
932
933 if (params->has_tls_creds) {
Markus Armbruster01fa5592017-07-18 14:42:04 +0200934 assert(params->tls_creds->type == QTYPE_QSTRING);
935 dest->tls_creds = g_strdup(params->tls_creds->u.s);
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200936 }
937
938 if (params->has_tls_hostname) {
Markus Armbruster01fa5592017-07-18 14:42:04 +0200939 assert(params->tls_hostname->type == QTYPE_QSTRING);
940 dest->tls_hostname = g_strdup(params->tls_hostname->u.s);
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200941 }
942
943 if (params->has_max_bandwidth) {
944 dest->max_bandwidth = params->max_bandwidth;
945 }
946
947 if (params->has_downtime_limit) {
948 dest->downtime_limit = params->downtime_limit;
949 }
950
951 if (params->has_x_checkpoint_delay) {
952 dest->x_checkpoint_delay = params->x_checkpoint_delay;
953 }
954
955 if (params->has_block_incremental) {
956 dest->block_incremental = params->block_incremental;
957 }
Juan Quintela5e7577a2017-10-09 18:07:56 +0200958 if (params->has_x_multifd_channels) {
959 dest->x_multifd_channels = params->x_multifd_channels;
960 }
961 if (params->has_x_multifd_page_count) {
962 dest->x_multifd_page_count = params->x_multifd_page_count;
963 }
Juan Quintela73af8dd2017-10-05 21:30:10 +0200964 if (params->has_xbzrle_cache_size) {
965 dest->xbzrle_cache_size = params->xbzrle_cache_size;
966 }
Markus Armbruster1bda8b32017-07-18 13:42:11 +0200967}
968
Juan Quintela73af8dd2017-10-05 21:30:10 +0200969static void migrate_params_apply(MigrateSetParameters *params, Error **errp)
Peter Xu16d063b2017-07-18 11:39:04 +0800970{
971 MigrationState *s = migrate_get_current();
972
Markus Armbrustere87fae42017-07-18 12:57:38 +0200973 /* TODO use QAPI_CLONE() instead of duplicating it inline */
974
Eric Blake7f375e02016-09-08 22:14:16 -0500975 if (params->has_compress_level) {
976 s->parameters.compress_level = params->compress_level;
Liang Li85de8322015-03-23 16:32:28 +0800977 }
Peter Xu476c72a2017-07-18 11:39:05 +0800978
Eric Blake7f375e02016-09-08 22:14:16 -0500979 if (params->has_compress_threads) {
980 s->parameters.compress_threads = params->compress_threads;
Liang Li85de8322015-03-23 16:32:28 +0800981 }
Peter Xu476c72a2017-07-18 11:39:05 +0800982
Eric Blake7f375e02016-09-08 22:14:16 -0500983 if (params->has_decompress_threads) {
984 s->parameters.decompress_threads = params->decompress_threads;
Liang Li85de8322015-03-23 16:32:28 +0800985 }
Peter Xu476c72a2017-07-18 11:39:05 +0800986
Eric Blake7f375e02016-09-08 22:14:16 -0500987 if (params->has_cpu_throttle_initial) {
988 s->parameters.cpu_throttle_initial = params->cpu_throttle_initial;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400989 }
Peter Xu476c72a2017-07-18 11:39:05 +0800990
Eric Blake7f375e02016-09-08 22:14:16 -0500991 if (params->has_cpu_throttle_increment) {
992 s->parameters.cpu_throttle_increment = params->cpu_throttle_increment;
Jason J. Herne1626fee2015-09-08 13:12:34 -0400993 }
Peter Xu476c72a2017-07-18 11:39:05 +0800994
Eric Blake7f375e02016-09-08 22:14:16 -0500995 if (params->has_tls_creds) {
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100996 g_free(s->parameters.tls_creds);
Markus Armbruster01fa5592017-07-18 14:42:04 +0200997 assert(params->tls_creds->type == QTYPE_QSTRING);
998 s->parameters.tls_creds = g_strdup(params->tls_creds->u.s);
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100999 }
Peter Xu476c72a2017-07-18 11:39:05 +08001000
Eric Blake7f375e02016-09-08 22:14:16 -05001001 if (params->has_tls_hostname) {
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +01001002 g_free(s->parameters.tls_hostname);
Markus Armbruster01fa5592017-07-18 14:42:04 +02001003 assert(params->tls_hostname->type == QTYPE_QSTRING);
1004 s->parameters.tls_hostname = g_strdup(params->tls_hostname->u.s);
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +01001005 }
Peter Xu476c72a2017-07-18 11:39:05 +08001006
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301007 if (params->has_max_bandwidth) {
1008 s->parameters.max_bandwidth = params->max_bandwidth;
1009 if (s->to_dst_file) {
1010 qemu_file_set_rate_limit(s->to_dst_file,
1011 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
1012 }
1013 }
Peter Xu476c72a2017-07-18 11:39:05 +08001014
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301015 if (params->has_downtime_limit) {
1016 s->parameters.downtime_limit = params->downtime_limit;
1017 }
zhanghailiang68b53592016-10-27 14:43:01 +08001018
1019 if (params->has_x_checkpoint_delay) {
1020 s->parameters.x_checkpoint_delay = params->x_checkpoint_delay;
zhanghailiang479125d2017-01-17 20:57:42 +08001021 if (migration_in_colo_state()) {
1022 colo_checkpoint_notify(s);
1023 }
zhanghailiang68b53592016-10-27 14:43:01 +08001024 }
Peter Xu476c72a2017-07-18 11:39:05 +08001025
Juan Quintela2833c592017-04-05 18:32:37 +02001026 if (params->has_block_incremental) {
1027 s->parameters.block_incremental = params->block_incremental;
1028 }
Juan Quintela4075fb12016-01-15 08:56:17 +01001029 if (params->has_x_multifd_channels) {
1030 s->parameters.x_multifd_channels = params->x_multifd_channels;
1031 }
Juan Quintela0fb86602017-04-27 10:48:25 +02001032 if (params->has_x_multifd_page_count) {
1033 s->parameters.x_multifd_page_count = params->x_multifd_page_count;
1034 }
Juan Quintela73af8dd2017-10-05 21:30:10 +02001035 if (params->has_xbzrle_cache_size) {
1036 s->parameters.xbzrle_cache_size = params->xbzrle_cache_size;
1037 xbzrle_cache_resize(params->xbzrle_cache_size, errp);
1038 }
Liang Li85de8322015-03-23 16:32:28 +08001039}
1040
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001041void qmp_migrate_set_parameters(MigrateSetParameters *params, Error **errp)
Peter Xu476c72a2017-07-18 11:39:05 +08001042{
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001043 MigrationParameters tmp;
1044
Markus Armbruster01fa5592017-07-18 14:42:04 +02001045 /* TODO Rewrite "" to null instead */
1046 if (params->has_tls_creds
1047 && params->tls_creds->type == QTYPE_QNULL) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001048 qobject_unref(params->tls_creds->u.n);
Markus Armbruster01fa5592017-07-18 14:42:04 +02001049 params->tls_creds->type = QTYPE_QSTRING;
1050 params->tls_creds->u.s = strdup("");
1051 }
1052 /* TODO Rewrite "" to null instead */
1053 if (params->has_tls_hostname
1054 && params->tls_hostname->type == QTYPE_QNULL) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001055 qobject_unref(params->tls_hostname->u.n);
Markus Armbruster01fa5592017-07-18 14:42:04 +02001056 params->tls_hostname->type = QTYPE_QSTRING;
1057 params->tls_hostname->u.s = strdup("");
1058 }
1059
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001060 migrate_params_test_apply(params, &tmp);
1061
1062 if (!migrate_params_check(&tmp, errp)) {
Peter Xu476c72a2017-07-18 11:39:05 +08001063 /* Invalid parameter */
1064 return;
1065 }
1066
Juan Quintela73af8dd2017-10-05 21:30:10 +02001067 migrate_params_apply(params, errp);
Peter Xu476c72a2017-07-18 11:39:05 +08001068}
1069
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001070
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001071void qmp_migrate_start_postcopy(Error **errp)
1072{
1073 MigrationState *s = migrate_get_current();
1074
Vladimir Sementsov-Ogievskiy16b0fd32018-03-13 15:34:01 -04001075 if (!migrate_postcopy()) {
Dr. David Alan Gilberta54d3402015-11-12 11:34:44 +00001076 error_setg(errp, "Enable postcopy with migrate_set_capability before"
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001077 " the start of migration");
1078 return;
1079 }
1080
1081 if (s->state == MIGRATION_STATUS_NONE) {
1082 error_setg(errp, "Postcopy must be started after migration has been"
1083 " started");
1084 return;
1085 }
1086 /*
1087 * we don't error if migration has finished since that would be racy
1088 * with issuing this command.
1089 */
1090 atomic_set(&s->start_postcopy, true);
1091}
1092
aliguori065e2812008-11-11 16:46:33 +00001093/* shared migration helpers */
1094
zhanghailiang48781e52015-12-16 11:47:33 +00001095void migrate_set_state(int *state, int old_state, int new_state)
Zhanghaoyu (A)51cf4c12013-11-07 11:01:15 +00001096{
Peter Xua31fede2017-08-30 16:32:01 +08001097 assert(new_state < MIGRATION_STATUS__MAX);
zhanghailiang48781e52015-12-16 11:47:33 +00001098 if (atomic_cmpxchg(state, old_state, new_state) == old_state) {
Peter Xua31fede2017-08-30 16:32:01 +08001099 trace_migrate_set_state(MigrationStatus_str(new_state));
Juan Quintelab05dc722015-07-07 14:44:05 +02001100 migrate_generate_event(new_state);
Zhanghaoyu (A)51cf4c12013-11-07 11:01:15 +00001101 }
1102}
1103
Peter Xu4e4a3d32017-07-18 11:39:09 +08001104static MigrationCapabilityStatusList *migrate_cap_add(
1105 MigrationCapabilityStatusList *list,
1106 MigrationCapability index,
1107 bool state)
Juan Quintela2833c592017-04-05 18:32:37 +02001108{
1109 MigrationCapabilityStatusList *cap;
1110
1111 cap = g_new0(MigrationCapabilityStatusList, 1);
1112 cap->value = g_new0(MigrationCapabilityStatus, 1);
Peter Xu4e4a3d32017-07-18 11:39:09 +08001113 cap->value->capability = index;
1114 cap->value->state = state;
1115 cap->next = list;
1116
1117 return cap;
1118}
1119
1120void migrate_set_block_enabled(bool value, Error **errp)
1121{
1122 MigrationCapabilityStatusList *cap;
1123
1124 cap = migrate_cap_add(NULL, MIGRATION_CAPABILITY_BLOCK, value);
Juan Quintela2833c592017-04-05 18:32:37 +02001125 qmp_migrate_set_capabilities(cap, errp);
1126 qapi_free_MigrationCapabilityStatusList(cap);
1127}
1128
1129static void migrate_set_block_incremental(MigrationState *s, bool value)
1130{
1131 s->parameters.block_incremental = value;
1132}
1133
1134static void block_cleanup_parameters(MigrationState *s)
1135{
1136 if (s->must_remove_block_options) {
1137 /* setting to false can never fail */
1138 migrate_set_block_enabled(false, &error_abort);
1139 migrate_set_block_incremental(s, false);
1140 s->must_remove_block_options = false;
1141 }
1142}
1143
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01001144static void migrate_fd_cleanup(void *opaque)
aliguori065e2812008-11-11 16:46:33 +00001145{
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01001146 MigrationState *s = opaque;
1147
1148 qemu_bh_delete(s->cleanup_bh);
1149 s->cleanup_bh = NULL;
1150
Peter Xu0ceccd82018-01-03 20:20:06 +08001151 qemu_savevm_state_cleanup();
1152
zhanghailiang89a02a92016-01-15 11:37:42 +08001153 if (s->to_dst_file) {
Juan Quintelaf986c3d2016-01-14 16:52:55 +01001154 Error *local_err = NULL;
1155
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +11001156 trace_migrate_fd_cleanup();
Paolo Bonzini404a7c02013-02-22 17:36:46 +01001157 qemu_mutex_unlock_iothread();
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001158 if (s->migration_thread_running) {
1159 qemu_thread_join(&s->thread);
1160 s->migration_thread_running = false;
1161 }
Paolo Bonzini404a7c02013-02-22 17:36:46 +01001162 qemu_mutex_lock_iothread();
1163
Juan Quintelaf986c3d2016-01-14 16:52:55 +01001164 if (multifd_save_cleanup(&local_err) != 0) {
1165 error_report_err(local_err);
1166 }
zhanghailiang89a02a92016-01-15 11:37:42 +08001167 qemu_fclose(s->to_dst_file);
1168 s->to_dst_file = NULL;
aliguori065e2812008-11-11 16:46:33 +00001169 }
1170
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001171 assert((s->state != MIGRATION_STATUS_ACTIVE) &&
1172 (s->state != MIGRATION_STATUS_POSTCOPY_ACTIVE));
Paolo Bonzini7a2c1722013-02-22 17:36:09 +01001173
Liang Li94f5a432015-11-02 15:37:00 +08001174 if (s->state == MIGRATION_STATUS_CANCELLING) {
zhanghailiang48781e52015-12-16 11:47:33 +00001175 migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
Liang Li94f5a432015-11-02 15:37:00 +08001176 MIGRATION_STATUS_CANCELLED);
Paolo Bonzini7a2c1722013-02-22 17:36:09 +01001177 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01001178
Juan Quintela87db1a72017-09-05 12:50:22 +02001179 if (s->error) {
1180 /* It is used on info migrate. We can't free it */
1181 error_report_err(error_copy(s->error));
1182 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01001183 notifier_list_notify(&migration_state_notifiers, s);
Juan Quintela2833c592017-04-05 18:32:37 +02001184 block_cleanup_parameters(s);
aliguori065e2812008-11-11 16:46:33 +00001185}
1186
Juan Quintela87db1a72017-09-05 12:50:22 +02001187void migrate_set_error(MigrationState *s, const Error *error)
1188{
1189 qemu_mutex_lock(&s->error_mutex);
1190 if (!s->error) {
1191 s->error = error_copy(error);
1192 }
1193 qemu_mutex_unlock(&s->error_mutex);
1194}
1195
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001196void migrate_fd_error(MigrationState *s, const Error *error)
aliguori065e2812008-11-11 16:46:33 +00001197{
Peter Maydell25174052016-10-21 18:41:45 +01001198 trace_migrate_fd_error(error_get_pretty(error));
zhanghailiang89a02a92016-01-15 11:37:42 +08001199 assert(s->to_dst_file == NULL);
zhanghailiang48781e52015-12-16 11:47:33 +00001200 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1201 MIGRATION_STATUS_FAILED);
Juan Quintela87db1a72017-09-05 12:50:22 +02001202 migrate_set_error(s, error);
Juan Quintela458cf282011-02-22 23:32:54 +01001203}
1204
Juan Quintela0edda1c2010-05-11 16:28:39 +02001205static void migrate_fd_cancel(MigrationState *s)
aliguori065e2812008-11-11 16:46:33 +00001206{
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001207 int old_state ;
zhanghailiang89a02a92016-01-15 11:37:42 +08001208 QEMUFile *f = migrate_get_current()->to_dst_file;
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +11001209 trace_migrate_fd_cancel();
aliguori065e2812008-11-11 16:46:33 +00001210
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001211 if (s->rp_state.from_dst_file) {
1212 /* shutdown the rp socket, so causing the rp thread to shutdown */
1213 qemu_file_shutdown(s->rp_state.from_dst_file);
1214 }
1215
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001216 do {
1217 old_state = s->state;
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +00001218 if (!migration_is_setup_or_active(old_state)) {
Zhanghaoyu (A)6f2b8112013-11-07 08:21:23 +00001219 break;
1220 }
Dr. David Alan Gilberta7b36b42017-10-20 10:05:55 +01001221 /* If the migration is paused, kick it out of the pause */
1222 if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) {
1223 qemu_sem_post(&s->pause_sem);
1224 }
zhanghailiang48781e52015-12-16 11:47:33 +00001225 migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
zhanghailiang31194732015-03-13 16:08:38 +08001226 } while (s->state != MIGRATION_STATUS_CANCELLING);
Dr. David Alan Gilberta26ba262015-01-08 11:11:32 +00001227
1228 /*
1229 * If we're unlucky the migration code might be stuck somewhere in a
1230 * send/write while the network has failed and is waiting to timeout;
1231 * if we've got shutdown(2) available then we can force it to quit.
1232 * The outgoing qemu file gets closed in migrate_fd_cleanup that is
1233 * called in a bh, so there is no race against this cancel.
1234 */
zhanghailiang31194732015-03-13 16:08:38 +08001235 if (s->state == MIGRATION_STATUS_CANCELLING && f) {
Dr. David Alan Gilberta26ba262015-01-08 11:11:32 +00001236 qemu_file_shutdown(f);
1237 }
zhanghailiang1d2acc32017-01-24 15:59:52 +08001238 if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
1239 Error *local_err = NULL;
1240
1241 bdrv_invalidate_cache_all(&local_err);
1242 if (local_err) {
1243 error_report_err(local_err);
1244 } else {
1245 s->block_inactive = false;
1246 }
1247 }
aliguori065e2812008-11-11 16:46:33 +00001248}
1249
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001250void add_migration_state_change_notifier(Notifier *notify)
1251{
1252 notifier_list_add(&migration_state_notifiers, notify);
1253}
1254
1255void remove_migration_state_change_notifier(Notifier *notify)
1256{
Paolo Bonzini31552522012-01-13 17:34:01 +01001257 notifier_remove(notify);
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001258}
1259
Stefan Hajnoczi02edd2e2013-07-29 15:01:58 +02001260bool migration_in_setup(MigrationState *s)
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001261{
zhanghailiang31194732015-03-13 16:08:38 +08001262 return s->state == MIGRATION_STATUS_SETUP;
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001263}
1264
Juan Quintela70736932011-02-23 00:43:59 +01001265bool migration_has_finished(MigrationState *s)
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001266{
zhanghailiang31194732015-03-13 16:08:38 +08001267 return s->state == MIGRATION_STATUS_COMPLETED;
Gerd Hoffmann99a0db92010-12-13 17:30:12 +01001268}
Juan Quintela0edda1c2010-05-11 16:28:39 +02001269
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001270bool migration_has_failed(MigrationState *s)
1271{
zhanghailiang31194732015-03-13 16:08:38 +08001272 return (s->state == MIGRATION_STATUS_CANCELLED ||
1273 s->state == MIGRATION_STATUS_FAILED);
Gerd Hoffmannafe2df62011-10-25 13:50:11 +02001274}
1275
Juan Quintela57273092017-03-20 22:25:28 +01001276bool migration_in_postcopy(void)
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001277{
Juan Quintela57273092017-03-20 22:25:28 +01001278 MigrationState *s = migrate_get_current();
1279
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00001280 return (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
1281}
1282
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001283bool migration_in_postcopy_after_devices(MigrationState *s)
1284{
Juan Quintela57273092017-03-20 22:25:28 +01001285 return migration_in_postcopy() && s->postcopy_after_devices;
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001286}
1287
Juan Quintelafab35002017-03-22 17:36:57 +01001288bool migration_is_idle(void)
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301289{
Juan Quintelafab35002017-03-22 17:36:57 +01001290 MigrationState *s = migrate_get_current();
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301291
1292 switch (s->state) {
1293 case MIGRATION_STATUS_NONE:
1294 case MIGRATION_STATUS_CANCELLED:
1295 case MIGRATION_STATUS_COMPLETED:
1296 case MIGRATION_STATUS_FAILED:
1297 return true;
1298 case MIGRATION_STATUS_SETUP:
1299 case MIGRATION_STATUS_CANCELLING:
1300 case MIGRATION_STATUS_ACTIVE:
1301 case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1302 case MIGRATION_STATUS_COLO:
Dr. David Alan Gilbert31e06072017-10-20 10:05:51 +01001303 case MIGRATION_STATUS_PRE_SWITCHOVER:
1304 case MIGRATION_STATUS_DEVICE:
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301305 return false;
1306 case MIGRATION_STATUS__MAX:
1307 g_assert_not_reached();
1308 }
1309
1310 return false;
1311}
1312
Peter Xu3e0c8052018-02-08 18:31:15 +08001313void migrate_init(MigrationState *s)
Juan Quintela0edda1c2010-05-11 16:28:39 +02001314{
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001315 /*
1316 * Reinitialise all migration state, except
1317 * parameters/capabilities that the user set, and
1318 * locks.
1319 */
1320 s->bytes_xfer = 0;
1321 s->xfer_limit = 0;
1322 s->cleanup_bh = 0;
zhanghailiang89a02a92016-01-15 11:37:42 +08001323 s->to_dst_file = NULL;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001324 s->state = MIGRATION_STATUS_NONE;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001325 s->rp_state.from_dst_file = NULL;
1326 s->rp_state.error = false;
1327 s->mbps = 0.0;
1328 s->downtime = 0;
1329 s->expected_downtime = 0;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001330 s->setup_time = 0;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001331 s->start_postcopy = false;
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00001332 s->postcopy_after_devices = false;
Dr. David Alan Gilbert389775d2015-11-12 15:38:27 +00001333 s->migration_thread_running = false;
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001334 error_free(s->error);
1335 s->error = NULL;
Juan Quintela1299c632011-11-09 21:29:01 +01001336
zhanghailiang48781e52015-12-16 11:47:33 +00001337 migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
Juan Quintela0edda1c2010-05-11 16:28:39 +02001338
Peter Xu4af246a2018-01-03 20:20:08 +08001339 s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1340 s->total_time = 0;
Peter Xu7287cbd2018-01-03 20:20:09 +08001341 s->vm_was_running = false;
Peter Xub15df1a2018-01-03 20:20:13 +08001342 s->iteration_initial_bytes = 0;
1343 s->threshold_size = 0;
Juan Quintela0edda1c2010-05-11 16:28:39 +02001344}
Juan Quintelacab30142011-02-22 23:54:21 +01001345
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001346static GSList *migration_blockers;
1347
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301348int migrate_add_blocker(Error *reason, Error **errp)
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001349{
Peter Xu3df663e2017-06-27 12:10:15 +08001350 if (migrate_get_current()->only_migratable) {
Ashijeet Acharyab67b8c32017-01-16 17:01:54 +05301351 error_propagate(errp, error_copy(reason));
1352 error_prepend(errp, "disallowing migration blocker "
1353 "(--only_migratable) for: ");
1354 return -EACCES;
1355 }
1356
Juan Quintelafab35002017-03-22 17:36:57 +01001357 if (migration_is_idle()) {
Ashijeet Acharyafe44dc92017-01-16 17:01:53 +05301358 migration_blockers = g_slist_prepend(migration_blockers, reason);
1359 return 0;
1360 }
1361
1362 error_propagate(errp, error_copy(reason));
1363 error_prepend(errp, "disallowing migration blocker (migration in "
1364 "progress) for: ");
1365 return -EBUSY;
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001366}
1367
1368void migrate_del_blocker(Error *reason)
1369{
1370 migration_blockers = g_slist_remove(migration_blockers, reason);
1371}
1372
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001373void qmp_migrate_incoming(const char *uri, Error **errp)
1374{
1375 Error *local_err = NULL;
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001376 static bool once = true;
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001377
1378 if (!deferred_incoming) {
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001379 error_setg(errp, "For use with '-incoming defer'");
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001380 return;
1381 }
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001382 if (!once) {
1383 error_setg(errp, "The incoming migration has already been started");
1384 }
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001385
1386 qemu_start_incoming_migration(uri, &local_err);
1387
1388 if (local_err) {
1389 error_propagate(errp, local_err);
1390 return;
1391 }
1392
Dr. David Alan Gilbert4debb5f2015-02-26 14:54:41 +00001393 once = false;
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001394}
1395
Greg Kurz24f39022016-05-04 21:44:19 +02001396bool migration_is_blocked(Error **errp)
1397{
1398 if (qemu_savevm_state_blocked(errp)) {
1399 return true;
1400 }
1401
1402 if (migration_blockers) {
Eduardo Habkost250561e2017-06-08 10:39:05 -03001403 error_propagate(errp, error_copy(migration_blockers->data));
Greg Kurz24f39022016-05-04 21:44:19 +02001404 return true;
1405 }
1406
1407 return false;
1408}
1409
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001410void qmp_migrate(const char *uri, bool has_blk, bool blk,
1411 bool has_inc, bool inc, bool has_detach, bool detach,
1412 Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001413{
Paolo Bonzinibe7059c2012-10-03 14:34:33 +02001414 Error *local_err = NULL;
Juan Quintela17549e82011-10-05 13:50:43 +02001415 MigrationState *s = migrate_get_current();
Juan Quintelacab30142011-02-22 23:54:21 +01001416 const char *p;
Juan Quintelacab30142011-02-22 23:54:21 +01001417
Dr. David Alan Gilbertf6844b92015-11-05 18:10:48 +00001418 if (migration_is_setup_or_active(s->state) ||
zhanghailiang0b827d52016-10-27 14:42:54 +08001419 s->state == MIGRATION_STATUS_CANCELLING ||
1420 s->state == MIGRATION_STATUS_COLO) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001421 error_setg(errp, QERR_MIGRATION_ACTIVE);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001422 return;
Juan Quintelacab30142011-02-22 23:54:21 +01001423 }
Dr. David Alan Gilbertca999932014-04-14 17:03:59 +01001424 if (runstate_check(RUN_STATE_INMIGRATE)) {
1425 error_setg(errp, "Guest is waiting for an incoming migration");
1426 return;
1427 }
1428
Greg Kurz24f39022016-05-04 21:44:19 +02001429 if (migration_is_blocked(errp)) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001430 return;
Anthony Liguorifa2756b2011-11-14 15:09:43 -06001431 }
1432
Juan Quintela2833c592017-04-05 18:32:37 +02001433 if ((has_blk && blk) || (has_inc && inc)) {
1434 if (migrate_use_block() || migrate_use_block_incremental()) {
1435 error_setg(errp, "Command options are incompatible with "
1436 "current migration capabilities");
1437 return;
1438 }
1439 migrate_set_block_enabled(true, &local_err);
1440 if (local_err) {
1441 error_propagate(errp, local_err);
1442 return;
1443 }
1444 s->must_remove_block_options = true;
1445 }
1446
1447 if (has_inc && inc) {
1448 migrate_set_block_incremental(s, true);
1449 }
1450
Peter Xu3e0c8052018-02-08 18:31:15 +08001451 migrate_init(s);
Juan Quintelacab30142011-02-22 23:54:21 +01001452
1453 if (strstart(uri, "tcp:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001454 tcp_start_outgoing_migration(s, p, &local_err);
Michael R. Hines2da776d2013-07-22 10:01:54 -04001455#ifdef CONFIG_RDMA
Michael R. Hines41310c62013-12-19 04:52:01 +08001456 } else if (strstart(uri, "rdma:", &p)) {
Michael R. Hines2da776d2013-07-22 10:01:54 -04001457 rdma_start_outgoing_migration(s, p, &local_err);
1458#endif
Juan Quintelacab30142011-02-22 23:54:21 +01001459 } else if (strstart(uri, "exec:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001460 exec_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001461 } else if (strstart(uri, "unix:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001462 unix_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001463 } else if (strstart(uri, "fd:", &p)) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001464 fd_start_outgoing_migration(s, p, &local_err);
Juan Quintelacab30142011-02-22 23:54:21 +01001465 } else {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001466 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
1467 "a valid migration protocol");
zhanghailiang48781e52015-12-16 11:47:33 +00001468 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1469 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbert09576e72018-03-16 20:21:14 +00001470 block_cleanup_parameters(s);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001471 return;
Juan Quintelacab30142011-02-22 23:54:21 +01001472 }
1473
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001474 if (local_err) {
Daniel P. Berranged59ce6f2016-04-27 11:05:00 +01001475 migrate_fd_error(s, local_err);
Paolo Bonzinif37afb52012-10-02 10:02:46 +02001476 error_propagate(errp, local_err);
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001477 return;
Juan Quintela1299c632011-11-09 21:29:01 +01001478 }
Juan Quintelacab30142011-02-22 23:54:21 +01001479}
1480
Luiz Capitulino6cdedb02011-11-27 22:54:09 -02001481void qmp_migrate_cancel(Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001482{
Juan Quintela17549e82011-10-05 13:50:43 +02001483 migrate_fd_cancel(migrate_get_current());
Juan Quintelacab30142011-02-22 23:54:21 +01001484}
1485
Dr. David Alan Gilbert89cfc022017-10-20 10:05:53 +01001486void qmp_migrate_continue(MigrationStatus state, Error **errp)
1487{
1488 MigrationState *s = migrate_get_current();
1489 if (s->state != state) {
1490 error_setg(errp, "Migration not in expected state: %s",
1491 MigrationStatus_str(s->state));
1492 return;
1493 }
1494 qemu_sem_post(&s->pause_sem);
1495}
1496
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001497void qmp_migrate_set_cache_size(int64_t value, Error **errp)
1498{
Juan Quintela73af8dd2017-10-05 21:30:10 +02001499 MigrateSetParameters p = {
1500 .has_xbzrle_cache_size = true,
1501 .xbzrle_cache_size = value,
1502 };
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001503
Juan Quintela73af8dd2017-10-05 21:30:10 +02001504 qmp_migrate_set_parameters(&p, errp);
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001505}
1506
1507int64_t qmp_query_migrate_cache_size(Error **errp)
1508{
1509 return migrate_xbzrle_cache_size();
1510}
1511
Luiz Capitulino3dc85382011-11-28 11:59:37 -02001512void qmp_migrate_set_speed(int64_t value, Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001513{
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001514 MigrateSetParameters p = {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301515 .has_max_bandwidth = true,
1516 .max_bandwidth = value,
1517 };
Juan Quintelacab30142011-02-22 23:54:21 +01001518
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301519 qmp_migrate_set_parameters(&p, errp);
Juan Quintelacab30142011-02-22 23:54:21 +01001520}
1521
Luiz Capitulino4f0a9932011-11-27 23:18:01 -02001522void qmp_migrate_set_downtime(double value, Error **errp)
Juan Quintelacab30142011-02-22 23:54:21 +01001523{
Daniel Henrique Barboza87c9cc12017-02-22 12:17:29 -03001524 if (value < 0 || value > MAX_MIGRATE_DOWNTIME_SECONDS) {
1525 error_setg(errp, "Parameter 'downtime_limit' expects an integer in "
1526 "the range of 0 to %d seconds",
1527 MAX_MIGRATE_DOWNTIME_SECONDS);
1528 return;
1529 }
1530
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301531 value *= 1000; /* Convert to milliseconds */
1532 value = MAX(0, MIN(INT64_MAX, value));
1533
Markus Armbruster1bda8b32017-07-18 13:42:11 +02001534 MigrateSetParameters p = {
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05301535 .has_downtime_limit = true,
1536 .downtime_limit = value,
1537 };
1538
1539 qmp_migrate_set_parameters(&p, errp);
aliguori5bb79102008-10-13 03:12:02 +00001540}
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001541
Pavel Butsykin53f09a12017-02-03 18:23:20 +03001542bool migrate_release_ram(void)
1543{
1544 MigrationState *s;
1545
1546 s = migrate_get_current();
1547
1548 return s->enabled_capabilities[MIGRATION_CAPABILITY_RELEASE_RAM];
1549}
1550
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +00001551bool migrate_postcopy_ram(void)
1552{
1553 MigrationState *s;
1554
1555 s = migrate_get_current();
1556
Dr. David Alan Gilbert32c3db52016-03-11 09:53:36 +00001557 return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM];
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +00001558}
1559
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001560bool migrate_postcopy(void)
1561{
Vladimir Sementsov-Ogievskiydd6bb912018-03-13 15:34:00 -04001562 return migrate_postcopy_ram() || migrate_dirty_bitmaps();
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001563}
1564
Chegu Vinodbde1e2e2013-06-24 03:49:42 -06001565bool migrate_auto_converge(void)
1566{
1567 MigrationState *s;
1568
1569 s = migrate_get_current();
1570
1571 return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
1572}
1573
Peter Lieven323004a2013-07-18 09:48:50 +02001574bool migrate_zero_blocks(void)
1575{
1576 MigrationState *s;
1577
1578 s = migrate_get_current();
1579
1580 return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
1581}
1582
Alexey Perevalovf22f9282018-03-22 21:17:22 +03001583bool migrate_postcopy_blocktime(void)
1584{
1585 MigrationState *s;
1586
1587 s = migrate_get_current();
1588
1589 return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_BLOCKTIME];
1590}
1591
Liang Li8706d2d2015-03-23 16:32:17 +08001592bool migrate_use_compression(void)
1593{
Liang Lidde4e692015-03-23 16:32:26 +08001594 MigrationState *s;
1595
1596 s = migrate_get_current();
1597
1598 return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
Liang Li8706d2d2015-03-23 16:32:17 +08001599}
1600
1601int migrate_compress_level(void)
1602{
1603 MigrationState *s;
1604
1605 s = migrate_get_current();
1606
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001607 return s->parameters.compress_level;
Liang Li8706d2d2015-03-23 16:32:17 +08001608}
1609
1610int migrate_compress_threads(void)
1611{
1612 MigrationState *s;
1613
1614 s = migrate_get_current();
1615
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001616 return s->parameters.compress_threads;
Liang Li8706d2d2015-03-23 16:32:17 +08001617}
1618
Liang Li3fcb38c2015-03-23 16:32:18 +08001619int migrate_decompress_threads(void)
1620{
1621 MigrationState *s;
1622
1623 s = migrate_get_current();
1624
Daniel P. Berrange2594f562016-04-27 11:05:14 +01001625 return s->parameters.decompress_threads;
Liang Li3fcb38c2015-03-23 16:32:18 +08001626}
1627
Vladimir Sementsov-Ogievskiy55efc8c2018-03-13 15:34:00 -04001628bool migrate_dirty_bitmaps(void)
1629{
1630 MigrationState *s;
1631
1632 s = migrate_get_current();
1633
1634 return s->enabled_capabilities[MIGRATION_CAPABILITY_DIRTY_BITMAPS];
1635}
1636
Juan Quintelab05dc722015-07-07 14:44:05 +02001637bool migrate_use_events(void)
1638{
1639 MigrationState *s;
1640
1641 s = migrate_get_current();
1642
1643 return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS];
1644}
1645
Juan Quintela30126bb2016-01-14 12:23:00 +01001646bool migrate_use_multifd(void)
1647{
1648 MigrationState *s;
1649
1650 s = migrate_get_current();
1651
1652 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_MULTIFD];
1653}
1654
Dr. David Alan Gilbert93fbd032017-10-20 10:05:50 +01001655bool migrate_pause_before_switchover(void)
1656{
1657 MigrationState *s;
1658
1659 s = migrate_get_current();
1660
1661 return s->enabled_capabilities[
1662 MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER];
1663}
1664
Juan Quintela4075fb12016-01-15 08:56:17 +01001665int migrate_multifd_channels(void)
1666{
1667 MigrationState *s;
1668
1669 s = migrate_get_current();
1670
1671 return s->parameters.x_multifd_channels;
1672}
1673
Juan Quintela0fb86602017-04-27 10:48:25 +02001674int migrate_multifd_page_count(void)
1675{
1676 MigrationState *s;
1677
1678 s = migrate_get_current();
1679
1680 return s->parameters.x_multifd_page_count;
1681}
1682
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001683int migrate_use_xbzrle(void)
1684{
1685 MigrationState *s;
1686
1687 s = migrate_get_current();
1688
1689 return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
1690}
1691
1692int64_t migrate_xbzrle_cache_size(void)
1693{
1694 MigrationState *s;
1695
1696 s = migrate_get_current();
1697
Juan Quintela73af8dd2017-10-05 21:30:10 +02001698 return s->parameters.xbzrle_cache_size;
Orit Wasserman17ad9b32012-08-06 21:42:53 +03001699}
Juan Quintela0d82d0e2012-10-03 14:18:33 +02001700
Juan Quintela2833c592017-04-05 18:32:37 +02001701bool migrate_use_block(void)
1702{
1703 MigrationState *s;
1704
1705 s = migrate_get_current();
1706
1707 return s->enabled_capabilities[MIGRATION_CAPABILITY_BLOCK];
1708}
1709
Peter Xuc788ada2017-06-26 18:28:55 +08001710bool migrate_use_return_path(void)
1711{
1712 MigrationState *s;
1713
1714 s = migrate_get_current();
1715
1716 return s->enabled_capabilities[MIGRATION_CAPABILITY_RETURN_PATH];
1717}
1718
Juan Quintela2833c592017-04-05 18:32:37 +02001719bool migrate_use_block_incremental(void)
1720{
1721 MigrationState *s;
1722
1723 s = migrate_get_current();
1724
1725 return s->parameters.block_incremental;
1726}
1727
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001728/* migration thread support */
1729/*
1730 * Something bad happened to the RP stream, mark an error
1731 * The caller shall print or trace something to indicate why
1732 */
1733static void mark_source_rp_bad(MigrationState *s)
1734{
1735 s->rp_state.error = true;
1736}
1737
1738static struct rp_cmd_args {
1739 ssize_t len; /* -1 = variable */
1740 const char *name;
1741} rp_cmd_args[] = {
1742 [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" },
1743 [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" },
1744 [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" },
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001745 [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" },
1746 [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" },
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001747 [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" },
1748};
1749
1750/*
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001751 * Process a request for pages received on the return path,
1752 * We're allowed to send more than requested (e.g. to round to our page size)
1753 * and we don't need to send pages that have already been sent.
1754 */
1755static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
1756 ram_addr_t start, size_t len)
1757{
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001758 long our_host_ps = getpagesize();
1759
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001760 trace_migrate_handle_rp_req_pages(rbname, start, len);
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001761
1762 /*
1763 * Since we currently insist on matching page sizes, just sanity check
1764 * we're being asked for whole host pages.
1765 */
1766 if (start & (our_host_ps-1) ||
1767 (len & (our_host_ps-1))) {
1768 error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1769 " len: %zd", __func__, start, len);
1770 mark_source_rp_bad(ms);
1771 return;
1772 }
1773
Juan Quintela96506892017-03-14 18:41:03 +01001774 if (ram_save_queue_pages(rbname, start, len)) {
Dr. David Alan Gilbert6c595cd2015-11-05 18:11:08 +00001775 mark_source_rp_bad(ms);
1776 }
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001777}
1778
1779/*
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001780 * Handles messages sent on the return path towards the source VM
1781 *
1782 */
1783static void *source_return_path_thread(void *opaque)
1784{
1785 MigrationState *ms = opaque;
1786 QEMUFile *rp = ms->rp_state.from_dst_file;
1787 uint16_t header_len, header_type;
Peter Xu568b01c2016-03-09 14:12:12 +08001788 uint8_t buf[512];
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001789 uint32_t tmp32, sibling_error;
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001790 ram_addr_t start = 0; /* =0 to silence warning */
1791 size_t len = 0, expected_len;
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001792 int res;
1793
1794 trace_source_return_path_thread_entry();
1795 while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1796 migration_is_setup_or_active(ms->state)) {
1797 trace_source_return_path_thread_loop_top();
1798 header_type = qemu_get_be16(rp);
1799 header_len = qemu_get_be16(rp);
1800
Peter Xu7a9ddfb2018-02-08 18:31:05 +08001801 if (qemu_file_get_error(rp)) {
1802 mark_source_rp_bad(ms);
1803 goto out;
1804 }
1805
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001806 if (header_type >= MIG_RP_MSG_MAX ||
1807 header_type == MIG_RP_MSG_INVALID) {
1808 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1809 header_type, header_len);
1810 mark_source_rp_bad(ms);
1811 goto out;
1812 }
1813
1814 if ((rp_cmd_args[header_type].len != -1 &&
1815 header_len != rp_cmd_args[header_type].len) ||
Peter Xu568b01c2016-03-09 14:12:12 +08001816 header_len > sizeof(buf)) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001817 error_report("RP: Received '%s' message (0x%04x) with"
1818 "incorrect length %d expecting %zu",
1819 rp_cmd_args[header_type].name, header_type, header_len,
1820 (size_t)rp_cmd_args[header_type].len);
1821 mark_source_rp_bad(ms);
1822 goto out;
1823 }
1824
1825 /* We know we've got a valid header by this point */
1826 res = qemu_get_buffer(rp, buf, header_len);
1827 if (res != header_len) {
1828 error_report("RP: Failed reading data for message 0x%04x"
1829 " read %d expected %d",
1830 header_type, res, header_len);
1831 mark_source_rp_bad(ms);
1832 goto out;
1833 }
1834
1835 /* OK, we have the message and the data */
1836 switch (header_type) {
1837 case MIG_RP_MSG_SHUT:
Peter Maydell4d885132016-06-10 17:09:22 +01001838 sibling_error = ldl_be_p(buf);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001839 trace_source_return_path_thread_shut(sibling_error);
1840 if (sibling_error) {
1841 error_report("RP: Sibling indicated error %d", sibling_error);
1842 mark_source_rp_bad(ms);
1843 }
1844 /*
1845 * We'll let the main thread deal with closing the RP
1846 * we could do a shutdown(2) on it, but we're the only user
1847 * anyway, so there's nothing gained.
1848 */
1849 goto out;
1850
1851 case MIG_RP_MSG_PONG:
Peter Maydell4d885132016-06-10 17:09:22 +01001852 tmp32 = ldl_be_p(buf);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001853 trace_source_return_path_thread_pong(tmp32);
1854 break;
1855
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001856 case MIG_RP_MSG_REQ_PAGES:
Peter Maydell4d885132016-06-10 17:09:22 +01001857 start = ldq_be_p(buf);
1858 len = ldl_be_p(buf + 8);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001859 migrate_handle_rp_req_pages(ms, NULL, start, len);
1860 break;
1861
1862 case MIG_RP_MSG_REQ_PAGES_ID:
1863 expected_len = 12 + 1; /* header + termination */
1864
1865 if (header_len >= expected_len) {
Peter Maydell4d885132016-06-10 17:09:22 +01001866 start = ldq_be_p(buf);
1867 len = ldl_be_p(buf + 8);
Dr. David Alan Gilbert1e2d90e2015-11-05 18:11:07 +00001868 /* Now we expect an idstr */
1869 tmp32 = buf[12]; /* Length of the following idstr */
1870 buf[13 + tmp32] = '\0';
1871 expected_len += tmp32;
1872 }
1873 if (header_len != expected_len) {
1874 error_report("RP: Req_Page_id with length %d expecting %zd",
1875 header_len, expected_len);
1876 mark_source_rp_bad(ms);
1877 goto out;
1878 }
1879 migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len);
1880 break;
1881
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001882 default:
1883 break;
1884 }
1885 }
Dr. David Alan Gilbert5df54162015-11-18 11:48:41 +00001886 if (qemu_file_get_error(rp)) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001887 trace_source_return_path_thread_bad_end();
1888 mark_source_rp_bad(ms);
1889 }
1890
1891 trace_source_return_path_thread_end();
1892out:
1893 ms->rp_state.from_dst_file = NULL;
1894 qemu_fclose(rp);
1895 return NULL;
1896}
1897
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001898static int open_return_path_on_source(MigrationState *ms)
1899{
1900
zhanghailiang89a02a92016-01-15 11:37:42 +08001901 ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001902 if (!ms->rp_state.from_dst_file) {
1903 return -1;
1904 }
1905
1906 trace_open_return_path_on_source();
1907 qemu_thread_create(&ms->rp_state.rp_thread, "return path",
1908 source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
1909
1910 trace_open_return_path_on_source_continue();
1911
1912 return 0;
1913}
1914
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001915/* Returns 0 if the RP was ok, otherwise there was an error on the RP */
1916static int await_return_path_close_on_source(MigrationState *ms)
1917{
1918 /*
1919 * If this is a normal exit then the destination will send a SHUT and the
1920 * rp_thread will exit, however if there's an error we need to cause
1921 * it to exit.
1922 */
zhanghailiang89a02a92016-01-15 11:37:42 +08001923 if (qemu_file_get_error(ms->to_dst_file) && ms->rp_state.from_dst_file) {
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00001924 /*
1925 * shutdown(2), if we have it, will cause it to unblock if it's stuck
1926 * waiting for the destination.
1927 */
1928 qemu_file_shutdown(ms->rp_state.from_dst_file);
1929 mark_source_rp_bad(ms);
1930 }
1931 trace_await_return_path_close_on_source_joining();
1932 qemu_thread_join(&ms->rp_state.rp_thread);
1933 trace_await_return_path_close_on_source_close();
1934 return ms->rp_state.error;
1935}
1936
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001937/*
1938 * Switch from normal iteration to postcopy
1939 * Returns non-0 on error
1940 */
Peter Xu7287cbd2018-01-03 20:20:09 +08001941static int postcopy_start(MigrationState *ms)
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001942{
1943 int ret;
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01001944 QIOChannelBuffer *bioc;
1945 QEMUFile *fb;
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001946 int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001947 bool restart_block = false;
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01001948 int cur_state = MIGRATION_STATUS_ACTIVE;
1949 if (!migrate_pause_before_switchover()) {
1950 migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
1951 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1952 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001953
1954 trace_postcopy_start();
1955 qemu_mutex_lock_iothread();
1956 trace_postcopy_start_set_run();
1957
1958 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001959 global_state_store();
1960 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01001961 if (ret < 0) {
1962 goto fail;
1963 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001964
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01001965 ret = migration_maybe_pause(ms, &cur_state,
1966 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1967 if (ret < 0) {
1968 goto fail;
1969 }
1970
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01001971 ret = bdrv_inactivate_all();
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001972 if (ret < 0) {
1973 goto fail;
1974 }
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00001975 restart_block = true;
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001976
1977 /*
Dr. David Alan Gilbert1c0d2492015-11-11 14:02:27 +00001978 * Cause any non-postcopiable, but iterative devices to
1979 * send out their final data.
1980 */
Fam Zhenga1fbe752017-06-17 00:06:58 +08001981 qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false);
Dr. David Alan Gilbert1c0d2492015-11-11 14:02:27 +00001982
1983 /*
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001984 * in Finish migrate and with the io-lock held everything should
1985 * be quiet, but we've potentially still got dirty pages and we
1986 * need to tell the destination to throw any pages it's already received
1987 * that are dirty
1988 */
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03001989 if (migrate_postcopy_ram()) {
1990 if (ram_postcopy_send_discard_bitmap(ms)) {
1991 error_report("postcopy send discard bitmap failed");
1992 goto fail;
1993 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00001994 }
1995
1996 /*
1997 * send rest of state - note things that are doing postcopy
1998 * will notice we're in POSTCOPY_ACTIVE and not actually
1999 * wrap their state up here
2000 */
zhanghailiang89a02a92016-01-15 11:37:42 +08002001 qemu_file_set_rate_limit(ms->to_dst_file, INT64_MAX);
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002002 if (migrate_postcopy_ram()) {
2003 /* Ping just for debugging, helps line traces up */
2004 qemu_savevm_send_ping(ms->to_dst_file, 2);
2005 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002006
2007 /*
2008 * While loading the device state we may trigger page transfer
2009 * requests and the fd must be free to process those, and thus
2010 * the destination must read the whole device state off the fd before
2011 * it starts processing it. Unfortunately the ad-hoc migration format
2012 * doesn't allow the destination to know the size to read without fully
2013 * parsing it through each devices load-state code (especially the open
2014 * coded devices that use get/put).
2015 * So we wrap the device state up in a package with a length at the start;
2016 * to do this we use a qemu_buf to hold the whole of the device state.
2017 */
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01002018 bioc = qio_channel_buffer_new(4096);
Daniel P. Berrange6f01f132016-09-30 11:57:14 +01002019 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01002020 fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc));
2021 object_unref(OBJECT(bioc));
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002022
Dr. David Alan Gilbertc76201a2015-11-05 18:11:18 +00002023 /*
2024 * Make sure the receiver can get incoming pages before we send the rest
2025 * of the state
2026 */
2027 qemu_savevm_send_postcopy_listen(fb);
2028
Fam Zhenga1fbe752017-06-17 00:06:58 +08002029 qemu_savevm_state_complete_precopy(fb, false, false);
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002030 if (migrate_postcopy_ram()) {
2031 qemu_savevm_send_ping(fb, 3);
2032 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002033
2034 qemu_savevm_send_postcopy_run(fb);
2035
2036 /* <><> end of stuff going into the package */
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002037
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00002038 /* Last point of recovery; as soon as we send the package the destination
2039 * can open devices and potentially start running.
2040 * Lets just check again we've not got any errors.
2041 */
2042 ret = qemu_file_get_error(ms->to_dst_file);
2043 if (ret) {
2044 error_report("postcopy_start: Migration stream errored (pre package)");
2045 goto fail_closefb;
2046 }
2047
2048 restart_block = false;
2049
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002050 /* Now send that blob */
Daniel P. Berrange61b67d42016-04-27 11:05:01 +01002051 if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002052 goto fail_closefb;
2053 }
2054 qemu_fclose(fb);
Dr. David Alan Gilbertb82fc322016-02-22 17:17:32 +00002055
2056 /* Send a notify to give a chance for anything that needs to happen
2057 * at the transition to postcopy and after the device state; in particular
2058 * spice needs to trigger a transition now
2059 */
2060 ms->postcopy_after_devices = true;
2061 notifier_list_notify(&migration_state_notifiers, ms);
2062
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002063 ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
2064
2065 qemu_mutex_unlock_iothread();
2066
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002067 if (migrate_postcopy_ram()) {
2068 /*
2069 * Although this ping is just for debug, it could potentially be
2070 * used for getting a better measurement of downtime at the source.
2071 */
2072 qemu_savevm_send_ping(ms->to_dst_file, 4);
2073 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002074
Pavel Butsykinced1c612017-02-03 18:23:21 +03002075 if (migrate_release_ram()) {
2076 ram_postcopy_migrated_memory_release(ms);
2077 }
2078
zhanghailiang89a02a92016-01-15 11:37:42 +08002079 ret = qemu_file_get_error(ms->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002080 if (ret) {
2081 error_report("postcopy_start: Migration stream errored");
zhanghailiang48781e52015-12-16 11:47:33 +00002082 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002083 MIGRATION_STATUS_FAILED);
2084 }
2085
2086 return ret;
2087
2088fail_closefb:
2089 qemu_fclose(fb);
2090fail:
zhanghailiang48781e52015-12-16 11:47:33 +00002091 migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002092 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbertef8d6482017-02-02 15:59:09 +00002093 if (restart_block) {
2094 /* A failure happened early enough that we know the destination hasn't
2095 * accessed block devices, so we're safe to recover.
2096 */
2097 Error *local_err = NULL;
2098
2099 bdrv_invalidate_cache_all(&local_err);
2100 if (local_err) {
2101 error_report_err(local_err);
2102 }
2103 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002104 qemu_mutex_unlock_iothread();
2105 return -1;
2106}
2107
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002108/**
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002109 * migration_maybe_pause: Pause if required to by
2110 * migrate_pause_before_switchover called with the iothread locked
2111 * Returns: 0 on success
2112 */
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002113static int migration_maybe_pause(MigrationState *s,
2114 int *current_active_state,
2115 int new_state)
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002116{
2117 if (!migrate_pause_before_switchover()) {
2118 return 0;
2119 }
2120
2121 /* Since leaving this state is not atomic with posting the semaphore
2122 * it's possible that someone could have issued multiple migrate_continue
2123 * and the semaphore is incorrectly positive at this point;
2124 * the docs say it's undefined to reinit a semaphore that's already
2125 * init'd, so use timedwait to eat up any existing posts.
2126 */
2127 while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) {
2128 /* This block intentionally left blank */
2129 }
2130
2131 qemu_mutex_unlock_iothread();
2132 migrate_set_state(&s->state, *current_active_state,
2133 MIGRATION_STATUS_PRE_SWITCHOVER);
2134 qemu_sem_wait(&s->pause_sem);
2135 migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER,
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002136 new_state);
2137 *current_active_state = new_state;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002138 qemu_mutex_lock_iothread();
2139
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002140 return s->state == new_state ? 0 : -EINVAL;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002141}
2142
2143/**
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002144 * migration_completion: Used by migration_thread when there's not much left.
2145 * The caller 'breaks' the loop when this returns.
2146 *
2147 * @s: Current migration state
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002148 */
Peter Xu2ad87302018-01-03 20:20:14 +08002149static void migration_completion(MigrationState *s)
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002150{
2151 int ret;
Peter Xu2ad87302018-01-03 20:20:14 +08002152 int current_active_state = s->state;
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002153
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002154 if (s->state == MIGRATION_STATUS_ACTIVE) {
2155 qemu_mutex_lock_iothread();
Peter Xu64909f92018-01-03 20:20:10 +08002156 s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002157 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Peter Xu7287cbd2018-01-03 20:20:09 +08002158 s->vm_was_running = runstate_is_running();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002159 ret = global_state_store();
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002160
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002161 if (!ret) {
Fam Zhenga1fbe752017-06-17 00:06:58 +08002162 bool inactivate = !migrate_colo_enabled();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002163 ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002164 if (ret >= 0) {
Dr. David Alan Gilbert0331c8c2017-10-20 10:05:56 +01002165 ret = migration_maybe_pause(s, &current_active_state,
2166 MIGRATION_STATUS_DEVICE);
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002167 }
2168 if (ret >= 0) {
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002169 qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
Fam Zhenga1fbe752017-06-17 00:06:58 +08002170 ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
2171 inactivate);
Kevin Wolff07fa4c2017-05-22 17:10:38 +02002172 }
Fam Zhenga1fbe752017-06-17 00:06:58 +08002173 if (inactivate && ret >= 0) {
2174 s->block_inactive = true;
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002175 }
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002176 }
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002177 qemu_mutex_unlock_iothread();
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002178
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002179 if (ret < 0) {
2180 goto fail;
2181 }
2182 } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2183 trace_migration_completion_postcopy_end();
2184
zhanghailiang89a02a92016-01-15 11:37:42 +08002185 qemu_savevm_state_complete_postcopy(s->to_dst_file);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002186 trace_migration_completion_postcopy_end_after_complete();
2187 }
2188
2189 /*
2190 * If rp was opened we must clean up the thread before
2191 * cleaning everything else up (since if there are no failures
2192 * it will wait for the destination to send it's status in
2193 * a SHUT command).
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002194 */
Peter Xu0425dc92017-05-31 18:35:34 +08002195 if (s->rp_state.from_dst_file) {
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002196 int rp_error;
Peter Xu0425dc92017-05-31 18:35:34 +08002197 trace_migration_return_path_end_before();
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002198 rp_error = await_return_path_close_on_source(s);
Peter Xu0425dc92017-05-31 18:35:34 +08002199 trace_migration_return_path_end_after(rp_error);
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002200 if (rp_error) {
Greg Kurzfe904ea2016-05-18 15:44:36 +02002201 goto fail_invalidate;
Dr. David Alan Gilbertb10ac0c2015-11-05 18:11:06 +00002202 }
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002203 }
2204
zhanghailiang89a02a92016-01-15 11:37:42 +08002205 if (qemu_file_get_error(s->to_dst_file)) {
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002206 trace_migration_completion_file_err();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002207 goto fail_invalidate;
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002208 }
2209
zhanghailiang0b827d52016-10-27 14:42:54 +08002210 if (!migrate_colo_enabled()) {
2211 migrate_set_state(&s->state, current_active_state,
2212 MIGRATION_STATUS_COMPLETED);
2213 }
2214
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002215 return;
2216
Greg Kurzfe904ea2016-05-18 15:44:36 +02002217fail_invalidate:
2218 /* If not doing postcopy, vm_start() will be called: let's regain
2219 * control on images.
2220 */
Dr. David Alan Gilbert6039dd52018-02-05 09:13:37 +00002221 if (s->state == MIGRATION_STATUS_ACTIVE ||
2222 s->state == MIGRATION_STATUS_DEVICE) {
Greg Kurzfe904ea2016-05-18 15:44:36 +02002223 Error *local_err = NULL;
2224
zhanghailiang1d2acc32017-01-24 15:59:52 +08002225 qemu_mutex_lock_iothread();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002226 bdrv_invalidate_cache_all(&local_err);
2227 if (local_err) {
2228 error_report_err(local_err);
zhanghailiang1d2acc32017-01-24 15:59:52 +08002229 } else {
2230 s->block_inactive = false;
Greg Kurzfe904ea2016-05-18 15:44:36 +02002231 }
zhanghailiang1d2acc32017-01-24 15:59:52 +08002232 qemu_mutex_unlock_iothread();
Greg Kurzfe904ea2016-05-18 15:44:36 +02002233 }
2234
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002235fail:
zhanghailiang48781e52015-12-16 11:47:33 +00002236 migrate_set_state(&s->state, current_active_state,
2237 MIGRATION_STATUS_FAILED);
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002238}
2239
zhanghailiang35a6ed42016-10-27 14:42:52 +08002240bool migrate_colo_enabled(void)
2241{
2242 MigrationState *s = migrate_get_current();
2243 return s->enabled_capabilities[MIGRATION_CAPABILITY_X_COLO];
2244}
2245
Peter Xucf011f02018-01-03 20:20:11 +08002246static void migration_calculate_complete(MigrationState *s)
2247{
2248 uint64_t bytes = qemu_ftell(s->to_dst_file);
2249 int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2250
2251 s->total_time = end_time - s->start_time;
2252 if (!s->downtime) {
2253 /*
2254 * It's still not set, so we are precopy migration. For
2255 * postcopy, downtime is calculated during postcopy_start().
2256 */
2257 s->downtime = end_time - s->downtime_start;
2258 }
2259
2260 if (s->total_time) {
2261 s->mbps = ((double) bytes * 8.0) / s->total_time / 1000;
2262 }
2263}
2264
Peter Xub15df1a2018-01-03 20:20:13 +08002265static void migration_update_counters(MigrationState *s,
2266 int64_t current_time)
2267{
2268 uint64_t transferred, time_spent;
Peter Xub15df1a2018-01-03 20:20:13 +08002269 double bandwidth;
2270
2271 if (current_time < s->iteration_start_time + BUFFER_DELAY) {
2272 return;
2273 }
2274
2275 transferred = qemu_ftell(s->to_dst_file) - s->iteration_initial_bytes;
2276 time_spent = current_time - s->iteration_start_time;
2277 bandwidth = (double)transferred / time_spent;
Wei Wang0781c1e2018-01-22 19:36:39 +08002278 s->threshold_size = bandwidth * s->parameters.downtime_limit;
Peter Xub15df1a2018-01-03 20:20:13 +08002279
2280 s->mbps = (((double) transferred * 8.0) /
2281 ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
2282
2283 /*
2284 * if we haven't sent anything, we don't want to
2285 * recalculate. 10000 is a small enough number for our purposes
2286 */
2287 if (ram_counters.dirty_pages_rate && transferred > 10000) {
2288 s->expected_downtime = ram_counters.dirty_pages_rate *
2289 qemu_target_page_size() / bandwidth;
2290 }
2291
2292 qemu_file_reset_rate_limit(s->to_dst_file);
2293
2294 s->iteration_start_time = current_time;
2295 s->iteration_initial_bytes = qemu_ftell(s->to_dst_file);
2296
2297 trace_migrate_transferred(transferred, time_spent,
Wei Wang0781c1e2018-01-22 19:36:39 +08002298 bandwidth, s->threshold_size);
Peter Xub15df1a2018-01-03 20:20:13 +08002299}
2300
Peter Xu2ad87302018-01-03 20:20:14 +08002301/* Migration thread iteration status */
2302typedef enum {
2303 MIG_ITERATE_RESUME, /* Resume current iteration */
2304 MIG_ITERATE_SKIP, /* Skip current iteration */
2305 MIG_ITERATE_BREAK, /* Break the loop */
2306} MigIterateState;
2307
2308/*
2309 * Return true if continue to the next iteration directly, false
2310 * otherwise.
2311 */
2312static MigIterateState migration_iteration_run(MigrationState *s)
2313{
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002314 uint64_t pending_size, pend_pre, pend_compat, pend_post;
Peter Xu2ad87302018-01-03 20:20:14 +08002315 bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE;
2316
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002317 qemu_savevm_state_pending(s->to_dst_file, s->threshold_size, &pend_pre,
2318 &pend_compat, &pend_post);
2319 pending_size = pend_pre + pend_compat + pend_post;
Peter Xu2ad87302018-01-03 20:20:14 +08002320
2321 trace_migrate_pending(pending_size, s->threshold_size,
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002322 pend_pre, pend_compat, pend_post);
Peter Xu2ad87302018-01-03 20:20:14 +08002323
2324 if (pending_size && pending_size >= s->threshold_size) {
2325 /* Still a significant amount to transfer */
2326 if (migrate_postcopy() && !in_postcopy &&
Vladimir Sementsov-Ogievskiy47995022018-03-13 15:34:00 -04002327 pend_pre <= s->threshold_size &&
Peter Xu2ad87302018-01-03 20:20:14 +08002328 atomic_read(&s->start_postcopy)) {
2329 if (postcopy_start(s)) {
2330 error_report("%s: postcopy failed to start", __func__);
2331 }
2332 return MIG_ITERATE_SKIP;
2333 }
2334 /* Just another iteration step */
2335 qemu_savevm_state_iterate(s->to_dst_file,
2336 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
2337 } else {
2338 trace_migration_thread_low_pending(pending_size);
2339 migration_completion(s);
2340 return MIG_ITERATE_BREAK;
2341 }
2342
2343 return MIG_ITERATE_RESUME;
2344}
2345
Peter Xu199aa6d2018-01-03 20:20:15 +08002346static void migration_iteration_finish(MigrationState *s)
2347{
2348 /* If we enabled cpu throttling for auto-converge, turn it off. */
2349 cpu_throttle_stop();
2350
2351 qemu_mutex_lock_iothread();
2352 switch (s->state) {
2353 case MIGRATION_STATUS_COMPLETED:
2354 migration_calculate_complete(s);
2355 runstate_set(RUN_STATE_POSTMIGRATE);
2356 break;
2357
2358 case MIGRATION_STATUS_ACTIVE:
2359 /*
2360 * We should really assert here, but since it's during
2361 * migration, let's try to reduce the usage of assertions.
2362 */
2363 if (!migrate_colo_enabled()) {
2364 error_report("%s: critical error: calling COLO code without "
2365 "COLO enabled", __func__);
2366 }
2367 migrate_start_colo_process(s);
2368 /*
2369 * Fixme: we will run VM in COLO no matter its old running state.
2370 * After exited COLO, we will keep running.
2371 */
2372 s->vm_was_running = true;
2373 /* Fallthrough */
2374 case MIGRATION_STATUS_FAILED:
2375 case MIGRATION_STATUS_CANCELLED:
2376 if (s->vm_was_running) {
2377 vm_start();
2378 } else {
2379 if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
2380 runstate_set(RUN_STATE_POSTMIGRATE);
2381 }
2382 }
2383 break;
2384
2385 default:
2386 /* Should not reach here, but if so, forgive the VM. */
2387 error_report("%s: Unknown ending state %d", __func__, s->state);
2388 break;
2389 }
2390 qemu_bh_schedule(s->cleanup_bh);
2391 qemu_mutex_unlock_iothread();
2392}
2393
Dr. David Alan Gilbert70b20472015-11-05 18:10:49 +00002394/*
2395 * Master migration thread on the source VM.
2396 * It drives the migration and pumps the data down the outgoing channel.
2397 */
Juan Quintela5f496a12013-02-22 17:36:30 +01002398static void *migration_thread(void *opaque)
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002399{
Juan Quintela9848a402012-12-19 09:55:50 +01002400 MigrationState *s = opaque;
Alex Blighbc72ad62013-08-21 16:03:08 +01002401 int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
Juan Quintela76f59332012-10-03 20:16:24 +02002402
Paolo Bonziniab28bd22015-07-09 08:55:38 +02002403 rcu_register_thread();
2404
Peter Xub15df1a2018-01-03 20:20:13 +08002405 s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2406
zhanghailiang89a02a92016-01-15 11:37:42 +08002407 qemu_savevm_state_header(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002408
Peter Xu62a02652017-06-14 15:55:58 +08002409 /*
2410 * If we opened the return path, we need to make sure dst has it
2411 * opened as well.
2412 */
2413 if (s->rp_state.from_dst_file) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002414 /* Now tell the dest that it should open its end so it can reply */
zhanghailiang89a02a92016-01-15 11:37:42 +08002415 qemu_savevm_send_open_return_path(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002416
2417 /* And do a ping that will make stuff easier to debug */
zhanghailiang89a02a92016-01-15 11:37:42 +08002418 qemu_savevm_send_ping(s->to_dst_file, 1);
Peter Xu0425dc92017-05-31 18:35:34 +08002419 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002420
Vladimir Sementsov-Ogievskiy58110f02017-07-10 19:30:16 +03002421 if (migrate_postcopy()) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002422 /*
2423 * Tell the destination that we *might* want to do postcopy later;
2424 * if the other end can't do postcopy it should fail now, nice and
2425 * early.
2426 */
zhanghailiang89a02a92016-01-15 11:37:42 +08002427 qemu_savevm_send_postcopy_advise(s->to_dst_file);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002428 }
2429
Juan Quintela9907e842017-06-28 11:52:24 +02002430 qemu_savevm_state_setup(s->to_dst_file);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002431
Alex Blighbc72ad62013-08-21 16:03:08 +01002432 s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
zhanghailiang48781e52015-12-16 11:47:33 +00002433 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2434 MIGRATION_STATUS_ACTIVE);
Michael R. Hines29ae8a42013-07-22 10:01:57 -04002435
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +00002436 trace_migration_thread_setup_complete();
2437
2438 while (s->state == MIGRATION_STATUS_ACTIVE ||
2439 s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
Juan Quintelaa3e879c2013-02-01 12:39:08 +01002440 int64_t current_time;
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002441
zhanghailiang89a02a92016-01-15 11:37:42 +08002442 if (!qemu_file_rate_limit(s->to_dst_file)) {
Peter Xu2ad87302018-01-03 20:20:14 +08002443 MigIterateState iter_state = migration_iteration_run(s);
2444 if (iter_state == MIG_ITERATE_SKIP) {
2445 continue;
2446 } else if (iter_state == MIG_ITERATE_BREAK) {
Dr. David Alan Gilbert09f6c852015-08-13 11:51:31 +01002447 break;
Juan Quintelac369f402012-10-03 20:33:34 +02002448 }
2449 }
Paolo Bonzinif4410a52013-02-22 17:36:20 +01002450
zhanghailiang89a02a92016-01-15 11:37:42 +08002451 if (qemu_file_get_error(s->to_dst_file)) {
Peter Xu2ad87302018-01-03 20:20:14 +08002452 if (migration_is_setup_or_active(s->state)) {
2453 migrate_set_state(&s->state, s->state,
2454 MIGRATION_STATUS_FAILED);
2455 }
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002456 trace_migration_thread_file_err();
Paolo Bonzinifd45ee22013-02-22 17:36:33 +01002457 break;
2458 }
Peter Xub15df1a2018-01-03 20:20:13 +08002459
Alex Blighbc72ad62013-08-21 16:03:08 +01002460 current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002461
Peter Xub15df1a2018-01-03 20:20:13 +08002462 migration_update_counters(s, current_time);
Michael R. Hines7e114f82013-06-25 21:35:30 -04002463
zhanghailiang89a02a92016-01-15 11:37:42 +08002464 if (qemu_file_rate_limit(s->to_dst_file)) {
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002465 /* usleep expects microseconds */
Peter Xub15df1a2018-01-03 20:20:13 +08002466 g_usleep((s->iteration_start_time + BUFFER_DELAY -
2467 current_time) * 1000);
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002468 }
Paolo Bonzinia3fa1d72013-02-22 17:36:18 +01002469 }
2470
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002471 trace_migration_thread_after_loop();
Peter Xu199aa6d2018-01-03 20:20:15 +08002472 migration_iteration_finish(s);
Paolo Bonziniab28bd22015-07-09 08:55:38 +02002473 rcu_unregister_thread();
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002474 return NULL;
2475}
2476
Dr. David Alan Gilbertcce80402017-12-15 17:16:54 +00002477void migrate_fd_connect(MigrationState *s, Error *error_in)
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002478{
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05302479 s->expected_downtime = s->parameters.downtime_limit;
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01002480 s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
Dr. David Alan Gilbertcce80402017-12-15 17:16:54 +00002481 if (error_in) {
2482 migrate_fd_error(s, error_in);
2483 migrate_fd_cleanup(s);
2484 return;
2485 }
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002486
Daniel P. Berrange9e4d2b92016-04-27 11:04:57 +01002487 qemu_file_set_blocking(s->to_dst_file, true);
zhanghailiang89a02a92016-01-15 11:37:42 +08002488 qemu_file_set_rate_limit(s->to_dst_file,
Ashijeet Acharya2ff30252016-09-15 21:50:28 +05302489 s->parameters.max_bandwidth / XFER_LIMIT_RATIO);
Paolo Bonzini442773c2013-02-22 17:36:44 +01002490
Stefan Hajnoczi9287ac22013-07-29 15:01:57 +02002491 /* Notify before starting migration thread */
2492 notifier_list_notify(&migration_state_notifiers, s);
2493
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002494 /*
Peter Xuc788ada2017-06-26 18:28:55 +08002495 * Open the return path. For postcopy, it is used exclusively. For
2496 * precopy, only if user specified "return-path" capability would
2497 * QEMU uses the return path.
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002498 */
Peter Xuc788ada2017-06-26 18:28:55 +08002499 if (migrate_postcopy_ram() || migrate_use_return_path()) {
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002500 if (open_return_path_on_source(s)) {
2501 error_report("Unable to open return-path for postcopy");
zhanghailiang48781e52015-12-16 11:47:33 +00002502 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002503 MIGRATION_STATUS_FAILED);
2504 migrate_fd_cleanup(s);
2505 return;
2506 }
2507 }
2508
Juan Quintelaf986c3d2016-01-14 16:52:55 +01002509 if (multifd_save_setup() != 0) {
2510 migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
2511 MIGRATION_STATUS_FAILED);
2512 migrate_fd_cleanup(s);
2513 return;
2514 }
Pankaj Gupta009fad72017-01-23 19:12:56 +05302515 qemu_thread_create(&s->thread, "live_migration", migration_thread, s,
Paolo Bonzinibb1fadc2013-02-22 17:36:21 +01002516 QEMU_THREAD_JOINABLE);
Dr. David Alan Gilbert1d34e4b2015-11-05 18:11:05 +00002517 s->migration_thread_running = true;
Juan Quintela0d82d0e2012-10-03 14:18:33 +02002518}
Dr. David Alan Gilbert093e3c42015-11-05 18:10:52 +00002519
Peter Xu9d18af92017-06-27 12:10:19 +08002520void migration_global_dump(Monitor *mon)
2521{
2522 MigrationState *ms = migrate_get_current();
2523
Juan Quintela6f0f6422017-10-26 11:49:57 +02002524 monitor_printf(mon, "globals:\n");
2525 monitor_printf(mon, "store-global-state: %s\n",
2526 ms->store_global_state ? "on" : "off");
2527 monitor_printf(mon, "only-migratable: %s\n",
2528 ms->only_migratable ? "on" : "off");
2529 monitor_printf(mon, "send-configuration: %s\n",
2530 ms->send_configuration ? "on" : "off");
2531 monitor_printf(mon, "send-section-footer: %s\n",
2532 ms->send_section_footer ? "on" : "off");
Peter Xu9d18af92017-06-27 12:10:19 +08002533}
2534
Peter Xu20814752017-07-18 11:39:03 +08002535#define DEFINE_PROP_MIG_CAP(name, x) \
2536 DEFINE_PROP_BOOL(name, MigrationState, enabled_capabilities[x], false)
2537
Peter Xu52722982017-06-27 12:10:14 +08002538static Property migration_properties[] = {
2539 DEFINE_PROP_BOOL("store-global-state", MigrationState,
2540 store_global_state, true),
Peter Xu3df663e2017-06-27 12:10:15 +08002541 DEFINE_PROP_BOOL("only-migratable", MigrationState, only_migratable, false),
Peter Xu71dd4c12017-06-27 12:10:16 +08002542 DEFINE_PROP_BOOL("send-configuration", MigrationState,
2543 send_configuration, true),
Peter Xu15c38502017-06-27 12:10:17 +08002544 DEFINE_PROP_BOOL("send-section-footer", MigrationState,
2545 send_section_footer, true),
Peter Xu89632fa2017-07-18 11:39:02 +08002546
2547 /* Migration parameters */
Juan Quintela741d4082017-12-01 13:08:38 +01002548 DEFINE_PROP_UINT8("x-compress-level", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002549 parameters.compress_level,
2550 DEFAULT_MIGRATE_COMPRESS_LEVEL),
Juan Quintela741d4082017-12-01 13:08:38 +01002551 DEFINE_PROP_UINT8("x-compress-threads", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002552 parameters.compress_threads,
2553 DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT),
Juan Quintela741d4082017-12-01 13:08:38 +01002554 DEFINE_PROP_UINT8("x-decompress-threads", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002555 parameters.decompress_threads,
2556 DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT),
Juan Quintela741d4082017-12-01 13:08:38 +01002557 DEFINE_PROP_UINT8("x-cpu-throttle-initial", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002558 parameters.cpu_throttle_initial,
2559 DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL),
Juan Quintela741d4082017-12-01 13:08:38 +01002560 DEFINE_PROP_UINT8("x-cpu-throttle-increment", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002561 parameters.cpu_throttle_increment,
2562 DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT),
Juan Quintela741d4082017-12-01 13:08:38 +01002563 DEFINE_PROP_SIZE("x-max-bandwidth", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002564 parameters.max_bandwidth, MAX_THROTTLE),
Juan Quintela741d4082017-12-01 13:08:38 +01002565 DEFINE_PROP_UINT64("x-downtime-limit", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002566 parameters.downtime_limit,
2567 DEFAULT_MIGRATE_SET_DOWNTIME),
Juan Quintela741d4082017-12-01 13:08:38 +01002568 DEFINE_PROP_UINT32("x-checkpoint-delay", MigrationState,
Peter Xu89632fa2017-07-18 11:39:02 +08002569 parameters.x_checkpoint_delay,
2570 DEFAULT_MIGRATE_X_CHECKPOINT_DELAY),
Juan Quintela741d4082017-12-01 13:08:38 +01002571 DEFINE_PROP_UINT8("x-multifd-channels", MigrationState,
Juan Quintela4075fb12016-01-15 08:56:17 +01002572 parameters.x_multifd_channels,
2573 DEFAULT_MIGRATE_MULTIFD_CHANNELS),
Juan Quintela741d4082017-12-01 13:08:38 +01002574 DEFINE_PROP_UINT32("x-multifd-page-count", MigrationState,
Juan Quintela0fb86602017-04-27 10:48:25 +02002575 parameters.x_multifd_page_count,
2576 DEFAULT_MIGRATE_MULTIFD_PAGE_COUNT),
Juan Quintela73af8dd2017-10-05 21:30:10 +02002577 DEFINE_PROP_SIZE("xbzrle-cache-size", MigrationState,
2578 parameters.xbzrle_cache_size,
2579 DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE),
Peter Xu20814752017-07-18 11:39:03 +08002580
2581 /* Migration capabilities */
2582 DEFINE_PROP_MIG_CAP("x-xbzrle", MIGRATION_CAPABILITY_XBZRLE),
2583 DEFINE_PROP_MIG_CAP("x-rdma-pin-all", MIGRATION_CAPABILITY_RDMA_PIN_ALL),
2584 DEFINE_PROP_MIG_CAP("x-auto-converge", MIGRATION_CAPABILITY_AUTO_CONVERGE),
2585 DEFINE_PROP_MIG_CAP("x-zero-blocks", MIGRATION_CAPABILITY_ZERO_BLOCKS),
2586 DEFINE_PROP_MIG_CAP("x-compress", MIGRATION_CAPABILITY_COMPRESS),
2587 DEFINE_PROP_MIG_CAP("x-events", MIGRATION_CAPABILITY_EVENTS),
2588 DEFINE_PROP_MIG_CAP("x-postcopy-ram", MIGRATION_CAPABILITY_POSTCOPY_RAM),
2589 DEFINE_PROP_MIG_CAP("x-colo", MIGRATION_CAPABILITY_X_COLO),
2590 DEFINE_PROP_MIG_CAP("x-release-ram", MIGRATION_CAPABILITY_RELEASE_RAM),
2591 DEFINE_PROP_MIG_CAP("x-block", MIGRATION_CAPABILITY_BLOCK),
2592 DEFINE_PROP_MIG_CAP("x-return-path", MIGRATION_CAPABILITY_RETURN_PATH),
Juan Quintela30126bb2016-01-14 12:23:00 +01002593 DEFINE_PROP_MIG_CAP("x-multifd", MIGRATION_CAPABILITY_X_MULTIFD),
Peter Xu20814752017-07-18 11:39:03 +08002594
Peter Xu52722982017-06-27 12:10:14 +08002595 DEFINE_PROP_END_OF_LIST(),
2596};
2597
Peter Xue5cb7e72017-06-27 12:10:13 +08002598static void migration_class_init(ObjectClass *klass, void *data)
2599{
2600 DeviceClass *dc = DEVICE_CLASS(klass);
2601
2602 dc->user_creatable = false;
Peter Xu52722982017-06-27 12:10:14 +08002603 dc->props = migration_properties;
Peter Xue5cb7e72017-06-27 12:10:13 +08002604}
2605
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002606static void migration_instance_finalize(Object *obj)
2607{
2608 MigrationState *ms = MIGRATION_OBJ(obj);
2609 MigrationParameters *params = &ms->parameters;
2610
Juan Quintela87db1a72017-09-05 12:50:22 +02002611 qemu_mutex_destroy(&ms->error_mutex);
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002612 g_free(params->tls_hostname);
2613 g_free(params->tls_creds);
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002614 qemu_sem_destroy(&ms->pause_sem);
Marc-André Lureauab105cc2018-03-06 18:09:59 +01002615 error_free(ms->error);
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002616}
2617
Peter Xue5cb7e72017-06-27 12:10:13 +08002618static void migration_instance_init(Object *obj)
2619{
2620 MigrationState *ms = MIGRATION_OBJ(obj);
Peter Xu8b0b29d2017-07-18 11:39:06 +08002621 MigrationParameters *params = &ms->parameters;
Peter Xue5cb7e72017-06-27 12:10:13 +08002622
2623 ms->state = MIGRATION_STATUS_NONE;
Peter Xue5cb7e72017-06-27 12:10:13 +08002624 ms->mbps = -1;
Dr. David Alan Gilberte91d8952017-10-20 10:05:52 +01002625 qemu_sem_init(&ms->pause_sem, 0);
Juan Quintela87db1a72017-09-05 12:50:22 +02002626 qemu_mutex_init(&ms->error_mutex);
Peter Xu8b0b29d2017-07-18 11:39:06 +08002627
2628 params->tls_hostname = g_strdup("");
2629 params->tls_creds = g_strdup("");
2630
2631 /* Set has_* up only for parameter checks */
2632 params->has_compress_level = true;
2633 params->has_compress_threads = true;
2634 params->has_decompress_threads = true;
2635 params->has_cpu_throttle_initial = true;
2636 params->has_cpu_throttle_increment = true;
2637 params->has_max_bandwidth = true;
2638 params->has_downtime_limit = true;
2639 params->has_x_checkpoint_delay = true;
2640 params->has_block_incremental = true;
Juan Quintela4075fb12016-01-15 08:56:17 +01002641 params->has_x_multifd_channels = true;
Juan Quintela0fb86602017-04-27 10:48:25 +02002642 params->has_x_multifd_page_count = true;
Juan Quintela73af8dd2017-10-05 21:30:10 +02002643 params->has_xbzrle_cache_size = true;
Peter Xu8b0b29d2017-07-18 11:39:06 +08002644}
2645
2646/*
2647 * Return true if check pass, false otherwise. Error will be put
2648 * inside errp if provided.
2649 */
2650static bool migration_object_check(MigrationState *ms, Error **errp)
2651{
Peter Xu6b19a7d2017-07-18 11:39:10 +08002652 MigrationCapabilityStatusList *head = NULL;
2653 /* Assuming all off */
2654 bool cap_list[MIGRATION_CAPABILITY__MAX] = { 0 }, ret;
2655 int i;
2656
Peter Xu8b0b29d2017-07-18 11:39:06 +08002657 if (!migrate_params_check(&ms->parameters, errp)) {
2658 return false;
2659 }
2660
Peter Xu6b19a7d2017-07-18 11:39:10 +08002661 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
2662 if (ms->enabled_capabilities[i]) {
2663 head = migrate_cap_add(head, i, true);
2664 }
2665 }
2666
2667 ret = migrate_caps_check(cap_list, head, errp);
2668
2669 /* It works with head == NULL */
2670 qapi_free_MigrationCapabilityStatusList(head);
2671
2672 return ret;
Peter Xue5cb7e72017-06-27 12:10:13 +08002673}
2674
2675static const TypeInfo migration_type = {
2676 .name = TYPE_MIGRATION,
Peter Xu01f6e142017-06-28 15:15:44 +08002677 /*
Peter Xuc8d3ff32017-07-05 16:21:23 +08002678 * NOTE: TYPE_MIGRATION is not really a device, as the object is
2679 * not created using qdev_create(), it is not attached to the qdev
2680 * device tree, and it is never realized.
2681 *
2682 * TODO: Make this TYPE_OBJECT once QOM provides something like
2683 * TYPE_DEVICE's "-global" properties.
Peter Xu01f6e142017-06-28 15:15:44 +08002684 */
Peter Xue5cb7e72017-06-27 12:10:13 +08002685 .parent = TYPE_DEVICE,
2686 .class_init = migration_class_init,
2687 .class_size = sizeof(MigrationClass),
2688 .instance_size = sizeof(MigrationState),
2689 .instance_init = migration_instance_init,
Marc-André Lureaub91bf5e2017-08-01 17:04:18 +01002690 .instance_finalize = migration_instance_finalize,
Peter Xue5cb7e72017-06-27 12:10:13 +08002691};
2692
2693static void register_migration_types(void)
2694{
2695 type_register_static(&migration_type);
2696}
2697
2698type_init(register_migration_types);