1 /* 2 * QEMU live migration 3 * 4 * Copyright IBM, Corp. 2008 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2. See 10 * the COPYING file in the top-level directory. 11 * 12 */ 13 14 #ifndef QEMU_MIGRATION_H 15 #define QEMU_MIGRATION_H 16 17 #include "exec/cpu-common.h" 18 #include "hw/qdev-core.h" 19 #include "qapi/qapi-types-migration.h" 20 #include "qapi/qmp/json-writer.h" 21 #include "qemu/thread.h" 22 #include "qemu/coroutine_int.h" 23 #include "io/channel.h" 24 #include "io/channel-buffer.h" 25 #include "net/announce.h" 26 #include "qom/object.h" 27 #include "postcopy-ram.h" 28 29 struct PostcopyBlocktimeContext; 30 31 #define MIGRATION_RESUME_ACK_VALUE (1) 32 33 /* 34 * 1<<6=64 pages -> 256K chunk when page size is 4K. This gives us 35 * the benefit that all the chunks are 64 pages aligned then the 36 * bitmaps are always aligned to LONG. 37 */ 38 #define CLEAR_BITMAP_SHIFT_MIN 6 39 /* 40 * 1<<18=256K pages -> 1G chunk when page size is 4K. This is the 41 * default value to use if no one specified. 42 */ 43 #define CLEAR_BITMAP_SHIFT_DEFAULT 18 44 /* 45 * 1<<31=2G pages -> 8T chunk when page size is 4K. This should be 46 * big enough and make sure we won't overflow easily. 47 */ 48 #define CLEAR_BITMAP_SHIFT_MAX 31 49 50 /* This is an abstraction of a "temp huge page" for postcopy's purpose */ 51 typedef struct { 52 /* 53 * This points to a temporary huge page as a buffer for UFFDIO_COPY. It's 54 * mmap()ed and needs to be freed when cleanup. 55 */ 56 void *tmp_huge_page; 57 /* 58 * This points to the host page we're going to install for this temp page. 59 * It tells us after we've received the whole page, where we should put it. 60 */ 61 void *host_addr; 62 /* Number of small pages copied (in size of TARGET_PAGE_SIZE) */ 63 unsigned int target_pages; 64 /* Whether this page contains all zeros */ 65 bool all_zero; 66 } PostcopyTmpPage; 67 68 typedef enum { 69 PREEMPT_THREAD_NONE = 0, 70 PREEMPT_THREAD_CREATED, 71 PREEMPT_THREAD_QUIT, 72 } PreemptThreadStatus; 73 74 /* State for the incoming migration */ 75 struct MigrationIncomingState { 76 QEMUFile *from_src_file; 77 /* Previously received RAM's RAMBlock pointer */ 78 RAMBlock *last_recv_block[RAM_CHANNEL_MAX]; 79 /* A hook to allow cleanup at the end of incoming migration */ 80 void *transport_data; 81 void (*transport_cleanup)(void *data); 82 /* 83 * Used to sync thread creations. Note that we can't create threads in 84 * parallel with this sem. 85 */ 86 QemuSemaphore thread_sync_sem; 87 /* 88 * Free at the start of the main state load, set as the main thread finishes 89 * loading state. 90 */ 91 QemuEvent main_thread_load_event; 92 93 /* For network announces */ 94 AnnounceTimer announce_timer; 95 96 size_t largest_page_size; 97 bool have_fault_thread; 98 QemuThread fault_thread; 99 /* Set this when we want the fault thread to quit */ 100 bool fault_thread_quit; 101 102 bool have_listen_thread; 103 QemuThread listen_thread; 104 105 /* For the kernel to send us notifications */ 106 int userfault_fd; 107 /* To notify the fault_thread to wake, e.g., when need to quit */ 108 int userfault_event_fd; 109 QEMUFile *to_src_file; 110 QemuMutex rp_mutex; /* We send replies from multiple threads */ 111 /* RAMBlock of last request sent to source */ 112 RAMBlock *last_rb; 113 /* 114 * Number of postcopy channels including the default precopy channel, so 115 * vanilla postcopy will only contain one channel which contain both 116 * precopy and postcopy streams. 117 * 118 * This is calculated when the src requests to enable postcopy but before 119 * it starts. Its value can depend on e.g. whether postcopy preemption is 120 * enabled. 121 */ 122 unsigned int postcopy_channels; 123 /* QEMUFile for postcopy only; it'll be handled by a separate thread */ 124 QEMUFile *postcopy_qemufile_dst; 125 /* 126 * When postcopy_qemufile_dst is properly setup, this sem is posted. 127 * One can wait on this semaphore to wait until the preempt channel is 128 * properly setup. 129 */ 130 QemuSemaphore postcopy_qemufile_dst_done; 131 /* Postcopy priority thread is used to receive postcopy requested pages */ 132 QemuThread postcopy_prio_thread; 133 /* 134 * Always set by the main vm load thread only, but can be read by the 135 * postcopy preempt thread. "volatile" makes sure all reads will be 136 * uptodate across cores. 137 */ 138 volatile PreemptThreadStatus preempt_thread_status; 139 /* 140 * Used to sync between the ram load main thread and the fast ram load 141 * thread. It protects postcopy_qemufile_dst, which is the postcopy 142 * fast channel. 143 * 144 * The ram fast load thread will take it mostly for the whole lifecycle 145 * because it needs to continuously read data from the channel, and 146 * it'll only release this mutex if postcopy is interrupted, so that 147 * the ram load main thread will take this mutex over and properly 148 * release the broken channel. 149 */ 150 QemuMutex postcopy_prio_thread_mutex; 151 /* 152 * An array of temp host huge pages to be used, one for each postcopy 153 * channel. 154 */ 155 PostcopyTmpPage *postcopy_tmp_pages; 156 /* This is shared for all postcopy channels */ 157 void *postcopy_tmp_zero_page; 158 /* PostCopyFD's for external userfaultfds & handlers of shared memory */ 159 GArray *postcopy_remote_fds; 160 161 QEMUBH *bh; 162 163 int state; 164 165 /* 166 * The incoming migration coroutine, non-NULL during qemu_loadvm_state(). 167 * Used to wake the migration incoming coroutine from rdma code. How much is 168 * it safe - it's a question. 169 */ 170 Coroutine *loadvm_co; 171 172 /* The coroutine we should enter (back) after failover */ 173 Coroutine *colo_incoming_co; 174 QemuSemaphore colo_incoming_sem; 175 176 /* 177 * PostcopyBlocktimeContext to keep information for postcopy 178 * live migration, to calculate vCPU block time 179 * */ 180 struct PostcopyBlocktimeContext *blocktime_ctx; 181 182 /* notify PAUSED postcopy incoming migrations to try to continue */ 183 QemuSemaphore postcopy_pause_sem_dst; 184 QemuSemaphore postcopy_pause_sem_fault; 185 /* 186 * This semaphore is used to allow the ram fast load thread (only when 187 * postcopy preempt is enabled) fall into sleep when there's network 188 * interruption detected. When the recovery is done, the main load 189 * thread will kick the fast ram load thread using this semaphore. 190 */ 191 QemuSemaphore postcopy_pause_sem_fast_load; 192 193 /* List of listening socket addresses */ 194 SocketAddressList *socket_address_list; 195 196 /* A tree of pages that we requested to the source VM */ 197 GTree *page_requested; 198 /* For debugging purpose only, but would be nice to keep */ 199 int page_requested_count; 200 /* 201 * The mutex helps to maintain the requested pages that we sent to the 202 * source, IOW, to guarantee coherent between the page_requests tree and 203 * the per-ramblock receivedmap. Note! This does not guarantee consistency 204 * of the real page copy procedures (using UFFDIO_[ZERO]COPY). E.g., even 205 * if one bit in receivedmap is cleared, UFFDIO_COPY could have happened 206 * for that page already. This is intended so that the mutex won't 207 * serialize and blocked by slow operations like UFFDIO_* ioctls. However 208 * this should be enough to make sure the page_requested tree always 209 * contains valid information. 210 */ 211 QemuMutex page_request_mutex; 212 }; 213 214 MigrationIncomingState *migration_incoming_get_current(void); 215 void migration_incoming_state_destroy(void); 216 void migration_incoming_transport_cleanup(MigrationIncomingState *mis); 217 /* 218 * Functions to work with blocktime context 219 */ 220 void fill_destination_postcopy_migration_info(MigrationInfo *info); 221 222 #define TYPE_MIGRATION "migration" 223 224 typedef struct MigrationClass MigrationClass; 225 DECLARE_OBJ_CHECKERS(MigrationState, MigrationClass, 226 MIGRATION_OBJ, TYPE_MIGRATION) 227 228 struct MigrationClass { 229 /*< private >*/ 230 DeviceClass parent_class; 231 }; 232 233 struct MigrationState { 234 /*< private >*/ 235 DeviceState parent_obj; 236 237 /*< public >*/ 238 QemuThread thread; 239 QEMUBH *vm_start_bh; 240 QEMUBH *cleanup_bh; 241 /* Protected by qemu_file_lock */ 242 QEMUFile *to_dst_file; 243 /* Postcopy specific transfer channel */ 244 QEMUFile *postcopy_qemufile_src; 245 /* 246 * It is posted when the preempt channel is established. Note: this is 247 * used for both the start or recover of a postcopy migration. We'll 248 * post to this sem every time a new preempt channel is created in the 249 * main thread, and we keep post() and wait() in pair. 250 */ 251 QemuSemaphore postcopy_qemufile_src_sem; 252 QIOChannelBuffer *bioc; 253 /* 254 * Protects to_dst_file/from_dst_file pointers. We need to make sure we 255 * won't yield or hang during the critical section, since this lock will be 256 * used in OOB command handler. 257 */ 258 QemuMutex qemu_file_lock; 259 260 /* 261 * Used to allow urgent requests to override rate limiting. 262 */ 263 QemuSemaphore rate_limit_sem; 264 265 /* pages already send at the beginning of current iteration */ 266 uint64_t iteration_initial_pages; 267 268 /* pages transferred per second */ 269 double pages_per_second; 270 271 /* bytes already send at the beginning of current iteration */ 272 uint64_t iteration_initial_bytes; 273 /* time at the start of current iteration */ 274 int64_t iteration_start_time; 275 /* 276 * The final stage happens when the remaining data is smaller than 277 * this threshold; it's calculated from the requested downtime and 278 * measured bandwidth 279 */ 280 int64_t threshold_size; 281 282 /* params from 'migrate-set-parameters' */ 283 MigrationParameters parameters; 284 285 int state; 286 287 /* State related to return path */ 288 struct { 289 /* Protected by qemu_file_lock */ 290 QEMUFile *from_dst_file; 291 QemuThread rp_thread; 292 bool error; 293 /* 294 * We can also check non-zero of rp_thread, but there's no "official" 295 * way to do this, so this bool makes it slightly more elegant. 296 * Checking from_dst_file for this is racy because from_dst_file will 297 * be cleared in the rp_thread! 298 */ 299 bool rp_thread_created; 300 QemuSemaphore rp_sem; 301 /* 302 * We post to this when we got one PONG from dest. So far it's an 303 * easy way to know the main channel has successfully established 304 * on dest QEMU. 305 */ 306 QemuSemaphore rp_pong_acks; 307 } rp_state; 308 309 double mbps; 310 /* Timestamp when recent migration starts (ms) */ 311 int64_t start_time; 312 /* Total time used by latest migration (ms) */ 313 int64_t total_time; 314 /* Timestamp when VM is down (ms) to migrate the last stuff */ 315 int64_t downtime_start; 316 int64_t downtime; 317 int64_t expected_downtime; 318 bool capabilities[MIGRATION_CAPABILITY__MAX]; 319 int64_t setup_time; 320 /* 321 * Whether guest was running when we enter the completion stage. 322 * If migration is interrupted by any reason, we need to continue 323 * running the guest on source. 324 */ 325 bool vm_was_running; 326 327 /* Flag set once the migration has been asked to enter postcopy */ 328 bool start_postcopy; 329 /* Flag set after postcopy has sent the device state */ 330 bool postcopy_after_devices; 331 332 /* Flag set once the migration thread is running (and needs joining) */ 333 bool migration_thread_running; 334 335 /* Flag set once the migration thread called bdrv_inactivate_all */ 336 bool block_inactive; 337 338 /* Migration is waiting for guest to unplug device */ 339 QemuSemaphore wait_unplug_sem; 340 341 /* Migration is paused due to pause-before-switchover */ 342 QemuSemaphore pause_sem; 343 344 /* The semaphore is used to notify COLO thread that failover is finished */ 345 QemuSemaphore colo_exit_sem; 346 347 /* The event is used to notify COLO thread to do checkpoint */ 348 QemuEvent colo_checkpoint_event; 349 int64_t colo_checkpoint_time; 350 QEMUTimer *colo_delay_timer; 351 352 /* The first error that has occurred. 353 We used the mutex to be able to return the 1st error message */ 354 Error *error; 355 /* mutex to protect errp */ 356 QemuMutex error_mutex; 357 358 /* Do we have to clean up -b/-i from old migrate parameters */ 359 /* This feature is deprecated and will be removed */ 360 bool must_remove_block_options; 361 362 /* 363 * Global switch on whether we need to store the global state 364 * during migration. 365 */ 366 bool store_global_state; 367 368 /* Whether we send QEMU_VM_CONFIGURATION during migration */ 369 bool send_configuration; 370 /* Whether we send section footer during migration */ 371 bool send_section_footer; 372 373 /* Needed by postcopy-pause state */ 374 QemuSemaphore postcopy_pause_sem; 375 QemuSemaphore postcopy_pause_rp_sem; 376 /* 377 * Whether we abort the migration if decompression errors are 378 * detected at the destination. It is left at false for qemu 379 * older than 3.0, since only newer qemu sends streams that 380 * do not trigger spurious decompression errors. 381 */ 382 bool decompress_error_check; 383 /* 384 * This variable only affects behavior when postcopy preempt mode is 385 * enabled. 386 * 387 * When set: 388 * 389 * - postcopy preempt src QEMU instance will generate an EOS message at 390 * the end of migration to shut the preempt channel on dest side. 391 * 392 * - postcopy preempt channel will be created at the setup phase on src 393 QEMU. 394 * 395 * When clear: 396 * 397 * - postcopy preempt src QEMU instance will _not_ generate an EOS 398 * message at the end of migration, the dest qemu will shutdown the 399 * channel itself. 400 * 401 * - postcopy preempt channel will be created at the switching phase 402 * from precopy -> postcopy (to avoid race condtion of misordered 403 * creation of channels). 404 * 405 * NOTE: See message-id <ZBoShWArKDPpX/D7@work-vm> on qemu-devel 406 * mailing list for more information on the possible race. Everyone 407 * should probably just keep this value untouched after set by the 408 * machine type (or the default). 409 */ 410 bool preempt_pre_7_2; 411 412 /* 413 * flush every channel after each section sent. 414 * 415 * This assures that we can't mix pages from one iteration through 416 * ram pages with pages for the following iteration. We really 417 * only need to do this flush after we have go through all the 418 * dirty pages. For historical reasons, we do that after each 419 * section. This is suboptimal (we flush too many times). 420 * Default value is false. (since 8.1) 421 */ 422 bool multifd_flush_after_each_section; 423 /* 424 * This decides the size of guest memory chunk that will be used 425 * to track dirty bitmap clearing. The size of memory chunk will 426 * be GUEST_PAGE_SIZE << N. Say, N=0 means we will clear dirty 427 * bitmap for each page to send (1<<0=1); N=10 means we will clear 428 * dirty bitmap only once for 1<<10=1K continuous guest pages 429 * (which is in 4M chunk). 430 */ 431 uint8_t clear_bitmap_shift; 432 433 /* 434 * This save hostname when out-going migration starts 435 */ 436 char *hostname; 437 438 /* QEMU_VM_VMDESCRIPTION content filled for all non-iterable devices. */ 439 JSONWriter *vmdesc; 440 }; 441 442 void migrate_set_state(int *state, int old_state, int new_state); 443 444 void migration_fd_process_incoming(QEMUFile *f, Error **errp); 445 void migration_ioc_process_incoming(QIOChannel *ioc, Error **errp); 446 void migration_incoming_process(void); 447 448 bool migration_has_all_channels(void); 449 450 uint64_t migrate_max_downtime(void); 451 452 void migrate_set_error(MigrationState *s, const Error *error); 453 void migrate_fd_error(MigrationState *s, const Error *error); 454 455 void migrate_fd_connect(MigrationState *s, Error *error_in); 456 457 bool migration_is_setup_or_active(int state); 458 bool migration_is_running(int state); 459 460 void migrate_init(MigrationState *s); 461 bool migration_is_blocked(Error **errp); 462 /* True if outgoing migration has entered postcopy phase */ 463 bool migration_in_postcopy(void); 464 MigrationState *migrate_get_current(void); 465 466 uint64_t ram_get_total_transferred_pages(void); 467 468 /* Sending on the return path - generic and then for each message type */ 469 void migrate_send_rp_shut(MigrationIncomingState *mis, 470 uint32_t value); 471 void migrate_send_rp_pong(MigrationIncomingState *mis, 472 uint32_t value); 473 int migrate_send_rp_req_pages(MigrationIncomingState *mis, RAMBlock *rb, 474 ram_addr_t start, uint64_t haddr); 475 int migrate_send_rp_message_req_pages(MigrationIncomingState *mis, 476 RAMBlock *rb, ram_addr_t start); 477 void migrate_send_rp_recv_bitmap(MigrationIncomingState *mis, 478 char *block_name); 479 void migrate_send_rp_resume_ack(MigrationIncomingState *mis, uint32_t value); 480 481 void dirty_bitmap_mig_before_vm_start(void); 482 void dirty_bitmap_mig_cancel_outgoing(void); 483 void dirty_bitmap_mig_cancel_incoming(void); 484 bool check_dirty_bitmap_mig_alias_map(const BitmapMigrationNodeAliasList *bbm, 485 Error **errp); 486 487 void migrate_add_address(SocketAddress *address); 488 489 int foreach_not_ignored_block(RAMBlockIterFunc func, void *opaque); 490 491 #define qemu_ram_foreach_block \ 492 #warning "Use foreach_not_ignored_block in migration code" 493 494 void migration_make_urgent_request(void); 495 void migration_consume_urgent_request(void); 496 bool migration_rate_limit(void); 497 void migration_cancel(const Error *error); 498 499 void populate_vfio_info(MigrationInfo *info); 500 void postcopy_temp_page_reset(PostcopyTmpPage *tmp_page); 501 502 #endif 503