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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mqtt/mqtt.h>
#include <aws/common/encoding.h>
#include <aws/http/http.h>
#include <aws/io/logging.h>
/*******************************************************************************
* Topic Validation
******************************************************************************/
static bool s_is_valid_topic(const struct aws_byte_cursor *topic, bool is_filter) {
if (topic == NULL) {
return false;
}
/* [MQTT-4.7.3-1] Check existance and length */
if (!topic->ptr || !topic->len) {
return false;
}
if (aws_mqtt_validate_utf8_text(*topic) == AWS_OP_ERR) {
return false;
}
/* [MQTT-4.7.3-2] Check for the null character */
if (memchr(topic->ptr, 0, topic->len)) {
return false;
}
/* [MQTT-4.7.3-3] Topic must not be too long */
if (topic->len > 65535) {
return false;
}
bool saw_hash = false;
struct aws_byte_cursor topic_part;
AWS_ZERO_STRUCT(topic_part);
while (aws_byte_cursor_next_split(topic, '/', &topic_part)) {
if (saw_hash) {
/* [MQTT-4.7.1-2] If last part was a '#' and there's still another part, it's an invalid topic */
return false;
}
if (topic_part.len == 0) {
/* 0 length parts are fine */
continue;
}
/* Check single level wildcard */
if (memchr(topic_part.ptr, '+', topic_part.len)) {
if (!is_filter) {
/* [MQTT-4.7.1-3] + only allowed on filters */
return false;
}
if (topic_part.len > 1) {
/* topic part must be 1 character long */
return false;
}
}
/* Check multi level wildcard */
if (memchr(topic_part.ptr, '#', topic_part.len)) {
if (!is_filter) {
/* [MQTT-4.7.1-2] # only allowed on filters */
return false;
}
if (topic_part.len > 1) {
/* topic part must be 1 character long */
return false;
}
saw_hash = true;
}
}
return true;
}
bool aws_mqtt_is_valid_topic(const struct aws_byte_cursor *topic) {
return s_is_valid_topic(topic, false);
}
bool aws_mqtt_is_valid_topic_filter(const struct aws_byte_cursor *topic_filter) {
return s_is_valid_topic(topic_filter, true);
}
/*******************************************************************************
* Library Init
******************************************************************************/
#define AWS_DEFINE_ERROR_INFO_MQTT(C, ES) AWS_DEFINE_ERROR_INFO(C, ES, "libaws-c-mqtt")
/* clang-format off */
static struct aws_error_info s_errors[] = {
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_INVALID_RESERVED_BITS,
"Bits marked as reserved in the MQTT spec were incorrectly set."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_BUFFER_TOO_BIG,
"[MQTT-1.5.3] Encoded UTF-8 buffers may be no bigger than 65535 bytes."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_INVALID_REMAINING_LENGTH,
"[MQTT-2.2.3] Encoded remaining length field is malformed."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_UNSUPPORTED_PROTOCOL_NAME,
"[MQTT-3.1.2-1] Protocol name specified is unsupported."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_UNSUPPORTED_PROTOCOL_LEVEL,
"[MQTT-3.1.2-2] Protocol level specified is unsupported."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_INVALID_CREDENTIALS,
"[MQTT-3.1.2-21] Connect packet may not include password when no username is present."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_INVALID_QOS,
"Both bits in a QoS field must not be set."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_INVALID_PACKET_TYPE,
"Packet type in packet fixed header is invalid."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_INVALID_TOPIC,
"Topic or filter is invalid."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_TIMEOUT,
"Time limit between request and response has been exceeded."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_PROTOCOL_ERROR,
"Protocol error occurred."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_NOT_CONNECTED,
"The requested operation is invalid as the connection is not open."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_ALREADY_CONNECTED,
"The requested operation is invalid as the connection is already open."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_BUILT_WITHOUT_WEBSOCKETS,
"Library built without MQTT_WITH_WEBSOCKETS option."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_UNEXPECTED_HANGUP,
"The connection was closed unexpectedly."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CONNECTION_SHUTDOWN,
"MQTT operation interrupted by connection shutdown."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CONNECTION_DESTROYED,
"Connection has started destroying process, all uncompleted requests will fail."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CONNECTION_DISCONNECTING,
"Connection is disconnecting, it's not safe to do this operation until the connection finishes shutdown."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CANCELLED_FOR_CLEAN_SESSION,
"Old requests from the previous session are cancelled, and offline request will not be accept."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_QUEUE_FULL,
"MQTT request queue is full."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_CLIENT_OPTIONS_VALIDATION,
"Invalid mqtt5 client options value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_CONNECT_OPTIONS_VALIDATION,
"Invalid mqtt5 connect packet options value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_DISCONNECT_OPTIONS_VALIDATION,
"Invalid mqtt5 disconnect packet options value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_PUBLISH_OPTIONS_VALIDATION,
"Invalid mqtt5 publish packet options value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_SUBSCRIBE_OPTIONS_VALIDATION,
"Invalid mqtt5 subscribe packet options value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_UNSUBSCRIBE_OPTIONS_VALIDATION,
"Invalid mqtt5 unsubscribe packet options value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_USER_PROPERTY_VALIDATION,
"Invalid mqtt5 user property value."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_PACKET_VALIDATION,
"General mqtt5 packet validation error"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_ENCODE_FAILURE,
"Error occurred while encoding an outgoing mqtt5 packet"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_DECODE_PROTOCOL_ERROR,
"Mqtt5 decoder received an invalid packet that broke mqtt5 protocol rules"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_CONNACK_CONNECTION_REFUSED,
"Remote endpoint rejected the CONNECT attempt by returning an unsuccessful CONNACK"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_CONNACK_TIMEOUT,
"Remote endpoint did not respond to a CONNECT request before timeout exceeded"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_PING_RESPONSE_TIMEOUT,
"Remote endpoint did not respond to a PINGREQ before timeout exceeded"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_USER_REQUESTED_STOP,
"Mqtt5 client connection interrupted by user request."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_DISCONNECT_RECEIVED,
"Mqtt5 client connection interrupted by server DISCONNECT."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_CLIENT_TERMINATED,
"Mqtt5 client terminated by user request."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_OPERATION_FAILED_DUE_TO_OFFLINE_QUEUE_POLICY,
"Mqtt5 operation failed due to a disconnection event in conjunction with the client's offline queue retention policy."),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_ENCODE_SIZE_UNSUPPORTED_PACKET_TYPE,
"Unsupported packet type for encode size calculation"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_OPERATION_PROCESSING_FAILURE,
"Error while processing mqtt5 operational state"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_INVALID_INBOUND_TOPIC_ALIAS,
"Incoming publish contained an invalid (too large or unknown) topic alias"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_INVALID_OUTBOUND_TOPIC_ALIAS,
"Outgoing publish contained an invalid (too large or unknown) topic alias"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT5_INVALID_UTF8_STRING,
"Outbound packet contains invalid utf-8 data in a field that must be utf-8"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CONNECTION_RESET_FOR_ADAPTER_CONNECT,
"Mqtt5 connection was reset by the Mqtt3 adapter in order to guarantee correct connection configuration"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CONNECTION_RESUBSCRIBE_NO_TOPICS,
"Resubscribe was called when there were no subscriptions"),
AWS_DEFINE_ERROR_INFO_MQTT(
AWS_ERROR_MQTT_CONNECTION_SUBSCRIBE_FAILURE,
"MQTT subscribe operation failed"),
};
/* clang-format on */
#undef AWS_DEFINE_ERROR_INFO_MQTT
static struct aws_error_info_list s_error_list = {
.error_list = s_errors,
.count = AWS_ARRAY_SIZE(s_errors),
};
/* clang-format off */
static struct aws_log_subject_info s_logging_subjects[] = {
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT_GENERAL, "mqtt", "Misc MQTT logging"),
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT_CLIENT, "mqtt-client", "MQTT client and connections"),
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT_TOPIC_TREE, "mqtt-topic-tree", "MQTT subscription tree"),
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT5_GENERAL, "mqtt5-general", "Misc MQTT5 logging"),
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT5_CLIENT, "mqtt5-client", "MQTT5 client and connections"),
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT5_CANARY, "mqtt5-canary", "MQTT5 canary logging"),
DEFINE_LOG_SUBJECT_INFO(AWS_LS_MQTT5_TO_MQTT3_ADAPTER, "mqtt5-to-mqtt3-adapter", "MQTT5-To-MQTT3 adapter logging"),
};
/* clang-format on */
static struct aws_log_subject_info_list s_logging_subjects_list = {
.subject_list = s_logging_subjects,
.count = AWS_ARRAY_SIZE(s_logging_subjects),
};
static bool s_mqtt_library_initialized = false;
void aws_mqtt_library_init(struct aws_allocator *allocator) {
(void)allocator;
if (!s_mqtt_library_initialized) {
s_mqtt_library_initialized = true;
aws_io_library_init(allocator);
aws_http_library_init(allocator);
aws_register_error_info(&s_error_list);
aws_register_log_subject_info_list(&s_logging_subjects_list);
}
}
void aws_mqtt_library_clean_up(void) {
if (s_mqtt_library_initialized) {
s_mqtt_library_initialized = false;
aws_thread_join_all_managed();
aws_unregister_error_info(&s_error_list);
aws_unregister_log_subject_info_list(&s_logging_subjects_list);
aws_http_library_clean_up();
aws_io_library_clean_up();
}
}
void aws_mqtt_fatal_assert_library_initialized(void) {
if (!s_mqtt_library_initialized) {
AWS_LOGF_FATAL(
AWS_LS_MQTT_GENERAL,
"aws_mqtt_library_init() must be called before using any functionality in aws-c-mqtt.");
AWS_FATAL_ASSERT(s_mqtt_library_initialized);
}
}
/* UTF-8 encoded string validation respect to [MQTT-1.5.3-2]. */
static int aws_mqtt_utf8_decoder(uint32_t codepoint, void *user_data) {
(void)user_data;
/* U+0000 - A UTF-8 Encoded String MUST NOT include an encoding of the null character U+0000. [MQTT-1.5.4-2]
* U+0001..U+001F control characters are not valid
*/
if (AWS_UNLIKELY(codepoint <= 0x001F)) {
return aws_raise_error(AWS_ERROR_MQTT5_INVALID_UTF8_STRING);
}
/* U+007F..U+009F control characters are not valid */
if (AWS_UNLIKELY((codepoint >= 0x007F) && (codepoint <= 0x009F))) {
return aws_raise_error(AWS_ERROR_MQTT5_INVALID_UTF8_STRING);
}
/* Unicode non-characters are not valid: https://www.unicode.org/faq/private_use.html#nonchar1 */
if (AWS_UNLIKELY((codepoint & 0x00FFFF) >= 0x00FFFE)) {
return aws_raise_error(AWS_ERROR_MQTT5_INVALID_UTF8_STRING);
}
if (AWS_UNLIKELY(codepoint >= 0xFDD0 && codepoint <= 0xFDEF)) {
return aws_raise_error(AWS_ERROR_MQTT5_INVALID_UTF8_STRING);
}
return AWS_OP_SUCCESS;
}
static struct aws_utf8_decoder_options s_aws_mqtt_utf8_decoder_options = {
.on_codepoint = aws_mqtt_utf8_decoder,
};
int aws_mqtt_validate_utf8_text(struct aws_byte_cursor text) {
return aws_decode_utf8(text, &s_aws_mqtt_utf8_decoder_options);
}
|