conn.h 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445
  1. /** @file
  2. * @brief Bluetooth connection handling
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_CONN_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_CONN_H_
  11. /**
  12. * @brief Connection management
  13. * @defgroup bt_conn Connection management
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <stdbool.h>
  18. #include <bluetooth/bluetooth.h>
  19. #include <bluetooth/hci_err.h>
  20. #include <bluetooth/addr.h>
  21. #include <bluetooth/gap.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /** Opaque type representing a connection to a remote device */
  26. struct bt_conn;
  27. /** Connection parameters for LE connections */
  28. struct bt_le_conn_param {
  29. uint16_t interval_min;
  30. uint16_t interval_max;
  31. uint16_t latency;
  32. uint16_t timeout;
  33. };
  34. /** @brief Initialize connection parameters
  35. *
  36. * @param int_min Minimum Connection Interval (N * 1.25 ms)
  37. * @param int_max Maximum Connection Interval (N * 1.25 ms)
  38. * @param lat Connection Latency
  39. * @param to Supervision Timeout (N * 10 ms)
  40. */
  41. #define BT_LE_CONN_PARAM_INIT(int_min, int_max, lat, to) \
  42. { \
  43. .interval_min = (int_min), \
  44. .interval_max = (int_max), \
  45. .latency = (lat), \
  46. .timeout = (to), \
  47. }
  48. /** Helper to declare connection parameters inline
  49. *
  50. * @param int_min Minimum Connection Interval (N * 1.25 ms)
  51. * @param int_max Maximum Connection Interval (N * 1.25 ms)
  52. * @param lat Connection Latency
  53. * @param to Supervision Timeout (N * 10 ms)
  54. */
  55. #define BT_LE_CONN_PARAM(int_min, int_max, lat, to) \
  56. ((struct bt_le_conn_param[]) { \
  57. BT_LE_CONN_PARAM_INIT(int_min, int_max, lat, to) \
  58. })
  59. /** Default LE connection parameters:
  60. * Connection Interval: 30-50 ms
  61. * Latency: 0
  62. * Timeout: 4 s
  63. */
  64. #define BT_LE_CONN_PARAM_DEFAULT BT_LE_CONN_PARAM(BT_GAP_INIT_CONN_INT_MIN, \
  65. BT_GAP_INIT_CONN_INT_MAX, \
  66. 0, 400)
  67. /** Connection PHY information for LE connections */
  68. struct bt_conn_le_phy_info {
  69. uint8_t tx_phy; /** Connection transmit PHY */
  70. uint8_t rx_phy; /** Connection receive PHY */
  71. };
  72. /** Connection PHY options */
  73. enum {
  74. /** Convenience value when no options are specified. */
  75. BT_CONN_LE_PHY_OPT_NONE = 0,
  76. /** LE Coded using S=2 coding preferred when transmitting. */
  77. BT_CONN_LE_PHY_OPT_CODED_S2 = BIT(0),
  78. /** LE Coded using S=8 coding preferred when transmitting. */
  79. BT_CONN_LE_PHY_OPT_CODED_S8 = BIT(1),
  80. };
  81. /** Preferred PHY parameters for LE connections */
  82. struct bt_conn_le_phy_param {
  83. uint16_t options; /** Connection PHY options. */
  84. uint8_t pref_tx_phy; /** Bitmask of preferred transmit PHYs */
  85. uint8_t pref_rx_phy; /** Bitmask of preferred receive PHYs */
  86. };
  87. /** Initialize PHY parameters
  88. *
  89. * @param _pref_tx_phy Bitmask of preferred transmit PHYs.
  90. * @param _pref_rx_phy Bitmask of preferred receive PHYs.
  91. */
  92. #define BT_CONN_LE_PHY_PARAM_INIT(_pref_tx_phy, _pref_rx_phy) \
  93. { \
  94. .options = BT_CONN_LE_PHY_OPT_NONE, \
  95. .pref_tx_phy = (_pref_tx_phy), \
  96. .pref_rx_phy = (_pref_rx_phy), \
  97. }
  98. /** Helper to declare PHY parameters inline
  99. *
  100. * @param _pref_tx_phy Bitmask of preferred transmit PHYs.
  101. * @param _pref_rx_phy Bitmask of preferred receive PHYs.
  102. */
  103. #define BT_CONN_LE_PHY_PARAM(_pref_tx_phy, _pref_rx_phy) \
  104. ((struct bt_conn_le_phy_param []) { \
  105. BT_CONN_LE_PHY_PARAM_INIT(_pref_tx_phy, _pref_rx_phy) \
  106. })
  107. /** Only LE 1M PHY */
  108. #define BT_CONN_LE_PHY_PARAM_1M BT_CONN_LE_PHY_PARAM(BT_GAP_LE_PHY_1M, \
  109. BT_GAP_LE_PHY_1M)
  110. /** Only LE 2M PHY */
  111. #define BT_CONN_LE_PHY_PARAM_2M BT_CONN_LE_PHY_PARAM(BT_GAP_LE_PHY_2M, \
  112. BT_GAP_LE_PHY_2M)
  113. /** Only LE Coded PHY. */
  114. #define BT_CONN_LE_PHY_PARAM_CODED BT_CONN_LE_PHY_PARAM(BT_GAP_LE_PHY_CODED, \
  115. BT_GAP_LE_PHY_CODED)
  116. /** All LE PHYs. */
  117. #define BT_CONN_LE_PHY_PARAM_ALL BT_CONN_LE_PHY_PARAM(BT_GAP_LE_PHY_1M | \
  118. BT_GAP_LE_PHY_2M | \
  119. BT_GAP_LE_PHY_CODED, \
  120. BT_GAP_LE_PHY_1M | \
  121. BT_GAP_LE_PHY_2M | \
  122. BT_GAP_LE_PHY_CODED)
  123. /** Connection data length information for LE connections */
  124. struct bt_conn_le_data_len_info {
  125. /** Maximum Link Layer transmission payload size in bytes. */
  126. uint16_t tx_max_len;
  127. /** Maximum Link Layer transmission payload time in us. */
  128. uint16_t tx_max_time;
  129. /** Maximum Link Layer reception payload size in bytes. */
  130. uint16_t rx_max_len;
  131. /** Maximum Link Layer reception payload time in us. */
  132. uint16_t rx_max_time;
  133. };
  134. /** Connection data length parameters for LE connections */
  135. struct bt_conn_le_data_len_param {
  136. /** Maximum Link Layer transmission payload size in bytes. */
  137. uint16_t tx_max_len;
  138. /** Maximum Link Layer transmission payload time in us. */
  139. uint16_t tx_max_time;
  140. };
  141. /** Initialize transmit data length parameters
  142. *
  143. * @param _tx_max_len Maximum Link Layer transmission payload size in bytes.
  144. * @param _tx_max_time Maximum Link Layer transmission payload time in us.
  145. */
  146. #define BT_CONN_LE_DATA_LEN_PARAM_INIT(_tx_max_len, _tx_max_time) \
  147. { \
  148. .tx_max_len = (_tx_max_len), \
  149. .tx_max_time = (_tx_max_time), \
  150. }
  151. /** Helper to declare transmit data length parameters inline
  152. *
  153. * @param _tx_max_len Maximum Link Layer transmission payload size in bytes.
  154. * @param _tx_max_time Maximum Link Layer transmission payload time in us.
  155. */
  156. #define BT_CONN_LE_DATA_LEN_PARAM(_tx_max_len, _tx_max_time) \
  157. ((struct bt_conn_le_data_len_param[]) { \
  158. BT_CONN_LE_DATA_LEN_PARAM_INIT(_tx_max_len, _tx_max_time) \
  159. })
  160. /** Default LE data length parameters. */
  161. #define BT_LE_DATA_LEN_PARAM_DEFAULT \
  162. BT_CONN_LE_DATA_LEN_PARAM(BT_GAP_DATA_LEN_DEFAULT, \
  163. BT_GAP_DATA_TIME_DEFAULT)
  164. /** Maximum LE data length parameters. */
  165. #define BT_LE_DATA_LEN_PARAM_MAX \
  166. BT_CONN_LE_DATA_LEN_PARAM(BT_GAP_DATA_LEN_MAX, \
  167. BT_GAP_DATA_TIME_MAX)
  168. /** @brief Increment a connection's reference count.
  169. *
  170. * Increment the reference count of a connection object.
  171. *
  172. * @note Will return NULL if the reference count is zero.
  173. *
  174. * @param conn Connection object.
  175. *
  176. * @return Connection object with incremented reference count, or NULL if the
  177. * reference count is zero.
  178. */
  179. struct bt_conn *bt_conn_ref(struct bt_conn *conn);
  180. /** @brief Decrement a connection's reference count.
  181. *
  182. * Decrement the reference count of a connection object.
  183. *
  184. * @param conn Connection object.
  185. */
  186. void bt_conn_unref(struct bt_conn *conn);
  187. /** @brief Iterate through all existing connections.
  188. *
  189. * @param type Connection Type
  190. * @param func Function to call for each connection.
  191. * @param data Data to pass to the callback function.
  192. */
  193. void bt_conn_foreach(int type, void (*func)(struct bt_conn *conn, void *data),
  194. void *data);
  195. /** @brief Look up an existing connection by address.
  196. *
  197. * Look up an existing connection based on the remote address.
  198. *
  199. * The caller gets a new reference to the connection object which must be
  200. * released with bt_conn_unref() once done using the object.
  201. *
  202. * @param id Local identity (in most cases BT_ID_DEFAULT).
  203. * @param peer Remote address.
  204. *
  205. * @return Connection object or NULL if not found.
  206. */
  207. struct bt_conn *bt_conn_lookup_addr_le(uint8_t id, const bt_addr_le_t *peer);
  208. /** @brief Get destination (peer) address of a connection.
  209. *
  210. * @param conn Connection object.
  211. *
  212. * @return Destination address.
  213. */
  214. const bt_addr_le_t *bt_conn_get_dst(const struct bt_conn *conn);
  215. /** @brief Get array index of a connection
  216. *
  217. * This function is used to map bt_conn to index of an array of
  218. * connections. The array has CONFIG_BT_MAX_CONN elements.
  219. *
  220. * @param conn Connection object.
  221. *
  222. * @return Index of the connection object.
  223. * The range of the returned value is 0..CONFIG_BT_MAX_CONN-1
  224. */
  225. uint8_t bt_conn_index(struct bt_conn *conn);
  226. /** Connection Type */
  227. enum {
  228. /** LE Connection Type */
  229. BT_CONN_TYPE_LE = BIT(0),
  230. /** BR/EDR Connection Type */
  231. BT_CONN_TYPE_BR = BIT(1),
  232. /** SCO Connection Type */
  233. BT_CONN_TYPE_SCO = BIT(2),
  234. /** ISO Connection Type */
  235. BT_CONN_TYPE_ISO = BIT(3),
  236. /** All Connection Type */
  237. BT_CONN_TYPE_ALL = BT_CONN_TYPE_LE | BT_CONN_TYPE_BR |
  238. BT_CONN_TYPE_SCO | BT_CONN_TYPE_ISO,
  239. };
  240. /** LE Connection Info Structure */
  241. struct bt_conn_le_info {
  242. /** Source (Local) Identity Address */
  243. const bt_addr_le_t *src;
  244. /** Destination (Remote) Identity Address or remote Resolvable Private
  245. * Address (RPA) before identity has been resolved.
  246. */
  247. const bt_addr_le_t *dst;
  248. /** Local device address used during connection setup. */
  249. const bt_addr_le_t *local;
  250. /** Remote device address used during connection setup. */
  251. const bt_addr_le_t *remote;
  252. uint16_t interval; /** Connection interval */
  253. uint16_t latency; /** Connection peripheral latency */
  254. uint16_t timeout; /** Connection supervision timeout */
  255. #if defined(CONFIG_BT_USER_PHY_UPDATE)
  256. const struct bt_conn_le_phy_info *phy;
  257. #endif /* defined(CONFIG_BT_USER_PHY_UPDATE) */
  258. #if defined(CONFIG_BT_USER_DATA_LEN_UPDATE)
  259. /* Connection maximum single fragment parameters */
  260. const struct bt_conn_le_data_len_info *data_len;
  261. #endif /* defined(CONFIG_BT_USER_DATA_LEN_UPDATE) */
  262. };
  263. /** BR/EDR Connection Info Structure */
  264. struct bt_conn_br_info {
  265. const bt_addr_t *dst; /** Destination (Remote) BR/EDR address */
  266. };
  267. enum {
  268. BT_CONN_ROLE_CENTRAL = 0,
  269. BT_CONN_ROLE_PERIPHERAL = 1,
  270. };
  271. /** Connection role (central or peripheral) */
  272. #define BT_CONN_ROLE_MASTER __DEPRECATED_MACRO BT_CONN_ROLE_CENTRAL
  273. #define BT_CONN_ROLE_SLAVE __DEPRECATED_MACRO BT_CONN_ROLE_PERIPHERAL
  274. /** Connection Info Structure */
  275. struct bt_conn_info {
  276. /** Connection Type. */
  277. uint8_t type;
  278. /** Connection Role. */
  279. uint8_t role;
  280. /** Which local identity the connection was created with */
  281. uint8_t id;
  282. /** Connection Type specific Info.*/
  283. union {
  284. /** LE Connection specific Info. */
  285. struct bt_conn_le_info le;
  286. /** BR/EDR Connection specific Info. */
  287. struct bt_conn_br_info br;
  288. };
  289. };
  290. /** LE Connection Remote Info Structure */
  291. struct bt_conn_le_remote_info {
  292. /** Remote LE feature set (bitmask). */
  293. const uint8_t *features;
  294. };
  295. /** BR/EDR Connection Remote Info structure */
  296. struct bt_conn_br_remote_info {
  297. /** Remote feature set (pages of bitmasks). */
  298. const uint8_t *features;
  299. /** Number of pages in the remote feature set. */
  300. uint8_t num_pages;
  301. };
  302. /** @brief Connection Remote Info Structure
  303. *
  304. * @note The version, manufacturer and subversion fields will only contain
  305. * valid data if @kconfig{CONFIG_BT_REMOTE_VERSION} is enabled.
  306. */
  307. struct bt_conn_remote_info {
  308. /** Connection Type */
  309. uint8_t type;
  310. /** Remote Link Layer version */
  311. uint8_t version;
  312. /** Remote manufacturer identifier */
  313. uint16_t manufacturer;
  314. /** Per-manufacturer unique revision */
  315. uint16_t subversion;
  316. union {
  317. /** LE connection remote info */
  318. struct bt_conn_le_remote_info le;
  319. /** BR/EDR connection remote info */
  320. struct bt_conn_br_remote_info br;
  321. };
  322. };
  323. enum bt_conn_le_tx_power_phy {
  324. /** Convenience macro for when no PHY is set. */
  325. BT_CONN_LE_TX_POWER_PHY_NONE,
  326. /** LE 1M PHY */
  327. BT_CONN_LE_TX_POWER_PHY_1M,
  328. /** LE 2M PHY */
  329. BT_CONN_LE_TX_POWER_PHY_2M,
  330. /** LE Coded PHY using S=8 coding. */
  331. BT_CONN_LE_TX_POWER_PHY_CODED_S8,
  332. /** LE Coded PHY using S=2 coding. */
  333. BT_CONN_LE_TX_POWER_PHY_CODED_S2,
  334. };
  335. /** LE Transmit Power Level Structure */
  336. struct bt_conn_le_tx_power {
  337. /** Input: 1M, 2M, Coded S2 or Coded S8 */
  338. uint8_t phy;
  339. /** Output: current transmit power level */
  340. int8_t current_level;
  341. /** Output: maximum transmit power level */
  342. int8_t max_level;
  343. };
  344. /** @brief Get connection info
  345. *
  346. * @param conn Connection object.
  347. * @param info Connection info object.
  348. *
  349. * @return Zero on success or (negative) error code on failure.
  350. */
  351. int bt_conn_get_info(const struct bt_conn *conn, struct bt_conn_info *info);
  352. /** @brief Get connection info for the remote device.
  353. *
  354. * @param conn Connection object.
  355. * @param remote_info Connection remote info object.
  356. *
  357. * @note In order to retrieve the remote version (version, manufacturer
  358. * and subversion) @kconfig{CONFIG_BT_REMOTE_VERSION} must be enabled
  359. *
  360. * @note The remote information is exchanged directly after the connection has
  361. * been established. The application can be notified about when the remote
  362. * information is available through the remote_info_available callback.
  363. *
  364. * @return Zero on success or (negative) error code on failure.
  365. * @return -EBUSY The remote information is not yet available.
  366. */
  367. int bt_conn_get_remote_info(struct bt_conn *conn,
  368. struct bt_conn_remote_info *remote_info);
  369. /** @brief Get connection transmit power level.
  370. *
  371. * @param conn Connection object.
  372. * @param tx_power_level Transmit power level descriptor.
  373. *
  374. * @return Zero on success or (negative) error code on failure.
  375. * @return -ENOBUFS HCI command buffer is not available.
  376. */
  377. int bt_conn_le_get_tx_power_level(struct bt_conn *conn,
  378. struct bt_conn_le_tx_power *tx_power_level);
  379. /** @brief Update the connection parameters.
  380. *
  381. * If the local device is in the peripheral role then updating the connection
  382. * parameters will be delayed. This delay can be configured by through the
  383. * @kconfig{CONFIG_BT_CONN_PARAM_UPDATE_TIMEOUT} option.
  384. *
  385. * @param conn Connection object.
  386. * @param param Updated connection parameters.
  387. *
  388. * @return Zero on success or (negative) error code on failure.
  389. */
  390. int bt_conn_le_param_update(struct bt_conn *conn,
  391. const struct bt_le_conn_param *param);
  392. /** @brief Update the connection transmit data length parameters.
  393. *
  394. * @param conn Connection object.
  395. * @param param Updated data length parameters.
  396. *
  397. * @return Zero on success or (negative) error code on failure.
  398. */
  399. int bt_conn_le_data_len_update(struct bt_conn *conn,
  400. const struct bt_conn_le_data_len_param *param);
  401. /** @brief Update the connection PHY parameters.
  402. *
  403. * Update the preferred transmit and receive PHYs of the connection.
  404. * Use @ref BT_GAP_LE_PHY_NONE to indicate no preference.
  405. *
  406. * @param conn Connection object.
  407. * @param param Updated connection parameters.
  408. *
  409. * @return Zero on success or (negative) error code on failure.
  410. */
  411. int bt_conn_le_phy_update(struct bt_conn *conn,
  412. const struct bt_conn_le_phy_param *param);
  413. /** @brief Disconnect from a remote device or cancel pending connection.
  414. *
  415. * Disconnect an active connection with the specified reason code or cancel
  416. * pending outgoing connection.
  417. *
  418. * The disconnect reason for a normal disconnect should be:
  419. * @ref BT_HCI_ERR_REMOTE_USER_TERM_CONN.
  420. *
  421. * The following disconnect reasons are accepted:
  422. * - @ref BT_HCI_ERR_AUTH_FAIL
  423. * - @ref BT_HCI_ERR_REMOTE_USER_TERM_CONN
  424. * - @ref BT_HCI_ERR_REMOTE_LOW_RESOURCES
  425. * - @ref BT_HCI_ERR_REMOTE_POWER_OFF
  426. * - @ref BT_HCI_ERR_UNSUPP_REMOTE_FEATURE
  427. * - @ref BT_HCI_ERR_PAIRING_NOT_SUPPORTED
  428. * - @ref BT_HCI_ERR_UNACCEPT_CONN_PARAM
  429. *
  430. * @param conn Connection to disconnect.
  431. * @param reason Reason code for the disconnection.
  432. *
  433. * @return Zero on success or (negative) error code on failure.
  434. */
  435. int bt_conn_disconnect(struct bt_conn *conn, uint8_t reason);
  436. enum {
  437. /** Convenience value when no options are specified. */
  438. BT_CONN_LE_OPT_NONE = 0,
  439. /** @brief Enable LE Coded PHY.
  440. *
  441. * Enable scanning on the LE Coded PHY.
  442. */
  443. BT_CONN_LE_OPT_CODED = BIT(0),
  444. /** @brief Disable LE 1M PHY.
  445. *
  446. * Disable scanning on the LE 1M PHY.
  447. *
  448. * @note Requires @ref BT_CONN_LE_OPT_CODED.
  449. */
  450. BT_CONN_LE_OPT_NO_1M = BIT(1),
  451. };
  452. struct bt_conn_le_create_param {
  453. /** Bit-field of create connection options. */
  454. uint32_t options;
  455. /** Scan interval (N * 0.625 ms) */
  456. uint16_t interval;
  457. /** Scan window (N * 0.625 ms) */
  458. uint16_t window;
  459. /** @brief Scan interval LE Coded PHY (N * 0.625 MS)
  460. *
  461. * Set zero to use same as LE 1M PHY scan interval
  462. */
  463. uint16_t interval_coded;
  464. /** @brief Scan window LE Coded PHY (N * 0.625 MS)
  465. *
  466. * Set zero to use same as LE 1M PHY scan window.
  467. */
  468. uint16_t window_coded;
  469. /** @brief Connection initiation timeout (N * 10 MS)
  470. *
  471. * Set zero to use the default @kconfig{CONFIG_BT_CREATE_CONN_TIMEOUT}
  472. * timeout.
  473. *
  474. * @note Unused in @ref bt_conn_le_create_auto
  475. */
  476. uint16_t timeout;
  477. };
  478. /** @brief Initialize create connection parameters
  479. *
  480. * @param _options Create connection options.
  481. * @param _interval Create connection scan interval (N * 0.625 ms).
  482. * @param _window Create connection scan window (N * 0.625 ms).
  483. */
  484. #define BT_CONN_LE_CREATE_PARAM_INIT(_options, _interval, _window) \
  485. { \
  486. .options = (_options), \
  487. .interval = (_interval), \
  488. .window = (_window), \
  489. .interval_coded = 0, \
  490. .window_coded = 0, \
  491. .timeout = 0, \
  492. }
  493. /** Helper to declare create connection parameters inline
  494. *
  495. * @param _options Create connection options.
  496. * @param _interval Create connection scan interval (N * 0.625 ms).
  497. * @param _window Create connection scan window (N * 0.625 ms).
  498. */
  499. #define BT_CONN_LE_CREATE_PARAM(_options, _interval, _window) \
  500. ((struct bt_conn_le_create_param[]) { \
  501. BT_CONN_LE_CREATE_PARAM_INIT(_options, _interval, _window) \
  502. })
  503. /** Default LE create connection parameters.
  504. * Scan continuously by setting scan interval equal to scan window.
  505. */
  506. #define BT_CONN_LE_CREATE_CONN \
  507. BT_CONN_LE_CREATE_PARAM(BT_CONN_LE_OPT_NONE, \
  508. BT_GAP_SCAN_FAST_INTERVAL, \
  509. BT_GAP_SCAN_FAST_INTERVAL)
  510. /** Default LE create connection using filter accept list parameters.
  511. * Scan window: 30 ms.
  512. * Scan interval: 60 ms.
  513. */
  514. #define BT_CONN_LE_CREATE_CONN_AUTO \
  515. BT_CONN_LE_CREATE_PARAM(BT_CONN_LE_OPT_NONE, \
  516. BT_GAP_SCAN_FAST_INTERVAL, \
  517. BT_GAP_SCAN_FAST_WINDOW)
  518. /** @brief Initiate an LE connection to a remote device.
  519. *
  520. * Allows initiate new LE link to remote peer using its address.
  521. *
  522. * The caller gets a new reference to the connection object which must be
  523. * released with bt_conn_unref() once done using the object.
  524. *
  525. * This uses the General Connection Establishment procedure.
  526. *
  527. * The application must disable explicit scanning before initiating
  528. * a new LE connection.
  529. *
  530. * @param[in] peer Remote address.
  531. * @param[in] create_param Create connection parameters.
  532. * @param[in] conn_param Initial connection parameters.
  533. * @param[out] conn Valid connection object on success.
  534. *
  535. * @return Zero on success or (negative) error code on failure.
  536. */
  537. int bt_conn_le_create(const bt_addr_le_t *peer,
  538. const struct bt_conn_le_create_param *create_param,
  539. const struct bt_le_conn_param *conn_param,
  540. struct bt_conn **conn);
  541. /** @brief Automatically connect to remote devices in the filter accept list..
  542. *
  543. * This uses the Auto Connection Establishment procedure.
  544. * The procedure will continue until a single connection is established or the
  545. * procedure is stopped through @ref bt_conn_create_auto_stop.
  546. * To establish connections to all devices in the the filter accept list the
  547. * procedure should be started again in the connected callback after a
  548. * new connection has been established.
  549. *
  550. * @param create_param Create connection parameters
  551. * @param conn_param Initial connection parameters.
  552. *
  553. * @return Zero on success or (negative) error code on failure.
  554. * @return -ENOMEM No free connection object available.
  555. */
  556. int bt_conn_le_create_auto(const struct bt_conn_le_create_param *create_param,
  557. const struct bt_le_conn_param *conn_param);
  558. /** @brief Stop automatic connect creation.
  559. *
  560. * @return Zero on success or (negative) error code on failure.
  561. */
  562. int bt_conn_create_auto_stop(void);
  563. /** @brief Automatically connect to remote device if it's in range.
  564. *
  565. * This function enables/disables automatic connection initiation.
  566. * Every time the device loses the connection with peer, this connection
  567. * will be re-established if connectable advertisement from peer is received.
  568. *
  569. * @note Auto connect is disabled during explicit scanning.
  570. *
  571. * @param addr Remote Bluetooth address.
  572. * @param param If non-NULL, auto connect is enabled with the given
  573. * parameters. If NULL, auto connect is disabled.
  574. *
  575. * @return Zero on success or error code otherwise.
  576. */
  577. int bt_le_set_auto_conn(const bt_addr_le_t *addr,
  578. const struct bt_le_conn_param *param);
  579. /** Security level. */
  580. typedef enum __packed {
  581. /** Level 0: Only for BR/EDR special cases, like SDP */
  582. BT_SECURITY_L0,
  583. /** Level 1: No encryption and no authentication. */
  584. BT_SECURITY_L1,
  585. /** Level 2: Encryption and no authentication (no MITM). */
  586. BT_SECURITY_L2,
  587. /** Level 3: Encryption and authentication (MITM). */
  588. BT_SECURITY_L3,
  589. /** Level 4: Authenticated Secure Connections and 128-bit key. */
  590. BT_SECURITY_L4,
  591. /** Bit to force new pairing procedure, bit-wise OR with requested
  592. * security level.
  593. */
  594. BT_SECURITY_FORCE_PAIR = BIT(7),
  595. } bt_security_t;
  596. /** @brief Set security level for a connection.
  597. *
  598. * This function enable security (encryption) for a connection. If the device
  599. * has bond information for the peer with sufficiently strong key encryption
  600. * will be enabled. If the connection is already encrypted with sufficiently
  601. * strong key this function does nothing.
  602. *
  603. * If the device has no bond information for the peer and is not already paired
  604. * then the pairing procedure will be initiated. If the device has bond
  605. * information or is already paired and the keys are too weak then the pairing
  606. * procedure will be initiated.
  607. *
  608. * This function may return error if required level of security is not possible
  609. * to achieve due to local or remote device limitation (e.g., input output
  610. * capabilities), or if the maximum number of paired devices has been reached.
  611. *
  612. * This function may return error if the pairing procedure has already been
  613. * initiated by the local device or the peer device.
  614. *
  615. * @note When @kconfig{CONFIG_BT_SMP_SC_ONLY} is enabled then the security
  616. * level will always be level 4.
  617. *
  618. * @note When @kconfig{CONFIG_BT_SMP_OOB_LEGACY_PAIR_ONLY} is enabled then the
  619. * security level will always be level 3.
  620. *
  621. * @param conn Connection object.
  622. * @param sec Requested security level.
  623. *
  624. * @return 0 on success or negative error
  625. */
  626. int bt_conn_set_security(struct bt_conn *conn, bt_security_t sec);
  627. /** @brief Get security level for a connection.
  628. *
  629. * @return Connection security level
  630. */
  631. bt_security_t bt_conn_get_security(struct bt_conn *conn);
  632. /** @brief Get encryption key size.
  633. *
  634. * This function gets encryption key size.
  635. * If there is no security (encryption) enabled 0 will be returned.
  636. *
  637. * @param conn Existing connection object.
  638. *
  639. * @return Encryption key size.
  640. */
  641. uint8_t bt_conn_enc_key_size(struct bt_conn *conn);
  642. enum bt_security_err {
  643. /** Security procedure successful. */
  644. BT_SECURITY_ERR_SUCCESS,
  645. /** Authentication failed. */
  646. BT_SECURITY_ERR_AUTH_FAIL,
  647. /** PIN or encryption key is missing. */
  648. BT_SECURITY_ERR_PIN_OR_KEY_MISSING,
  649. /** OOB data is not available. */
  650. BT_SECURITY_ERR_OOB_NOT_AVAILABLE,
  651. /** The requested security level could not be reached. */
  652. BT_SECURITY_ERR_AUTH_REQUIREMENT,
  653. /** Pairing is not supported */
  654. BT_SECURITY_ERR_PAIR_NOT_SUPPORTED,
  655. /** Pairing is not allowed. */
  656. BT_SECURITY_ERR_PAIR_NOT_ALLOWED,
  657. /** Invalid parameters. */
  658. BT_SECURITY_ERR_INVALID_PARAM,
  659. /** Pairing failed but the exact reason could not be specified. */
  660. BT_SECURITY_ERR_UNSPECIFIED,
  661. };
  662. /** @brief Connection callback structure.
  663. *
  664. * This structure is used for tracking the state of a connection.
  665. * It is registered with the help of the bt_conn_cb_register() API.
  666. * It's permissible to register multiple instances of this @ref bt_conn_cb
  667. * type, in case different modules of an application are interested in
  668. * tracking the connection state. If a callback is not of interest for
  669. * an instance, it may be set to NULL and will as a consequence not be
  670. * used for that instance.
  671. */
  672. struct bt_conn_cb {
  673. /** @brief A new connection has been established.
  674. *
  675. * This callback notifies the application of a new connection.
  676. * In case the err parameter is non-zero it means that the
  677. * connection establishment failed.
  678. *
  679. * @note If the connection was established from an advertising set then
  680. * the advertising set cannot be restarted directly from this
  681. * callback. Instead use the connected callback of the
  682. * advertising set.
  683. *
  684. * @param conn New connection object.
  685. * @param err HCI error. Zero for success, non-zero otherwise.
  686. *
  687. * @p err can mean either of the following:
  688. * - @ref BT_HCI_ERR_UNKNOWN_CONN_ID Creating the connection started by
  689. * @ref bt_conn_le_create was canceled either by the user through
  690. * @ref bt_conn_disconnect or by the timeout in the host through
  691. * @ref bt_conn_le_create_param timeout parameter, which defaults to
  692. * @kconfig{CONFIG_BT_CREATE_CONN_TIMEOUT} seconds.
  693. * - @p BT_HCI_ERR_ADV_TIMEOUT High duty cycle directed connectable
  694. * advertiser started by @ref bt_le_adv_start failed to be connected
  695. * within the timeout.
  696. */
  697. void (*connected)(struct bt_conn *conn, uint8_t err);
  698. /** @brief A connection has been disconnected.
  699. *
  700. * This callback notifies the application that a connection
  701. * has been disconnected.
  702. *
  703. * When this callback is called the stack still has one reference to
  704. * the connection object. If the application in this callback tries to
  705. * start either a connectable advertiser or create a new connection
  706. * this might fail because there are no free connection objects
  707. * available.
  708. * To avoid this issue it is recommended to either start connectable
  709. * advertise or create a new connection using @ref k_work_submit or
  710. * increase @kconfig{CONFIG_BT_MAX_CONN}.
  711. *
  712. * @param conn Connection object.
  713. * @param reason HCI reason for the disconnection.
  714. */
  715. void (*disconnected)(struct bt_conn *conn, uint8_t reason);
  716. /** @brief LE connection parameter update request.
  717. *
  718. * This callback notifies the application that a remote device
  719. * is requesting to update the connection parameters. The
  720. * application accepts the parameters by returning true, or
  721. * rejects them by returning false. Before accepting, the
  722. * application may also adjust the parameters to better suit
  723. * its needs.
  724. *
  725. * It is recommended for an application to have just one of these
  726. * callbacks for simplicity. However, if an application registers
  727. * multiple it needs to manage the potentially different
  728. * requirements for each callback. Each callback gets the
  729. * parameters as returned by previous callbacks, i.e. they are not
  730. * necessarily the same ones as the remote originally sent.
  731. *
  732. * If the application does not have this callback then the default
  733. * is to accept the parameters.
  734. *
  735. * @param conn Connection object.
  736. * @param param Proposed connection parameters.
  737. *
  738. * @return true to accept the parameters, or false to reject them.
  739. */
  740. bool (*le_param_req)(struct bt_conn *conn,
  741. struct bt_le_conn_param *param);
  742. /** @brief The parameters for an LE connection have been updated.
  743. *
  744. * This callback notifies the application that the connection
  745. * parameters for an LE connection have been updated.
  746. *
  747. * @param conn Connection object.
  748. * @param interval Connection interval.
  749. * @param latency Connection latency.
  750. * @param timeout Connection supervision timeout.
  751. */
  752. void (*le_param_updated)(struct bt_conn *conn, uint16_t interval,
  753. uint16_t latency, uint16_t timeout);
  754. #if defined(CONFIG_BT_SMP)
  755. /** @brief Remote Identity Address has been resolved.
  756. *
  757. * This callback notifies the application that a remote
  758. * Identity Address has been resolved
  759. *
  760. * @param conn Connection object.
  761. * @param rpa Resolvable Private Address.
  762. * @param identity Identity Address.
  763. */
  764. void (*identity_resolved)(struct bt_conn *conn,
  765. const bt_addr_le_t *rpa,
  766. const bt_addr_le_t *identity);
  767. #endif /* CONFIG_BT_SMP */
  768. #if defined(CONFIG_BT_SMP) || defined(CONFIG_BT_BREDR)
  769. /** @brief The security level of a connection has changed.
  770. *
  771. * This callback notifies the application that the security of a
  772. * connection has changed.
  773. *
  774. * The security level of the connection can either have been increased
  775. * or remain unchanged. An increased security level means that the
  776. * pairing procedure has been performed or the bond information from
  777. * a previous connection has been applied. If the security level
  778. * remains unchanged this means that the encryption key has been
  779. * refreshed for the connection.
  780. *
  781. * @param conn Connection object.
  782. * @param level New security level of the connection.
  783. * @param err Security error. Zero for success, non-zero otherwise.
  784. */
  785. void (*security_changed)(struct bt_conn *conn, bt_security_t level,
  786. enum bt_security_err err);
  787. #endif /* defined(CONFIG_BT_SMP) || defined(CONFIG_BT_BREDR) */
  788. #if defined(CONFIG_BT_REMOTE_INFO)
  789. /** @brief Remote information procedures has completed.
  790. *
  791. * This callback notifies the application that the remote information
  792. * has been retrieved from the remote peer.
  793. *
  794. * @param conn Connection object.
  795. * @param remote_info Connection information of remote device.
  796. */
  797. void (*remote_info_available)(struct bt_conn *conn,
  798. struct bt_conn_remote_info *remote_info);
  799. #endif /* defined(CONFIG_BT_REMOTE_INFO) */
  800. #if defined(CONFIG_BT_USER_PHY_UPDATE)
  801. /** @brief The PHY of the connection has changed.
  802. *
  803. * This callback notifies the application that the PHY of the
  804. * connection has changed.
  805. *
  806. * @param conn Connection object.
  807. * @param info Connection LE PHY information.
  808. */
  809. void (*le_phy_updated)(struct bt_conn *conn,
  810. struct bt_conn_le_phy_info *param);
  811. #endif /* defined(CONFIG_BT_USER_PHY_UPDATE) */
  812. #if defined(CONFIG_BT_USER_DATA_LEN_UPDATE)
  813. /** @brief The data length parameters of the connection has changed.
  814. *
  815. * This callback notifies the application that the maximum Link Layer
  816. * payload length or transmission time has changed.
  817. *
  818. * @param conn Connection object.
  819. * @param info Connection data length information.
  820. */
  821. void (*le_data_len_updated)(struct bt_conn *conn,
  822. struct bt_conn_le_data_len_info *info);
  823. #endif /* defined(CONFIG_BT_USER_DATA_LEN_UPDATE) */
  824. struct bt_conn_cb *_next;
  825. };
  826. /** @brief Register connection callbacks.
  827. *
  828. * Register callbacks to monitor the state of connections.
  829. *
  830. * @param cb Callback struct. Must point to memory that remains valid.
  831. */
  832. void bt_conn_cb_register(struct bt_conn_cb *cb);
  833. /** @def BT_CONN_CB_DEFINE
  834. *
  835. * @brief Register a callback structure for connection events.
  836. *
  837. * @param _name Name of callback structure.
  838. */
  839. #define BT_CONN_CB_DEFINE(_name) \
  840. static const STRUCT_SECTION_ITERABLE(bt_conn_cb, \
  841. _CONCAT(bt_conn_cb_, \
  842. _name))
  843. /** @brief Enable/disable bonding.
  844. *
  845. * Set/clear the Bonding flag in the Authentication Requirements of
  846. * SMP Pairing Request/Response data.
  847. * The initial value of this flag depends on BT_BONDABLE Kconfig setting.
  848. * For the vast majority of applications calling this function shouldn't be
  849. * needed.
  850. *
  851. * @param enable Value allowing/disallowing to be bondable.
  852. */
  853. void bt_set_bondable(bool enable);
  854. /** @brief Allow/disallow remote OOB data to be used for pairing.
  855. *
  856. * Set/clear the OOB data flag for SMP Pairing Request/Response data.
  857. * The initial value of this flag depends on BT_OOB_DATA_PRESENT Kconfig
  858. * setting.
  859. *
  860. * @param enable Value allowing/disallowing remote OOB data.
  861. */
  862. void bt_set_oob_data_flag(bool enable);
  863. /** @brief Set OOB Temporary Key to be used for pairing
  864. *
  865. * This function allows to set OOB data for the LE legacy pairing procedure.
  866. * The function should only be called in response to the oob_data_request()
  867. * callback provided that the legacy method is user pairing.
  868. *
  869. * @param conn Connection object
  870. * @param tk Pointer to 16 byte long TK array
  871. *
  872. * @return Zero on success or -EINVAL if NULL
  873. */
  874. int bt_le_oob_set_legacy_tk(struct bt_conn *conn, const uint8_t *tk);
  875. /** @brief Set OOB data during LE Secure Connections (SC) pairing procedure
  876. *
  877. * This function allows to set OOB data during the LE SC pairing procedure.
  878. * The function should only be called in response to the oob_data_request()
  879. * callback provided that LE SC method is used for pairing.
  880. *
  881. * The user should submit OOB data according to the information received in the
  882. * callback. This may yield three different configurations: with only local OOB
  883. * data present, with only remote OOB data present or with both local and
  884. * remote OOB data present.
  885. *
  886. * @param conn Connection object
  887. * @param oobd_local Local OOB data or NULL if not present
  888. * @param oobd_remote Remote OOB data or NULL if not present
  889. *
  890. * @return Zero on success or error code otherwise, positive in case of
  891. * protocol error or negative (POSIX) in case of stack internal error.
  892. */
  893. int bt_le_oob_set_sc_data(struct bt_conn *conn,
  894. const struct bt_le_oob_sc_data *oobd_local,
  895. const struct bt_le_oob_sc_data *oobd_remote);
  896. /** @brief Get OOB data used for LE Secure Connections (SC) pairing procedure
  897. *
  898. * This function allows to get OOB data during the LE SC pairing procedure that
  899. * were set by the bt_le_oob_set_sc_data() API.
  900. *
  901. * @note The OOB data will only be available as long as the connection object
  902. * associated with it is valid.
  903. *
  904. * @param conn Connection object
  905. * @param oobd_local Local OOB data or NULL if not set
  906. * @param oobd_remote Remote OOB data or NULL if not set
  907. *
  908. * @return Zero on success or error code otherwise, positive in case of
  909. * protocol error or negative (POSIX) in case of stack internal error.
  910. */
  911. int bt_le_oob_get_sc_data(struct bt_conn *conn,
  912. const struct bt_le_oob_sc_data **oobd_local,
  913. const struct bt_le_oob_sc_data **oobd_remote);
  914. /** @def BT_PASSKEY_INVALID
  915. *
  916. * Special passkey value that can be used to disable a previously
  917. * set fixed passkey.
  918. */
  919. #define BT_PASSKEY_INVALID 0xffffffff
  920. /** @brief Set a fixed passkey to be used for pairing.
  921. *
  922. * This API is only available when the CONFIG_BT_FIXED_PASSKEY
  923. * configuration option has been enabled.
  924. *
  925. * Sets a fixed passkey to be used for pairing. If set, the
  926. * pairing_confim() callback will be called for all incoming pairings.
  927. *
  928. * @param passkey A valid passkey (0 - 999999) or BT_PASSKEY_INVALID
  929. * to disable a previously set fixed passkey.
  930. *
  931. * @return 0 on success or a negative error code on failure.
  932. */
  933. int bt_passkey_set(unsigned int passkey);
  934. /** Info Structure for OOB pairing */
  935. struct bt_conn_oob_info {
  936. /** Type of OOB pairing method */
  937. enum {
  938. /** LE legacy pairing */
  939. BT_CONN_OOB_LE_LEGACY,
  940. /** LE SC pairing */
  941. BT_CONN_OOB_LE_SC,
  942. } type;
  943. union {
  944. /** LE Secure Connections OOB pairing parameters */
  945. struct {
  946. /** OOB data configuration */
  947. enum {
  948. /** Local OOB data requested */
  949. BT_CONN_OOB_LOCAL_ONLY,
  950. /** Remote OOB data requested */
  951. BT_CONN_OOB_REMOTE_ONLY,
  952. /** Both local and remote OOB data requested */
  953. BT_CONN_OOB_BOTH_PEERS,
  954. /** No OOB data requested */
  955. BT_CONN_OOB_NO_DATA,
  956. } oob_config;
  957. } lesc;
  958. };
  959. };
  960. #if defined(CONFIG_BT_SMP_APP_PAIRING_ACCEPT)
  961. /** @brief Pairing request and pairing response info structure.
  962. *
  963. * This structure is the same for both smp_pairing_req and smp_pairing_rsp
  964. * and a subset of the packet data, except for the initial Code octet.
  965. * It is documented in Core Spec. Vol. 3, Part H, 3.5.1 and 3.5.2.
  966. */
  967. struct bt_conn_pairing_feat {
  968. /** IO Capability, Core Spec. Vol 3, Part H, 3.5.1, Table 3.4 */
  969. uint8_t io_capability;
  970. /** OOB data flag, Core Spec. Vol 3, Part H, 3.5.1, Table 3.5 */
  971. uint8_t oob_data_flag;
  972. /** AuthReq, Core Spec. Vol 3, Part H, 3.5.1, Fig. 3.3 */
  973. uint8_t auth_req;
  974. /** Maximum Encryption Key Size, Core Spec. Vol 3, Part H, 3.5.1 */
  975. uint8_t max_enc_key_size;
  976. /** Initiator Key Distribution/Generation, Core Spec. Vol 3, Part H,
  977. * 3.6.1, Fig. 3.11
  978. */
  979. uint8_t init_key_dist;
  980. /** Responder Key Distribution/Generation, Core Spec. Vol 3, Part H
  981. * 3.6.1, Fig. 3.11
  982. */
  983. uint8_t resp_key_dist;
  984. };
  985. #endif /* CONFIG_BT_SMP_APP_PAIRING_ACCEPT */
  986. /** Authenticated pairing callback structure */
  987. struct bt_conn_auth_cb {
  988. #if defined(CONFIG_BT_SMP_APP_PAIRING_ACCEPT)
  989. /** @brief Query to proceed incoming pairing or not.
  990. *
  991. * On any incoming pairing req/rsp this callback will be called for
  992. * the application to decide whether to allow for the pairing to
  993. * continue.
  994. *
  995. * The pairing info received from the peer is passed to assist
  996. * making the decision.
  997. *
  998. * As this callback is synchronous the application should return
  999. * a response value immediately. Otherwise it may affect the
  1000. * timing during pairing. Hence, this information should not be
  1001. * conveyed to the user to take action.
  1002. *
  1003. * The remaining callbacks are not affected by this, but do notice
  1004. * that other callbacks can be called during the pairing. Eg. if
  1005. * pairing_confirm is registered both will be called for Just-Works
  1006. * pairings.
  1007. *
  1008. * This callback may be unregistered in which case pairing continues
  1009. * as if the Kconfig flag was not set.
  1010. *
  1011. * This callback is not called for BR/EDR Secure Simple Pairing (SSP).
  1012. *
  1013. * @param conn Connection where pairing is initiated.
  1014. * @param feat Pairing req/resp info.
  1015. */
  1016. enum bt_security_err (*pairing_accept)(struct bt_conn *conn,
  1017. const struct bt_conn_pairing_feat *const feat);
  1018. #endif /* CONFIG_BT_SMP_APP_PAIRING_ACCEPT */
  1019. /** @brief Display a passkey to the user.
  1020. *
  1021. * When called the application is expected to display the given
  1022. * passkey to the user, with the expectation that the passkey will
  1023. * then be entered on the peer device. The passkey will be in the
  1024. * range of 0 - 999999, and is expected to be padded with zeroes so
  1025. * that six digits are always shown. E.g. the value 37 should be
  1026. * shown as 000037.
  1027. *
  1028. * This callback may be set to NULL, which means that the local
  1029. * device lacks the ability do display a passkey. If set
  1030. * to non-NULL the cancel callback must also be provided, since
  1031. * this is the only way the application can find out that it should
  1032. * stop displaying the passkey.
  1033. *
  1034. * @param conn Connection where pairing is currently active.
  1035. * @param passkey Passkey to show to the user.
  1036. */
  1037. void (*passkey_display)(struct bt_conn *conn, unsigned int passkey);
  1038. /** @brief Request the user to enter a passkey.
  1039. *
  1040. * When called the user is expected to enter a passkey. The passkey
  1041. * must be in the range of 0 - 999999, and should be expected to
  1042. * be zero-padded, as that's how the peer device will typically be
  1043. * showing it (e.g. 37 would be shown as 000037).
  1044. *
  1045. * Once the user has entered the passkey its value should be given
  1046. * to the stack using the bt_conn_auth_passkey_entry() API.
  1047. *
  1048. * This callback may be set to NULL, which means that the local
  1049. * device lacks the ability to enter a passkey. If set to non-NULL
  1050. * the cancel callback must also be provided, since this is the
  1051. * only way the application can find out that it should stop
  1052. * requesting the user to enter a passkey.
  1053. *
  1054. * @param conn Connection where pairing is currently active.
  1055. */
  1056. void (*passkey_entry)(struct bt_conn *conn);
  1057. /** @brief Request the user to confirm a passkey.
  1058. *
  1059. * When called the user is expected to confirm that the given
  1060. * passkey is also shown on the peer device.. The passkey will
  1061. * be in the range of 0 - 999999, and should be zero-padded to
  1062. * always be six digits (e.g. 37 would be shown as 000037).
  1063. *
  1064. * Once the user has confirmed the passkey to match, the
  1065. * bt_conn_auth_passkey_confirm() API should be called. If the
  1066. * user concluded that the passkey doesn't match the
  1067. * bt_conn_auth_cancel() API should be called.
  1068. *
  1069. * This callback may be set to NULL, which means that the local
  1070. * device lacks the ability to confirm a passkey. If set to non-NULL
  1071. * the cancel callback must also be provided, since this is the
  1072. * only way the application can find out that it should stop
  1073. * requesting the user to confirm a passkey.
  1074. *
  1075. * @param conn Connection where pairing is currently active.
  1076. * @param passkey Passkey to be confirmed.
  1077. */
  1078. void (*passkey_confirm)(struct bt_conn *conn, unsigned int passkey);
  1079. /** @brief Request the user to provide Out of Band (OOB) data.
  1080. *
  1081. * When called the user is expected to provide OOB data. The required
  1082. * data are indicated by the information structure.
  1083. *
  1084. * For LE Secure Connections OOB pairing, the user should provide
  1085. * local OOB data, remote OOB data or both depending on their
  1086. * availability. Their value should be given to the stack using the
  1087. * bt_le_oob_set_sc_data() API.
  1088. *
  1089. * This callback must be set to non-NULL in order to support OOB
  1090. * pairing.
  1091. *
  1092. * @param conn Connection where pairing is currently active.
  1093. * @param info OOB pairing information.
  1094. */
  1095. void (*oob_data_request)(struct bt_conn *conn,
  1096. struct bt_conn_oob_info *info);
  1097. /** @brief Cancel the ongoing user request.
  1098. *
  1099. * This callback will be called to notify the application that it
  1100. * should cancel any previous user request (passkey display, entry
  1101. * or confirmation).
  1102. *
  1103. * This may be set to NULL, but must always be provided whenever the
  1104. * passkey_display, passkey_entry passkey_confirm or pairing_confirm
  1105. * callback has been provided.
  1106. *
  1107. * @param conn Connection where pairing is currently active.
  1108. */
  1109. void (*cancel)(struct bt_conn *conn);
  1110. /** @brief Request confirmation for an incoming pairing.
  1111. *
  1112. * This callback will be called to confirm an incoming pairing
  1113. * request where none of the other user callbacks is applicable.
  1114. *
  1115. * If the user decides to accept the pairing the
  1116. * bt_conn_auth_pairing_confirm() API should be called. If the
  1117. * user decides to reject the pairing the bt_conn_auth_cancel() API
  1118. * should be called.
  1119. *
  1120. * This callback may be set to NULL, which means that the local
  1121. * device lacks the ability to confirm a pairing request. If set
  1122. * to non-NULL the cancel callback must also be provided, since
  1123. * this is the only way the application can find out that it should
  1124. * stop requesting the user to confirm a pairing request.
  1125. *
  1126. * @param conn Connection where pairing is currently active.
  1127. */
  1128. void (*pairing_confirm)(struct bt_conn *conn);
  1129. #if defined(CONFIG_BT_BREDR)
  1130. /** @brief Request the user to enter a passkey.
  1131. *
  1132. * This callback will be called for a BR/EDR (Bluetooth Classic)
  1133. * connection where pairing is being performed. Once called the
  1134. * user is expected to enter a PIN code with a length between
  1135. * 1 and 16 digits. If the @a highsec parameter is set to true
  1136. * the PIN code must be 16 digits long.
  1137. *
  1138. * Once entered, the PIN code should be given to the stack using
  1139. * the bt_conn_auth_pincode_entry() API.
  1140. *
  1141. * This callback may be set to NULL, however in that case pairing
  1142. * over BR/EDR will not be possible. If provided, the cancel
  1143. * callback must be provided as well.
  1144. *
  1145. * @param conn Connection where pairing is currently active.
  1146. * @param highsec true if 16 digit PIN is required.
  1147. */
  1148. void (*pincode_entry)(struct bt_conn *conn, bool highsec);
  1149. #endif
  1150. /** @brief notify that pairing procedure was complete.
  1151. *
  1152. * This callback notifies the application that the pairing procedure
  1153. * has been completed.
  1154. *
  1155. * @param conn Connection object.
  1156. * @param bonded Bond information has been distributed during the
  1157. * pairing procedure.
  1158. */
  1159. void (*pairing_complete)(struct bt_conn *conn, bool bonded);
  1160. /** @brief notify that pairing process has failed.
  1161. *
  1162. * @param conn Connection object.
  1163. * @param reason Pairing failed reason
  1164. */
  1165. void (*pairing_failed)(struct bt_conn *conn,
  1166. enum bt_security_err reason);
  1167. /** @brief Notify that bond has been deleted.
  1168. *
  1169. * This callback notifies the application that the bond information
  1170. * for the remote peer has been deleted
  1171. *
  1172. * @param id Which local identity had the bond.
  1173. * @param peer Remote address.
  1174. */
  1175. void (*bond_deleted)(uint8_t id, const bt_addr_le_t *peer);
  1176. };
  1177. /** @brief Register authentication callbacks.
  1178. *
  1179. * Register callbacks to handle authenticated pairing. Passing NULL
  1180. * unregisters a previous callbacks structure.
  1181. *
  1182. * @param cb Callback struct.
  1183. *
  1184. * @return Zero on success or negative error code otherwise
  1185. */
  1186. int bt_conn_auth_cb_register(const struct bt_conn_auth_cb *cb);
  1187. /** @brief Reply with entered passkey.
  1188. *
  1189. * This function should be called only after passkey_entry callback from
  1190. * bt_conn_auth_cb structure was called.
  1191. *
  1192. * @param conn Connection object.
  1193. * @param passkey Entered passkey.
  1194. *
  1195. * @return Zero on success or negative error code otherwise
  1196. */
  1197. int bt_conn_auth_passkey_entry(struct bt_conn *conn, unsigned int passkey);
  1198. /** @brief Cancel ongoing authenticated pairing.
  1199. *
  1200. * This function allows to cancel ongoing authenticated pairing.
  1201. *
  1202. * @param conn Connection object.
  1203. *
  1204. * @return Zero on success or negative error code otherwise
  1205. */
  1206. int bt_conn_auth_cancel(struct bt_conn *conn);
  1207. /** @brief Reply if passkey was confirmed to match by user.
  1208. *
  1209. * This function should be called only after passkey_confirm callback from
  1210. * bt_conn_auth_cb structure was called.
  1211. *
  1212. * @param conn Connection object.
  1213. *
  1214. * @return Zero on success or negative error code otherwise
  1215. */
  1216. int bt_conn_auth_passkey_confirm(struct bt_conn *conn);
  1217. /** @brief Reply if incoming pairing was confirmed by user.
  1218. *
  1219. * This function should be called only after pairing_confirm callback from
  1220. * bt_conn_auth_cb structure was called if user confirmed incoming pairing.
  1221. *
  1222. * @param conn Connection object.
  1223. *
  1224. * @return Zero on success or negative error code otherwise
  1225. */
  1226. int bt_conn_auth_pairing_confirm(struct bt_conn *conn);
  1227. /** @brief Reply with entered PIN code.
  1228. *
  1229. * This function should be called only after PIN code callback from
  1230. * bt_conn_auth_cb structure was called. It's for legacy 2.0 devices.
  1231. *
  1232. * @param conn Connection object.
  1233. * @param pin Entered PIN code.
  1234. *
  1235. * @return Zero on success or negative error code otherwise
  1236. */
  1237. int bt_conn_auth_pincode_entry(struct bt_conn *conn, const char *pin);
  1238. /** Connection parameters for BR/EDR connections */
  1239. struct bt_br_conn_param {
  1240. bool allow_role_switch;
  1241. };
  1242. /** @brief Initialize BR/EDR connection parameters
  1243. *
  1244. * @param role_switch True if role switch is allowed
  1245. */
  1246. #define BT_BR_CONN_PARAM_INIT(role_switch) \
  1247. { \
  1248. .allow_role_switch = (role_switch), \
  1249. }
  1250. /** Helper to declare BR/EDR connection parameters inline
  1251. *
  1252. * @param role_switch True if role switch is allowed
  1253. */
  1254. #define BT_BR_CONN_PARAM(role_switch) \
  1255. ((struct bt_br_conn_param[]) { \
  1256. BT_BR_CONN_PARAM_INIT(role_switch) \
  1257. })
  1258. /** Default BR/EDR connection parameters:
  1259. * Role switch allowed
  1260. */
  1261. #define BT_BR_CONN_PARAM_DEFAULT BT_BR_CONN_PARAM(true)
  1262. /** @brief Initiate an BR/EDR connection to a remote device.
  1263. *
  1264. * Allows initiate new BR/EDR link to remote peer using its address.
  1265. *
  1266. * The caller gets a new reference to the connection object which must be
  1267. * released with bt_conn_unref() once done using the object.
  1268. *
  1269. * @param peer Remote address.
  1270. * @param param Initial connection parameters.
  1271. *
  1272. * @return Valid connection object on success or NULL otherwise.
  1273. */
  1274. struct bt_conn *bt_conn_create_br(const bt_addr_t *peer,
  1275. const struct bt_br_conn_param *param);
  1276. /** @brief Initiate an SCO connection to a remote device.
  1277. *
  1278. * Allows initiate new SCO link to remote peer using its address.
  1279. *
  1280. * The caller gets a new reference to the connection object which must be
  1281. * released with bt_conn_unref() once done using the object.
  1282. *
  1283. * @param peer Remote address.
  1284. *
  1285. * @return Valid connection object on success or NULL otherwise.
  1286. */
  1287. struct bt_conn *bt_conn_create_sco(const bt_addr_t *peer);
  1288. #ifdef __cplusplus
  1289. }
  1290. #endif
  1291. /**
  1292. * @}
  1293. */
  1294. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_CONN_H_ */