1 /* 2 * Quorum Block filter 3 * 4 * Copyright (C) 2012-2014 Nodalink, EURL. 5 * 6 * Author: 7 * Benoît Canet <benoit.canet@irqsave.net> 8 * 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). 11 * 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. 14 */ 15 16 #include "qemu/osdep.h" 17 #include "qemu/cutils.h" 18 #include "qemu/module.h" 19 #include "qemu/option.h" 20 #include "qemu/memalign.h" 21 #include "block/block_int.h" 22 #include "block/coroutines.h" 23 #include "block/qdict.h" 24 #include "qapi/error.h" 25 #include "qapi/qapi-events-block.h" 26 #include "qapi/qmp/qdict.h" 27 #include "qapi/qmp/qerror.h" 28 #include "qapi/qmp/qlist.h" 29 #include "qapi/qmp/qstring.h" 30 #include "crypto/hash.h" 31 32 #define HASH_LENGTH 32 33 34 #define INDEXSTR_LEN 32 35 36 #define QUORUM_OPT_VOTE_THRESHOLD "vote-threshold" 37 #define QUORUM_OPT_BLKVERIFY "blkverify" 38 #define QUORUM_OPT_REWRITE "rewrite-corrupted" 39 #define QUORUM_OPT_READ_PATTERN "read-pattern" 40 41 /* This union holds a vote hash value */ 42 typedef union QuorumVoteValue { 43 uint8_t h[HASH_LENGTH]; /* SHA-256 hash */ 44 int64_t l; /* simpler 64 bits hash */ 45 } QuorumVoteValue; 46 47 /* A vote item */ 48 typedef struct QuorumVoteItem { 49 int index; 50 QLIST_ENTRY(QuorumVoteItem) next; 51 } QuorumVoteItem; 52 53 /* this structure is a vote version. A version is the set of votes sharing the 54 * same vote value. 55 * The set of votes will be tracked with the items field and its cardinality is 56 * vote_count. 57 */ 58 typedef struct QuorumVoteVersion { 59 QuorumVoteValue value; 60 int index; 61 int vote_count; 62 QLIST_HEAD(, QuorumVoteItem) items; 63 QLIST_ENTRY(QuorumVoteVersion) next; 64 } QuorumVoteVersion; 65 66 /* this structure holds a group of vote versions together */ 67 typedef struct QuorumVotes { 68 QLIST_HEAD(, QuorumVoteVersion) vote_list; 69 bool (*compare)(QuorumVoteValue *a, QuorumVoteValue *b); 70 } QuorumVotes; 71 72 /* the following structure holds the state of one quorum instance */ 73 typedef struct BDRVQuorumState { 74 BdrvChild **children; /* children BlockDriverStates */ 75 int num_children; /* children count */ 76 unsigned next_child_index; /* the index of the next child that should 77 * be added 78 */ 79 int threshold; /* if less than threshold children reads gave the 80 * same result a quorum error occurs. 81 */ 82 bool is_blkverify; /* true if the driver is in blkverify mode 83 * Writes are mirrored on two children devices. 84 * On reads the two children devices' contents are 85 * compared and if a difference is spotted its 86 * location is printed and the code aborts. 87 * It is useful to debug other block drivers by 88 * comparing them with a reference one. 89 */ 90 bool rewrite_corrupted;/* true if the driver must rewrite-on-read corrupted 91 * block if Quorum is reached. 92 */ 93 94 QuorumReadPattern read_pattern; 95 } BDRVQuorumState; 96 97 typedef struct QuorumAIOCB QuorumAIOCB; 98 99 /* Quorum will create one instance of the following structure per operation it 100 * performs on its children. 101 * So for each read/write operation coming from the upper layer there will be 102 * $children_count QuorumChildRequest. 103 */ 104 typedef struct QuorumChildRequest { 105 BlockDriverState *bs; 106 QEMUIOVector qiov; 107 uint8_t *buf; 108 int ret; 109 QuorumAIOCB *parent; 110 } QuorumChildRequest; 111 112 /* Quorum will use the following structure to track progress of each read/write 113 * operation received by the upper layer. 114 * This structure hold pointers to the QuorumChildRequest structures instances 115 * used to do operations on each children and track overall progress. 116 */ 117 struct QuorumAIOCB { 118 BlockDriverState *bs; 119 Coroutine *co; 120 121 /* Request metadata */ 122 uint64_t offset; 123 uint64_t bytes; 124 int flags; 125 126 QEMUIOVector *qiov; /* calling IOV */ 127 128 QuorumChildRequest *qcrs; /* individual child requests */ 129 int count; /* number of completed AIOCB */ 130 int success_count; /* number of successfully completed AIOCB */ 131 132 int rewrite_count; /* number of replica to rewrite: count down to 133 * zero once writes are fired 134 */ 135 136 QuorumVotes votes; 137 138 bool is_read; 139 int vote_ret; 140 int children_read; /* how many children have been read from */ 141 }; 142 143 typedef struct QuorumCo { 144 QuorumAIOCB *acb; 145 int idx; 146 } QuorumCo; 147 148 static void quorum_aio_finalize(QuorumAIOCB *acb) 149 { 150 g_free(acb->qcrs); 151 g_free(acb); 152 } 153 154 static bool quorum_sha256_compare(QuorumVoteValue *a, QuorumVoteValue *b) 155 { 156 return !memcmp(a->h, b->h, HASH_LENGTH); 157 } 158 159 static bool quorum_64bits_compare(QuorumVoteValue *a, QuorumVoteValue *b) 160 { 161 return a->l == b->l; 162 } 163 164 static QuorumAIOCB *coroutine_fn quorum_aio_get(BlockDriverState *bs, 165 QEMUIOVector *qiov, 166 uint64_t offset, uint64_t bytes, 167 int flags) 168 { 169 BDRVQuorumState *s = bs->opaque; 170 QuorumAIOCB *acb = g_new(QuorumAIOCB, 1); 171 int i; 172 173 *acb = (QuorumAIOCB) { 174 .co = qemu_coroutine_self(), 175 .bs = bs, 176 .offset = offset, 177 .bytes = bytes, 178 .flags = flags, 179 .qiov = qiov, 180 .votes.compare = quorum_sha256_compare, 181 .votes.vote_list = QLIST_HEAD_INITIALIZER(acb.votes.vote_list), 182 }; 183 184 acb->qcrs = g_new0(QuorumChildRequest, s->num_children); 185 for (i = 0; i < s->num_children; i++) { 186 acb->qcrs[i].buf = NULL; 187 acb->qcrs[i].ret = 0; 188 acb->qcrs[i].parent = acb; 189 } 190 191 return acb; 192 } 193 194 static void quorum_report_bad(QuorumOpType type, uint64_t offset, 195 uint64_t bytes, char *node_name, int ret) 196 { 197 const char *msg = NULL; 198 int64_t start_sector = offset / BDRV_SECTOR_SIZE; 199 int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE); 200 201 if (ret < 0) { 202 msg = strerror(-ret); 203 } 204 205 qapi_event_send_quorum_report_bad(type, msg, node_name, start_sector, 206 end_sector - start_sector); 207 } 208 209 static void quorum_report_failure(QuorumAIOCB *acb) 210 { 211 const char *reference = bdrv_get_device_or_node_name(acb->bs); 212 int64_t start_sector = acb->offset / BDRV_SECTOR_SIZE; 213 int64_t end_sector = DIV_ROUND_UP(acb->offset + acb->bytes, 214 BDRV_SECTOR_SIZE); 215 216 qapi_event_send_quorum_failure(reference, start_sector, 217 end_sector - start_sector); 218 } 219 220 static int quorum_vote_error(QuorumAIOCB *acb); 221 222 static bool quorum_has_too_much_io_failed(QuorumAIOCB *acb) 223 { 224 BDRVQuorumState *s = acb->bs->opaque; 225 226 if (acb->success_count < s->threshold) { 227 acb->vote_ret = quorum_vote_error(acb); 228 quorum_report_failure(acb); 229 return true; 230 } 231 232 return false; 233 } 234 235 static void quorum_copy_qiov(QEMUIOVector *dest, QEMUIOVector *source) 236 { 237 int i; 238 assert(dest->niov == source->niov); 239 assert(dest->size == source->size); 240 for (i = 0; i < source->niov; i++) { 241 assert(dest->iov[i].iov_len == source->iov[i].iov_len); 242 memcpy(dest->iov[i].iov_base, 243 source->iov[i].iov_base, 244 source->iov[i].iov_len); 245 } 246 } 247 248 static void quorum_report_bad_acb(QuorumChildRequest *sacb, int ret) 249 { 250 QuorumAIOCB *acb = sacb->parent; 251 QuorumOpType type = acb->is_read ? QUORUM_OP_TYPE_READ : QUORUM_OP_TYPE_WRITE; 252 quorum_report_bad(type, acb->offset, acb->bytes, sacb->bs->node_name, ret); 253 } 254 255 static void quorum_report_bad_versions(BDRVQuorumState *s, 256 QuorumAIOCB *acb, 257 QuorumVoteValue *value) 258 { 259 QuorumVoteVersion *version; 260 QuorumVoteItem *item; 261 262 QLIST_FOREACH(version, &acb->votes.vote_list, next) { 263 if (acb->votes.compare(&version->value, value)) { 264 continue; 265 } 266 QLIST_FOREACH(item, &version->items, next) { 267 quorum_report_bad(QUORUM_OP_TYPE_READ, acb->offset, acb->bytes, 268 s->children[item->index]->bs->node_name, 0); 269 } 270 } 271 } 272 273 static void coroutine_fn quorum_rewrite_entry(void *opaque) 274 { 275 QuorumCo *co = opaque; 276 QuorumAIOCB *acb = co->acb; 277 BDRVQuorumState *s = acb->bs->opaque; 278 279 /* Ignore any errors, it's just a correction attempt for already 280 * corrupted data. 281 * Mask out BDRV_REQ_WRITE_UNCHANGED because this overwrites the 282 * area with different data from the other children. */ 283 bdrv_co_pwritev(s->children[co->idx], acb->offset, acb->bytes, 284 acb->qiov, acb->flags & ~BDRV_REQ_WRITE_UNCHANGED); 285 286 /* Wake up the caller after the last rewrite */ 287 acb->rewrite_count--; 288 if (!acb->rewrite_count) { 289 qemu_coroutine_enter_if_inactive(acb->co); 290 } 291 } 292 293 static bool quorum_rewrite_bad_versions(QuorumAIOCB *acb, 294 QuorumVoteValue *value) 295 { 296 QuorumVoteVersion *version; 297 QuorumVoteItem *item; 298 int count = 0; 299 300 /* first count the number of bad versions: done first to avoid concurrency 301 * issues. 302 */ 303 QLIST_FOREACH(version, &acb->votes.vote_list, next) { 304 if (acb->votes.compare(&version->value, value)) { 305 continue; 306 } 307 QLIST_FOREACH(item, &version->items, next) { 308 count++; 309 } 310 } 311 312 /* quorum_rewrite_entry will count down this to zero */ 313 acb->rewrite_count = count; 314 315 /* now fire the correcting rewrites */ 316 QLIST_FOREACH(version, &acb->votes.vote_list, next) { 317 if (acb->votes.compare(&version->value, value)) { 318 continue; 319 } 320 QLIST_FOREACH(item, &version->items, next) { 321 Coroutine *co; 322 QuorumCo data = { 323 .acb = acb, 324 .idx = item->index, 325 }; 326 327 co = qemu_coroutine_create(quorum_rewrite_entry, &data); 328 qemu_coroutine_enter(co); 329 } 330 } 331 332 /* return true if any rewrite is done else false */ 333 return count; 334 } 335 336 static void quorum_count_vote(QuorumVotes *votes, 337 QuorumVoteValue *value, 338 int index) 339 { 340 QuorumVoteVersion *v = NULL, *version = NULL; 341 QuorumVoteItem *item; 342 343 /* look if we have something with this hash */ 344 QLIST_FOREACH(v, &votes->vote_list, next) { 345 if (votes->compare(&v->value, value)) { 346 version = v; 347 break; 348 } 349 } 350 351 /* It's a version not yet in the list add it */ 352 if (!version) { 353 version = g_new0(QuorumVoteVersion, 1); 354 QLIST_INIT(&version->items); 355 memcpy(&version->value, value, sizeof(version->value)); 356 version->index = index; 357 version->vote_count = 0; 358 QLIST_INSERT_HEAD(&votes->vote_list, version, next); 359 } 360 361 version->vote_count++; 362 363 item = g_new0(QuorumVoteItem, 1); 364 item->index = index; 365 QLIST_INSERT_HEAD(&version->items, item, next); 366 } 367 368 static void quorum_free_vote_list(QuorumVotes *votes) 369 { 370 QuorumVoteVersion *version, *next_version; 371 QuorumVoteItem *item, *next_item; 372 373 QLIST_FOREACH_SAFE(version, &votes->vote_list, next, next_version) { 374 QLIST_REMOVE(version, next); 375 QLIST_FOREACH_SAFE(item, &version->items, next, next_item) { 376 QLIST_REMOVE(item, next); 377 g_free(item); 378 } 379 g_free(version); 380 } 381 } 382 383 static int quorum_compute_hash(QuorumAIOCB *acb, int i, QuorumVoteValue *hash) 384 { 385 QEMUIOVector *qiov = &acb->qcrs[i].qiov; 386 size_t len = sizeof(hash->h); 387 uint8_t *data = hash->h; 388 389 /* XXX - would be nice if we could pass in the Error ** 390 * and propagate that back, but this quorum code is 391 * restricted to just errno values currently */ 392 if (qcrypto_hash_bytesv(QCRYPTO_HASH_ALG_SHA256, 393 qiov->iov, qiov->niov, 394 &data, &len, 395 NULL) < 0) { 396 return -EINVAL; 397 } 398 399 return 0; 400 } 401 402 static QuorumVoteVersion *quorum_get_vote_winner(QuorumVotes *votes) 403 { 404 int max = 0; 405 QuorumVoteVersion *candidate, *winner = NULL; 406 407 QLIST_FOREACH(candidate, &votes->vote_list, next) { 408 if (candidate->vote_count > max) { 409 max = candidate->vote_count; 410 winner = candidate; 411 } 412 } 413 414 return winner; 415 } 416 417 /* qemu_iovec_compare is handy for blkverify mode because it returns the first 418 * differing byte location. Yet it is handcoded to compare vectors one byte 419 * after another so it does not benefit from the libc SIMD optimizations. 420 * quorum_iovec_compare is written for speed and should be used in the non 421 * blkverify mode of quorum. 422 */ 423 static bool quorum_iovec_compare(QEMUIOVector *a, QEMUIOVector *b) 424 { 425 int i; 426 int result; 427 428 assert(a->niov == b->niov); 429 for (i = 0; i < a->niov; i++) { 430 assert(a->iov[i].iov_len == b->iov[i].iov_len); 431 result = memcmp(a->iov[i].iov_base, 432 b->iov[i].iov_base, 433 a->iov[i].iov_len); 434 if (result) { 435 return false; 436 } 437 } 438 439 return true; 440 } 441 442 static bool quorum_compare(QuorumAIOCB *acb, QEMUIOVector *a, QEMUIOVector *b) 443 { 444 BDRVQuorumState *s = acb->bs->opaque; 445 ssize_t offset; 446 447 /* This driver will replace blkverify in this particular case */ 448 if (s->is_blkverify) { 449 offset = qemu_iovec_compare(a, b); 450 if (offset != -1) { 451 fprintf(stderr, "quorum: offset=%" PRIu64 " bytes=%" PRIu64 452 " contents mismatch at offset %" PRIu64 "\n", 453 acb->offset, acb->bytes, acb->offset + offset); 454 exit(1); 455 } 456 return true; 457 } 458 459 return quorum_iovec_compare(a, b); 460 } 461 462 /* Do a vote to get the error code */ 463 static int quorum_vote_error(QuorumAIOCB *acb) 464 { 465 BDRVQuorumState *s = acb->bs->opaque; 466 QuorumVoteVersion *winner = NULL; 467 QuorumVotes error_votes; 468 QuorumVoteValue result_value; 469 int i, ret = 0; 470 bool error = false; 471 472 QLIST_INIT(&error_votes.vote_list); 473 error_votes.compare = quorum_64bits_compare; 474 475 for (i = 0; i < s->num_children; i++) { 476 ret = acb->qcrs[i].ret; 477 if (ret) { 478 error = true; 479 result_value.l = ret; 480 quorum_count_vote(&error_votes, &result_value, i); 481 } 482 } 483 484 if (error) { 485 winner = quorum_get_vote_winner(&error_votes); 486 ret = winner->value.l; 487 } 488 489 quorum_free_vote_list(&error_votes); 490 491 return ret; 492 } 493 494 static void quorum_vote(QuorumAIOCB *acb) 495 { 496 bool quorum = true; 497 int i, j, ret; 498 QuorumVoteValue hash; 499 BDRVQuorumState *s = acb->bs->opaque; 500 QuorumVoteVersion *winner; 501 502 if (quorum_has_too_much_io_failed(acb)) { 503 return; 504 } 505 506 /* get the index of the first successful read */ 507 for (i = 0; i < s->num_children; i++) { 508 if (!acb->qcrs[i].ret) { 509 break; 510 } 511 } 512 513 assert(i < s->num_children); 514 515 /* compare this read with all other successful reads stopping at quorum 516 * failure 517 */ 518 for (j = i + 1; j < s->num_children; j++) { 519 if (acb->qcrs[j].ret) { 520 continue; 521 } 522 quorum = quorum_compare(acb, &acb->qcrs[i].qiov, &acb->qcrs[j].qiov); 523 if (!quorum) { 524 break; 525 } 526 } 527 528 /* Every successful read agrees */ 529 if (quorum) { 530 quorum_copy_qiov(acb->qiov, &acb->qcrs[i].qiov); 531 return; 532 } 533 534 /* compute hashes for each successful read, also store indexes */ 535 for (i = 0; i < s->num_children; i++) { 536 if (acb->qcrs[i].ret) { 537 continue; 538 } 539 ret = quorum_compute_hash(acb, i, &hash); 540 /* if ever the hash computation failed */ 541 if (ret < 0) { 542 acb->vote_ret = ret; 543 goto free_exit; 544 } 545 quorum_count_vote(&acb->votes, &hash, i); 546 } 547 548 /* vote to select the most represented version */ 549 winner = quorum_get_vote_winner(&acb->votes); 550 551 /* if the winner count is smaller than threshold the read fails */ 552 if (winner->vote_count < s->threshold) { 553 quorum_report_failure(acb); 554 acb->vote_ret = -EIO; 555 goto free_exit; 556 } 557 558 /* we have a winner: copy it */ 559 quorum_copy_qiov(acb->qiov, &acb->qcrs[winner->index].qiov); 560 561 /* some versions are bad print them */ 562 quorum_report_bad_versions(s, acb, &winner->value); 563 564 /* corruption correction is enabled */ 565 if (s->rewrite_corrupted) { 566 quorum_rewrite_bad_versions(acb, &winner->value); 567 } 568 569 free_exit: 570 /* free lists */ 571 quorum_free_vote_list(&acb->votes); 572 } 573 574 static void coroutine_fn read_quorum_children_entry(void *opaque) 575 { 576 QuorumCo *co = opaque; 577 QuorumAIOCB *acb = co->acb; 578 BDRVQuorumState *s = acb->bs->opaque; 579 int i = co->idx; 580 QuorumChildRequest *sacb = &acb->qcrs[i]; 581 582 sacb->bs = s->children[i]->bs; 583 sacb->ret = bdrv_co_preadv(s->children[i], acb->offset, acb->bytes, 584 &acb->qcrs[i].qiov, 0); 585 586 if (sacb->ret == 0) { 587 acb->success_count++; 588 } else { 589 quorum_report_bad_acb(sacb, sacb->ret); 590 } 591 592 acb->count++; 593 assert(acb->count <= s->num_children); 594 assert(acb->success_count <= s->num_children); 595 596 /* Wake up the caller after the last read */ 597 if (acb->count == s->num_children) { 598 qemu_coroutine_enter_if_inactive(acb->co); 599 } 600 } 601 602 static int coroutine_fn read_quorum_children(QuorumAIOCB *acb) 603 { 604 BDRVQuorumState *s = acb->bs->opaque; 605 int i; 606 607 acb->children_read = s->num_children; 608 for (i = 0; i < s->num_children; i++) { 609 acb->qcrs[i].buf = qemu_blockalign(s->children[i]->bs, acb->qiov->size); 610 qemu_iovec_init(&acb->qcrs[i].qiov, acb->qiov->niov); 611 qemu_iovec_clone(&acb->qcrs[i].qiov, acb->qiov, acb->qcrs[i].buf); 612 } 613 614 for (i = 0; i < s->num_children; i++) { 615 Coroutine *co; 616 QuorumCo data = { 617 .acb = acb, 618 .idx = i, 619 }; 620 621 co = qemu_coroutine_create(read_quorum_children_entry, &data); 622 qemu_coroutine_enter(co); 623 } 624 625 while (acb->count < s->num_children) { 626 qemu_coroutine_yield(); 627 } 628 629 /* Do the vote on read */ 630 quorum_vote(acb); 631 for (i = 0; i < s->num_children; i++) { 632 qemu_vfree(acb->qcrs[i].buf); 633 qemu_iovec_destroy(&acb->qcrs[i].qiov); 634 } 635 636 while (acb->rewrite_count) { 637 qemu_coroutine_yield(); 638 } 639 640 return acb->vote_ret; 641 } 642 643 static int coroutine_fn read_fifo_child(QuorumAIOCB *acb) 644 { 645 BDRVQuorumState *s = acb->bs->opaque; 646 int n, ret; 647 648 /* We try to read the next child in FIFO order if we failed to read */ 649 do { 650 n = acb->children_read++; 651 acb->qcrs[n].bs = s->children[n]->bs; 652 ret = bdrv_co_preadv(s->children[n], acb->offset, acb->bytes, 653 acb->qiov, 0); 654 if (ret < 0) { 655 quorum_report_bad_acb(&acb->qcrs[n], ret); 656 } 657 } while (ret < 0 && acb->children_read < s->num_children); 658 659 /* FIXME: rewrite failed children if acb->children_read > 1? */ 660 661 return ret; 662 } 663 664 static int coroutine_fn quorum_co_preadv(BlockDriverState *bs, 665 int64_t offset, int64_t bytes, 666 QEMUIOVector *qiov, 667 BdrvRequestFlags flags) 668 { 669 BDRVQuorumState *s = bs->opaque; 670 QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes, flags); 671 int ret; 672 673 acb->is_read = true; 674 acb->children_read = 0; 675 676 if (s->read_pattern == QUORUM_READ_PATTERN_QUORUM) { 677 ret = read_quorum_children(acb); 678 } else { 679 ret = read_fifo_child(acb); 680 } 681 quorum_aio_finalize(acb); 682 683 return ret; 684 } 685 686 /* 687 * This function can count as GRAPH_RDLOCK because quorum_co_pwritev() holds the 688 * graph lock and keeps it until this coroutine has terminated. 689 */ 690 static void coroutine_fn GRAPH_RDLOCK write_quorum_entry(void *opaque) 691 { 692 QuorumCo *co = opaque; 693 QuorumAIOCB *acb = co->acb; 694 BDRVQuorumState *s = acb->bs->opaque; 695 int i = co->idx; 696 QuorumChildRequest *sacb = &acb->qcrs[i]; 697 698 sacb->bs = s->children[i]->bs; 699 if (acb->flags & BDRV_REQ_ZERO_WRITE) { 700 sacb->ret = bdrv_co_pwrite_zeroes(s->children[i], acb->offset, 701 acb->bytes, acb->flags); 702 } else { 703 sacb->ret = bdrv_co_pwritev(s->children[i], acb->offset, acb->bytes, 704 acb->qiov, acb->flags); 705 } 706 if (sacb->ret == 0) { 707 acb->success_count++; 708 } else { 709 quorum_report_bad_acb(sacb, sacb->ret); 710 } 711 acb->count++; 712 assert(acb->count <= s->num_children); 713 assert(acb->success_count <= s->num_children); 714 715 /* Wake up the caller after the last write */ 716 if (acb->count == s->num_children) { 717 qemu_coroutine_enter_if_inactive(acb->co); 718 } 719 } 720 721 static int coroutine_fn quorum_co_pwritev(BlockDriverState *bs, int64_t offset, 722 int64_t bytes, QEMUIOVector *qiov, 723 BdrvRequestFlags flags) 724 { 725 BDRVQuorumState *s = bs->opaque; 726 QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes, flags); 727 int i, ret; 728 729 assume_graph_lock(); /* FIXME */ 730 731 for (i = 0; i < s->num_children; i++) { 732 Coroutine *co; 733 QuorumCo data = { 734 .acb = acb, 735 .idx = i, 736 }; 737 738 co = qemu_coroutine_create(write_quorum_entry, &data); 739 qemu_coroutine_enter(co); 740 } 741 742 while (acb->count < s->num_children) { 743 qemu_coroutine_yield(); 744 } 745 746 quorum_has_too_much_io_failed(acb); 747 748 ret = acb->vote_ret; 749 quorum_aio_finalize(acb); 750 751 return ret; 752 } 753 754 static int coroutine_fn GRAPH_RDLOCK 755 quorum_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int64_t bytes, 756 BdrvRequestFlags flags) 757 { 758 return quorum_co_pwritev(bs, offset, bytes, NULL, 759 flags | BDRV_REQ_ZERO_WRITE); 760 } 761 762 static int64_t coroutine_fn quorum_co_getlength(BlockDriverState *bs) 763 { 764 BDRVQuorumState *s = bs->opaque; 765 int64_t result; 766 int i; 767 768 /* check that all file have the same length */ 769 result = bdrv_co_getlength(s->children[0]->bs); 770 if (result < 0) { 771 return result; 772 } 773 for (i = 1; i < s->num_children; i++) { 774 int64_t value = bdrv_co_getlength(s->children[i]->bs); 775 if (value < 0) { 776 return value; 777 } 778 if (value != result) { 779 return -EIO; 780 } 781 } 782 783 return result; 784 } 785 786 static coroutine_fn GRAPH_RDLOCK int quorum_co_flush(BlockDriverState *bs) 787 { 788 BDRVQuorumState *s = bs->opaque; 789 QuorumVoteVersion *winner = NULL; 790 QuorumVotes error_votes; 791 QuorumVoteValue result_value; 792 int i; 793 int result = 0; 794 int success_count = 0; 795 796 QLIST_INIT(&error_votes.vote_list); 797 error_votes.compare = quorum_64bits_compare; 798 799 for (i = 0; i < s->num_children; i++) { 800 result = bdrv_co_flush(s->children[i]->bs); 801 if (result) { 802 quorum_report_bad(QUORUM_OP_TYPE_FLUSH, 0, 0, 803 s->children[i]->bs->node_name, result); 804 result_value.l = result; 805 quorum_count_vote(&error_votes, &result_value, i); 806 } else { 807 success_count++; 808 } 809 } 810 811 if (success_count >= s->threshold) { 812 result = 0; 813 } else { 814 winner = quorum_get_vote_winner(&error_votes); 815 result = winner->value.l; 816 } 817 quorum_free_vote_list(&error_votes); 818 819 return result; 820 } 821 822 static bool quorum_recurse_can_replace(BlockDriverState *bs, 823 BlockDriverState *to_replace) 824 { 825 BDRVQuorumState *s = bs->opaque; 826 int i; 827 828 for (i = 0; i < s->num_children; i++) { 829 /* 830 * We have no idea whether our children show the same data as 831 * this node (@bs). It is actually highly likely that 832 * @to_replace does not, because replacing a broken child is 833 * one of the main use cases here. 834 * 835 * We do know that the new BDS will match @bs, so replacing 836 * any of our children by it will be safe. It cannot change 837 * the data this quorum node presents to its parents. 838 * 839 * However, replacing @to_replace by @bs in any of our 840 * children's chains may change visible data somewhere in 841 * there. We therefore cannot recurse down those chains with 842 * bdrv_recurse_can_replace(). 843 * (More formally, bdrv_recurse_can_replace() requires that 844 * @to_replace will be replaced by something matching the @bs 845 * passed to it. We cannot guarantee that.) 846 * 847 * Thus, we can only check whether any of our immediate 848 * children matches @to_replace. 849 * 850 * (In the future, we might add a function to recurse down a 851 * chain that checks that nothing there cares about a change 852 * in data from the respective child in question. For 853 * example, most filters do not care when their child's data 854 * suddenly changes, as long as their parents do not care.) 855 */ 856 if (s->children[i]->bs == to_replace) { 857 /* 858 * We now have to ensure that there is no other parent 859 * that cares about replacing this child by a node with 860 * potentially different data. 861 * We do so by checking whether there are any other parents 862 * at all, which is stricter than necessary, but also very 863 * simple. (We may decide to implement something more 864 * complex and permissive when there is an actual need for 865 * it.) 866 */ 867 return QLIST_FIRST(&to_replace->parents) == s->children[i] && 868 QLIST_NEXT(s->children[i], next_parent) == NULL; 869 } 870 } 871 872 return false; 873 } 874 875 static int quorum_valid_threshold(int threshold, int num_children, Error **errp) 876 { 877 878 if (threshold < 1) { 879 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, 880 "vote-threshold", "a value >= 1"); 881 return -ERANGE; 882 } 883 884 if (threshold > num_children) { 885 error_setg(errp, "threshold may not exceed children count"); 886 return -ERANGE; 887 } 888 889 return 0; 890 } 891 892 static QemuOptsList quorum_runtime_opts = { 893 .name = "quorum", 894 .head = QTAILQ_HEAD_INITIALIZER(quorum_runtime_opts.head), 895 .desc = { 896 { 897 .name = QUORUM_OPT_VOTE_THRESHOLD, 898 .type = QEMU_OPT_NUMBER, 899 .help = "The number of vote needed for reaching quorum", 900 }, 901 { 902 .name = QUORUM_OPT_BLKVERIFY, 903 .type = QEMU_OPT_BOOL, 904 .help = "Trigger block verify mode if set", 905 }, 906 { 907 .name = QUORUM_OPT_REWRITE, 908 .type = QEMU_OPT_BOOL, 909 .help = "Rewrite corrupted block on read quorum", 910 }, 911 { 912 .name = QUORUM_OPT_READ_PATTERN, 913 .type = QEMU_OPT_STRING, 914 .help = "Allowed pattern: quorum, fifo. Quorum is default", 915 }, 916 { /* end of list */ } 917 }, 918 }; 919 920 static void quorum_refresh_flags(BlockDriverState *bs) 921 { 922 BDRVQuorumState *s = bs->opaque; 923 int i; 924 925 bs->supported_zero_flags = 926 BDRV_REQ_FUA | BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK; 927 928 for (i = 0; i < s->num_children; i++) { 929 bs->supported_zero_flags &= s->children[i]->bs->supported_zero_flags; 930 } 931 932 bs->supported_zero_flags |= BDRV_REQ_WRITE_UNCHANGED; 933 } 934 935 static int quorum_open(BlockDriverState *bs, QDict *options, int flags, 936 Error **errp) 937 { 938 BDRVQuorumState *s = bs->opaque; 939 QemuOpts *opts = NULL; 940 const char *pattern_str; 941 bool *opened; 942 int i; 943 int ret = 0; 944 945 qdict_flatten(options); 946 947 /* count how many different children are present */ 948 s->num_children = qdict_array_entries(options, "children."); 949 if (s->num_children < 0) { 950 error_setg(errp, "Option children is not a valid array"); 951 ret = -EINVAL; 952 goto exit; 953 } 954 if (s->num_children < 1) { 955 error_setg(errp, "Number of provided children must be 1 or more"); 956 ret = -EINVAL; 957 goto exit; 958 } 959 960 opts = qemu_opts_create(&quorum_runtime_opts, NULL, 0, &error_abort); 961 if (!qemu_opts_absorb_qdict(opts, options, errp)) { 962 ret = -EINVAL; 963 goto exit; 964 } 965 966 s->threshold = qemu_opt_get_number(opts, QUORUM_OPT_VOTE_THRESHOLD, 0); 967 /* and validate it against s->num_children */ 968 ret = quorum_valid_threshold(s->threshold, s->num_children, errp); 969 if (ret < 0) { 970 goto exit; 971 } 972 973 pattern_str = qemu_opt_get(opts, QUORUM_OPT_READ_PATTERN); 974 if (!pattern_str) { 975 ret = QUORUM_READ_PATTERN_QUORUM; 976 } else { 977 ret = qapi_enum_parse(&QuorumReadPattern_lookup, pattern_str, 978 -EINVAL, NULL); 979 } 980 if (ret < 0) { 981 error_setg(errp, "Please set read-pattern as fifo or quorum"); 982 goto exit; 983 } 984 s->read_pattern = ret; 985 986 if (s->read_pattern == QUORUM_READ_PATTERN_QUORUM) { 987 s->is_blkverify = qemu_opt_get_bool(opts, QUORUM_OPT_BLKVERIFY, false); 988 if (s->is_blkverify && (s->num_children != 2 || s->threshold != 2)) { 989 error_setg(errp, "blkverify=on can only be set if there are " 990 "exactly two files and vote-threshold is 2"); 991 ret = -EINVAL; 992 goto exit; 993 } 994 995 s->rewrite_corrupted = qemu_opt_get_bool(opts, QUORUM_OPT_REWRITE, 996 false); 997 if (s->rewrite_corrupted && s->is_blkverify) { 998 error_setg(errp, 999 "rewrite-corrupted=on cannot be used with blkverify=on"); 1000 ret = -EINVAL; 1001 goto exit; 1002 } 1003 } 1004 1005 /* allocate the children array */ 1006 s->children = g_new0(BdrvChild *, s->num_children); 1007 opened = g_new0(bool, s->num_children); 1008 1009 for (i = 0; i < s->num_children; i++) { 1010 char indexstr[INDEXSTR_LEN]; 1011 ret = snprintf(indexstr, INDEXSTR_LEN, "children.%d", i); 1012 assert(ret < INDEXSTR_LEN); 1013 1014 s->children[i] = bdrv_open_child(NULL, options, indexstr, bs, 1015 &child_of_bds, BDRV_CHILD_DATA, false, 1016 errp); 1017 if (!s->children[i]) { 1018 ret = -EINVAL; 1019 goto close_exit; 1020 } 1021 1022 opened[i] = true; 1023 } 1024 s->next_child_index = s->num_children; 1025 1026 bs->supported_write_flags = BDRV_REQ_WRITE_UNCHANGED; 1027 quorum_refresh_flags(bs); 1028 1029 g_free(opened); 1030 goto exit; 1031 1032 close_exit: 1033 /* cleanup on error */ 1034 for (i = 0; i < s->num_children; i++) { 1035 if (!opened[i]) { 1036 continue; 1037 } 1038 bdrv_unref_child(bs, s->children[i]); 1039 } 1040 g_free(s->children); 1041 g_free(opened); 1042 exit: 1043 qemu_opts_del(opts); 1044 return ret; 1045 } 1046 1047 static void quorum_close(BlockDriverState *bs) 1048 { 1049 BDRVQuorumState *s = bs->opaque; 1050 int i; 1051 1052 for (i = 0; i < s->num_children; i++) { 1053 bdrv_unref_child(bs, s->children[i]); 1054 } 1055 1056 g_free(s->children); 1057 } 1058 1059 static void quorum_add_child(BlockDriverState *bs, BlockDriverState *child_bs, 1060 Error **errp) 1061 { 1062 BDRVQuorumState *s = bs->opaque; 1063 BdrvChild *child; 1064 char indexstr[INDEXSTR_LEN]; 1065 int ret; 1066 1067 if (s->is_blkverify) { 1068 error_setg(errp, "Cannot add a child to a quorum in blkverify mode"); 1069 return; 1070 } 1071 1072 assert(s->num_children <= INT_MAX / sizeof(BdrvChild *)); 1073 if (s->num_children == INT_MAX / sizeof(BdrvChild *) || 1074 s->next_child_index == UINT_MAX) { 1075 error_setg(errp, "Too many children"); 1076 return; 1077 } 1078 1079 ret = snprintf(indexstr, INDEXSTR_LEN, "children.%u", s->next_child_index); 1080 if (ret < 0 || ret >= INDEXSTR_LEN) { 1081 error_setg(errp, "cannot generate child name"); 1082 return; 1083 } 1084 s->next_child_index++; 1085 1086 bdrv_drained_begin(bs); 1087 1088 /* We can safely add the child now */ 1089 bdrv_ref(child_bs); 1090 1091 child = bdrv_attach_child(bs, child_bs, indexstr, &child_of_bds, 1092 BDRV_CHILD_DATA, errp); 1093 if (child == NULL) { 1094 s->next_child_index--; 1095 goto out; 1096 } 1097 s->children = g_renew(BdrvChild *, s->children, s->num_children + 1); 1098 s->children[s->num_children++] = child; 1099 quorum_refresh_flags(bs); 1100 1101 out: 1102 bdrv_drained_end(bs); 1103 } 1104 1105 static void quorum_del_child(BlockDriverState *bs, BdrvChild *child, 1106 Error **errp) 1107 { 1108 BDRVQuorumState *s = bs->opaque; 1109 char indexstr[INDEXSTR_LEN]; 1110 int i; 1111 1112 for (i = 0; i < s->num_children; i++) { 1113 if (s->children[i] == child) { 1114 break; 1115 } 1116 } 1117 1118 /* we have checked it in bdrv_del_child() */ 1119 assert(i < s->num_children); 1120 1121 if (s->num_children <= s->threshold) { 1122 error_setg(errp, 1123 "The number of children cannot be lower than the vote threshold %d", 1124 s->threshold); 1125 return; 1126 } 1127 1128 /* We know now that num_children > threshold, so blkverify must be false */ 1129 assert(!s->is_blkverify); 1130 1131 snprintf(indexstr, INDEXSTR_LEN, "children.%u", s->next_child_index - 1); 1132 if (!strncmp(child->name, indexstr, INDEXSTR_LEN)) { 1133 s->next_child_index--; 1134 } 1135 1136 bdrv_drained_begin(bs); 1137 1138 /* We can safely remove this child now */ 1139 memmove(&s->children[i], &s->children[i + 1], 1140 (s->num_children - i - 1) * sizeof(BdrvChild *)); 1141 s->children = g_renew(BdrvChild *, s->children, --s->num_children); 1142 bdrv_unref_child(bs, child); 1143 1144 quorum_refresh_flags(bs); 1145 bdrv_drained_end(bs); 1146 } 1147 1148 static void quorum_gather_child_options(BlockDriverState *bs, QDict *target, 1149 bool backing_overridden) 1150 { 1151 BDRVQuorumState *s = bs->opaque; 1152 QList *children_list; 1153 int i; 1154 1155 /* 1156 * The generic implementation for gathering child options in 1157 * bdrv_refresh_filename() would use the names of the children 1158 * as specified for bdrv_open_child() or bdrv_attach_child(), 1159 * which is "children.%u" with %u being a value 1160 * (s->next_child_index) that is incremented each time a new child 1161 * is added (and never decremented). Since children can be 1162 * deleted at runtime, there may be gaps in that enumeration. 1163 * When creating a new quorum BDS and specifying the children for 1164 * it through runtime options, the enumeration used there may not 1165 * have any gaps, though. 1166 * 1167 * Therefore, we have to create a new gap-less enumeration here 1168 * (which we can achieve by simply putting all of the children's 1169 * full_open_options into a QList). 1170 * 1171 * XXX: Note that there are issues with the current child option 1172 * structure quorum uses (such as the fact that children do 1173 * not really have unique permanent names). Therefore, this 1174 * is going to have to change in the future and ideally we 1175 * want quorum to be covered by the generic implementation. 1176 */ 1177 1178 children_list = qlist_new(); 1179 qdict_put(target, "children", children_list); 1180 1181 for (i = 0; i < s->num_children; i++) { 1182 qlist_append(children_list, 1183 qobject_ref(s->children[i]->bs->full_open_options)); 1184 } 1185 } 1186 1187 static char *quorum_dirname(BlockDriverState *bs, Error **errp) 1188 { 1189 /* In general, there are multiple BDSs with different dirnames below this 1190 * one; so there is no unique dirname we could return (unless all are equal 1191 * by chance, or there is only one). Therefore, to be consistent, just 1192 * always return NULL. */ 1193 error_setg(errp, "Cannot generate a base directory for quorum nodes"); 1194 return NULL; 1195 } 1196 1197 static void quorum_child_perm(BlockDriverState *bs, BdrvChild *c, 1198 BdrvChildRole role, 1199 BlockReopenQueue *reopen_queue, 1200 uint64_t perm, uint64_t shared, 1201 uint64_t *nperm, uint64_t *nshared) 1202 { 1203 BDRVQuorumState *s = bs->opaque; 1204 1205 *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 1206 if (s->rewrite_corrupted) { 1207 *nperm |= BLK_PERM_WRITE; 1208 } 1209 1210 /* 1211 * We cannot share RESIZE or WRITE, as this would make the 1212 * children differ from each other. 1213 */ 1214 *nshared = (shared & (BLK_PERM_CONSISTENT_READ | 1215 BLK_PERM_WRITE_UNCHANGED)) 1216 | DEFAULT_PERM_UNCHANGED; 1217 } 1218 1219 /* 1220 * Each one of the children can report different status flags even 1221 * when they contain the same data, so what this function does is 1222 * return BDRV_BLOCK_ZERO if *all* children agree that a certain 1223 * region contains zeroes, and BDRV_BLOCK_DATA otherwise. 1224 */ 1225 static int coroutine_fn GRAPH_RDLOCK 1226 quorum_co_block_status(BlockDriverState *bs, bool want_zero, 1227 int64_t offset, int64_t count, 1228 int64_t *pnum, int64_t *map, BlockDriverState **file) 1229 { 1230 BDRVQuorumState *s = bs->opaque; 1231 int i, ret; 1232 int64_t pnum_zero = count; 1233 int64_t pnum_data = 0; 1234 1235 for (i = 0; i < s->num_children; i++) { 1236 int64_t bytes; 1237 ret = bdrv_co_common_block_status_above(s->children[i]->bs, NULL, false, 1238 want_zero, offset, count, 1239 &bytes, NULL, NULL, NULL); 1240 if (ret < 0) { 1241 quorum_report_bad(QUORUM_OP_TYPE_READ, offset, count, 1242 s->children[i]->bs->node_name, ret); 1243 pnum_data = count; 1244 break; 1245 } 1246 /* 1247 * Even if all children agree about whether there are zeroes 1248 * or not at @offset they might disagree on the size, so use 1249 * the smallest when reporting BDRV_BLOCK_ZERO and the largest 1250 * when reporting BDRV_BLOCK_DATA. 1251 */ 1252 if (ret & BDRV_BLOCK_ZERO) { 1253 pnum_zero = MIN(pnum_zero, bytes); 1254 } else { 1255 pnum_data = MAX(pnum_data, bytes); 1256 } 1257 } 1258 1259 if (pnum_data) { 1260 *pnum = pnum_data; 1261 return BDRV_BLOCK_DATA; 1262 } else { 1263 *pnum = pnum_zero; 1264 return BDRV_BLOCK_ZERO; 1265 } 1266 } 1267 1268 static const char *const quorum_strong_runtime_opts[] = { 1269 QUORUM_OPT_VOTE_THRESHOLD, 1270 QUORUM_OPT_BLKVERIFY, 1271 QUORUM_OPT_REWRITE, 1272 QUORUM_OPT_READ_PATTERN, 1273 1274 NULL 1275 }; 1276 1277 static BlockDriver bdrv_quorum = { 1278 .format_name = "quorum", 1279 1280 .instance_size = sizeof(BDRVQuorumState), 1281 1282 .bdrv_open = quorum_open, 1283 .bdrv_close = quorum_close, 1284 .bdrv_gather_child_options = quorum_gather_child_options, 1285 .bdrv_dirname = quorum_dirname, 1286 .bdrv_co_block_status = quorum_co_block_status, 1287 1288 .bdrv_co_flush = quorum_co_flush, 1289 1290 .bdrv_co_getlength = quorum_co_getlength, 1291 1292 .bdrv_co_preadv = quorum_co_preadv, 1293 .bdrv_co_pwritev = quorum_co_pwritev, 1294 .bdrv_co_pwrite_zeroes = quorum_co_pwrite_zeroes, 1295 1296 .bdrv_add_child = quorum_add_child, 1297 .bdrv_del_child = quorum_del_child, 1298 1299 .bdrv_child_perm = quorum_child_perm, 1300 1301 .bdrv_recurse_can_replace = quorum_recurse_can_replace, 1302 1303 .strong_runtime_opts = quorum_strong_runtime_opts, 1304 }; 1305 1306 static void bdrv_quorum_init(void) 1307 { 1308 if (!qcrypto_hash_supports(QCRYPTO_HASH_ALG_SHA256)) { 1309 /* SHA256 hash support is required for quorum device */ 1310 return; 1311 } 1312 bdrv_register(&bdrv_quorum); 1313 } 1314 1315 block_init(bdrv_quorum_init); 1316