addr.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /** @file
  2. * @brief Bluetooth device address definitions and utilities.
  3. */
  4. /*
  5. * Copyright (c) 2019 Nordic Semiconductor ASA
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_ADDR_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_ADDR_H_
  11. #include <string.h>
  12. #include <sys/printk.h>
  13. #include <zephyr/types.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @brief Bluetooth device address definitions and utilities.
  19. * @defgroup bt_addr Device Address
  20. * @ingroup bluetooth
  21. * @{
  22. */
  23. #define BT_ADDR_LE_PUBLIC 0x00
  24. #define BT_ADDR_LE_RANDOM 0x01
  25. #define BT_ADDR_LE_PUBLIC_ID 0x02
  26. #define BT_ADDR_LE_RANDOM_ID 0x03
  27. /** Bluetooth Device Address */
  28. typedef struct {
  29. uint8_t val[6];
  30. } bt_addr_t;
  31. /** Bluetooth LE Device Address */
  32. typedef struct {
  33. uint8_t type;
  34. bt_addr_t a;
  35. } bt_addr_le_t;
  36. /** Bluetooth device "any" address, not a valid address */
  37. #define BT_ADDR_ANY ((bt_addr_t[]) { { { 0, 0, 0, 0, 0, 0 } } })
  38. /** Bluetooth device "none" address, not a valid address */
  39. #define BT_ADDR_NONE ((bt_addr_t[]) { { \
  40. { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } } })
  41. /** Bluetooth LE device "any" address, not a valid address */
  42. #define BT_ADDR_LE_ANY ((bt_addr_le_t[]) { { 0, { { 0, 0, 0, 0, 0, 0 } } } })
  43. /** Bluetooth LE device "none" address, not a valid address */
  44. #define BT_ADDR_LE_NONE ((bt_addr_le_t[]) { { 0, \
  45. { { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } } } })
  46. /** @brief Compare Bluetooth device addresses.
  47. *
  48. * @param a First Bluetooth device address to compare
  49. * @param b Second Bluetooth device address to compare
  50. *
  51. * @return negative value if @a a < @a b, 0 if @a a == @a b, else positive
  52. */
  53. static inline int bt_addr_cmp(const bt_addr_t *a, const bt_addr_t *b)
  54. {
  55. return memcmp(a, b, sizeof(*a));
  56. }
  57. /** @brief Compare Bluetooth LE device addresses.
  58. *
  59. * @param a First Bluetooth LE device address to compare
  60. * @param b Second Bluetooth LE device address to compare
  61. *
  62. * @return negative value if @a a < @a b, 0 if @a a == @a b, else positive
  63. */
  64. static inline int bt_addr_le_cmp(const bt_addr_le_t *a, const bt_addr_le_t *b)
  65. {
  66. return memcmp(a, b, sizeof(*a));
  67. }
  68. /** @brief Copy Bluetooth device address.
  69. *
  70. * @param dst Bluetooth device address destination buffer.
  71. * @param src Bluetooth device address source buffer.
  72. */
  73. static inline void bt_addr_copy(bt_addr_t *dst, const bt_addr_t *src)
  74. {
  75. memcpy(dst, src, sizeof(*dst));
  76. }
  77. /** @brief Copy Bluetooth LE device address.
  78. *
  79. * @param dst Bluetooth LE device address destination buffer.
  80. * @param src Bluetooth LE device address source buffer.
  81. */
  82. static inline void bt_addr_le_copy(bt_addr_le_t *dst, const bt_addr_le_t *src)
  83. {
  84. memcpy(dst, src, sizeof(*dst));
  85. }
  86. /** Check if a Bluetooth LE random address is resolvable private address. */
  87. #define BT_ADDR_IS_RPA(a) (((a)->val[5] & 0xc0) == 0x40)
  88. /** Check if a Bluetooth LE random address is a non-resolvable private address.
  89. */
  90. #define BT_ADDR_IS_NRPA(a) (((a)->val[5] & 0xc0) == 0x00)
  91. /** Check if a Bluetooth LE random address is a static address. */
  92. #define BT_ADDR_IS_STATIC(a) (((a)->val[5] & 0xc0) == 0xc0)
  93. /** Set a Bluetooth LE random address as a resolvable private address. */
  94. #define BT_ADDR_SET_RPA(a) ((a)->val[5] = (((a)->val[5] & 0x3f) | 0x40))
  95. /** Set a Bluetooth LE random address as a non-resolvable private address. */
  96. #define BT_ADDR_SET_NRPA(a) ((a)->val[5] &= 0x3f)
  97. /** Set a Bluetooth LE random address as a static address. */
  98. #define BT_ADDR_SET_STATIC(a) ((a)->val[5] |= 0xc0)
  99. /** @brief Create a Bluetooth LE random non-resolvable private address. */
  100. int bt_addr_le_create_nrpa(bt_addr_le_t *addr);
  101. /** @brief Create a Bluetooth LE random static address. */
  102. int bt_addr_le_create_static(bt_addr_le_t *addr);
  103. /** @brief Check if a Bluetooth LE address is a random private resolvable
  104. * address.
  105. *
  106. * @param addr Bluetooth LE device address.
  107. *
  108. * @return true if address is a random private resolvable address.
  109. */
  110. static inline bool bt_addr_le_is_rpa(const bt_addr_le_t *addr)
  111. {
  112. if (addr->type != BT_ADDR_LE_RANDOM) {
  113. return false;
  114. }
  115. return BT_ADDR_IS_RPA(&addr->a);
  116. }
  117. /** @brief Check if a Bluetooth LE address is valid identity address.
  118. *
  119. * Valid Bluetooth LE identity addresses are either public address or
  120. * random static address.
  121. *
  122. * @param addr Bluetooth LE device address.
  123. *
  124. * @return true if address is a valid identity address.
  125. */
  126. static inline bool bt_addr_le_is_identity(const bt_addr_le_t *addr)
  127. {
  128. if (addr->type == BT_ADDR_LE_PUBLIC) {
  129. return true;
  130. }
  131. return BT_ADDR_IS_STATIC(&addr->a);
  132. }
  133. /** @def BT_ADDR_STR_LEN
  134. *
  135. * @brief Recommended length of user string buffer for Bluetooth address
  136. *
  137. * @details The recommended length guarantee the output of address
  138. * conversion will not lose valuable information about address being
  139. * processed.
  140. */
  141. #define BT_ADDR_STR_LEN 18
  142. /** @def BT_ADDR_LE_STR_LEN
  143. *
  144. * @brief Recommended length of user string buffer for Bluetooth LE address
  145. *
  146. * @details The recommended length guarantee the output of address
  147. * conversion will not lose valuable information about address being
  148. * processed.
  149. */
  150. #define BT_ADDR_LE_STR_LEN 30
  151. /** @brief Converts binary Bluetooth address to string.
  152. *
  153. * @param addr Address of buffer containing binary Bluetooth address.
  154. * @param str Address of user buffer with enough room to store formatted
  155. * string containing binary address.
  156. * @param len Length of data to be copied to user string buffer. Refer to
  157. * BT_ADDR_STR_LEN about recommended value.
  158. *
  159. * @return Number of successfully formatted bytes from binary address.
  160. */
  161. static inline int bt_addr_to_str(const bt_addr_t *addr, char *str, size_t len)
  162. {
  163. return snprintk(str, len, "%02X:%02X:%02X:%02X:%02X:%02X",
  164. addr->val[5], addr->val[4], addr->val[3],
  165. addr->val[2], addr->val[1], addr->val[0]);
  166. }
  167. /** @brief Converts binary LE Bluetooth address to string.
  168. *
  169. * @param addr Address of buffer containing binary LE Bluetooth address.
  170. * @param str Address of user buffer with enough room to store
  171. * formatted string containing binary LE address.
  172. * @param len Length of data to be copied to user string buffer. Refer to
  173. * BT_ADDR_LE_STR_LEN about recommended value.
  174. *
  175. * @return Number of successfully formatted bytes from binary address.
  176. */
  177. static inline int bt_addr_le_to_str(const bt_addr_le_t *addr, char *str,
  178. size_t len)
  179. {
  180. char type[10];
  181. switch (addr->type) {
  182. case BT_ADDR_LE_PUBLIC:
  183. strcpy(type, "public");
  184. break;
  185. case BT_ADDR_LE_RANDOM:
  186. strcpy(type, "random");
  187. break;
  188. case BT_ADDR_LE_PUBLIC_ID:
  189. strcpy(type, "public-id");
  190. break;
  191. case BT_ADDR_LE_RANDOM_ID:
  192. strcpy(type, "random-id");
  193. break;
  194. default:
  195. snprintk(type, sizeof(type), "0x%02x", addr->type);
  196. break;
  197. }
  198. return snprintk(str, len, "%02X:%02X:%02X:%02X:%02X:%02X (%s)",
  199. addr->a.val[5], addr->a.val[4], addr->a.val[3],
  200. addr->a.val[2], addr->a.val[1], addr->a.val[0], type);
  201. }
  202. /** @brief Convert Bluetooth address from string to binary.
  203. *
  204. * @param[in] str The string representation of a Bluetooth address.
  205. * @param[out] addr Address of buffer to store the Bluetooth address
  206. *
  207. * @return Zero on success or (negative) error code otherwise.
  208. */
  209. int bt_addr_from_str(const char *str, bt_addr_t *addr);
  210. /** @brief Convert LE Bluetooth address from string to binary.
  211. *
  212. * @param[in] str The string representation of an LE Bluetooth address.
  213. * @param[in] type The string representation of the LE Bluetooth address
  214. * type.
  215. * @param[out] addr Address of buffer to store the LE Bluetooth address
  216. *
  217. * @return Zero on success or (negative) error code otherwise.
  218. */
  219. int bt_addr_le_from_str(const char *str, const char *type, bt_addr_le_t *addr);
  220. /**
  221. * @}
  222. */
  223. #ifdef __cplusplus
  224. }
  225. #endif
  226. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_ADDR_H_ */