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