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 1169 1170 1171 1172 1173 1174
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mqtt/private/v5/mqtt5_decoder.h>
#include <aws/mqtt/private/v5/mqtt5_topic_alias.h>
#include <aws/mqtt/private/v5/mqtt5_utils.h>
#define AWS_MQTT5_DECODER_BUFFER_START_SIZE 2048
#define PUBLISH_PACKET_FIXED_HEADER_DUPLICATE_FLAG 8
#define PUBLISH_PACKET_FIXED_HEADER_RETAIN_FLAG 1
#define PUBLISH_PACKET_FIXED_HEADER_QOS_FLAG 3
static void s_reset_decoder_for_new_packet(struct aws_mqtt5_decoder *decoder) {
aws_byte_buf_reset(&decoder->scratch_space, false);
decoder->packet_first_byte = 0;
decoder->remaining_length = 0;
AWS_ZERO_STRUCT(decoder->packet_cursor);
}
static void s_enter_state(struct aws_mqtt5_decoder *decoder, enum aws_mqtt5_decoder_state state) {
decoder->state = state;
if (state == AWS_MQTT5_DS_READ_PACKET_TYPE) {
s_reset_decoder_for_new_packet(decoder);
} else {
aws_byte_buf_reset(&decoder->scratch_space, false);
}
}
static bool s_is_decodable_packet_type(struct aws_mqtt5_decoder *decoder, enum aws_mqtt5_packet_type type) {
return (uint32_t)type < AWS_ARRAY_SIZE(decoder->options.decoder_table->decoders_by_packet_type) &&
decoder->options.decoder_table->decoders_by_packet_type[type] != NULL;
}
/*
* Every mqtt packet has a first byte that, amongst other things, determines the packet type
*/
static int s_aws_mqtt5_decoder_read_packet_type_on_data(
struct aws_mqtt5_decoder *decoder,
struct aws_byte_cursor *data) {
if (data->len == 0) {
return AWS_MQTT5_DRT_MORE_DATA;
}
uint8_t byte = *data->ptr;
aws_byte_cursor_advance(data, 1);
aws_byte_buf_append_byte_dynamic(&decoder->scratch_space, byte);
enum aws_mqtt5_packet_type packet_type = (byte >> 4);
if (!s_is_decodable_packet_type(decoder, packet_type)) {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_CLIENT,
"id=%p: unsupported or illegal packet type value: %d",
decoder->options.callback_user_data,
(int)packet_type);
return AWS_MQTT5_DRT_ERROR;
}
decoder->packet_first_byte = byte;
s_enter_state(decoder, AWS_MQTT5_DS_READ_REMAINING_LENGTH);
return AWS_MQTT5_DRT_SUCCESS;
}
/*
* non-streaming variable length integer decode. cursor is updated only if the value was successfully read
*/
enum aws_mqtt5_decode_result_type aws_mqtt5_decode_vli(struct aws_byte_cursor *cursor, uint32_t *dest) {
uint32_t value = 0;
bool more_data = false;
size_t bytes_used = 0;
uint32_t shift = 0;
struct aws_byte_cursor cursor_copy = *cursor;
for (; bytes_used < 4; ++bytes_used) {
uint8_t byte = 0;
if (!aws_byte_cursor_read_u8(&cursor_copy, &byte)) {
return AWS_MQTT5_DRT_MORE_DATA;
}
value |= ((byte & 0x7F) << shift);
shift += 7;
more_data = (byte & 0x80) != 0;
if (!more_data) {
break;
}
}
if (more_data) {
/* A variable length integer with the 4th byte high bit set is not valid */
AWS_LOGF_ERROR(AWS_LS_MQTT5_GENERAL, "(static) aws_mqtt5_decoder - illegal variable length integer encoding");
return AWS_MQTT5_DRT_ERROR;
}
aws_byte_cursor_advance(cursor, bytes_used + 1);
*dest = value;
return AWS_MQTT5_DRT_SUCCESS;
}
/* "streaming" variable length integer decode */
static enum aws_mqtt5_decode_result_type s_aws_mqtt5_decoder_read_vli_on_data(
struct aws_mqtt5_decoder *decoder,
uint32_t *vli_dest,
struct aws_byte_cursor *data) {
enum aws_mqtt5_decode_result_type decode_vli_result = AWS_MQTT5_DRT_MORE_DATA;
/* try to decode the vli integer one byte at a time */
while (data->len > 0 && decode_vli_result == AWS_MQTT5_DRT_MORE_DATA) {
/* append a single byte to the scratch buffer */
struct aws_byte_cursor byte_cursor = aws_byte_cursor_advance(data, 1);
aws_byte_buf_append_dynamic(&decoder->scratch_space, &byte_cursor);
/* now try and decode a vli integer based on the range implied by the offset into the buffer */
struct aws_byte_cursor vli_cursor = {
.ptr = decoder->scratch_space.buffer,
.len = decoder->scratch_space.len,
};
decode_vli_result = aws_mqtt5_decode_vli(&vli_cursor, vli_dest);
}
return decode_vli_result;
}
/* attempts to read the variable length integer that is always the second piece of data in an mqtt packet */
static enum aws_mqtt5_decode_result_type s_aws_mqtt5_decoder_read_remaining_length_on_data(
struct aws_mqtt5_decoder *decoder,
struct aws_byte_cursor *data) {
enum aws_mqtt5_decode_result_type result =
s_aws_mqtt5_decoder_read_vli_on_data(decoder, &decoder->remaining_length, data);
if (result != AWS_MQTT5_DRT_SUCCESS) {
return result;
}
s_enter_state(decoder, AWS_MQTT5_DS_READ_PACKET);
return AWS_MQTT5_DRT_SUCCESS;
}
/* non-streaming decode of a user property; failure implies connection termination */
int aws_mqtt5_decode_user_property(
struct aws_byte_cursor *packet_cursor,
struct aws_mqtt5_user_property_set *properties) {
struct aws_mqtt5_user_property property;
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR(packet_cursor, &property.name, error);
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR(packet_cursor, &property.value, error);
if (aws_array_list_push_back(&properties->properties, &property)) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
error:
return AWS_OP_ERR;
}
/* decode function for all CONNACK properties */
static int s_read_connack_property(
struct aws_mqtt5_packet_connack_storage *storage,
struct aws_byte_cursor *packet_cursor) {
int result = AWS_OP_ERR;
uint8_t property_type = 0;
AWS_MQTT5_DECODE_U8(packet_cursor, &property_type, done);
struct aws_mqtt5_packet_connack_view *storage_view = &storage->storage_view;
switch (property_type) {
case AWS_MQTT5_PROPERTY_TYPE_SESSION_EXPIRY_INTERVAL:
AWS_MQTT5_DECODE_U32_OPTIONAL(
packet_cursor, &storage->session_expiry_interval, &storage_view->session_expiry_interval, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_RECEIVE_MAXIMUM:
AWS_MQTT5_DECODE_U16_OPTIONAL(
packet_cursor, &storage->receive_maximum, &storage_view->receive_maximum, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_MAXIMUM_QOS:
AWS_MQTT5_DECODE_U8_OPTIONAL(packet_cursor, &storage->maximum_qos, &storage_view->maximum_qos, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_RETAIN_AVAILABLE:
AWS_MQTT5_DECODE_U8_OPTIONAL(
packet_cursor, &storage->retain_available, &storage_view->retain_available, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_MAXIMUM_PACKET_SIZE:
AWS_MQTT5_DECODE_U32_OPTIONAL(
packet_cursor, &storage->maximum_packet_size, &storage_view->maximum_packet_size, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_ASSIGNED_CLIENT_IDENTIFIER:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->assigned_client_identifier, &storage_view->assigned_client_identifier, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_TOPIC_ALIAS_MAXIMUM:
AWS_MQTT5_DECODE_U16_OPTIONAL(
packet_cursor, &storage->topic_alias_maximum, &storage_view->topic_alias_maximum, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_REASON_STRING:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->reason_string, &storage_view->reason_string, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_WILDCARD_SUBSCRIPTIONS_AVAILABLE:
AWS_MQTT5_DECODE_U8_OPTIONAL(
packet_cursor,
&storage->wildcard_subscriptions_available,
&storage_view->wildcard_subscriptions_available,
done);
break;
case AWS_MQTT5_PROPERTY_TYPE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE:
AWS_MQTT5_DECODE_U8_OPTIONAL(
packet_cursor,
&storage->subscription_identifiers_available,
&storage_view->subscription_identifiers_available,
done);
break;
case AWS_MQTT5_PROPERTY_TYPE_SHARED_SUBSCRIPTIONS_AVAILABLE:
AWS_MQTT5_DECODE_U8_OPTIONAL(
packet_cursor,
&storage->shared_subscriptions_available,
&storage_view->shared_subscriptions_available,
done);
break;
case AWS_MQTT5_PROPERTY_TYPE_SERVER_KEEP_ALIVE:
AWS_MQTT5_DECODE_U16_OPTIONAL(
packet_cursor, &storage->server_keep_alive, &storage_view->server_keep_alive, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_RESPONSE_INFORMATION:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->response_information, &storage_view->response_information, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_SERVER_REFERENCE:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->server_reference, &storage_view->server_reference, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_AUTHENTICATION_METHOD:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->authentication_method, &storage_view->authentication_method, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_AUTHENTICATION_DATA:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->authentication_data, &storage_view->authentication_data, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_USER_PROPERTY:
if (aws_mqtt5_decode_user_property(packet_cursor, &storage->user_properties)) {
goto done;
}
break;
default:
goto done;
}
result = AWS_OP_SUCCESS;
done:
if (result != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Read CONNACK property decode failure");
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return result;
}
/* decodes a CONNACK packet whose data must be in the scratch buffer */
static int s_aws_mqtt5_decoder_decode_connack(struct aws_mqtt5_decoder *decoder) {
struct aws_mqtt5_packet_connack_storage storage;
if (aws_mqtt5_packet_connack_storage_init_from_external_storage(&storage, decoder->allocator)) {
return AWS_OP_ERR;
}
int result = AWS_OP_ERR;
uint8_t first_byte = decoder->packet_first_byte;
/* CONNACK flags must be zero by protocol */
if ((first_byte & 0x0F) != 0) {
goto done;
}
struct aws_byte_cursor packet_cursor = decoder->packet_cursor;
uint32_t remaining_length = decoder->remaining_length;
if (remaining_length != (uint32_t)packet_cursor.len) {
goto done;
}
uint8_t connect_flags = 0;
AWS_MQTT5_DECODE_U8(&packet_cursor, &connect_flags, done);
/* everything but the 0-bit must be 0 */
if ((connect_flags & 0xFE) != 0) {
goto done;
}
struct aws_mqtt5_packet_connack_view *storage_view = &storage.storage_view;
storage_view->session_present = (connect_flags & 0x01) != 0;
uint8_t reason_code = 0;
AWS_MQTT5_DECODE_U8(&packet_cursor, &reason_code, done);
storage_view->reason_code = reason_code;
uint32_t property_length = 0;
AWS_MQTT5_DECODE_VLI(&packet_cursor, &property_length, done);
if (property_length != (uint32_t)packet_cursor.len) {
goto done;
}
while (packet_cursor.len > 0) {
if (s_read_connack_property(&storage, &packet_cursor)) {
goto done;
}
}
storage_view->user_property_count = aws_mqtt5_user_property_set_size(&storage.user_properties);
storage_view->user_properties = storage.user_properties.properties.data;
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_SUCCESS) {
if (decoder->options.on_packet_received != NULL) {
result = (*decoder->options.on_packet_received)(
AWS_MQTT5_PT_CONNACK, &storage.storage_view, decoder->options.callback_user_data);
}
} else {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "id=%p: CONNACK decode failure", decoder->options.callback_user_data);
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
aws_mqtt5_packet_connack_storage_clean_up(&storage);
return result;
}
/* decode function for all PUBLISH properties */
static int s_read_publish_property(
struct aws_mqtt5_packet_publish_storage *storage,
struct aws_byte_cursor *packet_cursor) {
int result = AWS_OP_ERR;
uint8_t property_type = 0;
AWS_MQTT5_DECODE_U8(packet_cursor, &property_type, done);
struct aws_mqtt5_packet_publish_view *storage_view = &storage->storage_view;
switch (property_type) {
case AWS_MQTT5_PROPERTY_TYPE_PAYLOAD_FORMAT_INDICATOR:
AWS_MQTT5_DECODE_U8_OPTIONAL(packet_cursor, &storage->payload_format, &storage_view->payload_format, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_MESSAGE_EXPIRY_INTERVAL:
AWS_MQTT5_DECODE_U32_OPTIONAL(
packet_cursor,
&storage->message_expiry_interval_seconds,
&storage_view->message_expiry_interval_seconds,
done);
break;
case AWS_MQTT5_PROPERTY_TYPE_TOPIC_ALIAS:
AWS_MQTT5_DECODE_U16_OPTIONAL(packet_cursor, &storage->topic_alias, &storage_view->topic_alias, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_RESPONSE_TOPIC:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->response_topic, &storage_view->response_topic, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_CORRELATION_DATA:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->correlation_data, &storage_view->correlation_data, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_USER_PROPERTY:
if (aws_mqtt5_decode_user_property(packet_cursor, &storage->user_properties)) {
goto done;
}
break;
case AWS_MQTT5_PROPERTY_TYPE_SUBSCRIPTION_IDENTIFIER: {
uint32_t subscription_identifier = 0;
AWS_MQTT5_DECODE_VLI(packet_cursor, &subscription_identifier, done);
aws_array_list_push_back(&storage->subscription_identifiers, &subscription_identifier);
break;
}
case AWS_MQTT5_PROPERTY_TYPE_CONTENT_TYPE:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->content_type, &storage_view->content_type, done);
break;
default:
goto done;
}
result = AWS_OP_SUCCESS;
done:
if (result != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Read PUBLISH property decode failure");
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return result;
}
/* decodes a PUBLISH packet whose data must be in the scratch buffer */
static int s_aws_mqtt5_decoder_decode_publish(struct aws_mqtt5_decoder *decoder) {
struct aws_mqtt5_packet_publish_storage storage;
if (aws_mqtt5_packet_publish_storage_init_from_external_storage(&storage, decoder->allocator)) {
return AWS_OP_ERR;
}
int result = AWS_OP_ERR;
struct aws_mqtt5_packet_publish_view *storage_view = &storage.storage_view;
/*
* Fixed Header
* byte 1:
* bits 4-7: MQTT Control Packet Type
* bit 3: DUP flag
* bit 1-2: QoS level
* bit 0: RETAIN
* byte 2-x: Remaining Length as Variable Byte Integer (1-4 bytes)
*/
uint8_t first_byte = decoder->packet_first_byte;
if ((first_byte & PUBLISH_PACKET_FIXED_HEADER_DUPLICATE_FLAG) != 0) {
storage_view->duplicate = true;
}
if ((first_byte & PUBLISH_PACKET_FIXED_HEADER_RETAIN_FLAG) != 0) {
storage_view->retain = true;
}
storage_view->qos = (enum aws_mqtt5_qos)((first_byte >> 1) & PUBLISH_PACKET_FIXED_HEADER_QOS_FLAG);
struct aws_byte_cursor packet_cursor = decoder->packet_cursor;
uint32_t remaining_length = decoder->remaining_length;
if (remaining_length != (uint32_t)packet_cursor.len) {
goto done;
}
/*
* Topic Name
* Packet Identifier (only present for > QoS 0)
* Properties
* - Property Length
* - Properties
* Payload
*/
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR(&packet_cursor, &storage_view->topic, done);
if (storage_view->qos > 0) {
AWS_MQTT5_DECODE_U16(&packet_cursor, &storage_view->packet_id, done);
}
uint32_t property_length = 0;
AWS_MQTT5_DECODE_VLI(&packet_cursor, &property_length, done);
if (property_length > (uint32_t)packet_cursor.len) {
goto done;
}
struct aws_byte_cursor properties_cursor = aws_byte_cursor_advance(&packet_cursor, property_length);
while (properties_cursor.len > 0) {
if (s_read_publish_property(&storage, &properties_cursor)) {
goto done;
}
}
storage_view->subscription_identifier_count = aws_array_list_length(&storage.subscription_identifiers);
storage_view->subscription_identifiers = storage.subscription_identifiers.data;
storage_view->user_property_count = aws_mqtt5_user_property_set_size(&storage.user_properties);
storage_view->user_properties = storage.user_properties.properties.data;
storage_view->payload = packet_cursor;
if (storage_view->topic_alias != NULL) {
if (decoder->topic_alias_resolver == NULL) {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_CLIENT,
"id=%p: PUBLISH packet contained topic alias when not allowed",
decoder->options.callback_user_data);
goto done;
}
uint16_t topic_alias_id = *storage_view->topic_alias;
if (topic_alias_id == 0) {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_CLIENT,
"id=%p: PUBLISH packet contained illegal topic alias",
decoder->options.callback_user_data);
goto done;
}
if (storage_view->topic.len > 0) {
if (aws_mqtt5_inbound_topic_alias_resolver_register_alias(
decoder->topic_alias_resolver, topic_alias_id, storage_view->topic)) {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_CLIENT, "id=%p: unable to register topic alias", decoder->options.callback_user_data);
goto done;
}
} else {
if (aws_mqtt5_inbound_topic_alias_resolver_resolve_alias(
decoder->topic_alias_resolver, topic_alias_id, &storage_view->topic)) {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_CLIENT,
"id=%p: PUBLISH packet contained unknown topic alias",
decoder->options.callback_user_data);
goto done;
}
}
}
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_SUCCESS) {
if (decoder->options.on_packet_received != NULL) {
result = (*decoder->options.on_packet_received)(
AWS_MQTT5_PT_PUBLISH, &storage.storage_view, decoder->options.callback_user_data);
}
} else {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "id=%p: PUBLISH decode failure", decoder->options.callback_user_data);
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
aws_mqtt5_packet_publish_storage_clean_up(&storage);
return result;
}
/* decode function for all PUBACK properties */
static int s_read_puback_property(
struct aws_mqtt5_packet_puback_storage *storage,
struct aws_byte_cursor *packet_cursor) {
int result = AWS_OP_ERR;
uint8_t property_type = 0;
AWS_MQTT5_DECODE_U8(packet_cursor, &property_type, done);
struct aws_mqtt5_packet_puback_view *storage_view = &storage->storage_view;
switch (property_type) {
case AWS_MQTT5_PROPERTY_TYPE_REASON_STRING:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->reason_string, &storage_view->reason_string, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_USER_PROPERTY:
if (aws_mqtt5_decode_user_property(packet_cursor, &storage->user_properties)) {
goto done;
}
break;
default:
goto done;
}
result = AWS_OP_SUCCESS;
done:
if (result != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Read PUBACK property decode failure");
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return result;
}
/* decodes a PUBACK packet whose data must be in the scratch buffer */
static int s_aws_mqtt5_decoder_decode_puback(struct aws_mqtt5_decoder *decoder) {
struct aws_mqtt5_packet_puback_storage storage;
if (aws_mqtt5_packet_puback_storage_init_from_external_storage(&storage, decoder->allocator)) {
return AWS_OP_ERR;
}
int result = AWS_OP_ERR;
uint8_t first_byte = decoder->packet_first_byte;
/* PUBACK flags must be zero by protocol */
if ((first_byte & 0x0F) != 0) {
goto done;
}
struct aws_byte_cursor packet_cursor = decoder->packet_cursor;
uint32_t remaining_length = decoder->remaining_length;
if (remaining_length != (uint32_t)packet_cursor.len) {
goto done;
}
struct aws_mqtt5_packet_puback_view *storage_view = &storage.storage_view;
AWS_MQTT5_DECODE_U16(&packet_cursor, &storage_view->packet_id, done);
/* Packet can end immediately following packet id with default success reason code */
uint8_t reason_code = 0;
if (packet_cursor.len > 0) {
AWS_MQTT5_DECODE_U8(&packet_cursor, &reason_code, done);
/* Packet can end immediately following reason code */
if (packet_cursor.len > 0) {
uint32_t property_length = 0;
AWS_MQTT5_DECODE_VLI(&packet_cursor, &property_length, done);
if (property_length != (uint32_t)packet_cursor.len) {
goto done;
}
while (packet_cursor.len > 0) {
if (s_read_puback_property(&storage, &packet_cursor)) {
goto done;
}
}
}
}
storage_view->user_property_count = aws_mqtt5_user_property_set_size(&storage.user_properties);
storage_view->user_properties = storage.user_properties.properties.data;
storage_view->reason_code = reason_code;
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_SUCCESS) {
if (decoder->options.on_packet_received != NULL) {
result = (*decoder->options.on_packet_received)(
AWS_MQTT5_PT_PUBACK, &storage.storage_view, decoder->options.callback_user_data);
}
} else {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_GENERAL,
"(%p) aws_mqtt5_decoder - PUBACK decode failure",
decoder->options.callback_user_data);
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
aws_mqtt5_packet_puback_storage_clean_up(&storage);
return result;
}
/* decode function for all SUBACK properties */
static int s_read_suback_property(
struct aws_mqtt5_packet_suback_storage *storage,
struct aws_byte_cursor *packet_cursor) {
int result = AWS_OP_ERR;
uint8_t property_type = 0;
AWS_MQTT5_DECODE_U8(packet_cursor, &property_type, done);
struct aws_mqtt5_packet_suback_view *storage_view = &storage->storage_view;
switch (property_type) {
case AWS_MQTT5_PROPERTY_TYPE_REASON_STRING:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->reason_string, &storage_view->reason_string, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_USER_PROPERTY:
if (aws_mqtt5_decode_user_property(packet_cursor, &storage->user_properties)) {
goto done;
}
break;
default:
goto done;
}
result = AWS_OP_SUCCESS;
done:
if (result != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Read SUBACK property decode failure");
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return result;
}
/* decodes a SUBACK packet whose data must be in the scratch buffer */
static int s_aws_mqtt5_decoder_decode_suback(struct aws_mqtt5_decoder *decoder) {
struct aws_mqtt5_packet_suback_storage storage;
if (aws_mqtt5_packet_suback_storage_init_from_external_storage(&storage, decoder->allocator)) {
return AWS_OP_ERR;
}
int result = AWS_OP_ERR;
struct aws_mqtt5_packet_suback_view *storage_view = &storage.storage_view;
struct aws_byte_cursor packet_cursor = decoder->packet_cursor;
AWS_MQTT5_DECODE_U16(&packet_cursor, &storage_view->packet_id, done);
uint32_t property_length = 0;
AWS_MQTT5_DECODE_VLI(&packet_cursor, &property_length, done);
struct aws_byte_cursor properties_cursor = aws_byte_cursor_advance(&packet_cursor, property_length);
while (properties_cursor.len > 0) {
if (s_read_suback_property(&storage, &properties_cursor)) {
goto done;
}
}
aws_array_list_init_dynamic(
&storage.reason_codes, decoder->allocator, packet_cursor.len, sizeof(enum aws_mqtt5_suback_reason_code));
while (packet_cursor.len > 0) {
uint8_t reason_code;
AWS_MQTT5_DECODE_U8(&packet_cursor, &reason_code, done);
enum aws_mqtt5_suback_reason_code reason_code_enum = reason_code;
aws_array_list_push_back(&storage.reason_codes, &reason_code_enum);
}
storage_view->reason_code_count = aws_array_list_length(&storage.reason_codes);
storage_view->reason_codes = storage.reason_codes.data;
storage_view->user_property_count = aws_mqtt5_user_property_set_size(&storage.user_properties);
storage_view->user_properties = storage.user_properties.properties.data;
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_SUCCESS) {
if (decoder->options.on_packet_received != NULL) {
result = (*decoder->options.on_packet_received)(
AWS_MQTT5_PT_SUBACK, &storage.storage_view, decoder->options.callback_user_data);
}
} else {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_GENERAL,
"(%p) aws_mqtt5_decoder - SUBACK decode failure",
decoder->options.callback_user_data);
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
aws_mqtt5_packet_suback_storage_clean_up(&storage);
return result;
}
/* decode function for all UNSUBACK properties */
static int s_read_unsuback_property(
struct aws_mqtt5_packet_unsuback_storage *storage,
struct aws_byte_cursor *packet_cursor) {
int result = AWS_OP_ERR;
uint8_t property_type = 0;
AWS_MQTT5_DECODE_U8(packet_cursor, &property_type, done);
struct aws_mqtt5_packet_unsuback_view *storage_view = &storage->storage_view;
switch (property_type) {
case AWS_MQTT5_PROPERTY_TYPE_REASON_STRING:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->reason_string, &storage_view->reason_string, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_USER_PROPERTY:
if (aws_mqtt5_decode_user_property(packet_cursor, &storage->user_properties)) {
goto done;
}
break;
default:
goto done;
}
result = AWS_OP_SUCCESS;
done:
if (result != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Read UNSUBACK property decode failure");
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return result;
}
/* decodes an UNSUBACK packet whose data must be in the scratch buffer */
static int s_aws_mqtt5_decoder_decode_unsuback(struct aws_mqtt5_decoder *decoder) {
struct aws_mqtt5_packet_unsuback_storage storage;
/*
* Fixed Header
* byte 1: MQTT5 Control Packet - Reserved 0
* byte 2 - x: VLI Remaining Length
*
* Variable Header
* byte 1-2: Packet Identifier
* Byte 3 - x: VLI Property Length
*
* Properties
* byte 1: Idenfier
* bytes 2 - x: Property content
*
* Payload
* 1 byte per reason code in order of unsub requests
*/
if (aws_mqtt5_packet_unsuback_storage_init_from_external_storage(&storage, decoder->allocator)) {
return AWS_OP_ERR;
}
int result = AWS_OP_ERR;
struct aws_byte_cursor packet_cursor = decoder->packet_cursor;
struct aws_mqtt5_packet_unsuback_view *storage_view = &storage.storage_view;
AWS_MQTT5_DECODE_U16(&packet_cursor, &storage_view->packet_id, done);
uint32_t property_length = 0;
AWS_MQTT5_DECODE_VLI(&packet_cursor, &property_length, done);
struct aws_byte_cursor properties_cursor = aws_byte_cursor_advance(&packet_cursor, property_length);
while (properties_cursor.len > 0) {
if (s_read_unsuback_property(&storage, &properties_cursor)) {
goto done;
}
}
aws_array_list_init_dynamic(
&storage.reason_codes, decoder->allocator, packet_cursor.len, sizeof(enum aws_mqtt5_unsuback_reason_code));
while (packet_cursor.len > 0) {
uint8_t reason_code;
AWS_MQTT5_DECODE_U8(&packet_cursor, &reason_code, done);
enum aws_mqtt5_unsuback_reason_code reason_code_enum = reason_code;
aws_array_list_push_back(&storage.reason_codes, &reason_code_enum);
}
storage_view->reason_code_count = aws_array_list_length(&storage.reason_codes);
storage_view->reason_codes = storage.reason_codes.data;
storage_view->user_property_count = aws_mqtt5_user_property_set_size(&storage.user_properties);
storage_view->user_properties = storage.user_properties.properties.data;
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_SUCCESS) {
if (decoder->options.on_packet_received != NULL) {
result = (*decoder->options.on_packet_received)(
AWS_MQTT5_PT_UNSUBACK, &storage.storage_view, decoder->options.callback_user_data);
}
} else {
AWS_LOGF_ERROR(
AWS_LS_MQTT5_GENERAL,
"(%p) aws_mqtt5_decoder - UNSUBACK decode failure",
decoder->options.callback_user_data);
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
aws_mqtt5_packet_unsuback_storage_clean_up(&storage);
return result;
}
/* decode function for all DISCONNECT properties */
static int s_read_disconnect_property(
struct aws_mqtt5_packet_disconnect_storage *storage,
struct aws_byte_cursor *packet_cursor) {
int result = AWS_OP_ERR;
uint8_t property_type = 0;
AWS_MQTT5_DECODE_U8(packet_cursor, &property_type, done);
struct aws_mqtt5_packet_disconnect_view *storage_view = &storage->storage_view;
switch (property_type) {
case AWS_MQTT5_PROPERTY_TYPE_SESSION_EXPIRY_INTERVAL:
AWS_MQTT5_DECODE_U32_OPTIONAL(
packet_cursor,
&storage->session_expiry_interval_seconds,
&storage_view->session_expiry_interval_seconds,
done);
break;
case AWS_MQTT5_PROPERTY_TYPE_SERVER_REFERENCE:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->server_reference, &storage_view->server_reference, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_REASON_STRING:
AWS_MQTT5_DECODE_LENGTH_PREFIXED_CURSOR_OPTIONAL(
packet_cursor, &storage->reason_string, &storage_view->reason_string, done);
break;
case AWS_MQTT5_PROPERTY_TYPE_USER_PROPERTY:
if (aws_mqtt5_decode_user_property(packet_cursor, &storage->user_properties)) {
goto done;
}
break;
default:
goto done;
}
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_ERR) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Read DISCONNECT property decode failure");
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return result;
}
/* decodes a DISCONNECT packet whose data must be in the scratch buffer */
static int s_aws_mqtt5_decoder_decode_disconnect(struct aws_mqtt5_decoder *decoder) {
struct aws_mqtt5_packet_disconnect_storage storage;
if (aws_mqtt5_packet_disconnect_storage_init_from_external_storage(&storage, decoder->allocator)) {
return AWS_OP_ERR;
}
int result = AWS_OP_ERR;
uint8_t first_byte = decoder->packet_first_byte;
/* DISCONNECT flags must be zero by protocol */
if ((first_byte & 0x0F) != 0) {
goto done;
}
struct aws_byte_cursor packet_cursor = decoder->packet_cursor;
uint32_t remaining_length = decoder->remaining_length;
if (remaining_length != (uint32_t)packet_cursor.len) {
goto done;
}
struct aws_mqtt5_packet_disconnect_view *storage_view = &storage.storage_view;
if (remaining_length > 0) {
uint8_t reason_code = 0;
AWS_MQTT5_DECODE_U8(&packet_cursor, &reason_code, done);
storage_view->reason_code = reason_code;
if (packet_cursor.len == 0) {
result = AWS_OP_SUCCESS;
goto done;
}
uint32_t property_length = 0;
AWS_MQTT5_DECODE_VLI(&packet_cursor, &property_length, done);
if (property_length != (uint32_t)packet_cursor.len) {
goto done;
}
while (packet_cursor.len > 0) {
if (s_read_disconnect_property(&storage, &packet_cursor)) {
goto done;
}
}
}
storage_view->user_property_count = aws_mqtt5_user_property_set_size(&storage.user_properties);
storage_view->user_properties = storage.user_properties.properties.data;
result = AWS_OP_SUCCESS;
done:
if (result == AWS_OP_SUCCESS) {
if (decoder->options.on_packet_received != NULL) {
result = (*decoder->options.on_packet_received)(
AWS_MQTT5_PT_DISCONNECT, &storage.storage_view, decoder->options.callback_user_data);
}
} else {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "id=%p: DISCONNECT decode failure", decoder->options.callback_user_data);
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
aws_mqtt5_packet_disconnect_storage_clean_up(&storage);
return result;
}
static int s_aws_mqtt5_decoder_decode_pingresp(struct aws_mqtt5_decoder *decoder) {
if (decoder->packet_cursor.len != 0) {
goto error;
}
uint8_t expected_first_byte = aws_mqtt5_compute_fixed_header_byte1(AWS_MQTT5_PT_PINGRESP, 0);
if (decoder->packet_first_byte != expected_first_byte || decoder->remaining_length != 0) {
goto error;
}
int result = AWS_OP_SUCCESS;
if (decoder->options.on_packet_received != NULL) {
result =
(*decoder->options.on_packet_received)(AWS_MQTT5_PT_PINGRESP, NULL, decoder->options.callback_user_data);
}
return result;
error:
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "id=%p: PINGRESP decode failure", decoder->options.callback_user_data);
return aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
static int s_aws_mqtt5_decoder_decode_packet(struct aws_mqtt5_decoder *decoder) {
enum aws_mqtt5_packet_type packet_type = (enum aws_mqtt5_packet_type)(decoder->packet_first_byte >> 4);
aws_mqtt5_decoding_fn *decoder_fn = decoder->options.decoder_table->decoders_by_packet_type[packet_type];
if (decoder_fn == NULL) {
AWS_LOGF_ERROR(AWS_LS_MQTT5_CLIENT, "Decoder decode packet function missing for enum: %d", packet_type);
return aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
}
return (*decoder_fn)(decoder);
}
/*
* (Streaming) Given a packet type and a variable length integer specifying the packet length, this state either
* (1) decodes directly from the cursor if possible
* (2) reads the packet into the scratch buffer and then decodes it once it is completely present
*
*/
static enum aws_mqtt5_decode_result_type s_aws_mqtt5_decoder_read_packet_on_data(
struct aws_mqtt5_decoder *decoder,
struct aws_byte_cursor *data) {
/* Are we able to decode directly from the channel message data buffer? */
if (decoder->scratch_space.len == 0 && decoder->remaining_length <= data->len) {
/* The cursor contains the entire packet, so decode directly from the backing io message buffer */
decoder->packet_cursor = aws_byte_cursor_advance(data, decoder->remaining_length);
} else {
/* If the packet is fragmented across multiple io messages, then we buffer it internally */
size_t unread_length = decoder->remaining_length - decoder->scratch_space.len;
size_t copy_length = aws_min_size(unread_length, data->len);
struct aws_byte_cursor copy_cursor = aws_byte_cursor_advance(data, copy_length);
if (aws_byte_buf_append_dynamic(&decoder->scratch_space, ©_cursor)) {
return AWS_MQTT5_DRT_ERROR;
}
if (copy_length < unread_length) {
return AWS_MQTT5_DRT_MORE_DATA;
}
decoder->packet_cursor = aws_byte_cursor_from_buf(&decoder->scratch_space);
}
if (s_aws_mqtt5_decoder_decode_packet(decoder)) {
return AWS_MQTT5_DRT_ERROR;
}
s_enter_state(decoder, AWS_MQTT5_DS_READ_PACKET_TYPE);
return AWS_MQTT5_DRT_SUCCESS;
}
/* top-level entry function for all new data received from the remote mqtt endpoint */
int aws_mqtt5_decoder_on_data_received(struct aws_mqtt5_decoder *decoder, struct aws_byte_cursor data) {
enum aws_mqtt5_decode_result_type result = AWS_MQTT5_DRT_SUCCESS;
while (result == AWS_MQTT5_DRT_SUCCESS) {
switch (decoder->state) {
case AWS_MQTT5_DS_READ_PACKET_TYPE:
result = s_aws_mqtt5_decoder_read_packet_type_on_data(decoder, &data);
break;
case AWS_MQTT5_DS_READ_REMAINING_LENGTH:
result = s_aws_mqtt5_decoder_read_remaining_length_on_data(decoder, &data);
break;
case AWS_MQTT5_DS_READ_PACKET:
result = s_aws_mqtt5_decoder_read_packet_on_data(decoder, &data);
break;
default:
result = AWS_MQTT5_DRT_ERROR;
break;
}
}
if (result == AWS_MQTT5_DRT_ERROR) {
aws_raise_error(AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR);
decoder->state = AWS_MQTT5_DS_FATAL_ERROR;
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
static struct aws_mqtt5_decoder_function_table s_aws_mqtt5_decoder_default_function_table = {
.decoders_by_packet_type =
{
NULL, /* RESERVED = 0 */
NULL, /* CONNECT */
&s_aws_mqtt5_decoder_decode_connack, /* CONNACK */
&s_aws_mqtt5_decoder_decode_publish, /* PUBLISH */
&s_aws_mqtt5_decoder_decode_puback, /* PUBACK */
NULL, /* PUBREC */
NULL, /* PUBREL */
NULL, /* PUBCOMP */
NULL, /* SUBSCRIBE */
&s_aws_mqtt5_decoder_decode_suback, /* SUBACK */
NULL, /* UNSUBSCRIBE */
&s_aws_mqtt5_decoder_decode_unsuback, /* UNSUBACK */
NULL, /* PINGREQ */
&s_aws_mqtt5_decoder_decode_pingresp, /* PINGRESP */
&s_aws_mqtt5_decoder_decode_disconnect, /* DISCONNECT */
NULL /* AUTH */
},
};
const struct aws_mqtt5_decoder_function_table *g_aws_mqtt5_default_decoder_table =
&s_aws_mqtt5_decoder_default_function_table;
int aws_mqtt5_decoder_init(
struct aws_mqtt5_decoder *decoder,
struct aws_allocator *allocator,
struct aws_mqtt5_decoder_options *options) {
AWS_ZERO_STRUCT(*decoder);
decoder->options = *options;
if (decoder->options.decoder_table == NULL) {
decoder->options.decoder_table = g_aws_mqtt5_default_decoder_table;
}
decoder->allocator = allocator;
decoder->state = AWS_MQTT5_DS_READ_PACKET_TYPE;
if (aws_byte_buf_init(&decoder->scratch_space, allocator, AWS_MQTT5_DECODER_BUFFER_START_SIZE)) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
void aws_mqtt5_decoder_reset(struct aws_mqtt5_decoder *decoder) {
s_reset_decoder_for_new_packet(decoder);
decoder->state = AWS_MQTT5_DS_READ_PACKET_TYPE;
}
void aws_mqtt5_decoder_clean_up(struct aws_mqtt5_decoder *decoder) {
aws_byte_buf_clean_up(&decoder->scratch_space);
}
void aws_mqtt5_decoder_set_inbound_topic_alias_resolver(
struct aws_mqtt5_decoder *decoder,
struct aws_mqtt5_inbound_topic_alias_resolver *resolver) {
decoder->topic_alias_resolver = resolver;
}
|