1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2017 Intel Corporation
11 #include <sys/queue.h>
17 #include <rte_common.h>
18 #include <rte_debug.h>
19 #include <rte_ethdev.h>
20 #include <rte_malloc.h>
21 #include <rte_memory.h>
22 #include <rte_memzone.h>
23 #include <rte_launch.h>
24 #include <rte_tailq.h>
25 #include <rte_per_lcore.h>
26 #include <rte_lcore.h>
28 #include <rte_atomic.h>
29 #include <rte_branch_prediction.h>
30 #include <rte_string_fns.h>
31 #include <rte_metrics.h>
32 #include <rte_cycles.h>
33 #include <rte_security.h>
34 #include <rte_cryptodev.h>
36 #include <rte_hexdump.h>
38 /* Maximum long option length for option parsing. */
39 #define MAX_LONG_OPT_SZ 64
40 #define RTE_LOGTYPE_APP RTE_LOGTYPE_USER1
42 #define MAX_STRING_LEN 256
44 #define STATS_BDR_FMT "========================================"
45 #define STATS_BDR_STR(w, s) printf("%.*s%s%.*s\n", w, \
46 STATS_BDR_FMT, s, w, STATS_BDR_FMT)
48 /**< mask of enabled ports */
49 static uint32_t enabled_port_mask;
51 static uint32_t enable_stats;
52 /**< Enable xstats. */
53 static uint32_t enable_xstats;
54 /**< Enable collectd format*/
55 static uint32_t enable_collectd_format;
56 /**< FD to send collectd format messages to STDOUT*/
58 /**< Host id process is running on */
59 static char host_id[MAX_LONG_OPT_SZ];
60 /**< Enable metrics. */
61 static uint32_t enable_metrics;
62 /**< Enable stats reset. */
63 static uint32_t reset_stats;
64 /**< Enable xstats reset. */
65 static uint32_t reset_xstats;
66 /**< Enable memory info. */
67 static uint32_t mem_info;
68 /**< Enable displaying xstat name. */
69 static uint32_t enable_xstats_name;
70 static char *xstats_name;
72 /**< Enable xstats by ids. */
73 #define MAX_NB_XSTATS_IDS 1024
74 static uint32_t nb_xstats_ids;
75 static uint64_t xstats_ids[MAX_NB_XSTATS_IDS];
78 static char bdr_str[MAX_STRING_LEN];
80 /**< Enable show port. */
81 static uint32_t enable_shw_port;
82 /**< Enable show tm. */
83 static uint32_t enable_shw_tm;
84 /**< Enable show crypto. */
85 static uint32_t enable_shw_crypto;
86 /**< Enable show ring. */
87 static uint32_t enable_shw_ring;
88 static char *ring_name;
89 /**< Enable show mempool. */
90 static uint32_t enable_shw_mempool;
91 static char *mempool_name;
92 /**< Enable iter mempool. */
93 static uint32_t enable_iter_mempool;
94 static char *mempool_iter_name;
98 proc_info_usage(const char *prgname)
100 printf("%s [EAL options] -- -p PORTMASK\n"
101 " -m to display DPDK memory zones, segments and TAILQ information\n"
102 " -p PORTMASK: hexadecimal bitmask of ports to retrieve stats for\n"
103 " --stats: to display port statistics, enabled by default\n"
104 " --xstats: to display extended port statistics, disabled by "
106 " --metrics: to display derived metrics of the ports, disabled by "
108 " --xstats-name NAME: to display single xstat id by NAME\n"
109 " --xstats-ids IDLIST: to display xstat values by id. "
110 "The argument is comma-separated list of xstat ids to print out.\n"
111 " --stats-reset: to reset port statistics\n"
112 " --xstats-reset: to reset port extended statistics\n"
113 " --collectd-format: to print statistics to STDOUT in expected by collectd format\n"
114 " --host-id STRING: host id used to identify the system process is running on\n"
115 " --show-port: to display ports information\n"
116 " --show-tm: to display traffic manager information for ports\n"
117 " --show-crypto: to display crypto information\n"
118 " --show-ring[=name]: to display ring information\n"
119 " --show-mempool[=name]: to display mempool information\n"
120 " --iter-mempool=name: iterate mempool elements to display content\n",
125 * Parse the portmask provided at run time.
128 parse_portmask(const char *portmask)
135 /* parse hexadecimal string */
136 pm = strtoul(portmask, &end, 16);
137 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0') ||
139 printf("%s ERROR parsing the port mask\n", __func__);
151 * Parse ids value list into array
154 parse_xstats_ids(char *list, uint64_t *ids, int limit) {
161 token = strtok_r(list, ",", &ctx);
162 while (token != NULL) {
163 ids[length] = strtoull(token, &endptr, 10);
171 token = strtok_r(NULL, ",", &ctx);
178 proc_info_preparse_args(int argc, char **argv)
180 char *prgname = argv[0];
183 for (i = 0; i < argc; i++) {
184 /* Print stats or xstats to STDOUT in collectd format */
185 if (!strncmp(argv[i], "--collectd-format", MAX_LONG_OPT_SZ)) {
186 enable_collectd_format = 1;
187 stdout_fd = dup(STDOUT_FILENO);
188 close(STDOUT_FILENO);
190 if (!strncmp(argv[i], "--host-id", MAX_LONG_OPT_SZ)) {
191 if ((i + 1) == argc) {
192 printf("Invalid host id or not specified\n");
193 proc_info_usage(prgname);
196 snprintf(host_id, sizeof(host_id), "%s", argv[i+1]);
200 if (!strlen(host_id)) {
201 int err = gethostname(host_id, MAX_LONG_OPT_SZ-1);
204 strcpy(host_id, "unknown");
210 /* Parse the argument given in the command line of the application */
212 proc_info_parse_args(int argc, char **argv)
216 char *prgname = argv[0];
217 static struct option long_option[] = {
218 {"stats", 0, NULL, 0},
219 {"stats-reset", 0, NULL, 0},
220 {"xstats", 0, NULL, 0},
221 {"metrics", 0, NULL, 0},
222 {"xstats-reset", 0, NULL, 0},
223 {"xstats-name", required_argument, NULL, 1},
224 {"collectd-format", 0, NULL, 0},
225 {"xstats-ids", 1, NULL, 1},
226 {"host-id", 0, NULL, 0},
227 {"show-port", 0, NULL, 0},
228 {"show-tm", 0, NULL, 0},
229 {"show-crypto", 0, NULL, 0},
230 {"show-ring", optional_argument, NULL, 0},
231 {"show-mempool", optional_argument, NULL, 0},
232 {"iter-mempool", required_argument, NULL, 0},
237 proc_info_usage(prgname);
239 /* Parse command line */
240 while ((opt = getopt_long(argc, argv, "p:m",
241 long_option, &option_index)) != EOF) {
245 enabled_port_mask = parse_portmask(optarg);
246 if (enabled_port_mask == 0) {
247 printf("invalid portmask\n");
248 proc_info_usage(prgname);
257 if (!strncmp(long_option[option_index].name, "stats",
261 else if (!strncmp(long_option[option_index].name, "xstats",
264 else if (!strncmp(long_option[option_index].name,
269 if (!strncmp(long_option[option_index].name, "stats-reset",
273 else if (!strncmp(long_option[option_index].name, "xstats-reset",
276 else if (!strncmp(long_option[option_index].name,
277 "show-port", MAX_LONG_OPT_SZ))
279 else if (!strncmp(long_option[option_index].name,
280 "show-tm", MAX_LONG_OPT_SZ))
282 else if (!strncmp(long_option[option_index].name,
283 "show-crypto", MAX_LONG_OPT_SZ))
284 enable_shw_crypto = 1;
285 else if (!strncmp(long_option[option_index].name,
286 "show-ring", MAX_LONG_OPT_SZ)) {
289 } else if (!strncmp(long_option[option_index].name,
290 "show-mempool", MAX_LONG_OPT_SZ)) {
291 enable_shw_mempool = 1;
292 mempool_name = optarg;
293 } else if (!strncmp(long_option[option_index].name,
294 "iter-mempool", MAX_LONG_OPT_SZ)) {
295 enable_iter_mempool = 1;
296 mempool_iter_name = optarg;
300 /* Print xstat single value given by name*/
301 if (!strncmp(long_option[option_index].name,
302 "xstats-name", MAX_LONG_OPT_SZ)) {
303 enable_xstats_name = 1;
304 xstats_name = optarg;
305 printf("name:%s:%s\n",
306 long_option[option_index].name,
308 } else if (!strncmp(long_option[option_index].name,
311 nb_xstats_ids = parse_xstats_ids(optarg,
312 xstats_ids, MAX_NB_XSTATS_IDS);
314 if (nb_xstats_ids <= 0) {
315 printf("xstats-id list parse error.\n");
322 proc_info_usage(prgname);
330 meminfo_display(void)
332 printf("----------- MEMORY_SEGMENTS -----------\n");
333 rte_dump_physmem_layout(stdout);
334 printf("--------- END_MEMORY_SEGMENTS ---------\n");
336 printf("------------ MEMORY_ZONES -------------\n");
337 rte_memzone_dump(stdout);
338 printf("---------- END_MEMORY_ZONES -----------\n");
340 printf("------------- TAIL_QUEUES -------------\n");
341 rte_dump_tailq(stdout);
342 printf("---------- END_TAIL_QUEUES ------------\n");
346 nic_stats_display(uint16_t port_id)
348 struct rte_eth_stats stats;
351 static const char *nic_stats_border = "########################";
353 rte_eth_stats_get(port_id, &stats);
354 printf("\n %s NIC statistics for port %-2d %s\n",
355 nic_stats_border, port_id, nic_stats_border);
357 printf(" RX-packets: %-10"PRIu64" RX-errors: %-10"PRIu64
358 " RX-bytes: %-10"PRIu64"\n", stats.ipackets, stats.ierrors,
360 printf(" RX-nombuf: %-10"PRIu64"\n", stats.rx_nombuf);
361 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64
362 " TX-bytes: %-10"PRIu64"\n", stats.opackets, stats.oerrors,
366 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
367 printf(" Stats reg %2d RX-packets: %-10"PRIu64
368 " RX-errors: %-10"PRIu64
369 " RX-bytes: %-10"PRIu64"\n",
370 i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
374 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
375 printf(" Stats reg %2d TX-packets: %-10"PRIu64
376 " TX-bytes: %-10"PRIu64"\n",
377 i, stats.q_opackets[i], stats.q_obytes[i]);
380 printf(" %s############################%s\n",
381 nic_stats_border, nic_stats_border);
385 nic_stats_clear(uint16_t port_id)
387 printf("\n Clearing NIC stats for port %d\n", port_id);
388 rte_eth_stats_reset(port_id);
389 printf("\n NIC statistics for port %d cleared\n", port_id);
392 static void collectd_resolve_cnt_type(char *cnt_type, size_t cnt_type_len,
393 const char *cnt_name) {
394 char *type_end = strrchr(cnt_name, '_');
396 if ((type_end != NULL) &&
397 (strncmp(cnt_name, "rx_", strlen("rx_")) == 0)) {
398 if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
399 strncpy(cnt_type, "if_rx_errors", cnt_type_len);
400 else if (strncmp(type_end, "_dropped", strlen("_dropped")) == 0)
401 strncpy(cnt_type, "if_rx_dropped", cnt_type_len);
402 else if (strncmp(type_end, "_bytes", strlen("_bytes")) == 0)
403 strncpy(cnt_type, "if_rx_octets", cnt_type_len);
404 else if (strncmp(type_end, "_packets", strlen("_packets")) == 0)
405 strncpy(cnt_type, "if_rx_packets", cnt_type_len);
406 else if (strncmp(type_end, "_placement",
407 strlen("_placement")) == 0)
408 strncpy(cnt_type, "if_rx_errors", cnt_type_len);
409 else if (strncmp(type_end, "_buff", strlen("_buff")) == 0)
410 strncpy(cnt_type, "if_rx_errors", cnt_type_len);
412 /* Does not fit obvious type: use a more generic one */
413 strncpy(cnt_type, "derive", cnt_type_len);
414 } else if ((type_end != NULL) &&
415 (strncmp(cnt_name, "tx_", strlen("tx_"))) == 0) {
416 if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
417 strncpy(cnt_type, "if_tx_errors", cnt_type_len);
418 else if (strncmp(type_end, "_dropped", strlen("_dropped")) == 0)
419 strncpy(cnt_type, "if_tx_dropped", cnt_type_len);
420 else if (strncmp(type_end, "_bytes", strlen("_bytes")) == 0)
421 strncpy(cnt_type, "if_tx_octets", cnt_type_len);
422 else if (strncmp(type_end, "_packets", strlen("_packets")) == 0)
423 strncpy(cnt_type, "if_tx_packets", cnt_type_len);
425 /* Does not fit obvious type: use a more generic one */
426 strncpy(cnt_type, "derive", cnt_type_len);
427 } else if ((type_end != NULL) &&
428 (strncmp(cnt_name, "flow_", strlen("flow_"))) == 0) {
429 if (strncmp(type_end, "_filters", strlen("_filters")) == 0)
430 strncpy(cnt_type, "operations", cnt_type_len);
431 else if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
432 strncpy(cnt_type, "errors", cnt_type_len);
433 else if (strncmp(type_end, "_filters", strlen("_filters")) == 0)
434 strncpy(cnt_type, "filter_result", cnt_type_len);
435 } else if ((type_end != NULL) &&
436 (strncmp(cnt_name, "mac_", strlen("mac_"))) == 0) {
437 if (strncmp(type_end, "_errors", strlen("_errors")) == 0)
438 strncpy(cnt_type, "errors", cnt_type_len);
440 /* Does not fit obvious type, or strrchr error: */
441 /* use a more generic type */
442 strncpy(cnt_type, "derive", cnt_type_len);
447 nic_xstats_by_name_display(uint16_t port_id, char *name)
451 printf("###### NIC statistics for port %-2d, statistic name '%s':\n",
454 if (rte_eth_xstats_get_id_by_name(port_id, name, &id) == 0)
455 printf("%s: %"PRIu64"\n", name, id);
457 printf("Statistic not found...\n");
462 nic_xstats_by_ids_display(uint16_t port_id, uint64_t *ids, int len)
464 struct rte_eth_xstat_name *xstats_names;
467 static const char *nic_stats_border = "########################";
469 values = malloc(sizeof(*values) * len);
470 if (values == NULL) {
471 printf("Cannot allocate memory for xstats\n");
475 xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * len);
476 if (xstats_names == NULL) {
477 printf("Cannot allocate memory for xstat names\n");
482 if (len != rte_eth_xstats_get_names_by_id(
483 port_id, xstats_names, len, ids)) {
484 printf("Cannot get xstat names\n");
488 printf("###### NIC extended statistics for port %-2d #########\n",
490 printf("%s############################\n", nic_stats_border);
491 ret = rte_eth_xstats_get_by_id(port_id, ids, values, len);
492 if (ret < 0 || ret > len) {
493 printf("Cannot get xstats\n");
497 for (i = 0; i < len; i++)
498 printf("%s: %"PRIu64"\n",
499 xstats_names[i].name,
502 printf("%s############################\n", nic_stats_border);
509 nic_xstats_display(uint16_t port_id)
511 struct rte_eth_xstat_name *xstats_names;
514 static const char *nic_stats_border = "########################";
516 len = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
518 printf("Cannot get xstats count\n");
521 values = malloc(sizeof(*values) * len);
522 if (values == NULL) {
523 printf("Cannot allocate memory for xstats\n");
527 xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * len);
528 if (xstats_names == NULL) {
529 printf("Cannot allocate memory for xstat names\n");
533 if (len != rte_eth_xstats_get_names_by_id(
534 port_id, xstats_names, len, NULL)) {
535 printf("Cannot get xstat names\n");
539 printf("###### NIC extended statistics for port %-2d #########\n",
541 printf("%s############################\n",
543 ret = rte_eth_xstats_get_by_id(port_id, NULL, values, len);
544 if (ret < 0 || ret > len) {
545 printf("Cannot get xstats\n");
549 for (i = 0; i < len; i++) {
550 if (enable_collectd_format) {
551 char counter_type[MAX_STRING_LEN];
552 char buf[MAX_STRING_LEN];
555 collectd_resolve_cnt_type(counter_type,
556 sizeof(counter_type),
557 xstats_names[i].name);
558 n = snprintf(buf, MAX_STRING_LEN,
559 "PUTVAL %s/dpdkstat-port.%u/%s-%s N:%"
560 PRIu64"\n", host_id, port_id, counter_type,
561 xstats_names[i].name, values[i]);
562 if (n > sizeof(buf) - 1)
564 ret = write(stdout_fd, buf, n);
568 printf("%s: %"PRIu64"\n", xstats_names[i].name,
573 printf("%s############################\n",
581 nic_xstats_clear(uint16_t port_id)
583 printf("\n Clearing NIC xstats for port %d\n", port_id);
584 rte_eth_xstats_reset(port_id);
585 printf("\n NIC extended statistics for port %d cleared\n", port_id);
589 metrics_display(int port_id)
591 struct rte_metric_value *metrics;
592 struct rte_metric_name *names;
594 static const char *nic_stats_border = "########################";
596 len = rte_metrics_get_names(NULL, 0);
598 printf("Cannot get metrics count\n");
602 printf("No metrics to display (none have been registered)\n");
606 metrics = rte_malloc("proc_info_metrics",
607 sizeof(struct rte_metric_value) * len, 0);
608 if (metrics == NULL) {
609 printf("Cannot allocate memory for metrics\n");
613 names = rte_malloc(NULL, sizeof(struct rte_metric_name) * len, 0);
615 printf("Cannot allocate memory for metrcis names\n");
620 if (len != rte_metrics_get_names(names, len)) {
621 printf("Cannot get metrics names\n");
627 if (port_id == RTE_METRICS_GLOBAL)
628 printf("###### Non port specific metrics #########\n");
630 printf("###### metrics for port %-2d #########\n", port_id);
631 printf("%s############################\n", nic_stats_border);
632 ret = rte_metrics_get_values(port_id, metrics, len);
633 if (ret < 0 || ret > len) {
634 printf("Cannot get metrics values\n");
641 for (i = 0; i < len; i++)
642 printf("%s: %"PRIu64"\n", names[i].name, metrics[i].value);
644 printf("%s############################\n", nic_stats_border);
655 snprintf(bdr_str, MAX_STRING_LEN, " show - Port PMD %"PRIu64,
657 STATS_BDR_STR(10, bdr_str);
659 RTE_ETH_FOREACH_DEV(i) {
661 struct rte_eth_link link;
662 struct rte_eth_dev_info dev_info;
663 struct rte_eth_rxq_info queue_info;
664 struct rte_eth_rss_conf rss_conf;
666 memset(&rss_conf, 0, sizeof(rss_conf));
668 snprintf(bdr_str, MAX_STRING_LEN, " Port (%u)", i);
669 STATS_BDR_STR(5, bdr_str);
670 printf(" - generic config\n");
672 printf("\t -- Socket %d\n", rte_eth_dev_socket_id(i));
673 rte_eth_link_get(i, &link);
674 printf("\t -- link speed %d duplex %d,"
675 " auto neg %d status %d\n",
680 printf("\t -- promiscuous (%d)\n",
681 rte_eth_promiscuous_get(i));
682 ret = rte_eth_dev_get_mtu(i, &mtu);
684 printf("\t -- mtu (%d)\n", mtu);
686 rte_eth_dev_info_get(i, &dev_info);
688 printf(" - queue\n");
689 for (j = 0; j < dev_info.nb_rx_queues; j++) {
690 ret = rte_eth_rx_queue_info_get(i, j, &queue_info);
692 printf("\t -- queue %d rx scatter %d"
694 " offloads 0x%"PRIx64
695 " mempool socket %d\n",
697 queue_info.scattered_rx,
699 queue_info.conf.offloads,
700 queue_info.mp->socket_id);
704 ret = rte_eth_dev_rss_hash_conf_get(i, &rss_conf);
706 if (rss_conf.rss_key) {
708 printf("\t -- RSS len %u key (hex):",
709 rss_conf.rss_key_len);
710 for (k = 0; k < rss_conf.rss_key_len; k++)
711 printf(" %x", rss_conf.rss_key[k]);
712 printf("\t -- hf 0x%"PRIx64"\n",
717 printf(" - cyrpto context\n");
718 void *p_ctx = rte_eth_dev_get_sec_ctx(i);
719 printf("\t -- security context - %p\n", p_ctx);
722 printf("\t -- size %u\n",
723 rte_security_session_get_size(p_ctx));
724 const struct rte_security_capability *s_cap =
725 rte_security_capabilities_get(p_ctx);
727 printf("\t -- action (0x%x), protocol (0x%x),"
728 " offload flags (0x%x)\n",
732 printf("\t -- capabilities - oper type %x\n",
733 s_cap->crypto_capabilities->op);
738 STATS_BDR_STR(50, "");
742 display_nodecap_info(int is_leaf, struct rte_tm_node_capabilities *cap)
748 printf("\t -- nonleaf sched max:\n"
749 "\t\t + children (%u)\n"
750 "\t\t + sp priorities (%u)\n"
751 "\t\t + wfq children per group (%u)\n"
752 "\t\t + wfq groups (%u)\n"
753 "\t\t + wfq weight (%u)\n",
754 cap->nonleaf.sched_n_children_max,
755 cap->nonleaf.sched_sp_n_priorities_max,
756 cap->nonleaf.sched_wfq_n_children_per_group_max,
757 cap->nonleaf.sched_wfq_n_groups_max,
758 cap->nonleaf.sched_wfq_weight_max);
760 printf("\t -- leaf cman support:\n"
761 "\t\t + wred pkt mode (%d)\n"
762 "\t\t + wred byte mode (%d)\n"
763 "\t\t + head drop (%d)\n"
764 "\t\t + wred context private (%d)\n"
765 "\t\t + wred context shared (%u)\n",
766 cap->leaf.cman_wred_packet_mode_supported,
767 cap->leaf.cman_wred_byte_mode_supported,
768 cap->leaf.cman_head_drop_supported,
769 cap->leaf.cman_wred_context_private_supported,
770 cap->leaf.cman_wred_context_shared_n_max);
775 display_levelcap_info(int is_leaf, struct rte_tm_level_capabilities *cap)
781 printf("\t -- shaper private: (%d) dual rate (%d)\n",
782 cap->nonleaf.shaper_private_supported,
783 cap->nonleaf.shaper_private_dual_rate_supported);
784 printf("\t -- shaper share: (%u)\n",
785 cap->nonleaf.shaper_shared_n_max);
786 printf("\t -- non leaf sched MAX:\n"
787 "\t\t + children (%u)\n"
789 "\t\t + wfq children per group (%u)\n"
790 "\t\t + wfq groups (%u)\n"
791 "\t\t + wfq weight (%u)\n",
792 cap->nonleaf.sched_n_children_max,
793 cap->nonleaf.sched_sp_n_priorities_max,
794 cap->nonleaf.sched_wfq_n_children_per_group_max,
795 cap->nonleaf.sched_wfq_n_groups_max,
796 cap->nonleaf.sched_wfq_weight_max);
798 printf("\t -- shaper private: (%d) dual rate (%d)\n",
799 cap->leaf.shaper_private_supported,
800 cap->leaf.shaper_private_dual_rate_supported);
801 printf("\t -- shaper share: (%u)\n",
802 cap->leaf.shaper_shared_n_max);
803 printf(" -- leaf cman support:\n"
804 "\t\t + wred pkt mode (%d)\n"
805 "\t\t + wred byte mode (%d)\n"
806 "\t\t + head drop (%d)\n"
807 "\t\t + wred context private (%d)\n"
808 "\t\t + wred context shared (%u)\n",
809 cap->leaf.cman_wred_packet_mode_supported,
810 cap->leaf.cman_wred_byte_mode_supported,
811 cap->leaf.cman_head_drop_supported,
812 cap->leaf.cman_wred_context_private_supported,
813 cap->leaf.cman_wred_context_shared_n_max);
820 int ret = 0, check_for_leaf = 0, is_leaf = 0;
824 snprintf(bdr_str, MAX_STRING_LEN, " show - TM PMD %"PRIu64,
826 STATS_BDR_STR(10, bdr_str);
828 RTE_ETH_FOREACH_DEV(i) {
829 struct rte_eth_dev_info dev_info;
830 struct rte_tm_capabilities cap;
831 struct rte_tm_error error;
832 struct rte_tm_node_capabilities capnode;
833 struct rte_tm_level_capabilities caplevel;
834 uint32_t n_leaf_nodes = 0;
836 memset(&cap, 0, sizeof(cap));
837 memset(&error, 0, sizeof(error));
839 rte_eth_dev_info_get(i, &dev_info);
840 printf(" - Generic for port (%u)\n"
841 "\t -- driver name %s\n"
842 "\t -- max vf (%u)\n"
843 "\t -- max tx queues (%u)\n"
844 "\t -- number of tx queues (%u)\n",
846 dev_info.driver_name,
848 dev_info.max_tx_queues,
849 dev_info.nb_tx_queues);
851 ret = rte_tm_capabilities_get(i, &cap, &error);
855 printf(" - MAX: nodes (%u) levels (%u) children (%u)\n",
858 cap.sched_n_children_max);
860 printf(" - identical nodes: non leaf (%d) leaf (%d)\n",
861 cap.non_leaf_nodes_identical,
862 cap.leaf_nodes_identical);
864 printf(" - Shaper MAX:\n"
866 "\t -- private (%u) private dual (%d)\n"
867 "\t -- shared (%u) shared dual (%u)\n",
869 cap.shaper_private_n_max,
870 cap.shaper_private_dual_rate_n_max,
871 cap.shaper_shared_n_max,
872 cap.shaper_shared_dual_rate_n_max);
874 printf(" - mark support:\n");
875 printf("\t -- vlan dei: GREEN (%d) YELLOW (%d) RED (%d)\n",
876 cap.mark_vlan_dei_supported[RTE_TM_GREEN],
877 cap.mark_vlan_dei_supported[RTE_TM_YELLOW],
878 cap.mark_vlan_dei_supported[RTE_TM_RED]);
879 printf("\t -- ip ecn tcp: GREEN (%d) YELLOW (%d) RED (%d)\n",
880 cap.mark_ip_ecn_tcp_supported[RTE_TM_GREEN],
881 cap.mark_ip_ecn_tcp_supported[RTE_TM_YELLOW],
882 cap.mark_ip_ecn_tcp_supported[RTE_TM_RED]);
883 printf("\t -- ip ecn sctp: GREEN (%d) YELLOW (%d) RED (%d)\n",
884 cap.mark_ip_ecn_sctp_supported[RTE_TM_GREEN],
885 cap.mark_ip_ecn_sctp_supported[RTE_TM_YELLOW],
886 cap.mark_ip_ecn_sctp_supported[RTE_TM_RED]);
887 printf("\t -- ip dscp: GREEN (%d) YELLOW (%d) RED (%d)\n",
888 cap.mark_ip_dscp_supported[RTE_TM_GREEN],
889 cap.mark_ip_dscp_supported[RTE_TM_YELLOW],
890 cap.mark_ip_dscp_supported[RTE_TM_RED]);
892 printf(" - mask stats (0x%"PRIx64")"
893 " dynamic update (0x%"PRIx64")\n",
895 cap.dynamic_update_mask);
897 printf(" - sched MAX:\n"
899 "\t -- sp levels (%u)\n"
900 "\t -- wfq children per group (%u)\n"
901 "\t -- wfq groups (%u)\n"
902 "\t -- wfq weight (%u)\n",
903 cap.sched_sp_n_priorities_max,
904 cap.sched_sp_n_priorities_max,
905 cap.sched_wfq_n_children_per_group_max,
906 cap.sched_wfq_n_groups_max,
907 cap.sched_wfq_weight_max);
909 printf(" - CMAN support:\n"
910 "\t -- WRED mode: pkt (%d) byte (%d)\n"
911 "\t -- head drop (%d)\n",
912 cap.cman_wred_packet_mode_supported,
913 cap.cman_wred_byte_mode_supported,
914 cap.cman_head_drop_supported);
915 printf("\t -- MAX WRED CONTEXT:"
916 " total (%u) private (%u) shared (%u)\n",
917 cap.cman_wred_context_n_max,
918 cap.cman_wred_context_private_n_max,
919 cap.cman_wred_context_shared_n_max);
921 for (j = 0; j < cap.n_nodes_max; j++) {
922 memset(&capnode, 0, sizeof(capnode));
923 ret = rte_tm_node_capabilities_get(i, j,
930 printf(" NODE %u\n", j);
931 printf("\t - shaper private: (%d) dual rate (%d)\n",
932 capnode.shaper_private_supported,
933 capnode.shaper_private_dual_rate_supported);
934 printf("\t - shaper shared max: (%u)\n",
935 capnode.shaper_shared_n_max);
936 printf("\t - stats mask %"PRIx64"\n",
939 ret = rte_tm_node_type_get(i, j, &is_leaf, &error);
943 display_nodecap_info(is_leaf, &capnode);
946 for (j = 0; j < cap.n_levels_max; j++) {
947 memset(&caplevel, 0, sizeof(caplevel));
948 ret = rte_tm_level_capabilities_get(i, j,
953 printf(" - Level %u\n", j);
954 printf("\t -- node MAX: %u non leaf %u leaf %u\n",
955 caplevel.n_nodes_max,
956 caplevel.n_nodes_nonleaf_max,
957 caplevel.n_nodes_leaf_max);
958 printf("\t -- indetical: non leaf %u leaf %u\n",
959 caplevel.non_leaf_nodes_identical,
960 caplevel.leaf_nodes_identical);
962 for (k = 0; k < caplevel.n_nodes_max; k++) {
963 ret = rte_tm_node_type_get(i, k,
968 display_levelcap_info(is_leaf, &caplevel);
972 if (check_for_leaf) {
973 ret = rte_tm_get_number_of_leaf_nodes(i,
974 &n_leaf_nodes, &error);
976 printf(" - leaf nodes (%u)\n", n_leaf_nodes);
979 for (j = 0; j < n_leaf_nodes; j++) {
980 struct rte_tm_node_stats stats;
981 memset(&stats, 0, sizeof(stats));
983 ret = rte_tm_node_stats_read(i, j,
984 &stats, &cap.stats_mask, 0, &error);
988 printf(" - STATS for node (%u)\n", j);
989 printf(" -- pkts (%"PRIu64") bytes (%"PRIu64")\n",
990 stats.n_pkts, stats.n_bytes);
992 ret = rte_tm_node_type_get(i, j, &is_leaf, &error);
993 if (ret || (!is_leaf))
996 printf(" -- leaf queued:"
997 " pkts (%"PRIu64") bytes (%"PRIu64")\n",
998 stats.leaf.n_pkts_queued,
999 stats.leaf.n_bytes_queued);
1000 printf(" - dropped:\n"
1002 " pkts (%"PRIu64") bytes (%"PRIu64")\n"
1004 " pkts (%"PRIu64") bytes (%"PRIu64")\n"
1006 " pkts (%"PRIu64") bytes (%"PRIu64")\n",
1007 stats.leaf.n_pkts_dropped[RTE_TM_GREEN],
1008 stats.leaf.n_bytes_dropped[RTE_TM_GREEN],
1009 stats.leaf.n_pkts_dropped[RTE_TM_YELLOW],
1010 stats.leaf.n_bytes_dropped[RTE_TM_YELLOW],
1011 stats.leaf.n_pkts_dropped[RTE_TM_RED],
1012 stats.leaf.n_bytes_dropped[RTE_TM_RED]);
1016 STATS_BDR_STR(50, "");
1020 display_crypto_feature_info(uint64_t x)
1025 printf("\t -- feature flags\n");
1026 printf("\t\t + symmetric (%c), asymmetric (%c)\n"
1027 "\t\t + symmetric operation chaining (%c)\n",
1028 (x & RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO) ? 'y' : 'n',
1029 (x & RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO) ? 'y' : 'n',
1030 (x & RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING) ? 'y' : 'n');
1031 printf("\t\t + CPU: SSE (%c), AVX (%c), AVX2 (%c), AVX512 (%c)\n",
1032 (x & RTE_CRYPTODEV_FF_CPU_SSE) ? 'y' : 'n',
1033 (x & RTE_CRYPTODEV_FF_CPU_AVX) ? 'y' : 'n',
1034 (x & RTE_CRYPTODEV_FF_CPU_AVX2) ? 'y' : 'n',
1035 (x & RTE_CRYPTODEV_FF_CPU_AVX512) ? 'y' : 'n');
1036 printf("\t\t + AESNI: CPU (%c), HW (%c)\n",
1037 (x & RTE_CRYPTODEV_FF_CPU_AESNI) ? 'y' : 'n',
1038 (x & RTE_CRYPTODEV_FF_HW_ACCELERATED) ? 'y' : 'n');
1039 printf("\t\t + INLINE (%c)\n",
1040 (x & RTE_CRYPTODEV_FF_SECURITY) ? 'y' : 'n');
1041 printf("\t\t + ARM: NEON (%c), CE (%c)\n",
1042 (x & RTE_CRYPTODEV_FF_CPU_NEON) ? 'y' : 'n',
1043 (x & RTE_CRYPTODEV_FF_CPU_ARM_CE) ? 'y' : 'n');
1044 printf("\t -- buffer offload\n");
1045 printf("\t\t + IN_PLACE_SGL (%c)\n",
1046 (x & RTE_CRYPTODEV_FF_IN_PLACE_SGL) ? 'y' : 'n');
1047 printf("\t\t + OOP_SGL_IN_SGL_OUT (%c)\n",
1048 (x & RTE_CRYPTODEV_FF_OOP_SGL_IN_SGL_OUT) ? 'y' : 'n');
1049 printf("\t\t + OOP_SGL_IN_LB_OUT (%c)\n",
1050 (x & RTE_CRYPTODEV_FF_OOP_SGL_IN_LB_OUT) ? 'y' : 'n');
1051 printf("\t\t + OOP_LB_IN_SGL_OUT (%c)\n",
1052 (x & RTE_CRYPTODEV_FF_OOP_LB_IN_SGL_OUT) ? 'y' : 'n');
1053 printf("\t\t + OOP_LB_IN_LB_OUT (%c)\n",
1054 (x & RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT) ? 'y' : 'n');
1060 uint8_t crypto_dev_count = rte_cryptodev_count(), i;
1062 snprintf(bdr_str, MAX_STRING_LEN, " show - CRYPTO PMD %"PRIu64,
1064 STATS_BDR_STR(10, bdr_str);
1066 for (i = 0; i < crypto_dev_count; i++) {
1067 struct rte_cryptodev_info dev_info;
1068 struct rte_cryptodev_stats stats;
1070 rte_cryptodev_info_get(i, &dev_info);
1072 printf(" - device (%u)\n", i);
1073 printf("\t -- name (%s)\n"
1074 "\t -- driver (%s)\n"
1075 "\t -- id (%u) on socket (%d)\n"
1076 "\t -- queue pairs (%d)\n",
1077 rte_cryptodev_name_get(i),
1078 dev_info.driver_name,
1080 dev_info.device->numa_node,
1081 rte_cryptodev_queue_pair_count(i));
1083 display_crypto_feature_info(dev_info.feature_flags);
1085 memset(&stats, 0, sizeof(0));
1086 if (rte_cryptodev_stats_get(i, &stats) == 0) {
1087 printf("\t -- stats\n");
1088 printf("\t\t + enqueue count (%"PRIu64")"
1089 " error (%"PRIu64")\n",
1090 stats.enqueued_count,
1091 stats.enqueue_err_count);
1092 printf("\t\t + dequeue count (%"PRIu64")"
1093 " error (%"PRIu64")\n",
1094 stats.dequeued_count,
1095 stats.dequeue_err_count);
1099 STATS_BDR_STR(50, "");
1103 show_ring(char *name)
1105 snprintf(bdr_str, MAX_STRING_LEN, " show - RING %"PRIu64,
1107 STATS_BDR_STR(10, bdr_str);
1110 struct rte_ring *ptr = rte_ring_lookup(name);
1112 printf(" - Name (%s) on socket (%d)\n"
1114 "\t -- Single Producer Enqueue (%u)\n"
1115 "\t -- Single Consmer Dequeue (%u)\n",
1117 ptr->memzone->socket_id,
1118 ptr->flags & RING_F_SP_ENQ,
1119 ptr->flags & RING_F_SC_DEQ);
1120 printf(" - size (%u) mask (0x%x) capacity (%u)\n",
1124 printf(" - count (%u) free count (%u)\n",
1125 rte_ring_count(ptr),
1126 rte_ring_free_count(ptr));
1127 printf(" - full (%d) empty (%d)\n",
1129 rte_ring_empty(ptr));
1131 STATS_BDR_STR(50, "");
1136 rte_ring_list_dump(stdout);
1137 STATS_BDR_STR(50, "");
1141 show_mempool(char *name)
1145 snprintf(bdr_str, MAX_STRING_LEN, " show - MEMPOOL %"PRIu64,
1147 STATS_BDR_STR(10, bdr_str);
1150 struct rte_mempool *ptr = rte_mempool_lookup(name);
1153 printf(" - Name: %s on socket %d\n"
1155 "\t -- No spread (%c)\n"
1156 "\t -- No cache align (%c)\n"
1157 "\t -- SP put (%c), SC get (%c)\n"
1158 "\t -- Pool created (%c)\n"
1159 "\t -- No IOVA config (%c)\n",
1162 (flags & MEMPOOL_F_NO_SPREAD) ? 'y' : 'n',
1163 (flags & MEMPOOL_F_NO_CACHE_ALIGN) ? 'y' : 'n',
1164 (flags & MEMPOOL_F_SP_PUT) ? 'y' : 'n',
1165 (flags & MEMPOOL_F_SC_GET) ? 'y' : 'n',
1166 (flags & MEMPOOL_F_POOL_CREATED) ? 'y' : 'n',
1167 (flags & MEMPOOL_F_NO_IOVA_CONTIG) ? 'y' : 'n');
1168 printf(" - Size %u Cache %u element %u\n"
1169 " - header %u trailer %u\n"
1170 " - private data size %u\n",
1176 ptr->private_data_size);
1177 printf(" - memezone - socket %d\n",
1178 ptr->mz->socket_id);
1179 printf(" - Count: avail (%u), in use (%u)\n",
1180 rte_mempool_avail_count(ptr),
1181 rte_mempool_in_use_count(ptr));
1183 STATS_BDR_STR(50, "");
1188 rte_mempool_list_dump(stdout);
1189 STATS_BDR_STR(50, "");
1193 mempool_itr_obj(struct rte_mempool *mp, void *opaque,
1194 void *obj, unsigned int obj_idx)
1196 printf(" - obj_idx %u opaque %p obj %p\n",
1197 obj_idx, opaque, obj);
1200 rte_hexdump(stdout, " Obj Content",
1201 obj, (mp->elt_size > 256)?256:mp->elt_size);
1205 iter_mempool(char *name)
1207 snprintf(bdr_str, MAX_STRING_LEN, " iter - MEMPOOL %"PRIu64,
1209 STATS_BDR_STR(10, bdr_str);
1212 struct rte_mempool *ptr = rte_mempool_lookup(name);
1214 /* iterate each object */
1215 uint32_t ret = rte_mempool_obj_iter(ptr,
1216 mempool_itr_obj, NULL);
1217 printf("\n - iterated %u objects\n", ret);
1218 STATS_BDR_STR(50, "");
1223 STATS_BDR_STR(50, "");
1227 main(int argc, char **argv)
1231 char c_flag[] = "-c1";
1232 char n_flag[] = "-n4";
1233 char mp_flag[] = "--proc-type=secondary";
1234 char *argp[argc + 3];
1237 /* preparse app arguments */
1238 ret = proc_info_preparse_args(argc, argv);
1240 printf("Failed to parse arguments\n");
1249 for (i = 1; i < argc; i++)
1250 argp[i + 3] = argv[i];
1254 ret = rte_eal_init(argc, argp);
1256 rte_panic("Cannot init EAL\n");
1261 if (!rte_eal_primary_proc_alive(NULL))
1262 rte_exit(EXIT_FAILURE, "No primary DPDK process is running.\n");
1264 /* parse app arguments */
1265 ret = proc_info_parse_args(argc, argv);
1267 rte_exit(EXIT_FAILURE, "Invalid argument\n");
1274 nb_ports = rte_eth_dev_count_avail();
1276 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
1278 /* If no port mask was specified*/
1279 if (enabled_port_mask == 0)
1280 enabled_port_mask = 0xffff;
1282 RTE_ETH_FOREACH_DEV(i) {
1283 if (enabled_port_mask & (1 << i)) {
1285 nic_stats_display(i);
1286 else if (enable_xstats)
1287 nic_xstats_display(i);
1288 else if (reset_stats)
1290 else if (reset_xstats)
1291 nic_xstats_clear(i);
1292 else if (enable_xstats_name)
1293 nic_xstats_by_name_display(i, xstats_name);
1294 else if (nb_xstats_ids > 0)
1295 nic_xstats_by_ids_display(i, xstats_ids,
1297 else if (enable_metrics)
1302 /* print port independent stats */
1304 metrics_display(RTE_METRICS_GLOBAL);
1306 /* show information for PMD */
1307 if (enable_shw_port)
1311 if (enable_shw_crypto)
1313 if (enable_shw_ring)
1314 show_ring(ring_name);
1315 if (enable_shw_mempool)
1316 show_mempool(mempool_name);
1317 if (enable_iter_mempool)
1318 iter_mempool(mempool_iter_name);
1320 ret = rte_eal_cleanup();
1322 printf("Error from rte_eal_cleanup(), %d\n", ret);
1324 snprintf(bdr_str, MAX_STRING_LEN, " ");
1325 STATS_BDR_STR(50, bdr_str);