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-stats.h"
27 #include "migration/register.h"
28 #include "qemu-file.h"
29 #include "migration/vmstate.h"
30 #include "sysemu/block-backend.h"
34 #define BLK_MIG_BLOCK_SIZE (1ULL << 20)
35 #define BDRV_SECTORS_PER_DIRTY_CHUNK (BLK_MIG_BLOCK_SIZE >> BDRV_SECTOR_BITS)
37 #define BLK_MIG_FLAG_DEVICE_BLOCK 0x01
38 #define BLK_MIG_FLAG_EOS 0x02
39 #define BLK_MIG_FLAG_PROGRESS 0x04
40 #define BLK_MIG_FLAG_ZERO_BLOCK 0x08
42 #define MAX_IS_ALLOCATED_SEARCH (65536 * BDRV_SECTOR_SIZE)
44 #define MAX_IO_BUFFERS 512
45 #define MAX_PARALLEL_IO 16
47 typedef struct BlkMigDevState
{
48 /* Written during setup phase. Can be read without a lock. */
52 int64_t total_sectors
;
53 QSIMPLEQ_ENTRY(BlkMigDevState
) entry
;
56 /* Only used by migration thread. Does not need a lock. */
61 /* Data in the aio_bitmap is protected by block migration lock.
62 * Allocation and free happen during setup and cleanup respectively.
64 unsigned long *aio_bitmap
;
66 /* Protected by block migration lock. */
67 int64_t completed_sectors
;
69 /* During migration this is protected by iothread lock / AioContext.
70 * Allocation and free happen during setup and cleanup respectively.
72 BdrvDirtyBitmap
*dirty_bitmap
;
75 typedef struct BlkMigBlock
{
76 /* Only used by migration thread. */
84 /* Protected by block migration lock. */
86 QSIMPLEQ_ENTRY(BlkMigBlock
) entry
;
89 typedef struct BlkMigState
{
90 QSIMPLEQ_HEAD(, BlkMigDevState
) bmds_list
;
91 int64_t total_sector_sum
;
94 /* Protected by lock. */
95 QSIMPLEQ_HEAD(, BlkMigBlock
) blk_list
;
99 /* Only used by migration thread. Does not need a lock. */
104 /* Lock must be taken _inside_ the iothread lock and any AioContexts. */
108 static BlkMigState block_mig_state
;
110 static void blk_mig_lock(void)
112 qemu_mutex_lock(&block_mig_state
.lock
);
115 static void blk_mig_unlock(void)
117 qemu_mutex_unlock(&block_mig_state
.lock
);
120 /* Must run outside of the iothread lock during the bulk phase,
121 * or the VM will stall.
124 static void blk_send(QEMUFile
*f
, BlkMigBlock
* blk
)
127 uint64_t flags
= BLK_MIG_FLAG_DEVICE_BLOCK
;
129 if (block_mig_state
.zero_blocks
&&
130 buffer_is_zero(blk
->buf
, BLK_MIG_BLOCK_SIZE
)) {
131 flags
|= BLK_MIG_FLAG_ZERO_BLOCK
;
134 /* sector number and flags */
135 qemu_put_be64(f
, (blk
->sector
<< BDRV_SECTOR_BITS
)
139 len
= strlen(blk
->bmds
->blk_name
);
140 qemu_put_byte(f
, len
);
141 qemu_put_buffer(f
, (uint8_t *) blk
->bmds
->blk_name
, len
);
143 /* if a block is zero we need to flush here since the network
144 * bandwidth is now a lot higher than the storage device bandwidth.
145 * thus if we queue zero blocks we slow down the migration */
146 if (flags
& BLK_MIG_FLAG_ZERO_BLOCK
) {
151 qemu_put_buffer(f
, blk
->buf
, BLK_MIG_BLOCK_SIZE
);
154 int blk_mig_active(void)
156 return !QSIMPLEQ_EMPTY(&block_mig_state
.bmds_list
);
159 int blk_mig_bulk_active(void)
161 return blk_mig_active() && !block_mig_state
.bulk_completed
;
164 uint64_t blk_mig_bytes_transferred(void)
166 BlkMigDevState
*bmds
;
170 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
171 sum
+= bmds
->completed_sectors
;
174 return sum
<< BDRV_SECTOR_BITS
;
177 uint64_t blk_mig_bytes_remaining(void)
179 return blk_mig_bytes_total() - blk_mig_bytes_transferred();
182 uint64_t blk_mig_bytes_total(void)
184 BlkMigDevState
*bmds
;
187 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
188 sum
+= bmds
->total_sectors
;
190 return sum
<< BDRV_SECTOR_BITS
;
194 /* Called with migration lock held. */
196 static int bmds_aio_inflight(BlkMigDevState
*bmds
, int64_t sector
)
198 int64_t chunk
= sector
/ (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
;
200 if (sector
< bmds
->total_sectors
) {
201 return !!(bmds
->aio_bitmap
[chunk
/ (sizeof(unsigned long) * 8)] &
202 (1UL << (chunk
% (sizeof(unsigned long) * 8))));
208 /* Called with migration lock held. */
210 static void bmds_set_aio_inflight(BlkMigDevState
*bmds
, int64_t sector_num
,
211 int nb_sectors
, int set
)
214 unsigned long val
, idx
, bit
;
216 start
= sector_num
/ BDRV_SECTORS_PER_DIRTY_CHUNK
;
217 end
= (sector_num
+ nb_sectors
- 1) / BDRV_SECTORS_PER_DIRTY_CHUNK
;
219 for (; start
<= end
; start
++) {
220 idx
= start
/ (sizeof(unsigned long) * 8);
221 bit
= start
% (sizeof(unsigned long) * 8);
222 val
= bmds
->aio_bitmap
[idx
];
226 val
&= ~(1UL << bit
);
228 bmds
->aio_bitmap
[idx
] = val
;
232 static void alloc_aio_bitmap(BlkMigDevState
*bmds
)
236 bitmap_size
= bmds
->total_sectors
+ BDRV_SECTORS_PER_DIRTY_CHUNK
* 8 - 1;
237 bitmap_size
/= BDRV_SECTORS_PER_DIRTY_CHUNK
* 8;
239 bmds
->aio_bitmap
= g_malloc0(bitmap_size
);
242 /* Never hold migration lock when yielding to the main loop! */
244 static void blk_mig_read_cb(void *opaque
, int ret
)
246 BlkMigBlock
*blk
= opaque
;
251 QSIMPLEQ_INSERT_TAIL(&block_mig_state
.blk_list
, blk
, entry
);
252 bmds_set_aio_inflight(blk
->bmds
, blk
->sector
, blk
->nr_sectors
, 0);
254 block_mig_state
.submitted
--;
255 block_mig_state
.read_done
++;
256 assert(block_mig_state
.submitted
>= 0);
260 /* Called with no lock taken. */
262 static int mig_save_device_bulk(QEMUFile
*f
, BlkMigDevState
*bmds
)
264 int64_t total_sectors
= bmds
->total_sectors
;
265 int64_t cur_sector
= bmds
->cur_sector
;
266 BlockBackend
*bb
= bmds
->blk
;
271 if (bmds
->shared_base
) {
272 qemu_mutex_lock_iothread();
273 aio_context_acquire(blk_get_aio_context(bb
));
274 /* Skip unallocated sectors; intentionally treats failure or
275 * partial sector as an allocated sector */
276 while (cur_sector
< total_sectors
&&
277 !bdrv_is_allocated(blk_bs(bb
), cur_sector
* BDRV_SECTOR_SIZE
,
278 MAX_IS_ALLOCATED_SEARCH
, &count
)) {
279 if (count
< BDRV_SECTOR_SIZE
) {
282 cur_sector
+= count
>> BDRV_SECTOR_BITS
;
284 aio_context_release(blk_get_aio_context(bb
));
285 qemu_mutex_unlock_iothread();
288 if (cur_sector
>= total_sectors
) {
289 bmds
->cur_sector
= bmds
->completed_sectors
= total_sectors
;
293 bmds
->completed_sectors
= cur_sector
;
295 cur_sector
&= ~((int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
- 1);
297 /* we are going to transfer a full block even if it is not allocated */
298 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
300 if (total_sectors
- cur_sector
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
301 nr_sectors
= total_sectors
- cur_sector
;
304 blk
= g_new(BlkMigBlock
, 1);
305 blk
->buf
= g_malloc(BLK_MIG_BLOCK_SIZE
);
307 blk
->sector
= cur_sector
;
308 blk
->nr_sectors
= nr_sectors
;
310 qemu_iovec_init_buf(&blk
->qiov
, blk
->buf
, nr_sectors
* BDRV_SECTOR_SIZE
);
313 block_mig_state
.submitted
++;
316 /* We do not know if bs is under the main thread (and thus does
317 * not acquire the AioContext when doing AIO) or rather under
318 * dataplane. Thus acquire both the iothread mutex and the
321 * This is ugly and will disappear when we make bdrv_* thread-safe,
322 * without the need to acquire the AioContext.
324 qemu_mutex_lock_iothread();
325 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
326 bdrv_reset_dirty_bitmap(bmds
->dirty_bitmap
, cur_sector
* BDRV_SECTOR_SIZE
,
327 nr_sectors
* BDRV_SECTOR_SIZE
);
328 blk
->aiocb
= blk_aio_preadv(bb
, cur_sector
* BDRV_SECTOR_SIZE
, &blk
->qiov
,
329 0, blk_mig_read_cb
, blk
);
330 aio_context_release(blk_get_aio_context(bmds
->blk
));
331 qemu_mutex_unlock_iothread();
333 bmds
->cur_sector
= cur_sector
+ nr_sectors
;
334 return (bmds
->cur_sector
>= total_sectors
);
337 /* Called with iothread lock taken. */
339 static int set_dirty_tracking(void)
341 BlkMigDevState
*bmds
;
344 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
345 bmds
->dirty_bitmap
= bdrv_create_dirty_bitmap(blk_bs(bmds
->blk
),
348 if (!bmds
->dirty_bitmap
) {
356 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
357 if (bmds
->dirty_bitmap
) {
358 bdrv_release_dirty_bitmap(bmds
->dirty_bitmap
);
364 /* Called with iothread lock taken. */
366 static void unset_dirty_tracking(void)
368 BlkMigDevState
*bmds
;
370 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
371 bdrv_release_dirty_bitmap(bmds
->dirty_bitmap
);
375 static int init_blk_migration(QEMUFile
*f
)
377 BlockDriverState
*bs
;
378 BlkMigDevState
*bmds
;
383 BlkMigDevState
*bmds
;
384 BlockDriverState
*bs
;
386 Error
*local_err
= NULL
;
389 block_mig_state
.submitted
= 0;
390 block_mig_state
.read_done
= 0;
391 block_mig_state
.transferred
= 0;
392 block_mig_state
.total_sector_sum
= 0;
393 block_mig_state
.prev_progress
= -1;
394 block_mig_state
.bulk_completed
= 0;
395 block_mig_state
.zero_blocks
= migrate_zero_blocks();
397 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
400 bmds_bs
= g_malloc0(num_bs
* sizeof(*bmds_bs
));
402 for (i
= 0, bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
), i
++) {
403 if (bdrv_is_read_only(bs
)) {
407 sectors
= bdrv_nb_sectors(bs
);
410 bdrv_next_cleanup(&it
);
414 bmds
= g_new0(BlkMigDevState
, 1);
415 bmds
->blk
= blk_new(qemu_get_aio_context(),
416 BLK_PERM_CONSISTENT_READ
, BLK_PERM_ALL
);
417 bmds
->blk_name
= g_strdup(bdrv_get_device_name(bs
));
418 bmds
->bulk_completed
= 0;
419 bmds
->total_sectors
= sectors
;
420 bmds
->completed_sectors
= 0;
421 bmds
->shared_base
= migrate_block_incremental();
424 bmds_bs
[i
].bmds
= bmds
;
427 block_mig_state
.total_sector_sum
+= sectors
;
429 if (bmds
->shared_base
) {
430 trace_migration_block_init_shared(bdrv_get_device_name(bs
));
432 trace_migration_block_init_full(bdrv_get_device_name(bs
));
435 QSIMPLEQ_INSERT_TAIL(&block_mig_state
.bmds_list
, bmds
, entry
);
438 /* Can only insert new BDSes now because doing so while iterating block
439 * devices may end up in a deadlock (iterating the new BDSes, too). */
440 for (i
= 0; i
< num_bs
; i
++) {
441 BlkMigDevState
*bmds
= bmds_bs
[i
].bmds
;
442 BlockDriverState
*bs
= bmds_bs
[i
].bs
;
445 ret
= blk_insert_bs(bmds
->blk
, bs
, &local_err
);
447 error_report_err(local_err
);
451 alloc_aio_bitmap(bmds
);
452 error_setg(&bmds
->blocker
, "block device is in use by migration");
453 bdrv_op_block_all(bs
, bmds
->blocker
);
463 /* Called with no lock taken. */
465 static int blk_mig_save_bulked_block(QEMUFile
*f
)
467 int64_t completed_sector_sum
= 0;
468 BlkMigDevState
*bmds
;
472 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
473 if (bmds
->bulk_completed
== 0) {
474 if (mig_save_device_bulk(f
, bmds
) == 1) {
475 /* completed bulk section for this device */
476 bmds
->bulk_completed
= 1;
478 completed_sector_sum
+= bmds
->completed_sectors
;
482 completed_sector_sum
+= bmds
->completed_sectors
;
486 if (block_mig_state
.total_sector_sum
!= 0) {
487 progress
= completed_sector_sum
* 100 /
488 block_mig_state
.total_sector_sum
;
492 if (progress
!= block_mig_state
.prev_progress
) {
493 block_mig_state
.prev_progress
= progress
;
494 qemu_put_be64(f
, (progress
<< BDRV_SECTOR_BITS
)
495 | BLK_MIG_FLAG_PROGRESS
);
496 trace_migration_block_progression(progress
);
502 static void blk_mig_reset_dirty_cursor(void)
504 BlkMigDevState
*bmds
;
506 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
511 /* Called with iothread lock and AioContext taken. */
513 static int mig_save_device_dirty(QEMUFile
*f
, BlkMigDevState
*bmds
,
517 int64_t total_sectors
= bmds
->total_sectors
;
522 for (sector
= bmds
->cur_dirty
; sector
< bmds
->total_sectors
;) {
524 if (bmds_aio_inflight(bmds
, sector
)) {
526 blk_drain(bmds
->blk
);
530 bdrv_dirty_bitmap_lock(bmds
->dirty_bitmap
);
531 if (bdrv_dirty_bitmap_get_locked(bmds
->dirty_bitmap
,
532 sector
* BDRV_SECTOR_SIZE
)) {
533 if (total_sectors
- sector
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
534 nr_sectors
= total_sectors
- sector
;
536 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
538 bdrv_reset_dirty_bitmap_locked(bmds
->dirty_bitmap
,
539 sector
* BDRV_SECTOR_SIZE
,
540 nr_sectors
* BDRV_SECTOR_SIZE
);
541 bdrv_dirty_bitmap_unlock(bmds
->dirty_bitmap
);
543 blk
= g_new(BlkMigBlock
, 1);
544 blk
->buf
= g_malloc(BLK_MIG_BLOCK_SIZE
);
546 blk
->sector
= sector
;
547 blk
->nr_sectors
= nr_sectors
;
550 qemu_iovec_init_buf(&blk
->qiov
, blk
->buf
,
551 nr_sectors
* BDRV_SECTOR_SIZE
);
553 blk
->aiocb
= blk_aio_preadv(bmds
->blk
,
554 sector
* BDRV_SECTOR_SIZE
,
555 &blk
->qiov
, 0, blk_mig_read_cb
,
559 block_mig_state
.submitted
++;
560 bmds_set_aio_inflight(bmds
, sector
, nr_sectors
, 1);
563 ret
= blk_pread(bmds
->blk
, sector
* BDRV_SECTOR_SIZE
,
564 nr_sectors
* BDRV_SECTOR_SIZE
, blk
->buf
, 0);
574 sector
+= nr_sectors
;
575 bmds
->cur_dirty
= sector
;
579 bdrv_dirty_bitmap_unlock(bmds
->dirty_bitmap
);
580 sector
+= BDRV_SECTORS_PER_DIRTY_CHUNK
;
581 bmds
->cur_dirty
= sector
;
584 return (bmds
->cur_dirty
>= bmds
->total_sectors
);
587 trace_migration_block_save_device_dirty(sector
);
593 /* Called with iothread lock taken.
596 * 0: too much data for max_downtime
597 * 1: few enough data for max_downtime
599 static int blk_mig_save_dirty_block(QEMUFile
*f
, int is_async
)
601 BlkMigDevState
*bmds
;
604 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
605 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
606 ret
= mig_save_device_dirty(f
, bmds
, is_async
);
607 aio_context_release(blk_get_aio_context(bmds
->blk
));
616 /* Called with no locks taken. */
618 static int flush_blks(QEMUFile
*f
)
623 trace_migration_block_flush_blks("Enter", block_mig_state
.submitted
,
624 block_mig_state
.read_done
,
625 block_mig_state
.transferred
);
628 while ((blk
= QSIMPLEQ_FIRST(&block_mig_state
.blk_list
)) != NULL
) {
629 if (migration_rate_exceeded(f
)) {
637 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.blk_list
, entry
);
645 block_mig_state
.read_done
--;
646 block_mig_state
.transferred
++;
647 assert(block_mig_state
.read_done
>= 0);
651 trace_migration_block_flush_blks("Exit", block_mig_state
.submitted
,
652 block_mig_state
.read_done
,
653 block_mig_state
.transferred
);
657 /* Called with iothread lock taken. */
659 static int64_t get_remaining_dirty(void)
661 BlkMigDevState
*bmds
;
664 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
665 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
666 dirty
+= bdrv_get_dirty_count(bmds
->dirty_bitmap
);
667 aio_context_release(blk_get_aio_context(bmds
->blk
));
675 /* Called with iothread lock taken. */
676 static void block_migration_cleanup_bmds(void)
678 BlkMigDevState
*bmds
;
681 unset_dirty_tracking();
683 while ((bmds
= QSIMPLEQ_FIRST(&block_mig_state
.bmds_list
)) != NULL
) {
684 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.bmds_list
, entry
);
685 bdrv_op_unblock_all(blk_bs(bmds
->blk
), bmds
->blocker
);
686 error_free(bmds
->blocker
);
688 /* Save ctx, because bmds->blk can disappear during blk_unref. */
689 ctx
= blk_get_aio_context(bmds
->blk
);
690 aio_context_acquire(ctx
);
691 blk_unref(bmds
->blk
);
692 aio_context_release(ctx
);
694 g_free(bmds
->blk_name
);
695 g_free(bmds
->aio_bitmap
);
700 /* Called with iothread lock taken. */
701 static void block_migration_cleanup(void *opaque
)
707 block_migration_cleanup_bmds();
710 while ((blk
= QSIMPLEQ_FIRST(&block_mig_state
.blk_list
)) != NULL
) {
711 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.blk_list
, entry
);
718 static int block_save_setup(QEMUFile
*f
, void *opaque
)
722 trace_migration_block_save("setup", block_mig_state
.submitted
,
723 block_mig_state
.transferred
);
725 qemu_mutex_lock_iothread();
726 ret
= init_blk_migration(f
);
728 qemu_mutex_unlock_iothread();
732 /* start track dirty blocks */
733 ret
= set_dirty_tracking();
735 qemu_mutex_unlock_iothread();
742 blk_mig_reset_dirty_cursor();
743 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
748 static int block_save_iterate(QEMUFile
*f
, void *opaque
)
751 uint64_t last_bytes
= qemu_file_transferred(f
);
753 trace_migration_block_save("iterate", block_mig_state
.submitted
,
754 block_mig_state
.transferred
);
761 blk_mig_reset_dirty_cursor();
763 /* control the rate of transfer */
765 while (block_mig_state
.read_done
* BLK_MIG_BLOCK_SIZE
<
766 migration_rate_get() &&
767 block_mig_state
.submitted
< MAX_PARALLEL_IO
&&
768 (block_mig_state
.submitted
+ block_mig_state
.read_done
) <
771 if (block_mig_state
.bulk_completed
== 0) {
772 /* first finish the bulk phase */
773 if (blk_mig_save_bulked_block(f
) == 0) {
774 /* finished saving bulk on all devices */
775 block_mig_state
.bulk_completed
= 1;
779 /* Always called with iothread lock taken for
780 * simplicity, block_save_complete also calls it.
782 qemu_mutex_lock_iothread();
783 ret
= blk_mig_save_dirty_block(f
, 1);
784 qemu_mutex_unlock_iothread();
791 /* no more dirty blocks */
802 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
803 uint64_t delta_bytes
= qemu_file_transferred(f
) - last_bytes
;
804 return (delta_bytes
> 0);
807 /* Called with iothread lock taken. */
809 static int block_save_complete(QEMUFile
*f
, void *opaque
)
813 trace_migration_block_save("complete", block_mig_state
.submitted
,
814 block_mig_state
.transferred
);
821 blk_mig_reset_dirty_cursor();
823 /* we know for sure that save bulk is completed and
824 all async read completed */
826 assert(block_mig_state
.submitted
== 0);
830 ret
= blk_mig_save_dirty_block(f
, 0);
836 /* report completion */
837 qemu_put_be64(f
, (100 << BDRV_SECTOR_BITS
) | BLK_MIG_FLAG_PROGRESS
);
839 trace_migration_block_save_complete();
841 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
843 /* Make sure that our BlockBackends are gone, so that the block driver
844 * nodes can be inactivated. */
845 block_migration_cleanup_bmds();
850 static void block_state_pending(void *opaque
, uint64_t *must_precopy
,
851 uint64_t *can_postcopy
)
853 /* Estimate pending number of bytes to send */
856 qemu_mutex_lock_iothread();
857 pending
= get_remaining_dirty();
858 qemu_mutex_unlock_iothread();
861 pending
+= block_mig_state
.submitted
* BLK_MIG_BLOCK_SIZE
+
862 block_mig_state
.read_done
* BLK_MIG_BLOCK_SIZE
;
865 /* Report at least one block pending during bulk phase */
866 if (!pending
&& !block_mig_state
.bulk_completed
) {
867 pending
= BLK_MIG_BLOCK_SIZE
;
870 trace_migration_block_state_pending(pending
);
871 /* We don't do postcopy */
872 *must_precopy
+= pending
;
875 static int block_load(QEMUFile
*f
, void *opaque
, int version_id
)
877 static int banner_printed
;
879 char device_name
[256];
881 BlockBackend
*blk
, *blk_prev
= NULL
;
882 Error
*local_err
= NULL
;
884 int64_t total_sectors
= 0;
888 int cluster_size
= BLK_MIG_BLOCK_SIZE
;
891 addr
= qemu_get_be64(f
);
893 flags
= addr
& (BDRV_SECTOR_SIZE
- 1);
894 addr
>>= BDRV_SECTOR_BITS
;
896 if (flags
& BLK_MIG_FLAG_DEVICE_BLOCK
) {
897 /* get device name */
898 len
= qemu_get_byte(f
);
899 qemu_get_buffer(f
, (uint8_t *)device_name
, len
);
900 device_name
[len
] = '\0';
902 blk
= blk_by_name(device_name
);
904 fprintf(stderr
, "Error unknown block device %s\n",
909 if (blk
!= blk_prev
) {
911 total_sectors
= blk_nb_sectors(blk
);
912 if (total_sectors
<= 0) {
913 error_report("Error getting length of block device %s",
918 blk_activate(blk
, &local_err
);
920 error_report_err(local_err
);
924 ret
= bdrv_get_info(blk_bs(blk
), &bdi
);
925 if (ret
== 0 && bdi
.cluster_size
> 0 &&
926 bdi
.cluster_size
<= BLK_MIG_BLOCK_SIZE
&&
927 BLK_MIG_BLOCK_SIZE
% bdi
.cluster_size
== 0) {
928 cluster_size
= bdi
.cluster_size
;
930 cluster_size
= BLK_MIG_BLOCK_SIZE
;
934 if (total_sectors
- addr
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
935 nr_sectors
= total_sectors
- addr
;
937 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
940 if (flags
& BLK_MIG_FLAG_ZERO_BLOCK
) {
941 ret
= blk_pwrite_zeroes(blk
, addr
* BDRV_SECTOR_SIZE
,
942 nr_sectors
* BDRV_SECTOR_SIZE
,
949 buf
= g_malloc(BLK_MIG_BLOCK_SIZE
);
950 qemu_get_buffer(f
, buf
, BLK_MIG_BLOCK_SIZE
);
951 for (i
= 0; i
< BLK_MIG_BLOCK_SIZE
/ cluster_size
; i
++) {
952 cur_addr
= addr
* BDRV_SECTOR_SIZE
+ i
* cluster_size
;
953 cur_buf
= buf
+ i
* cluster_size
;
955 if ((!block_mig_state
.zero_blocks
||
956 cluster_size
< BLK_MIG_BLOCK_SIZE
) &&
957 buffer_is_zero(cur_buf
, cluster_size
)) {
958 ret
= blk_pwrite_zeroes(blk
, cur_addr
,
962 ret
= blk_pwrite(blk
, cur_addr
, cluster_size
, cur_buf
,
975 } else if (flags
& BLK_MIG_FLAG_PROGRESS
) {
976 if (!banner_printed
) {
977 printf("Receiving block device images\n");
980 printf("Completed %d %%%c", (int)addr
,
981 (addr
== 100) ? '\n' : '\r');
983 } else if (!(flags
& BLK_MIG_FLAG_EOS
)) {
984 fprintf(stderr
, "Unknown block migration flags: 0x%x\n", flags
);
987 ret
= qemu_file_get_error(f
);
991 } while (!(flags
& BLK_MIG_FLAG_EOS
));
996 static bool block_is_active(void *opaque
)
998 return migrate_block();
1001 static SaveVMHandlers savevm_block_handlers
= {
1002 .save_setup
= block_save_setup
,
1003 .save_live_iterate
= block_save_iterate
,
1004 .save_live_complete_precopy
= block_save_complete
,
1005 .state_pending_exact
= block_state_pending
,
1006 .state_pending_estimate
= block_state_pending
,
1007 .load_state
= block_load
,
1008 .save_cleanup
= block_migration_cleanup
,
1009 .is_active
= block_is_active
,
1012 void blk_mig_init(void)
1014 QSIMPLEQ_INIT(&block_mig_state
.bmds_list
);
1015 QSIMPLEQ_INIT(&block_mig_state
.blk_list
);
1016 qemu_mutex_init(&block_mig_state
.lock
);
1018 register_savevm_live("block", 0, 1, &savevm_block_handlers
,