websocket.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /** @file
  2. * @brief Websocket API
  3. *
  4. * An API for applications to setup websocket connections
  5. */
  6. /*
  7. * Copyright (c) 2019 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_WEBSOCKET_H_
  12. #define ZEPHYR_INCLUDE_NET_WEBSOCKET_H_
  13. #include <kernel.h>
  14. #include <net/net_ip.h>
  15. #include <net/http_parser.h>
  16. #include <net/http_client.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief Websocket API
  22. * @defgroup websocket Websocket API
  23. * @ingroup networking
  24. * @{
  25. */
  26. /** Message type values. Returned in websocket_recv_msg() */
  27. #define WEBSOCKET_FLAG_FINAL 0x00000001 /**< Final frame */
  28. #define WEBSOCKET_FLAG_TEXT 0x00000002 /**< Textual data */
  29. #define WEBSOCKET_FLAG_BINARY 0x00000004 /**< Binary data */
  30. #define WEBSOCKET_FLAG_CLOSE 0x00000008 /**< Closing connection */
  31. #define WEBSOCKET_FLAG_PING 0x00000010 /**< Ping message */
  32. #define WEBSOCKET_FLAG_PONG 0x00000020 /**< Pong message */
  33. enum websocket_opcode {
  34. WEBSOCKET_OPCODE_CONTINUE = 0x00,
  35. WEBSOCKET_OPCODE_DATA_TEXT = 0x01,
  36. WEBSOCKET_OPCODE_DATA_BINARY = 0x02,
  37. WEBSOCKET_OPCODE_CLOSE = 0x08,
  38. WEBSOCKET_OPCODE_PING = 0x09,
  39. WEBSOCKET_OPCODE_PONG = 0x0A,
  40. };
  41. /**
  42. * @typedef websocket_connect_cb_t
  43. * @brief Callback called after Websocket connection is established.
  44. *
  45. * @param ws_sock Websocket id
  46. * @param req HTTP handshake request
  47. * @param user_data A valid pointer on some user data or NULL
  48. *
  49. * @return 0 if ok, <0 if there is an error and connection should be aborted
  50. */
  51. typedef int (*websocket_connect_cb_t)(int ws_sock, struct http_request *req,
  52. void *user_data);
  53. /**
  54. * Websocket client connection request. This contains all the data that is
  55. * needed when doing a Websocket connection request.
  56. */
  57. struct websocket_request {
  58. /** Host of the Websocket server when doing HTTP handshakes. */
  59. const char *host;
  60. /** URL of the Websocket. */
  61. const char *url;
  62. /** User supplied callback function to call when optional headers need
  63. * to be sent. This can be NULL, in which case the optional_headers
  64. * field in http_request is used. The idea of this optional_headers
  65. * callback is to allow user to send more HTTP header data that is
  66. * practical to store in allocated memory.
  67. */
  68. http_header_cb_t optional_headers_cb;
  69. /** A NULL terminated list of any optional headers that
  70. * should be added to the HTTP request. May be NULL.
  71. * If the optional_headers_cb is specified, then this field is ignored.
  72. */
  73. const char **optional_headers;
  74. /** User supplied callback function to call when a connection is
  75. * established.
  76. */
  77. websocket_connect_cb_t cb;
  78. /** User supplied list of callback functions if the calling application
  79. * wants to know the parsing status or the HTTP fields during the
  80. * handshake. This is optional parameter and normally not needed but
  81. * is useful if the caller wants to know something about
  82. * the fields that the server is sending.
  83. */
  84. const struct http_parser_settings *http_cb;
  85. /** User supplied buffer where HTTP connection data is stored */
  86. uint8_t *tmp_buf;
  87. /** Length of the user supplied temp buffer */
  88. size_t tmp_buf_len;
  89. };
  90. /**
  91. * @brief Connect to a server that provides Websocket service. The callback is
  92. * called after connection is established. The returned value is a new socket
  93. * descriptor that can be used to send / receive data using the BSD socket API.
  94. *
  95. * @param http_sock Socket id to the server. Note that this socket is used to do
  96. * HTTP handshakes etc. The actual Websocket connectivity is done via the
  97. * returned websocket id. Note that the http_sock must not be closed
  98. * after this function returns as it is used to deliver the Websocket
  99. * packets to the Websocket server.
  100. * @param req Websocket request. User should allocate and fill the request
  101. * data.
  102. * @param timeout Max timeout to wait for the connection. The timeout value is
  103. * in milliseconds. Value SYS_FOREVER_MS means to wait forever.
  104. * @param user_data User specified data that is passed to the callback.
  105. *
  106. * @return Websocket id to be used when sending/receiving Websocket data.
  107. */
  108. int websocket_connect(int http_sock, struct websocket_request *req,
  109. int32_t timeout, void *user_data);
  110. /**
  111. * @brief Send websocket msg to peer.
  112. *
  113. * @details The function will automatically add websocket header to the
  114. * message.
  115. *
  116. * @param ws_sock Websocket id returned by websocket_connect().
  117. * @param payload Websocket data to send.
  118. * @param payload_len Length of the data to be sent.
  119. * @param opcode Operation code (text, binary, ping, pong, close)
  120. * @param mask Mask the data, see RFC 6455 for details
  121. * @param final Is this final message for this message send. If final == false,
  122. * then the first message must have valid opcode and subsequent messages
  123. * must have opcode WEBSOCKET_OPCODE_CONTINUE. If final == true and this
  124. * is the only message, then opcode should have proper opcode (text or
  125. * binary) set.
  126. * @param timeout How long to try to send the message. The value is in
  127. * milliseconds. Value SYS_FOREVER_MS means to wait forever.
  128. *
  129. * @return <0 if error, >=0 amount of bytes sent
  130. */
  131. int websocket_send_msg(int ws_sock, const uint8_t *payload, size_t payload_len,
  132. enum websocket_opcode opcode, bool mask, bool final,
  133. int32_t timeout);
  134. /**
  135. * @brief Receive websocket msg from peer.
  136. *
  137. * @details The function will automatically remove websocket header from the
  138. * message.
  139. *
  140. * @param ws_sock Websocket id returned by websocket_connect().
  141. * @param buf Buffer where websocket data is read.
  142. * @param buf_len Length of the data buffer.
  143. * @param message_type Type of the message.
  144. * @param remaining How much there is data left in the message after this read.
  145. * @param timeout How long to try to receive the message.
  146. * The value is in milliseconds. Value SYS_FOREVER_MS means to wait
  147. * forever.
  148. *
  149. * @return <0 if error, >=0 amount of bytes received
  150. */
  151. int websocket_recv_msg(int ws_sock, uint8_t *buf, size_t buf_len,
  152. uint32_t *message_type, uint64_t *remaining,
  153. int32_t timeout);
  154. /**
  155. * @brief Close websocket.
  156. *
  157. * @details One must call websocket_connect() after this call to re-establish
  158. * the connection.
  159. *
  160. * @param ws_sock Websocket id returned by websocket_connect().
  161. */
  162. int websocket_disconnect(int ws_sock);
  163. #if defined(CONFIG_WEBSOCKET_CLIENT)
  164. void websocket_init(void);
  165. #else
  166. static inline void websocket_init(void)
  167. {
  168. }
  169. #endif
  170. #ifdef __cplusplus
  171. }
  172. #endif
  173. /**
  174. * @}
  175. */
  176. #endif /* ZEPHYR_INCLUDE_NET_WEBSOCKET_H_ */