Page request: Consume pages off the post-copy queue
[qemu/cris-port.git] / migration / ram.c
blobd09d5ab633ef231d827eb8133bdca9bb21badace
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 <stdint.h>
29 #include <zlib.h>
30 #include "qemu/bitops.h"
31 #include "qemu/bitmap.h"
32 #include "qemu/timer.h"
33 #include "qemu/main-loop.h"
34 #include "migration/migration.h"
35 #include "migration/postcopy-ram.h"
36 #include "exec/address-spaces.h"
37 #include "migration/page_cache.h"
38 #include "qemu/error-report.h"
39 #include "trace.h"
40 #include "exec/ram_addr.h"
41 #include "qemu/rcu_queue.h"
43 #ifdef DEBUG_MIGRATION_RAM
44 #define DPRINTF(fmt, ...) \
45 do { fprintf(stdout, "migration_ram: " fmt, ## __VA_ARGS__); } while (0)
46 #else
47 #define DPRINTF(fmt, ...) \
48 do { } while (0)
49 #endif
51 static int dirty_rate_high_cnt;
53 static uint64_t bitmap_sync_count;
55 /***********************************************************/
56 /* ram save/restore */
58 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
59 #define RAM_SAVE_FLAG_COMPRESS 0x02
60 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
61 #define RAM_SAVE_FLAG_PAGE 0x08
62 #define RAM_SAVE_FLAG_EOS 0x10
63 #define RAM_SAVE_FLAG_CONTINUE 0x20
64 #define RAM_SAVE_FLAG_XBZRLE 0x40
65 /* 0x80 is reserved in migration.h start with 0x100 next */
66 #define RAM_SAVE_FLAG_COMPRESS_PAGE 0x100
68 static const uint8_t ZERO_TARGET_PAGE[TARGET_PAGE_SIZE];
70 static inline bool is_zero_range(uint8_t *p, uint64_t size)
72 return buffer_find_nonzero_offset(p, size) == size;
75 /* struct contains XBZRLE cache and a static page
76 used by the compression */
77 static struct {
78 /* buffer used for XBZRLE encoding */
79 uint8_t *encoded_buf;
80 /* buffer for storing page content */
81 uint8_t *current_buf;
82 /* Cache for XBZRLE, Protected by lock. */
83 PageCache *cache;
84 QemuMutex lock;
85 } XBZRLE;
87 /* buffer used for XBZRLE decoding */
88 static uint8_t *xbzrle_decoded_buf;
90 static void XBZRLE_cache_lock(void)
92 if (migrate_use_xbzrle())
93 qemu_mutex_lock(&XBZRLE.lock);
96 static void XBZRLE_cache_unlock(void)
98 if (migrate_use_xbzrle())
99 qemu_mutex_unlock(&XBZRLE.lock);
103 * called from qmp_migrate_set_cache_size in main thread, possibly while
104 * a migration is in progress.
105 * A running migration maybe using the cache and might finish during this
106 * call, hence changes to the cache are protected by XBZRLE.lock().
108 int64_t xbzrle_cache_resize(int64_t new_size)
110 PageCache *new_cache;
111 int64_t ret;
113 if (new_size < TARGET_PAGE_SIZE) {
114 return -1;
117 XBZRLE_cache_lock();
119 if (XBZRLE.cache != NULL) {
120 if (pow2floor(new_size) == migrate_xbzrle_cache_size()) {
121 goto out_new_size;
123 new_cache = cache_init(new_size / TARGET_PAGE_SIZE,
124 TARGET_PAGE_SIZE);
125 if (!new_cache) {
126 error_report("Error creating cache");
127 ret = -1;
128 goto out;
131 cache_fini(XBZRLE.cache);
132 XBZRLE.cache = new_cache;
135 out_new_size:
136 ret = pow2floor(new_size);
137 out:
138 XBZRLE_cache_unlock();
139 return ret;
142 /* accounting for migration statistics */
143 typedef struct AccountingInfo {
144 uint64_t dup_pages;
145 uint64_t skipped_pages;
146 uint64_t norm_pages;
147 uint64_t iterations;
148 uint64_t xbzrle_bytes;
149 uint64_t xbzrle_pages;
150 uint64_t xbzrle_cache_miss;
151 double xbzrle_cache_miss_rate;
152 uint64_t xbzrle_overflows;
153 } AccountingInfo;
155 static AccountingInfo acct_info;
157 static void acct_clear(void)
159 memset(&acct_info, 0, sizeof(acct_info));
162 uint64_t dup_mig_bytes_transferred(void)
164 return acct_info.dup_pages * TARGET_PAGE_SIZE;
167 uint64_t dup_mig_pages_transferred(void)
169 return acct_info.dup_pages;
172 uint64_t skipped_mig_bytes_transferred(void)
174 return acct_info.skipped_pages * TARGET_PAGE_SIZE;
177 uint64_t skipped_mig_pages_transferred(void)
179 return acct_info.skipped_pages;
182 uint64_t norm_mig_bytes_transferred(void)
184 return acct_info.norm_pages * TARGET_PAGE_SIZE;
187 uint64_t norm_mig_pages_transferred(void)
189 return acct_info.norm_pages;
192 uint64_t xbzrle_mig_bytes_transferred(void)
194 return acct_info.xbzrle_bytes;
197 uint64_t xbzrle_mig_pages_transferred(void)
199 return acct_info.xbzrle_pages;
202 uint64_t xbzrle_mig_pages_cache_miss(void)
204 return acct_info.xbzrle_cache_miss;
207 double xbzrle_mig_cache_miss_rate(void)
209 return acct_info.xbzrle_cache_miss_rate;
212 uint64_t xbzrle_mig_pages_overflow(void)
214 return acct_info.xbzrle_overflows;
217 /* This is the last block that we have visited serching for dirty pages
219 static RAMBlock *last_seen_block;
220 /* This is the last block from where we have sent data */
221 static RAMBlock *last_sent_block;
222 static ram_addr_t last_offset;
223 static QemuMutex migration_bitmap_mutex;
224 static uint64_t migration_dirty_pages;
225 static uint32_t last_version;
226 static bool ram_bulk_stage;
228 /* used by the search for pages to send */
229 struct PageSearchStatus {
230 /* Current block being searched */
231 RAMBlock *block;
232 /* Current offset to search from */
233 ram_addr_t offset;
234 /* Set once we wrap around */
235 bool complete_round;
237 typedef struct PageSearchStatus PageSearchStatus;
239 static struct BitmapRcu {
240 struct rcu_head rcu;
241 /* Main migration bitmap */
242 unsigned long *bmap;
243 /* bitmap of pages that haven't been sent even once
244 * only maintained and used in postcopy at the moment
245 * where it's used to send the dirtymap at the start
246 * of the postcopy phase
248 unsigned long *unsentmap;
249 } *migration_bitmap_rcu;
251 struct CompressParam {
252 bool start;
253 bool done;
254 QEMUFile *file;
255 QemuMutex mutex;
256 QemuCond cond;
257 RAMBlock *block;
258 ram_addr_t offset;
260 typedef struct CompressParam CompressParam;
262 struct DecompressParam {
263 bool start;
264 QemuMutex mutex;
265 QemuCond cond;
266 void *des;
267 uint8 *compbuf;
268 int len;
270 typedef struct DecompressParam DecompressParam;
272 static CompressParam *comp_param;
273 static QemuThread *compress_threads;
274 /* comp_done_cond is used to wake up the migration thread when
275 * one of the compression threads has finished the compression.
276 * comp_done_lock is used to co-work with comp_done_cond.
278 static QemuMutex *comp_done_lock;
279 static QemuCond *comp_done_cond;
280 /* The empty QEMUFileOps will be used by file in CompressParam */
281 static const QEMUFileOps empty_ops = { };
283 static bool compression_switch;
284 static bool quit_comp_thread;
285 static bool quit_decomp_thread;
286 static DecompressParam *decomp_param;
287 static QemuThread *decompress_threads;
288 static uint8_t *compressed_data_buf;
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 /* Called with iothread lock held, to protect ram_list.dirty_memory[] */
613 static void migration_bitmap_sync(void)
615 RAMBlock *block;
616 uint64_t num_dirty_pages_init = migration_dirty_pages;
617 MigrationState *s = migrate_get_current();
618 int64_t end_time;
619 int64_t bytes_xfer_now;
621 bitmap_sync_count++;
623 if (!bytes_xfer_prev) {
624 bytes_xfer_prev = ram_bytes_transferred();
627 if (!start_time) {
628 start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
631 trace_migration_bitmap_sync_start();
632 address_space_sync_dirty_bitmap(&address_space_memory);
634 qemu_mutex_lock(&migration_bitmap_mutex);
635 rcu_read_lock();
636 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
637 migration_bitmap_sync_range(block->offset, block->used_length);
639 rcu_read_unlock();
640 qemu_mutex_unlock(&migration_bitmap_mutex);
642 trace_migration_bitmap_sync_end(migration_dirty_pages
643 - num_dirty_pages_init);
644 num_dirty_pages_period += migration_dirty_pages - num_dirty_pages_init;
645 end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
647 /* more than 1 second = 1000 millisecons */
648 if (end_time > start_time + 1000) {
649 if (migrate_auto_converge()) {
650 /* The following detection logic can be refined later. For now:
651 Check to see if the dirtied bytes is 50% more than the approx.
652 amount of bytes that just got transferred since the last time we
653 were in this routine. If that happens twice, start or increase
654 throttling */
655 bytes_xfer_now = ram_bytes_transferred();
657 if (s->dirty_pages_rate &&
658 (num_dirty_pages_period * TARGET_PAGE_SIZE >
659 (bytes_xfer_now - bytes_xfer_prev)/2) &&
660 (dirty_rate_high_cnt++ >= 2)) {
661 trace_migration_throttle();
662 dirty_rate_high_cnt = 0;
663 mig_throttle_guest_down();
665 bytes_xfer_prev = bytes_xfer_now;
668 if (migrate_use_xbzrle()) {
669 if (iterations_prev != acct_info.iterations) {
670 acct_info.xbzrle_cache_miss_rate =
671 (double)(acct_info.xbzrle_cache_miss -
672 xbzrle_cache_miss_prev) /
673 (acct_info.iterations - iterations_prev);
675 iterations_prev = acct_info.iterations;
676 xbzrle_cache_miss_prev = acct_info.xbzrle_cache_miss;
678 s->dirty_pages_rate = num_dirty_pages_period * 1000
679 / (end_time - start_time);
680 s->dirty_bytes_rate = s->dirty_pages_rate * TARGET_PAGE_SIZE;
681 start_time = end_time;
682 num_dirty_pages_period = 0;
684 s->dirty_sync_count = bitmap_sync_count;
688 * save_zero_page: Send the zero page to the stream
690 * Returns: Number of pages written.
692 * @f: QEMUFile where to send the data
693 * @block: block that contains the page we want to send
694 * @offset: offset inside the block for the page
695 * @p: pointer to the page
696 * @bytes_transferred: increase it with the number of transferred bytes
698 static int save_zero_page(QEMUFile *f, RAMBlock *block, ram_addr_t offset,
699 uint8_t *p, uint64_t *bytes_transferred)
701 int pages = -1;
703 if (is_zero_range(p, TARGET_PAGE_SIZE)) {
704 acct_info.dup_pages++;
705 *bytes_transferred += save_page_header(f, block,
706 offset | RAM_SAVE_FLAG_COMPRESS);
707 qemu_put_byte(f, 0);
708 *bytes_transferred += 1;
709 pages = 1;
712 return pages;
716 * ram_save_page: Send the given page to the stream
718 * Returns: Number of pages written.
720 * @f: QEMUFile where to send the data
721 * @block: block that contains the page we want to send
722 * @offset: offset inside the block for the page
723 * @last_stage: if we are at the completion stage
724 * @bytes_transferred: increase it with the number of transferred bytes
726 static int ram_save_page(QEMUFile *f, RAMBlock* block, ram_addr_t offset,
727 bool last_stage, uint64_t *bytes_transferred)
729 int pages = -1;
730 uint64_t bytes_xmit;
731 ram_addr_t current_addr;
732 uint8_t *p;
733 int ret;
734 bool send_async = true;
736 p = block->host + offset;
738 /* In doubt sent page as normal */
739 bytes_xmit = 0;
740 ret = ram_control_save_page(f, block->offset,
741 offset, TARGET_PAGE_SIZE, &bytes_xmit);
742 if (bytes_xmit) {
743 *bytes_transferred += bytes_xmit;
744 pages = 1;
747 XBZRLE_cache_lock();
749 current_addr = block->offset + offset;
751 if (block == last_sent_block) {
752 offset |= RAM_SAVE_FLAG_CONTINUE;
754 if (ret != RAM_SAVE_CONTROL_NOT_SUPP) {
755 if (ret != RAM_SAVE_CONTROL_DELAYED) {
756 if (bytes_xmit > 0) {
757 acct_info.norm_pages++;
758 } else if (bytes_xmit == 0) {
759 acct_info.dup_pages++;
762 } else {
763 pages = save_zero_page(f, block, offset, p, bytes_transferred);
764 if (pages > 0) {
765 /* Must let xbzrle know, otherwise a previous (now 0'd) cached
766 * page would be stale
768 xbzrle_cache_zero_page(current_addr);
769 } else if (!ram_bulk_stage && migrate_use_xbzrle()) {
770 pages = save_xbzrle_page(f, &p, current_addr, block,
771 offset, last_stage, bytes_transferred);
772 if (!last_stage) {
773 /* Can't send this cached data async, since the cache page
774 * might get updated before it gets to the wire
776 send_async = false;
781 /* XBZRLE overflow or normal page */
782 if (pages == -1) {
783 *bytes_transferred += save_page_header(f, block,
784 offset | RAM_SAVE_FLAG_PAGE);
785 if (send_async) {
786 qemu_put_buffer_async(f, p, TARGET_PAGE_SIZE);
787 } else {
788 qemu_put_buffer(f, p, TARGET_PAGE_SIZE);
790 *bytes_transferred += TARGET_PAGE_SIZE;
791 pages = 1;
792 acct_info.norm_pages++;
795 XBZRLE_cache_unlock();
797 return pages;
800 static int do_compress_ram_page(CompressParam *param)
802 int bytes_sent, blen;
803 uint8_t *p;
804 RAMBlock *block = param->block;
805 ram_addr_t offset = param->offset;
807 p = block->host + (offset & TARGET_PAGE_MASK);
809 bytes_sent = save_page_header(param->file, block, offset |
810 RAM_SAVE_FLAG_COMPRESS_PAGE);
811 blen = qemu_put_compression_data(param->file, p, TARGET_PAGE_SIZE,
812 migrate_compress_level());
813 bytes_sent += blen;
815 return bytes_sent;
818 static inline void start_compression(CompressParam *param)
820 param->done = false;
821 qemu_mutex_lock(&param->mutex);
822 param->start = true;
823 qemu_cond_signal(&param->cond);
824 qemu_mutex_unlock(&param->mutex);
827 static inline void start_decompression(DecompressParam *param)
829 qemu_mutex_lock(&param->mutex);
830 param->start = true;
831 qemu_cond_signal(&param->cond);
832 qemu_mutex_unlock(&param->mutex);
835 static uint64_t bytes_transferred;
837 static void flush_compressed_data(QEMUFile *f)
839 int idx, len, thread_count;
841 if (!migrate_use_compression()) {
842 return;
844 thread_count = migrate_compress_threads();
845 for (idx = 0; idx < thread_count; idx++) {
846 if (!comp_param[idx].done) {
847 qemu_mutex_lock(comp_done_lock);
848 while (!comp_param[idx].done && !quit_comp_thread) {
849 qemu_cond_wait(comp_done_cond, comp_done_lock);
851 qemu_mutex_unlock(comp_done_lock);
853 if (!quit_comp_thread) {
854 len = qemu_put_qemu_file(f, comp_param[idx].file);
855 bytes_transferred += len;
860 static inline void set_compress_params(CompressParam *param, RAMBlock *block,
861 ram_addr_t offset)
863 param->block = block;
864 param->offset = offset;
867 static int compress_page_with_multi_thread(QEMUFile *f, RAMBlock *block,
868 ram_addr_t offset,
869 uint64_t *bytes_transferred)
871 int idx, thread_count, bytes_xmit = -1, pages = -1;
873 thread_count = migrate_compress_threads();
874 qemu_mutex_lock(comp_done_lock);
875 while (true) {
876 for (idx = 0; idx < thread_count; idx++) {
877 if (comp_param[idx].done) {
878 bytes_xmit = qemu_put_qemu_file(f, comp_param[idx].file);
879 set_compress_params(&comp_param[idx], block, offset);
880 start_compression(&comp_param[idx]);
881 pages = 1;
882 acct_info.norm_pages++;
883 *bytes_transferred += bytes_xmit;
884 break;
887 if (pages > 0) {
888 break;
889 } else {
890 qemu_cond_wait(comp_done_cond, comp_done_lock);
893 qemu_mutex_unlock(comp_done_lock);
895 return pages;
899 * ram_save_compressed_page: compress the given page and send it to the stream
901 * Returns: Number of pages written.
903 * @f: QEMUFile where to send the data
904 * @block: block that contains the page we want to send
905 * @offset: offset inside the block for the page
906 * @last_stage: if we are at the completion stage
907 * @bytes_transferred: increase it with the number of transferred bytes
909 static int ram_save_compressed_page(QEMUFile *f, RAMBlock *block,
910 ram_addr_t offset, bool last_stage,
911 uint64_t *bytes_transferred)
913 int pages = -1;
914 uint64_t bytes_xmit;
915 uint8_t *p;
916 int ret;
918 p = block->host + offset;
920 bytes_xmit = 0;
921 ret = ram_control_save_page(f, block->offset,
922 offset, TARGET_PAGE_SIZE, &bytes_xmit);
923 if (bytes_xmit) {
924 *bytes_transferred += bytes_xmit;
925 pages = 1;
927 if (block == last_sent_block) {
928 offset |= RAM_SAVE_FLAG_CONTINUE;
930 if (ret != RAM_SAVE_CONTROL_NOT_SUPP) {
931 if (ret != RAM_SAVE_CONTROL_DELAYED) {
932 if (bytes_xmit > 0) {
933 acct_info.norm_pages++;
934 } else if (bytes_xmit == 0) {
935 acct_info.dup_pages++;
938 } else {
939 /* When starting the process of a new block, the first page of
940 * the block should be sent out before other pages in the same
941 * block, and all the pages in last block should have been sent
942 * out, keeping this order is important, because the 'cont' flag
943 * is used to avoid resending the block name.
945 if (block != last_sent_block) {
946 flush_compressed_data(f);
947 pages = save_zero_page(f, block, offset, p, bytes_transferred);
948 if (pages == -1) {
949 set_compress_params(&comp_param[0], block, offset);
950 /* Use the qemu thread to compress the data to make sure the
951 * first page is sent out before other pages
953 bytes_xmit = do_compress_ram_page(&comp_param[0]);
954 acct_info.norm_pages++;
955 qemu_put_qemu_file(f, comp_param[0].file);
956 *bytes_transferred += bytes_xmit;
957 pages = 1;
959 } else {
960 pages = save_zero_page(f, block, offset, p, bytes_transferred);
961 if (pages == -1) {
962 pages = compress_page_with_multi_thread(f, block, offset,
963 bytes_transferred);
968 return pages;
972 * Find the next dirty page and update any state associated with
973 * the search process.
975 * Returns: True if a page is found
977 * @f: Current migration stream.
978 * @pss: Data about the state of the current dirty page scan.
979 * @*again: Set to false if the search has scanned the whole of RAM
980 * *ram_addr_abs: Pointer into which to store the address of the dirty page
981 * within the global ram_addr space
983 static bool find_dirty_block(QEMUFile *f, PageSearchStatus *pss,
984 bool *again, ram_addr_t *ram_addr_abs)
986 pss->offset = migration_bitmap_find_dirty(pss->block, pss->offset,
987 ram_addr_abs);
988 if (pss->complete_round && pss->block == last_seen_block &&
989 pss->offset >= last_offset) {
991 * We've been once around the RAM and haven't found anything.
992 * Give up.
994 *again = false;
995 return false;
997 if (pss->offset >= pss->block->used_length) {
998 /* Didn't find anything in this RAM Block */
999 pss->offset = 0;
1000 pss->block = QLIST_NEXT_RCU(pss->block, next);
1001 if (!pss->block) {
1002 /* Hit the end of the list */
1003 pss->block = QLIST_FIRST_RCU(&ram_list.blocks);
1004 /* Flag that we've looped */
1005 pss->complete_round = true;
1006 ram_bulk_stage = false;
1007 if (migrate_use_xbzrle()) {
1008 /* If xbzrle is on, stop using the data compression at this
1009 * point. In theory, xbzrle can do better than compression.
1011 flush_compressed_data(f);
1012 compression_switch = false;
1015 /* Didn't find anything this time, but try again on the new block */
1016 *again = true;
1017 return false;
1018 } else {
1019 /* Can go around again, but... */
1020 *again = true;
1021 /* We've found something so probably don't need to */
1022 return true;
1027 * Helper for 'get_queued_page' - gets a page off the queue
1028 * ms: MigrationState in
1029 * *offset: Used to return the offset within the RAMBlock
1030 * ram_addr_abs: global offset in the dirty/sent bitmaps
1032 * Returns: block (or NULL if none available)
1034 static RAMBlock *unqueue_page(MigrationState *ms, ram_addr_t *offset,
1035 ram_addr_t *ram_addr_abs)
1037 RAMBlock *block = NULL;
1039 qemu_mutex_lock(&ms->src_page_req_mutex);
1040 if (!QSIMPLEQ_EMPTY(&ms->src_page_requests)) {
1041 struct MigrationSrcPageRequest *entry =
1042 QSIMPLEQ_FIRST(&ms->src_page_requests);
1043 block = entry->rb;
1044 *offset = entry->offset;
1045 *ram_addr_abs = (entry->offset + entry->rb->offset) &
1046 TARGET_PAGE_MASK;
1048 if (entry->len > TARGET_PAGE_SIZE) {
1049 entry->len -= TARGET_PAGE_SIZE;
1050 entry->offset += TARGET_PAGE_SIZE;
1051 } else {
1052 memory_region_unref(block->mr);
1053 QSIMPLEQ_REMOVE_HEAD(&ms->src_page_requests, next_req);
1054 g_free(entry);
1057 qemu_mutex_unlock(&ms->src_page_req_mutex);
1059 return block;
1063 * Unqueue a page from the queue fed by postcopy page requests; skips pages
1064 * that are already sent (!dirty)
1066 * ms: MigrationState in
1067 * pss: PageSearchStatus structure updated with found block/offset
1068 * ram_addr_abs: global offset in the dirty/sent bitmaps
1070 * Returns: true if a queued page is found
1072 static bool get_queued_page(MigrationState *ms, PageSearchStatus *pss,
1073 ram_addr_t *ram_addr_abs)
1075 RAMBlock *block;
1076 ram_addr_t offset;
1077 bool dirty;
1079 do {
1080 block = unqueue_page(ms, &offset, ram_addr_abs);
1082 * We're sending this page, and since it's postcopy nothing else
1083 * will dirty it, and we must make sure it doesn't get sent again
1084 * even if this queue request was received after the background
1085 * search already sent it.
1087 if (block) {
1088 unsigned long *bitmap;
1089 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1090 dirty = test_bit(*ram_addr_abs >> TARGET_PAGE_BITS, bitmap);
1091 if (!dirty) {
1092 trace_get_queued_page_not_dirty(
1093 block->idstr, (uint64_t)offset,
1094 (uint64_t)*ram_addr_abs,
1095 test_bit(*ram_addr_abs >> TARGET_PAGE_BITS,
1096 atomic_rcu_read(&migration_bitmap_rcu)->unsentmap));
1097 } else {
1098 trace_get_queued_page(block->idstr,
1099 (uint64_t)offset,
1100 (uint64_t)*ram_addr_abs);
1104 } while (block && !dirty);
1106 if (block) {
1108 * As soon as we start servicing pages out of order, then we have
1109 * to kill the bulk stage, since the bulk stage assumes
1110 * in (migration_bitmap_find_and_reset_dirty) that every page is
1111 * dirty, that's no longer true.
1113 ram_bulk_stage = false;
1116 * We want the background search to continue from the queued page
1117 * since the guest is likely to want other pages near to the page
1118 * it just requested.
1120 pss->block = block;
1121 pss->offset = offset;
1124 return !!block;
1128 * flush_page_queue: Flush any remaining pages in the ram request queue
1129 * it should be empty at the end anyway, but in error cases there may be
1130 * some left.
1132 * ms: MigrationState
1134 void flush_page_queue(MigrationState *ms)
1136 struct MigrationSrcPageRequest *mspr, *next_mspr;
1137 /* This queue generally should be empty - but in the case of a failed
1138 * migration might have some droppings in.
1140 rcu_read_lock();
1141 QSIMPLEQ_FOREACH_SAFE(mspr, &ms->src_page_requests, next_req, next_mspr) {
1142 memory_region_unref(mspr->rb->mr);
1143 QSIMPLEQ_REMOVE_HEAD(&ms->src_page_requests, next_req);
1144 g_free(mspr);
1146 rcu_read_unlock();
1150 * Queue the pages for transmission, e.g. a request from postcopy destination
1151 * ms: MigrationStatus in which the queue is held
1152 * rbname: The RAMBlock the request is for - may be NULL (to mean reuse last)
1153 * start: Offset from the start of the RAMBlock
1154 * len: Length (in bytes) to send
1155 * Return: 0 on success
1157 int ram_save_queue_pages(MigrationState *ms, const char *rbname,
1158 ram_addr_t start, ram_addr_t len)
1160 RAMBlock *ramblock;
1162 rcu_read_lock();
1163 if (!rbname) {
1164 /* Reuse last RAMBlock */
1165 ramblock = ms->last_req_rb;
1167 if (!ramblock) {
1169 * Shouldn't happen, we can't reuse the last RAMBlock if
1170 * it's the 1st request.
1172 error_report("ram_save_queue_pages no previous block");
1173 goto err;
1175 } else {
1176 ramblock = qemu_ram_block_by_name(rbname);
1178 if (!ramblock) {
1179 /* We shouldn't be asked for a non-existent RAMBlock */
1180 error_report("ram_save_queue_pages no block '%s'", rbname);
1181 goto err;
1183 ms->last_req_rb = ramblock;
1185 trace_ram_save_queue_pages(ramblock->idstr, start, len);
1186 if (start+len > ramblock->used_length) {
1187 error_report("%s request overrun start=%zx len=%zx blocklen=%zx",
1188 __func__, start, len, ramblock->used_length);
1189 goto err;
1192 struct MigrationSrcPageRequest *new_entry =
1193 g_malloc0(sizeof(struct MigrationSrcPageRequest));
1194 new_entry->rb = ramblock;
1195 new_entry->offset = start;
1196 new_entry->len = len;
1198 memory_region_ref(ramblock->mr);
1199 qemu_mutex_lock(&ms->src_page_req_mutex);
1200 QSIMPLEQ_INSERT_TAIL(&ms->src_page_requests, new_entry, next_req);
1201 qemu_mutex_unlock(&ms->src_page_req_mutex);
1202 rcu_read_unlock();
1204 return 0;
1206 err:
1207 rcu_read_unlock();
1208 return -1;
1212 * ram_save_target_page: Save one target page
1215 * @f: QEMUFile where to send the data
1216 * @block: pointer to block that contains the page we want to send
1217 * @offset: offset inside the block for the page;
1218 * @last_stage: if we are at the completion stage
1219 * @bytes_transferred: increase it with the number of transferred bytes
1220 * @dirty_ram_abs: Address of the start of the dirty page in ram_addr_t space
1222 * Returns: Number of pages written.
1224 static int ram_save_target_page(MigrationState *ms, QEMUFile *f,
1225 RAMBlock *block, ram_addr_t offset,
1226 bool last_stage,
1227 uint64_t *bytes_transferred,
1228 ram_addr_t dirty_ram_abs)
1230 int res = 0;
1232 /* Check the pages is dirty and if it is send it */
1233 if (migration_bitmap_clear_dirty(dirty_ram_abs)) {
1234 unsigned long *unsentmap;
1235 if (compression_switch && migrate_use_compression()) {
1236 res = ram_save_compressed_page(f, block, offset,
1237 last_stage,
1238 bytes_transferred);
1239 } else {
1240 res = ram_save_page(f, block, offset, last_stage,
1241 bytes_transferred);
1244 if (res < 0) {
1245 return res;
1247 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1248 if (unsentmap) {
1249 clear_bit(dirty_ram_abs >> TARGET_PAGE_BITS, unsentmap);
1253 return res;
1257 * ram_save_host_page: Starting at *offset send pages upto the end
1258 * of the current host page. It's valid for the initial
1259 * offset to point into the middle of a host page
1260 * in which case the remainder of the hostpage is sent.
1261 * Only dirty target pages are sent.
1263 * Returns: Number of pages written.
1265 * @f: QEMUFile where to send the data
1266 * @block: pointer to block that contains the page we want to send
1267 * @offset: offset inside the block for the page; updated to last target page
1268 * sent
1269 * @last_stage: if we are at the completion stage
1270 * @bytes_transferred: increase it with the number of transferred bytes
1271 * @dirty_ram_abs: Address of the start of the dirty page in ram_addr_t space
1273 static int ram_save_host_page(MigrationState *ms, QEMUFile *f, RAMBlock *block,
1274 ram_addr_t *offset, bool last_stage,
1275 uint64_t *bytes_transferred,
1276 ram_addr_t dirty_ram_abs)
1278 int tmppages, pages = 0;
1279 do {
1280 tmppages = ram_save_target_page(ms, f, block, *offset, last_stage,
1281 bytes_transferred, dirty_ram_abs);
1282 if (tmppages < 0) {
1283 return tmppages;
1286 pages += tmppages;
1287 *offset += TARGET_PAGE_SIZE;
1288 dirty_ram_abs += TARGET_PAGE_SIZE;
1289 } while (*offset & (qemu_host_page_size - 1));
1291 /* The offset we leave with is the last one we looked at */
1292 *offset -= TARGET_PAGE_SIZE;
1293 return pages;
1297 * ram_find_and_save_block: Finds a dirty page and sends it to f
1299 * Called within an RCU critical section.
1301 * Returns: The number of pages written
1302 * 0 means no dirty pages
1304 * @f: QEMUFile where to send the data
1305 * @last_stage: if we are at the completion stage
1306 * @bytes_transferred: increase it with the number of transferred bytes
1308 * On systems where host-page-size > target-page-size it will send all the
1309 * pages in a host page that are dirty.
1312 static int ram_find_and_save_block(QEMUFile *f, bool last_stage,
1313 uint64_t *bytes_transferred)
1315 PageSearchStatus pss;
1316 MigrationState *ms = migrate_get_current();
1317 int pages = 0;
1318 bool again, found;
1319 ram_addr_t dirty_ram_abs; /* Address of the start of the dirty page in
1320 ram_addr_t space */
1322 pss.block = last_seen_block;
1323 pss.offset = last_offset;
1324 pss.complete_round = false;
1326 if (!pss.block) {
1327 pss.block = QLIST_FIRST_RCU(&ram_list.blocks);
1330 do {
1331 again = true;
1332 found = get_queued_page(ms, &pss, &dirty_ram_abs);
1334 if (!found) {
1335 /* priority queue empty, so just search for something dirty */
1336 found = find_dirty_block(f, &pss, &again, &dirty_ram_abs);
1339 if (found) {
1340 pages = ram_save_host_page(ms, f, pss.block, &pss.offset,
1341 last_stage, bytes_transferred,
1342 dirty_ram_abs);
1344 } while (!pages && again);
1346 last_seen_block = pss.block;
1347 last_offset = pss.offset;
1349 return pages;
1352 void acct_update_position(QEMUFile *f, size_t size, bool zero)
1354 uint64_t pages = size / TARGET_PAGE_SIZE;
1355 if (zero) {
1356 acct_info.dup_pages += pages;
1357 } else {
1358 acct_info.norm_pages += pages;
1359 bytes_transferred += size;
1360 qemu_update_position(f, size);
1364 static ram_addr_t ram_save_remaining(void)
1366 return migration_dirty_pages;
1369 uint64_t ram_bytes_remaining(void)
1371 return ram_save_remaining() * TARGET_PAGE_SIZE;
1374 uint64_t ram_bytes_transferred(void)
1376 return bytes_transferred;
1379 uint64_t ram_bytes_total(void)
1381 RAMBlock *block;
1382 uint64_t total = 0;
1384 rcu_read_lock();
1385 QLIST_FOREACH_RCU(block, &ram_list.blocks, next)
1386 total += block->used_length;
1387 rcu_read_unlock();
1388 return total;
1391 void free_xbzrle_decoded_buf(void)
1393 g_free(xbzrle_decoded_buf);
1394 xbzrle_decoded_buf = NULL;
1397 static void migration_bitmap_free(struct BitmapRcu *bmap)
1399 g_free(bmap->bmap);
1400 g_free(bmap->unsentmap);
1401 g_free(bmap);
1404 static void ram_migration_cleanup(void *opaque)
1406 /* caller have hold iothread lock or is in a bh, so there is
1407 * no writing race against this migration_bitmap
1409 struct BitmapRcu *bitmap = migration_bitmap_rcu;
1410 atomic_rcu_set(&migration_bitmap_rcu, NULL);
1411 if (bitmap) {
1412 memory_global_dirty_log_stop();
1413 call_rcu(bitmap, migration_bitmap_free, rcu);
1416 XBZRLE_cache_lock();
1417 if (XBZRLE.cache) {
1418 cache_fini(XBZRLE.cache);
1419 g_free(XBZRLE.encoded_buf);
1420 g_free(XBZRLE.current_buf);
1421 XBZRLE.cache = NULL;
1422 XBZRLE.encoded_buf = NULL;
1423 XBZRLE.current_buf = NULL;
1425 XBZRLE_cache_unlock();
1428 static void reset_ram_globals(void)
1430 last_seen_block = NULL;
1431 last_sent_block = NULL;
1432 last_offset = 0;
1433 last_version = ram_list.version;
1434 ram_bulk_stage = true;
1437 #define MAX_WAIT 50 /* ms, half buffered_file limit */
1439 void migration_bitmap_extend(ram_addr_t old, ram_addr_t new)
1441 /* called in qemu main thread, so there is
1442 * no writing race against this migration_bitmap
1444 if (migration_bitmap_rcu) {
1445 struct BitmapRcu *old_bitmap = migration_bitmap_rcu, *bitmap;
1446 bitmap = g_new(struct BitmapRcu, 1);
1447 bitmap->bmap = bitmap_new(new);
1449 /* prevent migration_bitmap content from being set bit
1450 * by migration_bitmap_sync_range() at the same time.
1451 * it is safe to migration if migration_bitmap is cleared bit
1452 * at the same time.
1454 qemu_mutex_lock(&migration_bitmap_mutex);
1455 bitmap_copy(bitmap->bmap, old_bitmap->bmap, old);
1456 bitmap_set(bitmap->bmap, old, new - old);
1458 /* We don't have a way to safely extend the sentmap
1459 * with RCU; so mark it as missing, entry to postcopy
1460 * will fail.
1462 bitmap->unsentmap = NULL;
1464 atomic_rcu_set(&migration_bitmap_rcu, bitmap);
1465 qemu_mutex_unlock(&migration_bitmap_mutex);
1466 migration_dirty_pages += new - old;
1467 call_rcu(old_bitmap, migration_bitmap_free, rcu);
1472 * 'expected' is the value you expect the bitmap mostly to be full
1473 * of; it won't bother printing lines that are all this value.
1474 * If 'todump' is null the migration bitmap is dumped.
1476 void ram_debug_dump_bitmap(unsigned long *todump, bool expected)
1478 int64_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS;
1480 int64_t cur;
1481 int64_t linelen = 128;
1482 char linebuf[129];
1484 if (!todump) {
1485 todump = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1488 for (cur = 0; cur < ram_pages; cur += linelen) {
1489 int64_t curb;
1490 bool found = false;
1492 * Last line; catch the case where the line length
1493 * is longer than remaining ram
1495 if (cur + linelen > ram_pages) {
1496 linelen = ram_pages - cur;
1498 for (curb = 0; curb < linelen; curb++) {
1499 bool thisbit = test_bit(cur + curb, todump);
1500 linebuf[curb] = thisbit ? '1' : '.';
1501 found = found || (thisbit != expected);
1503 if (found) {
1504 linebuf[curb] = '\0';
1505 fprintf(stderr, "0x%08" PRIx64 " : %s\n", cur, linebuf);
1510 /* **** functions for postcopy ***** */
1513 * Callback from postcopy_each_ram_send_discard for each RAMBlock
1514 * Note: At this point the 'unsentmap' is the processed bitmap combined
1515 * with the dirtymap; so a '1' means it's either dirty or unsent.
1516 * start,length: Indexes into the bitmap for the first bit
1517 * representing the named block and length in target-pages
1519 static int postcopy_send_discard_bm_ram(MigrationState *ms,
1520 PostcopyDiscardState *pds,
1521 unsigned long start,
1522 unsigned long length)
1524 unsigned long end = start + length; /* one after the end */
1525 unsigned long current;
1526 unsigned long *unsentmap;
1528 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1529 for (current = start; current < end; ) {
1530 unsigned long one = find_next_bit(unsentmap, end, current);
1532 if (one <= end) {
1533 unsigned long zero = find_next_zero_bit(unsentmap, end, one + 1);
1534 unsigned long discard_length;
1536 if (zero >= end) {
1537 discard_length = end - one;
1538 } else {
1539 discard_length = zero - one;
1541 postcopy_discard_send_range(ms, pds, one, discard_length);
1542 current = one + discard_length;
1543 } else {
1544 current = one;
1548 return 0;
1552 * Utility for the outgoing postcopy code.
1553 * Calls postcopy_send_discard_bm_ram for each RAMBlock
1554 * passing it bitmap indexes and name.
1555 * Returns: 0 on success
1556 * (qemu_ram_foreach_block ends up passing unscaled lengths
1557 * which would mean postcopy code would have to deal with target page)
1559 static int postcopy_each_ram_send_discard(MigrationState *ms)
1561 struct RAMBlock *block;
1562 int ret;
1564 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
1565 unsigned long first = block->offset >> TARGET_PAGE_BITS;
1566 PostcopyDiscardState *pds = postcopy_discard_send_init(ms,
1567 first,
1568 block->idstr);
1571 * Postcopy sends chunks of bitmap over the wire, but it
1572 * just needs indexes at this point, avoids it having
1573 * target page specific code.
1575 ret = postcopy_send_discard_bm_ram(ms, pds, first,
1576 block->used_length >> TARGET_PAGE_BITS);
1577 postcopy_discard_send_finish(ms, pds);
1578 if (ret) {
1579 return ret;
1583 return 0;
1587 * Transmit the set of pages to be discarded after precopy to the target
1588 * these are pages that:
1589 * a) Have been previously transmitted but are now dirty again
1590 * b) Pages that have never been transmitted, this ensures that
1591 * any pages on the destination that have been mapped by background
1592 * tasks get discarded (transparent huge pages is the specific concern)
1593 * Hopefully this is pretty sparse
1595 int ram_postcopy_send_discard_bitmap(MigrationState *ms)
1597 int ret;
1598 unsigned long *bitmap, *unsentmap;
1600 rcu_read_lock();
1602 /* This should be our last sync, the src is now paused */
1603 migration_bitmap_sync();
1605 unsentmap = atomic_rcu_read(&migration_bitmap_rcu)->unsentmap;
1606 if (!unsentmap) {
1607 /* We don't have a safe way to resize the sentmap, so
1608 * if the bitmap was resized it will be NULL at this
1609 * point.
1611 error_report("migration ram resized during precopy phase");
1612 rcu_read_unlock();
1613 return -EINVAL;
1617 * Update the unsentmap to be unsentmap = unsentmap | dirty
1619 bitmap = atomic_rcu_read(&migration_bitmap_rcu)->bmap;
1620 bitmap_or(unsentmap, unsentmap, bitmap,
1621 last_ram_offset() >> TARGET_PAGE_BITS);
1624 trace_ram_postcopy_send_discard_bitmap();
1625 #ifdef DEBUG_POSTCOPY
1626 ram_debug_dump_bitmap(unsentmap, true);
1627 #endif
1629 ret = postcopy_each_ram_send_discard(ms);
1630 rcu_read_unlock();
1632 return ret;
1636 * At the start of the postcopy phase of migration, any now-dirty
1637 * precopied pages are discarded.
1639 * start, length describe a byte address range within the RAMBlock
1641 * Returns 0 on success.
1643 int ram_discard_range(MigrationIncomingState *mis,
1644 const char *block_name,
1645 uint64_t start, size_t length)
1647 int ret = -1;
1649 rcu_read_lock();
1650 RAMBlock *rb = qemu_ram_block_by_name(block_name);
1652 if (!rb) {
1653 error_report("ram_discard_range: Failed to find block '%s'",
1654 block_name);
1655 goto err;
1658 uint8_t *host_startaddr = rb->host + start;
1660 if ((uintptr_t)host_startaddr & (qemu_host_page_size - 1)) {
1661 error_report("ram_discard_range: Unaligned start address: %p",
1662 host_startaddr);
1663 goto err;
1666 if ((start + length) <= rb->used_length) {
1667 uint8_t *host_endaddr = host_startaddr + length;
1668 if ((uintptr_t)host_endaddr & (qemu_host_page_size - 1)) {
1669 error_report("ram_discard_range: Unaligned end address: %p",
1670 host_endaddr);
1671 goto err;
1673 ret = postcopy_ram_discard_range(mis, host_startaddr, length);
1674 } else {
1675 error_report("ram_discard_range: Overrun block '%s' (%" PRIu64
1676 "/%zu/%zu)",
1677 block_name, start, length, rb->used_length);
1680 err:
1681 rcu_read_unlock();
1683 return ret;
1687 /* Each of ram_save_setup, ram_save_iterate and ram_save_complete has
1688 * long-running RCU critical section. When rcu-reclaims in the code
1689 * start to become numerous it will be necessary to reduce the
1690 * granularity of these critical sections.
1693 static int ram_save_setup(QEMUFile *f, void *opaque)
1695 RAMBlock *block;
1696 int64_t ram_bitmap_pages; /* Size of bitmap in pages, including gaps */
1698 dirty_rate_high_cnt = 0;
1699 bitmap_sync_count = 0;
1700 migration_bitmap_sync_init();
1701 qemu_mutex_init(&migration_bitmap_mutex);
1703 if (migrate_use_xbzrle()) {
1704 XBZRLE_cache_lock();
1705 XBZRLE.cache = cache_init(migrate_xbzrle_cache_size() /
1706 TARGET_PAGE_SIZE,
1707 TARGET_PAGE_SIZE);
1708 if (!XBZRLE.cache) {
1709 XBZRLE_cache_unlock();
1710 error_report("Error creating cache");
1711 return -1;
1713 XBZRLE_cache_unlock();
1715 /* We prefer not to abort if there is no memory */
1716 XBZRLE.encoded_buf = g_try_malloc0(TARGET_PAGE_SIZE);
1717 if (!XBZRLE.encoded_buf) {
1718 error_report("Error allocating encoded_buf");
1719 return -1;
1722 XBZRLE.current_buf = g_try_malloc(TARGET_PAGE_SIZE);
1723 if (!XBZRLE.current_buf) {
1724 error_report("Error allocating current_buf");
1725 g_free(XBZRLE.encoded_buf);
1726 XBZRLE.encoded_buf = NULL;
1727 return -1;
1730 acct_clear();
1733 /* iothread lock needed for ram_list.dirty_memory[] */
1734 qemu_mutex_lock_iothread();
1735 qemu_mutex_lock_ramlist();
1736 rcu_read_lock();
1737 bytes_transferred = 0;
1738 reset_ram_globals();
1740 ram_bitmap_pages = last_ram_offset() >> TARGET_PAGE_BITS;
1741 migration_bitmap_rcu = g_new0(struct BitmapRcu, 1);
1742 migration_bitmap_rcu->bmap = bitmap_new(ram_bitmap_pages);
1743 bitmap_set(migration_bitmap_rcu->bmap, 0, ram_bitmap_pages);
1745 if (migrate_postcopy_ram()) {
1746 migration_bitmap_rcu->unsentmap = bitmap_new(ram_bitmap_pages);
1747 bitmap_set(migration_bitmap_rcu->unsentmap, 0, ram_bitmap_pages);
1751 * Count the total number of pages used by ram blocks not including any
1752 * gaps due to alignment or unplugs.
1754 migration_dirty_pages = ram_bytes_total() >> TARGET_PAGE_BITS;
1756 memory_global_dirty_log_start();
1757 migration_bitmap_sync();
1758 qemu_mutex_unlock_ramlist();
1759 qemu_mutex_unlock_iothread();
1761 qemu_put_be64(f, ram_bytes_total() | RAM_SAVE_FLAG_MEM_SIZE);
1763 QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
1764 qemu_put_byte(f, strlen(block->idstr));
1765 qemu_put_buffer(f, (uint8_t *)block->idstr, strlen(block->idstr));
1766 qemu_put_be64(f, block->used_length);
1769 rcu_read_unlock();
1771 ram_control_before_iterate(f, RAM_CONTROL_SETUP);
1772 ram_control_after_iterate(f, RAM_CONTROL_SETUP);
1774 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
1776 return 0;
1779 static int ram_save_iterate(QEMUFile *f, void *opaque)
1781 int ret;
1782 int i;
1783 int64_t t0;
1784 int pages_sent = 0;
1786 rcu_read_lock();
1787 if (ram_list.version != last_version) {
1788 reset_ram_globals();
1791 /* Read version before ram_list.blocks */
1792 smp_rmb();
1794 ram_control_before_iterate(f, RAM_CONTROL_ROUND);
1796 t0 = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
1797 i = 0;
1798 while ((ret = qemu_file_rate_limit(f)) == 0) {
1799 int pages;
1801 pages = ram_find_and_save_block(f, false, &bytes_transferred);
1802 /* no more pages to sent */
1803 if (pages == 0) {
1804 break;
1806 pages_sent += pages;
1807 acct_info.iterations++;
1809 /* we want to check in the 1st loop, just in case it was the 1st time
1810 and we had to sync the dirty bitmap.
1811 qemu_get_clock_ns() is a bit expensive, so we only check each some
1812 iterations
1814 if ((i & 63) == 0) {
1815 uint64_t t1 = (qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - t0) / 1000000;
1816 if (t1 > MAX_WAIT) {
1817 DPRINTF("big wait: %" PRIu64 " milliseconds, %d iterations\n",
1818 t1, i);
1819 break;
1822 i++;
1824 flush_compressed_data(f);
1825 rcu_read_unlock();
1828 * Must occur before EOS (or any QEMUFile operation)
1829 * because of RDMA protocol.
1831 ram_control_after_iterate(f, RAM_CONTROL_ROUND);
1833 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
1834 bytes_transferred += 8;
1836 ret = qemu_file_get_error(f);
1837 if (ret < 0) {
1838 return ret;
1841 return pages_sent;
1844 /* Called with iothread lock */
1845 static int ram_save_complete(QEMUFile *f, void *opaque)
1847 rcu_read_lock();
1849 migration_bitmap_sync();
1851 ram_control_before_iterate(f, RAM_CONTROL_FINISH);
1853 /* try transferring iterative blocks of memory */
1855 /* flush all remaining blocks regardless of rate limiting */
1856 while (true) {
1857 int pages;
1859 pages = ram_find_and_save_block(f, true, &bytes_transferred);
1860 /* no more blocks to sent */
1861 if (pages == 0) {
1862 break;
1866 flush_compressed_data(f);
1867 ram_control_after_iterate(f, RAM_CONTROL_FINISH);
1869 rcu_read_unlock();
1871 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
1873 return 0;
1876 static void ram_save_pending(QEMUFile *f, void *opaque, uint64_t max_size,
1877 uint64_t *non_postcopiable_pending,
1878 uint64_t *postcopiable_pending)
1880 uint64_t remaining_size;
1882 remaining_size = ram_save_remaining() * TARGET_PAGE_SIZE;
1884 if (remaining_size < max_size) {
1885 qemu_mutex_lock_iothread();
1886 rcu_read_lock();
1887 migration_bitmap_sync();
1888 rcu_read_unlock();
1889 qemu_mutex_unlock_iothread();
1890 remaining_size = ram_save_remaining() * TARGET_PAGE_SIZE;
1893 /* We can do postcopy, and all the data is postcopiable */
1894 *postcopiable_pending += remaining_size;
1897 static int load_xbzrle(QEMUFile *f, ram_addr_t addr, void *host)
1899 unsigned int xh_len;
1900 int xh_flags;
1902 if (!xbzrle_decoded_buf) {
1903 xbzrle_decoded_buf = g_malloc(TARGET_PAGE_SIZE);
1906 /* extract RLE header */
1907 xh_flags = qemu_get_byte(f);
1908 xh_len = qemu_get_be16(f);
1910 if (xh_flags != ENCODING_FLAG_XBZRLE) {
1911 error_report("Failed to load XBZRLE page - wrong compression!");
1912 return -1;
1915 if (xh_len > TARGET_PAGE_SIZE) {
1916 error_report("Failed to load XBZRLE page - len overflow!");
1917 return -1;
1919 /* load data and decode */
1920 qemu_get_buffer(f, xbzrle_decoded_buf, xh_len);
1922 /* decode RLE */
1923 if (xbzrle_decode_buffer(xbzrle_decoded_buf, xh_len, host,
1924 TARGET_PAGE_SIZE) == -1) {
1925 error_report("Failed to load XBZRLE page - decode error!");
1926 return -1;
1929 return 0;
1932 /* Must be called from within a rcu critical section.
1933 * Returns a pointer from within the RCU-protected ram_list.
1935 static inline void *host_from_stream_offset(QEMUFile *f,
1936 ram_addr_t offset,
1937 int flags)
1939 static RAMBlock *block = NULL;
1940 char id[256];
1941 uint8_t len;
1943 if (flags & RAM_SAVE_FLAG_CONTINUE) {
1944 if (!block || block->max_length <= offset) {
1945 error_report("Ack, bad migration stream!");
1946 return NULL;
1949 return block->host + offset;
1952 len = qemu_get_byte(f);
1953 qemu_get_buffer(f, (uint8_t *)id, len);
1954 id[len] = 0;
1956 block = qemu_ram_block_by_name(id);
1957 if (block && block->max_length > offset) {
1958 return block->host + offset;
1961 error_report("Can't find block %s", id);
1962 return NULL;
1966 * If a page (or a whole RDMA chunk) has been
1967 * determined to be zero, then zap it.
1969 void ram_handle_compressed(void *host, uint8_t ch, uint64_t size)
1971 if (ch != 0 || !is_zero_range(host, size)) {
1972 memset(host, ch, size);
1976 static void *do_data_decompress(void *opaque)
1978 DecompressParam *param = opaque;
1979 unsigned long pagesize;
1981 while (!quit_decomp_thread) {
1982 qemu_mutex_lock(&param->mutex);
1983 while (!param->start && !quit_decomp_thread) {
1984 qemu_cond_wait(&param->cond, &param->mutex);
1985 pagesize = TARGET_PAGE_SIZE;
1986 if (!quit_decomp_thread) {
1987 /* uncompress() will return failed in some case, especially
1988 * when the page is dirted when doing the compression, it's
1989 * not a problem because the dirty page will be retransferred
1990 * and uncompress() won't break the data in other pages.
1992 uncompress((Bytef *)param->des, &pagesize,
1993 (const Bytef *)param->compbuf, param->len);
1995 param->start = false;
1997 qemu_mutex_unlock(&param->mutex);
2000 return NULL;
2003 void migrate_decompress_threads_create(void)
2005 int i, thread_count;
2007 thread_count = migrate_decompress_threads();
2008 decompress_threads = g_new0(QemuThread, thread_count);
2009 decomp_param = g_new0(DecompressParam, thread_count);
2010 compressed_data_buf = g_malloc0(compressBound(TARGET_PAGE_SIZE));
2011 quit_decomp_thread = false;
2012 for (i = 0; i < thread_count; i++) {
2013 qemu_mutex_init(&decomp_param[i].mutex);
2014 qemu_cond_init(&decomp_param[i].cond);
2015 decomp_param[i].compbuf = g_malloc0(compressBound(TARGET_PAGE_SIZE));
2016 qemu_thread_create(decompress_threads + i, "decompress",
2017 do_data_decompress, decomp_param + i,
2018 QEMU_THREAD_JOINABLE);
2022 void migrate_decompress_threads_join(void)
2024 int i, thread_count;
2026 quit_decomp_thread = true;
2027 thread_count = migrate_decompress_threads();
2028 for (i = 0; i < thread_count; i++) {
2029 qemu_mutex_lock(&decomp_param[i].mutex);
2030 qemu_cond_signal(&decomp_param[i].cond);
2031 qemu_mutex_unlock(&decomp_param[i].mutex);
2033 for (i = 0; i < thread_count; i++) {
2034 qemu_thread_join(decompress_threads + i);
2035 qemu_mutex_destroy(&decomp_param[i].mutex);
2036 qemu_cond_destroy(&decomp_param[i].cond);
2037 g_free(decomp_param[i].compbuf);
2039 g_free(decompress_threads);
2040 g_free(decomp_param);
2041 g_free(compressed_data_buf);
2042 decompress_threads = NULL;
2043 decomp_param = NULL;
2044 compressed_data_buf = NULL;
2047 static void decompress_data_with_multi_threads(uint8_t *compbuf,
2048 void *host, int len)
2050 int idx, thread_count;
2052 thread_count = migrate_decompress_threads();
2053 while (true) {
2054 for (idx = 0; idx < thread_count; idx++) {
2055 if (!decomp_param[idx].start) {
2056 memcpy(decomp_param[idx].compbuf, compbuf, len);
2057 decomp_param[idx].des = host;
2058 decomp_param[idx].len = len;
2059 start_decompression(&decomp_param[idx]);
2060 break;
2063 if (idx < thread_count) {
2064 break;
2070 * Allocate data structures etc needed by incoming migration with postcopy-ram
2071 * postcopy-ram's similarly names postcopy_ram_incoming_init does the work
2073 int ram_postcopy_incoming_init(MigrationIncomingState *mis)
2075 size_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS;
2077 return postcopy_ram_incoming_init(mis, ram_pages);
2080 static int ram_load(QEMUFile *f, void *opaque, int version_id)
2082 int flags = 0, ret = 0;
2083 static uint64_t seq_iter;
2084 int len = 0;
2086 seq_iter++;
2088 if (version_id != 4) {
2089 ret = -EINVAL;
2092 /* This RCU critical section can be very long running.
2093 * When RCU reclaims in the code start to become numerous,
2094 * it will be necessary to reduce the granularity of this
2095 * critical section.
2097 rcu_read_lock();
2098 while (!ret && !(flags & RAM_SAVE_FLAG_EOS)) {
2099 ram_addr_t addr, total_ram_bytes;
2100 void *host = NULL;
2101 uint8_t ch;
2103 addr = qemu_get_be64(f);
2104 flags = addr & ~TARGET_PAGE_MASK;
2105 addr &= TARGET_PAGE_MASK;
2107 if (flags & (RAM_SAVE_FLAG_COMPRESS | RAM_SAVE_FLAG_PAGE |
2108 RAM_SAVE_FLAG_COMPRESS_PAGE | RAM_SAVE_FLAG_XBZRLE)) {
2109 host = host_from_stream_offset(f, addr, flags);
2110 if (!host) {
2111 error_report("Illegal RAM offset " RAM_ADDR_FMT, addr);
2112 ret = -EINVAL;
2113 break;
2117 switch (flags & ~RAM_SAVE_FLAG_CONTINUE) {
2118 case RAM_SAVE_FLAG_MEM_SIZE:
2119 /* Synchronize RAM block list */
2120 total_ram_bytes = addr;
2121 while (!ret && total_ram_bytes) {
2122 RAMBlock *block;
2123 char id[256];
2124 ram_addr_t length;
2126 len = qemu_get_byte(f);
2127 qemu_get_buffer(f, (uint8_t *)id, len);
2128 id[len] = 0;
2129 length = qemu_get_be64(f);
2131 block = qemu_ram_block_by_name(id);
2132 if (block) {
2133 if (length != block->used_length) {
2134 Error *local_err = NULL;
2136 ret = qemu_ram_resize(block->offset, length,
2137 &local_err);
2138 if (local_err) {
2139 error_report_err(local_err);
2142 ram_control_load_hook(f, RAM_CONTROL_BLOCK_REG,
2143 block->idstr);
2144 } else {
2145 error_report("Unknown ramblock \"%s\", cannot "
2146 "accept migration", id);
2147 ret = -EINVAL;
2150 total_ram_bytes -= length;
2152 break;
2154 case RAM_SAVE_FLAG_COMPRESS:
2155 ch = qemu_get_byte(f);
2156 ram_handle_compressed(host, ch, TARGET_PAGE_SIZE);
2157 break;
2159 case RAM_SAVE_FLAG_PAGE:
2160 qemu_get_buffer(f, host, TARGET_PAGE_SIZE);
2161 break;
2163 case RAM_SAVE_FLAG_COMPRESS_PAGE:
2164 len = qemu_get_be32(f);
2165 if (len < 0 || len > compressBound(TARGET_PAGE_SIZE)) {
2166 error_report("Invalid compressed data length: %d", len);
2167 ret = -EINVAL;
2168 break;
2170 qemu_get_buffer(f, compressed_data_buf, len);
2171 decompress_data_with_multi_threads(compressed_data_buf, host, len);
2172 break;
2174 case RAM_SAVE_FLAG_XBZRLE:
2175 if (load_xbzrle(f, addr, host) < 0) {
2176 error_report("Failed to decompress XBZRLE page at "
2177 RAM_ADDR_FMT, addr);
2178 ret = -EINVAL;
2179 break;
2181 break;
2182 case RAM_SAVE_FLAG_EOS:
2183 /* normal exit */
2184 break;
2185 default:
2186 if (flags & RAM_SAVE_FLAG_HOOK) {
2187 ram_control_load_hook(f, RAM_CONTROL_HOOK, NULL);
2188 } else {
2189 error_report("Unknown combination of migration flags: %#x",
2190 flags);
2191 ret = -EINVAL;
2194 if (!ret) {
2195 ret = qemu_file_get_error(f);
2199 rcu_read_unlock();
2200 DPRINTF("Completed load of VM with exit code %d seq iteration "
2201 "%" PRIu64 "\n", ret, seq_iter);
2202 return ret;
2205 static SaveVMHandlers savevm_ram_handlers = {
2206 .save_live_setup = ram_save_setup,
2207 .save_live_iterate = ram_save_iterate,
2208 .save_live_complete_postcopy = ram_save_complete,
2209 .save_live_complete_precopy = ram_save_complete,
2210 .save_live_pending = ram_save_pending,
2211 .load_state = ram_load,
2212 .cleanup = ram_migration_cleanup,
2215 void ram_mig_init(void)
2217 qemu_mutex_init(&XBZRLE.lock);
2218 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);