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