hw/arm/virt: fix max-cpus check
[qemu/ar7.git] / migration / ram.c
blob96c749face4f6b3290bfd28f4a1ef60da8c0dbc7
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2011-2015 Red Hat Inc
7 * Authors:
8 * Juan Quintela <quintela@redhat.com>
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
28 #include "qemu/osdep.h"
29 #include <zlib.h>
30 #include "qapi-event.h"
31 #include "qemu/bitops.h"
32 #include "qemu/bitmap.h"
33 #include "qemu/timer.h"
34 #include "qemu/main-loop.h"
35 #include "migration/migration.h"
36 #include "migration/postcopy-ram.h"
37 #include "exec/address-spaces.h"
38 #include "migration/page_cache.h"
39 #include "qemu/error-report.h"
40 #include "trace.h"
41 #include "exec/ram_addr.h"
42 #include "qemu/rcu_queue.h"
44 #ifdef DEBUG_MIGRATION_RAM
45 #define DPRINTF(fmt, ...) \
46 do { fprintf(stdout, "migration_ram: " fmt, ## __VA_ARGS__); } while (0)
47 #else
48 #define DPRINTF(fmt, ...) \
49 do { } while (0)
50 #endif
52 static int dirty_rate_high_cnt;
54 static uint64_t bitmap_sync_count;
56 /***********************************************************/
57 /* ram save/restore */
59 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
60 #define RAM_SAVE_FLAG_COMPRESS 0x02
61 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
62 #define RAM_SAVE_FLAG_PAGE 0x08
63 #define RAM_SAVE_FLAG_EOS 0x10
64 #define RAM_SAVE_FLAG_CONTINUE 0x20
65 #define RAM_SAVE_FLAG_XBZRLE 0x40
66 /* 0x80 is reserved in migration.h start with 0x100 next */
67 #define RAM_SAVE_FLAG_COMPRESS_PAGE 0x100
69 static const uint8_t ZERO_TARGET_PAGE[TARGET_PAGE_SIZE];
71 static inline bool is_zero_range(uint8_t *p, uint64_t size)
73 return buffer_find_nonzero_offset(p, size) == size;
76 /* struct contains XBZRLE cache and a static page
77 used by the compression */
78 static struct {
79 /* buffer used for XBZRLE encoding */
80 uint8_t *encoded_buf;
81 /* buffer for storing page content */
82 uint8_t *current_buf;
83 /* Cache for XBZRLE, Protected by lock. */
84 PageCache *cache;
85 QemuMutex lock;
86 } XBZRLE;
88 /* buffer used for XBZRLE decoding */
89 static uint8_t *xbzrle_decoded_buf;
91 static void XBZRLE_cache_lock(void)
93 if (migrate_use_xbzrle())
94 qemu_mutex_lock(&XBZRLE.lock);
97 static void XBZRLE_cache_unlock(void)
99 if (migrate_use_xbzrle())
100 qemu_mutex_unlock(&XBZRLE.lock);
104 * called from qmp_migrate_set_cache_size in main thread, possibly while
105 * a migration is in progress.
106 * A running migration maybe using the cache and might finish during this
107 * call, hence changes to the cache are protected by XBZRLE.lock().
109 int64_t xbzrle_cache_resize(int64_t new_size)
111 PageCache *new_cache;
112 int64_t ret;
114 if (new_size < TARGET_PAGE_SIZE) {
115 return -1;
118 XBZRLE_cache_lock();
120 if (XBZRLE.cache != NULL) {
121 if (pow2floor(new_size) == migrate_xbzrle_cache_size()) {
122 goto out_new_size;
124 new_cache = cache_init(new_size / TARGET_PAGE_SIZE,
125 TARGET_PAGE_SIZE);
126 if (!new_cache) {
127 error_report("Error creating cache");
128 ret = -1;
129 goto out;
132 cache_fini(XBZRLE.cache);
133 XBZRLE.cache = new_cache;
136 out_new_size:
137 ret = pow2floor(new_size);
138 out:
139 XBZRLE_cache_unlock();
140 return ret;
143 /* accounting for migration statistics */
144 typedef struct AccountingInfo {
145 uint64_t dup_pages;
146 uint64_t skipped_pages;
147 uint64_t norm_pages;
148 uint64_t iterations;
149 uint64_t xbzrle_bytes;
150 uint64_t xbzrle_pages;
151 uint64_t xbzrle_cache_miss;
152 double xbzrle_cache_miss_rate;
153 uint64_t xbzrle_overflows;
154 } AccountingInfo;
156 static AccountingInfo acct_info;
158 static void acct_clear(void)
160 memset(&acct_info, 0, sizeof(acct_info));
163 uint64_t dup_mig_bytes_transferred(void)
165 return acct_info.dup_pages * TARGET_PAGE_SIZE;
168 uint64_t dup_mig_pages_transferred(void)
170 return acct_info.dup_pages;
173 uint64_t skipped_mig_bytes_transferred(void)
175 return acct_info.skipped_pages * TARGET_PAGE_SIZE;
178 uint64_t skipped_mig_pages_transferred(void)
180 return acct_info.skipped_pages;
183 uint64_t norm_mig_bytes_transferred(void)
185 return acct_info.norm_pages * TARGET_PAGE_SIZE;
188 uint64_t norm_mig_pages_transferred(void)
190 return acct_info.norm_pages;
193 uint64_t xbzrle_mig_bytes_transferred(void)
195 return acct_info.xbzrle_bytes;
198 uint64_t xbzrle_mig_pages_transferred(void)
200 return acct_info.xbzrle_pages;
203 uint64_t xbzrle_mig_pages_cache_miss(void)
205 return acct_info.xbzrle_cache_miss;
208 double xbzrle_mig_cache_miss_rate(void)
210 return acct_info.xbzrle_cache_miss_rate;
213 uint64_t xbzrle_mig_pages_overflow(void)
215 return acct_info.xbzrle_overflows;
218 /* This is the last block that we have visited serching for dirty pages
220 static RAMBlock *last_seen_block;
221 /* This is the last block from where we have sent data */
222 static RAMBlock *last_sent_block;
223 static ram_addr_t last_offset;
224 static QemuMutex migration_bitmap_mutex;
225 static uint64_t migration_dirty_pages;
226 static uint32_t last_version;
227 static bool ram_bulk_stage;
229 /* used by the search for pages to send */
230 struct PageSearchStatus {
231 /* Current block being searched */
232 RAMBlock *block;
233 /* Current offset to search from */
234 ram_addr_t offset;
235 /* Set once we wrap around */
236 bool complete_round;
238 typedef struct PageSearchStatus PageSearchStatus;
240 static struct BitmapRcu {
241 struct rcu_head rcu;
242 /* Main migration bitmap */
243 unsigned long *bmap;
244 /* bitmap of pages that haven't been sent even once
245 * only maintained and used in postcopy at the moment
246 * where it's used to send the dirtymap at the start
247 * of the postcopy phase
249 unsigned long *unsentmap;
250 } *migration_bitmap_rcu;
252 struct CompressParam {
253 bool start;
254 bool done;
255 QEMUFile *file;
256 QemuMutex mutex;
257 QemuCond cond;
258 RAMBlock *block;
259 ram_addr_t offset;
261 typedef struct CompressParam CompressParam;
263 struct DecompressParam {
264 bool start;
265 QemuMutex mutex;
266 QemuCond cond;
267 void *des;
268 uint8_t *compbuf;
269 int len;
271 typedef struct DecompressParam DecompressParam;
273 static CompressParam *comp_param;
274 static QemuThread *compress_threads;
275 /* comp_done_cond is used to wake up the migration thread when
276 * one of the compression threads has finished the compression.
277 * comp_done_lock is used to co-work with comp_done_cond.
279 static QemuMutex *comp_done_lock;
280 static QemuCond *comp_done_cond;
281 /* The empty QEMUFileOps will be used by file in CompressParam */
282 static const QEMUFileOps empty_ops = { };
284 static bool compression_switch;
285 static bool quit_comp_thread;
286 static bool quit_decomp_thread;
287 static DecompressParam *decomp_param;
288 static QemuThread *decompress_threads;
290 static int do_compress_ram_page(CompressParam *param);
292 static void *do_data_compress(void *opaque)
294 CompressParam *param = opaque;
296 while (!quit_comp_thread) {
297 qemu_mutex_lock(&param->mutex);
298 /* Re-check the quit_comp_thread in case of
299 * terminate_compression_threads is called just before
300 * qemu_mutex_lock(&param->mutex) and after
301 * while(!quit_comp_thread), re-check it here can make
302 * sure the compression thread terminate as expected.
304 while (!param->start && !quit_comp_thread) {
305 qemu_cond_wait(&param->cond, &param->mutex);
307 if (!quit_comp_thread) {
308 do_compress_ram_page(param);
310 param->start = false;
311 qemu_mutex_unlock(&param->mutex);
313 qemu_mutex_lock(comp_done_lock);
314 param->done = true;
315 qemu_cond_signal(comp_done_cond);
316 qemu_mutex_unlock(comp_done_lock);
319 return NULL;
322 static inline void terminate_compression_threads(void)
324 int idx, thread_count;
326 thread_count = migrate_compress_threads();
327 quit_comp_thread = true;
328 for (idx = 0; idx < thread_count; idx++) {
329 qemu_mutex_lock(&comp_param[idx].mutex);
330 qemu_cond_signal(&comp_param[idx].cond);
331 qemu_mutex_unlock(&comp_param[idx].mutex);
335 void migrate_compress_threads_join(void)
337 int i, thread_count;
339 if (!migrate_use_compression()) {
340 return;
342 terminate_compression_threads();
343 thread_count = migrate_compress_threads();
344 for (i = 0; i < thread_count; i++) {
345 qemu_thread_join(compress_threads + i);
346 qemu_fclose(comp_param[i].file);
347 qemu_mutex_destroy(&comp_param[i].mutex);
348 qemu_cond_destroy(&comp_param[i].cond);
350 qemu_mutex_destroy(comp_done_lock);
351 qemu_cond_destroy(comp_done_cond);
352 g_free(compress_threads);
353 g_free(comp_param);
354 g_free(comp_done_cond);
355 g_free(comp_done_lock);
356 compress_threads = NULL;
357 comp_param = NULL;
358 comp_done_cond = NULL;
359 comp_done_lock = NULL;
362 void migrate_compress_threads_create(void)
364 int i, thread_count;
366 if (!migrate_use_compression()) {
367 return;
369 quit_comp_thread = false;
370 compression_switch = true;
371 thread_count = migrate_compress_threads();
372 compress_threads = g_new0(QemuThread, thread_count);
373 comp_param = g_new0(CompressParam, thread_count);
374 comp_done_cond = g_new0(QemuCond, 1);
375 comp_done_lock = g_new0(QemuMutex, 1);
376 qemu_cond_init(comp_done_cond);
377 qemu_mutex_init(comp_done_lock);
378 for (i = 0; i < thread_count; i++) {
379 /* com_param[i].file is just used as a dummy buffer to save data, set
380 * it's ops to empty.
382 comp_param[i].file = qemu_fopen_ops(NULL, &empty_ops);
383 comp_param[i].done = true;
384 qemu_mutex_init(&comp_param[i].mutex);
385 qemu_cond_init(&comp_param[i].cond);
386 qemu_thread_create(compress_threads + i, "compress",
387 do_data_compress, comp_param + i,
388 QEMU_THREAD_JOINABLE);
393 * save_page_header: Write page header to wire
395 * If this is the 1st block, it also writes the block identification
397 * Returns: Number of bytes written
399 * @f: QEMUFile where to send the data
400 * @block: block that contains the page we want to send
401 * @offset: offset inside the block for the page
402 * in the lower bits, it contains flags
404 static size_t save_page_header(QEMUFile *f, RAMBlock *block, ram_addr_t offset)
406 size_t size, len;
408 qemu_put_be64(f, offset);
409 size = 8;
411 if (!(offset & RAM_SAVE_FLAG_CONTINUE)) {
412 len = strlen(block->idstr);
413 qemu_put_byte(f, len);
414 qemu_put_buffer(f, (uint8_t *)block->idstr, len);
415 size += 1 + len;
417 return size;
420 /* Reduce amount of guest cpu execution to hopefully slow down memory writes.
421 * If guest dirty memory rate is reduced below the rate at which we can
422 * transfer pages to the destination then we should be able to complete
423 * migration. Some workloads dirty memory way too fast and will not effectively
424 * converge, even with auto-converge.
426 static void mig_throttle_guest_down(void)
428 MigrationState *s = migrate_get_current();
429 uint64_t pct_initial =
430 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL];
431 uint64_t pct_icrement =
432 s->parameters[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT];
434 /* We have not started throttling yet. Let's start it. */
435 if (!cpu_throttle_active()) {
436 cpu_throttle_set(pct_initial);
437 } else {
438 /* Throttling already on, just increase the rate */
439 cpu_throttle_set(cpu_throttle_get_percentage() + pct_icrement);
443 /* Update the xbzrle cache to reflect a page that's been sent as all 0.
444 * The important thing is that a stale (not-yet-0'd) page be replaced
445 * by the new data.
446 * As a bonus, if the page wasn't in the cache it gets added so that
447 * when a small write is made into the 0'd page it gets XBZRLE sent
449 static void xbzrle_cache_zero_page(ram_addr_t current_addr)
451 if (ram_bulk_stage || !migrate_use_xbzrle()) {
452 return;
455 /* We don't care if this fails to allocate a new cache page
456 * as long as it updated an old one */
457 cache_insert(XBZRLE.cache, current_addr, ZERO_TARGET_PAGE,
458 bitmap_sync_count);
461 #define ENCODING_FLAG_XBZRLE 0x1
464 * save_xbzrle_page: compress and send current page
466 * Returns: 1 means that we wrote the page
467 * 0 means that page is identical to the one already sent
468 * -1 means that xbzrle would be longer than normal
470 * @f: QEMUFile where to send the data
471 * @current_data:
472 * @current_addr:
473 * @block: block that contains the page we want to send
474 * @offset: offset inside the block for the page
475 * @last_stage: if we are at the completion stage
476 * @bytes_transferred: increase it with the number of transferred bytes
478 static int save_xbzrle_page(QEMUFile *f, uint8_t **current_data,
479 ram_addr_t current_addr, RAMBlock *block,
480 ram_addr_t offset, bool last_stage,
481 uint64_t *bytes_transferred)
483 int encoded_len = 0, bytes_xbzrle;
484 uint8_t *prev_cached_page;
486 if (!cache_is_cached(XBZRLE.cache, current_addr, bitmap_sync_count)) {
487 acct_info.xbzrle_cache_miss++;
488 if (!last_stage) {
489 if (cache_insert(XBZRLE.cache, current_addr, *current_data,
490 bitmap_sync_count) == -1) {
491 return -1;
492 } else {
493 /* update *current_data when the page has been
494 inserted into cache */
495 *current_data = get_cached_data(XBZRLE.cache, current_addr);
498 return -1;
501 prev_cached_page = get_cached_data(XBZRLE.cache, current_addr);
503 /* save current buffer into memory */
504 memcpy(XBZRLE.current_buf, *current_data, TARGET_PAGE_SIZE);
506 /* XBZRLE encoding (if there is no overflow) */
507 encoded_len = xbzrle_encode_buffer(prev_cached_page, XBZRLE.current_buf,
508 TARGET_PAGE_SIZE, XBZRLE.encoded_buf,
509 TARGET_PAGE_SIZE);
510 if (encoded_len == 0) {
511 DPRINTF("Skipping unmodified page\n");
512 return 0;
513 } else if (encoded_len == -1) {
514 DPRINTF("Overflow\n");
515 acct_info.xbzrle_overflows++;
516 /* update data in the cache */
517 if (!last_stage) {
518 memcpy(prev_cached_page, *current_data, TARGET_PAGE_SIZE);
519 *current_data = prev_cached_page;
521 return -1;
524 /* we need to update the data in the cache, in order to get the same data */
525 if (!last_stage) {
526 memcpy(prev_cached_page, XBZRLE.current_buf, TARGET_PAGE_SIZE);
529 /* Send XBZRLE based compressed page */
530 bytes_xbzrle = save_page_header(f, block, offset | RAM_SAVE_FLAG_XBZRLE);
531 qemu_put_byte(f, ENCODING_FLAG_XBZRLE);
532 qemu_put_be16(f, encoded_len);
533 qemu_put_buffer(f, XBZRLE.encoded_buf, encoded_len);
534 bytes_xbzrle += encoded_len + 1 + 2;
535 acct_info.xbzrle_pages++;
536 acct_info.xbzrle_bytes += bytes_xbzrle;
537 *bytes_transferred += bytes_xbzrle;
539 return 1;
542 /* Called with rcu_read_lock() to protect migration_bitmap
543 * rb: The RAMBlock to search for dirty pages in
544 * start: Start address (typically so we can continue from previous page)
545 * ram_addr_abs: Pointer into which to store the address of the dirty page
546 * within the global ram_addr space
548 * Returns: byte offset within memory region of the start of a dirty page
550 static inline
551 ram_addr_t migration_bitmap_find_dirty(RAMBlock *rb,
552 ram_addr_t start,
553 ram_addr_t *ram_addr_abs)
555 unsigned long base = rb->offset >> TARGET_PAGE_BITS;
556 unsigned long nr = base + (start >> TARGET_PAGE_BITS);
557 uint64_t rb_size = rb->used_length;
558 unsigned long size = base + (rb_size >> TARGET_PAGE_BITS);
559 unsigned long *bitmap;
561 unsigned long next;
563 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
564 if (ram_bulk_stage && nr > base) {
565 next = nr + 1;
566 } else {
567 next = find_next_bit(bitmap, size, nr);
570 *ram_addr_abs = next << TARGET_PAGE_BITS;
571 return (next - base) << TARGET_PAGE_BITS;
574 static inline bool migration_bitmap_clear_dirty(ram_addr_t addr)
576 bool ret;
577 int nr = addr >> TARGET_PAGE_BITS;
578 unsigned long *bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
580 ret = test_and_clear_bit(nr, bitmap);
582 if (ret) {
583 migration_dirty_pages--;
585 return ret;
588 static void migration_bitmap_sync_range(ram_addr_t start, ram_addr_t length)
590 unsigned long *bitmap;
591 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
592 migration_dirty_pages +=
593 cpu_physical_memory_sync_dirty_bitmap(bitmap, start, length);
596 /* Fix me: there are too many global variables used in migration process. */
597 static int64_t start_time;
598 static int64_t bytes_xfer_prev;
599 static int64_t num_dirty_pages_period;
600 static uint64_t xbzrle_cache_miss_prev;
601 static uint64_t iterations_prev;
603 static void migration_bitmap_sync_init(void)
605 start_time = 0;
606 bytes_xfer_prev = 0;
607 num_dirty_pages_period = 0;
608 xbzrle_cache_miss_prev = 0;
609 iterations_prev = 0;
612 static void migration_bitmap_sync(void)
614 RAMBlock *block;
615 uint64_t num_dirty_pages_init = migration_dirty_pages;
616 MigrationState *s = migrate_get_current();
617 int64_t end_time;
618 int64_t bytes_xfer_now;
620 bitmap_sync_count++;
622 if (!bytes_xfer_prev) {
623 bytes_xfer_prev = ram_bytes_transferred();
626 if (!start_time) {
627 start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
630 trace_migration_bitmap_sync_start();
631 address_space_sync_dirty_bitmap(&address_space_memory);
633 qemu_mutex_lock(&migration_bitmap_mutex);
634 rcu_read_lock();
635 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
636 migration_bitmap_sync_range(block->offset, block->used_length);
638 rcu_read_unlock();
639 qemu_mutex_unlock(&migration_bitmap_mutex);
641 trace_migration_bitmap_sync_end(migration_dirty_pages
642 - num_dirty_pages_init);
643 num_dirty_pages_period += migration_dirty_pages - num_dirty_pages_init;
644 end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
646 /* more than 1 second = 1000 millisecons */
647 if (end_time > start_time + 1000) {
648 if (migrate_auto_converge()) {
649 /* The following detection logic can be refined later. For now:
650 Check to see if the dirtied bytes is 50% more than the approx.
651 amount of bytes that just got transferred since the last time we
652 were in this routine. If that happens twice, start or increase
653 throttling */
654 bytes_xfer_now = ram_bytes_transferred();
656 if (s->dirty_pages_rate &&
657 (num_dirty_pages_period * TARGET_PAGE_SIZE >
658 (bytes_xfer_now - bytes_xfer_prev)/2) &&
659 (dirty_rate_high_cnt++ >= 2)) {
660 trace_migration_throttle();
661 dirty_rate_high_cnt = 0;
662 mig_throttle_guest_down();
664 bytes_xfer_prev = bytes_xfer_now;
667 if (migrate_use_xbzrle()) {
668 if (iterations_prev != acct_info.iterations) {
669 acct_info.xbzrle_cache_miss_rate =
670 (double)(acct_info.xbzrle_cache_miss -
671 xbzrle_cache_miss_prev) /
672 (acct_info.iterations - iterations_prev);
674 iterations_prev = acct_info.iterations;
675 xbzrle_cache_miss_prev = acct_info.xbzrle_cache_miss;
677 s->dirty_pages_rate = num_dirty_pages_period * 1000
678 / (end_time - start_time);
679 s->dirty_bytes_rate = s->dirty_pages_rate * TARGET_PAGE_SIZE;
680 start_time = end_time;
681 num_dirty_pages_period = 0;
683 s->dirty_sync_count = bitmap_sync_count;
684 if (migrate_use_events()) {
685 qapi_event_send_migration_pass(bitmap_sync_count, NULL);
690 * save_zero_page: Send the zero page to the stream
692 * Returns: Number of pages written.
694 * @f: QEMUFile where to send the data
695 * @block: block that contains the page we want to send
696 * @offset: offset inside the block for the page
697 * @p: pointer to the page
698 * @bytes_transferred: increase it with the number of transferred bytes
700 static int save_zero_page(QEMUFile *f, RAMBlock *block, ram_addr_t offset,
701 uint8_t *p, uint64_t *bytes_transferred)
703 int pages = -1;
705 if (is_zero_range(p, TARGET_PAGE_SIZE)) {
706 acct_info.dup_pages++;
707 *bytes_transferred += save_page_header(f, block,
708 offset | RAM_SAVE_FLAG_COMPRESS);
709 qemu_put_byte(f, 0);
710 *bytes_transferred += 1;
711 pages = 1;
714 return pages;
718 * ram_save_page: Send the given page to the stream
720 * Returns: Number of pages written.
721 * < 0 - error
722 * >=0 - Number of pages written - this might legally be 0
723 * if xbzrle noticed the page was the same.
725 * @f: QEMUFile where to send the data
726 * @block: block that contains the page we want to send
727 * @offset: offset inside the block for the page
728 * @last_stage: if we are at the completion stage
729 * @bytes_transferred: increase it with the number of transferred bytes
731 static int ram_save_page(QEMUFile *f, PageSearchStatus *pss,
732 bool last_stage, uint64_t *bytes_transferred)
734 int pages = -1;
735 uint64_t bytes_xmit;
736 ram_addr_t current_addr;
737 uint8_t *p;
738 int ret;
739 bool send_async = true;
740 RAMBlock *block = pss->block;
741 ram_addr_t offset = pss->offset;
743 p = block->host + offset;
745 /* In doubt sent page as normal */
746 bytes_xmit = 0;
747 ret = ram_control_save_page(f, block->offset,
748 offset, TARGET_PAGE_SIZE, &bytes_xmit);
749 if (bytes_xmit) {
750 *bytes_transferred += bytes_xmit;
751 pages = 1;
754 XBZRLE_cache_lock();
756 current_addr = block->offset + offset;
758 if (block == last_sent_block) {
759 offset |= RAM_SAVE_FLAG_CONTINUE;
761 if (ret != RAM_SAVE_CONTROL_NOT_SUPP) {
762 if (ret != RAM_SAVE_CONTROL_DELAYED) {
763 if (bytes_xmit > 0) {
764 acct_info.norm_pages++;
765 } else if (bytes_xmit == 0) {
766 acct_info.dup_pages++;
769 } else {
770 pages = save_zero_page(f, block, offset, p, bytes_transferred);
771 if (pages > 0) {
772 /* Must let xbzrle know, otherwise a previous (now 0'd) cached
773 * page would be stale
775 xbzrle_cache_zero_page(current_addr);
776 } else if (!ram_bulk_stage && migrate_use_xbzrle()) {
777 pages = save_xbzrle_page(f, &p, current_addr, block,
778 offset, last_stage, bytes_transferred);
779 if (!last_stage) {
780 /* Can't send this cached data async, since the cache page
781 * might get updated before it gets to the wire
783 send_async = false;
788 /* XBZRLE overflow or normal page */
789 if (pages == -1) {
790 *bytes_transferred += save_page_header(f, block,
791 offset | RAM_SAVE_FLAG_PAGE);
792 if (send_async) {
793 qemu_put_buffer_async(f, p, TARGET_PAGE_SIZE);
794 } else {
795 qemu_put_buffer(f, p, TARGET_PAGE_SIZE);
797 *bytes_transferred += TARGET_PAGE_SIZE;
798 pages = 1;
799 acct_info.norm_pages++;
802 XBZRLE_cache_unlock();
804 return pages;
807 static int do_compress_ram_page(CompressParam *param)
809 int bytes_sent, blen;
810 uint8_t *p;
811 RAMBlock *block = param->block;
812 ram_addr_t offset = param->offset;
814 p = block->host + (offset & TARGET_PAGE_MASK);
816 bytes_sent = save_page_header(param->file, block, offset |
817 RAM_SAVE_FLAG_COMPRESS_PAGE);
818 blen = qemu_put_compression_data(param->file, p, TARGET_PAGE_SIZE,
819 migrate_compress_level());
820 bytes_sent += blen;
822 return bytes_sent;
825 static inline void start_compression(CompressParam *param)
827 param->done = false;
828 qemu_mutex_lock(&param->mutex);
829 param->start = true;
830 qemu_cond_signal(&param->cond);
831 qemu_mutex_unlock(&param->mutex);
834 static inline void start_decompression(DecompressParam *param)
836 qemu_mutex_lock(&param->mutex);
837 param->start = true;
838 qemu_cond_signal(&param->cond);
839 qemu_mutex_unlock(&param->mutex);
842 static uint64_t bytes_transferred;
844 static void flush_compressed_data(QEMUFile *f)
846 int idx, len, thread_count;
848 if (!migrate_use_compression()) {
849 return;
851 thread_count = migrate_compress_threads();
852 for (idx = 0; idx < thread_count; idx++) {
853 if (!comp_param[idx].done) {
854 qemu_mutex_lock(comp_done_lock);
855 while (!comp_param[idx].done && !quit_comp_thread) {
856 qemu_cond_wait(comp_done_cond, comp_done_lock);
858 qemu_mutex_unlock(comp_done_lock);
860 if (!quit_comp_thread) {
861 len = qemu_put_qemu_file(f, comp_param[idx].file);
862 bytes_transferred += len;
867 static inline void set_compress_params(CompressParam *param, RAMBlock *block,
868 ram_addr_t offset)
870 param->block = block;
871 param->offset = offset;
874 static int compress_page_with_multi_thread(QEMUFile *f, RAMBlock *block,
875 ram_addr_t offset,
876 uint64_t *bytes_transferred)
878 int idx, thread_count, bytes_xmit = -1, pages = -1;
880 thread_count = migrate_compress_threads();
881 qemu_mutex_lock(comp_done_lock);
882 while (true) {
883 for (idx = 0; idx < thread_count; idx++) {
884 if (comp_param[idx].done) {
885 bytes_xmit = qemu_put_qemu_file(f, comp_param[idx].file);
886 set_compress_params(&comp_param[idx], block, offset);
887 start_compression(&comp_param[idx]);
888 pages = 1;
889 acct_info.norm_pages++;
890 *bytes_transferred += bytes_xmit;
891 break;
894 if (pages > 0) {
895 break;
896 } else {
897 qemu_cond_wait(comp_done_cond, comp_done_lock);
900 qemu_mutex_unlock(comp_done_lock);
902 return pages;
906 * ram_save_compressed_page: compress the given page and send it to the stream
908 * Returns: Number of pages written.
910 * @f: QEMUFile where to send the data
911 * @block: block that contains the page we want to send
912 * @offset: offset inside the block for the page
913 * @last_stage: if we are at the completion stage
914 * @bytes_transferred: increase it with the number of transferred bytes
916 static int ram_save_compressed_page(QEMUFile *f, PageSearchStatus *pss,
917 bool last_stage,
918 uint64_t *bytes_transferred)
920 int pages = -1;
921 uint64_t bytes_xmit;
922 uint8_t *p;
923 int ret;
924 RAMBlock *block = pss->block;
925 ram_addr_t offset = pss->offset;
927 p = block->host + offset;
929 bytes_xmit = 0;
930 ret = ram_control_save_page(f, block->offset,
931 offset, TARGET_PAGE_SIZE, &bytes_xmit);
932 if (bytes_xmit) {
933 *bytes_transferred += bytes_xmit;
934 pages = 1;
936 if (block == last_sent_block) {
937 offset |= RAM_SAVE_FLAG_CONTINUE;
939 if (ret != RAM_SAVE_CONTROL_NOT_SUPP) {
940 if (ret != RAM_SAVE_CONTROL_DELAYED) {
941 if (bytes_xmit > 0) {
942 acct_info.norm_pages++;
943 } else if (bytes_xmit == 0) {
944 acct_info.dup_pages++;
947 } else {
948 /* When starting the process of a new block, the first page of
949 * the block should be sent out before other pages in the same
950 * block, and all the pages in last block should have been sent
951 * out, keeping this order is important, because the 'cont' flag
952 * is used to avoid resending the block name.
954 if (block != last_sent_block) {
955 flush_compressed_data(f);
956 pages = save_zero_page(f, block, offset, p, bytes_transferred);
957 if (pages == -1) {
958 set_compress_params(&comp_param[0], block, offset);
959 /* Use the qemu thread to compress the data to make sure the
960 * first page is sent out before other pages
962 bytes_xmit = do_compress_ram_page(&comp_param[0]);
963 acct_info.norm_pages++;
964 qemu_put_qemu_file(f, comp_param[0].file);
965 *bytes_transferred += bytes_xmit;
966 pages = 1;
968 } else {
969 pages = save_zero_page(f, block, offset, p, bytes_transferred);
970 if (pages == -1) {
971 pages = compress_page_with_multi_thread(f, block, offset,
972 bytes_transferred);
977 return pages;
981 * Find the next dirty page and update any state associated with
982 * the search process.
984 * Returns: True if a page is found
986 * @f: Current migration stream.
987 * @pss: Data about the state of the current dirty page scan.
988 * @*again: Set to false if the search has scanned the whole of RAM
989 * *ram_addr_abs: Pointer into which to store the address of the dirty page
990 * within the global ram_addr space
992 static bool find_dirty_block(QEMUFile *f, PageSearchStatus *pss,
993 bool *again, ram_addr_t *ram_addr_abs)
995 pss->offset = migration_bitmap_find_dirty(pss->block, pss->offset,
996 ram_addr_abs);
997 if (pss->complete_round && pss->block == last_seen_block &&
998 pss->offset >= last_offset) {
1000 * We've been once around the RAM and haven't found anything.
1001 * Give up.
1003 *again = false;
1004 return false;
1006 if (pss->offset >= pss->block->used_length) {
1007 /* Didn't find anything in this RAM Block */
1008 pss->offset = 0;
1009 pss->block = QLIST_NEXT_RCU(pss->block, next);
1010 if (!pss->block) {
1011 /* Hit the end of the list */
1012 pss->block = QLIST_FIRST_RCU(&ram_list.blocks);
1013 /* Flag that we've looped */
1014 pss->complete_round = true;
1015 ram_bulk_stage = false;
1016 if (migrate_use_xbzrle()) {
1017 /* If xbzrle is on, stop using the data compression at this
1018 * point. In theory, xbzrle can do better than compression.
1020 flush_compressed_data(f);
1021 compression_switch = false;
1024 /* Didn't find anything this time, but try again on the new block */
1025 *again = true;
1026 return false;
1027 } else {
1028 /* Can go around again, but... */
1029 *again = true;
1030 /* We've found something so probably don't need to */
1031 return true;
1036 * Helper for 'get_queued_page' - gets a page off the queue
1037 * ms: MigrationState in
1038 * *offset: Used to return the offset within the RAMBlock
1039 * ram_addr_abs: global offset in the dirty/sent bitmaps
1041 * Returns: block (or NULL if none available)
1043 static RAMBlock *unqueue_page(MigrationState *ms, ram_addr_t *offset,
1044 ram_addr_t *ram_addr_abs)
1046 RAMBlock *block = NULL;
1048 qemu_mutex_lock(&ms->src_page_req_mutex);
1049 if (!QSIMPLEQ_EMPTY(&ms->src_page_requests)) {
1050 struct MigrationSrcPageRequest *entry =
1051 QSIMPLEQ_FIRST(&ms->src_page_requests);
1052 block = entry->rb;
1053 *offset = entry->offset;
1054 *ram_addr_abs = (entry->offset + entry->rb->offset) &
1055 TARGET_PAGE_MASK;
1057 if (entry->len > TARGET_PAGE_SIZE) {
1058 entry->len -= TARGET_PAGE_SIZE;
1059 entry->offset += TARGET_PAGE_SIZE;
1060 } else {
1061 memory_region_unref(block->mr);
1062 QSIMPLEQ_REMOVE_HEAD(&ms->src_page_requests, next_req);
1063 g_free(entry);
1066 qemu_mutex_unlock(&ms->src_page_req_mutex);
1068 return block;
1072 * Unqueue a page from the queue fed by postcopy page requests; skips pages
1073 * that are already sent (!dirty)
1075 * ms: MigrationState in
1076 * pss: PageSearchStatus structure updated with found block/offset
1077 * ram_addr_abs: global offset in the dirty/sent bitmaps
1079 * Returns: true if a queued page is found
1081 static bool get_queued_page(MigrationState *ms, PageSearchStatus *pss,
1082 ram_addr_t *ram_addr_abs)
1084 RAMBlock *block;
1085 ram_addr_t offset;
1086 bool dirty;
1088 do {
1089 block = unqueue_page(ms, &offset, ram_addr_abs);
1091 * We're sending this page, and since it's postcopy nothing else
1092 * will dirty it, and we must make sure it doesn't get sent again
1093 * even if this queue request was received after the background
1094 * search already sent it.
1096 if (block) {
1097 unsigned long *bitmap;
1098 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1099 dirty = test_bit(*ram_addr_abs >> TARGET_PAGE_BITS, bitmap);
1100 if (!dirty) {
1101 trace_get_queued_page_not_dirty(
1102 block->idstr, (uint64_t)offset,
1103 (uint64_t)*ram_addr_abs,
1104 test_bit(*ram_addr_abs >> TARGET_PAGE_BITS,
1105 atomic_rcu_read(&migration_bitmap_rcu)->unsentmap));
1106 } else {
1107 trace_get_queued_page(block->idstr,
1108 (uint64_t)offset,
1109 (uint64_t)*ram_addr_abs);
1113 } while (block && !dirty);
1115 if (block) {
1117 * As soon as we start servicing pages out of order, then we have
1118 * to kill the bulk stage, since the bulk stage assumes
1119 * in (migration_bitmap_find_and_reset_dirty) that every page is
1120 * dirty, that's no longer true.
1122 ram_bulk_stage = false;
1125 * We want the background search to continue from the queued page
1126 * since the guest is likely to want other pages near to the page
1127 * it just requested.
1129 pss->block = block;
1130 pss->offset = offset;
1133 return !!block;
1137 * flush_page_queue: Flush any remaining pages in the ram request queue
1138 * it should be empty at the end anyway, but in error cases there may be
1139 * some left.
1141 * ms: MigrationState
1143 void flush_page_queue(MigrationState *ms)
1145 struct MigrationSrcPageRequest *mspr, *next_mspr;
1146 /* This queue generally should be empty - but in the case of a failed
1147 * migration might have some droppings in.
1149 rcu_read_lock();
1150 QSIMPLEQ_FOREACH_SAFE(mspr, &ms->src_page_requests, next_req, next_mspr) {
1151 memory_region_unref(mspr->rb->mr);
1152 QSIMPLEQ_REMOVE_HEAD(&ms->src_page_requests, next_req);
1153 g_free(mspr);
1155 rcu_read_unlock();
1159 * Queue the pages for transmission, e.g. a request from postcopy destination
1160 * ms: MigrationStatus in which the queue is held
1161 * rbname: The RAMBlock the request is for - may be NULL (to mean reuse last)
1162 * start: Offset from the start of the RAMBlock
1163 * len: Length (in bytes) to send
1164 * Return: 0 on success
1166 int ram_save_queue_pages(MigrationState *ms, const char *rbname,
1167 ram_addr_t start, ram_addr_t len)
1169 RAMBlock *ramblock;
1171 rcu_read_lock();
1172 if (!rbname) {
1173 /* Reuse last RAMBlock */
1174 ramblock = ms->last_req_rb;
1176 if (!ramblock) {
1178 * Shouldn't happen, we can't reuse the last RAMBlock if
1179 * it's the 1st request.
1181 error_report("ram_save_queue_pages no previous block");
1182 goto err;
1184 } else {
1185 ramblock = qemu_ram_block_by_name(rbname);
1187 if (!ramblock) {
1188 /* We shouldn't be asked for a non-existent RAMBlock */
1189 error_report("ram_save_queue_pages no block '%s'", rbname);
1190 goto err;
1192 ms->last_req_rb = ramblock;
1194 trace_ram_save_queue_pages(ramblock->idstr, start, len);
1195 if (start+len > ramblock->used_length) {
1196 error_report("%s request overrun start=" RAM_ADDR_FMT " len="
1197 RAM_ADDR_FMT " blocklen=" RAM_ADDR_FMT,
1198 __func__, start, len, ramblock->used_length);
1199 goto err;
1202 struct MigrationSrcPageRequest *new_entry =
1203 g_malloc0(sizeof(struct MigrationSrcPageRequest));
1204 new_entry->rb = ramblock;
1205 new_entry->offset = start;
1206 new_entry->len = len;
1208 memory_region_ref(ramblock->mr);
1209 qemu_mutex_lock(&ms->src_page_req_mutex);
1210 QSIMPLEQ_INSERT_TAIL(&ms->src_page_requests, new_entry, next_req);
1211 qemu_mutex_unlock(&ms->src_page_req_mutex);
1212 rcu_read_unlock();
1214 return 0;
1216 err:
1217 rcu_read_unlock();
1218 return -1;
1222 * ram_save_target_page: Save one target page
1225 * @f: QEMUFile where to send the data
1226 * @block: pointer to block that contains the page we want to send
1227 * @offset: offset inside the block for the page;
1228 * @last_stage: if we are at the completion stage
1229 * @bytes_transferred: increase it with the number of transferred bytes
1230 * @dirty_ram_abs: Address of the start of the dirty page in ram_addr_t space
1232 * Returns: Number of pages written.
1234 static int ram_save_target_page(MigrationState *ms, QEMUFile *f,
1235 PageSearchStatus *pss,
1236 bool last_stage,
1237 uint64_t *bytes_transferred,
1238 ram_addr_t dirty_ram_abs)
1240 int res = 0;
1242 /* Check the pages is dirty and if it is send it */
1243 if (migration_bitmap_clear_dirty(dirty_ram_abs)) {
1244 unsigned long *unsentmap;
1245 if (compression_switch && migrate_use_compression()) {
1246 res = ram_save_compressed_page(f, pss,
1247 last_stage,
1248 bytes_transferred);
1249 } else {
1250 res = ram_save_page(f, pss, last_stage,
1251 bytes_transferred);
1254 if (res < 0) {
1255 return res;
1257 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1258 if (unsentmap) {
1259 clear_bit(dirty_ram_abs >> TARGET_PAGE_BITS, unsentmap);
1261 /* Only update last_sent_block if a block was actually sent; xbzrle
1262 * might have decided the page was identical so didn't bother writing
1263 * to the stream.
1265 if (res > 0) {
1266 last_sent_block = pss->block;
1270 return res;
1274 * ram_save_host_page: Starting at *offset send pages upto the end
1275 * of the current host page. It's valid for the initial
1276 * offset to point into the middle of a host page
1277 * in which case the remainder of the hostpage is sent.
1278 * Only dirty target pages are sent.
1280 * Returns: Number of pages written.
1282 * @f: QEMUFile where to send the data
1283 * @block: pointer to block that contains the page we want to send
1284 * @offset: offset inside the block for the page; updated to last target page
1285 * sent
1286 * @last_stage: if we are at the completion stage
1287 * @bytes_transferred: increase it with the number of transferred bytes
1288 * @dirty_ram_abs: Address of the start of the dirty page in ram_addr_t space
1290 static int ram_save_host_page(MigrationState *ms, QEMUFile *f,
1291 PageSearchStatus *pss,
1292 bool last_stage,
1293 uint64_t *bytes_transferred,
1294 ram_addr_t dirty_ram_abs)
1296 int tmppages, pages = 0;
1297 do {
1298 tmppages = ram_save_target_page(ms, f, pss, last_stage,
1299 bytes_transferred, dirty_ram_abs);
1300 if (tmppages < 0) {
1301 return tmppages;
1304 pages += tmppages;
1305 pss->offset += TARGET_PAGE_SIZE;
1306 dirty_ram_abs += TARGET_PAGE_SIZE;
1307 } while (pss->offset & (qemu_host_page_size - 1));
1309 /* The offset we leave with is the last one we looked at */
1310 pss->offset -= TARGET_PAGE_SIZE;
1311 return pages;
1315 * ram_find_and_save_block: Finds a dirty page and sends it to f
1317 * Called within an RCU critical section.
1319 * Returns: The number of pages written
1320 * 0 means no dirty pages
1322 * @f: QEMUFile where to send the data
1323 * @last_stage: if we are at the completion stage
1324 * @bytes_transferred: increase it with the number of transferred bytes
1326 * On systems where host-page-size > target-page-size it will send all the
1327 * pages in a host page that are dirty.
1330 static int ram_find_and_save_block(QEMUFile *f, bool last_stage,
1331 uint64_t *bytes_transferred)
1333 PageSearchStatus pss;
1334 MigrationState *ms = migrate_get_current();
1335 int pages = 0;
1336 bool again, found;
1337 ram_addr_t dirty_ram_abs; /* Address of the start of the dirty page in
1338 ram_addr_t space */
1340 pss.block = last_seen_block;
1341 pss.offset = last_offset;
1342 pss.complete_round = false;
1344 if (!pss.block) {
1345 pss.block = QLIST_FIRST_RCU(&ram_list.blocks);
1348 do {
1349 again = true;
1350 found = get_queued_page(ms, &pss, &dirty_ram_abs);
1352 if (!found) {
1353 /* priority queue empty, so just search for something dirty */
1354 found = find_dirty_block(f, &pss, &again, &dirty_ram_abs);
1357 if (found) {
1358 pages = ram_save_host_page(ms, f, &pss,
1359 last_stage, bytes_transferred,
1360 dirty_ram_abs);
1362 } while (!pages && again);
1364 last_seen_block = pss.block;
1365 last_offset = pss.offset;
1367 return pages;
1370 void acct_update_position(QEMUFile *f, size_t size, bool zero)
1372 uint64_t pages = size / TARGET_PAGE_SIZE;
1373 if (zero) {
1374 acct_info.dup_pages += pages;
1375 } else {
1376 acct_info.norm_pages += pages;
1377 bytes_transferred += size;
1378 qemu_update_position(f, size);
1382 static ram_addr_t ram_save_remaining(void)
1384 return migration_dirty_pages;
1387 uint64_t ram_bytes_remaining(void)
1389 return ram_save_remaining() * TARGET_PAGE_SIZE;
1392 uint64_t ram_bytes_transferred(void)
1394 return bytes_transferred;
1397 uint64_t ram_bytes_total(void)
1399 RAMBlock *block;
1400 uint64_t total = 0;
1402 rcu_read_lock();
1403 QLIST_FOREACH_RCU(block, &ram_list.blocks, next)
1404 total += block->used_length;
1405 rcu_read_unlock();
1406 return total;
1409 void free_xbzrle_decoded_buf(void)
1411 g_free(xbzrle_decoded_buf);
1412 xbzrle_decoded_buf = NULL;
1415 static void migration_bitmap_free(struct BitmapRcu *bmap)
1417 g_free(bmap->bmap);
1418 g_free(bmap->unsentmap);
1419 g_free(bmap);
1422 static void ram_migration_cleanup(void *opaque)
1424 /* caller have hold iothread lock or is in a bh, so there is
1425 * no writing race against this migration_bitmap
1427 struct BitmapRcu *bitmap = migration_bitmap_rcu;
1428 atomic_rcu_set(&migration_bitmap_rcu, NULL);
1429 if (bitmap) {
1430 memory_global_dirty_log_stop();
1431 call_rcu(bitmap, migration_bitmap_free, rcu);
1434 XBZRLE_cache_lock();
1435 if (XBZRLE.cache) {
1436 cache_fini(XBZRLE.cache);
1437 g_free(XBZRLE.encoded_buf);
1438 g_free(XBZRLE.current_buf);
1439 XBZRLE.cache = NULL;
1440 XBZRLE.encoded_buf = NULL;
1441 XBZRLE.current_buf = NULL;
1443 XBZRLE_cache_unlock();
1446 static void reset_ram_globals(void)
1448 last_seen_block = NULL;
1449 last_sent_block = NULL;
1450 last_offset = 0;
1451 last_version = ram_list.version;
1452 ram_bulk_stage = true;
1455 #define MAX_WAIT 50 /* ms, half buffered_file limit */
1457 void migration_bitmap_extend(ram_addr_t old, ram_addr_t new)
1459 /* called in qemu main thread, so there is
1460 * no writing race against this migration_bitmap
1462 if (migration_bitmap_rcu) {
1463 struct BitmapRcu *old_bitmap = migration_bitmap_rcu, *bitmap;
1464 bitmap = g_new(struct BitmapRcu, 1);
1465 bitmap->bmap = bitmap_new(new);
1467 /* prevent migration_bitmap content from being set bit
1468 * by migration_bitmap_sync_range() at the same time.
1469 * it is safe to migration if migration_bitmap is cleared bit
1470 * at the same time.
1472 qemu_mutex_lock(&migration_bitmap_mutex);
1473 bitmap_copy(bitmap->bmap, old_bitmap->bmap, old);
1474 bitmap_set(bitmap->bmap, old, new - old);
1476 /* We don't have a way to safely extend the sentmap
1477 * with RCU; so mark it as missing, entry to postcopy
1478 * will fail.
1480 bitmap->unsentmap = NULL;
1482 atomic_rcu_set(&migration_bitmap_rcu, bitmap);
1483 qemu_mutex_unlock(&migration_bitmap_mutex);
1484 migration_dirty_pages += new - old;
1485 call_rcu(old_bitmap, migration_bitmap_free, rcu);
1490 * 'expected' is the value you expect the bitmap mostly to be full
1491 * of; it won't bother printing lines that are all this value.
1492 * If 'todump' is null the migration bitmap is dumped.
1494 void ram_debug_dump_bitmap(unsigned long *todump, bool expected)
1496 int64_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS;
1498 int64_t cur;
1499 int64_t linelen = 128;
1500 char linebuf[129];
1502 if (!todump) {
1503 todump = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1506 for (cur = 0; cur < ram_pages; cur += linelen) {
1507 int64_t curb;
1508 bool found = false;
1510 * Last line; catch the case where the line length
1511 * is longer than remaining ram
1513 if (cur + linelen > ram_pages) {
1514 linelen = ram_pages - cur;
1516 for (curb = 0; curb < linelen; curb++) {
1517 bool thisbit = test_bit(cur + curb, todump);
1518 linebuf[curb] = thisbit ? '1' : '.';
1519 found = found || (thisbit != expected);
1521 if (found) {
1522 linebuf[curb] = '\0';
1523 fprintf(stderr, "0x%08" PRIx64 " : %s\n", cur, linebuf);
1528 /* **** functions for postcopy ***** */
1531 * Callback from postcopy_each_ram_send_discard for each RAMBlock
1532 * Note: At this point the 'unsentmap' is the processed bitmap combined
1533 * with the dirtymap; so a '1' means it's either dirty or unsent.
1534 * start,length: Indexes into the bitmap for the first bit
1535 * representing the named block and length in target-pages
1537 static int postcopy_send_discard_bm_ram(MigrationState *ms,
1538 PostcopyDiscardState *pds,
1539 unsigned long start,
1540 unsigned long length)
1542 unsigned long end = start + length; /* one after the end */
1543 unsigned long current;
1544 unsigned long *unsentmap;
1546 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1547 for (current = start; current < end; ) {
1548 unsigned long one = find_next_bit(unsentmap, end, current);
1550 if (one <= end) {
1551 unsigned long zero = find_next_zero_bit(unsentmap, end, one + 1);
1552 unsigned long discard_length;
1554 if (zero >= end) {
1555 discard_length = end - one;
1556 } else {
1557 discard_length = zero - one;
1559 postcopy_discard_send_range(ms, pds, one, discard_length);
1560 current = one + discard_length;
1561 } else {
1562 current = one;
1566 return 0;
1570 * Utility for the outgoing postcopy code.
1571 * Calls postcopy_send_discard_bm_ram for each RAMBlock
1572 * passing it bitmap indexes and name.
1573 * Returns: 0 on success
1574 * (qemu_ram_foreach_block ends up passing unscaled lengths
1575 * which would mean postcopy code would have to deal with target page)
1577 static int postcopy_each_ram_send_discard(MigrationState *ms)
1579 struct RAMBlock *block;
1580 int ret;
1582 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
1583 unsigned long first = block->offset >> TARGET_PAGE_BITS;
1584 PostcopyDiscardState *pds = postcopy_discard_send_init(ms,
1585 first,
1586 block->idstr);
1589 * Postcopy sends chunks of bitmap over the wire, but it
1590 * just needs indexes at this point, avoids it having
1591 * target page specific code.
1593 ret = postcopy_send_discard_bm_ram(ms, pds, first,
1594 block->used_length >> TARGET_PAGE_BITS);
1595 postcopy_discard_send_finish(ms, pds);
1596 if (ret) {
1597 return ret;
1601 return 0;
1605 * Helper for postcopy_chunk_hostpages; it's called twice to cleanup
1606 * the two bitmaps, that are similar, but one is inverted.
1608 * We search for runs of target-pages that don't start or end on a
1609 * host page boundary;
1610 * unsent_pass=true: Cleans up partially unsent host pages by searching
1611 * the unsentmap
1612 * unsent_pass=false: Cleans up partially dirty host pages by searching
1613 * the main migration bitmap
1616 static void postcopy_chunk_hostpages_pass(MigrationState *ms, bool unsent_pass,
1617 RAMBlock *block,
1618 PostcopyDiscardState *pds)
1620 unsigned long *bitmap;
1621 unsigned long *unsentmap;
1622 unsigned int host_ratio = qemu_host_page_size / TARGET_PAGE_SIZE;
1623 unsigned long first = block->offset >> TARGET_PAGE_BITS;
1624 unsigned long len = block->used_length >> TARGET_PAGE_BITS;
1625 unsigned long last = first + (len - 1);
1626 unsigned long run_start;
1628 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1629 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1631 if (unsent_pass) {
1632 /* Find a sent page */
1633 run_start = find_next_zero_bit(unsentmap, last + 1, first);
1634 } else {
1635 /* Find a dirty page */
1636 run_start = find_next_bit(bitmap, last + 1, first);
1639 while (run_start <= last) {
1640 bool do_fixup = false;
1641 unsigned long fixup_start_addr;
1642 unsigned long host_offset;
1645 * If the start of this run of pages is in the middle of a host
1646 * page, then we need to fixup this host page.
1648 host_offset = run_start % host_ratio;
1649 if (host_offset) {
1650 do_fixup = true;
1651 run_start -= host_offset;
1652 fixup_start_addr = run_start;
1653 /* For the next pass */
1654 run_start = run_start + host_ratio;
1655 } else {
1656 /* Find the end of this run */
1657 unsigned long run_end;
1658 if (unsent_pass) {
1659 run_end = find_next_bit(unsentmap, last + 1, run_start + 1);
1660 } else {
1661 run_end = find_next_zero_bit(bitmap, last + 1, run_start + 1);
1664 * If the end isn't at the start of a host page, then the
1665 * run doesn't finish at the end of a host page
1666 * and we need to discard.
1668 host_offset = run_end % host_ratio;
1669 if (host_offset) {
1670 do_fixup = true;
1671 fixup_start_addr = run_end - host_offset;
1673 * This host page has gone, the next loop iteration starts
1674 * from after the fixup
1676 run_start = fixup_start_addr + host_ratio;
1677 } else {
1679 * No discards on this iteration, next loop starts from
1680 * next sent/dirty page
1682 run_start = run_end + 1;
1686 if (do_fixup) {
1687 unsigned long page;
1689 /* Tell the destination to discard this page */
1690 if (unsent_pass || !test_bit(fixup_start_addr, unsentmap)) {
1691 /* For the unsent_pass we:
1692 * discard partially sent pages
1693 * For the !unsent_pass (dirty) we:
1694 * discard partially dirty pages that were sent
1695 * (any partially sent pages were already discarded
1696 * by the previous unsent_pass)
1698 postcopy_discard_send_range(ms, pds, fixup_start_addr,
1699 host_ratio);
1702 /* Clean up the bitmap */
1703 for (page = fixup_start_addr;
1704 page < fixup_start_addr + host_ratio; page++) {
1705 /* All pages in this host page are now not sent */
1706 set_bit(page, unsentmap);
1709 * Remark them as dirty, updating the count for any pages
1710 * that weren't previously dirty.
1712 migration_dirty_pages += !test_and_set_bit(page, bitmap);
1716 if (unsent_pass) {
1717 /* Find the next sent page for the next iteration */
1718 run_start = find_next_zero_bit(unsentmap, last + 1,
1719 run_start);
1720 } else {
1721 /* Find the next dirty page for the next iteration */
1722 run_start = find_next_bit(bitmap, last + 1, run_start);
1728 * Utility for the outgoing postcopy code.
1730 * Discard any partially sent host-page size chunks, mark any partially
1731 * dirty host-page size chunks as all dirty.
1733 * Returns: 0 on success
1735 static int postcopy_chunk_hostpages(MigrationState *ms)
1737 struct RAMBlock *block;
1739 if (qemu_host_page_size == TARGET_PAGE_SIZE) {
1740 /* Easy case - TPS==HPS - nothing to be done */
1741 return 0;
1744 /* Easiest way to make sure we don't resume in the middle of a host-page */
1745 last_seen_block = NULL;
1746 last_sent_block = NULL;
1747 last_offset = 0;
1749 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
1750 unsigned long first = block->offset >> TARGET_PAGE_BITS;
1752 PostcopyDiscardState *pds =
1753 postcopy_discard_send_init(ms, first, block->idstr);
1755 /* First pass: Discard all partially sent host pages */
1756 postcopy_chunk_hostpages_pass(ms, true, block, pds);
1758 * Second pass: Ensure that all partially dirty host pages are made
1759 * fully dirty.
1761 postcopy_chunk_hostpages_pass(ms, false, block, pds);
1763 postcopy_discard_send_finish(ms, pds);
1764 } /* ram_list loop */
1766 return 0;
1770 * Transmit the set of pages to be discarded after precopy to the target
1771 * these are pages that:
1772 * a) Have been previously transmitted but are now dirty again
1773 * b) Pages that have never been transmitted, this ensures that
1774 * any pages on the destination that have been mapped by background
1775 * tasks get discarded (transparent huge pages is the specific concern)
1776 * Hopefully this is pretty sparse
1778 int ram_postcopy_send_discard_bitmap(MigrationState *ms)
1780 int ret;
1781 unsigned long *bitmap, *unsentmap;
1783 rcu_read_lock();
1785 /* This should be our last sync, the src is now paused */
1786 migration_bitmap_sync();
1788 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1789 if (!unsentmap) {
1790 /* We don't have a safe way to resize the sentmap, so
1791 * if the bitmap was resized it will be NULL at this
1792 * point.
1794 error_report("migration ram resized during precopy phase");
1795 rcu_read_unlock();
1796 return -EINVAL;
1799 /* Deal with TPS != HPS */
1800 ret = postcopy_chunk_hostpages(ms);
1801 if (ret) {
1802 rcu_read_unlock();
1803 return ret;
1807 * Update the unsentmap to be unsentmap = unsentmap | dirty
1809 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1810 bitmap_or(unsentmap, unsentmap, bitmap,
1811 last_ram_offset() >> TARGET_PAGE_BITS);
1814 trace_ram_postcopy_send_discard_bitmap();
1815 #ifdef DEBUG_POSTCOPY
1816 ram_debug_dump_bitmap(unsentmap, true);
1817 #endif
1819 ret = postcopy_each_ram_send_discard(ms);
1820 rcu_read_unlock();
1822 return ret;
1826 * At the start of the postcopy phase of migration, any now-dirty
1827 * precopied pages are discarded.
1829 * start, length describe a byte address range within the RAMBlock
1831 * Returns 0 on success.
1833 int ram_discard_range(MigrationIncomingState *mis,
1834 const char *block_name,
1835 uint64_t start, size_t length)
1837 int ret = -1;
1839 rcu_read_lock();
1840 RAMBlock *rb = qemu_ram_block_by_name(block_name);
1842 if (!rb) {
1843 error_report("ram_discard_range: Failed to find block '%s'",
1844 block_name);
1845 goto err;
1848 uint8_t *host_startaddr = rb->host + start;
1850 if ((uintptr_t)host_startaddr & (qemu_host_page_size - 1)) {
1851 error_report("ram_discard_range: Unaligned start address: %p",
1852 host_startaddr);
1853 goto err;
1856 if ((start + length) <= rb->used_length) {
1857 uint8_t *host_endaddr = host_startaddr + length;
1858 if ((uintptr_t)host_endaddr & (qemu_host_page_size - 1)) {
1859 error_report("ram_discard_range: Unaligned end address: %p",
1860 host_endaddr);
1861 goto err;
1863 ret = postcopy_ram_discard_range(mis, host_startaddr, length);
1864 } else {
1865 error_report("ram_discard_range: Overrun block '%s' (%" PRIu64
1866 "/%zx/" RAM_ADDR_FMT")",
1867 block_name, start, length, rb->used_length);
1870 err:
1871 rcu_read_unlock();
1873 return ret;
1877 /* Each of ram_save_setup, ram_save_iterate and ram_save_complete has
1878 * long-running RCU critical section. When rcu-reclaims in the code
1879 * start to become numerous it will be necessary to reduce the
1880 * granularity of these critical sections.
1883 static int ram_save_setup(QEMUFile *f, void *opaque)
1885 RAMBlock *block;
1886 int64_t ram_bitmap_pages; /* Size of bitmap in pages, including gaps */
1888 dirty_rate_high_cnt = 0;
1889 bitmap_sync_count = 0;
1890 migration_bitmap_sync_init();
1891 qemu_mutex_init(&migration_bitmap_mutex);
1893 if (migrate_use_xbzrle()) {
1894 XBZRLE_cache_lock();
1895 XBZRLE.cache = cache_init(migrate_xbzrle_cache_size() /
1896 TARGET_PAGE_SIZE,
1897 TARGET_PAGE_SIZE);
1898 if (!XBZRLE.cache) {
1899 XBZRLE_cache_unlock();
1900 error_report("Error creating cache");
1901 return -1;
1903 XBZRLE_cache_unlock();
1905 /* We prefer not to abort if there is no memory */
1906 XBZRLE.encoded_buf = g_try_malloc0(TARGET_PAGE_SIZE);
1907 if (!XBZRLE.encoded_buf) {
1908 error_report("Error allocating encoded_buf");
1909 return -1;
1912 XBZRLE.current_buf = g_try_malloc(TARGET_PAGE_SIZE);
1913 if (!XBZRLE.current_buf) {
1914 error_report("Error allocating current_buf");
1915 g_free(XBZRLE.encoded_buf);
1916 XBZRLE.encoded_buf = NULL;
1917 return -1;
1920 acct_clear();
1923 qemu_mutex_lock_ramlist();
1924 rcu_read_lock();
1925 bytes_transferred = 0;
1926 reset_ram_globals();
1928 ram_bitmap_pages = last_ram_offset() >> TARGET_PAGE_BITS;
1929 migration_bitmap_rcu = g_new0(struct BitmapRcu, 1);
1930 migration_bitmap_rcu->bmap = bitmap_new(ram_bitmap_pages);
1931 bitmap_set(migration_bitmap_rcu->bmap, 0, ram_bitmap_pages);
1933 if (migrate_postcopy_ram()) {
1934 migration_bitmap_rcu->unsentmap = bitmap_new(ram_bitmap_pages);
1935 bitmap_set(migration_bitmap_rcu->unsentmap, 0, ram_bitmap_pages);
1939 * Count the total number of pages used by ram blocks not including any
1940 * gaps due to alignment or unplugs.
1942 migration_dirty_pages = ram_bytes_total() >> TARGET_PAGE_BITS;
1944 memory_global_dirty_log_start();
1945 migration_bitmap_sync();
1946 qemu_mutex_unlock_ramlist();
1948 qemu_put_be64(f, ram_bytes_total() | RAM_SAVE_FLAG_MEM_SIZE);
1950 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
1951 qemu_put_byte(f, strlen(block->idstr));
1952 qemu_put_buffer(f, (uint8_t *)block->idstr, strlen(block->idstr));
1953 qemu_put_be64(f, block->used_length);
1956 rcu_read_unlock();
1958 ram_control_before_iterate(f, RAM_CONTROL_SETUP);
1959 ram_control_after_iterate(f, RAM_CONTROL_SETUP);
1961 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
1963 return 0;
1966 static int ram_save_iterate(QEMUFile *f, void *opaque)
1968 int ret;
1969 int i;
1970 int64_t t0;
1971 int pages_sent = 0;
1973 rcu_read_lock();
1974 if (ram_list.version != last_version) {
1975 reset_ram_globals();
1978 /* Read version before ram_list.blocks */
1979 smp_rmb();
1981 ram_control_before_iterate(f, RAM_CONTROL_ROUND);
1983 t0 = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
1984 i = 0;
1985 while ((ret = qemu_file_rate_limit(f)) == 0) {
1986 int pages;
1988 pages = ram_find_and_save_block(f, false, &bytes_transferred);
1989 /* no more pages to sent */
1990 if (pages == 0) {
1991 break;
1993 pages_sent += pages;
1994 acct_info.iterations++;
1996 /* we want to check in the 1st loop, just in case it was the 1st time
1997 and we had to sync the dirty bitmap.
1998 qemu_get_clock_ns() is a bit expensive, so we only check each some
1999 iterations
2001 if ((i & 63) == 0) {
2002 uint64_t t1 = (qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - t0) / 1000000;
2003 if (t1 > MAX_WAIT) {
2004 DPRINTF("big wait: %" PRIu64 " milliseconds, %d iterations\n",
2005 t1, i);
2006 break;
2009 i++;
2011 flush_compressed_data(f);
2012 rcu_read_unlock();
2015 * Must occur before EOS (or any QEMUFile operation)
2016 * because of RDMA protocol.
2018 ram_control_after_iterate(f, RAM_CONTROL_ROUND);
2020 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
2021 bytes_transferred += 8;
2023 ret = qemu_file_get_error(f);
2024 if (ret < 0) {
2025 return ret;
2028 return pages_sent;
2031 /* Called with iothread lock */
2032 static int ram_save_complete(QEMUFile *f, void *opaque)
2034 rcu_read_lock();
2036 if (!migration_in_postcopy(migrate_get_current())) {
2037 migration_bitmap_sync();
2040 ram_control_before_iterate(f, RAM_CONTROL_FINISH);
2042 /* try transferring iterative blocks of memory */
2044 /* flush all remaining blocks regardless of rate limiting */
2045 while (true) {
2046 int pages;
2048 pages = ram_find_and_save_block(f, true, &bytes_transferred);
2049 /* no more blocks to sent */
2050 if (pages == 0) {
2051 break;
2055 flush_compressed_data(f);
2056 ram_control_after_iterate(f, RAM_CONTROL_FINISH);
2058 rcu_read_unlock();
2060 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
2062 return 0;
2065 static void ram_save_pending(QEMUFile *f, void *opaque, uint64_t max_size,
2066 uint64_t *non_postcopiable_pending,
2067 uint64_t *postcopiable_pending)
2069 uint64_t remaining_size;
2071 remaining_size = ram_save_remaining() * TARGET_PAGE_SIZE;
2073 if (!migration_in_postcopy(migrate_get_current()) &&
2074 remaining_size < max_size) {
2075 qemu_mutex_lock_iothread();
2076 rcu_read_lock();
2077 migration_bitmap_sync();
2078 rcu_read_unlock();
2079 qemu_mutex_unlock_iothread();
2080 remaining_size = ram_save_remaining() * TARGET_PAGE_SIZE;
2083 /* We can do postcopy, and all the data is postcopiable */
2084 *postcopiable_pending += remaining_size;
2087 static int load_xbzrle(QEMUFile *f, ram_addr_t addr, void *host)
2089 unsigned int xh_len;
2090 int xh_flags;
2091 uint8_t *loaded_data;
2093 if (!xbzrle_decoded_buf) {
2094 xbzrle_decoded_buf = g_malloc(TARGET_PAGE_SIZE);
2096 loaded_data = xbzrle_decoded_buf;
2098 /* extract RLE header */
2099 xh_flags = qemu_get_byte(f);
2100 xh_len = qemu_get_be16(f);
2102 if (xh_flags != ENCODING_FLAG_XBZRLE) {
2103 error_report("Failed to load XBZRLE page - wrong compression!");
2104 return -1;
2107 if (xh_len > TARGET_PAGE_SIZE) {
2108 error_report("Failed to load XBZRLE page - len overflow!");
2109 return -1;
2111 /* load data and decode */
2112 qemu_get_buffer_in_place(f, &loaded_data, xh_len);
2114 /* decode RLE */
2115 if (xbzrle_decode_buffer(loaded_data, xh_len, host,
2116 TARGET_PAGE_SIZE) == -1) {
2117 error_report("Failed to load XBZRLE page - decode error!");
2118 return -1;
2121 return 0;
2124 /* Must be called from within a rcu critical section.
2125 * Returns a pointer from within the RCU-protected ram_list.
2128 * Read a RAMBlock ID from the stream f.
2130 * f: Stream to read from
2131 * flags: Page flags (mostly to see if it's a continuation of previous block)
2133 static inline RAMBlock *ram_block_from_stream(QEMUFile *f,
2134 int flags)
2136 static RAMBlock *block = NULL;
2137 char id[256];
2138 uint8_t len;
2140 if (flags & RAM_SAVE_FLAG_CONTINUE) {
2141 if (!block) {
2142 error_report("Ack, bad migration stream!");
2143 return NULL;
2145 return block;
2148 len = qemu_get_byte(f);
2149 qemu_get_buffer(f, (uint8_t *)id, len);
2150 id[len] = 0;
2152 block = qemu_ram_block_by_name(id);
2153 if (!block) {
2154 error_report("Can't find block %s", id);
2155 return NULL;
2158 return block;
2161 static inline void *host_from_ram_block_offset(RAMBlock *block,
2162 ram_addr_t offset)
2164 if (!offset_in_ramblock(block, offset)) {
2165 return NULL;
2168 return block->host + offset;
2172 * If a page (or a whole RDMA chunk) has been
2173 * determined to be zero, then zap it.
2175 void ram_handle_compressed(void *host, uint8_t ch, uint64_t size)
2177 if (ch != 0 || !is_zero_range(host, size)) {
2178 memset(host, ch, size);
2182 static void *do_data_decompress(void *opaque)
2184 DecompressParam *param = opaque;
2185 unsigned long pagesize;
2187 while (!quit_decomp_thread) {
2188 qemu_mutex_lock(&param->mutex);
2189 while (!param->start && !quit_decomp_thread) {
2190 qemu_cond_wait(&param->cond, &param->mutex);
2191 pagesize = TARGET_PAGE_SIZE;
2192 if (!quit_decomp_thread) {
2193 /* uncompress() will return failed in some case, especially
2194 * when the page is dirted when doing the compression, it's
2195 * not a problem because the dirty page will be retransferred
2196 * and uncompress() won't break the data in other pages.
2198 uncompress((Bytef *)param->des, &pagesize,
2199 (const Bytef *)param->compbuf, param->len);
2201 param->start = false;
2203 qemu_mutex_unlock(&param->mutex);
2206 return NULL;
2209 void migrate_decompress_threads_create(void)
2211 int i, thread_count;
2213 thread_count = migrate_decompress_threads();
2214 decompress_threads = g_new0(QemuThread, thread_count);
2215 decomp_param = g_new0(DecompressParam, thread_count);
2216 quit_decomp_thread = false;
2217 for (i = 0; i < thread_count; i++) {
2218 qemu_mutex_init(&decomp_param[i].mutex);
2219 qemu_cond_init(&decomp_param[i].cond);
2220 decomp_param[i].compbuf = g_malloc0(compressBound(TARGET_PAGE_SIZE));
2221 qemu_thread_create(decompress_threads + i, "decompress",
2222 do_data_decompress, decomp_param + i,
2223 QEMU_THREAD_JOINABLE);
2227 void migrate_decompress_threads_join(void)
2229 int i, thread_count;
2231 quit_decomp_thread = true;
2232 thread_count = migrate_decompress_threads();
2233 for (i = 0; i < thread_count; i++) {
2234 qemu_mutex_lock(&decomp_param[i].mutex);
2235 qemu_cond_signal(&decomp_param[i].cond);
2236 qemu_mutex_unlock(&decomp_param[i].mutex);
2238 for (i = 0; i < thread_count; i++) {
2239 qemu_thread_join(decompress_threads + i);
2240 qemu_mutex_destroy(&decomp_param[i].mutex);
2241 qemu_cond_destroy(&decomp_param[i].cond);
2242 g_free(decomp_param[i].compbuf);
2244 g_free(decompress_threads);
2245 g_free(decomp_param);
2246 decompress_threads = NULL;
2247 decomp_param = NULL;
2250 static void decompress_data_with_multi_threads(QEMUFile *f,
2251 void *host, int len)
2253 int idx, thread_count;
2255 thread_count = migrate_decompress_threads();
2256 while (true) {
2257 for (idx = 0; idx < thread_count; idx++) {
2258 if (!decomp_param[idx].start) {
2259 qemu_get_buffer(f, decomp_param[idx].compbuf, len);
2260 decomp_param[idx].des = host;
2261 decomp_param[idx].len = len;
2262 start_decompression(&decomp_param[idx]);
2263 break;
2266 if (idx < thread_count) {
2267 break;
2273 * Allocate data structures etc needed by incoming migration with postcopy-ram
2274 * postcopy-ram's similarly names postcopy_ram_incoming_init does the work
2276 int ram_postcopy_incoming_init(MigrationIncomingState *mis)
2278 size_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS;
2280 return postcopy_ram_incoming_init(mis, ram_pages);
2284 * Called in postcopy mode by ram_load().
2285 * rcu_read_lock is taken prior to this being called.
2287 static int ram_load_postcopy(QEMUFile *f)
2289 int flags = 0, ret = 0;
2290 bool place_needed = false;
2291 bool matching_page_sizes = qemu_host_page_size == TARGET_PAGE_SIZE;
2292 MigrationIncomingState *mis = migration_incoming_get_current();
2293 /* Temporary page that is later 'placed' */
2294 void *postcopy_host_page = postcopy_get_tmp_page(mis);
2295 void *last_host = NULL;
2296 bool all_zero = false;
2298 while (!ret && !(flags & RAM_SAVE_FLAG_EOS)) {
2299 ram_addr_t addr;
2300 void *host = NULL;
2301 void *page_buffer = NULL;
2302 void *place_source = NULL;
2303 uint8_t ch;
2305 addr = qemu_get_be64(f);
2306 flags = addr & ~TARGET_PAGE_MASK;
2307 addr &= TARGET_PAGE_MASK;
2309 trace_ram_load_postcopy_loop((uint64_t)addr, flags);
2310 place_needed = false;
2311 if (flags & (RAM_SAVE_FLAG_COMPRESS | RAM_SAVE_FLAG_PAGE)) {
2312 RAMBlock *block = ram_block_from_stream(f, flags);
2314 host = host_from_ram_block_offset(block, addr);
2315 if (!host) {
2316 error_report("Illegal RAM offset " RAM_ADDR_FMT, addr);
2317 ret = -EINVAL;
2318 break;
2320 page_buffer = host;
2322 * Postcopy requires that we place whole host pages atomically.
2323 * To make it atomic, the data is read into a temporary page
2324 * that's moved into place later.
2325 * The migration protocol uses, possibly smaller, target-pages
2326 * however the source ensures it always sends all the components
2327 * of a host page in order.
2329 page_buffer = postcopy_host_page +
2330 ((uintptr_t)host & ~qemu_host_page_mask);
2331 /* If all TP are zero then we can optimise the place */
2332 if (!((uintptr_t)host & ~qemu_host_page_mask)) {
2333 all_zero = true;
2334 } else {
2335 /* not the 1st TP within the HP */
2336 if (host != (last_host + TARGET_PAGE_SIZE)) {
2337 error_report("Non-sequential target page %p/%p",
2338 host, last_host);
2339 ret = -EINVAL;
2340 break;
2346 * If it's the last part of a host page then we place the host
2347 * page
2349 place_needed = (((uintptr_t)host + TARGET_PAGE_SIZE) &
2350 ~qemu_host_page_mask) == 0;
2351 place_source = postcopy_host_page;
2353 last_host = host;
2355 switch (flags & ~RAM_SAVE_FLAG_CONTINUE) {
2356 case RAM_SAVE_FLAG_COMPRESS:
2357 ch = qemu_get_byte(f);
2358 memset(page_buffer, ch, TARGET_PAGE_SIZE);
2359 if (ch) {
2360 all_zero = false;
2362 break;
2364 case RAM_SAVE_FLAG_PAGE:
2365 all_zero = false;
2366 if (!place_needed || !matching_page_sizes) {
2367 qemu_get_buffer(f, page_buffer, TARGET_PAGE_SIZE);
2368 } else {
2369 /* Avoids the qemu_file copy during postcopy, which is
2370 * going to do a copy later; can only do it when we
2371 * do this read in one go (matching page sizes)
2373 qemu_get_buffer_in_place(f, (uint8_t **)&place_source,
2374 TARGET_PAGE_SIZE);
2376 break;
2377 case RAM_SAVE_FLAG_EOS:
2378 /* normal exit */
2379 break;
2380 default:
2381 error_report("Unknown combination of migration flags: %#x"
2382 " (postcopy mode)", flags);
2383 ret = -EINVAL;
2386 if (place_needed) {
2387 /* This gets called at the last target page in the host page */
2388 if (all_zero) {
2389 ret = postcopy_place_page_zero(mis,
2390 host + TARGET_PAGE_SIZE -
2391 qemu_host_page_size);
2392 } else {
2393 ret = postcopy_place_page(mis, host + TARGET_PAGE_SIZE -
2394 qemu_host_page_size,
2395 place_source);
2398 if (!ret) {
2399 ret = qemu_file_get_error(f);
2403 return ret;
2406 static int ram_load(QEMUFile *f, void *opaque, int version_id)
2408 int flags = 0, ret = 0;
2409 static uint64_t seq_iter;
2410 int len = 0;
2412 * If system is running in postcopy mode, page inserts to host memory must
2413 * be atomic
2415 bool postcopy_running = postcopy_state_get() >= POSTCOPY_INCOMING_LISTENING;
2417 seq_iter++;
2419 if (version_id != 4) {
2420 ret = -EINVAL;
2423 /* This RCU critical section can be very long running.
2424 * When RCU reclaims in the code start to become numerous,
2425 * it will be necessary to reduce the granularity of this
2426 * critical section.
2428 rcu_read_lock();
2430 if (postcopy_running) {
2431 ret = ram_load_postcopy(f);
2434 while (!postcopy_running && !ret && !(flags & RAM_SAVE_FLAG_EOS)) {
2435 ram_addr_t addr, total_ram_bytes;
2436 void *host = NULL;
2437 uint8_t ch;
2439 addr = qemu_get_be64(f);
2440 flags = addr & ~TARGET_PAGE_MASK;
2441 addr &= TARGET_PAGE_MASK;
2443 if (flags & (RAM_SAVE_FLAG_COMPRESS | RAM_SAVE_FLAG_PAGE |
2444 RAM_SAVE_FLAG_COMPRESS_PAGE | RAM_SAVE_FLAG_XBZRLE)) {
2445 RAMBlock *block = ram_block_from_stream(f, flags);
2447 host = host_from_ram_block_offset(block, addr);
2448 if (!host) {
2449 error_report("Illegal RAM offset " RAM_ADDR_FMT, addr);
2450 ret = -EINVAL;
2451 break;
2455 switch (flags & ~RAM_SAVE_FLAG_CONTINUE) {
2456 case RAM_SAVE_FLAG_MEM_SIZE:
2457 /* Synchronize RAM block list */
2458 total_ram_bytes = addr;
2459 while (!ret && total_ram_bytes) {
2460 RAMBlock *block;
2461 char id[256];
2462 ram_addr_t length;
2464 len = qemu_get_byte(f);
2465 qemu_get_buffer(f, (uint8_t *)id, len);
2466 id[len] = 0;
2467 length = qemu_get_be64(f);
2469 block = qemu_ram_block_by_name(id);
2470 if (block) {
2471 if (length != block->used_length) {
2472 Error *local_err = NULL;
2474 ret = qemu_ram_resize(block->offset, length,
2475 &local_err);
2476 if (local_err) {
2477 error_report_err(local_err);
2480 ram_control_load_hook(f, RAM_CONTROL_BLOCK_REG,
2481 block->idstr);
2482 } else {
2483 error_report("Unknown ramblock \"%s\", cannot "
2484 "accept migration", id);
2485 ret = -EINVAL;
2488 total_ram_bytes -= length;
2490 break;
2492 case RAM_SAVE_FLAG_COMPRESS:
2493 ch = qemu_get_byte(f);
2494 ram_handle_compressed(host, ch, TARGET_PAGE_SIZE);
2495 break;
2497 case RAM_SAVE_FLAG_PAGE:
2498 qemu_get_buffer(f, host, TARGET_PAGE_SIZE);
2499 break;
2501 case RAM_SAVE_FLAG_COMPRESS_PAGE:
2502 len = qemu_get_be32(f);
2503 if (len < 0 || len > compressBound(TARGET_PAGE_SIZE)) {
2504 error_report("Invalid compressed data length: %d", len);
2505 ret = -EINVAL;
2506 break;
2508 decompress_data_with_multi_threads(f, host, len);
2509 break;
2511 case RAM_SAVE_FLAG_XBZRLE:
2512 if (load_xbzrle(f, addr, host) < 0) {
2513 error_report("Failed to decompress XBZRLE page at "
2514 RAM_ADDR_FMT, addr);
2515 ret = -EINVAL;
2516 break;
2518 break;
2519 case RAM_SAVE_FLAG_EOS:
2520 /* normal exit */
2521 break;
2522 default:
2523 if (flags & RAM_SAVE_FLAG_HOOK) {
2524 ram_control_load_hook(f, RAM_CONTROL_HOOK, NULL);
2525 } else {
2526 error_report("Unknown combination of migration flags: %#x",
2527 flags);
2528 ret = -EINVAL;
2531 if (!ret) {
2532 ret = qemu_file_get_error(f);
2536 rcu_read_unlock();
2537 DPRINTF("Completed load of VM with exit code %d seq iteration "
2538 "%" PRIu64 "\n", ret, seq_iter);
2539 return ret;
2542 static SaveVMHandlers savevm_ram_handlers = {
2543 .save_live_setup = ram_save_setup,
2544 .save_live_iterate = ram_save_iterate,
2545 .save_live_complete_postcopy = ram_save_complete,
2546 .save_live_complete_precopy = ram_save_complete,
2547 .save_live_pending = ram_save_pending,
2548 .load_state = ram_load,
2549 .cleanup = ram_migration_cleanup,
2552 void ram_mig_init(void)
2554 qemu_mutex_init(&XBZRLE.lock);
2555 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);