4 * Copyright (C) 2012-2014 Nodalink, EURL.
9 * Based on the design and code of blkverify.c (Copyright (C) 2010 IBM, Corp)
10 * and blkmirror.c (Copyright (C) 2011 Red Hat, Inc).
12 * This work is licensed under the terms of the GNU GPL, version 2 or later.
13 * See the COPYING file in the top-level directory.
16 #include "qemu/osdep.h"
17 #include "qemu/cutils.h"
18 #include "qemu/module.h"
19 #include "qemu/option.h"
20 #include "block/block_int.h"
21 #include "block/qdict.h"
22 #include "qapi/error.h"
23 #include "qapi/qapi-events-block.h"
24 #include "qapi/qmp/qdict.h"
25 #include "qapi/qmp/qerror.h"
26 #include "qapi/qmp/qlist.h"
27 #include "qapi/qmp/qstring.h"
28 #include "crypto/hash.h"
30 #define HASH_LENGTH 32
32 #define INDEXSTR_LEN 32
34 #define QUORUM_OPT_VOTE_THRESHOLD "vote-threshold"
35 #define QUORUM_OPT_BLKVERIFY "blkverify"
36 #define QUORUM_OPT_REWRITE "rewrite-corrupted"
37 #define QUORUM_OPT_READ_PATTERN "read-pattern"
39 /* This union holds a vote hash value */
40 typedef union QuorumVoteValue {
41 uint8_t h[HASH_LENGTH]; /* SHA-256 hash */
42 int64_t l; /* simpler 64 bits hash */
46 typedef struct QuorumVoteItem {
48 QLIST_ENTRY(QuorumVoteItem) next;
51 /* this structure is a vote version. A version is the set of votes sharing the
53 * The set of votes will be tracked with the items field and its cardinality is
56 typedef struct QuorumVoteVersion {
57 QuorumVoteValue value;
60 QLIST_HEAD(, QuorumVoteItem) items;
61 QLIST_ENTRY(QuorumVoteVersion) next;
64 /* this structure holds a group of vote versions together */
65 typedef struct QuorumVotes {
66 QLIST_HEAD(, QuorumVoteVersion) vote_list;
67 bool (*compare)(QuorumVoteValue *a, QuorumVoteValue *b);
70 /* the following structure holds the state of one quorum instance */
71 typedef struct BDRVQuorumState {
72 BdrvChild **children; /* children BlockDriverStates */
73 int num_children; /* children count */
74 unsigned next_child_index; /* the index of the next child that should
77 int threshold; /* if less than threshold children reads gave the
78 * same result a quorum error occurs.
80 bool is_blkverify; /* true if the driver is in blkverify mode
81 * Writes are mirrored on two children devices.
82 * On reads the two children devices' contents are
83 * compared and if a difference is spotted its
84 * location is printed and the code aborts.
85 * It is useful to debug other block drivers by
86 * comparing them with a reference one.
88 bool rewrite_corrupted;/* true if the driver must rewrite-on-read corrupted
89 * block if Quorum is reached.
92 QuorumReadPattern read_pattern;
95 typedef struct QuorumAIOCB QuorumAIOCB;
97 /* Quorum will create one instance of the following structure per operation it
98 * performs on its children.
99 * So for each read/write operation coming from the upper layer there will be
100 * $children_count QuorumChildRequest.
102 typedef struct QuorumChildRequest {
103 BlockDriverState *bs;
108 } QuorumChildRequest;
110 /* Quorum will use the following structure to track progress of each read/write
111 * operation received by the upper layer.
112 * This structure hold pointers to the QuorumChildRequest structures instances
113 * used to do operations on each children and track overall progress.
116 BlockDriverState *bs;
119 /* Request metadata */
124 QEMUIOVector *qiov; /* calling IOV */
126 QuorumChildRequest *qcrs; /* individual child requests */
127 int count; /* number of completed AIOCB */
128 int success_count; /* number of successfully completed AIOCB */
130 int rewrite_count; /* number of replica to rewrite: count down to
131 * zero once writes are fired
138 int children_read; /* how many children have been read from */
141 typedef struct QuorumCo {
146 static void quorum_aio_finalize(QuorumAIOCB *acb)
152 static bool quorum_sha256_compare(QuorumVoteValue *a, QuorumVoteValue *b)
154 return !memcmp(a->h, b->h, HASH_LENGTH);
157 static bool quorum_64bits_compare(QuorumVoteValue *a, QuorumVoteValue *b)
162 static QuorumAIOCB *quorum_aio_get(BlockDriverState *bs,
168 BDRVQuorumState *s = bs->opaque;
169 QuorumAIOCB *acb = g_new(QuorumAIOCB, 1);
172 *acb = (QuorumAIOCB) {
173 .co = qemu_coroutine_self(),
179 .votes.compare = quorum_sha256_compare,
180 .votes.vote_list = QLIST_HEAD_INITIALIZER(acb.votes.vote_list),
183 acb->qcrs = g_new0(QuorumChildRequest, s->num_children);
184 for (i = 0; i < s->num_children; i++) {
185 acb->qcrs[i].buf = NULL;
186 acb->qcrs[i].ret = 0;
187 acb->qcrs[i].parent = acb;
193 static void quorum_report_bad(QuorumOpType type, uint64_t offset,
194 uint64_t bytes, char *node_name, int ret)
196 const char *msg = NULL;
197 int64_t start_sector = offset / BDRV_SECTOR_SIZE;
198 int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE);
201 msg = strerror(-ret);
204 qapi_event_send_quorum_report_bad(type, !!msg, msg, node_name, start_sector,
205 end_sector - start_sector);
208 static void quorum_report_failure(QuorumAIOCB *acb)
210 const char *reference = bdrv_get_device_or_node_name(acb->bs);
211 int64_t start_sector = acb->offset / BDRV_SECTOR_SIZE;
212 int64_t end_sector = DIV_ROUND_UP(acb->offset + acb->bytes,
215 qapi_event_send_quorum_failure(reference, start_sector,
216 end_sector - start_sector);
219 static int quorum_vote_error(QuorumAIOCB *acb);
221 static bool quorum_has_too_much_io_failed(QuorumAIOCB *acb)
223 BDRVQuorumState *s = acb->bs->opaque;
225 if (acb->success_count < s->threshold) {
226 acb->vote_ret = quorum_vote_error(acb);
227 quorum_report_failure(acb);
234 static int read_fifo_child(QuorumAIOCB *acb);
236 static void quorum_copy_qiov(QEMUIOVector *dest, QEMUIOVector *source)
239 assert(dest->niov == source->niov);
240 assert(dest->size == source->size);
241 for (i = 0; i < source->niov; i++) {
242 assert(dest->iov[i].iov_len == source->iov[i].iov_len);
243 memcpy(dest->iov[i].iov_base,
244 source->iov[i].iov_base,
245 source->iov[i].iov_len);
249 static void quorum_report_bad_acb(QuorumChildRequest *sacb, int ret)
251 QuorumAIOCB *acb = sacb->parent;
252 QuorumOpType type = acb->is_read ? QUORUM_OP_TYPE_READ : QUORUM_OP_TYPE_WRITE;
253 quorum_report_bad(type, acb->offset, acb->bytes, sacb->bs->node_name, ret);
256 static void quorum_report_bad_versions(BDRVQuorumState *s,
258 QuorumVoteValue *value)
260 QuorumVoteVersion *version;
261 QuorumVoteItem *item;
263 QLIST_FOREACH(version, &acb->votes.vote_list, next) {
264 if (acb->votes.compare(&version->value, value)) {
267 QLIST_FOREACH(item, &version->items, next) {
268 quorum_report_bad(QUORUM_OP_TYPE_READ, acb->offset, acb->bytes,
269 s->children[item->index]->bs->node_name, 0);
274 static void quorum_rewrite_entry(void *opaque)
276 QuorumCo *co = opaque;
277 QuorumAIOCB *acb = co->acb;
278 BDRVQuorumState *s = acb->bs->opaque;
280 /* Ignore any errors, it's just a correction attempt for already
282 * Mask out BDRV_REQ_WRITE_UNCHANGED because this overwrites the
283 * area with different data from the other children. */
284 bdrv_co_pwritev(s->children[co->idx], acb->offset, acb->bytes,
285 acb->qiov, acb->flags & ~BDRV_REQ_WRITE_UNCHANGED);
287 /* Wake up the caller after the last rewrite */
288 acb->rewrite_count--;
289 if (!acb->rewrite_count) {
290 qemu_coroutine_enter_if_inactive(acb->co);
294 static bool quorum_rewrite_bad_versions(QuorumAIOCB *acb,
295 QuorumVoteValue *value)
297 QuorumVoteVersion *version;
298 QuorumVoteItem *item;
301 /* first count the number of bad versions: done first to avoid concurrency
304 QLIST_FOREACH(version, &acb->votes.vote_list, next) {
305 if (acb->votes.compare(&version->value, value)) {
308 QLIST_FOREACH(item, &version->items, next) {
313 /* quorum_rewrite_entry will count down this to zero */
314 acb->rewrite_count = count;
316 /* now fire the correcting rewrites */
317 QLIST_FOREACH(version, &acb->votes.vote_list, next) {
318 if (acb->votes.compare(&version->value, value)) {
321 QLIST_FOREACH(item, &version->items, next) {
328 co = qemu_coroutine_create(quorum_rewrite_entry, &data);
329 qemu_coroutine_enter(co);
333 /* return true if any rewrite is done else false */
337 static void quorum_count_vote(QuorumVotes *votes,
338 QuorumVoteValue *value,
341 QuorumVoteVersion *v = NULL, *version = NULL;
342 QuorumVoteItem *item;
344 /* look if we have something with this hash */
345 QLIST_FOREACH(v, &votes->vote_list, next) {
346 if (votes->compare(&v->value, value)) {
352 /* It's a version not yet in the list add it */
354 version = g_new0(QuorumVoteVersion, 1);
355 QLIST_INIT(&version->items);
356 memcpy(&version->value, value, sizeof(version->value));
357 version->index = index;
358 version->vote_count = 0;
359 QLIST_INSERT_HEAD(&votes->vote_list, version, next);
362 version->vote_count++;
364 item = g_new0(QuorumVoteItem, 1);
366 QLIST_INSERT_HEAD(&version->items, item, next);
369 static void quorum_free_vote_list(QuorumVotes *votes)
371 QuorumVoteVersion *version, *next_version;
372 QuorumVoteItem *item, *next_item;
374 QLIST_FOREACH_SAFE(version, &votes->vote_list, next, next_version) {
375 QLIST_REMOVE(version, next);
376 QLIST_FOREACH_SAFE(item, &version->items, next, next_item) {
377 QLIST_REMOVE(item, next);
384 static int quorum_compute_hash(QuorumAIOCB *acb, int i, QuorumVoteValue *hash)
386 QEMUIOVector *qiov = &acb->qcrs[i].qiov;
387 size_t len = sizeof(hash->h);
388 uint8_t *data = hash->h;
390 /* XXX - would be nice if we could pass in the Error **
391 * and propagate that back, but this quorum code is
392 * restricted to just errno values currently */
393 if (qcrypto_hash_bytesv(QCRYPTO_HASH_ALG_SHA256,
394 qiov->iov, qiov->niov,
403 static QuorumVoteVersion *quorum_get_vote_winner(QuorumVotes *votes)
406 QuorumVoteVersion *candidate, *winner = NULL;
408 QLIST_FOREACH(candidate, &votes->vote_list, next) {
409 if (candidate->vote_count > max) {
410 max = candidate->vote_count;
418 /* qemu_iovec_compare is handy for blkverify mode because it returns the first
419 * differing byte location. Yet it is handcoded to compare vectors one byte
420 * after another so it does not benefit from the libc SIMD optimizations.
421 * quorum_iovec_compare is written for speed and should be used in the non
422 * blkverify mode of quorum.
424 static bool quorum_iovec_compare(QEMUIOVector *a, QEMUIOVector *b)
429 assert(a->niov == b->niov);
430 for (i = 0; i < a->niov; i++) {
431 assert(a->iov[i].iov_len == b->iov[i].iov_len);
432 result = memcmp(a->iov[i].iov_base,
443 static bool quorum_compare(QuorumAIOCB *acb, QEMUIOVector *a, QEMUIOVector *b)
445 BDRVQuorumState *s = acb->bs->opaque;
448 /* This driver will replace blkverify in this particular case */
449 if (s->is_blkverify) {
450 offset = qemu_iovec_compare(a, b);
452 fprintf(stderr, "quorum: offset=%" PRIu64 " bytes=%" PRIu64
453 " contents mismatch at offset %" PRIu64 "\n",
454 acb->offset, acb->bytes, acb->offset + offset);
460 return quorum_iovec_compare(a, b);
463 /* Do a vote to get the error code */
464 static int quorum_vote_error(QuorumAIOCB *acb)
466 BDRVQuorumState *s = acb->bs->opaque;
467 QuorumVoteVersion *winner = NULL;
468 QuorumVotes error_votes;
469 QuorumVoteValue result_value;
473 QLIST_INIT(&error_votes.vote_list);
474 error_votes.compare = quorum_64bits_compare;
476 for (i = 0; i < s->num_children; i++) {
477 ret = acb->qcrs[i].ret;
480 result_value.l = ret;
481 quorum_count_vote(&error_votes, &result_value, i);
486 winner = quorum_get_vote_winner(&error_votes);
487 ret = winner->value.l;
490 quorum_free_vote_list(&error_votes);
495 static void quorum_vote(QuorumAIOCB *acb)
499 QuorumVoteValue hash;
500 BDRVQuorumState *s = acb->bs->opaque;
501 QuorumVoteVersion *winner;
503 if (quorum_has_too_much_io_failed(acb)) {
507 /* get the index of the first successful read */
508 for (i = 0; i < s->num_children; i++) {
509 if (!acb->qcrs[i].ret) {
514 assert(i < s->num_children);
516 /* compare this read with all other successful reads stopping at quorum
519 for (j = i + 1; j < s->num_children; j++) {
520 if (acb->qcrs[j].ret) {
523 quorum = quorum_compare(acb, &acb->qcrs[i].qiov, &acb->qcrs[j].qiov);
529 /* Every successful read agrees */
531 quorum_copy_qiov(acb->qiov, &acb->qcrs[i].qiov);
535 /* compute hashes for each successful read, also store indexes */
536 for (i = 0; i < s->num_children; i++) {
537 if (acb->qcrs[i].ret) {
540 ret = quorum_compute_hash(acb, i, &hash);
541 /* if ever the hash computation failed */
546 quorum_count_vote(&acb->votes, &hash, i);
549 /* vote to select the most represented version */
550 winner = quorum_get_vote_winner(&acb->votes);
552 /* if the winner count is smaller than threshold the read fails */
553 if (winner->vote_count < s->threshold) {
554 quorum_report_failure(acb);
555 acb->vote_ret = -EIO;
559 /* we have a winner: copy it */
560 quorum_copy_qiov(acb->qiov, &acb->qcrs[winner->index].qiov);
562 /* some versions are bad print them */
563 quorum_report_bad_versions(s, acb, &winner->value);
565 /* corruption correction is enabled */
566 if (s->rewrite_corrupted) {
567 quorum_rewrite_bad_versions(acb, &winner->value);
572 quorum_free_vote_list(&acb->votes);
575 static void read_quorum_children_entry(void *opaque)
577 QuorumCo *co = opaque;
578 QuorumAIOCB *acb = co->acb;
579 BDRVQuorumState *s = acb->bs->opaque;
581 QuorumChildRequest *sacb = &acb->qcrs[i];
583 sacb->bs = s->children[i]->bs;
584 sacb->ret = bdrv_co_preadv(s->children[i], acb->offset, acb->bytes,
585 &acb->qcrs[i].qiov, 0);
587 if (sacb->ret == 0) {
588 acb->success_count++;
590 quorum_report_bad_acb(sacb, sacb->ret);
594 assert(acb->count <= s->num_children);
595 assert(acb->success_count <= s->num_children);
597 /* Wake up the caller after the last read */
598 if (acb->count == s->num_children) {
599 qemu_coroutine_enter_if_inactive(acb->co);
603 static int read_quorum_children(QuorumAIOCB *acb)
605 BDRVQuorumState *s = acb->bs->opaque;
608 acb->children_read = s->num_children;
609 for (i = 0; i < s->num_children; i++) {
610 acb->qcrs[i].buf = qemu_blockalign(s->children[i]->bs, acb->qiov->size);
611 qemu_iovec_init(&acb->qcrs[i].qiov, acb->qiov->niov);
612 qemu_iovec_clone(&acb->qcrs[i].qiov, acb->qiov, acb->qcrs[i].buf);
615 for (i = 0; i < s->num_children; i++) {
622 co = qemu_coroutine_create(read_quorum_children_entry, &data);
623 qemu_coroutine_enter(co);
626 while (acb->count < s->num_children) {
627 qemu_coroutine_yield();
630 /* Do the vote on read */
632 for (i = 0; i < s->num_children; i++) {
633 qemu_vfree(acb->qcrs[i].buf);
634 qemu_iovec_destroy(&acb->qcrs[i].qiov);
637 while (acb->rewrite_count) {
638 qemu_coroutine_yield();
641 return acb->vote_ret;
644 static int read_fifo_child(QuorumAIOCB *acb)
646 BDRVQuorumState *s = acb->bs->opaque;
649 /* We try to read the next child in FIFO order if we failed to read */
651 n = acb->children_read++;
652 acb->qcrs[n].bs = s->children[n]->bs;
653 ret = bdrv_co_preadv(s->children[n], acb->offset, acb->bytes,
656 quorum_report_bad_acb(&acb->qcrs[n], ret);
658 } while (ret < 0 && acb->children_read < s->num_children);
660 /* FIXME: rewrite failed children if acb->children_read > 1? */
665 static int quorum_co_preadv(BlockDriverState *bs, uint64_t offset,
666 uint64_t bytes, QEMUIOVector *qiov, int flags)
668 BDRVQuorumState *s = bs->opaque;
669 QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes, flags);
673 acb->children_read = 0;
675 if (s->read_pattern == QUORUM_READ_PATTERN_QUORUM) {
676 ret = read_quorum_children(acb);
678 ret = read_fifo_child(acb);
680 quorum_aio_finalize(acb);
685 static void write_quorum_entry(void *opaque)
687 QuorumCo *co = opaque;
688 QuorumAIOCB *acb = co->acb;
689 BDRVQuorumState *s = acb->bs->opaque;
691 QuorumChildRequest *sacb = &acb->qcrs[i];
693 sacb->bs = s->children[i]->bs;
694 sacb->ret = bdrv_co_pwritev(s->children[i], acb->offset, acb->bytes,
695 acb->qiov, acb->flags);
696 if (sacb->ret == 0) {
697 acb->success_count++;
699 quorum_report_bad_acb(sacb, sacb->ret);
702 assert(acb->count <= s->num_children);
703 assert(acb->success_count <= s->num_children);
705 /* Wake up the caller after the last write */
706 if (acb->count == s->num_children) {
707 qemu_coroutine_enter_if_inactive(acb->co);
711 static int quorum_co_pwritev(BlockDriverState *bs, uint64_t offset,
712 uint64_t bytes, QEMUIOVector *qiov, int flags)
714 BDRVQuorumState *s = bs->opaque;
715 QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes, flags);
718 for (i = 0; i < s->num_children; i++) {
725 co = qemu_coroutine_create(write_quorum_entry, &data);
726 qemu_coroutine_enter(co);
729 while (acb->count < s->num_children) {
730 qemu_coroutine_yield();
733 quorum_has_too_much_io_failed(acb);
736 quorum_aio_finalize(acb);
741 static int64_t quorum_getlength(BlockDriverState *bs)
743 BDRVQuorumState *s = bs->opaque;
747 /* check that all file have the same length */
748 result = bdrv_getlength(s->children[0]->bs);
752 for (i = 1; i < s->num_children; i++) {
753 int64_t value = bdrv_getlength(s->children[i]->bs);
757 if (value != result) {
765 static coroutine_fn int quorum_co_flush(BlockDriverState *bs)
767 BDRVQuorumState *s = bs->opaque;
768 QuorumVoteVersion *winner = NULL;
769 QuorumVotes error_votes;
770 QuorumVoteValue result_value;
773 int success_count = 0;
775 QLIST_INIT(&error_votes.vote_list);
776 error_votes.compare = quorum_64bits_compare;
778 for (i = 0; i < s->num_children; i++) {
779 result = bdrv_co_flush(s->children[i]->bs);
781 quorum_report_bad(QUORUM_OP_TYPE_FLUSH, 0, 0,
782 s->children[i]->bs->node_name, result);
783 result_value.l = result;
784 quorum_count_vote(&error_votes, &result_value, i);
790 if (success_count >= s->threshold) {
793 winner = quorum_get_vote_winner(&error_votes);
794 result = winner->value.l;
796 quorum_free_vote_list(&error_votes);
801 static bool quorum_recurse_can_replace(BlockDriverState *bs,
802 BlockDriverState *to_replace)
804 BDRVQuorumState *s = bs->opaque;
807 for (i = 0; i < s->num_children; i++) {
809 * We have no idea whether our children show the same data as
810 * this node (@bs). It is actually highly likely that
811 * @to_replace does not, because replacing a broken child is
812 * one of the main use cases here.
814 * We do know that the new BDS will match @bs, so replacing
815 * any of our children by it will be safe. It cannot change
816 * the data this quorum node presents to its parents.
818 * However, replacing @to_replace by @bs in any of our
819 * children's chains may change visible data somewhere in
820 * there. We therefore cannot recurse down those chains with
821 * bdrv_recurse_can_replace().
822 * (More formally, bdrv_recurse_can_replace() requires that
823 * @to_replace will be replaced by something matching the @bs
824 * passed to it. We cannot guarantee that.)
826 * Thus, we can only check whether any of our immediate
827 * children matches @to_replace.
829 * (In the future, we might add a function to recurse down a
830 * chain that checks that nothing there cares about a change
831 * in data from the respective child in question. For
832 * example, most filters do not care when their child's data
833 * suddenly changes, as long as their parents do not care.)
835 if (s->children[i]->bs == to_replace) {
837 * We now have to ensure that there is no other parent
838 * that cares about replacing this child by a node with
839 * potentially different data.
840 * We do so by checking whether there are any other parents
841 * at all, which is stricter than necessary, but also very
842 * simple. (We may decide to implement something more
843 * complex and permissive when there is an actual need for
846 return QLIST_FIRST(&to_replace->parents) == s->children[i] &&
847 QLIST_NEXT(s->children[i], next_parent) == NULL;
854 static int quorum_valid_threshold(int threshold, int num_children, Error **errp)
858 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
859 "vote-threshold", "value >= 1");
863 if (threshold > num_children) {
864 error_setg(errp, "threshold may not exceed children count");
871 static QemuOptsList quorum_runtime_opts = {
873 .head = QTAILQ_HEAD_INITIALIZER(quorum_runtime_opts.head),
876 .name = QUORUM_OPT_VOTE_THRESHOLD,
877 .type = QEMU_OPT_NUMBER,
878 .help = "The number of vote needed for reaching quorum",
881 .name = QUORUM_OPT_BLKVERIFY,
882 .type = QEMU_OPT_BOOL,
883 .help = "Trigger block verify mode if set",
886 .name = QUORUM_OPT_REWRITE,
887 .type = QEMU_OPT_BOOL,
888 .help = "Rewrite corrupted block on read quorum",
891 .name = QUORUM_OPT_READ_PATTERN,
892 .type = QEMU_OPT_STRING,
893 .help = "Allowed pattern: quorum, fifo. Quorum is default",
895 { /* end of list */ }
899 static int quorum_open(BlockDriverState *bs, QDict *options, int flags,
902 BDRVQuorumState *s = bs->opaque;
903 Error *local_err = NULL;
904 QemuOpts *opts = NULL;
905 const char *pattern_str;
910 qdict_flatten(options);
912 /* count how many different children are present */
913 s->num_children = qdict_array_entries(options, "children.");
914 if (s->num_children < 0) {
915 error_setg(errp, "Option children is not a valid array");
919 if (s->num_children < 1) {
920 error_setg(errp, "Number of provided children must be 1 or more");
925 opts = qemu_opts_create(&quorum_runtime_opts, NULL, 0, &error_abort);
926 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
931 s->threshold = qemu_opt_get_number(opts, QUORUM_OPT_VOTE_THRESHOLD, 0);
932 /* and validate it against s->num_children */
933 ret = quorum_valid_threshold(s->threshold, s->num_children, errp);
938 pattern_str = qemu_opt_get(opts, QUORUM_OPT_READ_PATTERN);
940 ret = QUORUM_READ_PATTERN_QUORUM;
942 ret = qapi_enum_parse(&QuorumReadPattern_lookup, pattern_str,
946 error_setg(errp, "Please set read-pattern as fifo or quorum");
949 s->read_pattern = ret;
951 if (s->read_pattern == QUORUM_READ_PATTERN_QUORUM) {
952 s->is_blkverify = qemu_opt_get_bool(opts, QUORUM_OPT_BLKVERIFY, false);
953 if (s->is_blkverify && (s->num_children != 2 || s->threshold != 2)) {
954 error_setg(errp, "blkverify=on can only be set if there are "
955 "exactly two files and vote-threshold is 2");
960 s->rewrite_corrupted = qemu_opt_get_bool(opts, QUORUM_OPT_REWRITE,
962 if (s->rewrite_corrupted && s->is_blkverify) {
964 "rewrite-corrupted=on cannot be used with blkverify=on");
970 /* allocate the children array */
971 s->children = g_new0(BdrvChild *, s->num_children);
972 opened = g_new0(bool, s->num_children);
974 for (i = 0; i < s->num_children; i++) {
975 char indexstr[INDEXSTR_LEN];
976 ret = snprintf(indexstr, INDEXSTR_LEN, "children.%d", i);
977 assert(ret < INDEXSTR_LEN);
979 s->children[i] = bdrv_open_child(NULL, options, indexstr, bs,
980 &child_of_bds, BDRV_CHILD_DATA, false,
983 error_propagate(errp, local_err);
990 s->next_child_index = s->num_children;
992 bs->supported_write_flags = BDRV_REQ_WRITE_UNCHANGED;
998 /* cleanup on error */
999 for (i = 0; i < s->num_children; i++) {
1003 bdrv_unref_child(bs, s->children[i]);
1005 g_free(s->children);
1008 qemu_opts_del(opts);
1012 static void quorum_close(BlockDriverState *bs)
1014 BDRVQuorumState *s = bs->opaque;
1017 for (i = 0; i < s->num_children; i++) {
1018 bdrv_unref_child(bs, s->children[i]);
1021 g_free(s->children);
1024 static void quorum_add_child(BlockDriverState *bs, BlockDriverState *child_bs,
1027 BDRVQuorumState *s = bs->opaque;
1029 char indexstr[INDEXSTR_LEN];
1032 if (s->is_blkverify) {
1033 error_setg(errp, "Cannot add a child to a quorum in blkverify mode");
1037 assert(s->num_children <= INT_MAX / sizeof(BdrvChild *));
1038 if (s->num_children == INT_MAX / sizeof(BdrvChild *) ||
1039 s->next_child_index == UINT_MAX) {
1040 error_setg(errp, "Too many children");
1044 ret = snprintf(indexstr, INDEXSTR_LEN, "children.%u", s->next_child_index);
1045 if (ret < 0 || ret >= INDEXSTR_LEN) {
1046 error_setg(errp, "cannot generate child name");
1049 s->next_child_index++;
1051 bdrv_drained_begin(bs);
1053 /* We can safely add the child now */
1056 child = bdrv_attach_child(bs, child_bs, indexstr, &child_of_bds,
1057 BDRV_CHILD_DATA, errp);
1058 if (child == NULL) {
1059 s->next_child_index--;
1062 s->children = g_renew(BdrvChild *, s->children, s->num_children + 1);
1063 s->children[s->num_children++] = child;
1066 bdrv_drained_end(bs);
1069 static void quorum_del_child(BlockDriverState *bs, BdrvChild *child,
1072 BDRVQuorumState *s = bs->opaque;
1073 char indexstr[INDEXSTR_LEN];
1076 for (i = 0; i < s->num_children; i++) {
1077 if (s->children[i] == child) {
1082 /* we have checked it in bdrv_del_child() */
1083 assert(i < s->num_children);
1085 if (s->num_children <= s->threshold) {
1087 "The number of children cannot be lower than the vote threshold %d",
1092 /* We know now that num_children > threshold, so blkverify must be false */
1093 assert(!s->is_blkverify);
1095 snprintf(indexstr, INDEXSTR_LEN, "children.%u", s->next_child_index - 1);
1096 if (!strncmp(child->name, indexstr, INDEXSTR_LEN)) {
1097 s->next_child_index--;
1100 bdrv_drained_begin(bs);
1102 /* We can safely remove this child now */
1103 memmove(&s->children[i], &s->children[i + 1],
1104 (s->num_children - i - 1) * sizeof(BdrvChild *));
1105 s->children = g_renew(BdrvChild *, s->children, --s->num_children);
1106 bdrv_unref_child(bs, child);
1108 bdrv_drained_end(bs);
1111 static void quorum_gather_child_options(BlockDriverState *bs, QDict *target,
1112 bool backing_overridden)
1114 BDRVQuorumState *s = bs->opaque;
1115 QList *children_list;
1119 * The generic implementation for gathering child options in
1120 * bdrv_refresh_filename() would use the names of the children
1121 * as specified for bdrv_open_child() or bdrv_attach_child(),
1122 * which is "children.%u" with %u being a value
1123 * (s->next_child_index) that is incremented each time a new child
1124 * is added (and never decremented). Since children can be
1125 * deleted at runtime, there may be gaps in that enumeration.
1126 * When creating a new quorum BDS and specifying the children for
1127 * it through runtime options, the enumeration used there may not
1128 * have any gaps, though.
1130 * Therefore, we have to create a new gap-less enumeration here
1131 * (which we can achieve by simply putting all of the children's
1132 * full_open_options into a QList).
1134 * XXX: Note that there are issues with the current child option
1135 * structure quorum uses (such as the fact that children do
1136 * not really have unique permanent names). Therefore, this
1137 * is going to have to change in the future and ideally we
1138 * want quorum to be covered by the generic implementation.
1141 children_list = qlist_new();
1142 qdict_put(target, "children", children_list);
1144 for (i = 0; i < s->num_children; i++) {
1145 qlist_append(children_list,
1146 qobject_ref(s->children[i]->bs->full_open_options));
1150 static char *quorum_dirname(BlockDriverState *bs, Error **errp)
1152 /* In general, there are multiple BDSs with different dirnames below this
1153 * one; so there is no unique dirname we could return (unless all are equal
1154 * by chance, or there is only one). Therefore, to be consistent, just
1155 * always return NULL. */
1156 error_setg(errp, "Cannot generate a base directory for quorum nodes");
1160 static void quorum_child_perm(BlockDriverState *bs, BdrvChild *c,
1162 BlockReopenQueue *reopen_queue,
1163 uint64_t perm, uint64_t shared,
1164 uint64_t *nperm, uint64_t *nshared)
1166 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1169 * We cannot share RESIZE or WRITE, as this would make the
1170 * children differ from each other.
1172 *nshared = (shared & (BLK_PERM_CONSISTENT_READ |
1173 BLK_PERM_WRITE_UNCHANGED))
1174 | DEFAULT_PERM_UNCHANGED;
1177 static const char *const quorum_strong_runtime_opts[] = {
1178 QUORUM_OPT_VOTE_THRESHOLD,
1179 QUORUM_OPT_BLKVERIFY,
1181 QUORUM_OPT_READ_PATTERN,
1186 static BlockDriver bdrv_quorum = {
1187 .format_name = "quorum",
1189 .instance_size = sizeof(BDRVQuorumState),
1191 .bdrv_open = quorum_open,
1192 .bdrv_close = quorum_close,
1193 .bdrv_gather_child_options = quorum_gather_child_options,
1194 .bdrv_dirname = quorum_dirname,
1196 .bdrv_co_flush_to_disk = quorum_co_flush,
1198 .bdrv_getlength = quorum_getlength,
1200 .bdrv_co_preadv = quorum_co_preadv,
1201 .bdrv_co_pwritev = quorum_co_pwritev,
1203 .bdrv_add_child = quorum_add_child,
1204 .bdrv_del_child = quorum_del_child,
1206 .bdrv_child_perm = quorum_child_perm,
1208 .bdrv_recurse_can_replace = quorum_recurse_can_replace,
1210 .strong_runtime_opts = quorum_strong_runtime_opts,
1213 static void bdrv_quorum_init(void)
1215 if (!qcrypto_hash_supports(QCRYPTO_HASH_ALG_SHA256)) {
1216 /* SHA256 hash support is required for quorum device */
1219 bdrv_register(&bdrv_quorum);
1222 block_init(bdrv_quorum_init);