net_stats.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. /** @file
  2. * @brief Network statistics
  3. *
  4. * Network statistics data. This should only be enabled when
  5. * debugging as it consumes memory.
  6. */
  7. /*
  8. * Copyright (c) 2016 Intel Corporation
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef ZEPHYR_INCLUDE_NET_NET_STATS_H_
  13. #define ZEPHYR_INCLUDE_NET_NET_STATS_H_
  14. #include <zephyr/types.h>
  15. #include <net/net_core.h>
  16. #include <net/net_mgmt.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief Network statistics library
  22. * @defgroup net_stats Network Statistics Library
  23. * @ingroup networking
  24. * @{
  25. */
  26. /**
  27. * @typedef net_stats_t
  28. * @brief Network statistics counter
  29. */
  30. typedef uint32_t net_stats_t;
  31. /**
  32. * @brief Number of bytes sent and received.
  33. */
  34. struct net_stats_bytes {
  35. /** Number of bytes sent */
  36. net_stats_t sent;
  37. /** Number of bytes received */
  38. net_stats_t received;
  39. };
  40. /**
  41. * @brief Number of network packets sent and received.
  42. */
  43. struct net_stats_pkts {
  44. /** Number of packets sent */
  45. net_stats_t tx;
  46. /** Number of packets received */
  47. net_stats_t rx;
  48. };
  49. /**
  50. * @brief IP layer statistics
  51. */
  52. struct net_stats_ip {
  53. /** Number of received packets at the IP layer. */
  54. net_stats_t recv;
  55. /** Number of sent packets at the IP layer. */
  56. net_stats_t sent;
  57. /** Number of forwarded packets at the IP layer. */
  58. net_stats_t forwarded;
  59. /** Number of dropped packets at the IP layer. */
  60. net_stats_t drop;
  61. };
  62. /**
  63. * @brief IP layer error statistics
  64. */
  65. struct net_stats_ip_errors {
  66. /** Number of packets dropped due to wrong IP version
  67. * or header length.
  68. */
  69. net_stats_t vhlerr;
  70. /** Number of packets dropped due to wrong IP length, high byte. */
  71. net_stats_t hblenerr;
  72. /** Number of packets dropped due to wrong IP length, low byte. */
  73. net_stats_t lblenerr;
  74. /** Number of packets dropped because they were IP fragments. */
  75. net_stats_t fragerr;
  76. /** Number of packets dropped due to IP checksum errors. */
  77. net_stats_t chkerr;
  78. /** Number of packets dropped because they were neither ICMP,
  79. * UDP nor TCP.
  80. */
  81. net_stats_t protoerr;
  82. };
  83. /**
  84. * @brief ICMP statistics
  85. */
  86. struct net_stats_icmp {
  87. /** Number of received ICMP packets. */
  88. net_stats_t recv;
  89. /** Number of sent ICMP packets. */
  90. net_stats_t sent;
  91. /** Number of dropped ICMP packets. */
  92. net_stats_t drop;
  93. /** Number of ICMP packets with a wrong type. */
  94. net_stats_t typeerr;
  95. /** Number of ICMP packets with a bad checksum. */
  96. net_stats_t chkerr;
  97. };
  98. /**
  99. * @brief TCP statistics
  100. */
  101. struct net_stats_tcp {
  102. /** Amount of received and sent TCP application data. */
  103. struct net_stats_bytes bytes;
  104. /** Amount of retransmitted data. */
  105. net_stats_t resent;
  106. /** Number of dropped packets at the TCP layer. */
  107. net_stats_t drop;
  108. /** Number of received TCP segments. */
  109. net_stats_t recv;
  110. /** Number of sent TCP segments. */
  111. net_stats_t sent;
  112. /** Number of dropped TCP segments. */
  113. net_stats_t seg_drop;
  114. /** Number of TCP segments with a bad checksum. */
  115. net_stats_t chkerr;
  116. /** Number of received TCP segments with a bad ACK number. */
  117. net_stats_t ackerr;
  118. /** Number of received bad TCP RST (reset) segments. */
  119. net_stats_t rsterr;
  120. /** Number of received TCP RST (reset) segments. */
  121. net_stats_t rst;
  122. /** Number of retransmitted TCP segments. */
  123. net_stats_t rexmit;
  124. /** Number of dropped connection attempts because too few connections
  125. * were available.
  126. */
  127. net_stats_t conndrop;
  128. /** Number of connection attempts for closed ports, triggering a RST. */
  129. net_stats_t connrst;
  130. };
  131. /**
  132. * @brief UDP statistics
  133. */
  134. struct net_stats_udp {
  135. /** Number of dropped UDP segments. */
  136. net_stats_t drop;
  137. /** Number of received UDP segments. */
  138. net_stats_t recv;
  139. /** Number of sent UDP segments. */
  140. net_stats_t sent;
  141. /** Number of UDP segments with a bad checksum. */
  142. net_stats_t chkerr;
  143. };
  144. /**
  145. * @brief IPv6 neighbor discovery statistics
  146. */
  147. struct net_stats_ipv6_nd {
  148. net_stats_t drop;
  149. net_stats_t recv;
  150. net_stats_t sent;
  151. };
  152. /**
  153. * @brief IPv6 multicast listener daemon statistics
  154. */
  155. struct net_stats_ipv6_mld {
  156. /** Number of received IPv6 MLD queries */
  157. net_stats_t recv;
  158. /** Number of sent IPv6 MLD reports */
  159. net_stats_t sent;
  160. /** Number of dropped IPv6 MLD packets */
  161. net_stats_t drop;
  162. };
  163. /**
  164. * @brief IPv4 IGMP daemon statistics
  165. */
  166. struct net_stats_ipv4_igmp {
  167. /** Number of received IPv4 IGMP queries */
  168. net_stats_t recv;
  169. /** Number of sent IPv4 IGMP reports */
  170. net_stats_t sent;
  171. /** Number of dropped IPv4 IGMP packets */
  172. net_stats_t drop;
  173. };
  174. /**
  175. * @brief Network packet transfer times for calculating average TX time
  176. */
  177. struct net_stats_tx_time {
  178. uint64_t sum;
  179. net_stats_t count;
  180. };
  181. /**
  182. * @brief Network packet receive times for calculating average RX time
  183. */
  184. struct net_stats_rx_time {
  185. uint64_t sum;
  186. net_stats_t count;
  187. };
  188. #if NET_TC_TX_COUNT == 0
  189. #define NET_TC_TX_STATS_COUNT 1
  190. #else
  191. #define NET_TC_TX_STATS_COUNT NET_TC_TX_COUNT
  192. #endif
  193. #if NET_TC_RX_COUNT == 0
  194. #define NET_TC_RX_STATS_COUNT 1
  195. #else
  196. #define NET_TC_RX_STATS_COUNT NET_TC_RX_COUNT
  197. #endif
  198. /**
  199. * @brief Traffic class statistics
  200. */
  201. struct net_stats_tc {
  202. struct {
  203. struct net_stats_tx_time tx_time;
  204. #if defined(CONFIG_NET_PKT_TXTIME_STATS_DETAIL)
  205. struct net_stats_tx_time
  206. tx_time_detail[NET_PKT_DETAIL_STATS_COUNT];
  207. #endif
  208. net_stats_t pkts;
  209. net_stats_t bytes;
  210. uint8_t priority;
  211. } sent[NET_TC_TX_STATS_COUNT];
  212. struct {
  213. struct net_stats_rx_time rx_time;
  214. #if defined(CONFIG_NET_PKT_RXTIME_STATS_DETAIL)
  215. struct net_stats_rx_time
  216. rx_time_detail[NET_PKT_DETAIL_STATS_COUNT];
  217. #endif
  218. net_stats_t pkts;
  219. net_stats_t bytes;
  220. uint8_t priority;
  221. } recv[NET_TC_RX_STATS_COUNT];
  222. };
  223. /**
  224. * @brief Power management statistics
  225. */
  226. struct net_stats_pm {
  227. uint64_t overall_suspend_time;
  228. net_stats_t suspend_count;
  229. uint32_t last_suspend_time;
  230. uint32_t start_time;
  231. };
  232. /**
  233. * @brief All network statistics in one struct.
  234. */
  235. struct net_stats {
  236. /** Count of malformed packets or packets we do not have handler for */
  237. net_stats_t processing_error;
  238. /**
  239. * This calculates amount of data transferred through all the
  240. * network interfaces.
  241. */
  242. struct net_stats_bytes bytes;
  243. /** IP layer errors */
  244. struct net_stats_ip_errors ip_errors;
  245. #if defined(CONFIG_NET_STATISTICS_IPV6)
  246. /** IPv6 statistics */
  247. struct net_stats_ip ipv6;
  248. #endif
  249. #if defined(CONFIG_NET_STATISTICS_IPV4)
  250. /** IPv4 statistics */
  251. struct net_stats_ip ipv4;
  252. #endif
  253. #if defined(CONFIG_NET_STATISTICS_ICMP)
  254. /** ICMP statistics */
  255. struct net_stats_icmp icmp;
  256. #endif
  257. #if defined(CONFIG_NET_STATISTICS_TCP)
  258. /** TCP statistics */
  259. struct net_stats_tcp tcp;
  260. #endif
  261. #if defined(CONFIG_NET_STATISTICS_UDP)
  262. /** UDP statistics */
  263. struct net_stats_udp udp;
  264. #endif
  265. #if defined(CONFIG_NET_STATISTICS_IPV6_ND)
  266. /** IPv6 neighbor discovery statistics */
  267. struct net_stats_ipv6_nd ipv6_nd;
  268. #endif
  269. #if defined(CONFIG_NET_STATISTICS_MLD)
  270. /** IPv6 MLD statistics */
  271. struct net_stats_ipv6_mld ipv6_mld;
  272. #endif
  273. #if defined(CONFIG_NET_STATISTICS_IGMP)
  274. /** IPv4 IGMP statistics */
  275. struct net_stats_ipv4_igmp ipv4_igmp;
  276. #endif
  277. #if NET_TC_COUNT > 1
  278. /** Traffic class statistics */
  279. struct net_stats_tc tc;
  280. #endif
  281. #if defined(CONFIG_NET_PKT_TXTIME_STATS)
  282. /** Network packet TX time statistics */
  283. struct net_stats_tx_time tx_time;
  284. #endif
  285. #if defined(CONFIG_NET_PKT_RXTIME_STATS)
  286. /** Network packet RX time statistics */
  287. struct net_stats_rx_time rx_time;
  288. #endif
  289. #if defined(CONFIG_NET_PKT_TXTIME_STATS_DETAIL)
  290. /** Network packet TX time detail statistics */
  291. struct net_stats_tx_time tx_time_detail[NET_PKT_DETAIL_STATS_COUNT];
  292. #endif
  293. #if defined(CONFIG_NET_PKT_RXTIME_STATS_DETAIL)
  294. /** Network packet RX time detail statistics */
  295. struct net_stats_rx_time rx_time_detail[NET_PKT_DETAIL_STATS_COUNT];
  296. #endif
  297. #if defined(CONFIG_NET_STATISTICS_POWER_MANAGEMENT)
  298. struct net_stats_pm pm;
  299. #endif
  300. };
  301. /**
  302. * @brief Ethernet error statistics
  303. */
  304. struct net_stats_eth_errors {
  305. net_stats_t rx_length_errors;
  306. net_stats_t rx_over_errors;
  307. net_stats_t rx_crc_errors;
  308. net_stats_t rx_frame_errors;
  309. net_stats_t rx_no_buffer_count;
  310. net_stats_t rx_missed_errors;
  311. net_stats_t rx_long_length_errors;
  312. net_stats_t rx_short_length_errors;
  313. net_stats_t rx_align_errors;
  314. net_stats_t rx_dma_failed;
  315. net_stats_t rx_buf_alloc_failed;
  316. net_stats_t tx_aborted_errors;
  317. net_stats_t tx_carrier_errors;
  318. net_stats_t tx_fifo_errors;
  319. net_stats_t tx_heartbeat_errors;
  320. net_stats_t tx_window_errors;
  321. net_stats_t tx_dma_failed;
  322. net_stats_t uncorr_ecc_errors;
  323. net_stats_t corr_ecc_errors;
  324. };
  325. /**
  326. * @brief Ethernet flow control statistics
  327. */
  328. struct net_stats_eth_flow {
  329. net_stats_t rx_flow_control_xon;
  330. net_stats_t rx_flow_control_xoff;
  331. net_stats_t tx_flow_control_xon;
  332. net_stats_t tx_flow_control_xoff;
  333. };
  334. /**
  335. * @brief Ethernet checksum statistics
  336. */
  337. struct net_stats_eth_csum {
  338. net_stats_t rx_csum_offload_good;
  339. net_stats_t rx_csum_offload_errors;
  340. };
  341. /**
  342. * @brief Ethernet hardware timestamp statistics
  343. */
  344. struct net_stats_eth_hw_timestamp {
  345. net_stats_t rx_hwtstamp_cleared;
  346. net_stats_t tx_hwtstamp_timeouts;
  347. net_stats_t tx_hwtstamp_skipped;
  348. };
  349. #ifdef CONFIG_NET_STATISTICS_ETHERNET_VENDOR
  350. /**
  351. * @brief Ethernet vendor specific statistics
  352. */
  353. struct net_stats_eth_vendor {
  354. const char * const key;
  355. uint32_t value;
  356. };
  357. #endif
  358. /**
  359. * @brief All Ethernet specific statistics
  360. */
  361. struct net_stats_eth {
  362. struct net_stats_bytes bytes;
  363. struct net_stats_pkts pkts;
  364. struct net_stats_pkts broadcast;
  365. struct net_stats_pkts multicast;
  366. struct net_stats_pkts errors;
  367. struct net_stats_eth_errors error_details;
  368. struct net_stats_eth_flow flow_control;
  369. struct net_stats_eth_csum csum;
  370. struct net_stats_eth_hw_timestamp hw_timestamp;
  371. net_stats_t collisions;
  372. net_stats_t tx_dropped;
  373. net_stats_t tx_timeout_count;
  374. net_stats_t tx_restart_queue;
  375. #ifdef CONFIG_NET_STATISTICS_ETHERNET_VENDOR
  376. /** Array is terminated with an entry containing a NULL key */
  377. struct net_stats_eth_vendor *vendor;
  378. #endif
  379. };
  380. /**
  381. * @brief All PPP specific statistics
  382. */
  383. struct net_stats_ppp {
  384. struct net_stats_bytes bytes;
  385. struct net_stats_pkts pkts;
  386. /** Number of received and dropped PPP frames. */
  387. net_stats_t drop;
  388. /** Number of received PPP frames with a bad checksum. */
  389. net_stats_t chkerr;
  390. };
  391. #if defined(CONFIG_NET_STATISTICS_USER_API)
  392. /* Management part definitions */
  393. #define _NET_STATS_LAYER NET_MGMT_LAYER_L3
  394. #define _NET_STATS_CODE 0x101
  395. #define _NET_STATS_BASE (NET_MGMT_LAYER(_NET_STATS_LAYER) | \
  396. NET_MGMT_LAYER_CODE(_NET_STATS_CODE))
  397. enum net_request_stats_cmd {
  398. NET_REQUEST_STATS_CMD_GET_ALL = 1,
  399. NET_REQUEST_STATS_CMD_GET_PROCESSING_ERROR,
  400. NET_REQUEST_STATS_CMD_GET_BYTES,
  401. NET_REQUEST_STATS_CMD_GET_IP_ERRORS,
  402. NET_REQUEST_STATS_CMD_GET_IPV4,
  403. NET_REQUEST_STATS_CMD_GET_IPV6,
  404. NET_REQUEST_STATS_CMD_GET_IPV6_ND,
  405. NET_REQUEST_STATS_CMD_GET_ICMP,
  406. NET_REQUEST_STATS_CMD_GET_UDP,
  407. NET_REQUEST_STATS_CMD_GET_TCP,
  408. NET_REQUEST_STATS_CMD_GET_ETHERNET,
  409. NET_REQUEST_STATS_CMD_GET_PPP,
  410. NET_REQUEST_STATS_CMD_GET_PM
  411. };
  412. #define NET_REQUEST_STATS_GET_ALL \
  413. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_ALL)
  414. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_ALL);
  415. #define NET_REQUEST_STATS_GET_PROCESSING_ERROR \
  416. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_PROCESSING_ERROR)
  417. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_PROCESSING_ERROR);
  418. #define NET_REQUEST_STATS_GET_BYTES \
  419. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_BYTES)
  420. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_BYTES);
  421. #define NET_REQUEST_STATS_GET_IP_ERRORS \
  422. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_IP_ERRORS)
  423. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_IP_ERRORS);
  424. #if defined(CONFIG_NET_STATISTICS_IPV4)
  425. #define NET_REQUEST_STATS_GET_IPV4 \
  426. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_IPV4)
  427. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_IPV4);
  428. #endif /* CONFIG_NET_STATISTICS_IPV4 */
  429. #if defined(CONFIG_NET_STATISTICS_IPV6)
  430. #define NET_REQUEST_STATS_GET_IPV6 \
  431. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_IPV6)
  432. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_IPV6);
  433. #endif /* CONFIG_NET_STATISTICS_IPV6 */
  434. #if defined(CONFIG_NET_STATISTICS_IPV6_ND)
  435. #define NET_REQUEST_STATS_GET_IPV6_ND \
  436. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_IPV6_ND)
  437. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_IPV6_ND);
  438. #endif /* CONFIG_NET_STATISTICS_IPV6_ND */
  439. #if defined(CONFIG_NET_STATISTICS_ICMP)
  440. #define NET_REQUEST_STATS_GET_ICMP \
  441. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_ICMP)
  442. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_ICMP);
  443. #endif /* CONFIG_NET_STATISTICS_ICMP */
  444. #if defined(CONFIG_NET_STATISTICS_UDP)
  445. #define NET_REQUEST_STATS_GET_UDP \
  446. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_UDP)
  447. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_UDP);
  448. #endif /* CONFIG_NET_STATISTICS_UDP */
  449. #if defined(CONFIG_NET_STATISTICS_TCP)
  450. #define NET_REQUEST_STATS_GET_TCP \
  451. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_TCP)
  452. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_TCP);
  453. #endif /* CONFIG_NET_STATISTICS_TCP */
  454. #if defined(CONFIG_NET_STATISTICS_ETHERNET)
  455. #define NET_REQUEST_STATS_GET_ETHERNET \
  456. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_ETHERNET)
  457. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_ETHERNET);
  458. #endif /* CONFIG_NET_STATISTICS_ETHERNET */
  459. #if defined(CONFIG_NET_STATISTICS_PPP)
  460. #define NET_REQUEST_STATS_GET_PPP \
  461. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_PPP)
  462. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_PPP);
  463. #endif /* CONFIG_NET_STATISTICS_PPP */
  464. #endif /* CONFIG_NET_STATISTICS_USER_API */
  465. #if defined(CONFIG_NET_STATISTICS_POWER_MANAGEMENT)
  466. #define NET_REQUEST_STATS_GET_PM \
  467. (_NET_STATS_BASE | NET_REQUEST_STATS_CMD_GET_PM)
  468. NET_MGMT_DEFINE_REQUEST_HANDLER(NET_REQUEST_STATS_GET_PM);
  469. #endif /* CONFIG_NET_STATISTICS_POWER_MANAGEMENT */
  470. /**
  471. * @}
  472. */
  473. #ifdef __cplusplus
  474. }
  475. #endif
  476. #endif /* ZEPHYR_INCLUDE_NET_NET_STATS_H_ */