4 * Copyright (C) 2012-2014 Nodalink, EURL.
7 * BenoƮt Canet <benoit.canet@irqsave.net>
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 "block/block_int.h"
19 #include "qapi/qmp/qbool.h"
20 #include "qapi/qmp/qdict.h"
21 #include "qapi/qmp/qerror.h"
22 #include "qapi/qmp/qint.h"
23 #include "qapi/qmp/qjson.h"
24 #include "qapi/qmp/qlist.h"
25 #include "qapi/qmp/qstring.h"
26 #include "qapi-event.h"
27 #include "crypto/hash.h"
29 #define HASH_LENGTH 32
31 #define QUORUM_OPT_VOTE_THRESHOLD "vote-threshold"
32 #define QUORUM_OPT_BLKVERIFY "blkverify"
33 #define QUORUM_OPT_REWRITE "rewrite-corrupted"
34 #define QUORUM_OPT_READ_PATTERN "read-pattern"
36 /* This union holds a vote hash value */
37 typedef union QuorumVoteValue
{
38 uint8_t h
[HASH_LENGTH
]; /* SHA-256 hash */
39 int64_t l
; /* simpler 64 bits hash */
43 typedef struct QuorumVoteItem
{
45 QLIST_ENTRY(QuorumVoteItem
) next
;
48 /* this structure is a vote version. A version is the set of votes sharing the
50 * The set of votes will be tracked with the items field and its cardinality is
53 typedef struct QuorumVoteVersion
{
54 QuorumVoteValue value
;
57 QLIST_HEAD(, QuorumVoteItem
) items
;
58 QLIST_ENTRY(QuorumVoteVersion
) next
;
61 /* this structure holds a group of vote versions together */
62 typedef struct QuorumVotes
{
63 QLIST_HEAD(, QuorumVoteVersion
) vote_list
;
64 bool (*compare
)(QuorumVoteValue
*a
, QuorumVoteValue
*b
);
67 /* the following structure holds the state of one quorum instance */
68 typedef struct BDRVQuorumState
{
69 BdrvChild
**children
; /* children BlockDriverStates */
70 int num_children
; /* children count */
71 unsigned next_child_index
; /* the index of the next child that should
74 int threshold
; /* if less than threshold children reads gave the
75 * same result a quorum error occurs.
77 bool is_blkverify
; /* true if the driver is in blkverify mode
78 * Writes are mirrored on two children devices.
79 * On reads the two children devices' contents are
80 * compared and if a difference is spotted its
81 * location is printed and the code aborts.
82 * It is useful to debug other block drivers by
83 * comparing them with a reference one.
85 bool rewrite_corrupted
;/* true if the driver must rewrite-on-read corrupted
86 * block if Quorum is reached.
89 QuorumReadPattern read_pattern
;
92 typedef struct QuorumAIOCB QuorumAIOCB
;
94 /* Quorum will create one instance of the following structure per operation it
95 * performs on its children.
96 * So for each read/write operation coming from the upper layer there will be
97 * $children_count QuorumChildRequest.
99 typedef struct QuorumChildRequest
{
100 BlockDriverState
*bs
;
105 } QuorumChildRequest
;
107 /* Quorum will use the following structure to track progress of each read/write
108 * operation received by the upper layer.
109 * This structure hold pointers to the QuorumChildRequest structures instances
110 * used to do operations on each children and track overall progress.
113 BlockDriverState
*bs
;
116 /* Request metadata */
120 QEMUIOVector
*qiov
; /* calling IOV */
122 QuorumChildRequest
*qcrs
; /* individual child requests */
123 int count
; /* number of completed AIOCB */
124 int success_count
; /* number of successfully completed AIOCB */
126 int rewrite_count
; /* number of replica to rewrite: count down to
127 * zero once writes are fired
134 int children_read
; /* how many children have been read from */
137 typedef struct QuorumCo
{
142 static void quorum_aio_finalize(QuorumAIOCB
*acb
)
148 static bool quorum_sha256_compare(QuorumVoteValue
*a
, QuorumVoteValue
*b
)
150 return !memcmp(a
->h
, b
->h
, HASH_LENGTH
);
153 static bool quorum_64bits_compare(QuorumVoteValue
*a
, QuorumVoteValue
*b
)
158 static QuorumAIOCB
*quorum_aio_get(BlockDriverState
*bs
,
163 BDRVQuorumState
*s
= bs
->opaque
;
164 QuorumAIOCB
*acb
= g_new(QuorumAIOCB
, 1);
167 *acb
= (QuorumAIOCB
) {
168 .co
= qemu_coroutine_self(),
173 .votes
.compare
= quorum_sha256_compare
,
174 .votes
.vote_list
= QLIST_HEAD_INITIALIZER(acb
.votes
.vote_list
),
177 acb
->qcrs
= g_new0(QuorumChildRequest
, s
->num_children
);
178 for (i
= 0; i
< s
->num_children
; i
++) {
179 acb
->qcrs
[i
].buf
= NULL
;
180 acb
->qcrs
[i
].ret
= 0;
181 acb
->qcrs
[i
].parent
= acb
;
187 static void quorum_report_bad(QuorumOpType type
, uint64_t offset
,
188 uint64_t bytes
, char *node_name
, int ret
)
190 const char *msg
= NULL
;
191 int64_t start_sector
= offset
/ BDRV_SECTOR_SIZE
;
192 int64_t end_sector
= DIV_ROUND_UP(offset
+ bytes
, BDRV_SECTOR_SIZE
);
195 msg
= strerror(-ret
);
198 qapi_event_send_quorum_report_bad(type
, !!msg
, msg
, node_name
, start_sector
,
199 end_sector
- start_sector
, &error_abort
);
202 static void quorum_report_failure(QuorumAIOCB
*acb
)
204 const char *reference
= bdrv_get_device_or_node_name(acb
->bs
);
205 int64_t start_sector
= acb
->offset
/ BDRV_SECTOR_SIZE
;
206 int64_t end_sector
= DIV_ROUND_UP(acb
->offset
+ acb
->bytes
,
209 qapi_event_send_quorum_failure(reference
, start_sector
,
210 end_sector
- start_sector
, &error_abort
);
213 static int quorum_vote_error(QuorumAIOCB
*acb
);
215 static bool quorum_has_too_much_io_failed(QuorumAIOCB
*acb
)
217 BDRVQuorumState
*s
= acb
->bs
->opaque
;
219 if (acb
->success_count
< s
->threshold
) {
220 acb
->vote_ret
= quorum_vote_error(acb
);
221 quorum_report_failure(acb
);
228 static int read_fifo_child(QuorumAIOCB
*acb
);
230 static void quorum_copy_qiov(QEMUIOVector
*dest
, QEMUIOVector
*source
)
233 assert(dest
->niov
== source
->niov
);
234 assert(dest
->size
== source
->size
);
235 for (i
= 0; i
< source
->niov
; i
++) {
236 assert(dest
->iov
[i
].iov_len
== source
->iov
[i
].iov_len
);
237 memcpy(dest
->iov
[i
].iov_base
,
238 source
->iov
[i
].iov_base
,
239 source
->iov
[i
].iov_len
);
243 static void quorum_report_bad_acb(QuorumChildRequest
*sacb
, int ret
)
245 QuorumAIOCB
*acb
= sacb
->parent
;
246 QuorumOpType type
= acb
->is_read
? QUORUM_OP_TYPE_READ
: QUORUM_OP_TYPE_WRITE
;
247 quorum_report_bad(type
, acb
->offset
, acb
->bytes
, sacb
->bs
->node_name
, ret
);
250 static void quorum_report_bad_versions(BDRVQuorumState
*s
,
252 QuorumVoteValue
*value
)
254 QuorumVoteVersion
*version
;
255 QuorumVoteItem
*item
;
257 QLIST_FOREACH(version
, &acb
->votes
.vote_list
, next
) {
258 if (acb
->votes
.compare(&version
->value
, value
)) {
261 QLIST_FOREACH(item
, &version
->items
, next
) {
262 quorum_report_bad(QUORUM_OP_TYPE_READ
, acb
->offset
, acb
->bytes
,
263 s
->children
[item
->index
]->bs
->node_name
, 0);
268 static void quorum_rewrite_entry(void *opaque
)
270 QuorumCo
*co
= opaque
;
271 QuorumAIOCB
*acb
= co
->acb
;
272 BDRVQuorumState
*s
= acb
->bs
->opaque
;
274 /* Ignore any errors, it's just a correction attempt for already
276 bdrv_co_pwritev(s
->children
[co
->idx
], acb
->offset
, acb
->bytes
,
279 /* Wake up the caller after the last rewrite */
280 acb
->rewrite_count
--;
281 if (!acb
->rewrite_count
) {
282 qemu_coroutine_enter_if_inactive(acb
->co
);
286 static bool quorum_rewrite_bad_versions(QuorumAIOCB
*acb
,
287 QuorumVoteValue
*value
)
289 QuorumVoteVersion
*version
;
290 QuorumVoteItem
*item
;
293 /* first count the number of bad versions: done first to avoid concurrency
296 QLIST_FOREACH(version
, &acb
->votes
.vote_list
, next
) {
297 if (acb
->votes
.compare(&version
->value
, value
)) {
300 QLIST_FOREACH(item
, &version
->items
, next
) {
305 /* quorum_rewrite_entry will count down this to zero */
306 acb
->rewrite_count
= count
;
308 /* now fire the correcting rewrites */
309 QLIST_FOREACH(version
, &acb
->votes
.vote_list
, next
) {
310 if (acb
->votes
.compare(&version
->value
, value
)) {
313 QLIST_FOREACH(item
, &version
->items
, next
) {
320 co
= qemu_coroutine_create(quorum_rewrite_entry
, &data
);
321 qemu_coroutine_enter(co
);
325 /* return true if any rewrite is done else false */
329 static void quorum_count_vote(QuorumVotes
*votes
,
330 QuorumVoteValue
*value
,
333 QuorumVoteVersion
*v
= NULL
, *version
= NULL
;
334 QuorumVoteItem
*item
;
336 /* look if we have something with this hash */
337 QLIST_FOREACH(v
, &votes
->vote_list
, next
) {
338 if (votes
->compare(&v
->value
, value
)) {
344 /* It's a version not yet in the list add it */
346 version
= g_new0(QuorumVoteVersion
, 1);
347 QLIST_INIT(&version
->items
);
348 memcpy(&version
->value
, value
, sizeof(version
->value
));
349 version
->index
= index
;
350 version
->vote_count
= 0;
351 QLIST_INSERT_HEAD(&votes
->vote_list
, version
, next
);
354 version
->vote_count
++;
356 item
= g_new0(QuorumVoteItem
, 1);
358 QLIST_INSERT_HEAD(&version
->items
, item
, next
);
361 static void quorum_free_vote_list(QuorumVotes
*votes
)
363 QuorumVoteVersion
*version
, *next_version
;
364 QuorumVoteItem
*item
, *next_item
;
366 QLIST_FOREACH_SAFE(version
, &votes
->vote_list
, next
, next_version
) {
367 QLIST_REMOVE(version
, next
);
368 QLIST_FOREACH_SAFE(item
, &version
->items
, next
, next_item
) {
369 QLIST_REMOVE(item
, next
);
376 static int quorum_compute_hash(QuorumAIOCB
*acb
, int i
, QuorumVoteValue
*hash
)
378 QEMUIOVector
*qiov
= &acb
->qcrs
[i
].qiov
;
379 size_t len
= sizeof(hash
->h
);
380 uint8_t *data
= hash
->h
;
382 /* XXX - would be nice if we could pass in the Error **
383 * and propagate that back, but this quorum code is
384 * restricted to just errno values currently */
385 if (qcrypto_hash_bytesv(QCRYPTO_HASH_ALG_SHA256
,
386 qiov
->iov
, qiov
->niov
,
395 static QuorumVoteVersion
*quorum_get_vote_winner(QuorumVotes
*votes
)
398 QuorumVoteVersion
*candidate
, *winner
= NULL
;
400 QLIST_FOREACH(candidate
, &votes
->vote_list
, next
) {
401 if (candidate
->vote_count
> max
) {
402 max
= candidate
->vote_count
;
410 /* qemu_iovec_compare is handy for blkverify mode because it returns the first
411 * differing byte location. Yet it is handcoded to compare vectors one byte
412 * after another so it does not benefit from the libc SIMD optimizations.
413 * quorum_iovec_compare is written for speed and should be used in the non
414 * blkverify mode of quorum.
416 static bool quorum_iovec_compare(QEMUIOVector
*a
, QEMUIOVector
*b
)
421 assert(a
->niov
== b
->niov
);
422 for (i
= 0; i
< a
->niov
; i
++) {
423 assert(a
->iov
[i
].iov_len
== b
->iov
[i
].iov_len
);
424 result
= memcmp(a
->iov
[i
].iov_base
,
435 static void GCC_FMT_ATTR(2, 3) quorum_err(QuorumAIOCB
*acb
,
436 const char *fmt
, ...)
441 fprintf(stderr
, "quorum: offset=%" PRIu64
" bytes=%" PRIu64
" ",
442 acb
->offset
, acb
->bytes
);
443 vfprintf(stderr
, fmt
, ap
);
444 fprintf(stderr
, "\n");
449 static bool quorum_compare(QuorumAIOCB
*acb
,
453 BDRVQuorumState
*s
= acb
->bs
->opaque
;
456 /* This driver will replace blkverify in this particular case */
457 if (s
->is_blkverify
) {
458 offset
= qemu_iovec_compare(a
, b
);
460 quorum_err(acb
, "contents mismatch at offset %" PRIu64
,
461 acb
->offset
+ offset
);
466 return quorum_iovec_compare(a
, b
);
469 /* Do a vote to get the error code */
470 static int quorum_vote_error(QuorumAIOCB
*acb
)
472 BDRVQuorumState
*s
= acb
->bs
->opaque
;
473 QuorumVoteVersion
*winner
= NULL
;
474 QuorumVotes error_votes
;
475 QuorumVoteValue result_value
;
479 QLIST_INIT(&error_votes
.vote_list
);
480 error_votes
.compare
= quorum_64bits_compare
;
482 for (i
= 0; i
< s
->num_children
; i
++) {
483 ret
= acb
->qcrs
[i
].ret
;
486 result_value
.l
= ret
;
487 quorum_count_vote(&error_votes
, &result_value
, i
);
492 winner
= quorum_get_vote_winner(&error_votes
);
493 ret
= winner
->value
.l
;
496 quorum_free_vote_list(&error_votes
);
501 static void quorum_vote(QuorumAIOCB
*acb
)
505 QuorumVoteValue hash
;
506 BDRVQuorumState
*s
= acb
->bs
->opaque
;
507 QuorumVoteVersion
*winner
;
509 if (quorum_has_too_much_io_failed(acb
)) {
513 /* get the index of the first successful read */
514 for (i
= 0; i
< s
->num_children
; i
++) {
515 if (!acb
->qcrs
[i
].ret
) {
520 assert(i
< s
->num_children
);
522 /* compare this read with all other successful reads stopping at quorum
525 for (j
= i
+ 1; j
< s
->num_children
; j
++) {
526 if (acb
->qcrs
[j
].ret
) {
529 quorum
= quorum_compare(acb
, &acb
->qcrs
[i
].qiov
, &acb
->qcrs
[j
].qiov
);
535 /* Every successful read agrees */
537 quorum_copy_qiov(acb
->qiov
, &acb
->qcrs
[i
].qiov
);
541 /* compute hashes for each successful read, also store indexes */
542 for (i
= 0; i
< s
->num_children
; i
++) {
543 if (acb
->qcrs
[i
].ret
) {
546 ret
= quorum_compute_hash(acb
, i
, &hash
);
547 /* if ever the hash computation failed */
552 quorum_count_vote(&acb
->votes
, &hash
, i
);
555 /* vote to select the most represented version */
556 winner
= quorum_get_vote_winner(&acb
->votes
);
558 /* if the winner count is smaller than threshold the read fails */
559 if (winner
->vote_count
< s
->threshold
) {
560 quorum_report_failure(acb
);
561 acb
->vote_ret
= -EIO
;
565 /* we have a winner: copy it */
566 quorum_copy_qiov(acb
->qiov
, &acb
->qcrs
[winner
->index
].qiov
);
568 /* some versions are bad print them */
569 quorum_report_bad_versions(s
, acb
, &winner
->value
);
571 /* corruption correction is enabled */
572 if (s
->rewrite_corrupted
) {
573 quorum_rewrite_bad_versions(acb
, &winner
->value
);
578 quorum_free_vote_list(&acb
->votes
);
581 static void read_quorum_children_entry(void *opaque
)
583 QuorumCo
*co
= opaque
;
584 QuorumAIOCB
*acb
= co
->acb
;
585 BDRVQuorumState
*s
= acb
->bs
->opaque
;
587 QuorumChildRequest
*sacb
= &acb
->qcrs
[i
];
589 sacb
->bs
= s
->children
[i
]->bs
;
590 sacb
->ret
= bdrv_co_preadv(s
->children
[i
], acb
->offset
, acb
->bytes
,
591 &acb
->qcrs
[i
].qiov
, 0);
593 if (sacb
->ret
== 0) {
594 acb
->success_count
++;
596 quorum_report_bad_acb(sacb
, sacb
->ret
);
600 assert(acb
->count
<= s
->num_children
);
601 assert(acb
->success_count
<= s
->num_children
);
603 /* Wake up the caller after the last read */
604 if (acb
->count
== s
->num_children
) {
605 qemu_coroutine_enter_if_inactive(acb
->co
);
609 static int read_quorum_children(QuorumAIOCB
*acb
)
611 BDRVQuorumState
*s
= acb
->bs
->opaque
;
614 acb
->children_read
= s
->num_children
;
615 for (i
= 0; i
< s
->num_children
; i
++) {
616 acb
->qcrs
[i
].buf
= qemu_blockalign(s
->children
[i
]->bs
, acb
->qiov
->size
);
617 qemu_iovec_init(&acb
->qcrs
[i
].qiov
, acb
->qiov
->niov
);
618 qemu_iovec_clone(&acb
->qcrs
[i
].qiov
, acb
->qiov
, acb
->qcrs
[i
].buf
);
621 for (i
= 0; i
< s
->num_children
; i
++) {
628 co
= qemu_coroutine_create(read_quorum_children_entry
, &data
);
629 qemu_coroutine_enter(co
);
632 while (acb
->count
< s
->num_children
) {
633 qemu_coroutine_yield();
636 /* Do the vote on read */
638 for (i
= 0; i
< s
->num_children
; i
++) {
639 qemu_vfree(acb
->qcrs
[i
].buf
);
640 qemu_iovec_destroy(&acb
->qcrs
[i
].qiov
);
643 while (acb
->rewrite_count
) {
644 qemu_coroutine_yield();
652 static int read_fifo_child(QuorumAIOCB
*acb
)
654 BDRVQuorumState
*s
= acb
->bs
->opaque
;
657 /* We try to read the next child in FIFO order if we failed to read */
659 n
= acb
->children_read
++;
660 acb
->qcrs
[n
].bs
= s
->children
[n
]->bs
;
661 ret
= bdrv_co_preadv(s
->children
[n
], acb
->offset
, acb
->bytes
,
664 quorum_report_bad_acb(&acb
->qcrs
[n
], ret
);
666 } while (ret
< 0 && acb
->children_read
< s
->num_children
);
668 /* FIXME: rewrite failed children if acb->children_read > 1? */
673 static int quorum_co_preadv(BlockDriverState
*bs
, uint64_t offset
,
674 uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
676 BDRVQuorumState
*s
= bs
->opaque
;
677 QuorumAIOCB
*acb
= quorum_aio_get(bs
, qiov
, offset
, bytes
);
681 acb
->children_read
= 0;
683 if (s
->read_pattern
== QUORUM_READ_PATTERN_QUORUM
) {
684 ret
= read_quorum_children(acb
);
686 ret
= read_fifo_child(acb
);
688 quorum_aio_finalize(acb
);
693 static void write_quorum_entry(void *opaque
)
695 QuorumCo
*co
= opaque
;
696 QuorumAIOCB
*acb
= co
->acb
;
697 BDRVQuorumState
*s
= acb
->bs
->opaque
;
699 QuorumChildRequest
*sacb
= &acb
->qcrs
[i
];
701 sacb
->bs
= s
->children
[i
]->bs
;
702 sacb
->ret
= bdrv_co_pwritev(s
->children
[i
], acb
->offset
, acb
->bytes
,
704 if (sacb
->ret
== 0) {
705 acb
->success_count
++;
707 quorum_report_bad_acb(sacb
, sacb
->ret
);
710 assert(acb
->count
<= s
->num_children
);
711 assert(acb
->success_count
<= s
->num_children
);
713 /* Wake up the caller after the last write */
714 if (acb
->count
== s
->num_children
) {
715 qemu_coroutine_enter_if_inactive(acb
->co
);
719 static int quorum_co_pwritev(BlockDriverState
*bs
, uint64_t offset
,
720 uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
722 BDRVQuorumState
*s
= bs
->opaque
;
723 QuorumAIOCB
*acb
= quorum_aio_get(bs
, qiov
, offset
, bytes
);
726 for (i
= 0; i
< s
->num_children
; i
++) {
733 co
= qemu_coroutine_create(write_quorum_entry
, &data
);
734 qemu_coroutine_enter(co
);
737 while (acb
->count
< s
->num_children
) {
738 qemu_coroutine_yield();
741 quorum_has_too_much_io_failed(acb
);
744 quorum_aio_finalize(acb
);
749 static int64_t quorum_getlength(BlockDriverState
*bs
)
751 BDRVQuorumState
*s
= bs
->opaque
;
755 /* check that all file have the same length */
756 result
= bdrv_getlength(s
->children
[0]->bs
);
760 for (i
= 1; i
< s
->num_children
; i
++) {
761 int64_t value
= bdrv_getlength(s
->children
[i
]->bs
);
765 if (value
!= result
) {
773 static coroutine_fn
int quorum_co_flush(BlockDriverState
*bs
)
775 BDRVQuorumState
*s
= bs
->opaque
;
776 QuorumVoteVersion
*winner
= NULL
;
777 QuorumVotes error_votes
;
778 QuorumVoteValue result_value
;
781 int success_count
= 0;
783 QLIST_INIT(&error_votes
.vote_list
);
784 error_votes
.compare
= quorum_64bits_compare
;
786 for (i
= 0; i
< s
->num_children
; i
++) {
787 result
= bdrv_co_flush(s
->children
[i
]->bs
);
789 quorum_report_bad(QUORUM_OP_TYPE_FLUSH
, 0,
790 bdrv_getlength(s
->children
[i
]->bs
),
791 s
->children
[i
]->bs
->node_name
, result
);
792 result_value
.l
= result
;
793 quorum_count_vote(&error_votes
, &result_value
, i
);
799 if (success_count
>= s
->threshold
) {
802 winner
= quorum_get_vote_winner(&error_votes
);
803 result
= winner
->value
.l
;
805 quorum_free_vote_list(&error_votes
);
810 static bool quorum_recurse_is_first_non_filter(BlockDriverState
*bs
,
811 BlockDriverState
*candidate
)
813 BDRVQuorumState
*s
= bs
->opaque
;
816 for (i
= 0; i
< s
->num_children
; i
++) {
817 bool perm
= bdrv_recurse_is_first_non_filter(s
->children
[i
]->bs
,
827 static int quorum_valid_threshold(int threshold
, int num_children
, Error
**errp
)
831 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
832 "vote-threshold", "value >= 1");
836 if (threshold
> num_children
) {
837 error_setg(errp
, "threshold may not exceed children count");
844 static QemuOptsList quorum_runtime_opts
= {
846 .head
= QTAILQ_HEAD_INITIALIZER(quorum_runtime_opts
.head
),
849 .name
= QUORUM_OPT_VOTE_THRESHOLD
,
850 .type
= QEMU_OPT_NUMBER
,
851 .help
= "The number of vote needed for reaching quorum",
854 .name
= QUORUM_OPT_BLKVERIFY
,
855 .type
= QEMU_OPT_BOOL
,
856 .help
= "Trigger block verify mode if set",
859 .name
= QUORUM_OPT_REWRITE
,
860 .type
= QEMU_OPT_BOOL
,
861 .help
= "Rewrite corrupted block on read quorum",
864 .name
= QUORUM_OPT_READ_PATTERN
,
865 .type
= QEMU_OPT_STRING
,
866 .help
= "Allowed pattern: quorum, fifo. Quorum is default",
868 { /* end of list */ }
872 static int parse_read_pattern(const char *opt
)
877 /* Set quorum as default */
878 return QUORUM_READ_PATTERN_QUORUM
;
881 for (i
= 0; i
< QUORUM_READ_PATTERN__MAX
; i
++) {
882 if (!strcmp(opt
, QuorumReadPattern_lookup
[i
])) {
890 static int quorum_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
893 BDRVQuorumState
*s
= bs
->opaque
;
894 Error
*local_err
= NULL
;
895 QemuOpts
*opts
= NULL
;
900 qdict_flatten(options
);
902 /* count how many different children are present */
903 s
->num_children
= qdict_array_entries(options
, "children.");
904 if (s
->num_children
< 0) {
905 error_setg(&local_err
, "Option children is not a valid array");
909 if (s
->num_children
< 1) {
910 error_setg(&local_err
,
911 "Number of provided children must be 1 or more");
916 opts
= qemu_opts_create(&quorum_runtime_opts
, NULL
, 0, &error_abort
);
917 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
923 s
->threshold
= qemu_opt_get_number(opts
, QUORUM_OPT_VOTE_THRESHOLD
, 0);
924 /* and validate it against s->num_children */
925 ret
= quorum_valid_threshold(s
->threshold
, s
->num_children
, &local_err
);
930 ret
= parse_read_pattern(qemu_opt_get(opts
, QUORUM_OPT_READ_PATTERN
));
932 error_setg(&local_err
, "Please set read-pattern as fifo or quorum");
935 s
->read_pattern
= ret
;
937 if (s
->read_pattern
== QUORUM_READ_PATTERN_QUORUM
) {
938 /* is the driver in blkverify mode */
939 if (qemu_opt_get_bool(opts
, QUORUM_OPT_BLKVERIFY
, false) &&
940 s
->num_children
== 2 && s
->threshold
== 2) {
941 s
->is_blkverify
= true;
942 } else if (qemu_opt_get_bool(opts
, QUORUM_OPT_BLKVERIFY
, false)) {
943 fprintf(stderr
, "blkverify mode is set by setting blkverify=on "
944 "and using two files with vote_threshold=2\n");
947 s
->rewrite_corrupted
= qemu_opt_get_bool(opts
, QUORUM_OPT_REWRITE
,
949 if (s
->rewrite_corrupted
&& s
->is_blkverify
) {
950 error_setg(&local_err
,
951 "rewrite-corrupted=on cannot be used with blkverify=on");
957 /* allocate the children array */
958 s
->children
= g_new0(BdrvChild
*, s
->num_children
);
959 opened
= g_new0(bool, s
->num_children
);
961 for (i
= 0; i
< s
->num_children
; i
++) {
963 ret
= snprintf(indexstr
, 32, "children.%d", i
);
966 s
->children
[i
] = bdrv_open_child(NULL
, options
, indexstr
, bs
,
967 &child_format
, false, &local_err
);
975 s
->next_child_index
= s
->num_children
;
981 /* cleanup on error */
982 for (i
= 0; i
< s
->num_children
; i
++) {
986 bdrv_unref_child(bs
, s
->children
[i
]);
992 /* propagate error */
993 error_propagate(errp
, local_err
);
997 static void quorum_close(BlockDriverState
*bs
)
999 BDRVQuorumState
*s
= bs
->opaque
;
1002 for (i
= 0; i
< s
->num_children
; i
++) {
1003 bdrv_unref_child(bs
, s
->children
[i
]);
1006 g_free(s
->children
);
1009 static void quorum_add_child(BlockDriverState
*bs
, BlockDriverState
*child_bs
,
1012 BDRVQuorumState
*s
= bs
->opaque
;
1017 assert(s
->num_children
<= INT_MAX
/ sizeof(BdrvChild
*));
1018 if (s
->num_children
== INT_MAX
/ sizeof(BdrvChild
*) ||
1019 s
->next_child_index
== UINT_MAX
) {
1020 error_setg(errp
, "Too many children");
1024 ret
= snprintf(indexstr
, 32, "children.%u", s
->next_child_index
);
1025 if (ret
< 0 || ret
>= 32) {
1026 error_setg(errp
, "cannot generate child name");
1029 s
->next_child_index
++;
1031 bdrv_drained_begin(bs
);
1033 /* We can safely add the child now */
1036 child
= bdrv_attach_child(bs
, child_bs
, indexstr
, &child_format
, errp
);
1037 if (child
== NULL
) {
1038 s
->next_child_index
--;
1039 bdrv_unref(child_bs
);
1042 s
->children
= g_renew(BdrvChild
*, s
->children
, s
->num_children
+ 1);
1043 s
->children
[s
->num_children
++] = child
;
1046 bdrv_drained_end(bs
);
1049 static void quorum_del_child(BlockDriverState
*bs
, BdrvChild
*child
,
1052 BDRVQuorumState
*s
= bs
->opaque
;
1055 for (i
= 0; i
< s
->num_children
; i
++) {
1056 if (s
->children
[i
] == child
) {
1061 /* we have checked it in bdrv_del_child() */
1062 assert(i
< s
->num_children
);
1064 if (s
->num_children
<= s
->threshold
) {
1066 "The number of children cannot be lower than the vote threshold %d",
1071 bdrv_drained_begin(bs
);
1073 /* We can safely remove this child now */
1074 memmove(&s
->children
[i
], &s
->children
[i
+ 1],
1075 (s
->num_children
- i
- 1) * sizeof(BdrvChild
*));
1076 s
->children
= g_renew(BdrvChild
*, s
->children
, --s
->num_children
);
1077 bdrv_unref_child(bs
, child
);
1079 bdrv_drained_end(bs
);
1082 static void quorum_refresh_filename(BlockDriverState
*bs
, QDict
*options
)
1084 BDRVQuorumState
*s
= bs
->opaque
;
1089 for (i
= 0; i
< s
->num_children
; i
++) {
1090 bdrv_refresh_filename(s
->children
[i
]->bs
);
1091 if (!s
->children
[i
]->bs
->full_open_options
) {
1096 children
= qlist_new();
1097 for (i
= 0; i
< s
->num_children
; i
++) {
1098 QINCREF(s
->children
[i
]->bs
->full_open_options
);
1099 qlist_append(children
, s
->children
[i
]->bs
->full_open_options
);
1103 qdict_put_str(opts
, "driver", "quorum");
1104 qdict_put_int(opts
, QUORUM_OPT_VOTE_THRESHOLD
, s
->threshold
);
1105 qdict_put_bool(opts
, QUORUM_OPT_BLKVERIFY
, s
->is_blkverify
);
1106 qdict_put_bool(opts
, QUORUM_OPT_REWRITE
, s
->rewrite_corrupted
);
1107 qdict_put(opts
, "children", children
);
1109 bs
->full_open_options
= opts
;
1112 static BlockDriver bdrv_quorum
= {
1113 .format_name
= "quorum",
1114 .protocol_name
= "quorum",
1116 .instance_size
= sizeof(BDRVQuorumState
),
1118 .bdrv_file_open
= quorum_open
,
1119 .bdrv_close
= quorum_close
,
1120 .bdrv_refresh_filename
= quorum_refresh_filename
,
1122 .bdrv_co_flush_to_disk
= quorum_co_flush
,
1124 .bdrv_getlength
= quorum_getlength
,
1126 .bdrv_co_preadv
= quorum_co_preadv
,
1127 .bdrv_co_pwritev
= quorum_co_pwritev
,
1129 .bdrv_add_child
= quorum_add_child
,
1130 .bdrv_del_child
= quorum_del_child
,
1132 .bdrv_child_perm
= bdrv_filter_default_perms
,
1135 .bdrv_recurse_is_first_non_filter
= quorum_recurse_is_first_non_filter
,
1138 static void bdrv_quorum_init(void)
1140 if (!qcrypto_hash_supports(QCRYPTO_HASH_ALG_SHA256
)) {
1141 /* SHA256 hash support is required for quorum device */
1144 bdrv_register(&bdrv_quorum
);
1147 block_init(bdrv_quorum_init
);