2 * QEMU live block migration
4 * Copyright IBM, Corp. 2009
7 * Liran Schour <lirans@il.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "qemu/osdep.h"
17 #include "qapi/error.h"
18 #include "qemu/error-report.h"
19 #include "qemu/main-loop.h"
20 #include "qemu/cutils.h"
21 #include "qemu/queue.h"
23 #include "block/dirty-bitmap.h"
24 #include "migration/misc.h"
25 #include "migration.h"
26 #include "migration/register.h"
27 #include "qemu-file.h"
28 #include "migration/vmstate.h"
29 #include "sysemu/block-backend.h"
32 #define BLK_MIG_BLOCK_SIZE (1ULL << 20)
33 #define BDRV_SECTORS_PER_DIRTY_CHUNK (BLK_MIG_BLOCK_SIZE >> BDRV_SECTOR_BITS)
35 #define BLK_MIG_FLAG_DEVICE_BLOCK 0x01
36 #define BLK_MIG_FLAG_EOS 0x02
37 #define BLK_MIG_FLAG_PROGRESS 0x04
38 #define BLK_MIG_FLAG_ZERO_BLOCK 0x08
40 #define MAX_IS_ALLOCATED_SEARCH (65536 * BDRV_SECTOR_SIZE)
42 #define MAX_IO_BUFFERS 512
43 #define MAX_PARALLEL_IO 16
45 typedef struct BlkMigDevState
{
46 /* Written during setup phase. Can be read without a lock. */
50 int64_t total_sectors
;
51 QSIMPLEQ_ENTRY(BlkMigDevState
) entry
;
54 /* Only used by migration thread. Does not need a lock. */
59 /* Data in the aio_bitmap is protected by block migration lock.
60 * Allocation and free happen during setup and cleanup respectively.
62 unsigned long *aio_bitmap
;
64 /* Protected by block migration lock. */
65 int64_t completed_sectors
;
67 /* During migration this is protected by iothread lock / AioContext.
68 * Allocation and free happen during setup and cleanup respectively.
70 BdrvDirtyBitmap
*dirty_bitmap
;
73 typedef struct BlkMigBlock
{
74 /* Only used by migration thread. */
82 /* Protected by block migration lock. */
84 QSIMPLEQ_ENTRY(BlkMigBlock
) entry
;
87 typedef struct BlkMigState
{
88 QSIMPLEQ_HEAD(, BlkMigDevState
) bmds_list
;
89 int64_t total_sector_sum
;
92 /* Protected by lock. */
93 QSIMPLEQ_HEAD(, BlkMigBlock
) blk_list
;
97 /* Only used by migration thread. Does not need a lock. */
102 /* Lock must be taken _inside_ the iothread lock and any AioContexts. */
106 static BlkMigState block_mig_state
;
108 static void blk_mig_lock(void)
110 qemu_mutex_lock(&block_mig_state
.lock
);
113 static void blk_mig_unlock(void)
115 qemu_mutex_unlock(&block_mig_state
.lock
);
118 /* Must run outside of the iothread lock during the bulk phase,
119 * or the VM will stall.
122 static void blk_send(QEMUFile
*f
, BlkMigBlock
* blk
)
125 uint64_t flags
= BLK_MIG_FLAG_DEVICE_BLOCK
;
127 if (block_mig_state
.zero_blocks
&&
128 buffer_is_zero(blk
->buf
, BLK_MIG_BLOCK_SIZE
)) {
129 flags
|= BLK_MIG_FLAG_ZERO_BLOCK
;
132 /* sector number and flags */
133 qemu_put_be64(f
, (blk
->sector
<< BDRV_SECTOR_BITS
)
137 len
= strlen(blk
->bmds
->blk_name
);
138 qemu_put_byte(f
, len
);
139 qemu_put_buffer(f
, (uint8_t *) blk
->bmds
->blk_name
, len
);
141 /* if a block is zero we need to flush here since the network
142 * bandwidth is now a lot higher than the storage device bandwidth.
143 * thus if we queue zero blocks we slow down the migration */
144 if (flags
& BLK_MIG_FLAG_ZERO_BLOCK
) {
149 qemu_put_buffer(f
, blk
->buf
, BLK_MIG_BLOCK_SIZE
);
152 int blk_mig_active(void)
154 return !QSIMPLEQ_EMPTY(&block_mig_state
.bmds_list
);
157 int blk_mig_bulk_active(void)
159 return blk_mig_active() && !block_mig_state
.bulk_completed
;
162 uint64_t blk_mig_bytes_transferred(void)
164 BlkMigDevState
*bmds
;
168 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
169 sum
+= bmds
->completed_sectors
;
172 return sum
<< BDRV_SECTOR_BITS
;
175 uint64_t blk_mig_bytes_remaining(void)
177 return blk_mig_bytes_total() - blk_mig_bytes_transferred();
180 uint64_t blk_mig_bytes_total(void)
182 BlkMigDevState
*bmds
;
185 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
186 sum
+= bmds
->total_sectors
;
188 return sum
<< BDRV_SECTOR_BITS
;
192 /* Called with migration lock held. */
194 static int bmds_aio_inflight(BlkMigDevState
*bmds
, int64_t sector
)
196 int64_t chunk
= sector
/ (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
;
198 if (sector
< bmds
->total_sectors
) {
199 return !!(bmds
->aio_bitmap
[chunk
/ (sizeof(unsigned long) * 8)] &
200 (1UL << (chunk
% (sizeof(unsigned long) * 8))));
206 /* Called with migration lock held. */
208 static void bmds_set_aio_inflight(BlkMigDevState
*bmds
, int64_t sector_num
,
209 int nb_sectors
, int set
)
212 unsigned long val
, idx
, bit
;
214 start
= sector_num
/ BDRV_SECTORS_PER_DIRTY_CHUNK
;
215 end
= (sector_num
+ nb_sectors
- 1) / BDRV_SECTORS_PER_DIRTY_CHUNK
;
217 for (; start
<= end
; start
++) {
218 idx
= start
/ (sizeof(unsigned long) * 8);
219 bit
= start
% (sizeof(unsigned long) * 8);
220 val
= bmds
->aio_bitmap
[idx
];
224 val
&= ~(1UL << bit
);
226 bmds
->aio_bitmap
[idx
] = val
;
230 static void alloc_aio_bitmap(BlkMigDevState
*bmds
)
234 bitmap_size
= bmds
->total_sectors
+ BDRV_SECTORS_PER_DIRTY_CHUNK
* 8 - 1;
235 bitmap_size
/= BDRV_SECTORS_PER_DIRTY_CHUNK
* 8;
237 bmds
->aio_bitmap
= g_malloc0(bitmap_size
);
240 /* Never hold migration lock when yielding to the main loop! */
242 static void blk_mig_read_cb(void *opaque
, int ret
)
244 BlkMigBlock
*blk
= opaque
;
249 QSIMPLEQ_INSERT_TAIL(&block_mig_state
.blk_list
, blk
, entry
);
250 bmds_set_aio_inflight(blk
->bmds
, blk
->sector
, blk
->nr_sectors
, 0);
252 block_mig_state
.submitted
--;
253 block_mig_state
.read_done
++;
254 assert(block_mig_state
.submitted
>= 0);
258 /* Called with no lock taken. */
260 static int mig_save_device_bulk(QEMUFile
*f
, BlkMigDevState
*bmds
)
262 int64_t total_sectors
= bmds
->total_sectors
;
263 int64_t cur_sector
= bmds
->cur_sector
;
264 BlockBackend
*bb
= bmds
->blk
;
269 if (bmds
->shared_base
) {
270 qemu_mutex_lock_iothread();
271 aio_context_acquire(blk_get_aio_context(bb
));
272 /* Skip unallocated sectors; intentionally treats failure or
273 * partial sector as an allocated sector */
274 while (cur_sector
< total_sectors
&&
275 !bdrv_is_allocated(blk_bs(bb
), cur_sector
* BDRV_SECTOR_SIZE
,
276 MAX_IS_ALLOCATED_SEARCH
, &count
)) {
277 if (count
< BDRV_SECTOR_SIZE
) {
280 cur_sector
+= count
>> BDRV_SECTOR_BITS
;
282 aio_context_release(blk_get_aio_context(bb
));
283 qemu_mutex_unlock_iothread();
286 if (cur_sector
>= total_sectors
) {
287 bmds
->cur_sector
= bmds
->completed_sectors
= total_sectors
;
291 bmds
->completed_sectors
= cur_sector
;
293 cur_sector
&= ~((int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
- 1);
295 /* we are going to transfer a full block even if it is not allocated */
296 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
298 if (total_sectors
- cur_sector
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
299 nr_sectors
= total_sectors
- cur_sector
;
302 blk
= g_new(BlkMigBlock
, 1);
303 blk
->buf
= g_malloc(BLK_MIG_BLOCK_SIZE
);
305 blk
->sector
= cur_sector
;
306 blk
->nr_sectors
= nr_sectors
;
308 qemu_iovec_init_buf(&blk
->qiov
, blk
->buf
, nr_sectors
* BDRV_SECTOR_SIZE
);
311 block_mig_state
.submitted
++;
314 /* We do not know if bs is under the main thread (and thus does
315 * not acquire the AioContext when doing AIO) or rather under
316 * dataplane. Thus acquire both the iothread mutex and the
319 * This is ugly and will disappear when we make bdrv_* thread-safe,
320 * without the need to acquire the AioContext.
322 qemu_mutex_lock_iothread();
323 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
324 bdrv_reset_dirty_bitmap(bmds
->dirty_bitmap
, cur_sector
* BDRV_SECTOR_SIZE
,
325 nr_sectors
* BDRV_SECTOR_SIZE
);
326 blk
->aiocb
= blk_aio_preadv(bb
, cur_sector
* BDRV_SECTOR_SIZE
, &blk
->qiov
,
327 0, blk_mig_read_cb
, blk
);
328 aio_context_release(blk_get_aio_context(bmds
->blk
));
329 qemu_mutex_unlock_iothread();
331 bmds
->cur_sector
= cur_sector
+ nr_sectors
;
332 return (bmds
->cur_sector
>= total_sectors
);
335 /* Called with iothread lock taken. */
337 static int set_dirty_tracking(void)
339 BlkMigDevState
*bmds
;
342 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
343 bmds
->dirty_bitmap
= bdrv_create_dirty_bitmap(blk_bs(bmds
->blk
),
346 if (!bmds
->dirty_bitmap
) {
354 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
355 if (bmds
->dirty_bitmap
) {
356 bdrv_release_dirty_bitmap(bmds
->dirty_bitmap
);
362 /* Called with iothread lock taken. */
364 static void unset_dirty_tracking(void)
366 BlkMigDevState
*bmds
;
368 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
369 bdrv_release_dirty_bitmap(bmds
->dirty_bitmap
);
373 static int init_blk_migration(QEMUFile
*f
)
375 BlockDriverState
*bs
;
376 BlkMigDevState
*bmds
;
381 BlkMigDevState
*bmds
;
382 BlockDriverState
*bs
;
384 Error
*local_err
= NULL
;
387 block_mig_state
.submitted
= 0;
388 block_mig_state
.read_done
= 0;
389 block_mig_state
.transferred
= 0;
390 block_mig_state
.total_sector_sum
= 0;
391 block_mig_state
.prev_progress
= -1;
392 block_mig_state
.bulk_completed
= 0;
393 block_mig_state
.zero_blocks
= migrate_zero_blocks();
395 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
398 bmds_bs
= g_malloc0(num_bs
* sizeof(*bmds_bs
));
400 for (i
= 0, bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
), i
++) {
401 if (bdrv_is_read_only(bs
)) {
405 sectors
= bdrv_nb_sectors(bs
);
408 bdrv_next_cleanup(&it
);
412 bmds
= g_new0(BlkMigDevState
, 1);
413 bmds
->blk
= blk_new(qemu_get_aio_context(),
414 BLK_PERM_CONSISTENT_READ
, BLK_PERM_ALL
);
415 bmds
->blk_name
= g_strdup(bdrv_get_device_name(bs
));
416 bmds
->bulk_completed
= 0;
417 bmds
->total_sectors
= sectors
;
418 bmds
->completed_sectors
= 0;
419 bmds
->shared_base
= migrate_use_block_incremental();
422 bmds_bs
[i
].bmds
= bmds
;
425 block_mig_state
.total_sector_sum
+= sectors
;
427 if (bmds
->shared_base
) {
428 trace_migration_block_init_shared(bdrv_get_device_name(bs
));
430 trace_migration_block_init_full(bdrv_get_device_name(bs
));
433 QSIMPLEQ_INSERT_TAIL(&block_mig_state
.bmds_list
, bmds
, entry
);
436 /* Can only insert new BDSes now because doing so while iterating block
437 * devices may end up in a deadlock (iterating the new BDSes, too). */
438 for (i
= 0; i
< num_bs
; i
++) {
439 BlkMigDevState
*bmds
= bmds_bs
[i
].bmds
;
440 BlockDriverState
*bs
= bmds_bs
[i
].bs
;
443 ret
= blk_insert_bs(bmds
->blk
, bs
, &local_err
);
445 error_report_err(local_err
);
449 alloc_aio_bitmap(bmds
);
450 error_setg(&bmds
->blocker
, "block device is in use by migration");
451 bdrv_op_block_all(bs
, bmds
->blocker
);
461 /* Called with no lock taken. */
463 static int blk_mig_save_bulked_block(QEMUFile
*f
)
465 int64_t completed_sector_sum
= 0;
466 BlkMigDevState
*bmds
;
470 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
471 if (bmds
->bulk_completed
== 0) {
472 if (mig_save_device_bulk(f
, bmds
) == 1) {
473 /* completed bulk section for this device */
474 bmds
->bulk_completed
= 1;
476 completed_sector_sum
+= bmds
->completed_sectors
;
480 completed_sector_sum
+= bmds
->completed_sectors
;
484 if (block_mig_state
.total_sector_sum
!= 0) {
485 progress
= completed_sector_sum
* 100 /
486 block_mig_state
.total_sector_sum
;
490 if (progress
!= block_mig_state
.prev_progress
) {
491 block_mig_state
.prev_progress
= progress
;
492 qemu_put_be64(f
, (progress
<< BDRV_SECTOR_BITS
)
493 | BLK_MIG_FLAG_PROGRESS
);
494 trace_migration_block_progression(progress
);
500 static void blk_mig_reset_dirty_cursor(void)
502 BlkMigDevState
*bmds
;
504 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
509 /* Called with iothread lock and AioContext taken. */
511 static int mig_save_device_dirty(QEMUFile
*f
, BlkMigDevState
*bmds
,
515 int64_t total_sectors
= bmds
->total_sectors
;
520 for (sector
= bmds
->cur_dirty
; sector
< bmds
->total_sectors
;) {
522 if (bmds_aio_inflight(bmds
, sector
)) {
524 blk_drain(bmds
->blk
);
528 bdrv_dirty_bitmap_lock(bmds
->dirty_bitmap
);
529 if (bdrv_dirty_bitmap_get_locked(bmds
->dirty_bitmap
,
530 sector
* BDRV_SECTOR_SIZE
)) {
531 if (total_sectors
- sector
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
532 nr_sectors
= total_sectors
- sector
;
534 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
536 bdrv_reset_dirty_bitmap_locked(bmds
->dirty_bitmap
,
537 sector
* BDRV_SECTOR_SIZE
,
538 nr_sectors
* BDRV_SECTOR_SIZE
);
539 bdrv_dirty_bitmap_unlock(bmds
->dirty_bitmap
);
541 blk
= g_new(BlkMigBlock
, 1);
542 blk
->buf
= g_malloc(BLK_MIG_BLOCK_SIZE
);
544 blk
->sector
= sector
;
545 blk
->nr_sectors
= nr_sectors
;
548 qemu_iovec_init_buf(&blk
->qiov
, blk
->buf
,
549 nr_sectors
* BDRV_SECTOR_SIZE
);
551 blk
->aiocb
= blk_aio_preadv(bmds
->blk
,
552 sector
* BDRV_SECTOR_SIZE
,
553 &blk
->qiov
, 0, blk_mig_read_cb
,
557 block_mig_state
.submitted
++;
558 bmds_set_aio_inflight(bmds
, sector
, nr_sectors
, 1);
561 ret
= blk_pread(bmds
->blk
, sector
* BDRV_SECTOR_SIZE
,
562 nr_sectors
* BDRV_SECTOR_SIZE
, blk
->buf
, 0);
572 sector
+= nr_sectors
;
573 bmds
->cur_dirty
= sector
;
577 bdrv_dirty_bitmap_unlock(bmds
->dirty_bitmap
);
578 sector
+= BDRV_SECTORS_PER_DIRTY_CHUNK
;
579 bmds
->cur_dirty
= sector
;
582 return (bmds
->cur_dirty
>= bmds
->total_sectors
);
585 trace_migration_block_save_device_dirty(sector
);
591 /* Called with iothread lock taken.
594 * 0: too much data for max_downtime
595 * 1: few enough data for max_downtime
597 static int blk_mig_save_dirty_block(QEMUFile
*f
, int is_async
)
599 BlkMigDevState
*bmds
;
602 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
603 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
604 ret
= mig_save_device_dirty(f
, bmds
, is_async
);
605 aio_context_release(blk_get_aio_context(bmds
->blk
));
614 /* Called with no locks taken. */
616 static int flush_blks(QEMUFile
*f
)
621 trace_migration_block_flush_blks("Enter", block_mig_state
.submitted
,
622 block_mig_state
.read_done
,
623 block_mig_state
.transferred
);
626 while ((blk
= QSIMPLEQ_FIRST(&block_mig_state
.blk_list
)) != NULL
) {
627 if (qemu_file_rate_limit(f
)) {
635 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.blk_list
, entry
);
643 block_mig_state
.read_done
--;
644 block_mig_state
.transferred
++;
645 assert(block_mig_state
.read_done
>= 0);
649 trace_migration_block_flush_blks("Exit", block_mig_state
.submitted
,
650 block_mig_state
.read_done
,
651 block_mig_state
.transferred
);
655 /* Called with iothread lock taken. */
657 static int64_t get_remaining_dirty(void)
659 BlkMigDevState
*bmds
;
662 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
663 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
664 dirty
+= bdrv_get_dirty_count(bmds
->dirty_bitmap
);
665 aio_context_release(blk_get_aio_context(bmds
->blk
));
673 /* Called with iothread lock taken. */
674 static void block_migration_cleanup_bmds(void)
676 BlkMigDevState
*bmds
;
679 unset_dirty_tracking();
681 while ((bmds
= QSIMPLEQ_FIRST(&block_mig_state
.bmds_list
)) != NULL
) {
682 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.bmds_list
, entry
);
683 bdrv_op_unblock_all(blk_bs(bmds
->blk
), bmds
->blocker
);
684 error_free(bmds
->blocker
);
686 /* Save ctx, because bmds->blk can disappear during blk_unref. */
687 ctx
= blk_get_aio_context(bmds
->blk
);
688 aio_context_acquire(ctx
);
689 blk_unref(bmds
->blk
);
690 aio_context_release(ctx
);
692 g_free(bmds
->blk_name
);
693 g_free(bmds
->aio_bitmap
);
698 /* Called with iothread lock taken. */
699 static void block_migration_cleanup(void *opaque
)
705 block_migration_cleanup_bmds();
708 while ((blk
= QSIMPLEQ_FIRST(&block_mig_state
.blk_list
)) != NULL
) {
709 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.blk_list
, entry
);
716 static int block_save_setup(QEMUFile
*f
, void *opaque
)
720 trace_migration_block_save("setup", block_mig_state
.submitted
,
721 block_mig_state
.transferred
);
723 qemu_mutex_lock_iothread();
724 ret
= init_blk_migration(f
);
726 qemu_mutex_unlock_iothread();
730 /* start track dirty blocks */
731 ret
= set_dirty_tracking();
733 qemu_mutex_unlock_iothread();
740 blk_mig_reset_dirty_cursor();
741 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
746 static int block_save_iterate(QEMUFile
*f
, void *opaque
)
749 int64_t last_bytes
= qemu_file_total_transferred(f
);
752 trace_migration_block_save("iterate", block_mig_state
.submitted
,
753 block_mig_state
.transferred
);
760 blk_mig_reset_dirty_cursor();
762 /* control the rate of transfer */
764 while (block_mig_state
.read_done
* BLK_MIG_BLOCK_SIZE
<
765 qemu_file_get_rate_limit(f
) &&
766 block_mig_state
.submitted
< MAX_PARALLEL_IO
&&
767 (block_mig_state
.submitted
+ block_mig_state
.read_done
) <
770 if (block_mig_state
.bulk_completed
== 0) {
771 /* first finish the bulk phase */
772 if (blk_mig_save_bulked_block(f
) == 0) {
773 /* finished saving bulk on all devices */
774 block_mig_state
.bulk_completed
= 1;
778 /* Always called with iothread lock taken for
779 * simplicity, block_save_complete also calls it.
781 qemu_mutex_lock_iothread();
782 ret
= blk_mig_save_dirty_block(f
, 1);
783 qemu_mutex_unlock_iothread();
790 /* no more dirty blocks */
801 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
802 delta_bytes
= qemu_file_total_transferred(f
) - last_bytes
;
803 if (delta_bytes
> 0) {
805 } else if (delta_bytes
< 0) {
812 /* Called with iothread lock taken. */
814 static int block_save_complete(QEMUFile
*f
, void *opaque
)
818 trace_migration_block_save("complete", block_mig_state
.submitted
,
819 block_mig_state
.transferred
);
826 blk_mig_reset_dirty_cursor();
828 /* we know for sure that save bulk is completed and
829 all async read completed */
831 assert(block_mig_state
.submitted
== 0);
835 ret
= blk_mig_save_dirty_block(f
, 0);
841 /* report completion */
842 qemu_put_be64(f
, (100 << BDRV_SECTOR_BITS
) | BLK_MIG_FLAG_PROGRESS
);
844 trace_migration_block_save_complete();
846 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
848 /* Make sure that our BlockBackends are gone, so that the block driver
849 * nodes can be inactivated. */
850 block_migration_cleanup_bmds();
855 static void block_state_pending(void *opaque
, uint64_t *must_precopy
,
856 uint64_t *can_postcopy
)
858 /* Estimate pending number of bytes to send */
861 qemu_mutex_lock_iothread();
862 pending
= get_remaining_dirty();
863 qemu_mutex_unlock_iothread();
866 pending
+= block_mig_state
.submitted
* BLK_MIG_BLOCK_SIZE
+
867 block_mig_state
.read_done
* BLK_MIG_BLOCK_SIZE
;
870 /* Report at least one block pending during bulk phase */
871 if (!pending
&& !block_mig_state
.bulk_completed
) {
872 pending
= BLK_MIG_BLOCK_SIZE
;
875 trace_migration_block_state_pending(pending
);
876 /* We don't do postcopy */
877 *must_precopy
+= pending
;
880 static int block_load(QEMUFile
*f
, void *opaque
, int version_id
)
882 static int banner_printed
;
884 char device_name
[256];
886 BlockBackend
*blk
, *blk_prev
= NULL
;
887 Error
*local_err
= NULL
;
889 int64_t total_sectors
= 0;
893 int cluster_size
= BLK_MIG_BLOCK_SIZE
;
896 addr
= qemu_get_be64(f
);
898 flags
= addr
& (BDRV_SECTOR_SIZE
- 1);
899 addr
>>= BDRV_SECTOR_BITS
;
901 if (flags
& BLK_MIG_FLAG_DEVICE_BLOCK
) {
902 /* get device name */
903 len
= qemu_get_byte(f
);
904 qemu_get_buffer(f
, (uint8_t *)device_name
, len
);
905 device_name
[len
] = '\0';
907 blk
= blk_by_name(device_name
);
909 fprintf(stderr
, "Error unknown block device %s\n",
914 if (blk
!= blk_prev
) {
916 total_sectors
= blk_nb_sectors(blk
);
917 if (total_sectors
<= 0) {
918 error_report("Error getting length of block device %s",
923 blk_activate(blk
, &local_err
);
925 error_report_err(local_err
);
929 ret
= bdrv_get_info(blk_bs(blk
), &bdi
);
930 if (ret
== 0 && bdi
.cluster_size
> 0 &&
931 bdi
.cluster_size
<= BLK_MIG_BLOCK_SIZE
&&
932 BLK_MIG_BLOCK_SIZE
% bdi
.cluster_size
== 0) {
933 cluster_size
= bdi
.cluster_size
;
935 cluster_size
= BLK_MIG_BLOCK_SIZE
;
939 if (total_sectors
- addr
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
940 nr_sectors
= total_sectors
- addr
;
942 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
945 if (flags
& BLK_MIG_FLAG_ZERO_BLOCK
) {
946 ret
= blk_pwrite_zeroes(blk
, addr
* BDRV_SECTOR_SIZE
,
947 nr_sectors
* BDRV_SECTOR_SIZE
,
954 buf
= g_malloc(BLK_MIG_BLOCK_SIZE
);
955 qemu_get_buffer(f
, buf
, BLK_MIG_BLOCK_SIZE
);
956 for (i
= 0; i
< BLK_MIG_BLOCK_SIZE
/ cluster_size
; i
++) {
957 cur_addr
= addr
* BDRV_SECTOR_SIZE
+ i
* cluster_size
;
958 cur_buf
= buf
+ i
* cluster_size
;
960 if ((!block_mig_state
.zero_blocks
||
961 cluster_size
< BLK_MIG_BLOCK_SIZE
) &&
962 buffer_is_zero(cur_buf
, cluster_size
)) {
963 ret
= blk_pwrite_zeroes(blk
, cur_addr
,
967 ret
= blk_pwrite(blk
, cur_addr
, cluster_size
, cur_buf
,
980 } else if (flags
& BLK_MIG_FLAG_PROGRESS
) {
981 if (!banner_printed
) {
982 printf("Receiving block device images\n");
985 printf("Completed %d %%%c", (int)addr
,
986 (addr
== 100) ? '\n' : '\r');
988 } else if (!(flags
& BLK_MIG_FLAG_EOS
)) {
989 fprintf(stderr
, "Unknown block migration flags: 0x%x\n", flags
);
992 ret
= qemu_file_get_error(f
);
996 } while (!(flags
& BLK_MIG_FLAG_EOS
));
1001 static bool block_is_active(void *opaque
)
1003 return migrate_use_block();
1006 static SaveVMHandlers savevm_block_handlers
= {
1007 .save_setup
= block_save_setup
,
1008 .save_live_iterate
= block_save_iterate
,
1009 .save_live_complete_precopy
= block_save_complete
,
1010 .state_pending_exact
= block_state_pending
,
1011 .state_pending_estimate
= block_state_pending
,
1012 .load_state
= block_load
,
1013 .save_cleanup
= block_migration_cleanup
,
1014 .is_active
= block_is_active
,
1017 void blk_mig_init(void)
1019 QSIMPLEQ_INIT(&block_mig_state
.bmds_list
);
1020 QSIMPLEQ_INIT(&block_mig_state
.blk_list
);
1021 qemu_mutex_init(&block_mig_state
.lock
);
1023 register_savevm_live("block", 0, 1, &savevm_block_handlers
,