]> git.proxmox.com Git - mirror_qemu.git/blame - block/replication.c
Merge tag 'pull-riscv-to-apply-20231122' of https://github.com/alistair23/qemu into...
[mirror_qemu.git] / block / replication.c
CommitLineData
29ff7890
WC
1/*
2 * Replication Block filter
3 *
4 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
5 * Copyright (c) 2016 Intel Corporation
6 * Copyright (c) 2016 FUJITSU LIMITED
7 *
8 * Author:
9 * Wen Congyang <wency@cn.fujitsu.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
13 */
14
15#include "qemu/osdep.h"
0b8fa32f 16#include "qemu/module.h"
922a01a0 17#include "qemu/option.h"
29ff7890
WC
18#include "block/nbd.h"
19#include "block/blockjob.h"
20#include "block/block_int.h"
21#include "block/block_backup.h"
22#include "sysemu/block-backend.h"
23#include "qapi/error.h"
3c4e9647 24#include "qapi/qmp/qdict.h"
b0262955 25#include "block/replication.h"
29ff7890 26
3c76c606
FZ
27typedef enum {
28 BLOCK_REPLICATION_NONE, /* block replication is not started */
29 BLOCK_REPLICATION_RUNNING, /* block replication is running */
30 BLOCK_REPLICATION_FAILOVER, /* failover is running in background */
31 BLOCK_REPLICATION_FAILOVER_FAILED, /* failover failed */
32 BLOCK_REPLICATION_DONE, /* block replication is done */
33} ReplicationStage;
34
29ff7890
WC
35typedef struct BDRVReplicationState {
36 ReplicationMode mode;
3c76c606 37 ReplicationStage stage;
cc19f177 38 BlockJob *commit_job;
29ff7890
WC
39 BdrvChild *hidden_disk;
40 BdrvChild *secondary_disk;
cc19f177 41 BlockJob *backup_job;
29ff7890
WC
42 char *top_id;
43 ReplicationState *rs;
44 Error *blocker;
3c4e9647
AG
45 bool orig_hidden_read_only;
46 bool orig_secondary_read_only;
29ff7890
WC
47 int error;
48} BDRVReplicationState;
49
29ff7890
WC
50static void replication_start(ReplicationState *rs, ReplicationMode mode,
51 Error **errp);
52static void replication_do_checkpoint(ReplicationState *rs, Error **errp);
53static void replication_get_error(ReplicationState *rs, Error **errp);
54static void replication_stop(ReplicationState *rs, bool failover,
55 Error **errp);
56
57#define REPLICATION_MODE "mode"
58#define REPLICATION_TOP_ID "top-id"
59static QemuOptsList replication_runtime_opts = {
60 .name = "replication",
61 .head = QTAILQ_HEAD_INITIALIZER(replication_runtime_opts.head),
62 .desc = {
63 {
64 .name = REPLICATION_MODE,
65 .type = QEMU_OPT_STRING,
66 },
67 {
68 .name = REPLICATION_TOP_ID,
69 .type = QEMU_OPT_STRING,
70 },
71 { /* end of list */ }
72 },
73};
74
75static ReplicationOps replication_ops = {
76 .start = replication_start,
77 .checkpoint = replication_do_checkpoint,
78 .get_error = replication_get_error,
79 .stop = replication_stop,
80};
81
82static int replication_open(BlockDriverState *bs, QDict *options,
83 int flags, Error **errp)
84{
85 int ret;
86 BDRVReplicationState *s = bs->opaque;
29ff7890
WC
87 QemuOpts *opts = NULL;
88 const char *mode;
89 const char *top_id;
90
83930780
VSO
91 ret = bdrv_open_file_child(NULL, options, "file", bs, errp);
92 if (ret < 0) {
93 return ret;
4e4bf5c4
KW
94 }
95
29ff7890
WC
96 ret = -EINVAL;
97 opts = qemu_opts_create(&replication_runtime_opts, NULL, 0, &error_abort);
a5f9b9df 98 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
29ff7890
WC
99 goto fail;
100 }
101
102 mode = qemu_opt_get(opts, REPLICATION_MODE);
103 if (!mode) {
dcfe4805 104 error_setg(errp, "Missing the option mode");
29ff7890
WC
105 goto fail;
106 }
107
108 if (!strcmp(mode, "primary")) {
109 s->mode = REPLICATION_MODE_PRIMARY;
f4f2539b
CX
110 top_id = qemu_opt_get(opts, REPLICATION_TOP_ID);
111 if (top_id) {
dcfe4805
MA
112 error_setg(errp,
113 "The primary side does not support option top-id");
f4f2539b
CX
114 goto fail;
115 }
29ff7890
WC
116 } else if (!strcmp(mode, "secondary")) {
117 s->mode = REPLICATION_MODE_SECONDARY;
118 top_id = qemu_opt_get(opts, REPLICATION_TOP_ID);
119 s->top_id = g_strdup(top_id);
120 if (!s->top_id) {
dcfe4805 121 error_setg(errp, "Missing the option top-id");
29ff7890
WC
122 goto fail;
123 }
124 } else {
dcfe4805 125 error_setg(errp,
29ff7890
WC
126 "The option mode's value should be primary or secondary");
127 goto fail;
128 }
129
130 s->rs = replication_new(bs, &replication_ops);
131
132 ret = 0;
133
134fail:
135 qemu_opts_del(opts);
29ff7890
WC
136 return ret;
137}
138
139static void replication_close(BlockDriverState *bs)
140{
141 BDRVReplicationState *s = bs->opaque;
08558e33 142 Job *commit_job;
3ed4f708 143 GLOBAL_STATE_CODE();
29ff7890 144
3c76c606 145 if (s->stage == BLOCK_REPLICATION_RUNNING) {
29ff7890
WC
146 replication_stop(s->rs, false, NULL);
147 }
3c76c606 148 if (s->stage == BLOCK_REPLICATION_FAILOVER) {
08558e33
SR
149 commit_job = &s->commit_job->job;
150 assert(commit_job->aio_context == qemu_get_current_aio_context());
4cfb3f05 151 job_cancel_sync(commit_job, false);
50ab0e09 152 }
29ff7890
WC
153
154 if (s->mode == REPLICATION_MODE_SECONDARY) {
155 g_free(s->top_id);
156 }
157
158 replication_remove(s->rs);
159}
160
37a9051c 161static void replication_child_perm(BlockDriverState *bs, BdrvChild *c,
bf8e925e 162 BdrvChildRole role,
e0995dc3 163 BlockReopenQueue *reopen_queue,
37a9051c
CX
164 uint64_t perm, uint64_t shared,
165 uint64_t *nperm, uint64_t *nshared)
166{
3b78420b
LS
167 if (role & BDRV_CHILD_PRIMARY) {
168 *nperm = BLK_PERM_CONSISTENT_READ;
169 } else {
170 *nperm = 0;
171 }
172
611e0653
WG
173 if ((bs->open_flags & (BDRV_O_INACTIVE | BDRV_O_RDWR)) == BDRV_O_RDWR) {
174 *nperm |= BLK_PERM_WRITE;
175 }
78ee6bd0
PMD
176 *nshared = BLK_PERM_CONSISTENT_READ
177 | BLK_PERM_WRITE
611e0653 178 | BLK_PERM_WRITE_UNCHANGED;
37a9051c
CX
179 return;
180}
181
8ab8140a
KW
182static int64_t coroutine_fn GRAPH_RDLOCK
183replication_co_getlength(BlockDriverState *bs)
29ff7890 184{
c86422c5 185 return bdrv_co_getlength(bs->file->bs);
29ff7890
WC
186}
187
188static int replication_get_io_status(BDRVReplicationState *s)
189{
3c76c606 190 switch (s->stage) {
29ff7890
WC
191 case BLOCK_REPLICATION_NONE:
192 return -EIO;
193 case BLOCK_REPLICATION_RUNNING:
194 return 0;
195 case BLOCK_REPLICATION_FAILOVER:
196 return s->mode == REPLICATION_MODE_PRIMARY ? -EIO : 0;
197 case BLOCK_REPLICATION_FAILOVER_FAILED:
198 return s->mode == REPLICATION_MODE_PRIMARY ? -EIO : 1;
199 case BLOCK_REPLICATION_DONE:
200 /*
201 * active commit job completes, and active disk and secondary_disk
202 * is swapped, so we can operate bs->file directly
203 */
204 return s->mode == REPLICATION_MODE_PRIMARY ? -EIO : 0;
205 default:
206 abort();
207 }
208}
209
210static int replication_return_value(BDRVReplicationState *s, int ret)
211{
212 if (s->mode == REPLICATION_MODE_SECONDARY) {
213 return ret;
214 }
215
216 if (ret < 0) {
217 s->error = ret;
218 ret = 0;
219 }
220
221 return ret;
222}
223
b9b10c35
KW
224static int coroutine_fn GRAPH_RDLOCK
225replication_co_readv(BlockDriverState *bs, int64_t sector_num,
226 int remaining_sectors, QEMUIOVector *qiov)
29ff7890
WC
227{
228 BDRVReplicationState *s = bs->opaque;
29ff7890
WC
229 int ret;
230
231 if (s->mode == REPLICATION_MODE_PRIMARY) {
232 /* We only use it to forward primary write requests */
233 return -EIO;
234 }
235
236 ret = replication_get_io_status(s);
237 if (ret < 0) {
238 return ret;
239 }
240
04a11d87
EB
241 ret = bdrv_co_preadv(bs->file, sector_num * BDRV_SECTOR_SIZE,
242 remaining_sectors * BDRV_SECTOR_SIZE, qiov, 0);
e4f9752c 243
29ff7890
WC
244 return replication_return_value(s, ret);
245}
246
b9b10c35
KW
247static int coroutine_fn GRAPH_RDLOCK
248replication_co_writev(BlockDriverState *bs, int64_t sector_num,
249 int remaining_sectors, QEMUIOVector *qiov, int flags)
29ff7890
WC
250{
251 BDRVReplicationState *s = bs->opaque;
252 QEMUIOVector hd_qiov;
253 uint64_t bytes_done = 0;
254 BdrvChild *top = bs->file;
255 BdrvChild *base = s->secondary_disk;
256 BdrvChild *target;
51b0a488
EB
257 int ret;
258 int64_t n;
29ff7890
WC
259
260 ret = replication_get_io_status(s);
261 if (ret < 0) {
262 goto out;
263 }
264
265 if (ret == 0) {
04a11d87
EB
266 ret = bdrv_co_pwritev(top, sector_num * BDRV_SECTOR_SIZE,
267 remaining_sectors * BDRV_SECTOR_SIZE, qiov, 0);
29ff7890
WC
268 return replication_return_value(s, ret);
269 }
270
271 /*
272 * Failover failed, only write to active disk if the sectors
273 * have already been allocated in active disk/hidden disk.
274 */
275 qemu_iovec_init(&hd_qiov, qiov->niov);
276 while (remaining_sectors > 0) {
51b0a488
EB
277 int64_t count;
278
cc323997
PB
279 ret = bdrv_co_is_allocated_above(top->bs, base->bs, false,
280 sector_num * BDRV_SECTOR_SIZE,
281 remaining_sectors * BDRV_SECTOR_SIZE,
282 &count);
29ff7890
WC
283 if (ret < 0) {
284 goto out1;
285 }
286
51b0a488
EB
287 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
288 n = count >> BDRV_SECTOR_BITS;
29ff7890 289 qemu_iovec_reset(&hd_qiov);
51b0a488 290 qemu_iovec_concat(&hd_qiov, qiov, bytes_done, count);
29ff7890
WC
291
292 target = ret ? top : base;
04a11d87
EB
293 ret = bdrv_co_pwritev(target, sector_num * BDRV_SECTOR_SIZE,
294 n * BDRV_SECTOR_SIZE, &hd_qiov, 0);
29ff7890
WC
295 if (ret < 0) {
296 goto out1;
297 }
298
299 remaining_sectors -= n;
300 sector_num += n;
51b0a488 301 bytes_done += count;
29ff7890
WC
302 }
303
304out1:
305 qemu_iovec_destroy(&hd_qiov);
306out:
307 return ret;
308}
309
0bb79c97
KW
310static void GRAPH_UNLOCKED
311secondary_do_checkpoint(BlockDriverState *bs, Error **errp)
29ff7890 312{
1e12ecfd 313 BDRVReplicationState *s = bs->opaque;
1f051dcb 314 BdrvChild *active_disk;
29ff7890
WC
315 Error *local_err = NULL;
316 int ret;
317
0bb79c97
KW
318 GRAPH_RDLOCK_GUARD_MAINLOOP();
319
cc19f177 320 if (!s->backup_job) {
29ff7890
WC
321 error_setg(errp, "Backup job was cancelled unexpectedly");
322 return;
323 }
324
cc19f177 325 backup_do_checkpoint(s->backup_job, &local_err);
29ff7890
WC
326 if (local_err) {
327 error_propagate(errp, local_err);
328 return;
329 }
330
1f051dcb 331 active_disk = bs->file;
1e12ecfd 332 if (!active_disk->bs->drv) {
d470ad42 333 error_setg(errp, "Active disk %s is ejected",
1e12ecfd 334 active_disk->bs->node_name);
d470ad42
HR
335 return;
336 }
337
1e12ecfd 338 ret = bdrv_make_empty(active_disk, errp);
29ff7890 339 if (ret < 0) {
29ff7890
WC
340 return;
341 }
342
d470ad42
HR
343 if (!s->hidden_disk->bs->drv) {
344 error_setg(errp, "Hidden disk %s is ejected",
345 s->hidden_disk->bs->node_name);
346 return;
347 }
348
c2cf0eca 349 ret = bdrv_make_empty(s->hidden_disk, errp);
29ff7890 350 if (ret < 0) {
29ff7890
WC
351 return;
352 }
353}
354
3c4e9647
AG
355/* This function is supposed to be called twice:
356 * first with writable = true, then with writable = false.
357 * The first call puts s->hidden_disk and s->secondary_disk in
358 * r/w mode, and the second puts them back in their original state.
359 */
8dd9006e 360static void reopen_backing_file(BlockDriverState *bs, bool writable,
29ff7890
WC
361 Error **errp)
362{
8dd9006e 363 BDRVReplicationState *s = bs->opaque;
a990a42b 364 BdrvChild *hidden_disk, *secondary_disk;
29ff7890 365 BlockReopenQueue *reopen_queue = NULL;
29ff7890 366
004915a9
KW
367 GLOBAL_STATE_CODE();
368 GRAPH_RDLOCK_GUARD_MAINLOOP();
369
a990a42b
LS
370 /*
371 * s->hidden_disk and s->secondary_disk may not be set yet, as they will
372 * only be set after the children are writable.
373 */
374 hidden_disk = bs->file->bs->backing;
375 secondary_disk = hidden_disk->bs->backing;
376
29ff7890 377 if (writable) {
a990a42b
LS
378 s->orig_hidden_read_only = bdrv_is_read_only(hidden_disk->bs);
379 s->orig_secondary_read_only = bdrv_is_read_only(secondary_disk->bs);
29ff7890
WC
380 }
381
3c4e9647 382 if (s->orig_hidden_read_only) {
3c4e9647
AG
383 QDict *opts = qdict_new();
384 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, !writable);
a990a42b 385 reopen_queue = bdrv_reopen_queue(reopen_queue, hidden_disk->bs,
077e8e20 386 opts, true);
29ff7890
WC
387 }
388
3c4e9647 389 if (s->orig_secondary_read_only) {
3c4e9647
AG
390 QDict *opts = qdict_new();
391 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, !writable);
a990a42b 392 reopen_queue = bdrv_reopen_queue(reopen_queue, secondary_disk->bs,
077e8e20 393 opts, true);
29ff7890
WC
394 }
395
396 if (reopen_queue) {
6cf42ca2
KW
397 AioContext *ctx = bdrv_get_aio_context(bs);
398 if (ctx != qemu_get_aio_context()) {
399 aio_context_release(ctx);
400 }
992861fb 401 bdrv_reopen_multiple(reopen_queue, errp);
6cf42ca2
KW
402 if (ctx != qemu_get_aio_context()) {
403 aio_context_acquire(ctx);
404 }
29ff7890
WC
405 }
406}
407
8dd9006e 408static void backup_job_cleanup(BlockDriverState *bs)
29ff7890 409{
8dd9006e 410 BDRVReplicationState *s = bs->opaque;
29ff7890
WC
411 BlockDriverState *top_bs;
412
e140f4b7
LS
413 s->backup_job = NULL;
414
29ff7890
WC
415 top_bs = bdrv_lookup_bs(s->top_id, s->top_id, NULL);
416 if (!top_bs) {
417 return;
418 }
419 bdrv_op_unblock_all(top_bs, s->blocker);
420 error_free(s->blocker);
8dd9006e 421 reopen_backing_file(bs, false, NULL);
29ff7890
WC
422}
423
424static void backup_job_completed(void *opaque, int ret)
425{
8dd9006e
PB
426 BlockDriverState *bs = opaque;
427 BDRVReplicationState *s = bs->opaque;
29ff7890 428
3c76c606 429 if (s->stage != BLOCK_REPLICATION_FAILOVER) {
29ff7890
WC
430 /* The backup job is cancelled unexpectedly */
431 s->error = -EIO;
432 }
433
8dd9006e 434 backup_job_cleanup(bs);
29ff7890
WC
435}
436
680e0cc4
KW
437static bool GRAPH_RDLOCK
438check_top_bs(BlockDriverState *top_bs, BlockDriverState *bs)
29ff7890
WC
439{
440 BdrvChild *child;
441
442 /* The bs itself is the top_bs */
443 if (top_bs == bs) {
444 return true;
445 }
446
447 /* Iterate over top_bs's children */
448 QLIST_FOREACH(child, &top_bs->children, next) {
449 if (child->bs == bs || check_top_bs(child->bs, bs)) {
450 return true;
451 }
452 }
453
454 return false;
455}
456
457static void replication_start(ReplicationState *rs, ReplicationMode mode,
458 Error **errp)
459{
460 BlockDriverState *bs = rs->opaque;
461 BDRVReplicationState *s;
462 BlockDriverState *top_bs;
a990a42b 463 BdrvChild *active_disk, *hidden_disk, *secondary_disk;
29ff7890
WC
464 int64_t active_length, hidden_length, disk_length;
465 AioContext *aio_context;
466 Error *local_err = NULL;
2c59fd83 467 BackupPerf perf = { .use_copy_range = true, .max_workers = 1 };
29ff7890 468
2b3912f1
KW
469 GLOBAL_STATE_CODE();
470
29ff7890
WC
471 aio_context = bdrv_get_aio_context(bs);
472 aio_context_acquire(aio_context);
473 s = bs->opaque;
474
08ddb4eb
LS
475 if (s->stage == BLOCK_REPLICATION_DONE ||
476 s->stage == BLOCK_REPLICATION_FAILOVER) {
477 /*
478 * This case happens when a secondary is promoted to primary.
479 * Ignore the request because the secondary side of replication
480 * doesn't have to do anything anymore.
481 */
482 aio_context_release(aio_context);
483 return;
484 }
485
3c76c606 486 if (s->stage != BLOCK_REPLICATION_NONE) {
29ff7890
WC
487 error_setg(errp, "Block replication is running or done");
488 aio_context_release(aio_context);
489 return;
490 }
491
492 if (s->mode != mode) {
493 error_setg(errp, "The parameter mode's value is invalid, needs %d,"
494 " but got %d", s->mode, mode);
495 aio_context_release(aio_context);
496 return;
497 }
498
499 switch (s->mode) {
500 case REPLICATION_MODE_PRIMARY:
501 break;
502 case REPLICATION_MODE_SECONDARY:
004915a9 503 bdrv_graph_rdlock_main_loop();
1e12ecfd
LS
504 active_disk = bs->file;
505 if (!active_disk || !active_disk->bs || !active_disk->bs->backing) {
29ff7890 506 error_setg(errp, "Active disk doesn't have backing file");
004915a9 507 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
508 aio_context_release(aio_context);
509 return;
510 }
511
a990a42b
LS
512 hidden_disk = active_disk->bs->backing;
513 if (!hidden_disk->bs || !hidden_disk->bs->backing) {
29ff7890 514 error_setg(errp, "Hidden disk doesn't have backing file");
004915a9 515 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
516 aio_context_release(aio_context);
517 return;
518 }
519
a990a42b
LS
520 secondary_disk = hidden_disk->bs->backing;
521 if (!secondary_disk->bs || !bdrv_has_blk(secondary_disk->bs)) {
29ff7890 522 error_setg(errp, "The secondary disk doesn't have block backend");
2b3912f1 523 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
524 aio_context_release(aio_context);
525 return;
526 }
2b3912f1 527 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
528
529 /* verify the length */
1e12ecfd 530 active_length = bdrv_getlength(active_disk->bs);
a990a42b
LS
531 hidden_length = bdrv_getlength(hidden_disk->bs);
532 disk_length = bdrv_getlength(secondary_disk->bs);
29ff7890
WC
533 if (active_length < 0 || hidden_length < 0 || disk_length < 0 ||
534 active_length != hidden_length || hidden_length != disk_length) {
535 error_setg(errp, "Active disk, hidden disk, secondary disk's length"
536 " are not the same");
537 aio_context_release(aio_context);
538 return;
539 }
540
d470ad42 541 /* Must be true, or the bdrv_getlength() calls would have failed */
a990a42b 542 assert(active_disk->bs->drv && hidden_disk->bs->drv);
d470ad42 543
0bb79c97 544 bdrv_graph_rdlock_main_loop();
1e12ecfd 545 if (!active_disk->bs->drv->bdrv_make_empty ||
a990a42b 546 !hidden_disk->bs->drv->bdrv_make_empty) {
29ff7890
WC
547 error_setg(errp,
548 "Active disk or hidden disk doesn't support make_empty");
549 aio_context_release(aio_context);
0bb79c97 550 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
551 return;
552 }
0bb79c97 553 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
554
555 /* reopen the backing file in r/w mode */
8dd9006e 556 reopen_backing_file(bs, true, &local_err);
29ff7890
WC
557 if (local_err) {
558 error_propagate(errp, local_err);
559 aio_context_release(aio_context);
560 return;
561 }
562
afdaeb9e
KW
563 bdrv_graph_wrlock(bs);
564
3b78420b
LS
565 bdrv_ref(hidden_disk->bs);
566 s->hidden_disk = bdrv_attach_child(bs, hidden_disk->bs, "hidden disk",
567 &child_of_bds, BDRV_CHILD_DATA,
568 &local_err);
569 if (local_err) {
570 error_propagate(errp, local_err);
6bc0bcc8 571 bdrv_graph_wrunlock(bs);
3b78420b
LS
572 aio_context_release(aio_context);
573 return;
574 }
575
576 bdrv_ref(secondary_disk->bs);
577 s->secondary_disk = bdrv_attach_child(bs, secondary_disk->bs,
578 "secondary disk", &child_of_bds,
579 BDRV_CHILD_DATA, &local_err);
580 if (local_err) {
581 error_propagate(errp, local_err);
6bc0bcc8 582 bdrv_graph_wrunlock(bs);
3b78420b
LS
583 aio_context_release(aio_context);
584 return;
585 }
a990a42b 586
29ff7890
WC
587 /* start backup job now */
588 error_setg(&s->blocker,
589 "Block device is in use by internal backup job");
590
591 top_bs = bdrv_lookup_bs(s->top_id, s->top_id, NULL);
592 if (!top_bs || !bdrv_is_root_node(top_bs) ||
593 !check_top_bs(top_bs, bs)) {
594 error_setg(errp, "No top_bs or it is invalid");
6bc0bcc8 595 bdrv_graph_wrunlock(bs);
8dd9006e 596 reopen_backing_file(bs, false, NULL);
29ff7890
WC
597 aio_context_release(aio_context);
598 return;
599 }
600 bdrv_op_block_all(top_bs, s->blocker);
601 bdrv_op_unblock(top_bs, BLOCK_OP_TYPE_DATAPLANE, s->blocker);
602
6bc0bcc8 603 bdrv_graph_wrunlock(bs);
2b3912f1 604
cc19f177
VSO
605 s->backup_job = backup_job_create(
606 NULL, s->secondary_disk->bs, s->hidden_disk->bs,
00e30f05 607 0, MIRROR_SYNC_MODE_NONE, NULL, 0, false, NULL,
86c6a3b6 608 &perf,
111049a4 609 BLOCKDEV_ON_ERROR_REPORT,
bb02b65c 610 BLOCKDEV_ON_ERROR_REPORT, JOB_INTERNAL,
111049a4 611 backup_job_completed, bs, NULL, &local_err);
29ff7890
WC
612 if (local_err) {
613 error_propagate(errp, local_err);
8dd9006e 614 backup_job_cleanup(bs);
29ff7890
WC
615 aio_context_release(aio_context);
616 return;
617 }
cc19f177 618 job_start(&s->backup_job->job);
29ff7890
WC
619 break;
620 default:
621 aio_context_release(aio_context);
622 abort();
623 }
624
3c76c606 625 s->stage = BLOCK_REPLICATION_RUNNING;
29ff7890
WC
626
627 if (s->mode == REPLICATION_MODE_SECONDARY) {
1e12ecfd 628 secondary_do_checkpoint(bs, errp);
29ff7890
WC
629 }
630
631 s->error = 0;
632 aio_context_release(aio_context);
633}
634
635static void replication_do_checkpoint(ReplicationState *rs, Error **errp)
636{
637 BlockDriverState *bs = rs->opaque;
638 BDRVReplicationState *s;
639 AioContext *aio_context;
640
641 aio_context = bdrv_get_aio_context(bs);
642 aio_context_acquire(aio_context);
643 s = bs->opaque;
644
08ddb4eb
LS
645 if (s->stage == BLOCK_REPLICATION_DONE ||
646 s->stage == BLOCK_REPLICATION_FAILOVER) {
647 /*
648 * This case happens when a secondary was promoted to primary.
649 * Ignore the request because the secondary side of replication
650 * doesn't have to do anything anymore.
651 */
652 aio_context_release(aio_context);
653 return;
654 }
655
29ff7890 656 if (s->mode == REPLICATION_MODE_SECONDARY) {
1e12ecfd 657 secondary_do_checkpoint(bs, errp);
29ff7890
WC
658 }
659 aio_context_release(aio_context);
660}
661
662static void replication_get_error(ReplicationState *rs, Error **errp)
663{
664 BlockDriverState *bs = rs->opaque;
665 BDRVReplicationState *s;
666 AioContext *aio_context;
667
668 aio_context = bdrv_get_aio_context(bs);
669 aio_context_acquire(aio_context);
670 s = bs->opaque;
671
08ddb4eb 672 if (s->stage == BLOCK_REPLICATION_NONE) {
29ff7890
WC
673 error_setg(errp, "Block replication is not running");
674 aio_context_release(aio_context);
675 return;
676 }
677
678 if (s->error) {
679 error_setg(errp, "I/O error occurred");
680 aio_context_release(aio_context);
681 return;
682 }
683 aio_context_release(aio_context);
684}
685
686static void replication_done(void *opaque, int ret)
687{
688 BlockDriverState *bs = opaque;
689 BDRVReplicationState *s = bs->opaque;
690
691 if (ret == 0) {
3c76c606 692 s->stage = BLOCK_REPLICATION_DONE;
29ff7890 693
32a8aba3 694 bdrv_graph_wrlock(NULL);
3b78420b 695 bdrv_unref_child(bs, s->secondary_disk);
29ff7890 696 s->secondary_disk = NULL;
3b78420b 697 bdrv_unref_child(bs, s->hidden_disk);
29ff7890 698 s->hidden_disk = NULL;
6bc0bcc8 699 bdrv_graph_wrunlock(NULL);
32a8aba3 700
29ff7890
WC
701 s->error = 0;
702 } else {
3c76c606 703 s->stage = BLOCK_REPLICATION_FAILOVER_FAILED;
29ff7890
WC
704 s->error = -EIO;
705 }
706}
707
708static void replication_stop(ReplicationState *rs, bool failover, Error **errp)
709{
710 BlockDriverState *bs = rs->opaque;
711 BDRVReplicationState *s;
712 AioContext *aio_context;
713
714 aio_context = bdrv_get_aio_context(bs);
715 aio_context_acquire(aio_context);
716 s = bs->opaque;
717
08ddb4eb
LS
718 if (s->stage == BLOCK_REPLICATION_DONE ||
719 s->stage == BLOCK_REPLICATION_FAILOVER) {
720 /*
721 * This case happens when a secondary was promoted to primary.
722 * Ignore the request because the secondary side of replication
723 * doesn't have to do anything anymore.
724 */
725 aio_context_release(aio_context);
726 return;
727 }
728
3c76c606 729 if (s->stage != BLOCK_REPLICATION_RUNNING) {
29ff7890
WC
730 error_setg(errp, "Block replication is not running");
731 aio_context_release(aio_context);
732 return;
733 }
734
735 switch (s->mode) {
736 case REPLICATION_MODE_PRIMARY:
3c76c606 737 s->stage = BLOCK_REPLICATION_DONE;
29ff7890
WC
738 s->error = 0;
739 break;
740 case REPLICATION_MODE_SECONDARY:
741 /*
742 * This BDS will be closed, and the job should be completed
743 * before the BDS is closed, because we will access hidden
744 * disk, secondary disk in backup_job_completed().
745 */
cc19f177 746 if (s->backup_job) {
6f592e5a 747 aio_context_release(aio_context);
4cfb3f05 748 job_cancel_sync(&s->backup_job->job, true);
6f592e5a 749 aio_context_acquire(aio_context);
29ff7890
WC
750 }
751
752 if (!failover) {
1e12ecfd 753 secondary_do_checkpoint(bs, errp);
3c76c606 754 s->stage = BLOCK_REPLICATION_DONE;
29ff7890
WC
755 aio_context_release(aio_context);
756 return;
757 }
758
1f051dcb 759 bdrv_graph_rdlock_main_loop();
3c76c606 760 s->stage = BLOCK_REPLICATION_FAILOVER;
cc19f177 761 s->commit_job = commit_active_start(
1e12ecfd 762 NULL, bs->file->bs, s->secondary_disk->bs,
bb02b65c 763 JOB_INTERNAL, 0, BLOCKDEV_ON_ERROR_REPORT,
78bbd910 764 NULL, replication_done, bs, true, errp);
1f051dcb 765 bdrv_graph_rdunlock_main_loop();
29ff7890
WC
766 break;
767 default:
768 aio_context_release(aio_context);
769 abort();
770 }
771 aio_context_release(aio_context);
772}
773
2654267c
HR
774static const char *const replication_strong_runtime_opts[] = {
775 REPLICATION_MODE,
776 REPLICATION_TOP_ID,
777
778 NULL
779};
780
782b9d06 781static BlockDriver bdrv_replication = {
29ff7890 782 .format_name = "replication",
29ff7890
WC
783 .instance_size = sizeof(BDRVReplicationState),
784
785 .bdrv_open = replication_open,
786 .bdrv_close = replication_close,
37a9051c 787 .bdrv_child_perm = replication_child_perm,
29ff7890 788
c86422c5 789 .bdrv_co_getlength = replication_co_getlength,
29ff7890
WC
790 .bdrv_co_readv = replication_co_readv,
791 .bdrv_co_writev = replication_co_writev,
792
793 .is_filter = true,
29ff7890 794
2654267c 795 .strong_runtime_opts = replication_strong_runtime_opts,
29ff7890
WC
796};
797
798static void bdrv_replication_init(void)
799{
800 bdrv_register(&bdrv_replication);
801}
802
803block_init(bdrv_replication_init);