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
|
/*
* Copyright (c) 2015, 2025, Oracle and/or its affiliates.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0,
* as published by the Free Software Foundation.
*
* This program is designed to work with certain software (including
* but not limited to OpenSSL) that is licensed under separate terms,
* as designated in a particular file or component or in included license
* documentation. The authors of MySQL hereby grant you an additional
* permission to link the program and your derivative works with the
* separately licensed software that they have either included with
* the program or referenced in the documentation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License, version 2.0, for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "plugin/x/client/xprotocol_impl.h"
#include <google/protobuf/io/zero_copy_stream_impl_lite.h>
#include <algorithm>
#include <cstdint>
#include <cstdlib>
#include <iostream>
#include <limits>
#include <string>
#include "errmsg.h" // NOLINT(build/include_subdir)
#include "my_config.h" // NOLINT(build/include_subdir)
#include "my_dbug.h" // NOLINT(build/include_subdir)
#include "my_io.h" // NOLINT(build/include_subdir)
#include "mysql_com.h" // NOLINT(build/include_subdir)
#include "sha2.h" // NOLINT(build/include_subdir)
#include "plugin/x/client/authentication/password_hasher.h"
#include "plugin/x/client/authentication/sha256_scramble_generator.h"
#include "plugin/x/client/mysqlxclient/xerror.h"
#include "plugin/x/client/mysqlxclient/xrow.h"
#include "plugin/x/client/stream/connection_output_stream.h"
#include "plugin/x/client/xpriority_list.h"
#include "plugin/x/generated/mysqlx_version.h"
namespace xcl {
using StringOutputStream = google::protobuf::io::StringOutputStream;
using CodedOutputStream = google::protobuf::io::CodedOutputStream;
using ZeroCopyOutputStream = google::protobuf::io::ZeroCopyOutputStream;
using ZeroCopyInputStream = google::protobuf::io::ZeroCopyInputStream;
const char *const ERR_MSG_INVALID_AUTH_METHOD =
"Invalid authentication method ";
const char *const ERR_MSG_UNEXPECTED_MESSAGE =
"Unexpected response received from server, msg-id:";
const char *const ERR_MSG_MESSAGE_NOT_INITIALIZED =
"Message is not properly initialized: ";
const char *const ER_TEXT_HASHING_FUNCTION_FAILED =
"Invalid result while calculating hash";
const char *const ER_TEXT_DATA_TOO_LARGE =
"Messages payload size exceeded the the value that message header can hold";
const char *const ER_TEXT_RECEIVE_HANDLER_FAILED =
"Aborted by internal callback at received message processing";
const char *const ER_TEXT_NOTICE_HANDLER_FAILED =
"Aborted by internal callback at send message processing";
const char *const ER_TEXT_RECEIVE_BUFFER_TO_SMALL = "Receive buffer to small";
const char *const ER_TEXT_COMPRESSION_NOT_CONFIGURED =
"Compression is disabled or required compression style was not selected";
namespace details {
/**
Function checks the stream for data available to read.
This function is useful in cases when a stream consists from
multiple sub-streams which may implement a data-cache.
To do i properly it would need to check number of bytes "until
the limit" on each layer, still we do not have this information
and it would be complicated to obtain it.
Instead, try to read the data which should give the same effect.
Precondition: Top level stream must have a data limiter set.
@param stream Protobuf zero output stream
@retval true stream has more data
*/
bool has_data(ZeroCopyInputStream *stream) {
const void *data;
int size;
if (stream->Next(&data, &size)) {
stream->BackUp(size);
return true;
}
return false;
}
XError make_xerror(const Mysqlx::Error &error) {
bool is_fatal = error.severity() == Mysqlx::Error::FATAL;
return XError{static_cast<int>(error.code()), error.msg(), is_fatal,
error.sql_state()};
}
bool is_timeout_error(const XError &error) {
return (CR_X_READ_TIMEOUT == error.error());
}
bool is_compressed(const XProtocol::Header_message_type_id id) {
switch (id) {
case Mysqlx::ServerMessages::COMPRESSION:
return true;
default:
return false;
}
}
class Query_sequencer : public Query_instances {
public:
Instance_id instances_fetch_begin() override { return m_last_instance++; }
void instances_fetch_end() override { ++m_current_instance; }
bool is_instance_active(const Instance_id id) override {
return id == m_current_instance;
}
private:
Instance_id m_current_instance{0};
Instance_id m_last_instance{0};
};
inline size_t message_byte_size(const XProtocol::Message &msg) {
#if (defined(GOOGLE_PROTOBUF_VERSION) && GOOGLE_PROTOBUF_VERSION > 3000000)
return msg.ByteSizeLong();
#else
return msg.ByteSize();
#endif
}
} // namespace details
Protocol_impl::Protocol_impl(std::shared_ptr<Context> context,
Protocol_factory *factory)
: m_factory(factory), m_context(context) {
assert(nullptr != factory);
m_connection = factory->create_connection(context);
m_query_instances.reset(new details::Query_sequencer);
m_connection_input_stream.reset(
new Connection_input_stream(m_connection.get()));
m_compression.reset(new Compression_impl());
m_static_recv_buffer.resize(VIO_READ_BUFFER_SIZE);
}
XError Protocol_impl::execute_set_capability(
const Mysqlx::Connection::CapabilitiesSet &capabilities_set) {
DBUG_TRACE;
auto result = send(capabilities_set);
if (result) return result;
return recv_ok();
}
XError Protocol_impl::execute_authenticate(const std::string &user,
const std::string &pass,
const std::string &schema,
const std::string &method) {
DBUG_TRACE;
XError error;
if (method == "PLAIN")
error = authenticate_plain(user, pass, schema);
else if (method == "MYSQL41")
error = authenticate_mysql41(user, pass, schema);
else if (method == "SHA256_MEMORY")
error = authenticate_sha256_memory(user, pass, schema);
else
return XError(CR_X_INVALID_AUTH_METHOD,
ERR_MSG_INVALID_AUTH_METHOD + method);
return error;
}
void Protocol_impl::use_compression(const Compression_algorithm algo) {
DBUG_TRACE;
m_compression->reinitialize(algo);
}
void Protocol_impl::use_compression(const Compression_algorithm algo,
const int32_t level) {
DBUG_TRACE;
m_compression->reinitialize(algo, level);
}
std::unique_ptr<XProtocol::Capabilities>
Protocol_impl::execute_fetch_capabilities(XError *out_error) {
DBUG_TRACE;
*out_error = send(Mysqlx::Connection::CapabilitiesGet());
if (*out_error) return {};
std::unique_ptr<Message> message(
recv_id(Mysqlx::ServerMessages::CONN_CAPABILITIES, out_error));
if (*out_error) return {};
return std::unique_ptr<XProtocol::Capabilities>{
static_cast<Mysqlx::Connection::Capabilities *>(message.release())};
}
XError Protocol_impl::execute_close() {
XError error = send(Mysqlx::Connection::Close());
if (error) return error;
error = recv_ok();
return error;
}
std::unique_ptr<XQuery_result> Protocol_impl::recv_resultset() {
DBUG_TRACE;
return m_factory->create_result(shared_from_this(), m_query_instances.get(),
m_context);
}
std::unique_ptr<XQuery_result> Protocol_impl::recv_resultset(
XError *out_error) {
DBUG_TRACE;
if (m_context->m_global_error) {
*out_error = m_context->m_global_error;
return {};
}
auto result = recv_resultset();
result->get_metadata(out_error);
return result;
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_with_resultset(
const Client_message_type_id mid, const Message &msg, XError *out_error) {
DBUG_TRACE;
*out_error = send(mid, msg);
if (*out_error) return {};
return recv_resultset(out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_stmt(
const Mysqlx::Sql::StmtExecute &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_find(
const Mysqlx::Crud::Find &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_update(
const Mysqlx::Crud::Update &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_insert(
const Mysqlx::Crud::Insert &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_delete(
const Mysqlx::Crud::Delete &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_prep_stmt(
const Mysqlx::Prepare::Execute &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_cursor_open(
const Mysqlx::Cursor::Open &m, XError *out_error) {
DBUG_TRACE;
return execute(m, out_error);
}
std::unique_ptr<XQuery_result> Protocol_impl::execute_cursor_fetch(
const Mysqlx::Cursor::Fetch &m,
std::unique_ptr<XQuery_result> cursor_open_result, XError *out_error) {
DBUG_TRACE;
*out_error = send(m);
if (*out_error) return {};
auto metadata = cursor_open_result->get_metadata();
auto result = recv_resultset();
if (result) result->set_metadata(metadata);
return result;
}
XError Protocol_impl::authenticate_mysql41(const std::string &user,
const std::string &pass,
const std::string &db) {
class Mysql41_continue_handler {
public:
explicit Mysql41_continue_handler(Protocol_impl *protocol)
: m_protocol(protocol) {}
std::string get_name() const { return "MYSQL41"; }
XError operator()(
const std::string &user, const std::string &pass, const std::string &db,
const Mysqlx::Session::AuthenticateContinue &auth_continue) {
std::string password_hash;
if (pass.length()) {
password_hash =
password_hasher::scramble(auth_continue.auth_data(), pass);
password_hash = password_hasher::get_password_from_salt(password_hash);
if (password_hash.empty()) {
return XError{CR_UNKNOWN_ERROR, ER_TEXT_HASHING_FUNCTION_FAILED};
}
}
std::string data;
data.append(db).push_back('\0'); // authz
data.append(user).push_back('\0'); // authc
data.append(password_hash); // pass
Mysqlx::Session::AuthenticateContinue auth_continue_response;
auth_continue_response.set_auth_data(data);
return m_protocol->send(auth_continue_response);
}
private:
Protocol_impl *m_protocol;
};
return authenticate_challenge_response<Mysql41_continue_handler>(user, pass,
db);
}
XError Protocol_impl::authenticate_sha256_memory(const std::string &user,
const std::string &pass,
const std::string &db) {
class Sha256_memory_continue_handler {
public:
explicit Sha256_memory_continue_handler(Protocol_impl *protocol)
: m_protocol(protocol) {}
std::string get_name() const { return "SHA256_MEMORY"; }
XError operator()(
const std::string &user, const std::string &pass, const std::string &db,
const Mysqlx::Session::AuthenticateContinue &auth_continue) {
Mysqlx::Session::AuthenticateContinue auth_continue_response;
auto nonce = auth_continue.auth_data();
char sha256_scramble[SHA256_DIGEST_LENGTH] = {0};
if (xcl::generate_sha256_scramble(
reinterpret_cast<unsigned char *>(sha256_scramble),
SHA256_DIGEST_LENGTH, pass.c_str(), pass.length(), nonce.c_str(),
nonce.length()))
return XError{CR_UNKNOWN_ERROR, ER_TEXT_HASHING_FUNCTION_FAILED};
std::string scramble_hex(2 * SHA256_DIGEST_LENGTH + 1, '\0');
password_hasher::octet2hex(&scramble_hex[0], &sha256_scramble[0],
SHA256_DIGEST_LENGTH);
scramble_hex
.pop_back(); // Skip the additional \0 sign added by octet2hex
std::string data;
data.append(db).push_back('\0');
data.append(user).push_back('\0');
data.append(scramble_hex);
auth_continue_response.set_auth_data(data);
return m_protocol->send(auth_continue_response);
}
private:
Protocol_impl *m_protocol;
};
return authenticate_challenge_response<Sha256_memory_continue_handler>(
user, pass, db);
}
XError Protocol_impl::authenticate_plain(const std::string &user,
const std::string &pass,
const std::string &db) {
XError error;
{
Mysqlx::Session::AuthenticateStart auth;
auth.set_mech_name("PLAIN");
std::string data;
data.append(db).push_back('\0'); // authz
data.append(user).push_back('\0'); // authc
data.append(pass); // pass
auth.set_auth_data(data);
error = send(Mysqlx::ClientMessages::SESS_AUTHENTICATE_START, auth);
}
if (error) return error;
return recv_id(Mysqlx::ServerMessages::SESS_AUTHENTICATE_OK);
}
XError Protocol_impl::send(const Header_message_type_id mid,
const uint8_t *buffer,
const std::size_t buffer_length) {
DBUG_TRACE;
if (m_context->m_global_error) return m_context->m_global_error;
union {
uint8_t header[5]; // Must be properly aligned
longlong dummy;
};
/*
Use dummy, otherwise g++ 4.4 reports: unused variable 'dummy'
[[maybe_unused]] did not work, so we must use it.
*/
dummy = 0;
uint32_t *buf_ptr = reinterpret_cast<uint32_t *>(header);
*buf_ptr = static_cast<uint32>(buffer_length + 1);
#ifdef WORDS_BIGENDIAN
std::swap(header[0], header[3]);
std::swap(header[1], header[2]);
#endif
header[4] = mid;
if (buffer_length + 1 > std::numeric_limits<uint32>::max())
return XError{CR_MALFORMED_PACKET, ER_TEXT_DATA_TOO_LARGE};
XError error = m_connection->write(header, 5);
if (!error) {
if (0 != buffer_length) error = m_connection->write(buffer, buffer_length);
}
return error;
}
bool Protocol_impl::send_impl(const Client_message_type_id mid,
const Message &msg,
ZeroCopyOutputStream *input_stream) {
CodedOutputStream cos(input_stream);
const Header_message_type_id header_mesage_id = mid;
const int header_message_type_size = sizeof(Header_message_type_id);
const std::size_t header_whole_message_size =
details::message_byte_size(msg) + header_message_type_size;
cos.WriteLittleEndian32(header_whole_message_size);
cos.WriteRaw(&header_mesage_id, header_message_type_size);
dispatch_send_message(mid, msg);
return msg.SerializeToCodedStream(&cos);
}
XError Protocol_impl::send(const Client_message_type_id mid,
const Message &msg) {
DBUG_TRACE;
if (m_context->m_global_error) return m_context->m_global_error;
Connection_output_stream output_stream(m_connection.get());
if (!send_impl(mid, msg, &output_stream)) return output_stream.getLastError();
// Ensure that we flush all data before getting last error
output_stream.Flush();
return output_stream.getLastError();
}
XProtocol::Handler_id Protocol_impl::add_notice_handler(
Notice_handler handler, const Handler_position position,
const Handler_priority priority) {
DBUG_TRACE;
const auto id = m_last_handler_id++;
const auto prio = static_cast<int>(priority);
switch (position) {
case Handler_position::Begin:
m_notice_handlers.push_front({id, prio, handler});
break;
case Handler_position::End:
m_notice_handlers.push_back({id, prio, handler});
break;
}
return id;
}
XProtocol::Handler_id Protocol_impl::add_received_message_handler(
Server_message_handler handler, const Handler_position position,
const Handler_priority priority) {
DBUG_TRACE;
const auto id = m_last_handler_id++;
const auto prio = static_cast<int>(priority);
switch (position) {
case Handler_position::Begin:
m_message_received_handlers.push_front({id, prio, handler});
break;
case Handler_position::End:
m_message_received_handlers.push_back({id, prio, handler});
break;
}
return id;
}
XProtocol::Handler_id Protocol_impl::add_send_message_handler(
Client_message_handler handler, const Handler_position position,
const Handler_priority priority) {
DBUG_TRACE;
const auto id = m_last_handler_id++;
const auto prio = static_cast<int>(priority);
switch (position) {
case Handler_position::Begin:
m_message_send_handlers.push_front({id, prio, handler});
break;
case Handler_position::End:
m_message_send_handlers.push_back({id, prio, handler});
break;
}
return id;
}
void Protocol_impl::remove_notice_handler(const Handler_id id) {
DBUG_TRACE;
const auto handler = std::find_if(
m_notice_handlers.begin(), m_notice_handlers.end(),
[id](const Handler_with_id<Notice_handler> &handler) -> bool {
return id == handler.m_id;
});
if (handler == m_notice_handlers.end()) return;
m_notice_handlers.erase(handler);
}
void Protocol_impl::remove_received_message_handler(const Handler_id id) {
DBUG_TRACE;
const auto handler = std::find_if(
m_message_received_handlers.begin(), m_message_received_handlers.end(),
[id](const Server_handler_with_id &handler) -> bool {
return id == handler.m_id;
});
if (handler == m_message_received_handlers.end()) return;
m_message_received_handlers.erase(handler);
}
void Protocol_impl::remove_send_message_handler(const Handler_id id) {
DBUG_TRACE;
const auto handler = std::find_if(
m_message_send_handlers.begin(), m_message_send_handlers.end(),
[id](const Client_handler_with_id &handler) -> bool {
return id == handler.m_id;
});
if (handler == m_message_send_handlers.end()) return;
m_message_send_handlers.erase(handler);
}
XError Protocol_impl::dispatch_received(const Server_message_type_id id,
const Message &message,
bool *out_ignore) {
const Handler_result result = dispatch_received_message(id, message);
if (Handler_result::Consumed == result) {
*out_ignore = true;
return {};
}
if (Handler_result::Error == result) {
return XError{CR_X_INTERNAL_ABORTED, ER_TEXT_RECEIVE_HANDLER_FAILED};
}
if (Mysqlx::ServerMessages::NOTICE == id) {
auto frame = static_cast<const Mysqlx::Notice::Frame *>(&message);
const Handler_result notice_ext_handled = dispatch_received_notice(*frame);
if (Handler_result::Consumed == notice_ext_handled) {
*out_ignore = true;
return {};
}
if (Handler_result::Error == notice_ext_handled) {
return XError{CR_X_INTERNAL_ABORTED, ER_TEXT_NOTICE_HANDLER_FAILED};
}
}
return {};
}
Handler_result Protocol_impl::dispatch_received_notice(
const Mysqlx::Notice::Frame &frame) {
DBUG_TRACE;
for (const auto &holder : m_notice_handlers) {
const Handler_result result = holder.m_handler(
this, frame.scope() == Mysqlx::Notice::Frame_Scope_GLOBAL,
static_cast<Mysqlx::Notice::Frame::Type>(frame.type()),
frame.has_payload() ? frame.payload().c_str() : nullptr,
frame.has_payload() ? static_cast<uint32>(frame.payload().length())
: 0);
if (Handler_result::Continue != result) return result;
}
return Handler_result::Continue;
}
Handler_result Protocol_impl::dispatch_received_message(
const Server_message_type_id id, const Message &message) {
DBUG_TRACE;
for (const auto &holder : m_message_received_handlers) {
const Handler_result result = holder.m_handler(this, id, message);
if (Handler_result::Continue != result) return result;
}
return Handler_result::Continue;
}
void Protocol_impl::dispatch_send_message(const Client_message_type_id id,
const Message &message) {
DBUG_TRACE;
for (const auto &holder : m_message_send_handlers) {
holder.m_handler(this, id, message);
}
}
XError Protocol_impl::recv_ok() {
DBUG_TRACE;
return recv_id(Mysqlx::ServerMessages::OK);
}
XError Protocol_impl::recv_header(Header_message_type_id *out_mid,
uint32_t *out_buffer_size) {
DBUG_TRACE;
XError error;
*out_mid = 0;
m_connection_input_stream->AllowedRead(5);
google::protobuf::io::CodedInputStream cis(m_connection_input_stream.get());
/* Clearing timeout error make sense only in case when
the client is waiting for X Client header.
Thus in this case client can retry later on.
*/
if (!cis.ReadLittleEndian32(out_buffer_size)) {
const auto error = m_connection_input_stream->GetIOError();
if (details::is_timeout_error(error))
m_connection_input_stream->ClearIOError();
return error;
}
if (!cis.ReadRaw(out_mid, 1)) {
const auto error = m_connection_input_stream->GetIOError();
if (details::is_timeout_error(error))
m_connection_input_stream->ClearIOError();
return error;
}
--(*out_buffer_size);
return {};
}
XError Protocol_impl::recv(Header_message_type_id *out_mid, uint8_t **buffer,
std::size_t *buffer_size) {
DBUG_TRACE;
std::unique_ptr<uint8_t[]> payload_buffer;
uint32_t msglen = 0;
XError error = recv_header(out_mid, &msglen);
if (error) {
return error;
}
if (*buffer && *buffer_size < msglen) {
return XError{CR_X_RECEIVE_BUFFER_TO_SMALL, ER_TEXT_RECEIVE_BUFFER_TO_SMALL,
true};
}
if (0 < msglen) {
uint8_t *payload = *buffer;
if (nullptr == payload) {
payload_buffer.reset(new uint8_t[msglen]);
payload = payload_buffer.get();
}
m_connection_input_stream->AllowedRead(msglen);
google::protobuf::io::CodedInputStream cis(m_connection_input_stream.get());
if (!cis.ReadRaw(payload, msglen))
return m_connection_input_stream->GetIOError();
}
if (payload_buffer) {
*buffer = payload_buffer.release();
}
*buffer_size = msglen;
return {};
}
void Protocol_impl::skip_not_parsed(
google::protobuf::io::CodedInputStream *input_stream, XError *out_error) {
DBUG_TRACE;
// Check if we parsed whole
const auto until_limit = input_stream->BytesUntilLimit();
DBUG_LOG("debug", "Skip data until until_limit: " << until_limit);
if (until_limit > 0) {
input_stream->Skip(until_limit);
}
/* overwrite the error in case when skip fails */
auto error = m_connection_input_stream->GetIOError();
if (error) {
DBUG_PRINT("info", ("Overwrite the error to IOError"));
*out_error = error;
}
}
std::unique_ptr<XProtocol::Message> Protocol_impl::deserialize_message(
const Header_message_type_id mid,
google::protobuf::io::CodedInputStream *input_stream, XError *out_error) {
DBUG_TRACE;
std::unique_ptr<Message> ret_val = alloc_message(mid);
if (!ret_val) {
DBUG_PRINT("info", ("Invalid message type received"));
*out_error =
XError(CR_MALFORMED_PACKET, ERR_MSG_UNEXPECTED_MESSAGE +
std::to_string(static_cast<int>(mid)));
// Only header of the messages was reed
// to ensure continuity of data `payload` needs to be skipped
skip_not_parsed(input_stream, out_error);
return {};
}
DBUG_LOG("debug", "Deserialize message: " << ret_val->GetTypeName());
if (!ret_val->ParseFromCodedStream(input_stream)) {
std::string error_message(ERR_MSG_MESSAGE_NOT_INITIALIZED);
error_message += "Name:" + ret_val->GetTypeName() + ", ";
error_message += ret_val->InitializationErrorString();
*out_error = XError(CR_MALFORMED_PACKET, error_message);
// Check if whole frame was parsed, if not then
// skip the rest of the data
skip_not_parsed(input_stream, out_error);
return {};
}
return ret_val;
}
std::unique_ptr<XProtocol::Message> Protocol_impl::deserialize_received_message(
const Header_message_type_id mid, const uint8_t *payload,
const std::size_t payload_size, XError *out_error) {
DBUG_TRACE;
std::unique_ptr<Message> ret_val = alloc_message(mid);
if (!ret_val) {
*out_error =
XError(CR_MALFORMED_PACKET, ERR_MSG_UNEXPECTED_MESSAGE +
std::to_string(static_cast<int>(mid)));
return {};
}
// Parses the received message
ret_val->ParseFromArray(reinterpret_cast<const char *>(payload),
static_cast<int>(payload_size));
if (!ret_val->IsInitialized()) {
std::string err(ERR_MSG_MESSAGE_NOT_INITIALIZED);
err += "Name:" + ret_val->GetTypeName() + ", ";
err += ret_val->InitializationErrorString();
*out_error = XError(CR_MALFORMED_PACKET, err);
return {};
}
return ret_val;
}
std::unique_ptr<XProtocol::Message> Protocol_impl::recv_single_message(
Server_message_type_id *out_mid, XError *out_error) {
DBUG_TRACE;
if (m_context->m_global_error) {
*out_error = m_context->m_global_error;
return {};
}
*out_error = XError();
while (true) {
bool out_ignore = false;
std::unique_ptr<Message> msg(recv_message_with_header(out_mid, out_error));
if (*out_error) return {};
// In case when both out_error and msg are not set,
// this means that dispatching of compressed message skipped it
// lets retry
if (msg) {
*out_error = dispatch_received(*out_mid, *msg.get(), &out_ignore);
if (*out_error) return {};
if (out_ignore) continue;
return msg;
}
}
}
XError Protocol_impl::send_compressed_frame(
const Client_message_type_id message_id, const Message &message) {
DBUG_TRACE;
return send_compressed_multiple_frames({{message_id, &message}});
}
XError Protocol_impl::send_compressed_multiple_frames(
const std::vector<std::pair<Client_message_type_id, const Message *>>
&messages) {
DBUG_TRACE;
std::string compressed_messages;
size_t total_size = 0;
{
for (const auto &message : messages)
total_size += details::message_byte_size(*message.second) + 5;
auto algo = m_compression->compression_algorithm();
if (algo) algo->set_pledged_source_size(total_size);
StringOutputStream out_stream(&compressed_messages);
auto compressed_out_stream = m_compression->uplink(&out_stream);
if (!compressed_out_stream) {
return XError{CR_X_COMPRESSION_NOT_CONFIGURED,
ER_TEXT_COMPRESSION_NOT_CONFIGURED};
}
CodedOutputStream cos(compressed_out_stream.get());
for (const auto &message : messages) {
const auto msg_id = message.first;
const auto header_msg_id = static_cast<Header_message_type_id>(msg_id);
const auto msg = message.second;
dispatch_send_message(msg_id, *msg);
cos.WriteLittleEndian32(details::message_byte_size(*msg) + 1);
cos.WriteRaw(&header_msg_id, 1);
msg->SerializeToCodedStream(&cos);
}
}
Mysqlx::Connection::Compression compression;
compression.set_payload(compressed_messages);
DBUG_DUMP("compressed-payload", (const uint8_t *)compressed_messages.c_str(),
compressed_messages.length());
compression.set_uncompressed_size(total_size);
return send(Mysqlx::ClientMessages::COMPRESSION, compression);
}
std::unique_ptr<Protocol_impl::Message> Protocol_impl::alloc_message(
const Header_message_type_id mid) {
DBUG_TRACE;
std::unique_ptr<Message> ret_val;
switch (static_cast<Mysqlx::ServerMessages::Type>(mid)) {
case Mysqlx::ServerMessages::OK:
ret_val.reset(new Mysqlx::Ok());
break;
case Mysqlx::ServerMessages::ERROR:
ret_val.reset(new Mysqlx::Error());
break;
case Mysqlx::ServerMessages::NOTICE:
ret_val.reset(new Mysqlx::Notice::Frame());
break;
case Mysqlx::ServerMessages::CONN_CAPABILITIES:
ret_val.reset(new Mysqlx::Connection::Capabilities());
break;
case Mysqlx::ServerMessages::SESS_AUTHENTICATE_CONTINUE:
ret_val.reset(new Mysqlx::Session::AuthenticateContinue());
break;
case Mysqlx::ServerMessages::SESS_AUTHENTICATE_OK:
ret_val.reset(new Mysqlx::Session::AuthenticateOk());
break;
case Mysqlx::ServerMessages::RESULTSET_COLUMN_META_DATA:
ret_val.reset(new Mysqlx::Resultset::ColumnMetaData());
break;
case Mysqlx::ServerMessages::RESULTSET_ROW:
ret_val.reset(new Mysqlx::Resultset::Row());
break;
case Mysqlx::ServerMessages::RESULTSET_FETCH_SUSPENDED:
ret_val.reset(new Mysqlx::Resultset::FetchSuspended());
break;
case Mysqlx::ServerMessages::RESULTSET_FETCH_DONE:
ret_val.reset(new Mysqlx::Resultset::FetchDone());
break;
case Mysqlx::ServerMessages::RESULTSET_FETCH_DONE_MORE_RESULTSETS:
ret_val.reset(new Mysqlx::Resultset::FetchDoneMoreResultsets());
break;
case Mysqlx::ServerMessages::SQL_STMT_EXECUTE_OK:
ret_val.reset(new Mysqlx::Sql::StmtExecuteOk());
break;
case Mysqlx::ServerMessages::RESULTSET_FETCH_DONE_MORE_OUT_PARAMS:
ret_val.reset(new Mysqlx::Resultset::FetchDoneMoreOutParams());
break;
case Mysqlx::ServerMessages::COMPRESSION:
return nullptr;
}
return ret_val;
}
XError Protocol_impl::recv_id(
const XProtocol::Server_message_type_id expected_id) {
DBUG_TRACE;
XError out_error;
Server_message_type_id out_mid;
std::unique_ptr<Message> msg(recv_single_message(&out_mid, &out_error));
if (out_error) return out_error;
if (Mysqlx::ServerMessages::ERROR == out_mid) {
const ::Mysqlx::Error &error = *static_cast<Mysqlx::Error *>(msg.get());
return details::make_xerror(error);
}
if (expected_id != out_mid) {
return XError{CR_MALFORMED_PACKET,
"Unknown message received from server " +
std::to_string(static_cast<int>(out_mid))};
}
return {};
}
XProtocol::Message *Protocol_impl::recv_id(
const XProtocol::Server_message_type_id expected_id, XError *out_error) {
DBUG_TRACE;
Server_message_type_id out_mid;
std::unique_ptr<Message> msg(recv_single_message(&out_mid, out_error));
if (*out_error) return nullptr;
if (Mysqlx::ServerMessages::ERROR == out_mid) {
const ::Mysqlx::Error &error = *static_cast<Mysqlx::Error *>(msg.get());
*out_error = details::make_xerror(error);
return nullptr;
}
if (expected_id != out_mid) {
*out_error = XError{CR_MALFORMED_PACKET,
"Unknown message received from server " +
std::to_string(static_cast<int>(out_mid))};
return nullptr;
}
return msg.release();
}
XProtocol::Message *Protocol_impl::read_compressed(Server_message_type_id *mid,
XError *out_error) {
DBUG_TRACE;
if (nullptr == m_compressed_input_stream.get()) {
*out_error = XError{CR_X_COMPRESSION_NOT_CONFIGURED,
ER_TEXT_COMPRESSION_NOT_CONFIGURED};
return nullptr;
}
std::unique_ptr<XProtocol::Message> message;
{
CodedInputStream cis(m_compressed_input_stream.get());
// Currently only XQuery_result class sets the m_context->m_global_error
// on invalid sequence of fetched resultsets.
//
// Fatal errors might be also set in m_global_error, where fatal errors
// might
//
// * IO errors
// * Server fatal Mysqlx.Error messages
// * compression errors
//
// This topic needs to be investigated
Header_message_type_id id;
uint32_t size;
cis.ReadLittleEndian32(&size);
cis.ReadRaw(&id, 1);
cis.PushLimit(size - 1);
DBUG_LOG("debug", "COMPRESSION_GROUP HEADER id:" << static_cast<int>(id)
<< ", size:" << size);
*mid = static_cast<Server_message_type_id>(id);
message = deserialize_message(*mid, &cis, out_error);
if (!*out_error) *out_error = m_connection_input_stream->GetIOError();
}
if (!details::has_data(m_compressed_input_stream.get())) {
DBUG_LOG("debug", "No more data in compressed packet,"
<< " removing compression stream");
m_compressed_input_stream.reset();
m_compressed_payload_input_stream.reset();
m_compressed.Clear();
}
if (*out_error) return nullptr;
return message.release();
}
void Protocol_impl::reset_buffering() {
m_connection_input_stream.reset(
new Connection_input_stream(m_connection.get()));
}
XProtocol::Message *Protocol_impl::recv_message_with_header(
Server_message_type_id *mid, XError *out_error) {
DBUG_TRACE;
uint32_t payload_size = 0;
/* If the pointer is set, then we are in middle of reading compressed message.
*/
if (m_compressed_input_stream) {
return read_compressed(mid, out_error);
}
Header_message_type_id header_mid;
*out_error = recv_header(&header_mid, &payload_size);
*mid = static_cast<Server_message_type_id>(header_mid);
if (*out_error) return nullptr;
DBUG_LOG("info",
"Reading X message of type: " << static_cast<int>(header_mid)
<< ", and size: " << payload_size);
const bool is_mid_compressed = details::is_compressed(header_mid);
m_connection_input_stream->AllowedRead(payload_size);
{
// The 'cis' variable must be destroyed before doing read_buffered
google::protobuf::io::CodedInputStream cis(m_connection_input_stream.get());
cis.PushLimit(payload_size);
if (!is_mid_compressed) {
DBUG_PRINT("info", ("Reading uncompressed X message"));
auto result = deserialize_message(header_mid, &cis, out_error);
if (!*out_error) {
*out_error = m_connection_input_stream->GetIOError();
}
if (*out_error) {
return nullptr;
}
*mid = static_cast<XProtocol::Server_message_type_id>(header_mid);
return result.release();
}
bool read_ok = true;
if (!m_compressed.ParseFromCodedStream(&cis)) {
std::string error_message(ERR_MSG_MESSAGE_NOT_INITIALIZED);
error_message += "Name:" + m_compressed.GetTypeName() + ", ";
error_message += m_compressed.InitializationErrorString();
*out_error = XError(CR_MALFORMED_PACKET, error_message);
return nullptr;
}
m_compression_inner_message_id = Mysqlx::ServerMessages::COMPRESSION;
if (!read_ok) {
*out_error = m_connection_input_stream->GetIOError();
return nullptr;
}
bool out_ignore = false;
*out_error =
dispatch_received(*mid, Mysqlx::Connection::Compression(), &out_ignore);
if (*out_error || out_ignore) {
skip_not_parsed(&cis, out_error);
return nullptr;
}
}
const auto &payload = m_compressed.payload();
m_compressed_payload_input_stream.reset(
new google::protobuf::io::ArrayInputStream(payload.c_str(),
payload.length()));
m_compressed_input_stream =
m_compression->downlink(m_compressed_payload_input_stream.get());
return read_compressed(mid, out_error);
}
} // namespace xcl
|