ethernet_bridge.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /** @file
  2. * @brief Ethernet Bridge public header file
  3. *
  4. * Ethernet Bridges connect two or more Ethernet networks together and
  5. * transparently forward packets from one network to the others as if
  6. * they were part of the same network.
  7. */
  8. /*
  9. * Copyright (c) 2021 BayLibre SAS
  10. *
  11. * SPDX-License-Identifier: Apache-2.0
  12. */
  13. #ifndef ZEPHYR_INCLUDE_NET_ETHERNET_BRIDGE_H_
  14. #define ZEPHYR_INCLUDE_NET_ETHERNET_BRIDGE_H_
  15. #include <sys/slist.h>
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /**
  20. * @brief Ethernet Bridging API
  21. * @defgroup eth_bridge Ethernet Bridging API
  22. * @ingroup networking
  23. * @{
  24. */
  25. /** @cond INTERNAL_HIDDEN */
  26. struct eth_bridge {
  27. struct k_mutex lock;
  28. sys_slist_t interfaces;
  29. sys_slist_t listeners;
  30. };
  31. #define ETH_BRIDGE_INITIALIZER(obj) \
  32. { \
  33. .lock = { }, \
  34. .interfaces = SYS_SLIST_STATIC_INIT(&obj.interfaces), \
  35. .listeners = SYS_SLIST_STATIC_INIT(&obj.listeners), \
  36. }
  37. /** @endcond */
  38. /**
  39. * @brief Statically define and initialize a bridge instance.
  40. *
  41. * @param name Name of the bridge object
  42. */
  43. #define ETH_BRIDGE_INIT(name) \
  44. STRUCT_SECTION_ITERABLE(eth_bridge, name) = \
  45. ETH_BRIDGE_INITIALIZER(name)
  46. struct eth_bridge_iface_context {
  47. sys_snode_t node;
  48. struct eth_bridge *instance;
  49. bool allow_tx;
  50. };
  51. struct eth_bridge_listener {
  52. sys_snode_t node;
  53. struct k_fifo pkt_queue;
  54. };
  55. /**
  56. * @brief Add an Ethernet network interface to a bridge
  57. *
  58. * This adds a network interface to a bridge. The interface is then put
  59. * into promiscuous mode, all packets received by this interface are sent
  60. * to the bridge, and any other packets sent to the bridge (with some
  61. * exceptions) are transmitted via this interface.
  62. *
  63. * For transmission from the bridge to occur via this interface, it is
  64. * necessary to enable TX mode with eth_bridge_iface_tx(). TX mode is
  65. * initially disabled.
  66. *
  67. * Once an interface is added to a bridge, all its incoming traffic is
  68. * diverted to the bridge. However, packets sent out with net_if_queue_tx()
  69. * via this interface are not subjected to the bridge.
  70. *
  71. * @param br A pointer to an initialized bridge object
  72. * @param iface Interface to add
  73. *
  74. * @return 0 if OK, negative error code otherwise.
  75. */
  76. int eth_bridge_iface_add(struct eth_bridge *br, struct net_if *iface);
  77. /**
  78. * @brief Remove an Ethernet network interface from a bridge
  79. *
  80. * @param br A pointer to an initialized bridge object
  81. * @param iface Interface to remove
  82. *
  83. * @return 0 if OK, negative error code otherwise.
  84. */
  85. int eth_bridge_iface_remove(struct eth_bridge *br, struct net_if *iface);
  86. /**
  87. * @brief Enable/disable transmission mode for a bridged interface
  88. *
  89. * When TX mode is off, the interface may receive packets and send them to
  90. * the bridge but no packets coming from the bridge will be sent through this
  91. * interface. When TX mode is on, both incoming and outgoing packets are
  92. * allowed.
  93. *
  94. * @param iface Interface to configure
  95. * @param allow true to activate TX mode, false otherwise
  96. *
  97. * @return 0 if OK, negative error code otherwise.
  98. */
  99. int eth_bridge_iface_allow_tx(struct net_if *iface, bool allow);
  100. /**
  101. * @brief Add (register) a listener to the bridge
  102. *
  103. * This lets a software listener register a pointer to a provided FIFO for
  104. * receiving packets sent to the bridge. The listener is responsible for
  105. * emptying the FIFO with k_fifo_get() which will return a struct net_pkt
  106. * pointer, and releasing the packet with net_pkt_unref() when done with it.
  107. *
  108. * The listener wishing not to receive any more packets should simply
  109. * unregister itself with eth_bridge_listener_remove().
  110. *
  111. * @param br A pointer to an initialized bridge object
  112. * @param l A pointer to an initialized listener instance.
  113. *
  114. * @return 0 if OK, negative error code otherwise.
  115. */
  116. int eth_bridge_listener_add(struct eth_bridge *br, struct eth_bridge_listener *l);
  117. /**
  118. * @brief Remove (unregister) a listener from the bridge
  119. *
  120. * @param br A pointer to an initialized bridge object
  121. * @param l A pointer to the listener instance to be removed.
  122. *
  123. * @return 0 if OK, negative error code otherwise.
  124. */
  125. int eth_bridge_listener_remove(struct eth_bridge *br, struct eth_bridge_listener *l);
  126. /**
  127. * @brief Get bridge index according to pointer
  128. *
  129. * @param br Pointer to bridge instance
  130. *
  131. * @return Bridge index
  132. */
  133. int eth_bridge_get_index(struct eth_bridge *br);
  134. /**
  135. * @brief Get bridge instance according to index
  136. *
  137. * @param index Bridge instance index
  138. *
  139. * @return Pointer to bridge instance or NULL if not found.
  140. */
  141. struct eth_bridge *eth_bridge_get_by_index(int index);
  142. /**
  143. * @typedef eth_bridge_cb_t
  144. * @brief Callback used while iterating over bridge instances
  145. *
  146. * @param br Pointer to bridge instance
  147. * @param user_data User supplied data
  148. */
  149. typedef void (*eth_bridge_cb_t)(struct eth_bridge *br, void *user_data);
  150. /**
  151. * @brief Go through all the bridge instances in order to get
  152. * information about them. This is mainly useful in
  153. * net-shell to print data about currently active bridges.
  154. *
  155. * @param cb Callback to call for each bridge instance
  156. * @param user_data User supplied data
  157. */
  158. void net_eth_bridge_foreach(eth_bridge_cb_t cb, void *user_data);
  159. /**
  160. * @}
  161. */
  162. #ifdef __cplusplus
  163. }
  164. #endif
  165. #endif /* ZEPHYR_INCLUDE_NET_ETHERNET_BRIDGE_H_ */