net_l2.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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 L2 interface
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_NET_L2_H_
  11. #define ZEPHYR_INCLUDE_NET_NET_L2_H_
  12. #include <device.h>
  13. #include <net/buf.h>
  14. #include <net/capture.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief Network Layer 2 abstraction layer
  20. * @defgroup net_l2 Network L2 Abstraction Layer
  21. * @ingroup networking
  22. * @{
  23. */
  24. struct net_if;
  25. /** L2 flags */
  26. enum net_l2_flags {
  27. /** IP multicast supported */
  28. NET_L2_MULTICAST = BIT(0),
  29. /** Do not joint solicited node multicast group */
  30. NET_L2_MULTICAST_SKIP_JOIN_SOLICIT_NODE = BIT(1),
  31. /** Is promiscuous mode supported */
  32. NET_L2_PROMISC_MODE = BIT(2),
  33. /** Is this L2 point-to-point with tunneling so no need to have
  34. * IP address etc to network interface.
  35. */
  36. NET_L2_POINT_TO_POINT = BIT(3),
  37. } __packed;
  38. /**
  39. * @brief Network L2 structure
  40. *
  41. * Used to provide an interface to lower network stack.
  42. */
  43. struct net_l2 {
  44. /**
  45. * This function is used by net core to get iface's L2 layer parsing
  46. * what's relevant to itself.
  47. */
  48. enum net_verdict (*recv)(struct net_if *iface, struct net_pkt *pkt);
  49. /**
  50. * This function is used by net core to push a packet to lower layer
  51. * (interface's L2), which in turn might work on the packet relevantly.
  52. * (adding proper header etc...)
  53. * Returns a negative error code, or the number of bytes sent otherwise.
  54. */
  55. int (*send)(struct net_if *iface, struct net_pkt *pkt);
  56. /**
  57. * This function is used to enable/disable traffic over a network
  58. * interface. The function returns <0 if error and >=0 if no error.
  59. */
  60. int (*enable)(struct net_if *iface, bool state);
  61. /**
  62. * Return L2 flags for the network interface.
  63. */
  64. enum net_l2_flags (*get_flags)(struct net_if *iface);
  65. };
  66. /** @cond INTERNAL_HIDDEN */
  67. #define NET_L2_GET_NAME(_name) _net_l2_##_name
  68. #define NET_L2_DECLARE_PUBLIC(_name) \
  69. extern const struct net_l2 NET_L2_GET_NAME(_name)
  70. #define NET_L2_GET_CTX_TYPE(_name) _name##_CTX_TYPE
  71. #ifdef CONFIG_NET_L2_VIRTUAL
  72. #define VIRTUAL_L2 VIRTUAL
  73. NET_L2_DECLARE_PUBLIC(VIRTUAL_L2);
  74. #endif /* CONFIG_NET_L2_DUMMY */
  75. #ifdef CONFIG_NET_L2_DUMMY
  76. #define DUMMY_L2 DUMMY
  77. #define DUMMY_L2_CTX_TYPE void*
  78. NET_L2_DECLARE_PUBLIC(DUMMY_L2);
  79. #endif /* CONFIG_NET_L2_DUMMY */
  80. #ifdef CONFIG_NET_L2_ETHERNET
  81. #define ETHERNET_L2 ETHERNET
  82. NET_L2_DECLARE_PUBLIC(ETHERNET_L2);
  83. #endif /* CONFIG_NET_L2_ETHERNET */
  84. #ifdef CONFIG_NET_L2_PPP
  85. #define PPP_L2 PPP
  86. NET_L2_DECLARE_PUBLIC(PPP_L2);
  87. #endif /* CONFIG_NET_L2_PPP */
  88. #ifdef CONFIG_NET_L2_IEEE802154
  89. #define IEEE802154_L2 IEEE802154
  90. NET_L2_DECLARE_PUBLIC(IEEE802154_L2);
  91. #endif /* CONFIG_NET_L2_IEEE802154 */
  92. #ifdef CONFIG_NET_L2_BT
  93. #define BLUETOOTH_L2 BLUETOOTH
  94. #define BLUETOOTH_L2_CTX_TYPE void*
  95. NET_L2_DECLARE_PUBLIC(BLUETOOTH_L2);
  96. #endif /* CONFIG_NET_L2_BT */
  97. #ifdef CONFIG_NET_L2_OPENTHREAD
  98. #define OPENTHREAD_L2 OPENTHREAD
  99. NET_L2_DECLARE_PUBLIC(OPENTHREAD_L2);
  100. #endif /* CONFIG_NET_L2_OPENTHREAD */
  101. #ifdef CONFIG_NET_L2_CANBUS_RAW
  102. #define CANBUS_RAW_L2 CANBUS_RAW
  103. #define CANBUS_RAW_L2_CTX_TYPE void*
  104. NET_L2_DECLARE_PUBLIC(CANBUS_RAW_L2);
  105. #endif /* CONFIG_NET_L2_CANBUS_RAW */
  106. #ifdef CONFIG_NET_L2_CANBUS
  107. #define CANBUS_L2 CANBUS
  108. NET_L2_DECLARE_PUBLIC(CANBUS_L2);
  109. #endif /* CONFIG_NET_L2_CANBUS */
  110. #define NET_L2_INIT(_name, _recv_fn, _send_fn, _enable_fn, _get_flags_fn) \
  111. const STRUCT_SECTION_ITERABLE(net_l2, \
  112. NET_L2_GET_NAME(_name)) = { \
  113. .recv = (_recv_fn), \
  114. .send = (_send_fn), \
  115. .enable = (_enable_fn), \
  116. .get_flags = (_get_flags_fn), \
  117. }
  118. #define NET_L2_GET_DATA(name, sfx) _net_l2_data_##name##sfx
  119. #define NET_L2_DATA_INIT(name, sfx, ctx_type) \
  120. static ctx_type NET_L2_GET_DATA(name, sfx) __used;
  121. typedef int (*net_l2_send_t)(const struct device *dev, struct net_pkt *pkt);
  122. static inline int net_l2_send(net_l2_send_t send_fn,
  123. const struct device *dev,
  124. struct net_if *iface,
  125. struct net_pkt *pkt)
  126. {
  127. net_capture_pkt(iface, pkt);
  128. return send_fn(dev, pkt);
  129. }
  130. /** @endcond */
  131. /**
  132. * @}
  133. */
  134. #ifdef __cplusplus
  135. }
  136. #endif
  137. #endif /* ZEPHYR_INCLUDE_NET_NET_L2_H_ */