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 1160 1161 1162 1163 1164 1165 1166 1167 1168
|
/*
* Copyright 2010-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <aws/event-stream/event_stream_channel_handler.h>
#include <aws/event-stream/event_stream_rpc_server.h>
#include <aws/event-stream/private/event_stream_rpc_priv.h>
#include <aws/common/atomics.h>
#include <aws/common/hash_table.h>
#include <aws/io/channel.h>
#include <aws/io/channel_bootstrap.h>
#include <aws/io/socket.h>
#include <inttypes.h>
#if defined(_MSC_VER)
/* allow non-constant aggregate initializer */
# pragma warning(disable : 4204)
/* allow passing a pointer to an automatically allocated variable around, cause I'm smarter than the compiler. */
# pragma warning(disable : 4221)
#endif
static const struct aws_byte_cursor s_missing_operation_name_error = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(
"{ \"message\": \"The first message for on a non-zero :stream-id must contain an operation header value.\"; }");
struct aws_event_stream_rpc_server_listener {
struct aws_allocator *allocator;
struct aws_socket *listener;
struct aws_server_bootstrap *bootstrap;
struct aws_atomic_var ref_count;
aws_event_stream_rpc_server_on_new_connection_fn *on_new_connection;
aws_event_stream_rpc_server_on_connection_shutdown_fn *on_connection_shutdown;
aws_event_stream_rpc_server_on_listener_destroy_fn *on_destroy_callback;
size_t initial_window_size;
bool enable_read_backpressure;
bool initialized;
void *user_data;
};
struct aws_event_stream_rpc_server_connection {
struct aws_allocator *allocator;
struct aws_hash_table continuation_table;
struct aws_event_stream_rpc_server_listener *server;
struct aws_atomic_var ref_count;
aws_event_stream_rpc_server_on_incoming_stream_fn *on_incoming_stream;
aws_event_stream_rpc_server_connection_protocol_message_fn *on_connection_protocol_message;
struct aws_channel *channel;
struct aws_channel_handler *event_stream_handler;
uint32_t latest_stream_id;
void *user_data;
struct aws_atomic_var is_open;
struct aws_atomic_var handshake_state;
bool bootstrap_owned;
};
struct aws_event_stream_rpc_server_continuation_token {
uint32_t stream_id;
struct aws_event_stream_rpc_server_connection *connection;
aws_event_stream_rpc_server_stream_continuation_fn *continuation_fn;
aws_event_stream_rpc_server_stream_continuation_closed_fn *closed_fn;
void *user_data;
struct aws_atomic_var ref_count;
struct aws_atomic_var is_closed;
};
/** This is the destructor callback invoked by the connections continuation table when a continuation is removed
* from the hash table.
*/
void s_continuation_destroy(void *value) {
struct aws_event_stream_rpc_server_continuation_token *continuation = value;
AWS_LOGF_DEBUG(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: destroying continuation", (void *)continuation);
/*
* When creating a stream, we end up putting the continuation in the table before we finish initializing it.
* If an error occurs in the on incoming stream callback, we end up with a continuation with no user data or
* callbacks. This means we have to check closed_fn for validity even though the success path does a fatal assert
* on validity.
*/
if (continuation->closed_fn != NULL) {
continuation->closed_fn(continuation, continuation->user_data);
}
aws_event_stream_rpc_server_continuation_release(continuation);
}
static void s_on_message_received(struct aws_event_stream_message *message, int error_code, void *user_data);
/* We have two paths for creating a connection on a channel. The first is an incoming connection on the server listener.
* The second is adding a connection to an already existing channel. This is the code common to both cases. */
static struct aws_event_stream_rpc_server_connection *s_create_connection_on_channel(
struct aws_event_stream_rpc_server_listener *server,
struct aws_channel *channel) {
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: creating connection on channel %p", (void *)server, (void *)channel);
struct aws_event_stream_rpc_server_connection *connection =
aws_mem_calloc(server->allocator, 1, sizeof(struct aws_event_stream_rpc_server_connection));
struct aws_channel_handler *event_stream_handler = NULL;
struct aws_channel_slot *slot = NULL;
if (!connection) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: allocation failed for connection with error %s",
(void *)server,
aws_error_debug_str(aws_last_error()));
return NULL;
}
AWS_LOGF_DEBUG(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: new connection is %p", (void *)server, (void *)connection);
aws_atomic_init_int(&connection->ref_count, 1u);
aws_atomic_init_int(&connection->is_open, 1u);
/* handshake step 1 is a connect message being received. Handshake 2 is the connect ack being sent.
* no messages other than connect and connect ack are allowed until this count reaches 2. */
aws_atomic_init_int(&connection->handshake_state, CONNECTION_HANDSHAKE_STATE_INITIALIZED);
connection->allocator = server->allocator;
if (aws_hash_table_init(
&connection->continuation_table,
server->allocator,
64,
aws_event_stream_rpc_hash_streamid,
aws_event_stream_rpc_streamid_eq,
NULL,
s_continuation_destroy)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: initialization of connection stream table failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto error;
}
struct aws_event_stream_channel_handler_options handler_options = {
.on_message_received = s_on_message_received,
.user_data = connection,
.initial_window_size = server->initial_window_size,
.manual_window_management = server->enable_read_backpressure,
};
event_stream_handler = aws_event_stream_channel_handler_new(server->allocator, &handler_options);
if (!event_stream_handler) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: initialization of event-stream handler failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto error;
}
slot = aws_channel_slot_new(channel);
if (!slot) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: initialization of channel slot failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto error;
}
aws_channel_slot_insert_end(channel, slot);
if (aws_channel_slot_set_handler(slot, event_stream_handler)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: setting the handler on the slot failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto error;
}
aws_event_stream_rpc_server_listener_acquire(server);
connection->server = server;
connection->event_stream_handler = event_stream_handler;
connection->channel = channel;
aws_channel_acquire_hold(channel);
return connection;
error:
if (!slot && event_stream_handler) {
aws_channel_handler_destroy(event_stream_handler);
}
if (connection) {
aws_event_stream_rpc_server_connection_release(connection);
}
return NULL;
}
struct aws_event_stream_rpc_server_connection *aws_event_stream_rpc_server_connection_from_existing_channel(
struct aws_event_stream_rpc_server_listener *server,
struct aws_channel *channel,
const struct aws_event_stream_rpc_connection_options *connection_options) {
AWS_FATAL_ASSERT(
connection_options->on_connection_protocol_message && "on_connection_protocol_message must be specified!");
AWS_FATAL_ASSERT(connection_options->on_incoming_stream && "on_incoming_stream must be specified");
struct aws_event_stream_rpc_server_connection *connection = s_create_connection_on_channel(server, channel);
if (!connection) {
return NULL;
}
connection->on_incoming_stream = connection_options->on_incoming_stream;
connection->on_connection_protocol_message = connection_options->on_connection_protocol_message;
connection->user_data = connection_options->user_data;
aws_event_stream_rpc_server_connection_acquire(connection);
return connection;
}
void aws_event_stream_rpc_server_connection_acquire(struct aws_event_stream_rpc_server_connection *connection) {
size_t current_count = aws_atomic_fetch_add_explicit(&connection->ref_count, 1, aws_memory_order_relaxed);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connection acquired, new ref count is %zu.",
(void *)connection,
current_count + 1);
}
void aws_event_stream_rpc_server_connection_release(struct aws_event_stream_rpc_server_connection *connection) {
if (!connection) {
return;
}
size_t value = aws_atomic_fetch_sub_explicit(&connection->ref_count, 1, aws_memory_order_seq_cst);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connection released, new ref count is %zu.",
(void *)connection,
value - 1);
if (value == 1) {
AWS_LOGF_DEBUG(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: destroying connection.", (void *)connection);
aws_channel_release_hold(connection->channel);
aws_hash_table_clean_up(&connection->continuation_table);
aws_event_stream_rpc_server_listener_release(connection->server);
aws_mem_release(connection->allocator, connection);
}
}
/* incoming from a socket on this listener. */
static void s_on_accept_channel_setup(
struct aws_server_bootstrap *bootstrap,
int error_code,
struct aws_channel *channel,
void *user_data) {
(void)bootstrap;
struct aws_event_stream_rpc_server_listener *server = user_data;
if (!error_code) {
AWS_LOGF_INFO(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: incoming connection with channel %p.",
(void *)server,
(void *)channel);
AWS_FATAL_ASSERT(channel && "Channel should never be null with a 0 error code.");
struct aws_event_stream_rpc_server_connection *connection = s_create_connection_on_channel(server, channel);
if (!connection) {
int error = aws_last_error();
server->on_new_connection(NULL, error, NULL, server->user_data);
aws_channel_shutdown(channel, error);
}
struct aws_event_stream_rpc_connection_options connection_options;
AWS_ZERO_STRUCT(connection_options);
aws_event_stream_rpc_server_connection_acquire(connection);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: invoking on_new_connection with connection %p.",
(void *)server,
(void *)connection);
if (server->on_new_connection(connection, AWS_ERROR_SUCCESS, &connection_options, server->user_data)) {
aws_channel_shutdown(channel, aws_last_error());
aws_event_stream_rpc_server_connection_release(connection);
return;
}
AWS_FATAL_ASSERT(
connection_options.on_connection_protocol_message && "on_connection_protocol_message must be specified!");
AWS_FATAL_ASSERT(connection_options.on_incoming_stream && "on_incoming_stream must be specified");
connection->on_incoming_stream = connection_options.on_incoming_stream;
connection->on_connection_protocol_message = connection_options.on_connection_protocol_message;
connection->user_data = connection_options.user_data;
connection->bootstrap_owned = true;
aws_event_stream_rpc_server_connection_release(connection);
} else {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: invoking on_new_connection with error %s",
(void *)server,
aws_error_debug_str(error_code));
server->on_new_connection(NULL, error_code, NULL, server->user_data);
}
}
/* this is just to get the connection object off of the channel. */
static inline struct aws_event_stream_rpc_server_connection *s_rpc_connection_from_channel(
struct aws_channel *channel) {
struct aws_channel_slot *our_slot = NULL;
struct aws_channel_slot *current_slot = aws_channel_get_first_slot(channel);
AWS_FATAL_ASSERT(
current_slot &&
"It should be logically impossible to have a channel in this callback that doesn't have a slot in it");
while (current_slot->adj_right) {
current_slot = current_slot->adj_right;
}
our_slot = current_slot;
struct aws_channel_handler *our_handler = our_slot->handler;
return aws_event_stream_channel_handler_get_user_data(our_handler);
}
static void s_on_accept_channel_shutdown(
struct aws_server_bootstrap *bootstrap,
int error_code,
struct aws_channel *channel,
void *user_data) {
(void)bootstrap;
struct aws_event_stream_rpc_server_listener *server = user_data;
struct aws_event_stream_rpc_server_connection *connection = s_rpc_connection_from_channel(channel);
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: channel %p and connection %p shutdown occurred with error %s",
(void *)server,
(void *)channel,
(void *)connection,
aws_error_debug_str(error_code));
aws_atomic_store_int(&connection->is_open, 0U);
aws_hash_table_clear(&connection->continuation_table);
aws_event_stream_rpc_server_connection_acquire(connection);
server->on_connection_shutdown(connection, error_code, server->user_data);
aws_event_stream_rpc_server_connection_release(connection);
aws_event_stream_rpc_server_connection_release(connection);
}
static void s_on_server_listener_destroy(struct aws_server_bootstrap *bootstrap, void *user_data) {
(void)bootstrap;
struct aws_event_stream_rpc_server_listener *listener = user_data;
AWS_LOGF_INFO(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: destroying server", (void *)listener);
/* server bootstrap invokes this callback regardless of if the listener was successfully created, so
* just check that we successfully set it up before freeing anything. When that's fixed in aws-c-io, this
* code will still be correct, so just leave it here for now. */
if (listener->initialized) {
if (listener->on_destroy_callback) {
listener->on_destroy_callback(listener, listener->user_data);
}
aws_mem_release(listener->allocator, listener);
}
}
struct aws_event_stream_rpc_server_listener *aws_event_stream_rpc_server_new_listener(
struct aws_allocator *allocator,
struct aws_event_stream_rpc_server_listener_options *options) {
struct aws_event_stream_rpc_server_listener *server =
aws_mem_calloc(allocator, 1, sizeof(struct aws_event_stream_rpc_server_listener));
if (!server) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"static: failed to allocate new server with error %s",
aws_error_debug_str(aws_last_error()));
return NULL;
}
AWS_LOGF_DEBUG(AWS_LS_EVENT_STREAM_RPC_SERVER, "static: new server is %p", (void *)server);
aws_atomic_init_int(&server->ref_count, 1);
struct aws_server_socket_channel_bootstrap_options bootstrap_options = {
.bootstrap = options->bootstrap,
.socket_options = options->socket_options,
.tls_options = options->tls_options,
.enable_read_back_pressure = false,
.host_name = options->host_name,
.port = options->port,
.incoming_callback = s_on_accept_channel_setup,
.shutdown_callback = s_on_accept_channel_shutdown,
.destroy_callback = s_on_server_listener_destroy,
.user_data = server,
};
server->bootstrap = options->bootstrap;
server->allocator = allocator;
server->on_destroy_callback = options->on_destroy_callback;
server->on_new_connection = options->on_new_connection;
server->on_connection_shutdown = options->on_connection_shutdown;
server->user_data = options->user_data;
server->listener = aws_server_bootstrap_new_socket_listener(&bootstrap_options);
if (!server->listener) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"static: failed to allocate new socket listener with error %s",
aws_error_debug_str(aws_last_error()));
goto error;
}
server->initialized = true;
return server;
error:
if (server->listener) {
aws_server_bootstrap_destroy_socket_listener(options->bootstrap, server->listener);
}
aws_mem_release(server->allocator, server);
return NULL;
}
uint16_t aws_event_stream_rpc_server_listener_get_bound_port(
const struct aws_event_stream_rpc_server_listener *server) {
struct aws_socket_endpoint address;
AWS_ZERO_STRUCT(address);
/* not checking error code because it can't fail when called on a listening socket */
aws_socket_get_bound_address(server->listener, &address);
return address.port;
}
void aws_event_stream_rpc_server_listener_acquire(struct aws_event_stream_rpc_server_listener *server) {
size_t current_count = aws_atomic_fetch_add_explicit(&server->ref_count, 1, aws_memory_order_relaxed);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: server acquired, new ref count is %zu.",
(void *)server,
current_count + 1);
}
static void s_destroy_server(struct aws_event_stream_rpc_server_listener *server) {
if (server) {
AWS_LOGF_INFO(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: destroying server", (void *)server);
/* the memory for this is cleaned up in the listener shutdown complete callback. */
aws_server_bootstrap_destroy_socket_listener(server->bootstrap, server->listener);
}
}
void aws_event_stream_rpc_server_listener_release(struct aws_event_stream_rpc_server_listener *server) {
if (!server) {
return;
}
size_t ref_count = aws_atomic_fetch_sub_explicit(&server->ref_count, 1, aws_memory_order_seq_cst);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: server released, new ref count is %zu.", (void *)server, ref_count - 1);
if (ref_count == 1) {
s_destroy_server(server);
}
}
struct event_stream_connection_send_message_args {
struct aws_allocator *allocator;
struct aws_event_stream_message message;
enum aws_event_stream_rpc_message_type message_type;
struct aws_event_stream_rpc_server_connection *connection;
struct aws_event_stream_rpc_server_continuation_token *continuation;
aws_event_stream_rpc_server_message_flush_fn *flush_fn;
void *user_data;
bool end_stream;
bool terminate_connection;
};
static void s_on_protocol_message_written_fn(
struct aws_event_stream_message *message,
int error_code,
void *user_data) {
(void)message;
struct event_stream_connection_send_message_args *message_args = user_data;
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: message flushed to channel with error %s",
(void *)message_args->connection,
aws_error_debug_str(error_code));
if (message_args->message_type == AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_CONNECT_ACK) {
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connect ack message flushed to wire",
(void *)message_args->connection);
}
if (message_args->end_stream) {
AWS_FATAL_ASSERT(message_args->continuation && "end stream flag was set but it wasn't on a continuation");
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: end_stream flag for continuation %p was set, closing",
(void *)message_args->connection,
(void *)message_args->continuation);
aws_atomic_store_int(&message_args->continuation->is_closed, 1U);
aws_hash_table_remove(
&message_args->connection->continuation_table, &message_args->continuation->stream_id, NULL, NULL);
}
message_args->flush_fn(error_code, message_args->user_data);
if (message_args->terminate_connection) {
AWS_LOGF_INFO(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: terminate connection flag was set. closing",
(void *)message_args->connection);
aws_event_stream_rpc_server_connection_close(message_args->connection, AWS_ERROR_SUCCESS);
}
aws_event_stream_rpc_server_connection_release(message_args->connection);
if (message_args->continuation) {
aws_event_stream_rpc_server_continuation_release(message_args->continuation);
}
aws_event_stream_message_clean_up(&message_args->message);
aws_mem_release(message_args->allocator, message_args);
}
static int s_send_protocol_message(
struct aws_event_stream_rpc_server_connection *connection,
struct aws_event_stream_rpc_server_continuation_token *continuation,
const struct aws_event_stream_rpc_message_args *message_args,
int32_t stream_id,
aws_event_stream_rpc_server_message_flush_fn *flush_fn,
void *user_data) {
size_t connect_handshake_state = aws_atomic_load_int(&connection->handshake_state);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connect handshake state %zu",
(void *)connection,
connect_handshake_state);
/* handshake step 1 is a connect message being received. Handshake 2 is the connect ack being sent.
* no messages other than connect and connect ack are allowed until this count reaches 2. */
if (connect_handshake_state != CONNECTION_HANDSHAKE_STATE_CONNECT_ACK_PROCESSED &&
message_args->message_type < AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_CONNECT_ACK) {
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: invalid state, a message was received prior to connect handshake completion",
(void *)connection);
return aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
}
struct event_stream_connection_send_message_args *args =
aws_mem_calloc(connection->allocator, 1, sizeof(struct event_stream_connection_send_message_args));
if (!message_args) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: allocation of callback args failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
return AWS_OP_ERR;
}
args->allocator = connection->allocator;
args->user_data = user_data;
args->message_type = message_args->message_type;
args->connection = connection;
args->flush_fn = flush_fn;
if (continuation) {
args->continuation = continuation;
aws_event_stream_rpc_server_continuation_acquire(continuation);
if (message_args->message_flags & AWS_EVENT_STREAM_RPC_MESSAGE_FLAG_TERMINATE_STREAM) {
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: continuation with terminate stream flag was specified closing",
(void *)continuation);
args->end_stream = true;
}
}
if (message_args->message_type == AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_CONNECT_ACK) {
AWS_LOGF_INFO(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: sending connect ack message, the connect handshake is completed",
(void *)connection);
aws_atomic_store_int(&connection->handshake_state, CONNECTION_HANDSHAKE_STATE_CONNECT_ACK_PROCESSED);
if (!(message_args->message_flags & AWS_EVENT_STREAM_RPC_MESSAGE_FLAG_CONNECTION_ACCEPTED)) {
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connection ack was rejected closing connection",
(void *)connection);
args->terminate_connection = true;
}
}
args->flush_fn = flush_fn;
size_t headers_count = 0;
if (aws_add_size_checked(message_args->headers_count, 3, &headers_count)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: integer overflow detected when using headers_count %zu",
(void *)connection,
message_args->headers_count);
goto args_allocated_before_failure;
}
struct aws_array_list headers_list;
AWS_ZERO_STRUCT(headers_list);
if (aws_array_list_init_dynamic(
&headers_list, connection->allocator, headers_count, sizeof(struct aws_event_stream_header_value_pair))) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: allocation of headers failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto args_allocated_before_failure;
}
/* since we preallocated the space for the headers, these can't fail, but we'll go ahead an assert on them just in
* case */
for (size_t i = 0; i < message_args->headers_count; ++i) {
AWS_FATAL_ASSERT(!aws_array_list_push_back(&headers_list, &message_args->headers[i]));
}
AWS_FATAL_ASSERT(!aws_event_stream_add_int32_header(
&headers_list,
(const char *)aws_event_stream_rpc_message_type_name.ptr,
(uint8_t)aws_event_stream_rpc_message_type_name.len,
message_args->message_type));
AWS_FATAL_ASSERT(!aws_event_stream_add_int32_header(
&headers_list,
(const char *)aws_event_stream_rpc_message_flags_name.ptr,
(uint8_t)aws_event_stream_rpc_message_flags_name.len,
message_args->message_flags));
AWS_FATAL_ASSERT(!aws_event_stream_add_int32_header(
&headers_list,
(const char *)aws_event_stream_rpc_stream_id_name.ptr,
(uint8_t)aws_event_stream_rpc_stream_id_name.len,
stream_id));
int message_init_err_code =
aws_event_stream_message_init(&args->message, connection->allocator, &headers_list, message_args->payload);
aws_array_list_clean_up(&headers_list);
if (message_init_err_code) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: initialization of message failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto args_allocated_before_failure;
}
aws_event_stream_rpc_server_connection_acquire(connection);
if (aws_event_stream_channel_handler_write_message(
connection->event_stream_handler, &args->message, s_on_protocol_message_written_fn, args)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: message send failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
goto message_initialized_before_failure;
}
return AWS_OP_SUCCESS;
message_initialized_before_failure:
aws_event_stream_message_clean_up(&args->message);
args_allocated_before_failure:
aws_mem_release(args->allocator, args);
aws_event_stream_rpc_server_connection_release(connection);
return AWS_OP_ERR;
}
int aws_event_stream_rpc_server_connection_send_protocol_message(
struct aws_event_stream_rpc_server_connection *connection,
const struct aws_event_stream_rpc_message_args *message_args,
aws_event_stream_rpc_server_message_flush_fn *flush_fn,
void *user_data) {
if (!aws_event_stream_rpc_server_connection_is_open(connection)) {
return aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_CONNECTION_CLOSED);
}
return s_send_protocol_message(connection, NULL, message_args, 0, flush_fn, user_data);
}
void *aws_event_stream_rpc_server_connection_get_user_data(struct aws_event_stream_rpc_server_connection *connection) {
return connection->user_data;
}
AWS_EVENT_STREAM_API void aws_event_stream_rpc_server_override_last_stream_id(
struct aws_event_stream_rpc_server_connection *connection,
int32_t value) {
connection->latest_stream_id = value;
}
void aws_event_stream_rpc_server_connection_close(
struct aws_event_stream_rpc_server_connection *connection,
int shutdown_error_code) {
if (aws_event_stream_rpc_server_connection_is_open(connection)) {
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: closing connection with error %s",
(void *)connection,
aws_error_debug_str(shutdown_error_code));
aws_atomic_store_int(&connection->is_open, 0U);
aws_channel_shutdown(connection->channel, shutdown_error_code);
if (!connection->bootstrap_owned) {
aws_hash_table_clear(&connection->continuation_table);
aws_event_stream_rpc_server_connection_release(connection);
}
}
}
bool aws_event_stream_rpc_server_continuation_is_closed(
struct aws_event_stream_rpc_server_continuation_token *continuation) {
return aws_atomic_load_int(&continuation->is_closed) == 1U;
}
bool aws_event_stream_rpc_server_connection_is_open(struct aws_event_stream_rpc_server_connection *connection) {
return aws_atomic_load_int(&connection->is_open) == 1U;
}
void aws_event_stream_rpc_server_continuation_acquire(
struct aws_event_stream_rpc_server_continuation_token *continuation) {
size_t current_count = aws_atomic_fetch_add_explicit(&continuation->ref_count, 1, aws_memory_order_relaxed);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: continuation acquired, new ref count is %zu.",
(void *)continuation,
current_count + 1);
}
void aws_event_stream_rpc_server_continuation_release(
struct aws_event_stream_rpc_server_continuation_token *continuation) {
size_t value = aws_atomic_fetch_sub_explicit(&continuation->ref_count, 1, aws_memory_order_seq_cst);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: continuation released, new ref count is %zu.",
(void *)continuation,
value - 1);
if (value == 1) {
AWS_LOGF_DEBUG(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: destroying continuation.", (void *)continuation);
struct aws_allocator *allocator = continuation->connection->allocator;
aws_event_stream_rpc_server_connection_release(continuation->connection);
aws_mem_release(allocator, continuation);
}
}
int aws_event_stream_rpc_server_continuation_send_message(
struct aws_event_stream_rpc_server_continuation_token *continuation,
const struct aws_event_stream_rpc_message_args *message_args,
aws_event_stream_rpc_server_message_flush_fn *flush_fn,
void *user_data) {
AWS_FATAL_PRECONDITION(continuation->continuation_fn);
AWS_FATAL_PRECONDITION(continuation->closed_fn);
if (aws_event_stream_rpc_server_continuation_is_closed(continuation)) {
return aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_STREAM_CLOSED);
}
return s_send_protocol_message(
continuation->connection, continuation, message_args, continuation->stream_id, flush_fn, user_data);
}
static void s_connection_error_message_flush_fn(int error_code, void *user_data) {
(void)error_code;
struct aws_event_stream_rpc_server_connection *connection = user_data;
aws_event_stream_rpc_server_connection_close(connection, AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
}
static void s_send_connection_level_error(
struct aws_event_stream_rpc_server_connection *connection,
uint32_t message_type,
uint32_t message_flags,
const struct aws_byte_cursor *message) {
struct aws_byte_buf payload_buf = aws_byte_buf_from_array(message->ptr, message->len);
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: sending connection-level error\n" PRInSTR,
(void *)connection,
AWS_BYTE_BUF_PRI(payload_buf));
struct aws_event_stream_header_value_pair content_type_header =
aws_event_stream_create_string_header(s_json_content_type_name, s_json_content_type_value);
struct aws_event_stream_header_value_pair headers[] = {
content_type_header,
};
struct aws_event_stream_rpc_message_args message_args = {
.message_type = message_type,
.message_flags = message_flags,
.payload = &payload_buf,
.headers_count = 1,
.headers = headers,
};
aws_event_stream_rpc_server_connection_send_protocol_message(
connection, &message_args, s_connection_error_message_flush_fn, connection);
}
/* TODO: come back and make this a proper state pattern. For now it's branches all over the place until we nail
* down the spec. */
static void s_route_message_by_type(
struct aws_event_stream_rpc_server_connection *connection,
struct aws_event_stream_message *message,
struct aws_array_list *headers_list,
uint32_t stream_id,
uint32_t message_type,
uint32_t message_flags,
struct aws_byte_cursor operation_name) {
struct aws_byte_buf payload_buf = aws_byte_buf_from_array(
aws_event_stream_message_payload(message), aws_event_stream_message_payload_len(message));
struct aws_event_stream_rpc_message_args message_args = {
.headers = headers_list->data,
.headers_count = aws_array_list_length(headers_list),
.payload = &payload_buf,
.message_flags = message_flags,
.message_type = message_type,
};
size_t handshake_state = aws_atomic_load_int(&connection->handshake_state);
/* make sure if this is not a CONNECT message being received, the handshake has been completed. */
if (handshake_state < CONNECTION_HANDSHAKE_STATE_CONNECT_ACK_PROCESSED &&
message_type != AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_CONNECT) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: a message was received on this connection prior to the "
"connect handshake completing",
(void *)connection);
aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_connect_not_completed_error);
return;
}
/* stream_id being non zero ALWAYS indicates APPLICATION_DATA or APPLICATION_ERROR. */
if (stream_id > 0) {
AWS_LOGF_TRACE(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: stream id %" PRIu32, (void *)connection, stream_id);
struct aws_event_stream_rpc_server_continuation_token *continuation = NULL;
if (message_type > AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_APPLICATION_ERROR) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: only application messages can be sent on a stream id, "
"but this message is the incorrect type",
(void *)connection);
aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_invalid_stream_id_error);
return;
}
/* INT32_MAX is the max stream id. */
if (stream_id > INT32_MAX) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id is larger than the max acceptable value",
(void *)connection);
aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_invalid_stream_id_error);
return;
}
/* if the stream is in the past, look it up from the continuation table. If it's not there, that's an error.
* if it is, find it and notify the user a message arrived */
if (stream_id <= connection->latest_stream_id) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id is an already seen stream_id, looking for existing continuation",
(void *)connection);
struct aws_hash_element *continuation_element = NULL;
if (aws_hash_table_find(&connection->continuation_table, &stream_id, &continuation_element) ||
!continuation_element) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id does not have a corresponding continuation",
(void *)connection);
aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_invalid_client_stream_id_error);
return;
}
continuation = continuation_element->value;
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id corresponds to continuation %p",
(void *)connection,
(void *)continuation);
/*
* I don't think it's possible for the continuation_fn to be NULL at this point, but given the
* multiple partially-initialized object crashes we've had, let's be safe.
*/
if (continuation->continuation_fn != NULL) {
aws_event_stream_rpc_server_continuation_acquire(continuation);
continuation->continuation_fn(continuation, &message_args, continuation->user_data);
aws_event_stream_rpc_server_continuation_release(continuation);
}
/* now these are potentially new streams. Make sure they're in bounds, create a new continuation
* and notify the user the stream has been created, then send them the message. */
} else {
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id is unknown, attempting to create a continuation for it",
(void *)connection);
if (stream_id != connection->latest_stream_id + 1) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id is invalid because it's not sequentially increasing",
(void *)connection);
aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
s_send_connection_level_error(
connection,
AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR,
0,
&s_invalid_new_client_stream_id_error);
return;
}
/* new streams must always have an operation name. */
if (operation_name.len == 0) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: new stream_id encountered, but an operation name was not received",
(void *)connection);
aws_raise_error(AWS_ERROR_EVENT_STREAM_RPC_PROTOCOL_ERROR);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_missing_operation_name_error);
return;
}
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: stream_id is a valid new stream. Creating continuation",
(void *)connection);
continuation =
aws_mem_calloc(connection->allocator, 1, sizeof(struct aws_event_stream_rpc_server_continuation_token));
if (!continuation) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: continuation allocation failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_INTERNAL_ERROR, 0, &s_internal_error);
return;
}
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: new continuation is %p",
(void *)connection,
(void *)continuation);
continuation->stream_id = stream_id;
continuation->connection = connection;
aws_event_stream_rpc_server_connection_acquire(continuation->connection);
aws_atomic_init_int(&continuation->ref_count, 1);
if (aws_hash_table_put(&connection->continuation_table, &continuation->stream_id, continuation, NULL)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: continuation table update failed with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
/* continuation release will drop the connection reference as well */
aws_event_stream_rpc_server_continuation_release(continuation);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_INTERNAL_ERROR, 0, &s_internal_error);
return;
}
struct aws_event_stream_rpc_server_stream_continuation_options options;
AWS_ZERO_STRUCT(options);
aws_event_stream_rpc_server_continuation_acquire(continuation);
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: invoking on_incoming_stream callback", (void *)connection);
/*
* This callback must only keep a ref to the continuation on a success path. On a failure, it must
* leave the ref count alone so that the release + removal destroys the continuation
*/
if (connection->on_incoming_stream == NULL ||
connection->on_incoming_stream(
continuation->connection, continuation, operation_name, &options, connection->user_data)) {
AWS_FATAL_ASSERT(aws_atomic_load_int(&continuation->ref_count) == 2);
/* undo the continuation acquire that was done a few lines above */
aws_event_stream_rpc_server_continuation_release(continuation);
/* removing the continuation from the table will do the final decref on the continuation */
aws_hash_table_remove(&connection->continuation_table, &continuation->stream_id, NULL, NULL);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_INTERNAL_ERROR, 0, &s_internal_error);
return;
}
AWS_FATAL_ASSERT(options.on_continuation);
AWS_FATAL_ASSERT(options.on_continuation_closed);
continuation->continuation_fn = options.on_continuation;
continuation->closed_fn = options.on_continuation_closed;
continuation->user_data = options.user_data;
connection->latest_stream_id = stream_id;
continuation->continuation_fn(continuation, &message_args, continuation->user_data);
/* undo the acquire made before the on_incoming_stream callback invocation */
aws_event_stream_rpc_server_continuation_release(continuation);
}
/* if it was a terminal stream message purge it from the hash table. The delete will decref the continuation. */
if (message_flags & AWS_EVENT_STREAM_RPC_MESSAGE_FLAG_TERMINATE_STREAM) {
AWS_LOGF_DEBUG(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: the terminate_stream flag was received for continuation %p, closing",
(void *)connection,
(void *)continuation);
aws_atomic_store_int(&continuation->is_closed, 1U);
aws_hash_table_remove(&connection->continuation_table, &stream_id, NULL, NULL);
}
} else {
if (message_type <= AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_APPLICATION_ERROR ||
message_type >= AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_COUNT) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: a zero stream id was received with an invalid message-type %" PRIu32,
(void *)connection,
message_type);
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_invalid_message_type_error);
return;
}
if (message_type == AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_CONNECT) {
if (handshake_state) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connect received but the handshake is already completed. Only one is allowed.",
(void *)connection);
/* only one connect is allowed. This would be a duplicate. */
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_connect_not_completed_error);
return;
}
aws_atomic_store_int(&connection->handshake_state, CONNECTION_HANDSHAKE_STATE_CONNECT_PROCESSED);
AWS_LOGF_INFO(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: connect received, connection handshake completion pending the server sending an ack.",
(void *)connection);
}
if (connection->on_connection_protocol_message != NULL) {
connection->on_connection_protocol_message(connection, &message_args, connection->user_data);
}
}
}
/* invoked by the event stream channel handler when a complete message has been read from the channel. */
static void s_on_message_received(struct aws_event_stream_message *message, int error_code, void *user_data) {
if (!error_code) {
struct aws_event_stream_rpc_server_connection *connection = user_data;
AWS_LOGF_TRACE(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: message received on connection of length %" PRIu32,
(void *)connection,
aws_event_stream_message_total_length(message));
struct aws_array_list headers;
if (aws_array_list_init_dynamic(
&headers, connection->allocator, 8, sizeof(struct aws_event_stream_header_value_pair))) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: error initializing headers %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_INTERNAL_ERROR, 0, &s_internal_error);
return;
}
if (aws_event_stream_message_headers(message, &headers)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: error fetching headers %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_INTERNAL_ERROR, 0, &s_internal_error);
goto clean_up;
}
int32_t stream_id = -1;
int32_t message_type = -1;
int32_t message_flags = -1;
struct aws_byte_buf operation_name_buf;
AWS_ZERO_STRUCT(operation_name_buf);
if (aws_event_stream_rpc_extract_message_metadata(
&headers, &stream_id, &message_type, &message_flags, &operation_name_buf)) {
AWS_LOGF_ERROR(
AWS_LS_EVENT_STREAM_RPC_SERVER,
"id=%p: invalid protocol message with error %s",
(void *)connection,
aws_error_debug_str(aws_last_error()));
s_send_connection_level_error(
connection, AWS_EVENT_STREAM_RPC_MESSAGE_TYPE_PROTOCOL_ERROR, 0, &s_invalid_message_error);
goto clean_up;
}
AWS_LOGF_TRACE(AWS_LS_EVENT_STREAM_RPC_SERVER, "id=%p: routing message", (void *)connection);
s_route_message_by_type(
connection,
message,
&headers,
stream_id,
message_type,
message_flags,
aws_byte_cursor_from_buf(&operation_name_buf));
clean_up:
aws_event_stream_headers_list_cleanup(&headers);
}
}
|