l2cap.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. /** @file
  2. * @brief Bluetooth L2CAP handling
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_L2CAP_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_L2CAP_H_
  11. /**
  12. * @brief L2CAP
  13. * @defgroup bt_l2cap L2CAP
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <sys/atomic.h>
  18. #include <bluetooth/buf.h>
  19. #include <bluetooth/conn.h>
  20. #include <bluetooth/hci.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /** L2CAP PDU header size, used for buffer size calculations */
  25. #define BT_L2CAP_HDR_SIZE 4
  26. /** Maximum Transmission Unit (MTU) for an outgoing L2CAP PDU. */
  27. #define BT_L2CAP_TX_MTU (CONFIG_BT_L2CAP_TX_MTU)
  28. /** Maximum Transmission Unit (MTU) for an incoming L2CAP PDU. */
  29. #define BT_L2CAP_RX_MTU (CONFIG_BT_BUF_ACL_RX_SIZE - BT_L2CAP_HDR_SIZE)
  30. /** @brief Helper to calculate needed buffer size for L2CAP PDUs.
  31. * Useful for creating buffer pools.
  32. *
  33. * @param mtu Needed L2CAP PDU MTU.
  34. *
  35. * @return Needed buffer size to match the requested L2CAP PDU MTU.
  36. */
  37. #define BT_L2CAP_BUF_SIZE(mtu) BT_BUF_ACL_SIZE(BT_L2CAP_HDR_SIZE + (mtu))
  38. /** L2CAP SDU header size, used for buffer size calculations */
  39. #define BT_L2CAP_SDU_HDR_SIZE 2
  40. /** @brief Maximum Transmission Unit for an unsegmented outgoing L2CAP SDU.
  41. *
  42. * The Maximum Transmission Unit for an outgoing L2CAP SDU when sent without
  43. * segmentation, i.e a single L2CAP SDU will fit inside a single L2CAP PDU.
  44. *
  45. * The MTU for outgoing L2CAP SDUs with segmentation is defined by the
  46. * size of the application buffer pool.
  47. */
  48. #define BT_L2CAP_SDU_TX_MTU (BT_L2CAP_TX_MTU - BT_L2CAP_SDU_HDR_SIZE)
  49. /** @brief Maximum Transmission Unit for an unsegmented incoming L2CAP SDU.
  50. *
  51. * The Maximum Transmission Unit for an incoming L2CAP SDU when sent without
  52. * segmentation, i.e a single L2CAP SDU will fit inside a single L2CAP PDU.
  53. *
  54. * The MTU for incoming L2CAP SDUs with segmentation is defined by the
  55. * size of the application buffer pool. The application will have to define
  56. * an alloc_buf callback for the channel in order to support receiving
  57. * segmented L2CAP SDUs.
  58. */
  59. #define BT_L2CAP_SDU_RX_MTU (BT_L2CAP_RX_MTU - BT_L2CAP_SDU_HDR_SIZE)
  60. /** @def BT_L2CAP_SDU_BUF_SIZE
  61. *
  62. * @brief Helper to calculate needed buffer size for L2CAP SDUs.
  63. * Useful for creating buffer pools.
  64. *
  65. * @param mtu Required BT_L2CAP_*_SDU.
  66. *
  67. * @return Needed buffer size to match the requested L2CAP SDU MTU.
  68. */
  69. #define BT_L2CAP_SDU_BUF_SIZE(mtu) BT_L2CAP_BUF_SIZE(BT_L2CAP_SDU_HDR_SIZE + (mtu))
  70. struct bt_l2cap_chan;
  71. /** @typedef bt_l2cap_chan_destroy_t
  72. * @brief Channel destroy callback
  73. *
  74. * @param chan Channel object.
  75. */
  76. typedef void (*bt_l2cap_chan_destroy_t)(struct bt_l2cap_chan *chan);
  77. /** @brief Life-span states of L2CAP CoC channel.
  78. *
  79. * Used only by internal APIs dealing with setting channel to proper state
  80. * depending on operational context.
  81. */
  82. typedef enum bt_l2cap_chan_state {
  83. /** Channel disconnected */
  84. BT_L2CAP_DISCONNECTED,
  85. /** Channel in connecting state */
  86. BT_L2CAP_CONNECT,
  87. /** Channel in config state, BR/EDR specific */
  88. BT_L2CAP_CONFIG,
  89. /** Channel ready for upper layer traffic on it */
  90. BT_L2CAP_CONNECTED,
  91. /** Channel in disconnecting state */
  92. BT_L2CAP_DISCONNECT,
  93. } __packed bt_l2cap_chan_state_t;
  94. /** @brief Status of L2CAP channel. */
  95. typedef enum bt_l2cap_chan_status {
  96. /** Channel output status */
  97. BT_L2CAP_STATUS_OUT,
  98. /** @brief Channel shutdown status
  99. *
  100. * Once this status is notified it means the channel will no longer be
  101. * able to transmit or receive data.
  102. */
  103. BT_L2CAP_STATUS_SHUTDOWN,
  104. /** @brief Channel encryption pending status */
  105. BT_L2CAP_STATUS_ENCRYPT_PENDING,
  106. /* Total number of status - must be at the end of the enum */
  107. BT_L2CAP_NUM_STATUS,
  108. } __packed bt_l2cap_chan_status_t;
  109. /** @brief L2CAP Channel structure. */
  110. struct bt_l2cap_chan {
  111. /** Channel connection reference */
  112. struct bt_conn *conn;
  113. /** Channel operations reference */
  114. const struct bt_l2cap_chan_ops *ops;
  115. sys_snode_t node;
  116. bt_l2cap_chan_destroy_t destroy;
  117. /* Response Timeout eXpired (RTX) timer */
  118. struct k_work_delayable rtx_work;
  119. struct k_work_sync rtx_sync;
  120. ATOMIC_DEFINE(status, BT_L2CAP_NUM_STATUS);
  121. #if defined(CONFIG_BT_L2CAP_DYNAMIC_CHANNEL)
  122. bt_l2cap_chan_state_t state;
  123. /** Remote PSM to be connected */
  124. uint16_t psm;
  125. /** Helps match request context during CoC */
  126. uint8_t ident;
  127. bt_security_t required_sec_level;
  128. #endif /* CONFIG_BT_L2CAP_DYNAMIC_CHANNEL */
  129. };
  130. /** @brief LE L2CAP Endpoint structure. */
  131. struct bt_l2cap_le_endpoint {
  132. /** Endpoint Channel Identifier (CID) */
  133. uint16_t cid;
  134. /** Endpoint Maximum Transmission Unit */
  135. uint16_t mtu;
  136. /** Endpoint Maximum PDU payload Size */
  137. uint16_t mps;
  138. /** Endpoint initial credits */
  139. uint16_t init_credits;
  140. /** Endpoint credits */
  141. atomic_t credits;
  142. };
  143. /** @brief LE L2CAP Channel structure. */
  144. struct bt_l2cap_le_chan {
  145. /** Common L2CAP channel reference object */
  146. struct bt_l2cap_chan chan;
  147. /** @brief Channel Receiving Endpoint.
  148. *
  149. * If the application has set an alloc_buf channel callback for the
  150. * channel to support receiving segmented L2CAP SDUs the application
  151. * should inititalize the MTU of the Receiving Endpoint. Otherwise the
  152. * MTU of the receiving endpoint will be initialized to
  153. * @ref BT_L2CAP_SDU_RX_MTU by the stack.
  154. */
  155. struct bt_l2cap_le_endpoint rx;
  156. /** Pending RX MTU on ECFC reconfigure, used internally by stack */
  157. uint16_t pending_rx_mtu;
  158. /** Channel Transmission Endpoint */
  159. struct bt_l2cap_le_endpoint tx;
  160. /** Channel Transmission queue */
  161. struct k_fifo tx_queue;
  162. /** Channel Pending Transmission buffer */
  163. struct net_buf *tx_buf;
  164. /** Channel Transmission work */
  165. struct k_work tx_work;
  166. /** Segment SDU packet from upper layer */
  167. struct net_buf *_sdu;
  168. uint16_t _sdu_len;
  169. struct k_work rx_work;
  170. struct k_fifo rx_queue;
  171. };
  172. /** @def BT_L2CAP_LE_CHAN(_ch)
  173. * @brief Helper macro getting container object of type bt_l2cap_le_chan
  174. * address having the same container chan member address as object in question.
  175. *
  176. * @param _ch Address of object of bt_l2cap_chan type
  177. *
  178. * @return Address of in memory bt_l2cap_le_chan object type containing
  179. * the address of in question object.
  180. */
  181. #define BT_L2CAP_LE_CHAN(_ch) CONTAINER_OF(_ch, struct bt_l2cap_le_chan, chan)
  182. /** @brief BREDR L2CAP Endpoint structure. */
  183. struct bt_l2cap_br_endpoint {
  184. /** Endpoint Channel Identifier (CID) */
  185. uint16_t cid;
  186. /** Endpoint Maximum Transmission Unit */
  187. uint16_t mtu;
  188. };
  189. /** @brief BREDR L2CAP Channel structure. */
  190. struct bt_l2cap_br_chan {
  191. /** Common L2CAP channel reference object */
  192. struct bt_l2cap_chan chan;
  193. /** Channel Receiving Endpoint */
  194. struct bt_l2cap_br_endpoint rx;
  195. /** Channel Transmission Endpoint */
  196. struct bt_l2cap_br_endpoint tx;
  197. /* For internal use only */
  198. atomic_t flags[1];
  199. };
  200. /** @brief L2CAP Channel operations structure. */
  201. struct bt_l2cap_chan_ops {
  202. /** @brief Channel connected callback
  203. *
  204. * If this callback is provided it will be called whenever the
  205. * connection completes.
  206. *
  207. * @param chan The channel that has been connected
  208. */
  209. void (*connected)(struct bt_l2cap_chan *chan);
  210. /** @brief Channel disconnected callback
  211. *
  212. * If this callback is provided it will be called whenever the
  213. * channel is disconnected, including when a connection gets
  214. * rejected.
  215. *
  216. * @param chan The channel that has been Disconnected
  217. */
  218. void (*disconnected)(struct bt_l2cap_chan *chan);
  219. /** @brief Channel encrypt_change callback
  220. *
  221. * If this callback is provided it will be called whenever the
  222. * security level changed (indirectly link encryption done) or
  223. * authentication procedure fails. In both cases security initiator
  224. * and responder got the final status (HCI status) passed by
  225. * related to encryption and authentication events from local host's
  226. * controller.
  227. *
  228. * @param chan The channel which has made encryption status changed.
  229. * @param status HCI status of performed security procedure caused
  230. * by channel security requirements. The value is populated
  231. * by HCI layer and set to 0 when success and to non-zero (reference to
  232. * HCI Error Codes) when security/authentication failed.
  233. */
  234. void (*encrypt_change)(struct bt_l2cap_chan *chan, uint8_t hci_status);
  235. /** @brief Channel alloc_buf callback
  236. *
  237. * If this callback is provided the channel will use it to allocate
  238. * buffers to store incoming data. Channels that requires segmentation
  239. * must set this callback.
  240. * If the application has not set a callback the L2CAP SDU MTU will be
  241. * truncated to @ref BT_L2CAP_SDU_RX_MTU.
  242. *
  243. * @param chan The channel requesting a buffer.
  244. *
  245. * @return Allocated buffer.
  246. */
  247. struct net_buf *(*alloc_buf)(struct bt_l2cap_chan *chan);
  248. /** @brief Channel recv callback
  249. *
  250. * @param chan The channel receiving data.
  251. * @param buf Buffer containing incoming data.
  252. *
  253. * @return 0 in case of success or negative value in case of error.
  254. * @return -EINPROGRESS in case where user has to confirm once the data
  255. * has been processed by calling
  256. * @ref bt_l2cap_chan_recv_complete passing back
  257. * the buffer received with its original user_data
  258. * which contains the number of segments/credits
  259. * used by the packet.
  260. */
  261. int (*recv)(struct bt_l2cap_chan *chan, struct net_buf *buf);
  262. /** @brief Channel sent callback
  263. *
  264. * If this callback is provided it will be called whenever a SDU has
  265. * been completely sent.
  266. *
  267. * @param chan The channel which has sent data.
  268. */
  269. void (*sent)(struct bt_l2cap_chan *chan);
  270. /** @brief Channel status callback
  271. *
  272. * If this callback is provided it will be called whenever the
  273. * channel status changes.
  274. *
  275. * @param chan The channel which status changed
  276. * @param status The channel status
  277. */
  278. void (*status)(struct bt_l2cap_chan *chan, atomic_t *status);
  279. /* @brief Channel released callback
  280. *
  281. * If this callback is set it is called when the stack has release all
  282. * references to the channel object.
  283. */
  284. void (*released)(struct bt_l2cap_chan *chan);
  285. /** @brief Channel reconfigured callback
  286. *
  287. * If this callback is provided it will be called whenever peer or
  288. * local device requested reconfiguration. Application may check
  289. * updated MTU and MPS values by inspecting chan->le endpoints.
  290. *
  291. * @param chan The channel which was reconfigured
  292. */
  293. void (*reconfigured)(struct bt_l2cap_chan *chan);
  294. };
  295. /** @def BT_L2CAP_CHAN_SEND_RESERVE
  296. * @brief Headroom needed for outgoing L2CAP PDUs.
  297. */
  298. #define BT_L2CAP_CHAN_SEND_RESERVE (BT_L2CAP_BUF_SIZE(0))
  299. /** @def BT_L2CAP_SDU_CHAN_SEND_RESERVE
  300. * @brief Headroom needed for outgoing L2CAP SDUs.
  301. */
  302. #define BT_L2CAP_SDU_CHAN_SEND_RESERVE (BT_L2CAP_SDU_BUF_SIZE(0))
  303. /** @brief L2CAP Server structure. */
  304. struct bt_l2cap_server {
  305. /** @brief Server PSM.
  306. *
  307. * Possible values:
  308. * 0 A dynamic value will be auto-allocated when
  309. * bt_l2cap_server_register() is called.
  310. *
  311. * 0x0001-0x007f Standard, Bluetooth SIG-assigned fixed values.
  312. *
  313. * 0x0080-0x00ff Dynamically allocated. May be pre-set by the
  314. * application before server registration (not
  315. * recommended however), or auto-allocated by the
  316. * stack if the app gave 0 as the value.
  317. */
  318. uint16_t psm;
  319. /** Required minimum security level */
  320. bt_security_t sec_level;
  321. /** @brief Server accept callback
  322. *
  323. * This callback is called whenever a new incoming connection requires
  324. * authorization.
  325. *
  326. * @param conn The connection that is requesting authorization
  327. * @param chan Pointer to received the allocated channel
  328. *
  329. * @return 0 in case of success or negative value in case of error.
  330. * @return -ENOMEM if no available space for new channel.
  331. * @return -EACCES if application did not authorize the connection.
  332. * @return -EPERM if encryption key size is too short.
  333. */
  334. int (*accept)(struct bt_conn *conn, struct bt_l2cap_chan **chan);
  335. sys_snode_t node;
  336. };
  337. /** @brief Register L2CAP server.
  338. *
  339. * Register L2CAP server for a PSM, each new connection is authorized using
  340. * the accept() callback which in case of success shall allocate the channel
  341. * structure to be used by the new connection.
  342. *
  343. * For fixed, SIG-assigned PSMs (in the range 0x0001-0x007f) the PSM should
  344. * be assigned to server->psm before calling this API. For dynamic PSMs
  345. * (in the range 0x0080-0x00ff) server->psm may be pre-set to a given value
  346. * (this is however not recommended) or be left as 0, in which case upon
  347. * return a newly allocated value will have been assigned to it. For
  348. * dynamically allocated values the expectation is that it's exposed through
  349. * a GATT service, and that's how L2CAP clients discover how to connect to
  350. * the server.
  351. *
  352. * @param server Server structure.
  353. *
  354. * @return 0 in case of success or negative value in case of error.
  355. */
  356. int bt_l2cap_server_register(struct bt_l2cap_server *server);
  357. /** @brief Register L2CAP server on BR/EDR oriented connection.
  358. *
  359. * Register L2CAP server for a PSM, each new connection is authorized using
  360. * the accept() callback which in case of success shall allocate the channel
  361. * structure to be used by the new connection.
  362. *
  363. * @param server Server structure.
  364. *
  365. * @return 0 in case of success or negative value in case of error.
  366. */
  367. int bt_l2cap_br_server_register(struct bt_l2cap_server *server);
  368. /** @brief Connect Enhanced Credit Based L2CAP channels
  369. *
  370. * Connect up to 5 L2CAP channels by PSM, once the connection is completed
  371. * each channel connected() callback will be called. If the connection is
  372. * rejected disconnected() callback is called instead.
  373. *
  374. * @param conn Connection object.
  375. * @param chans Array of channel objects.
  376. * @param psm Channel PSM to connect to.
  377. *
  378. * @return 0 in case of success or negative value in case of error.
  379. */
  380. int bt_l2cap_ecred_chan_connect(struct bt_conn *conn,
  381. struct bt_l2cap_chan **chans, uint16_t psm);
  382. /** @brief Reconfigure Enhanced Credit Based L2CAP channels
  383. *
  384. * Reconfigure up to 5 L2CAP channels. Channels must be from the same bt_conn.
  385. * Once reconfiguration is completed each channel reconfigured() callback will
  386. * be called. MTU cannot be decreased on any of provided channels.
  387. *
  388. * @param chans Array of channel objects. Null-terminated. Elements after the
  389. * first 5 are silently ignored.
  390. * @param mtu Channel MTU to reconfigure to.
  391. *
  392. * @return 0 in case of success or negative value in case of error.
  393. */
  394. int bt_l2cap_ecred_chan_reconfigure(struct bt_l2cap_chan **chans, uint16_t mtu);
  395. /** @brief Connect L2CAP channel
  396. *
  397. * Connect L2CAP channel by PSM, once the connection is completed channel
  398. * connected() callback will be called. If the connection is rejected
  399. * disconnected() callback is called instead.
  400. * Channel object passed (over an address of it) as second parameter shouldn't
  401. * be instantiated in application as standalone. Instead of, application should
  402. * create transport dedicated L2CAP objects, i.e. type of bt_l2cap_le_chan for
  403. * LE and/or type of bt_l2cap_br_chan for BR/EDR. Then pass to this API
  404. * the location (address) of bt_l2cap_chan type object which is a member
  405. * of both transport dedicated objects.
  406. *
  407. * @param conn Connection object.
  408. * @param chan Channel object.
  409. * @param psm Channel PSM to connect to.
  410. *
  411. * @return 0 in case of success or negative value in case of error.
  412. */
  413. int bt_l2cap_chan_connect(struct bt_conn *conn, struct bt_l2cap_chan *chan,
  414. uint16_t psm);
  415. /** @brief Disconnect L2CAP channel
  416. *
  417. * Disconnect L2CAP channel, if the connection is pending it will be
  418. * canceled and as a result the channel disconnected() callback is called.
  419. * Regarding to input parameter, to get details see reference description
  420. * to bt_l2cap_chan_connect() API above.
  421. *
  422. * @param chan Channel object.
  423. *
  424. * @return 0 in case of success or negative value in case of error.
  425. */
  426. int bt_l2cap_chan_disconnect(struct bt_l2cap_chan *chan);
  427. /** @brief Send data to L2CAP channel
  428. *
  429. * Send data from buffer to the channel. If credits are not available, buf will
  430. * be queued and sent as and when credits are received from peer.
  431. * Regarding to first input parameter, to get details see reference description
  432. * to bt_l2cap_chan_connect() API above.
  433. *
  434. * When sending L2CAP data over an BR/EDR connection the application is sending
  435. * L2CAP PDUs. The application is required to have reserved
  436. * @ref BT_L2CAP_CHAN_SEND_RESERVE bytes in the buffer before sending.
  437. * The application should use the BT_L2CAP_BUF_SIZE() helper to correctly
  438. * size the buffers for the for the outgoing buffer pool.
  439. *
  440. * When sending L2CAP data over an LE connection the applicatios is sending
  441. * L2CAP SDUs. The application can optionally reserve
  442. * @ref BT_L2CAP_SDU_CHAN_SEND_RESERVE bytes in the buffer before sending.
  443. * By reserving bytes in the buffer the stack can use this buffer as a segment
  444. * directly, otherwise it will have to allocate a new segment for the first
  445. * segment.
  446. * If the application is reserving the bytes it should use the
  447. * BT_L2CAP_BUF_SIZE() helper to correctly size the buffers for the for the
  448. * outgoing buffer pool.
  449. * When segmenting an L2CAP SDU into L2CAP PDUs the stack will first attempt
  450. * to allocate buffers from the original buffer pool of the L2CAP SDU before
  451. * using the stacks own buffer pool.
  452. *
  453. * @note Buffer ownership is transferred to the stack in case of success, in
  454. * case of an error the caller retains the ownership of the buffer.
  455. *
  456. * @return Bytes sent in case of success or negative value in case of error.
  457. */
  458. int bt_l2cap_chan_send(struct bt_l2cap_chan *chan, struct net_buf *buf);
  459. /** @brief Complete receiving L2CAP channel data
  460. *
  461. * Complete the reception of incoming data. This shall only be called if the
  462. * channel recv callback has returned -EINPROGRESS to process some incoming
  463. * data. The buffer shall contain the original user_data as that is used for
  464. * storing the credits/segments used by the packet.
  465. *
  466. * @param chan Channel object.
  467. * @param buf Buffer containing the data.
  468. *
  469. * @return 0 in case of success or negative value in case of error.
  470. */
  471. int bt_l2cap_chan_recv_complete(struct bt_l2cap_chan *chan,
  472. struct net_buf *buf);
  473. #ifdef __cplusplus
  474. }
  475. #endif
  476. /**
  477. * @}
  478. */
  479. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_L2CAP_H_ */