capture.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /** @file
  2. * @brief Network packet capture definitions
  3. *
  4. * Definitions for capturing network packets.
  5. */
  6. /*
  7. * Copyright (c) 2021 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_CAPTURE_H_
  12. #define ZEPHYR_INCLUDE_NET_CAPTURE_H_
  13. #include <zephyr.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @brief Network packet capture support functions
  19. * @defgroup net_capture Network packet capture
  20. * @ingroup networking
  21. * @{
  22. */
  23. /** @cond INTERNAL_HIDDEN */
  24. struct net_if;
  25. struct net_capture_interface_api {
  26. /** Cleanup the setup. This will also disable capturing. After this
  27. * call, the setup function can be called again.
  28. */
  29. int (*cleanup)(const struct device *dev);
  30. /** Enable / start capturing data */
  31. int (*enable)(const struct device *dev, struct net_if *iface);
  32. /** Disable / stop capturing data */
  33. int (*disable)(const struct device *dev);
  34. /** Is capturing enabled (returns true) or disabled (returns false).
  35. */
  36. bool (*is_enabled)(const struct device *dev);
  37. /** Send captured data */
  38. int (*send)(const struct device *dev, struct net_if *iface,
  39. struct net_pkt *pkt);
  40. };
  41. /** @endcond */
  42. /**
  43. * @brief Setup network packet capturing support.
  44. *
  45. * @param remote_addr The value tells the tunnel remote/outer endpoint
  46. * IP address. The IP address can be either IPv4 or IPv6 address.
  47. * This address is used to select the network interface where the tunnel
  48. * is created.
  49. * @param my_local_addr The local/inner IP address of the tunnel. Can contain
  50. * also port number which is used as UDP source port.
  51. * @param peer_addr The peer/inner IP address of the tunnel. Can contain
  52. * also port number which is used as UDP destination port.
  53. * @param dev Network capture device. This is returned to the caller.
  54. *
  55. * @return 0 if ok, <0 if network packet capture setup failed
  56. */
  57. int net_capture_setup(const char *remote_addr, const char *my_local_addr,
  58. const char *peer_addr, const struct device **dev);
  59. /**
  60. * @brief Cleanup network packet capturing support.
  61. *
  62. * @details This should be called after the capturing is done and resources
  63. * can be released.
  64. *
  65. * @param dev Network capture device. User must allocate using the
  66. * net_capture_setup() function.
  67. *
  68. * @return 0 if ok, <0 if network packet capture cleanup failed
  69. */
  70. static inline int net_capture_cleanup(const struct device *dev)
  71. {
  72. #if defined(CONFIG_NET_CAPTURE)
  73. const struct net_capture_interface_api *api =
  74. (const struct net_capture_interface_api *)dev->api;
  75. return api->cleanup(dev);
  76. #else
  77. ARG_UNUSED(dev);
  78. return -ENOTSUP;
  79. #endif
  80. }
  81. /**
  82. * @brief Enable network packet capturing support.
  83. *
  84. * @details This creates tunnel network interface where all the
  85. * captured packets are pushed. The captured network packets are
  86. * placed in UDP packets that are sent to tunnel peer.
  87. *
  88. * @param dev Network capture device
  89. * @param iface Network interface we are starting to capture packets.
  90. *
  91. * @return 0 if ok, <0 if network packet capture enable failed
  92. */
  93. static inline int net_capture_enable(const struct device *dev,
  94. struct net_if *iface)
  95. {
  96. #if defined(CONFIG_NET_CAPTURE)
  97. const struct net_capture_interface_api *api =
  98. (const struct net_capture_interface_api *)dev->api;
  99. return api->enable(dev, iface);
  100. #else
  101. ARG_UNUSED(dev);
  102. ARG_UNUSED(iface);
  103. return -ENOTSUP;
  104. #endif
  105. }
  106. /**
  107. * @brief Is network packet capture enabled or disabled.
  108. *
  109. * @param dev Network capture device
  110. *
  111. * @return True if enabled, False if network capture is disabled.
  112. */
  113. static inline bool net_capture_is_enabled(const struct device *dev)
  114. {
  115. #if defined(CONFIG_NET_CAPTURE)
  116. const struct net_capture_interface_api *api =
  117. (const struct net_capture_interface_api *)dev->api;
  118. return api->is_enabled(dev);
  119. #else
  120. ARG_UNUSED(dev);
  121. return false;
  122. #endif
  123. }
  124. /**
  125. * @brief Disable network packet capturing support.
  126. *
  127. * @param dev Network capture device
  128. *
  129. * @return 0 if ok, <0 if network packet capture disable failed
  130. */
  131. static inline int net_capture_disable(const struct device *dev)
  132. {
  133. #if defined(CONFIG_NET_CAPTURE)
  134. const struct net_capture_interface_api *api =
  135. (const struct net_capture_interface_api *)dev->api;
  136. return api->disable(dev);
  137. #else
  138. ARG_UNUSED(dev);
  139. return -ENOTSUP;
  140. #endif
  141. }
  142. /**
  143. * @brief Send captured packet.
  144. *
  145. * @param dev Network capture device
  146. * @param iface Network interface the packet is being sent
  147. * @param pkt The network packet that is sent
  148. *
  149. * @return 0 if ok, <0 if network packet capture send failed
  150. */
  151. static inline int net_capture_send(const struct device *dev,
  152. struct net_if *iface,
  153. struct net_pkt *pkt)
  154. {
  155. #if defined(CONFIG_NET_CAPTURE)
  156. const struct net_capture_interface_api *api =
  157. (const struct net_capture_interface_api *)dev->api;
  158. return api->send(dev, iface, pkt);
  159. #else
  160. ARG_UNUSED(dev);
  161. ARG_UNUSED(iface);
  162. ARG_UNUSED(pkt);
  163. return -ENOTSUP;
  164. #endif
  165. }
  166. /** @cond INTERNAL_HIDDEN */
  167. /**
  168. * @brief Check if the network packet needs to be captured or not.
  169. * This is called for every network packet being sent.
  170. *
  171. * @param iface Network interface the packet is being sent
  172. * @param pkt The network packet that is sent
  173. */
  174. #if defined(CONFIG_NET_CAPTURE)
  175. void net_capture_pkt(struct net_if *iface, struct net_pkt *pkt);
  176. #else
  177. static inline void net_capture_pkt(struct net_if *iface, struct net_pkt *pkt)
  178. {
  179. ARG_UNUSED(iface);
  180. ARG_UNUSED(pkt);
  181. }
  182. #endif
  183. struct net_capture_info {
  184. const struct device *capture_dev;
  185. struct net_if *capture_iface;
  186. struct net_if *tunnel_iface;
  187. struct sockaddr *peer;
  188. struct sockaddr *local;
  189. bool is_enabled;
  190. };
  191. /**
  192. * @typedef net_capture_cb_t
  193. * @brief Callback used while iterating over capture devices
  194. *
  195. * @param info Information about capture device
  196. * @param user_data A valid pointer to user data or NULL
  197. */
  198. typedef void (*net_capture_cb_t)(struct net_capture_info *info,
  199. void *user_data);
  200. /**
  201. * @brief Go through all the capture devices in order to get
  202. * information about them. This is mainly useful in
  203. * net-shell to print data about currently active
  204. * captures.
  205. *
  206. * @param cb Callback to call for each capture device
  207. * @param user_data User supplied data
  208. */
  209. #if defined(CONFIG_NET_CAPTURE)
  210. void net_capture_foreach(net_capture_cb_t cb, void *user_data);
  211. #else
  212. static inline void net_capture_foreach(net_capture_cb_t cb, void *user_data)
  213. {
  214. ARG_UNUSED(cb);
  215. ARG_UNUSED(user_data);
  216. }
  217. #endif
  218. /** @endcond */
  219. /**
  220. * @}
  221. */
  222. #ifdef __cplusplus
  223. }
  224. #endif
  225. #endif /* ZEPHYR_INCLUDE_NET_CAPTURE_H_ */