1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
|
/*
* Copyright 2010-2016, Tarantool AUTHORS, please see AUTHORS file.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "txn.h"
#include "txn_limbo.h"
#include "engine.h"
#include "tuple.h"
#include "journal.h"
#include <fiber.h>
#include "xrow.h"
#include "errinj.h"
#include "iproto_constants.h"
double too_long_threshold;
/* Txn cache. */
static struct stailq txn_cache = {NULL, &txn_cache.first};
static int
txn_on_stop(struct trigger *trigger, void *event);
static int
txn_on_yield(struct trigger *trigger, void *event);
static void
txn_run_rollback_triggers(struct txn *txn, struct rlist *triggers);
static int
txn_add_redo(struct txn *txn, struct txn_stmt *stmt, struct request *request)
{
/* Create a redo log row. */
int size;
struct xrow_header *row;
row = region_alloc_object(&txn->region, struct xrow_header, &size);
if (row == NULL) {
diag_set(OutOfMemory, size, "region_alloc_object", "row");
return -1;
}
if (request->header != NULL) {
*row = *request->header;
} else {
/* Initialize members explicitly to save time on memset() */
row->type = request->type;
row->replica_id = 0;
row->lsn = 0;
row->sync = 0;
row->tm = 0;
}
/*
* Group ID should be set both for requests not having a
* header, and for the ones who have it. This is because
* even if a request has a header, the group id could be
* omitted in it, and is default - 0. Even if the space's
* real group id is different.
*/
struct space *space = stmt->space;
row->group_id = space != NULL ? space_group_id(space) : 0;
/*
* Sychronous replication entries are supplementary and
* aren't valid dml requests. They're encoded manually.
*/
if (likely(!iproto_type_is_synchro_request(row->type)))
row->bodycnt = xrow_encode_dml(request, &txn->region, row->body);
else
row->bodycnt = xrow_header_dup_body(row, &txn->region);
if (row->bodycnt < 0)
return -1;
stmt->row = row;
return 0;
}
/** Initialize a new stmt object within txn. */
static struct txn_stmt *
txn_stmt_new(struct region *region)
{
int size;
struct txn_stmt *stmt;
stmt = region_alloc_object(region, struct txn_stmt, &size);
if (stmt == NULL) {
diag_set(OutOfMemory, size, "region_alloc_object", "stmt");
return NULL;
}
/* Initialize members explicitly to save time on memset() */
stmt->txn = in_txn();
stmt->space = NULL;
stmt->old_tuple = NULL;
stmt->new_tuple = NULL;
stmt->engine_savepoint = NULL;
stmt->row = NULL;
stmt->has_triggers = false;
return stmt;
}
static inline void
txn_stmt_destroy(struct txn_stmt *stmt)
{
if (stmt->old_tuple != NULL)
tuple_unref(stmt->old_tuple);
if (stmt->new_tuple != NULL)
tuple_unref(stmt->new_tuple);
}
/*
* Undo changes done by a statement and run the corresponding
* rollback triggers.
*
* Note, a trigger set by a particular statement must be run right
* after the statement is rolled back, because rollback triggers
* installed by DDL statements restore the schema cache, which is
* necessary to roll back previous statements. For example, to roll
* back a DML statement applied to a space whose index is dropped
* later in the same transaction, we must restore the dropped index
* first.
*/
static void
txn_rollback_one_stmt(struct txn *txn, struct txn_stmt *stmt)
{
if (txn->engine != NULL && stmt->space != NULL)
engine_rollback_statement(txn->engine, txn, stmt);
if (stmt->has_triggers)
txn_run_rollback_triggers(txn, &stmt->on_rollback);
}
static void
txn_rollback_to_svp(struct txn *txn, struct stailq_entry *svp)
{
struct txn_stmt *stmt;
struct stailq rollback;
stailq_cut_tail(&txn->stmts, svp, &rollback);
stailq_reverse(&rollback);
stailq_foreach_entry(stmt, &rollback, next) {
txn_rollback_one_stmt(txn, stmt);
if (stmt->row != NULL && stmt->row->replica_id == 0) {
assert(txn->n_new_rows > 0);
txn->n_new_rows--;
if (stmt->row->group_id == GROUP_LOCAL)
txn->n_local_rows--;
}
if (stmt->row != NULL && stmt->row->replica_id != 0) {
assert(txn->n_applier_rows > 0);
txn->n_applier_rows--;
}
txn_stmt_destroy(stmt);
stmt->space = NULL;
stmt->row = NULL;
}
}
/*
* Return a txn from cache or create a new one if cache is empty.
*/
inline static struct txn *
txn_new(void)
{
if (!stailq_empty(&txn_cache))
return stailq_shift_entry(&txn_cache, struct txn, in_txn_cache);
/* Create a region. */
struct region region;
region_create(®ion, &cord()->slabc);
/* Place txn structure on the region. */
int size;
struct txn *txn = region_alloc_object(®ion, struct txn, &size);
if (txn == NULL) {
diag_set(OutOfMemory, size, "region_alloc_object", "txn");
return NULL;
}
assert(region_used(®ion) == sizeof(*txn));
txn->region = region;
return txn;
}
/*
* Free txn memory and return it to a cache.
*/
inline static void
txn_free(struct txn *txn)
{
struct txn_stmt *stmt;
stailq_foreach_entry(stmt, &txn->stmts, next)
txn_stmt_destroy(stmt);
/* Truncate region up to struct txn size. */
region_truncate(&txn->region, sizeof(struct txn));
stailq_add(&txn_cache, &txn->in_txn_cache);
}
struct txn *
txn_begin(void)
{
static int64_t tsn = 0;
assert(! in_txn());
struct txn *txn = txn_new();
if (txn == NULL)
return NULL;
/* Initialize members explicitly to save time on memset() */
stailq_create(&txn->stmts);
txn->n_new_rows = 0;
txn->n_local_rows = 0;
txn->n_applier_rows = 0;
txn->flags = 0;
txn->in_sub_stmt = 0;
txn->id = ++tsn;
txn->signature = TXN_SIGNATURE_ROLLBACK;
txn->engine = NULL;
txn->engine_tx = NULL;
txn->fk_deferred_count = 0;
rlist_create(&txn->savepoints);
txn->fiber = NULL;
fiber_set_txn(fiber(), txn);
/* fiber_on_yield is initialized by engine on demand */
trigger_create(&txn->fiber_on_stop, txn_on_stop, NULL, NULL);
trigger_add(&fiber()->on_stop, &txn->fiber_on_stop);
/*
* By default all transactions may yield.
* It's a responsibility of an engine to disable yields
* if they are not supported.
*/
txn_set_flag(txn, TXN_CAN_YIELD);
return txn;
}
int
txn_begin_in_engine(struct engine *engine, struct txn *txn)
{
if (engine->flags & ENGINE_BYPASS_TX)
return 0;
if (txn->engine == NULL) {
txn->engine = engine;
return engine_begin(engine, txn);
} else if (txn->engine != engine) {
/**
* Only one engine can be used in
* a multi-statement transaction currently.
*/
diag_set(ClientError, ER_CROSS_ENGINE_TRANSACTION);
return -1;
}
return 0;
}
int
txn_begin_stmt(struct txn *txn, struct space *space)
{
assert(txn == in_txn());
assert(txn != NULL);
if (txn->in_sub_stmt > TXN_SUB_STMT_MAX) {
diag_set(ClientError, ER_SUB_STMT_MAX);
return -1;
}
struct txn_stmt *stmt = txn_stmt_new(&txn->region);
if (stmt == NULL)
return -1;
/* Set the savepoint for statement rollback. */
txn->sub_stmt_begin[txn->in_sub_stmt] = stailq_last(&txn->stmts);
txn->in_sub_stmt++;
stailq_add_tail_entry(&txn->stmts, stmt, next);
if (space == NULL)
return 0;
struct engine *engine = space->engine;
if (txn_begin_in_engine(engine, txn) != 0)
goto fail;
stmt->space = space;
if (engine_begin_statement(engine, txn) != 0)
goto fail;
return 0;
fail:
txn_rollback_stmt(txn);
return -1;
}
bool
txn_is_distributed(struct txn *txn)
{
assert(txn == in_txn());
/**
* Transaction has both new and applier rows, and some of
* the new rows need to be replicated back to the
* server of transaction origin.
*/
return (txn->n_new_rows > 0 && txn->n_applier_rows > 0 &&
txn->n_new_rows != txn->n_local_rows);
}
/**
* End a statement.
*/
int
txn_commit_stmt(struct txn *txn, struct request *request)
{
assert(txn->in_sub_stmt > 0);
/*
* Run on_replace triggers. For now, disallow mutation
* of tuples in the trigger.
*/
struct txn_stmt *stmt = txn_current_stmt(txn);
/*
* Create WAL record for the write requests in
* non-temporary spaces. stmt->space can be NULL for
* IRPOTO_NOP or IPROTO_CONFIRM.
*/
if (stmt->space == NULL || !space_is_temporary(stmt->space)) {
if (txn_add_redo(txn, stmt, request) != 0)
goto fail;
assert(stmt->row != NULL);
if (stmt->row->replica_id == 0) {
++txn->n_new_rows;
if (stmt->row->group_id == GROUP_LOCAL)
++txn->n_local_rows;
} else {
++txn->n_applier_rows;
}
}
/*
* If there are triggers, and they are not disabled, and
* the statement found any rows, run triggers.
* XXX:
* - vinyl doesn't set old/new tuple, so triggers don't
* work for it
* - perhaps we should run triggers even for deletes which
* doesn't find any rows
*/
if (stmt->space != NULL && !rlist_empty(&stmt->space->on_replace) &&
stmt->space->run_triggers && (stmt->old_tuple || stmt->new_tuple)) {
int rc = 0;
if(!space_is_temporary(stmt->space)) {
rc = trigger_run(&stmt->space->on_replace, txn);
} else {
/*
* There is no row attached to txn_stmt for
* temporary spaces, since DML operations on them
* are not written to WAL. Fake a row to pass operation
* type to lua on_replace triggers.
*/
assert(stmt->row == NULL);
struct xrow_header temp_header;
temp_header.type = request->type;
stmt->row = &temp_header;
rc = trigger_run(&stmt->space->on_replace, txn);
stmt->row = NULL;
}
if (rc != 0)
goto fail;
}
--txn->in_sub_stmt;
return 0;
fail:
txn_rollback_stmt(txn);
return -1;
}
/*
* A helper function to process on_commit triggers.
*/
static void
txn_run_commit_triggers(struct txn *txn, struct rlist *triggers)
{
/*
* Commit triggers must be run in the same order they
* were added so that a trigger sees the changes done
* by previous triggers (this is vital for DDL).
*/
if (trigger_run_reverse(triggers, txn) != 0) {
/*
* As transaction couldn't handle a trigger error so
* there is no option except panic.
*/
diag_log();
unreachable();
panic("commit trigger failed");
}
}
/*
* A helper function to process on_rollback triggers.
*/
static void
txn_run_rollback_triggers(struct txn *txn, struct rlist *triggers)
{
if (trigger_run(triggers, txn) != 0) {
/*
* As transaction couldn't handle a trigger error so
* there is no option except panic.
*/
diag_log();
unreachable();
panic("rollback trigger failed");
}
}
/* A helper function to process on_wal_write triggers. */
static void
txn_run_wal_write_triggers(struct txn *txn)
{
/* Is zero during recovery. */
assert(txn->signature >= 0);
if (trigger_run(&txn->on_wal_write, txn) != 0) {
/*
* As transaction couldn't handle a trigger error so
* there is no option except panic.
*/
diag_log();
unreachable();
panic("wal_write trigger failed");
}
/* WAL write happens only once. */
trigger_destroy(&txn->on_wal_write);
}
/**
* Complete transaction processing.
*/
void
txn_complete(struct txn *txn)
{
/*
* Note, engine can be NULL if transaction contains
* IPROTO_NOP or IPROTO_CONFIRM statements.
*/
if (txn->signature < 0) {
/* Undo the transaction. */
struct txn_stmt *stmt;
stailq_reverse(&txn->stmts);
stailq_foreach_entry(stmt, &txn->stmts, next)
txn_rollback_one_stmt(txn, stmt);
if (txn->engine)
engine_rollback(txn->engine, txn);
if (txn_has_flag(txn, TXN_HAS_TRIGGERS))
txn_run_rollback_triggers(txn, &txn->on_rollback);
} else if (!txn_has_flag(txn, TXN_WAIT_SYNC)) {
/* Commit the transaction. */
if (txn->engine != NULL)
engine_commit(txn->engine, txn);
if (txn_has_flag(txn, TXN_HAS_TRIGGERS)) {
txn_run_commit_triggers(txn, &txn->on_commit);
/*
* For async transactions WAL write ==
* commit.
*/
txn_run_wal_write_triggers(txn);
}
double stop_tm = ev_monotonic_now(loop());
if (stop_tm - txn->start_tm > too_long_threshold) {
int n_rows = txn->n_new_rows + txn->n_applier_rows;
say_warn_ratelimited("too long WAL write: %d rows at "
"LSN %lld: %.3f sec", n_rows,
txn->signature - n_rows + 1,
stop_tm - txn->start_tm);
}
} else {
if (txn_has_flag(txn, TXN_HAS_TRIGGERS))
txn_run_wal_write_triggers(txn);
/*
* Complete is called on every WAL operation
* authored by this transaction. And it not always
* is one. And not always is enough for commit.
* In case the transaction is waiting for acks, it
* can't be committed right away. Give control
* back to the fiber, owning the transaction so as
* it could decide what to do next.
*/
if (txn->fiber != NULL && txn->fiber != fiber())
fiber_wakeup(txn->fiber);
return;
}
/*
* If there is no fiber waiting for the transaction then
* the transaction could be safely freed. In the opposite case
* the fiber is in duty to free this transaction.
*/
if (txn->fiber == NULL)
txn_free(txn);
else {
txn_set_flag(txn, TXN_IS_DONE);
if (txn->fiber != fiber())
/* Wake a waiting fiber up. */
fiber_wakeup(txn->fiber);
}
}
void
txn_complete_async(struct journal_entry *entry)
{
struct txn *txn = entry->complete_data;
/*
* txn_limbo has already rolled the tx back, so we just
* have to free it.
*/
if (txn->signature < TXN_SIGNATURE_ROLLBACK) {
txn_free(txn);
return;
}
txn->signature = entry->res;
/*
* Some commit/rollback triggers require for in_txn fiber
* variable to be set so restore it for the time triggers
* are in progress.
*/
assert(in_txn() == NULL);
fiber_set_txn(fiber(), txn);
txn_complete(txn);
fiber_set_txn(fiber(), NULL);
}
static struct journal_entry *
txn_journal_entry_new(struct txn *txn)
{
struct journal_entry *req;
struct txn_stmt *stmt;
assert(txn->n_new_rows + txn->n_applier_rows > 0);
/* Save space for an additional NOP row just in case. */
req = journal_entry_new(txn->n_new_rows + txn->n_applier_rows + 1,
&txn->region, txn);
if (req == NULL)
return NULL;
struct xrow_header **remote_row = req->rows;
struct xrow_header **local_row = req->rows + txn->n_applier_rows;
bool is_sync = false;
stailq_foreach_entry(stmt, &txn->stmts, next) {
if (stmt->has_triggers) {
txn_init_triggers(txn);
rlist_splice(&txn->on_commit, &stmt->on_commit);
}
/* A read (e.g. select) request */
if (stmt->row == NULL)
continue;
is_sync = is_sync || (stmt->space != NULL &&
stmt->space->def->opts.is_sync);
if (stmt->row->replica_id == 0)
*local_row++ = stmt->row;
else
*remote_row++ = stmt->row;
req->approx_len += xrow_approx_len(stmt->row);
}
/*
* There is no a check for all-local rows, because a local
* space can't be synchronous. So if there is at least one
* synchronous space, the transaction is not local.
*/
if (!txn_has_flag(txn, TXN_FORCE_ASYNC)) {
if (is_sync) {
txn_set_flag(txn, TXN_WAIT_SYNC);
txn_set_flag(txn, TXN_WAIT_ACK);
} else if (!txn_limbo_is_empty(&txn_limbo)) {
/*
* There some sync entries on the
* fly thus wait for their completion
* even if this particular transaction
* doesn't touch sync space (each sync txn
* should be considered as a barrier).
*/
txn_set_flag(txn, TXN_WAIT_SYNC);
}
}
assert(remote_row == req->rows + txn->n_applier_rows);
assert(local_row == remote_row + txn->n_new_rows);
/*
* Append a dummy NOP statement to preserve replication tx
* boundaries when the last tx row is a local one, and the
* transaction has at least one global row.
*/
if (txn->n_local_rows > 0 &&
(txn->n_local_rows != txn->n_new_rows || txn->n_applier_rows > 0) &&
(*(local_row - 1))->group_id == GROUP_LOCAL) {
size_t size;
*local_row = region_alloc_object(&txn->region,
typeof(**local_row), &size);
if (*local_row == NULL) {
diag_set(OutOfMemory, size, "region_alloc_object",
"row");
return NULL;
}
memset(*local_row, 0, sizeof(**local_row));
(*local_row)->type = IPROTO_NOP;
(*local_row)->group_id = GROUP_DEFAULT;
} else {
--req->n_rows;
}
return req;
}
/*
* Prepare a transaction using engines.
*/
static int
txn_prepare(struct txn *txn)
{
if (txn_has_flag(txn, TXN_IS_ABORTED_BY_YIELD)) {
assert(!txn_has_flag(txn, TXN_CAN_YIELD));
diag_set(ClientError, ER_TRANSACTION_YIELD);
diag_log();
return -1;
}
/*
* If transaction has been started in SQL, deferred
* foreign key constraints must not be violated.
* If not so, just rollback transaction.
*/
if (txn->fk_deferred_count != 0) {
diag_set(ClientError, ER_FOREIGN_KEY_CONSTRAINT);
return -1;
}
/*
* Perform transaction conflict resolution. Engine == NULL when
* we have a bunch of IPROTO_NOP statements.
*/
if (txn->engine != NULL) {
if (engine_prepare(txn->engine, txn) != 0)
return -1;
}
trigger_clear(&txn->fiber_on_stop);
if (!txn_has_flag(txn, TXN_CAN_YIELD))
trigger_clear(&txn->fiber_on_yield);
txn->start_tm = ev_monotonic_now(loop());
return 0;
}
/**
* Complete transaction early if it is barely nop.
*/
static bool
txn_commit_nop(struct txn *txn)
{
if (txn->n_new_rows + txn->n_applier_rows == 0) {
txn->signature = TXN_SIGNATURE_NOP;
txn_complete(txn);
fiber_set_txn(fiber(), NULL);
return true;
}
return false;
}
/*
* A trigger called on tx rollback due to a failed WAL write,
* when tx is waiting for confirmation.
*/
static int
txn_limbo_on_rollback(struct trigger *trig, void *event)
{
(void) event;
struct txn *txn = (struct txn *) event;
/* Check whether limbo has performed the cleanup. */
if (txn->signature != TXN_SIGNATURE_ROLLBACK)
return 0;
struct txn_limbo_entry *entry = (struct txn_limbo_entry *) trig->data;
txn_limbo_abort(&txn_limbo, entry);
return 0;
}
int
txn_commit_async(struct txn *txn)
{
struct journal_entry *req;
ERROR_INJECT(ERRINJ_TXN_COMMIT_ASYNC, {
diag_set(ClientError, ER_INJECTION,
"txn commit async injection");
/*
* Log it for the testing sake: we grep
* output to mark this event.
*/
diag_log();
txn_rollback(txn);
return -1;
});
if (txn_prepare(txn) != 0) {
txn_rollback(txn);
return -1;
}
if (txn_commit_nop(txn))
return 0;
req = txn_journal_entry_new(txn);
if (req == NULL) {
txn_rollback(txn);
return -1;
}
bool is_sync = txn_has_flag(txn, TXN_WAIT_SYNC);
struct txn_limbo_entry *limbo_entry;
if (is_sync) {
/*
* We'll need this trigger for sync transactions later,
* but allocation failure is inappropriate after the entry
* is sent to journal, so allocate early.
*/
size_t size;
struct trigger *trig =
region_alloc_object(&txn->region, typeof(*trig), &size);
if (trig == NULL) {
txn_rollback(txn);
diag_set(OutOfMemory, size, "region_alloc_object",
"trig");
return -1;
}
/* See txn_commit(). */
uint32_t origin_id = req->rows[0]->replica_id;
limbo_entry = txn_limbo_append(&txn_limbo, origin_id, txn);
if (limbo_entry == NULL) {
txn_rollback(txn);
return -1;
}
if (txn_has_flag(txn, TXN_WAIT_ACK)) {
int64_t lsn = req->rows[txn->n_applier_rows - 1]->lsn;
/*
* Can't tell whether it is local or not -
* async commit is used both by applier
* and during recovery. Use general LSN
* assignment to let the limbo rule this
* out.
*/
txn_limbo_assign_lsn(&txn_limbo, limbo_entry, lsn);
}
/*
* Set a trigger to abort waiting for confirm on
* WAL write failure.
*/
trigger_create(trig, txn_limbo_on_rollback,
limbo_entry, NULL);
txn_on_rollback(txn, trig);
}
fiber_set_txn(fiber(), NULL);
if (journal_write_async(req) != 0) {
fiber_set_txn(fiber(), txn);
txn_rollback(txn);
diag_set(ClientError, ER_WAL_IO);
diag_log();
return -1;
}
return 0;
}
int
txn_commit(struct txn *txn)
{
struct journal_entry *req;
struct txn_limbo_entry *limbo_entry;
txn->fiber = fiber();
if (txn_prepare(txn) != 0) {
txn_rollback(txn);
txn_free(txn);
return -1;
}
if (txn_commit_nop(txn)) {
txn_free(txn);
return 0;
}
req = txn_journal_entry_new(txn);
if (req == NULL) {
txn_rollback(txn);
txn_free(txn);
return -1;
}
bool is_sync = txn_has_flag(txn, TXN_WAIT_SYNC);
if (is_sync) {
/*
* Remote rows, if any, come before local rows, so
* check for originating instance id here.
*/
uint32_t origin_id = req->rows[0]->replica_id;
/*
* Append now. Before even WAL write is done.
* After WAL write nothing should fail, even OOM
* wouldn't be acceptable.
*/
limbo_entry = txn_limbo_append(&txn_limbo, origin_id, txn);
if (limbo_entry == NULL) {
txn_rollback(txn);
txn_free(txn);
return -1;
}
}
fiber_set_txn(fiber(), NULL);
if (journal_write(req) != 0) {
if (is_sync)
txn_limbo_abort(&txn_limbo, limbo_entry);
fiber_set_txn(fiber(), txn);
txn_rollback(txn);
txn_free(txn);
diag_set(ClientError, ER_WAL_IO);
diag_log();
return -1;
}
if (is_sync) {
if (txn_has_flag(txn, TXN_WAIT_ACK)) {
int64_t lsn = req->rows[req->n_rows - 1]->lsn;
/*
* Use local LSN assignment. Because
* blocking commit is used by local
* transactions only.
*/
txn_limbo_assign_local_lsn(&txn_limbo, limbo_entry,
lsn);
/* Local WAL write is a first 'ACK'. */
txn_limbo_ack(&txn_limbo, txn_limbo.instance_id, lsn);
}
if (txn_limbo_wait_complete(&txn_limbo, limbo_entry) < 0) {
txn_free(txn);
return -1;
}
}
if (!txn_has_flag(txn, TXN_IS_DONE)) {
txn->signature = req->res;
txn_complete(txn);
}
int res = txn->signature >= 0 ? 0 : -1;
if (res != 0) {
diag_set(ClientError, ER_WAL_IO);
diag_log();
}
/* Synchronous transactions are freed by the calling fiber. */
txn_free(txn);
return res;
}
void
txn_rollback_stmt(struct txn *txn)
{
if (txn == NULL || txn->in_sub_stmt == 0)
return;
txn->in_sub_stmt--;
txn_rollback_to_svp(txn, txn->sub_stmt_begin[txn->in_sub_stmt]);
}
void
txn_rollback(struct txn *txn)
{
assert(txn == in_txn());
trigger_clear(&txn->fiber_on_stop);
if (!txn_has_flag(txn, TXN_CAN_YIELD))
trigger_clear(&txn->fiber_on_yield);
txn->signature = TXN_SIGNATURE_ROLLBACK;
txn_complete(txn);
fiber_set_txn(fiber(), NULL);
}
int
txn_check_singlestatement(struct txn *txn, const char *where)
{
if (!txn_is_first_statement(txn)) {
diag_set(ClientError, ER_MULTISTATEMENT_TRANSACTION, where);
return -1;
}
return 0;
}
void
txn_can_yield(struct txn *txn, bool set)
{
assert(txn == in_txn());
if (set) {
assert(!txn_has_flag(txn, TXN_CAN_YIELD));
txn_set_flag(txn, TXN_CAN_YIELD);
trigger_clear(&txn->fiber_on_yield);
} else {
assert(txn_has_flag(txn, TXN_CAN_YIELD));
txn_clear_flag(txn, TXN_CAN_YIELD);
trigger_create(&txn->fiber_on_yield, txn_on_yield, NULL, NULL);
trigger_add(&fiber()->on_yield, &txn->fiber_on_yield);
}
}
int64_t
box_txn_id(void)
{
struct txn *txn = in_txn();
if (txn != NULL)
return txn->id;
else
return -1;
}
bool
box_txn(void)
{
return in_txn() != NULL;
}
int
box_txn_begin(void)
{
if (in_txn()) {
diag_set(ClientError, ER_ACTIVE_TRANSACTION);
return -1;
}
if (txn_begin() == NULL)
return -1;
return 0;
}
int
box_txn_commit(void)
{
struct txn *txn = in_txn();
/**
* COMMIT is like BEGIN or ROLLBACK
* a "transaction-initiating statement".
* Do nothing if transaction is not started,
* it's the same as BEGIN + COMMIT.
*/
if (! txn)
return 0;
if (txn->in_sub_stmt) {
diag_set(ClientError, ER_COMMIT_IN_SUB_STMT);
return -1;
}
int rc = txn_commit(txn);
fiber_gc();
return rc;
}
int
box_txn_rollback(void)
{
struct txn *txn = in_txn();
if (txn == NULL)
return 0;
if (txn && txn->in_sub_stmt) {
diag_set(ClientError, ER_ROLLBACK_IN_SUB_STMT);
return -1;
}
txn_rollback(txn); /* doesn't throw */
fiber_gc();
return 0;
}
void *
box_txn_alloc(size_t size)
{
struct txn *txn = in_txn();
if (txn == NULL) {
/* There are no transaction yet - return an error. */
diag_set(ClientError, ER_NO_TRANSACTION);
return NULL;
}
union natural_align {
void *p;
double lf;
long l;
};
return region_aligned_alloc(&txn->region, size,
alignof(union natural_align));
}
struct txn_savepoint *
txn_savepoint_new(struct txn *txn, const char *name)
{
assert(txn == in_txn());
int name_len = name != NULL ? strlen(name) : 0;
struct txn_savepoint *svp;
static_assert(sizeof(svp->name) == 1,
"name member already has 1 byte for 0 termination");
size_t size = sizeof(*svp) + name_len;
svp = (struct txn_savepoint *)region_aligned_alloc(&txn->region, size,
alignof(*svp));
if (svp == NULL) {
diag_set(OutOfMemory, size, "region_aligned_alloc", "svp");
return NULL;
}
svp->stmt = stailq_last(&txn->stmts);
svp->in_sub_stmt = txn->in_sub_stmt;
svp->fk_deferred_count = txn->fk_deferred_count;
if (name != NULL) {
/*
* If savepoint with given name already exists,
* erase it from the list. This has to be done
* in accordance with ANSI SQL compliance.
*/
struct txn_savepoint *old_svp =
txn_savepoint_by_name(txn, name);
if (old_svp != NULL)
rlist_del(&old_svp->link);
memcpy(svp->name, name, name_len + 1);
} else {
svp->name[0] = 0;
}
rlist_add_entry(&txn->savepoints, svp, link);
return svp;
}
struct txn_savepoint *
txn_savepoint_by_name(struct txn *txn, const char *name)
{
assert(txn == in_txn());
struct txn_savepoint *sv;
rlist_foreach_entry(sv, &txn->savepoints, link) {
if (strcmp(sv->name, name) == 0)
return sv;
}
return NULL;
}
box_txn_savepoint_t *
box_txn_savepoint(void)
{
struct txn *txn = in_txn();
if (txn == NULL) {
diag_set(ClientError, ER_NO_TRANSACTION);
return NULL;
}
return txn_savepoint_new(txn, NULL);
}
int
box_txn_rollback_to_savepoint(box_txn_savepoint_t *svp)
{
struct txn *txn = in_txn();
if (txn == NULL) {
diag_set(ClientError, ER_NO_TRANSACTION);
return -1;
}
struct txn_stmt *stmt = svp->stmt == NULL ? NULL :
stailq_entry(svp->stmt, struct txn_stmt, next);
if (stmt != NULL && stmt->space == NULL && stmt->row == NULL) {
/*
* The statement at which this savepoint was
* created has been rolled back.
*/
diag_set(ClientError, ER_NO_SUCH_SAVEPOINT);
return -1;
}
if (svp->in_sub_stmt != txn->in_sub_stmt) {
diag_set(ClientError, ER_NO_SUCH_SAVEPOINT);
return -1;
}
txn_rollback_to_svp(txn, svp->stmt);
/* Discard from list all newer savepoints. */
RLIST_HEAD(discard);
rlist_cut_before(&discard, &txn->savepoints, &svp->link);
txn->fk_deferred_count = svp->fk_deferred_count;
return 0;
}
void
txn_savepoint_release(struct txn_savepoint *svp)
{
struct txn *txn = in_txn();
assert(txn != NULL);
/* Make sure that savepoint hasn't been released yet. */
struct txn_stmt *stmt = svp->stmt == NULL ? NULL :
stailq_entry(svp->stmt, struct txn_stmt, next);
assert(stmt == NULL || (stmt->space != NULL && stmt->row != NULL));
(void) stmt;
/*
* Discard current savepoint alongside with all
* created after it savepoints.
*/
RLIST_HEAD(discard);
rlist_cut_before(&discard, &txn->savepoints, rlist_next(&svp->link));
}
static int
txn_on_stop(struct trigger *trigger, void *event)
{
(void) trigger;
(void) event;
txn_rollback(in_txn()); /* doesn't yield or fail */
fiber_gc();
return 0;
}
/**
* Memtx yield-in-transaction trigger callback.
*
* In case of a yield inside memtx multi-statement transaction
* we must, first of all, roll back the effects of the transaction
* so that concurrent transactions won't see dirty, uncommitted
* data.
*
* Second, we must abort the transaction, since it has been rolled
* back implicitly. The transaction can not be rolled back
* completely from within a yield trigger, since a yield trigger
* can't fail. Instead, we mark the transaction as aborted and
* raise an error on attempt to commit it.
*
* So much hassle to be user-friendly until we have a true
* interactive transaction support in memtx.
*/
static int
txn_on_yield(struct trigger *trigger, void *event)
{
(void) trigger;
(void) event;
struct txn *txn = in_txn();
assert(txn != NULL);
assert(!txn_has_flag(txn, TXN_CAN_YIELD));
txn_rollback_to_svp(txn, NULL);
txn_set_flag(txn, TXN_IS_ABORTED_BY_YIELD);
return 0;
}
|