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-common.h"
19 #include "block/block.h"
20 #include "qemu/error-report.h"
21 #include "qemu/main-loop.h"
23 #include "qemu/cutils.h"
24 #include "qemu/queue.h"
25 #include "qemu/timer.h"
26 #include "migration/block.h"
27 #include "migration/migration.h"
28 #include "sysemu/blockdev.h"
29 #include "sysemu/block-backend.h"
31 #define BLOCK_SIZE (1 << 20)
32 #define BDRV_SECTORS_PER_DIRTY_CHUNK (BLOCK_SIZE >> BDRV_SECTOR_BITS)
34 #define BLK_MIG_FLAG_DEVICE_BLOCK 0x01
35 #define BLK_MIG_FLAG_EOS 0x02
36 #define BLK_MIG_FLAG_PROGRESS 0x04
37 #define BLK_MIG_FLAG_ZERO_BLOCK 0x08
39 #define MAX_IS_ALLOCATED_SEARCH 65536
41 #define MAX_INFLIGHT_IO 512
43 //#define DEBUG_BLK_MIGRATION
45 #ifdef DEBUG_BLK_MIGRATION
46 #define DPRINTF(fmt, ...) \
47 do { printf("blk_migration: " fmt, ## __VA_ARGS__); } while (0)
49 #define DPRINTF(fmt, ...) \
53 typedef struct BlkMigDevState
{
54 /* Written during setup phase. Can be read without a lock. */
58 int64_t total_sectors
;
59 QSIMPLEQ_ENTRY(BlkMigDevState
) entry
;
62 /* Only used by migration thread. Does not need a lock. */
67 /* Data in the aio_bitmap is protected by block migration lock.
68 * Allocation and free happen during setup and cleanup respectively.
70 unsigned long *aio_bitmap
;
72 /* Protected by block migration lock. */
73 int64_t completed_sectors
;
75 /* During migration this is protected by iothread lock / AioContext.
76 * Allocation and free happen during setup and cleanup respectively.
78 BdrvDirtyBitmap
*dirty_bitmap
;
81 typedef struct BlkMigBlock
{
82 /* Only used by migration thread. */
91 /* Protected by block migration lock. */
93 QSIMPLEQ_ENTRY(BlkMigBlock
) entry
;
96 typedef struct BlkMigState
{
97 /* Written during setup phase. Can be read without a lock. */
100 QSIMPLEQ_HEAD(bmds_list
, BlkMigDevState
) bmds_list
;
101 int64_t total_sector_sum
;
104 /* Protected by lock. */
105 QSIMPLEQ_HEAD(blk_list
, BlkMigBlock
) blk_list
;
109 /* Only used by migration thread. Does not need a lock. */
114 /* Lock must be taken _inside_ the iothread lock and any AioContexts. */
118 static BlkMigState block_mig_state
;
120 static void blk_mig_lock(void)
122 qemu_mutex_lock(&block_mig_state
.lock
);
125 static void blk_mig_unlock(void)
127 qemu_mutex_unlock(&block_mig_state
.lock
);
130 /* Must run outside of the iothread lock during the bulk phase,
131 * or the VM will stall.
134 static void blk_send(QEMUFile
*f
, BlkMigBlock
* blk
)
137 uint64_t flags
= BLK_MIG_FLAG_DEVICE_BLOCK
;
139 if (block_mig_state
.zero_blocks
&&
140 buffer_is_zero(blk
->buf
, BLOCK_SIZE
)) {
141 flags
|= BLK_MIG_FLAG_ZERO_BLOCK
;
144 /* sector number and flags */
145 qemu_put_be64(f
, (blk
->sector
<< BDRV_SECTOR_BITS
)
149 len
= strlen(blk
->bmds
->blk_name
);
150 qemu_put_byte(f
, len
);
151 qemu_put_buffer(f
, (uint8_t *) blk
->bmds
->blk_name
, len
);
153 /* if a block is zero we need to flush here since the network
154 * bandwidth is now a lot higher than the storage device bandwidth.
155 * thus if we queue zero blocks we slow down the migration */
156 if (flags
& BLK_MIG_FLAG_ZERO_BLOCK
) {
161 qemu_put_buffer(f
, blk
->buf
, BLOCK_SIZE
);
164 int blk_mig_active(void)
166 return !QSIMPLEQ_EMPTY(&block_mig_state
.bmds_list
);
169 uint64_t blk_mig_bytes_transferred(void)
171 BlkMigDevState
*bmds
;
175 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
176 sum
+= bmds
->completed_sectors
;
179 return sum
<< BDRV_SECTOR_BITS
;
182 uint64_t blk_mig_bytes_remaining(void)
184 return blk_mig_bytes_total() - blk_mig_bytes_transferred();
187 uint64_t blk_mig_bytes_total(void)
189 BlkMigDevState
*bmds
;
192 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
193 sum
+= bmds
->total_sectors
;
195 return sum
<< BDRV_SECTOR_BITS
;
199 /* Called with migration lock held. */
201 static int bmds_aio_inflight(BlkMigDevState
*bmds
, int64_t sector
)
203 int64_t chunk
= sector
/ (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
;
205 if (sector
< blk_nb_sectors(bmds
->blk
)) {
206 return !!(bmds
->aio_bitmap
[chunk
/ (sizeof(unsigned long) * 8)] &
207 (1UL << (chunk
% (sizeof(unsigned long) * 8))));
213 /* Called with migration lock held. */
215 static void bmds_set_aio_inflight(BlkMigDevState
*bmds
, int64_t sector_num
,
216 int nb_sectors
, int set
)
219 unsigned long val
, idx
, bit
;
221 start
= sector_num
/ BDRV_SECTORS_PER_DIRTY_CHUNK
;
222 end
= (sector_num
+ nb_sectors
- 1) / BDRV_SECTORS_PER_DIRTY_CHUNK
;
224 for (; start
<= end
; start
++) {
225 idx
= start
/ (sizeof(unsigned long) * 8);
226 bit
= start
% (sizeof(unsigned long) * 8);
227 val
= bmds
->aio_bitmap
[idx
];
231 val
&= ~(1UL << bit
);
233 bmds
->aio_bitmap
[idx
] = val
;
237 static void alloc_aio_bitmap(BlkMigDevState
*bmds
)
239 BlockBackend
*bb
= bmds
->blk
;
242 bitmap_size
= blk_nb_sectors(bb
) + BDRV_SECTORS_PER_DIRTY_CHUNK
* 8 - 1;
243 bitmap_size
/= BDRV_SECTORS_PER_DIRTY_CHUNK
* 8;
245 bmds
->aio_bitmap
= g_malloc0(bitmap_size
);
248 /* Never hold migration lock when yielding to the main loop! */
250 static void blk_mig_read_cb(void *opaque
, int ret
)
252 BlkMigBlock
*blk
= opaque
;
257 QSIMPLEQ_INSERT_TAIL(&block_mig_state
.blk_list
, blk
, entry
);
258 bmds_set_aio_inflight(blk
->bmds
, blk
->sector
, blk
->nr_sectors
, 0);
260 block_mig_state
.submitted
--;
261 block_mig_state
.read_done
++;
262 assert(block_mig_state
.submitted
>= 0);
266 /* Called with no lock taken. */
268 static int mig_save_device_bulk(QEMUFile
*f
, BlkMigDevState
*bmds
)
270 int64_t total_sectors
= bmds
->total_sectors
;
271 int64_t cur_sector
= bmds
->cur_sector
;
272 BlockBackend
*bb
= bmds
->blk
;
276 if (bmds
->shared_base
) {
277 qemu_mutex_lock_iothread();
278 aio_context_acquire(blk_get_aio_context(bb
));
279 while (cur_sector
< total_sectors
&&
280 !bdrv_is_allocated(blk_bs(bb
), cur_sector
,
281 MAX_IS_ALLOCATED_SEARCH
, &nr_sectors
)) {
282 cur_sector
+= nr_sectors
;
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(BLOCK_SIZE
);
307 blk
->sector
= cur_sector
;
308 blk
->nr_sectors
= nr_sectors
;
310 blk
->iov
.iov_base
= blk
->buf
;
311 blk
->iov
.iov_len
= nr_sectors
* BDRV_SECTOR_SIZE
;
312 qemu_iovec_init_external(&blk
->qiov
, &blk
->iov
, 1);
315 block_mig_state
.submitted
++;
318 /* We do not know if bs is under the main thread (and thus does
319 * not acquire the AioContext when doing AIO) or rather under
320 * dataplane. Thus acquire both the iothread mutex and the
323 * This is ugly and will disappear when we make bdrv_* thread-safe,
324 * without the need to acquire the AioContext.
326 qemu_mutex_lock_iothread();
327 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
328 blk
->aiocb
= blk_aio_preadv(bb
, cur_sector
* BDRV_SECTOR_SIZE
, &blk
->qiov
,
329 0, blk_mig_read_cb
, blk
);
331 bdrv_reset_dirty_bitmap(bmds
->dirty_bitmap
, cur_sector
, nr_sectors
);
332 aio_context_release(blk_get_aio_context(bmds
->blk
));
333 qemu_mutex_unlock_iothread();
335 bmds
->cur_sector
= cur_sector
+ nr_sectors
;
336 return (bmds
->cur_sector
>= total_sectors
);
339 /* Called with iothread lock taken. */
341 static int set_dirty_tracking(void)
343 BlkMigDevState
*bmds
;
346 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
347 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
348 bmds
->dirty_bitmap
= bdrv_create_dirty_bitmap(blk_bs(bmds
->blk
),
349 BLOCK_SIZE
, NULL
, NULL
);
350 aio_context_release(blk_get_aio_context(bmds
->blk
));
351 if (!bmds
->dirty_bitmap
) {
359 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
360 if (bmds
->dirty_bitmap
) {
361 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
362 bdrv_release_dirty_bitmap(blk_bs(bmds
->blk
), bmds
->dirty_bitmap
);
363 aio_context_release(blk_get_aio_context(bmds
->blk
));
369 /* Called with iothread lock taken. */
371 static void unset_dirty_tracking(void)
373 BlkMigDevState
*bmds
;
375 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
376 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
377 bdrv_release_dirty_bitmap(blk_bs(bmds
->blk
), bmds
->dirty_bitmap
);
378 aio_context_release(blk_get_aio_context(bmds
->blk
));
382 static int init_blk_migration(QEMUFile
*f
)
384 BlockDriverState
*bs
;
385 BlkMigDevState
*bmds
;
390 BlkMigDevState
*bmds
;
391 BlockDriverState
*bs
;
393 Error
*local_err
= NULL
;
396 block_mig_state
.submitted
= 0;
397 block_mig_state
.read_done
= 0;
398 block_mig_state
.transferred
= 0;
399 block_mig_state
.total_sector_sum
= 0;
400 block_mig_state
.prev_progress
= -1;
401 block_mig_state
.bulk_completed
= 0;
402 block_mig_state
.zero_blocks
= migrate_zero_blocks();
404 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
407 bmds_bs
= g_malloc0(num_bs
* sizeof(*bmds_bs
));
409 for (i
= 0, bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
), i
++) {
410 if (bdrv_is_read_only(bs
)) {
414 sectors
= bdrv_nb_sectors(bs
);
420 bmds
= g_new0(BlkMigDevState
, 1);
421 bmds
->blk
= blk_new(BLK_PERM_CONSISTENT_READ
, BLK_PERM_ALL
);
422 bmds
->blk_name
= g_strdup(bdrv_get_device_name(bs
));
423 bmds
->bulk_completed
= 0;
424 bmds
->total_sectors
= sectors
;
425 bmds
->completed_sectors
= 0;
426 bmds
->shared_base
= block_mig_state
.shared_base
;
429 bmds_bs
[i
].bmds
= bmds
;
432 block_mig_state
.total_sector_sum
+= sectors
;
434 if (bmds
->shared_base
) {
435 DPRINTF("Start migration for %s with shared base image\n",
436 bdrv_get_device_name(bs
));
438 DPRINTF("Start full migration for %s\n", bdrv_get_device_name(bs
));
441 QSIMPLEQ_INSERT_TAIL(&block_mig_state
.bmds_list
, bmds
, entry
);
444 /* Can only insert new BDSes now because doing so while iterating block
445 * devices may end up in a deadlock (iterating the new BDSes, too). */
446 for (i
= 0; i
< num_bs
; i
++) {
447 BlkMigDevState
*bmds
= bmds_bs
[i
].bmds
;
448 BlockDriverState
*bs
= bmds_bs
[i
].bs
;
451 ret
= blk_insert_bs(bmds
->blk
, bs
, &local_err
);
453 error_report_err(local_err
);
457 alloc_aio_bitmap(bmds
);
458 error_setg(&bmds
->blocker
, "block device is in use by migration");
459 bdrv_op_block_all(bs
, bmds
->blocker
);
469 /* Called with no lock taken. */
471 static int blk_mig_save_bulked_block(QEMUFile
*f
)
473 int64_t completed_sector_sum
= 0;
474 BlkMigDevState
*bmds
;
478 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
479 if (bmds
->bulk_completed
== 0) {
480 if (mig_save_device_bulk(f
, bmds
) == 1) {
481 /* completed bulk section for this device */
482 bmds
->bulk_completed
= 1;
484 completed_sector_sum
+= bmds
->completed_sectors
;
488 completed_sector_sum
+= bmds
->completed_sectors
;
492 if (block_mig_state
.total_sector_sum
!= 0) {
493 progress
= completed_sector_sum
* 100 /
494 block_mig_state
.total_sector_sum
;
498 if (progress
!= block_mig_state
.prev_progress
) {
499 block_mig_state
.prev_progress
= progress
;
500 qemu_put_be64(f
, (progress
<< BDRV_SECTOR_BITS
)
501 | BLK_MIG_FLAG_PROGRESS
);
502 DPRINTF("Completed %d %%\r", progress
);
508 static void blk_mig_reset_dirty_cursor(void)
510 BlkMigDevState
*bmds
;
512 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
517 /* Called with iothread lock and AioContext taken. */
519 static int mig_save_device_dirty(QEMUFile
*f
, BlkMigDevState
*bmds
,
523 BlockDriverState
*bs
= blk_bs(bmds
->blk
);
524 int64_t total_sectors
= bmds
->total_sectors
;
529 for (sector
= bmds
->cur_dirty
; sector
< bmds
->total_sectors
;) {
531 if (bmds_aio_inflight(bmds
, sector
)) {
533 blk_drain(bmds
->blk
);
537 if (bdrv_get_dirty(bs
, bmds
->dirty_bitmap
, sector
)) {
539 if (total_sectors
- sector
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
540 nr_sectors
= total_sectors
- sector
;
542 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
544 blk
= g_new(BlkMigBlock
, 1);
545 blk
->buf
= g_malloc(BLOCK_SIZE
);
547 blk
->sector
= sector
;
548 blk
->nr_sectors
= nr_sectors
;
551 blk
->iov
.iov_base
= blk
->buf
;
552 blk
->iov
.iov_len
= nr_sectors
* BDRV_SECTOR_SIZE
;
553 qemu_iovec_init_external(&blk
->qiov
, &blk
->iov
, 1);
555 blk
->aiocb
= blk_aio_preadv(bmds
->blk
,
556 sector
* BDRV_SECTOR_SIZE
,
557 &blk
->qiov
, 0, blk_mig_read_cb
,
561 block_mig_state
.submitted
++;
562 bmds_set_aio_inflight(bmds
, sector
, nr_sectors
, 1);
565 ret
= blk_pread(bmds
->blk
, sector
* BDRV_SECTOR_SIZE
, blk
->buf
,
566 nr_sectors
* BDRV_SECTOR_SIZE
);
576 bdrv_reset_dirty_bitmap(bmds
->dirty_bitmap
, sector
, nr_sectors
);
579 sector
+= BDRV_SECTORS_PER_DIRTY_CHUNK
;
580 bmds
->cur_dirty
= sector
;
583 return (bmds
->cur_dirty
>= bmds
->total_sectors
);
586 DPRINTF("Error reading sector %" PRId64
"\n", sector
);
592 /* Called with iothread lock taken.
595 * 0: too much data for max_downtime
596 * 1: few enough data for max_downtime
598 static int blk_mig_save_dirty_block(QEMUFile
*f
, int is_async
)
600 BlkMigDevState
*bmds
;
603 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
604 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
605 ret
= mig_save_device_dirty(f
, bmds
, is_async
);
606 aio_context_release(blk_get_aio_context(bmds
->blk
));
615 /* Called with no locks taken. */
617 static int flush_blks(QEMUFile
*f
)
622 DPRINTF("%s Enter submitted %d read_done %d transferred %d\n",
623 __FUNCTION__
, block_mig_state
.submitted
, block_mig_state
.read_done
,
624 block_mig_state
.transferred
);
627 while ((blk
= QSIMPLEQ_FIRST(&block_mig_state
.blk_list
)) != NULL
) {
628 if (qemu_file_rate_limit(f
)) {
636 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.blk_list
, entry
);
644 block_mig_state
.read_done
--;
645 block_mig_state
.transferred
++;
646 assert(block_mig_state
.read_done
>= 0);
650 DPRINTF("%s Exit submitted %d read_done %d transferred %d\n", __FUNCTION__
,
651 block_mig_state
.submitted
, block_mig_state
.read_done
,
652 block_mig_state
.transferred
);
656 /* Called with iothread lock taken. */
658 static int64_t get_remaining_dirty(void)
660 BlkMigDevState
*bmds
;
663 QSIMPLEQ_FOREACH(bmds
, &block_mig_state
.bmds_list
, entry
) {
664 aio_context_acquire(blk_get_aio_context(bmds
->blk
));
665 dirty
+= bdrv_get_dirty_count(bmds
->dirty_bitmap
);
666 aio_context_release(blk_get_aio_context(bmds
->blk
));
669 return dirty
<< BDRV_SECTOR_BITS
;
672 /* Called with iothread lock taken. */
674 static void block_migration_cleanup(void *opaque
)
676 BlkMigDevState
*bmds
;
682 unset_dirty_tracking();
684 while ((bmds
= QSIMPLEQ_FIRST(&block_mig_state
.bmds_list
)) != NULL
) {
685 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.bmds_list
, entry
);
686 bdrv_op_unblock_all(blk_bs(bmds
->blk
), bmds
->blocker
);
687 error_free(bmds
->blocker
);
689 /* Save ctx, because bmds->blk can disappear during blk_unref. */
690 ctx
= blk_get_aio_context(bmds
->blk
);
691 aio_context_acquire(ctx
);
692 blk_unref(bmds
->blk
);
693 aio_context_release(ctx
);
695 g_free(bmds
->blk_name
);
696 g_free(bmds
->aio_bitmap
);
701 while ((blk
= QSIMPLEQ_FIRST(&block_mig_state
.blk_list
)) != NULL
) {
702 QSIMPLEQ_REMOVE_HEAD(&block_mig_state
.blk_list
, entry
);
709 static int block_save_setup(QEMUFile
*f
, void *opaque
)
713 DPRINTF("Enter save live setup submitted %d transferred %d\n",
714 block_mig_state
.submitted
, block_mig_state
.transferred
);
716 qemu_mutex_lock_iothread();
717 ret
= init_blk_migration(f
);
719 qemu_mutex_unlock_iothread();
723 /* start track dirty blocks */
724 ret
= set_dirty_tracking();
726 qemu_mutex_unlock_iothread();
733 blk_mig_reset_dirty_cursor();
734 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
739 static int block_save_iterate(QEMUFile
*f
, void *opaque
)
742 int64_t last_ftell
= qemu_ftell(f
);
745 DPRINTF("Enter save live iterate submitted %d transferred %d\n",
746 block_mig_state
.submitted
, block_mig_state
.transferred
);
753 blk_mig_reset_dirty_cursor();
755 /* control the rate of transfer */
757 while ((block_mig_state
.submitted
+
758 block_mig_state
.read_done
) * BLOCK_SIZE
<
759 qemu_file_get_rate_limit(f
) &&
760 (block_mig_state
.submitted
+
761 block_mig_state
.read_done
) <
764 if (block_mig_state
.bulk_completed
== 0) {
765 /* first finish the bulk phase */
766 if (blk_mig_save_bulked_block(f
) == 0) {
767 /* finished saving bulk on all devices */
768 block_mig_state
.bulk_completed
= 1;
772 /* Always called with iothread lock taken for
773 * simplicity, block_save_complete also calls it.
775 qemu_mutex_lock_iothread();
776 ret
= blk_mig_save_dirty_block(f
, 1);
777 qemu_mutex_unlock_iothread();
784 /* no more dirty blocks */
795 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
796 delta_ftell
= qemu_ftell(f
) - last_ftell
;
797 if (delta_ftell
> 0) {
799 } else if (delta_ftell
< 0) {
806 /* Called with iothread lock taken. */
808 static int block_save_complete(QEMUFile
*f
, void *opaque
)
812 DPRINTF("Enter save live complete submitted %d transferred %d\n",
813 block_mig_state
.submitted
, block_mig_state
.transferred
);
820 blk_mig_reset_dirty_cursor();
822 /* we know for sure that save bulk is completed and
823 all async read completed */
825 assert(block_mig_state
.submitted
== 0);
829 ret
= blk_mig_save_dirty_block(f
, 0);
835 /* report completion */
836 qemu_put_be64(f
, (100 << BDRV_SECTOR_BITS
) | BLK_MIG_FLAG_PROGRESS
);
838 DPRINTF("Block migration completed\n");
840 qemu_put_be64(f
, BLK_MIG_FLAG_EOS
);
845 static void block_save_pending(QEMUFile
*f
, void *opaque
, uint64_t max_size
,
846 uint64_t *non_postcopiable_pending
,
847 uint64_t *postcopiable_pending
)
849 /* Estimate pending number of bytes to send */
852 qemu_mutex_lock_iothread();
853 pending
= get_remaining_dirty();
854 qemu_mutex_unlock_iothread();
857 pending
+= block_mig_state
.submitted
* BLOCK_SIZE
+
858 block_mig_state
.read_done
* BLOCK_SIZE
;
861 /* Report at least one block pending during bulk phase */
862 if (pending
<= max_size
&& !block_mig_state
.bulk_completed
) {
863 pending
= max_size
+ BLOCK_SIZE
;
866 DPRINTF("Enter save live pending %" PRIu64
"\n", pending
);
867 /* We don't do postcopy */
868 *non_postcopiable_pending
+= pending
;
871 static int block_load(QEMUFile
*f
, void *opaque
, int version_id
)
873 static int banner_printed
;
875 char device_name
[256];
877 BlockBackend
*blk
, *blk_prev
= NULL
;;
878 Error
*local_err
= NULL
;
880 int64_t total_sectors
= 0;
885 addr
= qemu_get_be64(f
);
887 flags
= addr
& ~BDRV_SECTOR_MASK
;
888 addr
>>= BDRV_SECTOR_BITS
;
890 if (flags
& BLK_MIG_FLAG_DEVICE_BLOCK
) {
891 /* get device name */
892 len
= qemu_get_byte(f
);
893 qemu_get_buffer(f
, (uint8_t *)device_name
, len
);
894 device_name
[len
] = '\0';
896 blk
= blk_by_name(device_name
);
898 fprintf(stderr
, "Error unknown block device %s\n",
903 if (blk
!= blk_prev
) {
905 total_sectors
= blk_nb_sectors(blk
);
906 if (total_sectors
<= 0) {
907 error_report("Error getting length of block device %s",
912 blk_invalidate_cache(blk
, &local_err
);
914 error_report_err(local_err
);
919 if (total_sectors
- addr
< BDRV_SECTORS_PER_DIRTY_CHUNK
) {
920 nr_sectors
= total_sectors
- addr
;
922 nr_sectors
= BDRV_SECTORS_PER_DIRTY_CHUNK
;
925 if (flags
& BLK_MIG_FLAG_ZERO_BLOCK
) {
926 ret
= blk_pwrite_zeroes(blk
, addr
* BDRV_SECTOR_SIZE
,
927 nr_sectors
* BDRV_SECTOR_SIZE
,
930 buf
= g_malloc(BLOCK_SIZE
);
931 qemu_get_buffer(f
, buf
, BLOCK_SIZE
);
932 ret
= blk_pwrite(blk
, addr
* BDRV_SECTOR_SIZE
, buf
,
933 nr_sectors
* BDRV_SECTOR_SIZE
, 0);
940 } else if (flags
& BLK_MIG_FLAG_PROGRESS
) {
941 if (!banner_printed
) {
942 printf("Receiving block device images\n");
945 printf("Completed %d %%%c", (int)addr
,
946 (addr
== 100) ? '\n' : '\r');
948 } else if (!(flags
& BLK_MIG_FLAG_EOS
)) {
949 fprintf(stderr
, "Unknown block migration flags: %#x\n", flags
);
952 ret
= qemu_file_get_error(f
);
956 } while (!(flags
& BLK_MIG_FLAG_EOS
));
961 static void block_set_params(const MigrationParams
*params
, void *opaque
)
963 block_mig_state
.blk_enable
= params
->blk
;
964 block_mig_state
.shared_base
= params
->shared
;
966 /* shared base means that blk_enable = 1 */
967 block_mig_state
.blk_enable
|= params
->shared
;
970 static bool block_is_active(void *opaque
)
972 return block_mig_state
.blk_enable
== 1;
975 static SaveVMHandlers savevm_block_handlers
= {
976 .set_params
= block_set_params
,
977 .save_live_setup
= block_save_setup
,
978 .save_live_iterate
= block_save_iterate
,
979 .save_live_complete_precopy
= block_save_complete
,
980 .save_live_pending
= block_save_pending
,
981 .load_state
= block_load
,
982 .cleanup
= block_migration_cleanup
,
983 .is_active
= block_is_active
,
986 void blk_mig_init(void)
988 QSIMPLEQ_INIT(&block_mig_state
.bmds_list
);
989 QSIMPLEQ_INIT(&block_mig_state
.blk_list
);
990 qemu_mutex_init(&block_mig_state
.lock
);
992 register_savevm_live(NULL
, "block", 0, 1, &savevm_block_handlers
,