rfcomm.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /** @file
  2. * @brief Bluetooth RFCOMM handling
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_RFCOMM_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_RFCOMM_H_
  11. /**
  12. * @brief RFCOMM
  13. * @defgroup bt_rfcomm RFCOMM
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <bluetooth/buf.h>
  18. #include <bluetooth/conn.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /* RFCOMM channels (1-30): pre-allocated for profiles to avoid conflicts */
  23. enum {
  24. BT_RFCOMM_CHAN_HFP_HF = 1,
  25. BT_RFCOMM_CHAN_HFP_AG,
  26. BT_RFCOMM_CHAN_HSP_AG,
  27. BT_RFCOMM_CHAN_HSP_HS,
  28. BT_RFCOMM_CHAN_SPP,
  29. };
  30. struct bt_rfcomm_dlc;
  31. /** @brief RFCOMM DLC operations structure. */
  32. struct bt_rfcomm_dlc_ops {
  33. /** DLC connected callback
  34. *
  35. * If this callback is provided it will be called whenever the
  36. * connection completes.
  37. *
  38. * @param dlc The dlc that has been connected
  39. */
  40. void (*connected)(struct bt_rfcomm_dlc *dlc);
  41. /** DLC disconnected callback
  42. *
  43. * If this callback is provided it will be called whenever the
  44. * dlc is disconnected, including when a connection gets
  45. * rejected or cancelled (both incoming and outgoing)
  46. *
  47. * @param dlc The dlc that has been Disconnected
  48. */
  49. void (*disconnected)(struct bt_rfcomm_dlc *dlc);
  50. /** DLC recv callback
  51. *
  52. * @param dlc The dlc receiving data.
  53. * @param buf Buffer containing incoming data.
  54. */
  55. void (*recv)(struct bt_rfcomm_dlc *dlc, struct net_buf *buf);
  56. };
  57. /** @brief Role of RFCOMM session and dlc. Used only by internal APIs
  58. */
  59. typedef enum bt_rfcomm_role {
  60. BT_RFCOMM_ROLE_ACCEPTOR,
  61. BT_RFCOMM_ROLE_INITIATOR
  62. } __packed bt_rfcomm_role_t;
  63. /** @brief RFCOMM DLC structure. */
  64. struct bt_rfcomm_dlc {
  65. /* Response Timeout eXpired (RTX) timer */
  66. struct k_work_delayable rtx_work;
  67. /* Queue for outgoing data */
  68. struct k_fifo tx_queue;
  69. /* TX credits, Reuse as a binary sem for MSC FC if CFC is not enabled */
  70. struct k_sem tx_credits;
  71. struct bt_rfcomm_session *session;
  72. struct bt_rfcomm_dlc_ops *ops;
  73. struct bt_rfcomm_dlc *_next;
  74. bt_security_t required_sec_level;
  75. bt_rfcomm_role_t role;
  76. uint16_t mtu;
  77. uint8_t dlci;
  78. uint8_t state;
  79. uint8_t rx_credit;
  80. /* Stack & kernel data for TX thread */
  81. struct k_thread tx_thread;
  82. K_KERNEL_STACK_MEMBER(stack, 256);
  83. };
  84. struct bt_rfcomm_server {
  85. /** Server Channel */
  86. uint8_t channel;
  87. /** Server accept callback
  88. *
  89. * This callback is called whenever a new incoming connection requires
  90. * authorization.
  91. *
  92. * @param conn The connection that is requesting authorization
  93. * @param dlc Pointer to received the allocated dlc
  94. *
  95. * @return 0 in case of success or negative value in case of error.
  96. */
  97. int (*accept)(struct bt_conn *conn, struct bt_rfcomm_dlc **dlc);
  98. struct bt_rfcomm_server *_next;
  99. };
  100. /** @brief Register RFCOMM server
  101. *
  102. * Register RFCOMM server for a channel, each new connection is authorized
  103. * using the accept() callback which in case of success shall allocate the dlc
  104. * structure to be used by the new connection.
  105. *
  106. * @param server Server structure.
  107. *
  108. * @return 0 in case of success or negative value in case of error.
  109. */
  110. int bt_rfcomm_server_register(struct bt_rfcomm_server *server);
  111. /** @brief Connect RFCOMM channel
  112. *
  113. * Connect RFCOMM dlc by channel, once the connection is completed dlc
  114. * connected() callback will be called. If the connection is rejected
  115. * disconnected() callback is called instead.
  116. *
  117. * @param conn Connection object.
  118. * @param dlc Dlc object.
  119. * @param channel Server channel to connect to.
  120. *
  121. * @return 0 in case of success or negative value in case of error.
  122. */
  123. int bt_rfcomm_dlc_connect(struct bt_conn *conn, struct bt_rfcomm_dlc *dlc,
  124. uint8_t channel);
  125. /** @brief Send data to RFCOMM
  126. *
  127. * Send data from buffer to the dlc. Length should be less than or equal to
  128. * mtu.
  129. *
  130. * @param dlc Dlc object.
  131. * @param buf Data buffer.
  132. *
  133. * @return Bytes sent in case of success or negative value in case of error.
  134. */
  135. int bt_rfcomm_dlc_send(struct bt_rfcomm_dlc *dlc, struct net_buf *buf);
  136. /** @brief Disconnect RFCOMM dlc
  137. *
  138. * Disconnect RFCOMM dlc, if the connection is pending it will be
  139. * canceled and as a result the dlc disconnected() callback is called.
  140. *
  141. * @param dlc Dlc object.
  142. *
  143. * @return 0 in case of success or negative value in case of error.
  144. */
  145. int bt_rfcomm_dlc_disconnect(struct bt_rfcomm_dlc *dlc);
  146. /** @brief Allocate the buffer from pool after reserving head room for RFCOMM,
  147. * L2CAP and ACL headers.
  148. *
  149. * @param pool Which pool to take the buffer from.
  150. *
  151. * @return New buffer.
  152. */
  153. struct net_buf *bt_rfcomm_create_pdu(struct net_buf_pool *pool);
  154. #ifdef __cplusplus
  155. }
  156. #endif
  157. /**
  158. * @}
  159. */
  160. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_RFCOMM_H_ */