net_core.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /** @file
  2. * @brief Network core definitions
  3. *
  4. * Definitions for networking support.
  5. */
  6. /*
  7. * Copyright (c) 2015 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_NET_CORE_H_
  12. #define ZEPHYR_INCLUDE_NET_NET_CORE_H_
  13. #include <stdbool.h>
  14. #include <string.h>
  15. #include <logging/log.h>
  16. #include <sys/__assert.h>
  17. #include <kernel.h>
  18. #include <net/net_timeout.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /**
  23. * @brief Networking
  24. * @defgroup networking Networking
  25. * @{
  26. * @}
  27. */
  28. /**
  29. * @brief Network core library
  30. * @defgroup net_core Network Core Library
  31. * @ingroup networking
  32. * @{
  33. */
  34. /** @cond INTERNAL_HIDDEN */
  35. /* Network subsystem logging helpers */
  36. #ifdef CONFIG_THREAD_NAME
  37. #define NET_DBG(fmt, ...) LOG_DBG("(%s): " fmt, \
  38. log_strdup(k_thread_name_get(k_current_get())), \
  39. ##__VA_ARGS__)
  40. #else
  41. #define NET_DBG(fmt, ...) LOG_DBG("(%p): " fmt, k_current_get(), \
  42. ##__VA_ARGS__)
  43. #endif /* CONFIG_THREAD_NAME */
  44. #define NET_ERR(fmt, ...) LOG_ERR(fmt, ##__VA_ARGS__)
  45. #define NET_WARN(fmt, ...) LOG_WRN(fmt, ##__VA_ARGS__)
  46. #define NET_INFO(fmt, ...) LOG_INF(fmt, ##__VA_ARGS__)
  47. #define NET_HEXDUMP_DBG(_data, _length, _str) LOG_HEXDUMP_DBG(_data, _length, _str)
  48. #define NET_HEXDUMP_ERR(_data, _length, _str) LOG_HEXDUMP_ERR(_data, _length, _str)
  49. #define NET_HEXDUMP_WARN(_data, _length, _str) LOG_HEXDUMP_WRN(_data, _length, _str)
  50. #define NET_HEXDUMP_INFO(_data, _length, _str) LOG_HEXDUMP_INF(_data, _length, _str)
  51. #define NET_ASSERT(cond, ...) __ASSERT(cond, "" __VA_ARGS__)
  52. /* This needs to be here in order to avoid circular include dependency between
  53. * net_pkt.h and net_if.h
  54. */
  55. #if defined(CONFIG_NET_PKT_TXTIME_STATS_DETAIL) || \
  56. defined(CONFIG_NET_PKT_RXTIME_STATS_DETAIL)
  57. #if !defined(NET_PKT_DETAIL_STATS_COUNT)
  58. #if defined(CONFIG_NET_PKT_TXTIME_STATS_DETAIL)
  59. #if defined(CONFIG_NET_PKT_RXTIME_STATS_DETAIL)
  60. #define NET_PKT_DETAIL_STATS_COUNT 4
  61. #else
  62. #define NET_PKT_DETAIL_STATS_COUNT 3
  63. #endif /* CONFIG_NET_PKT_RXTIME_STATS_DETAIL */
  64. #else
  65. #define NET_PKT_DETAIL_STATS_COUNT 4
  66. #endif /* CONFIG_NET_PKT_TXTIME_STATS_DETAIL */
  67. #endif /* !NET_PKT_DETAIL_STATS_COUNT */
  68. #endif /* CONFIG_NET_PKT_TXTIME_STATS_DETAIL ||
  69. CONFIG_NET_PKT_RXTIME_STATS_DETAIL */
  70. /** @endcond */
  71. struct net_buf;
  72. struct net_pkt;
  73. struct net_context;
  74. struct net_if;
  75. /**
  76. * @brief Net Verdict
  77. */
  78. enum net_verdict {
  79. /** Packet has been taken care of. */
  80. NET_OK,
  81. /** Packet has not been touched, other part should decide about its
  82. * fate.
  83. */
  84. NET_CONTINUE,
  85. /** Packet must be dropped. */
  86. NET_DROP,
  87. };
  88. /**
  89. * @brief Called by lower network stack or network device driver when
  90. * a network packet has been received. The function will push the packet up in
  91. * the network stack for further processing.
  92. *
  93. * @param iface Network interface where the packet was received.
  94. * @param pkt Network packet data.
  95. *
  96. * @return 0 if ok, <0 if error.
  97. */
  98. int net_recv_data(struct net_if *iface, struct net_pkt *pkt);
  99. /**
  100. * @brief Send data to network.
  101. *
  102. * @details Send data to network. This should not be used normally by
  103. * applications as it requires that the network packet is properly
  104. * constructed.
  105. *
  106. * @param pkt Network packet.
  107. *
  108. * @return 0 if ok, <0 if error. If <0 is returned, then the caller needs
  109. * to unref the pkt in order to avoid memory leak.
  110. */
  111. int net_send_data(struct net_pkt *pkt);
  112. /** @cond INTERNAL_HIDDEN */
  113. /* Some helper defines for traffic class support */
  114. #if defined(CONFIG_NET_TC_TX_COUNT) && defined(CONFIG_NET_TC_RX_COUNT)
  115. #define NET_TC_TX_COUNT CONFIG_NET_TC_TX_COUNT
  116. #define NET_TC_RX_COUNT CONFIG_NET_TC_RX_COUNT
  117. #if NET_TC_TX_COUNT > NET_TC_RX_COUNT
  118. #define NET_TC_COUNT NET_TC_TX_COUNT
  119. #else
  120. #define NET_TC_COUNT NET_TC_RX_COUNT
  121. #endif
  122. #else /* CONFIG_NET_TC_TX_COUNT && CONFIG_NET_TC_RX_COUNT */
  123. #define NET_TC_TX_COUNT 0
  124. #define NET_TC_RX_COUNT 0
  125. #define NET_TC_COUNT 0
  126. #endif /* CONFIG_NET_TC_TX_COUNT && CONFIG_NET_TC_RX_COUNT */
  127. /* @endcond */
  128. /**
  129. * @}
  130. */
  131. #ifdef __cplusplus
  132. }
  133. #endif
  134. #endif /* ZEPHYR_INCLUDE_NET_NET_CORE_H_ */