mqtt.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file mqtt.h
  7. *
  8. * @defgroup mqtt_socket MQTT Client library
  9. * @ingroup networking
  10. * @{
  11. * @brief MQTT Client Implementation
  12. *
  13. * @details
  14. * MQTT Client's Application interface is defined in this header.
  15. *
  16. * @note The implementation assumes TCP module is enabled.
  17. *
  18. * @note By default the implementation uses MQTT version 3.1.1.
  19. */
  20. #ifndef ZEPHYR_INCLUDE_NET_MQTT_H_
  21. #define ZEPHYR_INCLUDE_NET_MQTT_H_
  22. #include <stddef.h>
  23. #include <zephyr.h>
  24. #include <zephyr/types.h>
  25. #include <net/tls_credentials.h>
  26. #include <net/net_ip.h>
  27. #include <sys/mutex.h>
  28. #include <net/websocket.h>
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /**
  33. * @brief MQTT Asynchronous Events notified to the application from the module
  34. * through the callback registered by the application.
  35. */
  36. enum mqtt_evt_type {
  37. /** Acknowledgment of connection request. Event result accompanying
  38. * the event indicates whether the connection failed or succeeded.
  39. */
  40. MQTT_EVT_CONNACK,
  41. /** Disconnection Event. MQTT Client Reference is no longer valid once
  42. * this event is received for the client.
  43. */
  44. MQTT_EVT_DISCONNECT,
  45. /** Publish event received when message is published on a topic client
  46. * is subscribed to.
  47. *
  48. * @note PUBLISH event structure only contains payload size, the payload
  49. * data parameter should be ignored. Payload content has to be
  50. * read manually with @ref mqtt_read_publish_payload function.
  51. */
  52. MQTT_EVT_PUBLISH,
  53. /** Acknowledgment for published message with QoS 1. */
  54. MQTT_EVT_PUBACK,
  55. /** Reception confirmation for published message with QoS 2. */
  56. MQTT_EVT_PUBREC,
  57. /** Release of published message with QoS 2. */
  58. MQTT_EVT_PUBREL,
  59. /** Confirmation to a publish release message with QoS 2. */
  60. MQTT_EVT_PUBCOMP,
  61. /** Acknowledgment to a subscribe request. */
  62. MQTT_EVT_SUBACK,
  63. /** Acknowledgment to a unsubscribe request. */
  64. MQTT_EVT_UNSUBACK,
  65. /** Ping Response from server. */
  66. MQTT_EVT_PINGRESP,
  67. };
  68. /** @brief MQTT version protocol level. */
  69. enum mqtt_version {
  70. MQTT_VERSION_3_1_0 = 3, /**< Protocol level for 3.1.0. */
  71. MQTT_VERSION_3_1_1 = 4 /**< Protocol level for 3.1.1. */
  72. };
  73. /** @brief MQTT Quality of Service types. */
  74. enum mqtt_qos {
  75. /** Lowest Quality of Service, no acknowledgment needed for published
  76. * message.
  77. */
  78. MQTT_QOS_0_AT_MOST_ONCE = 0x00,
  79. /** Medium Quality of Service, if acknowledgment expected for published
  80. * message, duplicate messages permitted.
  81. */
  82. MQTT_QOS_1_AT_LEAST_ONCE = 0x01,
  83. /** Highest Quality of Service, acknowledgment expected and message
  84. * shall be published only once. Message not published to interested
  85. * parties unless client issues a PUBREL.
  86. */
  87. MQTT_QOS_2_EXACTLY_ONCE = 0x02
  88. };
  89. /** @brief MQTT CONNACK return codes. */
  90. enum mqtt_conn_return_code {
  91. /** Connection accepted. */
  92. MQTT_CONNECTION_ACCEPTED = 0x00,
  93. /** The Server does not support the level of the MQTT protocol
  94. * requested by the Client.
  95. */
  96. MQTT_UNACCEPTABLE_PROTOCOL_VERSION = 0x01,
  97. /** The Client identifier is correct UTF-8 but not allowed by the
  98. * Server.
  99. */
  100. MQTT_IDENTIFIER_REJECTED = 0x02,
  101. /** The Network Connection has been made but the MQTT service is
  102. * unavailable.
  103. */
  104. MQTT_SERVER_UNAVAILABLE = 0x03,
  105. /** The data in the user name or password is malformed. */
  106. MQTT_BAD_USER_NAME_OR_PASSWORD = 0x04,
  107. /** The Client is not authorized to connect. */
  108. MQTT_NOT_AUTHORIZED = 0x05
  109. };
  110. /** @brief MQTT SUBACK return codes. */
  111. enum mqtt_suback_return_code {
  112. /** Subscription with QoS 0 succeeded. */
  113. MQTT_SUBACK_SUCCESS_QoS_0 = 0x00,
  114. /** Subscription with QoS 1 succeeded. */
  115. MQTT_SUBACK_SUCCESS_QoS_1 = 0x01,
  116. /** Subscription with QoS 2 succeeded. */
  117. MQTT_SUBACK_SUCCESS_QoS_2 = 0x02,
  118. /** Subscription for a topic failed. */
  119. MQTT_SUBACK_FAILURE = 0x80
  120. };
  121. /** @brief Abstracts UTF-8 encoded strings. */
  122. struct mqtt_utf8 {
  123. const uint8_t *utf8; /**< Pointer to UTF-8 string. */
  124. uint32_t size; /**< Size of UTF string, in bytes. */
  125. };
  126. /**
  127. * @brief Initialize UTF-8 encoded string from C literal string.
  128. *
  129. * Use it as follows:
  130. *
  131. * struct mqtt_utf8 password = MQTT_UTF8_LITERAL("my_pass");
  132. *
  133. * @param[in] literal Literal string from which to generate mqtt_utf8 object.
  134. */
  135. #define MQTT_UTF8_LITERAL(literal) \
  136. ((struct mqtt_utf8) {literal, sizeof(literal) - 1})
  137. /** @brief Abstracts binary strings. */
  138. struct mqtt_binstr {
  139. uint8_t *data; /**< Pointer to binary stream. */
  140. uint32_t len; /**< Length of binary stream. */
  141. };
  142. /** @brief Abstracts MQTT UTF-8 encoded topic that can be subscribed
  143. * to or published.
  144. */
  145. struct mqtt_topic {
  146. /** Topic on to be published or subscribed to. */
  147. struct mqtt_utf8 topic;
  148. /** Quality of service requested for the subscription.
  149. * @ref mqtt_qos for details.
  150. */
  151. uint8_t qos;
  152. };
  153. /** @brief Parameters for a publish message. */
  154. struct mqtt_publish_message {
  155. struct mqtt_topic topic; /**< Topic on which data was published. */
  156. struct mqtt_binstr payload; /**< Payload on the topic published. */
  157. };
  158. /** @brief Parameters for a connection acknowledgment (CONNACK). */
  159. struct mqtt_connack_param {
  160. /** The Session Present flag enables a Client to establish whether
  161. * the Client and Server have a consistent view about whether there
  162. * is already stored Session state.
  163. */
  164. uint8_t session_present_flag;
  165. /** The appropriate non-zero Connect return code indicates if the Server
  166. * is unable to process a connection request for some reason.
  167. */
  168. enum mqtt_conn_return_code return_code;
  169. };
  170. /** @brief Parameters for MQTT publish acknowledgment (PUBACK). */
  171. struct mqtt_puback_param {
  172. uint16_t message_id;
  173. };
  174. /** @brief Parameters for MQTT publish receive (PUBREC). */
  175. struct mqtt_pubrec_param {
  176. uint16_t message_id;
  177. };
  178. /** @brief Parameters for MQTT publish release (PUBREL). */
  179. struct mqtt_pubrel_param {
  180. uint16_t message_id;
  181. };
  182. /** @brief Parameters for MQTT publish complete (PUBCOMP). */
  183. struct mqtt_pubcomp_param {
  184. uint16_t message_id;
  185. };
  186. /** @brief Parameters for MQTT subscription acknowledgment (SUBACK). */
  187. struct mqtt_suback_param {
  188. uint16_t message_id;
  189. struct mqtt_binstr return_codes;
  190. };
  191. /** @brief Parameters for MQTT unsubscribe acknowledgment (UNSUBACK). */
  192. struct mqtt_unsuback_param {
  193. uint16_t message_id;
  194. };
  195. /** @brief Parameters for a publish message. */
  196. struct mqtt_publish_param {
  197. /** Messages including topic, QoS and its payload (if any)
  198. * to be published.
  199. */
  200. struct mqtt_publish_message message;
  201. /** Message id used for the publish message. Redundant for QoS 0. */
  202. uint16_t message_id;
  203. /** Duplicate flag. If 1, it indicates the message is being
  204. * retransmitted. Has no meaning with QoS 0.
  205. */
  206. uint8_t dup_flag : 1;
  207. /** Retain flag. If 1, the message shall be stored persistently
  208. * by the broker.
  209. */
  210. uint8_t retain_flag : 1;
  211. };
  212. /** @brief List of topics in a subscription request. */
  213. struct mqtt_subscription_list {
  214. /** Array containing topics along with QoS for each. */
  215. struct mqtt_topic *list;
  216. /** Number of topics in the subscription list */
  217. uint16_t list_count;
  218. /** Message id used to identify subscription request. */
  219. uint16_t message_id;
  220. };
  221. /**
  222. * @brief Defines event parameters notified along with asynchronous events
  223. * to the application.
  224. */
  225. union mqtt_evt_param {
  226. /** Parameters accompanying MQTT_EVT_CONNACK event. */
  227. struct mqtt_connack_param connack;
  228. /** Parameters accompanying MQTT_EVT_PUBLISH event.
  229. *
  230. * @note PUBLISH event structure only contains payload size, the payload
  231. * data parameter should be ignored. Payload content has to be
  232. * read manually with @ref mqtt_read_publish_payload function.
  233. */
  234. struct mqtt_publish_param publish;
  235. /** Parameters accompanying MQTT_EVT_PUBACK event. */
  236. struct mqtt_puback_param puback;
  237. /** Parameters accompanying MQTT_EVT_PUBREC event. */
  238. struct mqtt_pubrec_param pubrec;
  239. /** Parameters accompanying MQTT_EVT_PUBREL event. */
  240. struct mqtt_pubrel_param pubrel;
  241. /** Parameters accompanying MQTT_EVT_PUBCOMP event. */
  242. struct mqtt_pubcomp_param pubcomp;
  243. /** Parameters accompanying MQTT_EVT_SUBACK event. */
  244. struct mqtt_suback_param suback;
  245. /** Parameters accompanying MQTT_EVT_UNSUBACK event. */
  246. struct mqtt_unsuback_param unsuback;
  247. };
  248. /** @brief Defines MQTT asynchronous event notified to the application. */
  249. struct mqtt_evt {
  250. /** Identifies the event. */
  251. enum mqtt_evt_type type;
  252. /** Contains parameters (if any) accompanying the event. */
  253. union mqtt_evt_param param;
  254. /** Event result. 0 or a negative error code (errno.h) indicating
  255. * reason of failure.
  256. */
  257. int result;
  258. };
  259. struct mqtt_client;
  260. /**
  261. * @brief Asynchronous event notification callback registered by the
  262. * application.
  263. *
  264. * @param[in] client Identifies the client for which the event is notified.
  265. * @param[in] evt Event description along with result and associated
  266. * parameters (if any).
  267. */
  268. typedef void (*mqtt_evt_cb_t)(struct mqtt_client *client,
  269. const struct mqtt_evt *evt);
  270. /** @brief TLS configuration for secure MQTT transports. */
  271. struct mqtt_sec_config {
  272. /** Indicates the preference for peer verification. */
  273. int peer_verify;
  274. /** Indicates the number of entries in the cipher list. */
  275. uint32_t cipher_count;
  276. /** Indicates the list of ciphers to be used for the session.
  277. * May be NULL to use the default ciphers.
  278. */
  279. int *cipher_list;
  280. /** Indicates the number of entries in the sec tag list. */
  281. uint32_t sec_tag_count;
  282. /** Indicates the list of security tags to be used for the session. */
  283. sec_tag_t *sec_tag_list;
  284. /** Peer hostname for ceritificate verification.
  285. * May be NULL to skip hostname verification.
  286. */
  287. const char *hostname;
  288. };
  289. /** @brief MQTT transport type. */
  290. enum mqtt_transport_type {
  291. /** Use non secure TCP transport for MQTT connection. */
  292. MQTT_TRANSPORT_NON_SECURE,
  293. #if defined(CONFIG_MQTT_LIB_TLS)
  294. /** Use secure TCP transport (TLS) for MQTT connection. */
  295. MQTT_TRANSPORT_SECURE,
  296. #endif /* CONFIG_MQTT_LIB_TLS */
  297. #if defined(CONFIG_MQTT_LIB_WEBSOCKET)
  298. /** Use non secure Websocket transport for MQTT connection. */
  299. MQTT_TRANSPORT_NON_SECURE_WEBSOCKET,
  300. #if defined(CONFIG_MQTT_LIB_TLS)
  301. /** Use secure Websocket transport (TLS) for MQTT connection. */
  302. MQTT_TRANSPORT_SECURE_WEBSOCKET,
  303. #endif
  304. #endif /* CONFIG_MQTT_LIB_WEBSOCKET */
  305. #if defined(CONFIG_MQTT_LIB_CUSTOM_TRANSPORT)
  306. /** Use custom transport for MQTT connection. */
  307. MQTT_TRANSPORT_CUSTOM,
  308. #endif /* CONFIG_MQTT_LIB_CUSTOM_TRANSPORT */
  309. /** Shall not be used as a transport type.
  310. * Indicator of maximum transport types possible.
  311. */
  312. MQTT_TRANSPORT_NUM
  313. };
  314. /** @brief MQTT transport specific data. */
  315. struct mqtt_transport {
  316. /** Transport type selection for client instance.
  317. * @ref mqtt_transport_type for possible values. MQTT_TRANSPORT_MAX
  318. * is not a valid type.
  319. */
  320. enum mqtt_transport_type type;
  321. union {
  322. /* TCP socket transport for MQTT */
  323. struct {
  324. /** Socket descriptor. */
  325. int sock;
  326. } tcp;
  327. #if defined(CONFIG_MQTT_LIB_TLS)
  328. /* TLS socket transport for MQTT */
  329. struct {
  330. /** Socket descriptor. */
  331. int sock;
  332. /** TLS configuration. See @ref mqtt_sec_config for
  333. * details.
  334. */
  335. struct mqtt_sec_config config;
  336. } tls;
  337. #endif /* CONFIG_MQTT_LIB_TLS */
  338. };
  339. #if defined(CONFIG_MQTT_LIB_WEBSOCKET)
  340. /** Websocket transport for MQTT */
  341. struct {
  342. /** Websocket configuration. */
  343. struct websocket_request config;
  344. /** Socket descriptor */
  345. int sock;
  346. /** Websocket timeout, in milliseconds. */
  347. int32_t timeout;
  348. } websocket;
  349. #endif
  350. #if defined(CONFIG_MQTT_LIB_CUSTOM_TRANSPORT)
  351. /** User defined data for custom transport for MQTT. */
  352. void *custom_transport_data;
  353. #endif /* CONFIG_MQTT_LIB_CUSTOM_TRANSPORT */
  354. #if defined(CONFIG_SOCKS)
  355. struct {
  356. struct sockaddr addr;
  357. socklen_t addrlen;
  358. } proxy;
  359. #endif
  360. };
  361. /** @brief MQTT internal state. */
  362. struct mqtt_internal {
  363. /** Internal. Mutex to protect access to the client instance. */
  364. struct sys_mutex mutex;
  365. /** Internal. Wall clock value (in milliseconds) of the last activity
  366. * that occurred. Needed for periodic PING.
  367. */
  368. uint32_t last_activity;
  369. /** Internal. Client's state in the connection. */
  370. uint32_t state;
  371. /** Internal. Packet length read so far. */
  372. uint32_t rx_buf_datalen;
  373. /** Internal. Remaining payload length to read. */
  374. uint32_t remaining_payload;
  375. };
  376. /**
  377. * @brief MQTT Client definition to maintain information relevant to the
  378. * client.
  379. */
  380. struct mqtt_client {
  381. /** MQTT client internal state. */
  382. struct mqtt_internal internal;
  383. /** MQTT transport configuration and data. */
  384. struct mqtt_transport transport;
  385. /** Unique client identification to be used for the connection. */
  386. struct mqtt_utf8 client_id;
  387. /** Broker details, for example, address, port. Address type should
  388. * be compatible with transport used.
  389. */
  390. const void *broker;
  391. /** User name (if any) to be used for the connection. NULL indicates
  392. * no user name.
  393. */
  394. struct mqtt_utf8 *user_name;
  395. /** Password (if any) to be used for the connection. Note that if
  396. * password is provided, user name shall also be provided. NULL
  397. * indicates no password.
  398. */
  399. struct mqtt_utf8 *password;
  400. /** Will topic and QoS. Can be NULL. */
  401. struct mqtt_topic *will_topic;
  402. /** Will message. Can be NULL. Non NULL value valid only if will topic
  403. * is not NULL.
  404. */
  405. struct mqtt_utf8 *will_message;
  406. /** Application callback registered with the module to get MQTT events.
  407. */
  408. mqtt_evt_cb_t evt_cb;
  409. /** Receive buffer used for MQTT packet reception in RX path. */
  410. uint8_t *rx_buf;
  411. /** Size of receive buffer. */
  412. uint32_t rx_buf_size;
  413. /** Transmit buffer used for creating MQTT packet in TX path. */
  414. uint8_t *tx_buf;
  415. /** Size of transmit buffer. */
  416. uint32_t tx_buf_size;
  417. /** Keepalive interval for this client in seconds.
  418. * Default is CONFIG_MQTT_KEEPALIVE.
  419. */
  420. uint16_t keepalive;
  421. /** MQTT protocol version. */
  422. uint8_t protocol_version;
  423. /** Unanswered PINGREQ count on this connection. */
  424. int8_t unacked_ping;
  425. /** Will retain flag, 1 if will message shall be retained persistently.
  426. */
  427. uint8_t will_retain : 1;
  428. /** Clean session flag indicating a fresh (1) or a retained session (0).
  429. * Default is CONFIG_MQTT_CLEAN_SESSION.
  430. */
  431. uint8_t clean_session : 1;
  432. };
  433. /**
  434. * @brief Initializes the client instance.
  435. *
  436. * @param[in] client Client instance for which the procedure is requested.
  437. * Shall not be NULL.
  438. *
  439. * @note Shall be called to initialize client structure, before setting any
  440. * client parameters and before connecting to broker.
  441. */
  442. void mqtt_client_init(struct mqtt_client *client);
  443. #if defined(CONFIG_SOCKS)
  444. /*
  445. * @brief Set proxy server details
  446. *
  447. * @param[in] client Client instance for which the procedure is requested,
  448. * Shall not be NULL.
  449. * @param[in] proxy_addr Proxy server address.
  450. * @param[in] addrlen Proxy server address length.
  451. *
  452. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  453. *
  454. * @note Must be called before calling mqtt_connect().
  455. */
  456. int mqtt_client_set_proxy(struct mqtt_client *client,
  457. struct sockaddr *proxy_addr,
  458. socklen_t addrlen);
  459. #endif
  460. /**
  461. * @brief API to request new MQTT client connection.
  462. *
  463. * @param[in] client Client instance for which the procedure is requested.
  464. * Shall not be NULL.
  465. *
  466. * @note This memory is assumed to be resident until mqtt_disconnect is called.
  467. * @note Any subsequent changes to parameters like broker address, user name,
  468. * device id, etc. have no effect once MQTT connection is established.
  469. *
  470. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  471. *
  472. * @note Default protocol revision used for connection request is 3.1.1. Please
  473. * set client.protocol_version = MQTT_VERSION_3_1_0 to use protocol 3.1.0.
  474. * @note
  475. * Please modify @kconfig{CONFIG_MQTT_KEEPALIVE} time to override default
  476. * of 1 minute.
  477. */
  478. int mqtt_connect(struct mqtt_client *client);
  479. /**
  480. * @brief API to publish messages on topics.
  481. *
  482. * @param[in] client Client instance for which the procedure is requested.
  483. * Shall not be NULL.
  484. * @param[in] param Parameters to be used for the publish message.
  485. * Shall not be NULL.
  486. *
  487. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  488. */
  489. int mqtt_publish(struct mqtt_client *client,
  490. const struct mqtt_publish_param *param);
  491. /**
  492. * @brief API used by client to send acknowledgment on receiving QoS1 publish
  493. * message. Should be called on reception of @ref MQTT_EVT_PUBLISH with
  494. * QoS level @ref MQTT_QOS_1_AT_LEAST_ONCE.
  495. *
  496. * @param[in] client Client instance for which the procedure is requested.
  497. * Shall not be NULL.
  498. * @param[in] param Identifies message being acknowledged.
  499. *
  500. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  501. */
  502. int mqtt_publish_qos1_ack(struct mqtt_client *client,
  503. const struct mqtt_puback_param *param);
  504. /**
  505. * @brief API used by client to send acknowledgment on receiving QoS2 publish
  506. * message. Should be called on reception of @ref MQTT_EVT_PUBLISH with
  507. * QoS level @ref MQTT_QOS_2_EXACTLY_ONCE.
  508. *
  509. * @param[in] client Identifies client instance for which the procedure is
  510. * requested. Shall not be NULL.
  511. * @param[in] param Identifies message being acknowledged.
  512. *
  513. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  514. */
  515. int mqtt_publish_qos2_receive(struct mqtt_client *client,
  516. const struct mqtt_pubrec_param *param);
  517. /**
  518. * @brief API used by client to request release of QoS2 publish message.
  519. * Should be called on reception of @ref MQTT_EVT_PUBREC.
  520. *
  521. * @param[in] client Client instance for which the procedure is requested.
  522. * Shall not be NULL.
  523. * @param[in] param Identifies message being released.
  524. *
  525. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  526. */
  527. int mqtt_publish_qos2_release(struct mqtt_client *client,
  528. const struct mqtt_pubrel_param *param);
  529. /**
  530. * @brief API used by client to send acknowledgment on receiving QoS2 publish
  531. * release message. Should be called on reception of
  532. * @ref MQTT_EVT_PUBREL.
  533. *
  534. * @param[in] client Identifies client instance for which the procedure is
  535. * requested. Shall not be NULL.
  536. * @param[in] param Identifies message being completed.
  537. *
  538. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  539. */
  540. int mqtt_publish_qos2_complete(struct mqtt_client *client,
  541. const struct mqtt_pubcomp_param *param);
  542. /**
  543. * @brief API to request subscription of one or more topics on the connection.
  544. *
  545. * @param[in] client Identifies client instance for which the procedure
  546. * is requested. Shall not be NULL.
  547. * @param[in] param Subscription parameters. Shall not be NULL.
  548. *
  549. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  550. */
  551. int mqtt_subscribe(struct mqtt_client *client,
  552. const struct mqtt_subscription_list *param);
  553. /**
  554. * @brief API to request unsubscription of one or more topics on the connection.
  555. *
  556. * @param[in] client Identifies client instance for which the procedure is
  557. * requested. Shall not be NULL.
  558. * @param[in] param Parameters describing topics being unsubscribed from.
  559. * Shall not be NULL.
  560. *
  561. * @note QoS included in topic description is unused in this API.
  562. *
  563. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  564. */
  565. int mqtt_unsubscribe(struct mqtt_client *client,
  566. const struct mqtt_subscription_list *param);
  567. /**
  568. * @brief API to send MQTT ping. The use of this API is optional, as the library
  569. * handles the connection keep-alive on it's own, see @ref mqtt_live.
  570. *
  571. * @param[in] client Identifies client instance for which procedure is
  572. * requested.
  573. *
  574. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  575. */
  576. int mqtt_ping(struct mqtt_client *client);
  577. /**
  578. * @brief API to disconnect MQTT connection.
  579. *
  580. * @param[in] client Identifies client instance for which procedure is
  581. * requested.
  582. *
  583. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  584. */
  585. int mqtt_disconnect(struct mqtt_client *client);
  586. /**
  587. * @brief API to abort MQTT connection. This will close the corresponding
  588. * transport without closing the connection gracefully at the MQTT level
  589. * (with disconnect message).
  590. *
  591. * @param[in] client Identifies client instance for which procedure is
  592. * requested.
  593. *
  594. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  595. */
  596. int mqtt_abort(struct mqtt_client *client);
  597. /**
  598. * @brief This API should be called periodically for the client to be able
  599. * to keep the connection alive by sending Ping Requests if need be.
  600. *
  601. * @param[in] client Client instance for which the procedure is requested.
  602. * Shall not be NULL.
  603. *
  604. * @note Application shall ensure that the periodicity of calling this function
  605. * makes it possible to respect the Keep Alive time agreed with the
  606. * broker on connection. @ref mqtt_connect for details on Keep Alive
  607. * time.
  608. *
  609. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  610. */
  611. int mqtt_live(struct mqtt_client *client);
  612. /**
  613. * @brief Helper function to determine when next keep alive message should be
  614. * sent. Can be used for instance as a source for `poll` timeout.
  615. *
  616. * @param[in] client Client instance for which the procedure is requested.
  617. *
  618. * @return Time in milliseconds until next keep alive message is expected to
  619. * be sent. Function will return -1 if keep alive messages are
  620. * not enabled.
  621. */
  622. int mqtt_keepalive_time_left(const struct mqtt_client *client);
  623. /**
  624. * @brief Receive an incoming MQTT packet. The registered callback will be
  625. * called with the packet content.
  626. *
  627. * @note In case of PUBLISH message, the payload has to be read separately with
  628. * @ref mqtt_read_publish_payload function. The size of the payload to
  629. * read is provided in the publish event structure.
  630. *
  631. * @note This is a non-blocking call.
  632. *
  633. * @param[in] client Client instance for which the procedure is requested.
  634. * Shall not be NULL.
  635. *
  636. * @return 0 or a negative error code (errno.h) indicating reason of failure.
  637. */
  638. int mqtt_input(struct mqtt_client *client);
  639. /**
  640. * @brief Read the payload of the received PUBLISH message. This function should
  641. * be called within the MQTT event handler, when MQTT PUBLISH message is
  642. * notified.
  643. *
  644. * @note This is a non-blocking call.
  645. *
  646. * @param[in] client Client instance for which the procedure is requested.
  647. * Shall not be NULL.
  648. * @param[out] buffer Buffer where payload should be stored.
  649. * @param[in] length Length of the buffer, in bytes.
  650. *
  651. * @return Number of bytes read or a negative error code (errno.h) indicating
  652. * reason of failure.
  653. */
  654. int mqtt_read_publish_payload(struct mqtt_client *client, void *buffer,
  655. size_t length);
  656. /**
  657. * @brief Blocking version of @ref mqtt_read_publish_payload function.
  658. *
  659. * @param[in] client Client instance for which the procedure is requested.
  660. * Shall not be NULL.
  661. * @param[out] buffer Buffer where payload should be stored.
  662. * @param[in] length Length of the buffer, in bytes.
  663. *
  664. * @return Number of bytes read or a negative error code (errno.h) indicating
  665. * reason of failure.
  666. */
  667. int mqtt_read_publish_payload_blocking(struct mqtt_client *client, void *buffer,
  668. size_t length);
  669. /**
  670. * @brief Blocking version of @ref mqtt_read_publish_payload function which
  671. * runs until the required number of bytes are read.
  672. *
  673. * @param[in] client Client instance for which the procedure is requested.
  674. * Shall not be NULL.
  675. * @param[out] buffer Buffer where payload should be stored.
  676. * @param[in] length Number of bytes to read.
  677. *
  678. * @return 0 if success, otherwise a negative error code (errno.h) indicating
  679. * reason of failure.
  680. */
  681. int mqtt_readall_publish_payload(struct mqtt_client *client, uint8_t *buffer,
  682. size_t length);
  683. #ifdef __cplusplus
  684. }
  685. #endif
  686. #endif /* ZEPHYR_INCLUDE_NET_MQTT_H_ */
  687. /**@} */