]>
Commit | Line | Data |
---|---|---|
c163b5ca LS |
1 | /* |
2 | * QEMU live block migration | |
3 | * | |
4 | * Copyright IBM, Corp. 2009 | |
5 | * | |
6 | * Authors: | |
7 | * Liran Schour <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
10 | * the COPYING file in the top-level directory. | |
11 | * | |
6b620ca3 PB |
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. | |
c163b5ca LS |
14 | */ |
15 | ||
1393a485 | 16 | #include "qemu/osdep.h" |
da34e65c | 17 | #include "qapi/error.h" |
bfb197e0 | 18 | #include "qemu/error-report.h" |
db725815 | 19 | #include "qemu/main-loop.h" |
f348b6d1 | 20 | #include "qemu/cutils.h" |
1de7afc9 | 21 | #include "qemu/queue.h" |
2c9e6fec JQ |
22 | #include "block.h" |
23 | #include "migration/misc.h" | |
6666c96a | 24 | #include "migration.h" |
f2a8f0a6 | 25 | #include "migration/register.h" |
08a0aee1 | 26 | #include "qemu-file.h" |
987772d9 | 27 | #include "migration/vmstate.h" |
c9ebaf74 | 28 | #include "sysemu/block-backend.h" |
c163b5ca | 29 | |
50717e94 PB |
30 | #define BLOCK_SIZE (1 << 20) |
31 | #define BDRV_SECTORS_PER_DIRTY_CHUNK (BLOCK_SIZE >> BDRV_SECTOR_BITS) | |
c163b5ca LS |
32 | |
33 | #define BLK_MIG_FLAG_DEVICE_BLOCK 0x01 | |
34 | #define BLK_MIG_FLAG_EOS 0x02 | |
01e61e2d | 35 | #define BLK_MIG_FLAG_PROGRESS 0x04 |
323004a3 | 36 | #define BLK_MIG_FLAG_ZERO_BLOCK 0x08 |
c163b5ca | 37 | |
d6a644bb | 38 | #define MAX_IS_ALLOCATED_SEARCH (65536 * BDRV_SECTOR_SIZE) |
c163b5ca | 39 | |
ef9c5160 | 40 | #define MAX_IO_BUFFERS 512 |
44815334 | 41 | #define MAX_PARALLEL_IO 16 |
f77dcdbc | 42 | |
c163b5ca LS |
43 | //#define DEBUG_BLK_MIGRATION |
44 | ||
45 | #ifdef DEBUG_BLK_MIGRATION | |
d0f2c4c6 | 46 | #define DPRINTF(fmt, ...) \ |
c163b5ca LS |
47 | do { printf("blk_migration: " fmt, ## __VA_ARGS__); } while (0) |
48 | #else | |
d0f2c4c6 | 49 | #define DPRINTF(fmt, ...) \ |
c163b5ca LS |
50 | do { } while (0) |
51 | #endif | |
52 | ||
a55eb92c | 53 | typedef struct BlkMigDevState { |
323920c4 | 54 | /* Written during setup phase. Can be read without a lock. */ |
ebd2f9e7 KW |
55 | BlockBackend *blk; |
56 | char *blk_name; | |
a55eb92c | 57 | int shared_base; |
a55eb92c | 58 | int64_t total_sectors; |
5e5328be | 59 | QSIMPLEQ_ENTRY(BlkMigDevState) entry; |
ef0716df | 60 | Error *blocker; |
323920c4 PB |
61 | |
62 | /* Only used by migration thread. Does not need a lock. */ | |
63 | int bulk_completed; | |
64 | int64_t cur_sector; | |
65 | int64_t cur_dirty; | |
66 | ||
ef0716df PB |
67 | /* Data in the aio_bitmap is protected by block migration lock. |
68 | * Allocation and free happen during setup and cleanup respectively. | |
69 | */ | |
33656af7 | 70 | unsigned long *aio_bitmap; |
ef0716df PB |
71 | |
72 | /* Protected by block migration lock. */ | |
323920c4 | 73 | int64_t completed_sectors; |
ef0716df PB |
74 | |
75 | /* During migration this is protected by iothread lock / AioContext. | |
76 | * Allocation and free happen during setup and cleanup respectively. | |
77 | */ | |
e4654d2d | 78 | BdrvDirtyBitmap *dirty_bitmap; |
a55eb92c JK |
79 | } BlkMigDevState; |
80 | ||
c163b5ca | 81 | typedef struct BlkMigBlock { |
323920c4 | 82 | /* Only used by migration thread. */ |
c163b5ca LS |
83 | uint8_t *buf; |
84 | BlkMigDevState *bmds; | |
85 | int64_t sector; | |
33656af7 | 86 | int nr_sectors; |
c163b5ca | 87 | QEMUIOVector qiov; |
7c84b1b8 | 88 | BlockAIOCB *aiocb; |
323920c4 | 89 | |
52e850de | 90 | /* Protected by block migration lock. */ |
c163b5ca | 91 | int ret; |
5e5328be | 92 | QSIMPLEQ_ENTRY(BlkMigBlock) entry; |
c163b5ca LS |
93 | } BlkMigBlock; |
94 | ||
95 | typedef struct BlkMigState { | |
b58deb34 | 96 | QSIMPLEQ_HEAD(, BlkMigDevState) bmds_list; |
323920c4 | 97 | int64_t total_sector_sum; |
323004a3 | 98 | bool zero_blocks; |
323920c4 | 99 | |
52e850de | 100 | /* Protected by lock. */ |
b58deb34 | 101 | QSIMPLEQ_HEAD(, BlkMigBlock) blk_list; |
c163b5ca LS |
102 | int submitted; |
103 | int read_done; | |
323920c4 PB |
104 | |
105 | /* Only used by migration thread. Does not need a lock. */ | |
c163b5ca | 106 | int transferred; |
01e61e2d | 107 | int prev_progress; |
e970ec0b | 108 | int bulk_completed; |
52e850de | 109 | |
ef0716df | 110 | /* Lock must be taken _inside_ the iothread lock and any AioContexts. */ |
52e850de | 111 | QemuMutex lock; |
c163b5ca LS |
112 | } BlkMigState; |
113 | ||
d11ecd3d | 114 | static BlkMigState block_mig_state; |
c163b5ca | 115 | |
52e850de PB |
116 | static void blk_mig_lock(void) |
117 | { | |
118 | qemu_mutex_lock(&block_mig_state.lock); | |
119 | } | |
120 | ||
121 | static void blk_mig_unlock(void) | |
122 | { | |
123 | qemu_mutex_unlock(&block_mig_state.lock); | |
124 | } | |
125 | ||
32c835ba PB |
126 | /* Must run outside of the iothread lock during the bulk phase, |
127 | * or the VM will stall. | |
128 | */ | |
129 | ||
13f0b67f JK |
130 | static void blk_send(QEMUFile *f, BlkMigBlock * blk) |
131 | { | |
132 | int len; | |
323004a3 PL |
133 | uint64_t flags = BLK_MIG_FLAG_DEVICE_BLOCK; |
134 | ||
135 | if (block_mig_state.zero_blocks && | |
136 | buffer_is_zero(blk->buf, BLOCK_SIZE)) { | |
137 | flags |= BLK_MIG_FLAG_ZERO_BLOCK; | |
138 | } | |
13f0b67f JK |
139 | |
140 | /* sector number and flags */ | |
141 | qemu_put_be64(f, (blk->sector << BDRV_SECTOR_BITS) | |
323004a3 | 142 | | flags); |
13f0b67f JK |
143 | |
144 | /* device name */ | |
ebd2f9e7 | 145 | len = strlen(blk->bmds->blk_name); |
13f0b67f | 146 | qemu_put_byte(f, len); |
ebd2f9e7 | 147 | qemu_put_buffer(f, (uint8_t *) blk->bmds->blk_name, len); |
13f0b67f | 148 | |
323004a3 PL |
149 | /* if a block is zero we need to flush here since the network |
150 | * bandwidth is now a lot higher than the storage device bandwidth. | |
151 | * thus if we queue zero blocks we slow down the migration */ | |
152 | if (flags & BLK_MIG_FLAG_ZERO_BLOCK) { | |
153 | qemu_fflush(f); | |
154 | return; | |
155 | } | |
156 | ||
13f0b67f JK |
157 | qemu_put_buffer(f, blk->buf, BLOCK_SIZE); |
158 | } | |
159 | ||
25f23643 JK |
160 | int blk_mig_active(void) |
161 | { | |
162 | return !QSIMPLEQ_EMPTY(&block_mig_state.bmds_list); | |
163 | } | |
164 | ||
9ac78b61 PL |
165 | int blk_mig_bulk_active(void) |
166 | { | |
167 | return blk_mig_active() && !block_mig_state.bulk_completed; | |
168 | } | |
169 | ||
25f23643 JK |
170 | uint64_t blk_mig_bytes_transferred(void) |
171 | { | |
172 | BlkMigDevState *bmds; | |
173 | uint64_t sum = 0; | |
174 | ||
52e850de | 175 | blk_mig_lock(); |
25f23643 JK |
176 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { |
177 | sum += bmds->completed_sectors; | |
178 | } | |
52e850de | 179 | blk_mig_unlock(); |
25f23643 JK |
180 | return sum << BDRV_SECTOR_BITS; |
181 | } | |
182 | ||
183 | uint64_t blk_mig_bytes_remaining(void) | |
184 | { | |
185 | return blk_mig_bytes_total() - blk_mig_bytes_transferred(); | |
186 | } | |
187 | ||
188 | uint64_t blk_mig_bytes_total(void) | |
189 | { | |
190 | BlkMigDevState *bmds; | |
191 | uint64_t sum = 0; | |
192 | ||
193 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { | |
194 | sum += bmds->total_sectors; | |
195 | } | |
196 | return sum << BDRV_SECTOR_BITS; | |
197 | } | |
198 | ||
52e850de PB |
199 | |
200 | /* Called with migration lock held. */ | |
201 | ||
33656af7 MT |
202 | static int bmds_aio_inflight(BlkMigDevState *bmds, int64_t sector) |
203 | { | |
204 | int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK; | |
205 | ||
ebd2f9e7 | 206 | if (sector < blk_nb_sectors(bmds->blk)) { |
33656af7 MT |
207 | return !!(bmds->aio_bitmap[chunk / (sizeof(unsigned long) * 8)] & |
208 | (1UL << (chunk % (sizeof(unsigned long) * 8)))); | |
209 | } else { | |
210 | return 0; | |
211 | } | |
212 | } | |
213 | ||
52e850de PB |
214 | /* Called with migration lock held. */ |
215 | ||
33656af7 MT |
216 | static void bmds_set_aio_inflight(BlkMigDevState *bmds, int64_t sector_num, |
217 | int nb_sectors, int set) | |
218 | { | |
219 | int64_t start, end; | |
220 | unsigned long val, idx, bit; | |
221 | ||
222 | start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK; | |
223 | end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK; | |
224 | ||
225 | for (; start <= end; start++) { | |
226 | idx = start / (sizeof(unsigned long) * 8); | |
227 | bit = start % (sizeof(unsigned long) * 8); | |
228 | val = bmds->aio_bitmap[idx]; | |
229 | if (set) { | |
62155e2b | 230 | val |= 1UL << bit; |
33656af7 | 231 | } else { |
62155e2b | 232 | val &= ~(1UL << bit); |
33656af7 MT |
233 | } |
234 | bmds->aio_bitmap[idx] = val; | |
235 | } | |
236 | } | |
237 | ||
238 | static void alloc_aio_bitmap(BlkMigDevState *bmds) | |
239 | { | |
ebd2f9e7 | 240 | BlockBackend *bb = bmds->blk; |
33656af7 MT |
241 | int64_t bitmap_size; |
242 | ||
ebd2f9e7 | 243 | bitmap_size = blk_nb_sectors(bb) + BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1; |
33656af7 MT |
244 | bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8; |
245 | ||
7267c094 | 246 | bmds->aio_bitmap = g_malloc0(bitmap_size); |
33656af7 MT |
247 | } |
248 | ||
52e850de PB |
249 | /* Never hold migration lock when yielding to the main loop! */ |
250 | ||
c163b5ca LS |
251 | static void blk_mig_read_cb(void *opaque, int ret) |
252 | { | |
253 | BlkMigBlock *blk = opaque; | |
a55eb92c | 254 | |
52e850de | 255 | blk_mig_lock(); |
c163b5ca | 256 | blk->ret = ret; |
a55eb92c | 257 | |
5e5328be | 258 | QSIMPLEQ_INSERT_TAIL(&block_mig_state.blk_list, blk, entry); |
33656af7 | 259 | bmds_set_aio_inflight(blk->bmds, blk->sector, blk->nr_sectors, 0); |
a55eb92c | 260 | |
d11ecd3d JK |
261 | block_mig_state.submitted--; |
262 | block_mig_state.read_done++; | |
263 | assert(block_mig_state.submitted >= 0); | |
52e850de | 264 | blk_mig_unlock(); |
c163b5ca LS |
265 | } |
266 | ||
32c835ba PB |
267 | /* Called with no lock taken. */ |
268 | ||
539de124 | 269 | static int mig_save_device_bulk(QEMUFile *f, BlkMigDevState *bmds) |
a55eb92c | 270 | { |
57cce12d JK |
271 | int64_t total_sectors = bmds->total_sectors; |
272 | int64_t cur_sector = bmds->cur_sector; | |
ebd2f9e7 | 273 | BlockBackend *bb = bmds->blk; |
c163b5ca | 274 | BlkMigBlock *blk; |
13f0b67f | 275 | int nr_sectors; |
d6a644bb | 276 | int64_t count; |
a55eb92c | 277 | |
57cce12d | 278 | if (bmds->shared_base) { |
32c835ba | 279 | qemu_mutex_lock_iothread(); |
ebd2f9e7 | 280 | aio_context_acquire(blk_get_aio_context(bb)); |
d6a644bb EB |
281 | /* Skip unallocated sectors; intentionally treats failure or |
282 | * partial sector as an allocated sector */ | |
b1d10856 | 283 | while (cur_sector < total_sectors && |
d6a644bb EB |
284 | !bdrv_is_allocated(blk_bs(bb), cur_sector * BDRV_SECTOR_SIZE, |
285 | MAX_IS_ALLOCATED_SEARCH, &count)) { | |
286 | if (count < BDRV_SECTOR_SIZE) { | |
287 | break; | |
288 | } | |
289 | cur_sector += count >> BDRV_SECTOR_BITS; | |
c163b5ca | 290 | } |
ebd2f9e7 | 291 | aio_context_release(blk_get_aio_context(bb)); |
32c835ba | 292 | qemu_mutex_unlock_iothread(); |
c163b5ca | 293 | } |
a55eb92c JK |
294 | |
295 | if (cur_sector >= total_sectors) { | |
82801d8f | 296 | bmds->cur_sector = bmds->completed_sectors = total_sectors; |
c163b5ca LS |
297 | return 1; |
298 | } | |
a55eb92c | 299 | |
82801d8f | 300 | bmds->completed_sectors = cur_sector; |
a55eb92c | 301 | |
57cce12d JK |
302 | cur_sector &= ~((int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK - 1); |
303 | ||
6ea44308 JK |
304 | /* we are going to transfer a full block even if it is not allocated */ |
305 | nr_sectors = BDRV_SECTORS_PER_DIRTY_CHUNK; | |
c163b5ca | 306 | |
6ea44308 | 307 | if (total_sectors - cur_sector < BDRV_SECTORS_PER_DIRTY_CHUNK) { |
57cce12d | 308 | nr_sectors = total_sectors - cur_sector; |
c163b5ca | 309 | } |
a55eb92c | 310 | |
5839e53b | 311 | blk = g_new(BlkMigBlock, 1); |
7267c094 | 312 | blk->buf = g_malloc(BLOCK_SIZE); |
13f0b67f JK |
313 | blk->bmds = bmds; |
314 | blk->sector = cur_sector; | |
33656af7 | 315 | blk->nr_sectors = nr_sectors; |
a55eb92c | 316 | |
f556f37b | 317 | qemu_iovec_init_buf(&blk->qiov, blk->buf, nr_sectors * BDRV_SECTOR_SIZE); |
a55eb92c | 318 | |
52e850de | 319 | blk_mig_lock(); |
13197e3c | 320 | block_mig_state.submitted++; |
52e850de | 321 | blk_mig_unlock(); |
13197e3c | 322 | |
ef0716df PB |
323 | /* We do not know if bs is under the main thread (and thus does |
324 | * not acquire the AioContext when doing AIO) or rather under | |
325 | * dataplane. Thus acquire both the iothread mutex and the | |
326 | * AioContext. | |
327 | * | |
328 | * This is ugly and will disappear when we make bdrv_* thread-safe, | |
329 | * without the need to acquire the AioContext. | |
330 | */ | |
32c835ba | 331 | qemu_mutex_lock_iothread(); |
ebd2f9e7 | 332 | aio_context_acquire(blk_get_aio_context(bmds->blk)); |
e0d7f73e EB |
333 | bdrv_reset_dirty_bitmap(bmds->dirty_bitmap, cur_sector * BDRV_SECTOR_SIZE, |
334 | nr_sectors * BDRV_SECTOR_SIZE); | |
86b124bc PL |
335 | blk->aiocb = blk_aio_preadv(bb, cur_sector * BDRV_SECTOR_SIZE, &blk->qiov, |
336 | 0, blk_mig_read_cb, blk); | |
ebd2f9e7 | 337 | aio_context_release(blk_get_aio_context(bmds->blk)); |
32c835ba | 338 | qemu_mutex_unlock_iothread(); |
a55eb92c | 339 | |
32c835ba | 340 | bmds->cur_sector = cur_sector + nr_sectors; |
13f0b67f | 341 | return (bmds->cur_sector >= total_sectors); |
c163b5ca LS |
342 | } |
343 | ||
32c835ba PB |
344 | /* Called with iothread lock taken. */ |
345 | ||
b8afb520 | 346 | static int set_dirty_tracking(void) |
c163b5ca LS |
347 | { |
348 | BlkMigDevState *bmds; | |
b8afb520 FZ |
349 | int ret; |
350 | ||
351 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { | |
ebd2f9e7 KW |
352 | bmds->dirty_bitmap = bdrv_create_dirty_bitmap(blk_bs(bmds->blk), |
353 | BLOCK_SIZE, NULL, NULL); | |
b8afb520 FZ |
354 | if (!bmds->dirty_bitmap) { |
355 | ret = -errno; | |
356 | goto fail; | |
357 | } | |
358 | } | |
359 | return 0; | |
5e5328be | 360 | |
b8afb520 | 361 | fail: |
5e5328be | 362 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { |
b8afb520 | 363 | if (bmds->dirty_bitmap) { |
ebd2f9e7 | 364 | bdrv_release_dirty_bitmap(blk_bs(bmds->blk), bmds->dirty_bitmap); |
b8afb520 | 365 | } |
e4654d2d | 366 | } |
b8afb520 | 367 | return ret; |
e4654d2d FZ |
368 | } |
369 | ||
ef0716df PB |
370 | /* Called with iothread lock taken. */ |
371 | ||
e4654d2d FZ |
372 | static void unset_dirty_tracking(void) |
373 | { | |
374 | BlkMigDevState *bmds; | |
375 | ||
376 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { | |
ebd2f9e7 | 377 | bdrv_release_dirty_bitmap(blk_bs(bmds->blk), bmds->dirty_bitmap); |
c163b5ca | 378 | } |
c163b5ca LS |
379 | } |
380 | ||
6f5ef23a | 381 | static int init_blk_migration(QEMUFile *f) |
c163b5ca | 382 | { |
fea68bb6 | 383 | BlockDriverState *bs; |
5e5328be | 384 | BlkMigDevState *bmds; |
792773b2 | 385 | int64_t sectors; |
88be7b4b | 386 | BdrvNextIterator it; |
ebd2f9e7 KW |
387 | int i, num_bs = 0; |
388 | struct { | |
389 | BlkMigDevState *bmds; | |
390 | BlockDriverState *bs; | |
391 | } *bmds_bs; | |
6f5ef23a KW |
392 | Error *local_err = NULL; |
393 | int ret; | |
a55eb92c | 394 | |
fea68bb6 MA |
395 | block_mig_state.submitted = 0; |
396 | block_mig_state.read_done = 0; | |
397 | block_mig_state.transferred = 0; | |
398 | block_mig_state.total_sector_sum = 0; | |
399 | block_mig_state.prev_progress = -1; | |
400 | block_mig_state.bulk_completed = 0; | |
401 | block_mig_state.zero_blocks = migrate_zero_blocks(); | |
402 | ||
88be7b4b | 403 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
ebd2f9e7 KW |
404 | num_bs++; |
405 | } | |
406 | bmds_bs = g_malloc0(num_bs * sizeof(*bmds_bs)); | |
407 | ||
408 | for (i = 0, bs = bdrv_first(&it); bs; bs = bdrv_next(&it), i++) { | |
fea68bb6 MA |
409 | if (bdrv_is_read_only(bs)) { |
410 | continue; | |
411 | } | |
412 | ||
57322b78 | 413 | sectors = bdrv_nb_sectors(bs); |
31f54f24 | 414 | if (sectors <= 0) { |
6f5ef23a | 415 | ret = sectors; |
5e003f17 | 416 | bdrv_next_cleanup(&it); |
ebd2f9e7 | 417 | goto out; |
b66460e4 SH |
418 | } |
419 | ||
5839e53b | 420 | bmds = g_new0(BlkMigDevState, 1); |
d861ab3a KW |
421 | bmds->blk = blk_new(qemu_get_aio_context(), |
422 | BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL); | |
ebd2f9e7 | 423 | bmds->blk_name = g_strdup(bdrv_get_device_name(bs)); |
b66460e4 SH |
424 | bmds->bulk_completed = 0; |
425 | bmds->total_sectors = sectors; | |
426 | bmds->completed_sectors = 0; | |
ce7c817c | 427 | bmds->shared_base = migrate_use_block_incremental(); |
ebd2f9e7 KW |
428 | |
429 | assert(i < num_bs); | |
430 | bmds_bs[i].bmds = bmds; | |
431 | bmds_bs[i].bs = bs; | |
b66460e4 SH |
432 | |
433 | block_mig_state.total_sector_sum += sectors; | |
434 | ||
435 | if (bmds->shared_base) { | |
539de124 | 436 | DPRINTF("Start migration for %s with shared base image\n", |
bfb197e0 | 437 | bdrv_get_device_name(bs)); |
b66460e4 | 438 | } else { |
bfb197e0 | 439 | DPRINTF("Start full migration for %s\n", bdrv_get_device_name(bs)); |
b66460e4 SH |
440 | } |
441 | ||
442 | QSIMPLEQ_INSERT_TAIL(&block_mig_state.bmds_list, bmds, entry); | |
443 | } | |
ebd2f9e7 KW |
444 | |
445 | /* Can only insert new BDSes now because doing so while iterating block | |
446 | * devices may end up in a deadlock (iterating the new BDSes, too). */ | |
447 | for (i = 0; i < num_bs; i++) { | |
448 | BlkMigDevState *bmds = bmds_bs[i].bmds; | |
449 | BlockDriverState *bs = bmds_bs[i].bs; | |
450 | ||
451 | if (bmds) { | |
6f5ef23a KW |
452 | ret = blk_insert_bs(bmds->blk, bs, &local_err); |
453 | if (ret < 0) { | |
454 | error_report_err(local_err); | |
455 | goto out; | |
456 | } | |
ebd2f9e7 KW |
457 | |
458 | alloc_aio_bitmap(bmds); | |
459 | error_setg(&bmds->blocker, "block device is in use by migration"); | |
460 | bdrv_op_block_all(bs, bmds->blocker); | |
461 | } | |
462 | } | |
463 | ||
6f5ef23a | 464 | ret = 0; |
ebd2f9e7 KW |
465 | out: |
466 | g_free(bmds_bs); | |
6f5ef23a | 467 | return ret; |
b66460e4 SH |
468 | } |
469 | ||
32c835ba PB |
470 | /* Called with no lock taken. */ |
471 | ||
539de124 | 472 | static int blk_mig_save_bulked_block(QEMUFile *f) |
c163b5ca | 473 | { |
82801d8f | 474 | int64_t completed_sector_sum = 0; |
c163b5ca | 475 | BlkMigDevState *bmds; |
01e61e2d | 476 | int progress; |
82801d8f | 477 | int ret = 0; |
c163b5ca | 478 | |
5e5328be | 479 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { |
a55eb92c | 480 | if (bmds->bulk_completed == 0) { |
539de124 | 481 | if (mig_save_device_bulk(f, bmds) == 1) { |
57cce12d JK |
482 | /* completed bulk section for this device */ |
483 | bmds->bulk_completed = 1; | |
c163b5ca | 484 | } |
82801d8f JK |
485 | completed_sector_sum += bmds->completed_sectors; |
486 | ret = 1; | |
487 | break; | |
488 | } else { | |
489 | completed_sector_sum += bmds->completed_sectors; | |
c163b5ca LS |
490 | } |
491 | } | |
a55eb92c | 492 | |
8b6b2afc PR |
493 | if (block_mig_state.total_sector_sum != 0) { |
494 | progress = completed_sector_sum * 100 / | |
495 | block_mig_state.total_sector_sum; | |
496 | } else { | |
497 | progress = 100; | |
498 | } | |
01e61e2d JK |
499 | if (progress != block_mig_state.prev_progress) { |
500 | block_mig_state.prev_progress = progress; | |
501 | qemu_put_be64(f, (progress << BDRV_SECTOR_BITS) | |
502 | | BLK_MIG_FLAG_PROGRESS); | |
539de124 | 503 | DPRINTF("Completed %d %%\r", progress); |
82801d8f JK |
504 | } |
505 | ||
506 | return ret; | |
c163b5ca LS |
507 | } |
508 | ||
d76cac7d | 509 | static void blk_mig_reset_dirty_cursor(void) |
c163b5ca LS |
510 | { |
511 | BlkMigDevState *bmds; | |
d76cac7d LS |
512 | |
513 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { | |
514 | bmds->cur_dirty = 0; | |
515 | } | |
516 | } | |
517 | ||
ef0716df | 518 | /* Called with iothread lock and AioContext taken. */ |
32c835ba | 519 | |
539de124 LC |
520 | static int mig_save_device_dirty(QEMUFile *f, BlkMigDevState *bmds, |
521 | int is_async) | |
d76cac7d LS |
522 | { |
523 | BlkMigBlock *blk; | |
524 | int64_t total_sectors = bmds->total_sectors; | |
c163b5ca | 525 | int64_t sector; |
d76cac7d | 526 | int nr_sectors; |
dcd1d224 | 527 | int ret = -EIO; |
a55eb92c | 528 | |
d76cac7d | 529 | for (sector = bmds->cur_dirty; sector < bmds->total_sectors;) { |
52e850de | 530 | blk_mig_lock(); |
62155e2b | 531 | if (bmds_aio_inflight(bmds, sector)) { |
52e850de | 532 | blk_mig_unlock(); |
ebd2f9e7 | 533 | blk_drain(bmds->blk); |
52e850de PB |
534 | } else { |
535 | blk_mig_unlock(); | |
62155e2b | 536 | } |
b64bd51e | 537 | bdrv_dirty_bitmap_lock(bmds->dirty_bitmap); |
28636b82 JS |
538 | if (bdrv_dirty_bitmap_get_locked(bmds->dirty_bitmap, |
539 | sector * BDRV_SECTOR_SIZE)) { | |
d76cac7d LS |
540 | if (total_sectors - sector < BDRV_SECTORS_PER_DIRTY_CHUNK) { |
541 | nr_sectors = total_sectors - sector; | |
542 | } else { | |
543 | nr_sectors = BDRV_SECTORS_PER_DIRTY_CHUNK; | |
544 | } | |
e0d7f73e EB |
545 | bdrv_reset_dirty_bitmap_locked(bmds->dirty_bitmap, |
546 | sector * BDRV_SECTOR_SIZE, | |
547 | nr_sectors * BDRV_SECTOR_SIZE); | |
b64bd51e | 548 | bdrv_dirty_bitmap_unlock(bmds->dirty_bitmap); |
c0bad499 | 549 | |
5839e53b | 550 | blk = g_new(BlkMigBlock, 1); |
7267c094 | 551 | blk->buf = g_malloc(BLOCK_SIZE); |
d76cac7d LS |
552 | blk->bmds = bmds; |
553 | blk->sector = sector; | |
33656af7 | 554 | blk->nr_sectors = nr_sectors; |
d76cac7d | 555 | |
889ae39c | 556 | if (is_async) { |
f556f37b VSO |
557 | qemu_iovec_init_buf(&blk->qiov, blk->buf, |
558 | nr_sectors * BDRV_SECTOR_SIZE); | |
d76cac7d | 559 | |
ebd2f9e7 KW |
560 | blk->aiocb = blk_aio_preadv(bmds->blk, |
561 | sector * BDRV_SECTOR_SIZE, | |
562 | &blk->qiov, 0, blk_mig_read_cb, | |
563 | blk); | |
52e850de PB |
564 | |
565 | blk_mig_lock(); | |
d76cac7d | 566 | block_mig_state.submitted++; |
33656af7 | 567 | bmds_set_aio_inflight(bmds, sector, nr_sectors, 1); |
52e850de | 568 | blk_mig_unlock(); |
d76cac7d | 569 | } else { |
ebd2f9e7 KW |
570 | ret = blk_pread(bmds->blk, sector * BDRV_SECTOR_SIZE, blk->buf, |
571 | nr_sectors * BDRV_SECTOR_SIZE); | |
dcd1d224 | 572 | if (ret < 0) { |
d76cac7d | 573 | goto error; |
c163b5ca | 574 | } |
d76cac7d | 575 | blk_send(f, blk); |
a55eb92c | 576 | |
7267c094 AL |
577 | g_free(blk->buf); |
578 | g_free(blk); | |
a55eb92c | 579 | } |
d76cac7d | 580 | |
1cf6aa74 LC |
581 | sector += nr_sectors; |
582 | bmds->cur_dirty = sector; | |
d76cac7d | 583 | break; |
c163b5ca | 584 | } |
b64bd51e PB |
585 | |
586 | bdrv_dirty_bitmap_unlock(bmds->dirty_bitmap); | |
d76cac7d LS |
587 | sector += BDRV_SECTORS_PER_DIRTY_CHUNK; |
588 | bmds->cur_dirty = sector; | |
c163b5ca | 589 | } |
575a58d7 | 590 | |
d76cac7d LS |
591 | return (bmds->cur_dirty >= bmds->total_sectors); |
592 | ||
889ae39c | 593 | error: |
539de124 | 594 | DPRINTF("Error reading sector %" PRId64 "\n", sector); |
7267c094 AL |
595 | g_free(blk->buf); |
596 | g_free(blk); | |
43be3a25 | 597 | return ret; |
d76cac7d LS |
598 | } |
599 | ||
32c835ba PB |
600 | /* Called with iothread lock taken. |
601 | * | |
602 | * return value: | |
ceb2bd09 JQ |
603 | * 0: too much data for max_downtime |
604 | * 1: few enough data for max_downtime | |
605 | */ | |
539de124 | 606 | static int blk_mig_save_dirty_block(QEMUFile *f, int is_async) |
d76cac7d LS |
607 | { |
608 | BlkMigDevState *bmds; | |
ceb2bd09 | 609 | int ret = 1; |
d76cac7d LS |
610 | |
611 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { | |
ebd2f9e7 | 612 | aio_context_acquire(blk_get_aio_context(bmds->blk)); |
ceb2bd09 | 613 | ret = mig_save_device_dirty(f, bmds, is_async); |
ebd2f9e7 | 614 | aio_context_release(blk_get_aio_context(bmds->blk)); |
43be3a25 | 615 | if (ret <= 0) { |
d76cac7d LS |
616 | break; |
617 | } | |
618 | } | |
619 | ||
620 | return ret; | |
c163b5ca LS |
621 | } |
622 | ||
32c835ba PB |
623 | /* Called with no locks taken. */ |
624 | ||
59feec42 | 625 | static int flush_blks(QEMUFile *f) |
c163b5ca | 626 | { |
5e5328be | 627 | BlkMigBlock *blk; |
59feec42 | 628 | int ret = 0; |
a55eb92c | 629 | |
d0f2c4c6 | 630 | DPRINTF("%s Enter submitted %d read_done %d transferred %d\n", |
a89f364a | 631 | __func__, block_mig_state.submitted, block_mig_state.read_done, |
d11ecd3d | 632 | block_mig_state.transferred); |
a55eb92c | 633 | |
52e850de | 634 | blk_mig_lock(); |
5e5328be JK |
635 | while ((blk = QSIMPLEQ_FIRST(&block_mig_state.blk_list)) != NULL) { |
636 | if (qemu_file_rate_limit(f)) { | |
637 | break; | |
638 | } | |
4b640365 | 639 | if (blk->ret < 0) { |
59feec42 | 640 | ret = blk->ret; |
4b640365 JK |
641 | break; |
642 | } | |
a55eb92c | 643 | |
5e5328be | 644 | QSIMPLEQ_REMOVE_HEAD(&block_mig_state.blk_list, entry); |
52e850de | 645 | blk_mig_unlock(); |
13197e3c | 646 | blk_send(f, blk); |
52e850de | 647 | blk_mig_lock(); |
13197e3c | 648 | |
7267c094 AL |
649 | g_free(blk->buf); |
650 | g_free(blk); | |
a55eb92c | 651 | |
d11ecd3d JK |
652 | block_mig_state.read_done--; |
653 | block_mig_state.transferred++; | |
654 | assert(block_mig_state.read_done >= 0); | |
c163b5ca | 655 | } |
52e850de | 656 | blk_mig_unlock(); |
c163b5ca | 657 | |
a89f364a | 658 | DPRINTF("%s Exit submitted %d read_done %d transferred %d\n", __func__, |
d11ecd3d JK |
659 | block_mig_state.submitted, block_mig_state.read_done, |
660 | block_mig_state.transferred); | |
59feec42 | 661 | return ret; |
c163b5ca LS |
662 | } |
663 | ||
32c835ba PB |
664 | /* Called with iothread lock taken. */ |
665 | ||
889ae39c LS |
666 | static int64_t get_remaining_dirty(void) |
667 | { | |
668 | BlkMigDevState *bmds; | |
669 | int64_t dirty = 0; | |
670 | ||
671 | QSIMPLEQ_FOREACH(bmds, &block_mig_state.bmds_list, entry) { | |
ebd2f9e7 | 672 | aio_context_acquire(blk_get_aio_context(bmds->blk)); |
20dca810 | 673 | dirty += bdrv_get_dirty_count(bmds->dirty_bitmap); |
ebd2f9e7 | 674 | aio_context_release(blk_get_aio_context(bmds->blk)); |
889ae39c LS |
675 | } |
676 | ||
9a46dba7 | 677 | return dirty; |
889ae39c LS |
678 | } |
679 | ||
32c835ba | 680 | |
362fdf17 KW |
681 | |
682 | /* Called with iothread lock taken. */ | |
683 | static void block_migration_cleanup_bmds(void) | |
4ec7fcc7 | 684 | { |
82801d8f | 685 | BlkMigDevState *bmds; |
ef0716df | 686 | AioContext *ctx; |
4ec7fcc7 | 687 | |
e4654d2d | 688 | unset_dirty_tracking(); |
8f794c55 | 689 | |
82801d8f JK |
690 | while ((bmds = QSIMPLEQ_FIRST(&block_mig_state.bmds_list)) != NULL) { |
691 | QSIMPLEQ_REMOVE_HEAD(&block_mig_state.bmds_list, entry); | |
ebd2f9e7 | 692 | bdrv_op_unblock_all(blk_bs(bmds->blk), bmds->blocker); |
3718d8ab | 693 | error_free(bmds->blocker); |
ef0716df | 694 | |
ebd2f9e7 KW |
695 | /* Save ctx, because bmds->blk can disappear during blk_unref. */ |
696 | ctx = blk_get_aio_context(bmds->blk); | |
ef0716df | 697 | aio_context_acquire(ctx); |
ebd2f9e7 | 698 | blk_unref(bmds->blk); |
ef0716df PB |
699 | aio_context_release(ctx); |
700 | ||
ebd2f9e7 | 701 | g_free(bmds->blk_name); |
7267c094 AL |
702 | g_free(bmds->aio_bitmap); |
703 | g_free(bmds); | |
4ec7fcc7 | 704 | } |
362fdf17 KW |
705 | } |
706 | ||
707 | /* Called with iothread lock taken. */ | |
708 | static void block_migration_cleanup(void *opaque) | |
709 | { | |
710 | BlkMigBlock *blk; | |
711 | ||
712 | bdrv_drain_all(); | |
713 | ||
714 | block_migration_cleanup_bmds(); | |
4ec7fcc7 | 715 | |
ef0716df | 716 | blk_mig_lock(); |
82801d8f JK |
717 | while ((blk = QSIMPLEQ_FIRST(&block_mig_state.blk_list)) != NULL) { |
718 | QSIMPLEQ_REMOVE_HEAD(&block_mig_state.blk_list, entry); | |
7267c094 AL |
719 | g_free(blk->buf); |
720 | g_free(blk); | |
4ec7fcc7 | 721 | } |
52e850de | 722 | blk_mig_unlock(); |
4ec7fcc7 JK |
723 | } |
724 | ||
d1315aac | 725 | static int block_save_setup(QEMUFile *f, void *opaque) |
c163b5ca | 726 | { |
2975725f JQ |
727 | int ret; |
728 | ||
d1315aac JQ |
729 | DPRINTF("Enter save live setup submitted %d transferred %d\n", |
730 | block_mig_state.submitted, block_mig_state.transferred); | |
a55eb92c | 731 | |
9b095037 | 732 | qemu_mutex_lock_iothread(); |
6f5ef23a KW |
733 | ret = init_blk_migration(f); |
734 | if (ret < 0) { | |
735 | qemu_mutex_unlock_iothread(); | |
736 | return ret; | |
737 | } | |
d1315aac JQ |
738 | |
739 | /* start track dirty blocks */ | |
b8afb520 FZ |
740 | ret = set_dirty_tracking(); |
741 | ||
ef0716df PB |
742 | qemu_mutex_unlock_iothread(); |
743 | ||
b8afb520 | 744 | if (ret) { |
b8afb520 FZ |
745 | return ret; |
746 | } | |
747 | ||
59feec42 | 748 | ret = flush_blks(f); |
d1315aac | 749 | blk_mig_reset_dirty_cursor(); |
d1315aac JQ |
750 | qemu_put_be64(f, BLK_MIG_FLAG_EOS); |
751 | ||
d418cf57 | 752 | return ret; |
d1315aac JQ |
753 | } |
754 | ||
16310a3c | 755 | static int block_save_iterate(QEMUFile *f, void *opaque) |
d1315aac JQ |
756 | { |
757 | int ret; | |
6aaa9dae | 758 | int64_t last_ftell = qemu_ftell(f); |
ebd9fbd7 | 759 | int64_t delta_ftell; |
d1315aac | 760 | |
16310a3c JQ |
761 | DPRINTF("Enter save live iterate submitted %d transferred %d\n", |
762 | block_mig_state.submitted, block_mig_state.transferred); | |
d1315aac | 763 | |
59feec42 | 764 | ret = flush_blks(f); |
2975725f | 765 | if (ret) { |
2975725f | 766 | return ret; |
4b640365 JK |
767 | } |
768 | ||
d76cac7d LS |
769 | blk_mig_reset_dirty_cursor(); |
770 | ||
16310a3c | 771 | /* control the rate of transfer */ |
52e850de | 772 | blk_mig_lock(); |
b47d1e9f | 773 | while (block_mig_state.read_done * BLOCK_SIZE < |
f77dcdbc | 774 | qemu_file_get_rate_limit(f) && |
44815334 | 775 | block_mig_state.submitted < MAX_PARALLEL_IO && |
ef9c5160 PL |
776 | (block_mig_state.submitted + block_mig_state.read_done) < |
777 | MAX_IO_BUFFERS) { | |
52e850de | 778 | blk_mig_unlock(); |
16310a3c JQ |
779 | if (block_mig_state.bulk_completed == 0) { |
780 | /* first finish the bulk phase */ | |
781 | if (blk_mig_save_bulked_block(f) == 0) { | |
782 | /* finished saving bulk on all devices */ | |
783 | block_mig_state.bulk_completed = 1; | |
784 | } | |
13197e3c | 785 | ret = 0; |
16310a3c | 786 | } else { |
32c835ba PB |
787 | /* Always called with iothread lock taken for |
788 | * simplicity, block_save_complete also calls it. | |
789 | */ | |
790 | qemu_mutex_lock_iothread(); | |
43be3a25 | 791 | ret = blk_mig_save_dirty_block(f, 1); |
32c835ba | 792 | qemu_mutex_unlock_iothread(); |
13197e3c PB |
793 | } |
794 | if (ret < 0) { | |
795 | return ret; | |
796 | } | |
52e850de | 797 | blk_mig_lock(); |
13197e3c PB |
798 | if (ret != 0) { |
799 | /* no more dirty blocks */ | |
800 | break; | |
a55eb92c | 801 | } |
16310a3c | 802 | } |
52e850de | 803 | blk_mig_unlock(); |
a55eb92c | 804 | |
59feec42 | 805 | ret = flush_blks(f); |
16310a3c | 806 | if (ret) { |
16310a3c | 807 | return ret; |
4b640365 JK |
808 | } |
809 | ||
16310a3c | 810 | qemu_put_be64(f, BLK_MIG_FLAG_EOS); |
ebd9fbd7 GH |
811 | delta_ftell = qemu_ftell(f) - last_ftell; |
812 | if (delta_ftell > 0) { | |
813 | return 1; | |
814 | } else if (delta_ftell < 0) { | |
815 | return -1; | |
816 | } else { | |
817 | return 0; | |
818 | } | |
16310a3c JQ |
819 | } |
820 | ||
32c835ba PB |
821 | /* Called with iothread lock taken. */ |
822 | ||
16310a3c JQ |
823 | static int block_save_complete(QEMUFile *f, void *opaque) |
824 | { | |
825 | int ret; | |
826 | ||
827 | DPRINTF("Enter save live complete submitted %d transferred %d\n", | |
828 | block_mig_state.submitted, block_mig_state.transferred); | |
829 | ||
59feec42 | 830 | ret = flush_blks(f); |
16310a3c | 831 | if (ret) { |
16310a3c JQ |
832 | return ret; |
833 | } | |
a55eb92c | 834 | |
16310a3c | 835 | blk_mig_reset_dirty_cursor(); |
01e61e2d | 836 | |
16310a3c JQ |
837 | /* we know for sure that save bulk is completed and |
838 | all async read completed */ | |
52e850de | 839 | blk_mig_lock(); |
16310a3c | 840 | assert(block_mig_state.submitted == 0); |
52e850de | 841 | blk_mig_unlock(); |
16310a3c | 842 | |
43be3a25 JQ |
843 | do { |
844 | ret = blk_mig_save_dirty_block(f, 0); | |
d418cf57 PB |
845 | if (ret < 0) { |
846 | return ret; | |
847 | } | |
43be3a25 | 848 | } while (ret == 0); |
4b640365 | 849 | |
43be3a25 JQ |
850 | /* report completion */ |
851 | qemu_put_be64(f, (100 << BDRV_SECTOR_BITS) | BLK_MIG_FLAG_PROGRESS); | |
a55eb92c | 852 | |
16310a3c JQ |
853 | DPRINTF("Block migration completed\n"); |
854 | ||
a55eb92c JK |
855 | qemu_put_be64(f, BLK_MIG_FLAG_EOS); |
856 | ||
362fdf17 KW |
857 | /* Make sure that our BlockBackends are gone, so that the block driver |
858 | * nodes can be inactivated. */ | |
859 | block_migration_cleanup_bmds(); | |
860 | ||
16310a3c | 861 | return 0; |
c163b5ca LS |
862 | } |
863 | ||
c31b098f | 864 | static void block_save_pending(QEMUFile *f, void *opaque, uint64_t max_size, |
47995026 VSO |
865 | uint64_t *res_precopy_only, |
866 | uint64_t *res_compatible, | |
867 | uint64_t *res_postcopy_only) | |
e4ed1541 | 868 | { |
6aaa9dae | 869 | /* Estimate pending number of bytes to send */ |
13197e3c PB |
870 | uint64_t pending; |
871 | ||
32c835ba | 872 | qemu_mutex_lock_iothread(); |
ef0716df PB |
873 | pending = get_remaining_dirty(); |
874 | qemu_mutex_unlock_iothread(); | |
875 | ||
52e850de | 876 | blk_mig_lock(); |
ef0716df PB |
877 | pending += block_mig_state.submitted * BLOCK_SIZE + |
878 | block_mig_state.read_done * BLOCK_SIZE; | |
879 | blk_mig_unlock(); | |
6aaa9dae SH |
880 | |
881 | /* Report at least one block pending during bulk phase */ | |
04636dc4 VSO |
882 | if (pending <= max_size && !block_mig_state.bulk_completed) { |
883 | pending = max_size + BLOCK_SIZE; | |
6aaa9dae | 884 | } |
e4ed1541 | 885 | |
6aaa9dae | 886 | DPRINTF("Enter save live pending %" PRIu64 "\n", pending); |
c31b098f | 887 | /* We don't do postcopy */ |
47995026 | 888 | *res_precopy_only += pending; |
e4ed1541 JQ |
889 | } |
890 | ||
c163b5ca LS |
891 | static int block_load(QEMUFile *f, void *opaque, int version_id) |
892 | { | |
01e61e2d | 893 | static int banner_printed; |
c163b5ca LS |
894 | int len, flags; |
895 | char device_name[256]; | |
896 | int64_t addr; | |
3c254ab8 | 897 | BlockBackend *blk, *blk_prev = NULL; |
9bd9c7f5 | 898 | Error *local_err = NULL; |
c163b5ca | 899 | uint8_t *buf; |
77358b59 PR |
900 | int64_t total_sectors = 0; |
901 | int nr_sectors; | |
42802d47 | 902 | int ret; |
3928d50b LC |
903 | BlockDriverInfo bdi; |
904 | int cluster_size = BLOCK_SIZE; | |
a55eb92c | 905 | |
c163b5ca | 906 | do { |
c163b5ca | 907 | addr = qemu_get_be64(f); |
a55eb92c | 908 | |
6ea44308 JK |
909 | flags = addr & ~BDRV_SECTOR_MASK; |
910 | addr >>= BDRV_SECTOR_BITS; | |
a55eb92c JK |
911 | |
912 | if (flags & BLK_MIG_FLAG_DEVICE_BLOCK) { | |
c163b5ca LS |
913 | /* get device name */ |
914 | len = qemu_get_byte(f); | |
c163b5ca LS |
915 | qemu_get_buffer(f, (uint8_t *)device_name, len); |
916 | device_name[len] = '\0'; | |
a55eb92c | 917 | |
c9ebaf74 FZ |
918 | blk = blk_by_name(device_name); |
919 | if (!blk) { | |
4b640365 JK |
920 | fprintf(stderr, "Error unknown block device %s\n", |
921 | device_name); | |
922 | return -EINVAL; | |
923 | } | |
a55eb92c | 924 | |
ad2964b4 KW |
925 | if (blk != blk_prev) { |
926 | blk_prev = blk; | |
927 | total_sectors = blk_nb_sectors(blk); | |
77358b59 | 928 | if (total_sectors <= 0) { |
6daf194d | 929 | error_report("Error getting length of block device %s", |
77358b59 PR |
930 | device_name); |
931 | return -EINVAL; | |
932 | } | |
9bd9c7f5 | 933 | |
ad2964b4 | 934 | blk_invalidate_cache(blk, &local_err); |
9bd9c7f5 KW |
935 | if (local_err) { |
936 | error_report_err(local_err); | |
937 | return -EINVAL; | |
938 | } | |
3928d50b LC |
939 | |
940 | ret = bdrv_get_info(blk_bs(blk), &bdi); | |
941 | if (ret == 0 && bdi.cluster_size > 0 && | |
942 | bdi.cluster_size <= BLOCK_SIZE && | |
943 | BLOCK_SIZE % bdi.cluster_size == 0) { | |
944 | cluster_size = bdi.cluster_size; | |
945 | } else { | |
946 | cluster_size = BLOCK_SIZE; | |
947 | } | |
77358b59 PR |
948 | } |
949 | ||
950 | if (total_sectors - addr < BDRV_SECTORS_PER_DIRTY_CHUNK) { | |
951 | nr_sectors = total_sectors - addr; | |
952 | } else { | |
953 | nr_sectors = BDRV_SECTORS_PER_DIRTY_CHUNK; | |
954 | } | |
955 | ||
323004a3 | 956 | if (flags & BLK_MIG_FLAG_ZERO_BLOCK) { |
ad2964b4 KW |
957 | ret = blk_pwrite_zeroes(blk, addr * BDRV_SECTOR_SIZE, |
958 | nr_sectors * BDRV_SECTOR_SIZE, | |
959 | BDRV_REQ_MAY_UNMAP); | |
323004a3 | 960 | } else { |
3928d50b LC |
961 | int i; |
962 | int64_t cur_addr; | |
963 | uint8_t *cur_buf; | |
964 | ||
323004a3 PL |
965 | buf = g_malloc(BLOCK_SIZE); |
966 | qemu_get_buffer(f, buf, BLOCK_SIZE); | |
3928d50b LC |
967 | for (i = 0; i < BLOCK_SIZE / cluster_size; i++) { |
968 | cur_addr = addr * BDRV_SECTOR_SIZE + i * cluster_size; | |
969 | cur_buf = buf + i * cluster_size; | |
970 | ||
971 | if ((!block_mig_state.zero_blocks || | |
972 | cluster_size < BLOCK_SIZE) && | |
973 | buffer_is_zero(cur_buf, cluster_size)) { | |
974 | ret = blk_pwrite_zeroes(blk, cur_addr, | |
975 | cluster_size, | |
976 | BDRV_REQ_MAY_UNMAP); | |
977 | } else { | |
978 | ret = blk_pwrite(blk, cur_addr, cur_buf, | |
979 | cluster_size, 0); | |
980 | } | |
981 | if (ret < 0) { | |
982 | break; | |
983 | } | |
984 | } | |
323004a3 PL |
985 | g_free(buf); |
986 | } | |
575a58d7 | 987 | |
b02bea3a YT |
988 | if (ret < 0) { |
989 | return ret; | |
990 | } | |
01e61e2d JK |
991 | } else if (flags & BLK_MIG_FLAG_PROGRESS) { |
992 | if (!banner_printed) { | |
993 | printf("Receiving block device images\n"); | |
994 | banner_printed = 1; | |
995 | } | |
996 | printf("Completed %d %%%c", (int)addr, | |
997 | (addr == 100) ? '\n' : '\r'); | |
998 | fflush(stdout); | |
a55eb92c | 999 | } else if (!(flags & BLK_MIG_FLAG_EOS)) { |
d5f1f286 | 1000 | fprintf(stderr, "Unknown block migration flags: %#x\n", flags); |
4b640365 JK |
1001 | return -EINVAL; |
1002 | } | |
42802d47 JQ |
1003 | ret = qemu_file_get_error(f); |
1004 | if (ret != 0) { | |
1005 | return ret; | |
c163b5ca | 1006 | } |
a55eb92c JK |
1007 | } while (!(flags & BLK_MIG_FLAG_EOS)); |
1008 | ||
c163b5ca LS |
1009 | return 0; |
1010 | } | |
1011 | ||
6bd68781 JQ |
1012 | static bool block_is_active(void *opaque) |
1013 | { | |
ce7c817c | 1014 | return migrate_use_block(); |
6bd68781 JQ |
1015 | } |
1016 | ||
7a46d042 | 1017 | static SaveVMHandlers savevm_block_handlers = { |
9907e842 | 1018 | .save_setup = block_save_setup, |
16310a3c | 1019 | .save_live_iterate = block_save_iterate, |
a3e06c3d | 1020 | .save_live_complete_precopy = block_save_complete, |
e4ed1541 | 1021 | .save_live_pending = block_save_pending, |
7908c78d | 1022 | .load_state = block_load, |
70f794fc | 1023 | .save_cleanup = block_migration_cleanup, |
6bd68781 | 1024 | .is_active = block_is_active, |
7908c78d JQ |
1025 | }; |
1026 | ||
c163b5ca | 1027 | void blk_mig_init(void) |
a55eb92c | 1028 | { |
5e5328be JK |
1029 | QSIMPLEQ_INIT(&block_mig_state.bmds_list); |
1030 | QSIMPLEQ_INIT(&block_mig_state.blk_list); | |
52e850de | 1031 | qemu_mutex_init(&block_mig_state.lock); |
5e5328be | 1032 | |
7908c78d JQ |
1033 | register_savevm_live(NULL, "block", 0, 1, &savevm_block_handlers, |
1034 | &block_mig_state); | |
c163b5ca | 1035 | } |