net_linkaddr.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for network link address
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_NET_LINKADDR_H_
  11. #define ZEPHYR_INCLUDE_NET_NET_LINKADDR_H_
  12. #include <zephyr/types.h>
  13. #include <stdbool.h>
  14. #include <errno.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief Network link address library
  20. * @defgroup net_linkaddr Network Link Address Library
  21. * @ingroup networking
  22. * @{
  23. */
  24. /** Maximum length of the link address */
  25. #ifdef CONFIG_NET_L2_IEEE802154
  26. #define NET_LINK_ADDR_MAX_LENGTH 8
  27. #else
  28. #ifdef CONFIG_NET_L2_PPP
  29. #define NET_LINK_ADDR_MAX_LENGTH 8
  30. #else
  31. #define NET_LINK_ADDR_MAX_LENGTH 6
  32. #endif
  33. #endif
  34. /**
  35. * Type of the link address. This indicates the network technology that this
  36. * address is used in. Note that in order to save space we store the value
  37. * into a uint8_t variable, so please do not introduce any values > 255 in
  38. * this enum.
  39. */
  40. enum net_link_type {
  41. /** Unknown link address type. */
  42. NET_LINK_UNKNOWN = 0,
  43. /** IEEE 802.15.4 link address. */
  44. NET_LINK_IEEE802154,
  45. /** Bluetooth IPSP link address. */
  46. NET_LINK_BLUETOOTH,
  47. /** Ethernet link address. */
  48. NET_LINK_ETHERNET,
  49. /** Dummy link address. Used in testing apps and loopback support. */
  50. NET_LINK_DUMMY,
  51. /** CANBUS link address. */
  52. NET_LINK_CANBUS_RAW,
  53. /** 6loCAN link address. */
  54. NET_LINK_CANBUS,
  55. } __packed;
  56. /**
  57. * @brief Hardware link address structure
  58. *
  59. * Used to hold the link address information
  60. */
  61. struct net_linkaddr {
  62. /** The array of byte representing the address */
  63. uint8_t *addr;
  64. /** Length of that address array */
  65. uint8_t len;
  66. /** What kind of address is this for */
  67. uint8_t type;
  68. };
  69. /**
  70. * @brief Hardware link address structure
  71. *
  72. * Used to hold the link address information. This variant is needed
  73. * when we have to store the link layer address.
  74. *
  75. * Note that you cannot cast this to net_linkaddr as uint8_t * is
  76. * handled differently than uint8_t addr[] and the fields are purposely
  77. * in different order.
  78. */
  79. struct net_linkaddr_storage {
  80. /** What kind of address is this for */
  81. uint8_t type;
  82. /** The real length of the ll address. */
  83. uint8_t len;
  84. /** The array of bytes representing the address */
  85. uint8_t addr[NET_LINK_ADDR_MAX_LENGTH];
  86. };
  87. /**
  88. * @brief Compare two link layer addresses.
  89. *
  90. * @param lladdr1 Pointer to a link layer address
  91. * @param lladdr2 Pointer to a link layer address
  92. *
  93. * @return True if the addresses are the same, false otherwise.
  94. */
  95. static inline bool net_linkaddr_cmp(struct net_linkaddr *lladdr1,
  96. struct net_linkaddr *lladdr2)
  97. {
  98. if (!lladdr1 || !lladdr2) {
  99. return false;
  100. }
  101. if (lladdr1->len != lladdr2->len) {
  102. return false;
  103. }
  104. return !memcmp(lladdr1->addr, lladdr2->addr, lladdr1->len);
  105. }
  106. /**
  107. *
  108. * @brief Set the member data of a link layer address storage structure.
  109. *
  110. * @param lladdr_store The link address storage structure to change.
  111. * @param new_addr Array of bytes containing the link address.
  112. * @param new_len Length of the link address array.
  113. * This value should always be <= NET_LINK_ADDR_MAX_LENGTH.
  114. */
  115. static inline int net_linkaddr_set(struct net_linkaddr_storage *lladdr_store,
  116. uint8_t *new_addr, uint8_t new_len)
  117. {
  118. if (!lladdr_store || !new_addr) {
  119. return -EINVAL;
  120. }
  121. if (new_len > NET_LINK_ADDR_MAX_LENGTH) {
  122. return -EMSGSIZE;
  123. }
  124. lladdr_store->len = new_len;
  125. memcpy(lladdr_store->addr, new_addr, new_len);
  126. return 0;
  127. }
  128. /**
  129. * @}
  130. */
  131. #ifdef __cplusplus
  132. }
  133. #endif
  134. #endif /* ZEPHYR_INCLUDE_NET_NET_LINKADDR_H_ */