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