Loading...
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 | /* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <net/mqtt.h> #include "mqtt_pkt.h" #include <net/net_ip.h> #include <net/net_pkt.h> #include <net/net_app.h> #include <net/buf.h> #include <errno.h> #define MSG_SIZE CONFIG_MQTT_MSG_MAX_SIZE #define MQTT_BUF_CTR (1 + CONFIG_MQTT_ADDITIONAL_BUFFER_CTR) /* Memory pool internally used to handle messages that may exceed the size of * system defined network buffer. By using this memory pool, routines don't deal * with fragmentation, so algorithms are more easy to implement. */ NET_BUF_POOL_DEFINE(mqtt_msg_pool, MQTT_BUF_CTR, MSG_SIZE, 0, NULL); #define MQTT_PUBLISHER_MIN_MSG_SIZE 2 #if defined(CONFIG_MQTT_LIB_TLS) #define TLS_HS_DEFAULT_TIMEOUT 3000 #endif int mqtt_tx_connect(struct mqtt_ctx *ctx, struct mqtt_connect_msg *msg) { struct net_buf *data = NULL; struct net_pkt *tx = NULL; int rc; data = net_buf_alloc(&mqtt_msg_pool, ctx->net_timeout); if (data == NULL) { return -ENOMEM; } ctx->clean_session = msg->clean_session ? 1 : 0; rc = mqtt_pack_connect(data->data, &data->len, MSG_SIZE, msg); if (rc != 0) { rc = -EINVAL; goto exit_connect; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { rc = -ENOMEM; goto exit_connect; } net_pkt_frag_add(tx, data); data = NULL; rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { net_pkt_unref(tx); } tx = NULL; return rc; exit_connect: net_pkt_frag_unref(data); return rc; } int mqtt_tx_disconnect(struct mqtt_ctx *ctx) { struct net_pkt *tx = NULL; /* DISCONNECT is a zero length message: 2 bytes required, no payload */ u8_t msg[2]; u16_t len; int rc; rc = mqtt_pack_disconnect(msg, &len, sizeof(msg)); if (rc != 0) { return -EINVAL; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { return -ENOMEM; } rc = net_pkt_append_all(tx, len, msg, ctx->net_timeout); if (rc != true) { rc = -ENOMEM; goto exit_disconnect; } rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { goto exit_disconnect; } ctx->connected = 0; tx = NULL; if (ctx->disconnect) { ctx->disconnect(ctx); } return rc; exit_disconnect: net_pkt_unref(tx); return rc; } /** * Writes the MQTT PUBxxx msg indicated by pkt_type with identifier 'id' * * @param [in] ctx MQTT context * @param [in] id MQTT packet identifier * @param [in] pkt_type MQTT packet type * * @retval 0 on success * @retval -EINVAL * @retval -ENOMEM if a tx pktfer is not available * @retval -EIO on network error */ static int mqtt_tx_pub_msgs(struct mqtt_ctx *ctx, u16_t id, enum mqtt_packet pkt_type) { struct net_pkt *tx = NULL; u8_t msg[4]; u16_t len; int rc; switch (pkt_type) { case MQTT_PUBACK: rc = mqtt_pack_puback(msg, &len, sizeof(msg), id); break; case MQTT_PUBCOMP: rc = mqtt_pack_pubcomp(msg, &len, sizeof(msg), id); break; case MQTT_PUBREC: rc = mqtt_pack_pubrec(msg, &len, sizeof(msg), id); break; case MQTT_PUBREL: rc = mqtt_pack_pubrel(msg, &len, sizeof(msg), id); break; default: return -EINVAL; } if (rc != 0) { return -EINVAL; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { return -ENOMEM; } rc = net_pkt_append_all(tx, len, msg, ctx->net_timeout); if (rc != true) { rc = -ENOMEM; goto exit_send; } rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { goto exit_send; } tx = NULL; return rc; exit_send: net_pkt_unref(tx); return rc; } int mqtt_tx_puback(struct mqtt_ctx *ctx, u16_t id) { return mqtt_tx_pub_msgs(ctx, id, MQTT_PUBACK); } int mqtt_tx_pubcomp(struct mqtt_ctx *ctx, u16_t id) { return mqtt_tx_pub_msgs(ctx, id, MQTT_PUBCOMP); } int mqtt_tx_pubrec(struct mqtt_ctx *ctx, u16_t id) { return mqtt_tx_pub_msgs(ctx, id, MQTT_PUBREC); } int mqtt_tx_pubrel(struct mqtt_ctx *ctx, u16_t id) { return mqtt_tx_pub_msgs(ctx, id, MQTT_PUBREL); } int mqtt_tx_publish(struct mqtt_ctx *ctx, struct mqtt_publish_msg *msg) { struct net_buf *data = NULL; struct net_pkt *tx = NULL; int rc; data = net_buf_alloc(&mqtt_msg_pool, ctx->net_timeout); if (data == NULL) { return -ENOMEM; } rc = mqtt_pack_publish(data->data, &data->len, data->size, msg); if (rc != 0) { rc = -EINVAL; goto exit_publish; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { rc = -ENOMEM; goto exit_publish; } net_pkt_frag_add(tx, data); data = NULL; rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { net_pkt_unref(tx); } tx = NULL; return rc; exit_publish: net_pkt_frag_unref(data); return rc; } int mqtt_tx_pingreq(struct mqtt_ctx *ctx) { struct net_pkt *tx = NULL; u8_t msg[2]; u16_t len; int rc; rc = mqtt_pack_pingreq(msg, &len, sizeof(msg)); if (rc != 0) { return -EINVAL; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { return -ENOMEM; } rc = net_pkt_append_all(tx, len, msg, ctx->net_timeout); if (rc != true) { rc = -ENOMEM; goto exit_pingreq; } rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { goto exit_pingreq; } tx = NULL; return rc; exit_pingreq: net_pkt_unref(tx); return rc; } int mqtt_tx_subscribe(struct mqtt_ctx *ctx, u16_t pkt_id, u8_t items, const char *topics[], const enum mqtt_qos qos[]) { struct net_buf *data = NULL; struct net_pkt *tx = NULL; int rc; data = net_buf_alloc(&mqtt_msg_pool, ctx->net_timeout); if (data == NULL) { return -ENOMEM; } rc = mqtt_pack_subscribe(data->data, &data->len, data->size, pkt_id, items, topics, qos); if (rc != 0) { rc = -EINVAL; goto exit_subs; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { rc = -ENOMEM; goto exit_subs; } net_pkt_frag_add(tx, data); data = NULL; rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { net_pkt_unref(tx); } tx = NULL; return rc; exit_subs: net_pkt_frag_unref(data); return rc; } int mqtt_tx_unsubscribe(struct mqtt_ctx *ctx, u16_t pkt_id, u8_t items, const char *topics[]) { struct net_buf *data = NULL; struct net_pkt *tx = NULL; int rc; data = net_buf_alloc(&mqtt_msg_pool, ctx->net_timeout); if (data == NULL) { return -ENOMEM; } rc = mqtt_pack_unsubscribe(data->data, &data->len, data->size, pkt_id, items, topics); if (rc != 0) { rc = -EINVAL; goto exit_unsub; } tx = net_app_get_net_pkt(&ctx->net_app_ctx, AF_UNSPEC, ctx->net_timeout); if (tx == NULL) { rc = -ENOMEM; goto exit_unsub; } net_pkt_frag_add(tx, data); data = NULL; rc = net_app_send_pkt(&ctx->net_app_ctx, tx, NULL, 0, ctx->net_timeout, NULL); if (rc < 0) { net_pkt_unref(tx); } tx = NULL; return rc; exit_unsub: net_pkt_frag_unref(data); return rc; } int mqtt_rx_connack(struct mqtt_ctx *ctx, struct net_buf *rx, int clean_session) { u16_t len; u8_t connect_rc; u8_t session; u8_t *data; int rc; data = rx->data; len = rx->len; /* CONNACK is 4 bytes len */ rc = mqtt_unpack_connack(data, len, &session, &connect_rc); if (rc != 0) { rc = -EINVAL; goto exit_connect; } switch (clean_session) { /* new session */ case 1: /* server acks there is no previous session * and server connection return code is OK */ if (session == 0 && connect_rc == 0) { rc = 0; } else { rc = -EINVAL; goto exit_connect; } break; /* previous session */ case 0: /* TODO */ /* FALLTHROUGH */ default: rc = -EINVAL; goto exit_connect; } ctx->connected = 1; if (ctx->connect) { ctx->connect(ctx); } exit_connect: return rc; } /** * Parses and validates the MQTT PUBxxxx message contained in the rx packet. * * * @details It validates against message structure and Packet Identifier. * For the MQTT PUBREC and PUBREL messages, this function writes the * corresponding MQTT PUB msg. * * @param ctx MQTT context * @param rx RX packet * @param type MQTT Packet type * * @retval 0 on success * @retval -EINVAL on error */ static int mqtt_rx_pub_msgs(struct mqtt_ctx *ctx, struct net_buf *rx, enum mqtt_packet type) { int (*unpack)(u8_t *, u16_t, u16_t *) = NULL; int (*response)(struct mqtt_ctx *, u16_t) = NULL; u16_t pkt_id; u16_t len; u8_t *data; int rc; switch (type) { case MQTT_PUBACK: unpack = mqtt_unpack_puback; break; case MQTT_PUBCOMP: unpack = mqtt_unpack_pubcomp; break; case MQTT_PUBREC: unpack = mqtt_unpack_pubrec; response = mqtt_tx_pubrel; break; case MQTT_PUBREL: unpack = mqtt_unpack_pubrel; response = mqtt_tx_pubcomp; break; default: return -EINVAL; } data = rx->data; len = rx->len; /* 4 bytes message */ rc = unpack(data, len, &pkt_id); if (rc != 0) { return -EINVAL; } /* Only MQTT_APP_SUBSCRIBER, MQTT_APP_PUBLISHER_SUBSCRIBER and * MQTT_APP_SERVER apps must receive the MQTT_PUBREL msg. */ if (type == MQTT_PUBREL) { if (ctx->app_type != MQTT_APP_PUBLISHER) { rc = ctx->publish_rx(ctx, NULL, pkt_id, MQTT_PUBREL); } else { rc = -EINVAL; } } else { rc = ctx->publish_tx(ctx, pkt_id, type); } if (rc != 0) { return -EINVAL; } if (!response) { return 0; } rc = response(ctx, pkt_id); if (rc != 0) { return -EINVAL; } return 0; } int mqtt_rx_puback(struct mqtt_ctx *ctx, struct net_buf *rx) { return mqtt_rx_pub_msgs(ctx, rx, MQTT_PUBACK); } int mqtt_rx_pubcomp(struct mqtt_ctx *ctx, struct net_buf *rx) { return mqtt_rx_pub_msgs(ctx, rx, MQTT_PUBCOMP); } int mqtt_rx_pubrec(struct mqtt_ctx *ctx, struct net_buf *rx) { return mqtt_rx_pub_msgs(ctx, rx, MQTT_PUBREC); } int mqtt_rx_pubrel(struct mqtt_ctx *ctx, struct net_buf *rx) { return mqtt_rx_pub_msgs(ctx, rx, MQTT_PUBREL); } int mqtt_rx_pingresp(struct mqtt_ctx *ctx, struct net_buf *rx) { int rc; ARG_UNUSED(ctx); /* 2 bytes message */ rc = mqtt_unpack_pingresp(rx->data, rx->len); if (rc != 0) { return -EINVAL; } return 0; } int mqtt_rx_suback(struct mqtt_ctx *ctx, struct net_buf *rx) { enum mqtt_qos suback_qos[CONFIG_MQTT_SUBSCRIBE_MAX_TOPICS]; u16_t pkt_id; u16_t len; u8_t items; u8_t *data; int rc; data = rx->data; len = rx->len; rc = mqtt_unpack_suback(data, len, &pkt_id, &items, CONFIG_MQTT_SUBSCRIBE_MAX_TOPICS, suback_qos); if (rc != 0) { return -EINVAL; } if (!ctx->subscribe) { return -EINVAL; } rc = ctx->subscribe(ctx, pkt_id, items, suback_qos); if (rc != 0) { return -EINVAL; } return 0; } int mqtt_rx_unsuback(struct mqtt_ctx *ctx, struct net_buf *rx) { u16_t pkt_id; u16_t len; u8_t *data; int rc; data = rx->data; len = rx->len; /* 4 bytes message */ rc = mqtt_unpack_unsuback(data, len, &pkt_id); if (rc != 0) { return -EINVAL; } if (!ctx->unsubscribe) { return -EINVAL; } rc = ctx->unsubscribe(ctx, pkt_id); if (rc != 0) { return -EINVAL; } return 0; } int mqtt_rx_publish(struct mqtt_ctx *ctx, struct net_buf *rx) { struct mqtt_publish_msg msg; int rc; rc = mqtt_unpack_publish(rx->data, rx->len, &msg); if (rc != 0) { return -EINVAL; } rc = ctx->publish_rx(ctx, &msg, msg.pkt_id, MQTT_PUBLISH); if (rc != 0) { return -EINVAL; } switch (msg.qos) { case MQTT_QoS2: rc = mqtt_tx_pubrec(ctx, msg.pkt_id); break; case MQTT_QoS1: rc = mqtt_tx_puback(ctx, msg.pkt_id); break; case MQTT_QoS0: break; default: rc = -EINVAL; } return rc; } /** * Linearizes an IP fragmented packet * * @param [in] ctx MQTT context structure * @param [in] rx RX IP stack packet * @param [in] min_size Min message size allowed. This allows us to exit if the * rx packet is shorter than the expected msg size * * @retval Data buffer * @retval NULL on error */ static struct net_buf *mqtt_linearize_packet(struct mqtt_ctx *ctx, struct net_pkt *rx, u16_t min_size) { struct net_buf *data = NULL; u16_t data_len; u16_t offset; int rc; /* CONFIG_MQTT_MSG_MAX_SIZE is defined via Kconfig. So here it's * determined if the input packet could fit our data buffer or if * it has the expected size. */ data_len = net_pkt_appdatalen(rx); if (data_len < min_size || data_len > CONFIG_MQTT_MSG_MAX_SIZE) { return NULL; } data = net_buf_alloc(&mqtt_msg_pool, ctx->net_timeout); if (data == NULL) { return NULL; } offset = net_pkt_get_len(rx) - data_len; rc = net_frag_linear_copy(data, rx->frags, offset, data_len); if (rc != 0) { goto exit_error; } return data; exit_error: net_pkt_frag_unref(data); return NULL; } /** * Calls the appropriate rx routine for the MQTT message contained in rx * * @details On error, this routine will execute the 'ctx->malformed' callback * (if defined) * * @param ctx MQTT context * @param rx RX packet * * @retval 0 on success * @retval -EINVAL if an unknown message is received * @retval -ENOMEM if no data buffer is available * @retval mqtt_rx_connack, mqtt_rx_pingresp, mqtt_rx_puback, mqtt_rx_pubcomp, * mqtt_rx_publish, mqtt_rx_pubrec, mqtt_rx_pubrel and mqtt_rx_suback * return codes */ static int mqtt_parser(struct mqtt_ctx *ctx, struct net_pkt *rx) { u16_t pkt_type = MQTT_INVALID; struct net_buf *data = NULL; int rc = -EINVAL; data = mqtt_linearize_packet(ctx, rx, MQTT_PUBLISHER_MIN_MSG_SIZE); if (!data) { return -ENOMEM; } pkt_type = MQTT_PACKET_TYPE(data->data[0]); switch (pkt_type) { case MQTT_CONNACK: if (!ctx->connected) { rc = mqtt_rx_connack(ctx, data, ctx->clean_session); } else { rc = -EINVAL; } break; case MQTT_PUBACK: rc = mqtt_rx_puback(ctx, data); break; case MQTT_PUBREC: rc = mqtt_rx_pubrec(ctx, data); break; case MQTT_PUBCOMP: rc = mqtt_rx_pubcomp(ctx, data); break; case MQTT_PINGRESP: rc = mqtt_rx_pingresp(ctx, data); break; case MQTT_PUBLISH: rc = mqtt_rx_publish(ctx, data); break; case MQTT_PUBREL: rc = mqtt_rx_pubrel(ctx, data); break; case MQTT_SUBACK: rc = mqtt_rx_suback(ctx, data); break; default: rc = -EINVAL; break; } if (rc != 0 && ctx->malformed) { ctx->malformed(ctx, pkt_type); } net_pkt_frag_unref(data); return rc; } static void app_connected(struct net_app_ctx *ctx, int status, void *data) { struct mqtt_ctx *mqtt = (struct mqtt_ctx *)data; /* net_app_ctx is already referenced to by the mqtt_ctx struct */ ARG_UNUSED(ctx); if (!mqtt) { return; } #if defined(CONFIG_MQTT_LIB_TLS) k_sem_give(&mqtt->tls_hs_wait); #endif } static void app_recv(struct net_app_ctx *ctx, struct net_pkt *pkt, int status, void *data) { struct mqtt_ctx *mqtt = (struct mqtt_ctx *)data; /* net_app_ctx is already referenced to by the mqtt_ctx struct */ ARG_UNUSED(ctx); if (status || !pkt) { return; } if (net_pkt_appdatalen(pkt) == 0) { goto lb_exit; } mqtt->rcv(mqtt, pkt); lb_exit: net_pkt_unref(pkt); } int mqtt_connect(struct mqtt_ctx *ctx) { int rc = 0; if (!ctx) { return -EFAULT; } rc = net_app_init_tcp_client(&ctx->net_app_ctx, NULL, NULL, ctx->peer_addr_str, ctx->peer_port, ctx->net_init_timeout, ctx); if (rc < 0) { goto error_connect; } rc = net_app_set_cb(&ctx->net_app_ctx, app_connected, app_recv, NULL, NULL); if (rc < 0) { goto error_connect; } #if defined(CONFIG_MQTT_LIB_TLS) rc = net_app_client_tls(&ctx->net_app_ctx, ctx->request_buf, ctx->request_buf_len, ctx->personalization_data, ctx->personalization_data_len, ctx->cert_cb, ctx->cert_host, ctx->entropy_src_cb, ctx->tls_mem_pool, ctx->tls_stack, ctx->tls_stack_size); if (rc < 0) { goto error_connect; } #endif rc = net_app_connect(&ctx->net_app_ctx, ctx->net_timeout); if (rc < 0) { goto error_connect; } #if defined(CONFIG_MQTT_LIB_TLS) /* TLS handshake is not finished until app_connected is called */ rc = k_sem_take(&ctx->tls_hs_wait, ctx->tls_hs_timeout); if (rc < 0) { goto error_connect; } #endif return rc; error_connect: /* clean net app context, so mqtt_connect() can be called repeatedly */ net_app_close(&ctx->net_app_ctx); net_app_release(&ctx->net_app_ctx); return rc; } int mqtt_init(struct mqtt_ctx *ctx, enum mqtt_app app_type) { /* So far, only clean session = 1 is supported */ ctx->clean_session = 1; ctx->connected = 0; ctx->app_type = app_type; ctx->rcv = mqtt_parser; #if defined(CONFIG_MQTT_LIB_TLS) if (ctx->tls_hs_timeout == 0) { ctx->tls_hs_timeout = TLS_HS_DEFAULT_TIMEOUT; } k_sem_init(&ctx->tls_hs_wait, 0, 1); #endif return 0; } int mqtt_close(struct mqtt_ctx *ctx) { if (!ctx) { return -EFAULT; } if (ctx->net_app_ctx.is_init) { net_app_close(&ctx->net_app_ctx); net_app_release(&ctx->net_app_ctx); } return 0; } |