4 * Copyright IBM, Corp. 2008
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef QEMU_MIGRATION_H
15 #define QEMU_MIGRATION_H
17 #include "exec/cpu-common.h"
18 #include "hw/qdev-core.h"
19 #include "qapi/qapi-types-migration.h"
20 #include "qemu/thread.h"
21 #include "qemu/coroutine_int.h"
22 #include "io/channel.h"
23 #include "net/announce.h"
24 #include "qom/object.h"
26 struct PostcopyBlocktimeContext
;
28 #define MIGRATION_RESUME_ACK_VALUE (1)
31 * 1<<6=64 pages -> 256K chunk when page size is 4K. This gives us
32 * the benefit that all the chunks are 64 pages aligned then the
33 * bitmaps are always aligned to LONG.
35 #define CLEAR_BITMAP_SHIFT_MIN 6
37 * 1<<18=256K pages -> 1G chunk when page size is 4K. This is the
38 * default value to use if no one specified.
40 #define CLEAR_BITMAP_SHIFT_DEFAULT 18
42 * 1<<31=2G pages -> 8T chunk when page size is 4K. This should be
43 * big enough and make sure we won't overflow easily.
45 #define CLEAR_BITMAP_SHIFT_MAX 31
47 /* State for the incoming migration */
48 struct MigrationIncomingState
{
49 QEMUFile
*from_src_file
;
52 * Free at the start of the main state load, set as the main thread finishes
55 QemuEvent main_thread_load_event
;
57 /* For network announces */
58 AnnounceTimer announce_timer
;
60 size_t largest_page_size
;
61 bool have_fault_thread
;
62 QemuThread fault_thread
;
63 QemuSemaphore fault_thread_sem
;
64 /* Set this when we want the fault thread to quit */
65 bool fault_thread_quit
;
67 bool have_listen_thread
;
68 QemuThread listen_thread
;
69 QemuSemaphore listen_thread_sem
;
71 /* For the kernel to send us notifications */
73 /* To notify the fault_thread to wake, e.g., when need to quit */
74 int userfault_event_fd
;
75 QEMUFile
*to_src_file
;
76 QemuMutex rp_mutex
; /* We send replies from multiple threads */
77 /* RAMBlock of last request sent to source */
79 void *postcopy_tmp_page
;
80 void *postcopy_tmp_zero_page
;
81 /* PostCopyFD's for external userfaultfds & handlers of shared memory */
82 GArray
*postcopy_remote_fds
;
88 bool have_colo_incoming_thread
;
89 QemuThread colo_incoming_thread
;
90 /* The coroutine we should enter (back) after failover */
91 Coroutine
*migration_incoming_co
;
92 QemuSemaphore colo_incoming_sem
;
95 * PostcopyBlocktimeContext to keep information for postcopy
96 * live migration, to calculate vCPU block time
98 struct PostcopyBlocktimeContext
*blocktime_ctx
;
100 /* notify PAUSED postcopy incoming migrations to try to continue */
101 bool postcopy_recover_triggered
;
102 QemuSemaphore postcopy_pause_sem_dst
;
103 QemuSemaphore postcopy_pause_sem_fault
;
105 /* List of listening socket addresses */
106 SocketAddressList
*socket_address_list
;
108 /* A tree of pages that we requested to the source VM */
109 GTree
*page_requested
;
110 /* For debugging purpose only, but would be nice to keep */
111 int page_requested_count
;
113 * The mutex helps to maintain the requested pages that we sent to the
114 * source, IOW, to guarantee coherent between the page_requests tree and
115 * the per-ramblock receivedmap. Note! This does not guarantee consistency
116 * of the real page copy procedures (using UFFDIO_[ZERO]COPY). E.g., even
117 * if one bit in receivedmap is cleared, UFFDIO_COPY could have happened
118 * for that page already. This is intended so that the mutex won't
119 * serialize and blocked by slow operations like UFFDIO_* ioctls. However
120 * this should be enough to make sure the page_requested tree always
121 * contains valid information.
123 QemuMutex page_request_mutex
;
126 MigrationIncomingState
*migration_incoming_get_current(void);
127 void migration_incoming_state_destroy(void);
129 * Functions to work with blocktime context
131 void fill_destination_postcopy_migration_info(MigrationInfo
*info
);
133 #define TYPE_MIGRATION "migration"
135 typedef struct MigrationClass MigrationClass
;
136 DECLARE_OBJ_CHECKERS(MigrationState
, MigrationClass
,
137 MIGRATION_OBJ
, TYPE_MIGRATION
)
139 struct MigrationClass
{
141 DeviceClass parent_class
;
144 struct MigrationState
{
146 DeviceState parent_obj
;
151 QEMUFile
*to_dst_file
;
153 * Protects to_dst_file pointer. We need to make sure we won't
154 * yield or hang during the critical section, since this lock will
155 * be used in OOB command handler.
157 QemuMutex qemu_file_lock
;
160 * Used to allow urgent requests to override rate limiting.
162 QemuSemaphore rate_limit_sem
;
164 /* pages already send at the beginning of current iteration */
165 uint64_t iteration_initial_pages
;
167 /* pages transferred per second */
168 double pages_per_second
;
170 /* bytes already send at the beginning of current iteration */
171 uint64_t iteration_initial_bytes
;
172 /* time at the start of current iteration */
173 int64_t iteration_start_time
;
175 * The final stage happens when the remaining data is smaller than
176 * this threshold; it's calculated from the requested downtime and
179 int64_t threshold_size
;
181 /* params from 'migrate-set-parameters' */
182 MigrationParameters parameters
;
186 /* State related to return path */
188 QEMUFile
*from_dst_file
;
189 QemuThread rp_thread
;
191 QemuSemaphore rp_sem
;
195 /* Timestamp when recent migration starts (ms) */
197 /* Total time used by latest migration (ms) */
199 /* Timestamp when VM is down (ms) to migrate the last stuff */
200 int64_t downtime_start
;
202 int64_t expected_downtime
;
203 bool enabled_capabilities
[MIGRATION_CAPABILITY__MAX
];
206 * Whether guest was running when we enter the completion stage.
207 * If migration is interrupted by any reason, we need to continue
208 * running the guest on source.
212 /* Flag set once the migration has been asked to enter postcopy */
214 /* Flag set after postcopy has sent the device state */
215 bool postcopy_after_devices
;
217 /* Flag set once the migration thread is running (and needs joining) */
218 bool migration_thread_running
;
220 /* Flag set once the migration thread called bdrv_inactivate_all */
223 /* Migration is waiting for guest to unplug device */
224 QemuSemaphore wait_unplug_sem
;
226 /* Migration is paused due to pause-before-switchover */
227 QemuSemaphore pause_sem
;
229 /* The semaphore is used to notify COLO thread that failover is finished */
230 QemuSemaphore colo_exit_sem
;
232 /* The event is used to notify COLO thread to do checkpoint */
233 QemuEvent colo_checkpoint_event
;
234 int64_t colo_checkpoint_time
;
235 QEMUTimer
*colo_delay_timer
;
237 /* The first error that has occurred.
238 We used the mutex to be able to return the 1st error message */
240 /* mutex to protect errp */
241 QemuMutex error_mutex
;
243 /* Do we have to clean up -b/-i from old migrate parameters */
244 /* This feature is deprecated and will be removed */
245 bool must_remove_block_options
;
248 * Global switch on whether we need to store the global state
251 bool store_global_state
;
253 /* Whether we send QEMU_VM_CONFIGURATION during migration */
254 bool send_configuration
;
255 /* Whether we send section footer during migration */
256 bool send_section_footer
;
258 /* Needed by postcopy-pause state */
259 QemuSemaphore postcopy_pause_sem
;
260 QemuSemaphore postcopy_pause_rp_sem
;
262 * Whether we abort the migration if decompression errors are
263 * detected at the destination. It is left at false for qemu
264 * older than 3.0, since only newer qemu sends streams that
265 * do not trigger spurious decompression errors.
267 bool decompress_error_check
;
270 * This decides the size of guest memory chunk that will be used
271 * to track dirty bitmap clearing. The size of memory chunk will
272 * be GUEST_PAGE_SIZE << N. Say, N=0 means we will clear dirty
273 * bitmap for each page to send (1<<0=1); N=10 means we will clear
274 * dirty bitmap only once for 1<<10=1K continuous guest pages
275 * (which is in 4M chunk).
277 uint8_t clear_bitmap_shift
;
280 * This save hostname when out-going migration starts
285 void migrate_set_state(int *state
, int old_state
, int new_state
);
287 void migration_fd_process_incoming(QEMUFile
*f
, Error
**errp
);
288 void migration_ioc_process_incoming(QIOChannel
*ioc
, Error
**errp
);
289 void migration_incoming_process(void);
291 bool migration_has_all_channels(void);
293 uint64_t migrate_max_downtime(void);
295 void migrate_set_error(MigrationState
*s
, const Error
*error
);
296 void migrate_fd_error(MigrationState
*s
, const Error
*error
);
298 void migrate_fd_connect(MigrationState
*s
, Error
*error_in
);
300 bool migration_is_setup_or_active(int state
);
301 bool migration_is_running(int state
);
303 void migrate_init(MigrationState
*s
);
304 bool migration_is_blocked(Error
**errp
);
305 /* True if outgoing migration has entered postcopy phase */
306 bool migration_in_postcopy(void);
307 MigrationState
*migrate_get_current(void);
309 bool migrate_postcopy(void);
311 bool migrate_release_ram(void);
312 bool migrate_postcopy_ram(void);
313 bool migrate_zero_blocks(void);
314 bool migrate_dirty_bitmaps(void);
315 bool migrate_ignore_shared(void);
316 bool migrate_validate_uuid(void);
318 bool migrate_auto_converge(void);
319 bool migrate_use_multifd(void);
320 bool migrate_pause_before_switchover(void);
321 int migrate_multifd_channels(void);
322 MultiFDCompression
migrate_multifd_compression(void);
323 int migrate_multifd_zlib_level(void);
324 int migrate_multifd_zstd_level(void);
326 int migrate_use_xbzrle(void);
327 int64_t migrate_xbzrle_cache_size(void);
328 bool migrate_colo_enabled(void);
330 bool migrate_use_block(void);
331 bool migrate_use_block_incremental(void);
332 int migrate_max_cpu_throttle(void);
333 bool migrate_use_return_path(void);
335 uint64_t ram_get_total_transferred_pages(void);
337 bool migrate_use_compression(void);
338 int migrate_compress_level(void);
339 int migrate_compress_threads(void);
340 int migrate_compress_wait_thread(void);
341 int migrate_decompress_threads(void);
342 bool migrate_use_events(void);
343 bool migrate_postcopy_blocktime(void);
345 /* Sending on the return path - generic and then for each message type */
346 void migrate_send_rp_shut(MigrationIncomingState
*mis
,
348 void migrate_send_rp_pong(MigrationIncomingState
*mis
,
350 int migrate_send_rp_req_pages(MigrationIncomingState
*mis
, RAMBlock
*rb
,
351 ram_addr_t start
, uint64_t haddr
);
352 int migrate_send_rp_message_req_pages(MigrationIncomingState
*mis
,
353 RAMBlock
*rb
, ram_addr_t start
);
354 void migrate_send_rp_recv_bitmap(MigrationIncomingState
*mis
,
356 void migrate_send_rp_resume_ack(MigrationIncomingState
*mis
, uint32_t value
);
358 void dirty_bitmap_mig_before_vm_start(void);
359 void dirty_bitmap_mig_cancel_outgoing(void);
360 void dirty_bitmap_mig_cancel_incoming(void);
361 bool check_dirty_bitmap_mig_alias_map(const BitmapMigrationNodeAliasList
*bbm
,
364 void migrate_add_address(SocketAddress
*address
);
366 int foreach_not_ignored_block(RAMBlockIterFunc func
, void *opaque
);
368 #define qemu_ram_foreach_block \
369 #warning "Use foreach_not_ignored_block in migration code"
371 void migration_make_urgent_request(void);
372 void migration_consume_urgent_request(void);
373 bool migration_rate_limit(void);