1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation.
3 * Copyright 2013-2014 6WIND S.A.
13 #include <sys/queue.h>
14 #include <sys/types.h>
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
21 #include <rte_debug.h>
23 #include <rte_memory.h>
24 #include <rte_memcpy.h>
25 #include <rte_memzone.h>
26 #include <rte_launch.h>
28 #include <rte_per_lcore.h>
29 #include <rte_lcore.h>
30 #include <rte_atomic.h>
31 #include <rte_branch_prediction.h>
32 #include <rte_mempool.h>
34 #include <rte_interrupts.h>
36 #include <rte_ether.h>
37 #include <rte_ethdev.h>
38 #include <rte_string_fns.h>
39 #include <rte_cycles.h>
41 #include <rte_errno.h>
42 #ifdef RTE_LIBRTE_IXGBE_PMD
43 #include <rte_pmd_ixgbe.h>
45 #ifdef RTE_LIBRTE_I40E_PMD
46 #include <rte_pmd_i40e.h>
48 #ifdef RTE_LIBRTE_BNXT_PMD
49 #include <rte_pmd_bnxt.h>
52 #include <cmdline_parse_etheraddr.h>
56 static char *flowtype_to_str(uint16_t flow_type);
59 enum tx_pkt_split split;
63 .split = TX_PKT_SPLIT_OFF,
67 .split = TX_PKT_SPLIT_ON,
71 .split = TX_PKT_SPLIT_RND,
76 const struct rss_type_info rss_type_table[] = {
77 { "ipv4", ETH_RSS_IPV4 },
78 { "ipv4-frag", ETH_RSS_FRAG_IPV4 },
79 { "ipv4-tcp", ETH_RSS_NONFRAG_IPV4_TCP },
80 { "ipv4-udp", ETH_RSS_NONFRAG_IPV4_UDP },
81 { "ipv4-sctp", ETH_RSS_NONFRAG_IPV4_SCTP },
82 { "ipv4-other", ETH_RSS_NONFRAG_IPV4_OTHER },
83 { "ipv6", ETH_RSS_IPV6 },
84 { "ipv6-frag", ETH_RSS_FRAG_IPV6 },
85 { "ipv6-tcp", ETH_RSS_NONFRAG_IPV6_TCP },
86 { "ipv6-udp", ETH_RSS_NONFRAG_IPV6_UDP },
87 { "ipv6-sctp", ETH_RSS_NONFRAG_IPV6_SCTP },
88 { "ipv6-other", ETH_RSS_NONFRAG_IPV6_OTHER },
89 { "l2-payload", ETH_RSS_L2_PAYLOAD },
90 { "ipv6-ex", ETH_RSS_IPV6_EX },
91 { "ipv6-tcp-ex", ETH_RSS_IPV6_TCP_EX },
92 { "ipv6-udp-ex", ETH_RSS_IPV6_UDP_EX },
93 { "port", ETH_RSS_PORT },
94 { "vxlan", ETH_RSS_VXLAN },
95 { "geneve", ETH_RSS_GENEVE },
96 { "nvgre", ETH_RSS_NVGRE },
98 { "udp", ETH_RSS_UDP },
99 { "tcp", ETH_RSS_TCP },
100 { "sctp", ETH_RSS_SCTP },
101 { "tunnel", ETH_RSS_TUNNEL },
106 print_ethaddr(const char *name, struct ether_addr *eth_addr)
108 char buf[ETHER_ADDR_FMT_SIZE];
109 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
110 printf("%s%s", name, buf);
114 nic_stats_display(portid_t port_id)
116 static uint64_t prev_pkts_rx[RTE_MAX_ETHPORTS];
117 static uint64_t prev_pkts_tx[RTE_MAX_ETHPORTS];
118 static uint64_t prev_cycles[RTE_MAX_ETHPORTS];
119 uint64_t diff_pkts_rx, diff_pkts_tx, diff_cycles;
120 uint64_t mpps_rx, mpps_tx;
121 struct rte_eth_stats stats;
122 struct rte_port *port = &ports[port_id];
125 static const char *nic_stats_border = "########################";
127 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
131 rte_eth_stats_get(port_id, &stats);
132 printf("\n %s NIC statistics for port %-2d %s\n",
133 nic_stats_border, port_id, nic_stats_border);
135 if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
136 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
138 stats.ipackets, stats.imissed, stats.ibytes);
139 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors);
140 printf(" RX-nombuf: %-10"PRIu64"\n",
142 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
144 stats.opackets, stats.oerrors, stats.obytes);
147 printf(" RX-packets: %10"PRIu64" RX-errors: %10"PRIu64
148 " RX-bytes: %10"PRIu64"\n",
149 stats.ipackets, stats.ierrors, stats.ibytes);
150 printf(" RX-errors: %10"PRIu64"\n", stats.ierrors);
151 printf(" RX-nombuf: %10"PRIu64"\n",
153 printf(" TX-packets: %10"PRIu64" TX-errors: %10"PRIu64
154 " TX-bytes: %10"PRIu64"\n",
155 stats.opackets, stats.oerrors, stats.obytes);
158 if (port->rx_queue_stats_mapping_enabled) {
160 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
161 printf(" Stats reg %2d RX-packets: %10"PRIu64
162 " RX-errors: %10"PRIu64
163 " RX-bytes: %10"PRIu64"\n",
164 i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
167 if (port->tx_queue_stats_mapping_enabled) {
169 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
170 printf(" Stats reg %2d TX-packets: %10"PRIu64
171 " TX-bytes: %10"PRIu64"\n",
172 i, stats.q_opackets[i], stats.q_obytes[i]);
176 diff_cycles = prev_cycles[port_id];
177 prev_cycles[port_id] = rte_rdtsc();
179 diff_cycles = prev_cycles[port_id] - diff_cycles;
181 diff_pkts_rx = (stats.ipackets > prev_pkts_rx[port_id]) ?
182 (stats.ipackets - prev_pkts_rx[port_id]) : 0;
183 diff_pkts_tx = (stats.opackets > prev_pkts_tx[port_id]) ?
184 (stats.opackets - prev_pkts_tx[port_id]) : 0;
185 prev_pkts_rx[port_id] = stats.ipackets;
186 prev_pkts_tx[port_id] = stats.opackets;
187 mpps_rx = diff_cycles > 0 ?
188 diff_pkts_rx * rte_get_tsc_hz() / diff_cycles : 0;
189 mpps_tx = diff_cycles > 0 ?
190 diff_pkts_tx * rte_get_tsc_hz() / diff_cycles : 0;
191 printf("\n Throughput (since last show)\n");
192 printf(" Rx-pps: %12"PRIu64"\n Tx-pps: %12"PRIu64"\n",
195 printf(" %s############################%s\n",
196 nic_stats_border, nic_stats_border);
200 nic_stats_clear(portid_t port_id)
202 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
206 rte_eth_stats_reset(port_id);
207 printf("\n NIC statistics for port %d cleared\n", port_id);
211 nic_xstats_display(portid_t port_id)
213 struct rte_eth_xstat *xstats;
214 int cnt_xstats, idx_xstat;
215 struct rte_eth_xstat_name *xstats_names;
217 printf("###### NIC extended statistics for port %-2d\n", port_id);
218 if (!rte_eth_dev_is_valid_port(port_id)) {
219 printf("Error: Invalid port number %i\n", port_id);
224 cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
225 if (cnt_xstats < 0) {
226 printf("Error: Cannot get count of xstats\n");
230 /* Get id-name lookup table */
231 xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * cnt_xstats);
232 if (xstats_names == NULL) {
233 printf("Cannot allocate memory for xstats lookup\n");
236 if (cnt_xstats != rte_eth_xstats_get_names(
237 port_id, xstats_names, cnt_xstats)) {
238 printf("Error: Cannot get xstats lookup\n");
243 /* Get stats themselves */
244 xstats = malloc(sizeof(struct rte_eth_xstat) * cnt_xstats);
245 if (xstats == NULL) {
246 printf("Cannot allocate memory for xstats\n");
250 if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
251 printf("Error: Unable to get xstats\n");
258 for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
259 if (xstats_hide_zero && !xstats[idx_xstat].value)
261 printf("%s: %"PRIu64"\n",
262 xstats_names[idx_xstat].name,
263 xstats[idx_xstat].value);
270 nic_xstats_clear(portid_t port_id)
272 rte_eth_xstats_reset(port_id);
276 nic_stats_mapping_display(portid_t port_id)
278 struct rte_port *port = &ports[port_id];
281 static const char *nic_stats_mapping_border = "########################";
283 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
288 if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
289 printf("Port id %d - either does not support queue statistic mapping or"
290 " no queue statistic mapping set\n", port_id);
294 printf("\n %s NIC statistics mapping for port %-2d %s\n",
295 nic_stats_mapping_border, port_id, nic_stats_mapping_border);
297 if (port->rx_queue_stats_mapping_enabled) {
298 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
299 if (rx_queue_stats_mappings[i].port_id == port_id) {
300 printf(" RX-queue %2d mapped to Stats Reg %2d\n",
301 rx_queue_stats_mappings[i].queue_id,
302 rx_queue_stats_mappings[i].stats_counter_id);
309 if (port->tx_queue_stats_mapping_enabled) {
310 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
311 if (tx_queue_stats_mappings[i].port_id == port_id) {
312 printf(" TX-queue %2d mapped to Stats Reg %2d\n",
313 tx_queue_stats_mappings[i].queue_id,
314 tx_queue_stats_mappings[i].stats_counter_id);
319 printf(" %s####################################%s\n",
320 nic_stats_mapping_border, nic_stats_mapping_border);
324 rx_queue_infos_display(portid_t port_id, uint16_t queue_id)
326 struct rte_eth_rxq_info qinfo;
328 static const char *info_border = "*********************";
330 rc = rte_eth_rx_queue_info_get(port_id, queue_id, &qinfo);
332 printf("Failed to retrieve information for port: %u, "
333 "RX queue: %hu\nerror desc: %s(%d)\n",
334 port_id, queue_id, strerror(-rc), rc);
338 printf("\n%s Infos for port %-2u, RX queue %-2u %s",
339 info_border, port_id, queue_id, info_border);
341 printf("\nMempool: %s", (qinfo.mp == NULL) ? "NULL" : qinfo.mp->name);
342 printf("\nRX prefetch threshold: %hhu", qinfo.conf.rx_thresh.pthresh);
343 printf("\nRX host threshold: %hhu", qinfo.conf.rx_thresh.hthresh);
344 printf("\nRX writeback threshold: %hhu", qinfo.conf.rx_thresh.wthresh);
345 printf("\nRX free threshold: %hu", qinfo.conf.rx_free_thresh);
346 printf("\nRX drop packets: %s",
347 (qinfo.conf.rx_drop_en != 0) ? "on" : "off");
348 printf("\nRX deferred start: %s",
349 (qinfo.conf.rx_deferred_start != 0) ? "on" : "off");
350 printf("\nRX scattered packets: %s",
351 (qinfo.scattered_rx != 0) ? "on" : "off");
352 printf("\nNumber of RXDs: %hu", qinfo.nb_desc);
357 tx_queue_infos_display(portid_t port_id, uint16_t queue_id)
359 struct rte_eth_txq_info qinfo;
361 static const char *info_border = "*********************";
363 rc = rte_eth_tx_queue_info_get(port_id, queue_id, &qinfo);
365 printf("Failed to retrieve information for port: %u, "
366 "TX queue: %hu\nerror desc: %s(%d)\n",
367 port_id, queue_id, strerror(-rc), rc);
371 printf("\n%s Infos for port %-2u, TX queue %-2u %s",
372 info_border, port_id, queue_id, info_border);
374 printf("\nTX prefetch threshold: %hhu", qinfo.conf.tx_thresh.pthresh);
375 printf("\nTX host threshold: %hhu", qinfo.conf.tx_thresh.hthresh);
376 printf("\nTX writeback threshold: %hhu", qinfo.conf.tx_thresh.wthresh);
377 printf("\nTX RS threshold: %hu", qinfo.conf.tx_rs_thresh);
378 printf("\nTX free threshold: %hu", qinfo.conf.tx_free_thresh);
379 printf("\nTX deferred start: %s",
380 (qinfo.conf.tx_deferred_start != 0) ? "on" : "off");
381 printf("\nNumber of TXDs: %hu", qinfo.nb_desc);
386 port_infos_display(portid_t port_id)
388 struct rte_port *port;
389 struct ether_addr mac_addr;
390 struct rte_eth_link link;
391 struct rte_eth_dev_info dev_info;
393 struct rte_mempool * mp;
394 static const char *info_border = "*********************";
396 char name[RTE_ETH_NAME_MAX_LEN];
398 if (port_id_is_invalid(port_id, ENABLED_WARN)) {
402 port = &ports[port_id];
403 rte_eth_link_get_nowait(port_id, &link);
404 memset(&dev_info, 0, sizeof(dev_info));
405 rte_eth_dev_info_get(port_id, &dev_info);
406 printf("\n%s Infos for port %-2d %s\n",
407 info_border, port_id, info_border);
408 rte_eth_macaddr_get(port_id, &mac_addr);
409 print_ethaddr("MAC address: ", &mac_addr);
410 rte_eth_dev_get_name_by_port(port_id, name);
411 printf("\nDevice name: %s", name);
412 printf("\nDriver name: %s", dev_info.driver_name);
413 printf("\nConnect to socket: %u", port->socket_id);
415 if (port_numa[port_id] != NUMA_NO_CONFIG) {
416 mp = mbuf_pool_find(port_numa[port_id]);
418 printf("\nmemory allocation on the socket: %d",
421 printf("\nmemory allocation on the socket: %u",port->socket_id);
423 printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
424 printf("Link speed: %u Mbps\n", (unsigned) link.link_speed);
425 printf("Link duplex: %s\n", (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
426 ("full-duplex") : ("half-duplex"));
428 if (!rte_eth_dev_get_mtu(port_id, &mtu))
429 printf("MTU: %u\n", mtu);
431 printf("Promiscuous mode: %s\n",
432 rte_eth_promiscuous_get(port_id) ? "enabled" : "disabled");
433 printf("Allmulticast mode: %s\n",
434 rte_eth_allmulticast_get(port_id) ? "enabled" : "disabled");
435 printf("Maximum number of MAC addresses: %u\n",
436 (unsigned int)(port->dev_info.max_mac_addrs));
437 printf("Maximum number of MAC addresses of hash filtering: %u\n",
438 (unsigned int)(port->dev_info.max_hash_mac_addrs));
440 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
441 if (vlan_offload >= 0){
442 printf("VLAN offload: \n");
443 if (vlan_offload & ETH_VLAN_STRIP_OFFLOAD)
444 printf(" strip on \n");
446 printf(" strip off \n");
448 if (vlan_offload & ETH_VLAN_FILTER_OFFLOAD)
449 printf(" filter on \n");
451 printf(" filter off \n");
453 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)
454 printf(" qinq(extend) on \n");
456 printf(" qinq(extend) off \n");
459 if (dev_info.hash_key_size > 0)
460 printf("Hash key size in bytes: %u\n", dev_info.hash_key_size);
461 if (dev_info.reta_size > 0)
462 printf("Redirection table size: %u\n", dev_info.reta_size);
463 if (!dev_info.flow_type_rss_offloads)
464 printf("No flow type is supported.\n");
469 printf("Supported flow types:\n");
470 for (i = RTE_ETH_FLOW_UNKNOWN + 1;
471 i < sizeof(dev_info.flow_type_rss_offloads) * CHAR_BIT; i++) {
472 if (!(dev_info.flow_type_rss_offloads & (1ULL << i)))
474 p = flowtype_to_str(i);
478 printf(" user defined %d\n", i);
482 printf("Minimum size of RX buffer: %u\n", dev_info.min_rx_bufsize);
483 printf("Maximum configurable length of RX packet: %u\n",
484 dev_info.max_rx_pktlen);
485 if (dev_info.max_vfs)
486 printf("Maximum number of VFs: %u\n", dev_info.max_vfs);
487 if (dev_info.max_vmdq_pools)
488 printf("Maximum number of VMDq pools: %u\n",
489 dev_info.max_vmdq_pools);
491 printf("Current number of RX queues: %u\n", dev_info.nb_rx_queues);
492 printf("Max possible RX queues: %u\n", dev_info.max_rx_queues);
493 printf("Max possible number of RXDs per queue: %hu\n",
494 dev_info.rx_desc_lim.nb_max);
495 printf("Min possible number of RXDs per queue: %hu\n",
496 dev_info.rx_desc_lim.nb_min);
497 printf("RXDs number alignment: %hu\n", dev_info.rx_desc_lim.nb_align);
499 printf("Current number of TX queues: %u\n", dev_info.nb_tx_queues);
500 printf("Max possible TX queues: %u\n", dev_info.max_tx_queues);
501 printf("Max possible number of TXDs per queue: %hu\n",
502 dev_info.tx_desc_lim.nb_max);
503 printf("Min possible number of TXDs per queue: %hu\n",
504 dev_info.tx_desc_lim.nb_min);
505 printf("TXDs number alignment: %hu\n", dev_info.tx_desc_lim.nb_align);
507 /* Show switch info only if valid switch domain and port id is set */
508 if (dev_info.switch_info.domain_id !=
509 RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
510 if (dev_info.switch_info.name)
511 printf("Switch name: %s\n", dev_info.switch_info.name);
513 printf("Switch domain Id: %u\n",
514 dev_info.switch_info.domain_id);
515 printf("Switch Port Id: %u\n",
516 dev_info.switch_info.port_id);
521 port_offload_cap_display(portid_t port_id)
523 struct rte_eth_dev_info dev_info;
524 static const char *info_border = "************";
526 if (port_id_is_invalid(port_id, ENABLED_WARN))
529 rte_eth_dev_info_get(port_id, &dev_info);
531 printf("\n%s Port %d supported offload features: %s\n",
532 info_border, port_id, info_border);
534 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_VLAN_STRIP) {
535 printf("VLAN stripped: ");
536 if (ports[port_id].dev_conf.rxmode.offloads &
537 DEV_RX_OFFLOAD_VLAN_STRIP)
543 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_QINQ_STRIP) {
544 printf("Double VLANs stripped: ");
545 if (ports[port_id].dev_conf.rxmode.offloads &
546 DEV_RX_OFFLOAD_VLAN_EXTEND)
552 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM) {
553 printf("RX IPv4 checksum: ");
554 if (ports[port_id].dev_conf.rxmode.offloads &
555 DEV_RX_OFFLOAD_IPV4_CKSUM)
561 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_UDP_CKSUM) {
562 printf("RX UDP checksum: ");
563 if (ports[port_id].dev_conf.rxmode.offloads &
564 DEV_RX_OFFLOAD_UDP_CKSUM)
570 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_CKSUM) {
571 printf("RX TCP checksum: ");
572 if (ports[port_id].dev_conf.rxmode.offloads &
573 DEV_RX_OFFLOAD_TCP_CKSUM)
579 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_SCTP_CKSUM) {
580 printf("RX SCTP checksum: ");
581 if (ports[port_id].dev_conf.rxmode.offloads &
582 DEV_RX_OFFLOAD_SCTP_CKSUM)
588 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM) {
589 printf("RX Outer IPv4 checksum: ");
590 if (ports[port_id].dev_conf.rxmode.offloads &
591 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM)
597 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_LRO) {
598 printf("Large receive offload: ");
599 if (ports[port_id].dev_conf.rxmode.offloads &
600 DEV_RX_OFFLOAD_TCP_LRO)
606 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TIMESTAMP) {
607 printf("HW timestamp: ");
608 if (ports[port_id].dev_conf.rxmode.offloads &
609 DEV_RX_OFFLOAD_TIMESTAMP)
615 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_KEEP_CRC) {
616 printf("Rx Keep CRC: ");
617 if (ports[port_id].dev_conf.rxmode.offloads &
618 DEV_RX_OFFLOAD_KEEP_CRC)
624 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_SECURITY) {
625 printf("RX offload security: ");
626 if (ports[port_id].dev_conf.rxmode.offloads &
627 DEV_RX_OFFLOAD_SECURITY)
633 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) {
634 printf("VLAN insert: ");
635 if (ports[port_id].dev_conf.txmode.offloads &
636 DEV_TX_OFFLOAD_VLAN_INSERT)
642 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) {
643 printf("Double VLANs insert: ");
644 if (ports[port_id].dev_conf.txmode.offloads &
645 DEV_TX_OFFLOAD_QINQ_INSERT)
651 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) {
652 printf("TX IPv4 checksum: ");
653 if (ports[port_id].dev_conf.txmode.offloads &
654 DEV_TX_OFFLOAD_IPV4_CKSUM)
660 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) {
661 printf("TX UDP checksum: ");
662 if (ports[port_id].dev_conf.txmode.offloads &
663 DEV_TX_OFFLOAD_UDP_CKSUM)
669 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) {
670 printf("TX TCP checksum: ");
671 if (ports[port_id].dev_conf.txmode.offloads &
672 DEV_TX_OFFLOAD_TCP_CKSUM)
678 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) {
679 printf("TX SCTP checksum: ");
680 if (ports[port_id].dev_conf.txmode.offloads &
681 DEV_TX_OFFLOAD_SCTP_CKSUM)
687 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) {
688 printf("TX Outer IPv4 checksum: ");
689 if (ports[port_id].dev_conf.txmode.offloads &
690 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)
696 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) {
697 printf("TX TCP segmentation: ");
698 if (ports[port_id].dev_conf.txmode.offloads &
699 DEV_TX_OFFLOAD_TCP_TSO)
705 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TSO) {
706 printf("TX UDP segmentation: ");
707 if (ports[port_id].dev_conf.txmode.offloads &
708 DEV_TX_OFFLOAD_UDP_TSO)
714 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO) {
715 printf("TSO for VXLAN tunnel packet: ");
716 if (ports[port_id].dev_conf.txmode.offloads &
717 DEV_TX_OFFLOAD_VXLAN_TNL_TSO)
723 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO) {
724 printf("TSO for GRE tunnel packet: ");
725 if (ports[port_id].dev_conf.txmode.offloads &
726 DEV_TX_OFFLOAD_GRE_TNL_TSO)
732 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO) {
733 printf("TSO for IPIP tunnel packet: ");
734 if (ports[port_id].dev_conf.txmode.offloads &
735 DEV_TX_OFFLOAD_IPIP_TNL_TSO)
741 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO) {
742 printf("TSO for GENEVE tunnel packet: ");
743 if (ports[port_id].dev_conf.txmode.offloads &
744 DEV_TX_OFFLOAD_GENEVE_TNL_TSO)
750 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO) {
751 printf("IP tunnel TSO: ");
752 if (ports[port_id].dev_conf.txmode.offloads &
753 DEV_TX_OFFLOAD_IP_TNL_TSO)
759 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO) {
760 printf("UDP tunnel TSO: ");
761 if (ports[port_id].dev_conf.txmode.offloads &
762 DEV_TX_OFFLOAD_UDP_TNL_TSO)
770 port_id_is_invalid(portid_t port_id, enum print_warning warning)
774 if (port_id == (portid_t)RTE_PORT_ALL)
777 RTE_ETH_FOREACH_DEV(pid)
781 if (warning == ENABLED_WARN)
782 printf("Invalid port %d\n", port_id);
787 void print_valid_ports(void)
791 printf("The valid ports array is [");
792 RTE_ETH_FOREACH_DEV(pid) {
799 vlan_id_is_invalid(uint16_t vlan_id)
803 printf("Invalid vlan_id %d (must be < 4096)\n", vlan_id);
808 port_reg_off_is_invalid(portid_t port_id, uint32_t reg_off)
810 const struct rte_pci_device *pci_dev;
811 const struct rte_bus *bus;
815 printf("Port register offset 0x%X not aligned on a 4-byte "
821 if (!ports[port_id].dev_info.device) {
822 printf("Invalid device\n");
826 bus = rte_bus_find_by_device(ports[port_id].dev_info.device);
827 if (bus && !strcmp(bus->name, "pci")) {
828 pci_dev = RTE_DEV_TO_PCI(ports[port_id].dev_info.device);
830 printf("Not a PCI device\n");
834 pci_len = pci_dev->mem_resource[0].len;
835 if (reg_off >= pci_len) {
836 printf("Port %d: register offset %u (0x%X) out of port PCI "
837 "resource (length=%"PRIu64")\n",
838 port_id, (unsigned)reg_off, (unsigned)reg_off, pci_len);
845 reg_bit_pos_is_invalid(uint8_t bit_pos)
849 printf("Invalid bit position %d (must be <= 31)\n", bit_pos);
853 #define display_port_and_reg_off(port_id, reg_off) \
854 printf("port %d PCI register at offset 0x%X: ", (port_id), (reg_off))
857 display_port_reg_value(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
859 display_port_and_reg_off(port_id, (unsigned)reg_off);
860 printf("0x%08X (%u)\n", (unsigned)reg_v, (unsigned)reg_v);
864 port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_x)
869 if (port_id_is_invalid(port_id, ENABLED_WARN))
871 if (port_reg_off_is_invalid(port_id, reg_off))
873 if (reg_bit_pos_is_invalid(bit_x))
875 reg_v = port_id_pci_reg_read(port_id, reg_off);
876 display_port_and_reg_off(port_id, (unsigned)reg_off);
877 printf("bit %d=%d\n", bit_x, (int) ((reg_v & (1 << bit_x)) >> bit_x));
881 port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
882 uint8_t bit1_pos, uint8_t bit2_pos)
888 if (port_id_is_invalid(port_id, ENABLED_WARN))
890 if (port_reg_off_is_invalid(port_id, reg_off))
892 if (reg_bit_pos_is_invalid(bit1_pos))
894 if (reg_bit_pos_is_invalid(bit2_pos))
896 if (bit1_pos > bit2_pos)
897 l_bit = bit2_pos, h_bit = bit1_pos;
899 l_bit = bit1_pos, h_bit = bit2_pos;
901 reg_v = port_id_pci_reg_read(port_id, reg_off);
904 reg_v &= ((1 << (h_bit - l_bit + 1)) - 1);
905 display_port_and_reg_off(port_id, (unsigned)reg_off);
906 printf("bits[%d, %d]=0x%0*X (%u)\n", l_bit, h_bit,
907 ((h_bit - l_bit) / 4) + 1, (unsigned)reg_v, (unsigned)reg_v);
911 port_reg_display(portid_t port_id, uint32_t reg_off)
915 if (port_id_is_invalid(port_id, ENABLED_WARN))
917 if (port_reg_off_is_invalid(port_id, reg_off))
919 reg_v = port_id_pci_reg_read(port_id, reg_off);
920 display_port_reg_value(port_id, reg_off, reg_v);
924 port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
929 if (port_id_is_invalid(port_id, ENABLED_WARN))
931 if (port_reg_off_is_invalid(port_id, reg_off))
933 if (reg_bit_pos_is_invalid(bit_pos))
936 printf("Invalid bit value %d (must be 0 or 1)\n", (int) bit_v);
939 reg_v = port_id_pci_reg_read(port_id, reg_off);
941 reg_v &= ~(1 << bit_pos);
943 reg_v |= (1 << bit_pos);
944 port_id_pci_reg_write(port_id, reg_off, reg_v);
945 display_port_reg_value(port_id, reg_off, reg_v);
949 port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
950 uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value)
957 if (port_id_is_invalid(port_id, ENABLED_WARN))
959 if (port_reg_off_is_invalid(port_id, reg_off))
961 if (reg_bit_pos_is_invalid(bit1_pos))
963 if (reg_bit_pos_is_invalid(bit2_pos))
965 if (bit1_pos > bit2_pos)
966 l_bit = bit2_pos, h_bit = bit1_pos;
968 l_bit = bit1_pos, h_bit = bit2_pos;
970 if ((h_bit - l_bit) < 31)
971 max_v = (1 << (h_bit - l_bit + 1)) - 1;
976 printf("Invalid value %u (0x%x) must be < %u (0x%x)\n",
977 (unsigned)value, (unsigned)value,
978 (unsigned)max_v, (unsigned)max_v);
981 reg_v = port_id_pci_reg_read(port_id, reg_off);
982 reg_v &= ~(max_v << l_bit); /* Keep unchanged bits */
983 reg_v |= (value << l_bit); /* Set changed bits */
984 port_id_pci_reg_write(port_id, reg_off, reg_v);
985 display_port_reg_value(port_id, reg_off, reg_v);
989 port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
991 if (port_id_is_invalid(port_id, ENABLED_WARN))
993 if (port_reg_off_is_invalid(port_id, reg_off))
995 port_id_pci_reg_write(port_id, reg_off, reg_v);
996 display_port_reg_value(port_id, reg_off, reg_v);
1000 port_mtu_set(portid_t port_id, uint16_t mtu)
1004 if (port_id_is_invalid(port_id, ENABLED_WARN))
1006 diag = rte_eth_dev_set_mtu(port_id, mtu);
1009 printf("Set MTU failed. diag=%d\n", diag);
1012 /* Generic flow management functions. */
1014 /** Generate a port_flow entry from attributes/pattern/actions. */
1015 static struct port_flow *
1016 port_flow_new(const struct rte_flow_attr *attr,
1017 const struct rte_flow_item *pattern,
1018 const struct rte_flow_action *actions,
1019 struct rte_flow_error *error)
1021 const struct rte_flow_conv_rule rule = {
1023 .pattern_ro = pattern,
1024 .actions_ro = actions,
1026 struct port_flow *pf;
1029 ret = rte_flow_conv(RTE_FLOW_CONV_OP_RULE, NULL, 0, &rule, error);
1032 pf = calloc(1, offsetof(struct port_flow, rule) + ret);
1035 (error, errno, RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
1039 if (rte_flow_conv(RTE_FLOW_CONV_OP_RULE, &pf->rule, ret, &rule,
1046 /** Print a message out of a flow error. */
1048 port_flow_complain(struct rte_flow_error *error)
1050 static const char *const errstrlist[] = {
1051 [RTE_FLOW_ERROR_TYPE_NONE] = "no error",
1052 [RTE_FLOW_ERROR_TYPE_UNSPECIFIED] = "cause unspecified",
1053 [RTE_FLOW_ERROR_TYPE_HANDLE] = "flow rule (handle)",
1054 [RTE_FLOW_ERROR_TYPE_ATTR_GROUP] = "group field",
1055 [RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
1056 [RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
1057 [RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
1058 [RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER] = "transfer field",
1059 [RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
1060 [RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
1061 [RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",
1062 [RTE_FLOW_ERROR_TYPE_ITEM_LAST] = "item specification range",
1063 [RTE_FLOW_ERROR_TYPE_ITEM_MASK] = "item specification mask",
1064 [RTE_FLOW_ERROR_TYPE_ITEM] = "specific pattern item",
1065 [RTE_FLOW_ERROR_TYPE_ACTION_NUM] = "number of actions",
1066 [RTE_FLOW_ERROR_TYPE_ACTION_CONF] = "action configuration",
1067 [RTE_FLOW_ERROR_TYPE_ACTION] = "specific action",
1071 int err = rte_errno;
1073 if ((unsigned int)error->type >= RTE_DIM(errstrlist) ||
1074 !errstrlist[error->type])
1075 errstr = "unknown type";
1077 errstr = errstrlist[error->type];
1078 printf("Caught error type %d (%s): %s%s: %s\n",
1079 error->type, errstr,
1080 error->cause ? (snprintf(buf, sizeof(buf), "cause: %p, ",
1081 error->cause), buf) : "",
1082 error->message ? error->message : "(no stated reason)",
1087 /** Validate flow rule. */
1089 port_flow_validate(portid_t port_id,
1090 const struct rte_flow_attr *attr,
1091 const struct rte_flow_item *pattern,
1092 const struct rte_flow_action *actions)
1094 struct rte_flow_error error;
1096 /* Poisoning to make sure PMDs update it in case of error. */
1097 memset(&error, 0x11, sizeof(error));
1098 if (rte_flow_validate(port_id, attr, pattern, actions, &error))
1099 return port_flow_complain(&error);
1100 printf("Flow rule validated\n");
1104 /** Create flow rule. */
1106 port_flow_create(portid_t port_id,
1107 const struct rte_flow_attr *attr,
1108 const struct rte_flow_item *pattern,
1109 const struct rte_flow_action *actions)
1111 struct rte_flow *flow;
1112 struct rte_port *port;
1113 struct port_flow *pf;
1115 struct rte_flow_error error;
1117 /* Poisoning to make sure PMDs update it in case of error. */
1118 memset(&error, 0x22, sizeof(error));
1119 flow = rte_flow_create(port_id, attr, pattern, actions, &error);
1121 return port_flow_complain(&error);
1122 port = &ports[port_id];
1123 if (port->flow_list) {
1124 if (port->flow_list->id == UINT32_MAX) {
1125 printf("Highest rule ID is already assigned, delete"
1127 rte_flow_destroy(port_id, flow, NULL);
1130 id = port->flow_list->id + 1;
1133 pf = port_flow_new(attr, pattern, actions, &error);
1135 rte_flow_destroy(port_id, flow, NULL);
1136 return port_flow_complain(&error);
1138 pf->next = port->flow_list;
1141 port->flow_list = pf;
1142 printf("Flow rule #%u created\n", pf->id);
1146 /** Destroy a number of flow rules. */
1148 port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule)
1150 struct rte_port *port;
1151 struct port_flow **tmp;
1155 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1156 port_id == (portid_t)RTE_PORT_ALL)
1158 port = &ports[port_id];
1159 tmp = &port->flow_list;
1163 for (i = 0; i != n; ++i) {
1164 struct rte_flow_error error;
1165 struct port_flow *pf = *tmp;
1167 if (rule[i] != pf->id)
1170 * Poisoning to make sure PMDs update it in case
1173 memset(&error, 0x33, sizeof(error));
1174 if (rte_flow_destroy(port_id, pf->flow, &error)) {
1175 ret = port_flow_complain(&error);
1178 printf("Flow rule #%u destroyed\n", pf->id);
1184 tmp = &(*tmp)->next;
1190 /** Remove all flow rules. */
1192 port_flow_flush(portid_t port_id)
1194 struct rte_flow_error error;
1195 struct rte_port *port;
1198 /* Poisoning to make sure PMDs update it in case of error. */
1199 memset(&error, 0x44, sizeof(error));
1200 if (rte_flow_flush(port_id, &error)) {
1201 ret = port_flow_complain(&error);
1202 if (port_id_is_invalid(port_id, DISABLED_WARN) ||
1203 port_id == (portid_t)RTE_PORT_ALL)
1206 port = &ports[port_id];
1207 while (port->flow_list) {
1208 struct port_flow *pf = port->flow_list->next;
1210 free(port->flow_list);
1211 port->flow_list = pf;
1216 /** Query a flow rule. */
1218 port_flow_query(portid_t port_id, uint32_t rule,
1219 const struct rte_flow_action *action)
1221 struct rte_flow_error error;
1222 struct rte_port *port;
1223 struct port_flow *pf;
1226 struct rte_flow_query_count count;
1230 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1231 port_id == (portid_t)RTE_PORT_ALL)
1233 port = &ports[port_id];
1234 for (pf = port->flow_list; pf; pf = pf->next)
1238 printf("Flow rule #%u not found\n", rule);
1241 ret = rte_flow_conv(RTE_FLOW_CONV_OP_ACTION_NAME_PTR,
1242 &name, sizeof(name),
1243 (void *)(uintptr_t)action->type, &error);
1245 return port_flow_complain(&error);
1246 switch (action->type) {
1247 case RTE_FLOW_ACTION_TYPE_COUNT:
1250 printf("Cannot query action type %d (%s)\n",
1251 action->type, name);
1254 /* Poisoning to make sure PMDs update it in case of error. */
1255 memset(&error, 0x55, sizeof(error));
1256 memset(&query, 0, sizeof(query));
1257 if (rte_flow_query(port_id, pf->flow, action, &query, &error))
1258 return port_flow_complain(&error);
1259 switch (action->type) {
1260 case RTE_FLOW_ACTION_TYPE_COUNT:
1264 " hits: %" PRIu64 "\n"
1265 " bytes: %" PRIu64 "\n",
1267 query.count.hits_set,
1268 query.count.bytes_set,
1273 printf("Cannot display result for action type %d (%s)\n",
1274 action->type, name);
1280 /** List flow rules. */
1282 port_flow_list(portid_t port_id, uint32_t n, const uint32_t group[n])
1284 struct rte_port *port;
1285 struct port_flow *pf;
1286 struct port_flow *list = NULL;
1289 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1290 port_id == (portid_t)RTE_PORT_ALL)
1292 port = &ports[port_id];
1293 if (!port->flow_list)
1295 /* Sort flows by group, priority and ID. */
1296 for (pf = port->flow_list; pf != NULL; pf = pf->next) {
1297 struct port_flow **tmp;
1298 const struct rte_flow_attr *curr = pf->rule.attr;
1301 /* Filter out unwanted groups. */
1302 for (i = 0; i != n; ++i)
1303 if (curr->group == group[i])
1308 for (tmp = &list; *tmp; tmp = &(*tmp)->tmp) {
1309 const struct rte_flow_attr *comp = (*tmp)->rule.attr;
1311 if (curr->group > comp->group ||
1312 (curr->group == comp->group &&
1313 curr->priority > comp->priority) ||
1314 (curr->group == comp->group &&
1315 curr->priority == comp->priority &&
1316 pf->id > (*tmp)->id))
1323 printf("ID\tGroup\tPrio\tAttr\tRule\n");
1324 for (pf = list; pf != NULL; pf = pf->tmp) {
1325 const struct rte_flow_item *item = pf->rule.pattern;
1326 const struct rte_flow_action *action = pf->rule.actions;
1329 printf("%" PRIu32 "\t%" PRIu32 "\t%" PRIu32 "\t%c%c%c\t",
1331 pf->rule.attr->group,
1332 pf->rule.attr->priority,
1333 pf->rule.attr->ingress ? 'i' : '-',
1334 pf->rule.attr->egress ? 'e' : '-',
1335 pf->rule.attr->transfer ? 't' : '-');
1336 while (item->type != RTE_FLOW_ITEM_TYPE_END) {
1337 if (rte_flow_conv(RTE_FLOW_CONV_OP_ITEM_NAME_PTR,
1338 &name, sizeof(name),
1339 (void *)(uintptr_t)item->type,
1342 if (item->type != RTE_FLOW_ITEM_TYPE_VOID)
1343 printf("%s ", name);
1347 while (action->type != RTE_FLOW_ACTION_TYPE_END) {
1348 if (rte_flow_conv(RTE_FLOW_CONV_OP_ACTION_NAME_PTR,
1349 &name, sizeof(name),
1350 (void *)(uintptr_t)action->type,
1353 if (action->type != RTE_FLOW_ACTION_TYPE_VOID)
1354 printf(" %s", name);
1361 /** Restrict ingress traffic to the defined flow rules. */
1363 port_flow_isolate(portid_t port_id, int set)
1365 struct rte_flow_error error;
1367 /* Poisoning to make sure PMDs update it in case of error. */
1368 memset(&error, 0x66, sizeof(error));
1369 if (rte_flow_isolate(port_id, set, &error))
1370 return port_flow_complain(&error);
1371 printf("Ingress traffic on port %u is %s to the defined flow rules\n",
1373 set ? "now restricted" : "not restricted anymore");
1378 * RX/TX ring descriptors display functions.
1381 rx_queue_id_is_invalid(queueid_t rxq_id)
1383 if (rxq_id < nb_rxq)
1385 printf("Invalid RX queue %d (must be < nb_rxq=%d)\n", rxq_id, nb_rxq);
1390 tx_queue_id_is_invalid(queueid_t txq_id)
1392 if (txq_id < nb_txq)
1394 printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
1399 rx_desc_id_is_invalid(uint16_t rxdesc_id)
1401 if (rxdesc_id < nb_rxd)
1403 printf("Invalid RX descriptor %d (must be < nb_rxd=%d)\n",
1409 tx_desc_id_is_invalid(uint16_t txdesc_id)
1411 if (txdesc_id < nb_txd)
1413 printf("Invalid TX descriptor %d (must be < nb_txd=%d)\n",
1418 static const struct rte_memzone *
1419 ring_dma_zone_lookup(const char *ring_name, portid_t port_id, uint16_t q_id)
1421 char mz_name[RTE_MEMZONE_NAMESIZE];
1422 const struct rte_memzone *mz;
1424 snprintf(mz_name, sizeof(mz_name), "%s_%s_%d_%d",
1425 ports[port_id].dev_info.driver_name, ring_name, port_id, q_id);
1426 mz = rte_memzone_lookup(mz_name);
1428 printf("%s ring memory zoneof (port %d, queue %d) not"
1429 "found (zone name = %s\n",
1430 ring_name, port_id, q_id, mz_name);
1434 union igb_ring_dword {
1437 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1447 struct igb_ring_desc_32_bytes {
1448 union igb_ring_dword lo_dword;
1449 union igb_ring_dword hi_dword;
1450 union igb_ring_dword resv1;
1451 union igb_ring_dword resv2;
1454 struct igb_ring_desc_16_bytes {
1455 union igb_ring_dword lo_dword;
1456 union igb_ring_dword hi_dword;
1460 ring_rxd_display_dword(union igb_ring_dword dword)
1462 printf(" 0x%08X - 0x%08X\n", (unsigned)dword.words.lo,
1463 (unsigned)dword.words.hi);
1467 ring_rx_descriptor_display(const struct rte_memzone *ring_mz,
1468 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
1471 __rte_unused portid_t port_id,
1475 struct igb_ring_desc_16_bytes *ring =
1476 (struct igb_ring_desc_16_bytes *)ring_mz->addr;
1477 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
1478 struct rte_eth_dev_info dev_info;
1480 memset(&dev_info, 0, sizeof(dev_info));
1481 rte_eth_dev_info_get(port_id, &dev_info);
1482 if (strstr(dev_info.driver_name, "i40e") != NULL) {
1483 /* 32 bytes RX descriptor, i40e only */
1484 struct igb_ring_desc_32_bytes *ring =
1485 (struct igb_ring_desc_32_bytes *)ring_mz->addr;
1486 ring[desc_id].lo_dword.dword =
1487 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1488 ring_rxd_display_dword(ring[desc_id].lo_dword);
1489 ring[desc_id].hi_dword.dword =
1490 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1491 ring_rxd_display_dword(ring[desc_id].hi_dword);
1492 ring[desc_id].resv1.dword =
1493 rte_le_to_cpu_64(ring[desc_id].resv1.dword);
1494 ring_rxd_display_dword(ring[desc_id].resv1);
1495 ring[desc_id].resv2.dword =
1496 rte_le_to_cpu_64(ring[desc_id].resv2.dword);
1497 ring_rxd_display_dword(ring[desc_id].resv2);
1502 /* 16 bytes RX descriptor */
1503 ring[desc_id].lo_dword.dword =
1504 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1505 ring_rxd_display_dword(ring[desc_id].lo_dword);
1506 ring[desc_id].hi_dword.dword =
1507 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1508 ring_rxd_display_dword(ring[desc_id].hi_dword);
1512 ring_tx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
1514 struct igb_ring_desc_16_bytes *ring;
1515 struct igb_ring_desc_16_bytes txd;
1517 ring = (struct igb_ring_desc_16_bytes *)ring_mz->addr;
1518 txd.lo_dword.dword = rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1519 txd.hi_dword.dword = rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1520 printf(" 0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
1521 (unsigned)txd.lo_dword.words.lo,
1522 (unsigned)txd.lo_dword.words.hi,
1523 (unsigned)txd.hi_dword.words.lo,
1524 (unsigned)txd.hi_dword.words.hi);
1528 rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
1530 const struct rte_memzone *rx_mz;
1532 if (port_id_is_invalid(port_id, ENABLED_WARN))
1534 if (rx_queue_id_is_invalid(rxq_id))
1536 if (rx_desc_id_is_invalid(rxd_id))
1538 rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
1541 ring_rx_descriptor_display(rx_mz, port_id, rxd_id);
1545 tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id)
1547 const struct rte_memzone *tx_mz;
1549 if (port_id_is_invalid(port_id, ENABLED_WARN))
1551 if (tx_queue_id_is_invalid(txq_id))
1553 if (tx_desc_id_is_invalid(txd_id))
1555 tx_mz = ring_dma_zone_lookup("tx_ring", port_id, txq_id);
1558 ring_tx_descriptor_display(tx_mz, txd_id);
1562 fwd_lcores_config_display(void)
1566 printf("List of forwarding lcores:");
1567 for (lc_id = 0; lc_id < nb_cfg_lcores; lc_id++)
1568 printf(" %2u", fwd_lcores_cpuids[lc_id]);
1572 rxtx_config_display(void)
1577 printf(" %s packet forwarding%s packets/burst=%d\n",
1578 cur_fwd_eng->fwd_mode_name,
1579 retry_enabled == 0 ? "" : " with retry",
1582 if (cur_fwd_eng == &tx_only_engine || cur_fwd_eng == &flow_gen_engine)
1583 printf(" packet len=%u - nb packet segments=%d\n",
1584 (unsigned)tx_pkt_length, (int) tx_pkt_nb_segs);
1586 printf(" nb forwarding cores=%d - nb forwarding ports=%d\n",
1587 nb_fwd_lcores, nb_fwd_ports);
1589 RTE_ETH_FOREACH_DEV(pid) {
1590 struct rte_eth_rxconf *rx_conf = &ports[pid].rx_conf[0];
1591 struct rte_eth_txconf *tx_conf = &ports[pid].tx_conf[0];
1592 uint16_t *nb_rx_desc = &ports[pid].nb_rx_desc[0];
1593 uint16_t *nb_tx_desc = &ports[pid].nb_tx_desc[0];
1594 uint16_t nb_rx_desc_tmp;
1595 uint16_t nb_tx_desc_tmp;
1596 struct rte_eth_rxq_info rx_qinfo;
1597 struct rte_eth_txq_info tx_qinfo;
1600 /* per port config */
1601 printf(" port %d: RX queue number: %d Tx queue number: %d\n",
1602 (unsigned int)pid, nb_rxq, nb_txq);
1604 printf(" Rx offloads=0x%"PRIx64" Tx offloads=0x%"PRIx64"\n",
1605 ports[pid].dev_conf.rxmode.offloads,
1606 ports[pid].dev_conf.txmode.offloads);
1608 /* per rx queue config only for first queue to be less verbose */
1609 for (qid = 0; qid < 1; qid++) {
1610 rc = rte_eth_rx_queue_info_get(pid, qid, &rx_qinfo);
1612 nb_rx_desc_tmp = nb_rx_desc[qid];
1614 nb_rx_desc_tmp = rx_qinfo.nb_desc;
1616 printf(" RX queue: %d\n", qid);
1617 printf(" RX desc=%d - RX free threshold=%d\n",
1618 nb_rx_desc_tmp, rx_conf[qid].rx_free_thresh);
1619 printf(" RX threshold registers: pthresh=%d hthresh=%d "
1621 rx_conf[qid].rx_thresh.pthresh,
1622 rx_conf[qid].rx_thresh.hthresh,
1623 rx_conf[qid].rx_thresh.wthresh);
1624 printf(" RX Offloads=0x%"PRIx64"\n",
1625 rx_conf[qid].offloads);
1628 /* per tx queue config only for first queue to be less verbose */
1629 for (qid = 0; qid < 1; qid++) {
1630 rc = rte_eth_tx_queue_info_get(pid, qid, &tx_qinfo);
1632 nb_tx_desc_tmp = nb_tx_desc[qid];
1634 nb_tx_desc_tmp = tx_qinfo.nb_desc;
1636 printf(" TX queue: %d\n", qid);
1637 printf(" TX desc=%d - TX free threshold=%d\n",
1638 nb_tx_desc_tmp, tx_conf[qid].tx_free_thresh);
1639 printf(" TX threshold registers: pthresh=%d hthresh=%d "
1641 tx_conf[qid].tx_thresh.pthresh,
1642 tx_conf[qid].tx_thresh.hthresh,
1643 tx_conf[qid].tx_thresh.wthresh);
1644 printf(" TX offloads=0x%"PRIx64" - TX RS bit threshold=%d\n",
1645 tx_conf[qid].offloads, tx_conf->tx_rs_thresh);
1651 port_rss_reta_info(portid_t port_id,
1652 struct rte_eth_rss_reta_entry64 *reta_conf,
1653 uint16_t nb_entries)
1655 uint16_t i, idx, shift;
1658 if (port_id_is_invalid(port_id, ENABLED_WARN))
1661 ret = rte_eth_dev_rss_reta_query(port_id, reta_conf, nb_entries);
1663 printf("Failed to get RSS RETA info, return code = %d\n", ret);
1667 for (i = 0; i < nb_entries; i++) {
1668 idx = i / RTE_RETA_GROUP_SIZE;
1669 shift = i % RTE_RETA_GROUP_SIZE;
1670 if (!(reta_conf[idx].mask & (1ULL << shift)))
1672 printf("RSS RETA configuration: hash index=%u, queue=%u\n",
1673 i, reta_conf[idx].reta[shift]);
1678 * Displays the RSS hash functions of a port, and, optionaly, the RSS hash
1682 port_rss_hash_conf_show(portid_t port_id, char rss_info[], int show_rss_key)
1684 struct rte_eth_rss_conf rss_conf;
1685 uint8_t rss_key[RSS_HASH_KEY_LENGTH];
1689 struct rte_eth_dev_info dev_info;
1690 uint8_t hash_key_size;
1692 if (port_id_is_invalid(port_id, ENABLED_WARN))
1695 memset(&dev_info, 0, sizeof(dev_info));
1696 rte_eth_dev_info_get(port_id, &dev_info);
1697 if (dev_info.hash_key_size > 0 &&
1698 dev_info.hash_key_size <= sizeof(rss_key))
1699 hash_key_size = dev_info.hash_key_size;
1701 printf("dev_info did not provide a valid hash key size\n");
1705 rss_conf.rss_hf = 0;
1706 for (i = 0; rss_type_table[i].str; i++) {
1707 if (!strcmp(rss_info, rss_type_table[i].str))
1708 rss_conf.rss_hf = rss_type_table[i].rss_type;
1711 /* Get RSS hash key if asked to display it */
1712 rss_conf.rss_key = (show_rss_key) ? rss_key : NULL;
1713 rss_conf.rss_key_len = hash_key_size;
1714 diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
1718 printf("port index %d invalid\n", port_id);
1721 printf("operation not supported by device\n");
1724 printf("operation failed - diag=%d\n", diag);
1729 rss_hf = rss_conf.rss_hf;
1731 printf("RSS disabled\n");
1734 printf("RSS functions:\n ");
1735 for (i = 0; rss_type_table[i].str; i++) {
1736 if (rss_hf & rss_type_table[i].rss_type)
1737 printf("%s ", rss_type_table[i].str);
1742 printf("RSS key:\n");
1743 for (i = 0; i < hash_key_size; i++)
1744 printf("%02X", rss_key[i]);
1749 port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key,
1752 struct rte_eth_rss_conf rss_conf;
1756 rss_conf.rss_key = NULL;
1757 rss_conf.rss_key_len = hash_key_len;
1758 rss_conf.rss_hf = 0;
1759 for (i = 0; rss_type_table[i].str; i++) {
1760 if (!strcmp(rss_type_table[i].str, rss_type))
1761 rss_conf.rss_hf = rss_type_table[i].rss_type;
1763 diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
1765 rss_conf.rss_key = hash_key;
1766 diag = rte_eth_dev_rss_hash_update(port_id, &rss_conf);
1773 printf("port index %d invalid\n", port_id);
1776 printf("operation not supported by device\n");
1779 printf("operation failed - diag=%d\n", diag);
1785 * Setup forwarding configuration for each logical core.
1788 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
1790 streamid_t nb_fs_per_lcore;
1798 nb_fs = cfg->nb_fwd_streams;
1799 nb_fc = cfg->nb_fwd_lcores;
1800 if (nb_fs <= nb_fc) {
1801 nb_fs_per_lcore = 1;
1804 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
1805 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
1808 nb_lc = (lcoreid_t) (nb_fc - nb_extra);
1810 for (lc_id = 0; lc_id < nb_lc; lc_id++) {
1811 fwd_lcores[lc_id]->stream_idx = sm_id;
1812 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
1813 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
1817 * Assign extra remaining streams, if any.
1819 nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
1820 for (lc_id = 0; lc_id < nb_extra; lc_id++) {
1821 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
1822 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
1823 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
1828 fwd_topology_tx_port_get(portid_t rxp)
1830 static int warning_once = 1;
1832 RTE_ASSERT(rxp < cur_fwd_config.nb_fwd_ports);
1834 switch (port_topology) {
1836 case PORT_TOPOLOGY_PAIRED:
1837 if ((rxp & 0x1) == 0) {
1838 if (rxp + 1 < cur_fwd_config.nb_fwd_ports)
1841 printf("\nWarning! port-topology=paired"
1842 " and odd forward ports number,"
1843 " the last port will pair with"
1850 case PORT_TOPOLOGY_CHAINED:
1851 return (rxp + 1) % cur_fwd_config.nb_fwd_ports;
1852 case PORT_TOPOLOGY_LOOP:
1858 simple_fwd_config_setup(void)
1862 cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
1863 cur_fwd_config.nb_fwd_streams =
1864 (streamid_t) cur_fwd_config.nb_fwd_ports;
1866 /* reinitialize forwarding streams */
1870 * In the simple forwarding test, the number of forwarding cores
1871 * must be lower or equal to the number of forwarding ports.
1873 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
1874 if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
1875 cur_fwd_config.nb_fwd_lcores =
1876 (lcoreid_t) cur_fwd_config.nb_fwd_ports;
1877 setup_fwd_config_of_each_lcore(&cur_fwd_config);
1879 for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
1880 fwd_streams[i]->rx_port = fwd_ports_ids[i];
1881 fwd_streams[i]->rx_queue = 0;
1882 fwd_streams[i]->tx_port =
1883 fwd_ports_ids[fwd_topology_tx_port_get(i)];
1884 fwd_streams[i]->tx_queue = 0;
1885 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
1886 fwd_streams[i]->retry_enabled = retry_enabled;
1891 * For the RSS forwarding test all streams distributed over lcores. Each stream
1892 * being composed of a RX queue to poll on a RX port for input messages,
1893 * associated with a TX queue of a TX port where to send forwarded packets.
1896 rss_fwd_config_setup(void)
1907 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
1908 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
1909 cur_fwd_config.nb_fwd_streams =
1910 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
1912 if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
1913 cur_fwd_config.nb_fwd_lcores =
1914 (lcoreid_t)cur_fwd_config.nb_fwd_streams;
1916 /* reinitialize forwarding streams */
1919 setup_fwd_config_of_each_lcore(&cur_fwd_config);
1921 for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
1922 struct fwd_stream *fs;
1924 fs = fwd_streams[sm_id];
1925 txp = fwd_topology_tx_port_get(rxp);
1926 fs->rx_port = fwd_ports_ids[rxp];
1928 fs->tx_port = fwd_ports_ids[txp];
1930 fs->peer_addr = fs->tx_port;
1931 fs->retry_enabled = retry_enabled;
1933 if (rxp < nb_fwd_ports)
1941 * For the DCB forwarding test, each core is assigned on each traffic class.
1943 * Each core is assigned a multi-stream, each stream being composed of
1944 * a RX queue to poll on a RX port for input messages, associated with
1945 * a TX queue of a TX port where to send forwarded packets. All RX and
1946 * TX queues are mapping to the same traffic class.
1947 * If VMDQ and DCB co-exist, each traffic class on different POOLs share
1951 dcb_fwd_config_setup(void)
1953 struct rte_eth_dcb_info rxp_dcb_info, txp_dcb_info;
1954 portid_t txp, rxp = 0;
1955 queueid_t txq, rxq = 0;
1957 uint16_t nb_rx_queue, nb_tx_queue;
1958 uint16_t i, j, k, sm_id = 0;
1961 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
1962 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
1963 cur_fwd_config.nb_fwd_streams =
1964 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
1966 /* reinitialize forwarding streams */
1970 /* get the dcb info on the first RX and TX ports */
1971 (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
1972 (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
1974 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
1975 fwd_lcores[lc_id]->stream_nb = 0;
1976 fwd_lcores[lc_id]->stream_idx = sm_id;
1977 for (i = 0; i < ETH_MAX_VMDQ_POOL; i++) {
1978 /* if the nb_queue is zero, means this tc is
1979 * not enabled on the POOL
1981 if (rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue == 0)
1983 k = fwd_lcores[lc_id]->stream_nb +
1984 fwd_lcores[lc_id]->stream_idx;
1985 rxq = rxp_dcb_info.tc_queue.tc_rxq[i][tc].base;
1986 txq = txp_dcb_info.tc_queue.tc_txq[i][tc].base;
1987 nb_rx_queue = txp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
1988 nb_tx_queue = txp_dcb_info.tc_queue.tc_txq[i][tc].nb_queue;
1989 for (j = 0; j < nb_rx_queue; j++) {
1990 struct fwd_stream *fs;
1992 fs = fwd_streams[k + j];
1993 fs->rx_port = fwd_ports_ids[rxp];
1994 fs->rx_queue = rxq + j;
1995 fs->tx_port = fwd_ports_ids[txp];
1996 fs->tx_queue = txq + j % nb_tx_queue;
1997 fs->peer_addr = fs->tx_port;
1998 fs->retry_enabled = retry_enabled;
2000 fwd_lcores[lc_id]->stream_nb +=
2001 rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2003 sm_id = (streamid_t) (sm_id + fwd_lcores[lc_id]->stream_nb);
2006 if (tc < rxp_dcb_info.nb_tcs)
2008 /* Restart from TC 0 on next RX port */
2010 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
2012 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
2015 if (rxp >= nb_fwd_ports)
2017 /* get the dcb information on next RX and TX ports */
2018 if ((rxp & 0x1) == 0)
2019 txp = (portid_t) (rxp + 1);
2021 txp = (portid_t) (rxp - 1);
2022 rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2023 rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2028 icmp_echo_config_setup(void)
2035 if ((nb_txq * nb_fwd_ports) < nb_fwd_lcores)
2036 cur_fwd_config.nb_fwd_lcores = (lcoreid_t)
2037 (nb_txq * nb_fwd_ports);
2039 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2040 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2041 cur_fwd_config.nb_fwd_streams =
2042 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2043 if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2044 cur_fwd_config.nb_fwd_lcores =
2045 (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2046 if (verbose_level > 0) {
2047 printf("%s fwd_cores=%d fwd_ports=%d fwd_streams=%d\n",
2049 cur_fwd_config.nb_fwd_lcores,
2050 cur_fwd_config.nb_fwd_ports,
2051 cur_fwd_config.nb_fwd_streams);
2054 /* reinitialize forwarding streams */
2056 setup_fwd_config_of_each_lcore(&cur_fwd_config);
2058 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2059 if (verbose_level > 0)
2060 printf(" core=%d: \n", lc_id);
2061 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2062 struct fwd_stream *fs;
2063 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2064 fs->rx_port = fwd_ports_ids[rxp];
2066 fs->tx_port = fs->rx_port;
2068 fs->peer_addr = fs->tx_port;
2069 fs->retry_enabled = retry_enabled;
2070 if (verbose_level > 0)
2071 printf(" stream=%d port=%d rxq=%d txq=%d\n",
2072 sm_id, fs->rx_port, fs->rx_queue,
2074 rxq = (queueid_t) (rxq + 1);
2075 if (rxq == nb_rxq) {
2077 rxp = (portid_t) (rxp + 1);
2083 #if defined RTE_LIBRTE_PMD_SOFTNIC
2085 softnic_fwd_config_setup(void)
2087 struct rte_port *port;
2088 portid_t pid, softnic_portid;
2090 uint8_t softnic_enable = 0;
2092 RTE_ETH_FOREACH_DEV(pid) {
2094 const char *driver = port->dev_info.driver_name;
2096 if (strcmp(driver, "net_softnic") == 0) {
2097 softnic_portid = pid;
2103 if (softnic_enable == 0) {
2104 printf("Softnic mode not configured(%s)!\n", __func__);
2108 cur_fwd_config.nb_fwd_ports = 1;
2109 cur_fwd_config.nb_fwd_streams = (streamid_t) nb_rxq;
2111 /* Re-initialize forwarding streams */
2115 * In the softnic forwarding test, the number of forwarding cores
2116 * is set to one and remaining are used for softnic packet processing.
2118 cur_fwd_config.nb_fwd_lcores = 1;
2119 setup_fwd_config_of_each_lcore(&cur_fwd_config);
2121 for (i = 0; i < cur_fwd_config.nb_fwd_streams; i++) {
2122 fwd_streams[i]->rx_port = softnic_portid;
2123 fwd_streams[i]->rx_queue = i;
2124 fwd_streams[i]->tx_port = softnic_portid;
2125 fwd_streams[i]->tx_queue = i;
2126 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
2127 fwd_streams[i]->retry_enabled = retry_enabled;
2133 fwd_config_setup(void)
2135 cur_fwd_config.fwd_eng = cur_fwd_eng;
2136 if (strcmp(cur_fwd_eng->fwd_mode_name, "icmpecho") == 0) {
2137 icmp_echo_config_setup();
2141 #if defined RTE_LIBRTE_PMD_SOFTNIC
2142 if (strcmp(cur_fwd_eng->fwd_mode_name, "softnic") == 0) {
2143 softnic_fwd_config_setup();
2148 if ((nb_rxq > 1) && (nb_txq > 1)){
2150 dcb_fwd_config_setup();
2152 rss_fwd_config_setup();
2155 simple_fwd_config_setup();
2159 mp_alloc_to_str(uint8_t mode)
2162 case MP_ALLOC_NATIVE:
2168 case MP_ALLOC_XMEM_HUGE:
2176 pkt_fwd_config_display(struct fwd_config *cfg)
2178 struct fwd_stream *fs;
2182 printf("%s packet forwarding%s - ports=%d - cores=%d - streams=%d - "
2183 "NUMA support %s, MP allocation mode: %s\n",
2184 cfg->fwd_eng->fwd_mode_name,
2185 retry_enabled == 0 ? "" : " with retry",
2186 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
2187 numa_support == 1 ? "enabled" : "disabled",
2188 mp_alloc_to_str(mp_alloc_type));
2191 printf("TX retry num: %u, delay between TX retries: %uus\n",
2192 burst_tx_retry_num, burst_tx_delay_time);
2193 for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
2194 printf("Logical Core %u (socket %u) forwards packets on "
2196 fwd_lcores_cpuids[lc_id],
2197 rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
2198 fwd_lcores[lc_id]->stream_nb);
2199 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2200 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2201 printf("\n RX P=%d/Q=%d (socket %u) -> TX "
2202 "P=%d/Q=%d (socket %u) ",
2203 fs->rx_port, fs->rx_queue,
2204 ports[fs->rx_port].socket_id,
2205 fs->tx_port, fs->tx_queue,
2206 ports[fs->tx_port].socket_id);
2207 print_ethaddr("peer=",
2208 &peer_eth_addrs[fs->peer_addr]);
2216 set_fwd_eth_peer(portid_t port_id, char *peer_addr)
2218 uint8_t c, new_peer_addr[6];
2219 if (!rte_eth_dev_is_valid_port(port_id)) {
2220 printf("Error: Invalid port number %i\n", port_id);
2223 if (cmdline_parse_etheraddr(NULL, peer_addr, &new_peer_addr,
2224 sizeof(new_peer_addr)) < 0) {
2225 printf("Error: Invalid ethernet address: %s\n", peer_addr);
2228 for (c = 0; c < 6; c++)
2229 peer_eth_addrs[port_id].addr_bytes[c] =
2234 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
2237 unsigned int lcore_cpuid;
2242 for (i = 0; i < nb_lc; i++) {
2243 lcore_cpuid = lcorelist[i];
2244 if (! rte_lcore_is_enabled(lcore_cpuid)) {
2245 printf("lcore %u not enabled\n", lcore_cpuid);
2248 if (lcore_cpuid == rte_get_master_lcore()) {
2249 printf("lcore %u cannot be masked on for running "
2250 "packet forwarding, which is the master lcore "
2251 "and reserved for command line parsing only\n",
2256 fwd_lcores_cpuids[i] = lcore_cpuid;
2258 if (record_now == 0) {
2262 nb_cfg_lcores = (lcoreid_t) nb_lc;
2263 if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
2264 printf("previous number of forwarding cores %u - changed to "
2265 "number of configured cores %u\n",
2266 (unsigned int) nb_fwd_lcores, nb_lc);
2267 nb_fwd_lcores = (lcoreid_t) nb_lc;
2274 set_fwd_lcores_mask(uint64_t lcoremask)
2276 unsigned int lcorelist[64];
2280 if (lcoremask == 0) {
2281 printf("Invalid NULL mask of cores\n");
2285 for (i = 0; i < 64; i++) {
2286 if (! ((uint64_t)(1ULL << i) & lcoremask))
2288 lcorelist[nb_lc++] = i;
2290 return set_fwd_lcores_list(lcorelist, nb_lc);
2294 set_fwd_lcores_number(uint16_t nb_lc)
2296 if (nb_lc > nb_cfg_lcores) {
2297 printf("nb fwd cores %u > %u (max. number of configured "
2298 "lcores) - ignored\n",
2299 (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
2302 nb_fwd_lcores = (lcoreid_t) nb_lc;
2303 printf("Number of forwarding cores set to %u\n",
2304 (unsigned int) nb_fwd_lcores);
2308 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
2316 for (i = 0; i < nb_pt; i++) {
2317 port_id = (portid_t) portlist[i];
2318 if (port_id_is_invalid(port_id, ENABLED_WARN))
2321 fwd_ports_ids[i] = port_id;
2323 if (record_now == 0) {
2327 nb_cfg_ports = (portid_t) nb_pt;
2328 if (nb_fwd_ports != (portid_t) nb_pt) {
2329 printf("previous number of forwarding ports %u - changed to "
2330 "number of configured ports %u\n",
2331 (unsigned int) nb_fwd_ports, nb_pt);
2332 nb_fwd_ports = (portid_t) nb_pt;
2337 set_fwd_ports_mask(uint64_t portmask)
2339 unsigned int portlist[64];
2343 if (portmask == 0) {
2344 printf("Invalid NULL mask of ports\n");
2348 RTE_ETH_FOREACH_DEV(i) {
2349 if (! ((uint64_t)(1ULL << i) & portmask))
2351 portlist[nb_pt++] = i;
2353 set_fwd_ports_list(portlist, nb_pt);
2357 set_fwd_ports_number(uint16_t nb_pt)
2359 if (nb_pt > nb_cfg_ports) {
2360 printf("nb fwd ports %u > %u (number of configured "
2361 "ports) - ignored\n",
2362 (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
2365 nb_fwd_ports = (portid_t) nb_pt;
2366 printf("Number of forwarding ports set to %u\n",
2367 (unsigned int) nb_fwd_ports);
2371 port_is_forwarding(portid_t port_id)
2375 if (port_id_is_invalid(port_id, ENABLED_WARN))
2378 for (i = 0; i < nb_fwd_ports; i++) {
2379 if (fwd_ports_ids[i] == port_id)
2387 set_nb_pkt_per_burst(uint16_t nb)
2389 if (nb > MAX_PKT_BURST) {
2390 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
2392 (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
2395 nb_pkt_per_burst = nb;
2396 printf("Number of packets per burst set to %u\n",
2397 (unsigned int) nb_pkt_per_burst);
2401 tx_split_get_name(enum tx_pkt_split split)
2405 for (i = 0; i != RTE_DIM(tx_split_name); i++) {
2406 if (tx_split_name[i].split == split)
2407 return tx_split_name[i].name;
2413 set_tx_pkt_split(const char *name)
2417 for (i = 0; i != RTE_DIM(tx_split_name); i++) {
2418 if (strcmp(tx_split_name[i].name, name) == 0) {
2419 tx_pkt_split = tx_split_name[i].split;
2423 printf("unknown value: \"%s\"\n", name);
2427 show_tx_pkt_segments(void)
2433 split = tx_split_get_name(tx_pkt_split);
2435 printf("Number of segments: %u\n", n);
2436 printf("Segment sizes: ");
2437 for (i = 0; i != n - 1; i++)
2438 printf("%hu,", tx_pkt_seg_lengths[i]);
2439 printf("%hu\n", tx_pkt_seg_lengths[i]);
2440 printf("Split packet: %s\n", split);
2444 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
2446 uint16_t tx_pkt_len;
2449 if (nb_segs >= (unsigned) nb_txd) {
2450 printf("nb segments per TX packets=%u >= nb_txd=%u - ignored\n",
2451 nb_segs, (unsigned int) nb_txd);
2456 * Check that each segment length is greater or equal than
2457 * the mbuf data sise.
2458 * Check also that the total packet length is greater or equal than the
2459 * size of an empty UDP/IP packet (sizeof(struct ether_hdr) + 20 + 8).
2462 for (i = 0; i < nb_segs; i++) {
2463 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
2464 printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
2465 i, seg_lengths[i], (unsigned) mbuf_data_size);
2468 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
2470 if (tx_pkt_len < (sizeof(struct ether_hdr) + 20 + 8)) {
2471 printf("total packet length=%u < %d - give up\n",
2472 (unsigned) tx_pkt_len,
2473 (int)(sizeof(struct ether_hdr) + 20 + 8));
2477 for (i = 0; i < nb_segs; i++)
2478 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
2480 tx_pkt_length = tx_pkt_len;
2481 tx_pkt_nb_segs = (uint8_t) nb_segs;
2485 setup_gro(const char *onoff, portid_t port_id)
2487 if (!rte_eth_dev_is_valid_port(port_id)) {
2488 printf("invalid port id %u\n", port_id);
2491 if (test_done == 0) {
2492 printf("Before enable/disable GRO,"
2493 " please stop forwarding first\n");
2496 if (strcmp(onoff, "on") == 0) {
2497 if (gro_ports[port_id].enable != 0) {
2498 printf("Port %u has enabled GRO. Please"
2499 " disable GRO first\n", port_id);
2502 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
2503 gro_ports[port_id].param.gro_types = RTE_GRO_TCP_IPV4;
2504 gro_ports[port_id].param.max_flow_num =
2505 GRO_DEFAULT_FLOW_NUM;
2506 gro_ports[port_id].param.max_item_per_flow =
2507 GRO_DEFAULT_ITEM_NUM_PER_FLOW;
2509 gro_ports[port_id].enable = 1;
2511 if (gro_ports[port_id].enable == 0) {
2512 printf("Port %u has disabled GRO\n", port_id);
2515 gro_ports[port_id].enable = 0;
2520 setup_gro_flush_cycles(uint8_t cycles)
2522 if (test_done == 0) {
2523 printf("Before change flush interval for GRO,"
2524 " please stop forwarding first.\n");
2528 if (cycles > GRO_MAX_FLUSH_CYCLES || cycles <
2529 GRO_DEFAULT_FLUSH_CYCLES) {
2530 printf("The flushing cycle be in the range"
2531 " of 1 to %u. Revert to the default"
2533 GRO_MAX_FLUSH_CYCLES,
2534 GRO_DEFAULT_FLUSH_CYCLES);
2535 cycles = GRO_DEFAULT_FLUSH_CYCLES;
2538 gro_flush_cycles = cycles;
2542 show_gro(portid_t port_id)
2544 struct rte_gro_param *param;
2545 uint32_t max_pkts_num;
2547 param = &gro_ports[port_id].param;
2549 if (!rte_eth_dev_is_valid_port(port_id)) {
2550 printf("Invalid port id %u.\n", port_id);
2553 if (gro_ports[port_id].enable) {
2554 printf("GRO type: TCP/IPv4\n");
2555 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
2556 max_pkts_num = param->max_flow_num *
2557 param->max_item_per_flow;
2559 max_pkts_num = MAX_PKT_BURST * GRO_MAX_FLUSH_CYCLES;
2560 printf("Max number of packets to perform GRO: %u\n",
2562 printf("Flushing cycles: %u\n", gro_flush_cycles);
2564 printf("Port %u doesn't enable GRO.\n", port_id);
2568 setup_gso(const char *mode, portid_t port_id)
2570 if (!rte_eth_dev_is_valid_port(port_id)) {
2571 printf("invalid port id %u\n", port_id);
2574 if (strcmp(mode, "on") == 0) {
2575 if (test_done == 0) {
2576 printf("before enabling GSO,"
2577 " please stop forwarding first\n");
2580 gso_ports[port_id].enable = 1;
2581 } else if (strcmp(mode, "off") == 0) {
2582 if (test_done == 0) {
2583 printf("before disabling GSO,"
2584 " please stop forwarding first\n");
2587 gso_ports[port_id].enable = 0;
2592 list_pkt_forwarding_modes(void)
2594 static char fwd_modes[128] = "";
2595 const char *separator = "|";
2596 struct fwd_engine *fwd_eng;
2599 if (strlen (fwd_modes) == 0) {
2600 while ((fwd_eng = fwd_engines[i++]) != NULL) {
2601 strncat(fwd_modes, fwd_eng->fwd_mode_name,
2602 sizeof(fwd_modes) - strlen(fwd_modes) - 1);
2603 strncat(fwd_modes, separator,
2604 sizeof(fwd_modes) - strlen(fwd_modes) - 1);
2606 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
2613 list_pkt_forwarding_retry_modes(void)
2615 static char fwd_modes[128] = "";
2616 const char *separator = "|";
2617 struct fwd_engine *fwd_eng;
2620 if (strlen(fwd_modes) == 0) {
2621 while ((fwd_eng = fwd_engines[i++]) != NULL) {
2622 if (fwd_eng == &rx_only_engine)
2624 strncat(fwd_modes, fwd_eng->fwd_mode_name,
2626 strlen(fwd_modes) - 1);
2627 strncat(fwd_modes, separator,
2629 strlen(fwd_modes) - 1);
2631 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
2638 set_pkt_forwarding_mode(const char *fwd_mode_name)
2640 struct fwd_engine *fwd_eng;
2644 while ((fwd_eng = fwd_engines[i]) != NULL) {
2645 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
2646 printf("Set %s packet forwarding mode%s\n",
2648 retry_enabled == 0 ? "" : " with retry");
2649 cur_fwd_eng = fwd_eng;
2654 printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
2658 set_verbose_level(uint16_t vb_level)
2660 printf("Change verbose level from %u to %u\n",
2661 (unsigned int) verbose_level, (unsigned int) vb_level);
2662 verbose_level = vb_level;
2666 vlan_extend_set(portid_t port_id, int on)
2670 uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2672 if (port_id_is_invalid(port_id, ENABLED_WARN))
2675 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2678 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
2679 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
2681 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
2682 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND;
2685 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2687 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
2688 "diag=%d\n", port_id, on, diag);
2689 ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2693 rx_vlan_strip_set(portid_t port_id, int on)
2697 uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2699 if (port_id_is_invalid(port_id, ENABLED_WARN))
2702 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2705 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
2706 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
2708 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
2709 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2712 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2714 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
2715 "diag=%d\n", port_id, on, diag);
2716 ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2720 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
2724 if (port_id_is_invalid(port_id, ENABLED_WARN))
2727 diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
2729 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
2730 "diag=%d\n", port_id, queue_id, on, diag);
2734 rx_vlan_filter_set(portid_t port_id, int on)
2738 uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2740 if (port_id_is_invalid(port_id, ENABLED_WARN))
2743 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2746 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
2747 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
2749 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
2750 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER;
2753 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2755 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
2756 "diag=%d\n", port_id, on, diag);
2757 ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2761 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
2765 if (port_id_is_invalid(port_id, ENABLED_WARN))
2767 if (vlan_id_is_invalid(vlan_id))
2769 diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
2772 printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
2774 port_id, vlan_id, on, diag);
2779 rx_vlan_all_filter_set(portid_t port_id, int on)
2783 if (port_id_is_invalid(port_id, ENABLED_WARN))
2785 for (vlan_id = 0; vlan_id < 4096; vlan_id++) {
2786 if (rx_vft_set(port_id, vlan_id, on))
2792 vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type, uint16_t tp_id)
2796 if (port_id_is_invalid(port_id, ENABLED_WARN))
2799 diag = rte_eth_dev_set_vlan_ether_type(port_id, vlan_type, tp_id);
2803 printf("tx_vlan_tpid_set(port_pi=%d, vlan_type=%d, tpid=%d) failed "
2805 port_id, vlan_type, tp_id, diag);
2809 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
2812 struct rte_eth_dev_info dev_info;
2814 if (port_id_is_invalid(port_id, ENABLED_WARN))
2816 if (vlan_id_is_invalid(vlan_id))
2819 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2820 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD) {
2821 printf("Error, as QinQ has been enabled.\n");
2824 rte_eth_dev_info_get(port_id, &dev_info);
2825 if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) == 0) {
2826 printf("Error: vlan insert is not supported by port %d\n",
2831 tx_vlan_reset(port_id);
2832 ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
2833 ports[port_id].tx_vlan_id = vlan_id;
2837 tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer)
2840 struct rte_eth_dev_info dev_info;
2842 if (port_id_is_invalid(port_id, ENABLED_WARN))
2844 if (vlan_id_is_invalid(vlan_id))
2846 if (vlan_id_is_invalid(vlan_id_outer))
2849 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2850 if (!(vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)) {
2851 printf("Error, as QinQ hasn't been enabled.\n");
2854 rte_eth_dev_info_get(port_id, &dev_info);
2855 if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) == 0) {
2856 printf("Error: qinq insert not supported by port %d\n",
2861 tx_vlan_reset(port_id);
2862 ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_QINQ_INSERT;
2863 ports[port_id].tx_vlan_id = vlan_id;
2864 ports[port_id].tx_vlan_id_outer = vlan_id_outer;
2868 tx_vlan_reset(portid_t port_id)
2870 if (port_id_is_invalid(port_id, ENABLED_WARN))
2872 ports[port_id].dev_conf.txmode.offloads &=
2873 ~(DEV_TX_OFFLOAD_VLAN_INSERT |
2874 DEV_TX_OFFLOAD_QINQ_INSERT);
2875 ports[port_id].tx_vlan_id = 0;
2876 ports[port_id].tx_vlan_id_outer = 0;
2880 tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
2882 if (port_id_is_invalid(port_id, ENABLED_WARN))
2885 rte_eth_dev_set_vlan_pvid(port_id, vlan_id, on);
2889 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
2892 uint8_t existing_mapping_found = 0;
2894 if (port_id_is_invalid(port_id, ENABLED_WARN))
2897 if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
2900 if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
2901 printf("map_value not in required range 0..%d\n",
2902 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
2906 if (!is_rx) { /*then tx*/
2907 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
2908 if ((tx_queue_stats_mappings[i].port_id == port_id) &&
2909 (tx_queue_stats_mappings[i].queue_id == queue_id)) {
2910 tx_queue_stats_mappings[i].stats_counter_id = map_value;
2911 existing_mapping_found = 1;
2915 if (!existing_mapping_found) { /* A new additional mapping... */
2916 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
2917 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
2918 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
2919 nb_tx_queue_stats_mappings++;
2923 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
2924 if ((rx_queue_stats_mappings[i].port_id == port_id) &&
2925 (rx_queue_stats_mappings[i].queue_id == queue_id)) {
2926 rx_queue_stats_mappings[i].stats_counter_id = map_value;
2927 existing_mapping_found = 1;
2931 if (!existing_mapping_found) { /* A new additional mapping... */
2932 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
2933 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
2934 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
2935 nb_rx_queue_stats_mappings++;
2941 set_xstats_hide_zero(uint8_t on_off)
2943 xstats_hide_zero = on_off;
2947 print_fdir_mask(struct rte_eth_fdir_masks *mask)
2949 printf("\n vlan_tci: 0x%04x", rte_be_to_cpu_16(mask->vlan_tci_mask));
2951 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
2952 printf(", mac_addr: 0x%02x, tunnel_type: 0x%01x,"
2953 " tunnel_id: 0x%08x",
2954 mask->mac_addr_byte_mask, mask->tunnel_type_mask,
2955 rte_be_to_cpu_32(mask->tunnel_id_mask));
2956 else if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
2957 printf(", src_ipv4: 0x%08x, dst_ipv4: 0x%08x",
2958 rte_be_to_cpu_32(mask->ipv4_mask.src_ip),
2959 rte_be_to_cpu_32(mask->ipv4_mask.dst_ip));
2961 printf("\n src_port: 0x%04x, dst_port: 0x%04x",
2962 rte_be_to_cpu_16(mask->src_port_mask),
2963 rte_be_to_cpu_16(mask->dst_port_mask));
2965 printf("\n src_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
2966 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[0]),
2967 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[1]),
2968 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[2]),
2969 rte_be_to_cpu_32(mask->ipv6_mask.src_ip[3]));
2971 printf("\n dst_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
2972 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[0]),
2973 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[1]),
2974 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[2]),
2975 rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[3]));
2982 print_fdir_flex_payload(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
2984 struct rte_eth_flex_payload_cfg *cfg;
2987 for (i = 0; i < flex_conf->nb_payloads; i++) {
2988 cfg = &flex_conf->flex_set[i];
2989 if (cfg->type == RTE_ETH_RAW_PAYLOAD)
2991 else if (cfg->type == RTE_ETH_L2_PAYLOAD)
2992 printf("\n L2_PAYLOAD: ");
2993 else if (cfg->type == RTE_ETH_L3_PAYLOAD)
2994 printf("\n L3_PAYLOAD: ");
2995 else if (cfg->type == RTE_ETH_L4_PAYLOAD)
2996 printf("\n L4_PAYLOAD: ");
2998 printf("\n UNKNOWN PAYLOAD(%u): ", cfg->type);
2999 for (j = 0; j < num; j++)
3000 printf(" %-5u", cfg->src_offset[j]);
3006 flowtype_to_str(uint16_t flow_type)
3008 struct flow_type_info {
3014 static struct flow_type_info flowtype_str_table[] = {
3015 {"raw", RTE_ETH_FLOW_RAW},
3016 {"ipv4", RTE_ETH_FLOW_IPV4},
3017 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
3018 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
3019 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
3020 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
3021 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
3022 {"ipv6", RTE_ETH_FLOW_IPV6},
3023 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
3024 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
3025 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
3026 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
3027 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
3028 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
3029 {"port", RTE_ETH_FLOW_PORT},
3030 {"vxlan", RTE_ETH_FLOW_VXLAN},
3031 {"geneve", RTE_ETH_FLOW_GENEVE},
3032 {"nvgre", RTE_ETH_FLOW_NVGRE},
3033 {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
3036 for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
3037 if (flowtype_str_table[i].ftype == flow_type)
3038 return flowtype_str_table[i].str;
3045 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3047 struct rte_eth_fdir_flex_mask *mask;
3051 for (i = 0; i < flex_conf->nb_flexmasks; i++) {
3052 mask = &flex_conf->flex_mask[i];
3053 p = flowtype_to_str(mask->flow_type);
3054 printf("\n %s:\t", p ? p : "unknown");
3055 for (j = 0; j < num; j++)
3056 printf(" %02x", mask->mask[j]);
3062 print_fdir_flow_type(uint32_t flow_types_mask)
3067 for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
3068 if (!(flow_types_mask & (1 << i)))
3070 p = flowtype_to_str(i);
3080 fdir_get_infos(portid_t port_id)
3082 struct rte_eth_fdir_stats fdir_stat;
3083 struct rte_eth_fdir_info fdir_info;
3086 static const char *fdir_stats_border = "########################";
3088 if (port_id_is_invalid(port_id, ENABLED_WARN))
3090 ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
3092 printf("\n FDIR is not supported on port %-2d\n",
3097 memset(&fdir_info, 0, sizeof(fdir_info));
3098 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
3099 RTE_ETH_FILTER_INFO, &fdir_info);
3100 memset(&fdir_stat, 0, sizeof(fdir_stat));
3101 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
3102 RTE_ETH_FILTER_STATS, &fdir_stat);
3103 printf("\n %s FDIR infos for port %-2d %s\n",
3104 fdir_stats_border, port_id, fdir_stats_border);
3106 if (fdir_info.mode == RTE_FDIR_MODE_PERFECT)
3107 printf(" PERFECT\n");
3108 else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN)
3109 printf(" PERFECT-MAC-VLAN\n");
3110 else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3111 printf(" PERFECT-TUNNEL\n");
3112 else if (fdir_info.mode == RTE_FDIR_MODE_SIGNATURE)
3113 printf(" SIGNATURE\n");
3115 printf(" DISABLE\n");
3116 if (fdir_info.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN
3117 && fdir_info.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) {
3118 printf(" SUPPORTED FLOW TYPE: ");
3119 print_fdir_flow_type(fdir_info.flow_types_mask[0]);
3121 printf(" FLEX PAYLOAD INFO:\n");
3122 printf(" max_len: %-10"PRIu32" payload_limit: %-10"PRIu32"\n"
3123 " payload_unit: %-10"PRIu32" payload_seg: %-10"PRIu32"\n"
3124 " bitmask_unit: %-10"PRIu32" bitmask_num: %-10"PRIu32"\n",
3125 fdir_info.max_flexpayload, fdir_info.flex_payload_limit,
3126 fdir_info.flex_payload_unit,
3127 fdir_info.max_flex_payload_segment_num,
3128 fdir_info.flex_bitmask_unit, fdir_info.max_flex_bitmask_num);
3130 print_fdir_mask(&fdir_info.mask);
3131 if (fdir_info.flex_conf.nb_payloads > 0) {
3132 printf(" FLEX PAYLOAD SRC OFFSET:");
3133 print_fdir_flex_payload(&fdir_info.flex_conf, fdir_info.max_flexpayload);
3135 if (fdir_info.flex_conf.nb_flexmasks > 0) {
3136 printf(" FLEX MASK CFG:");
3137 print_fdir_flex_mask(&fdir_info.flex_conf, fdir_info.max_flexpayload);
3139 printf(" guarant_count: %-10"PRIu32" best_count: %"PRIu32"\n",
3140 fdir_stat.guarant_cnt, fdir_stat.best_cnt);
3141 printf(" guarant_space: %-10"PRIu32" best_space: %"PRIu32"\n",
3142 fdir_info.guarant_spc, fdir_info.best_spc);
3143 printf(" collision: %-10"PRIu32" free: %"PRIu32"\n"
3144 " maxhash: %-10"PRIu32" maxlen: %"PRIu32"\n"
3145 " add: %-10"PRIu64" remove: %"PRIu64"\n"
3146 " f_add: %-10"PRIu64" f_remove: %"PRIu64"\n",
3147 fdir_stat.collision, fdir_stat.free,
3148 fdir_stat.maxhash, fdir_stat.maxlen,
3149 fdir_stat.add, fdir_stat.remove,
3150 fdir_stat.f_add, fdir_stat.f_remove);
3151 printf(" %s############################%s\n",
3152 fdir_stats_border, fdir_stats_border);
3156 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
3158 struct rte_port *port;
3159 struct rte_eth_fdir_flex_conf *flex_conf;
3162 port = &ports[port_id];
3163 flex_conf = &port->dev_conf.fdir_conf.flex_conf;
3164 for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
3165 if (cfg->flow_type == flex_conf->flex_mask[i].flow_type) {
3170 if (i >= RTE_ETH_FLOW_MAX) {
3171 if (flex_conf->nb_flexmasks < RTE_DIM(flex_conf->flex_mask)) {
3172 idx = flex_conf->nb_flexmasks;
3173 flex_conf->nb_flexmasks++;
3175 printf("The flex mask table is full. Can not set flex"
3176 " mask for flow_type(%u).", cfg->flow_type);
3180 rte_memcpy(&flex_conf->flex_mask[idx],
3182 sizeof(struct rte_eth_fdir_flex_mask));
3186 fdir_set_flex_payload(portid_t port_id, struct rte_eth_flex_payload_cfg *cfg)
3188 struct rte_port *port;
3189 struct rte_eth_fdir_flex_conf *flex_conf;
3192 port = &ports[port_id];
3193 flex_conf = &port->dev_conf.fdir_conf.flex_conf;
3194 for (i = 0; i < RTE_ETH_PAYLOAD_MAX; i++) {
3195 if (cfg->type == flex_conf->flex_set[i].type) {
3200 if (i >= RTE_ETH_PAYLOAD_MAX) {
3201 if (flex_conf->nb_payloads < RTE_DIM(flex_conf->flex_set)) {
3202 idx = flex_conf->nb_payloads;
3203 flex_conf->nb_payloads++;
3205 printf("The flex payload table is full. Can not set"
3206 " flex payload for type(%u).", cfg->type);
3210 rte_memcpy(&flex_conf->flex_set[idx],
3212 sizeof(struct rte_eth_flex_payload_cfg));
3217 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
3219 #ifdef RTE_LIBRTE_IXGBE_PMD
3223 diag = rte_pmd_ixgbe_set_vf_rx(port_id, vf, on);
3225 diag = rte_pmd_ixgbe_set_vf_tx(port_id, vf, on);
3229 printf("rte_pmd_ixgbe_set_vf_%s for port_id=%d failed diag=%d\n",
3230 is_rx ? "rx" : "tx", port_id, diag);
3233 printf("VF %s setting not supported for port %d\n",
3234 is_rx ? "Rx" : "Tx", port_id);
3240 set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate)
3243 struct rte_eth_link link;
3245 if (port_id_is_invalid(port_id, ENABLED_WARN))
3247 rte_eth_link_get_nowait(port_id, &link);
3248 if (rate > link.link_speed) {
3249 printf("Invalid rate value:%u bigger than link speed: %u\n",
3250 rate, link.link_speed);
3253 diag = rte_eth_set_queue_rate_limit(port_id, queue_idx, rate);
3256 printf("rte_eth_set_queue_rate_limit for port_id=%d failed diag=%d\n",
3262 set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
3264 int diag = -ENOTSUP;
3268 RTE_SET_USED(q_msk);
3270 #ifdef RTE_LIBRTE_IXGBE_PMD
3271 if (diag == -ENOTSUP)
3272 diag = rte_pmd_ixgbe_set_vf_rate_limit(port_id, vf, rate,
3275 #ifdef RTE_LIBRTE_BNXT_PMD
3276 if (diag == -ENOTSUP)
3277 diag = rte_pmd_bnxt_set_vf_rate_limit(port_id, vf, rate, q_msk);
3282 printf("set_vf_rate_limit for port_id=%d failed diag=%d\n",
3288 * Functions to manage the set of filtered Multicast MAC addresses.
3290 * A pool of filtered multicast MAC addresses is associated with each port.
3291 * The pool is allocated in chunks of MCAST_POOL_INC multicast addresses.
3292 * The address of the pool and the number of valid multicast MAC addresses
3293 * recorded in the pool are stored in the fields "mc_addr_pool" and
3294 * "mc_addr_nb" of the "rte_port" data structure.
3296 * The function "rte_eth_dev_set_mc_addr_list" of the PMDs API imposes
3297 * to be supplied a contiguous array of multicast MAC addresses.
3298 * To comply with this constraint, the set of multicast addresses recorded
3299 * into the pool are systematically compacted at the beginning of the pool.
3300 * Hence, when a multicast address is removed from the pool, all following
3301 * addresses, if any, are copied back to keep the set contiguous.
3303 #define MCAST_POOL_INC 32
3306 mcast_addr_pool_extend(struct rte_port *port)
3308 struct ether_addr *mc_pool;
3309 size_t mc_pool_size;
3312 * If a free entry is available at the end of the pool, just
3313 * increment the number of recorded multicast addresses.
3315 if ((port->mc_addr_nb % MCAST_POOL_INC) != 0) {
3321 * [re]allocate a pool with MCAST_POOL_INC more entries.
3322 * The previous test guarantees that port->mc_addr_nb is a multiple
3323 * of MCAST_POOL_INC.
3325 mc_pool_size = sizeof(struct ether_addr) * (port->mc_addr_nb +
3327 mc_pool = (struct ether_addr *) realloc(port->mc_addr_pool,
3329 if (mc_pool == NULL) {
3330 printf("allocation of pool of %u multicast addresses failed\n",
3331 port->mc_addr_nb + MCAST_POOL_INC);
3335 port->mc_addr_pool = mc_pool;
3342 mcast_addr_pool_remove(struct rte_port *port, uint32_t addr_idx)
3345 if (addr_idx == port->mc_addr_nb) {
3346 /* No need to recompact the set of multicast addressses. */
3347 if (port->mc_addr_nb == 0) {
3348 /* free the pool of multicast addresses. */
3349 free(port->mc_addr_pool);
3350 port->mc_addr_pool = NULL;
3354 memmove(&port->mc_addr_pool[addr_idx],
3355 &port->mc_addr_pool[addr_idx + 1],
3356 sizeof(struct ether_addr) * (port->mc_addr_nb - addr_idx));
3360 eth_port_multicast_addr_list_set(portid_t port_id)
3362 struct rte_port *port;
3365 port = &ports[port_id];
3366 diag = rte_eth_dev_set_mc_addr_list(port_id, port->mc_addr_pool,
3370 printf("rte_eth_dev_set_mc_addr_list(port=%d, nb=%u) failed. diag=%d\n",
3371 port->mc_addr_nb, port_id, -diag);
3375 mcast_addr_add(portid_t port_id, struct ether_addr *mc_addr)
3377 struct rte_port *port;
3380 if (port_id_is_invalid(port_id, ENABLED_WARN))
3383 port = &ports[port_id];
3386 * Check that the added multicast MAC address is not already recorded
3387 * in the pool of multicast addresses.
3389 for (i = 0; i < port->mc_addr_nb; i++) {
3390 if (is_same_ether_addr(mc_addr, &port->mc_addr_pool[i])) {
3391 printf("multicast address already filtered by port\n");
3396 if (mcast_addr_pool_extend(port) != 0)
3398 ether_addr_copy(mc_addr, &port->mc_addr_pool[i]);
3399 eth_port_multicast_addr_list_set(port_id);
3403 mcast_addr_remove(portid_t port_id, struct ether_addr *mc_addr)
3405 struct rte_port *port;
3408 if (port_id_is_invalid(port_id, ENABLED_WARN))
3411 port = &ports[port_id];
3414 * Search the pool of multicast MAC addresses for the removed address.
3416 for (i = 0; i < port->mc_addr_nb; i++) {
3417 if (is_same_ether_addr(mc_addr, &port->mc_addr_pool[i]))
3420 if (i == port->mc_addr_nb) {
3421 printf("multicast address not filtered by port %d\n", port_id);
3425 mcast_addr_pool_remove(port, i);
3426 eth_port_multicast_addr_list_set(port_id);
3430 port_dcb_info_display(portid_t port_id)
3432 struct rte_eth_dcb_info dcb_info;
3435 static const char *border = "================";
3437 if (port_id_is_invalid(port_id, ENABLED_WARN))
3440 ret = rte_eth_dev_get_dcb_info(port_id, &dcb_info);
3442 printf("\n Failed to get dcb infos on port %-2d\n",
3446 printf("\n %s DCB infos for port %-2d %s\n", border, port_id, border);
3447 printf(" TC NUMBER: %d\n", dcb_info.nb_tcs);
3449 for (i = 0; i < dcb_info.nb_tcs; i++)
3451 printf("\n Priority : ");
3452 for (i = 0; i < dcb_info.nb_tcs; i++)
3453 printf("\t%4d", dcb_info.prio_tc[i]);
3454 printf("\n BW percent :");
3455 for (i = 0; i < dcb_info.nb_tcs; i++)
3456 printf("\t%4d%%", dcb_info.tc_bws[i]);
3457 printf("\n RXQ base : ");
3458 for (i = 0; i < dcb_info.nb_tcs; i++)
3459 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].base);
3460 printf("\n RXQ number :");
3461 for (i = 0; i < dcb_info.nb_tcs; i++)
3462 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].nb_queue);
3463 printf("\n TXQ base : ");
3464 for (i = 0; i < dcb_info.nb_tcs; i++)
3465 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].base);
3466 printf("\n TXQ number :");
3467 for (i = 0; i < dcb_info.nb_tcs; i++)
3468 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].nb_queue);
3473 open_file(const char *file_path, uint32_t *size)
3475 int fd = open(file_path, O_RDONLY);
3477 uint8_t *buf = NULL;
3485 printf("%s: Failed to open %s\n", __func__, file_path);
3489 if ((fstat(fd, &st_buf) != 0) || (!S_ISREG(st_buf.st_mode))) {
3491 printf("%s: File operations failed\n", __func__);
3495 pkg_size = st_buf.st_size;
3498 printf("%s: File operations failed\n", __func__);
3502 buf = (uint8_t *)malloc(pkg_size);
3505 printf("%s: Failed to malloc memory\n", __func__);
3509 ret = read(fd, buf, pkg_size);
3512 printf("%s: File read operation failed\n", __func__);
3526 save_file(const char *file_path, uint8_t *buf, uint32_t size)
3528 FILE *fh = fopen(file_path, "wb");
3531 printf("%s: Failed to open %s\n", __func__, file_path);
3535 if (fwrite(buf, 1, size, fh) != size) {
3537 printf("%s: File write operation failed\n", __func__);
3547 close_file(uint8_t *buf)
3558 port_queue_region_info_display(portid_t port_id, void *buf)
3560 #ifdef RTE_LIBRTE_I40E_PMD
3562 struct rte_pmd_i40e_queue_regions *info =
3563 (struct rte_pmd_i40e_queue_regions *)buf;
3564 static const char *queue_region_info_stats_border = "-------";
3566 if (!info->queue_region_number)
3567 printf("there is no region has been set before");
3569 printf("\n %s All queue region info for port=%2d %s",
3570 queue_region_info_stats_border, port_id,
3571 queue_region_info_stats_border);
3572 printf("\n queue_region_number: %-14u \n",
3573 info->queue_region_number);
3575 for (i = 0; i < info->queue_region_number; i++) {
3576 printf("\n region_id: %-14u queue_number: %-14u "
3577 "queue_start_index: %-14u \n",
3578 info->region[i].region_id,
3579 info->region[i].queue_num,
3580 info->region[i].queue_start_index);
3582 printf(" user_priority_num is %-14u :",
3583 info->region[i].user_priority_num);
3584 for (j = 0; j < info->region[i].user_priority_num; j++)
3585 printf(" %-14u ", info->region[i].user_priority[j]);
3587 printf("\n flowtype_num is %-14u :",
3588 info->region[i].flowtype_num);
3589 for (j = 0; j < info->region[i].flowtype_num; j++)
3590 printf(" %-14u ", info->region[i].hw_flowtype[j]);
3593 RTE_SET_USED(port_id);