2 * QEMU live block migration
4 * Copyright IBM, Corp. 2009
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/cutils.h"
20 #include "qemu/queue.h"
22 #include "migration/misc.h"
23 #include "migration.h"
24 #include "migration/register.h"
25 #include "qemu-file.h"
26 #include "migration/vmstate.h"
27 #include "sysemu/block-backend.h"
29 #define BLOCK_SIZE (1 << 20)
30 #define BDRV_SECTORS_PER_DIRTY_CHUNK (BLOCK_SIZE >> BDRV_SECTOR_BITS)
32 #define BLK_MIG_FLAG_DEVICE_BLOCK 0x01
33 #define BLK_MIG_FLAG_EOS 0x02
34 #define BLK_MIG_FLAG_PROGRESS 0x04
35 #define BLK_MIG_FLAG_ZERO_BLOCK 0x08
37 #define MAX_IS_ALLOCATED_SEARCH (65536 * BDRV_SECTOR_SIZE)
39 #define MAX_IO_BUFFERS 512
40 #define MAX_PARALLEL_IO 16
42 //#define DEBUG_BLK_MIGRATION
44 #ifdef DEBUG_BLK_MIGRATION
45 #define DPRINTF(fmt, ...) \
46 do { printf("blk_migration: " fmt, ## __VA_ARGS__); } while (0)
48 #define DPRINTF(fmt, ...) \
52 typedef struct BlkMigDevState {
53 /* Written during setup phase. Can be read without a lock. */
57 int64_t total_sectors;
58 QSIMPLEQ_ENTRY(BlkMigDevState) entry;
61 /* Only used by migration thread. Does not need a lock. */
66 /* Data in the aio_bitmap is protected by block migration lock.
67 * Allocation and free happen during setup and cleanup respectively.
69 unsigned long *aio_bitmap;
71 /* Protected by block migration lock. */
72 int64_t completed_sectors;
74 /* During migration this is protected by iothread lock / AioContext.
75 * Allocation and free happen during setup and cleanup respectively.
77 BdrvDirtyBitmap *dirty_bitmap;
80 typedef struct BlkMigBlock {
81 /* Only used by migration thread. */
89 /* Protected by block migration lock. */
91 QSIMPLEQ_ENTRY(BlkMigBlock) entry;
94 typedef struct BlkMigState {
95 QSIMPLEQ_HEAD(, BlkMigDevState) bmds_list;
96 int64_t total_sector_sum;
99 /* Protected by lock. */
100 QSIMPLEQ_HEAD(, BlkMigBlock) blk_list;
104 /* Only used by migration thread. Does not need a lock. */
109 /* Lock must be taken _inside_ the iothread lock and any AioContexts. */
113 static BlkMigState block_mig_state;
115 static void blk_mig_lock(void)
117 qemu_mutex_lock(&block_mig_state.lock);
120 static void blk_mig_unlock(void)
122 qemu_mutex_unlock(&block_mig_state.lock);
125 /* Must run outside of the iothread lock during the bulk phase,
126 * or the VM will stall.
129 static void blk_send(QEMUFile *f, BlkMigBlock * blk)
132 uint64_t flags = BLK_MIG_FLAG_DEVICE_BLOCK;
134 if (block_mig_state.zero_blocks &&
135 buffer_is_zero(blk->buf, BLOCK_SIZE)) {
136 flags |= BLK_MIG_FLAG_ZERO_BLOCK;
139 /* sector number and flags */
140 qemu_put_be64(f, (blk->sector << BDRV_SECTOR_BITS)
144 len = strlen(blk->bmds->blk_name);
145 qemu_put_byte(f, len);
146 qemu_put_buffer(f, (uint8_t *) blk->bmds->blk_name, len);
148 /* if a block is zero we need to flush here since the network
149 * bandwidth is now a lot higher than the storage device bandwidth.
150 * thus if we queue zero blocks we slow down the migration */
151 if (flags & BLK_MIG_FLAG_ZERO_BLOCK) {
156 qemu_put_buffer(f, blk->buf, BLOCK_SIZE);
159 int blk_mig_active(void)
161 return !QSIMPLEQ_EMPTY(&block_mig_state.bmds_list);
164 int blk_mig_bulk_active(void)
166 return blk_mig_active() && !block_mig_state.bulk_completed;
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;
277 if (bmds->shared_base) {
278 qemu_mutex_lock_iothread();
279 aio_context_acquire(blk_get_aio_context(bb));
280 /* Skip unallocated sectors; intentionally treats failure or
281 * partial sector as an allocated sector */
282 while (cur_sector < total_sectors &&
283 !bdrv_is_allocated(blk_bs(bb), cur_sector * BDRV_SECTOR_SIZE,
284 MAX_IS_ALLOCATED_SEARCH, &count)) {
285 if (count < BDRV_SECTOR_SIZE) {
288 cur_sector += count >> BDRV_SECTOR_BITS;
290 aio_context_release(blk_get_aio_context(bb));
291 qemu_mutex_unlock_iothread();
294 if (cur_sector >= total_sectors) {
295 bmds->cur_sector = bmds->completed_sectors = total_sectors;
299 bmds->completed_sectors = cur_sector;
301 cur_sector &= ~((int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK - 1);
303 /* we are going to transfer a full block even if it is not allocated */
304 nr_sectors = BDRV_SECTORS_PER_DIRTY_CHUNK;
306 if (total_sectors - cur_sector < BDRV_SECTORS_PER_DIRTY_CHUNK) {
307 nr_sectors = total_sectors - cur_sector;
310 blk = g_new(BlkMigBlock, 1);
311 blk->buf = g_malloc(BLOCK_SIZE);
313 blk->sector = cur_sector;
314 blk->nr_sectors = nr_sectors;
316 qemu_iovec_init_buf(&blk->qiov, blk->buf, nr_sectors * BDRV_SECTOR_SIZE);
319 block_mig_state.submitted++;
322 /* We do not know if bs is under the main thread (and thus does
323 * not acquire the AioContext when doing AIO) or rather under
324 * dataplane. Thus acquire both the iothread mutex and the
327 * This is ugly and will disappear when we make bdrv_* thread-safe,
328 * without the need to acquire the AioContext.
330 qemu_mutex_lock_iothread();
331 aio_context_acquire(blk_get_aio_context(bmds->blk));
332 bdrv_reset_dirty_bitmap(bmds->dirty_bitmap, cur_sector * BDRV_SECTOR_SIZE,
333 nr_sectors * BDRV_SECTOR_SIZE);
334 blk->aiocb = blk_aio_preadv(bb, cur_sector * BDRV_SECTOR_SIZE, &blk->qiov,
335 0, blk_mig_read_cb, blk);
336 aio_context_release(blk_get_aio_context(bmds->blk));
337 qemu_mutex_unlock_iothread();
339 bmds->cur_sector = cur_sector + nr_sectors;
340 return (bmds->cur_sector >= total_sectors);
343 /* Called with iothread lock taken. */
345 static int set_dirty_tracking(void)
347 BlkMigDevState *bmds;
350 QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) {
351 bmds->dirty_bitmap = bdrv_create_dirty_bitmap(blk_bs(bmds->blk),
352 BLOCK_SIZE, NULL, NULL);
353 if (!bmds->dirty_bitmap) {
361 QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) {
362 if (bmds->dirty_bitmap) {
363 bdrv_release_dirty_bitmap(blk_bs(bmds->blk), bmds->dirty_bitmap);
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 bdrv_release_dirty_bitmap(blk_bs(bmds->blk), bmds->dirty_bitmap);
380 static int init_blk_migration(QEMUFile *f)
382 BlockDriverState *bs;
383 BlkMigDevState *bmds;
388 BlkMigDevState *bmds;
389 BlockDriverState *bs;
391 Error *local_err = NULL;
394 block_mig_state.submitted = 0;
395 block_mig_state.read_done = 0;
396 block_mig_state.transferred = 0;
397 block_mig_state.total_sector_sum = 0;
398 block_mig_state.prev_progress = -1;
399 block_mig_state.bulk_completed = 0;
400 block_mig_state.zero_blocks = migrate_zero_blocks();
402 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
405 bmds_bs = g_malloc0(num_bs * sizeof(*bmds_bs));
407 for (i = 0, bs = bdrv_first(&it); bs; bs = bdrv_next(&it), i++) {
408 if (bdrv_is_read_only(bs)) {
412 sectors = bdrv_nb_sectors(bs);
415 bdrv_next_cleanup(&it);
419 bmds = g_new0(BlkMigDevState, 1);
420 bmds->blk = blk_new(BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL);
421 bmds->blk_name = g_strdup(bdrv_get_device_name(bs));
422 bmds->bulk_completed = 0;
423 bmds->total_sectors = sectors;
424 bmds->completed_sectors = 0;
425 bmds->shared_base = migrate_use_block_incremental();
428 bmds_bs[i].bmds = bmds;
431 block_mig_state.total_sector_sum += sectors;
433 if (bmds->shared_base) {
434 DPRINTF("Start migration for %s with shared base image\n",
435 bdrv_get_device_name(bs));
437 DPRINTF("Start full migration for %s\n", bdrv_get_device_name(bs));
440 QSIMPLEQ_INSERT_TAIL(&block_mig_state.bmds_list, bmds, entry);
443 /* Can only insert new BDSes now because doing so while iterating block
444 * devices may end up in a deadlock (iterating the new BDSes, too). */
445 for (i = 0; i < num_bs; i++) {
446 BlkMigDevState *bmds = bmds_bs[i].bmds;
447 BlockDriverState *bs = bmds_bs[i].bs;
450 ret = blk_insert_bs(bmds->blk, bs, &local_err);
452 error_report_err(local_err);
456 alloc_aio_bitmap(bmds);
457 error_setg(&bmds->blocker, "block device is in use by migration");
458 bdrv_op_block_all(bs, bmds->blocker);
468 /* Called with no lock taken. */
470 static int blk_mig_save_bulked_block(QEMUFile *f)
472 int64_t completed_sector_sum = 0;
473 BlkMigDevState *bmds;
477 QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) {
478 if (bmds->bulk_completed == 0) {
479 if (mig_save_device_bulk(f, bmds) == 1) {
480 /* completed bulk section for this device */
481 bmds->bulk_completed = 1;
483 completed_sector_sum += bmds->completed_sectors;
487 completed_sector_sum += bmds->completed_sectors;
491 if (block_mig_state.total_sector_sum != 0) {
492 progress = completed_sector_sum * 100 /
493 block_mig_state.total_sector_sum;
497 if (progress != block_mig_state.prev_progress) {
498 block_mig_state.prev_progress = progress;
499 qemu_put_be64(f, (progress << BDRV_SECTOR_BITS)
500 | BLK_MIG_FLAG_PROGRESS);
501 DPRINTF("Completed %d %%\r", progress);
507 static void blk_mig_reset_dirty_cursor(void)
509 BlkMigDevState *bmds;
511 QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) {
516 /* Called with iothread lock and AioContext taken. */
518 static int mig_save_device_dirty(QEMUFile *f, BlkMigDevState *bmds,
522 BlockDriverState *bs = blk_bs(bmds->blk);
523 int64_t total_sectors = bmds->total_sectors;
528 for (sector = bmds->cur_dirty; sector < bmds->total_sectors;) {
530 if (bmds_aio_inflight(bmds, sector)) {
532 blk_drain(bmds->blk);
536 bdrv_dirty_bitmap_lock(bmds->dirty_bitmap);
537 if (bdrv_get_dirty_locked(bs, bmds->dirty_bitmap,
538 sector * BDRV_SECTOR_SIZE)) {
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 bdrv_reset_dirty_bitmap_locked(bmds->dirty_bitmap,
545 sector * BDRV_SECTOR_SIZE,
546 nr_sectors * BDRV_SECTOR_SIZE);
547 bdrv_dirty_bitmap_unlock(bmds->dirty_bitmap);
549 blk = g_new(BlkMigBlock, 1);
550 blk->buf = g_malloc(BLOCK_SIZE);
552 blk->sector = sector;
553 blk->nr_sectors = nr_sectors;
556 qemu_iovec_init_buf(&blk->qiov, blk->buf,
557 nr_sectors * BDRV_SECTOR_SIZE);
559 blk->aiocb = blk_aio_preadv(bmds->blk,
560 sector * BDRV_SECTOR_SIZE,
561 &blk->qiov, 0, blk_mig_read_cb,
565 block_mig_state.submitted++;
566 bmds_set_aio_inflight(bmds, sector, nr_sectors, 1);
569 ret = blk_pread(bmds->blk, sector * BDRV_SECTOR_SIZE, blk->buf,
570 nr_sectors * BDRV_SECTOR_SIZE);
580 sector += nr_sectors;
581 bmds->cur_dirty = sector;
585 bdrv_dirty_bitmap_unlock(bmds->dirty_bitmap);
586 sector += BDRV_SECTORS_PER_DIRTY_CHUNK;
587 bmds->cur_dirty = sector;
590 return (bmds->cur_dirty >= bmds->total_sectors);
593 DPRINTF("Error reading sector %" PRId64 "\n", sector);
599 /* Called with iothread lock taken.
602 * 0: too much data for max_downtime
603 * 1: few enough data for max_downtime
605 static int blk_mig_save_dirty_block(QEMUFile *f, int is_async)
607 BlkMigDevState *bmds;
610 QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) {
611 aio_context_acquire(blk_get_aio_context(bmds->blk));
612 ret = mig_save_device_dirty(f, bmds, is_async);
613 aio_context_release(blk_get_aio_context(bmds->blk));
622 /* Called with no locks taken. */
624 static int flush_blks(QEMUFile *f)
629 DPRINTF("%s Enter submitted %d read_done %d transferred %d\n",
630 __func__, block_mig_state.submitted, block_mig_state.read_done,
631 block_mig_state.transferred);
634 while ((blk = QSIMPLEQ_FIRST(&block_mig_state.blk_list)) != NULL) {
635 if (qemu_file_rate_limit(f)) {
643 QSIMPLEQ_REMOVE_HEAD(&block_mig_state.blk_list, entry);
651 block_mig_state.read_done--;
652 block_mig_state.transferred++;
653 assert(block_mig_state.read_done >= 0);
657 DPRINTF("%s Exit submitted %d read_done %d transferred %d\n", __func__,
658 block_mig_state.submitted, block_mig_state.read_done,
659 block_mig_state.transferred);
663 /* Called with iothread lock taken. */
665 static int64_t get_remaining_dirty(void)
667 BlkMigDevState *bmds;
670 QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) {
671 aio_context_acquire(blk_get_aio_context(bmds->blk));
672 dirty += bdrv_get_dirty_count(bmds->dirty_bitmap);
673 aio_context_release(blk_get_aio_context(bmds->blk));
681 /* Called with iothread lock taken. */
682 static void block_migration_cleanup_bmds(void)
684 BlkMigDevState *bmds;
687 unset_dirty_tracking();
689 while ((bmds = QSIMPLEQ_FIRST(&block_mig_state.bmds_list)) != NULL) {
690 QSIMPLEQ_REMOVE_HEAD(&block_mig_state.bmds_list, entry);
691 bdrv_op_unblock_all(blk_bs(bmds->blk), bmds->blocker);
692 error_free(bmds->blocker);
694 /* Save ctx, because bmds->blk can disappear during blk_unref. */
695 ctx = blk_get_aio_context(bmds->blk);
696 aio_context_acquire(ctx);
697 blk_unref(bmds->blk);
698 aio_context_release(ctx);
700 g_free(bmds->blk_name);
701 g_free(bmds->aio_bitmap);
706 /* Called with iothread lock taken. */
707 static void block_migration_cleanup(void *opaque)
713 block_migration_cleanup_bmds();
716 while ((blk = QSIMPLEQ_FIRST(&block_mig_state.blk_list)) != NULL) {
717 QSIMPLEQ_REMOVE_HEAD(&block_mig_state.blk_list, entry);
724 static int block_save_setup(QEMUFile *f, void *opaque)
728 DPRINTF("Enter save live setup submitted %d transferred %d\n",
729 block_mig_state.submitted, block_mig_state.transferred);
731 qemu_mutex_lock_iothread();
732 ret = init_blk_migration(f);
734 qemu_mutex_unlock_iothread();
738 /* start track dirty blocks */
739 ret = set_dirty_tracking();
741 qemu_mutex_unlock_iothread();
748 blk_mig_reset_dirty_cursor();
749 qemu_put_be64(f, BLK_MIG_FLAG_EOS);
754 static int block_save_iterate(QEMUFile *f, void *opaque)
757 int64_t last_ftell = qemu_ftell(f);
760 DPRINTF("Enter save live iterate submitted %d transferred %d\n",
761 block_mig_state.submitted, block_mig_state.transferred);
768 blk_mig_reset_dirty_cursor();
770 /* control the rate of transfer */
772 while (block_mig_state.read_done * BLOCK_SIZE <
773 qemu_file_get_rate_limit(f) &&
774 block_mig_state.submitted < MAX_PARALLEL_IO &&
775 (block_mig_state.submitted + block_mig_state.read_done) <
778 if (block_mig_state.bulk_completed == 0) {
779 /* first finish the bulk phase */
780 if (blk_mig_save_bulked_block(f) == 0) {
781 /* finished saving bulk on all devices */
782 block_mig_state.bulk_completed = 1;
786 /* Always called with iothread lock taken for
787 * simplicity, block_save_complete also calls it.
789 qemu_mutex_lock_iothread();
790 ret = blk_mig_save_dirty_block(f, 1);
791 qemu_mutex_unlock_iothread();
798 /* no more dirty blocks */
809 qemu_put_be64(f, BLK_MIG_FLAG_EOS);
810 delta_ftell = qemu_ftell(f) - last_ftell;
811 if (delta_ftell > 0) {
813 } else if (delta_ftell < 0) {
820 /* Called with iothread lock taken. */
822 static int block_save_complete(QEMUFile *f, void *opaque)
826 DPRINTF("Enter save live complete submitted %d transferred %d\n",
827 block_mig_state.submitted, block_mig_state.transferred);
834 blk_mig_reset_dirty_cursor();
836 /* we know for sure that save bulk is completed and
837 all async read completed */
839 assert(block_mig_state.submitted == 0);
843 ret = blk_mig_save_dirty_block(f, 0);
849 /* report completion */
850 qemu_put_be64(f, (100 << BDRV_SECTOR_BITS) | BLK_MIG_FLAG_PROGRESS);
852 DPRINTF("Block migration completed\n");
854 qemu_put_be64(f, BLK_MIG_FLAG_EOS);
856 /* Make sure that our BlockBackends are gone, so that the block driver
857 * nodes can be inactivated. */
858 block_migration_cleanup_bmds();
863 static void block_save_pending(QEMUFile *f, void *opaque, uint64_t max_size,
864 uint64_t *res_precopy_only,
865 uint64_t *res_compatible,
866 uint64_t *res_postcopy_only)
868 /* Estimate pending number of bytes to send */
871 qemu_mutex_lock_iothread();
872 pending = get_remaining_dirty();
873 qemu_mutex_unlock_iothread();
876 pending += block_mig_state.submitted * BLOCK_SIZE +
877 block_mig_state.read_done * BLOCK_SIZE;
880 /* Report at least one block pending during bulk phase */
881 if (pending <= max_size && !block_mig_state.bulk_completed) {
882 pending = max_size + BLOCK_SIZE;
885 DPRINTF("Enter save live pending %" PRIu64 "\n", pending);
886 /* We don't do postcopy */
887 *res_precopy_only += pending;
890 static int block_load(QEMUFile *f, void *opaque, int version_id)
892 static int banner_printed;
894 char device_name[256];
896 BlockBackend *blk, *blk_prev = NULL;
897 Error *local_err = NULL;
899 int64_t total_sectors = 0;
903 int cluster_size = BLOCK_SIZE;
906 addr = qemu_get_be64(f);
908 flags = addr & ~BDRV_SECTOR_MASK;
909 addr >>= BDRV_SECTOR_BITS;
911 if (flags & BLK_MIG_FLAG_DEVICE_BLOCK) {
912 /* get device name */
913 len = qemu_get_byte(f);
914 qemu_get_buffer(f, (uint8_t *)device_name, len);
915 device_name[len] = '\0';
917 blk = blk_by_name(device_name);
919 fprintf(stderr, "Error unknown block device %s\n",
924 if (blk != blk_prev) {
926 total_sectors = blk_nb_sectors(blk);
927 if (total_sectors <= 0) {
928 error_report("Error getting length of block device %s",
933 blk_invalidate_cache(blk, &local_err);
935 error_report_err(local_err);
939 ret = bdrv_get_info(blk_bs(blk), &bdi);
940 if (ret == 0 && bdi.cluster_size > 0 &&
941 bdi.cluster_size <= BLOCK_SIZE &&
942 BLOCK_SIZE % bdi.cluster_size == 0) {
943 cluster_size = bdi.cluster_size;
945 cluster_size = BLOCK_SIZE;
949 if (total_sectors - addr < BDRV_SECTORS_PER_DIRTY_CHUNK) {
950 nr_sectors = total_sectors - addr;
952 nr_sectors = BDRV_SECTORS_PER_DIRTY_CHUNK;
955 if (flags & BLK_MIG_FLAG_ZERO_BLOCK) {
956 ret = blk_pwrite_zeroes(blk, addr * BDRV_SECTOR_SIZE,
957 nr_sectors * BDRV_SECTOR_SIZE,
964 buf = g_malloc(BLOCK_SIZE);
965 qemu_get_buffer(f, buf, BLOCK_SIZE);
966 for (i = 0; i < BLOCK_SIZE / cluster_size; i++) {
967 cur_addr = addr * BDRV_SECTOR_SIZE + i * cluster_size;
968 cur_buf = buf + i * cluster_size;
970 if ((!block_mig_state.zero_blocks ||
971 cluster_size < BLOCK_SIZE) &&
972 buffer_is_zero(cur_buf, cluster_size)) {
973 ret = blk_pwrite_zeroes(blk, cur_addr,
977 ret = blk_pwrite(blk, cur_addr, cur_buf,
990 } else if (flags & BLK_MIG_FLAG_PROGRESS) {
991 if (!banner_printed) {
992 printf("Receiving block device images\n");
995 printf("Completed %d %%%c", (int)addr,
996 (addr == 100) ? '\n' : '\r');
998 } else if (!(flags & BLK_MIG_FLAG_EOS)) {
999 fprintf(stderr, "Unknown block migration flags: %#x\n", flags);
1002 ret = qemu_file_get_error(f);
1006 } while (!(flags & BLK_MIG_FLAG_EOS));
1011 static bool block_is_active(void *opaque)
1013 return migrate_use_block();
1016 static SaveVMHandlers savevm_block_handlers = {
1017 .save_setup = block_save_setup,
1018 .save_live_iterate = block_save_iterate,
1019 .save_live_complete_precopy = block_save_complete,
1020 .save_live_pending = block_save_pending,
1021 .load_state = block_load,
1022 .save_cleanup = block_migration_cleanup,
1023 .is_active = block_is_active,
1026 void blk_mig_init(void)
1028 QSIMPLEQ_INIT(&block_mig_state.bmds_list);
1029 QSIMPLEQ_INIT(&block_mig_state.blk_list);
1030 qemu_mutex_init(&block_mig_state.lock);
1032 register_savevm_live(NULL, "block", 0, 1, &savevm_block_handlers,