2 * Block dirty bitmap postcopy migration
4 * Copyright IBM, Corp. 2009
5 * Copyright (c) 2016-2017 Virtuozzo International GmbH. All rights reserved.
8 * Liran Schour <lirans@il.ibm.com>
9 * Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 * This file is derived from migration/block.c, so it's author and IBM copyright
14 * are here, although content is quite different.
16 * Contributions after 2012-01-13 are licensed under the terms of the
17 * GNU GPL, version 2 or (at your option) any later version.
21 * Here postcopy migration of dirty bitmaps is realized. Only QMP-addressable
22 * bitmaps are migrated.
24 * Bitmap migration implies creating bitmap with the same name and granularity
25 * in destination QEMU. If the bitmap with the same name (for the same node)
26 * already exists on destination an error will be generated.
28 * format of migration:
30 * # Header (shared for different chunk types)
31 * 1, 2 or 4 bytes: flags (see qemu_{put,put}_flags)
32 * [ 1 byte: node alias size ] \ flags & DEVICE_NAME
33 * [ n bytes: node alias ] /
34 * [ 1 byte: bitmap alias size ] \ flags & BITMAP_NAME
35 * [ n bytes: bitmap alias ] /
37 * # Start of bitmap migration (flags & START)
40 * 1 byte: bitmap flags (corresponds to BdrvDirtyBitmap)
41 * bit 0 - bitmap is enabled
42 * bit 1 - bitmap is persistent
43 * bit 2 - bitmap is autoloading
44 * bits 3-7 - reserved, must be zero
46 * # Complete of bitmap migration (flags & COMPLETE)
49 * # Data chunk of bitmap migration
52 * be32: number of sectors
53 * [ be64: buffer size ] \ ! (flags & ZEROES)
54 * [ n bytes: buffer ] /
56 * The last chunk in stream should contain flags & EOS. The chunk may skip
57 * device and/or bitmap names, assuming them to be the same with the previous
61 #include "qemu/osdep.h"
62 #include "block/block.h"
63 #include "block/block_int.h"
64 #include "sysemu/block-backend.h"
65 #include "sysemu/runstate.h"
66 #include "qemu/main-loop.h"
67 #include "qemu/error-report.h"
68 #include "migration/misc.h"
69 #include "migration/migration.h"
70 #include "qemu-file.h"
71 #include "migration/vmstate.h"
72 #include "migration/register.h"
73 #include "qemu/hbitmap.h"
74 #include "qemu/cutils.h"
76 #include "qapi/error.h"
77 #include "qapi/qapi-commands-migration.h"
80 #define CHUNK_SIZE (1 << 10)
82 /* Flags occupy one, two or four bytes (Big Endian). The size is determined as
84 * in first (most significant) byte bit 8 is clear --> one byte
85 * in first byte bit 8 is set --> two or four bytes, depending on second
87 * | in second byte bit 8 is clear --> two bytes
88 * | in second byte bit 8 is set --> four bytes
90 #define DIRTY_BITMAP_MIG_FLAG_EOS 0x01
91 #define DIRTY_BITMAP_MIG_FLAG_ZEROES 0x02
92 #define DIRTY_BITMAP_MIG_FLAG_BITMAP_NAME 0x04
93 #define DIRTY_BITMAP_MIG_FLAG_DEVICE_NAME 0x08
94 #define DIRTY_BITMAP_MIG_FLAG_START 0x10
95 #define DIRTY_BITMAP_MIG_FLAG_COMPLETE 0x20
96 #define DIRTY_BITMAP_MIG_FLAG_BITS 0x40
98 #define DIRTY_BITMAP_MIG_EXTRA_FLAGS 0x80
100 #define DIRTY_BITMAP_MIG_START_FLAG_ENABLED 0x01
101 #define DIRTY_BITMAP_MIG_START_FLAG_PERSISTENT 0x02
102 /* 0x04 was "AUTOLOAD" flags on older versions, now it is ignored */
103 #define DIRTY_BITMAP_MIG_START_FLAG_RESERVED_MASK 0xf8
105 /* State of one bitmap during save process */
106 typedef struct SaveBitmapState
{
107 /* Written during setup phase. */
108 BlockDriverState
*bs
;
111 BdrvDirtyBitmap
*bitmap
;
112 uint64_t total_sectors
;
113 uint64_t sectors_per_chunk
;
114 QSIMPLEQ_ENTRY(SaveBitmapState
) entry
;
117 /* For bulk phase. */
122 /* State of the dirty bitmap migration (DBM) during save process */
123 typedef struct DBMSaveState
{
124 QSIMPLEQ_HEAD(, SaveBitmapState
) dbms_list
;
129 /* for send_bitmap_bits() */
130 BlockDriverState
*prev_bs
;
131 BdrvDirtyBitmap
*prev_bitmap
;
134 typedef struct LoadBitmapState
{
135 BlockDriverState
*bs
;
136 BdrvDirtyBitmap
*bitmap
;
141 /* State of the dirty bitmap migration (DBM) during load process */
142 typedef struct DBMLoadState
{
144 char node_alias
[256];
145 char bitmap_alias
[256];
146 char bitmap_name
[BDRV_BITMAP_MAX_NAME_SIZE
+ 1];
147 BlockDriverState
*bs
;
148 BdrvDirtyBitmap
*bitmap
;
150 bool before_vm_start_handled
; /* set in dirty_bitmap_mig_before_vm_start */
154 * Incoming migration is cancelled for some reason. That means that we
155 * still should read our chunks from migration stream, to not affect other
156 * migration objects (like RAM), but just ignore them and do not touch any
162 QemuMutex lock
; /* protect bitmaps */
165 typedef struct DBMState
{
170 static DBMState dbm_state
;
172 /* For hash tables that map node/bitmap names to aliases */
173 typedef struct AliasMapInnerNode
{
178 static void free_alias_map_inner_node(void *amin_ptr
)
180 AliasMapInnerNode
*amin
= amin_ptr
;
182 g_free(amin
->string
);
183 g_hash_table_unref(amin
->subtree
);
188 * Construct an alias map based on the given QMP structure.
190 * (Note that we cannot store such maps in the MigrationParameters
191 * object, because that struct is defined by the QAPI schema, which
192 * makes it basically impossible to have dicts with arbitrary keys.
193 * Therefore, we instead have to construct these maps when migration
196 * @bbm is the block_bitmap_mapping from the migration parameters.
198 * If @name_to_alias is true, the returned hash table will map node
199 * and bitmap names to their respective aliases (for outgoing
202 * If @name_to_alias is false, the returned hash table will map node
203 * and bitmap aliases to their respective names (for incoming
206 * The hash table maps node names/aliases to AliasMapInnerNode
207 * objects, whose .string is the respective node alias/name, and whose
208 * .subtree table maps bitmap names/aliases to the respective bitmap
211 static GHashTable
*construct_alias_map(const BitmapMigrationNodeAliasList
*bbm
,
215 GHashTable
*alias_map
;
216 size_t max_node_name_len
= sizeof_field(BlockDriverState
, node_name
) - 1;
218 alias_map
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
219 g_free
, free_alias_map_inner_node
);
221 for (; bbm
; bbm
= bbm
->next
) {
222 const BitmapMigrationNodeAlias
*bmna
= bbm
->value
;
223 const BitmapMigrationBitmapAliasList
*bmbal
;
224 AliasMapInnerNode
*amin
;
225 GHashTable
*bitmaps_map
;
226 const char *node_map_from
, *node_map_to
;
228 if (!id_wellformed(bmna
->alias
)) {
229 error_setg(errp
, "The node alias '%s' is not well-formed",
234 if (strlen(bmna
->alias
) > UINT8_MAX
) {
235 error_setg(errp
, "The node alias '%s' is longer than %u bytes",
236 bmna
->alias
, UINT8_MAX
);
240 if (strlen(bmna
->node_name
) > max_node_name_len
) {
241 error_setg(errp
, "The node name '%s' is longer than %zu bytes",
242 bmna
->node_name
, max_node_name_len
);
247 if (g_hash_table_contains(alias_map
, bmna
->node_name
)) {
248 error_setg(errp
, "The node name '%s' is mapped twice",
253 node_map_from
= bmna
->node_name
;
254 node_map_to
= bmna
->alias
;
256 if (g_hash_table_contains(alias_map
, bmna
->alias
)) {
257 error_setg(errp
, "The node alias '%s' is used twice",
262 node_map_from
= bmna
->alias
;
263 node_map_to
= bmna
->node_name
;
266 bitmaps_map
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
269 amin
= g_new(AliasMapInnerNode
, 1);
270 *amin
= (AliasMapInnerNode
){
271 .string
= g_strdup(node_map_to
),
272 .subtree
= bitmaps_map
,
275 g_hash_table_insert(alias_map
, g_strdup(node_map_from
), amin
);
277 for (bmbal
= bmna
->bitmaps
; bmbal
; bmbal
= bmbal
->next
) {
278 const BitmapMigrationBitmapAlias
*bmba
= bmbal
->value
;
279 const char *bmap_map_from
, *bmap_map_to
;
281 if (strlen(bmba
->alias
) > UINT8_MAX
) {
283 "The bitmap alias '%s' is longer than %u bytes",
284 bmba
->alias
, UINT8_MAX
);
288 if (strlen(bmba
->name
) > BDRV_BITMAP_MAX_NAME_SIZE
) {
289 error_setg(errp
, "The bitmap name '%s' is longer than %d bytes",
290 bmba
->name
, BDRV_BITMAP_MAX_NAME_SIZE
);
295 bmap_map_from
= bmba
->name
;
296 bmap_map_to
= bmba
->alias
;
298 if (g_hash_table_contains(bitmaps_map
, bmba
->name
)) {
299 error_setg(errp
, "The bitmap '%s'/'%s' is mapped twice",
300 bmna
->node_name
, bmba
->name
);
304 bmap_map_from
= bmba
->alias
;
305 bmap_map_to
= bmba
->name
;
307 if (g_hash_table_contains(bitmaps_map
, bmba
->alias
)) {
308 error_setg(errp
, "The bitmap alias '%s'/'%s' is used twice",
309 bmna
->alias
, bmba
->alias
);
314 g_hash_table_insert(bitmaps_map
,
315 g_strdup(bmap_map_from
), g_strdup(bmap_map_to
));
322 g_hash_table_destroy(alias_map
);
327 * Run construct_alias_map() in both directions to check whether @bbm
329 * (This function is to be used by migration/migration.c to validate
330 * the user-specified block-bitmap-mapping migration parameter.)
332 * Returns true if and only if the mapping is valid.
334 bool check_dirty_bitmap_mig_alias_map(const BitmapMigrationNodeAliasList
*bbm
,
337 GHashTable
*alias_map
;
339 alias_map
= construct_alias_map(bbm
, true, errp
);
343 g_hash_table_destroy(alias_map
);
345 alias_map
= construct_alias_map(bbm
, false, errp
);
349 g_hash_table_destroy(alias_map
);
354 static uint32_t qemu_get_bitmap_flags(QEMUFile
*f
)
356 uint8_t flags
= qemu_get_byte(f
);
357 if (flags
& DIRTY_BITMAP_MIG_EXTRA_FLAGS
) {
358 flags
= flags
<< 8 | qemu_get_byte(f
);
359 if (flags
& DIRTY_BITMAP_MIG_EXTRA_FLAGS
) {
360 flags
= flags
<< 16 | qemu_get_be16(f
);
367 static void qemu_put_bitmap_flags(QEMUFile
*f
, uint32_t flags
)
369 /* The code currently does not send flags as more than one byte */
370 assert(!(flags
& (0xffffff00 | DIRTY_BITMAP_MIG_EXTRA_FLAGS
)));
372 qemu_put_byte(f
, flags
);
375 static void send_bitmap_header(QEMUFile
*f
, DBMSaveState
*s
,
376 SaveBitmapState
*dbms
, uint32_t additional_flags
)
378 BlockDriverState
*bs
= dbms
->bs
;
379 BdrvDirtyBitmap
*bitmap
= dbms
->bitmap
;
380 uint32_t flags
= additional_flags
;
381 trace_send_bitmap_header_enter();
383 if (bs
!= s
->prev_bs
) {
385 flags
|= DIRTY_BITMAP_MIG_FLAG_DEVICE_NAME
;
388 if (bitmap
!= s
->prev_bitmap
) {
389 s
->prev_bitmap
= bitmap
;
390 flags
|= DIRTY_BITMAP_MIG_FLAG_BITMAP_NAME
;
393 qemu_put_bitmap_flags(f
, flags
);
395 if (flags
& DIRTY_BITMAP_MIG_FLAG_DEVICE_NAME
) {
396 qemu_put_counted_string(f
, dbms
->node_alias
);
399 if (flags
& DIRTY_BITMAP_MIG_FLAG_BITMAP_NAME
) {
400 qemu_put_counted_string(f
, dbms
->bitmap_alias
);
404 static void send_bitmap_start(QEMUFile
*f
, DBMSaveState
*s
,
405 SaveBitmapState
*dbms
)
407 send_bitmap_header(f
, s
, dbms
, DIRTY_BITMAP_MIG_FLAG_START
);
408 qemu_put_be32(f
, bdrv_dirty_bitmap_granularity(dbms
->bitmap
));
409 qemu_put_byte(f
, dbms
->flags
);
412 static void send_bitmap_complete(QEMUFile
*f
, DBMSaveState
*s
,
413 SaveBitmapState
*dbms
)
415 send_bitmap_header(f
, s
, dbms
, DIRTY_BITMAP_MIG_FLAG_COMPLETE
);
418 static void send_bitmap_bits(QEMUFile
*f
, DBMSaveState
*s
,
419 SaveBitmapState
*dbms
,
420 uint64_t start_sector
, uint32_t nr_sectors
)
422 /* align for buffer_is_zero() */
423 uint64_t align
= 4 * sizeof(long);
424 uint64_t unaligned_size
=
425 bdrv_dirty_bitmap_serialization_size(
426 dbms
->bitmap
, start_sector
<< BDRV_SECTOR_BITS
,
427 (uint64_t)nr_sectors
<< BDRV_SECTOR_BITS
);
428 uint64_t buf_size
= QEMU_ALIGN_UP(unaligned_size
, align
);
429 uint8_t *buf
= g_malloc0(buf_size
);
430 uint32_t flags
= DIRTY_BITMAP_MIG_FLAG_BITS
;
432 bdrv_dirty_bitmap_serialize_part(
433 dbms
->bitmap
, buf
, start_sector
<< BDRV_SECTOR_BITS
,
434 (uint64_t)nr_sectors
<< BDRV_SECTOR_BITS
);
436 if (buffer_is_zero(buf
, buf_size
)) {
439 flags
|= DIRTY_BITMAP_MIG_FLAG_ZEROES
;
442 trace_send_bitmap_bits(flags
, start_sector
, nr_sectors
, buf_size
);
444 send_bitmap_header(f
, s
, dbms
, flags
);
446 qemu_put_be64(f
, start_sector
);
447 qemu_put_be32(f
, nr_sectors
);
449 /* if a block is zero we need to flush here since the network
450 * bandwidth is now a lot higher than the storage device bandwidth.
451 * thus if we queue zero blocks we slow down the migration. */
452 if (flags
& DIRTY_BITMAP_MIG_FLAG_ZEROES
) {
455 qemu_put_be64(f
, buf_size
);
456 qemu_put_buffer(f
, buf
, buf_size
);
462 /* Called with iothread lock taken. */
463 static void dirty_bitmap_do_save_cleanup(DBMSaveState
*s
)
465 SaveBitmapState
*dbms
;
467 while ((dbms
= QSIMPLEQ_FIRST(&s
->dbms_list
)) != NULL
) {
468 QSIMPLEQ_REMOVE_HEAD(&s
->dbms_list
, entry
);
469 bdrv_dirty_bitmap_set_busy(dbms
->bitmap
, false);
470 bdrv_unref(dbms
->bs
);
471 g_free(dbms
->node_alias
);
472 g_free(dbms
->bitmap_alias
);
477 /* Called with iothread lock taken. */
478 static int add_bitmaps_to_list(DBMSaveState
*s
, BlockDriverState
*bs
,
479 const char *bs_name
, GHashTable
*alias_map
)
481 BdrvDirtyBitmap
*bitmap
;
482 SaveBitmapState
*dbms
;
483 GHashTable
*bitmap_aliases
;
484 const char *node_alias
, *bitmap_name
, *bitmap_alias
;
485 Error
*local_err
= NULL
;
487 /* When an alias map is given, @bs_name must be @bs's node name */
488 assert(!alias_map
|| !strcmp(bs_name
, bdrv_get_node_name(bs
)));
490 FOR_EACH_DIRTY_BITMAP(bs
, bitmap
) {
491 if (bdrv_dirty_bitmap_name(bitmap
)) {
499 bitmap_name
= bdrv_dirty_bitmap_name(bitmap
);
501 if (!bs_name
|| strcmp(bs_name
, "") == 0) {
502 error_report("Bitmap '%s' in unnamed node can't be migrated",
508 const AliasMapInnerNode
*amin
= g_hash_table_lookup(alias_map
, bs_name
);
511 /* Skip bitmaps on nodes with no alias */
515 node_alias
= amin
->string
;
516 bitmap_aliases
= amin
->subtree
;
518 node_alias
= bs_name
;
519 bitmap_aliases
= NULL
;
522 if (node_alias
[0] == '#') {
523 error_report("Bitmap '%s' in a node with auto-generated "
524 "name '%s' can't be migrated",
525 bitmap_name
, node_alias
);
529 FOR_EACH_DIRTY_BITMAP(bs
, bitmap
) {
530 bitmap_name
= bdrv_dirty_bitmap_name(bitmap
);
535 if (bdrv_dirty_bitmap_check(bitmap
, BDRV_BITMAP_DEFAULT
, &local_err
)) {
536 error_report_err(local_err
);
540 if (bitmap_aliases
) {
541 bitmap_alias
= g_hash_table_lookup(bitmap_aliases
, bitmap_name
);
543 /* Skip bitmaps with no alias */
547 if (strlen(bitmap_name
) > UINT8_MAX
) {
548 error_report("Cannot migrate bitmap '%s' on node '%s': "
549 "Name is longer than %u bytes",
550 bitmap_name
, bs_name
, UINT8_MAX
);
553 bitmap_alias
= bitmap_name
;
557 bdrv_dirty_bitmap_set_busy(bitmap
, true);
559 dbms
= g_new0(SaveBitmapState
, 1);
561 dbms
->node_alias
= g_strdup(node_alias
);
562 dbms
->bitmap_alias
= g_strdup(bitmap_alias
);
563 dbms
->bitmap
= bitmap
;
564 dbms
->total_sectors
= bdrv_nb_sectors(bs
);
565 dbms
->sectors_per_chunk
= CHUNK_SIZE
* 8LLU *
566 (bdrv_dirty_bitmap_granularity(bitmap
) >> BDRV_SECTOR_BITS
);
567 assert(dbms
->sectors_per_chunk
!= 0);
568 if (bdrv_dirty_bitmap_enabled(bitmap
)) {
569 dbms
->flags
|= DIRTY_BITMAP_MIG_START_FLAG_ENABLED
;
571 if (bdrv_dirty_bitmap_get_persistence(bitmap
)) {
572 dbms
->flags
|= DIRTY_BITMAP_MIG_START_FLAG_PERSISTENT
;
575 QSIMPLEQ_INSERT_TAIL(&s
->dbms_list
, dbms
, entry
);
581 /* Called with iothread lock taken. */
582 static int init_dirty_bitmap_migration(DBMSaveState
*s
)
584 BlockDriverState
*bs
;
585 SaveBitmapState
*dbms
;
586 GHashTable
*handled_by_blk
= g_hash_table_new(NULL
, NULL
);
588 const MigrationParameters
*mig_params
= &migrate_get_current()->parameters
;
589 GHashTable
*alias_map
= NULL
;
591 if (mig_params
->has_block_bitmap_mapping
) {
592 alias_map
= construct_alias_map(mig_params
->block_bitmap_mapping
, true,
596 s
->bulk_completed
= false;
598 s
->prev_bitmap
= NULL
;
599 s
->no_bitmaps
= false;
603 * Use blockdevice name for direct (or filtered) children of named block
606 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
607 const char *name
= blk_name(blk
);
609 if (!name
|| strcmp(name
, "") == 0) {
615 /* Skip filters without bitmaps */
616 while (bs
&& bs
->drv
&& bs
->drv
->is_filter
&&
617 !bdrv_has_named_bitmaps(bs
))
619 bs
= bdrv_filter_bs(bs
);
622 if (bs
&& bs
->drv
&& !bs
->drv
->is_filter
) {
623 if (add_bitmaps_to_list(s
, bs
, name
, NULL
)) {
626 g_hash_table_add(handled_by_blk
, bs
);
631 for (bs
= bdrv_next_all_states(NULL
); bs
; bs
= bdrv_next_all_states(bs
)) {
632 if (g_hash_table_contains(handled_by_blk
, bs
)) {
636 if (add_bitmaps_to_list(s
, bs
, bdrv_get_node_name(bs
), alias_map
)) {
641 /* unset migration flags here, to not roll back it */
642 QSIMPLEQ_FOREACH(dbms
, &s
->dbms_list
, entry
) {
643 bdrv_dirty_bitmap_skip_store(dbms
->bitmap
, true);
646 if (QSIMPLEQ_EMPTY(&s
->dbms_list
)) {
647 s
->no_bitmaps
= true;
650 g_hash_table_destroy(handled_by_blk
);
652 g_hash_table_destroy(alias_map
);
658 g_hash_table_destroy(handled_by_blk
);
660 g_hash_table_destroy(alias_map
);
662 dirty_bitmap_do_save_cleanup(s
);
667 /* Called with no lock taken. */
668 static void bulk_phase_send_chunk(QEMUFile
*f
, DBMSaveState
*s
,
669 SaveBitmapState
*dbms
)
671 uint32_t nr_sectors
= MIN(dbms
->total_sectors
- dbms
->cur_sector
,
672 dbms
->sectors_per_chunk
);
674 send_bitmap_bits(f
, s
, dbms
, dbms
->cur_sector
, nr_sectors
);
676 dbms
->cur_sector
+= nr_sectors
;
677 if (dbms
->cur_sector
>= dbms
->total_sectors
) {
678 dbms
->bulk_completed
= true;
682 /* Called with no lock taken. */
683 static void bulk_phase(QEMUFile
*f
, DBMSaveState
*s
, bool limit
)
685 SaveBitmapState
*dbms
;
687 QSIMPLEQ_FOREACH(dbms
, &s
->dbms_list
, entry
) {
688 while (!dbms
->bulk_completed
) {
689 bulk_phase_send_chunk(f
, s
, dbms
);
690 if (limit
&& qemu_file_rate_limit(f
)) {
696 s
->bulk_completed
= true;
699 /* for SaveVMHandlers */
700 static void dirty_bitmap_save_cleanup(void *opaque
)
702 DBMSaveState
*s
= &((DBMState
*)opaque
)->save
;
704 dirty_bitmap_do_save_cleanup(s
);
707 static int dirty_bitmap_save_iterate(QEMUFile
*f
, void *opaque
)
709 DBMSaveState
*s
= &((DBMState
*)opaque
)->save
;
711 trace_dirty_bitmap_save_iterate(migration_in_postcopy());
713 if (migration_in_postcopy() && !s
->bulk_completed
) {
714 bulk_phase(f
, s
, true);
717 qemu_put_bitmap_flags(f
, DIRTY_BITMAP_MIG_FLAG_EOS
);
719 return s
->bulk_completed
;
722 /* Called with iothread lock taken. */
724 static int dirty_bitmap_save_complete(QEMUFile
*f
, void *opaque
)
726 DBMSaveState
*s
= &((DBMState
*)opaque
)->save
;
727 SaveBitmapState
*dbms
;
728 trace_dirty_bitmap_save_complete_enter();
730 if (!s
->bulk_completed
) {
731 bulk_phase(f
, s
, false);
734 QSIMPLEQ_FOREACH(dbms
, &s
->dbms_list
, entry
) {
735 send_bitmap_complete(f
, s
, dbms
);
738 qemu_put_bitmap_flags(f
, DIRTY_BITMAP_MIG_FLAG_EOS
);
740 trace_dirty_bitmap_save_complete_finish();
742 dirty_bitmap_save_cleanup(opaque
);
746 static void dirty_bitmap_save_pending(QEMUFile
*f
, void *opaque
,
748 uint64_t *res_precopy_only
,
749 uint64_t *res_compatible
,
750 uint64_t *res_postcopy_only
)
752 DBMSaveState
*s
= &((DBMState
*)opaque
)->save
;
753 SaveBitmapState
*dbms
;
754 uint64_t pending
= 0;
756 qemu_mutex_lock_iothread();
758 QSIMPLEQ_FOREACH(dbms
, &s
->dbms_list
, entry
) {
759 uint64_t gran
= bdrv_dirty_bitmap_granularity(dbms
->bitmap
);
760 uint64_t sectors
= dbms
->bulk_completed
? 0 :
761 dbms
->total_sectors
- dbms
->cur_sector
;
763 pending
+= DIV_ROUND_UP(sectors
* BDRV_SECTOR_SIZE
, gran
);
766 qemu_mutex_unlock_iothread();
768 trace_dirty_bitmap_save_pending(pending
, max_size
);
770 *res_postcopy_only
+= pending
;
773 /* First occurrence of this bitmap. It should be created if doesn't exist */
774 static int dirty_bitmap_load_start(QEMUFile
*f
, DBMLoadState
*s
)
776 Error
*local_err
= NULL
;
777 uint32_t granularity
= qemu_get_be32(f
);
778 uint8_t flags
= qemu_get_byte(f
);
786 error_report("Bitmap with the same name ('%s') already exists on "
787 "destination", bdrv_dirty_bitmap_name(s
->bitmap
));
790 s
->bitmap
= bdrv_create_dirty_bitmap(s
->bs
, granularity
,
791 s
->bitmap_name
, &local_err
);
793 error_report_err(local_err
);
798 if (flags
& DIRTY_BITMAP_MIG_START_FLAG_RESERVED_MASK
) {
799 error_report("Unknown flags in migrated dirty bitmap header: %x",
804 if (flags
& DIRTY_BITMAP_MIG_START_FLAG_PERSISTENT
) {
805 bdrv_dirty_bitmap_set_persistence(s
->bitmap
, true);
808 bdrv_disable_dirty_bitmap(s
->bitmap
);
809 if (flags
& DIRTY_BITMAP_MIG_START_FLAG_ENABLED
) {
810 bdrv_dirty_bitmap_create_successor(s
->bitmap
, &local_err
);
812 error_report_err(local_err
);
817 b
= g_new(LoadBitmapState
, 1);
819 b
->bitmap
= s
->bitmap
;
821 b
->enabled
= flags
& DIRTY_BITMAP_MIG_START_FLAG_ENABLED
;
823 s
->bitmaps
= g_slist_prepend(s
->bitmaps
, b
);
829 * before_vm_start_handle_item
831 * g_slist_foreach helper
833 * item is LoadBitmapState*
834 * opaque is DBMLoadState*
836 static void before_vm_start_handle_item(void *item
, void *opaque
)
838 DBMLoadState
*s
= opaque
;
839 LoadBitmapState
*b
= item
;
843 bdrv_enable_dirty_bitmap(b
->bitmap
);
845 bdrv_dirty_bitmap_enable_successor(b
->bitmap
);
850 s
->bitmaps
= g_slist_remove(s
->bitmaps
, b
);
855 void dirty_bitmap_mig_before_vm_start(void)
857 DBMLoadState
*s
= &dbm_state
.load
;
858 qemu_mutex_lock(&s
->lock
);
860 assert(!s
->before_vm_start_handled
);
861 g_slist_foreach(s
->bitmaps
, before_vm_start_handle_item
, s
);
862 s
->before_vm_start_handled
= true;
864 qemu_mutex_unlock(&s
->lock
);
867 static void cancel_incoming_locked(DBMLoadState
*s
)
879 /* Drop all unfinished bitmaps */
880 for (item
= s
->bitmaps
; item
; item
= g_slist_next(item
)) {
881 LoadBitmapState
*b
= item
->data
;
884 * Bitmap must be unfinished, as finished bitmaps should already be
885 * removed from the list.
887 assert(!s
->before_vm_start_handled
|| !b
->migrated
);
888 if (bdrv_dirty_bitmap_has_successor(b
->bitmap
)) {
889 bdrv_reclaim_dirty_bitmap(b
->bitmap
, &error_abort
);
891 bdrv_release_dirty_bitmap(b
->bitmap
);
894 g_slist_free_full(s
->bitmaps
, g_free
);
898 void dirty_bitmap_mig_cancel_outgoing(void)
900 dirty_bitmap_do_save_cleanup(&dbm_state
.save
);
903 void dirty_bitmap_mig_cancel_incoming(void)
905 DBMLoadState
*s
= &dbm_state
.load
;
907 qemu_mutex_lock(&s
->lock
);
909 cancel_incoming_locked(s
);
911 qemu_mutex_unlock(&s
->lock
);
914 static void dirty_bitmap_load_complete(QEMUFile
*f
, DBMLoadState
*s
)
917 trace_dirty_bitmap_load_complete();
923 bdrv_dirty_bitmap_deserialize_finish(s
->bitmap
);
925 if (bdrv_dirty_bitmap_has_successor(s
->bitmap
)) {
926 bdrv_reclaim_dirty_bitmap(s
->bitmap
, &error_abort
);
929 for (item
= s
->bitmaps
; item
; item
= g_slist_next(item
)) {
930 LoadBitmapState
*b
= item
->data
;
932 if (b
->bitmap
== s
->bitmap
) {
934 if (s
->before_vm_start_handled
) {
935 s
->bitmaps
= g_slist_remove(s
->bitmaps
, b
);
943 static int dirty_bitmap_load_bits(QEMUFile
*f
, DBMLoadState
*s
)
945 uint64_t first_byte
= qemu_get_be64(f
) << BDRV_SECTOR_BITS
;
946 uint64_t nr_bytes
= (uint64_t)qemu_get_be32(f
) << BDRV_SECTOR_BITS
;
947 trace_dirty_bitmap_load_bits_enter(first_byte
>> BDRV_SECTOR_BITS
,
948 nr_bytes
>> BDRV_SECTOR_BITS
);
950 if (s
->flags
& DIRTY_BITMAP_MIG_FLAG_ZEROES
) {
951 trace_dirty_bitmap_load_bits_zeroes();
953 bdrv_dirty_bitmap_deserialize_zeroes(s
->bitmap
, first_byte
,
958 g_autofree
uint8_t *buf
= NULL
;
959 uint64_t buf_size
= qemu_get_be64(f
);
960 uint64_t needed_size
;
963 * The actual check for buf_size is done a bit later. We can't do it in
964 * cancelled mode as we don't have the bitmap to check the constraints
965 * (so, we allocate a buffer and read prior to the check). On the other
966 * hand, we shouldn't blindly g_malloc the number from the stream.
967 * Actually one chunk should not be larger than CHUNK_SIZE. Let's allow
968 * a bit larger (which means that bitmap migration will fail anyway and
969 * the whole migration will most probably fail soon due to broken
972 if (buf_size
> 10 * CHUNK_SIZE
) {
973 error_report("Bitmap migration stream buffer allocation request "
978 buf
= g_malloc(buf_size
);
979 ret
= qemu_get_buffer(f
, buf
, buf_size
);
980 if (ret
!= buf_size
) {
981 error_report("Failed to read bitmap bits");
989 needed_size
= bdrv_dirty_bitmap_serialization_size(s
->bitmap
,
993 if (needed_size
> buf_size
||
994 buf_size
> QEMU_ALIGN_UP(needed_size
, 4 * sizeof(long))
995 /* Here used same alignment as in send_bitmap_bits */
997 error_report("Migrated bitmap granularity doesn't "
998 "match the destination bitmap '%s' granularity",
999 bdrv_dirty_bitmap_name(s
->bitmap
));
1000 cancel_incoming_locked(s
);
1004 bdrv_dirty_bitmap_deserialize_part(s
->bitmap
, buf
, first_byte
, nr_bytes
,
1011 static int dirty_bitmap_load_header(QEMUFile
*f
, DBMLoadState
*s
,
1012 GHashTable
*alias_map
)
1014 GHashTable
*bitmap_alias_map
= NULL
;
1015 Error
*local_err
= NULL
;
1017 s
->flags
= qemu_get_bitmap_flags(f
);
1018 trace_dirty_bitmap_load_header(s
->flags
);
1020 nothing
= s
->flags
== (s
->flags
& DIRTY_BITMAP_MIG_FLAG_EOS
);
1022 if (s
->flags
& DIRTY_BITMAP_MIG_FLAG_DEVICE_NAME
) {
1023 if (!qemu_get_counted_string(f
, s
->node_alias
)) {
1024 error_report("Unable to read node alias string");
1028 if (!s
->cancelled
) {
1030 const AliasMapInnerNode
*amin
;
1032 amin
= g_hash_table_lookup(alias_map
, s
->node_alias
);
1034 error_setg(&local_err
, "Error: Unknown node alias '%s'",
1038 bitmap_alias_map
= amin
->subtree
;
1039 s
->bs
= bdrv_lookup_bs(NULL
, amin
->string
, &local_err
);
1042 s
->bs
= bdrv_lookup_bs(s
->node_alias
, s
->node_alias
,
1046 error_report_err(local_err
);
1047 cancel_incoming_locked(s
);
1052 const AliasMapInnerNode
*amin
;
1054 /* Must be present in the map, or s->bs would not be set */
1055 amin
= g_hash_table_lookup(alias_map
, s
->node_alias
);
1056 assert(amin
!= NULL
);
1058 bitmap_alias_map
= amin
->subtree
;
1060 } else if (!nothing
&& !s
->cancelled
) {
1061 error_report("Error: block device name is not set");
1062 cancel_incoming_locked(s
);
1065 assert(nothing
|| s
->cancelled
|| !!alias_map
== !!bitmap_alias_map
);
1067 if (s
->flags
& DIRTY_BITMAP_MIG_FLAG_BITMAP_NAME
) {
1068 const char *bitmap_name
;
1070 if (!qemu_get_counted_string(f
, s
->bitmap_alias
)) {
1071 error_report("Unable to read bitmap alias string");
1075 bitmap_name
= s
->bitmap_alias
;
1076 if (!s
->cancelled
&& bitmap_alias_map
) {
1077 bitmap_name
= g_hash_table_lookup(bitmap_alias_map
,
1080 error_report("Error: Unknown bitmap alias '%s' on node "
1081 "'%s' (alias '%s')", s
->bitmap_alias
,
1082 s
->bs
->node_name
, s
->node_alias
);
1083 cancel_incoming_locked(s
);
1087 if (!s
->cancelled
) {
1088 g_strlcpy(s
->bitmap_name
, bitmap_name
, sizeof(s
->bitmap_name
));
1089 s
->bitmap
= bdrv_find_dirty_bitmap(s
->bs
, s
->bitmap_name
);
1092 * bitmap may be NULL here, it wouldn't be an error if it is the
1093 * first occurrence of the bitmap
1095 if (!s
->bitmap
&& !(s
->flags
& DIRTY_BITMAP_MIG_FLAG_START
)) {
1096 error_report("Error: unknown dirty bitmap "
1097 "'%s' for block device '%s'",
1098 s
->bitmap_name
, s
->bs
->node_name
);
1099 cancel_incoming_locked(s
);
1102 } else if (!s
->bitmap
&& !nothing
&& !s
->cancelled
) {
1103 error_report("Error: block device name is not set");
1104 cancel_incoming_locked(s
);
1113 * Load sequence of dirty bitmap chunks. Return error only on fatal io stream
1114 * violations. On other errors just cancel bitmaps incoming migration and return
1117 * Note, than when incoming bitmap migration is canceled, we still must read all
1118 * our chunks (and just ignore them), to not affect other migration objects.
1120 static int dirty_bitmap_load(QEMUFile
*f
, void *opaque
, int version_id
)
1122 GHashTable
*alias_map
= NULL
;
1123 const MigrationParameters
*mig_params
= &migrate_get_current()->parameters
;
1124 DBMLoadState
*s
= &((DBMState
*)opaque
)->load
;
1127 trace_dirty_bitmap_load_enter();
1129 if (version_id
!= 1) {
1130 QEMU_LOCK_GUARD(&s
->lock
);
1131 cancel_incoming_locked(s
);
1135 if (mig_params
->has_block_bitmap_mapping
) {
1136 alias_map
= construct_alias_map(mig_params
->block_bitmap_mapping
,
1137 false, &error_abort
);
1141 QEMU_LOCK_GUARD(&s
->lock
);
1143 ret
= dirty_bitmap_load_header(f
, s
, alias_map
);
1145 cancel_incoming_locked(s
);
1149 if (s
->flags
& DIRTY_BITMAP_MIG_FLAG_START
) {
1150 ret
= dirty_bitmap_load_start(f
, s
);
1151 } else if (s
->flags
& DIRTY_BITMAP_MIG_FLAG_COMPLETE
) {
1152 dirty_bitmap_load_complete(f
, s
);
1153 } else if (s
->flags
& DIRTY_BITMAP_MIG_FLAG_BITS
) {
1154 ret
= dirty_bitmap_load_bits(f
, s
);
1158 ret
= qemu_file_get_error(f
);
1162 cancel_incoming_locked(s
);
1165 } while (!(s
->flags
& DIRTY_BITMAP_MIG_FLAG_EOS
));
1167 trace_dirty_bitmap_load_success();
1171 g_hash_table_destroy(alias_map
);
1176 static int dirty_bitmap_save_setup(QEMUFile
*f
, void *opaque
)
1178 DBMSaveState
*s
= &((DBMState
*)opaque
)->save
;
1179 SaveBitmapState
*dbms
= NULL
;
1180 if (init_dirty_bitmap_migration(s
) < 0) {
1184 QSIMPLEQ_FOREACH(dbms
, &s
->dbms_list
, entry
) {
1185 send_bitmap_start(f
, s
, dbms
);
1187 qemu_put_bitmap_flags(f
, DIRTY_BITMAP_MIG_FLAG_EOS
);
1192 static bool dirty_bitmap_is_active(void *opaque
)
1194 DBMSaveState
*s
= &((DBMState
*)opaque
)->save
;
1196 return migrate_dirty_bitmaps() && !s
->no_bitmaps
;
1199 static bool dirty_bitmap_is_active_iterate(void *opaque
)
1201 return dirty_bitmap_is_active(opaque
) && !runstate_is_running();
1204 static bool dirty_bitmap_has_postcopy(void *opaque
)
1209 static SaveVMHandlers savevm_dirty_bitmap_handlers
= {
1210 .save_setup
= dirty_bitmap_save_setup
,
1211 .save_live_complete_postcopy
= dirty_bitmap_save_complete
,
1212 .save_live_complete_precopy
= dirty_bitmap_save_complete
,
1213 .has_postcopy
= dirty_bitmap_has_postcopy
,
1214 .save_live_pending
= dirty_bitmap_save_pending
,
1215 .save_live_iterate
= dirty_bitmap_save_iterate
,
1216 .is_active_iterate
= dirty_bitmap_is_active_iterate
,
1217 .load_state
= dirty_bitmap_load
,
1218 .save_cleanup
= dirty_bitmap_save_cleanup
,
1219 .is_active
= dirty_bitmap_is_active
,
1222 void dirty_bitmap_mig_init(void)
1224 QSIMPLEQ_INIT(&dbm_state
.save
.dbms_list
);
1225 qemu_mutex_init(&dbm_state
.load
.lock
);
1227 register_savevm_live("dirty-bitmap", 0, 1,
1228 &savevm_dirty_bitmap_handlers
,