app/testpmd: enable per queue configure
[dpdk.git] / app / test-pmd / config.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation.
3  * Copyright 2013-2014 6WIND S.A.
4  */
5
6 #include <stdarg.h>
7 #include <errno.h>
8 #include <stdio.h>
9 #include <string.h>
10 #include <stdint.h>
11 #include <inttypes.h>
12
13 #include <sys/queue.h>
14 #include <sys/types.h>
15 #include <sys/stat.h>
16 #include <fcntl.h>
17 #include <unistd.h>
18
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
21 #include <rte_debug.h>
22 #include <rte_log.h>
23 #include <rte_memory.h>
24 #include <rte_memcpy.h>
25 #include <rte_memzone.h>
26 #include <rte_launch.h>
27 #include <rte_eal.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>
33 #include <rte_mbuf.h>
34 #include <rte_interrupts.h>
35 #include <rte_pci.h>
36 #include <rte_ether.h>
37 #include <rte_ethdev.h>
38 #include <rte_string_fns.h>
39 #include <rte_cycles.h>
40 #include <rte_flow.h>
41 #include <rte_errno.h>
42 #ifdef RTE_LIBRTE_IXGBE_PMD
43 #include <rte_pmd_ixgbe.h>
44 #endif
45 #ifdef RTE_LIBRTE_I40E_PMD
46 #include <rte_pmd_i40e.h>
47 #endif
48 #ifdef RTE_LIBRTE_BNXT_PMD
49 #include <rte_pmd_bnxt.h>
50 #endif
51 #include <rte_gro.h>
52 #include <cmdline_parse_etheraddr.h>
53
54 #include "testpmd.h"
55
56 static char *flowtype_to_str(uint16_t flow_type);
57
58 static const struct {
59         enum tx_pkt_split split;
60         const char *name;
61 } tx_split_name[] = {
62         {
63                 .split = TX_PKT_SPLIT_OFF,
64                 .name = "off",
65         },
66         {
67                 .split = TX_PKT_SPLIT_ON,
68                 .name = "on",
69         },
70         {
71                 .split = TX_PKT_SPLIT_RND,
72                 .name = "rand",
73         },
74 };
75
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 },
97         { "ip", ETH_RSS_IP },
98         { "udp", ETH_RSS_UDP },
99         { "tcp", ETH_RSS_TCP },
100         { "sctp", ETH_RSS_SCTP },
101         { "tunnel", ETH_RSS_TUNNEL },
102         { NULL, 0 },
103 };
104
105 static void
106 print_ethaddr(const char *name, struct ether_addr *eth_addr)
107 {
108         char buf[ETHER_ADDR_FMT_SIZE];
109         ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
110         printf("%s%s", name, buf);
111 }
112
113 void
114 nic_stats_display(portid_t port_id)
115 {
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];
123         uint8_t i;
124         portid_t pid;
125
126         static const char *nic_stats_border = "########################";
127
128         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
129                 printf("Valid port range is [0");
130                 RTE_ETH_FOREACH_DEV(pid)
131                         printf(", %d", pid);
132                 printf("]\n");
133                 return;
134         }
135         rte_eth_stats_get(port_id, &stats);
136         printf("\n  %s NIC statistics for port %-2d %s\n",
137                nic_stats_border, port_id, nic_stats_border);
138
139         if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
140                 printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
141                        "%-"PRIu64"\n",
142                        stats.ipackets, stats.imissed, stats.ibytes);
143                 printf("  RX-errors: %-"PRIu64"\n", stats.ierrors);
144                 printf("  RX-nombuf:  %-10"PRIu64"\n",
145                        stats.rx_nombuf);
146                 printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
147                        "%-"PRIu64"\n",
148                        stats.opackets, stats.oerrors, stats.obytes);
149         }
150         else {
151                 printf("  RX-packets:              %10"PRIu64"    RX-errors: %10"PRIu64
152                        "    RX-bytes: %10"PRIu64"\n",
153                        stats.ipackets, stats.ierrors, stats.ibytes);
154                 printf("  RX-errors:  %10"PRIu64"\n", stats.ierrors);
155                 printf("  RX-nombuf:               %10"PRIu64"\n",
156                        stats.rx_nombuf);
157                 printf("  TX-packets:              %10"PRIu64"    TX-errors: %10"PRIu64
158                        "    TX-bytes: %10"PRIu64"\n",
159                        stats.opackets, stats.oerrors, stats.obytes);
160         }
161
162         if (port->rx_queue_stats_mapping_enabled) {
163                 printf("\n");
164                 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
165                         printf("  Stats reg %2d RX-packets: %10"PRIu64
166                                "    RX-errors: %10"PRIu64
167                                "    RX-bytes: %10"PRIu64"\n",
168                                i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
169                 }
170         }
171         if (port->tx_queue_stats_mapping_enabled) {
172                 printf("\n");
173                 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
174                         printf("  Stats reg %2d TX-packets: %10"PRIu64
175                                "                             TX-bytes: %10"PRIu64"\n",
176                                i, stats.q_opackets[i], stats.q_obytes[i]);
177                 }
178         }
179
180         diff_cycles = prev_cycles[port_id];
181         prev_cycles[port_id] = rte_rdtsc();
182         if (diff_cycles > 0)
183                 diff_cycles = prev_cycles[port_id] - diff_cycles;
184
185         diff_pkts_rx = (stats.ipackets > prev_pkts_rx[port_id]) ?
186                 (stats.ipackets - prev_pkts_rx[port_id]) : 0;
187         diff_pkts_tx = (stats.opackets > prev_pkts_tx[port_id]) ?
188                 (stats.opackets - prev_pkts_tx[port_id]) : 0;
189         prev_pkts_rx[port_id] = stats.ipackets;
190         prev_pkts_tx[port_id] = stats.opackets;
191         mpps_rx = diff_cycles > 0 ?
192                 diff_pkts_rx * rte_get_tsc_hz() / diff_cycles : 0;
193         mpps_tx = diff_cycles > 0 ?
194                 diff_pkts_tx * rte_get_tsc_hz() / diff_cycles : 0;
195         printf("\n  Throughput (since last show)\n");
196         printf("  Rx-pps: %12"PRIu64"\n  Tx-pps: %12"PRIu64"\n",
197                         mpps_rx, mpps_tx);
198
199         printf("  %s############################%s\n",
200                nic_stats_border, nic_stats_border);
201 }
202
203 void
204 nic_stats_clear(portid_t port_id)
205 {
206         portid_t pid;
207
208         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
209                 printf("Valid port range is [0");
210                 RTE_ETH_FOREACH_DEV(pid)
211                         printf(", %d", pid);
212                 printf("]\n");
213                 return;
214         }
215         rte_eth_stats_reset(port_id);
216         printf("\n  NIC statistics for port %d cleared\n", port_id);
217 }
218
219 void
220 nic_xstats_display(portid_t port_id)
221 {
222         struct rte_eth_xstat *xstats;
223         int cnt_xstats, idx_xstat;
224         struct rte_eth_xstat_name *xstats_names;
225
226         printf("###### NIC extended statistics for port %-2d\n", port_id);
227         if (!rte_eth_dev_is_valid_port(port_id)) {
228                 printf("Error: Invalid port number %i\n", port_id);
229                 return;
230         }
231
232         /* Get count */
233         cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
234         if (cnt_xstats  < 0) {
235                 printf("Error: Cannot get count of xstats\n");
236                 return;
237         }
238
239         /* Get id-name lookup table */
240         xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * cnt_xstats);
241         if (xstats_names == NULL) {
242                 printf("Cannot allocate memory for xstats lookup\n");
243                 return;
244         }
245         if (cnt_xstats != rte_eth_xstats_get_names(
246                         port_id, xstats_names, cnt_xstats)) {
247                 printf("Error: Cannot get xstats lookup\n");
248                 free(xstats_names);
249                 return;
250         }
251
252         /* Get stats themselves */
253         xstats = malloc(sizeof(struct rte_eth_xstat) * cnt_xstats);
254         if (xstats == NULL) {
255                 printf("Cannot allocate memory for xstats\n");
256                 free(xstats_names);
257                 return;
258         }
259         if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
260                 printf("Error: Unable to get xstats\n");
261                 free(xstats_names);
262                 free(xstats);
263                 return;
264         }
265
266         /* Display xstats */
267         for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
268                 if (xstats_hide_zero && !xstats[idx_xstat].value)
269                         continue;
270                 printf("%s: %"PRIu64"\n",
271                         xstats_names[idx_xstat].name,
272                         xstats[idx_xstat].value);
273         }
274         free(xstats_names);
275         free(xstats);
276 }
277
278 void
279 nic_xstats_clear(portid_t port_id)
280 {
281         rte_eth_xstats_reset(port_id);
282 }
283
284 void
285 nic_stats_mapping_display(portid_t port_id)
286 {
287         struct rte_port *port = &ports[port_id];
288         uint16_t i;
289         portid_t pid;
290
291         static const char *nic_stats_mapping_border = "########################";
292
293         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
294                 printf("Valid port range is [0");
295                 RTE_ETH_FOREACH_DEV(pid)
296                         printf(", %d", pid);
297                 printf("]\n");
298                 return;
299         }
300
301         if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
302                 printf("Port id %d - either does not support queue statistic mapping or"
303                        " no queue statistic mapping set\n", port_id);
304                 return;
305         }
306
307         printf("\n  %s NIC statistics mapping for port %-2d %s\n",
308                nic_stats_mapping_border, port_id, nic_stats_mapping_border);
309
310         if (port->rx_queue_stats_mapping_enabled) {
311                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
312                         if (rx_queue_stats_mappings[i].port_id == port_id) {
313                                 printf("  RX-queue %2d mapped to Stats Reg %2d\n",
314                                        rx_queue_stats_mappings[i].queue_id,
315                                        rx_queue_stats_mappings[i].stats_counter_id);
316                         }
317                 }
318                 printf("\n");
319         }
320
321
322         if (port->tx_queue_stats_mapping_enabled) {
323                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
324                         if (tx_queue_stats_mappings[i].port_id == port_id) {
325                                 printf("  TX-queue %2d mapped to Stats Reg %2d\n",
326                                        tx_queue_stats_mappings[i].queue_id,
327                                        tx_queue_stats_mappings[i].stats_counter_id);
328                         }
329                 }
330         }
331
332         printf("  %s####################################%s\n",
333                nic_stats_mapping_border, nic_stats_mapping_border);
334 }
335
336 void
337 rx_queue_infos_display(portid_t port_id, uint16_t queue_id)
338 {
339         struct rte_eth_rxq_info qinfo;
340         int32_t rc;
341         static const char *info_border = "*********************";
342
343         rc = rte_eth_rx_queue_info_get(port_id, queue_id, &qinfo);
344         if (rc != 0) {
345                 printf("Failed to retrieve information for port: %u, "
346                         "RX queue: %hu\nerror desc: %s(%d)\n",
347                         port_id, queue_id, strerror(-rc), rc);
348                 return;
349         }
350
351         printf("\n%s Infos for port %-2u, RX queue %-2u %s",
352                info_border, port_id, queue_id, info_border);
353
354         printf("\nMempool: %s", (qinfo.mp == NULL) ? "NULL" : qinfo.mp->name);
355         printf("\nRX prefetch threshold: %hhu", qinfo.conf.rx_thresh.pthresh);
356         printf("\nRX host threshold: %hhu", qinfo.conf.rx_thresh.hthresh);
357         printf("\nRX writeback threshold: %hhu", qinfo.conf.rx_thresh.wthresh);
358         printf("\nRX free threshold: %hu", qinfo.conf.rx_free_thresh);
359         printf("\nRX drop packets: %s",
360                 (qinfo.conf.rx_drop_en != 0) ? "on" : "off");
361         printf("\nRX deferred start: %s",
362                 (qinfo.conf.rx_deferred_start != 0) ? "on" : "off");
363         printf("\nRX scattered packets: %s",
364                 (qinfo.scattered_rx != 0) ? "on" : "off");
365         printf("\nNumber of RXDs: %hu", qinfo.nb_desc);
366         printf("\n");
367 }
368
369 void
370 tx_queue_infos_display(portid_t port_id, uint16_t queue_id)
371 {
372         struct rte_eth_txq_info qinfo;
373         int32_t rc;
374         static const char *info_border = "*********************";
375
376         rc = rte_eth_tx_queue_info_get(port_id, queue_id, &qinfo);
377         if (rc != 0) {
378                 printf("Failed to retrieve information for port: %u, "
379                         "TX queue: %hu\nerror desc: %s(%d)\n",
380                         port_id, queue_id, strerror(-rc), rc);
381                 return;
382         }
383
384         printf("\n%s Infos for port %-2u, TX queue %-2u %s",
385                info_border, port_id, queue_id, info_border);
386
387         printf("\nTX prefetch threshold: %hhu", qinfo.conf.tx_thresh.pthresh);
388         printf("\nTX host threshold: %hhu", qinfo.conf.tx_thresh.hthresh);
389         printf("\nTX writeback threshold: %hhu", qinfo.conf.tx_thresh.wthresh);
390         printf("\nTX RS threshold: %hu", qinfo.conf.tx_rs_thresh);
391         printf("\nTX free threshold: %hu", qinfo.conf.tx_free_thresh);
392         printf("\nTX deferred start: %s",
393                 (qinfo.conf.tx_deferred_start != 0) ? "on" : "off");
394         printf("\nNumber of TXDs: %hu", qinfo.nb_desc);
395         printf("\n");
396 }
397
398 void
399 port_infos_display(portid_t port_id)
400 {
401         struct rte_port *port;
402         struct ether_addr mac_addr;
403         struct rte_eth_link link;
404         struct rte_eth_dev_info dev_info;
405         int vlan_offload;
406         struct rte_mempool * mp;
407         static const char *info_border = "*********************";
408         portid_t pid;
409         uint16_t mtu;
410
411         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
412                 printf("Valid port range is [0");
413                 RTE_ETH_FOREACH_DEV(pid)
414                         printf(", %d", pid);
415                 printf("]\n");
416                 return;
417         }
418         port = &ports[port_id];
419         rte_eth_link_get_nowait(port_id, &link);
420         memset(&dev_info, 0, sizeof(dev_info));
421         rte_eth_dev_info_get(port_id, &dev_info);
422         printf("\n%s Infos for port %-2d %s\n",
423                info_border, port_id, info_border);
424         rte_eth_macaddr_get(port_id, &mac_addr);
425         print_ethaddr("MAC address: ", &mac_addr);
426         printf("\nDriver name: %s", dev_info.driver_name);
427         printf("\nConnect to socket: %u", port->socket_id);
428
429         if (port_numa[port_id] != NUMA_NO_CONFIG) {
430                 mp = mbuf_pool_find(port_numa[port_id]);
431                 if (mp)
432                         printf("\nmemory allocation on the socket: %d",
433                                                         port_numa[port_id]);
434         } else
435                 printf("\nmemory allocation on the socket: %u",port->socket_id);
436
437         printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
438         printf("Link speed: %u Mbps\n", (unsigned) link.link_speed);
439         printf("Link duplex: %s\n", (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
440                ("full-duplex") : ("half-duplex"));
441
442         if (!rte_eth_dev_get_mtu(port_id, &mtu))
443                 printf("MTU: %u\n", mtu);
444
445         printf("Promiscuous mode: %s\n",
446                rte_eth_promiscuous_get(port_id) ? "enabled" : "disabled");
447         printf("Allmulticast mode: %s\n",
448                rte_eth_allmulticast_get(port_id) ? "enabled" : "disabled");
449         printf("Maximum number of MAC addresses: %u\n",
450                (unsigned int)(port->dev_info.max_mac_addrs));
451         printf("Maximum number of MAC addresses of hash filtering: %u\n",
452                (unsigned int)(port->dev_info.max_hash_mac_addrs));
453
454         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
455         if (vlan_offload >= 0){
456                 printf("VLAN offload: \n");
457                 if (vlan_offload & ETH_VLAN_STRIP_OFFLOAD)
458                         printf("  strip on \n");
459                 else
460                         printf("  strip off \n");
461
462                 if (vlan_offload & ETH_VLAN_FILTER_OFFLOAD)
463                         printf("  filter on \n");
464                 else
465                         printf("  filter off \n");
466
467                 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)
468                         printf("  qinq(extend) on \n");
469                 else
470                         printf("  qinq(extend) off \n");
471         }
472
473         if (dev_info.hash_key_size > 0)
474                 printf("Hash key size in bytes: %u\n", dev_info.hash_key_size);
475         if (dev_info.reta_size > 0)
476                 printf("Redirection table size: %u\n", dev_info.reta_size);
477         if (!dev_info.flow_type_rss_offloads)
478                 printf("No flow type is supported.\n");
479         else {
480                 uint16_t i;
481                 char *p;
482
483                 printf("Supported flow types:\n");
484                 for (i = RTE_ETH_FLOW_UNKNOWN + 1;
485                      i < sizeof(dev_info.flow_type_rss_offloads) * CHAR_BIT; i++) {
486                         if (!(dev_info.flow_type_rss_offloads & (1ULL << i)))
487                                 continue;
488                         p = flowtype_to_str(i);
489                         if (p)
490                                 printf("  %s\n", p);
491                         else
492                                 printf("  user defined %d\n", i);
493                 }
494         }
495
496         printf("Minimum size of RX buffer: %u\n", dev_info.min_rx_bufsize);
497         printf("Maximum configurable length of RX packet: %u\n",
498                 dev_info.max_rx_pktlen);
499         if (dev_info.max_vfs)
500                 printf("Maximum number of VFs: %u\n", dev_info.max_vfs);
501         if (dev_info.max_vmdq_pools)
502                 printf("Maximum number of VMDq pools: %u\n",
503                         dev_info.max_vmdq_pools);
504
505         printf("Current number of RX queues: %u\n", dev_info.nb_rx_queues);
506         printf("Max possible RX queues: %u\n", dev_info.max_rx_queues);
507         printf("Max possible number of RXDs per queue: %hu\n",
508                 dev_info.rx_desc_lim.nb_max);
509         printf("Min possible number of RXDs per queue: %hu\n",
510                 dev_info.rx_desc_lim.nb_min);
511         printf("RXDs number alignment: %hu\n", dev_info.rx_desc_lim.nb_align);
512
513         printf("Current number of TX queues: %u\n", dev_info.nb_tx_queues);
514         printf("Max possible TX queues: %u\n", dev_info.max_tx_queues);
515         printf("Max possible number of TXDs per queue: %hu\n",
516                 dev_info.tx_desc_lim.nb_max);
517         printf("Min possible number of TXDs per queue: %hu\n",
518                 dev_info.tx_desc_lim.nb_min);
519         printf("TXDs number alignment: %hu\n", dev_info.tx_desc_lim.nb_align);
520 }
521
522 void
523 port_offload_cap_display(portid_t port_id)
524 {
525         struct rte_eth_dev_info dev_info;
526         static const char *info_border = "************";
527
528         if (port_id_is_invalid(port_id, ENABLED_WARN))
529                 return;
530
531         rte_eth_dev_info_get(port_id, &dev_info);
532
533         printf("\n%s Port %d supported offload features: %s\n",
534                 info_border, port_id, info_border);
535
536         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_VLAN_STRIP) {
537                 printf("VLAN stripped:                 ");
538                 if (ports[port_id].dev_conf.rxmode.offloads &
539                     DEV_RX_OFFLOAD_VLAN_STRIP)
540                         printf("on\n");
541                 else
542                         printf("off\n");
543         }
544
545         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_QINQ_STRIP) {
546                 printf("Double VLANs stripped:         ");
547                 if (ports[port_id].dev_conf.rxmode.offloads &
548                     DEV_RX_OFFLOAD_VLAN_EXTEND)
549                         printf("on\n");
550                 else
551                         printf("off\n");
552         }
553
554         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM) {
555                 printf("RX IPv4 checksum:              ");
556                 if (ports[port_id].dev_conf.rxmode.offloads &
557                     DEV_RX_OFFLOAD_IPV4_CKSUM)
558                         printf("on\n");
559                 else
560                         printf("off\n");
561         }
562
563         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_UDP_CKSUM) {
564                 printf("RX UDP checksum:               ");
565                 if (ports[port_id].dev_conf.rxmode.offloads &
566                     DEV_RX_OFFLOAD_UDP_CKSUM)
567                         printf("on\n");
568                 else
569                         printf("off\n");
570         }
571
572         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_CKSUM) {
573                 printf("RX TCP checksum:               ");
574                 if (ports[port_id].dev_conf.rxmode.offloads &
575                     DEV_RX_OFFLOAD_TCP_CKSUM)
576                         printf("on\n");
577                 else
578                         printf("off\n");
579         }
580
581         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM) {
582                 printf("RX Outer IPv4 checksum:               ");
583                 if (ports[port_id].dev_conf.rxmode.offloads &
584                     DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM)
585                         printf("on\n");
586                 else
587                         printf("off\n");
588         }
589
590         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_LRO) {
591                 printf("Large receive offload:         ");
592                 if (ports[port_id].dev_conf.rxmode.offloads &
593                     DEV_RX_OFFLOAD_TCP_LRO)
594                         printf("on\n");
595                 else
596                         printf("off\n");
597         }
598
599         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) {
600                 printf("VLAN insert:                   ");
601                 if (ports[port_id].dev_conf.txmode.offloads &
602                     DEV_TX_OFFLOAD_VLAN_INSERT)
603                         printf("on\n");
604                 else
605                         printf("off\n");
606         }
607
608         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TIMESTAMP) {
609                 printf("HW timestamp:                  ");
610                 if (ports[port_id].dev_conf.rxmode.offloads &
611                     DEV_RX_OFFLOAD_TIMESTAMP)
612                         printf("on\n");
613                 else
614                         printf("off\n");
615         }
616
617         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) {
618                 printf("Double VLANs insert:           ");
619                 if (ports[port_id].dev_conf.txmode.offloads &
620                     DEV_TX_OFFLOAD_QINQ_INSERT)
621                         printf("on\n");
622                 else
623                         printf("off\n");
624         }
625
626         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) {
627                 printf("TX IPv4 checksum:              ");
628                 if (ports[port_id].dev_conf.txmode.offloads &
629                     DEV_TX_OFFLOAD_IPV4_CKSUM)
630                         printf("on\n");
631                 else
632                         printf("off\n");
633         }
634
635         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) {
636                 printf("TX UDP checksum:               ");
637                 if (ports[port_id].dev_conf.txmode.offloads &
638                     DEV_TX_OFFLOAD_UDP_CKSUM)
639                         printf("on\n");
640                 else
641                         printf("off\n");
642         }
643
644         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) {
645                 printf("TX TCP checksum:               ");
646                 if (ports[port_id].dev_conf.txmode.offloads &
647                     DEV_TX_OFFLOAD_TCP_CKSUM)
648                         printf("on\n");
649                 else
650                         printf("off\n");
651         }
652
653         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) {
654                 printf("TX SCTP checksum:              ");
655                 if (ports[port_id].dev_conf.txmode.offloads &
656                     DEV_TX_OFFLOAD_SCTP_CKSUM)
657                         printf("on\n");
658                 else
659                         printf("off\n");
660         }
661
662         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) {
663                 printf("TX Outer IPv4 checksum:        ");
664                 if (ports[port_id].dev_conf.txmode.offloads &
665                     DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)
666                         printf("on\n");
667                 else
668                         printf("off\n");
669         }
670
671         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) {
672                 printf("TX TCP segmentation:           ");
673                 if (ports[port_id].dev_conf.txmode.offloads &
674                     DEV_TX_OFFLOAD_TCP_TSO)
675                         printf("on\n");
676                 else
677                         printf("off\n");
678         }
679
680         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TSO) {
681                 printf("TX UDP segmentation:           ");
682                 if (ports[port_id].dev_conf.txmode.offloads &
683                     DEV_TX_OFFLOAD_UDP_TSO)
684                         printf("on\n");
685                 else
686                         printf("off\n");
687         }
688
689         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO) {
690                 printf("TSO for VXLAN tunnel packet:   ");
691                 if (ports[port_id].dev_conf.txmode.offloads &
692                     DEV_TX_OFFLOAD_VXLAN_TNL_TSO)
693                         printf("on\n");
694                 else
695                         printf("off\n");
696         }
697
698         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO) {
699                 printf("TSO for GRE tunnel packet:     ");
700                 if (ports[port_id].dev_conf.txmode.offloads &
701                     DEV_TX_OFFLOAD_GRE_TNL_TSO)
702                         printf("on\n");
703                 else
704                         printf("off\n");
705         }
706
707         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO) {
708                 printf("TSO for IPIP tunnel packet:    ");
709                 if (ports[port_id].dev_conf.txmode.offloads &
710                     DEV_TX_OFFLOAD_IPIP_TNL_TSO)
711                         printf("on\n");
712                 else
713                         printf("off\n");
714         }
715
716         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO) {
717                 printf("TSO for GENEVE tunnel packet:  ");
718                 if (ports[port_id].dev_conf.txmode.offloads &
719                     DEV_TX_OFFLOAD_GENEVE_TNL_TSO)
720                         printf("on\n");
721                 else
722                         printf("off\n");
723         }
724
725         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO) {
726                 printf("IP tunnel TSO:  ");
727                 if (ports[port_id].dev_conf.txmode.offloads &
728                     DEV_TX_OFFLOAD_IP_TNL_TSO)
729                         printf("on\n");
730                 else
731                         printf("off\n");
732         }
733
734         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO) {
735                 printf("UDP tunnel TSO:  ");
736                 if (ports[port_id].dev_conf.txmode.offloads &
737                     DEV_TX_OFFLOAD_UDP_TNL_TSO)
738                         printf("on\n");
739                 else
740                         printf("off\n");
741         }
742 }
743
744 int
745 port_id_is_invalid(portid_t port_id, enum print_warning warning)
746 {
747         uint16_t pid;
748
749         if (port_id == (portid_t)RTE_PORT_ALL)
750                 return 0;
751
752         RTE_ETH_FOREACH_DEV(pid)
753                 if (port_id == pid)
754                         return 0;
755
756         if (warning == ENABLED_WARN)
757                 printf("Invalid port %d\n", port_id);
758
759         return 1;
760 }
761
762 static int
763 vlan_id_is_invalid(uint16_t vlan_id)
764 {
765         if (vlan_id < 4096)
766                 return 0;
767         printf("Invalid vlan_id %d (must be < 4096)\n", vlan_id);
768         return 1;
769 }
770
771 static int
772 port_reg_off_is_invalid(portid_t port_id, uint32_t reg_off)
773 {
774         const struct rte_pci_device *pci_dev;
775         const struct rte_bus *bus;
776         uint64_t pci_len;
777
778         if (reg_off & 0x3) {
779                 printf("Port register offset 0x%X not aligned on a 4-byte "
780                        "boundary\n",
781                        (unsigned)reg_off);
782                 return 1;
783         }
784
785         if (!ports[port_id].dev_info.device) {
786                 printf("Invalid device\n");
787                 return 0;
788         }
789
790         bus = rte_bus_find_by_device(ports[port_id].dev_info.device);
791         if (bus && !strcmp(bus->name, "pci")) {
792                 pci_dev = RTE_DEV_TO_PCI(ports[port_id].dev_info.device);
793         } else {
794                 printf("Not a PCI device\n");
795                 return 1;
796         }
797
798         pci_len = pci_dev->mem_resource[0].len;
799         if (reg_off >= pci_len) {
800                 printf("Port %d: register offset %u (0x%X) out of port PCI "
801                        "resource (length=%"PRIu64")\n",
802                        port_id, (unsigned)reg_off, (unsigned)reg_off,  pci_len);
803                 return 1;
804         }
805         return 0;
806 }
807
808 static int
809 reg_bit_pos_is_invalid(uint8_t bit_pos)
810 {
811         if (bit_pos <= 31)
812                 return 0;
813         printf("Invalid bit position %d (must be <= 31)\n", bit_pos);
814         return 1;
815 }
816
817 #define display_port_and_reg_off(port_id, reg_off) \
818         printf("port %d PCI register at offset 0x%X: ", (port_id), (reg_off))
819
820 static inline void
821 display_port_reg_value(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
822 {
823         display_port_and_reg_off(port_id, (unsigned)reg_off);
824         printf("0x%08X (%u)\n", (unsigned)reg_v, (unsigned)reg_v);
825 }
826
827 void
828 port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_x)
829 {
830         uint32_t reg_v;
831
832
833         if (port_id_is_invalid(port_id, ENABLED_WARN))
834                 return;
835         if (port_reg_off_is_invalid(port_id, reg_off))
836                 return;
837         if (reg_bit_pos_is_invalid(bit_x))
838                 return;
839         reg_v = port_id_pci_reg_read(port_id, reg_off);
840         display_port_and_reg_off(port_id, (unsigned)reg_off);
841         printf("bit %d=%d\n", bit_x, (int) ((reg_v & (1 << bit_x)) >> bit_x));
842 }
843
844 void
845 port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
846                            uint8_t bit1_pos, uint8_t bit2_pos)
847 {
848         uint32_t reg_v;
849         uint8_t  l_bit;
850         uint8_t  h_bit;
851
852         if (port_id_is_invalid(port_id, ENABLED_WARN))
853                 return;
854         if (port_reg_off_is_invalid(port_id, reg_off))
855                 return;
856         if (reg_bit_pos_is_invalid(bit1_pos))
857                 return;
858         if (reg_bit_pos_is_invalid(bit2_pos))
859                 return;
860         if (bit1_pos > bit2_pos)
861                 l_bit = bit2_pos, h_bit = bit1_pos;
862         else
863                 l_bit = bit1_pos, h_bit = bit2_pos;
864
865         reg_v = port_id_pci_reg_read(port_id, reg_off);
866         reg_v >>= l_bit;
867         if (h_bit < 31)
868                 reg_v &= ((1 << (h_bit - l_bit + 1)) - 1);
869         display_port_and_reg_off(port_id, (unsigned)reg_off);
870         printf("bits[%d, %d]=0x%0*X (%u)\n", l_bit, h_bit,
871                ((h_bit - l_bit) / 4) + 1, (unsigned)reg_v, (unsigned)reg_v);
872 }
873
874 void
875 port_reg_display(portid_t port_id, uint32_t reg_off)
876 {
877         uint32_t reg_v;
878
879         if (port_id_is_invalid(port_id, ENABLED_WARN))
880                 return;
881         if (port_reg_off_is_invalid(port_id, reg_off))
882                 return;
883         reg_v = port_id_pci_reg_read(port_id, reg_off);
884         display_port_reg_value(port_id, reg_off, reg_v);
885 }
886
887 void
888 port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
889                  uint8_t bit_v)
890 {
891         uint32_t reg_v;
892
893         if (port_id_is_invalid(port_id, ENABLED_WARN))
894                 return;
895         if (port_reg_off_is_invalid(port_id, reg_off))
896                 return;
897         if (reg_bit_pos_is_invalid(bit_pos))
898                 return;
899         if (bit_v > 1) {
900                 printf("Invalid bit value %d (must be 0 or 1)\n", (int) bit_v);
901                 return;
902         }
903         reg_v = port_id_pci_reg_read(port_id, reg_off);
904         if (bit_v == 0)
905                 reg_v &= ~(1 << bit_pos);
906         else
907                 reg_v |= (1 << bit_pos);
908         port_id_pci_reg_write(port_id, reg_off, reg_v);
909         display_port_reg_value(port_id, reg_off, reg_v);
910 }
911
912 void
913 port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
914                        uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value)
915 {
916         uint32_t max_v;
917         uint32_t reg_v;
918         uint8_t  l_bit;
919         uint8_t  h_bit;
920
921         if (port_id_is_invalid(port_id, ENABLED_WARN))
922                 return;
923         if (port_reg_off_is_invalid(port_id, reg_off))
924                 return;
925         if (reg_bit_pos_is_invalid(bit1_pos))
926                 return;
927         if (reg_bit_pos_is_invalid(bit2_pos))
928                 return;
929         if (bit1_pos > bit2_pos)
930                 l_bit = bit2_pos, h_bit = bit1_pos;
931         else
932                 l_bit = bit1_pos, h_bit = bit2_pos;
933
934         if ((h_bit - l_bit) < 31)
935                 max_v = (1 << (h_bit - l_bit + 1)) - 1;
936         else
937                 max_v = 0xFFFFFFFF;
938
939         if (value > max_v) {
940                 printf("Invalid value %u (0x%x) must be < %u (0x%x)\n",
941                                 (unsigned)value, (unsigned)value,
942                                 (unsigned)max_v, (unsigned)max_v);
943                 return;
944         }
945         reg_v = port_id_pci_reg_read(port_id, reg_off);
946         reg_v &= ~(max_v << l_bit); /* Keep unchanged bits */
947         reg_v |= (value << l_bit); /* Set changed bits */
948         port_id_pci_reg_write(port_id, reg_off, reg_v);
949         display_port_reg_value(port_id, reg_off, reg_v);
950 }
951
952 void
953 port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
954 {
955         if (port_id_is_invalid(port_id, ENABLED_WARN))
956                 return;
957         if (port_reg_off_is_invalid(port_id, reg_off))
958                 return;
959         port_id_pci_reg_write(port_id, reg_off, reg_v);
960         display_port_reg_value(port_id, reg_off, reg_v);
961 }
962
963 void
964 port_mtu_set(portid_t port_id, uint16_t mtu)
965 {
966         int diag;
967
968         if (port_id_is_invalid(port_id, ENABLED_WARN))
969                 return;
970         diag = rte_eth_dev_set_mtu(port_id, mtu);
971         if (diag == 0)
972                 return;
973         printf("Set MTU failed. diag=%d\n", diag);
974 }
975
976 /* Generic flow management functions. */
977
978 /** Generate flow_item[] entry. */
979 #define MK_FLOW_ITEM(t, s) \
980         [RTE_FLOW_ITEM_TYPE_ ## t] = { \
981                 .name = # t, \
982                 .size = s, \
983         }
984
985 /** Information about known flow pattern items. */
986 static const struct {
987         const char *name;
988         size_t size;
989 } flow_item[] = {
990         MK_FLOW_ITEM(END, 0),
991         MK_FLOW_ITEM(VOID, 0),
992         MK_FLOW_ITEM(INVERT, 0),
993         MK_FLOW_ITEM(ANY, sizeof(struct rte_flow_item_any)),
994         MK_FLOW_ITEM(PF, 0),
995         MK_FLOW_ITEM(VF, sizeof(struct rte_flow_item_vf)),
996         MK_FLOW_ITEM(PORT, sizeof(struct rte_flow_item_port)),
997         MK_FLOW_ITEM(RAW, sizeof(struct rte_flow_item_raw)), /* +pattern[] */
998         MK_FLOW_ITEM(ETH, sizeof(struct rte_flow_item_eth)),
999         MK_FLOW_ITEM(VLAN, sizeof(struct rte_flow_item_vlan)),
1000         MK_FLOW_ITEM(IPV4, sizeof(struct rte_flow_item_ipv4)),
1001         MK_FLOW_ITEM(IPV6, sizeof(struct rte_flow_item_ipv6)),
1002         MK_FLOW_ITEM(ICMP, sizeof(struct rte_flow_item_icmp)),
1003         MK_FLOW_ITEM(UDP, sizeof(struct rte_flow_item_udp)),
1004         MK_FLOW_ITEM(TCP, sizeof(struct rte_flow_item_tcp)),
1005         MK_FLOW_ITEM(SCTP, sizeof(struct rte_flow_item_sctp)),
1006         MK_FLOW_ITEM(VXLAN, sizeof(struct rte_flow_item_vxlan)),
1007         MK_FLOW_ITEM(E_TAG, sizeof(struct rte_flow_item_e_tag)),
1008         MK_FLOW_ITEM(NVGRE, sizeof(struct rte_flow_item_nvgre)),
1009         MK_FLOW_ITEM(MPLS, sizeof(struct rte_flow_item_mpls)),
1010         MK_FLOW_ITEM(GRE, sizeof(struct rte_flow_item_gre)),
1011         MK_FLOW_ITEM(FUZZY, sizeof(struct rte_flow_item_fuzzy)),
1012         MK_FLOW_ITEM(GTP, sizeof(struct rte_flow_item_gtp)),
1013         MK_FLOW_ITEM(GTPC, sizeof(struct rte_flow_item_gtp)),
1014         MK_FLOW_ITEM(GTPU, sizeof(struct rte_flow_item_gtp)),
1015         MK_FLOW_ITEM(GENEVE, sizeof(struct rte_flow_item_geneve)),
1016 };
1017
1018 /** Pattern item specification types. */
1019 enum item_spec_type {
1020         ITEM_SPEC,
1021         ITEM_LAST,
1022         ITEM_MASK,
1023 };
1024
1025 /** Compute storage space needed by item specification and copy it. */
1026 static size_t
1027 flow_item_spec_copy(void *buf, const struct rte_flow_item *item,
1028                     enum item_spec_type type)
1029 {
1030         size_t size = 0;
1031         const void *item_spec =
1032                 type == ITEM_SPEC ? item->spec :
1033                 type == ITEM_LAST ? item->last :
1034                 type == ITEM_MASK ? item->mask :
1035                 NULL;
1036
1037         if (!item_spec)
1038                 goto empty;
1039         switch (item->type) {
1040                 union {
1041                         const struct rte_flow_item_raw *raw;
1042                 } src;
1043                 union {
1044                         struct rte_flow_item_raw *raw;
1045                 } dst;
1046
1047         case RTE_FLOW_ITEM_TYPE_RAW:
1048                 src.raw = item_spec;
1049                 dst.raw = buf;
1050                 size = offsetof(struct rte_flow_item_raw, pattern) +
1051                         src.raw->length * sizeof(*src.raw->pattern);
1052                 if (dst.raw)
1053                         memcpy(dst.raw, src.raw, size);
1054                 break;
1055         default:
1056                 size = flow_item[item->type].size;
1057                 if (buf)
1058                         memcpy(buf, item_spec, size);
1059                 break;
1060         }
1061 empty:
1062         return RTE_ALIGN_CEIL(size, sizeof(double));
1063 }
1064
1065 /** Generate flow_action[] entry. */
1066 #define MK_FLOW_ACTION(t, s) \
1067         [RTE_FLOW_ACTION_TYPE_ ## t] = { \
1068                 .name = # t, \
1069                 .size = s, \
1070         }
1071
1072 /** Information about known flow actions. */
1073 static const struct {
1074         const char *name;
1075         size_t size;
1076 } flow_action[] = {
1077         MK_FLOW_ACTION(END, 0),
1078         MK_FLOW_ACTION(VOID, 0),
1079         MK_FLOW_ACTION(PASSTHRU, 0),
1080         MK_FLOW_ACTION(MARK, sizeof(struct rte_flow_action_mark)),
1081         MK_FLOW_ACTION(FLAG, 0),
1082         MK_FLOW_ACTION(QUEUE, sizeof(struct rte_flow_action_queue)),
1083         MK_FLOW_ACTION(DROP, 0),
1084         MK_FLOW_ACTION(COUNT, 0),
1085         MK_FLOW_ACTION(DUP, sizeof(struct rte_flow_action_dup)),
1086         MK_FLOW_ACTION(RSS, sizeof(struct rte_flow_action_rss)), /* +queue[] */
1087         MK_FLOW_ACTION(PF, 0),
1088         MK_FLOW_ACTION(VF, sizeof(struct rte_flow_action_vf)),
1089         MK_FLOW_ACTION(METER, sizeof(struct rte_flow_action_meter)),
1090 };
1091
1092 /** Compute storage space needed by action configuration and copy it. */
1093 static size_t
1094 flow_action_conf_copy(void *buf, const struct rte_flow_action *action)
1095 {
1096         size_t size = 0;
1097
1098         if (!action->conf)
1099                 goto empty;
1100         switch (action->type) {
1101                 union {
1102                         const struct rte_flow_action_rss *rss;
1103                 } src;
1104                 union {
1105                         struct rte_flow_action_rss *rss;
1106                 } dst;
1107                 size_t off;
1108
1109         case RTE_FLOW_ACTION_TYPE_RSS:
1110                 src.rss = action->conf;
1111                 dst.rss = buf;
1112                 off = 0;
1113                 if (dst.rss)
1114                         *dst.rss = (struct rte_flow_action_rss){
1115                                 .num = src.rss->num,
1116                         };
1117                 off += offsetof(struct rte_flow_action_rss, queue);
1118                 if (src.rss->num) {
1119                         size = sizeof(*src.rss->queue) * src.rss->num;
1120                         if (dst.rss)
1121                                 memcpy(dst.rss->queue, src.rss->queue, size);
1122                         off += size;
1123                 }
1124                 off = RTE_ALIGN_CEIL(off, sizeof(double));
1125                 if (dst.rss) {
1126                         dst.rss->rss_conf = (void *)((uintptr_t)dst.rss + off);
1127                         *(struct rte_eth_rss_conf *)(uintptr_t)
1128                                 dst.rss->rss_conf = (struct rte_eth_rss_conf){
1129                                 .rss_key_len = src.rss->rss_conf->rss_key_len,
1130                                 .rss_hf = src.rss->rss_conf->rss_hf,
1131                         };
1132                 }
1133                 off += sizeof(*src.rss->rss_conf);
1134                 if (src.rss->rss_conf->rss_key_len) {
1135                         off = RTE_ALIGN_CEIL(off, sizeof(double));
1136                         size = sizeof(*src.rss->rss_conf->rss_key) *
1137                                 src.rss->rss_conf->rss_key_len;
1138                         if (dst.rss) {
1139                                 ((struct rte_eth_rss_conf *)(uintptr_t)
1140                                  dst.rss->rss_conf)->rss_key =
1141                                         (void *)((uintptr_t)dst.rss + off);
1142                                 memcpy(dst.rss->rss_conf->rss_key,
1143                                        src.rss->rss_conf->rss_key,
1144                                        size);
1145                         }
1146                         off += size;
1147                 }
1148                 size = off;
1149                 break;
1150         default:
1151                 size = flow_action[action->type].size;
1152                 if (buf)
1153                         memcpy(buf, action->conf, size);
1154                 break;
1155         }
1156 empty:
1157         return RTE_ALIGN_CEIL(size, sizeof(double));
1158 }
1159
1160 /** Generate a port_flow entry from attributes/pattern/actions. */
1161 static struct port_flow *
1162 port_flow_new(const struct rte_flow_attr *attr,
1163               const struct rte_flow_item *pattern,
1164               const struct rte_flow_action *actions)
1165 {
1166         const struct rte_flow_item *item;
1167         const struct rte_flow_action *action;
1168         struct port_flow *pf = NULL;
1169         size_t tmp;
1170         size_t off1 = 0;
1171         size_t off2 = 0;
1172         int err = ENOTSUP;
1173
1174 store:
1175         item = pattern;
1176         if (pf)
1177                 pf->pattern = (void *)&pf->data[off1];
1178         do {
1179                 struct rte_flow_item *dst = NULL;
1180
1181                 if ((unsigned int)item->type >= RTE_DIM(flow_item) ||
1182                     !flow_item[item->type].name)
1183                         goto notsup;
1184                 if (pf)
1185                         dst = memcpy(pf->data + off1, item, sizeof(*item));
1186                 off1 += sizeof(*item);
1187                 if (item->spec) {
1188                         if (pf)
1189                                 dst->spec = pf->data + off2;
1190                         off2 += flow_item_spec_copy
1191                                 (pf ? pf->data + off2 : NULL, item, ITEM_SPEC);
1192                 }
1193                 if (item->last) {
1194                         if (pf)
1195                                 dst->last = pf->data + off2;
1196                         off2 += flow_item_spec_copy
1197                                 (pf ? pf->data + off2 : NULL, item, ITEM_LAST);
1198                 }
1199                 if (item->mask) {
1200                         if (pf)
1201                                 dst->mask = pf->data + off2;
1202                         off2 += flow_item_spec_copy
1203                                 (pf ? pf->data + off2 : NULL, item, ITEM_MASK);
1204                 }
1205                 off2 = RTE_ALIGN_CEIL(off2, sizeof(double));
1206         } while ((item++)->type != RTE_FLOW_ITEM_TYPE_END);
1207         off1 = RTE_ALIGN_CEIL(off1, sizeof(double));
1208         action = actions;
1209         if (pf)
1210                 pf->actions = (void *)&pf->data[off1];
1211         do {
1212                 struct rte_flow_action *dst = NULL;
1213
1214                 if ((unsigned int)action->type >= RTE_DIM(flow_action) ||
1215                     !flow_action[action->type].name)
1216                         goto notsup;
1217                 if (pf)
1218                         dst = memcpy(pf->data + off1, action, sizeof(*action));
1219                 off1 += sizeof(*action);
1220                 if (action->conf) {
1221                         if (pf)
1222                                 dst->conf = pf->data + off2;
1223                         off2 += flow_action_conf_copy
1224                                 (pf ? pf->data + off2 : NULL, action);
1225                 }
1226                 off2 = RTE_ALIGN_CEIL(off2, sizeof(double));
1227         } while ((action++)->type != RTE_FLOW_ACTION_TYPE_END);
1228         if (pf != NULL)
1229                 return pf;
1230         off1 = RTE_ALIGN_CEIL(off1, sizeof(double));
1231         tmp = RTE_ALIGN_CEIL(offsetof(struct port_flow, data), sizeof(double));
1232         pf = calloc(1, tmp + off1 + off2);
1233         if (pf == NULL)
1234                 err = errno;
1235         else {
1236                 *pf = (const struct port_flow){
1237                         .size = tmp + off1 + off2,
1238                         .attr = *attr,
1239                 };
1240                 tmp -= offsetof(struct port_flow, data);
1241                 off2 = tmp + off1;
1242                 off1 = tmp;
1243                 goto store;
1244         }
1245 notsup:
1246         rte_errno = err;
1247         return NULL;
1248 }
1249
1250 /** Print a message out of a flow error. */
1251 static int
1252 port_flow_complain(struct rte_flow_error *error)
1253 {
1254         static const char *const errstrlist[] = {
1255                 [RTE_FLOW_ERROR_TYPE_NONE] = "no error",
1256                 [RTE_FLOW_ERROR_TYPE_UNSPECIFIED] = "cause unspecified",
1257                 [RTE_FLOW_ERROR_TYPE_HANDLE] = "flow rule (handle)",
1258                 [RTE_FLOW_ERROR_TYPE_ATTR_GROUP] = "group field",
1259                 [RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
1260                 [RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
1261                 [RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
1262                 [RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
1263                 [RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
1264                 [RTE_FLOW_ERROR_TYPE_ITEM] = "specific pattern item",
1265                 [RTE_FLOW_ERROR_TYPE_ACTION_NUM] = "number of actions",
1266                 [RTE_FLOW_ERROR_TYPE_ACTION] = "specific action",
1267         };
1268         const char *errstr;
1269         char buf[32];
1270         int err = rte_errno;
1271
1272         if ((unsigned int)error->type >= RTE_DIM(errstrlist) ||
1273             !errstrlist[error->type])
1274                 errstr = "unknown type";
1275         else
1276                 errstr = errstrlist[error->type];
1277         printf("Caught error type %d (%s): %s%s\n",
1278                error->type, errstr,
1279                error->cause ? (snprintf(buf, sizeof(buf), "cause: %p, ",
1280                                         error->cause), buf) : "",
1281                error->message ? error->message : "(no stated reason)");
1282         return -err;
1283 }
1284
1285 /** Validate flow rule. */
1286 int
1287 port_flow_validate(portid_t port_id,
1288                    const struct rte_flow_attr *attr,
1289                    const struct rte_flow_item *pattern,
1290                    const struct rte_flow_action *actions)
1291 {
1292         struct rte_flow_error error;
1293
1294         /* Poisoning to make sure PMDs update it in case of error. */
1295         memset(&error, 0x11, sizeof(error));
1296         if (rte_flow_validate(port_id, attr, pattern, actions, &error))
1297                 return port_flow_complain(&error);
1298         printf("Flow rule validated\n");
1299         return 0;
1300 }
1301
1302 /** Create flow rule. */
1303 int
1304 port_flow_create(portid_t port_id,
1305                  const struct rte_flow_attr *attr,
1306                  const struct rte_flow_item *pattern,
1307                  const struct rte_flow_action *actions)
1308 {
1309         struct rte_flow *flow;
1310         struct rte_port *port;
1311         struct port_flow *pf;
1312         uint32_t id;
1313         struct rte_flow_error error;
1314
1315         /* Poisoning to make sure PMDs update it in case of error. */
1316         memset(&error, 0x22, sizeof(error));
1317         flow = rte_flow_create(port_id, attr, pattern, actions, &error);
1318         if (!flow)
1319                 return port_flow_complain(&error);
1320         port = &ports[port_id];
1321         if (port->flow_list) {
1322                 if (port->flow_list->id == UINT32_MAX) {
1323                         printf("Highest rule ID is already assigned, delete"
1324                                " it first");
1325                         rte_flow_destroy(port_id, flow, NULL);
1326                         return -ENOMEM;
1327                 }
1328                 id = port->flow_list->id + 1;
1329         } else
1330                 id = 0;
1331         pf = port_flow_new(attr, pattern, actions);
1332         if (!pf) {
1333                 int err = rte_errno;
1334
1335                 printf("Cannot allocate flow: %s\n", rte_strerror(err));
1336                 rte_flow_destroy(port_id, flow, NULL);
1337                 return -err;
1338         }
1339         pf->next = port->flow_list;
1340         pf->id = id;
1341         pf->flow = flow;
1342         port->flow_list = pf;
1343         printf("Flow rule #%u created\n", pf->id);
1344         return 0;
1345 }
1346
1347 /** Destroy a number of flow rules. */
1348 int
1349 port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule)
1350 {
1351         struct rte_port *port;
1352         struct port_flow **tmp;
1353         uint32_t c = 0;
1354         int ret = 0;
1355
1356         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1357             port_id == (portid_t)RTE_PORT_ALL)
1358                 return -EINVAL;
1359         port = &ports[port_id];
1360         tmp = &port->flow_list;
1361         while (*tmp) {
1362                 uint32_t i;
1363
1364                 for (i = 0; i != n; ++i) {
1365                         struct rte_flow_error error;
1366                         struct port_flow *pf = *tmp;
1367
1368                         if (rule[i] != pf->id)
1369                                 continue;
1370                         /*
1371                          * Poisoning to make sure PMDs update it in case
1372                          * of error.
1373                          */
1374                         memset(&error, 0x33, sizeof(error));
1375                         if (rte_flow_destroy(port_id, pf->flow, &error)) {
1376                                 ret = port_flow_complain(&error);
1377                                 continue;
1378                         }
1379                         printf("Flow rule #%u destroyed\n", pf->id);
1380                         *tmp = pf->next;
1381                         free(pf);
1382                         break;
1383                 }
1384                 if (i == n)
1385                         tmp = &(*tmp)->next;
1386                 ++c;
1387         }
1388         return ret;
1389 }
1390
1391 /** Remove all flow rules. */
1392 int
1393 port_flow_flush(portid_t port_id)
1394 {
1395         struct rte_flow_error error;
1396         struct rte_port *port;
1397         int ret = 0;
1398
1399         /* Poisoning to make sure PMDs update it in case of error. */
1400         memset(&error, 0x44, sizeof(error));
1401         if (rte_flow_flush(port_id, &error)) {
1402                 ret = port_flow_complain(&error);
1403                 if (port_id_is_invalid(port_id, DISABLED_WARN) ||
1404                     port_id == (portid_t)RTE_PORT_ALL)
1405                         return ret;
1406         }
1407         port = &ports[port_id];
1408         while (port->flow_list) {
1409                 struct port_flow *pf = port->flow_list->next;
1410
1411                 free(port->flow_list);
1412                 port->flow_list = pf;
1413         }
1414         return ret;
1415 }
1416
1417 /** Query a flow rule. */
1418 int
1419 port_flow_query(portid_t port_id, uint32_t rule,
1420                 enum rte_flow_action_type action)
1421 {
1422         struct rte_flow_error error;
1423         struct rte_port *port;
1424         struct port_flow *pf;
1425         const char *name;
1426         union {
1427                 struct rte_flow_query_count count;
1428         } query;
1429
1430         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1431             port_id == (portid_t)RTE_PORT_ALL)
1432                 return -EINVAL;
1433         port = &ports[port_id];
1434         for (pf = port->flow_list; pf; pf = pf->next)
1435                 if (pf->id == rule)
1436                         break;
1437         if (!pf) {
1438                 printf("Flow rule #%u not found\n", rule);
1439                 return -ENOENT;
1440         }
1441         if ((unsigned int)action >= RTE_DIM(flow_action) ||
1442             !flow_action[action].name)
1443                 name = "unknown";
1444         else
1445                 name = flow_action[action].name;
1446         switch (action) {
1447         case RTE_FLOW_ACTION_TYPE_COUNT:
1448                 break;
1449         default:
1450                 printf("Cannot query action type %d (%s)\n", action, name);
1451                 return -ENOTSUP;
1452         }
1453         /* Poisoning to make sure PMDs update it in case of error. */
1454         memset(&error, 0x55, sizeof(error));
1455         memset(&query, 0, sizeof(query));
1456         if (rte_flow_query(port_id, pf->flow, action, &query, &error))
1457                 return port_flow_complain(&error);
1458         switch (action) {
1459         case RTE_FLOW_ACTION_TYPE_COUNT:
1460                 printf("%s:\n"
1461                        " hits_set: %u\n"
1462                        " bytes_set: %u\n"
1463                        " hits: %" PRIu64 "\n"
1464                        " bytes: %" PRIu64 "\n",
1465                        name,
1466                        query.count.hits_set,
1467                        query.count.bytes_set,
1468                        query.count.hits,
1469                        query.count.bytes);
1470                 break;
1471         default:
1472                 printf("Cannot display result for action type %d (%s)\n",
1473                        action, name);
1474                 break;
1475         }
1476         return 0;
1477 }
1478
1479 /** List flow rules. */
1480 void
1481 port_flow_list(portid_t port_id, uint32_t n, const uint32_t group[n])
1482 {
1483         struct rte_port *port;
1484         struct port_flow *pf;
1485         struct port_flow *list = NULL;
1486         uint32_t i;
1487
1488         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1489             port_id == (portid_t)RTE_PORT_ALL)
1490                 return;
1491         port = &ports[port_id];
1492         if (!port->flow_list)
1493                 return;
1494         /* Sort flows by group, priority and ID. */
1495         for (pf = port->flow_list; pf != NULL; pf = pf->next) {
1496                 struct port_flow **tmp;
1497
1498                 if (n) {
1499                         /* Filter out unwanted groups. */
1500                         for (i = 0; i != n; ++i)
1501                                 if (pf->attr.group == group[i])
1502                                         break;
1503                         if (i == n)
1504                                 continue;
1505                 }
1506                 tmp = &list;
1507                 while (*tmp &&
1508                        (pf->attr.group > (*tmp)->attr.group ||
1509                         (pf->attr.group == (*tmp)->attr.group &&
1510                          pf->attr.priority > (*tmp)->attr.priority) ||
1511                         (pf->attr.group == (*tmp)->attr.group &&
1512                          pf->attr.priority == (*tmp)->attr.priority &&
1513                          pf->id > (*tmp)->id)))
1514                         tmp = &(*tmp)->tmp;
1515                 pf->tmp = *tmp;
1516                 *tmp = pf;
1517         }
1518         printf("ID\tGroup\tPrio\tAttr\tRule\n");
1519         for (pf = list; pf != NULL; pf = pf->tmp) {
1520                 const struct rte_flow_item *item = pf->pattern;
1521                 const struct rte_flow_action *action = pf->actions;
1522
1523                 printf("%" PRIu32 "\t%" PRIu32 "\t%" PRIu32 "\t%c%c\t",
1524                        pf->id,
1525                        pf->attr.group,
1526                        pf->attr.priority,
1527                        pf->attr.ingress ? 'i' : '-',
1528                        pf->attr.egress ? 'e' : '-');
1529                 while (item->type != RTE_FLOW_ITEM_TYPE_END) {
1530                         if (item->type != RTE_FLOW_ITEM_TYPE_VOID)
1531                                 printf("%s ", flow_item[item->type].name);
1532                         ++item;
1533                 }
1534                 printf("=>");
1535                 while (action->type != RTE_FLOW_ACTION_TYPE_END) {
1536                         if (action->type != RTE_FLOW_ACTION_TYPE_VOID)
1537                                 printf(" %s", flow_action[action->type].name);
1538                         ++action;
1539                 }
1540                 printf("\n");
1541         }
1542 }
1543
1544 /** Restrict ingress traffic to the defined flow rules. */
1545 int
1546 port_flow_isolate(portid_t port_id, int set)
1547 {
1548         struct rte_flow_error error;
1549
1550         /* Poisoning to make sure PMDs update it in case of error. */
1551         memset(&error, 0x66, sizeof(error));
1552         if (rte_flow_isolate(port_id, set, &error))
1553                 return port_flow_complain(&error);
1554         printf("Ingress traffic on port %u is %s to the defined flow rules\n",
1555                port_id,
1556                set ? "now restricted" : "not restricted anymore");
1557         return 0;
1558 }
1559
1560 /*
1561  * RX/TX ring descriptors display functions.
1562  */
1563 int
1564 rx_queue_id_is_invalid(queueid_t rxq_id)
1565 {
1566         if (rxq_id < nb_rxq)
1567                 return 0;
1568         printf("Invalid RX queue %d (must be < nb_rxq=%d)\n", rxq_id, nb_rxq);
1569         return 1;
1570 }
1571
1572 int
1573 tx_queue_id_is_invalid(queueid_t txq_id)
1574 {
1575         if (txq_id < nb_txq)
1576                 return 0;
1577         printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
1578         return 1;
1579 }
1580
1581 static int
1582 rx_desc_id_is_invalid(uint16_t rxdesc_id)
1583 {
1584         if (rxdesc_id < nb_rxd)
1585                 return 0;
1586         printf("Invalid RX descriptor %d (must be < nb_rxd=%d)\n",
1587                rxdesc_id, nb_rxd);
1588         return 1;
1589 }
1590
1591 static int
1592 tx_desc_id_is_invalid(uint16_t txdesc_id)
1593 {
1594         if (txdesc_id < nb_txd)
1595                 return 0;
1596         printf("Invalid TX descriptor %d (must be < nb_txd=%d)\n",
1597                txdesc_id, nb_txd);
1598         return 1;
1599 }
1600
1601 static const struct rte_memzone *
1602 ring_dma_zone_lookup(const char *ring_name, portid_t port_id, uint16_t q_id)
1603 {
1604         char mz_name[RTE_MEMZONE_NAMESIZE];
1605         const struct rte_memzone *mz;
1606
1607         snprintf(mz_name, sizeof(mz_name), "%s_%s_%d_%d",
1608                  ports[port_id].dev_info.driver_name, ring_name, port_id, q_id);
1609         mz = rte_memzone_lookup(mz_name);
1610         if (mz == NULL)
1611                 printf("%s ring memory zoneof (port %d, queue %d) not"
1612                        "found (zone name = %s\n",
1613                        ring_name, port_id, q_id, mz_name);
1614         return mz;
1615 }
1616
1617 union igb_ring_dword {
1618         uint64_t dword;
1619         struct {
1620 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1621                 uint32_t lo;
1622                 uint32_t hi;
1623 #else
1624                 uint32_t hi;
1625                 uint32_t lo;
1626 #endif
1627         } words;
1628 };
1629
1630 struct igb_ring_desc_32_bytes {
1631         union igb_ring_dword lo_dword;
1632         union igb_ring_dword hi_dword;
1633         union igb_ring_dword resv1;
1634         union igb_ring_dword resv2;
1635 };
1636
1637 struct igb_ring_desc_16_bytes {
1638         union igb_ring_dword lo_dword;
1639         union igb_ring_dword hi_dword;
1640 };
1641
1642 static void
1643 ring_rxd_display_dword(union igb_ring_dword dword)
1644 {
1645         printf("    0x%08X - 0x%08X\n", (unsigned)dword.words.lo,
1646                                         (unsigned)dword.words.hi);
1647 }
1648
1649 static void
1650 ring_rx_descriptor_display(const struct rte_memzone *ring_mz,
1651 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
1652                            portid_t port_id,
1653 #else
1654                            __rte_unused portid_t port_id,
1655 #endif
1656                            uint16_t desc_id)
1657 {
1658         struct igb_ring_desc_16_bytes *ring =
1659                 (struct igb_ring_desc_16_bytes *)ring_mz->addr;
1660 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
1661         struct rte_eth_dev_info dev_info;
1662
1663         memset(&dev_info, 0, sizeof(dev_info));
1664         rte_eth_dev_info_get(port_id, &dev_info);
1665         if (strstr(dev_info.driver_name, "i40e") != NULL) {
1666                 /* 32 bytes RX descriptor, i40e only */
1667                 struct igb_ring_desc_32_bytes *ring =
1668                         (struct igb_ring_desc_32_bytes *)ring_mz->addr;
1669                 ring[desc_id].lo_dword.dword =
1670                         rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1671                 ring_rxd_display_dword(ring[desc_id].lo_dword);
1672                 ring[desc_id].hi_dword.dword =
1673                         rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1674                 ring_rxd_display_dword(ring[desc_id].hi_dword);
1675                 ring[desc_id].resv1.dword =
1676                         rte_le_to_cpu_64(ring[desc_id].resv1.dword);
1677                 ring_rxd_display_dword(ring[desc_id].resv1);
1678                 ring[desc_id].resv2.dword =
1679                         rte_le_to_cpu_64(ring[desc_id].resv2.dword);
1680                 ring_rxd_display_dword(ring[desc_id].resv2);
1681
1682                 return;
1683         }
1684 #endif
1685         /* 16 bytes RX descriptor */
1686         ring[desc_id].lo_dword.dword =
1687                 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1688         ring_rxd_display_dword(ring[desc_id].lo_dword);
1689         ring[desc_id].hi_dword.dword =
1690                 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1691         ring_rxd_display_dword(ring[desc_id].hi_dword);
1692 }
1693
1694 static void
1695 ring_tx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
1696 {
1697         struct igb_ring_desc_16_bytes *ring;
1698         struct igb_ring_desc_16_bytes txd;
1699
1700         ring = (struct igb_ring_desc_16_bytes *)ring_mz->addr;
1701         txd.lo_dword.dword = rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
1702         txd.hi_dword.dword = rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
1703         printf("    0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
1704                         (unsigned)txd.lo_dword.words.lo,
1705                         (unsigned)txd.lo_dword.words.hi,
1706                         (unsigned)txd.hi_dword.words.lo,
1707                         (unsigned)txd.hi_dword.words.hi);
1708 }
1709
1710 void
1711 rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
1712 {
1713         const struct rte_memzone *rx_mz;
1714
1715         if (port_id_is_invalid(port_id, ENABLED_WARN))
1716                 return;
1717         if (rx_queue_id_is_invalid(rxq_id))
1718                 return;
1719         if (rx_desc_id_is_invalid(rxd_id))
1720                 return;
1721         rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
1722         if (rx_mz == NULL)
1723                 return;
1724         ring_rx_descriptor_display(rx_mz, port_id, rxd_id);
1725 }
1726
1727 void
1728 tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id)
1729 {
1730         const struct rte_memzone *tx_mz;
1731
1732         if (port_id_is_invalid(port_id, ENABLED_WARN))
1733                 return;
1734         if (tx_queue_id_is_invalid(txq_id))
1735                 return;
1736         if (tx_desc_id_is_invalid(txd_id))
1737                 return;
1738         tx_mz = ring_dma_zone_lookup("tx_ring", port_id, txq_id);
1739         if (tx_mz == NULL)
1740                 return;
1741         ring_tx_descriptor_display(tx_mz, txd_id);
1742 }
1743
1744 void
1745 fwd_lcores_config_display(void)
1746 {
1747         lcoreid_t lc_id;
1748
1749         printf("List of forwarding lcores:");
1750         for (lc_id = 0; lc_id < nb_cfg_lcores; lc_id++)
1751                 printf(" %2u", fwd_lcores_cpuids[lc_id]);
1752         printf("\n");
1753 }
1754 void
1755 rxtx_config_display(void)
1756 {
1757         portid_t pid;
1758         queueid_t qid;
1759
1760         printf("  %s packet forwarding%s packets/burst=%d\n",
1761                cur_fwd_eng->fwd_mode_name,
1762                retry_enabled == 0 ? "" : " with retry",
1763                nb_pkt_per_burst);
1764
1765         if (cur_fwd_eng == &tx_only_engine || cur_fwd_eng == &flow_gen_engine)
1766                 printf("  packet len=%u - nb packet segments=%d\n",
1767                                 (unsigned)tx_pkt_length, (int) tx_pkt_nb_segs);
1768
1769         printf("  nb forwarding cores=%d - nb forwarding ports=%d\n",
1770                nb_fwd_lcores, nb_fwd_ports);
1771
1772         RTE_ETH_FOREACH_DEV(pid) {
1773                 struct rte_eth_rxconf *rx_conf = &ports[pid].rx_conf[0];
1774                 struct rte_eth_txconf *tx_conf = &ports[pid].tx_conf[0];
1775                 uint16_t *nb_rx_desc = &ports[pid].nb_rx_desc[0];
1776                 uint16_t *nb_tx_desc = &ports[pid].nb_tx_desc[0];
1777
1778                 /* per port config */
1779                 printf("  port %d: RX queue number: %d Tx queue number: %d\n",
1780                                 (unsigned int)pid, nb_rxq, nb_txq);
1781
1782                 printf("    Rx offloads=0x%"PRIx64" Tx offloads=0x%"PRIx64"\n",
1783                                 ports[pid].dev_conf.rxmode.offloads,
1784                                 ports[pid].dev_conf.txmode.offloads);
1785
1786                 /* per rx queue config only for first queue to be less verbose */
1787                 for (qid = 0; qid < 1; qid++) {
1788                         printf("    RX queue: %d\n", qid);
1789                         printf("      RX desc=%d - RX free threshold=%d\n",
1790                                 nb_rx_desc[qid], rx_conf[qid].rx_free_thresh);
1791                         printf("      RX threshold registers: pthresh=%d hthresh=%d "
1792                                 " wthresh=%d\n",
1793                                 rx_conf[qid].rx_thresh.pthresh,
1794                                 rx_conf[qid].rx_thresh.hthresh,
1795                                 rx_conf[qid].rx_thresh.wthresh);
1796                         printf("      RX Offloads=0x%"PRIx64"\n",
1797                                 rx_conf[qid].offloads);
1798                 }
1799
1800                 /* per tx queue config only for first queue to be less verbose */
1801                 for (qid = 0; qid < 1; qid++) {
1802                         printf("    TX queue: %d\n", qid);
1803                         printf("      TX desc=%d - TX free threshold=%d\n",
1804                                 nb_tx_desc[qid], tx_conf[qid].tx_free_thresh);
1805                         printf("      TX threshold registers: pthresh=%d hthresh=%d "
1806                                 " wthresh=%d\n",
1807                                 tx_conf[qid].tx_thresh.pthresh,
1808                                 tx_conf[qid].tx_thresh.hthresh,
1809                                 tx_conf[qid].tx_thresh.wthresh);
1810                         printf("      TX offloads=0x%"PRIx64" - TX RS bit threshold=%d\n",
1811                                 tx_conf[qid].offloads, tx_conf->tx_rs_thresh);
1812                 }
1813         }
1814 }
1815
1816 void
1817 port_rss_reta_info(portid_t port_id,
1818                    struct rte_eth_rss_reta_entry64 *reta_conf,
1819                    uint16_t nb_entries)
1820 {
1821         uint16_t i, idx, shift;
1822         int ret;
1823
1824         if (port_id_is_invalid(port_id, ENABLED_WARN))
1825                 return;
1826
1827         ret = rte_eth_dev_rss_reta_query(port_id, reta_conf, nb_entries);
1828         if (ret != 0) {
1829                 printf("Failed to get RSS RETA info, return code = %d\n", ret);
1830                 return;
1831         }
1832
1833         for (i = 0; i < nb_entries; i++) {
1834                 idx = i / RTE_RETA_GROUP_SIZE;
1835                 shift = i % RTE_RETA_GROUP_SIZE;
1836                 if (!(reta_conf[idx].mask & (1ULL << shift)))
1837                         continue;
1838                 printf("RSS RETA configuration: hash index=%u, queue=%u\n",
1839                                         i, reta_conf[idx].reta[shift]);
1840         }
1841 }
1842
1843 /*
1844  * Displays the RSS hash functions of a port, and, optionaly, the RSS hash
1845  * key of the port.
1846  */
1847 void
1848 port_rss_hash_conf_show(portid_t port_id, char rss_info[], int show_rss_key)
1849 {
1850         struct rte_eth_rss_conf rss_conf;
1851         uint8_t rss_key[RSS_HASH_KEY_LENGTH];
1852         uint64_t rss_hf;
1853         uint8_t i;
1854         int diag;
1855         struct rte_eth_dev_info dev_info;
1856         uint8_t hash_key_size;
1857
1858         if (port_id_is_invalid(port_id, ENABLED_WARN))
1859                 return;
1860
1861         memset(&dev_info, 0, sizeof(dev_info));
1862         rte_eth_dev_info_get(port_id, &dev_info);
1863         if (dev_info.hash_key_size > 0 &&
1864                         dev_info.hash_key_size <= sizeof(rss_key))
1865                 hash_key_size = dev_info.hash_key_size;
1866         else {
1867                 printf("dev_info did not provide a valid hash key size\n");
1868                 return;
1869         }
1870
1871         rss_conf.rss_hf = 0;
1872         for (i = 0; rss_type_table[i].str; i++) {
1873                 if (!strcmp(rss_info, rss_type_table[i].str))
1874                         rss_conf.rss_hf = rss_type_table[i].rss_type;
1875         }
1876
1877         /* Get RSS hash key if asked to display it */
1878         rss_conf.rss_key = (show_rss_key) ? rss_key : NULL;
1879         rss_conf.rss_key_len = hash_key_size;
1880         diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
1881         if (diag != 0) {
1882                 switch (diag) {
1883                 case -ENODEV:
1884                         printf("port index %d invalid\n", port_id);
1885                         break;
1886                 case -ENOTSUP:
1887                         printf("operation not supported by device\n");
1888                         break;
1889                 default:
1890                         printf("operation failed - diag=%d\n", diag);
1891                         break;
1892                 }
1893                 return;
1894         }
1895         rss_hf = rss_conf.rss_hf;
1896         if (rss_hf == 0) {
1897                 printf("RSS disabled\n");
1898                 return;
1899         }
1900         printf("RSS functions:\n ");
1901         for (i = 0; rss_type_table[i].str; i++) {
1902                 if (rss_hf & rss_type_table[i].rss_type)
1903                         printf("%s ", rss_type_table[i].str);
1904         }
1905         printf("\n");
1906         if (!show_rss_key)
1907                 return;
1908         printf("RSS key:\n");
1909         for (i = 0; i < hash_key_size; i++)
1910                 printf("%02X", rss_key[i]);
1911         printf("\n");
1912 }
1913
1914 void
1915 port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key,
1916                          uint hash_key_len)
1917 {
1918         struct rte_eth_rss_conf rss_conf;
1919         int diag;
1920         unsigned int i;
1921
1922         rss_conf.rss_key = NULL;
1923         rss_conf.rss_key_len = hash_key_len;
1924         rss_conf.rss_hf = 0;
1925         for (i = 0; rss_type_table[i].str; i++) {
1926                 if (!strcmp(rss_type_table[i].str, rss_type))
1927                         rss_conf.rss_hf = rss_type_table[i].rss_type;
1928         }
1929         diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
1930         if (diag == 0) {
1931                 rss_conf.rss_key = hash_key;
1932                 diag = rte_eth_dev_rss_hash_update(port_id, &rss_conf);
1933         }
1934         if (diag == 0)
1935                 return;
1936
1937         switch (diag) {
1938         case -ENODEV:
1939                 printf("port index %d invalid\n", port_id);
1940                 break;
1941         case -ENOTSUP:
1942                 printf("operation not supported by device\n");
1943                 break;
1944         default:
1945                 printf("operation failed - diag=%d\n", diag);
1946                 break;
1947         }
1948 }
1949
1950 /*
1951  * Setup forwarding configuration for each logical core.
1952  */
1953 static void
1954 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
1955 {
1956         streamid_t nb_fs_per_lcore;
1957         streamid_t nb_fs;
1958         streamid_t sm_id;
1959         lcoreid_t  nb_extra;
1960         lcoreid_t  nb_fc;
1961         lcoreid_t  nb_lc;
1962         lcoreid_t  lc_id;
1963
1964         nb_fs = cfg->nb_fwd_streams;
1965         nb_fc = cfg->nb_fwd_lcores;
1966         if (nb_fs <= nb_fc) {
1967                 nb_fs_per_lcore = 1;
1968                 nb_extra = 0;
1969         } else {
1970                 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
1971                 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
1972         }
1973
1974         nb_lc = (lcoreid_t) (nb_fc - nb_extra);
1975         sm_id = 0;
1976         for (lc_id = 0; lc_id < nb_lc; lc_id++) {
1977                 fwd_lcores[lc_id]->stream_idx = sm_id;
1978                 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
1979                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
1980         }
1981
1982         /*
1983          * Assign extra remaining streams, if any.
1984          */
1985         nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
1986         for (lc_id = 0; lc_id < nb_extra; lc_id++) {
1987                 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
1988                 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
1989                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
1990         }
1991 }
1992
1993 static portid_t
1994 fwd_topology_tx_port_get(portid_t rxp)
1995 {
1996         static int warning_once = 1;
1997
1998         RTE_ASSERT(rxp < cur_fwd_config.nb_fwd_ports);
1999
2000         switch (port_topology) {
2001         default:
2002         case PORT_TOPOLOGY_PAIRED:
2003                 if ((rxp & 0x1) == 0) {
2004                         if (rxp + 1 < cur_fwd_config.nb_fwd_ports)
2005                                 return rxp + 1;
2006                         if (warning_once) {
2007                                 printf("\nWarning! port-topology=paired"
2008                                        " and odd forward ports number,"
2009                                        " the last port will pair with"
2010                                        " itself.\n\n");
2011                                 warning_once = 0;
2012                         }
2013                         return rxp;
2014                 }
2015                 return rxp - 1;
2016         case PORT_TOPOLOGY_CHAINED:
2017                 return (rxp + 1) % cur_fwd_config.nb_fwd_ports;
2018         case PORT_TOPOLOGY_LOOP:
2019                 return rxp;
2020         }
2021 }
2022
2023 static void
2024 simple_fwd_config_setup(void)
2025 {
2026         portid_t i;
2027
2028         cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
2029         cur_fwd_config.nb_fwd_streams =
2030                 (streamid_t) cur_fwd_config.nb_fwd_ports;
2031
2032         /* reinitialize forwarding streams */
2033         init_fwd_streams();
2034
2035         /*
2036          * In the simple forwarding test, the number of forwarding cores
2037          * must be lower or equal to the number of forwarding ports.
2038          */
2039         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2040         if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
2041                 cur_fwd_config.nb_fwd_lcores =
2042                         (lcoreid_t) cur_fwd_config.nb_fwd_ports;
2043         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2044
2045         for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
2046                 fwd_streams[i]->rx_port   = fwd_ports_ids[i];
2047                 fwd_streams[i]->rx_queue  = 0;
2048                 fwd_streams[i]->tx_port   =
2049                                 fwd_ports_ids[fwd_topology_tx_port_get(i)];
2050                 fwd_streams[i]->tx_queue  = 0;
2051                 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
2052                 fwd_streams[i]->retry_enabled = retry_enabled;
2053         }
2054 }
2055
2056 /**
2057  * For the RSS forwarding test all streams distributed over lcores. Each stream
2058  * being composed of a RX queue to poll on a RX port for input messages,
2059  * associated with a TX queue of a TX port where to send forwarded packets.
2060  */
2061 static void
2062 rss_fwd_config_setup(void)
2063 {
2064         portid_t   rxp;
2065         portid_t   txp;
2066         queueid_t  rxq;
2067         queueid_t  nb_q;
2068         streamid_t  sm_id;
2069
2070         nb_q = nb_rxq;
2071         if (nb_q > nb_txq)
2072                 nb_q = nb_txq;
2073         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2074         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2075         cur_fwd_config.nb_fwd_streams =
2076                 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
2077
2078         if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2079                 cur_fwd_config.nb_fwd_lcores =
2080                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2081
2082         /* reinitialize forwarding streams */
2083         init_fwd_streams();
2084
2085         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2086         rxp = 0; rxq = 0;
2087         for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
2088                 struct fwd_stream *fs;
2089
2090                 fs = fwd_streams[sm_id];
2091                 txp = fwd_topology_tx_port_get(rxp);
2092                 fs->rx_port = fwd_ports_ids[rxp];
2093                 fs->rx_queue = rxq;
2094                 fs->tx_port = fwd_ports_ids[txp];
2095                 fs->tx_queue = rxq;
2096                 fs->peer_addr = fs->tx_port;
2097                 fs->retry_enabled = retry_enabled;
2098                 rxq = (queueid_t) (rxq + 1);
2099                 if (rxq < nb_q)
2100                         continue;
2101                 /*
2102                  * rxq == nb_q
2103                  * Restart from RX queue 0 on next RX port
2104                  */
2105                 rxq = 0;
2106                 rxp++;
2107         }
2108 }
2109
2110 /**
2111  * For the DCB forwarding test, each core is assigned on each traffic class.
2112  *
2113  * Each core is assigned a multi-stream, each stream being composed of
2114  * a RX queue to poll on a RX port for input messages, associated with
2115  * a TX queue of a TX port where to send forwarded packets. All RX and
2116  * TX queues are mapping to the same traffic class.
2117  * If VMDQ and DCB co-exist, each traffic class on different POOLs share
2118  * the same core
2119  */
2120 static void
2121 dcb_fwd_config_setup(void)
2122 {
2123         struct rte_eth_dcb_info rxp_dcb_info, txp_dcb_info;
2124         portid_t txp, rxp = 0;
2125         queueid_t txq, rxq = 0;
2126         lcoreid_t  lc_id;
2127         uint16_t nb_rx_queue, nb_tx_queue;
2128         uint16_t i, j, k, sm_id = 0;
2129         uint8_t tc = 0;
2130
2131         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2132         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2133         cur_fwd_config.nb_fwd_streams =
2134                 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2135
2136         /* reinitialize forwarding streams */
2137         init_fwd_streams();
2138         sm_id = 0;
2139         txp = 1;
2140         /* get the dcb info on the first RX and TX ports */
2141         (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2142         (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2143
2144         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2145                 fwd_lcores[lc_id]->stream_nb = 0;
2146                 fwd_lcores[lc_id]->stream_idx = sm_id;
2147                 for (i = 0; i < ETH_MAX_VMDQ_POOL; i++) {
2148                         /* if the nb_queue is zero, means this tc is
2149                          * not enabled on the POOL
2150                          */
2151                         if (rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue == 0)
2152                                 break;
2153                         k = fwd_lcores[lc_id]->stream_nb +
2154                                 fwd_lcores[lc_id]->stream_idx;
2155                         rxq = rxp_dcb_info.tc_queue.tc_rxq[i][tc].base;
2156                         txq = txp_dcb_info.tc_queue.tc_txq[i][tc].base;
2157                         nb_rx_queue = txp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2158                         nb_tx_queue = txp_dcb_info.tc_queue.tc_txq[i][tc].nb_queue;
2159                         for (j = 0; j < nb_rx_queue; j++) {
2160                                 struct fwd_stream *fs;
2161
2162                                 fs = fwd_streams[k + j];
2163                                 fs->rx_port = fwd_ports_ids[rxp];
2164                                 fs->rx_queue = rxq + j;
2165                                 fs->tx_port = fwd_ports_ids[txp];
2166                                 fs->tx_queue = txq + j % nb_tx_queue;
2167                                 fs->peer_addr = fs->tx_port;
2168                                 fs->retry_enabled = retry_enabled;
2169                         }
2170                         fwd_lcores[lc_id]->stream_nb +=
2171                                 rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2172                 }
2173                 sm_id = (streamid_t) (sm_id + fwd_lcores[lc_id]->stream_nb);
2174
2175                 tc++;
2176                 if (tc < rxp_dcb_info.nb_tcs)
2177                         continue;
2178                 /* Restart from TC 0 on next RX port */
2179                 tc = 0;
2180                 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
2181                         rxp = (portid_t)
2182                                 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
2183                 else
2184                         rxp++;
2185                 if (rxp >= nb_fwd_ports)
2186                         return;
2187                 /* get the dcb information on next RX and TX ports */
2188                 if ((rxp & 0x1) == 0)
2189                         txp = (portid_t) (rxp + 1);
2190                 else
2191                         txp = (portid_t) (rxp - 1);
2192                 rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2193                 rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2194         }
2195 }
2196
2197 static void
2198 icmp_echo_config_setup(void)
2199 {
2200         portid_t  rxp;
2201         queueid_t rxq;
2202         lcoreid_t lc_id;
2203         uint16_t  sm_id;
2204
2205         if ((nb_txq * nb_fwd_ports) < nb_fwd_lcores)
2206                 cur_fwd_config.nb_fwd_lcores = (lcoreid_t)
2207                         (nb_txq * nb_fwd_ports);
2208         else
2209                 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2210         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2211         cur_fwd_config.nb_fwd_streams =
2212                 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2213         if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2214                 cur_fwd_config.nb_fwd_lcores =
2215                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2216         if (verbose_level > 0) {
2217                 printf("%s fwd_cores=%d fwd_ports=%d fwd_streams=%d\n",
2218                        __FUNCTION__,
2219                        cur_fwd_config.nb_fwd_lcores,
2220                        cur_fwd_config.nb_fwd_ports,
2221                        cur_fwd_config.nb_fwd_streams);
2222         }
2223
2224         /* reinitialize forwarding streams */
2225         init_fwd_streams();
2226         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2227         rxp = 0; rxq = 0;
2228         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2229                 if (verbose_level > 0)
2230                         printf("  core=%d: \n", lc_id);
2231                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2232                         struct fwd_stream *fs;
2233                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2234                         fs->rx_port = fwd_ports_ids[rxp];
2235                         fs->rx_queue = rxq;
2236                         fs->tx_port = fs->rx_port;
2237                         fs->tx_queue = rxq;
2238                         fs->peer_addr = fs->tx_port;
2239                         fs->retry_enabled = retry_enabled;
2240                         if (verbose_level > 0)
2241                                 printf("  stream=%d port=%d rxq=%d txq=%d\n",
2242                                        sm_id, fs->rx_port, fs->rx_queue,
2243                                        fs->tx_queue);
2244                         rxq = (queueid_t) (rxq + 1);
2245                         if (rxq == nb_rxq) {
2246                                 rxq = 0;
2247                                 rxp = (portid_t) (rxp + 1);
2248                         }
2249                 }
2250         }
2251 }
2252
2253 void
2254 fwd_config_setup(void)
2255 {
2256         cur_fwd_config.fwd_eng = cur_fwd_eng;
2257         if (strcmp(cur_fwd_eng->fwd_mode_name, "icmpecho") == 0) {
2258                 icmp_echo_config_setup();
2259                 return;
2260         }
2261         if ((nb_rxq > 1) && (nb_txq > 1)){
2262                 if (dcb_config)
2263                         dcb_fwd_config_setup();
2264                 else
2265                         rss_fwd_config_setup();
2266         }
2267         else
2268                 simple_fwd_config_setup();
2269 }
2270
2271 void
2272 pkt_fwd_config_display(struct fwd_config *cfg)
2273 {
2274         struct fwd_stream *fs;
2275         lcoreid_t  lc_id;
2276         streamid_t sm_id;
2277
2278         printf("%s packet forwarding%s - ports=%d - cores=%d - streams=%d - "
2279                 "NUMA support %s, MP over anonymous pages %s\n",
2280                 cfg->fwd_eng->fwd_mode_name,
2281                 retry_enabled == 0 ? "" : " with retry",
2282                 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
2283                 numa_support == 1 ? "enabled" : "disabled",
2284                 mp_anon != 0 ? "enabled" : "disabled");
2285
2286         if (retry_enabled)
2287                 printf("TX retry num: %u, delay between TX retries: %uus\n",
2288                         burst_tx_retry_num, burst_tx_delay_time);
2289         for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
2290                 printf("Logical Core %u (socket %u) forwards packets on "
2291                        "%d streams:",
2292                        fwd_lcores_cpuids[lc_id],
2293                        rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
2294                        fwd_lcores[lc_id]->stream_nb);
2295                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2296                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2297                         printf("\n  RX P=%d/Q=%d (socket %u) -> TX "
2298                                "P=%d/Q=%d (socket %u) ",
2299                                fs->rx_port, fs->rx_queue,
2300                                ports[fs->rx_port].socket_id,
2301                                fs->tx_port, fs->tx_queue,
2302                                ports[fs->tx_port].socket_id);
2303                         print_ethaddr("peer=",
2304                                       &peer_eth_addrs[fs->peer_addr]);
2305                 }
2306                 printf("\n");
2307         }
2308         printf("\n");
2309 }
2310
2311 void
2312 set_fwd_eth_peer(portid_t port_id, char *peer_addr)
2313 {
2314         uint8_t c, new_peer_addr[6];
2315         if (!rte_eth_dev_is_valid_port(port_id)) {
2316                 printf("Error: Invalid port number %i\n", port_id);
2317                 return;
2318         }
2319         if (cmdline_parse_etheraddr(NULL, peer_addr, &new_peer_addr,
2320                                         sizeof(new_peer_addr)) < 0) {
2321                 printf("Error: Invalid ethernet address: %s\n", peer_addr);
2322                 return;
2323         }
2324         for (c = 0; c < 6; c++)
2325                 peer_eth_addrs[port_id].addr_bytes[c] =
2326                         new_peer_addr[c];
2327 }
2328
2329 int
2330 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
2331 {
2332         unsigned int i;
2333         unsigned int lcore_cpuid;
2334         int record_now;
2335
2336         record_now = 0;
2337  again:
2338         for (i = 0; i < nb_lc; i++) {
2339                 lcore_cpuid = lcorelist[i];
2340                 if (! rte_lcore_is_enabled(lcore_cpuid)) {
2341                         printf("lcore %u not enabled\n", lcore_cpuid);
2342                         return -1;
2343                 }
2344                 if (lcore_cpuid == rte_get_master_lcore()) {
2345                         printf("lcore %u cannot be masked on for running "
2346                                "packet forwarding, which is the master lcore "
2347                                "and reserved for command line parsing only\n",
2348                                lcore_cpuid);
2349                         return -1;
2350                 }
2351                 if (record_now)
2352                         fwd_lcores_cpuids[i] = lcore_cpuid;
2353         }
2354         if (record_now == 0) {
2355                 record_now = 1;
2356                 goto again;
2357         }
2358         nb_cfg_lcores = (lcoreid_t) nb_lc;
2359         if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
2360                 printf("previous number of forwarding cores %u - changed to "
2361                        "number of configured cores %u\n",
2362                        (unsigned int) nb_fwd_lcores, nb_lc);
2363                 nb_fwd_lcores = (lcoreid_t) nb_lc;
2364         }
2365
2366         return 0;
2367 }
2368
2369 int
2370 set_fwd_lcores_mask(uint64_t lcoremask)
2371 {
2372         unsigned int lcorelist[64];
2373         unsigned int nb_lc;
2374         unsigned int i;
2375
2376         if (lcoremask == 0) {
2377                 printf("Invalid NULL mask of cores\n");
2378                 return -1;
2379         }
2380         nb_lc = 0;
2381         for (i = 0; i < 64; i++) {
2382                 if (! ((uint64_t)(1ULL << i) & lcoremask))
2383                         continue;
2384                 lcorelist[nb_lc++] = i;
2385         }
2386         return set_fwd_lcores_list(lcorelist, nb_lc);
2387 }
2388
2389 void
2390 set_fwd_lcores_number(uint16_t nb_lc)
2391 {
2392         if (nb_lc > nb_cfg_lcores) {
2393                 printf("nb fwd cores %u > %u (max. number of configured "
2394                        "lcores) - ignored\n",
2395                        (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
2396                 return;
2397         }
2398         nb_fwd_lcores = (lcoreid_t) nb_lc;
2399         printf("Number of forwarding cores set to %u\n",
2400                (unsigned int) nb_fwd_lcores);
2401 }
2402
2403 void
2404 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
2405 {
2406         unsigned int i;
2407         portid_t port_id;
2408         int record_now;
2409
2410         record_now = 0;
2411  again:
2412         for (i = 0; i < nb_pt; i++) {
2413                 port_id = (portid_t) portlist[i];
2414                 if (port_id_is_invalid(port_id, ENABLED_WARN))
2415                         return;
2416                 if (record_now)
2417                         fwd_ports_ids[i] = port_id;
2418         }
2419         if (record_now == 0) {
2420                 record_now = 1;
2421                 goto again;
2422         }
2423         nb_cfg_ports = (portid_t) nb_pt;
2424         if (nb_fwd_ports != (portid_t) nb_pt) {
2425                 printf("previous number of forwarding ports %u - changed to "
2426                        "number of configured ports %u\n",
2427                        (unsigned int) nb_fwd_ports, nb_pt);
2428                 nb_fwd_ports = (portid_t) nb_pt;
2429         }
2430 }
2431
2432 void
2433 set_fwd_ports_mask(uint64_t portmask)
2434 {
2435         unsigned int portlist[64];
2436         unsigned int nb_pt;
2437         unsigned int i;
2438
2439         if (portmask == 0) {
2440                 printf("Invalid NULL mask of ports\n");
2441                 return;
2442         }
2443         nb_pt = 0;
2444         RTE_ETH_FOREACH_DEV(i) {
2445                 if (! ((uint64_t)(1ULL << i) & portmask))
2446                         continue;
2447                 portlist[nb_pt++] = i;
2448         }
2449         set_fwd_ports_list(portlist, nb_pt);
2450 }
2451
2452 void
2453 set_fwd_ports_number(uint16_t nb_pt)
2454 {
2455         if (nb_pt > nb_cfg_ports) {
2456                 printf("nb fwd ports %u > %u (number of configured "
2457                        "ports) - ignored\n",
2458                        (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
2459                 return;
2460         }
2461         nb_fwd_ports = (portid_t) nb_pt;
2462         printf("Number of forwarding ports set to %u\n",
2463                (unsigned int) nb_fwd_ports);
2464 }
2465
2466 int
2467 port_is_forwarding(portid_t port_id)
2468 {
2469         unsigned int i;
2470
2471         if (port_id_is_invalid(port_id, ENABLED_WARN))
2472                 return -1;
2473
2474         for (i = 0; i < nb_fwd_ports; i++) {
2475                 if (fwd_ports_ids[i] == port_id)
2476                         return 1;
2477         }
2478
2479         return 0;
2480 }
2481
2482 void
2483 set_nb_pkt_per_burst(uint16_t nb)
2484 {
2485         if (nb > MAX_PKT_BURST) {
2486                 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
2487                        " ignored\n",
2488                        (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
2489                 return;
2490         }
2491         nb_pkt_per_burst = nb;
2492         printf("Number of packets per burst set to %u\n",
2493                (unsigned int) nb_pkt_per_burst);
2494 }
2495
2496 static const char *
2497 tx_split_get_name(enum tx_pkt_split split)
2498 {
2499         uint32_t i;
2500
2501         for (i = 0; i != RTE_DIM(tx_split_name); i++) {
2502                 if (tx_split_name[i].split == split)
2503                         return tx_split_name[i].name;
2504         }
2505         return NULL;
2506 }
2507
2508 void
2509 set_tx_pkt_split(const char *name)
2510 {
2511         uint32_t i;
2512
2513         for (i = 0; i != RTE_DIM(tx_split_name); i++) {
2514                 if (strcmp(tx_split_name[i].name, name) == 0) {
2515                         tx_pkt_split = tx_split_name[i].split;
2516                         return;
2517                 }
2518         }
2519         printf("unknown value: \"%s\"\n", name);
2520 }
2521
2522 void
2523 show_tx_pkt_segments(void)
2524 {
2525         uint32_t i, n;
2526         const char *split;
2527
2528         n = tx_pkt_nb_segs;
2529         split = tx_split_get_name(tx_pkt_split);
2530
2531         printf("Number of segments: %u\n", n);
2532         printf("Segment sizes: ");
2533         for (i = 0; i != n - 1; i++)
2534                 printf("%hu,", tx_pkt_seg_lengths[i]);
2535         printf("%hu\n", tx_pkt_seg_lengths[i]);
2536         printf("Split packet: %s\n", split);
2537 }
2538
2539 void
2540 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
2541 {
2542         uint16_t tx_pkt_len;
2543         unsigned i;
2544
2545         if (nb_segs >= (unsigned) nb_txd) {
2546                 printf("nb segments per TX packets=%u >= nb_txd=%u - ignored\n",
2547                        nb_segs, (unsigned int) nb_txd);
2548                 return;
2549         }
2550
2551         /*
2552          * Check that each segment length is greater or equal than
2553          * the mbuf data sise.
2554          * Check also that the total packet length is greater or equal than the
2555          * size of an empty UDP/IP packet (sizeof(struct ether_hdr) + 20 + 8).
2556          */
2557         tx_pkt_len = 0;
2558         for (i = 0; i < nb_segs; i++) {
2559                 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
2560                         printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
2561                                i, seg_lengths[i], (unsigned) mbuf_data_size);
2562                         return;
2563                 }
2564                 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
2565         }
2566         if (tx_pkt_len < (sizeof(struct ether_hdr) + 20 + 8)) {
2567                 printf("total packet length=%u < %d - give up\n",
2568                                 (unsigned) tx_pkt_len,
2569                                 (int)(sizeof(struct ether_hdr) + 20 + 8));
2570                 return;
2571         }
2572
2573         for (i = 0; i < nb_segs; i++)
2574                 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
2575
2576         tx_pkt_length  = tx_pkt_len;
2577         tx_pkt_nb_segs = (uint8_t) nb_segs;
2578 }
2579
2580 void
2581 setup_gro(const char *onoff, portid_t port_id)
2582 {
2583         if (!rte_eth_dev_is_valid_port(port_id)) {
2584                 printf("invalid port id %u\n", port_id);
2585                 return;
2586         }
2587         if (test_done == 0) {
2588                 printf("Before enable/disable GRO,"
2589                                 " please stop forwarding first\n");
2590                 return;
2591         }
2592         if (strcmp(onoff, "on") == 0) {
2593                 if (gro_ports[port_id].enable != 0) {
2594                         printf("Port %u has enabled GRO. Please"
2595                                         " disable GRO first\n", port_id);
2596                         return;
2597                 }
2598                 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
2599                         gro_ports[port_id].param.gro_types = RTE_GRO_TCP_IPV4;
2600                         gro_ports[port_id].param.max_flow_num =
2601                                 GRO_DEFAULT_FLOW_NUM;
2602                         gro_ports[port_id].param.max_item_per_flow =
2603                                 GRO_DEFAULT_ITEM_NUM_PER_FLOW;
2604                 }
2605                 gro_ports[port_id].enable = 1;
2606         } else {
2607                 if (gro_ports[port_id].enable == 0) {
2608                         printf("Port %u has disabled GRO\n", port_id);
2609                         return;
2610                 }
2611                 gro_ports[port_id].enable = 0;
2612         }
2613 }
2614
2615 void
2616 setup_gro_flush_cycles(uint8_t cycles)
2617 {
2618         if (test_done == 0) {
2619                 printf("Before change flush interval for GRO,"
2620                                 " please stop forwarding first.\n");
2621                 return;
2622         }
2623
2624         if (cycles > GRO_MAX_FLUSH_CYCLES || cycles <
2625                         GRO_DEFAULT_FLUSH_CYCLES) {
2626                 printf("The flushing cycle be in the range"
2627                                 " of 1 to %u. Revert to the default"
2628                                 " value %u.\n",
2629                                 GRO_MAX_FLUSH_CYCLES,
2630                                 GRO_DEFAULT_FLUSH_CYCLES);
2631                 cycles = GRO_DEFAULT_FLUSH_CYCLES;
2632         }
2633
2634         gro_flush_cycles = cycles;
2635 }
2636
2637 void
2638 show_gro(portid_t port_id)
2639 {
2640         struct rte_gro_param *param;
2641         uint32_t max_pkts_num;
2642
2643         param = &gro_ports[port_id].param;
2644
2645         if (!rte_eth_dev_is_valid_port(port_id)) {
2646                 printf("Invalid port id %u.\n", port_id);
2647                 return;
2648         }
2649         if (gro_ports[port_id].enable) {
2650                 printf("GRO type: TCP/IPv4\n");
2651                 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
2652                         max_pkts_num = param->max_flow_num *
2653                                 param->max_item_per_flow;
2654                 } else
2655                         max_pkts_num = MAX_PKT_BURST * GRO_MAX_FLUSH_CYCLES;
2656                 printf("Max number of packets to perform GRO: %u\n",
2657                                 max_pkts_num);
2658                 printf("Flushing cycles: %u\n", gro_flush_cycles);
2659         } else
2660                 printf("Port %u doesn't enable GRO.\n", port_id);
2661 }
2662
2663 void
2664 setup_gso(const char *mode, portid_t port_id)
2665 {
2666         if (!rte_eth_dev_is_valid_port(port_id)) {
2667                 printf("invalid port id %u\n", port_id);
2668                 return;
2669         }
2670         if (strcmp(mode, "on") == 0) {
2671                 if (test_done == 0) {
2672                         printf("before enabling GSO,"
2673                                         " please stop forwarding first\n");
2674                         return;
2675                 }
2676                 gso_ports[port_id].enable = 1;
2677         } else if (strcmp(mode, "off") == 0) {
2678                 if (test_done == 0) {
2679                         printf("before disabling GSO,"
2680                                         " please stop forwarding first\n");
2681                         return;
2682                 }
2683                 gso_ports[port_id].enable = 0;
2684         }
2685 }
2686
2687 char*
2688 list_pkt_forwarding_modes(void)
2689 {
2690         static char fwd_modes[128] = "";
2691         const char *separator = "|";
2692         struct fwd_engine *fwd_eng;
2693         unsigned i = 0;
2694
2695         if (strlen (fwd_modes) == 0) {
2696                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
2697                         strncat(fwd_modes, fwd_eng->fwd_mode_name,
2698                                         sizeof(fwd_modes) - strlen(fwd_modes) - 1);
2699                         strncat(fwd_modes, separator,
2700                                         sizeof(fwd_modes) - strlen(fwd_modes) - 1);
2701                 }
2702                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
2703         }
2704
2705         return fwd_modes;
2706 }
2707
2708 char*
2709 list_pkt_forwarding_retry_modes(void)
2710 {
2711         static char fwd_modes[128] = "";
2712         const char *separator = "|";
2713         struct fwd_engine *fwd_eng;
2714         unsigned i = 0;
2715
2716         if (strlen(fwd_modes) == 0) {
2717                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
2718                         if (fwd_eng == &rx_only_engine)
2719                                 continue;
2720                         strncat(fwd_modes, fwd_eng->fwd_mode_name,
2721                                         sizeof(fwd_modes) -
2722                                         strlen(fwd_modes) - 1);
2723                         strncat(fwd_modes, separator,
2724                                         sizeof(fwd_modes) -
2725                                         strlen(fwd_modes) - 1);
2726                 }
2727                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
2728         }
2729
2730         return fwd_modes;
2731 }
2732
2733 void
2734 set_pkt_forwarding_mode(const char *fwd_mode_name)
2735 {
2736         struct fwd_engine *fwd_eng;
2737         unsigned i;
2738
2739         i = 0;
2740         while ((fwd_eng = fwd_engines[i]) != NULL) {
2741                 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
2742                         printf("Set %s packet forwarding mode%s\n",
2743                                fwd_mode_name,
2744                                retry_enabled == 0 ? "" : " with retry");
2745                         cur_fwd_eng = fwd_eng;
2746                         return;
2747                 }
2748                 i++;
2749         }
2750         printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
2751 }
2752
2753 void
2754 set_verbose_level(uint16_t vb_level)
2755 {
2756         printf("Change verbose level from %u to %u\n",
2757                (unsigned int) verbose_level, (unsigned int) vb_level);
2758         verbose_level = vb_level;
2759 }
2760
2761 void
2762 vlan_extend_set(portid_t port_id, int on)
2763 {
2764         int diag;
2765         int vlan_offload;
2766         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2767
2768         if (port_id_is_invalid(port_id, ENABLED_WARN))
2769                 return;
2770
2771         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2772
2773         if (on) {
2774                 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
2775                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
2776         } else {
2777                 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
2778                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND;
2779         }
2780
2781         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2782         if (diag < 0)
2783                 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
2784                "diag=%d\n", port_id, on, diag);
2785         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2786 }
2787
2788 void
2789 rx_vlan_strip_set(portid_t port_id, int on)
2790 {
2791         int diag;
2792         int vlan_offload;
2793         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2794
2795         if (port_id_is_invalid(port_id, ENABLED_WARN))
2796                 return;
2797
2798         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2799
2800         if (on) {
2801                 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
2802                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
2803         } else {
2804                 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
2805                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2806         }
2807
2808         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2809         if (diag < 0)
2810                 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
2811                "diag=%d\n", port_id, on, diag);
2812         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2813 }
2814
2815 void
2816 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
2817 {
2818         int diag;
2819
2820         if (port_id_is_invalid(port_id, ENABLED_WARN))
2821                 return;
2822
2823         diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
2824         if (diag < 0)
2825                 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
2826                "diag=%d\n", port_id, queue_id, on, diag);
2827 }
2828
2829 void
2830 rx_vlan_filter_set(portid_t port_id, int on)
2831 {
2832         int diag;
2833         int vlan_offload;
2834         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
2835
2836         if (port_id_is_invalid(port_id, ENABLED_WARN))
2837                 return;
2838
2839         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2840
2841         if (on) {
2842                 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
2843                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
2844         } else {
2845                 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
2846                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER;
2847         }
2848
2849         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
2850         if (diag < 0)
2851                 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
2852                "diag=%d\n", port_id, on, diag);
2853         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
2854 }
2855
2856 int
2857 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
2858 {
2859         int diag;
2860
2861         if (port_id_is_invalid(port_id, ENABLED_WARN))
2862                 return 1;
2863         if (vlan_id_is_invalid(vlan_id))
2864                 return 1;
2865         diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
2866         if (diag == 0)
2867                 return 0;
2868         printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
2869                "diag=%d\n",
2870                port_id, vlan_id, on, diag);
2871         return -1;
2872 }
2873
2874 void
2875 rx_vlan_all_filter_set(portid_t port_id, int on)
2876 {
2877         uint16_t vlan_id;
2878
2879         if (port_id_is_invalid(port_id, ENABLED_WARN))
2880                 return;
2881         for (vlan_id = 0; vlan_id < 4096; vlan_id++) {
2882                 if (rx_vft_set(port_id, vlan_id, on))
2883                         break;
2884         }
2885 }
2886
2887 void
2888 vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type, uint16_t tp_id)
2889 {
2890         int diag;
2891
2892         if (port_id_is_invalid(port_id, ENABLED_WARN))
2893                 return;
2894
2895         diag = rte_eth_dev_set_vlan_ether_type(port_id, vlan_type, tp_id);
2896         if (diag == 0)
2897                 return;
2898
2899         printf("tx_vlan_tpid_set(port_pi=%d, vlan_type=%d, tpid=%d) failed "
2900                "diag=%d\n",
2901                port_id, vlan_type, tp_id, diag);
2902 }
2903
2904 void
2905 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
2906 {
2907         int vlan_offload;
2908         struct rte_eth_dev_info dev_info;
2909
2910         if (port_id_is_invalid(port_id, ENABLED_WARN))
2911                 return;
2912         if (vlan_id_is_invalid(vlan_id))
2913                 return;
2914
2915         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2916         if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD) {
2917                 printf("Error, as QinQ has been enabled.\n");
2918                 return;
2919         }
2920         rte_eth_dev_info_get(port_id, &dev_info);
2921         if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) == 0) {
2922                 printf("Error: vlan insert is not supported by port %d\n",
2923                         port_id);
2924                 return;
2925         }
2926
2927         tx_vlan_reset(port_id);
2928         ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
2929         ports[port_id].tx_vlan_id = vlan_id;
2930 }
2931
2932 void
2933 tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer)
2934 {
2935         int vlan_offload;
2936         struct rte_eth_dev_info dev_info;
2937
2938         if (port_id_is_invalid(port_id, ENABLED_WARN))
2939                 return;
2940         if (vlan_id_is_invalid(vlan_id))
2941                 return;
2942         if (vlan_id_is_invalid(vlan_id_outer))
2943                 return;
2944
2945         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
2946         if (!(vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)) {
2947                 printf("Error, as QinQ hasn't been enabled.\n");
2948                 return;
2949         }
2950         rte_eth_dev_info_get(port_id, &dev_info);
2951         if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) == 0) {
2952                 printf("Error: qinq insert not supported by port %d\n",
2953                         port_id);
2954                 return;
2955         }
2956
2957         tx_vlan_reset(port_id);
2958         ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_QINQ_INSERT;
2959         ports[port_id].tx_vlan_id = vlan_id;
2960         ports[port_id].tx_vlan_id_outer = vlan_id_outer;
2961 }
2962
2963 void
2964 tx_vlan_reset(portid_t port_id)
2965 {
2966         if (port_id_is_invalid(port_id, ENABLED_WARN))
2967                 return;
2968         ports[port_id].dev_conf.txmode.offloads &=
2969                                 ~(DEV_TX_OFFLOAD_VLAN_INSERT |
2970                                   DEV_TX_OFFLOAD_QINQ_INSERT);
2971         ports[port_id].tx_vlan_id = 0;
2972         ports[port_id].tx_vlan_id_outer = 0;
2973 }
2974
2975 void
2976 tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
2977 {
2978         if (port_id_is_invalid(port_id, ENABLED_WARN))
2979                 return;
2980
2981         rte_eth_dev_set_vlan_pvid(port_id, vlan_id, on);
2982 }
2983
2984 void
2985 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
2986 {
2987         uint16_t i;
2988         uint8_t existing_mapping_found = 0;
2989
2990         if (port_id_is_invalid(port_id, ENABLED_WARN))
2991                 return;
2992
2993         if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
2994                 return;
2995
2996         if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
2997                 printf("map_value not in required range 0..%d\n",
2998                                 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
2999                 return;
3000         }
3001
3002         if (!is_rx) { /*then tx*/
3003                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
3004                         if ((tx_queue_stats_mappings[i].port_id == port_id) &&
3005                             (tx_queue_stats_mappings[i].queue_id == queue_id)) {
3006                                 tx_queue_stats_mappings[i].stats_counter_id = map_value;
3007                                 existing_mapping_found = 1;
3008                                 break;
3009                         }
3010                 }
3011                 if (!existing_mapping_found) { /* A new additional mapping... */
3012                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
3013                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
3014                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
3015                         nb_tx_queue_stats_mappings++;
3016                 }
3017         }
3018         else { /*rx*/
3019                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
3020                         if ((rx_queue_stats_mappings[i].port_id == port_id) &&
3021                             (rx_queue_stats_mappings[i].queue_id == queue_id)) {
3022                                 rx_queue_stats_mappings[i].stats_counter_id = map_value;
3023                                 existing_mapping_found = 1;
3024                                 break;
3025                         }
3026                 }
3027                 if (!existing_mapping_found) { /* A new additional mapping... */
3028                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
3029                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
3030                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
3031                         nb_rx_queue_stats_mappings++;
3032                 }
3033         }
3034 }
3035
3036 void
3037 set_xstats_hide_zero(uint8_t on_off)
3038 {
3039         xstats_hide_zero = on_off;
3040 }
3041
3042 static inline void
3043 print_fdir_mask(struct rte_eth_fdir_masks *mask)
3044 {
3045         printf("\n    vlan_tci: 0x%04x", rte_be_to_cpu_16(mask->vlan_tci_mask));
3046
3047         if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3048                 printf(", mac_addr: 0x%02x, tunnel_type: 0x%01x,"
3049                         " tunnel_id: 0x%08x",
3050                         mask->mac_addr_byte_mask, mask->tunnel_type_mask,
3051                         rte_be_to_cpu_32(mask->tunnel_id_mask));
3052         else if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
3053                 printf(", src_ipv4: 0x%08x, dst_ipv4: 0x%08x",
3054                         rte_be_to_cpu_32(mask->ipv4_mask.src_ip),
3055                         rte_be_to_cpu_32(mask->ipv4_mask.dst_ip));
3056
3057                 printf("\n    src_port: 0x%04x, dst_port: 0x%04x",
3058                         rte_be_to_cpu_16(mask->src_port_mask),
3059                         rte_be_to_cpu_16(mask->dst_port_mask));
3060
3061                 printf("\n    src_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3062                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[0]),
3063                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[1]),
3064                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[2]),
3065                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[3]));
3066
3067                 printf("\n    dst_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3068                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[0]),
3069                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[1]),
3070                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[2]),
3071                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[3]));
3072         }
3073
3074         printf("\n");
3075 }
3076
3077 static inline void
3078 print_fdir_flex_payload(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3079 {
3080         struct rte_eth_flex_payload_cfg *cfg;
3081         uint32_t i, j;
3082
3083         for (i = 0; i < flex_conf->nb_payloads; i++) {
3084                 cfg = &flex_conf->flex_set[i];
3085                 if (cfg->type == RTE_ETH_RAW_PAYLOAD)
3086                         printf("\n    RAW:  ");
3087                 else if (cfg->type == RTE_ETH_L2_PAYLOAD)
3088                         printf("\n    L2_PAYLOAD:  ");
3089                 else if (cfg->type == RTE_ETH_L3_PAYLOAD)
3090                         printf("\n    L3_PAYLOAD:  ");
3091                 else if (cfg->type == RTE_ETH_L4_PAYLOAD)
3092                         printf("\n    L4_PAYLOAD:  ");
3093                 else
3094                         printf("\n    UNKNOWN PAYLOAD(%u):  ", cfg->type);
3095                 for (j = 0; j < num; j++)
3096                         printf("  %-5u", cfg->src_offset[j]);
3097         }
3098         printf("\n");
3099 }
3100
3101 static char *
3102 flowtype_to_str(uint16_t flow_type)
3103 {
3104         struct flow_type_info {
3105                 char str[32];
3106                 uint16_t ftype;
3107         };
3108
3109         uint8_t i;
3110         static struct flow_type_info flowtype_str_table[] = {
3111                 {"raw", RTE_ETH_FLOW_RAW},
3112                 {"ipv4", RTE_ETH_FLOW_IPV4},
3113                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
3114                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
3115                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
3116                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
3117                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
3118                 {"ipv6", RTE_ETH_FLOW_IPV6},
3119                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
3120                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
3121                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
3122                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
3123                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
3124                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
3125                 {"port", RTE_ETH_FLOW_PORT},
3126                 {"vxlan", RTE_ETH_FLOW_VXLAN},
3127                 {"geneve", RTE_ETH_FLOW_GENEVE},
3128                 {"nvgre", RTE_ETH_FLOW_NVGRE},
3129         };
3130
3131         for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
3132                 if (flowtype_str_table[i].ftype == flow_type)
3133                         return flowtype_str_table[i].str;
3134         }
3135
3136         return NULL;
3137 }
3138
3139 static inline void
3140 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3141 {
3142         struct rte_eth_fdir_flex_mask *mask;
3143         uint32_t i, j;
3144         char *p;
3145
3146         for (i = 0; i < flex_conf->nb_flexmasks; i++) {
3147                 mask = &flex_conf->flex_mask[i];
3148                 p = flowtype_to_str(mask->flow_type);
3149                 printf("\n    %s:\t", p ? p : "unknown");
3150                 for (j = 0; j < num; j++)
3151                         printf(" %02x", mask->mask[j]);
3152         }
3153         printf("\n");
3154 }
3155
3156 static inline void
3157 print_fdir_flow_type(uint32_t flow_types_mask)
3158 {
3159         int i;
3160         char *p;
3161
3162         for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
3163                 if (!(flow_types_mask & (1 << i)))
3164                         continue;
3165                 p = flowtype_to_str(i);
3166                 if (p)
3167                         printf(" %s", p);
3168                 else
3169                         printf(" unknown");
3170         }
3171         printf("\n");
3172 }
3173
3174 void
3175 fdir_get_infos(portid_t port_id)
3176 {
3177         struct rte_eth_fdir_stats fdir_stat;
3178         struct rte_eth_fdir_info fdir_info;
3179         int ret;
3180
3181         static const char *fdir_stats_border = "########################";
3182
3183         if (port_id_is_invalid(port_id, ENABLED_WARN))
3184                 return;
3185         ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
3186         if (ret < 0) {
3187                 printf("\n FDIR is not supported on port %-2d\n",
3188                         port_id);
3189                 return;
3190         }
3191
3192         memset(&fdir_info, 0, sizeof(fdir_info));
3193         rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
3194                                RTE_ETH_FILTER_INFO, &fdir_info);
3195         memset(&fdir_stat, 0, sizeof(fdir_stat));
3196         rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
3197                                RTE_ETH_FILTER_STATS, &fdir_stat);
3198         printf("\n  %s FDIR infos for port %-2d     %s\n",
3199                fdir_stats_border, port_id, fdir_stats_border);
3200         printf("  MODE: ");
3201         if (fdir_info.mode == RTE_FDIR_MODE_PERFECT)
3202                 printf("  PERFECT\n");
3203         else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN)
3204                 printf("  PERFECT-MAC-VLAN\n");
3205         else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3206                 printf("  PERFECT-TUNNEL\n");
3207         else if (fdir_info.mode == RTE_FDIR_MODE_SIGNATURE)
3208                 printf("  SIGNATURE\n");
3209         else
3210                 printf("  DISABLE\n");
3211         if (fdir_info.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN
3212                 && fdir_info.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) {
3213                 printf("  SUPPORTED FLOW TYPE: ");
3214                 print_fdir_flow_type(fdir_info.flow_types_mask[0]);
3215         }
3216         printf("  FLEX PAYLOAD INFO:\n");
3217         printf("  max_len:       %-10"PRIu32"  payload_limit: %-10"PRIu32"\n"
3218                "  payload_unit:  %-10"PRIu32"  payload_seg:   %-10"PRIu32"\n"
3219                "  bitmask_unit:  %-10"PRIu32"  bitmask_num:   %-10"PRIu32"\n",
3220                 fdir_info.max_flexpayload, fdir_info.flex_payload_limit,
3221                 fdir_info.flex_payload_unit,
3222                 fdir_info.max_flex_payload_segment_num,
3223                 fdir_info.flex_bitmask_unit, fdir_info.max_flex_bitmask_num);
3224         printf("  MASK: ");
3225         print_fdir_mask(&fdir_info.mask);
3226         if (fdir_info.flex_conf.nb_payloads > 0) {
3227                 printf("  FLEX PAYLOAD SRC OFFSET:");
3228                 print_fdir_flex_payload(&fdir_info.flex_conf, fdir_info.max_flexpayload);
3229         }
3230         if (fdir_info.flex_conf.nb_flexmasks > 0) {
3231                 printf("  FLEX MASK CFG:");
3232                 print_fdir_flex_mask(&fdir_info.flex_conf, fdir_info.max_flexpayload);
3233         }
3234         printf("  guarant_count: %-10"PRIu32"  best_count:    %"PRIu32"\n",
3235                fdir_stat.guarant_cnt, fdir_stat.best_cnt);
3236         printf("  guarant_space: %-10"PRIu32"  best_space:    %"PRIu32"\n",
3237                fdir_info.guarant_spc, fdir_info.best_spc);
3238         printf("  collision:     %-10"PRIu32"  free:          %"PRIu32"\n"
3239                "  maxhash:       %-10"PRIu32"  maxlen:        %"PRIu32"\n"
3240                "  add:           %-10"PRIu64"  remove:        %"PRIu64"\n"
3241                "  f_add:         %-10"PRIu64"  f_remove:      %"PRIu64"\n",
3242                fdir_stat.collision, fdir_stat.free,
3243                fdir_stat.maxhash, fdir_stat.maxlen,
3244                fdir_stat.add, fdir_stat.remove,
3245                fdir_stat.f_add, fdir_stat.f_remove);
3246         printf("  %s############################%s\n",
3247                fdir_stats_border, fdir_stats_border);
3248 }
3249
3250 void
3251 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
3252 {
3253         struct rte_port *port;
3254         struct rte_eth_fdir_flex_conf *flex_conf;
3255         int i, idx = 0;
3256
3257         port = &ports[port_id];
3258         flex_conf = &port->dev_conf.fdir_conf.flex_conf;
3259         for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
3260                 if (cfg->flow_type == flex_conf->flex_mask[i].flow_type) {
3261                         idx = i;
3262                         break;
3263                 }
3264         }
3265         if (i >= RTE_ETH_FLOW_MAX) {
3266                 if (flex_conf->nb_flexmasks < RTE_DIM(flex_conf->flex_mask)) {
3267                         idx = flex_conf->nb_flexmasks;
3268                         flex_conf->nb_flexmasks++;
3269                 } else {
3270                         printf("The flex mask table is full. Can not set flex"
3271                                 " mask for flow_type(%u).", cfg->flow_type);
3272                         return;
3273                 }
3274         }
3275         rte_memcpy(&flex_conf->flex_mask[idx],
3276                          cfg,
3277                          sizeof(struct rte_eth_fdir_flex_mask));
3278 }
3279
3280 void
3281 fdir_set_flex_payload(portid_t port_id, struct rte_eth_flex_payload_cfg *cfg)
3282 {
3283         struct rte_port *port;
3284         struct rte_eth_fdir_flex_conf *flex_conf;
3285         int i, idx = 0;
3286
3287         port = &ports[port_id];
3288         flex_conf = &port->dev_conf.fdir_conf.flex_conf;
3289         for (i = 0; i < RTE_ETH_PAYLOAD_MAX; i++) {
3290                 if (cfg->type == flex_conf->flex_set[i].type) {
3291                         idx = i;
3292                         break;
3293                 }
3294         }
3295         if (i >= RTE_ETH_PAYLOAD_MAX) {
3296                 if (flex_conf->nb_payloads < RTE_DIM(flex_conf->flex_set)) {
3297                         idx = flex_conf->nb_payloads;
3298                         flex_conf->nb_payloads++;
3299                 } else {
3300                         printf("The flex payload table is full. Can not set"
3301                                 " flex payload for type(%u).", cfg->type);
3302                         return;
3303                 }
3304         }
3305         rte_memcpy(&flex_conf->flex_set[idx],
3306                          cfg,
3307                          sizeof(struct rte_eth_flex_payload_cfg));
3308
3309 }
3310
3311 void
3312 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
3313 {
3314 #ifdef RTE_LIBRTE_IXGBE_PMD
3315         int diag;
3316
3317         if (is_rx)
3318                 diag = rte_pmd_ixgbe_set_vf_rx(port_id, vf, on);
3319         else
3320                 diag = rte_pmd_ixgbe_set_vf_tx(port_id, vf, on);
3321
3322         if (diag == 0)
3323                 return;
3324         printf("rte_pmd_ixgbe_set_vf_%s for port_id=%d failed diag=%d\n",
3325                         is_rx ? "rx" : "tx", port_id, diag);
3326         return;
3327 #endif
3328         printf("VF %s setting not supported for port %d\n",
3329                         is_rx ? "Rx" : "Tx", port_id);
3330         RTE_SET_USED(vf);
3331         RTE_SET_USED(on);
3332 }
3333
3334 int
3335 set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate)
3336 {
3337         int diag;
3338         struct rte_eth_link link;
3339
3340         if (port_id_is_invalid(port_id, ENABLED_WARN))
3341                 return 1;
3342         rte_eth_link_get_nowait(port_id, &link);
3343         if (rate > link.link_speed) {
3344                 printf("Invalid rate value:%u bigger than link speed: %u\n",
3345                         rate, link.link_speed);
3346                 return 1;
3347         }
3348         diag = rte_eth_set_queue_rate_limit(port_id, queue_idx, rate);
3349         if (diag == 0)
3350                 return diag;
3351         printf("rte_eth_set_queue_rate_limit for port_id=%d failed diag=%d\n",
3352                 port_id, diag);
3353         return diag;
3354 }
3355
3356 int
3357 set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
3358 {
3359         int diag = -ENOTSUP;
3360
3361         RTE_SET_USED(vf);
3362         RTE_SET_USED(rate);
3363         RTE_SET_USED(q_msk);
3364
3365 #ifdef RTE_LIBRTE_IXGBE_PMD
3366         if (diag == -ENOTSUP)
3367                 diag = rte_pmd_ixgbe_set_vf_rate_limit(port_id, vf, rate,
3368                                                        q_msk);
3369 #endif
3370 #ifdef RTE_LIBRTE_BNXT_PMD
3371         if (diag == -ENOTSUP)
3372                 diag = rte_pmd_bnxt_set_vf_rate_limit(port_id, vf, rate, q_msk);
3373 #endif
3374         if (diag == 0)
3375                 return diag;
3376
3377         printf("set_vf_rate_limit for port_id=%d failed diag=%d\n",
3378                 port_id, diag);
3379         return diag;
3380 }
3381
3382 /*
3383  * Functions to manage the set of filtered Multicast MAC addresses.
3384  *
3385  * A pool of filtered multicast MAC addresses is associated with each port.
3386  * The pool is allocated in chunks of MCAST_POOL_INC multicast addresses.
3387  * The address of the pool and the number of valid multicast MAC addresses
3388  * recorded in the pool are stored in the fields "mc_addr_pool" and
3389  * "mc_addr_nb" of the "rte_port" data structure.
3390  *
3391  * The function "rte_eth_dev_set_mc_addr_list" of the PMDs API imposes
3392  * to be supplied a contiguous array of multicast MAC addresses.
3393  * To comply with this constraint, the set of multicast addresses recorded
3394  * into the pool are systematically compacted at the beginning of the pool.
3395  * Hence, when a multicast address is removed from the pool, all following
3396  * addresses, if any, are copied back to keep the set contiguous.
3397  */
3398 #define MCAST_POOL_INC 32
3399
3400 static int
3401 mcast_addr_pool_extend(struct rte_port *port)
3402 {
3403         struct ether_addr *mc_pool;
3404         size_t mc_pool_size;
3405
3406         /*
3407          * If a free entry is available at the end of the pool, just
3408          * increment the number of recorded multicast addresses.
3409          */
3410         if ((port->mc_addr_nb % MCAST_POOL_INC) != 0) {
3411                 port->mc_addr_nb++;
3412                 return 0;
3413         }
3414
3415         /*
3416          * [re]allocate a pool with MCAST_POOL_INC more entries.
3417          * The previous test guarantees that port->mc_addr_nb is a multiple
3418          * of MCAST_POOL_INC.
3419          */
3420         mc_pool_size = sizeof(struct ether_addr) * (port->mc_addr_nb +
3421                                                     MCAST_POOL_INC);
3422         mc_pool = (struct ether_addr *) realloc(port->mc_addr_pool,
3423                                                 mc_pool_size);
3424         if (mc_pool == NULL) {
3425                 printf("allocation of pool of %u multicast addresses failed\n",
3426                        port->mc_addr_nb + MCAST_POOL_INC);
3427                 return -ENOMEM;
3428         }
3429
3430         port->mc_addr_pool = mc_pool;
3431         port->mc_addr_nb++;
3432         return 0;
3433
3434 }
3435
3436 static void
3437 mcast_addr_pool_remove(struct rte_port *port, uint32_t addr_idx)
3438 {
3439         port->mc_addr_nb--;
3440         if (addr_idx == port->mc_addr_nb) {
3441                 /* No need to recompact the set of multicast addressses. */
3442                 if (port->mc_addr_nb == 0) {
3443                         /* free the pool of multicast addresses. */
3444                         free(port->mc_addr_pool);
3445                         port->mc_addr_pool = NULL;
3446                 }
3447                 return;
3448         }
3449         memmove(&port->mc_addr_pool[addr_idx],
3450                 &port->mc_addr_pool[addr_idx + 1],
3451                 sizeof(struct ether_addr) * (port->mc_addr_nb - addr_idx));
3452 }
3453
3454 static void
3455 eth_port_multicast_addr_list_set(portid_t port_id)
3456 {
3457         struct rte_port *port;
3458         int diag;
3459
3460         port = &ports[port_id];
3461         diag = rte_eth_dev_set_mc_addr_list(port_id, port->mc_addr_pool,
3462                                             port->mc_addr_nb);
3463         if (diag == 0)
3464                 return;
3465         printf("rte_eth_dev_set_mc_addr_list(port=%d, nb=%u) failed. diag=%d\n",
3466                port->mc_addr_nb, port_id, -diag);
3467 }
3468
3469 void
3470 mcast_addr_add(portid_t port_id, struct ether_addr *mc_addr)
3471 {
3472         struct rte_port *port;
3473         uint32_t i;
3474
3475         if (port_id_is_invalid(port_id, ENABLED_WARN))
3476                 return;
3477
3478         port = &ports[port_id];
3479
3480         /*
3481          * Check that the added multicast MAC address is not already recorded
3482          * in the pool of multicast addresses.
3483          */
3484         for (i = 0; i < port->mc_addr_nb; i++) {
3485                 if (is_same_ether_addr(mc_addr, &port->mc_addr_pool[i])) {
3486                         printf("multicast address already filtered by port\n");
3487                         return;
3488                 }
3489         }
3490
3491         if (mcast_addr_pool_extend(port) != 0)
3492                 return;
3493         ether_addr_copy(mc_addr, &port->mc_addr_pool[i]);
3494         eth_port_multicast_addr_list_set(port_id);
3495 }
3496
3497 void
3498 mcast_addr_remove(portid_t port_id, struct ether_addr *mc_addr)
3499 {
3500         struct rte_port *port;
3501         uint32_t i;
3502
3503         if (port_id_is_invalid(port_id, ENABLED_WARN))
3504                 return;
3505
3506         port = &ports[port_id];
3507
3508         /*
3509          * Search the pool of multicast MAC addresses for the removed address.
3510          */
3511         for (i = 0; i < port->mc_addr_nb; i++) {
3512                 if (is_same_ether_addr(mc_addr, &port->mc_addr_pool[i]))
3513                         break;
3514         }
3515         if (i == port->mc_addr_nb) {
3516                 printf("multicast address not filtered by port %d\n", port_id);
3517                 return;
3518         }
3519
3520         mcast_addr_pool_remove(port, i);
3521         eth_port_multicast_addr_list_set(port_id);
3522 }
3523
3524 void
3525 port_dcb_info_display(portid_t port_id)
3526 {
3527         struct rte_eth_dcb_info dcb_info;
3528         uint16_t i;
3529         int ret;
3530         static const char *border = "================";
3531
3532         if (port_id_is_invalid(port_id, ENABLED_WARN))
3533                 return;
3534
3535         ret = rte_eth_dev_get_dcb_info(port_id, &dcb_info);
3536         if (ret) {
3537                 printf("\n Failed to get dcb infos on port %-2d\n",
3538                         port_id);
3539                 return;
3540         }
3541         printf("\n  %s DCB infos for port %-2d  %s\n", border, port_id, border);
3542         printf("  TC NUMBER: %d\n", dcb_info.nb_tcs);
3543         printf("\n  TC :        ");
3544         for (i = 0; i < dcb_info.nb_tcs; i++)
3545                 printf("\t%4d", i);
3546         printf("\n  Priority :  ");
3547         for (i = 0; i < dcb_info.nb_tcs; i++)
3548                 printf("\t%4d", dcb_info.prio_tc[i]);
3549         printf("\n  BW percent :");
3550         for (i = 0; i < dcb_info.nb_tcs; i++)
3551                 printf("\t%4d%%", dcb_info.tc_bws[i]);
3552         printf("\n  RXQ base :  ");
3553         for (i = 0; i < dcb_info.nb_tcs; i++)
3554                 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].base);
3555         printf("\n  RXQ number :");
3556         for (i = 0; i < dcb_info.nb_tcs; i++)
3557                 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].nb_queue);
3558         printf("\n  TXQ base :  ");
3559         for (i = 0; i < dcb_info.nb_tcs; i++)
3560                 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].base);
3561         printf("\n  TXQ number :");
3562         for (i = 0; i < dcb_info.nb_tcs; i++)
3563                 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].nb_queue);
3564         printf("\n");
3565 }
3566
3567 uint8_t *
3568 open_file(const char *file_path, uint32_t *size)
3569 {
3570         int fd = open(file_path, O_RDONLY);
3571         off_t pkg_size;
3572         uint8_t *buf = NULL;
3573         int ret = 0;
3574         struct stat st_buf;
3575
3576         if (size)
3577                 *size = 0;
3578
3579         if (fd == -1) {
3580                 printf("%s: Failed to open %s\n", __func__, file_path);
3581                 return buf;
3582         }
3583
3584         if ((fstat(fd, &st_buf) != 0) || (!S_ISREG(st_buf.st_mode))) {
3585                 close(fd);
3586                 printf("%s: File operations failed\n", __func__);
3587                 return buf;
3588         }
3589
3590         pkg_size = st_buf.st_size;
3591         if (pkg_size < 0) {
3592                 close(fd);
3593                 printf("%s: File operations failed\n", __func__);
3594                 return buf;
3595         }
3596
3597         buf = (uint8_t *)malloc(pkg_size);
3598         if (!buf) {
3599                 close(fd);
3600                 printf("%s: Failed to malloc memory\n", __func__);
3601                 return buf;
3602         }
3603
3604         ret = read(fd, buf, pkg_size);
3605         if (ret < 0) {
3606                 close(fd);
3607                 printf("%s: File read operation failed\n", __func__);
3608                 close_file(buf);
3609                 return NULL;
3610         }
3611
3612         if (size)
3613                 *size = pkg_size;
3614
3615         close(fd);
3616
3617         return buf;
3618 }
3619
3620 int
3621 save_file(const char *file_path, uint8_t *buf, uint32_t size)
3622 {
3623         FILE *fh = fopen(file_path, "wb");
3624
3625         if (fh == NULL) {
3626                 printf("%s: Failed to open %s\n", __func__, file_path);
3627                 return -1;
3628         }
3629
3630         if (fwrite(buf, 1, size, fh) != size) {
3631                 fclose(fh);
3632                 printf("%s: File write operation failed\n", __func__);
3633                 return -1;
3634         }
3635
3636         fclose(fh);
3637
3638         return 0;
3639 }
3640
3641 int
3642 close_file(uint8_t *buf)
3643 {
3644         if (buf) {
3645                 free((void *)buf);
3646                 return 0;
3647         }
3648
3649         return -1;
3650 }
3651
3652 void
3653 port_queue_region_info_display(portid_t port_id, void *buf)
3654 {
3655 #ifdef RTE_LIBRTE_I40E_PMD
3656         uint16_t i, j;
3657         struct rte_pmd_i40e_queue_regions *info =
3658                 (struct rte_pmd_i40e_queue_regions *)buf;
3659         static const char *queue_region_info_stats_border = "-------";
3660
3661         if (!info->queue_region_number)
3662                 printf("there is no region has been set before");
3663
3664         printf("\n      %s All queue region info for port=%2d %s",
3665                         queue_region_info_stats_border, port_id,
3666                         queue_region_info_stats_border);
3667         printf("\n      queue_region_number: %-14u \n",
3668                         info->queue_region_number);
3669
3670         for (i = 0; i < info->queue_region_number; i++) {
3671                 printf("\n      region_id: %-14u queue_number: %-14u "
3672                         "queue_start_index: %-14u \n",
3673                         info->region[i].region_id,
3674                         info->region[i].queue_num,
3675                         info->region[i].queue_start_index);
3676
3677                 printf("  user_priority_num is  %-14u :",
3678                                         info->region[i].user_priority_num);
3679                 for (j = 0; j < info->region[i].user_priority_num; j++)
3680                         printf(" %-14u ", info->region[i].user_priority[j]);
3681
3682                 printf("\n      flowtype_num is  %-14u :",
3683                                 info->region[i].flowtype_num);
3684                 for (j = 0; j < info->region[i].flowtype_num; j++)
3685                         printf(" %-14u ", info->region[i].hw_flowtype[j]);
3686         }
3687 #else
3688         RTE_SET_USED(port_id);
3689         RTE_SET_USED(buf);
3690 #endif
3691
3692         printf("\n\n");
3693 }